diff --git a/.circleci/config.yml b/.circleci/config.yml
index 92d95411b..806a1ff10 100644
--- a/.circleci/config.yml
+++ b/.circleci/config.yml
@@ -54,12 +54,18 @@ workflows:
name: "test-shared-exec"
test_packages: "./drivers/shared/executor"
<<: *IGNORE_FOR_UI_BRANCHES
- - test-rkt:
+ - test-machine:
+ name: "test-32bit"
+ # Currently we only explicitly test fingerprinting on 32bit
+ # architectures.
+ test_packages: "./client/fingerprint"
+ goarch: "386"
<<: *IGNORE_FOR_UI_BRANCHES
- test-e2e:
<<: *IGNORE_FOR_UI_BRANCHES
- test-ui
- - test-website
+ - test-website:
+ <<: *IGNORE_FOR_UI_BRANCHES
website:
jobs:
@@ -72,7 +78,7 @@ executors:
go:
working_directory: /go/src/github.com/hashicorp/nomad
docker:
- - image: circleci/golang:1.12.9
+ - image: golang:1.12.13
go-machine:
working_directory: ~/go/src/github.com/hashicorp/nomad
machine:
@@ -103,8 +109,8 @@ jobs:
GOPATH: /go
steps:
- checkout
+ - run: apt-get update; apt-get install -y shellcheck sudo unzip
- install-protoc
- - run: sudo apt-get update && sudo apt-get install shellcheck
- run: make deps lint-deps
- run: make check
- run: make checkscripts
@@ -118,13 +124,18 @@ jobs:
exclude_packages:
type: string
default: ""
+ goarch:
+ type: string
+ default: "amd64"
environment:
<<: *COMMON_ENVS
GOTEST_PKGS: "<< parameters.test_packages >>"
GOTEST_PKGS_EXCLUDE: "<< parameters.exclude_packages >>"
GOPATH: /go
+ GOTESTARCH: "<< parameters.goarch >>"
steps:
- checkout
+ - run: apt-get update; apt-get install -y shellcheck sudo unzip
- run: make deps
- install-protoc
- install-consul
@@ -142,8 +153,20 @@ jobs:
GOPATH: /go
steps:
- checkout
- - run: make deps
- - run: make e2e-test
+ - run: apt-get update; apt-get install -y sudo unzip
+ # e2e tests require privileged mount/umount permissions when running as root
+ # TODO: switch to using machine executor and run as root to test e2e path
+ - run:
+ name: prepare non-root user
+ command: |
+ groupadd --gid 3434 circleci
+ useradd --uid 3434 --gid circleci --shell /bin/bash --create-home circleci
+ echo 'circleci ALL=NOPASSWD: ALL' >> /etc/sudoers.d/50-circleci
+ echo 'Defaults env_keep += "DEBIAN_FRONTEND"' >> /etc/sudoers.d/env_keep
+ chown -R circleci:circleci /go
+
+ - run: sudo -E -H -u circleci PATH=${PATH} make deps
+ - run: sudo -E -H -u circleci PATH=${PATH} make e2e-test
test-website:
executor: go-machine-recent
@@ -153,32 +176,6 @@ jobs:
- checkout
- run: make test-website
- test-rkt:
- executor: go-machine-recent
- environment:
- <<: *COMMON_ENVS
- GOTEST_PKGS: "./drivers/rkt"
- GOPATH: /home/circleci/go
- RKT_VERSION: 1.29.0
- steps:
- - checkout
- - install-golang
- - install-protoc
- - run:
- name: install rkt
- command: |
- gpg --recv-key 18AD5014C99EF7E3BA5F6CE950BDD3E0FC8A365E
- wget https://github.com/rkt/rkt/releases/download/v$RKT_VERSION/rkt_$RKT_VERSION-1_amd64.deb
- wget https://github.com/rkt/rkt/releases/download/v$RKT_VERSION/rkt_$RKT_VERSION-1_amd64.deb.asc
- gpg --verify rkt_$RKT_VERSION-1_amd64.deb.asc
- sudo dpkg -i rkt_$RKT_VERSION-1_amd64.deb
- - run: PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make bootstrap
- - run-tests
- - store_test_results:
- path: /tmp/test-reports
- - store_artifacts:
- path: /tmp/test-reports
-
test-machine:
executor: "<< parameters.executor >>"
parameters:
@@ -191,17 +188,30 @@ jobs:
executor:
type: string
default: "go-machine-recent"
+ goarch:
+ type: string
+ default: "amd64"
environment:
<<: *COMMON_ENVS
GOTEST_PKGS_EXCLUDE: "<< parameters.exclude_packages >>"
GOTEST_PKGS: "<< parameters.test_packages >>"
GOPATH: /home/circleci/go
+ GOTESTARCH: "<< parameters.goarch >>"
steps:
- checkout
- install-golang
- install-protoc
- install-consul
- install-vault
+ - run:
+ name: Install 32bit gcc libs
+ command: |
+ if [ ! -z $GOTESTARCH ] && [ $GOTESTARCH == "386" ]; then
+ sudo apt-get update
+ sudo apt-get install -y gcc-multilib
+ else
+ echo "Skipping 32bit lib installation while building for not 386"
+ fi
- run: PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make bootstrap
- run-tests
- store_test_results:
@@ -274,7 +284,7 @@ commands:
parameters:
version:
type: string
- default: "1.12.9"
+ default: "1.12.13"
steps:
- run:
name: install golang << parameters.version >>
@@ -288,7 +298,7 @@ commands:
parameters:
version:
type: string
- default: 1.0.0
+ default: 1.2.3
steps:
- run:
name: Install Vault << parameters.version >>
@@ -301,7 +311,7 @@ commands:
parameters:
version:
type: string
- default: 1.6.0-rc1
+ default: 1.6.1
steps:
- run:
name: Install Consul << parameters.version >>
@@ -330,6 +340,10 @@ commands:
unset GOTEST_PKGS
fi
+ if [ ! -z $GOTESTARCH ]; then
+ export GOARCH="$GOTESTARCH";
+ fi
+
mkdir -p /tmp/test-reports
sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make generate-structs
sudo -E PATH="$GOPATH/bin:/usr/local/go/bin:$PATH" make test-nomad
diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
index 407a32c3b..1d4b00868 100644
--- a/.github/ISSUE_TEMPLATE.md
+++ b/.github/ISSUE_TEMPLATE.md
@@ -1,3 +1,5 @@
+For reporting security vulnerabilities [please refer to the website.](https://www.nomadproject.io/security.html)
+
If you have a question, prepend your issue with `[question]` or preferably use the [nomad mailing list](https://www.nomadproject.io/community.html).
If filing a bug please include the following:
diff --git a/.github/SECURITY.md b/.github/SECURITY.md
new file mode 100644
index 000000000..cb9e95a7e
--- /dev/null
+++ b/.github/SECURITY.md
@@ -0,0 +1,3 @@
+# Security Policy
+
+Please see https://www.nomadproject.io/security.html
diff --git a/.gitignore b/.gitignore
index 25e622ddf..8efd757c2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -86,6 +86,8 @@ rkt-*
/ui/libpeerconnection.log
/ui/npm-debug.log*
/ui/testem.log
+/ui/.env*
+/ui/.pnp*
.ignore
# ember-try
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5b4bfb924..1e98f383f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,23 +1,116 @@
-## 0.10.0 (Unreleased)
+## 0.10.2 (Unreleased)
+
+FEATURES:
+ * core: Add `nomad monitor` command to stream logs at a specified level for debugging [[GH-6499](https://github.com/hashicorp/nomad/issues/6499)]
IMPROVEMENTS:
- * core: Added host volumes [[GH-6100](https://github.com/hashicorp/nomad/pull/6100)]
+ * api: Add `StartedAt` field to `Node.DrainStrategy` [[GH-6698](https://github.com/hashicorp/nomad/issues/6698)]
+ * api: Added JSON representation of rules to policy endpoint response [[GH-6017](https://github.com/hashicorp/nomad/pull/6017)]
+ * build: Updated to Go 1.12.13 [[GH-6606](https://github.com/hashicorp/nomad/issues/6606)]
+ * core: Add support for running under Windows Service Manager [[GH-6220](https://github.com/hashicorp/nomad/issues/6220)]
+ * cli: Show full ID in node and alloc individual status views [[GH-6425](https://github.com/hashicorp/nomad/issues/6425)]
+ * client: Enable setting tags on Consul Connect sidecar service [[GH-6448](https://github.com/hashicorp/nomad/issues/6448)]
+ * client: Add support for downloading artifacts from Google Cloud Storage [[GH-6692](https://github.com/hashicorp/nomad/pull/6692)]
+ * command: add -tls-server-name flag [[GH-6370](https://github.com/hashicorp/nomad/issues/6370)]
+
+BUG FIXES:
+
+ * core: Ignore `server` config values if `server` is disabled [[GH-6047](https://github.com/hashicorp/nomad/issues/6047)]
+ * core: Added `semver` constraint for strict Semver 2.0 version comparisons [[GH-6699](https://github.com/hashicorp/nomad/issues/6699)]
+ * api: Return a 404 if endpoint not found instead of redirecting to /ui/ [[GH-6658](https://github.com/hashicorp/nomad/issues/6658)]
+ * api: Decompress web socket response body if gzipped on error responses [[GH-6650](https://github.com/hashicorp/nomad/issues/6650)]
+ * api: Fixed a bug where some FS/Allocation API endpoints didn't return error messages [[GH-6427](https://github.com/hashicorp/nomad/issues/6427)]
+ * api: Return 40X status code for failing ACL requests, rather than 500 [[GH-6421](https://github.com/hashicorp/nomad/issues/6421)]
+ * cli: Make scoring column orders consistent `nomad alloc status` [[GH-6609](https://github.com/hashicorp/nomad/issues/6609)]
+ * cli: Fixed a bug where `nomad alloc exec` fails if stdout is being redirected and not a TTY [[GH-6684](https://github.com/hashicorp/nomad/issues/6684)]
+ * cli: Fixed a bug where a cli user may fail to query FS/Allocation API endpoints if they lack `node:read` capability [[GH-6423](https://github.com/hashicorp/nomad/issues/6423)]
+ * client: Fixed a bug where a client may not restart dead internal processes upon client's restart on Windows [[GH-6426](https://github.com/hashicorp/nomad/issues/6426)]
+ * client: client: Return empty values when host stats fail [[GH-6349](https://github.com/hashicorp/nomad/issues/6349)]
+ * driver/exec: Fixed a bug where exec tasks can spawn processes that live beyond task lifecycle [[GH-6722](https://github.com/hashicorp/nomad/issues/6722)]
+ * driver/docker: Added mechanism for detecting running unexpectedly running docker containers [[GH-6325](https://github.com/hashicorp/nomad/issues/6325)]
+ * nomad: Multiple connect enabled services in the same taskgroup failed to
+ register [[GH-6646](https://github.com/hashicorp/nomad/issues/6646)]
+ * scheduler: Changes to devices in resource stanza should cause rescheduling [[GH-6644](https://github.com/hashicorp/nomad/issues/6644)]
+ * vault: Allow overriding implicit Vault version constraint [[GH-6687](https://github.com/hashicorp/nomad/issues/6687)]
+ * vault: Supported Vault auth role's new field, `token_period` [[GH-6574](https://github.com/hashicorp/nomad/issues/6574)]
+ * scheduler: Fixed a bug that allowed inplace updates after a constraint, affinity, or spread was changed [[GH-6703](https://github.com/hashicorp/nomad/issues/6703)]
+
+## 0.10.1 (November 4, 2019)
+
+BUG FIXES:
+
+ * core: Fixed server panic when upgrading from 0.8 -> 0.10 and performing an
+ inplace update of an allocation. [[GH-6541](https://github.com/hashicorp/nomad/issues/6541)]
+ * api: Fixed panic when submitting Connect-enabled job without using a bridge
+ network [[GH-6575](https://github.com/hashicorp/nomad/issues/6575)]
+ * client: Fixed client panic when upgrading from 0.8 -> 0.10 and performing an
+ inplace update of an allocation. [[GH-6605](https://github.com/hashicorp/nomad/issues/6605)]
+
+## 0.10.0 (October 22, 2019)
+
+FEATURES:
+ * **Consul Connect**: Nomad may now register Consul Connect services and
+ manages an Envoy proxy sidecar to provide secured service-to-service
+ communication.
+ * **Network Namespaces**: Task Groups may now define a shared network
+ namespace. Each allocation will receive its own network namespace and
+ loopback interface. Ports may be forwarded from the host into the network
+ namespace.
+ * **Host Volumes**: Nomad expanded support of stateful workloads through locally mounted storage volumes.
+ * **UI Allocation File Explorer**: Nomad UI enhanced operability with a visual file system explorer for allocations.
+
+IMPROVEMENTS:
+ * core: Added rolling deployments for service jobs by default and max_parallel=0 disables deployments [[GH-6191](https://github.com/hashicorp/nomad/pull/6100)]
* agent: Allowed the job GC interval to be configured [[GH-5978](https://github.com/hashicorp/nomad/issues/5978)]
* agent: Added `-dev=connect` parameter to support running in dev mode with Consul Connect [[GH-6126](https://github.com/hashicorp/nomad/issues/6126)]
* agent: Added `log_level` to be reloaded on SIGHUP [[GH-5996](https://github.com/hashicorp/nomad/pull/5996)]
- * client: Upgraded `go-getter` to support GCP links [[GH-6215](https://github.com/hashicorp/nomad/pull/6215)]
- * api: Added JSON representation of rules to policy endpoint response [[GH-6017](https://github.com/hashicorp/nomad/pull/6017)]
* api: Added follow parameter to file streaming endpoint to support older browsers [[GH-6049](https://github.com/hashicorp/nomad/issues/6049)]
- * cli: Added `-dev-connect` parameter to support running in dev mode with Consul Connect [[GH-6126](https://github.com/hashicorp/nomad/issues/6126)]
- * metrics: Add job status (pending, running, dead) metrics [[GH-6003](https://github.com/hashicorp/nomad/issues/6003)]
+ * client: Upgraded `go-getter` to support GCP links [[GH-6215](https://github.com/hashicorp/nomad/pull/6215)]
+ * client: Remove consul service stanza from `job init --short` jobspec [[GH-6179](https://github.com/hashicorp/nomad/issues/6179)]
+ * drivers: Exposed namespace as `NOMAD_NAMESPACE` environment variable in running tasks [[GH-6192](https://github.com/hashicorp/nomad/pull/6192)]
+ * metrics: Added job status (pending, running, dead) metrics [[GH-6003](https://github.com/hashicorp/nomad/issues/6003)]
+ * metrics: Added status and scheduling ability to client metrics [[GH-6130](https://github.com/hashicorp/nomad/issues/6130)]
+ * server: Added an option to configure job GC interval [[GH-5978](https://github.com/hashicorp/nomad/issues/5978)]
+ * ui: Added allocation filesystem explorer [[GH-5871](https://github.com/hashicorp/nomad/pull/5871)]
* ui: Added creation time to evaluations table [[GH-6050](https://github.com/hashicorp/nomad/pull/6050)]
BUG FIXES:
- * command/run: Fixed `nomad run ...` on Windows so it works with unprivileged accounts [[GH-6009](https://github.com/hashicorp/nomad/issues/6009)]
- * drivers/docker: Fixed a case where a `nomad alloc exec` would never time out [[GH-6144](https://github.com/hashicorp/nomad/pull/6144)]
+ * cli: Fixed `nomad run ...` on Windows so it works with unprivileged accounts [[GH-6009](https://github.com/hashicorp/nomad/issues/6009)]
+ * client: Fixed a bug in client fingerprinting on 32-bit nodes [[GH-6239](https://github.com/hashicorp/nomad/issues/6239)]
+ * client: Fixed a bug where completed allocations may re-run after client restart [[GH-6216](https://github.com/hashicorp/nomad/issues/6216)]
+ * client: Fixed failure to start if another client is already running with the same data directory [[GH-6348](https://github.com/hashicorp/nomad/pull/6348)]
+ * devices: Fixed a bug causing CPU usage spike when a device is detected [[GH-6201](https://github.com/hashicorp/nomad/issues/6201)]
+ * drivers: Allowd user-defined environment variable keys to contain dashes [[GH-6080](https://github.com/hashicorp/nomad/issues/6080)]
+ * driver/docker: Set gc image_delay default to 3 minutes [[GH-6078](https://github.com/hashicorp/nomad/pull/6078)]
+ * driver/docker: Improved docker driver handling of container creation or starting failures [[GH-6326](https://github.com/hashicorp/nomad/issues/6326)], [[GH-6346](https://github.com/hashicorp/nomad/issues/6346)]
+ * ui: Fixed a bug where the allocation log viewer would render HTML or hide content that matched XML syntax [[GH-6048](https://github.com/hashicorp/nomad/issues/6048)]
+ * ui: Fixed a bug where allocation log viewer doesn't show all content in Firefox [[GH-6466](https://github.com/hashicorp/nomad/issues/6466)]
* ui: Fixed navigation via clicking recent allocation row [[GH-6087](https://github.com/hashicorp/nomad/pull/6087)]
- * ui: Fixed links containing IPv6 addresses to include required square brackets [[GH-6007](https://github.com/hashicorp/nomad/pull/6007)]
+ * ui: Fixed a bug where the allocation log viewer would render HTML or hide content that matched XML syntax [[GH-6048](https://github.com/hashicorp/nomad/issues/6048)]
+ * ui: Fixed a bug where allocation log viewer doesn't show all content in Firefox [[GH-6466](https://github.com/hashicorp/nomad/issues/6466)]
+
+## 0.9.6 (October 7, 2019)
+
+SECURITY:
+
+ * core: Redacted replication token in agent/self API endpoint. The replication token is a management token that can be used for further privilege escalation. CVE-2019-12741 [[GH-6430](https://github.com/hashicorp/nomad/issues/6430)]
+ * core: Fixed a bug where a user may start raw_exec task on clients despite driver being disabled. CVE-2019-15928 [[GH-6227](https://github.com/hashicorp/nomad/issues/6227)] [[GH-6431](https://github.com/hashicorp/nomad/issues/6431)]
+ * enterprise/acl: Fix ACL access checks in Nomad Enterprise where users may query allocation information and perform lifecycle actions in namespaces they are not authorized to. CVE-2019-16742 [[GH-6432](https://github.com/hashicorp/nomad/issues/6432)]
+
+IMPROVEMENTS:
+
+ * client: Reduced memory footprint of nomad logging and executor processes [[GH-6341](https://github.com/hashicorp/nomad/issues/6341)]
+
+BUG FIXES:
+
+ * core: Fixed a bug where scheduler may schedule an allocation on a node without required drivers [[GH-6227](https://github.com/hashicorp/nomad/issues/6227)]
+ * client: Fixed a bug where completed allocations may re-run after client restart [[GH-6216](https://github.com/hashicorp/nomad/issues/6216)] [[GH-6207](https://github.com/hashicorp/nomad/issues/6207)]
+ * client: Fixed a panic that may occur when an `nomad alloc exec` is initiated while process is terminating [[GH-6065](https://github.com/hashicorp/nomad/issues/6065)]
+ * devices: Fixed a bug causing CPU usage spike when a device is detected [[GH-6201](https://github.com/hashicorp/nomad/issues/6201)]
+ * drivers: Fixed port mapping for docker and qemu drivers [[GH-6251](https://github.com/hashicorp/nomad/pull/6251)]
+ * drivers/docker: Fixed a case where a `nomad alloc exec` would never time out [[GH-6144](https://github.com/hashicorp/nomad/pull/6144)]
+ * ui: Fixed a bug where allocation log viewer doesn't show all content. [[GH-6048](https://github.com/hashicorp/nomad/issues/6048)]
## 0.9.5 (21 August 2019)
diff --git a/GNUmakefile b/GNUmakefile
index 325e5d197..3bac30389 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -6,14 +6,14 @@ GIT_COMMIT := $(shell git rev-parse HEAD)
GIT_DIRTY := $(if $(shell git status --porcelain),+CHANGES)
GO_LDFLAGS := "-X github.com/hashicorp/nomad/version.GitCommit=$(GIT_COMMIT)$(GIT_DIRTY)"
-GO_TAGS ?=
+GO_TAGS ?= codegen_generated
GO_TEST_CMD = $(if $(shell which gotestsum),gotestsum --,go test)
ifeq ($(origin GOTEST_PKGS_EXCLUDE), undefined)
GOTEST_PKGS ?= "./..."
else
-GOTEST_PKGS=$(shell go list ./... | sed 's/github.com\/hashicorp\/nomad/./' | egrep -v "^($(GOTEST_PKGS_EXCLUDE))$$")
+GOTEST_PKGS=$(shell go list ./... | sed 's/github.com\/hashicorp\/nomad/./' | egrep -v "^($(GOTEST_PKGS_EXCLUDE))(/.*)?$$")
endif
default: help
@@ -147,6 +147,7 @@ deps: ## Install build and development dependencies
go get -u github.com/a8m/tree/cmd/tree
go get -u github.com/magiconair/vendorfmt/cmd/vendorfmt
go get -u gotest.tools/gotestsum
+ go get -u github.com/fatih/hclfmt
@bash -C "$(PROJECT_ROOT)/scripts/install-codecgen.sh"
@bash -C "$(PROJECT_ROOT)/scripts/install-protoc-gen-go.sh"
@@ -170,6 +171,7 @@ check: ## Lint the source code
--deadline 10m \
--vendor \
--exclude='.*\.generated\.go' \
+ --exclude='.*\.pb\.go' \
--exclude='.*bindata_assetfs\.go' \
--skip="ui/" \
--sort="path" \
@@ -194,7 +196,7 @@ check: ## Lint the source code
@if (git status | grep -q .pb.go); then echo the following proto files are out of sync; git status |grep .pb.go; exit 1; fi
@echo "==> Check API package is isolated from rest"
- @! go list -f '{{ join .Deps "\n" }}' ./api | grep github.com/hashicorp/nomad/ | grep -v -e /vendor/ -e /nomad/api/
+ @! go list --test -f '{{ join .Deps "\n" }}' ./api | grep github.com/hashicorp/nomad/ | grep -v -e /vendor/ -e /nomad/api/ -e nomad/api.test
.PHONY: checkscripts
checkscripts: ## Lint shell scripts
@@ -223,21 +225,30 @@ generate-examples: command/job_init.bindata_assetfs.go
command/job_init.bindata_assetfs.go: command/assets/*
go-bindata-assetfs -pkg command -o command/job_init.bindata_assetfs.go ./command/assets/...
+.PHONY: vendorfmt
vendorfmt:
@echo "--> Formatting vendor/vendor.json"
test -x $(GOPATH)/bin/vendorfmt || go get -u github.com/magiconair/vendorfmt/cmd/vendorfmt
vendorfmt
+
+.PHONY: changelogfmt
changelogfmt:
@echo "--> Making [GH-xxxx] references clickable..."
@sed -E 's|([^\[])\[GH-([0-9]+)\]|\1[[GH-\2](https://github.com/hashicorp/nomad/issues/\2)]|g' CHANGELOG.md > changelog.tmp && mv changelog.tmp CHANGELOG.md
+## We skip the terraform directory as there are templated hcl configurations
+## that do not successfully compile without rendering
+.PHONY: hclfmt
+hclfmt:
+ @echo "--> Formatting HCL"
+ @find . -path ./terraform -prune -o -name 'upstart.nomad' -prune -o \( -name '*.nomad' -o -name '*.hcl' \) -exec hclfmt -w {} +
.PHONY: dev
dev: GOOS=$(shell go env GOOS)
dev: GOARCH=$(shell go env GOARCH)
dev: GOPATH=$(shell go env GOPATH)
dev: DEV_TARGET=pkg/$(GOOS)_$(GOARCH)/nomad
-dev: vendorfmt changelogfmt ## Build for the current development platform
+dev: vendorfmt changelogfmt hclfmt ## Build for the current development platform
@echo "==> Removing old development build..."
@rm -f $(PROJECT_ROOT)/$(DEV_TARGET)
@rm -f $(PROJECT_ROOT)/bin/nomad
@@ -251,11 +262,11 @@ dev: vendorfmt changelogfmt ## Build for the current development platform
@cp $(PROJECT_ROOT)/$(DEV_TARGET) $(GOPATH)/bin
.PHONY: prerelease
-prerelease: GO_TAGS=ui release
+prerelease: GO_TAGS=ui codegen_generated release
prerelease: generate-all ember-dist static-assets ## Generate all the static assets for a Nomad release
.PHONY: release
-release: GO_TAGS=ui release
+release: GO_TAGS=ui codegen_generated release
release: clean $(foreach t,$(ALL_TARGETS),pkg/$(t).zip) ## Build all release packages which can be built on this platform.
@echo "==> Results:"
@tree --dirsfirst $(PROJECT_ROOT)/pkg
@@ -282,6 +293,7 @@ test-nomad: dev ## Run Nomad test suites
$(if $(ENABLE_RACE),-race) $(if $(VERBOSE),-v) \
-cover \
-timeout=15m \
+ -tags "$(GO_TAGS)" \
$(GOTEST_PKGS) $(if $(VERBOSE), >test.log ; echo $$? > exit-code)
@if [ $(VERBOSE) ] ; then \
bash -C "$(PROJECT_ROOT)/scripts/test_check.sh" ; \
@@ -294,6 +306,7 @@ e2e-test: dev ## Run the Nomad e2e test suite
$(if $(ENABLE_RACE),-race) $(if $(VERBOSE),-v) \
-cover \
-timeout=900s \
+ -tags "$(GO_TAGS)" \
github.com/hashicorp/nomad/e2e/vault/ \
-integration
diff --git a/README.md b/README.md
index 799785457..59f3dc4d5 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-Nomad [](https://travis-ci.org/hashicorp/nomad) [](https://gitter.im/hashicorp-nomad/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
+Nomad [](https://circleci.com/gh/hashicorp/nomad) [](https://gitter.im/hashicorp-nomad/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
=========
@@ -16,11 +16,11 @@ Nomad is an easy-to-use, flexible, and performant workload orchestrator that dep
Nomad enables developers to use declarative infrastructure-as-code for deploying their applications (jobs). Nomad uses bin packing to efficiently schedule jobs and optimize for resource utilization. Nomad is supported on macOS, Windows, and Linux.
-Nomad is widely adopted and used in production by PagerDuty, Target, Citadel, Trivago, SAP, Pandora, Roblox, eBay, Deluxe Entertainment, and more.
+Nomad is widely adopted and used in production by PagerDuty, Target, Citadel, Trivago, SAP, Pandora, Roblox, eBay, Deluxe Entertainment, and more.
* **Deploy Containers and Legacy Applications**: Nomad’s flexibility as an orchestrator enables an organization to run containers, legacy, and batch applications together on the same infrastructure. Nomad brings core orchestration benefits to legacy applications without needing to containerize via pluggable task drivers.
-* **Simple & Reliable**: Nomad runs as a single 75MB binary and is entirely self contained - combining resource management and scheduling into a single system. Nomad does not require any external services for storage or coordination. Nomad automatically handles application, node, and driver failures. Nomad is distributed and resilient, using leader election and state replication to provide high availability in the event of failures.
+* **Simple & Reliable**: Nomad runs as a single 75MB binary and is entirely self contained - combining resource management and scheduling into a single system. Nomad does not require any external services for storage or coordination. Nomad automatically handles application, node, and driver failures. Nomad is distributed and resilient, using leader election and state replication to provide high availability in the event of failures.
* **Device Plugins & GPU Support**: Nomad offers built-in support for GPU workloads such as machine learning (ML) and artificial intelligence (AI). Nomad uses device plugins to automatically detect and utilize resources from hardware devices such as GPU, FPGAs, and TPUs.
@@ -48,8 +48,8 @@ Documentation & Guides
-------------------------------
* [Installing Nomad for Production](https://www.nomadproject.io/guides/operations/deployment-guide.html)
-* [Advanced Job Scheduling on Nomad with Affinities](https://www.nomadproject.io/guides/advanced-scheduling/affinity.html)
-* [Increasing Nomad Fault Tolerance with Spread](https://www.nomadproject.io/guides/advanced-scheduling/spread.html)
+* [Advanced Job Scheduling on Nomad with Affinities](https://www.nomadproject.io/guides/operating-a-job/advanced-scheduling/affinity.html)
+* [Increasing Nomad Fault Tolerance with Spread](https://www.nomadproject.io/guides/operating-a-job/advanced-scheduling/spread.html)
* [Load Balancing on Nomad with Fabio & Consul](https://www.nomadproject.io/guides/load-balancing/fabio.html)
* [Deploying Stateful Workloads via Portworx](https://www.nomadproject.io/guides/stateful-workloads/portworx.html)
* [Running Apache Spark on Nomad](https://www.nomadproject.io/guides/spark/spark.html)
@@ -107,7 +107,7 @@ Who Uses Nomad
* [Nomad at Target: Scaling Microservices Across Public and Private Clouds](https://www.hashicorp.com/resources/nomad-scaling-target-microservices-across-cloud)
* [Playing with Nomad from HashiCorp](https://danielparker.me/nomad/hashicorp/schedulers/nomad/)
* Trivago
- * [Maybe You Don’t Need Kubernetes](https://matthias-endler.de/2019/maybe-you-dont-need-kubernetes/)
+ * [Maybe You Don’t Need Kubernetes](https://endler.dev/2019/maybe-you-dont-need-kubernetes/)
* [Nomad - Our Experiences and Best Practices](https://tech.trivago.com/2019/01/25/nomad-our-experiences-and-best-practices/)
* Roblox
* [How Roblox runs a platform for 70 million gamers on HashiCorp Nomad](https://portworx.com/architects-corner-roblox-runs-platform-70-million-gamers-hashicorp-nomad/)
@@ -123,8 +123,6 @@ Who Uses Nomad
* [Tech at N26 - The Bank in the Cloud](https://medium.com/insiden26/tech-at-n26-the-bank-in-the-cloud-e5ff818b528b)
* Elsevier
* [Eslevier’s Container Framework with Nomad, Terraform, and Consul](https://www.hashicorp.com/resources/elsevier-nomad-container-framework-demo)
-* Palantir
- * [Enterprise Security at Palantir with the HashiCorp stack](https://www.hashicorp.com/resources/enterprise-security-hashicorp-stack)
* Graymeta
* [Backend Batch Processing At Scale with Nomad](https://www.hashicorp.com/resources/backend-batch-processing-nomad)
* NIH NCBI
@@ -140,7 +138,7 @@ Who Uses Nomad
Contributing to Nomad
--------------------
-If you wish to contribute to Nomad, you will need [Go](https://www.golang.org) installed on your machine (version 1.12.9+ is *required*).
+If you wish to contribute to Nomad, you will need [Go](https://www.golang.org) installed on your machine (version 1.12.13+ is *required*, and `gcc-go` is not supported).
See the [`contributing`](contributing/) directory for more developer documentation.
@@ -173,6 +171,12 @@ $ make bootstrap
...
```
+Nomad creates many file handles for communicating with tasks, log handlers, etc.
+In some development environments, particularly macOS, the default number of file
+descriptors is too small to run Nomad's test suite. You should set
+`ulimit -n 1024` or higher in your shell. This setting is scoped to your current
+shell and doesn't affect other running shells or future shells.
+
Afterwards type `make test`. This will run the tests. If this exits with exit status 0,
then everything is working!
diff --git a/Vagrantfile b/Vagrantfile
index 7fab7e224..4f896d31a 100644
--- a/Vagrantfile
+++ b/Vagrantfile
@@ -3,7 +3,9 @@
#
LINUX_BASE_BOX = "bento/ubuntu-16.04"
-FREEBSD_BASE_BOX = "freebsd/FreeBSD-11.2-STABLE"
+FREEBSD_BASE_BOX = "freebsd/FreeBSD-11.3-STABLE"
+
+LINUX_IP_ADDRESS = "10.199.0.200"
Vagrant.configure(2) do |config|
# Compilation and development boxes
@@ -21,6 +23,10 @@ Vagrant.configure(2) do |config|
vmCfg.vm.provision "shell",
privileged: false,
path: './scripts/vagrant-linux-unpriv-bootstrap.sh'
+
+ vmCfg.vm.provider "virtualbox" do |_|
+ vmCfg.vm.network :private_network, ip: LINUX_IP_ADDRESS
+ end
end
config.vm.define "linux-ui", autostart: false, primary: false do |vmCfg|
@@ -38,12 +44,13 @@ Vagrant.configure(2) do |config|
privileged: false,
path: './scripts/vagrant-linux-unpriv-bootstrap.sh'
- # Expose the nomad api and ui to the host
- vmCfg.vm.network "forwarded_port", guest: 4646, host: 4646, auto_correct: true
+ # Expose the nomad api and ui to the host
+ vmCfg.vm.network :forwarded_port, guest: 4646, host: 4646, auto_correct: true
+ vmCfg.vm.network :forwarded_port, guest: 8500, host: 8500, auto_correct: true
- # Expose Ember ports to the host (one for the site, one for livereload)
- vmCfg.vm.network :forwarded_port, guest: 4201, host: 4201, auto_correct: true
- vmCfg.vm.network :forwarded_port, guest: 49153, host: 49153, auto_correct: true
+ # Expose Ember ports to the host (one for the site, one for livereload)
+ vmCfg.vm.network :forwarded_port, guest: 4201, host: 4201, auto_correct: true
+ vmCfg.vm.network :forwarded_port, guest: 49153, host: 49153, auto_correct: true
end
config.vm.define "freebsd", autostart: false, primary: false do |vmCfg|
@@ -137,6 +144,10 @@ def configureLinuxProvisioners(vmCfg)
privileged: true,
path: './scripts/vagrant-linux-priv-consul.sh'
+ vmCfg.vm.provision "shell",
+ privileged: true,
+ path: './scripts/vagrant-linux-priv-cni.sh'
+
vmCfg.vm.provision "shell",
privileged: true,
path: './scripts/vagrant-linux-priv-vault.sh'
diff --git a/acl/acl.go b/acl/acl.go
index 11aee174c..2a6be0e5a 100644
--- a/acl/acl.go
+++ b/acl/acl.go
@@ -481,3 +481,25 @@ func (a *ACL) AllowQuotaWrite() bool {
func (a *ACL) IsManagement() bool {
return a.management
}
+
+// NamespaceValidator returns a func that wraps ACL.AllowNamespaceOperation in
+// a list of operations. Returns true (allowed) if acls are disabled or if
+// *any* capabilities match.
+func NamespaceValidator(ops ...string) func(*ACL, string) bool {
+ return func(acl *ACL, ns string) bool {
+ // Always allow if ACLs are disabled.
+ if acl == nil {
+ return true
+ }
+
+ for _, op := range ops {
+ if acl.AllowNamespaceOperation(ns, op) {
+ // An operation is allowed, return true
+ return true
+ }
+ }
+
+ // No operations are allowed by this ACL, return false
+ return false
+ }
+}
diff --git a/api/agent.go b/api/agent.go
index 46979403c..d372b8062 100644
--- a/api/agent.go
+++ b/api/agent.go
@@ -237,6 +237,57 @@ func (a *Agent) Health() (*AgentHealthResponse, error) {
return nil, fmt.Errorf("unable to unmarshal response with status %d: %v", resp.StatusCode, err)
}
+// Monitor returns a channel which will receive streaming logs from the agent
+// Providing a non-nil stopCh can be used to close the connection and stop log streaming
+func (a *Agent) Monitor(stopCh <-chan struct{}, q *QueryOptions) (<-chan *StreamFrame, <-chan error) {
+ errCh := make(chan error, 1)
+ r, err := a.client.newRequest("GET", "/v1/agent/monitor")
+ if err != nil {
+ errCh <- err
+ return nil, errCh
+ }
+
+ r.setQueryOptions(q)
+ _, resp, err := requireOK(a.client.doRequest(r))
+ if err != nil {
+ errCh <- err
+ return nil, errCh
+ }
+
+ frames := make(chan *StreamFrame, 10)
+ go func() {
+ defer resp.Body.Close()
+
+ dec := json.NewDecoder(resp.Body)
+
+ for {
+ select {
+ case <-stopCh:
+ close(frames)
+ return
+ default:
+ }
+
+ // Decode the next frame
+ var frame StreamFrame
+ if err := dec.Decode(&frame); err != nil {
+ close(frames)
+ errCh <- err
+ return
+ }
+
+ // Discard heartbeat frame
+ if frame.IsHeartbeat() {
+ continue
+ }
+
+ frames <- &frame
+ }
+ }()
+
+ return frames, errCh
+}
+
// joinResponse is used to decode the response we get while
// sending a member join request.
type joinResponse struct {
diff --git a/api/agent_test.go b/api/agent_test.go
index b8658ae08..d01cfdf27 100644
--- a/api/agent_test.go
+++ b/api/agent_test.go
@@ -1,9 +1,15 @@
package api
import (
+ "fmt"
"reflect"
"sort"
+ "strings"
"testing"
+ "time"
+
+ "github.com/kr/pretty"
+ "github.com/stretchr/testify/require"
"github.com/hashicorp/nomad/api/internal/testutil"
"github.com/stretchr/testify/assert"
@@ -257,3 +263,116 @@ func TestAgent_Health(t *testing.T) {
assert.Nil(err)
assert.True(health.Server.Ok)
}
+
+// TestAgent_MonitorWithNode tests the Monitor endpoint
+// passing in a log level and node ie, which tests monitor
+// functionality for a specific client node
+func TestAgent_MonitorWithNode(t *testing.T) {
+ t.Parallel()
+ rpcPort := 0
+ c, s := makeClient(t, nil, func(c *testutil.TestServerConfig) {
+ rpcPort = c.Ports.RPC
+ c.Client = &testutil.ClientConfig{
+ Enabled: true,
+ }
+ })
+ defer s.Stop()
+
+ require.NoError(t, c.Agent().SetServers([]string{fmt.Sprintf("127.0.0.1:%d", rpcPort)}))
+
+ agent := c.Agent()
+
+ index := uint64(0)
+ var node *NodeListStub
+ // grab a node
+ testutil.WaitForResult(func() (bool, error) {
+ nodes, qm, err := c.Nodes().List(&QueryOptions{WaitIndex: index})
+ if err != nil {
+ return false, err
+ }
+ index = qm.LastIndex
+ if len(nodes) != 1 {
+ return false, fmt.Errorf("expected 1 node but found: %s", pretty.Sprint(nodes))
+ }
+ if nodes[0].Status != "ready" {
+ return false, fmt.Errorf("node not ready: %s", nodes[0].Status)
+ }
+ node = nodes[0]
+ return true, nil
+ }, func(err error) {
+ t.Fatalf("err: %v", err)
+ })
+
+ doneCh := make(chan struct{})
+ q := &QueryOptions{
+ Params: map[string]string{
+ "log_level": "debug",
+ "node_id": node.ID,
+ },
+ }
+
+ frames, errCh := agent.Monitor(doneCh, q)
+ defer close(doneCh)
+
+ // make a request to generate some logs
+ _, err := agent.NodeName()
+ require.NoError(t, err)
+
+ // Wait for a log message
+OUTER:
+ for {
+ select {
+ case f := <-frames:
+ if strings.Contains(string(f.Data), "[DEBUG]") {
+ break OUTER
+ }
+ case err := <-errCh:
+ t.Errorf("Error: %v", err)
+ case <-time.After(2 * time.Second):
+ require.Fail(t, "failed to get a DEBUG log message")
+ }
+ }
+}
+
+// TestAgent_Monitor tests the Monitor endpoint
+// passing in only a log level, which tests the servers
+// monitor functionality
+func TestAgent_Monitor(t *testing.T) {
+ t.Parallel()
+ c, s := makeClient(t, nil, nil)
+ defer s.Stop()
+
+ agent := c.Agent()
+
+ q := &QueryOptions{
+ Params: map[string]string{
+ "log_level": "debug",
+ },
+ }
+
+ doneCh := make(chan struct{})
+ frames, errCh := agent.Monitor(doneCh, q)
+ defer close(doneCh)
+
+ // make a request to generate some logs
+ _, err := agent.Region()
+ require.NoError(t, err)
+
+ // Wait for a log message
+OUTER:
+ for {
+ select {
+ case log := <-frames:
+ if log == nil {
+ continue
+ }
+ if strings.Contains(string(log.Data), "[DEBUG]") {
+ break OUTER
+ }
+ case err := <-errCh:
+ t.Fatalf("error: %v", err)
+ case <-time.After(2 * time.Second):
+ require.Fail(t, "failed to get a DEBUG log message")
+ }
+ }
+}
diff --git a/api/allocations.go b/api/allocations.go
index 3a22af78e..05892a77e 100644
--- a/api/allocations.go
+++ b/api/allocations.go
@@ -210,12 +210,7 @@ func (a *Allocations) Exec(ctx context.Context,
func (a *Allocations) execFrames(ctx context.Context, alloc *Allocation, task string, tty bool, command []string,
errCh chan<- error, q *QueryOptions) (sendFn func(*ExecStreamingInput) error, output <-chan *ExecStreamingOutput) {
-
- nodeClient, err := a.client.GetNodeClientWithTimeout(alloc.NodeID, ClientConnTimeout, q)
- if err != nil {
- errCh <- err
- return nil, nil
- }
+ nodeClient, _ := a.client.GetNodeClientWithTimeout(alloc.NodeID, ClientConnTimeout, q)
if q == nil {
q = &QueryOptions{}
@@ -236,15 +231,17 @@ func (a *Allocations) execFrames(ctx context.Context, alloc *Allocation, task st
reqPath := fmt.Sprintf("/v1/client/allocation/%s/exec", alloc.ID)
- conn, _, err := nodeClient.websocket(reqPath, q)
- if err != nil {
- // There was an error talking directly to the client. Non-network
- // errors are fatal, but network errors can attempt to route via RPC.
- if _, ok := err.(net.Error); !ok {
+ var conn *websocket.Conn
+
+ if nodeClient != nil {
+ conn, _, err = nodeClient.websocket(reqPath, q)
+ if _, ok := err.(net.Error); err != nil && !ok {
errCh <- err
return nil, nil
}
+ }
+ if conn == nil {
conn, _, err = a.client.websocket(reqPath, q)
if err != nil {
errCh <- err
diff --git a/api/allocations_test.go b/api/allocations_test.go
index a18b7e147..d9543ccf2 100644
--- a/api/allocations_test.go
+++ b/api/allocations_test.go
@@ -1,13 +1,15 @@
package api
import (
+ "context"
+ "fmt"
+ "os"
"reflect"
"sort"
"testing"
"time"
- "github.com/hashicorp/go-uuid"
"github.com/stretchr/testify/require"
)
@@ -146,20 +148,12 @@ func TestAllocations_RescheduleInfo(t *testing.T) {
}
job.Canonicalize()
- uuidGen := func() string {
- ret, err := uuid.GenerateUUID()
- if err != nil {
- t.Fatal(err)
- }
- return ret
- }
-
alloc := &Allocation{
- ID: uuidGen(),
+ ID: generateUUID(),
Namespace: DefaultNamespace,
- EvalID: uuidGen(),
+ EvalID: generateUUID(),
Name: "foo-bar[1]",
- NodeID: uuidGen(),
+ NodeID: generateUUID(),
TaskGroup: *job.TaskGroups[0].Name,
JobID: *job.ID,
Job: job,
@@ -247,6 +241,53 @@ func TestAllocations_RescheduleInfo(t *testing.T) {
}
+// TestAllocations_ExecErrors ensures errors are properly formatted
+func TestAllocations_ExecErrors(t *testing.T) {
+ c, s := makeClient(t, nil, nil)
+ defer s.Stop()
+ a := c.Allocations()
+
+ job := &Job{
+ Name: stringToPtr("foo"),
+ Namespace: stringToPtr(DefaultNamespace),
+ ID: stringToPtr("bar"),
+ ParentID: stringToPtr("lol"),
+ TaskGroups: []*TaskGroup{
+ {
+ Name: stringToPtr("bar"),
+ Tasks: []*Task{
+ {
+ Name: "task1",
+ },
+ },
+ },
+ },
+ }
+ job.Canonicalize()
+
+ allocID := generateUUID()
+
+ alloc := &Allocation{
+ ID: allocID,
+ Namespace: DefaultNamespace,
+ EvalID: generateUUID(),
+ Name: "foo-bar[1]",
+ NodeID: generateUUID(),
+ TaskGroup: *job.TaskGroups[0].Name,
+ JobID: *job.ID,
+ Job: job,
+ }
+ // Querying when no allocs exist returns nothing
+ sizeCh := make(chan TerminalSize, 1)
+
+ // make a request that will result in an error
+ // ensure the error is what we expect
+ exitCode, err := a.Exec(context.Background(), alloc, "bar", false, []string{"command"}, os.Stdin, os.Stdout, os.Stderr, sizeCh, nil)
+
+ require.Equal(t, exitCode, -2)
+ require.Equal(t, err.Error(), fmt.Sprintf("Unknown allocation \"%s\"", allocID))
+}
+
func TestAllocations_ShouldMigrate(t *testing.T) {
t.Parallel()
require.True(t, DesiredTransition{Migrate: boolToPtr(true)}.ShouldMigrate())
diff --git a/api/api.go b/api/api.go
index bacb7c3c9..1ee9f19d1 100644
--- a/api/api.go
+++ b/api/api.go
@@ -257,6 +257,9 @@ func DefaultConfig() *Config {
if v := os.Getenv("NOMAD_CLIENT_KEY"); v != "" {
config.TLSConfig.ClientKey = v
}
+ if v := os.Getenv("NOMAD_TLS_SERVER_NAME"); v != "" {
+ config.TLSConfig.TLSServerName = v
+ }
if v := os.Getenv("NOMAD_SKIP_VERIFY"); v != "" {
if insecure, err := strconv.ParseBool(v); err == nil {
config.TLSConfig.Insecure = insecure
@@ -592,10 +595,11 @@ func (c *Client) newRequest(method, path string) (*request, error) {
config: &c.config,
method: method,
url: &url.URL{
- Scheme: base.Scheme,
- User: base.User,
- Host: base.Host,
- Path: u.Path,
+ Scheme: base.Scheme,
+ User: base.User,
+ Host: base.Host,
+ Path: u.Path,
+ RawPath: u.RawPath,
},
params: make(map[string][]string),
}
@@ -741,7 +745,16 @@ func (c *Client) websocket(endpoint string, q *QueryOptions) (*websocket.Conn, *
// check resp status code, as it's more informative than handshake error we get from ws library
if resp != nil && resp.StatusCode != 101 {
var buf bytes.Buffer
- io.Copy(&buf, resp.Body)
+
+ if resp.Header.Get("Content-Encoding") == "gzip" {
+ greader, err := gzip.NewReader(resp.Body)
+ if err != nil {
+ return nil, nil, fmt.Errorf("Unexpected response code: %d", resp.StatusCode)
+ }
+ io.Copy(&buf, greader)
+ } else {
+ io.Copy(&buf, resp.Body)
+ }
resp.Body.Close()
return nil, nil, fmt.Errorf("Unexpected response code: %d (%s)", resp.StatusCode, buf.Bytes())
diff --git a/api/api_test.go b/api/api_test.go
index 18fc214d3..e15897da4 100644
--- a/api/api_test.go
+++ b/api/api_test.go
@@ -11,7 +11,6 @@ import (
"testing"
"time"
- "github.com/hashicorp/go-uuid"
"github.com/hashicorp/nomad/api/internal/testutil"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
@@ -318,24 +317,16 @@ func TestQueryString(t *testing.T) {
func TestClient_NodeClient(t *testing.T) {
http := "testdomain:4646"
tlsNode := func(string, *QueryOptions) (*Node, *QueryMeta, error) {
- uu, err := uuid.GenerateUUID()
- if err != nil {
- t.Fatal(err)
- }
return &Node{
- ID: uu,
+ ID: generateUUID(),
Status: "ready",
HTTPAddr: http,
TLSEnabled: true,
}, nil, nil
}
noTlsNode := func(string, *QueryOptions) (*Node, *QueryMeta, error) {
- uu, err := uuid.GenerateUUID()
- if err != nil {
- t.Fatal(err)
- }
return &Node{
- ID: uu,
+ ID: generateUUID(),
Status: "ready",
HTTPAddr: http,
TLSEnabled: false,
diff --git a/api/constraint.go b/api/constraint.go
index 7b18ade9f..3233a3bfd 100644
--- a/api/constraint.go
+++ b/api/constraint.go
@@ -5,6 +5,7 @@ const (
ConstraintDistinctHosts = "distinct_hosts"
ConstraintRegex = "regexp"
ConstraintVersion = "version"
+ ConstraintSemver = "semver"
ConstraintSetContains = "set_contains"
ConstraintSetContainsAll = "set_contains_all"
ConstraintSetContainsAny = "set_contains_any"
diff --git a/api/fs.go b/api/fs.go
index b769236f7..e5340c966 100644
--- a/api/fs.go
+++ b/api/fs.go
@@ -92,72 +92,24 @@ func (a *AllocFS) Stat(alloc *Allocation, path string, q *QueryOptions) (*AllocF
// ReadAt is used to read bytes at a given offset until limit at the given path
// in an allocation directory. If limit is <= 0, there is no limit.
func (a *AllocFS) ReadAt(alloc *Allocation, path string, offset int64, limit int64, q *QueryOptions) (io.ReadCloser, error) {
- nodeClient, err := a.client.GetNodeClientWithTimeout(alloc.NodeID, ClientConnTimeout, q)
- if err != nil {
- return nil, err
- }
-
- if q == nil {
- q = &QueryOptions{}
- }
- if q.Params == nil {
- q.Params = make(map[string]string)
- }
-
- q.Params["path"] = path
- q.Params["offset"] = strconv.FormatInt(offset, 10)
- q.Params["limit"] = strconv.FormatInt(limit, 10)
-
reqPath := fmt.Sprintf("/v1/client/fs/readat/%s", alloc.ID)
- r, err := nodeClient.rawQuery(reqPath, q)
- if err != nil {
- // There was a networking error when talking directly to the client.
- if _, ok := err.(net.Error); !ok {
- return nil, err
- }
- // Try via the server
- r, err = a.client.rawQuery(reqPath, q)
- if err != nil {
- return nil, err
- }
- }
-
- return r, nil
+ return queryClientNode(a.client, alloc, reqPath, q,
+ func(q *QueryOptions) {
+ q.Params["path"] = path
+ q.Params["offset"] = strconv.FormatInt(offset, 10)
+ q.Params["limit"] = strconv.FormatInt(limit, 10)
+ })
}
// Cat is used to read contents of a file at the given path in an allocation
// directory
func (a *AllocFS) Cat(alloc *Allocation, path string, q *QueryOptions) (io.ReadCloser, error) {
- nodeClient, err := a.client.GetNodeClientWithTimeout(alloc.NodeID, ClientConnTimeout, q)
- if err != nil {
- return nil, err
- }
-
- if q == nil {
- q = &QueryOptions{}
- }
- if q.Params == nil {
- q.Params = make(map[string]string)
- }
-
- q.Params["path"] = path
reqPath := fmt.Sprintf("/v1/client/fs/cat/%s", alloc.ID)
- r, err := nodeClient.rawQuery(reqPath, q)
- if err != nil {
- // There was a networking error when talking directly to the client.
- if _, ok := err.(net.Error); !ok {
- return nil, err
- }
-
- // Try via the server
- r, err = a.client.rawQuery(reqPath, q)
- if err != nil {
- return nil, err
- }
- }
-
- return r, nil
+ return queryClientNode(a.client, alloc, reqPath, q,
+ func(q *QueryOptions) {
+ q.Params["path"] = path
+ })
}
// Stream streams the content of a file blocking on EOF.
@@ -172,40 +124,19 @@ func (a *AllocFS) Stream(alloc *Allocation, path, origin string, offset int64,
cancel <-chan struct{}, q *QueryOptions) (<-chan *StreamFrame, <-chan error) {
errCh := make(chan error, 1)
- nodeClient, err := a.client.GetNodeClientWithTimeout(alloc.NodeID, ClientConnTimeout, q)
+
+ reqPath := fmt.Sprintf("/v1/client/fs/stream/%s", alloc.ID)
+ r, err := queryClientNode(a.client, alloc, reqPath, q,
+ func(q *QueryOptions) {
+ q.Params["path"] = path
+ q.Params["offset"] = strconv.FormatInt(offset, 10)
+ q.Params["origin"] = origin
+ })
if err != nil {
errCh <- err
return nil, errCh
}
- if q == nil {
- q = &QueryOptions{}
- }
- if q.Params == nil {
- q.Params = make(map[string]string)
- }
-
- q.Params["path"] = path
- q.Params["offset"] = strconv.FormatInt(offset, 10)
- q.Params["origin"] = origin
-
- reqPath := fmt.Sprintf("/v1/client/fs/stream/%s", alloc.ID)
- r, err := nodeClient.rawQuery(reqPath, q)
- if err != nil {
- // There was a networking error when talking directly to the client.
- if _, ok := err.(net.Error); !ok {
- errCh <- err
- return nil, errCh
- }
-
- // Try via the server
- r, err = a.client.rawQuery(reqPath, q)
- if err != nil {
- errCh <- err
- return nil, errCh
- }
- }
-
// Create the output channel
frames := make(chan *StreamFrame, 10)
@@ -244,6 +175,40 @@ func (a *AllocFS) Stream(alloc *Allocation, path, origin string, offset int64,
return frames, errCh
}
+func queryClientNode(c *Client, alloc *Allocation, reqPath string, q *QueryOptions, customizeQ func(*QueryOptions)) (io.ReadCloser, error) {
+ nodeClient, _ := c.GetNodeClientWithTimeout(alloc.NodeID, ClientConnTimeout, q)
+
+ if q == nil {
+ q = &QueryOptions{}
+ }
+ if q.Params == nil {
+ q.Params = make(map[string]string)
+ }
+ if customizeQ != nil {
+ customizeQ(q)
+ }
+
+ var r io.ReadCloser
+ var err error
+
+ if nodeClient != nil {
+ r, err = nodeClient.rawQuery(reqPath, q)
+ if _, ok := err.(net.Error); err != nil && !ok {
+ // found a non networking error talking to client directly
+ return nil, err
+ }
+
+ }
+
+ // failed to query node, access through server directly
+ // or network error when talking to the client directly
+ if r == nil {
+ return c.rawQuery(reqPath, q)
+ }
+
+ return r, err
+}
+
// Logs streams the content of a tasks logs blocking on EOF.
// The parameters are:
// * allocation: the allocation to stream from.
@@ -264,42 +229,20 @@ func (a *AllocFS) Logs(alloc *Allocation, follow bool, task, logType, origin str
errCh := make(chan error, 1)
- nodeClient, err := a.client.GetNodeClientWithTimeout(alloc.NodeID, ClientConnTimeout, q)
+ reqPath := fmt.Sprintf("/v1/client/fs/logs/%s", alloc.ID)
+ r, err := queryClientNode(a.client, alloc, reqPath, q,
+ func(q *QueryOptions) {
+ q.Params["follow"] = strconv.FormatBool(follow)
+ q.Params["task"] = task
+ q.Params["type"] = logType
+ q.Params["origin"] = origin
+ q.Params["offset"] = strconv.FormatInt(offset, 10)
+ })
if err != nil {
errCh <- err
return nil, errCh
}
- if q == nil {
- q = &QueryOptions{}
- }
- if q.Params == nil {
- q.Params = make(map[string]string)
- }
-
- q.Params["follow"] = strconv.FormatBool(follow)
- q.Params["task"] = task
- q.Params["type"] = logType
- q.Params["origin"] = origin
- q.Params["offset"] = strconv.FormatInt(offset, 10)
-
- reqPath := fmt.Sprintf("/v1/client/fs/logs/%s", alloc.ID)
- r, err := nodeClient.rawQuery(reqPath, q)
- if err != nil {
- // There was a networking error when talking directly to the client.
- if _, ok := err.(net.Error); !ok {
- errCh <- err
- return nil, errCh
- }
-
- // Try via the server
- r, err = a.client.rawQuery(reqPath, q)
- if err != nil {
- errCh <- err
- return nil, errCh
- }
- }
-
// Create the output channel
frames := make(chan *StreamFrame, 10)
diff --git a/api/go.mod b/api/go.mod
index dd8d5f43f..8e89f7f58 100644
--- a/api/go.mod
+++ b/api/go.mod
@@ -5,9 +5,9 @@ go 1.12
require (
github.com/docker/go-units v0.3.3
github.com/gorhill/cronexpr v0.0.0-20180427100037-88b0669f7d75
+ github.com/gorilla/websocket v1.4.1
github.com/hashicorp/go-cleanhttp v0.5.1
github.com/hashicorp/go-rootcerts v1.0.0
- github.com/hashicorp/go-uuid v1.0.1
github.com/kr/pretty v0.1.0
github.com/mitchellh/go-testing-interface v1.0.0
github.com/stretchr/testify v1.3.0
diff --git a/api/go.sum b/api/go.sum
index c7297afe3..bf994bbd7 100644
--- a/api/go.sum
+++ b/api/go.sum
@@ -4,12 +4,12 @@ github.com/docker/go-units v0.3.3 h1:Xk8S3Xj5sLGlG5g67hJmYMmUgXv5N4PhkjJHHqrwnTk
github.com/docker/go-units v0.3.3/go.mod h1:fgPhTUdO+D/Jk86RDLlptpiXQzgHJF7gydDDbaIK4Dk=
github.com/gorhill/cronexpr v0.0.0-20180427100037-88b0669f7d75 h1:f0n1xnMSmBLzVfsMMvriDyA75NB/oBgILX2GcHXIQzY=
github.com/gorhill/cronexpr v0.0.0-20180427100037-88b0669f7d75/go.mod h1:g2644b03hfBX9Ov0ZBDgXXens4rxSxmqFBbhvKv2yVA=
+github.com/gorilla/websocket v1.4.1 h1:q7AeDBpnBk8AogcD4DSag/Ukw/KV+YhzLj2bP5HvKCM=
+github.com/gorilla/websocket v1.4.1/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
github.com/hashicorp/go-cleanhttp v0.5.1 h1:dH3aiDG9Jvb5r5+bYHsikaOUIpcM0xvgMXVoDkXMzJM=
github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80=
github.com/hashicorp/go-rootcerts v1.0.0 h1:Rqb66Oo1X/eSV1x66xbDccZjhJigjg0+e82kpwzSwCI=
github.com/hashicorp/go-rootcerts v1.0.0/go.mod h1:K6zTfqpRlCUIjkwsN4Z+hiSfzSTQa6eBIzfwKfwNnHU=
-github.com/hashicorp/go-uuid v1.0.1 h1:fv1ep09latC32wFoVwnqcnKJGnMSdBanPczbHAYm1BE=
-github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=
github.com/kr/pretty v0.1.0 h1:L/CwN0zerZDmRFUapSPitk6f+Q3+0za1rQkzVuMiMFI=
github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
diff --git a/api/jobs.go b/api/jobs.go
index b240b394f..e12709143 100644
--- a/api/jobs.go
+++ b/api/jobs.go
@@ -146,7 +146,7 @@ func (j *Jobs) PrefixList(prefix string) ([]*JobListStub, *QueryMeta, error) {
// job given its unique ID.
func (j *Jobs) Info(jobID string, q *QueryOptions) (*Job, *QueryMeta, error) {
var resp Job
- qm, err := j.client.query("/v1/job/"+jobID, &resp, q)
+ qm, err := j.client.query("/v1/job/"+url.PathEscape(jobID), &resp, q)
if err != nil {
return nil, nil, err
}
@@ -157,7 +157,7 @@ func (j *Jobs) Info(jobID string, q *QueryOptions) (*Job, *QueryMeta, error) {
// unique ID.
func (j *Jobs) Versions(jobID string, diffs bool, q *QueryOptions) ([]*Job, []*JobDiff, *QueryMeta, error) {
var resp JobVersionsResponse
- qm, err := j.client.query(fmt.Sprintf("/v1/job/%s/versions?diffs=%v", jobID, diffs), &resp, q)
+ qm, err := j.client.query(fmt.Sprintf("/v1/job/%s/versions?diffs=%v", url.PathEscape(jobID), diffs), &resp, q)
if err != nil {
return nil, nil, nil, err
}
@@ -167,7 +167,7 @@ func (j *Jobs) Versions(jobID string, diffs bool, q *QueryOptions) ([]*Job, []*J
// Allocations is used to return the allocs for a given job ID.
func (j *Jobs) Allocations(jobID string, allAllocs bool, q *QueryOptions) ([]*AllocationListStub, *QueryMeta, error) {
var resp []*AllocationListStub
- u, err := url.Parse("/v1/job/" + jobID + "/allocations")
+ u, err := url.Parse("/v1/job/" + url.PathEscape(jobID) + "/allocations")
if err != nil {
return nil, nil, err
}
@@ -188,7 +188,7 @@ func (j *Jobs) Allocations(jobID string, allAllocs bool, q *QueryOptions) ([]*Al
// ID.
func (j *Jobs) Deployments(jobID string, all bool, q *QueryOptions) ([]*Deployment, *QueryMeta, error) {
var resp []*Deployment
- u, err := url.Parse("/v1/job/" + jobID + "/deployments")
+ u, err := url.Parse("/v1/job/" + url.PathEscape(jobID) + "/deployments")
if err != nil {
return nil, nil, err
}
@@ -208,7 +208,7 @@ func (j *Jobs) Deployments(jobID string, all bool, q *QueryOptions) ([]*Deployme
// the given job ID.
func (j *Jobs) LatestDeployment(jobID string, q *QueryOptions) (*Deployment, *QueryMeta, error) {
var resp *Deployment
- qm, err := j.client.query("/v1/job/"+jobID+"/deployment", &resp, q)
+ qm, err := j.client.query("/v1/job/"+url.PathEscape(jobID)+"/deployment", &resp, q)
if err != nil {
return nil, nil, err
}
@@ -219,7 +219,7 @@ func (j *Jobs) LatestDeployment(jobID string, q *QueryOptions) (*Deployment, *Qu
// ID.
func (j *Jobs) Evaluations(jobID string, q *QueryOptions) ([]*Evaluation, *QueryMeta, error) {
var resp []*Evaluation
- qm, err := j.client.query("/v1/job/"+jobID+"/evaluations", &resp, q)
+ qm, err := j.client.query("/v1/job/"+url.PathEscape(jobID)+"/evaluations", &resp, q)
if err != nil {
return nil, nil, err
}
@@ -232,7 +232,7 @@ func (j *Jobs) Evaluations(jobID string, q *QueryOptions) ([]*Evaluation, *Query
// eventually GC'ed from the system. Most callers should not specify purge.
func (j *Jobs) Deregister(jobID string, purge bool, q *WriteOptions) (string, *WriteMeta, error) {
var resp JobDeregisterResponse
- wm, err := j.client.delete(fmt.Sprintf("/v1/job/%v?purge=%t", jobID, purge), &resp, q)
+ wm, err := j.client.delete(fmt.Sprintf("/v1/job/%v?purge=%t", url.PathEscape(jobID), purge), &resp, q)
if err != nil {
return "", nil, err
}
@@ -242,7 +242,7 @@ func (j *Jobs) Deregister(jobID string, purge bool, q *WriteOptions) (string, *W
// ForceEvaluate is used to force-evaluate an existing job.
func (j *Jobs) ForceEvaluate(jobID string, q *WriteOptions) (string, *WriteMeta, error) {
var resp JobRegisterResponse
- wm, err := j.client.write("/v1/job/"+jobID+"/evaluate", nil, &resp, q)
+ wm, err := j.client.write("/v1/job/"+url.PathEscape(jobID)+"/evaluate", nil, &resp, q)
if err != nil {
return "", nil, err
}
@@ -258,7 +258,7 @@ func (j *Jobs) EvaluateWithOpts(jobID string, opts EvalOptions, q *WriteOptions)
}
var resp JobRegisterResponse
- wm, err := j.client.write("/v1/job/"+jobID+"/evaluate", req, &resp, q)
+ wm, err := j.client.write("/v1/job/"+url.PathEscape(jobID)+"/evaluate", req, &resp, q)
if err != nil {
return "", nil, err
}
@@ -268,7 +268,7 @@ func (j *Jobs) EvaluateWithOpts(jobID string, opts EvalOptions, q *WriteOptions)
// PeriodicForce spawns a new instance of the periodic job and returns the eval ID
func (j *Jobs) PeriodicForce(jobID string, q *WriteOptions) (string, *WriteMeta, error) {
var resp periodicForceResponse
- wm, err := j.client.write("/v1/job/"+jobID+"/periodic/force", nil, &resp, q)
+ wm, err := j.client.write("/v1/job/"+url.PathEscape(jobID)+"/periodic/force", nil, &resp, q)
if err != nil {
return "", nil, err
}
@@ -301,7 +301,7 @@ func (j *Jobs) PlanOpts(job *Job, opts *PlanOptions, q *WriteOptions) (*JobPlanR
}
var resp JobPlanResponse
- wm, err := j.client.write("/v1/job/"+*job.ID+"/plan", req, &resp, q)
+ wm, err := j.client.write("/v1/job/"+url.PathEscape(*job.ID)+"/plan", req, &resp, q)
if err != nil {
return nil, nil, err
}
@@ -310,7 +310,7 @@ func (j *Jobs) PlanOpts(job *Job, opts *PlanOptions, q *WriteOptions) (*JobPlanR
func (j *Jobs) Summary(jobID string, q *QueryOptions) (*JobSummary, *QueryMeta, error) {
var resp JobSummary
- qm, err := j.client.query("/v1/job/"+jobID+"/summary", &resp, q)
+ qm, err := j.client.query("/v1/job/"+url.PathEscape(jobID)+"/summary", &resp, q)
if err != nil {
return nil, nil, err
}
@@ -325,7 +325,7 @@ func (j *Jobs) Dispatch(jobID string, meta map[string]string,
Meta: meta,
Payload: payload,
}
- wm, err := j.client.write("/v1/job/"+jobID+"/dispatch", req, &resp, q)
+ wm, err := j.client.write("/v1/job/"+url.PathEscape(jobID)+"/dispatch", req, &resp, q)
if err != nil {
return nil, nil, err
}
@@ -345,7 +345,7 @@ func (j *Jobs) Revert(jobID string, version uint64, enforcePriorVersion *uint64,
EnforcePriorVersion: enforcePriorVersion,
VaultToken: vaultToken,
}
- wm, err := j.client.write("/v1/job/"+jobID+"/revert", req, &resp, q)
+ wm, err := j.client.write("/v1/job/"+url.PathEscape(jobID)+"/revert", req, &resp, q)
if err != nil {
return nil, nil, err
}
@@ -362,7 +362,7 @@ func (j *Jobs) Stable(jobID string, version uint64, stable bool,
JobVersion: version,
Stable: stable,
}
- wm, err := j.client.write("/v1/job/"+jobID+"/stable", req, &resp, q)
+ wm, err := j.client.write("/v1/job/"+url.PathEscape(jobID)+"/stable", req, &resp, q)
if err != nil {
return nil, nil, err
}
diff --git a/api/jobs_test.go b/api/jobs_test.go
index 34de8e8d0..9ec503954 100644
--- a/api/jobs_test.go
+++ b/api/jobs_test.go
@@ -876,13 +876,15 @@ func TestJobs_Info(t *testing.T) {
// Trying to retrieve a job by ID before it exists
// returns an error
- _, _, err := jobs.Info("job1", nil)
+ id := "job-id/with\\troublesome:characters\n?&字\000"
+ _, _, err := jobs.Info(id, nil)
if err == nil || !strings.Contains(err.Error(), "not found") {
t.Fatalf("expected not found error, got: %#v", err)
}
// Register the job
job := testJob()
+ job.ID = &id
_, wm, err := jobs.Register(job, nil)
if err != nil {
t.Fatalf("err: %s", err)
@@ -890,7 +892,7 @@ func TestJobs_Info(t *testing.T) {
assertWriteMeta(t, wm)
// Query the job again and ensure it exists
- result, qm, err := jobs.Info("job1", nil)
+ result, qm, err := jobs.Info(id, nil)
if err != nil {
t.Fatalf("err: %s", err)
}
diff --git a/api/nodes.go b/api/nodes.go
index bf72034f0..4a264eb4d 100644
--- a/api/nodes.go
+++ b/api/nodes.go
@@ -126,7 +126,7 @@ func (m *MonitorMessage) String() string {
// MonitorDrain emits drain related events on the returned string channel. The
// channel will be closed when all allocations on the draining node have
-// stopped or the context is canceled.
+// stopped, when an error occurs, or if the context is canceled.
func (n *Nodes) MonitorDrain(ctx context.Context, nodeID string, index uint64, ignoreSys bool) <-chan *MonitorMessage {
outCh := make(chan *MonitorMessage, 8)
nodeCh := make(chan *MonitorMessage, 1)
@@ -335,7 +335,7 @@ func (n *Nodes) monitorDrainAllocs(ctx context.Context, nodeID string, ignoreSys
// Exit if all allocs are terminal
if runningAllocs == 0 {
- msg := Messagef(MonitorMsgLevelInfo, "All allocations on node %q have stopped.", nodeID)
+ msg := Messagef(MonitorMsgLevelInfo, "All allocations on node %q have stopped", nodeID)
select {
case allocCh <- msg:
case <-ctx.Done():
@@ -521,6 +521,9 @@ type DrainStrategy struct {
// ForceDeadline is the deadline time for the drain after which drains will
// be forced
ForceDeadline time.Time
+
+ // StartedAt is the time the drain process started
+ StartedAt time.Time
}
// DrainSpec describes a Node's drain behavior.
diff --git a/api/services.go b/api/services.go
index 91ce8626b..8630126ce 100644
--- a/api/services.go
+++ b/api/services.go
@@ -143,6 +143,7 @@ type ConsulConnect struct {
// ConsulSidecarService represents a Consul Connect SidecarService jobspec
// stanza.
type ConsulSidecarService struct {
+ Tags []string
Port string
Proxy *ConsulProxy
}
@@ -165,8 +166,10 @@ type SidecarTask struct {
// ConsulProxy represents a Consul Connect sidecar proxy jobspec stanza.
type ConsulProxy struct {
- Upstreams []*ConsulUpstream
- Config map[string]interface{}
+ LocalServiceAddress string `mapstructure:"local_service_address"`
+ LocalServicePort int `mapstructure:"local_service_port"`
+ Upstreams []*ConsulUpstream
+ Config map[string]interface{}
}
// ConsulUpstream represents a Consul Connect upstream jobspec stanza.
diff --git a/api/services_test.go b/api/services_test.go
index 4aac6f5d7..9dc2eb07c 100644
--- a/api/services_test.go
+++ b/api/services_test.go
@@ -54,3 +54,32 @@ func TestService_CheckRestart(t *testing.T) {
assert.Equal(t, *service.Checks[2].CheckRestart.Grace, 11*time.Second)
assert.True(t, service.Checks[2].CheckRestart.IgnoreWarnings)
}
+
+// TestService_Connect asserts Service.Connect settings are properly
+// inherited by Checks.
+func TestService_Connect(t *testing.T) {
+ job := &Job{Name: stringToPtr("job")}
+ tg := &TaskGroup{Name: stringToPtr("group")}
+ task := &Task{Name: "task"}
+ service := &Service{
+ Connect: &ConsulConnect{
+ SidecarService: &ConsulSidecarService{
+ Proxy: &ConsulProxy{
+ Upstreams: []*ConsulUpstream{
+ {
+ DestinationName: "upstream",
+ LocalBindPort: 80,
+ },
+ },
+ LocalServicePort: 8000,
+ },
+ },
+ },
+ }
+
+ service.Canonicalize(task, tg, job)
+ proxy := service.Connect.SidecarService.Proxy
+ assert.Equal(t, proxy.Upstreams[0].LocalBindPort, 80)
+ assert.Equal(t, proxy.Upstreams[0].DestinationName, "upstream")
+ assert.Equal(t, proxy.LocalServicePort, 8000)
+}
diff --git a/api/tasks.go b/api/tasks.go
index 2285c5bce..578188cc2 100644
--- a/api/tasks.go
+++ b/api/tasks.go
@@ -366,17 +366,32 @@ func (m *MigrateStrategy) Copy() *MigrateStrategy {
type VolumeRequest struct {
Name string
Type string
+ Source string
ReadOnly bool `mapstructure:"read_only"`
-
- Config map[string]interface{}
}
+const (
+ VolumeMountPropagationPrivate = "private"
+ VolumeMountPropagationHostToTask = "host-to-task"
+ VolumeMountPropagationBidirectional = "bidirectional"
+)
+
// VolumeMount represents the relationship between a destination path in a task
// and the task group volume that should be mounted there.
type VolumeMount struct {
- Volume string
- Destination string
- ReadOnly bool `mapstructure:"read_only"`
+ Volume *string
+ Destination *string
+ ReadOnly *bool `mapstructure:"read_only"`
+ PropagationMode *string `mapstructure:"propagation_mode"`
+}
+
+func (vm *VolumeMount) Canonicalize() {
+ if vm.PropagationMode == nil {
+ vm.PropagationMode = stringToPtr(VolumeMountPropagationPrivate)
+ }
+ if vm.ReadOnly == nil {
+ vm.ReadOnly = boolToPtr(false)
+ }
}
// TaskGroup is the unit of scheduling.
@@ -633,6 +648,9 @@ func (t *Task) Canonicalize(tg *TaskGroup, job *Job) {
for _, a := range t.Affinities {
a.Canonicalize()
}
+ for _, vm := range t.VolumeMounts {
+ vm.Canonicalize()
+ }
}
// TaskArtifact is used to download artifacts before running a task.
diff --git a/api/tasks_test.go b/api/tasks_test.go
index 29d9cf691..f83a91e24 100644
--- a/api/tasks_test.go
+++ b/api/tasks_test.go
@@ -368,6 +368,14 @@ func TestTask_Artifact(t *testing.T) {
}
}
+func TestTask_VolumeMount(t *testing.T) {
+ t.Parallel()
+ vm := &VolumeMount{}
+ vm.Canonicalize()
+ require.NotNil(t, vm.PropagationMode)
+ require.Equal(t, *vm.PropagationMode, "private")
+}
+
// Ensures no regression on https://github.com/hashicorp/nomad/issues/3132
func TestTaskGroup_Canonicalize_Update(t *testing.T) {
// Job with an Empty() Update
diff --git a/api/util_test.go b/api/util_test.go
index 9b2358db2..2ebf502d7 100644
--- a/api/util_test.go
+++ b/api/util_test.go
@@ -1,6 +1,8 @@
package api
import (
+ crand "crypto/rand"
+ "fmt"
"testing"
)
@@ -90,3 +92,18 @@ func int64ToPtr(i int64) *int64 {
func float64ToPtr(f float64) *float64 {
return &f
}
+
+// generateUUID generates a uuid useful for testing only
+func generateUUID() string {
+ buf := make([]byte, 16)
+ if _, err := crand.Read(buf); err != nil {
+ panic(fmt.Errorf("failed to read random bytes: %v", err))
+ }
+
+ return fmt.Sprintf("%08x-%04x-%04x-%04x-%12x",
+ buf[0:4],
+ buf[4:6],
+ buf[6:8],
+ buf[8:10],
+ buf[10:16])
+}
diff --git a/appveyor.yml b/appveyor.yml
index 25deb5f40..8336b333f 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -23,10 +23,10 @@ install:
cd %APPVEYOR_BUILD_FOLDER%
rmdir /Q/S C:\go
- # install go 1.12.9 to match version used for cutting a release
+ # install go 1.12.13 to match version used for cutting a release
- cmd: |
mkdir c:\go
- appveyor DownloadFile "https://dl.google.com/go/go1.12.9.windows-amd64.zip" -FileName "%TEMP%\\go.zip"
+ appveyor DownloadFile "https://dl.google.com/go/go1.12.13.windows-amd64.zip" -FileName "%TEMP%\\go.zip"
- ps: Expand-Archive $Env:TEMP\go.zip -DestinationPath C:\
diff --git a/client/agent_endpoint.go b/client/agent_endpoint.go
new file mode 100644
index 000000000..19df4732a
--- /dev/null
+++ b/client/agent_endpoint.go
@@ -0,0 +1,163 @@
+package client
+
+import (
+ "bytes"
+ "context"
+ "errors"
+ "io"
+ "time"
+
+ "github.com/hashicorp/nomad/command/agent/monitor"
+ "github.com/hashicorp/nomad/helper"
+ "github.com/hashicorp/nomad/nomad/structs"
+ "github.com/ugorji/go/codec"
+
+ metrics "github.com/armon/go-metrics"
+ log "github.com/hashicorp/go-hclog"
+ sframer "github.com/hashicorp/nomad/client/lib/streamframer"
+ cstructs "github.com/hashicorp/nomad/client/structs"
+)
+
+type Agent struct {
+ c *Client
+}
+
+func NewAgentEndpoint(c *Client) *Agent {
+ m := &Agent{c: c}
+ m.c.streamingRpcs.Register("Agent.Monitor", m.monitor)
+ return m
+}
+
+func (m *Agent) monitor(conn io.ReadWriteCloser) {
+ defer metrics.MeasureSince([]string{"client", "agent", "monitor"}, time.Now())
+ defer conn.Close()
+
+ // Decode arguments
+ var args cstructs.MonitorRequest
+ decoder := codec.NewDecoder(conn, structs.MsgpackHandle)
+ encoder := codec.NewEncoder(conn, structs.MsgpackHandle)
+
+ if err := decoder.Decode(&args); err != nil {
+ handleStreamResultError(err, helper.Int64ToPtr(500), encoder)
+ return
+ }
+
+ // Check acl
+ if aclObj, err := m.c.ResolveToken(args.AuthToken); err != nil {
+ handleStreamResultError(err, helper.Int64ToPtr(403), encoder)
+ return
+ } else if aclObj != nil && !aclObj.AllowAgentRead() {
+ handleStreamResultError(structs.ErrPermissionDenied, helper.Int64ToPtr(403), encoder)
+ return
+ }
+
+ logLevel := log.LevelFromString(args.LogLevel)
+ if args.LogLevel == "" {
+ logLevel = log.LevelFromString("INFO")
+ }
+
+ if logLevel == log.NoLevel {
+ handleStreamResultError(errors.New("Unknown log level"), helper.Int64ToPtr(400), encoder)
+ return
+ }
+
+ ctx, cancel := context.WithCancel(context.Background())
+ defer cancel()
+
+ monitor := monitor.New(512, m.c.logger, &log.LoggerOptions{
+ JSONFormat: args.LogJSON,
+ Level: logLevel,
+ })
+
+ frames := make(chan *sframer.StreamFrame, streamFramesBuffer)
+ errCh := make(chan error)
+ var buf bytes.Buffer
+ frameCodec := codec.NewEncoder(&buf, structs.JsonHandle)
+
+ framer := sframer.NewStreamFramer(frames, 1*time.Second, 200*time.Millisecond, 1024)
+ framer.Run()
+ defer framer.Destroy()
+
+ // goroutine to detect remote side closing
+ go func() {
+ if _, err := conn.Read(nil); err != nil {
+ // One end of the pipe explicitly closed, exit
+ cancel()
+ return
+ }
+ select {
+ case <-ctx.Done():
+ return
+ }
+ }()
+
+ logCh := monitor.Start()
+ defer monitor.Stop()
+ initialOffset := int64(0)
+
+ // receive logs and build frames
+ go func() {
+ defer framer.Destroy()
+ LOOP:
+ for {
+ select {
+ case log := <-logCh:
+ if err := framer.Send("", "log", log, initialOffset); err != nil {
+ select {
+ case errCh <- err:
+ case <-ctx.Done():
+ }
+ break LOOP
+ }
+ case <-ctx.Done():
+ break LOOP
+ }
+ }
+ }()
+
+ var streamErr error
+OUTER:
+ for {
+ select {
+ case frame, ok := <-frames:
+ if !ok {
+ // frame may have been closed when an error
+ // occurred. Check once more for an error.
+ select {
+ case streamErr = <-errCh:
+ // There was a pending error!
+ default:
+ // No error, continue on
+ }
+
+ break OUTER
+ }
+
+ var resp cstructs.StreamErrWrapper
+ if args.PlainText {
+ resp.Payload = frame.Data
+ } else {
+ if err := frameCodec.Encode(frame); err != nil {
+ streamErr = err
+ break OUTER
+ }
+
+ resp.Payload = buf.Bytes()
+ buf.Reset()
+ }
+
+ if err := encoder.Encode(resp); err != nil {
+ streamErr = err
+ break OUTER
+ }
+ encoder.Reset(conn)
+ case <-ctx.Done():
+ break OUTER
+ }
+ }
+
+ if streamErr != nil {
+ handleStreamResultError(streamErr, helper.Int64ToPtr(500), encoder)
+ return
+ }
+}
diff --git a/client/agent_endpoint_test.go b/client/agent_endpoint_test.go
new file mode 100644
index 000000000..14f53cc6a
--- /dev/null
+++ b/client/agent_endpoint_test.go
@@ -0,0 +1,215 @@
+package client
+
+import (
+ "encoding/json"
+ "fmt"
+ "io"
+ "net"
+ "strings"
+ "testing"
+ "time"
+
+ "github.com/hashicorp/nomad/acl"
+ "github.com/hashicorp/nomad/client/config"
+ sframer "github.com/hashicorp/nomad/client/lib/streamframer"
+ cstructs "github.com/hashicorp/nomad/client/structs"
+ "github.com/hashicorp/nomad/nomad"
+ "github.com/hashicorp/nomad/nomad/mock"
+ "github.com/hashicorp/nomad/nomad/structs"
+ "github.com/hashicorp/nomad/testutil"
+ "github.com/stretchr/testify/assert"
+ "github.com/stretchr/testify/require"
+ "github.com/ugorji/go/codec"
+)
+
+func TestMonitor_Monitor(t *testing.T) {
+ t.Parallel()
+ require := require.New(t)
+
+ // start server and client
+ s := nomad.TestServer(t, nil)
+ defer s.Shutdown()
+ testutil.WaitForLeader(t, s.RPC)
+
+ c, cleanup := TestClient(t, func(c *config.Config) {
+ c.Servers = []string{s.GetConfig().RPCAddr.String()}
+ })
+ defer cleanup()
+
+ req := cstructs.MonitorRequest{
+ LogLevel: "debug",
+ NodeID: c.NodeID(),
+ }
+
+ handler, err := c.StreamingRpcHandler("Agent.Monitor")
+ require.Nil(err)
+
+ // create pipe
+ p1, p2 := net.Pipe()
+ defer p1.Close()
+ defer p2.Close()
+
+ errCh := make(chan error)
+ streamMsg := make(chan *cstructs.StreamErrWrapper)
+
+ go handler(p2)
+
+ // Start decoder
+ go func() {
+ decoder := codec.NewDecoder(p1, structs.MsgpackHandle)
+ for {
+ var msg cstructs.StreamErrWrapper
+ if err := decoder.Decode(&msg); err != nil {
+ if err == io.EOF || strings.Contains(err.Error(), "closed") {
+ return
+ }
+ errCh <- fmt.Errorf("error decoding: %v", err)
+ }
+
+ streamMsg <- &msg
+ }
+ }()
+
+ // send request
+ encoder := codec.NewEncoder(p1, structs.MsgpackHandle)
+ require.Nil(encoder.Encode(req))
+
+ timeout := time.After(5 * time.Second)
+ expected := "[DEBUG]"
+ received := ""
+
+OUTER:
+ for {
+ select {
+ case <-timeout:
+ t.Fatal("timeout waiting for logs")
+ case err := <-errCh:
+ t.Fatal(err)
+ case msg := <-streamMsg:
+ if msg.Error != nil {
+ t.Fatalf("Got error: %v", msg.Error.Error())
+ }
+
+ var frame sframer.StreamFrame
+ err := json.Unmarshal(msg.Payload, &frame)
+ assert.NoError(t, err)
+
+ received += string(frame.Data)
+ if strings.Contains(received, expected) {
+ require.Nil(p2.Close())
+ break OUTER
+ }
+ }
+ }
+}
+
+func TestMonitor_Monitor_ACL(t *testing.T) {
+ t.Parallel()
+ require := require.New(t)
+
+ // start server
+ s, root := nomad.TestACLServer(t, nil)
+ defer s.Shutdown()
+ testutil.WaitForLeader(t, s.RPC)
+
+ c, cleanup := TestClient(t, func(c *config.Config) {
+ c.ACLEnabled = true
+ c.Servers = []string{s.GetConfig().RPCAddr.String()}
+ })
+ defer cleanup()
+
+ policyBad := mock.NodePolicy(acl.PolicyDeny)
+ tokenBad := mock.CreatePolicyAndToken(t, s.State(), 1005, "invalid", policyBad)
+
+ policyGood := mock.AgentPolicy(acl.PolicyRead)
+ tokenGood := mock.CreatePolicyAndToken(t, s.State(), 1009, "valid", policyGood)
+
+ cases := []struct {
+ Name string
+ Token string
+ ExpectedErr string
+ }{
+ {
+ Name: "bad token",
+ Token: tokenBad.SecretID,
+ ExpectedErr: structs.ErrPermissionDenied.Error(),
+ },
+ {
+ Name: "good token",
+ Token: tokenGood.SecretID,
+ ExpectedErr: "Unknown log level",
+ },
+ {
+ Name: "root token",
+ Token: root.SecretID,
+ ExpectedErr: "Unknown log level",
+ },
+ }
+
+ for _, tc := range cases {
+ t.Run(tc.Name, func(t *testing.T) {
+ req := &cstructs.MonitorRequest{
+ LogLevel: "unknown",
+ QueryOptions: structs.QueryOptions{
+ Namespace: structs.DefaultNamespace,
+ Region: "global",
+ AuthToken: tc.Token,
+ },
+ }
+
+ handler, err := c.StreamingRpcHandler("Agent.Monitor")
+ require.Nil(err)
+
+ // create pipe
+ p1, p2 := net.Pipe()
+ defer p1.Close()
+ defer p2.Close()
+
+ errCh := make(chan error)
+ streamMsg := make(chan *cstructs.StreamErrWrapper)
+
+ go handler(p2)
+
+ // Start decoder
+ go func() {
+ decoder := codec.NewDecoder(p1, structs.MsgpackHandle)
+ for {
+ var msg cstructs.StreamErrWrapper
+ if err := decoder.Decode(&msg); err != nil {
+ if err == io.EOF || strings.Contains(err.Error(), "closed") {
+ return
+ }
+ errCh <- fmt.Errorf("error decoding: %v", err)
+ }
+
+ streamMsg <- &msg
+ }
+ }()
+
+ // send request
+ encoder := codec.NewEncoder(p1, structs.MsgpackHandle)
+ require.Nil(encoder.Encode(req))
+
+ timeout := time.After(5 * time.Second)
+ OUTER:
+ for {
+ select {
+ case <-timeout:
+ t.Fatal("timeout")
+ case err := <-errCh:
+ t.Fatal(err)
+ case msg := <-streamMsg:
+ if msg.Error == nil {
+ continue
+ }
+
+ if strings.Contains(msg.Error.Error(), tc.ExpectedErr) {
+ break OUTER
+ } else {
+ t.Fatalf("Bad error: %v", msg.Error)
+ }
+ }
+ }
+ })
+ }
+}
diff --git a/client/alloc_endpoint.go b/client/alloc_endpoint.go
index e97e98812..18fcdd83a 100644
--- a/client/alloc_endpoint.go
+++ b/client/alloc_endpoint.go
@@ -49,10 +49,15 @@ func (a *Allocations) GarbageCollectAll(args *nstructs.NodeSpecificRequest, repl
func (a *Allocations) GarbageCollect(args *nstructs.AllocSpecificRequest, reply *nstructs.GenericResponse) error {
defer metrics.MeasureSince([]string{"client", "allocations", "garbage_collect"}, time.Now())
- // Check submit job permissions
+ alloc, err := a.c.GetAlloc(args.AllocID)
+ if err != nil {
+ return err
+ }
+
+ // Check namespace submit job permission.
if aclObj, err := a.c.ResolveToken(args.AuthToken); err != nil {
return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.Namespace, acl.NamespaceCapabilitySubmitJob) {
+ } else if aclObj != nil && !aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilitySubmitJob) {
return nstructs.ErrPermissionDenied
}
@@ -68,10 +73,15 @@ func (a *Allocations) GarbageCollect(args *nstructs.AllocSpecificRequest, reply
func (a *Allocations) Signal(args *nstructs.AllocSignalRequest, reply *nstructs.GenericResponse) error {
defer metrics.MeasureSince([]string{"client", "allocations", "signal"}, time.Now())
- // Check alloc-lifecycle permissions
+ alloc, err := a.c.GetAlloc(args.AllocID)
+ if err != nil {
+ return err
+ }
+
+ // Check namespace alloc-lifecycle permission.
if aclObj, err := a.c.ResolveToken(args.AuthToken); err != nil {
return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.Namespace, acl.NamespaceCapabilityAllocLifecycle) {
+ } else if aclObj != nil && !aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilityAllocLifecycle) {
return nstructs.ErrPermissionDenied
}
@@ -82,9 +92,15 @@ func (a *Allocations) Signal(args *nstructs.AllocSignalRequest, reply *nstructs.
func (a *Allocations) Restart(args *nstructs.AllocRestartRequest, reply *nstructs.GenericResponse) error {
defer metrics.MeasureSince([]string{"client", "allocations", "restart"}, time.Now())
+ alloc, err := a.c.GetAlloc(args.AllocID)
+ if err != nil {
+ return err
+ }
+
+ // Check namespace alloc-lifecycle permission.
if aclObj, err := a.c.ResolveToken(args.AuthToken); err != nil {
return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.Namespace, acl.NamespaceCapabilityAllocLifecycle) {
+ } else if aclObj != nil && !aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilityAllocLifecycle) {
return nstructs.ErrPermissionDenied
}
@@ -95,10 +111,15 @@ func (a *Allocations) Restart(args *nstructs.AllocRestartRequest, reply *nstruct
func (a *Allocations) Stats(args *cstructs.AllocStatsRequest, reply *cstructs.AllocStatsResponse) error {
defer metrics.MeasureSince([]string{"client", "allocations", "stats"}, time.Now())
- // Check read job permissions
+ alloc, err := a.c.GetAlloc(args.AllocID)
+ if err != nil {
+ return err
+ }
+
+ // Check read-job permission.
if aclObj, err := a.c.ResolveToken(args.AuthToken); err != nil {
return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.Namespace, acl.NamespaceCapabilityReadJob) {
+ } else if aclObj != nil && !aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilityReadJob) {
return nstructs.ErrPermissionDenied
}
@@ -148,6 +169,20 @@ func (a *Allocations) execImpl(encoder *codec.Encoder, decoder *codec.Decoder, e
return nil, structs.ErrPermissionDenied
}
+ if req.AllocID == "" {
+ return helper.Int64ToPtr(400), allocIDNotPresentErr
+ }
+ ar, err := a.c.getAllocRunner(req.AllocID)
+ if err != nil {
+ code := helper.Int64ToPtr(500)
+ if structs.IsErrUnknownAllocation(err) {
+ code = helper.Int64ToPtr(404)
+ }
+
+ return code, err
+ }
+ alloc := ar.Alloc()
+
aclObj, token, err := a.c.resolveTokenAndACL(req.QueryOptions.AuthToken)
{
// log access
@@ -167,20 +202,14 @@ func (a *Allocations) execImpl(encoder *codec.Encoder, decoder *codec.Decoder, e
)
}
- // Check read permissions
+ // Check alloc-exec permission.
if err != nil {
return nil, err
- } else if aclObj != nil {
- exec := aclObj.AllowNsOp(req.QueryOptions.Namespace, acl.NamespaceCapabilityAllocExec)
- if !exec {
- return nil, structs.ErrPermissionDenied
- }
+ } else if aclObj != nil && !aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilityAllocExec) {
+ return nil, structs.ErrPermissionDenied
}
// Validate the arguments
- if req.AllocID == "" {
- return helper.Int64ToPtr(400), allocIDNotPresentErr
- }
if req.Task == "" {
return helper.Int64ToPtr(400), taskNotPresentErr
}
@@ -188,16 +217,6 @@ func (a *Allocations) execImpl(encoder *codec.Encoder, decoder *codec.Decoder, e
return helper.Int64ToPtr(400), errors.New("command is not present")
}
- ar, err := a.c.getAllocRunner(req.AllocID)
- if err != nil {
- code := helper.Int64ToPtr(500)
- if structs.IsErrUnknownAllocation(err) {
- code = helper.Int64ToPtr(404)
- }
-
- return code, err
- }
-
capabilities, err := ar.GetTaskDriverCapabilities(req.Task)
if err != nil {
code := helper.Int64ToPtr(500)
@@ -210,7 +229,7 @@ func (a *Allocations) execImpl(encoder *codec.Encoder, decoder *codec.Decoder, e
// check node access
if aclObj != nil && capabilities.FSIsolation == drivers.FSIsolationNone {
- exec := aclObj.AllowNsOp(req.QueryOptions.Namespace, acl.NamespaceCapabilityAllocNodeExec)
+ exec := aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilityAllocNodeExec)
if !exec {
return nil, structs.ErrPermissionDenied
}
diff --git a/client/alloc_endpoint_test.go b/client/alloc_endpoint_test.go
index 4031aa737..f300001c0 100644
--- a/client/alloc_endpoint_test.go
+++ b/client/alloc_endpoint_test.go
@@ -78,9 +78,19 @@ func TestAllocations_Restart_ACL(t *testing.T) {
})
defer cleanup()
+ job := mock.BatchJob()
+ job.TaskGroups[0].Count = 1
+ job.TaskGroups[0].Tasks[0].Config = map[string]interface{}{
+ "run_for": "20s",
+ }
+
+ // Wait for client to be running job
+ alloc := testutil.WaitForRunningWithToken(t, server.RPC, job, root.SecretID)[0]
+
// Try request without a token and expect failure
{
req := &nstructs.AllocRestartRequest{}
+ req.AllocID = alloc.ID
var resp nstructs.GenericResponse
err := client.ClientRPC("Allocations.Restart", &req, &resp)
require.NotNil(err)
@@ -91,6 +101,7 @@ func TestAllocations_Restart_ACL(t *testing.T) {
{
token := mock.CreatePolicyAndToken(t, server.State(), 1005, "invalid", mock.NamespacePolicy(nstructs.DefaultNamespace, "", []string{}))
req := &nstructs.AllocRestartRequest{}
+ req.AllocID = alloc.ID
req.AuthToken = token.SecretID
var resp nstructs.GenericResponse
@@ -106,20 +117,27 @@ func TestAllocations_Restart_ACL(t *testing.T) {
token := mock.CreatePolicyAndToken(t, server.State(), 1007, "valid", policyHCL)
require.NotNil(token)
req := &nstructs.AllocRestartRequest{}
+ req.AllocID = alloc.ID
req.AuthToken = token.SecretID
req.Namespace = nstructs.DefaultNamespace
var resp nstructs.GenericResponse
err := client.ClientRPC("Allocations.Restart", &req, &resp)
- require.True(nstructs.IsErrUnknownAllocation(err), "Expected unknown alloc, found: %v", err)
+ require.NoError(err)
+ //require.True(nstructs.IsErrUnknownAllocation(err), "Expected unknown alloc, found: %v", err)
}
// Try request with a management token
{
req := &nstructs.AllocRestartRequest{}
+ req.AllocID = alloc.ID
req.AuthToken = root.SecretID
var resp nstructs.GenericResponse
err := client.ClientRPC("Allocations.Restart", &req, &resp)
- require.True(nstructs.IsErrUnknownAllocation(err), "Expected unknown alloc, found: %v", err)
+ // Depending on how quickly the alloc restarts there may be no
+ // error *or* a task not running error; either is fine.
+ if err != nil {
+ require.Contains(err.Error(), "Task not running", err)
+ }
}
}
@@ -239,9 +257,19 @@ func TestAllocations_GarbageCollect_ACL(t *testing.T) {
})
defer cleanup()
+ job := mock.BatchJob()
+ job.TaskGroups[0].Count = 1
+ job.TaskGroups[0].Tasks[0].Config = map[string]interface{}{
+ "run_for": "20s",
+ }
+
+ // Wait for client to be running job
+ alloc := testutil.WaitForRunningWithToken(t, server.RPC, job, root.SecretID)[0]
+
// Try request without a token and expect failure
{
req := &nstructs.AllocSpecificRequest{}
+ req.AllocID = alloc.ID
var resp nstructs.GenericResponse
err := client.ClientRPC("Allocations.GarbageCollect", &req, &resp)
require.NotNil(err)
@@ -252,6 +280,7 @@ func TestAllocations_GarbageCollect_ACL(t *testing.T) {
{
token := mock.CreatePolicyAndToken(t, server.State(), 1005, "invalid", mock.NodePolicy(acl.PolicyDeny))
req := &nstructs.AllocSpecificRequest{}
+ req.AllocID = alloc.ID
req.AuthToken = token.SecretID
var resp nstructs.GenericResponse
@@ -266,6 +295,7 @@ func TestAllocations_GarbageCollect_ACL(t *testing.T) {
token := mock.CreatePolicyAndToken(t, server.State(), 1005, "test-valid",
mock.NamespacePolicy(nstructs.DefaultNamespace, "", []string{acl.NamespaceCapabilitySubmitJob}))
req := &nstructs.AllocSpecificRequest{}
+ req.AllocID = alloc.ID
req.AuthToken = token.SecretID
req.Namespace = nstructs.DefaultNamespace
@@ -323,9 +353,19 @@ func TestAllocations_Signal_ACL(t *testing.T) {
})
defer cleanup()
+ job := mock.BatchJob()
+ job.TaskGroups[0].Count = 1
+ job.TaskGroups[0].Tasks[0].Config = map[string]interface{}{
+ "run_for": "20s",
+ }
+
+ // Wait for client to be running job
+ alloc := testutil.WaitForRunningWithToken(t, server.RPC, job, root.SecretID)[0]
+
// Try request without a token and expect failure
{
req := &nstructs.AllocSignalRequest{}
+ req.AllocID = alloc.ID
var resp nstructs.GenericResponse
err := client.ClientRPC("Allocations.Signal", &req, &resp)
require.NotNil(err)
@@ -336,6 +376,7 @@ func TestAllocations_Signal_ACL(t *testing.T) {
{
token := mock.CreatePolicyAndToken(t, server.State(), 1005, "invalid", mock.NodePolicy(acl.PolicyDeny))
req := &nstructs.AllocSignalRequest{}
+ req.AllocID = alloc.ID
req.AuthToken = token.SecretID
var resp nstructs.GenericResponse
@@ -350,22 +391,24 @@ func TestAllocations_Signal_ACL(t *testing.T) {
token := mock.CreatePolicyAndToken(t, server.State(), 1005, "test-valid",
mock.NamespacePolicy(nstructs.DefaultNamespace, "", []string{acl.NamespaceCapabilityAllocLifecycle}))
req := &nstructs.AllocSignalRequest{}
+ req.AllocID = alloc.ID
req.AuthToken = token.SecretID
req.Namespace = nstructs.DefaultNamespace
var resp nstructs.GenericResponse
err := client.ClientRPC("Allocations.Signal", &req, &resp)
- require.True(nstructs.IsErrUnknownAllocation(err))
+ require.NoError(err)
}
// Try request with a management token
{
req := &nstructs.AllocSignalRequest{}
+ req.AllocID = alloc.ID
req.AuthToken = root.SecretID
var resp nstructs.GenericResponse
err := client.ClientRPC("Allocations.Signal", &req, &resp)
- require.True(nstructs.IsErrUnknownAllocation(err))
+ require.NoError(err)
}
}
@@ -414,9 +457,19 @@ func TestAllocations_Stats_ACL(t *testing.T) {
})
defer cleanup()
+ job := mock.BatchJob()
+ job.TaskGroups[0].Count = 1
+ job.TaskGroups[0].Tasks[0].Config = map[string]interface{}{
+ "run_for": "20s",
+ }
+
+ // Wait for client to be running job
+ alloc := testutil.WaitForRunningWithToken(t, server.RPC, job, root.SecretID)[0]
+
// Try request without a token and expect failure
{
req := &cstructs.AllocStatsRequest{}
+ req.AllocID = alloc.ID
var resp cstructs.AllocStatsResponse
err := client.ClientRPC("Allocations.Stats", &req, &resp)
require.NotNil(err)
@@ -427,6 +480,7 @@ func TestAllocations_Stats_ACL(t *testing.T) {
{
token := mock.CreatePolicyAndToken(t, server.State(), 1005, "invalid", mock.NodePolicy(acl.PolicyDeny))
req := &cstructs.AllocStatsRequest{}
+ req.AllocID = alloc.ID
req.AuthToken = token.SecretID
var resp cstructs.AllocStatsResponse
@@ -441,22 +495,24 @@ func TestAllocations_Stats_ACL(t *testing.T) {
token := mock.CreatePolicyAndToken(t, server.State(), 1005, "test-valid",
mock.NamespacePolicy(nstructs.DefaultNamespace, "", []string{acl.NamespaceCapabilityReadJob}))
req := &cstructs.AllocStatsRequest{}
+ req.AllocID = alloc.ID
req.AuthToken = token.SecretID
req.Namespace = nstructs.DefaultNamespace
var resp cstructs.AllocStatsResponse
err := client.ClientRPC("Allocations.Stats", &req, &resp)
- require.True(nstructs.IsErrUnknownAllocation(err))
+ require.NoError(err)
}
// Try request with a management token
{
req := &cstructs.AllocStatsRequest{}
+ req.AllocID = alloc.ID
req.AuthToken = root.SecretID
var resp cstructs.AllocStatsResponse
err := client.ClientRPC("Allocations.Stats", &req, &resp)
- require.True(nstructs.IsErrUnknownAllocation(err))
+ require.NoError(err)
}
}
@@ -677,7 +733,6 @@ func TestAlloc_ExecStreaming_DisableRemoteExec(t *testing.T) {
func TestAlloc_ExecStreaming_ACL_Basic(t *testing.T) {
t.Parallel()
- require := require.New(t)
// Start a server and client
s, root := nomad.TestACLServer(t, nil)
@@ -698,6 +753,15 @@ func TestAlloc_ExecStreaming_ACL_Basic(t *testing.T) {
[]string{acl.NamespaceCapabilityAllocExec, acl.NamespaceCapabilityReadFS})
tokenGood := mock.CreatePolicyAndToken(t, s.State(), 1009, "valid2", policyGood)
+ job := mock.BatchJob()
+ job.TaskGroups[0].Count = 1
+ job.TaskGroups[0].Tasks[0].Config = map[string]interface{}{
+ "run_for": "20s",
+ }
+
+ // Wait for client to be running job
+ alloc := testutil.WaitForRunningWithToken(t, s.RPC, job, root.SecretID)[0]
+
cases := []struct {
Name string
Token string
@@ -711,12 +775,12 @@ func TestAlloc_ExecStreaming_ACL_Basic(t *testing.T) {
{
Name: "good token",
Token: tokenGood.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ ExpectedError: "task not found",
},
{
Name: "root token",
Token: root.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ ExpectedError: "task not found",
},
}
@@ -725,7 +789,7 @@ func TestAlloc_ExecStreaming_ACL_Basic(t *testing.T) {
// Make the request
req := &cstructs.AllocExecRequest{
- AllocID: uuid.Generate(),
+ AllocID: alloc.ID,
Task: "testtask",
Tty: true,
Cmd: []string{"placeholder command"},
@@ -738,7 +802,7 @@ func TestAlloc_ExecStreaming_ACL_Basic(t *testing.T) {
// Get the handler
handler, err := client.StreamingRpcHandler("Allocations.Exec")
- require.Nil(err)
+ require.Nil(t, err)
// Create a pipe
p1, p2 := net.Pipe()
@@ -754,15 +818,15 @@ func TestAlloc_ExecStreaming_ACL_Basic(t *testing.T) {
// Send the request
encoder := codec.NewEncoder(p1, nstructs.MsgpackHandle)
- require.Nil(encoder.Encode(req))
+ require.Nil(t, encoder.Encode(req))
select {
case <-time.After(3 * time.Second):
- require.FailNow("timed out")
+ require.FailNow(t, "timed out")
case err := <-errCh:
- require.Contains(err.Error(), c.ExpectedError)
+ require.Contains(t, err.Error(), c.ExpectedError)
case f := <-frames:
- require.Fail("received unexpected frame", "frame: %#v", f)
+ require.Fail(t, "received unexpected frame", "frame: %#v", f)
}
})
}
diff --git a/client/allocdir/alloc_dir.go b/client/allocdir/alloc_dir.go
index 871f6c521..f8ef62efb 100644
--- a/client/allocdir/alloc_dir.go
+++ b/client/allocdir/alloc_dir.go
@@ -63,7 +63,7 @@ var (
// AllocGRPCSocket is the path relative to the task dir root for the
// unix socket connected to Consul's gRPC endpoint.
- AllocGRPCSocket = filepath.Join(TmpDirName, "consul_grpc.sock")
+ AllocGRPCSocket = filepath.Join(SharedAllocName, TmpDirName, "consul_grpc.sock")
)
// AllocDir allows creating, destroying, and accessing an allocation's
diff --git a/client/allocdir/testing.go b/client/allocdir/testing.go
new file mode 100644
index 000000000..6e870fb42
--- /dev/null
+++ b/client/allocdir/testing.go
@@ -0,0 +1,37 @@
+package allocdir
+
+import (
+ "io/ioutil"
+ "os"
+
+ hclog "github.com/hashicorp/go-hclog"
+ testing "github.com/mitchellh/go-testing-interface"
+)
+
+// TestAllocDir returns a built alloc dir in a temporary directory and cleanup
+// func.
+func TestAllocDir(t testing.T, l hclog.Logger, prefix string) (*AllocDir, func()) {
+ dir, err := ioutil.TempDir("", prefix)
+ if err != nil {
+ t.Fatalf("Couldn't create temp dir: %v", err)
+ }
+
+ allocDir := NewAllocDir(l, dir)
+
+ cleanup := func() {
+ if err := os.RemoveAll(dir); err != nil {
+ t.Logf("error cleaning up alloc dir %q: %v", prefix, err)
+ }
+
+ if err := allocDir.Destroy(); err != nil {
+ t.Logf("error cleaning up alloc dir %q: %v", prefix, err)
+ }
+ }
+
+ if err := allocDir.Build(); err != nil {
+ cleanup()
+ t.Fatalf("error building alloc dir %q: %v", prefix, err)
+ }
+
+ return allocDir, cleanup
+}
diff --git a/client/allochealth/tracker.go b/client/allochealth/tracker.go
index abc923648..9b158828c 100644
--- a/client/allochealth/tracker.go
+++ b/client/allochealth/tracker.go
@@ -419,7 +419,7 @@ OUTER:
type taskHealthState struct {
task *structs.Task
state *structs.TaskState
- taskRegistrations *consul.TaskRegistration
+ taskRegistrations *consul.ServiceRegistrations
}
// event takes the deadline time for the allocation to be healthy and the update
diff --git a/client/allocrunner/alloc_runner.go b/client/allocrunner/alloc_runner.go
index f628ef501..a8291cc71 100644
--- a/client/allocrunner/alloc_runner.go
+++ b/client/allocrunner/alloc_runner.go
@@ -22,6 +22,7 @@ import (
cstate "github.com/hashicorp/nomad/client/state"
cstructs "github.com/hashicorp/nomad/client/structs"
"github.com/hashicorp/nomad/client/vaultclient"
+ agentconsul "github.com/hashicorp/nomad/command/agent/consul"
"github.com/hashicorp/nomad/helper"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/nomad/plugins/device"
@@ -259,7 +260,7 @@ func (ar *allocRunner) Run() {
ar.logger.Error("prerun failed", "error", err)
for _, tr := range ar.tasks {
- tr.MarkFailedDead(fmt.Sprintf("failed to setup runner: %v", err))
+ tr.MarkFailedDead(fmt.Sprintf("failed to setup alloc: %v", err))
}
goto POST
@@ -270,6 +271,10 @@ func (ar *allocRunner) Run() {
ar.runTasks()
POST:
+ if ar.isShuttingDown() {
+ return
+ }
+
// Run the postrun hooks
if err := ar.postrun(); err != nil {
ar.logger.Error("postrun failed", "error", err)
@@ -859,6 +864,14 @@ func (ar *allocRunner) IsWaiting() bool {
return ar.prevAllocWatcher.IsWaiting()
}
+// isShuttingDown returns true if the alloc runner is in a shutdown state
+// due to a call to Shutdown() or Destroy()
+func (ar *allocRunner) isShuttingDown() bool {
+ ar.destroyedLock.Lock()
+ defer ar.destroyedLock.Unlock()
+ return ar.shutdownLaunched
+}
+
// DestroyCh is a channel that is closed when an allocrunner is closed due to
// an explicit call to Destroy().
func (ar *allocRunner) DestroyCh() <-chan struct{} {
@@ -989,6 +1002,39 @@ func (ar *allocRunner) RestartTask(taskName string, taskEvent *structs.TaskEvent
return tr.Restart(context.TODO(), taskEvent, false)
}
+// Restart satisfies the WorkloadRestarter interface restarts all task runners
+// concurrently
+func (ar *allocRunner) Restart(ctx context.Context, event *structs.TaskEvent, failure bool) error {
+ waitCh := make(chan struct{})
+ var err *multierror.Error
+ var errMutex sync.Mutex
+
+ go func() {
+ var wg sync.WaitGroup
+ defer close(waitCh)
+ for tn, tr := range ar.tasks {
+ wg.Add(1)
+ go func(taskName string, r agentconsul.WorkloadRestarter) {
+ defer wg.Done()
+ e := r.Restart(ctx, event, failure)
+ if e != nil {
+ errMutex.Lock()
+ defer errMutex.Unlock()
+ err = multierror.Append(err, fmt.Errorf("failed to restart task %s: %v", taskName, e))
+ }
+ }(tn, tr)
+ }
+ wg.Wait()
+ }()
+
+ select {
+ case <-waitCh:
+ case <-ctx.Done():
+ }
+
+ return err.ErrorOrNil()
+}
+
// RestartAll signalls all task runners in the allocation to restart and passes
// a copy of the task event to each restart event.
// Returns any errors in a concatenated form.
diff --git a/client/allocrunner/alloc_runner_hooks.go b/client/allocrunner/alloc_runner_hooks.go
index 927c2a073..63dc78f49 100644
--- a/client/allocrunner/alloc_runner_hooks.go
+++ b/client/allocrunner/alloc_runner_hooks.go
@@ -7,6 +7,7 @@ import (
multierror "github.com/hashicorp/go-multierror"
"github.com/hashicorp/nomad/client/allocrunner/interfaces"
clientconfig "github.com/hashicorp/nomad/client/config"
+ "github.com/hashicorp/nomad/client/taskenv"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/nomad/plugins/drivers"
)
@@ -111,17 +112,28 @@ func (ar *allocRunner) initRunnerHooks(config *clientconfig.Config) error {
}
// create network configurator
- nc := newNetworkConfigurator(hookLogger, ar.Alloc(), config)
+ nc, err := newNetworkConfigurator(hookLogger, ar.Alloc(), config)
+ if err != nil {
+ return fmt.Errorf("failed to initialize network configurator: %v", err)
+ }
// Create the alloc directory hook. This is run first to ensure the
// directory path exists for other hooks.
+ alloc := ar.Alloc()
ar.runnerHooks = []interfaces.RunnerHook{
newAllocDirHook(hookLogger, ar.allocDir),
newUpstreamAllocsHook(hookLogger, ar.prevAllocWatcher),
newDiskMigrationHook(hookLogger, ar.prevAllocMigrator, ar.allocDir),
- newAllocHealthWatcherHook(hookLogger, ar.Alloc(), hs, ar.Listener(), ar.consulClient),
- newNetworkHook(hookLogger, ns, ar.Alloc(), nm, nc),
- newGroupServiceHook(hookLogger, ar.Alloc(), ar.consulClient),
+ newAllocHealthWatcherHook(hookLogger, alloc, hs, ar.Listener(), ar.consulClient),
+ newNetworkHook(hookLogger, ns, alloc, nm, nc),
+ newGroupServiceHook(groupServiceHookConfig{
+ alloc: alloc,
+ consul: ar.consulClient,
+ restarter: ar,
+ taskEnvBuilder: taskenv.NewBuilder(config.Node, ar.Alloc(), nil, config.Region).SetAllocDir(ar.allocDir.AllocDir),
+ logger: hookLogger,
+ }),
+ newConsulSockHook(hookLogger, alloc, ar.allocDir, config.ConsulConfig),
}
return nil
diff --git a/client/allocrunner/alloc_runner_test.go b/client/allocrunner/alloc_runner_test.go
index 548602f1e..f4ee44a65 100644
--- a/client/allocrunner/alloc_runner_test.go
+++ b/client/allocrunner/alloc_runner_test.go
@@ -528,7 +528,7 @@ func TestAllocRunner_DeploymentHealth_Unhealthy_Checks(t *testing.T) {
consulClient := conf.Consul.(*cconsul.MockConsulServiceClient)
consulClient.AllocRegistrationsFn = func(allocID string) (*consul.AllocRegistration, error) {
return &consul.AllocRegistration{
- Tasks: map[string]*consul.TaskRegistration{
+ Tasks: map[string]*consul.ServiceRegistrations{
task.Name: {
Services: map[string]*consul.ServiceRegistration{
"123": {
@@ -847,7 +847,7 @@ func TestAllocRunner_TaskFailed_KillTG(t *testing.T) {
consulClient := conf.Consul.(*cconsul.MockConsulServiceClient)
consulClient.AllocRegistrationsFn = func(allocID string) (*consul.AllocRegistration, error) {
return &consul.AllocRegistration{
- Tasks: map[string]*consul.TaskRegistration{
+ Tasks: map[string]*consul.ServiceRegistrations{
task.Name: {
Services: map[string]*consul.ServiceRegistration{
"123": {
diff --git a/client/allocrunner/alloc_runner_unix_test.go b/client/allocrunner/alloc_runner_unix_test.go
index 981d68ed9..7cc830510 100644
--- a/client/allocrunner/alloc_runner_unix_test.go
+++ b/client/allocrunner/alloc_runner_unix_test.go
@@ -33,6 +33,12 @@ func TestAllocRunner_Restore_RunningTerminal(t *testing.T) {
// 5. Assert task and logmon are cleaned up
alloc := mock.Alloc()
+ alloc.Job.TaskGroups[0].Services = []*structs.Service{
+ {
+ Name: "foo",
+ PortLabel: "8888",
+ },
+ }
task := alloc.Job.TaskGroups[0].Tasks[0]
task.Driver = "mock_driver"
task.Config = map[string]interface{}{
@@ -117,13 +123,12 @@ func TestAllocRunner_Restore_RunningTerminal(t *testing.T) {
// 2 removals (canary+noncanary) during prekill
// 2 removals (canary+noncanary) during exited
// 2 removals (canary+noncanary) during stop
- // 1 remove group during stop
+ // 2 removals (canary+noncanary) group during stop
consulOps := conf2.Consul.(*consul.MockConsulServiceClient).GetOps()
- require.Len(t, consulOps, 7)
- for _, op := range consulOps[:6] {
+ require.Len(t, consulOps, 8)
+ for _, op := range consulOps {
require.Equal(t, "remove", op.Op)
}
- require.Equal(t, "remove_group", consulOps[6].Op)
// Assert terminated task event was emitted
events := ar2.AllocState().TaskStates[task.Name].Events
diff --git a/client/allocrunner/consulsock_hook.go b/client/allocrunner/consulsock_hook.go
new file mode 100644
index 000000000..470b060b4
--- /dev/null
+++ b/client/allocrunner/consulsock_hook.go
@@ -0,0 +1,331 @@
+package allocrunner
+
+import (
+ "context"
+ "fmt"
+ "io"
+ "net"
+ "os"
+ "path/filepath"
+ "strings"
+ "sync"
+ "time"
+
+ hclog "github.com/hashicorp/go-hclog"
+ "github.com/hashicorp/nomad/client/allocdir"
+ "github.com/hashicorp/nomad/client/allocrunner/interfaces"
+ "github.com/hashicorp/nomad/nomad/structs"
+ "github.com/hashicorp/nomad/nomad/structs/config"
+)
+
+// consulSockHook creates Unix sockets to allow communication from inside a
+// netns to Consul.
+//
+// Noop for allocations without a group Connect stanza.
+type consulSockHook struct {
+ alloc *structs.Allocation
+
+ proxy *sockProxy
+
+ // mu synchronizes group & cancel as they may be mutated and accessed
+ // concurrently via Prerun, Update, Postrun.
+ mu sync.Mutex
+
+ logger hclog.Logger
+}
+
+func newConsulSockHook(logger hclog.Logger, alloc *structs.Allocation, allocDir *allocdir.AllocDir, config *config.ConsulConfig) *consulSockHook {
+ h := &consulSockHook{
+ alloc: alloc,
+ proxy: newSockProxy(logger, allocDir, config),
+ }
+ h.logger = logger.Named(h.Name())
+ return h
+}
+
+func (*consulSockHook) Name() string {
+ return "consul_socket"
+}
+
+// shouldRun returns true if the Unix socket should be created and proxied.
+// Requires the mutex to be held.
+func (h *consulSockHook) shouldRun() bool {
+ tg := h.alloc.Job.LookupTaskGroup(h.alloc.TaskGroup)
+ for _, s := range tg.Services {
+ if s.Connect != nil {
+ return true
+ }
+ }
+
+ return false
+}
+
+func (h *consulSockHook) Prerun() error {
+ h.mu.Lock()
+ defer h.mu.Unlock()
+
+ if !h.shouldRun() {
+ return nil
+ }
+
+ return h.proxy.run(h.alloc)
+}
+
+// Update creates a gRPC socket file and proxy if there are any Connect
+// services.
+func (h *consulSockHook) Update(req *interfaces.RunnerUpdateRequest) error {
+ h.mu.Lock()
+ defer h.mu.Unlock()
+
+ h.alloc = req.Alloc
+
+ if !h.shouldRun() {
+ return nil
+ }
+
+ return h.proxy.run(h.alloc)
+}
+
+func (h *consulSockHook) Postrun() error {
+ h.mu.Lock()
+ defer h.mu.Unlock()
+
+ if err := h.proxy.stop(); err != nil {
+ // Only log failures to stop proxies. Worst case scenario is a
+ // small goroutine leak.
+ h.logger.Debug("error stopping Consul proxy", "error", err)
+ }
+ return nil
+}
+
+type sockProxy struct {
+ allocDir *allocdir.AllocDir
+ config *config.ConsulConfig
+
+ ctx context.Context
+ cancel func()
+ doneCh chan struct{}
+ runOnce bool
+
+ logger hclog.Logger
+}
+
+func newSockProxy(logger hclog.Logger, allocDir *allocdir.AllocDir, config *config.ConsulConfig) *sockProxy {
+ ctx, cancel := context.WithCancel(context.Background())
+ return &sockProxy{
+ allocDir: allocDir,
+ config: config,
+ ctx: ctx,
+ cancel: cancel,
+ doneCh: make(chan struct{}),
+ logger: logger,
+ }
+}
+
+// run socket proxy if allocation requires it, it isn't already running, and it
+// hasn't been told to stop.
+//
+// NOT safe for concurrent use.
+func (s *sockProxy) run(alloc *structs.Allocation) error {
+ // Only run once.
+ if s.runOnce {
+ return nil
+ }
+
+ // Only run once. Never restart.
+ select {
+ case <-s.doneCh:
+ s.logger.Trace("socket proxy already shutdown; exiting")
+ return nil
+ case <-s.ctx.Done():
+ s.logger.Trace("socket proxy already done; exiting")
+ return nil
+ default:
+ }
+
+ destAddr := s.config.GRPCAddr
+ if destAddr == "" {
+ // No GRPCAddr defined. Use Addr but replace port with the gRPC
+ // default of 8502.
+ host, _, err := net.SplitHostPort(s.config.Addr)
+ if err != nil {
+ return fmt.Errorf("error parsing Consul address %q: %v",
+ s.config.Addr, err)
+ }
+
+ destAddr = net.JoinHostPort(host, "8502")
+ }
+
+ hostGRPCSockPath := filepath.Join(s.allocDir.AllocDir, allocdir.AllocGRPCSocket)
+
+ // if the socket already exists we'll try to remove it, but if not then any
+ // other errors will bubble up to the caller here or when we try to listen
+ _, err := os.Stat(hostGRPCSockPath)
+ if err == nil {
+ err := os.Remove(hostGRPCSockPath)
+ if err != nil {
+ return fmt.Errorf(
+ "unable to remove existing unix socket for Consul gRPC endpoint: %v", err)
+ }
+ }
+
+ listener, err := net.Listen("unix", hostGRPCSockPath)
+ if err != nil {
+ return fmt.Errorf("unable to create unix socket for Consul gRPC endpoint: %v", err)
+ }
+
+ // The gRPC socket should be usable by all users in case a task is
+ // running as an unprivileged user. Unix does not allow setting domain
+ // socket permissions when creating the file, so we must manually call
+ // chmod afterwards.
+ // https://github.com/golang/go/issues/11822
+ if err := os.Chmod(hostGRPCSockPath, os.ModePerm); err != nil {
+ return fmt.Errorf("unable to set permissions on unix socket for Consul gRPC endpoint: %v", err)
+ }
+
+ go func() {
+ proxy(s.ctx, s.logger, destAddr, listener)
+ s.cancel()
+ close(s.doneCh)
+ }()
+
+ s.runOnce = true
+ return nil
+}
+
+// stop the proxy and blocks until the proxy has stopped. Returns an error if
+// the proxy does not exit in a timely fashion.
+func (s *sockProxy) stop() error {
+ s.cancel()
+
+ // If proxy was never run, don't wait for anything to shutdown.
+ if !s.runOnce {
+ return nil
+ }
+
+ select {
+ case <-s.doneCh:
+ return nil
+ case <-time.After(3 * time.Second):
+ return fmt.Errorf("timed out waiting for proxy to exit")
+ }
+}
+
+// Proxy between a listener and dest
+func proxy(ctx context.Context, logger hclog.Logger, dest string, l net.Listener) {
+ // Wait for all connections to be done before exiting to prevent
+ // goroutine leaks.
+ wg := sync.WaitGroup{}
+ ctx, cancel := context.WithCancel(ctx)
+ defer func() {
+ // Must cancel context and close listener before waiting
+ cancel()
+ l.Close()
+ wg.Wait()
+ }()
+
+ // Close Accept() when context is cancelled
+ go func() {
+ <-ctx.Done()
+ l.Close()
+ }()
+
+ for ctx.Err() == nil {
+ conn, err := l.Accept()
+ if err != nil {
+ if ctx.Err() != nil {
+ // Accept errors during shutdown are to be expected
+ return
+ }
+ logger.Error("error in grpc proxy; shutting down proxy", "error", err, "dest", dest)
+ return
+ }
+
+ wg.Add(1)
+ go func() {
+ defer wg.Done()
+ proxyConn(ctx, logger, dest, conn)
+ }()
+ }
+}
+
+// proxyConn proxies between an existing net.Conn and a destination address. If
+// the destAddr starts with "unix://" it is treated as a path to a unix socket.
+// Otherwise it is treated as a host for a TCP connection.
+//
+// When the context is cancelled proxyConn blocks until all goroutines shutdown
+// to prevent leaks.
+func proxyConn(ctx context.Context, logger hclog.Logger, destAddr string, conn net.Conn) {
+ // Close the connection when we're done with it.
+ defer conn.Close()
+
+ ctx, cancel := context.WithCancel(ctx)
+ defer cancel()
+
+ // Detect unix sockets
+ network := "tcp"
+ const unixPrefix = "unix://"
+ if strings.HasPrefix(destAddr, unixPrefix) {
+ network = "unix"
+ destAddr = destAddr[len(unixPrefix):]
+ }
+
+ dialer := &net.Dialer{}
+ dest, err := dialer.DialContext(ctx, network, destAddr)
+ if err == context.Canceled || err == context.DeadlineExceeded {
+ logger.Trace("proxy exiting gracefully", "error", err, "dest", destAddr,
+ "src_local", conn.LocalAddr(), "src_remote", conn.RemoteAddr())
+ return
+ }
+ if err != nil {
+ logger.Error("error connecting to grpc", "error", err, "dest", destAddr)
+ return
+ }
+
+ // Wait for goroutines to exit before exiting to prevent leaking.
+ wg := sync.WaitGroup{}
+ defer wg.Wait()
+
+ // socket -> gRPC
+ wg.Add(1)
+ go func() {
+ defer wg.Done()
+ defer cancel()
+ n, err := io.Copy(dest, conn)
+ if ctx.Err() == nil && err != nil {
+ logger.Warn("error proxying to Consul", "error", err, "dest", destAddr,
+ "src_local", conn.LocalAddr(), "src_remote", conn.RemoteAddr(),
+ "bytes", n,
+ )
+ return
+ }
+ logger.Trace("proxy to Consul complete",
+ "src_local", conn.LocalAddr(), "src_remote", conn.RemoteAddr(),
+ "bytes", n,
+ )
+ }()
+
+ // gRPC -> socket
+ wg.Add(1)
+ go func() {
+ defer wg.Done()
+ defer cancel()
+ n, err := io.Copy(conn, dest)
+ if ctx.Err() == nil && err != nil {
+ logger.Warn("error proxying from Consul", "error", err, "dest", destAddr,
+ "src_local", conn.LocalAddr(), "src_remote", conn.RemoteAddr(),
+ "bytes", n,
+ )
+ return
+ }
+ logger.Trace("proxy from Consul complete",
+ "src_local", conn.LocalAddr(), "src_remote", conn.RemoteAddr(),
+ "bytes", n,
+ )
+ }()
+
+ // When cancelled close connections to break out of copies goroutines.
+ <-ctx.Done()
+ conn.Close()
+ dest.Close()
+}
diff --git a/client/allocrunner/consulsock_hook_test.go b/client/allocrunner/consulsock_hook_test.go
new file mode 100644
index 000000000..4651d3fef
--- /dev/null
+++ b/client/allocrunner/consulsock_hook_test.go
@@ -0,0 +1,275 @@
+package allocrunner
+
+import (
+ "bytes"
+ "context"
+ "fmt"
+ "io/ioutil"
+ "net"
+ "os"
+ "path/filepath"
+ "sync"
+ "testing"
+
+ "github.com/hashicorp/nomad/client/allocdir"
+ "github.com/hashicorp/nomad/client/allocrunner/interfaces"
+ "github.com/hashicorp/nomad/helper/testlog"
+ "github.com/hashicorp/nomad/nomad/mock"
+ "github.com/hashicorp/nomad/nomad/structs/config"
+ "github.com/stretchr/testify/assert"
+ "github.com/stretchr/testify/require"
+)
+
+// TestConsulSockHook_PrerunPostrun_Ok asserts that a proxy is started when the
+// Consul unix socket hook's Prerun method is called and stopped with the
+// Postrun method is called.
+func TestConsulSockHook_PrerunPostrun_Ok(t *testing.T) {
+ t.Parallel()
+
+ // As of Consul 1.6.0 the test server does not support the gRPC
+ // endpoint so we have to fake it.
+ fakeConsul, err := net.Listen("tcp", "127.0.0.1:0")
+ require.NoError(t, err)
+ defer fakeConsul.Close()
+ consulConfig := &config.ConsulConfig{
+ GRPCAddr: fakeConsul.Addr().String(),
+ }
+
+ alloc := mock.ConnectAlloc()
+
+ logger := testlog.HCLogger(t)
+
+ allocDir, cleanup := allocdir.TestAllocDir(t, logger, "EnvoyBootstrap")
+ defer cleanup()
+
+ // Start the unix socket proxy
+ h := newConsulSockHook(logger, alloc, allocDir, consulConfig)
+ require.NoError(t, h.Prerun())
+
+ gRPCSock := filepath.Join(allocDir.AllocDir, allocdir.AllocGRPCSocket)
+ envoyConn, err := net.Dial("unix", gRPCSock)
+ require.NoError(t, err)
+
+ // Write to Consul to ensure data is proxied out of the netns
+ input := bytes.Repeat([]byte{'X'}, 5*1024)
+ errCh := make(chan error, 1)
+ go func() {
+ _, err := envoyConn.Write(input)
+ errCh <- err
+ }()
+
+ // Accept the connection from the netns
+ consulConn, err := fakeConsul.Accept()
+ require.NoError(t, err)
+ defer consulConn.Close()
+
+ output := make([]byte, len(input))
+ _, err = consulConn.Read(output)
+ require.NoError(t, err)
+ require.NoError(t, <-errCh)
+ require.Equal(t, input, output)
+
+ // Read from Consul to ensure data is proxied into the netns
+ input = bytes.Repeat([]byte{'Y'}, 5*1024)
+ go func() {
+ _, err := consulConn.Write(input)
+ errCh <- err
+ }()
+
+ _, err = envoyConn.Read(output)
+ require.NoError(t, err)
+ require.NoError(t, <-errCh)
+ require.Equal(t, input, output)
+
+ // Stop the unix socket proxy
+ require.NoError(t, h.Postrun())
+
+ // Consul reads should error
+ n, err := consulConn.Read(output)
+ require.Error(t, err)
+ require.Zero(t, n)
+
+ // Envoy reads and writes should error
+ n, err = envoyConn.Write(input)
+ require.Error(t, err)
+ require.Zero(t, n)
+ n, err = envoyConn.Read(output)
+ require.Error(t, err)
+ require.Zero(t, n)
+}
+
+// TestConsulSockHook_Prerun_Error asserts that invalid Consul addresses cause
+// Prerun to return an error if the alloc requires a grpc proxy.
+func TestConsulSockHook_Prerun_Error(t *testing.T) {
+ t.Parallel()
+
+ logger := testlog.HCLogger(t)
+
+ allocDir, cleanup := allocdir.TestAllocDir(t, logger, "EnvoyBootstrap")
+ defer cleanup()
+
+ // A config without an Addr or GRPCAddr is invalid.
+ consulConfig := &config.ConsulConfig{}
+
+ alloc := mock.Alloc()
+ connectAlloc := mock.ConnectAlloc()
+
+ {
+ // An alloc without a Connect proxy sidecar should not return
+ // an error.
+ h := newConsulSockHook(logger, alloc, allocDir, consulConfig)
+ require.NoError(t, h.Prerun())
+
+ // Postrun should be a noop
+ require.NoError(t, h.Postrun())
+ }
+
+ {
+ // An alloc *with* a Connect proxy sidecar *should* return an error
+ // when Consul is not configured.
+ h := newConsulSockHook(logger, connectAlloc, allocDir, consulConfig)
+ require.Error(t, h.Prerun())
+
+ // Postrun should be a noop
+ require.NoError(t, h.Postrun())
+ }
+
+ {
+ // Updating an alloc without a sidecar to have a sidecar should
+ // error when the sidecar is added.
+ h := newConsulSockHook(logger, alloc, allocDir, consulConfig)
+ require.NoError(t, h.Prerun())
+
+ req := &interfaces.RunnerUpdateRequest{
+ Alloc: connectAlloc,
+ }
+ require.Error(t, h.Update(req))
+
+ // Postrun should be a noop
+ require.NoError(t, h.Postrun())
+ }
+}
+
+// TestConsulSockHook_proxy_Unix asserts that the destination can be a unix
+// socket path.
+func TestConsulSockHook_proxy_Unix(t *testing.T) {
+ t.Parallel()
+
+ dir, err := ioutil.TempDir("", "nomadtest_proxy_Unix")
+ require.NoError(t, err)
+ defer func() {
+ require.NoError(t, os.RemoveAll(dir))
+ }()
+
+ // Setup fake listener that would be inside the netns (normally a unix
+ // socket, but it doesn't matter for this test).
+ src, err := net.Listen("tcp", "127.0.0.1:0")
+ require.NoError(t, err)
+ defer src.Close()
+
+ // Setup fake listener that would be Consul outside the netns. Use a
+ // socket as Consul may be configured to listen on a unix socket.
+ destFn := filepath.Join(dir, "fakeconsul.sock")
+ dest, err := net.Listen("unix", destFn)
+ require.NoError(t, err)
+ defer dest.Close()
+
+ // Collect errors (must have len > goroutines)
+ errCh := make(chan error, 10)
+
+ // Block until completion
+ wg := sync.WaitGroup{}
+
+ ctx, cancel := context.WithCancel(context.Background())
+ defer cancel()
+
+ wg.Add(1)
+ go func() {
+ defer wg.Done()
+ proxy(ctx, testlog.HCLogger(t), "unix://"+destFn, src)
+ }()
+
+ // Fake Envoy
+ // Connect and write to the src (netns) side of the proxy; then read
+ // and exit.
+ wg.Add(1)
+ go func() {
+ defer func() {
+ // Cancel after final read has completed (or an error
+ // has occurred)
+ cancel()
+
+ wg.Done()
+ }()
+
+ addr := src.Addr()
+ conn, err := net.Dial(addr.Network(), addr.String())
+ if err != nil {
+ errCh <- err
+ return
+ }
+
+ defer conn.Close()
+
+ if _, err := conn.Write([]byte{'X'}); err != nil {
+ errCh <- err
+ return
+ }
+
+ recv := make([]byte, 1)
+ if _, err := conn.Read(recv); err != nil {
+ errCh <- err
+ return
+ }
+
+ if expected := byte('Y'); recv[0] != expected {
+ errCh <- fmt.Errorf("expected %q but received: %q", expected, recv[0])
+ return
+ }
+ }()
+
+ // Fake Consul on a unix socket
+ // Listen, receive 1 byte, write a response, and exit
+ wg.Add(1)
+ go func() {
+ defer wg.Done()
+
+ conn, err := dest.Accept()
+ if err != nil {
+ errCh <- err
+ return
+ }
+
+ // Close listener now. No more connections expected.
+ if err := dest.Close(); err != nil {
+ errCh <- err
+ return
+ }
+
+ defer conn.Close()
+
+ recv := make([]byte, 1)
+ if _, err := conn.Read(recv); err != nil {
+ errCh <- err
+ return
+ }
+
+ if expected := byte('X'); recv[0] != expected {
+ errCh <- fmt.Errorf("expected %q but received: %q", expected, recv[0])
+ return
+ }
+
+ if _, err := conn.Write([]byte{'Y'}); err != nil {
+ errCh <- err
+ return
+ }
+ }()
+
+ // Wait for goroutines to complete
+ wg.Wait()
+
+ // Make sure no errors occurred
+ for len(errCh) > 0 {
+ assert.NoError(t, <-errCh)
+ }
+}
diff --git a/client/allocrunner/groupservice_hook.go b/client/allocrunner/groupservice_hook.go
index b9c65b0bf..1660fc738 100644
--- a/client/allocrunner/groupservice_hook.go
+++ b/client/allocrunner/groupservice_hook.go
@@ -3,30 +3,63 @@ package allocrunner
import (
"sync"
- hclog "github.com/hashicorp/go-hclog"
log "github.com/hashicorp/go-hclog"
"github.com/hashicorp/nomad/client/allocrunner/interfaces"
"github.com/hashicorp/nomad/client/consul"
+ "github.com/hashicorp/nomad/client/taskenv"
+ agentconsul "github.com/hashicorp/nomad/command/agent/consul"
"github.com/hashicorp/nomad/nomad/structs"
+ "github.com/hashicorp/nomad/plugins/drivers"
)
// groupServiceHook manages task group Consul service registration and
// deregistration.
type groupServiceHook struct {
- alloc *structs.Allocation
+ allocID string
+ group string
+ restarter agentconsul.WorkloadRestarter
consulClient consul.ConsulServiceAPI
prerun bool
- mu sync.Mutex
logger log.Logger
+
+ // The following fields may be updated
+ canary bool
+ services []*structs.Service
+ networks structs.Networks
+ taskEnvBuilder *taskenv.Builder
+
+ // Since Update() may be called concurrently with any other hook all
+ // hook methods must be fully serialized
+ mu sync.Mutex
}
-func newGroupServiceHook(logger hclog.Logger, alloc *structs.Allocation, consulClient consul.ConsulServiceAPI) *groupServiceHook {
+type groupServiceHookConfig struct {
+ alloc *structs.Allocation
+ consul consul.ConsulServiceAPI
+ restarter agentconsul.WorkloadRestarter
+ taskEnvBuilder *taskenv.Builder
+ logger log.Logger
+}
+
+func newGroupServiceHook(cfg groupServiceHookConfig) *groupServiceHook {
h := &groupServiceHook{
- alloc: alloc,
- consulClient: consulClient,
+ allocID: cfg.alloc.ID,
+ group: cfg.alloc.TaskGroup,
+ restarter: cfg.restarter,
+ consulClient: cfg.consul,
+ taskEnvBuilder: cfg.taskEnvBuilder,
+ }
+ h.logger = cfg.logger.Named(h.Name())
+ h.services = cfg.alloc.Job.LookupTaskGroup(h.group).Services
+
+ if cfg.alloc.AllocatedResources != nil {
+ h.networks = cfg.alloc.AllocatedResources.Shared.Networks
+ }
+
+ if cfg.alloc.DeploymentStatus != nil {
+ h.canary = cfg.alloc.DeploymentStatus.Canary
}
- h.logger = logger.Named(h.Name())
return h
}
@@ -41,14 +74,39 @@ func (h *groupServiceHook) Prerun() error {
h.prerun = true
h.mu.Unlock()
}()
- return h.consulClient.RegisterGroup(h.alloc)
+
+ if len(h.services) == 0 {
+ return nil
+ }
+
+ services := h.getWorkloadServices()
+ return h.consulClient.RegisterWorkload(services)
}
func (h *groupServiceHook) Update(req *interfaces.RunnerUpdateRequest) error {
h.mu.Lock()
defer h.mu.Unlock()
- oldAlloc := h.alloc
- h.alloc = req.Alloc
+ oldWorkloadServices := h.getWorkloadServices()
+
+ // Store new updated values out of request
+ canary := false
+ if req.Alloc.DeploymentStatus != nil {
+ canary = req.Alloc.DeploymentStatus.Canary
+ }
+
+ var networks structs.Networks
+ if req.Alloc.AllocatedResources != nil {
+ networks = req.Alloc.AllocatedResources.Shared.Networks
+ }
+
+ // Update group service hook fields
+ h.networks = networks
+ h.services = req.Alloc.Job.LookupTaskGroup(h.group).Services
+ h.canary = canary
+ h.taskEnvBuilder.UpdateTask(req.Alloc, nil)
+
+ // Create new task services struct with those new values
+ newWorkloadServices := h.getWorkloadServices()
if !h.prerun {
// Update called before Prerun. Update alloc and exit to allow
@@ -56,11 +114,57 @@ func (h *groupServiceHook) Update(req *interfaces.RunnerUpdateRequest) error {
return nil
}
- return h.consulClient.UpdateGroup(oldAlloc, h.alloc)
+ return h.consulClient.UpdateWorkload(oldWorkloadServices, newWorkloadServices)
}
func (h *groupServiceHook) Postrun() error {
h.mu.Lock()
defer h.mu.Unlock()
- return h.consulClient.RemoveGroup(h.alloc)
+ h.deregister()
+ return nil
+}
+
+func (h *groupServiceHook) driverNet() *drivers.DriverNetwork {
+ if len(h.networks) == 0 {
+ return nil
+ }
+
+ //TODO(schmichael) only support one network for now
+ net := h.networks[0]
+ //TODO(schmichael) there's probably a better way than hacking driver network
+ return &drivers.DriverNetwork{
+ AutoAdvertise: true,
+ IP: net.IP,
+ // Copy PortLabels from group network
+ PortMap: net.PortLabels(),
+ }
+}
+
+// deregister services from Consul.
+func (h *groupServiceHook) deregister() {
+ if len(h.services) > 0 {
+ workloadServices := h.getWorkloadServices()
+ h.consulClient.RemoveWorkload(workloadServices)
+
+ // Canary flag may be getting flipped when the alloc is being
+ // destroyed, so remove both variations of the service
+ workloadServices.Canary = !workloadServices.Canary
+ h.consulClient.RemoveWorkload(workloadServices)
+ }
+}
+
+func (h *groupServiceHook) getWorkloadServices() *agentconsul.WorkloadServices {
+ // Interpolate with the task's environment
+ interpolatedServices := taskenv.InterpolateServices(h.taskEnvBuilder.Build(), h.services)
+
+ // Create task services struct with request's driver metadata
+ return &agentconsul.WorkloadServices{
+ AllocID: h.allocID,
+ Group: h.group,
+ Restarter: h.restarter,
+ Services: interpolatedServices,
+ DriverNetwork: h.driverNet(),
+ Networks: h.networks,
+ Canary: h.canary,
+ }
}
diff --git a/client/allocrunner/groupservice_hook_test.go b/client/allocrunner/groupservice_hook_test.go
index 3aa540e1d..afd8cb0d1 100644
--- a/client/allocrunner/groupservice_hook_test.go
+++ b/client/allocrunner/groupservice_hook_test.go
@@ -1,10 +1,15 @@
package allocrunner
import (
+ "io/ioutil"
"testing"
+ "time"
+ consulapi "github.com/hashicorp/consul/api"
+ ctestutil "github.com/hashicorp/consul/testutil"
"github.com/hashicorp/nomad/client/allocrunner/interfaces"
"github.com/hashicorp/nomad/client/consul"
+ "github.com/hashicorp/nomad/client/taskenv"
agentconsul "github.com/hashicorp/nomad/command/agent/consul"
"github.com/hashicorp/nomad/helper/testlog"
"github.com/hashicorp/nomad/nomad/mock"
@@ -22,10 +27,20 @@ func TestGroupServiceHook_NoGroupServices(t *testing.T) {
t.Parallel()
alloc := mock.Alloc()
+ alloc.Job.TaskGroups[0].Services = []*structs.Service{{
+ Name: "foo",
+ PortLabel: "9999",
+ }}
logger := testlog.HCLogger(t)
consulClient := consul.NewMockConsulServiceClient(t, logger)
- h := newGroupServiceHook(logger, alloc, consulClient)
+ h := newGroupServiceHook(groupServiceHookConfig{
+ alloc: alloc,
+ consul: consulClient,
+ restarter: agentconsul.NoopRestarter(),
+ taskEnvBuilder: taskenv.NewBuilder(mock.Node(), alloc, nil, alloc.Job.Region),
+ logger: logger,
+ })
require.NoError(t, h.Prerun())
req := &interfaces.RunnerUpdateRequest{Alloc: alloc}
@@ -34,10 +49,10 @@ func TestGroupServiceHook_NoGroupServices(t *testing.T) {
require.NoError(t, h.Postrun())
ops := consulClient.GetOps()
- require.Len(t, ops, 3)
- require.Equal(t, "add_group", ops[0].Op)
- require.Equal(t, "update_group", ops[1].Op)
- require.Equal(t, "remove_group", ops[2].Op)
+ require.Len(t, ops, 4)
+ require.Equal(t, "add", ops[0].Op)
+ require.Equal(t, "update", ops[1].Op)
+ require.Equal(t, "remove", ops[2].Op)
}
// TestGroupServiceHook_GroupServices asserts group service hooks with group
@@ -45,6 +60,140 @@ func TestGroupServiceHook_NoGroupServices(t *testing.T) {
func TestGroupServiceHook_GroupServices(t *testing.T) {
t.Parallel()
+ alloc := mock.ConnectAlloc()
+ logger := testlog.HCLogger(t)
+ consulClient := consul.NewMockConsulServiceClient(t, logger)
+
+ h := newGroupServiceHook(groupServiceHookConfig{
+ alloc: alloc,
+ consul: consulClient,
+ restarter: agentconsul.NoopRestarter(),
+ taskEnvBuilder: taskenv.NewBuilder(mock.Node(), alloc, nil, alloc.Job.Region),
+ logger: logger,
+ })
+ require.NoError(t, h.Prerun())
+
+ req := &interfaces.RunnerUpdateRequest{Alloc: alloc}
+ require.NoError(t, h.Update(req))
+
+ require.NoError(t, h.Postrun())
+
+ ops := consulClient.GetOps()
+ require.Len(t, ops, 4)
+ require.Equal(t, "add", ops[0].Op)
+ require.Equal(t, "update", ops[1].Op)
+ require.Equal(t, "remove", ops[2].Op)
+}
+
+// TestGroupServiceHook_Error asserts group service hooks with group
+// services but no group network returns an error.
+func TestGroupServiceHook_NoNetwork(t *testing.T) {
+ t.Parallel()
+
+ alloc := mock.Alloc()
+ alloc.Job.TaskGroups[0].Networks = []*structs.NetworkResource{}
+ tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup)
+ tg.Services = []*structs.Service{
+ {
+ Name: "testconnect",
+ PortLabel: "9999",
+ Connect: &structs.ConsulConnect{
+ SidecarService: &structs.ConsulSidecarService{},
+ },
+ },
+ }
+ logger := testlog.HCLogger(t)
+
+ consulClient := consul.NewMockConsulServiceClient(t, logger)
+
+ h := newGroupServiceHook(groupServiceHookConfig{
+ alloc: alloc,
+ consul: consulClient,
+ restarter: agentconsul.NoopRestarter(),
+ taskEnvBuilder: taskenv.NewBuilder(mock.Node(), alloc, nil, alloc.Job.Region),
+ logger: logger,
+ })
+ require.NoError(t, h.Prerun())
+
+ req := &interfaces.RunnerUpdateRequest{Alloc: alloc}
+ require.NoError(t, h.Update(req))
+
+ require.NoError(t, h.Postrun())
+
+ ops := consulClient.GetOps()
+ require.Len(t, ops, 4)
+ require.Equal(t, "add", ops[0].Op)
+ require.Equal(t, "update", ops[1].Op)
+ require.Equal(t, "remove", ops[2].Op)
+}
+
+func TestGroupServiceHook_getWorkloadServices(t *testing.T) {
+ t.Parallel()
+
+ alloc := mock.Alloc()
+ alloc.Job.TaskGroups[0].Networks = []*structs.NetworkResource{}
+ tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup)
+ tg.Services = []*structs.Service{
+ {
+ Name: "testconnect",
+ PortLabel: "9999",
+ Connect: &structs.ConsulConnect{
+ SidecarService: &structs.ConsulSidecarService{},
+ },
+ },
+ }
+ logger := testlog.HCLogger(t)
+
+ consulClient := consul.NewMockConsulServiceClient(t, logger)
+
+ h := newGroupServiceHook(groupServiceHookConfig{
+ alloc: alloc,
+ consul: consulClient,
+ restarter: agentconsul.NoopRestarter(),
+ taskEnvBuilder: taskenv.NewBuilder(mock.Node(), alloc, nil, alloc.Job.Region),
+ logger: logger,
+ })
+
+ services := h.getWorkloadServices()
+ require.Len(t, services.Services, 1)
+}
+
+// TestGroupServiceHook_Update08Alloc asserts that adding group services to a previously
+// 0.8 alloc works.
+//
+// COMPAT(0.11) Only valid for upgrades from 0.8.
+func TestGroupServiceHook_Update08Alloc(t *testing.T) {
+ // Create an embedded Consul server
+ testconsul, err := ctestutil.NewTestServerConfig(func(c *ctestutil.TestServerConfig) {
+ // If -v wasn't specified squelch consul logging
+ if !testing.Verbose() {
+ c.Stdout = ioutil.Discard
+ c.Stderr = ioutil.Discard
+ }
+ })
+ if err != nil {
+ t.Fatalf("error starting test consul server: %v", err)
+ }
+ defer testconsul.Stop()
+
+ consulConfig := consulapi.DefaultConfig()
+ consulConfig.Address = testconsul.HTTPAddr
+ consulClient, err := consulapi.NewClient(consulConfig)
+ require.NoError(t, err)
+ serviceClient := agentconsul.NewServiceClient(consulClient.Agent(), testlog.HCLogger(t), true)
+
+ // Lower periodicInterval to ensure periodic syncing doesn't improperly
+ // remove Connect services.
+ //const interval = 50 * time.Millisecond
+ //serviceClient.periodicInterval = interval
+
+ // Disable deregistration probation to test syncing
+ //serviceClient.deregisterProbationExpiry = time.Time{}
+
+ go serviceClient.Run()
+ defer serviceClient.Shutdown()
+
+ // Create new 0.10-style alloc
alloc := mock.Alloc()
alloc.AllocatedResources.Shared.Networks = []*structs.NetworkResource{
{
@@ -65,55 +214,37 @@ func TestGroupServiceHook_GroupServices(t *testing.T) {
Name: "testconnect",
PortLabel: "9999",
Connect: &structs.ConsulConnect{
- SidecarService: &structs.ConsulSidecarService{},
+ SidecarService: &structs.ConsulSidecarService{
+ Proxy: &structs.ConsulProxy{
+ LocalServicePort: 9000,
+ },
+ },
},
},
}
- logger := testlog.HCLogger(t)
- consulClient := consul.NewMockConsulServiceClient(t, logger)
- h := newGroupServiceHook(logger, alloc, consulClient)
+ // Create old 0.8-style alloc from new alloc
+ oldAlloc := alloc.Copy()
+ oldAlloc.AllocatedResources = nil
+ oldAlloc.Job.LookupTaskGroup(alloc.TaskGroup).Services = nil
+
+ // Create the group service hook
+ h := newGroupServiceHook(groupServiceHookConfig{
+ alloc: oldAlloc,
+ consul: serviceClient,
+ restarter: agentconsul.NoopRestarter(),
+ taskEnvBuilder: taskenv.NewBuilder(mock.Node(), oldAlloc, nil, oldAlloc.Job.Region),
+ logger: testlog.HCLogger(t),
+ })
+
require.NoError(t, h.Prerun())
+ require.NoError(t, h.Update(&interfaces.RunnerUpdateRequest{Alloc: alloc}))
- req := &interfaces.RunnerUpdateRequest{Alloc: alloc}
- require.NoError(t, h.Update(req))
+ // Assert the group and sidecar services are registered
+ require.Eventually(t, func() bool {
+ services, err := consulClient.Agent().Services()
+ require.NoError(t, err)
+ return len(services) == 2
+ }, 3*time.Second, 100*time.Millisecond)
- require.NoError(t, h.Postrun())
-
- ops := consulClient.GetOps()
- require.Len(t, ops, 3)
- require.Equal(t, "add_group", ops[0].Op)
- require.Equal(t, "update_group", ops[1].Op)
- require.Equal(t, "remove_group", ops[2].Op)
-}
-
-// TestGroupServiceHook_Error asserts group service hooks with group
-// services but no group network returns an error.
-func TestGroupServiceHook_Error(t *testing.T) {
- t.Parallel()
-
- alloc := mock.Alloc()
- tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup)
- tg.Services = []*structs.Service{
- {
- Name: "testconnect",
- PortLabel: "9999",
- Connect: &structs.ConsulConnect{
- SidecarService: &structs.ConsulSidecarService{},
- },
- },
- }
- logger := testlog.HCLogger(t)
-
- // No need to set Consul client or call Run. This hould fail before
- // attempting to register.
- consulClient := agentconsul.NewServiceClient(nil, logger, false)
-
- h := newGroupServiceHook(logger, alloc, consulClient)
- require.Error(t, h.Prerun())
-
- req := &interfaces.RunnerUpdateRequest{Alloc: alloc}
- require.Error(t, h.Update(req))
-
- require.Error(t, h.Postrun())
}
diff --git a/client/allocrunner/health_hook_test.go b/client/allocrunner/health_hook_test.go
index 75a4f399b..e4e3cfd2c 100644
--- a/client/allocrunner/health_hook_test.go
+++ b/client/allocrunner/health_hook_test.go
@@ -243,7 +243,7 @@ func TestHealthHook_SetHealth(t *testing.T) {
Name: task.Services[0].Checks[0].Name,
Status: consulapi.HealthPassing,
}
- taskRegs := map[string]*agentconsul.TaskRegistration{
+ taskRegs := map[string]*agentconsul.ServiceRegistrations{
task.Name: {
Services: map[string]*agentconsul.ServiceRegistration{
task.Services[0].Name: {
diff --git a/client/allocrunner/interfaces/task_lifecycle.go b/client/allocrunner/interfaces/task_lifecycle.go
index 680c0d9c2..ee99a507b 100644
--- a/client/allocrunner/interfaces/task_lifecycle.go
+++ b/client/allocrunner/interfaces/task_lifecycle.go
@@ -89,7 +89,7 @@ type TaskPrestartHook interface {
// Prestart is called before the task is started including after every
// restart. Prestart is not called if the allocation is terminal.
//
- // The context is cancelled if the task is killed.
+ // The context is cancelled if the task is killed or shutdown.
Prestart(context.Context, *TaskPrestartRequest, *TaskPrestartResponse) error
}
diff --git a/client/allocrunner/network_hook.go b/client/allocrunner/network_hook.go
index 7ee885ec2..aef13f219 100644
--- a/client/allocrunner/network_hook.go
+++ b/client/allocrunner/network_hook.go
@@ -1,6 +1,7 @@
package allocrunner
import (
+ "context"
"fmt"
hclog "github.com/hashicorp/go-hclog"
@@ -60,7 +61,8 @@ func (h *networkHook) Prerun() error {
return nil
}
- spec, err := h.manager.CreateNetwork(h.alloc.ID)
+ spec, created, err := h.manager.CreateNetwork(h.alloc.ID)
+
if err != nil {
return fmt.Errorf("failed to create network for alloc: %v", err)
}
@@ -70,8 +72,10 @@ func (h *networkHook) Prerun() error {
h.setter.SetNetworkIsolation(spec)
}
- if err := h.networkConfigurator.Setup(h.alloc, spec); err != nil {
- return fmt.Errorf("failed to configure networking for alloc: %v", err)
+ if created {
+ if err := h.networkConfigurator.Setup(context.TODO(), h.alloc, spec); err != nil {
+ return fmt.Errorf("failed to configure networking for alloc: %v", err)
+ }
}
return nil
}
@@ -81,7 +85,7 @@ func (h *networkHook) Postrun() error {
return nil
}
- if err := h.networkConfigurator.Teardown(h.alloc, h.spec); err != nil {
+ if err := h.networkConfigurator.Teardown(context.TODO(), h.alloc, h.spec); err != nil {
h.logger.Error("failed to cleanup network for allocation, resources may have leaked", "alloc", h.alloc.ID, "error", err)
}
return h.manager.DestroyNetwork(h.alloc.ID, h.spec)
diff --git a/client/allocrunner/network_hook_test.go b/client/allocrunner/network_hook_test.go
index e54f81943..f95475967 100644
--- a/client/allocrunner/network_hook_test.go
+++ b/client/allocrunner/network_hook_test.go
@@ -45,9 +45,9 @@ func TestNetworkHook_Prerun_Postrun(t *testing.T) {
destroyCalled := false
nm := &testutils.MockDriver{
MockNetworkManager: testutils.MockNetworkManager{
- CreateNetworkF: func(allocID string) (*drivers.NetworkIsolationSpec, error) {
+ CreateNetworkF: func(allocID string) (*drivers.NetworkIsolationSpec, bool, error) {
require.Equal(t, alloc.ID, allocID)
- return spec, nil
+ return spec, false, nil
},
DestroyNetworkF: func(allocID string, netSpec *drivers.NetworkIsolationSpec) error {
diff --git a/client/allocrunner/network_manager_linux.go b/client/allocrunner/network_manager_linux.go
index 1ee116346..c3f31bcf2 100644
--- a/client/allocrunner/network_manager_linux.go
+++ b/client/allocrunner/network_manager_linux.go
@@ -1,7 +1,6 @@
package allocrunner
import (
- "context"
"fmt"
"strings"
@@ -90,10 +89,10 @@ func newNetworkManager(alloc *structs.Allocation, driverManager drivermanager.Ma
// defaultNetworkManager creates a network namespace for the alloc
type defaultNetworkManager struct{}
-func (*defaultNetworkManager) CreateNetwork(allocID string) (*drivers.NetworkIsolationSpec, error) {
+func (*defaultNetworkManager) CreateNetwork(allocID string) (*drivers.NetworkIsolationSpec, bool, error) {
netns, err := nsutil.NewNS(allocID)
if err != nil {
- return nil, err
+ return nil, false, err
}
spec := &drivers.NetworkIsolationSpec{
@@ -102,7 +101,7 @@ func (*defaultNetworkManager) CreateNetwork(allocID string) (*drivers.NetworkIso
Labels: make(map[string]string),
}
- return spec, nil
+ return spec, true, nil
}
func (*defaultNetworkManager) DestroyNetwork(allocID string, spec *drivers.NetworkIsolationSpec) error {
@@ -122,18 +121,18 @@ func netModeToIsolationMode(netMode string) drivers.NetIsolationMode {
}
}
-func newNetworkConfigurator(log hclog.Logger, alloc *structs.Allocation, config *clientconfig.Config) NetworkConfigurator {
+func newNetworkConfigurator(log hclog.Logger, alloc *structs.Allocation, config *clientconfig.Config) (NetworkConfigurator, error) {
tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup)
// Check if network stanza is given
if len(tg.Networks) == 0 {
- return &hostNetworkConfigurator{}
+ return &hostNetworkConfigurator{}, nil
}
switch strings.ToLower(tg.Networks[0].Mode) {
case "bridge":
- return newBridgeNetworkConfigurator(log, context.Background(), config.BridgeNetworkName, config.BridgeNetworkAllocSubnet, config.CNIPath)
+ return newBridgeNetworkConfigurator(log, config.BridgeNetworkName, config.BridgeNetworkAllocSubnet, config.CNIPath)
default:
- return &hostNetworkConfigurator{}
+ return &hostNetworkConfigurator{}, nil
}
}
diff --git a/client/allocrunner/network_manager_nonlinux.go b/client/allocrunner/network_manager_nonlinux.go
index 2ad4492ea..49f161fcb 100644
--- a/client/allocrunner/network_manager_nonlinux.go
+++ b/client/allocrunner/network_manager_nonlinux.go
@@ -15,6 +15,6 @@ func newNetworkManager(alloc *structs.Allocation, driverManager drivermanager.Ma
return nil, nil
}
-func newNetworkConfigurator(log hclog.Logger, alloc *structs.Allocation, config *clientconfig.Config) NetworkConfigurator {
- return &hostNetworkConfigurator{}
+func newNetworkConfigurator(log hclog.Logger, alloc *structs.Allocation, config *clientconfig.Config) (NetworkConfigurator, error) {
+ return &hostNetworkConfigurator{}, nil
}
diff --git a/client/allocrunner/networking.go b/client/allocrunner/networking.go
index e4532aef9..6a988d4ec 100644
--- a/client/allocrunner/networking.go
+++ b/client/allocrunner/networking.go
@@ -1,6 +1,8 @@
package allocrunner
import (
+ "context"
+
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/nomad/plugins/drivers"
)
@@ -8,8 +10,8 @@ import (
// NetworkConfigurator sets up and tears down the interfaces, routes, firewall
// rules, etc for the configured networking mode of the allocation.
type NetworkConfigurator interface {
- Setup(*structs.Allocation, *drivers.NetworkIsolationSpec) error
- Teardown(*structs.Allocation, *drivers.NetworkIsolationSpec) error
+ Setup(context.Context, *structs.Allocation, *drivers.NetworkIsolationSpec) error
+ Teardown(context.Context, *structs.Allocation, *drivers.NetworkIsolationSpec) error
}
// hostNetworkConfigurator is a noop implementation of a NetworkConfigurator for
@@ -17,9 +19,9 @@ type NetworkConfigurator interface {
// require further configuration
type hostNetworkConfigurator struct{}
-func (h *hostNetworkConfigurator) Setup(*structs.Allocation, *drivers.NetworkIsolationSpec) error {
+func (h *hostNetworkConfigurator) Setup(context.Context, *structs.Allocation, *drivers.NetworkIsolationSpec) error {
return nil
}
-func (h *hostNetworkConfigurator) Teardown(*structs.Allocation, *drivers.NetworkIsolationSpec) error {
+func (h *hostNetworkConfigurator) Teardown(context.Context, *structs.Allocation, *drivers.NetworkIsolationSpec) error {
return nil
}
diff --git a/client/allocrunner/networking_bridge_linux.go b/client/allocrunner/networking_bridge_linux.go
index 4f6a24a29..4bb17cb63 100644
--- a/client/allocrunner/networking_bridge_linux.go
+++ b/client/allocrunner/networking_bridge_linux.go
@@ -8,7 +8,7 @@ import (
"path/filepath"
"time"
- "github.com/containernetworking/cni/libcni"
+ cni "github.com/containerd/go-cni"
"github.com/coreos/go-iptables/iptables"
hclog "github.com/hashicorp/go-hclog"
"github.com/hashicorp/nomad/nomad/structs"
@@ -28,9 +28,9 @@ const (
// the client
defaultNomadBridgeName = "nomad"
- // bridgeNetworkAllocIfName is the name that is set for the interface created
- // inside of the alloc network which is connected to the bridge
- bridgeNetworkContainerIfName = "eth0"
+ // bridgeNetworkAllocIfPrefix is the prefix that is used for the interface
+ // name created inside of the alloc network which is connected to the bridge
+ bridgeNetworkAllocIfPrefix = "eth"
// defaultNomadAllocSubnet is the subnet to use for host local ip address
// allocation when not specified by the client
@@ -45,8 +45,7 @@ const (
// shared bridge, configures masquerading for egress traffic and port mapping
// for ingress
type bridgeNetworkConfigurator struct {
- ctx context.Context
- cniConfig *libcni.CNIConfig
+ cni cni.CNI
allocSubnet string
bridgeName string
@@ -54,9 +53,8 @@ type bridgeNetworkConfigurator struct {
logger hclog.Logger
}
-func newBridgeNetworkConfigurator(log hclog.Logger, ctx context.Context, bridgeName, ipRange, cniPath string) *bridgeNetworkConfigurator {
+func newBridgeNetworkConfigurator(log hclog.Logger, bridgeName, ipRange, cniPath string) (*bridgeNetworkConfigurator, error) {
b := &bridgeNetworkConfigurator{
- ctx: ctx,
bridgeName: bridgeName,
allocSubnet: ipRange,
rand: rand.New(rand.NewSource(time.Now().Unix())),
@@ -67,7 +65,13 @@ func newBridgeNetworkConfigurator(log hclog.Logger, ctx context.Context, bridgeN
cniPath = defaultCNIPath
}
}
- b.cniConfig = libcni.NewCNIConfig(filepath.SplitList(cniPath), nil)
+
+ c, err := cni.New(cni.WithPluginDir(filepath.SplitList(cniPath)),
+ cni.WithInterfacePrefix(bridgeNetworkAllocIfPrefix))
+ if err != nil {
+ return nil, err
+ }
+ b.cni = c
if b.bridgeName == "" {
b.bridgeName = defaultNomadBridgeName
@@ -77,7 +81,7 @@ func newBridgeNetworkConfigurator(log hclog.Logger, ctx context.Context, bridgeN
b.allocSubnet = defaultNomadAllocSubnet
}
- return b
+ return b, nil
}
// ensureForwardingRules ensures that a forwarding rule is added to iptables
@@ -141,13 +145,12 @@ func (b *bridgeNetworkConfigurator) generateAdminChainRule() []string {
}
// Setup calls the CNI plugins with the add action
-func (b *bridgeNetworkConfigurator) Setup(alloc *structs.Allocation, spec *drivers.NetworkIsolationSpec) error {
+func (b *bridgeNetworkConfigurator) Setup(ctx context.Context, alloc *structs.Allocation, spec *drivers.NetworkIsolationSpec) error {
if err := b.ensureForwardingRules(); err != nil {
return fmt.Errorf("failed to initialize table forwarding rules: %v", err)
}
- netconf, err := b.buildNomadNetConfig()
- if err != nil {
+ if err := b.cni.Load(cni.WithConfListBytes(b.buildNomadNetConfig())); err != nil {
return err
}
@@ -156,18 +159,17 @@ func (b *bridgeNetworkConfigurator) Setup(alloc *structs.Allocation, spec *drive
// in one of them to fail. This rety attempts to overcome any
const retry = 3
for attempt := 1; ; attempt++ {
- result, err := b.cniConfig.AddNetworkList(b.ctx, netconf, b.runtimeConf(alloc, spec))
- if err == nil {
- break
+ //TODO eventually returning the IP from the result would be nice to have in the alloc
+ if _, err := b.cni.Setup(ctx, alloc.ID, spec.Path, cni.WithCapabilityPortMap(getPortMapping(alloc))); err != nil {
+ b.logger.Warn("failed to configure bridge network", "err", err, "attempt", attempt)
+ if attempt == retry {
+ return fmt.Errorf("failed to configure bridge network: %v", err)
+ }
+ // Sleep for 1 second + jitter
+ time.Sleep(time.Second + (time.Duration(b.rand.Int63n(1000)) * time.Millisecond))
+ continue
}
-
- b.logger.Warn("failed to configure bridge network", "err", err, "result", result.String(), "attempt", attempt)
- if attempt == retry {
- return err
- }
-
- // Sleep for 1 second + jitter
- time.Sleep(time.Second + (time.Duration(b.rand.Int63n(1000)) * time.Millisecond))
+ break
}
return nil
@@ -175,31 +177,24 @@ func (b *bridgeNetworkConfigurator) Setup(alloc *structs.Allocation, spec *drive
}
// Teardown calls the CNI plugins with the delete action
-func (b *bridgeNetworkConfigurator) Teardown(alloc *structs.Allocation, spec *drivers.NetworkIsolationSpec) error {
- netconf, err := b.buildNomadNetConfig()
- if err != nil {
- return err
- }
-
- err = b.cniConfig.DelNetworkList(b.ctx, netconf, b.runtimeConf(alloc, spec))
- return err
-
+func (b *bridgeNetworkConfigurator) Teardown(ctx context.Context, alloc *structs.Allocation, spec *drivers.NetworkIsolationSpec) error {
+ return b.cni.Remove(ctx, alloc.ID, spec.Path, cni.WithCapabilityPortMap(getPortMapping(alloc)))
}
// getPortMapping builds a list of portMapping structs that are used as the
// portmapping capability arguments for the portmap CNI plugin
-func getPortMapping(alloc *structs.Allocation) []*portMapping {
- ports := []*portMapping{}
+func getPortMapping(alloc *structs.Allocation) []cni.PortMapping {
+ ports := []cni.PortMapping{}
for _, network := range alloc.AllocatedResources.Shared.Networks {
for _, port := range append(network.DynamicPorts, network.ReservedPorts...) {
if port.To < 1 {
continue
}
for _, proto := range []string{"tcp", "udp"} {
- ports = append(ports, &portMapping{
- Host: port.Value,
- Container: port.To,
- Proto: proto,
+ ports = append(ports, cni.PortMapping{
+ HostPort: int32(port.Value),
+ ContainerPort: int32(port.To),
+ Protocol: proto,
})
}
}
@@ -207,31 +202,8 @@ func getPortMapping(alloc *structs.Allocation) []*portMapping {
return ports
}
-// portMapping is the json representation of the portmapping capability arguments
-// for the portmap CNI plugin
-type portMapping struct {
- Host int `json:"hostPort"`
- Container int `json:"containerPort"`
- Proto string `json:"protocol"`
-}
-
-// runtimeConf builds the configuration needed by CNI to locate the target netns
-func (b *bridgeNetworkConfigurator) runtimeConf(alloc *structs.Allocation, spec *drivers.NetworkIsolationSpec) *libcni.RuntimeConf {
- return &libcni.RuntimeConf{
- ContainerID: fmt.Sprintf("nomad-%s", alloc.ID[:8]),
- NetNS: spec.Path,
- IfName: bridgeNetworkContainerIfName,
- CapabilityArgs: map[string]interface{}{
- "portMappings": getPortMapping(alloc),
- },
- }
-}
-
-// buildNomadNetConfig generates the CNI network configuration for the bridge
-// networking mode
-func (b *bridgeNetworkConfigurator) buildNomadNetConfig() (*libcni.NetworkConfigList, error) {
- rendered := fmt.Sprintf(nomadCNIConfigTemplate, b.bridgeName, b.allocSubnet, cniAdminChainName)
- return libcni.ConfListFromBytes([]byte(rendered))
+func (b *bridgeNetworkConfigurator) buildNomadNetConfig() []byte {
+ return []byte(fmt.Sprintf(nomadCNIConfigTemplate, b.bridgeName, b.allocSubnet, cniAdminChainName))
}
const nomadCNIConfigTemplate = `{
@@ -243,6 +215,7 @@ const nomadCNIConfigTemplate = `{
"bridge": "%s",
"ipMasq": true,
"isGateway": true,
+ "forceAddress": true,
"ipam": {
"type": "host-local",
"ranges": [
diff --git a/client/allocrunner/taskrunner/envoybootstrap_hook.go b/client/allocrunner/taskrunner/envoybootstrap_hook.go
index d7ad1de6f..35beda5f6 100644
--- a/client/allocrunner/taskrunner/envoybootstrap_hook.go
+++ b/client/allocrunner/taskrunner/envoybootstrap_hook.go
@@ -72,15 +72,15 @@ func (h *envoyBootstrapHook) Prestart(ctx context.Context, req *interfaces.TaskP
h.logger.Debug("bootstrapping Connect proxy sidecar", "task", req.Task.Name, "service", serviceName)
- //TODO(schmichael) relies on GRPCSocket being created
- //TODO(schmichael) unnecessasry if the sidecar is running on the host netns
- grpcAddr := "unix://" + filepath.Join(allocdir.SharedAllocName, allocdir.AllocGRPCSocket)
+ //TODO Should connect directly to Consul if the sidecar is running on
+ // the host netns.
+ grpcAddr := "unix://" + allocdir.AllocGRPCSocket
// Envoy bootstrap configuration may contain a Consul token, so write
// it to the secrets directory like Vault tokens.
fn := filepath.Join(req.TaskDir.SecretsDir, "envoy_bootstrap.json")
- id := agentconsul.MakeTaskServiceID(h.alloc.ID, "group-"+tg.Name, service)
+ id := agentconsul.MakeAllocServiceID(h.alloc.ID, "group-"+tg.Name, service)
h.logger.Debug("bootstrapping envoy", "sidecar_for", service.Name, "boostrap_file", fn, "sidecar_for_id", id, "grpc_addr", grpcAddr)
// Since Consul services are registered asynchronously with this task
diff --git a/client/allocrunner/taskrunner/envoybootstrap_hook_test.go b/client/allocrunner/taskrunner/envoybootstrap_hook_test.go
index 08007b1ac..1bbfaf1b9 100644
--- a/client/allocrunner/taskrunner/envoybootstrap_hook_test.go
+++ b/client/allocrunner/taskrunner/envoybootstrap_hook_test.go
@@ -12,8 +12,10 @@ import (
consultest "github.com/hashicorp/consul/testutil"
"github.com/hashicorp/nomad/client/allocdir"
"github.com/hashicorp/nomad/client/allocrunner/interfaces"
+ "github.com/hashicorp/nomad/client/taskenv"
"github.com/hashicorp/nomad/client/testutil"
agentconsul "github.com/hashicorp/nomad/command/agent/consul"
+ "github.com/hashicorp/nomad/helper/args"
"github.com/hashicorp/nomad/helper/testlog"
"github.com/hashicorp/nomad/nomad/mock"
"github.com/hashicorp/nomad/nomad/structs"
@@ -73,14 +75,8 @@ func TestTaskRunner_EnvoyBootstrapHook_Ok(t *testing.T) {
logger := testlog.HCLogger(t)
- tmpAllocDir, err := ioutil.TempDir("", "EnvoyBootstrapHookTest")
- if err != nil {
- t.Fatalf("Couldn't create temp dir: %v", err)
- }
- defer os.RemoveAll(tmpAllocDir)
-
- allocDir := allocdir.NewAllocDir(testlog.HCLogger(t), tmpAllocDir)
- defer allocDir.Destroy()
+ allocDir, cleanup := allocdir.TestAllocDir(t, logger, "EnvoyBootstrap")
+ defer cleanup()
// Register Group Services
consulConfig := consulapi.DefaultConfig()
@@ -90,7 +86,7 @@ func TestTaskRunner_EnvoyBootstrapHook_Ok(t *testing.T) {
consulClient := agentconsul.NewServiceClient(consulAPIClient.Agent(), logger, true)
go consulClient.Run()
defer consulClient.Shutdown()
- require.NoError(t, consulClient.RegisterGroup(alloc))
+ require.NoError(t, consulClient.RegisterWorkload(agentconsul.BuildAllocServices(mock.Node(), alloc, agentconsul.NoopRestarter())))
// Run Connect bootstrap Hook
h := newEnvoyBootstrapHook(alloc, testconsul.HTTPAddr, logger)
@@ -108,7 +104,11 @@ func TestTaskRunner_EnvoyBootstrapHook_Ok(t *testing.T) {
// Assert it is Done
require.True(t, resp.Done)
- f, err := os.Open(filepath.Join(req.TaskDir.SecretsDir, "envoy_bootstrap.json"))
+ // Ensure the default path matches
+ env := map[string]string{
+ taskenv.SecretsDir: req.TaskDir.SecretsDir,
+ }
+ f, err := os.Open(args.ReplaceEnv(structs.EnvoyBootstrapPath, env))
require.NoError(t, err)
defer f.Close()
@@ -123,14 +123,8 @@ func TestTaskRunner_EnvoyBootstrapHook_Noop(t *testing.T) {
t.Parallel()
logger := testlog.HCLogger(t)
- tmpAllocDir, err := ioutil.TempDir("", "EnvoyBootstrapHookTest")
- if err != nil {
- t.Fatalf("Couldn't create temp dir: %v", err)
- }
- defer os.RemoveAll(tmpAllocDir)
-
- allocDir := allocdir.NewAllocDir(testlog.HCLogger(t), tmpAllocDir)
- defer allocDir.Destroy()
+ allocDir, cleanup := allocdir.TestAllocDir(t, logger, "EnvoyBootstrap")
+ defer cleanup()
alloc := mock.Alloc()
task := alloc.Job.LookupTaskGroup(alloc.TaskGroup).Tasks[0]
@@ -153,7 +147,7 @@ func TestTaskRunner_EnvoyBootstrapHook_Noop(t *testing.T) {
require.True(t, resp.Done)
// Assert no file was written
- _, err = os.Open(filepath.Join(req.TaskDir.SecretsDir, "envoy_bootstrap.json"))
+ _, err := os.Open(filepath.Join(req.TaskDir.SecretsDir, "envoy_bootstrap.json"))
require.Error(t, err)
require.True(t, os.IsNotExist(err))
}
@@ -209,14 +203,8 @@ func TestTaskRunner_EnvoyBootstrapHook_RecoverableError(t *testing.T) {
logger := testlog.HCLogger(t)
- tmpAllocDir, err := ioutil.TempDir("", "EnvoyBootstrapHookTest")
- if err != nil {
- t.Fatalf("Couldn't create temp dir: %v", err)
- }
- defer os.RemoveAll(tmpAllocDir)
-
- allocDir := allocdir.NewAllocDir(testlog.HCLogger(t), tmpAllocDir)
- defer allocDir.Destroy()
+ allocDir, cleanup := allocdir.TestAllocDir(t, logger, "EnvoyBootstrap")
+ defer cleanup()
// Unlike the successful test above, do NOT register the group services
// yet. This should cause a recoverable error similar to if Consul was
diff --git a/client/allocrunner/taskrunner/getter/getter.go b/client/allocrunner/taskrunner/getter/getter.go
index a7698d9b7..c896d6f92 100644
--- a/client/allocrunner/taskrunner/getter/getter.go
+++ b/client/allocrunner/taskrunner/getter/getter.go
@@ -18,7 +18,7 @@ var (
lock sync.Mutex
// supported is the set of download schemes supported by Nomad
- supported = []string{"http", "https", "s3", "hg", "git"}
+ supported = []string{"http", "https", "s3", "hg", "git", "gcs"}
)
const (
diff --git a/client/allocrunner/taskrunner/getter/getter_test.go b/client/allocrunner/taskrunner/getter/getter_test.go
index ef961bbc1..2816be10b 100644
--- a/client/allocrunner/taskrunner/getter/getter_test.go
+++ b/client/allocrunner/taskrunner/getter/getter_test.go
@@ -342,6 +342,13 @@ func TestGetGetterUrl_Queries(t *testing.T) {
},
output: "bucket.s3-eu-west-1.amazonaws.com/foo/bar?aws_access_key_id=abcd1234",
},
+ {
+ name: "gcs",
+ artifact: &structs.TaskArtifact{
+ GetterSource: "gcs::https://www.googleapis.com/storage/v1/b/d/f",
+ },
+ output: "gcs::https://www.googleapis.com/storage/v1/b/d/f",
+ },
{
name: "local file",
artifact: &structs.TaskArtifact{
diff --git a/client/allocrunner/taskrunner/script_check_hook.go b/client/allocrunner/taskrunner/script_check_hook.go
new file mode 100644
index 000000000..b40e92301
--- /dev/null
+++ b/client/allocrunner/taskrunner/script_check_hook.go
@@ -0,0 +1,422 @@
+package taskrunner
+
+import (
+ "context"
+ "fmt"
+ "sync"
+ "time"
+
+ "github.com/hashicorp/consul/api"
+ log "github.com/hashicorp/go-hclog"
+ "github.com/hashicorp/nomad/client/allocrunner/interfaces"
+ tinterfaces "github.com/hashicorp/nomad/client/allocrunner/taskrunner/interfaces"
+ "github.com/hashicorp/nomad/client/consul"
+ "github.com/hashicorp/nomad/client/taskenv"
+ agentconsul "github.com/hashicorp/nomad/command/agent/consul"
+ "github.com/hashicorp/nomad/nomad/structs"
+)
+
+var _ interfaces.TaskPoststartHook = &scriptCheckHook{}
+var _ interfaces.TaskUpdateHook = &scriptCheckHook{}
+var _ interfaces.TaskStopHook = &scriptCheckHook{}
+
+// default max amount of time to wait for all scripts on shutdown.
+const defaultShutdownWait = time.Minute
+
+type scriptCheckHookConfig struct {
+ alloc *structs.Allocation
+ task *structs.Task
+ consul consul.ConsulServiceAPI
+ logger log.Logger
+ shutdownWait time.Duration
+}
+
+// scriptCheckHook implements a task runner hook for running script
+// checks in the context of a task
+type scriptCheckHook struct {
+ consul consul.ConsulServiceAPI
+ alloc *structs.Allocation
+ task *structs.Task
+ logger log.Logger
+ shutdownWait time.Duration // max time to wait for scripts to shutdown
+ shutdownCh chan struct{} // closed when all scripts should shutdown
+
+ // The following fields can be changed by Update()
+ driverExec tinterfaces.ScriptExecutor
+ taskEnv *taskenv.TaskEnv
+
+ // These maintain state and are populated by Poststart() or Update()
+ scripts map[string]*scriptCheck
+ runningScripts map[string]*taskletHandle
+
+ // Since Update() may be called concurrently with any other hook all
+ // hook methods must be fully serialized
+ mu sync.Mutex
+}
+
+// newScriptCheckHook returns a hook without any scriptChecks.
+// They will get created only once their task environment is ready
+// in Poststart() or Update()
+func newScriptCheckHook(c scriptCheckHookConfig) *scriptCheckHook {
+ h := &scriptCheckHook{
+ consul: c.consul,
+ alloc: c.alloc,
+ task: c.task,
+ scripts: make(map[string]*scriptCheck),
+ runningScripts: make(map[string]*taskletHandle),
+ shutdownWait: defaultShutdownWait,
+ shutdownCh: make(chan struct{}),
+ }
+
+ if c.shutdownWait != 0 {
+ h.shutdownWait = c.shutdownWait // override for testing
+ }
+ h.logger = c.logger.Named(h.Name())
+ return h
+}
+
+func (h *scriptCheckHook) Name() string {
+ return "script_checks"
+}
+
+// Prestart implements interfaces.TaskPrestartHook. It stores the
+// initial structs.Task
+func (h *scriptCheckHook) Prestart(ctx context.Context, req *interfaces.TaskPrestartRequest, _ *interfaces.TaskPrestartResponse) error {
+ h.mu.Lock()
+ defer h.mu.Unlock()
+ h.task = req.Task
+ return nil
+}
+
+// PostStart implements interfaces.TaskPoststartHook. It creates new
+// script checks with the current task context (driver and env), and
+// starts up the scripts.
+func (h *scriptCheckHook) Poststart(ctx context.Context, req *interfaces.TaskPoststartRequest, _ *interfaces.TaskPoststartResponse) error {
+ h.mu.Lock()
+ defer h.mu.Unlock()
+
+ if req.DriverExec == nil {
+ h.logger.Debug("driver doesn't support script checks")
+ return nil
+ }
+ h.driverExec = req.DriverExec
+ h.taskEnv = req.TaskEnv
+
+ return h.upsertChecks()
+}
+
+// Updated implements interfaces.TaskUpdateHook. It creates new
+// script checks with the current task context (driver and env and possibly
+// new structs.Task), and starts up the scripts.
+func (h *scriptCheckHook) Update(ctx context.Context, req *interfaces.TaskUpdateRequest, _ *interfaces.TaskUpdateResponse) error {
+ h.mu.Lock()
+ defer h.mu.Unlock()
+
+ task := req.Alloc.LookupTask(h.task.Name)
+ if task == nil {
+ return fmt.Errorf("task %q not found in updated alloc", h.task.Name)
+ }
+ h.alloc = req.Alloc
+ h.task = task
+ h.taskEnv = req.TaskEnv
+
+ return h.upsertChecks()
+}
+
+func (h *scriptCheckHook) upsertChecks() error {
+ // Create new script checks struct with new task context
+ oldScriptChecks := h.scripts
+ h.scripts = h.newScriptChecks()
+
+ // Run new or replacement scripts
+ for id, script := range h.scripts {
+ // If it's already running, cancel and replace
+ if oldScript, running := h.runningScripts[id]; running {
+ oldScript.cancel()
+ }
+ // Start and store the handle
+ h.runningScripts[id] = script.run()
+ }
+
+ // Cancel scripts we no longer want
+ for id := range oldScriptChecks {
+ if _, ok := h.scripts[id]; !ok {
+ if oldScript, running := h.runningScripts[id]; running {
+ oldScript.cancel()
+ }
+ }
+ }
+ return nil
+}
+
+// Stop implements interfaces.TaskStopHook and blocks waiting for running
+// scripts to finish (or for the shutdownWait timeout to expire).
+func (h *scriptCheckHook) Stop(ctx context.Context, req *interfaces.TaskStopRequest, resp *interfaces.TaskStopResponse) error {
+ h.mu.Lock()
+ defer h.mu.Unlock()
+ close(h.shutdownCh)
+ deadline := time.After(h.shutdownWait)
+ err := fmt.Errorf("timed out waiting for script checks to exit")
+ for _, script := range h.runningScripts {
+ select {
+ case <-script.wait():
+ case <-ctx.Done():
+ // the caller is passing the background context, so
+ // we should never really see this outside of testing
+ case <-deadline:
+ // at this point the Consul client has been cleaned
+ // up so we don't want to hang onto this.
+ return err
+ }
+ }
+ return nil
+}
+
+func (h *scriptCheckHook) newScriptChecks() map[string]*scriptCheck {
+ scriptChecks := make(map[string]*scriptCheck)
+ for _, service := range h.task.Services {
+ for _, check := range service.Checks {
+ if check.Type != structs.ServiceCheckScript {
+ continue
+ }
+ serviceID := agentconsul.MakeAllocServiceID(
+ h.alloc.ID, h.task.Name, service)
+ sc := newScriptCheck(&scriptCheckConfig{
+ allocID: h.alloc.ID,
+ taskName: h.task.Name,
+ check: check,
+ serviceID: serviceID,
+ agent: h.consul,
+ driverExec: h.driverExec,
+ taskEnv: h.taskEnv,
+ logger: h.logger,
+ shutdownCh: h.shutdownCh,
+ })
+ if sc != nil {
+ scriptChecks[sc.id] = sc
+ }
+ }
+ }
+
+ // Walk back through the task group to see if there are script checks
+ // associated with the task. If so, we'll create scriptCheck tasklets
+ // for them. The group-level service and any check restart behaviors it
+ // needs are entirely encapsulated within the group service hook which
+ // watches Consul for status changes.
+ tg := h.alloc.Job.LookupTaskGroup(h.alloc.TaskGroup)
+ for _, service := range tg.Services {
+ for _, check := range service.Checks {
+ if check.Type != structs.ServiceCheckScript {
+ continue
+ }
+ if check.TaskName != h.task.Name {
+ continue
+ }
+ groupTaskName := "group-" + tg.Name
+ serviceID := agentconsul.MakeAllocServiceID(
+ h.alloc.ID, groupTaskName, service)
+ sc := newScriptCheck(&scriptCheckConfig{
+ allocID: h.alloc.ID,
+ taskName: groupTaskName,
+ check: check,
+ serviceID: serviceID,
+ agent: h.consul,
+ driverExec: h.driverExec,
+ taskEnv: h.taskEnv,
+ logger: h.logger,
+ shutdownCh: h.shutdownCh,
+ isGroup: true,
+ })
+ if sc != nil {
+ scriptChecks[sc.id] = sc
+ }
+ }
+ }
+ return scriptChecks
+}
+
+// heartbeater is the subset of consul agent functionality needed by script
+// checks to heartbeat
+type heartbeater interface {
+ UpdateTTL(id, output, status string) error
+}
+
+// scriptCheck runs script checks via a interfaces.ScriptExecutor and updates the
+// appropriate check's TTL when the script succeeds.
+type scriptCheck struct {
+ id string
+ agent heartbeater
+ check *structs.ServiceCheck
+ lastCheckOk bool // true if the last check was ok; otherwise false
+ tasklet
+}
+
+// scriptCheckConfig is a parameter struct for newScriptCheck
+type scriptCheckConfig struct {
+ allocID string
+ taskName string
+ serviceID string
+ check *structs.ServiceCheck
+ agent heartbeater
+ driverExec tinterfaces.ScriptExecutor
+ taskEnv *taskenv.TaskEnv
+ logger log.Logger
+ shutdownCh chan struct{}
+ isGroup bool
+}
+
+// newScriptCheck constructs a scriptCheck. we're only going to
+// configure the immutable fields of scriptCheck here, with the
+// rest being configured during the Poststart hook so that we have
+// the rest of the task execution environment
+func newScriptCheck(config *scriptCheckConfig) *scriptCheck {
+
+ // Guard against not having a valid taskEnv. This can be the case if the
+ // PreKilling or Exited hook is run before Poststart.
+ if config.taskEnv == nil || config.driverExec == nil {
+ return nil
+ }
+
+ orig := config.check
+ sc := &scriptCheck{
+ agent: config.agent,
+ check: config.check.Copy(),
+ lastCheckOk: true, // start logging on first failure
+ }
+
+ // we can't use the promoted fields of tasklet in the struct literal
+ sc.Command = config.taskEnv.ReplaceEnv(config.check.Command)
+ sc.Args = config.taskEnv.ParseAndReplace(config.check.Args)
+ sc.Interval = config.check.Interval
+ sc.Timeout = config.check.Timeout
+ sc.exec = config.driverExec
+ sc.callback = newScriptCheckCallback(sc)
+ sc.logger = config.logger
+ sc.shutdownCh = config.shutdownCh
+
+ // the hash of the interior structs.ServiceCheck is used by the
+ // Consul client to get the ID to register for the check. So we
+ // update it here so that we have the same ID for UpdateTTL.
+
+ // TODO(tgross): this block is similar to one in service_hook
+ // and we can pull that out to a function so we know we're
+ // interpolating the same everywhere
+ sc.check.Name = config.taskEnv.ReplaceEnv(orig.Name)
+ sc.check.Type = config.taskEnv.ReplaceEnv(orig.Type)
+ sc.check.Command = sc.Command
+ sc.check.Args = sc.Args
+ sc.check.Path = config.taskEnv.ReplaceEnv(orig.Path)
+ sc.check.Protocol = config.taskEnv.ReplaceEnv(orig.Protocol)
+ sc.check.PortLabel = config.taskEnv.ReplaceEnv(orig.PortLabel)
+ sc.check.InitialStatus = config.taskEnv.ReplaceEnv(orig.InitialStatus)
+ sc.check.Method = config.taskEnv.ReplaceEnv(orig.Method)
+ sc.check.GRPCService = config.taskEnv.ReplaceEnv(orig.GRPCService)
+ if len(orig.Header) > 0 {
+ header := make(map[string][]string, len(orig.Header))
+ for k, vs := range orig.Header {
+ newVals := make([]string, len(vs))
+ for i, v := range vs {
+ newVals[i] = config.taskEnv.ReplaceEnv(v)
+ }
+ header[config.taskEnv.ReplaceEnv(k)] = newVals
+ }
+ sc.check.Header = header
+ }
+ if config.isGroup {
+ // TODO(tgross):
+ // group services don't have access to a task environment
+ // at creation, so their checks get registered before the
+ // check can be interpolated here. if we don't use the
+ // original checkID, they can't be updated.
+ sc.id = agentconsul.MakeCheckID(config.serviceID, orig)
+ } else {
+ sc.id = agentconsul.MakeCheckID(config.serviceID, sc.check)
+ }
+ return sc
+}
+
+// Copy does a *shallow* copy of script checks.
+func (sc *scriptCheck) Copy() *scriptCheck {
+ newSc := sc
+ return newSc
+}
+
+// closes over the script check and returns the taskletCallback for
+// when the script check executes.
+func newScriptCheckCallback(s *scriptCheck) taskletCallback {
+
+ return func(ctx context.Context, params execResult) {
+ output := params.output
+ code := params.code
+ err := params.err
+
+ state := api.HealthCritical
+ switch code {
+ case 0:
+ state = api.HealthPassing
+ case 1:
+ state = api.HealthWarning
+ }
+
+ var outputMsg string
+ if err != nil {
+ state = api.HealthCritical
+ outputMsg = err.Error()
+ } else {
+ outputMsg = string(output)
+ }
+
+ // heartbeat the check to Consul
+ err = s.updateTTL(ctx, outputMsg, state)
+ select {
+ case <-ctx.Done():
+ // check has been removed; don't report errors
+ return
+ default:
+ }
+
+ if err != nil {
+ if s.lastCheckOk {
+ s.lastCheckOk = false
+ s.logger.Warn("updating check failed", "error", err)
+ } else {
+ s.logger.Debug("updating check still failing", "error", err)
+ }
+
+ } else if !s.lastCheckOk {
+ // Succeeded for the first time or after failing; log
+ s.lastCheckOk = true
+ s.logger.Info("updating check succeeded")
+ }
+ }
+}
+
+const (
+ updateTTLBackoffBaseline = 1 * time.Second
+ updateTTLBackoffLimit = 3 * time.Second
+)
+
+// updateTTL updates the state to Consul, performing an expontential backoff
+// in the case where the check isn't registered in Consul to avoid a race between
+// service registration and the first check.
+func (s *scriptCheck) updateTTL(ctx context.Context, msg, state string) error {
+ for attempts := 0; ; attempts++ {
+ err := s.agent.UpdateTTL(s.id, msg, state)
+ if err == nil {
+ return nil
+ }
+
+ // Handle the retry case
+ backoff := (1 << (2 * uint64(attempts))) * updateTTLBackoffBaseline
+ if backoff > updateTTLBackoffLimit {
+ return err
+ }
+
+ // Wait till retrying
+ select {
+ case <-ctx.Done():
+ return err
+ case <-time.After(backoff):
+ }
+ }
+}
diff --git a/client/allocrunner/taskrunner/script_check_hook_test.go b/client/allocrunner/taskrunner/script_check_hook_test.go
new file mode 100644
index 000000000..26219f943
--- /dev/null
+++ b/client/allocrunner/taskrunner/script_check_hook_test.go
@@ -0,0 +1,219 @@
+package taskrunner
+
+import (
+ "context"
+ "fmt"
+ "sync/atomic"
+ "testing"
+ "time"
+
+ "github.com/hashicorp/consul/api"
+ hclog "github.com/hashicorp/go-hclog"
+ "github.com/hashicorp/nomad/client/allocrunner/taskrunner/interfaces"
+ "github.com/hashicorp/nomad/client/taskenv"
+ "github.com/hashicorp/nomad/helper/testlog"
+ "github.com/hashicorp/nomad/nomad/structs"
+ "github.com/stretchr/testify/require"
+)
+
+func newScriptMock(hb heartbeater, exec interfaces.ScriptExecutor, logger hclog.Logger, interval, timeout time.Duration) *scriptCheck {
+ script := newScriptCheck(&scriptCheckConfig{
+ allocID: "allocid",
+ taskName: "testtask",
+ serviceID: "serviceid",
+ check: &structs.ServiceCheck{
+ Interval: interval,
+ Timeout: timeout,
+ },
+ agent: hb,
+ driverExec: exec,
+ taskEnv: &taskenv.TaskEnv{},
+ logger: logger,
+ shutdownCh: nil,
+ })
+ script.callback = newScriptCheckCallback(script)
+ script.lastCheckOk = true
+ return script
+}
+
+// fakeHeartbeater implements the heartbeater interface to allow mocking out
+// Consul in script executor tests.
+type fakeHeartbeater struct {
+ heartbeats chan heartbeat
+}
+
+func (f *fakeHeartbeater) UpdateTTL(checkID, output, status string) error {
+ f.heartbeats <- heartbeat{checkID: checkID, output: output, status: status}
+ return nil
+}
+
+func newFakeHeartbeater() *fakeHeartbeater {
+ return &fakeHeartbeater{heartbeats: make(chan heartbeat)}
+}
+
+type heartbeat struct {
+ checkID string
+ output string
+ status string
+}
+
+// TestScript_Exec_Cancel asserts cancelling a script check shortcircuits
+// any running scripts.
+func TestScript_Exec_Cancel(t *testing.T) {
+ exec, cancel := newBlockingScriptExec()
+ defer cancel()
+
+ logger := testlog.HCLogger(t)
+ script := newScriptMock(nil, // heartbeater should never be called
+ exec, logger, time.Hour, time.Hour)
+
+ handle := script.run()
+ <-exec.running // wait until Exec is called
+ handle.cancel() // cancel now that we're blocked in exec
+
+ select {
+ case <-handle.wait():
+ case <-time.After(3 * time.Second):
+ t.Fatalf("timed out waiting for script check to exit")
+ }
+
+ // The underlying ScriptExecutor (newBlockScriptExec) *cannot* be
+ // canceled. Only a wrapper around it obeys the context cancelation.
+ require.NotEqual(t, atomic.LoadInt32(&exec.exited), 1,
+ "expected script executor to still be running after timeout")
+}
+
+// TestScript_Exec_TimeoutBasic asserts a script will be killed when the
+// timeout is reached.
+func TestScript_Exec_TimeoutBasic(t *testing.T) {
+ t.Parallel()
+ exec, cancel := newBlockingScriptExec()
+ defer cancel()
+
+ logger := testlog.HCLogger(t)
+ hb := newFakeHeartbeater()
+ script := newScriptMock(hb, exec, logger, time.Hour, time.Second)
+
+ handle := script.run()
+ defer handle.cancel() // cleanup
+ <-exec.running // wait until Exec is called
+
+ // Check for UpdateTTL call
+ select {
+ case update := <-hb.heartbeats:
+ require.Equal(t, update.output, context.DeadlineExceeded.Error())
+ require.Equal(t, update.status, api.HealthCritical)
+ case <-time.After(3 * time.Second):
+ t.Fatalf("timed out waiting for script check to exit")
+ }
+
+ // The underlying ScriptExecutor (newBlockScriptExec) *cannot* be
+ // canceled. Only a wrapper around it obeys the context cancelation.
+ require.NotEqual(t, atomic.LoadInt32(&exec.exited), 1,
+ "expected script executor to still be running after timeout")
+
+ // Cancel and watch for exit
+ handle.cancel()
+ select {
+ case <-handle.wait(): // ok!
+ case update := <-hb.heartbeats:
+ t.Errorf("unexpected UpdateTTL call on exit with status=%q", update)
+ case <-time.After(3 * time.Second):
+ t.Fatalf("timed out waiting for script check to exit")
+ }
+}
+
+// TestScript_Exec_TimeoutCritical asserts a script will be killed when
+// the timeout is reached and always set a critical status regardless of what
+// Exec returns.
+func TestScript_Exec_TimeoutCritical(t *testing.T) {
+ t.Parallel()
+ logger := testlog.HCLogger(t)
+ hb := newFakeHeartbeater()
+ script := newScriptMock(hb, sleeperExec{}, logger, time.Hour, time.Nanosecond)
+
+ handle := script.run()
+ defer handle.cancel() // cleanup
+
+ // Check for UpdateTTL call
+ select {
+ case update := <-hb.heartbeats:
+ require.Equal(t, update.output, context.DeadlineExceeded.Error())
+ require.Equal(t, update.status, api.HealthCritical)
+ case <-time.After(3 * time.Second):
+ t.Fatalf("timed out waiting for script check to timeout")
+ }
+}
+
+// TestScript_Exec_Shutdown asserts a script will be executed once more
+// when told to shutdown.
+func TestScript_Exec_Shutdown(t *testing.T) {
+ shutdown := make(chan struct{})
+ exec := newSimpleExec(0, nil)
+ logger := testlog.HCLogger(t)
+ hb := newFakeHeartbeater()
+ script := newScriptMock(hb, exec, logger, time.Hour, 3*time.Second)
+ script.shutdownCh = shutdown
+
+ handle := script.run()
+ defer handle.cancel() // cleanup
+ close(shutdown) // tell scriptCheck to exit
+
+ select {
+ case update := <-hb.heartbeats:
+ require.Equal(t, update.output, "code=0 err=")
+ require.Equal(t, update.status, api.HealthPassing)
+ case <-time.After(3 * time.Second):
+ t.Fatalf("timed out waiting for script check to exit")
+ }
+
+ select {
+ case <-handle.wait(): // ok!
+ case <-time.After(3 * time.Second):
+ t.Fatalf("timed out waiting for script check to exit")
+ }
+}
+
+// TestScript_Exec_Codes asserts script exit codes are translated to their
+// corresponding Consul health check status.
+func TestScript_Exec_Codes(t *testing.T) {
+
+ exec := newScriptedExec([]execResult{
+ {[]byte("output"), 1, nil},
+ {[]byte("output"), 0, nil},
+ {[]byte("output"), 0, context.DeadlineExceeded},
+ {[]byte("output"), 0, nil},
+ {[]byte(""), 2, fmt.Errorf("some error")},
+ {[]byte("output"), 0, nil},
+ {[]byte("error9000"), 9000, nil},
+ })
+ logger := testlog.HCLogger(t)
+ hb := newFakeHeartbeater()
+ script := newScriptMock(
+ hb, exec, logger, time.Nanosecond, 3*time.Second)
+
+ handle := script.run()
+ defer handle.cancel() // cleanup
+ deadline := time.After(3 * time.Second)
+
+ expected := []heartbeat{
+ {script.id, "output", api.HealthWarning},
+ {script.id, "output", api.HealthPassing},
+ {script.id, context.DeadlineExceeded.Error(), api.HealthCritical},
+ {script.id, "output", api.HealthPassing},
+ {script.id, "some error", api.HealthCritical},
+ {script.id, "output", api.HealthPassing},
+ {script.id, "error9000", api.HealthCritical},
+ }
+
+ for i := 0; i <= 6; i++ {
+ select {
+ case update := <-hb.heartbeats:
+ require.Equal(t, update, expected[i],
+ "expected update %d to be '%s' but received '%s'",
+ i, expected[i], update)
+ case <-deadline:
+ t.Fatalf("timed out waiting for all script checks to finish")
+ }
+ }
+}
diff --git a/client/allocrunner/taskrunner/service_hook.go b/client/allocrunner/taskrunner/service_hook.go
index edea8673c..956033f3f 100644
--- a/client/allocrunner/taskrunner/service_hook.go
+++ b/client/allocrunner/taskrunner/service_hook.go
@@ -27,7 +27,7 @@ type serviceHookConfig struct {
consul consul.ConsulServiceAPI
// Restarter is a subset of the TaskLifecycle interface
- restarter agentconsul.TaskRestarter
+ restarter agentconsul.WorkloadRestarter
logger log.Logger
}
@@ -36,7 +36,7 @@ type serviceHook struct {
consul consul.ConsulServiceAPI
allocID string
taskName string
- restarter agentconsul.TaskRestarter
+ restarter agentconsul.WorkloadRestarter
logger log.Logger
// The following fields may be updated
@@ -63,7 +63,8 @@ func newServiceHook(c serviceHookConfig) *serviceHook {
delay: c.task.ShutdownDelay,
}
- // COMPAT(0.10): Just use the AllocatedResources
+ // COMPAT(0.11): AllocatedResources was added in 0.9 so assume its set
+ // in 0.11.
if c.alloc.AllocatedResources != nil {
if res := c.alloc.AllocatedResources.Tasks[c.task.Name]; res != nil {
h.networks = res.Networks
@@ -96,9 +97,9 @@ func (h *serviceHook) Poststart(ctx context.Context, req *interfaces.TaskPoststa
h.taskEnv = req.TaskEnv
// Create task services struct with request's driver metadata
- taskServices := h.getTaskServices()
+ workloadServices := h.getWorkloadServices()
- return h.consul.RegisterTask(taskServices)
+ return h.consul.RegisterWorkload(workloadServices)
}
func (h *serviceHook) Update(ctx context.Context, req *interfaces.TaskUpdateRequest, _ *interfaces.TaskUpdateResponse) error {
@@ -107,7 +108,7 @@ func (h *serviceHook) Update(ctx context.Context, req *interfaces.TaskUpdateRequ
// Create old task services struct with request's driver metadata as it
// can't change due to Updates
- oldTaskServices := h.getTaskServices()
+ oldWorkloadServices := h.getWorkloadServices()
// Store new updated values out of request
canary := false
@@ -115,7 +116,8 @@ func (h *serviceHook) Update(ctx context.Context, req *interfaces.TaskUpdateRequ
canary = req.Alloc.DeploymentStatus.Canary
}
- // COMPAT(0.10): Just use the AllocatedResources
+ // COMPAT(0.11): AllocatedResources was added in 0.9 so assume its set
+ // in 0.11.
var networks structs.Networks
if req.Alloc.AllocatedResources != nil {
if res := req.Alloc.AllocatedResources.Tasks[h.taskName]; res != nil {
@@ -140,9 +142,9 @@ func (h *serviceHook) Update(ctx context.Context, req *interfaces.TaskUpdateRequ
h.canary = canary
// Create new task services struct with those new values
- newTaskServices := h.getTaskServices()
+ newWorkloadServices := h.getWorkloadServices()
- return h.consul.UpdateTask(oldTaskServices, newTaskServices)
+ return h.consul.UpdateWorkload(oldWorkloadServices, newWorkloadServices)
}
func (h *serviceHook) PreKilling(ctx context.Context, req *interfaces.TaskPreKillRequest, resp *interfaces.TaskPreKillResponse) error {
@@ -174,13 +176,13 @@ func (h *serviceHook) Exited(context.Context, *interfaces.TaskExitedRequest, *in
// deregister services from Consul.
func (h *serviceHook) deregister() {
- taskServices := h.getTaskServices()
- h.consul.RemoveTask(taskServices)
+ workloadServices := h.getWorkloadServices()
+ h.consul.RemoveWorkload(workloadServices)
// Canary flag may be getting flipped when the alloc is being
// destroyed, so remove both variations of the service
- taskServices.Canary = !taskServices.Canary
- h.consul.RemoveTask(taskServices)
+ workloadServices.Canary = !workloadServices.Canary
+ h.consul.RemoveWorkload(workloadServices)
}
@@ -191,14 +193,14 @@ func (h *serviceHook) Stop(ctx context.Context, req *interfaces.TaskStopRequest,
return nil
}
-func (h *serviceHook) getTaskServices() *agentconsul.TaskServices {
+func (h *serviceHook) getWorkloadServices() *agentconsul.WorkloadServices {
// Interpolate with the task's environment
- interpolatedServices := interpolateServices(h.taskEnv, h.services)
+ interpolatedServices := taskenv.InterpolateServices(h.taskEnv, h.services)
// Create task services struct with request's driver metadata
- return &agentconsul.TaskServices{
+ return &agentconsul.WorkloadServices{
AllocID: h.allocID,
- Name: h.taskName,
+ Task: h.taskName,
Restarter: h.restarter,
Services: interpolatedServices,
DriverExec: h.driverExec,
@@ -207,62 +209,3 @@ func (h *serviceHook) getTaskServices() *agentconsul.TaskServices {
Canary: h.canary,
}
}
-
-// interpolateServices returns an interpolated copy of services and checks with
-// values from the task's environment.
-func interpolateServices(taskEnv *taskenv.TaskEnv, services []*structs.Service) []*structs.Service {
- // Guard against not having a valid taskEnv. This can be the case if the
- // PreKilling or Exited hook is run before Poststart.
- if taskEnv == nil || len(services) == 0 {
- return nil
- }
-
- interpolated := make([]*structs.Service, len(services))
-
- for i, origService := range services {
- // Create a copy as we need to reinterpolate every time the
- // environment changes
- service := origService.Copy()
-
- for _, check := range service.Checks {
- check.Name = taskEnv.ReplaceEnv(check.Name)
- check.Type = taskEnv.ReplaceEnv(check.Type)
- check.Command = taskEnv.ReplaceEnv(check.Command)
- check.Args = taskEnv.ParseAndReplace(check.Args)
- check.Path = taskEnv.ReplaceEnv(check.Path)
- check.Protocol = taskEnv.ReplaceEnv(check.Protocol)
- check.PortLabel = taskEnv.ReplaceEnv(check.PortLabel)
- check.InitialStatus = taskEnv.ReplaceEnv(check.InitialStatus)
- check.Method = taskEnv.ReplaceEnv(check.Method)
- check.GRPCService = taskEnv.ReplaceEnv(check.GRPCService)
- if len(check.Header) > 0 {
- header := make(map[string][]string, len(check.Header))
- for k, vs := range check.Header {
- newVals := make([]string, len(vs))
- for i, v := range vs {
- newVals[i] = taskEnv.ReplaceEnv(v)
- }
- header[taskEnv.ReplaceEnv(k)] = newVals
- }
- check.Header = header
- }
- }
-
- service.Name = taskEnv.ReplaceEnv(service.Name)
- service.PortLabel = taskEnv.ReplaceEnv(service.PortLabel)
- service.Tags = taskEnv.ParseAndReplace(service.Tags)
- service.CanaryTags = taskEnv.ParseAndReplace(service.CanaryTags)
-
- if len(service.Meta) > 0 {
- meta := make(map[string]string, len(service.Meta))
- for k, v := range service.Meta {
- meta[k] = taskEnv.ReplaceEnv(v)
- }
- service.Meta = meta
- }
-
- interpolated[i] = service
- }
-
- return interpolated
-}
diff --git a/client/allocrunner/taskrunner/service_hook_test.go b/client/allocrunner/taskrunner/service_hook_test.go
index 86772f0f5..4c246cb91 100644
--- a/client/allocrunner/taskrunner/service_hook_test.go
+++ b/client/allocrunner/taskrunner/service_hook_test.go
@@ -1,12 +1,7 @@
package taskrunner
import (
- "testing"
-
"github.com/hashicorp/nomad/client/allocrunner/interfaces"
- "github.com/hashicorp/nomad/client/taskenv"
- "github.com/hashicorp/nomad/nomad/structs"
- "github.com/stretchr/testify/require"
)
// Statically assert the stats hook implements the expected interfaces
@@ -14,80 +9,3 @@ var _ interfaces.TaskPoststartHook = (*serviceHook)(nil)
var _ interfaces.TaskExitedHook = (*serviceHook)(nil)
var _ interfaces.TaskPreKillHook = (*serviceHook)(nil)
var _ interfaces.TaskUpdateHook = (*serviceHook)(nil)
-
-// TestTaskRunner_ServiceHook_InterpolateServices asserts that all service
-// and check fields are properly interpolated.
-func TestTaskRunner_ServiceHook_InterpolateServices(t *testing.T) {
- t.Parallel()
- services := []*structs.Service{
- {
- Name: "${name}",
- PortLabel: "${portlabel}",
- Tags: []string{"${tags}"},
- Checks: []*structs.ServiceCheck{
- {
- Name: "${checkname}",
- Type: "${checktype}",
- Command: "${checkcmd}",
- Args: []string{"${checkarg}"},
- Path: "${checkstr}",
- Protocol: "${checkproto}",
- PortLabel: "${checklabel}",
- InitialStatus: "${checkstatus}",
- Method: "${checkmethod}",
- Header: map[string][]string{
- "${checkheaderk}": {"${checkheaderv}"},
- },
- },
- },
- },
- }
-
- env := &taskenv.TaskEnv{
- EnvMap: map[string]string{
- "name": "name",
- "portlabel": "portlabel",
- "tags": "tags",
- "checkname": "checkname",
- "checktype": "checktype",
- "checkcmd": "checkcmd",
- "checkarg": "checkarg",
- "checkstr": "checkstr",
- "checkpath": "checkpath",
- "checkproto": "checkproto",
- "checklabel": "checklabel",
- "checkstatus": "checkstatus",
- "checkmethod": "checkmethod",
- "checkheaderk": "checkheaderk",
- "checkheaderv": "checkheaderv",
- },
- }
-
- interpolated := interpolateServices(env, services)
-
- exp := []*structs.Service{
- {
- Name: "name",
- PortLabel: "portlabel",
- Tags: []string{"tags"},
- Checks: []*structs.ServiceCheck{
- {
- Name: "checkname",
- Type: "checktype",
- Command: "checkcmd",
- Args: []string{"checkarg"},
- Path: "checkstr",
- Protocol: "checkproto",
- PortLabel: "checklabel",
- InitialStatus: "checkstatus",
- Method: "checkmethod",
- Header: map[string][]string{
- "checkheaderk": {"checkheaderv"},
- },
- },
- },
- },
- }
-
- require.Equal(t, exp, interpolated)
-}
diff --git a/client/allocrunner/taskrunner/task_runner.go b/client/allocrunner/taskrunner/task_runner.go
index 454c682b6..17cb7e4eb 100644
--- a/client/allocrunner/taskrunner/task_runner.go
+++ b/client/allocrunner/taskrunner/task_runner.go
@@ -301,7 +301,7 @@ func NewTaskRunner(config *Config) (*TaskRunner, error) {
}
tr.taskResources = tres
} else {
- // COMPAT(0.10): Upgrade from old resources to new resources
+ // COMPAT(0.11): Upgrade from 0.8 resources to 0.9+ resources
// Grab the old task resources
oldTr, ok := tr.alloc.TaskResources[tr.taskName]
if !ok {
@@ -1335,10 +1335,14 @@ func (tr *TaskRunner) emitStats(ru *cstructs.TaskResourceUsage) {
if ru.ResourceUsage.MemoryStats != nil {
tr.setGaugeForMemory(ru)
+ } else {
+ tr.logger.Debug("Skipping memory stats for allocation", "reason", "MemoryStats is nil")
}
if ru.ResourceUsage.CpuStats != nil {
tr.setGaugeForCPU(ru)
+ } else {
+ tr.logger.Debug("Skipping cpu stats for allocation", "reason", "CpuStats is nil")
}
}
diff --git a/client/allocrunner/taskrunner/task_runner_hooks.go b/client/allocrunner/taskrunner/task_runner_hooks.go
index 9083e9ecf..374f29f42 100644
--- a/client/allocrunner/taskrunner/task_runner_hooks.go
+++ b/client/allocrunner/taskrunner/task_runner_hooks.go
@@ -6,6 +6,7 @@ import (
"sync"
"time"
+ "github.com/LK4D4/joincontext"
multierror "github.com/hashicorp/go-multierror"
"github.com/hashicorp/nomad/client/allocrunner/interfaces"
"github.com/hashicorp/nomad/client/allocrunner/taskrunner/state"
@@ -105,6 +106,15 @@ func (tr *TaskRunner) initHooks() {
logger: hookLogger,
}))
}
+
+ // If there are any script checks, add the hook
+ scriptCheckHook := newScriptCheckHook(scriptCheckHookConfig{
+ alloc: tr.Alloc(),
+ task: tr.Task(),
+ consul: tr.consulClient,
+ logger: hookLogger,
+ })
+ tr.runnerHooks = append(tr.runnerHooks, scriptCheckHook)
}
func (tr *TaskRunner) emitHookError(err error, hookName string) {
@@ -183,8 +193,11 @@ func (tr *TaskRunner) prestart() error {
}
// Run the prestart hook
+ // use a joint context to allow any blocking pre-start hooks
+ // to be canceled by either killCtx or shutdownCtx
+ joinedCtx, _ := joincontext.Join(tr.killCtx, tr.shutdownCtx)
var resp interfaces.TaskPrestartResponse
- if err := pre.Prestart(tr.killCtx, &req, &resp); err != nil {
+ if err := pre.Prestart(joinedCtx, &req, &resp); err != nil {
tr.emitHookError(err, name)
return structs.WrapRecoverable(fmt.Sprintf("prestart hook %q failed: %v", name, err), err)
}
diff --git a/client/allocrunner/taskrunner/task_runner_test.go b/client/allocrunner/taskrunner/task_runner_test.go
index 8a6ab8cf5..25124c3fd 100644
--- a/client/allocrunner/taskrunner/task_runner_test.go
+++ b/client/allocrunner/taskrunner/task_runner_test.go
@@ -1742,6 +1742,69 @@ func TestTaskRunner_Template_Artifact(t *testing.T) {
require.NoErrorf(t, err, "%v not rendered", f2)
}
+// TestTaskRunner_Template_BlockingPreStart asserts that a template
+// that fails to render in PreStart can gracefully be shutdown by
+// either killCtx or shutdownCtx
+func TestTaskRunner_Template_BlockingPreStart(t *testing.T) {
+ t.Parallel()
+
+ alloc := mock.BatchAlloc()
+ task := alloc.Job.TaskGroups[0].Tasks[0]
+ task.Templates = []*structs.Template{
+ {
+ EmbeddedTmpl: `{{ with secret "foo/secret" }}{{ .Data.certificate }}{{ end }}`,
+ DestPath: "local/test",
+ ChangeMode: structs.TemplateChangeModeNoop,
+ },
+ }
+
+ task.Vault = &structs.Vault{Policies: []string{"default"}}
+
+ conf, cleanup := testTaskRunnerConfig(t, alloc, task.Name)
+ defer cleanup()
+
+ tr, err := NewTaskRunner(conf)
+ require.NoError(t, err)
+ go tr.Run()
+ defer tr.Shutdown()
+
+ testutil.WaitForResult(func() (bool, error) {
+ ts := tr.TaskState()
+
+ if len(ts.Events) == 0 {
+ return false, fmt.Errorf("no events yet")
+ }
+
+ for _, e := range ts.Events {
+ if e.Type == "Template" && strings.Contains(e.DisplayMessage, "vault.read(foo/secret)") {
+ return true, nil
+ }
+ }
+
+ return false, fmt.Errorf("no missing vault secret template event yet: %#v", ts.Events)
+
+ }, func(err error) {
+ require.NoError(t, err)
+ })
+
+ shutdown := func() <-chan bool {
+ finished := make(chan bool)
+ go func() {
+ tr.Shutdown()
+ finished <- true
+ }()
+
+ return finished
+ }
+
+ select {
+ case <-shutdown():
+ // it shut down like it should have
+ case <-time.After(10 * time.Second):
+ require.Fail(t, "timeout shutting down task")
+ }
+}
+
// TestTaskRunner_Template_NewVaultToken asserts that a new vault token is
// created when rendering template and that it is revoked on alloc completion
func TestTaskRunner_Template_NewVaultToken(t *testing.T) {
diff --git a/client/allocrunner/taskrunner/tasklet.go b/client/allocrunner/taskrunner/tasklet.go
new file mode 100644
index 000000000..0f6d2e578
--- /dev/null
+++ b/client/allocrunner/taskrunner/tasklet.go
@@ -0,0 +1,158 @@
+package taskrunner
+
+import (
+ "context"
+ "time"
+
+ metrics "github.com/armon/go-metrics"
+ log "github.com/hashicorp/go-hclog"
+
+ "github.com/hashicorp/nomad/client/allocrunner/taskrunner/interfaces"
+)
+
+// contextExec allows canceling a interfaces.ScriptExecutor with a context.
+type contextExec struct {
+ // pctx is the parent context. A subcontext will be created with Exec's
+ // timeout.
+ pctx context.Context
+
+ // exec to be wrapped in a context
+ exec interfaces.ScriptExecutor
+}
+
+func newContextExec(ctx context.Context, exec interfaces.ScriptExecutor) *contextExec {
+ return &contextExec{
+ pctx: ctx,
+ exec: exec,
+ }
+}
+
+// execResult are the outputs of an Exec
+type execResult struct {
+ output []byte
+ code int
+ err error
+}
+
+// Exec a command until the timeout expires, the context is canceled, or the
+// underlying Exec returns.
+func (c *contextExec) Exec(timeout time.Duration, cmd string, args []string) ([]byte, int, error) {
+ resCh := make(chan execResult, 1)
+
+ // Don't trust the underlying implementation to obey timeout
+ ctx, cancel := context.WithTimeout(c.pctx, timeout)
+ defer cancel()
+
+ go func() {
+ output, code, err := c.exec.Exec(timeout, cmd, args)
+ select {
+ case resCh <- execResult{output, code, err}:
+ case <-ctx.Done():
+ }
+ }()
+
+ select {
+ case res := <-resCh:
+ return res.output, res.code, res.err
+ case <-ctx.Done():
+ return nil, 0, ctx.Err()
+ }
+}
+
+// tasklet is an abstraction around periodically running a script within
+// the context of a Task. The interfaces.ScriptExecutor is fired at least
+// once and on each interval, and fires a callback whenever the script
+// is complete.
+type tasklet struct {
+ Command string // Command is the command to run for tasklet
+ Args []string // Args is a list of arguments for tasklet
+ Interval time.Duration // Interval of the tasklet
+ Timeout time.Duration // Timeout of the tasklet
+ exec interfaces.ScriptExecutor
+ callback taskletCallback
+ logger log.Logger
+ shutdownCh <-chan struct{}
+}
+
+// taskletHandle is returned by tasklet.run by cancelling a tasklet and
+// waiting for it to shutdown.
+type taskletHandle struct {
+ // cancel the script
+ cancel func()
+ exitCh chan struct{}
+}
+
+// wait returns a chan that's closed when the tasklet exits
+func (t taskletHandle) wait() <-chan struct{} {
+ return t.exitCh
+}
+
+// taskletCallback is called with a cancellation context and the output of a
+// tasklet's Exec whenever it runs.
+type taskletCallback func(context.Context, execResult)
+
+// run this tasklet check and return its cancel func. The tasklet's
+// callback will be called each time it completes. If the shutdownCh is
+// closed the check will be run once more before exiting.
+func (t *tasklet) run() *taskletHandle {
+ ctx, cancel := context.WithCancel(context.Background())
+ exitCh := make(chan struct{})
+
+ // Wrap the original interfaces.ScriptExecutor in one that obeys context
+ // cancelation.
+ ctxExec := newContextExec(ctx, t.exec)
+
+ go func() {
+ defer close(exitCh)
+ timer := time.NewTimer(0)
+ defer timer.Stop()
+ for {
+ // Block until tasklet is removed, Nomad is shutting
+ // down, or the tasklet interval is up
+ select {
+ case <-ctx.Done():
+ // tasklet has been removed
+ return
+ case <-t.shutdownCh:
+ // unblock but don't exit until after we run once more
+ case <-timer.C:
+ timer.Reset(t.Interval)
+ }
+
+ metrics.IncrCounter([]string{
+ "client", "allocrunner", "taskrunner", "tasklet_runs"}, 1)
+
+ // Execute check script with timeout
+ t.logger.Trace("tasklet executing")
+ output, code, err := ctxExec.Exec(t.Timeout, t.Command, t.Args)
+ switch err {
+ case context.Canceled:
+ // check removed during execution; exit
+ return
+ case context.DeadlineExceeded:
+ metrics.IncrCounter([]string{
+ "client", "allocrunner", "taskrunner",
+ "tasklet_timeouts"}, 1)
+ // If no error was returned, set one to make sure the tasklet
+ // is marked as failed
+ if err == nil {
+ err = context.DeadlineExceeded
+ }
+
+ // Log deadline exceeded every time as it's a
+ // distinct issue from the tasklet returning failure
+ t.logger.Warn("tasklet timed out", "timeout", t.Timeout)
+ }
+
+ t.callback(ctx, execResult{output, code, err})
+
+ select {
+ case <-t.shutdownCh:
+ // We've been told to exit and just ran so exit
+ return
+ default:
+ }
+ }
+ }()
+ return &taskletHandle{cancel: cancel, exitCh: exitCh}
+}
diff --git a/client/allocrunner/taskrunner/tasklet_test.go b/client/allocrunner/taskrunner/tasklet_test.go
new file mode 100644
index 000000000..4dc8f36f2
--- /dev/null
+++ b/client/allocrunner/taskrunner/tasklet_test.go
@@ -0,0 +1,268 @@
+package taskrunner
+
+import (
+ "context"
+ "fmt"
+ "os"
+ "os/exec"
+ "sync/atomic"
+ "testing"
+ "time"
+
+ hclog "github.com/hashicorp/go-hclog"
+ "github.com/hashicorp/nomad/client/allocrunner/taskrunner/interfaces"
+ "github.com/hashicorp/nomad/helper/testlog"
+ "github.com/hashicorp/nomad/helper/testtask"
+ "github.com/stretchr/testify/assert"
+)
+
+func TestMain(m *testing.M) {
+ if !testtask.Run() {
+ os.Exit(m.Run())
+ }
+}
+
+func TestTasklet_Exec_HappyPath(t *testing.T) {
+ results := []execResult{
+ {[]byte("output"), 0, nil},
+ {[]byte("output"), 1, nil},
+ {[]byte("output"), 0, context.DeadlineExceeded},
+ {[]byte(""), 2, fmt.Errorf("some error")},
+ {[]byte("error9000"), 9000, nil},
+ }
+ exec := newScriptedExec(results)
+ tm := newTaskletMock(exec, testlog.HCLogger(t), time.Nanosecond, 3*time.Second)
+
+ handle := tm.run()
+ defer handle.cancel() // just-in-case cleanup
+
+ deadline := time.After(3 * time.Second)
+ for i := 0; i <= 4; i++ {
+ select {
+ case result := <-tm.calls:
+ // for the happy path without cancelations or shutdowns, we expect
+ // to get the results passed to the callback in order and without
+ // modification
+ assert.Equal(t, result, results[i])
+ case <-deadline:
+ t.Fatalf("timed out waiting for all script checks to finish")
+ }
+ }
+}
+
+// TestTasklet_Exec_Cancel asserts cancelling a tasklet short-circuits
+// any running executions the tasklet
+func TestTasklet_Exec_Cancel(t *testing.T) {
+ exec, cancel := newBlockingScriptExec()
+ defer cancel()
+ tm := newTaskletMock(exec, testlog.HCLogger(t), time.Hour, time.Hour)
+
+ handle := tm.run()
+ <-exec.running // wait until Exec is called
+ handle.cancel() // cancel now that we're blocked in exec
+
+ select {
+ case <-handle.wait():
+ case <-time.After(3 * time.Second):
+ t.Fatalf("timed out waiting for tasklet check to exit")
+ }
+
+ // The underlying ScriptExecutor (newBlockScriptExec) *cannot* be
+ // canceled. Only a wrapper around it obeys the context cancelation.
+ if atomic.LoadInt32(&exec.exited) == 1 {
+ t.Errorf("expected script executor to still be running after timeout")
+ }
+ // No tasklets finished, so no callbacks should have gotten a
+ // chance to fire
+ select {
+ case call := <-tm.calls:
+ t.Errorf("expected 0 calls of tasklet, got %v", call)
+ default:
+ break
+ }
+}
+
+// TestTasklet_Exec_Timeout asserts a tasklet script will be killed
+// when the timeout is reached.
+func TestTasklet_Exec_Timeout(t *testing.T) {
+ t.Parallel()
+ exec, cancel := newBlockingScriptExec()
+ defer cancel()
+
+ tm := newTaskletMock(exec, testlog.HCLogger(t), time.Hour, time.Second)
+
+ handle := tm.run()
+ defer handle.cancel() // just-in-case cleanup
+ <-exec.running // wait until Exec is called
+
+ // We should get a timeout
+ select {
+ case update := <-tm.calls:
+ if update.err != context.DeadlineExceeded {
+ t.Errorf("expected context.DeadlineExceeed but received %+v", update)
+ }
+ case <-time.After(3 * time.Second):
+ t.Fatalf("timed out waiting for script check to exit")
+ }
+
+ // The underlying ScriptExecutor (newBlockScriptExec) *cannot* be
+ // canceled. Only a wrapper around it obeys the context cancelation.
+ if atomic.LoadInt32(&exec.exited) == 1 {
+ t.Errorf("expected executor to still be running after timeout")
+ }
+
+ // Cancel and watch for exit
+ handle.cancel()
+ select {
+ case <-handle.wait(): // ok!
+ case update := <-tm.calls:
+ t.Errorf("unexpected extra callback on exit with status=%v", update)
+ case <-time.After(3 * time.Second):
+ t.Fatalf("timed out waiting for tasklet to exit")
+ }
+}
+
+// TestTasklet_Exec_Shutdown asserts a script will be executed once more
+// when told to shutdown.
+func TestTasklet_Exec_Shutdown(t *testing.T) {
+ exec := newSimpleExec(0, nil)
+ shutdown := make(chan struct{})
+ tm := newTaskletMock(exec, testlog.HCLogger(t), time.Hour, 3*time.Second)
+ tm.shutdownCh = shutdown
+ handle := tm.run()
+
+ defer handle.cancel() // just-in-case cleanup
+ close(shutdown) // tell script to exit
+
+ select {
+ case update := <-tm.calls:
+ if update.err != nil {
+ t.Errorf("expected clean shutdown but received %q", update.err)
+ }
+ case <-time.After(3 * time.Second):
+ t.Fatalf("timed out waiting for script check to exit")
+ }
+
+ select {
+ case <-handle.wait(): // ok
+ case <-time.After(3 * time.Second):
+ t.Fatalf("timed out waiting for script check to exit")
+ }
+}
+
+// test helpers
+
+type taskletMock struct {
+ tasklet
+ calls chan execResult
+}
+
+func newTaskletMock(exec interfaces.ScriptExecutor, logger hclog.Logger, interval, timeout time.Duration) *taskletMock {
+ tm := &taskletMock{calls: make(chan execResult)}
+ tm.exec = exec
+ tm.logger = logger
+ tm.Interval = interval
+ tm.Timeout = timeout
+ tm.callback = func(ctx context.Context, params execResult) {
+ tm.calls <- params
+ }
+ return tm
+}
+
+// blockingScriptExec implements ScriptExec by running a subcommand that never
+// exits.
+type blockingScriptExec struct {
+ // pctx is canceled *only* for test cleanup. Just like real
+ // ScriptExecutors its Exec method cannot be canceled directly -- only
+ // with a timeout.
+ pctx context.Context
+
+ // running is ticked before blocking to allow synchronizing operations
+ running chan struct{}
+
+ // set to 1 with atomics if Exec is called and has exited
+ exited int32
+}
+
+// newBlockingScriptExec returns a ScriptExecutor that blocks Exec() until the
+// caller recvs on the b.running chan. It also returns a CancelFunc for test
+// cleanup only. The runtime cannot cancel ScriptExecutors before their timeout
+// expires.
+func newBlockingScriptExec() (*blockingScriptExec, context.CancelFunc) {
+ ctx, cancel := context.WithCancel(context.Background())
+ exec := &blockingScriptExec{
+ pctx: ctx,
+ running: make(chan struct{}),
+ }
+ return exec, cancel
+}
+
+func (b *blockingScriptExec) Exec(dur time.Duration, _ string, _ []string) ([]byte, int, error) {
+ b.running <- struct{}{}
+ ctx, cancel := context.WithTimeout(b.pctx, dur)
+ defer cancel()
+ cmd := exec.CommandContext(ctx, testtask.Path(), "sleep", "9000h")
+ testtask.SetCmdEnv(cmd)
+ err := cmd.Run()
+ code := 0
+ if exitErr, ok := err.(*exec.ExitError); ok {
+ if !exitErr.Success() {
+ code = 1
+ }
+ }
+ atomic.StoreInt32(&b.exited, 1)
+ return []byte{}, code, err
+}
+
+// sleeperExec sleeps for 100ms but returns successfully to allow testing timeout conditions
+type sleeperExec struct{}
+
+func (sleeperExec) Exec(time.Duration, string, []string) ([]byte, int, error) {
+ time.Sleep(100 * time.Millisecond)
+ return []byte{}, 0, nil
+}
+
+// simpleExec is a fake ScriptExecutor that returns whatever is specified.
+type simpleExec struct {
+ code int
+ err error
+}
+
+func (s simpleExec) Exec(time.Duration, string, []string) ([]byte, int, error) {
+ return []byte(fmt.Sprintf("code=%d err=%v", s.code, s.err)), s.code, s.err
+}
+
+// newSimpleExec creates a new ScriptExecutor that returns the given code and err.
+func newSimpleExec(code int, err error) simpleExec {
+ return simpleExec{code: code, err: err}
+}
+
+// scriptedExec is a fake ScriptExecutor with a predetermined sequence
+// of results.
+type scriptedExec struct {
+ fn func() ([]byte, int, error)
+}
+
+// For each call to Exec, scriptedExec returns the next result in its
+// sequence of results
+func (s scriptedExec) Exec(time.Duration, string, []string) ([]byte, int, error) {
+ return s.fn()
+}
+
+func newScriptedExec(results []execResult) scriptedExec {
+ index := 0
+ s := scriptedExec{}
+ // we have to close over the index because the interface we're
+ // mocking expects a value and not a pointer, which prevents
+ // us from updating the index
+ fn := func() ([]byte, int, error) {
+ result := results[index]
+ // prevents us from iterating off the end of the results
+ if index+1 < len(results) {
+ index = index + 1
+ }
+ return result.output, result.code, result.err
+ }
+ s.fn = fn
+ return s
+}
diff --git a/client/allocrunner/taskrunner/volume_hook.go b/client/allocrunner/taskrunner/volume_hook.go
index b2c0ab3e7..1e0935aea 100644
--- a/client/allocrunner/taskrunner/volume_hook.go
+++ b/client/allocrunner/taskrunner/volume_hook.go
@@ -33,20 +33,14 @@ func (*volumeHook) Name() string {
func validateHostVolumes(requestedByAlias map[string]*structs.VolumeRequest, clientVolumesByName map[string]*structs.ClientHostVolumeConfig) error {
var result error
- for n, req := range requestedByAlias {
+ for _, req := range requestedByAlias {
if req.Type != structs.VolumeTypeHost {
continue
}
- cfg, err := structs.ParseHostVolumeConfig(req.Config)
- if err != nil {
- result = multierror.Append(result, fmt.Errorf("failed to parse config for %s: %v", n, err))
- continue
- }
-
- _, ok := clientVolumesByName[cfg.Source]
+ _, ok := clientVolumesByName[req.Source]
if !ok {
- result = multierror.Append(result, fmt.Errorf("missing %s", cfg.Source))
+ result = multierror.Append(result, fmt.Errorf("missing %s", req.Source))
}
}
@@ -65,16 +59,11 @@ func (h *volumeHook) hostVolumeMountConfigurations(taskMounts []*structs.VolumeM
return nil, fmt.Errorf("No group volume declaration found named: %s", m.Volume)
}
- cfg, err := structs.ParseHostVolumeConfig(req.Config)
- if err != nil {
- return nil, fmt.Errorf("failed to parse config for %s: %v", m.Volume, err)
- }
-
- hostVolume, ok := clientVolumesByName[cfg.Source]
+ hostVolume, ok := clientVolumesByName[req.Source]
if !ok {
// Should never happen, but unless the client volumes were mutated during
// the execution of this hook.
- return nil, fmt.Errorf("No host volume named: %s", cfg.Source)
+ return nil, fmt.Errorf("No host volume named: %s", req.Source)
}
mcfg := &drivers.MountConfig{
diff --git a/client/allocwatcher/alloc_watcher_unix_test.go b/client/allocwatcher/alloc_watcher_unix_test.go
index 21f95cdf9..aa75ab8ea 100644
--- a/client/allocwatcher/alloc_watcher_unix_test.go
+++ b/client/allocwatcher/alloc_watcher_unix_test.go
@@ -76,6 +76,10 @@ func TestPrevAlloc_StreamAllocDir_Ok(t *testing.T) {
tw := tar.NewWriter(buf)
walkFn := func(path string, fileInfo os.FileInfo, err error) error {
+ // filepath.Walk passes in an error
+ if err != nil {
+ return fmt.Errorf("error from filepath.Walk(): %s", err)
+ }
// Include the path of the file name relative to the alloc dir
// so that we can put the files in the right directories
link := ""
diff --git a/client/client.go b/client/client.go
index d142f13a2..fe7447dca 100644
--- a/client/client.go
+++ b/client/client.go
@@ -95,7 +95,8 @@ const (
// defaultConnectSidecarImage is the image set in the node meta by default
// to be used by Consul Connect sidecar tasks
- defaultConnectSidecarImage = "envoyproxy/envoy:v1.11.1"
+ // Update sidecar_task.html when updating this.
+ defaultConnectSidecarImage = "envoyproxy/envoy:v1.11.2@sha256:a7769160c9c1a55bb8d07a3b71ce5d64f72b1f665f10d81aa1581bc3cf850d09"
// defaultConnectLogLevel is the log level set in the node meta by default
// to be used by Consul Connect sidecar tasks
@@ -162,7 +163,7 @@ type Client struct {
configCopy *config.Config
configLock sync.RWMutex
- logger hclog.Logger
+ logger hclog.InterceptLogger
rpcLogger hclog.Logger
connPool *pool.ConnPool
@@ -303,7 +304,7 @@ func NewClient(cfg *config.Config, consulCatalog consul.CatalogAPI, consulServic
}
// Create the logger
- logger := cfg.Logger.ResetNamed("client")
+ logger := cfg.Logger.ResetNamedIntercept("client")
// Create the client
c := &Client{
@@ -731,6 +732,16 @@ func (c *Client) Stats() map[string]map[string]string {
return stats
}
+// GetAlloc returns an allocation or an error.
+func (c *Client) GetAlloc(allocID string) (*structs.Allocation, error) {
+ ar, err := c.getAllocRunner(allocID)
+ if err != nil {
+ return nil, err
+ }
+
+ return ar.Alloc(), nil
+}
+
// SignalAllocation sends a signal to the tasks within an allocation.
// If the provided task is empty, then every allocation will be signalled.
// If a task is provided, then only an exactly matching task will be signalled.
@@ -778,6 +789,8 @@ func (c *Client) Node() *structs.Node {
return c.configCopy.Node
}
+// getAllocRunner returns an AllocRunner or an UnknownAllocation error if the
+// client has no runner for the given alloc ID.
func (c *Client) getAllocRunner(allocID string) (AllocRunner, error) {
c.allocLock.RLock()
defer c.allocLock.RUnlock()
@@ -882,7 +895,6 @@ func (c *Client) GetAllocFS(allocID string) (allocdir.AllocDirFS, error) {
if err != nil {
return nil, err
}
-
return ar.GetAllocDir(), nil
}
@@ -1279,11 +1291,13 @@ func (c *Client) setupNode() error {
if node.Name == "" {
node.Name, _ = os.Hostname()
}
- // TODO(dani): Fingerprint these to handle volumes that don't exist/have bad perms.
if node.HostVolumes == nil {
if l := len(c.config.HostVolumes); l != 0 {
node.HostVolumes = make(map[string]*structs.ClientHostVolumeConfig, l)
for k, v := range c.config.HostVolumes {
+ if _, err := os.Stat(v.Path); err != nil {
+ return fmt.Errorf("failed to validate volume %s, err: %v", v.Name, err)
+ }
node.HostVolumes[k] = v.Copy()
}
}
@@ -1876,6 +1890,7 @@ func (c *Client) watchAllocations(updates chan *allocUpdates) {
QueryOptions: structs.QueryOptions{
Region: c.Region(),
AllowStale: true,
+ AuthToken: c.secretNodeID(),
},
}
var allocsResp structs.AllocsGetResponse
@@ -2577,12 +2592,11 @@ func (c *Client) emitStats() {
next.Reset(c.config.StatsCollectionInterval)
if err != nil {
c.logger.Warn("error fetching host resource usage stats", "error", err)
- continue
- }
-
- // Publish Node metrics if operator has opted in
- if c.config.PublishNodeMetrics {
- c.emitHostStats()
+ } else {
+ // Publish Node metrics if operator has opted in
+ if c.config.PublishNodeMetrics {
+ c.emitHostStats()
+ }
}
c.emitClientMetrics()
@@ -2593,12 +2607,12 @@ func (c *Client) emitStats() {
}
// setGaugeForMemoryStats proxies metrics for memory specific statistics
-func (c *Client) setGaugeForMemoryStats(nodeID string, hStats *stats.HostStats) {
+func (c *Client) setGaugeForMemoryStats(nodeID string, hStats *stats.HostStats, baseLabels []metrics.Label) {
if !c.config.DisableTaggedMetrics {
- metrics.SetGaugeWithLabels([]string{"client", "host", "memory", "total"}, float32(hStats.Memory.Total), c.baseLabels)
- metrics.SetGaugeWithLabels([]string{"client", "host", "memory", "available"}, float32(hStats.Memory.Available), c.baseLabels)
- metrics.SetGaugeWithLabels([]string{"client", "host", "memory", "used"}, float32(hStats.Memory.Used), c.baseLabels)
- metrics.SetGaugeWithLabels([]string{"client", "host", "memory", "free"}, float32(hStats.Memory.Free), c.baseLabels)
+ metrics.SetGaugeWithLabels([]string{"client", "host", "memory", "total"}, float32(hStats.Memory.Total), baseLabels)
+ metrics.SetGaugeWithLabels([]string{"client", "host", "memory", "available"}, float32(hStats.Memory.Available), baseLabels)
+ metrics.SetGaugeWithLabels([]string{"client", "host", "memory", "used"}, float32(hStats.Memory.Used), baseLabels)
+ metrics.SetGaugeWithLabels([]string{"client", "host", "memory", "free"}, float32(hStats.Memory.Free), baseLabels)
}
if c.config.BackwardsCompatibleMetrics {
@@ -2610,10 +2624,10 @@ func (c *Client) setGaugeForMemoryStats(nodeID string, hStats *stats.HostStats)
}
// setGaugeForCPUStats proxies metrics for CPU specific statistics
-func (c *Client) setGaugeForCPUStats(nodeID string, hStats *stats.HostStats) {
+func (c *Client) setGaugeForCPUStats(nodeID string, hStats *stats.HostStats, baseLabels []metrics.Label) {
for _, cpu := range hStats.CPU {
if !c.config.DisableTaggedMetrics {
- labels := append(c.baseLabels, metrics.Label{
+ labels := append(baseLabels, metrics.Label{
Name: "cpu",
Value: cpu.CPU,
})
@@ -2634,10 +2648,10 @@ func (c *Client) setGaugeForCPUStats(nodeID string, hStats *stats.HostStats) {
}
// setGaugeForDiskStats proxies metrics for disk specific statistics
-func (c *Client) setGaugeForDiskStats(nodeID string, hStats *stats.HostStats) {
+func (c *Client) setGaugeForDiskStats(nodeID string, hStats *stats.HostStats, baseLabels []metrics.Label) {
for _, disk := range hStats.DiskStats {
if !c.config.DisableTaggedMetrics {
- labels := append(c.baseLabels, metrics.Label{
+ labels := append(baseLabels, metrics.Label{
Name: "disk",
Value: disk.Device,
})
@@ -2737,9 +2751,9 @@ func (c *Client) setGaugeForAllocationStats(nodeID string) {
}
// No labels are required so we emit with only a key/value syntax
-func (c *Client) setGaugeForUptime(hStats *stats.HostStats) {
+func (c *Client) setGaugeForUptime(hStats *stats.HostStats, baseLabels []metrics.Label) {
if !c.config.DisableTaggedMetrics {
- metrics.SetGaugeWithLabels([]string{"client", "uptime"}, float32(hStats.Uptime), c.baseLabels)
+ metrics.SetGaugeWithLabels([]string{"client", "uptime"}, float32(hStats.Uptime), baseLabels)
}
if c.config.BackwardsCompatibleMetrics {
metrics.SetGauge([]string{"client", "uptime"}, float32(hStats.Uptime))
@@ -2750,11 +2764,18 @@ func (c *Client) setGaugeForUptime(hStats *stats.HostStats) {
func (c *Client) emitHostStats() {
nodeID := c.NodeID()
hStats := c.hostStatsCollector.Stats()
+ node := c.Node()
- c.setGaugeForMemoryStats(nodeID, hStats)
- c.setGaugeForUptime(hStats)
- c.setGaugeForCPUStats(nodeID, hStats)
- c.setGaugeForDiskStats(nodeID, hStats)
+ node.Canonicalize()
+ labels := append(c.baseLabels,
+ metrics.Label{Name: "node_status", Value: node.Status},
+ metrics.Label{Name: "node_scheduling_eligibility", Value: node.SchedulingEligibility},
+ )
+
+ c.setGaugeForMemoryStats(nodeID, hStats, labels)
+ c.setGaugeForUptime(hStats, labels)
+ c.setGaugeForCPUStats(nodeID, hStats, labels)
+ c.setGaugeForDiskStats(nodeID, hStats, labels)
}
// emitClientMetrics emits lower volume client metrics
diff --git a/client/config/config.go b/client/config/config.go
index 4783bea56..d9cabf8d8 100644
--- a/client/config/config.go
+++ b/client/config/config.go
@@ -81,7 +81,7 @@ type Config struct {
LogOutput io.Writer
// Logger provides a logger to thhe client
- Logger log.Logger
+ Logger log.InterceptLogger
// Region is the clients region
Region string
diff --git a/client/config/testing.go b/client/config/testing.go
index 8966ac831..642cafdf7 100644
--- a/client/config/testing.go
+++ b/client/config/testing.go
@@ -18,8 +18,18 @@ func TestClientConfig(t testing.T) (*Config, func()) {
conf.Node = mock.Node()
conf.Logger = testlog.HCLogger(t)
+ // On macOS, os.TempDir returns a symlinked path under /var which
+ // is outside of the directories shared into the VM used for Docker.
+ // Expand the symlink to get the real path in /private, which is ok.
+ dirName := os.TempDir()
+ tmpDir, err := filepath.EvalSymlinks(dirName)
+ if err != nil {
+ t.Fatalf("Could not resolve temporary directory links for %s: %v", tmpDir, err)
+ }
+ tmpDir = filepath.Clean(tmpDir)
+
// Create a tempdir to hold state and alloc subdirs
- parent, err := ioutil.TempDir("", "nomadtest")
+ parent, err := ioutil.TempDir(tmpDir, "nomadtest")
if err != nil {
t.Fatalf("error creating client dir: %v", err)
}
diff --git a/client/consul/consul.go b/client/consul/consul.go
index a789c4c34..251165ff3 100644
--- a/client/consul/consul.go
+++ b/client/consul/consul.go
@@ -2,17 +2,14 @@ package consul
import (
"github.com/hashicorp/nomad/command/agent/consul"
- "github.com/hashicorp/nomad/nomad/structs"
)
// ConsulServiceAPI is the interface the Nomad Client uses to register and
// remove services and checks from Consul.
type ConsulServiceAPI interface {
- RegisterGroup(*structs.Allocation) error
- RemoveGroup(*structs.Allocation) error
- UpdateGroup(oldAlloc, newAlloc *structs.Allocation) error
- RegisterTask(*consul.TaskServices) error
- RemoveTask(*consul.TaskServices)
- UpdateTask(old, newTask *consul.TaskServices) error
+ RegisterWorkload(*consul.WorkloadServices) error
+ RemoveWorkload(*consul.WorkloadServices)
+ UpdateWorkload(old, newTask *consul.WorkloadServices) error
AllocRegistrations(allocID string) (*consul.AllocRegistration, error)
+ UpdateTTL(id, output, status string) error
}
diff --git a/client/consul/consul_testing.go b/client/consul/consul_testing.go
index e38cfc6c1..6fb926068 100644
--- a/client/consul/consul_testing.go
+++ b/client/consul/consul_testing.go
@@ -7,7 +7,6 @@ import (
log "github.com/hashicorp/go-hclog"
"github.com/hashicorp/nomad/command/agent/consul"
- "github.com/hashicorp/nomad/nomad/structs"
testing "github.com/mitchellh/go-testing-interface"
)
@@ -21,7 +20,7 @@ type MockConsulOp struct {
func NewMockConsulOp(op, allocID, name string) MockConsulOp {
switch op {
case "add", "remove", "update", "alloc_registrations",
- "add_group", "remove_group", "update_group":
+ "add_group", "remove_group", "update_group", "update_ttl":
default:
panic(fmt.Errorf("invalid consul op: %s", op))
}
@@ -54,60 +53,33 @@ func NewMockConsulServiceClient(t testing.T, logger log.Logger) *MockConsulServi
return &m
}
-func (m *MockConsulServiceClient) RegisterGroup(alloc *structs.Allocation) error {
+func (m *MockConsulServiceClient) UpdateWorkload(old, newSvcs *consul.WorkloadServices) error {
m.mu.Lock()
defer m.mu.Unlock()
- tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup)
- m.logger.Trace("RegisterGroup", "alloc_id", alloc.ID, "num_services", len(tg.Services))
- m.ops = append(m.ops, NewMockConsulOp("add_group", alloc.ID, alloc.TaskGroup))
- return nil
-}
-
-func (m *MockConsulServiceClient) UpdateGroup(_, alloc *structs.Allocation) error {
- m.mu.Lock()
- defer m.mu.Unlock()
- tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup)
- m.logger.Trace("UpdateGroup", "alloc_id", alloc.ID, "num_services", len(tg.Services))
- m.ops = append(m.ops, NewMockConsulOp("update_group", alloc.ID, alloc.TaskGroup))
- return nil
-}
-
-func (m *MockConsulServiceClient) RemoveGroup(alloc *structs.Allocation) error {
- m.mu.Lock()
- defer m.mu.Unlock()
- tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup)
- m.logger.Trace("RemoveGroup", "alloc_id", alloc.ID, "num_services", len(tg.Services))
- m.ops = append(m.ops, NewMockConsulOp("remove_group", alloc.ID, alloc.TaskGroup))
- return nil
-}
-
-func (m *MockConsulServiceClient) UpdateTask(old, newSvcs *consul.TaskServices) error {
- m.mu.Lock()
- defer m.mu.Unlock()
- m.logger.Trace("UpdateTask", "alloc_id", newSvcs.AllocID, "task", newSvcs.Name,
+ m.logger.Trace("UpdateWorkload", "alloc_id", newSvcs.AllocID, "name", newSvcs.Name(),
"old_services", len(old.Services), "new_services", len(newSvcs.Services),
)
- m.ops = append(m.ops, NewMockConsulOp("update", newSvcs.AllocID, newSvcs.Name))
+ m.ops = append(m.ops, NewMockConsulOp("update", newSvcs.AllocID, newSvcs.Name()))
return nil
}
-func (m *MockConsulServiceClient) RegisterTask(task *consul.TaskServices) error {
+func (m *MockConsulServiceClient) RegisterWorkload(svcs *consul.WorkloadServices) error {
m.mu.Lock()
defer m.mu.Unlock()
- m.logger.Trace("RegisterTask", "alloc_id", task.AllocID, "task", task.Name,
- "services", len(task.Services),
+ m.logger.Trace("RegisterWorkload", "alloc_id", svcs.AllocID, "name", svcs.Name(),
+ "services", len(svcs.Services),
)
- m.ops = append(m.ops, NewMockConsulOp("add", task.AllocID, task.Name))
+ m.ops = append(m.ops, NewMockConsulOp("add", svcs.AllocID, svcs.Name()))
return nil
}
-func (m *MockConsulServiceClient) RemoveTask(task *consul.TaskServices) {
+func (m *MockConsulServiceClient) RemoveWorkload(svcs *consul.WorkloadServices) {
m.mu.Lock()
defer m.mu.Unlock()
- m.logger.Trace("RemoveTask", "alloc_id", task.AllocID, "task", task.Name,
- "services", len(task.Services),
+ m.logger.Trace("RemoveWorkload", "alloc_id", svcs.AllocID, "name", svcs.Name(),
+ "services", len(svcs.Services),
)
- m.ops = append(m.ops, NewMockConsulOp("remove", task.AllocID, task.Name))
+ m.ops = append(m.ops, NewMockConsulOp("remove", svcs.AllocID, svcs.Name()))
}
func (m *MockConsulServiceClient) AllocRegistrations(allocID string) (*consul.AllocRegistration, error) {
@@ -123,6 +95,15 @@ func (m *MockConsulServiceClient) AllocRegistrations(allocID string) (*consul.Al
return nil, nil
}
+func (m *MockConsulServiceClient) UpdateTTL(checkID, output, status string) error {
+ // TODO(tgross): this method is here so we can implement the
+ // interface but the locking we need for testing creates a lot
+ // of opportunities for deadlocks in testing that will never
+ // appear in live code.
+ m.logger.Trace("UpdateTTL", "check_id", checkID, "status", status)
+ return nil
+}
+
func (m *MockConsulServiceClient) GetOps() []MockConsulOp {
m.mu.Lock()
defer m.mu.Unlock()
diff --git a/client/fingerprint/memory.go b/client/fingerprint/memory.go
index ad28ed2ec..df5e24c33 100644
--- a/client/fingerprint/memory.go
+++ b/client/fingerprint/memory.go
@@ -8,7 +8,7 @@ import (
"github.com/shirou/gopsutil/mem"
)
-const bytesInMB = 1024 * 1024
+const bytesInMB int64 = 1024 * 1024
// MemoryFingerprint is used to fingerprint the available memory on the node
type MemoryFingerprint struct {
@@ -25,10 +25,10 @@ func NewMemoryFingerprint(logger log.Logger) Fingerprint {
}
func (f *MemoryFingerprint) Fingerprint(req *FingerprintRequest, resp *FingerprintResponse) error {
- var totalMemory int
+ var totalMemory int64
cfg := req.Config
if cfg.MemoryMB != 0 {
- totalMemory = cfg.MemoryMB * bytesInMB
+ totalMemory = int64(cfg.MemoryMB) * bytesInMB
} else {
memInfo, err := mem.VirtualMemory()
if err != nil {
@@ -36,21 +36,23 @@ func (f *MemoryFingerprint) Fingerprint(req *FingerprintRequest, resp *Fingerpri
return err
}
if memInfo.Total > 0 {
- totalMemory = int(memInfo.Total)
+ totalMemory = int64(memInfo.Total)
}
}
if totalMemory > 0 {
resp.AddAttribute("memory.totalbytes", fmt.Sprintf("%d", totalMemory))
- // COMPAT(0.10): Remove in 0.10
+ memoryMB := totalMemory / bytesInMB
+
+ // COMPAT(0.10): Unused since 0.9.
resp.Resources = &structs.Resources{
- MemoryMB: totalMemory / bytesInMB,
+ MemoryMB: int(memoryMB),
}
resp.NodeResources = &structs.NodeResources{
Memory: structs.NodeMemoryResources{
- MemoryMB: int64(totalMemory / bytesInMB),
+ MemoryMB: memoryMB,
},
}
}
diff --git a/client/fingerprint/memory_test.go b/client/fingerprint/memory_test.go
index 6624b9225..8635b55fd 100644
--- a/client/fingerprint/memory_test.go
+++ b/client/fingerprint/memory_test.go
@@ -11,6 +11,8 @@ import (
)
func TestMemoryFingerprint(t *testing.T) {
+ require := require.New(t)
+
f := NewMemoryFingerprint(testlog.HCLogger(t))
node := &structs.Node{
Attributes: make(map[string]string),
@@ -19,24 +21,13 @@ func TestMemoryFingerprint(t *testing.T) {
request := &FingerprintRequest{Config: &config.Config{}, Node: node}
var response FingerprintResponse
err := f.Fingerprint(request, &response)
- if err != nil {
- t.Fatalf("err: %v", err)
- }
+ require.NoError(err)
assertNodeAttributeContains(t, response.Attributes, "memory.totalbytes")
-
- if response.Resources == nil {
- t.Fatalf("response resources should not be nil")
- }
-
- // COMPAT(0.10): Remove in 0.10
- if response.Resources.MemoryMB == 0 {
- t.Fatalf("Expected node.Resources.MemoryMB to be non-zero")
- }
-
- if response.NodeResources.Memory.MemoryMB == 0 {
- t.Fatalf("Expected node.Resources.MemoryMB to be non-zero")
- }
+ require.NotNil(response.Resources, "expected response Resources to not be nil")
+ require.NotZero(response.Resources.MemoryMB, "expected memory to be non-zero")
+ require.NotNil(response.NodeResources, "expected response NodeResources to not be nil")
+ require.NotZero(response.NodeResources.Memory.MemoryMB, "expected memory to be non-zero")
}
func TestMemoryFingerprint_Override(t *testing.T) {
@@ -56,6 +47,7 @@ func TestMemoryFingerprint_Override(t *testing.T) {
assertNodeAttributeContains(t, response.Attributes, "memory.totalbytes")
require := require.New(t)
require.NotNil(response.Resources)
- require.Equal(response.Resources.MemoryMB, memoryMB)
+ require.EqualValues(response.Resources.MemoryMB, memoryMB)
+ require.NotNil(response.NodeResources)
require.EqualValues(response.NodeResources.Memory.MemoryMB, memoryMB)
}
diff --git a/client/fs_endpoint.go b/client/fs_endpoint.go
index 2a6a25cf5..e747de039 100644
--- a/client/fs_endpoint.go
+++ b/client/fs_endpoint.go
@@ -99,10 +99,15 @@ func handleStreamResultError(err error, code *int64, encoder *codec.Encoder) {
func (f *FileSystem) List(args *cstructs.FsListRequest, reply *cstructs.FsListResponse) error {
defer metrics.MeasureSince([]string{"client", "file_system", "list"}, time.Now())
- // Check read permissions
+ alloc, err := f.c.GetAlloc(args.AllocID)
+ if err != nil {
+ return err
+ }
+
+ // Check namespace read-fs permission.
if aclObj, err := f.c.ResolveToken(args.QueryOptions.AuthToken); err != nil {
return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.Namespace, acl.NamespaceCapabilityReadFS) {
+ } else if aclObj != nil && !aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilityReadFS) {
return structs.ErrPermissionDenied
}
@@ -123,10 +128,15 @@ func (f *FileSystem) List(args *cstructs.FsListRequest, reply *cstructs.FsListRe
func (f *FileSystem) Stat(args *cstructs.FsStatRequest, reply *cstructs.FsStatResponse) error {
defer metrics.MeasureSince([]string{"client", "file_system", "stat"}, time.Now())
- // Check read permissions
+ alloc, err := f.c.GetAlloc(args.AllocID)
+ if err != nil {
+ return err
+ }
+
+ // Check namespace read-fs permission.
if aclObj, err := f.c.ResolveToken(args.QueryOptions.AuthToken); err != nil {
return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.Namespace, acl.NamespaceCapabilityReadFS) {
+ } else if aclObj != nil && !aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilityReadFS) {
return structs.ErrPermissionDenied
}
@@ -159,20 +169,26 @@ func (f *FileSystem) stream(conn io.ReadWriteCloser) {
return
}
+ if req.AllocID == "" {
+ handleStreamResultError(allocIDNotPresentErr, helper.Int64ToPtr(400), encoder)
+ return
+ }
+ alloc, err := f.c.GetAlloc(req.AllocID)
+ if err != nil {
+ handleStreamResultError(structs.NewErrUnknownAllocation(req.AllocID), helper.Int64ToPtr(404), encoder)
+ return
+ }
+
// Check read permissions
if aclObj, err := f.c.ResolveToken(req.QueryOptions.AuthToken); err != nil {
handleStreamResultError(err, helper.Int64ToPtr(403), encoder)
return
- } else if aclObj != nil && !aclObj.AllowNsOp(req.Namespace, acl.NamespaceCapabilityReadFS) {
+ } else if aclObj != nil && !aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilityReadFS) {
handleStreamResultError(structs.ErrPermissionDenied, helper.Int64ToPtr(403), encoder)
return
}
// Validate the arguments
- if req.AllocID == "" {
- handleStreamResultError(allocIDNotPresentErr, helper.Int64ToPtr(400), encoder)
- return
- }
if req.Path == "" {
handleStreamResultError(pathNotPresentErr, helper.Int64ToPtr(400), encoder)
return
@@ -332,13 +348,23 @@ func (f *FileSystem) logs(conn io.ReadWriteCloser) {
return
}
+ if req.AllocID == "" {
+ handleStreamResultError(allocIDNotPresentErr, helper.Int64ToPtr(400), encoder)
+ return
+ }
+ alloc, err := f.c.GetAlloc(req.AllocID)
+ if err != nil {
+ handleStreamResultError(structs.NewErrUnknownAllocation(req.AllocID), helper.Int64ToPtr(404), encoder)
+ return
+ }
+
// Check read permissions
if aclObj, err := f.c.ResolveToken(req.QueryOptions.AuthToken); err != nil {
handleStreamResultError(err, nil, encoder)
return
} else if aclObj != nil {
- readfs := aclObj.AllowNsOp(req.QueryOptions.Namespace, acl.NamespaceCapabilityReadFS)
- logs := aclObj.AllowNsOp(req.QueryOptions.Namespace, acl.NamespaceCapabilityReadLogs)
+ readfs := aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilityReadFS)
+ logs := aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilityReadLogs)
if !readfs && !logs {
handleStreamResultError(structs.ErrPermissionDenied, nil, encoder)
return
@@ -346,10 +372,6 @@ func (f *FileSystem) logs(conn io.ReadWriteCloser) {
}
// Validate the arguments
- if req.AllocID == "" {
- handleStreamResultError(allocIDNotPresentErr, helper.Int64ToPtr(400), encoder)
- return
- }
if req.Task == "" {
handleStreamResultError(taskNotPresentErr, helper.Int64ToPtr(400), encoder)
return
diff --git a/client/fs_endpoint_test.go b/client/fs_endpoint_test.go
index b7ccb9f46..40a9b451d 100644
--- a/client/fs_endpoint_test.go
+++ b/client/fs_endpoint_test.go
@@ -114,7 +114,6 @@ func TestFS_Stat(t *testing.T) {
func TestFS_Stat_ACL(t *testing.T) {
t.Parallel()
- require := require.New(t)
// Start a server
s, root := nomad.TestACLServer(t, nil)
@@ -135,6 +134,15 @@ func TestFS_Stat_ACL(t *testing.T) {
[]string{acl.NamespaceCapabilityReadLogs, acl.NamespaceCapabilityReadFS})
tokenGood := mock.CreatePolicyAndToken(t, s.State(), 1009, "valid2", policyGood)
+ job := mock.BatchJob()
+ job.TaskGroups[0].Count = 1
+ job.TaskGroups[0].Tasks[0].Config = map[string]interface{}{
+ "run_for": "20s",
+ }
+
+ // Wait for client to be running job
+ alloc := testutil.WaitForRunningWithToken(t, s.RPC, job, root.SecretID)[0]
+
cases := []struct {
Name string
Token string
@@ -146,22 +154,19 @@ func TestFS_Stat_ACL(t *testing.T) {
ExpectedError: structs.ErrPermissionDenied.Error(),
},
{
- Name: "good token",
- Token: tokenGood.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ Name: "good token",
+ Token: tokenGood.SecretID,
},
{
- Name: "root token",
- Token: root.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ Name: "root token",
+ Token: root.SecretID,
},
}
for _, c := range cases {
t.Run(c.Name, func(t *testing.T) {
- // Make the request with bad allocation id
req := &cstructs.FsStatRequest{
- AllocID: uuid.Generate(),
+ AllocID: alloc.ID,
Path: "/",
QueryOptions: structs.QueryOptions{
Region: "global",
@@ -172,8 +177,12 @@ func TestFS_Stat_ACL(t *testing.T) {
var resp cstructs.FsStatResponse
err := client.ClientRPC("FileSystem.Stat", req, &resp)
- require.NotNil(err)
- require.Contains(err.Error(), c.ExpectedError)
+ if c.ExpectedError == "" {
+ require.NoError(t, err)
+ } else {
+ require.NotNil(t, err)
+ require.Contains(t, err.Error(), c.ExpectedError)
+ }
})
}
}
@@ -238,7 +247,6 @@ func TestFS_List(t *testing.T) {
func TestFS_List_ACL(t *testing.T) {
t.Parallel()
- require := require.New(t)
// Start a server
s, root := nomad.TestACLServer(t, nil)
@@ -259,6 +267,15 @@ func TestFS_List_ACL(t *testing.T) {
[]string{acl.NamespaceCapabilityReadLogs, acl.NamespaceCapabilityReadFS})
tokenGood := mock.CreatePolicyAndToken(t, s.State(), 1009, "valid2", policyGood)
+ job := mock.BatchJob()
+ job.TaskGroups[0].Count = 1
+ job.TaskGroups[0].Tasks[0].Config = map[string]interface{}{
+ "run_for": "20s",
+ }
+
+ // Wait for client to be running job
+ alloc := testutil.WaitForRunningWithToken(t, s.RPC, job, root.SecretID)[0]
+
cases := []struct {
Name string
Token string
@@ -270,14 +287,12 @@ func TestFS_List_ACL(t *testing.T) {
ExpectedError: structs.ErrPermissionDenied.Error(),
},
{
- Name: "good token",
- Token: tokenGood.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ Name: "good token",
+ Token: tokenGood.SecretID,
},
{
- Name: "root token",
- Token: root.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ Name: "root token",
+ Token: root.SecretID,
},
}
@@ -285,7 +300,7 @@ func TestFS_List_ACL(t *testing.T) {
t.Run(c.Name, func(t *testing.T) {
// Make the request with bad allocation id
req := &cstructs.FsListRequest{
- AllocID: uuid.Generate(),
+ AllocID: alloc.ID,
Path: "/",
QueryOptions: structs.QueryOptions{
Region: "global",
@@ -296,8 +311,11 @@ func TestFS_List_ACL(t *testing.T) {
var resp cstructs.FsListResponse
err := client.ClientRPC("FileSystem.List", req, &resp)
- require.NotNil(err)
- require.Contains(err.Error(), c.ExpectedError)
+ if c.ExpectedError == "" {
+ require.NoError(t, err)
+ } else {
+ require.EqualError(t, err, c.ExpectedError)
+ }
})
}
}
@@ -379,7 +397,6 @@ OUTER:
func TestFS_Stream_ACL(t *testing.T) {
t.Parallel()
- require := require.New(t)
// Start a server
s, root := nomad.TestACLServer(t, nil)
@@ -400,6 +417,15 @@ func TestFS_Stream_ACL(t *testing.T) {
[]string{acl.NamespaceCapabilityReadLogs, acl.NamespaceCapabilityReadFS})
tokenGood := mock.CreatePolicyAndToken(t, s.State(), 1009, "valid2", policyGood)
+ job := mock.BatchJob()
+ job.TaskGroups[0].Count = 1
+ job.TaskGroups[0].Tasks[0].Config = map[string]interface{}{
+ "run_for": "20s",
+ }
+
+ // Wait for client to be running job
+ alloc := testutil.WaitForRunningWithToken(t, s.RPC, job, root.SecretID)[0]
+
cases := []struct {
Name string
Token string
@@ -411,14 +437,12 @@ func TestFS_Stream_ACL(t *testing.T) {
ExpectedError: structs.ErrPermissionDenied.Error(),
},
{
- Name: "good token",
- Token: tokenGood.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ Name: "good token",
+ Token: tokenGood.SecretID,
},
{
- Name: "root token",
- Token: root.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ Name: "root token",
+ Token: root.SecretID,
},
}
@@ -426,7 +450,7 @@ func TestFS_Stream_ACL(t *testing.T) {
t.Run(c.Name, func(t *testing.T) {
// Make the request with bad allocation id
req := &cstructs.FsStreamRequest{
- AllocID: uuid.Generate(),
+ AllocID: alloc.ID,
Path: "foo",
Origin: "start",
QueryOptions: structs.QueryOptions{
@@ -438,7 +462,7 @@ func TestFS_Stream_ACL(t *testing.T) {
// Get the handler
handler, err := client.StreamingRpcHandler("FileSystem.Stream")
- require.Nil(err)
+ require.Nil(t, err)
// Create a pipe
p1, p2 := net.Pipe()
@@ -457,10 +481,8 @@ func TestFS_Stream_ACL(t *testing.T) {
for {
var msg cstructs.StreamErrWrapper
if err := decoder.Decode(&msg); err != nil {
- if err == io.EOF || strings.Contains(err.Error(), "closed") {
- return
- }
- errCh <- fmt.Errorf("error decoding: %v", err)
+ errCh <- err
+ return
}
streamMsg <- &msg
@@ -469,7 +491,7 @@ func TestFS_Stream_ACL(t *testing.T) {
// Send the request
encoder := codec.NewEncoder(p1, structs.MsgpackHandle)
- require.Nil(encoder.Encode(req))
+ require.NoError(t, encoder.Encode(req))
timeout := time.After(5 * time.Second)
@@ -479,6 +501,11 @@ func TestFS_Stream_ACL(t *testing.T) {
case <-timeout:
t.Fatal("timeout")
case err := <-errCh:
+ eof := err == io.EOF || strings.Contains(err.Error(), "closed")
+ if c.ExpectedError == "" && eof {
+ // No error was expected!
+ return
+ }
t.Fatal(err)
case msg := <-streamMsg:
if msg.Error == nil {
@@ -905,6 +932,7 @@ func TestFS_Logs_TaskPending(t *testing.T) {
args := &structs.JobRegisterRequest{}
args.Job = job
args.WriteRequest.Region = "global"
+ args.Namespace = job.Namespace
var jobResp structs.JobRegisterResponse
require.NoError(s.RPC("Job.Register", args, &jobResp))
@@ -1018,6 +1046,15 @@ func TestFS_Logs_ACL(t *testing.T) {
[]string{acl.NamespaceCapabilityReadLogs, acl.NamespaceCapabilityReadFS})
tokenGood := mock.CreatePolicyAndToken(t, s.State(), 1009, "valid2", policyGood)
+ job := mock.BatchJob()
+ job.TaskGroups[0].Count = 1
+ job.TaskGroups[0].Tasks[0].Config = map[string]interface{}{
+ "run_for": "20s",
+ }
+
+ // Wait for client to be running job
+ alloc := testutil.WaitForRunningWithToken(t, s.RPC, job, root.SecretID)[0]
+
cases := []struct {
Name string
Token string
@@ -1029,14 +1066,12 @@ func TestFS_Logs_ACL(t *testing.T) {
ExpectedError: structs.ErrPermissionDenied.Error(),
},
{
- Name: "good token",
- Token: tokenGood.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ Name: "good token",
+ Token: tokenGood.SecretID,
},
{
- Name: "root token",
- Token: root.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ Name: "root token",
+ Token: root.SecretID,
},
}
@@ -1044,8 +1079,8 @@ func TestFS_Logs_ACL(t *testing.T) {
t.Run(c.Name, func(t *testing.T) {
// Make the request with bad allocation id
req := &cstructs.FsLogsRequest{
- AllocID: uuid.Generate(),
- Task: "foo",
+ AllocID: alloc.ID,
+ Task: job.TaskGroups[0].Tasks[0].Name,
LogType: "stdout",
Origin: "start",
QueryOptions: structs.QueryOptions{
@@ -1076,10 +1111,8 @@ func TestFS_Logs_ACL(t *testing.T) {
for {
var msg cstructs.StreamErrWrapper
if err := decoder.Decode(&msg); err != nil {
- if err == io.EOF || strings.Contains(err.Error(), "closed") {
- return
- }
- errCh <- fmt.Errorf("error decoding: %v", err)
+ errCh <- err
+ return
}
streamMsg <- &msg
@@ -1098,6 +1131,11 @@ func TestFS_Logs_ACL(t *testing.T) {
case <-timeout:
t.Fatal("timeout")
case err := <-errCh:
+ eof := err == io.EOF || strings.Contains(err.Error(), "closed")
+ if c.ExpectedError == "" && eof {
+ // No error was expected!
+ return
+ }
t.Fatal(err)
case msg := <-streamMsg:
if msg.Error == nil {
@@ -1105,6 +1143,7 @@ func TestFS_Logs_ACL(t *testing.T) {
}
if strings.Contains(msg.Error.Error(), c.ExpectedError) {
+ // Ok! Error matched expectation.
break OUTER
} else {
t.Fatalf("Bad error: %v", msg.Error)
diff --git a/client/logmon/logging/rotator.go b/client/logmon/logging/rotator.go
index b204648a0..8f655b4f2 100644
--- a/client/logmon/logging/rotator.go
+++ b/client/logmon/logging/rotator.go
@@ -256,6 +256,7 @@ func (f *FileRotator) Close() error {
f.doneCh <- struct{}{}
close(f.purgeCh)
f.closed = true
+ f.currentFile.Close()
}
return nil
diff --git a/client/rpc.go b/client/rpc.go
index beaec6f2c..3388f6483 100644
--- a/client/rpc.go
+++ b/client/rpc.go
@@ -23,6 +23,7 @@ type rpcEndpoints struct {
ClientStats *ClientStats
FileSystem *FileSystem
Allocations *Allocations
+ Agent *Agent
}
// ClientRPC is used to make a local, client only RPC call
@@ -218,6 +219,7 @@ func (c *Client) setupClientRpc() {
c.endpoints.ClientStats = &ClientStats{c}
c.endpoints.FileSystem = NewFileSystemEndpoint(c)
c.endpoints.Allocations = NewAllocationsEndpoint(c)
+ c.endpoints.Agent = NewAgentEndpoint(c)
// Create the RPC Server
c.rpcServer = rpc.NewServer()
diff --git a/client/state/state_database.go b/client/state/state_database.go
index bb42a59ae..d6784e98e 100644
--- a/client/state/state_database.go
+++ b/client/state/state_database.go
@@ -6,6 +6,8 @@ import (
"path/filepath"
"time"
+ "github.com/boltdb/bolt"
+
hclog "github.com/hashicorp/go-hclog"
trstate "github.com/hashicorp/nomad/client/allocrunner/taskrunner/state"
dmstate "github.com/hashicorp/nomad/client/devicemanager/state"
@@ -120,9 +122,14 @@ func NewBoltStateDB(logger hclog.Logger, stateDir string) (StateDB, error) {
}
firstRun := fi == nil
+ // Timeout to force failure when accessing a data dir that is already in use
+ timeout := &bolt.Options{Timeout: 5 * time.Second}
+
// Create or open the boltdb state database
- db, err := boltdd.Open(fn, 0600, nil)
- if err != nil {
+ db, err := boltdd.Open(fn, 0600, timeout)
+ if err == bolt.ErrTimeout {
+ return nil, fmt.Errorf("timed out while opening database, is another Nomad process accessing data_dir %s?", stateDir)
+ } else if err != nil {
return nil, fmt.Errorf("failed to create state database: %v", err)
}
diff --git a/client/stats/host.go b/client/stats/host.go
index 28d61906d..a434c9421 100644
--- a/client/stats/host.go
+++ b/client/stats/host.go
@@ -1,7 +1,6 @@
package stats
import (
- "fmt"
"math"
"runtime"
"sync"
@@ -117,21 +116,25 @@ func (h *HostStatsCollector) collectLocked() error {
// Determine up-time
uptime, err := host.Uptime()
if err != nil {
- return err
+ h.logger.Error("failed to collect upstime stats", "error", err)
+ uptime = 0
}
hs.Uptime = uptime
// Collect memory stats
mstats, err := h.collectMemoryStats()
if err != nil {
- return err
+ h.logger.Error("failed to collect memory stats", "error", err)
+ mstats = &MemoryStats{}
}
hs.Memory = mstats
// Collect cpu stats
cpus, ticks, err := h.collectCPUStats()
if err != nil {
- return err
+ h.logger.Error("failed to collect cpu stats", "error", err)
+ cpus = []*CPUStats{}
+ ticks = 0
}
hs.CPU = cpus
hs.CPUTicksConsumed = ticks
@@ -139,17 +142,19 @@ func (h *HostStatsCollector) collectLocked() error {
// Collect disk stats
diskStats, err := h.collectDiskStats()
if err != nil {
- return err
+ h.logger.Error("failed to collect disk stats", "error", err)
+ hs.DiskStats = []*DiskStats{}
}
hs.DiskStats = diskStats
// Getting the disk stats for the allocation directory
usage, err := disk.Usage(h.allocDir)
if err != nil {
- return fmt.Errorf("failed to find disk usage of alloc_dir %q: %v", h.allocDir, err)
+ h.logger.Error("failed to find disk usage of alloc", "alloc_dir", h.allocDir, "error", err)
+ hs.AllocDirStats = &DiskStats{}
+ } else {
+ hs.AllocDirStats = h.toDiskStats(usage, nil)
}
- hs.AllocDirStats = h.toDiskStats(usage, nil)
-
// Collect devices stats
deviceStats := h.collectDeviceGroupStats()
hs.DeviceStats = deviceStats
diff --git a/client/structs/structs.go b/client/structs/structs.go
index 169cf824c..f2c54bdeb 100644
--- a/client/structs/structs.go
+++ b/client/structs/structs.go
@@ -1,6 +1,6 @@
package structs
-//go:generate codecgen -d 102 -o structs.generated.go structs.go
+//go:generate codecgen -d 102 -t codec_generated -o structs.generated.go structs.go
import (
"errors"
@@ -34,6 +34,25 @@ type ClientStatsResponse struct {
structs.QueryMeta
}
+type MonitorRequest struct {
+ // LogLevel is the log level filter we want to stream logs on
+ LogLevel string
+
+ // LogJSON specifies if log format should be unstructured or json
+ LogJSON bool
+
+ // NodeID is the node we want to track the logs of
+ NodeID string
+
+ // ServerID is the server we want to track the logs of
+ ServerID string
+
+ // PlainText disables base64 encoding.
+ PlainText bool
+
+ structs.QueryOptions
+}
+
// AllocFileInfo holds information about a file inside the AllocDir
type AllocFileInfo struct {
Name string
diff --git a/client/taskenv/env.go b/client/taskenv/env.go
index 67a875c4a..57402b442 100644
--- a/client/taskenv/env.go
+++ b/client/taskenv/env.go
@@ -490,22 +490,19 @@ func (b *Builder) Build() *TaskEnv {
}
// Clean keys (see #2405)
+ prefixesToClean := [...]string{AddrPrefix, IpPrefix, PortPrefix, HostPortPrefix, MetaPrefix}
cleanedEnv := make(map[string]string, len(envMap))
for k, v := range envMap {
- cleanedK := helper.CleanEnvVar(k, '_')
+ cleanedK := k
+ for i := range prefixesToClean {
+ if strings.HasPrefix(k, prefixesToClean[i]) {
+ cleanedK = helper.CleanEnvVar(k, '_')
+ }
+ }
cleanedEnv[cleanedK] = v
}
- var cleanedDeviceEnvs map[string]string
- if deviceEnvs != nil {
- cleanedDeviceEnvs = make(map[string]string, len(deviceEnvs))
- for k, v := range deviceEnvs {
- cleanedK := helper.CleanEnvVar(k, '_')
- cleanedDeviceEnvs[cleanedK] = v
- }
- }
-
- return NewTaskEnv(cleanedEnv, cleanedDeviceEnvs, nodeAttrs)
+ return NewTaskEnv(cleanedEnv, deviceEnvs, nodeAttrs)
}
// Update task updates the environment based on a new alloc and task.
@@ -550,6 +547,9 @@ func (b *Builder) SetDeviceHookEnv(hookName string, envs map[string]string) *Bui
// setTask is called from NewBuilder to populate task related environment
// variables.
func (b *Builder) setTask(task *structs.Task) *Builder {
+ if task == nil {
+ return b
+ }
b.taskName = task.Name
b.envvars = make(map[string]string, len(task.Env))
for k, v := range task.Env {
@@ -634,6 +634,17 @@ func (b *Builder) setAlloc(alloc *structs.Allocation) *Builder {
}
}
}
+
+ // Add ports from group networks
+ //TODO Expose IPs but possibly only via variable interpolation
+ for _, nw := range alloc.AllocatedResources.Shared.Networks {
+ for _, p := range nw.ReservedPorts {
+ addGroupPort(b.otherPorts, p)
+ }
+ for _, p := range nw.DynamicPorts {
+ addGroupPort(b.otherPorts, p)
+ }
+ }
} else if alloc.TaskResources != nil {
if tr, ok := alloc.TaskResources[b.taskName]; ok {
// Copy networks to prevent sharing
@@ -786,6 +797,19 @@ func buildUpstreamsEnv(envMap map[string]string, upstreams []structs.ConsulUpstr
}
}
+// SetPortMapEnvs sets the PortMap related environment variables on the map
+func SetPortMapEnvs(envs map[string]string, ports map[string]int) map[string]string {
+ if envs == nil {
+ envs = map[string]string{}
+ }
+
+ for portLabel, port := range ports {
+ portEnv := helper.CleanEnvVar(PortPrefix+portLabel, '_')
+ envs[portEnv] = strconv.Itoa(port)
+ }
+ return envs
+}
+
// SetHostEnvvars adds the host environment variables to the tasks. The filter
// parameter can be use to filter host environment from entering the tasks.
func (b *Builder) SetHostEnvvars(filter []string) *Builder {
@@ -839,3 +863,15 @@ func addPort(m map[string]string, taskName, ip, portLabel string, port int) {
key = fmt.Sprintf("%s%s_%s", PortPrefix, taskName, portLabel)
m[key] = strconv.Itoa(port)
}
+
+// addGroupPort adds a group network port. The To value is used if one is
+// specified.
+func addGroupPort(m map[string]string, port structs.Port) {
+ if port.To > 0 {
+ m[PortPrefix+port.Label] = strconv.Itoa(port.To)
+ } else {
+ m[PortPrefix+port.Label] = strconv.Itoa(port.Value)
+ }
+
+ m[HostPortPrefix+port.Label] = strconv.Itoa(port.Value)
+}
diff --git a/client/taskenv/env_test.go b/client/taskenv/env_test.go
index 32571ac2e..f68bb05d7 100644
--- a/client/taskenv/env_test.go
+++ b/client/taskenv/env_test.go
@@ -334,7 +334,7 @@ func TestEnvironment_AllValues(t *testing.T) {
"nested.meta.key": "a",
"invalid...metakey": "b",
}
- a := mock.Alloc()
+ a := mock.ConnectAlloc()
a.AllocatedResources.Tasks["web"].Networks[0] = &structs.NetworkResource{
Device: "eth0",
IP: "127.0.0.1",
@@ -355,6 +355,22 @@ func TestEnvironment_AllValues(t *testing.T) {
},
},
}
+
+ sharedNet := a.AllocatedResources.Shared.Networks[0]
+
+ // Add group network port with only a host port.
+ sharedNet.DynamicPorts = append(sharedNet.DynamicPorts, structs.Port{
+ Label: "hostonly",
+ Value: 9998,
+ })
+
+ // Add group network reserved port with a To value.
+ sharedNet.ReservedPorts = append(sharedNet.ReservedPorts, structs.Port{
+ Label: "static",
+ Value: 9997,
+ To: 97,
+ })
+
task := a.Job.TaskGroups[0].Tasks[0]
task.Env = map[string]string{
"taskEnvKey": "taskEnvVal",
@@ -402,41 +418,47 @@ func TestEnvironment_AllValues(t *testing.T) {
"node.attr.nomad.version": "0.5.0",
// Env
- "taskEnvKey": "taskEnvVal",
- "NOMAD_ADDR_http": "127.0.0.1:80",
- "NOMAD_PORT_http": "80",
- "NOMAD_IP_http": "127.0.0.1",
- "NOMAD_ADDR_https": "127.0.0.1:8080",
- "NOMAD_PORT_https": "443",
- "NOMAD_IP_https": "127.0.0.1",
- "NOMAD_HOST_PORT_http": "80",
- "NOMAD_HOST_PORT_https": "8080",
- "NOMAD_TASK_NAME": "web",
- "NOMAD_GROUP_NAME": "web",
- "NOMAD_ADDR_ssh_other": "192.168.0.100:1234",
- "NOMAD_ADDR_ssh_ssh": "192.168.0.100:22",
- "NOMAD_IP_ssh_other": "192.168.0.100",
- "NOMAD_IP_ssh_ssh": "192.168.0.100",
- "NOMAD_PORT_ssh_other": "1234",
- "NOMAD_PORT_ssh_ssh": "22",
- "NOMAD_CPU_LIMIT": "500",
- "NOMAD_DC": "dc1",
- "NOMAD_NAMESPACE": "default",
- "NOMAD_REGION": "global",
- "NOMAD_MEMORY_LIMIT": "256",
- "NOMAD_META_ELB_CHECK_INTERVAL": "30s",
- "NOMAD_META_ELB_CHECK_MIN": "3",
- "NOMAD_META_ELB_CHECK_TYPE": "http",
- "NOMAD_META_FOO": "bar",
- "NOMAD_META_OWNER": "armon",
- "NOMAD_META_elb_check_interval": "30s",
- "NOMAD_META_elb_check_min": "3",
- "NOMAD_META_elb_check_type": "http",
- "NOMAD_META_foo": "bar",
- "NOMAD_META_owner": "armon",
- "NOMAD_JOB_NAME": "my-job",
- "NOMAD_ALLOC_ID": a.ID,
- "NOMAD_ALLOC_INDEX": "0",
+ "taskEnvKey": "taskEnvVal",
+ "NOMAD_ADDR_http": "127.0.0.1:80",
+ "NOMAD_PORT_http": "80",
+ "NOMAD_IP_http": "127.0.0.1",
+ "NOMAD_ADDR_https": "127.0.0.1:8080",
+ "NOMAD_PORT_https": "443",
+ "NOMAD_IP_https": "127.0.0.1",
+ "NOMAD_HOST_PORT_http": "80",
+ "NOMAD_HOST_PORT_https": "8080",
+ "NOMAD_TASK_NAME": "web",
+ "NOMAD_GROUP_NAME": "web",
+ "NOMAD_ADDR_ssh_other": "192.168.0.100:1234",
+ "NOMAD_ADDR_ssh_ssh": "192.168.0.100:22",
+ "NOMAD_IP_ssh_other": "192.168.0.100",
+ "NOMAD_IP_ssh_ssh": "192.168.0.100",
+ "NOMAD_PORT_ssh_other": "1234",
+ "NOMAD_PORT_ssh_ssh": "22",
+ "NOMAD_CPU_LIMIT": "500",
+ "NOMAD_DC": "dc1",
+ "NOMAD_NAMESPACE": "default",
+ "NOMAD_REGION": "global",
+ "NOMAD_MEMORY_LIMIT": "256",
+ "NOMAD_META_ELB_CHECK_INTERVAL": "30s",
+ "NOMAD_META_ELB_CHECK_MIN": "3",
+ "NOMAD_META_ELB_CHECK_TYPE": "http",
+ "NOMAD_META_FOO": "bar",
+ "NOMAD_META_OWNER": "armon",
+ "NOMAD_META_elb_check_interval": "30s",
+ "NOMAD_META_elb_check_min": "3",
+ "NOMAD_META_elb_check_type": "http",
+ "NOMAD_META_foo": "bar",
+ "NOMAD_META_owner": "armon",
+ "NOMAD_JOB_NAME": "my-job",
+ "NOMAD_ALLOC_ID": a.ID,
+ "NOMAD_ALLOC_INDEX": "0",
+ "NOMAD_PORT_connect_proxy_testconnect": "9999",
+ "NOMAD_HOST_PORT_connect_proxy_testconnect": "9999",
+ "NOMAD_PORT_hostonly": "9998",
+ "NOMAD_HOST_PORT_hostonly": "9998",
+ "NOMAD_PORT_static": "97",
+ "NOMAD_HOST_PORT_static": "9997",
// 0.9 style env map
`env["taskEnvKey"]`: "taskEnvVal",
@@ -660,11 +682,17 @@ func TestEnvironment_AppendHostEnvvars(t *testing.T) {
func TestEnvironment_DashesInTaskName(t *testing.T) {
a := mock.Alloc()
task := a.Job.TaskGroups[0].Tasks[0]
- task.Env = map[string]string{"test-one-two": "three-four"}
+ task.Env = map[string]string{
+ "test-one-two": "three-four",
+ "NOMAD_test_one_two": "three-five",
+ }
envMap := NewBuilder(mock.Node(), a, task, "global").Build().Map()
- if envMap["test_one_two"] != "three-four" {
- t.Fatalf("Expected test_one_two=three-four in TaskEnv; found:\n%#v", envMap)
+ if envMap["test-one-two"] != "three-four" {
+ t.Fatalf("Expected test-one-two=three-four in TaskEnv; found:\n%#v", envMap)
+ }
+ if envMap["NOMAD_test_one_two"] != "three-five" {
+ t.Fatalf("Expected NOMAD_test_one_two=three-five in TaskEnv; found:\n%#v", envMap)
}
}
@@ -784,3 +812,38 @@ func TestEnvironment_Upstreams(t *testing.T) {
require.Equal(t, "127.0.0.1:1234", env["foo"])
require.Equal(t, "1234", env["bar"])
}
+
+func TestEnvironment_SetPortMapEnvs(t *testing.T) {
+ envs := map[string]string{
+ "foo": "bar",
+ "NOMAD_PORT_ssh": "2342",
+ }
+ ports := map[string]int{
+ "ssh": 22,
+ "http": 80,
+ }
+
+ envs = SetPortMapEnvs(envs, ports)
+
+ expected := map[string]string{
+ "foo": "bar",
+ "NOMAD_PORT_ssh": "22",
+ "NOMAD_PORT_http": "80",
+ }
+ require.Equal(t, expected, envs)
+}
+
+func TestEnvironment_TasklessBuilder(t *testing.T) {
+ node := mock.Node()
+ alloc := mock.Alloc()
+ alloc.Job.Meta["jobt"] = "foo"
+ alloc.Job.TaskGroups[0].Meta["groupt"] = "bar"
+ require := require.New(t)
+ var taskEnv *TaskEnv
+ require.NotPanics(func() {
+ taskEnv = NewBuilder(node, alloc, nil, "global").SetAllocDir("/tmp/alloc").Build()
+ })
+
+ require.Equal("foo", taskEnv.ReplaceEnv("${NOMAD_META_jobt}"))
+ require.Equal("bar", taskEnv.ReplaceEnv("${NOMAD_META_groupt}"))
+}
diff --git a/client/taskenv/services.go b/client/taskenv/services.go
new file mode 100644
index 000000000..74bf673b1
--- /dev/null
+++ b/client/taskenv/services.go
@@ -0,0 +1,64 @@
+package taskenv
+
+import (
+ "github.com/hashicorp/nomad/nomad/structs"
+)
+
+// InterpolateServices returns an interpolated copy of services and checks with
+// values from the task's environment.
+func InterpolateServices(taskEnv *TaskEnv, services []*structs.Service) []*structs.Service {
+ // Guard against not having a valid taskEnv. This can be the case if the
+ // PreKilling or Exited hook is run before Poststart.
+ if taskEnv == nil || len(services) == 0 {
+ return nil
+ }
+
+ interpolated := make([]*structs.Service, len(services))
+
+ for i, origService := range services {
+ // Create a copy as we need to reinterpolate every time the
+ // environment changes
+ service := origService.Copy()
+
+ for _, check := range service.Checks {
+ check.Name = taskEnv.ReplaceEnv(check.Name)
+ check.Type = taskEnv.ReplaceEnv(check.Type)
+ check.Command = taskEnv.ReplaceEnv(check.Command)
+ check.Args = taskEnv.ParseAndReplace(check.Args)
+ check.Path = taskEnv.ReplaceEnv(check.Path)
+ check.Protocol = taskEnv.ReplaceEnv(check.Protocol)
+ check.PortLabel = taskEnv.ReplaceEnv(check.PortLabel)
+ check.InitialStatus = taskEnv.ReplaceEnv(check.InitialStatus)
+ check.Method = taskEnv.ReplaceEnv(check.Method)
+ check.GRPCService = taskEnv.ReplaceEnv(check.GRPCService)
+ if len(check.Header) > 0 {
+ header := make(map[string][]string, len(check.Header))
+ for k, vs := range check.Header {
+ newVals := make([]string, len(vs))
+ for i, v := range vs {
+ newVals[i] = taskEnv.ReplaceEnv(v)
+ }
+ header[taskEnv.ReplaceEnv(k)] = newVals
+ }
+ check.Header = header
+ }
+ }
+
+ service.Name = taskEnv.ReplaceEnv(service.Name)
+ service.PortLabel = taskEnv.ReplaceEnv(service.PortLabel)
+ service.Tags = taskEnv.ParseAndReplace(service.Tags)
+ service.CanaryTags = taskEnv.ParseAndReplace(service.CanaryTags)
+
+ if len(service.Meta) > 0 {
+ meta := make(map[string]string, len(service.Meta))
+ for k, v := range service.Meta {
+ meta[k] = taskEnv.ReplaceEnv(v)
+ }
+ service.Meta = meta
+ }
+
+ interpolated[i] = service
+ }
+
+ return interpolated
+}
diff --git a/client/taskenv/services_test.go b/client/taskenv/services_test.go
new file mode 100644
index 000000000..88577d6de
--- /dev/null
+++ b/client/taskenv/services_test.go
@@ -0,0 +1,85 @@
+package taskenv
+
+import (
+ "testing"
+
+ "github.com/hashicorp/nomad/nomad/structs"
+ "github.com/stretchr/testify/require"
+)
+
+// TestInterpolateServices asserts that all service
+// and check fields are properly interpolated.
+func TestInterpolateServices(t *testing.T) {
+ t.Parallel()
+ services := []*structs.Service{
+ {
+ Name: "${name}",
+ PortLabel: "${portlabel}",
+ Tags: []string{"${tags}"},
+ Checks: []*structs.ServiceCheck{
+ {
+ Name: "${checkname}",
+ Type: "${checktype}",
+ Command: "${checkcmd}",
+ Args: []string{"${checkarg}"},
+ Path: "${checkstr}",
+ Protocol: "${checkproto}",
+ PortLabel: "${checklabel}",
+ InitialStatus: "${checkstatus}",
+ Method: "${checkmethod}",
+ Header: map[string][]string{
+ "${checkheaderk}": {"${checkheaderv}"},
+ },
+ },
+ },
+ },
+ }
+
+ env := &TaskEnv{
+ EnvMap: map[string]string{
+ "name": "name",
+ "portlabel": "portlabel",
+ "tags": "tags",
+ "checkname": "checkname",
+ "checktype": "checktype",
+ "checkcmd": "checkcmd",
+ "checkarg": "checkarg",
+ "checkstr": "checkstr",
+ "checkpath": "checkpath",
+ "checkproto": "checkproto",
+ "checklabel": "checklabel",
+ "checkstatus": "checkstatus",
+ "checkmethod": "checkmethod",
+ "checkheaderk": "checkheaderk",
+ "checkheaderv": "checkheaderv",
+ },
+ }
+
+ interpolated := InterpolateServices(env, services)
+
+ exp := []*structs.Service{
+ {
+ Name: "name",
+ PortLabel: "portlabel",
+ Tags: []string{"tags"},
+ Checks: []*structs.ServiceCheck{
+ {
+ Name: "checkname",
+ Type: "checktype",
+ Command: "checkcmd",
+ Args: []string{"checkarg"},
+ Path: "checkstr",
+ Protocol: "checkproto",
+ PortLabel: "checklabel",
+ InitialStatus: "checkstatus",
+ Method: "checkmethod",
+ Header: map[string][]string{
+ "checkheaderk": {"checkheaderv"},
+ },
+ },
+ },
+ },
+ }
+
+ require.Equal(t, exp, interpolated)
+}
diff --git a/client/testutil/rpc.go b/client/testutil/rpc.go
new file mode 100644
index 000000000..602d25977
--- /dev/null
+++ b/client/testutil/rpc.go
@@ -0,0 +1,86 @@
+package testutil
+
+import (
+ "fmt"
+ "io"
+ "net"
+ "strings"
+ "testing"
+ "time"
+
+ cstructs "github.com/hashicorp/nomad/client/structs"
+ "github.com/hashicorp/nomad/nomad/structs"
+ "github.com/stretchr/testify/require"
+ "github.com/ugorji/go/codec"
+)
+
+// StreamingRPC may be satisfied by client.Client or server.Server.
+type StreamingRPC interface {
+ StreamingRpcHandler(method string) (structs.StreamingRpcHandler, error)
+}
+
+// StreamingRPCErrorTestCase is a test case to be passed to the
+// assertStreamingRPCError func.
+type StreamingRPCErrorTestCase struct {
+ Name string
+ RPC string
+ Req interface{}
+ Assert func(error) bool
+}
+
+// AssertStreamingRPCError asserts a streaming RPC's error matches the given
+// assertion in the test case.
+func AssertStreamingRPCError(t *testing.T, s StreamingRPC, tc StreamingRPCErrorTestCase) {
+ handler, err := s.StreamingRpcHandler(tc.RPC)
+ require.NoError(t, err)
+
+ // Create a pipe
+ p1, p2 := net.Pipe()
+ defer p1.Close()
+ defer p2.Close()
+
+ errCh := make(chan error, 1)
+ streamMsg := make(chan *cstructs.StreamErrWrapper, 1)
+
+ // Start the handler
+ go handler(p2)
+
+ // Start the decoder
+ go func() {
+ decoder := codec.NewDecoder(p1, structs.MsgpackHandle)
+ for {
+ var msg cstructs.StreamErrWrapper
+ if err := decoder.Decode(&msg); err != nil {
+ if err == io.EOF || strings.Contains(err.Error(), "closed") {
+ return
+ }
+ errCh <- fmt.Errorf("error decoding: %v", err)
+ }
+
+ streamMsg <- &msg
+ }
+ }()
+
+ // Send the request
+ encoder := codec.NewEncoder(p1, structs.MsgpackHandle)
+ require.NoError(t, encoder.Encode(tc.Req))
+
+ timeout := time.After(5 * time.Second)
+
+ for {
+ select {
+ case <-timeout:
+ t.Fatal("timeout")
+ case err := <-errCh:
+ require.NoError(t, err)
+ case msg := <-streamMsg:
+ // Convert RpcError to error
+ var err error
+ if msg.Error != nil {
+ err = msg.Error
+ }
+ require.True(t, tc.Assert(err), "(%T) %s", msg.Error, msg.Error)
+ return
+ }
+ }
+}
diff --git a/client/vaultclient/vaultclient.go b/client/vaultclient/vaultclient.go
index 5e47358d3..df6e0f4a0 100644
--- a/client/vaultclient/vaultclient.go
+++ b/client/vaultclient/vaultclient.go
@@ -45,14 +45,6 @@ type VaultClient interface {
// StopRenewToken removes the token from the min-heap, stopping its
// renewal.
StopRenewToken(string) error
-
- // RenewLease renews a vault secret's lease and adds the lease
- // identifier to the min-heap for periodic renewal.
- RenewLease(string, int) (<-chan error, error)
-
- // StopRenewLease removes a secret's lease ID from the min-heap,
- // stopping its renewal.
- StopRenewLease(string) error
}
// Implementation of VaultClient interface to interact with vault and perform
@@ -325,44 +317,6 @@ func (c *vaultClient) RenewToken(token string, increment int) (<-chan error, err
return errCh, nil
}
-// RenewLease renews the supplied lease identifier for a supplied duration (in
-// seconds) and adds it to the min-heap so that it gets renewed periodically by
-// the renewal loop. Any error returned during renewal will be written to a
-// buffered channel and the channel is returned instead of an actual error.
-// This helps the caller be notified of a renewal failure asynchronously for
-// appropriate actions to be taken. The caller of this function need not have
-// to close the error channel.
-func (c *vaultClient) RenewLease(leaseId string, increment int) (<-chan error, error) {
- if leaseId == "" {
- err := fmt.Errorf("missing lease ID")
- return nil, err
- }
-
- if increment < 1 {
- err := fmt.Errorf("increment cannot be less than 1")
- return nil, err
- }
-
- // Create a buffered error channel
- errCh := make(chan error, 1)
-
- // Create a renewal request using the supplied lease and duration
- renewalReq := &vaultClientRenewalRequest{
- errCh: errCh,
- id: leaseId,
- increment: increment,
- }
-
- // Renew the secret and send any error to the dedicated error channel
- if err := c.renew(renewalReq); err != nil {
- c.logger.Error("error during renewal of lease", "error", err)
- metrics.IncrCounter([]string{"client", "vault", "renew_lease_error"}, 1)
- return nil, err
- }
-
- return errCh, nil
-}
-
// renew is a common method to handle renewal of both tokens and secret leases.
// It invokes a token renewal or a secret's lease renewal. If renewal is
// successful, min-heap is updated based on the duration after which it needs
@@ -558,12 +512,6 @@ func (c *vaultClient) StopRenewToken(token string) error {
return c.stopRenew(token)
}
-// StopRenewLease removes the item from the heap which represents the given
-// lease identifier.
-func (c *vaultClient) StopRenewLease(leaseId string) error {
- return c.stopRenew(leaseId)
-}
-
// stopRenew removes the given identifier from the heap and signals the renewal
// loop to compute the next best candidate for renewal.
func (c *vaultClient) stopRenew(id string) error {
diff --git a/client/vaultclient/vaultclient_testing.go b/client/vaultclient/vaultclient_testing.go
index ed99f4cc4..fea31a31d 100644
--- a/client/vaultclient/vaultclient_testing.go
+++ b/client/vaultclient/vaultclient_testing.go
@@ -111,10 +111,6 @@ func (vc *MockVaultClient) StopRenewToken(token string) error {
return nil
}
-func (vc *MockVaultClient) RenewLease(leaseId string, interval int) (<-chan error, error) {
- return nil, nil
-}
-func (vc *MockVaultClient) StopRenewLease(leaseId string) error { return nil }
func (vc *MockVaultClient) Start() {}
func (vc *MockVaultClient) Stop() {}
func (vc *MockVaultClient) GetConsulACL(string, string) (*vaultapi.Secret, error) { return nil, nil }
diff --git a/command/agent/agent.go b/command/agent/agent.go
index 475d7379b..7695d7dea 100644
--- a/command/agent/agent.go
+++ b/command/agent/agent.go
@@ -53,7 +53,7 @@ type Agent struct {
config *Config
configLock sync.Mutex
- logger log.Logger
+ logger log.InterceptLogger
httpLogger log.Logger
logOutput io.Writer
@@ -87,7 +87,7 @@ type Agent struct {
}
// NewAgent is used to create a new agent with the given configuration
-func NewAgent(config *Config, logger log.Logger, logOutput io.Writer, inmem *metrics.InmemSink) (*Agent, error) {
+func NewAgent(config *Config, logger log.InterceptLogger, logOutput io.Writer, inmem *metrics.InmemSink) (*Agent, error) {
a := &Agent{
config: config,
logOutput: logOutput,
@@ -278,7 +278,9 @@ func convertServerConfig(agentConfig *Config) (*nomad.Config, error) {
if gcInterval := agentConfig.Server.JobGCInterval; gcInterval != "" {
dur, err := time.ParseDuration(gcInterval)
if err != nil {
- return nil, err
+ return nil, fmt.Errorf("failed to parse job_gc_interval: %v", err)
+ } else if dur <= time.Duration(0) {
+ return nil, fmt.Errorf("job_gc_interval should be greater than 0s")
}
conf.JobGCInterval = dur
}
@@ -830,40 +832,6 @@ func (a *Agent) reservePortsForClient(conf *clientconfig.Config) error {
return nil
}
-// findLoopbackDevice iterates through all the interfaces on a machine and
-// returns the ip addr, mask of the loopback device
-func (a *Agent) findLoopbackDevice() (string, string, string, error) {
- var ifcs []net.Interface
- var err error
- ifcs, err = net.Interfaces()
- if err != nil {
- return "", "", "", err
- }
- for _, ifc := range ifcs {
- addrs, err := ifc.Addrs()
- if err != nil {
- return "", "", "", err
- }
- for _, addr := range addrs {
- var ip net.IP
- switch v := addr.(type) {
- case *net.IPNet:
- ip = v.IP
- case *net.IPAddr:
- ip = v.IP
- }
- if ip.IsLoopback() {
- if ip.To4() == nil {
- continue
- }
- return ifc.Name, ip.String(), addr.String(), nil
- }
- }
- }
-
- return "", "", "", fmt.Errorf("no loopback devices with IPV4 addr found")
-}
-
// Leave is used gracefully exit. Clients will inform servers
// of their departure so that allocations can be rescheduled.
func (a *Agent) Leave() error {
diff --git a/command/agent/agent_endpoint.go b/command/agent/agent_endpoint.go
index cc1564e69..2d25dc48b 100644
--- a/command/agent/agent_endpoint.go
+++ b/command/agent/agent_endpoint.go
@@ -1,16 +1,25 @@
package agent
import (
+ "bytes"
+ "context"
"encoding/json"
+ "fmt"
+ "io"
"net"
"net/http"
"sort"
+ "strconv"
"strings"
+ "github.com/docker/docker/pkg/ioutils"
+ log "github.com/hashicorp/go-hclog"
"github.com/hashicorp/nomad/acl"
+ cstructs "github.com/hashicorp/nomad/client/structs"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/serf/serf"
"github.com/mitchellh/copystructure"
+ "github.com/ugorji/go/codec"
)
type Member struct {
@@ -87,6 +96,18 @@ func (s *HTTPServer) AgentSelfRequest(resp http.ResponseWriter, req *http.Reques
self.Config.Vault.Token = ""
}
+ if self.Config != nil && self.Config.ACL != nil && self.Config.ACL.ReplicationToken != "" {
+ self.Config.ACL.ReplicationToken = ""
+ }
+
+ if self.Config != nil && self.Config.Consul != nil && self.Config.Consul.Token != "" {
+ self.Config.Consul.Token = ""
+ }
+
+ if self.Config != nil && self.Config.Telemetry != nil && self.Config.Telemetry.CirconusAPIToken != "" {
+ self.Config.Telemetry.CirconusAPIToken = ""
+ }
+
return self, nil
}
@@ -133,6 +154,155 @@ func (s *HTTPServer) AgentMembersRequest(resp http.ResponseWriter, req *http.Req
return out, nil
}
+func (s *HTTPServer) AgentMonitor(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
+ var secret string
+ s.parseToken(req, &secret)
+
+ // Check agent read permissions
+ if aclObj, err := s.agent.Server().ResolveToken(secret); err != nil {
+ return nil, err
+ } else if aclObj != nil && !aclObj.AllowAgentRead() {
+ return nil, structs.ErrPermissionDenied
+ }
+
+ // Get the provided loglevel.
+ logLevel := req.URL.Query().Get("log_level")
+ if logLevel == "" {
+ logLevel = "INFO"
+ }
+
+ if log.LevelFromString(logLevel) == log.NoLevel {
+ return nil, CodedError(400, fmt.Sprintf("Unknown log level: %s", logLevel))
+ }
+
+ logJSON := false
+ logJSONStr := req.URL.Query().Get("log_json")
+ if logJSONStr != "" {
+ parsed, err := strconv.ParseBool(logJSONStr)
+ if err != nil {
+ return nil, CodedError(400, fmt.Sprintf("Unknown option for log json: %v", err))
+ }
+ logJSON = parsed
+ }
+
+ plainText := false
+ plainTextStr := req.URL.Query().Get("plain")
+ if plainTextStr != "" {
+ parsed, err := strconv.ParseBool(plainTextStr)
+ if err != nil {
+ return nil, CodedError(400, fmt.Sprintf("Unknown option for plain: %v", err))
+ }
+ plainText = parsed
+ }
+
+ nodeID := req.URL.Query().Get("node_id")
+ // Build the request and parse the ACL token
+ args := cstructs.MonitorRequest{
+ NodeID: nodeID,
+ ServerID: req.URL.Query().Get("server_id"),
+ LogLevel: logLevel,
+ LogJSON: logJSON,
+ PlainText: plainText,
+ }
+
+ // if node and server were requested return error
+ if args.NodeID != "" && args.ServerID != "" {
+ return nil, CodedError(400, "Cannot target node and server simultaneously")
+ }
+
+ s.parse(resp, req, &args.QueryOptions.Region, &args.QueryOptions)
+
+ // Make the RPC
+ var handler structs.StreamingRpcHandler
+ var handlerErr error
+ if nodeID != "" {
+ // Determine the handler to use
+ useLocalClient, useClientRPC, useServerRPC := s.rpcHandlerForNode(nodeID)
+ if useLocalClient {
+ handler, handlerErr = s.agent.Client().StreamingRpcHandler("Agent.Monitor")
+ } else if useClientRPC {
+ handler, handlerErr = s.agent.Client().RemoteStreamingRpcHandler("Agent.Monitor")
+ } else if useServerRPC {
+ handler, handlerErr = s.agent.Server().StreamingRpcHandler("Agent.Monitor")
+ } else {
+ handlerErr = CodedError(400, "No local Node and node_id not provided")
+ }
+ } else {
+ // No node id we want to monitor this server
+ handler, handlerErr = s.agent.Server().StreamingRpcHandler("Agent.Monitor")
+ }
+
+ if handlerErr != nil {
+ return nil, CodedError(500, handlerErr.Error())
+ }
+ httpPipe, handlerPipe := net.Pipe()
+ decoder := codec.NewDecoder(httpPipe, structs.MsgpackHandle)
+ encoder := codec.NewEncoder(httpPipe, structs.MsgpackHandle)
+
+ ctx, cancel := context.WithCancel(req.Context())
+ go func() {
+ <-ctx.Done()
+ httpPipe.Close()
+ }()
+
+ // Create an output that gets flushed on every write
+ output := ioutils.NewWriteFlusher(resp)
+
+ // create an error channel to handle errors
+ errCh := make(chan HTTPCodedError, 2)
+
+ // stream response
+ go func() {
+ defer cancel()
+
+ // Send the request
+ if err := encoder.Encode(args); err != nil {
+ errCh <- CodedError(500, err.Error())
+ return
+ }
+
+ for {
+ select {
+ case <-ctx.Done():
+ errCh <- nil
+ return
+ default:
+ }
+
+ var res cstructs.StreamErrWrapper
+ if err := decoder.Decode(&res); err != nil {
+ errCh <- CodedError(500, err.Error())
+ return
+ }
+ decoder.Reset(httpPipe)
+
+ if err := res.Error; err != nil {
+ if err.Code != nil {
+ errCh <- CodedError(int(*err.Code), err.Error())
+ return
+ }
+ }
+
+ if _, err := io.Copy(output, bytes.NewReader(res.Payload)); err != nil {
+ errCh <- CodedError(500, err.Error())
+ return
+ }
+ }
+ }()
+
+ handler(handlerPipe)
+ cancel()
+ codedErr := <-errCh
+
+ if codedErr != nil &&
+ (codedErr == io.EOF ||
+ strings.Contains(codedErr.Error(), "closed") ||
+ strings.Contains(codedErr.Error(), "EOF")) {
+ codedErr = nil
+ }
+ return nil, codedErr
+}
+
func (s *HTTPServer) AgentForceLeaveRequest(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
if req.Method != "PUT" && req.Method != "POST" {
return nil, CodedError(405, ErrInvalidMethod)
diff --git a/command/agent/agent_endpoint_test.go b/command/agent/agent_endpoint_test.go
index 211cd74cf..572742fe0 100644
--- a/command/agent/agent_endpoint_test.go
+++ b/command/agent/agent_endpoint_test.go
@@ -4,10 +4,12 @@ import (
"bytes"
"encoding/json"
"fmt"
+ "io/ioutil"
"net"
"net/http"
"net/http/httptest"
"net/url"
+ "strings"
"testing"
"time"
@@ -22,45 +24,64 @@ import (
func TestHTTP_AgentSelf(t *testing.T) {
t.Parallel()
+ require := require.New(t)
+
httpTest(t, nil, func(s *TestAgent) {
// Make the HTTP request
req, err := http.NewRequest("GET", "/v1/agent/self", nil)
- if err != nil {
- t.Fatalf("err: %v", err)
- }
+ require.NoError(err)
respW := httptest.NewRecorder()
// Make the request
obj, err := s.Server.AgentSelfRequest(respW, req)
- if err != nil {
- t.Fatalf("err: %v", err)
- }
+ require.NoError(err)
// Check the job
self := obj.(agentSelf)
- if self.Config == nil {
- t.Fatalf("bad: %#v", self)
- }
- if len(self.Stats) == 0 {
- t.Fatalf("bad: %#v", self)
- }
+ require.NotNil(self.Config)
+ require.NotNil(self.Config.ACL)
+ require.NotEmpty(self.Stats)
// Check the Vault config
- if self.Config.Vault.Token != "" {
- t.Fatalf("bad: %#v", self)
- }
+ require.Empty(self.Config.Vault.Token)
// Assign a Vault token and require it is redacted.
s.Config.Vault.Token = "badc0deb-adc0-deba-dc0d-ebadc0debadc"
respW = httptest.NewRecorder()
obj, err = s.Server.AgentSelfRequest(respW, req)
- if err != nil {
- t.Fatalf("err: %v", err)
- }
+ require.NoError(err)
self = obj.(agentSelf)
- if self.Config.Vault.Token != "" {
- t.Fatalf("bad: %#v", self)
- }
+ require.Equal("", self.Config.Vault.Token)
+
+ // Assign a ReplicationToken token and require it is redacted.
+ s.Config.ACL.ReplicationToken = "badc0deb-adc0-deba-dc0d-ebadc0debadc"
+ respW = httptest.NewRecorder()
+ obj, err = s.Server.AgentSelfRequest(respW, req)
+ require.NoError(err)
+ self = obj.(agentSelf)
+ require.Equal("", self.Config.ACL.ReplicationToken)
+
+ // Check the Consul config
+ require.Empty(self.Config.Consul.Token)
+
+ // Assign a Consul token and require it is redacted.
+ s.Config.Consul.Token = "badc0deb-adc0-deba-dc0d-ebadc0debadc"
+ respW = httptest.NewRecorder()
+ obj, err = s.Server.AgentSelfRequest(respW, req)
+ require.NoError(err)
+ self = obj.(agentSelf)
+ require.Equal("", self.Config.Consul.Token)
+
+ // Check the Circonus config
+ require.Empty(self.Config.Telemetry.CirconusAPIToken)
+
+ // Assign a Consul token and require it is redacted.
+ s.Config.Telemetry.CirconusAPIToken = "badc0deb-adc0-deba-dc0d-ebadc0debadc"
+ respW = httptest.NewRecorder()
+ obj, err = s.Server.AgentSelfRequest(respW, req)
+ require.NoError(err)
+ self = obj.(agentSelf)
+ require.Equal("", self.Config.Telemetry.CirconusAPIToken)
})
}
@@ -230,6 +251,162 @@ func TestHTTP_AgentMembers_ACL(t *testing.T) {
})
}
+func TestHTTP_AgentMonitor(t *testing.T) {
+ t.Parallel()
+
+ httpTest(t, nil, func(s *TestAgent) {
+ // invalid log_json
+ {
+ req, err := http.NewRequest("GET", "/v1/agent/monitor?log_json=no", nil)
+ require.Nil(t, err)
+ resp := newClosableRecorder()
+
+ // Make the request
+ _, err = s.Server.AgentMonitor(resp, req)
+ if err.(HTTPCodedError).Code() != 400 {
+ t.Fatalf("expected 400 response, got: %v", resp.Code)
+ }
+ }
+
+ // unknown log_level
+ {
+ req, err := http.NewRequest("GET", "/v1/agent/monitor?log_level=unknown", nil)
+ require.Nil(t, err)
+ resp := newClosableRecorder()
+
+ // Make the request
+ _, err = s.Server.AgentMonitor(resp, req)
+ if err.(HTTPCodedError).Code() != 400 {
+ t.Fatalf("expected 400 response, got: %v", resp.Code)
+ }
+ }
+
+ // check for a specific log
+ {
+ req, err := http.NewRequest("GET", "/v1/agent/monitor?log_level=warn", nil)
+ require.Nil(t, err)
+ resp := newClosableRecorder()
+ defer resp.Close()
+
+ go func() {
+ _, err = s.Server.AgentMonitor(resp, req)
+ require.NoError(t, err)
+ }()
+
+ // send the same log until monitor sink is set up
+ maxLogAttempts := 10
+ tried := 0
+ testutil.WaitForResult(func() (bool, error) {
+ if tried < maxLogAttempts {
+ s.Server.logger.Warn("log that should be sent")
+ tried++
+ }
+
+ got := resp.Body.String()
+ want := `{"Data":"`
+ if strings.Contains(got, want) {
+ return true, nil
+ }
+
+ return false, fmt.Errorf("missing expected log, got: %v, want: %v", got, want)
+ }, func(err error) {
+ require.Fail(t, err.Error())
+ })
+ }
+
+ // plain param set to true
+ {
+ req, err := http.NewRequest("GET", "/v1/agent/monitor?log_level=debug&plain=true", nil)
+ require.Nil(t, err)
+ resp := newClosableRecorder()
+ defer resp.Close()
+
+ go func() {
+ _, err = s.Server.AgentMonitor(resp, req)
+ require.NoError(t, err)
+ }()
+
+ // send the same log until monitor sink is set up
+ maxLogAttempts := 10
+ tried := 0
+ testutil.WaitForResult(func() (bool, error) {
+ if tried < maxLogAttempts {
+ s.Server.logger.Debug("log that should be sent")
+ tried++
+ }
+
+ got := resp.Body.String()
+ want := `[DEBUG] http: log that should be sent`
+ if strings.Contains(got, want) {
+ return true, nil
+ }
+
+ return false, fmt.Errorf("missing expected log, got: %v, want: %v", got, want)
+ }, func(err error) {
+ require.Fail(t, err.Error())
+ })
+ }
+
+ // stream logs for a given node
+ {
+ req, err := http.NewRequest("GET", "/v1/agent/monitor?log_level=warn&node_id="+s.client.NodeID(), nil)
+ require.Nil(t, err)
+ resp := newClosableRecorder()
+ defer resp.Close()
+
+ go func() {
+ _, err = s.Server.AgentMonitor(resp, req)
+ require.NoError(t, err)
+ }()
+
+ // send the same log until monitor sink is set up
+ maxLogAttempts := 10
+ tried := 0
+ out := ""
+ testutil.WaitForResult(func() (bool, error) {
+ if tried < maxLogAttempts {
+ s.Server.logger.Debug("log that should not be sent")
+ s.Server.logger.Warn("log that should be sent")
+ tried++
+ }
+ output, err := ioutil.ReadAll(resp.Body)
+ if err != nil {
+ return false, err
+ }
+
+ out += string(output)
+ want := `{"Data":"`
+ if strings.Contains(out, want) {
+ return true, nil
+ }
+
+ return false, fmt.Errorf("missing expected log, got: %v, want: %v", out, want)
+ }, func(err error) {
+ require.Fail(t, err.Error())
+ })
+ }
+ })
+}
+
+type closableRecorder struct {
+ *httptest.ResponseRecorder
+ closer chan bool
+}
+
+func newClosableRecorder() *closableRecorder {
+ r := httptest.NewRecorder()
+ closer := make(chan bool)
+ return &closableRecorder{r, closer}
+}
+
+func (r *closableRecorder) Close() {
+ close(r.closer)
+}
+
+func (r *closableRecorder) CloseNotify() <-chan bool {
+ return r.closer
+}
+
func TestHTTP_AgentForceLeave(t *testing.T) {
t.Parallel()
httpTest(t, nil, func(s *TestAgent) {
diff --git a/command/agent/agent_test.go b/command/agent/agent_test.go
index 27b09a895..0cdffa24a 100644
--- a/command/agent/agent_test.go
+++ b/command/agent/agent_test.go
@@ -162,7 +162,7 @@ func TestAgent_ServerConfig(t *testing.T) {
if err := conf.normalizeAddrs(); err != nil {
t.Fatalf("error normalizing config: %v", err)
}
- out, err = a.serverConfig()
+ _, err = a.serverConfig()
if err == nil || !strings.Contains(err.Error(), "unknown unit") {
t.Fatalf("expected unknown unit error, got: %#v", err)
}
@@ -172,24 +172,36 @@ func TestAgent_ServerConfig(t *testing.T) {
t.Fatalf("error normalizing config: %v", err)
}
out, err = a.serverConfig()
+ if err != nil {
+ t.Fatalf("error getting server config: %s", err)
+ }
if threshold := out.NodeGCThreshold; threshold != time.Second*10 {
t.Fatalf("expect 10s, got: %s", threshold)
}
conf.Server.HeartbeatGrace = 37 * time.Second
out, err = a.serverConfig()
+ if err != nil {
+ t.Fatalf("error getting server config: %s", err)
+ }
if threshold := out.HeartbeatGrace; threshold != time.Second*37 {
t.Fatalf("expect 37s, got: %s", threshold)
}
conf.Server.MinHeartbeatTTL = 37 * time.Second
out, err = a.serverConfig()
+ if err != nil {
+ t.Fatalf("error getting server config: %s", err)
+ }
if min := out.MinHeartbeatTTL; min != time.Second*37 {
t.Fatalf("expect 37s, got: %s", min)
}
conf.Server.MaxHeartbeatsPerSecond = 11.0
out, err = a.serverConfig()
+ if err != nil {
+ t.Fatalf("error getting server config: %s", err)
+ }
if max := out.MaxHeartbeatsPerSecond; max != 11.0 {
t.Fatalf("expect 11, got: %v", max)
}
diff --git a/command/agent/alloc_endpoint_test.go b/command/agent/alloc_endpoint_test.go
index 6d9f3fa64..c8092b000 100644
--- a/command/agent/alloc_endpoint_test.go
+++ b/command/agent/alloc_endpoint_test.go
@@ -346,7 +346,7 @@ func TestHTTP_AllocRestart_ACL(t *testing.T) {
respW := httptest.NewRecorder()
_, err = s.Server.ClientAllocRequest(respW, req)
require.NotNil(err)
- require.Equal(err.Error(), structs.ErrPermissionDenied.Error())
+ require.True(structs.IsErrUnknownAllocation(err), "(%T) %v", err, err)
}
// Try request with an invalid token and expect it to fail
@@ -360,7 +360,7 @@ func TestHTTP_AllocRestart_ACL(t *testing.T) {
setToken(req, token)
_, err = s.Server.ClientAllocRequest(respW, req)
require.NotNil(err)
- require.Equal(err.Error(), structs.ErrPermissionDenied.Error())
+ require.True(structs.IsErrUnknownAllocation(err), "(%T) %v", err, err)
}
// Try request with a valid token
@@ -376,7 +376,7 @@ func TestHTTP_AllocRestart_ACL(t *testing.T) {
setToken(req, token)
_, err = s.Server.ClientAllocRequest(respW, req)
require.NotNil(err)
- require.True(structs.IsErrUnknownAllocation(err))
+ require.True(structs.IsErrUnknownAllocation(err), "(%T) %v", err, err)
}
// Try request with a management token
@@ -523,7 +523,7 @@ func TestHTTP_AllocStats_ACL(t *testing.T) {
respW := httptest.NewRecorder()
_, err := s.Server.ClientAllocRequest(respW, req)
require.NotNil(err)
- require.Equal(err.Error(), structs.ErrPermissionDenied.Error())
+ require.True(structs.IsErrUnknownAllocation(err), "(%T) %v", err, err)
}
// Try request with an invalid token and expect failure
@@ -533,7 +533,7 @@ func TestHTTP_AllocStats_ACL(t *testing.T) {
setToken(req, token)
_, err := s.Server.ClientAllocRequest(respW, req)
require.NotNil(err)
- require.Equal(err.Error(), structs.ErrPermissionDenied.Error())
+ require.True(structs.IsErrUnknownAllocation(err), "(%T) %v", err, err)
}
// Try request with a valid token
@@ -545,7 +545,7 @@ func TestHTTP_AllocStats_ACL(t *testing.T) {
setToken(req, token)
_, err := s.Server.ClientAllocRequest(respW, req)
require.NotNil(err)
- require.True(structs.IsErrUnknownAllocation(err))
+ require.True(structs.IsErrUnknownAllocation(err), "(%T) %v", err, err)
}
// Try request with a management token
@@ -812,7 +812,7 @@ func TestHTTP_AllocGC_ACL(t *testing.T) {
respW := httptest.NewRecorder()
_, err := s.Server.ClientAllocRequest(respW, req)
require.NotNil(err)
- require.Equal(err.Error(), structs.ErrPermissionDenied.Error())
+ require.True(structs.IsErrUnknownAllocation(err), "(%T) %v", err, err)
}
// Try request with an invalid token and expect failure
@@ -822,7 +822,7 @@ func TestHTTP_AllocGC_ACL(t *testing.T) {
setToken(req, token)
_, err := s.Server.ClientAllocRequest(respW, req)
require.NotNil(err)
- require.Equal(err.Error(), structs.ErrPermissionDenied.Error())
+ require.True(structs.IsErrUnknownAllocation(err), "(%T) %v", err, err)
}
// Try request with a valid token
@@ -834,7 +834,7 @@ func TestHTTP_AllocGC_ACL(t *testing.T) {
setToken(req, token)
_, err := s.Server.ClientAllocRequest(respW, req)
require.NotNil(err)
- require.True(structs.IsErrUnknownAllocation(err))
+ require.True(structs.IsErrUnknownAllocation(err), "(%T) %v", err, err)
}
// Try request with a management token
diff --git a/command/agent/bindata_assetfs.go b/command/agent/bindata_assetfs.go
index ad3308ba2..2a83585b5 100644
--- a/command/agent/bindata_assetfs.go
+++ b/command/agent/bindata_assetfs.go
@@ -1,9 +1,9 @@
// Code generated by go-bindata.
// sources:
// ui/dist/assets/auto-import-fastboot-d41d8cd98f00b204e9800998ecf8427e.js
-// ui/dist/assets/nomad-ui-80bd290f31e717fefbf81265e9fd5591.css
-// ui/dist/assets/nomad-ui-b1d9a065040a9f727f900c02bfb30b88.js
-// ui/dist/assets/vendor-1192528ac070501feaf347024c2cae41.js
+// ui/dist/assets/nomad-ui-2ffef17efbbc4361902d6cc1d42ce2b8.css
+// ui/dist/assets/nomad-ui-3f5aade8a94ca946d42dfb0ab70ffee0.js
+// ui/dist/assets/vendor-34c674f94f8ed54c9c302f718969513f.js
// ui/dist/assets/vendor-74b43ac401038fb6d346e85abd3bb536.css
// ui/dist/crossdomain.xml
// ui/dist/ember-fetch/fetch-fastboot-5e5d008c8b65b0ac116f7635d0c6c6b9.js
@@ -108,62 +108,62 @@ func distAssetsAutoImportFastbootD41d8cd98f00b204e9800998ecf8427eJs() (*asset, e
return a, nil
}
-var _distAssetsNomadUi80bd290f31e717fefbf81265e9fd5591Css = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xbd\xdd\x8e\x33\x3b\x92\x20\xf6\x2a\xb9\xa7\x71\x80\xaf\xfa\x48\xea\xd4\x6f\x55\x49\x98\x83\xb1\x67\xb1\xeb\x05\x76\x6d\xc0\xb3\x0b\xec\xa0\xd1\x17\x29\x25\x55\xca\x39\xa9\x4c\x4d\x66\xea\xab\xaa\xa3\x2d\xc3\x57\x6b\xf8\xd6\x8f\xe0\x6b\xdf\xfb\xc2\x77\x7e\x94\x7d\x12\x23\xf9\x97\x0c\x32\x82\x64\xaa\xea\xeb\xf6\xd4\xf4\xf9\xaa\x92\xf1\x47\x32\x18\x0c\x92\xc1\xe0\xdf\x1f\x4e\x59\xd3\xb2\x2e\xf9\xe9\x3f\xfd\xc7\x7f\x33\x7d\xfa\x69\x37\xdb\x5f\xcf\x17\xd6\x4c\x9b\xe2\xe5\xd4\x4d\x66\xd5\xf5\xbc\x67\xcd\xed\x9c\x35\x2f\x45\x25\x3e\x6e\xe7\xb3\x75\xc3\xce\x1f\xfb\x3a\x7f\x9f\x1c\xea\x9c\xdd\x8e\x75\xd5\x4d\x5f\x19\x2f\x5c\xa5\xe9\x47\xd6\x74\xc5\xa1\x64\x93\xac\x2d\x72\x36\x39\x16\x2f\xd7\x86\x4d\x8e\x75\xdd\xb1\x66\x72\x62\x59\xde\xff\xf3\xd2\xd4\xd7\xcb\xe4\xd4\x4c\x5a\x76\xe8\x8a\xba\xba\xe5\x45\x7b\x29\xb3\xf7\xed\xbe\xac\x0f\xbf\x7d\x64\xd7\xbc\xa8\x27\xec\xbc\x67\xf9\xa4\x38\xbf\x4c\xea\xfd\x3f\xb3\x43\x37\xf9\x5e\xe4\xac\xbe\x9d\xb3\xb7\xe9\x6b\x91\x77\xa7\xed\x3c\x4d\x7f\xfe\xe8\x65\x98\x5c\x1a\x76\xdb\x67\x87\xdf\x7a\xba\x55\x3e\x3d\xd4\x65\xdd\x6c\xff\x70\x5c\xf7\x3f\x42\xd4\x1e\x42\x7e\x4e\xb3\xfe\xe7\x63\x76\xa8\xab\x8e\x55\x5d\x72\x69\x04\x81\xd7\xba\xc9\xa7\xaf\x4d\x76\xd9\x56\x75\x73\xce\xca\x8f\x2c\x69\xbb\xa6\xae\x5e\xfa\xd2\x84\xd7\x55\x50\x38\x5c\x9b\x86\x55\xdd\x3f\xf4\x7f\x7c\x48\x90\x2e\xdb\x97\x2c\xe9\x4e\x8a\xc9\x72\xd3\xff\x7c\xcc\xf6\xd7\xae\xab\xab\x49\x2f\xc3\xad\x2c\x2a\x36\x3d\x31\xd5\x8c\xba\x30\xbb\x1d\xae\x4d\x5b\x37\xdb\x4b\x5d\x54\x1d\x6b\x54\x41\x3b\x3b\x65\xed\x34\xcb\xf3\xba\x6a\x13\xf9\x6d\x56\xb4\xd3\x53\xfd\x9d\x35\x2c\x9f\x78\xc0\xb6\x1c\x66\x32\x3b\x16\xac\xcc\x41\x79\x5f\xeb\xa6\x2e\x51\x7a\x41\xe8\x08\xb2\x45\x75\xb9\x76\xb1\x54\x39\x70\x04\xd1\x96\x95\xec\xd0\x25\xe2\x9f\x58\xe2\x00\x49\x30\xb9\xfd\x3e\x2d\xaa\x9c\xbd\x6d\x17\x1f\x46\xfd\x3b\xf6\xd6\x2b\x7b\xdd\x15\xc7\xe2\x90\xf5\xfa\x98\x64\xdb\xaa\xee\xbe\x49\x98\x87\x49\x36\xeb\xb2\x17\x49\xa2\x87\x9e\xe6\xec\x50\x37\x1c\x74\x7b\xad\x72\xd6\xf4\x5d\x2b\x14\xad\xff\xcf\xaf\xb3\x5e\x77\x9b\xe9\xf7\x82\xbd\x4e\x4e\xdd\xb9\xbc\xa9\x5e\x4f\xd3\x9f\x77\x86\xf2\xaa\xf1\x56\xb2\x63\xa7\x86\x59\xff\xbb\x1a\x65\xbd\x74\x59\xdb\xd6\x87\x22\xeb\x8a\xef\x4c\x81\x74\xf5\x65\x3b\x9d\x3d\xae\xd9\xf9\xe3\x4f\x7f\xfc\x57\xc9\xfe\x5a\x9e\xb3\x59\x51\x27\xdf\xd3\xd9\x66\x36\x4f\xfe\x4b\xf2\x1f\xfe\xdd\x7f\x4c\xfe\x7d\x71\x60\x55\xcb\x92\xff\x92\xbc\x14\xdd\xe9\xba\x9f\x1d\xea\xf3\x9f\xfe\xf9\xa5\x3b\x9d\xdb\x3f\x71\x8c\xe4\x8f\x7f\xfa\xfb\xdf\xd8\xfb\xb1\xc9\xce\xac\x4d\xda\x4b\x51\xfd\x77\x7c\xf8\xdc\x8e\x4d\x7d\xbe\x75\x4d\x56\xb5\xc7\xba\x39\x6f\x9b\xba\xcb\x3a\xf6\x2d\x7d\xf8\xe8\x6a\xf7\xf3\x72\xfd\x9c\xb3\x97\x87\x0f\x2e\xc9\xb9\xa8\x8a\x86\xb5\xac\x9b\x1d\xda\xb6\x17\x27\x9d\x2d\x22\xc4\x81\x68\x7f\xfc\x13\xb7\x02\xff\x72\xad\x3b\xc6\x9b\x73\x92\xe7\x93\xbc\x9c\xe4\xdd\x84\xf7\x76\xcb\x3a\x65\x56\x4e\xf3\xc9\x69\x31\x39\x2d\x27\xa7\xd5\xe4\xb4\x9e\x9c\x36\xbd\x4d\xe9\x1b\x7c\x52\xf0\x6a\x4d\x4a\xf6\xc2\xaa\x7c\x52\x16\x93\xba\x9c\x5c\xfa\x81\x3c\xe9\xfb\x2f\x6b\x58\x36\xb9\x96\xb2\x3d\xb7\xe9\xee\x92\xe5\x79\x51\xbd\x6c\xd3\x0f\x87\xa4\x30\x70\x6d\xf1\x3b\x13\xdd\x67\xdb\xbb\x6b\x79\x2b\x8b\xb6\x9b\xb6\xdd\x7b\xc9\xb6\x55\xdd\x2b\x82\x18\xd7\x5c\xbb\x27\x42\xff\x34\x5b\xcd\xf3\x83\x2b\xc6\xbe\x7e\xeb\x69\xf7\xbc\xf7\x75\x93\xb3\x66\xba\xaf\xdf\x76\x88\x2d\x3b\x1e\x77\x86\x20\xab\xcb\xdb\x6e\x7a\xae\x7f\x9f\xd6\xed\xdb\x54\x7c\x3f\xd7\x75\x77\xea\xe9\xbc\x34\xd9\x7b\x7b\xc8\x4a\xb6\x9b\xbe\xb2\xfd\x6f\x45\x67\x03\x64\x55\x57\x64\x65\x91\xb5\x2c\xdf\x9d\x8b\x4a\x5a\xd3\x65\x9a\x5e\xde\x76\xbd\x8a\x1f\xcb\xfa\x75\xfa\xb6\x3d\x15\x79\xce\xaa\xe1\xcb\xfb\xb6\x3d\x34\x75\x59\xee\xf8\x08\x68\x58\xaf\xf7\x3d\xb9\xfa\xd2\x15\xe7\xe2\x77\xf6\xef\xd9\x4b\xb1\x2f\xca\xa2\x7b\x17\x10\xbd\xa4\xd3\x2c\xff\xe7\x6b\x2b\x14\xff\xe3\x8f\x93\x6d\x76\xec\xa7\x81\xed\x9e\x1d\xeb\xde\x64\x0f\x95\x2f\xaa\x13\x6b\x8a\xee\x43\x8e\x9c\x7d\xd6\x16\x87\x69\xde\xd4\x97\xbc\x7e\xad\x26\xe8\xd7\xa9\x34\xe0\xfe\xd2\xe4\x8f\xaa\xfc\x52\xbf\xb2\x66\x2a\xba\x43\x83\x25\x7f\xc4\xbb\xe0\x43\x28\xd0\x4d\x7c\xd9\xa6\x1f\xdc\xc0\xcb\x3f\xfb\x4e\x29\xb3\x4b\xcb\xb6\xea\x97\x9d\x2c\x68\x2f\xd9\x41\xe8\x51\x97\x4f\xba\xd3\x4d\xeb\x95\x68\x92\xac\x2c\x5e\xaa\x6d\x3f\xc2\xa5\xb1\xf0\x29\x0a\xef\xb5\x63\x76\x2e\xca\xf7\xed\x34\xbb\x5c\x4a\x36\x6d\xdf\xdb\x8e\x9d\x27\xff\x7d\x59\x54\xbf\xfd\x87\xec\xf0\x8f\xfc\xcf\x7f\x53\x57\xdd\xe4\xa7\x7f\x64\x2f\x35\x4b\xfe\xd3\xbf\xfb\x69\xf2\x3f\xd7\xfb\xba\xab\x27\xff\xd3\xdb\xfb\x0b\xab\xa6\xff\x98\x55\xed\xe4\x3f\xed\xaf\x55\x77\x9d\xfc\x43\x56\xf5\xa4\xcb\x72\xf2\xd3\xff\xc0\xca\xef\xac\x2b\x0e\x59\xf2\x3f\xb2\x2b\xfb\x69\xd2\x66\x55\x3b\x6d\x59\x53\x1c\x87\x19\x95\x52\xb0\xec\xda\xd5\xa4\x6e\xf5\x65\xa6\xe4\xe7\xba\xaa\xfb\x56\x11\xe6\xd1\x1c\x4c\xbd\x81\xeb\x07\x64\x7b\xce\xca\xd2\x28\x98\x3d\x71\xcb\x76\x6a\x90\x29\x3d\xdf\xf7\x3f\xb2\xb5\xf9\x60\xdb\x29\xd3\x7a\x79\xdb\xc9\xa1\x25\x8c\x67\x92\x7e\x14\xe7\x17\x65\x79\x7b\xb9\x3e\x78\x3b\xff\xb9\x7b\xbf\xb0\xbf\x3b\x9c\xd8\xe1\xb7\x7d\xfd\xf6\x97\x89\xf1\xb1\xc9\xf2\xa2\xfe\xcb\xed\x3b\xeb\x5d\x98\xac\x94\xdd\xb5\xcf\x5a\xc6\xed\x7b\x7b\xc9\x2a\x29\x27\x1f\xeb\x52\x67\x81\x45\x50\x7a\x2c\xdc\x02\xe0\x1c\x3d\xa6\xe9\x07\x6f\x56\xd9\x72\x7a\x60\x89\x61\xd5\xb7\x5e\x57\x5f\x0f\x27\x73\x0c\xf2\xe6\x54\x4a\x34\x9f\x2d\x78\xc5\x44\xfd\x76\xaf\xa7\xa2\x63\x5c\xe3\xd8\xf6\xd2\xb0\x0f\xed\xa5\x38\xcd\xc6\x8d\xf6\x25\xeb\x9d\x16\xd3\x88\xb0\xb3\x61\xf7\x66\xfb\xfa\x4d\x79\x14\x98\x2f\x75\x3c\x7e\x48\x1f\x27\x1f\x9c\x1d\x4b\xa9\x77\x56\xcb\x75\xf5\x85\x4f\x61\x87\x92\x65\xcd\xb1\x78\x13\xc3\xff\xc6\xff\xdc\xee\xeb\xee\xb4\x93\x83\x74\xfb\x53\xf2\xd3\x4e\xf9\x80\x9c\x3a\xc7\xbb\x5c\xcb\x92\xe5\x62\x76\x3c\x96\x75\xd6\x71\x2e\xff\xaa\x38\x5f\xea\xa6\xcb\xaa\xce\x04\xe2\xde\xa9\x84\xe2\xbf\x5b\x60\x87\xb2\xb8\x5c\x58\x7e\x53\x8d\x2b\xcd\x9b\x09\x65\x3a\x84\xb3\x73\x9d\x67\xe5\xf4\x90\x35\xf9\x94\x2b\x6e\xa8\xd7\x38\x93\xbe\xb0\xcc\xde\x6f\xfb\xba\xeb\xea\xf3\x36\xdd\xf1\xc9\x3c\xdd\x5d\xea\xb6\xe0\xce\x42\xb6\x6f\xeb\xf2\xda\xb1\x9d\x70\xa6\xd3\x5d\x3f\x95\xa7\x1c\x97\x9b\xcb\xb9\x31\x0e\x96\x0d\x3b\x5b\x95\xe0\x30\x0b\x03\x66\xc1\x55\x01\x83\x5a\x9a\x50\x04\xcc\xca\x1c\x8e\x33\x8a\xdf\x1a\x40\xcd\x29\x86\x1b\x6b\x6c\x63\x30\x8f\x60\x98\x5b\x94\xfe\xfe\xcc\xf2\x22\x4b\xda\x43\xc3\x58\x95\x64\x55\x9e\x7c\x1b\x7c\xfd\xc7\xcd\xd3\xe5\xed\xe1\x36\x34\xd4\xf4\x5c\xef\x8b\x92\xc5\xb4\x97\x0b\xea\x69\x36\x04\x98\x6a\x3d\x17\xd4\xd3\x88\x18\x30\xdd\x96\x08\x34\xd5\xa4\x2e\xa8\xd3\xb2\xdc\x3f\xe6\x63\xf5\xc0\xfa\x05\x06\xcb\x15\x92\x31\x80\x45\x91\x81\x85\x76\x88\x76\x17\x1e\x37\xcf\x97\xb7\x87\xc9\xa5\x29\xaa\xce\xec\x16\x3e\x7a\xbb\xa8\x6e\x71\x40\x7d\xdd\xe2\x02\x93\xdd\xe2\x80\xfa\xba\x05\x01\xf6\x74\x8b\x0b\x4d\x76\x8b\x03\x1a\xd3\x2d\x12\x69\x74\xb7\x18\x6b\xe2\xc5\xd2\x1a\x28\xdc\x3c\xc5\x75\x88\x05\xe9\xed\x0f\x1b\x96\xee\x0e\x0b\xd2\xdb\x1b\x0e\xac\xaf\x33\x6c\x60\xba\x2f\x2c\xc8\xa8\xae\xe0\x38\xf7\x0f\x90\x79\xba\x58\x59\x3d\x91\xb3\xf6\xb7\xae\xbe\x44\xf5\x85\x0b\xeb\xeb\x0d\x04\x9a\xec\x0f\x17\xd6\xd7\x23\x18\xb4\xa7\x4f\x10\x70\xb2\x57\x5c\xd8\x98\x7e\x51\x58\xde\x9e\x71\xf1\xbc\xf0\x11\x96\x8e\x1c\x68\xd4\x20\x9e\xd6\x55\xf9\xfe\x79\xfd\x71\xf8\x2e\xe6\x6b\x82\xaf\x6c\x99\x4f\x33\x5e\xcc\x37\x96\xe2\xbe\x16\x39\x13\xc0\x51\xba\x8b\x82\xfb\xd4\x17\x47\x20\x35\x18\x05\xf7\x29\x31\x81\xe0\xd1\x63\x1c\x83\x54\x65\x14\x3c\x46\x9b\x0d\xc4\x4f\xf7\x98\xa3\x2a\xab\xf4\x91\x50\x95\x81\xed\xa7\xb5\x65\x95\xda\x9e\xd9\xf1\x5a\x96\xa7\x3c\x4a\x53\x1c\x50\x9f\x96\xb8\xc0\xa4\x86\x38\xa0\x3e\xed\x40\x80\x3d\x9a\xe1\x42\x93\x5a\xe1\x80\xc6\x68\x84\x44\xf2\xf5\xc8\x80\xf5\xcf\xd7\xb6\x2b\x8e\x05\x8a\x26\xca\xde\x71\xb3\xa8\x11\xfd\x18\x51\x3e\x39\x22\x8d\xeb\x5e\x22\xd2\x8c\xf0\x2f\x11\x16\xae\xab\x74\x1f\x8b\xb0\x61\xb7\x79\x3a\x43\x26\x92\x71\x1c\x0b\xdb\xed\x18\x5b\x2b\xed\x77\x20\xc4\x91\xb9\xf3\x4e\xf2\xe1\x69\xc9\xe1\x7a\x6f\xb3\xb9\x13\x13\xc2\x03\xb7\xa3\x77\x72\x08\x1b\x52\x8c\x71\x44\xfd\x06\x02\x25\x3b\x76\x3e\x5c\x6b\xa3\xc3\xc2\xf4\x40\x8e\x1b\xb1\x5c\x0c\x77\xb0\xda\xdc\xef\x19\xa9\x9c\xb4\x3b\x48\xef\x20\x1d\x1e\x3e\x06\xaf\x60\x4b\x8e\x1c\x99\x82\xb4\x3d\x28\x47\xd5\xc2\x1d\x91\x9c\x28\x32\x18\xef\x21\x1b\x1e\x89\x26\xb7\xbb\x9a\xc7\x33\x02\x2d\x3d\xbe\x9f\xb2\x72\x23\x20\x65\x77\x56\xb3\x77\x00\x35\x3c\xdf\x51\x43\x10\xec\xcd\x40\x1b\xc5\x07\xcb\x37\x0e\xb3\x4b\xd1\x65\x65\xf1\xbb\x9a\x2b\x87\x23\xb0\xa1\xc8\xc2\x29\xeb\x57\xd6\x1c\xb2\x96\xd9\x18\xba\xc0\x42\xb8\x5e\x2e\x38\x82\x2e\x00\x75\x66\x59\x5e\x54\x2f\x93\xd9\x99\x55\xd7\x69\x99\xed\x59\x39\xe1\x27\x94\x55\xdd\x7d\xdb\xd7\xf9\xfb\x03\x49\xc6\xa8\x3d\xdf\x3f\xbe\x0d\xfb\xbb\x06\x87\xcc\x82\xda\x1e\xeb\xc3\xb5\x9d\x38\x9f\xc5\x89\xa8\x24\xc1\x36\xfd\x0f\xda\x37\xfb\x32\x3b\xfc\x06\xcf\xdf\x71\x6e\x1c\xd0\xe5\x26\x3e\x03\x6e\x69\x9a\xe2\x86\x95\xf7\x29\x88\x00\xc0\x59\x71\x40\x97\x95\xf8\x0c\x58\x89\x43\x07\x94\x5b\x9e\x35\xba\x5e\x8b\xe5\x0a\xe7\xd4\x03\xb9\x8c\xf8\x57\xc0\x67\x3e\x9f\x67\x8b\x05\xca\xe7\xd2\x14\xe7\xac\x79\xd7\xac\xd6\xfb\xec\x69\x8e\x73\x93\xa0\x2e\x43\x55\x00\x79\xe6\x4f\xc7\xcd\x92\x68\xc9\x4a\xd7\x6d\xbe\xde\x2c\x29\x0d\xe9\xe1\xb0\x76\xac\x9c\x1e\x5b\xed\xd9\x1c\x65\x55\x54\xc7\x3a\x86\x55\x0f\xe7\xb2\xe2\x5f\x63\x59\xb5\xd7\xc3\x81\xb5\xad\x6e\x49\xb6\x4f\x97\xcf\x38\x37\x09\xea\x32\x54\x05\x80\xe7\x62\xf9\xf4\xb4\x38\xa0\x3c\x5f\xb3\xa6\x2a\xaa\x17\xad\x95\xd9\x13\x5b\x2c\x89\xe1\x26\x40\x91\x01\x27\x0b\xe0\x90\x5b\x3f\xae\xd2\x35\xa1\x99\xd5\xcb\x00\x78\x78\x5a\xa5\xb4\x7a\xf6\x90\x98\x82\xf2\xef\x80\x61\x96\x2e\x97\x8b\x67\x7a\x8c\x4f\xf7\x85\x6e\xda\xf9\xa2\xff\xf1\xc0\x76\x46\xe3\xad\xfa\x1f\x14\xf6\xa5\x61\xef\x7c\xb0\x0c\xd0\x22\xb8\xc6\x0f\xad\x60\x57\x59\xff\x43\xc2\x2a\xb0\xc7\xac\xff\xa1\x49\x02\xb3\xb2\x5f\xf7\x3f\x01\xe0\x28\xfb\x21\xce\xf0\x0c\x58\xc7\x62\xd9\xb0\x46\x03\x1f\xb3\xfe\x07\x87\xe5\x47\x8e\x52\x6a\xf3\x10\x72\x49\x98\x4d\x89\x20\x22\x9f\xec\x98\x2e\x1f\x46\xcb\xce\xc5\xbe\x2e\x73\x80\xb3\xf1\xe3\x38\xf0\x8f\x10\xbe\x68\xa7\x3c\x04\x04\x86\x85\xdd\xed\xe4\x0a\xcf\xc0\xf5\x72\xb1\xd9\x9e\x73\x52\xb0\x14\xfb\xbb\xfc\x61\x21\x85\xeb\x10\xd3\x52\x48\xd8\xcf\x48\x11\xf6\x6f\x4d\xb1\x1c\xe7\x30\x24\x9b\x40\x18\x25\x60\x58\x14\xdb\xd7\xf6\x08\xc1\x41\xef\x6b\x1f\xd7\x29\x17\xec\x11\xaf\x9c\x16\x40\x01\x7f\x4a\x84\xb0\x03\x0f\x24\x1b\xd1\x49\x00\xe3\x4e\x19\x1d\x8f\x5f\x08\x83\xbb\xfc\xb4\x28\x06\xfc\xa7\x04\x09\x2f\xcd\x6d\xf9\x46\xb4\x97\x8d\x74\xa7\xa4\xc6\x8e\xa8\xa0\x2b\x17\x25\x14\xb9\x1e\xf0\x58\xb2\x37\x1b\xae\xff\x06\x16\x2e\x12\x8e\x02\x88\x3d\x40\xe7\xbc\x2c\x13\x67\xf3\x1a\x77\xf6\xcb\x29\x5a\xe6\xea\x0e\x8a\xbe\xc3\x4c\x83\x05\xec\x9c\x18\x3e\x1e\x8a\xc0\x84\x8c\x92\xd9\x3c\xe0\xe3\xb4\x6c\x6b\x70\x0f\x35\xd2\x18\x58\x4c\xc6\xb7\x01\x7a\xbe\xc3\x49\x22\x63\xf3\x1e\x82\xe4\xd0\x74\xf9\x78\xa5\xef\xe1\x8b\x8a\x07\x4b\x53\x18\xa2\xd8\x1e\x1b\xe2\x2b\x0d\x14\x3b\x3e\x24\x73\x6b\x84\xb8\x3c\xc7\x8d\x11\x49\xd5\x1a\x25\x77\x51\xf5\x69\x35\x60\x13\x6a\xb5\xe8\xb1\xa2\xa8\x82\xd1\x32\x52\x76\x73\xbc\x48\x7a\xf6\x88\xb9\x8f\xa2\x6f\xcc\x40\x46\xf7\xb4\x07\x3a\x6e\x1c\xfd\xbc\x9b\xa8\x31\x59\x48\xa2\xd6\x2c\xe0\x10\x34\x40\xd1\xe9\xc5\x2c\xc3\x87\x88\xe5\x5d\x13\x08\x23\x87\x0b\xea\x39\x53\xb2\xdc\x35\x74\x50\xaf\xf8\x13\x1c\x22\x14\x9e\x76\x76\xc7\xf0\x8d\xe0\x80\x0c\xac\x91\x75\x42\x86\x17\xee\xa4\x7e\x86\x7a\xc4\x50\xf3\xb8\x9e\xf7\x71\x76\x87\x1d\xe9\x52\x7e\x86\x81\x6f\xfa\x22\xf8\x46\xd5\xce\x1c\xd9\xbe\x59\xd0\x80\x21\x46\x2d\xf0\xfd\x70\xf0\x91\x63\x16\xf3\x04\x09\x39\xee\x1a\xb1\x98\x5f\x78\x3f\xfd\x88\xd1\x44\x7a\x89\x23\xb8\x86\xe9\x63\x83\xf5\x6e\xd7\xd1\xa4\x4c\x0c\xd5\xaf\x76\x24\x11\x96\x77\xb7\x96\x6f\x9c\x52\xde\xe5\x5d\xe4\x91\x89\x12\x59\x33\xe1\xa4\xf9\x95\x31\x1e\xef\x6d\xc3\x57\xb5\xeb\x47\x0a\x48\x0a\x44\x08\xf0\xbd\x68\x8b\x7d\xc9\x6e\xfc\x5f\x7e\xe9\xc5\x0d\x28\x8f\x1d\x8c\x52\x32\x6b\x1c\xfa\xd8\x2a\x58\x1f\xf7\x91\x23\x56\x0a\x61\x0d\x56\xaf\x10\x12\xf6\xb3\x42\xf8\x86\x1d\x90\x0a\xea\x68\x84\x68\x02\x61\xb4\x7c\x5e\x49\xc0\xd8\xf7\xcb\xc0\x41\xef\x6f\x1d\xd3\x48\x48\xee\xb6\x7d\xf0\xf2\x57\xc0\x9f\x96\xc0\x67\x4a\xa0\x60\x23\x7a\x08\x60\x7c\x42\x44\xc3\xea\x48\x59\x10\x83\xe3\x95\xc4\x80\xff\xb4\x1c\x3e\x27\xc2\x11\x6f\x44\x6b\xd9\x48\x5e\x41\x7b\x54\x71\x15\xaa\x64\x6d\xab\x2f\x1c\x5a\xc4\xe5\xd5\x1f\x0e\xa2\xaf\x01\x59\x30\x4d\x96\x17\xd7\x96\x83\xc8\x0b\x6e\xe2\x8b\x03\xd8\x9e\xb2\xbc\x7e\x95\x80\x6f\xf2\x4f\xac\x4a\xd7\x4a\x5c\x73\xe3\xb7\xe9\xd4\x9d\x1a\x3e\x52\xa6\x87\xac\x2c\xeb\x6b\x27\x6e\x75\xa9\xa2\x6b\xab\xef\xec\xc9\x82\x73\xfd\x3b\xf6\xb5\x75\x3f\xda\x1f\xf4\x85\xeb\xd9\xb1\x30\xb8\x7f\x86\x05\x5d\x03\x7e\xa1\xca\x6a\xb5\xf5\xe5\x6d\x67\x34\x4f\x9a\x2c\x2e\x6f\xc9\xf2\xf2\x96\x34\x2f\xfb\xec\xdb\x3c\x9d\x88\xff\x9f\xcd\x1f\x26\x69\xd2\xff\xcc\xb1\xb2\x1d\x38\x47\xdf\x81\x5d\x45\xfb\xae\x18\x97\x82\x87\x05\x6c\xcb\xac\xed\xa6\x87\x53\x51\xe6\x0f\xea\x1e\xb1\xbc\xa6\x24\x2f\x1b\x67\x1c\x56\x1d\x03\xf6\xbf\x8b\xa3\xbf\xd1\x12\xcb\x23\x5c\x49\x30\x3b\xf0\xab\xcb\x06\x95\xa2\x6a\x59\x27\x61\x17\x2e\xad\x05\x46\x4b\xdd\x4c\xe3\x7d\x93\x5d\x2e\x2c\x6b\xb2\xea\xc0\x60\x2f\xd8\xdf\xf9\x7e\xef\xb4\xe8\xd8\xb9\x95\x41\x94\x3b\xd8\x21\x8b\xcb\xdb\x0e\xf1\x1c\x76\x30\xb8\x53\x5d\x31\x5c\xcc\x16\xeb\xe1\xce\x9c\x6a\xbd\x43\x56\x1e\xbe\xcd\x96\x8f\x6b\x76\x4e\xa6\xbd\xcc\x0f\x1a\xa2\xab\x2f\x68\xb1\xba\x0d\xd6\xb0\x92\xdf\xeb\x46\xee\xcd\x39\xca\xbb\x03\x67\x9f\x3b\x19\x5b\xa6\x6e\xb9\xaa\xea\x29\xce\xfc\xde\x19\xbf\x21\xae\x3f\x89\x1b\x67\xe2\x9b\x13\x5c\x0a\x2e\x13\x56\xf5\x6b\x93\x5d\x54\x93\xcb\x24\x08\xf2\xd0\x51\xdf\xd3\x95\x85\xb3\xe2\xd0\x0f\x28\xf3\x2f\x1e\x00\x93\x35\x2f\xcc\xfd\xdc\x5b\xd0\xeb\xd9\xfd\x2e\xae\x80\x0e\xa9\x11\xd8\x59\xdd\x92\xef\x7f\x87\xcc\xb6\xc7\xa2\x51\x9a\x4c\x6a\x36\xaf\x3f\x6f\xfa\x29\x6c\x7b\x90\xcb\x62\x36\x17\x57\x4d\x21\xfd\x81\x9c\x20\x6f\xf0\x83\xf4\x25\x3a\xa4\x89\x30\xf5\xc8\x3f\xf0\x1a\x27\xb9\x87\xcb\xcc\xcd\x10\xa1\x07\xb2\xba\xbc\x3c\x1c\x62\xef\xd0\x7c\x15\x7c\xcb\xb6\x37\x04\x06\x0d\xfe\xb7\x45\x43\x0c\xce\x20\x0d\xd1\x8e\xc2\x10\x3c\x40\x82\xa0\x08\x9a\x9a\xfe\x67\x36\xef\x87\x9c\xb0\x10\x8b\xf9\xe4\xf9\x79\xb2\x58\xaf\x27\xb3\xc5\x1a\x54\x57\xa0\x6b\xc2\xda\xe2\x98\xa2\x8a\x38\x00\x5a\xd4\x7e\x48\xf8\x6f\xce\x02\x7a\x66\x81\x95\x57\x04\xd2\x44\x9a\xd2\x2c\xb2\x7a\x4a\x15\x49\x33\x6c\x7f\x95\xfd\x48\x64\x3a\xf1\x57\xce\x6d\x28\x4d\x56\x35\x98\x43\x97\x3d\xf5\x3f\x34\x5d\x6e\x35\x70\xc2\xba\x08\xa9\xbc\x2e\x43\x6a\x2f\x02\xcb\x08\x7a\x6e\xb3\x20\x71\x68\x78\x3f\xfc\x39\x2f\xda\xde\xe9\xc8\xff\x72\x67\x2f\x5b\x7e\x8d\xd3\x0c\xf8\xa5\x69\x5a\x39\xec\x06\x42\x07\x89\x55\xf3\x31\xa3\x65\xbd\x9e\xa8\xff\xd9\xe3\x85\x53\xf4\x35\x08\x97\xfc\xee\x96\x90\xae\x2b\x6b\x3a\x96\x23\xb4\xa5\xdf\x62\x5c\x2c\xf7\x11\x20\x75\x3e\x4d\x53\x2f\xa2\xb7\x7e\x52\x86\xd8\x2a\x86\x84\xad\xaf\x5d\xef\x3c\xe0\x4a\xae\x0a\x63\x35\x30\xc0\xab\xac\x79\xf0\xa7\xbc\x4b\x4f\xd5\x20\x31\x7f\x97\xd5\x4d\xdc\xd0\x4b\x9f\xbc\xf7\x32\x3b\x1e\x8f\x89\x15\x4f\x1a\xdb\x2c\xc0\x62\x0b\x1d\x8c\x57\xb5\x60\x47\x60\x80\x77\x99\x05\x4b\x85\x3d\x63\x3b\xc4\x92\xae\x1e\x0f\x91\xc3\x4d\xab\x2e\x42\x4c\xab\x2e\x43\x4c\xab\x88\xa2\x25\xe8\xb9\xa6\x15\x09\xba\xb5\x74\x52\x84\xf5\x8e\x1c\xe1\xb6\xf4\xa4\xdd\x33\xc4\x1a\x61\xf7\x8c\x75\x04\x34\x7a\x9c\xdc\x57\x1a\x05\xb4\x52\x1e\xbb\xe7\x9d\x0d\x1c\x02\xf4\x5c\xbf\xe8\x7f\xbc\xb8\x5f\x66\xda\x23\xe4\xc5\x46\x9c\x53\x38\xd2\xf4\x79\xd8\x7d\xbd\x41\x72\x84\xfd\x91\x46\xd6\xdb\x32\x98\x89\x19\xa3\x73\xc1\xee\xf8\x3a\x03\x68\xe8\x32\x35\xbc\xef\x37\x7d\x3c\x6a\x15\x37\x7d\xba\x08\x31\x7d\xba\x0c\x31\x7d\x22\xaa\x9f\xa0\xe7\x9a\x3e\xe4\x12\xc0\x62\xb9\x72\x64\x0c\x7a\xe2\x18\x52\x8c\xe9\x33\xc4\x1a\xe3\xf2\xad\xd6\x13\xf5\x3f\xdb\xfa\x71\x8a\x7e\xbb\x20\x24\xbf\xc7\xfa\xe9\x7a\x79\xac\xdf\x62\xb9\xda\xc1\xbc\x8c\x3e\x02\xa4\xf5\x9b\x67\x8b\xcd\x72\xe9\xc5\xf5\xd6\xb2\x17\x63\xb4\xd7\x47\xcb\x8b\x0d\x37\xa7\x70\xac\xe3\x47\xb3\xbb\xc7\x2c\x2d\x96\xab\xc4\xba\x9b\xe2\x13\xf6\x6e\x23\xcb\xa5\x4e\x90\x00\xf6\xc8\x96\x81\xf6\x45\x29\x63\xbc\xce\x05\xbb\xe3\xeb\xac\x9f\xa1\xcb\xd4\x08\xbf\xdf\xfa\xe5\x59\x43\xf8\x7d\xaa\x04\xb1\x7d\xaa\x08\x31\x7d\xfc\x9e\x11\x4e\xcc\x35\x7c\xee\xa5\x24\x57\x1b\xf9\xed\x8a\x91\x03\xdc\x12\x9d\x34\x7c\x83\x54\x23\xec\xde\x72\x35\x59\xcf\x27\x9b\x27\xc7\xe8\xf5\xd4\xbe\xcc\x1a\x60\xd5\xf1\x79\x7b\xbe\x89\xc0\xc6\x27\xcd\x9d\xd8\x80\xf1\xa1\x7e\xa5\x4d\x0f\x48\x8b\x8d\x2e\xbb\x6c\xa4\xad\x23\x38\xfd\x28\x03\x64\x4b\xfb\x63\x6c\xaa\xaf\x4d\x1c\x3b\x32\x42\xcb\x42\x7d\xf0\x85\xee\x1d\x50\x5e\x7a\x38\xdf\x6f\xe5\xe4\x65\x44\xdc\xd0\x19\x85\x88\xad\x33\x4a\x11\x73\xa7\x6e\x39\x92\x54\x5d\xa3\x87\x5e\x8c\xb4\xdc\x5a\x75\x01\x13\xb1\x21\xfc\x2e\x26\xe1\x0d\xbb\x35\x21\x4d\x1f\x10\x6f\x8c\xf5\x7b\x9c\xcc\x9f\x36\x93\xf9\xe2\xd9\xb1\x7f\x92\xa4\xdf\x04\x0a\xf1\xef\xb1\x82\x46\xe5\xe2\x96\xbd\x82\x57\x80\xc4\x88\x85\x2f\x82\xfd\xe5\x4b\x5f\xaf\xcc\x5f\xbf\x1a\x35\x88\xab\x01\x15\x67\x48\x7d\x62\x7e\xda\xdc\x71\xe2\x89\x7b\xed\xd8\xcf\xee\x4e\xe7\x4a\x29\xe4\xf8\xee\xc0\xcc\xd1\xd7\xac\x6a\x03\x4c\xee\x5f\x44\xc7\x6d\x34\xf3\xab\xd8\xc8\x62\x08\x1c\xbf\x21\x38\xe4\x4a\xb9\xa2\xbc\x45\xe3\x32\xb7\xfd\xd5\x67\x1e\x2d\x66\x9e\x85\x6d\x35\xde\xbf\xa3\x0f\xfe\x14\x5b\x6c\x61\x5f\x29\xaf\xd7\x23\xb2\xd7\x5a\xc8\xd6\xbd\x6f\x41\x5c\x8d\xd8\x0d\x84\x21\x0e\x18\xfe\x08\x9b\x68\xa3\x7e\xb9\x41\xa4\xa5\xfd\x7a\x6b\xa8\x28\x8f\x32\x85\xb4\x80\x9f\xb5\x83\x82\x72\xe2\xa6\x28\xf0\xf0\xba\xcf\x34\x68\xdd\x1b\xd9\x05\x3f\xce\x02\xfa\x38\xfc\x68\xf3\xc7\xd3\x43\x8c\x34\x7f\x3d\x0e\x61\xfe\x54\x11\x62\xfe\x8c\x04\x13\xf6\x57\x9f\xf9\xb3\x98\x91\xe6\x6f\x20\xff\x25\xe6\x4f\xb1\x75\xcd\x1f\x67\xe4\x35\x7f\x3d\xc4\x8f\x32\x7f\x4a\xae\x7b\xcd\x9f\x8d\x3f\xc2\xfc\xd9\xa8\x7f\x05\xf3\xa7\x58\x7e\xbd\xf9\x53\x94\x3f\x69\xfe\x6c\x32\x3f\xd2\xfc\xd9\xbc\xfe\x3a\xe6\xcf\xee\xf5\xaf\x37\x7f\x3e\x0e\x3f\xda\xfc\xa9\x94\x35\xc8\xe2\x8d\x67\xaf\xf1\xa3\x11\x46\xd0\x28\x45\xec\x20\x4c\x7d\x83\x14\xf8\xac\xa1\xcb\x98\x34\x88\x80\xcf\x08\x9b\xb8\xda\x4c\xe6\x8f\x9b\xc9\xfa\xd1\xb1\x89\x06\x73\xd7\x2c\x2a\x76\x5e\xcb\x28\x81\xfc\xab\x66\xd1\xf0\xf7\x18\x47\x43\xc0\xc8\x55\x33\xe7\x15\x20\x31\xc2\x44\x22\xd8\x5f\xbf\x6a\xf6\xc9\xfc\xf5\x86\xd2\x20\x3e\x6e\xd5\xec\x13\xf3\xd3\xab\x66\x4e\x3c\x71\x53\x4c\xf9\xd9\xdd\xb9\x6a\x56\x0a\x39\xbe\x3b\x7e\x9c\xd1\x0c\x30\xf9\xd1\x76\x53\xa5\xdd\x42\x54\x9a\x67\xe0\xf2\xa3\x11\x76\xd3\x28\xc5\xa2\x17\x41\xfa\x2e\xa4\xc0\x67\x37\x5d\xc6\x74\x4c\xa0\xc9\x67\x54\x54\x60\x3a\x99\xaf\x16\x93\x25\x12\x14\x38\x70\x47\xa2\x2f\x25\x3f\xaf\xe1\x94\x40\x7e\x63\x22\x5a\xfe\xae\xd8\xc2\x41\xc0\x38\xc3\x29\x78\x05\x48\x8c\x30\x9c\x08\xf6\x97\x1b\x4e\xaf\xcc\x3f\x20\x1a\x6f\x20\x3e\xca\x70\x7a\xc5\xfc\xf4\x51\x32\x27\x9e\xb8\x79\xf2\xfc\xec\xee\x34\x27\x4a\x21\xc7\x77\xc7\x8f\x33\x9c\x01\x26\x3f\xda\x70\xca\xdc\x81\xae\x46\x8b\x34\x82\x5e\x2c\xc2\x6c\x0e\x85\xe8\x11\xb5\x91\x81\xd0\xfd\xee\xb3\x99\x0e\x53\xcf\xd1\xf2\xc0\x64\x8c\xc5\x4c\xd3\xc9\x66\x35\x59\x2f\x90\xd3\x65\xc5\x1a\x3b\x5d\xe7\xcc\xbc\xe6\x52\xc0\x78\x2d\x88\x6c\xef\xfb\x8e\xa8\x95\x74\x71\xc6\x52\xb0\xf2\x53\x18\x61\x2b\x5d\xe4\x2f\x37\x95\x3e\x89\xf1\x63\x52\xbb\x74\xe4\x61\xb5\x8f\xe1\xd7\x9b\x66\x57\xdc\x7b\xf9\x08\xb9\x13\x37\x09\x68\x74\xe3\x00\x3b\xa2\x95\x72\x84\xee\x85\xfb\xe4\xaf\x11\x9b\x18\xcf\xcd\xb3\x7c\xe3\x57\xd5\xdc\x6b\x84\xf6\x23\x0f\x26\x8e\xb8\xf6\xe6\x3e\x30\x01\xf6\x57\xb3\xe6\xc5\x7d\x4a\x4c\x41\x18\xb2\xc9\xb7\x82\xab\xba\x9b\x66\x65\x59\xbf\xb2\x9c\x78\x2e\x14\xb6\x8a\x7e\x39\x11\x8e\xa5\xfa\x92\x1d\x8a\xee\x7d\x3b\x03\xe7\xfb\x6d\x97\x75\xc5\x61\xa2\x5f\xc4\x33\x1e\x64\xd5\xdf\xe4\x23\x80\x4d\xe0\x52\x92\x49\xf6\x78\x2d\x4b\x7e\xaf\x0f\xa4\xfe\xb2\x1e\xc4\xd5\x0d\x22\x34\xfd\xe6\x74\xf7\xa0\xc0\x3b\xf9\x60\xf2\x94\x7d\x67\x55\xd7\xba\xc7\x30\x60\xb0\x64\x55\x71\x16\x4f\xf6\x0e\x6f\xdd\x26\xb3\x75\x9b\x14\xd5\xb1\xa8\x8a\x8e\x25\xbd\x1a\x64\xea\x8e\x68\xdf\xab\x49\x5b\x97\x45\x9e\xc0\x67\x27\x75\xaf\x3f\xa7\xab\xa7\x0d\xbf\xd2\x2b\x3e\xf3\xc4\x83\xa4\x76\x76\xf5\x05\x35\x2d\xf2\x01\xc4\x9f\xac\x8b\xbc\xea\x32\xe4\x70\x15\x92\x9d\x77\xc3\xe5\xc0\x75\xfa\x73\x32\x4d\xbe\xcd\xd9\x39\xf9\x53\xb2\x78\x78\xd8\xe9\xbb\xa6\x4e\x89\xf3\xf8\x20\xb1\x14\xe5\x7d\x7e\x43\xb5\x46\xfe\x25\x92\xe4\x3a\x3a\xe4\xe9\x85\xf6\x86\xdc\xc1\x05\x9d\x2f\x72\x84\x34\xd9\x65\xdb\xff\xc7\xb9\xd7\xca\x8b\xdb\x2e\x6b\xb4\xac\xfa\x8d\x6b\xeb\x16\xf3\xcc\x1c\x51\xc3\x43\xd8\xd4\x0d\x51\x79\x03\x14\x20\x21\xd7\x31\x25\xf1\xa9\x05\x18\xba\x51\x6d\x02\x63\xcf\x73\xbb\x17\x4b\xf5\xd3\xb3\x3d\x01\x91\xfc\x5e\xdd\xb5\x37\x35\x08\x14\x84\x59\x98\x22\x42\x0e\x42\x5b\x31\x16\x56\x09\x68\xaf\xe9\xfc\xf2\xe6\xe5\xea\xb6\xa0\x7c\xe9\xd2\x87\xe5\xfa\x50\x14\x94\xe5\x59\x52\x60\xe2\xde\x74\xe0\x89\xf4\x30\x47\x79\xe7\x55\x3d\x1a\xbe\x8c\xab\x83\x7a\xcf\x3c\xaa\x26\x71\xc0\xaa\x3e\x61\xe8\x6d\xac\x0c\xd2\x11\x86\xcf\xa2\xaf\x86\x1a\x16\xed\xf0\x74\x1a\x7e\xd9\x1c\xc0\x8a\xa7\x14\xd0\xd1\xcb\xaa\x5c\xbc\xad\x9a\x15\x15\x6b\x74\x3a\x8a\x44\xbc\x6d\x6b\xdf\x85\x8f\xcc\x89\x62\xd2\x53\xc9\x36\x9e\x37\xe9\x45\xcd\x26\xfc\x77\x83\x2d\x6f\xf2\xf2\x5a\xc0\x7b\xd6\xcb\x85\x7e\x35\x58\xea\xa9\xfc\xa2\x48\x72\xfb\x26\x7e\xe5\x2f\x08\x07\xf2\xc5\xa8\xc4\x28\x80\xad\x91\x5f\xc4\x00\x9d\xaf\x17\x5a\xd8\x18\xd2\x2a\x91\x08\xac\x91\x48\x66\x64\x80\x2d\x57\xab\x08\xb2\x6e\xfa\x14\xac\x3d\x81\x8c\xe2\x8f\x51\x49\x9a\x54\xf2\x12\x29\xa5\x2f\x67\x09\xce\xdf\xac\x8c\xf8\xe3\x43\xbf\xd2\x1b\x99\xd4\x42\xbb\x2b\x65\xf1\x4b\x59\x98\x0f\xe8\xf3\x64\x0e\x1f\x88\x8b\xe3\x50\x1e\x7c\x9e\xbc\xf4\x14\xd6\xbe\xc2\x8b\xaf\xac\xf1\xf1\xe4\x7e\x96\xa7\xfc\xea\xb2\xb5\x9b\xc2\xac\xe7\x69\x3e\xa0\x9e\x16\xc6\xef\x4b\xe3\xf7\x95\xf1\xfb\xda\xf8\x7d\x03\x33\xf0\xdb\x6f\xe1\xef\x78\x06\x0d\x9d\xc6\x61\xbe\x58\x9b\x7c\xcd\x87\xdb\x86\xac\x09\x7a\xf6\x86\x42\xd2\xa9\x17\xfa\xbe\x83\x35\x5a\x00\xb7\xd9\x4c\xc9\xa0\x89\x3f\xce\x57\x10\x25\x40\x7f\x36\x5f\x2d\x9e\x00\xc6\x12\x30\x41\x78\x6c\x36\x9b\x0d\xc4\x08\xf1\x58\x2e\x97\x4b\x13\xa3\x2e\xcd\x5e\xb5\xea\xbb\x33\xed\xd6\x02\x30\x82\xcf\x38\x2f\x10\xd9\x60\x55\xac\x07\x9d\x51\x84\xa7\x27\x88\x03\x5e\x77\x76\xe0\xe7\xf8\x48\x52\x2e\x07\x97\x79\xed\xb8\xd3\x66\xae\x1a\xf1\xac\x39\x6c\x8d\x5b\x59\xb4\xea\xad\xf5\x9c\x1d\x8a\x73\x56\x7e\x98\x0d\x64\x16\x17\xed\xc1\x2c\x83\xc5\xd3\xee\xfd\xc2\xb6\x87\xa2\x39\x94\x6c\x67\x9a\x00\xc0\x90\x63\x61\x88\xed\xbf\x5c\xb3\x86\x0d\x80\x39\x9c\x44\x40\x67\x1c\x8b\x97\x6b\xc3\xec\x72\x38\xc7\x2c\xb0\x0c\x2c\x36\x09\xbf\xf2\x20\x3c\x43\x56\x00\x41\x49\x8a\xf3\x0b\x9a\xbe\xd2\x01\x3c\x16\x2f\x87\xec\xd2\x4f\xd4\xe0\x01\xfc\x2e\x2b\x8b\x03\x78\x38\xfd\xe6\x7b\xbc\x5e\x75\xb2\xf3\x74\xfd\x6c\xdf\xb0\x2c\x3f\x34\xd7\xf3\x5e\x24\x67\x52\x8f\x1a\xf1\xdf\xab\xec\xcc\x26\xb3\x53\xf1\x72\xe2\xd7\x6b\x26\xb3\x4b\x53\xbf\x34\xac\x6d\xed\xc7\xdc\x07\x49\xda\xeb\x7e\x62\xfc\x61\xbe\x31\xfb\xb8\xfe\xf9\x03\x1a\xd7\x9b\xb9\x00\xb5\x96\xb7\xb9\xb3\xe0\x3d\x49\xad\xde\xce\xa9\xf5\xa1\x20\x27\x33\x18\xe9\x06\xe8\x2b\x9e\x08\xeb\x84\x3e\x93\x5f\x5d\xae\xdd\x64\x26\x3c\xbd\x44\xfc\x33\x99\xf5\x6a\x92\x35\x2c\xbb\x7d\x3a\xe9\x90\x99\xd5\x0e\xa9\xe7\xc9\xb2\xec\xd6\x8b\x5b\x2e\x3c\xcb\x72\xb4\x75\xf8\x77\xd5\x46\x46\x53\xf4\x9e\x04\x60\xe1\x90\x3c\xd6\x75\x87\x91\x14\xdf\x2d\x92\xfd\xe2\x3c\x4d\xd2\x00\xc9\x7d\x9d\xbf\x27\x5d\x63\x8c\x0a\x8c\x01\x06\x75\xb2\x96\x4b\xb2\x22\x9a\xc3\xb0\x15\xe4\x6e\xfc\x18\x20\xf4\xce\x8f\x01\x44\x6d\xfd\x48\x95\x70\x74\x60\xd8\x05\x98\x6d\x16\x88\x06\x18\x29\x82\x20\x80\xd9\xff\x9c\xf8\x76\xcb\xf3\x69\x5d\xca\xec\xc0\x4e\x75\x99\xf7\x4b\x06\xc5\xce\x2d\x93\x2a\xc2\xb7\xc5\xd7\xab\x89\xf8\xff\xd9\xf2\x61\x20\x26\xf3\x70\xf1\x3f\x49\xaa\x14\x50\x88\xbc\x47\xd4\xb1\x92\x4e\xcf\xad\x57\x48\xb4\x3c\x40\xd4\x5c\xc4\xea\x0f\x7a\xbd\x2a\xf8\x82\x72\x75\xde\xa1\xb8\x9a\x04\xcc\x6f\x9a\x86\x16\xcf\x86\xd2\xb9\x99\xa2\xa3\x08\x77\x72\xd3\xb3\xd7\x68\x2e\xcc\xb0\xc1\x38\x90\xa5\x37\x44\xe1\x86\x90\x43\xc2\xa7\x56\x3e\x28\xb3\x85\xe7\x8b\xc5\x44\xfd\x6f\x68\x64\x80\x1d\xd6\xb6\x28\xf0\x51\x5c\xa3\x2a\xf6\xa9\x7a\x05\x74\x33\x04\x19\xc1\xab\x77\x6a\xfe\xae\x65\x59\x73\x38\x99\xbd\x6d\x7e\xb6\x37\xb8\xe5\x56\xa7\xa2\xd0\xcf\xd6\x75\x55\xbe\x9b\xe8\xfa\x9b\xbb\x7b\xae\x87\x03\x9f\xf7\xa1\x76\xcb\xdc\x49\xf6\x0e\xbe\x8d\x84\x8e\x2e\x37\xc7\x14\x2c\xda\xe2\x18\xd8\xc0\x73\x98\xa0\x85\xce\x50\x74\x59\xb9\x25\x31\x83\xd3\x49\xd6\xa4\x25\xe6\xf9\x14\x20\x59\x99\x76\x05\x49\x17\x61\xe3\xa1\xad\xe6\xa6\x8f\x81\x45\x6e\xab\x81\x04\x31\x8e\x24\x54\xab\xb9\x7c\x9c\x52\xb4\xd5\x0c\x6e\xa3\x52\xbd\x68\x71\xa5\x97\x68\xd2\x94\xe9\x1a\x90\x4b\x8e\x36\x1e\xda\x64\x6e\xda\x09\x58\xe4\x36\x19\x48\x2c\xe1\x48\x42\x35\x99\xcb\xc7\x29\x45\x9b\xcc\xe0\x36\x36\x45\x84\x96\x38\xcf\x1a\x4b\xcf\xc4\x45\x6f\xfb\xc6\xaa\x85\x82\xb6\x97\x73\x53\x1d\x94\xb8\xad\x65\x5e\x46\xb7\x25\xa0\xda\xca\xe1\x61\x17\xa2\x2d\x35\x70\x1a\x75\xa7\x5c\x4b\x2a\x2f\x82\x41\xa2\xfa\x72\x28\x72\x91\xcd\xc0\x2d\xaa\x63\x0d\x54\xa4\xb2\x1a\x5c\x00\xc0\x8e\xad\xec\x2e\x50\xd1\xcf\xb6\x48\x68\x47\x60\x37\x69\xed\x42\xb7\x3b\xac\x9b\xb2\x48\x55\xa9\x4e\xc1\xf8\x21\xe5\x68\xd7\x00\xae\x23\xef\xbc\x82\x36\x46\x5b\xc2\xb9\x0f\x02\x4a\xdc\x36\x30\x6f\x82\x80\x2e\x23\x0c\x44\x45\x28\xbc\x71\x11\xcd\xfe\x8a\x34\xaf\x2d\x3e\x56\x86\x36\x2c\xa8\x84\x53\x80\xda\xa1\x8a\x1c\x5a\x4e\x6d\xec\x42\xc2\x08\x55\x51\x43\xcb\xbe\xcf\xa2\x1b\x45\x86\x8b\x42\xaa\x3a\xf8\x1d\x09\x77\x75\x71\xd1\xce\xc1\x02\xe1\xed\x42\xb7\x8b\xac\x10\x78\x44\x26\xaa\xf9\x30\x7e\x48\x39\xda\x88\x80\xeb\xb8\x18\xf8\xc1\xc9\x11\xd1\x63\x96\x2f\xa2\x82\x61\x91\xe8\x37\x17\x17\x77\xb7\x90\xc0\x58\xbb\x10\x71\xb9\x60\x48\x2c\x22\x13\xe9\x76\x21\xfc\x90\x72\xdc\xf5\x32\xb9\x8e\x8c\x89\x35\xa6\xa5\xea\xc5\xf4\xbd\x67\x46\x6c\x1c\x12\x12\xe3\x60\x12\x73\xa3\x13\x26\x67\x95\x61\xf3\xa3\x19\x20\xe7\x8a\x43\xcf\x91\x0e\x2f\xb7\x98\x98\x27\x07\x8e\xe3\x02\xe4\x86\x01\x74\xce\xca\xd2\xd2\xee\xe8\xe0\x19\x4d\x45\xa5\x8c\x36\xc9\xd0\xbb\x2a\x83\x81\x15\x09\xa8\x81\x7d\xf2\x6d\xb3\xcc\xcc\xf0\x14\x6b\xfd\xed\x44\xad\x88\x08\x0d\x67\x37\x65\xa6\x9f\x26\xb1\x4d\x30\xf2\x2e\x9d\x79\x46\x37\x3b\x9c\xd8\xe1\xb7\x7d\xfd\x36\x99\xf5\x8d\x52\xab\x6d\x40\x74\x6f\x16\x39\x32\x35\xda\x5c\x06\x71\x7c\x45\x86\x5b\x98\x4c\x3c\xb5\xb6\x97\xd2\x8f\x61\x63\x0a\xee\x2d\xee\xcc\xe3\xda\xf4\xe7\x5d\xc3\x78\x73\xab\x4d\xcf\x01\x8f\xef\x58\xff\xb9\xa9\x5f\xdb\xbf\x3c\x70\x1a\x27\xfd\x7a\xf0\xe5\x8d\x53\x51\x47\x49\x0b\x7e\x98\x3b\x2c\x35\x7b\x14\x95\x2e\xfc\x5a\xb5\xac\x1b\x0a\xf9\x51\xf7\xb1\x78\x63\x39\xef\xe5\x9b\xe4\x2e\x16\xa2\x56\x3b\xab\x58\x2a\x19\xc0\x62\x1d\x5f\x2d\xd6\x1f\x62\xff\xf9\xd0\x65\x60\x27\x1a\xec\xd1\x62\x01\x2e\x90\xce\x7a\x37\x2a\x69\x3d\xb6\x39\xac\xe4\x4e\xe4\x96\x20\x97\x5e\xfc\x61\xd5\x61\x80\x55\x21\x00\x1c\x16\xc6\xd0\xea\xdd\x52\x09\x6a\x6e\xfe\x70\x70\x33\xdc\x0c\x84\xfe\xb8\xc1\x67\x1f\x02\xe3\x17\xd9\xa2\x20\x3f\x3a\x3f\x5e\x91\xcd\x64\xe9\x08\x56\x4b\x9d\xed\xbe\xfb\xc6\x47\xf9\xb5\xec\x8a\x4b\xc9\x1e\x6e\x20\xff\x3e\x0d\xb7\x05\x51\x91\xe6\xfe\x3c\xbc\xcb\x2a\x15\xd8\x88\x79\xd9\xa6\x43\x20\x56\x42\x44\x62\xf1\x83\x0b\x24\xd4\xc9\x8d\xaf\xda\xf1\x41\x75\xac\x9b\xf3\xb6\xa9\xbb\xac\x63\xdf\xa6\xab\x75\xce\x5e\x1e\x86\x82\x69\xdd\x14\x2f\xc5\x90\x7d\x9f\x37\x8c\x79\xaa\xd8\x0b\x25\xf3\xbb\xef\x9a\xe1\x3c\x95\x9d\x79\xa0\xd7\x3a\xfd\x79\x67\xc4\x6c\xf4\xb2\x37\x75\x39\x33\x42\xde\x44\x53\x28\x5d\x75\x4b\x6e\x46\xe0\x59\x6c\x60\xdc\x87\xa5\xf9\xa1\x73\x10\xc3\xc0\xdb\xa6\x05\xbe\xa8\x40\x07\x7d\xed\x3e\xbd\xe7\xed\x3e\xb6\xe0\x0d\x83\x96\xc7\x1f\x96\x61\x80\x0a\x01\x4f\x42\x8d\x9d\x54\xd0\x3c\x63\xf6\xcf\x6d\xc4\xf1\x5b\xe4\x90\xc2\xbd\x9c\x47\xee\x7b\x03\xe4\x99\x19\xdb\x0f\xc9\xd2\xcf\x0f\x20\x34\x94\x37\xe2\x14\x68\x17\x06\x12\x47\xe1\xa5\xe3\xa2\xfb\x26\x78\xbf\x38\xbc\x4c\x01\xf4\x47\xc7\xe3\x22\x89\xd8\x88\x24\x87\xf6\xde\x3a\xc1\x77\xe4\xee\x39\x4d\xe5\xae\x6d\x71\x8a\xdc\x97\xc8\x34\x7e\x5f\xdb\x19\x78\xed\x94\xbd\x5d\xb2\x0a\xbe\xf3\x46\x73\xc4\x14\x54\x6d\x0f\x42\xda\xdc\x65\x51\x33\xce\x5f\x1e\x6e\xd0\xfe\x2c\xcc\x29\x4f\xb1\xd1\xd0\xc0\x63\xd1\xe7\xc2\xb6\xdd\x18\xe0\x93\x5a\x9c\xb8\x83\x13\xe4\xb9\x31\x03\x72\xb1\xb7\xd8\x5d\x00\x3d\xc5\x0f\xc3\x87\x6f\x46\x43\xd3\x0d\xf6\xdb\x71\x48\x77\x44\x62\x10\xd6\xd0\xb4\x41\xb6\x7e\x0a\xf7\xed\x90\x0f\xb4\xf8\x86\x31\x5e\x33\xb5\x2d\x8e\x03\xe3\x95\xb3\x21\x90\xca\x99\x20\x48\xe5\x40\xf1\xf8\x8d\x6c\x63\xce\xee\xf5\x85\xe8\x33\xa0\x9e\x36\x30\x5e\x33\x1b\x02\xa9\x99\x09\x82\xd4\x0c\x14\xdf\xb5\xdf\x3c\xd0\xca\xb3\x86\xe8\x35\xbe\xcb\x8c\x02\xe2\xf5\xb2\x00\x90\x6a\x19\x10\x48\xad\xcc\xd2\xf1\x7b\xc3\x03\x1d\xb9\x83\x49\x54\x4a\x6e\x07\x0f\xe0\x45\x75\xac\x75\xa4\x87\xd9\xc6\x15\xd1\x2e\x6a\xeb\x97\xe2\x88\xb7\x8e\x0b\x83\x34\x10\x04\x42\xda\xc8\x02\xb8\x67\x93\x16\xad\x39\x2e\xb3\x05\x80\x08\x6c\x40\x20\xd2\x9a\xa5\x72\xd7\x04\x6d\x60\x6a\x9c\x54\x01\x7d\x32\x20\xd0\x51\x52\x8d\xd1\x27\xdc\xd3\x30\x76\x03\x09\x85\x92\x7b\xa0\x14\x38\x5e\x37\x17\x06\xa9\x1e\x04\x42\x6a\x68\x01\xdc\xb1\x5b\x69\x4c\x05\x62\xab\x8e\x30\x73\x72\x83\x92\x02\x27\xe6\x27\x07\x06\x9b\xa1\x00\x10\x36\x47\x41\x80\x7b\xb6\x12\x4d\x1b\x53\xbd\xb0\x06\xaf\xa4\xda\x3e\x24\xa0\x29\xa3\x67\x81\xa0\x66\xcf\x80\x41\x0d\x9f\x59\x7e\xc7\x66\x9f\xa1\x11\xd1\x5b\x7b\x03\x0e\xbd\x8f\x67\x8c\x25\x62\xd7\xce\xa8\x84\x74\xe3\x70\x47\x08\xba\xd1\xd6\x36\x1f\xf2\x51\xf5\x90\xb9\xbb\x67\x48\x03\x17\xd1\x7f\xcd\x9b\x62\x11\xd7\xc3\x8c\xbd\x83\x14\xd9\x96\x90\x57\x9e\x36\x7a\x1b\x41\xfd\xaa\xb7\x2b\x84\x97\x7c\x2c\x4a\x66\x86\x61\xde\x90\x1d\x47\xb5\xe5\x70\xca\xda\x29\x7f\xc5\x4f\xfd\x22\x2a\xa7\xde\x05\xb4\xc1\x5a\xb3\x78\xa6\xef\x8d\xe8\x2d\x45\xa7\xa5\xb5\x6a\xc9\x16\xf7\xa9\x93\x81\x22\x34\xcb\xc1\xc1\xf4\x6b\x40\xe2\xaa\x86\xe0\x08\x85\xe3\x6f\x86\x3a\xaf\x32\x9a\xbb\x7f\x6d\xd7\xb0\xee\x70\x82\xf7\xdb\xbc\x17\xda\x8c\xa8\xd7\x9c\x95\xac\xf3\x3e\x4a\xea\x3e\x3f\x2a\x84\x1a\xdc\x69\xbd\x5d\x39\xf6\x86\xb5\xe5\x2d\x03\xaa\xc6\xba\x3e\xb1\xf6\x43\x67\xf0\x01\x36\x3f\xff\xe7\xfe\xe7\x7e\x11\xa4\x75\xa3\x45\xe0\x00\xa6\x08\x11\xdb\xdc\xdc\xbc\x91\x6b\x8c\xa0\x4c\xc2\xa0\xd2\x22\xd9\xe5\xe4\xcd\xf9\xd1\xcd\x22\x56\x18\x3e\xc2\xa1\xc7\x8c\xcc\xa5\x1f\xa0\x1a\xe8\x6f\xe3\x55\x28\x3f\xff\x55\xff\x73\x27\x7f\x4f\x67\x1b\xd1\x41\x9f\xea\x6c\xb0\xe6\xf2\x4b\x43\x77\xb3\x19\xc4\xe4\x6f\x8d\x34\x1d\xd7\x14\x62\xa1\xe5\xd5\x9c\x40\x6e\x7f\x73\x2d\x05\xa8\x06\x3a\xd8\x78\xfb\xc6\xcb\x9f\x31\x76\x27\x73\x4f\xef\x1a\x81\x4c\x9f\x1b\xca\xd6\xba\xd3\x2f\x10\xdd\xc1\x66\xc8\x95\xbf\x35\xc4\x4b\x99\xa3\x1a\x84\x2f\x3b\x7d\x44\xbd\xcf\x53\x58\xfb\x00\x26\xd1\x40\x0f\x0f\x8f\x7c\x78\xb9\xcf\xd9\x22\x5f\x1e\xee\x16\xc0\xd3\xcb\x43\x10\xd6\xa7\x3a\x19\xac\xc3\x43\xe2\xd0\x7d\x6c\xc4\x8a\xf9\xdb\x83\x3f\x3d\x34\xba\x3d\xd4\xc2\xd9\xdb\xd1\x81\x24\xfc\x98\x85\x70\x9f\x41\xc0\x2a\x07\xde\x36\x08\x28\x5b\x76\x7c\x1c\x39\x61\xb8\xe1\x5e\x3e\x19\xbe\xa0\xc7\xe1\x96\x02\x2a\x93\x15\x26\x85\x09\x34\xc4\x44\xe1\x63\xbe\x0a\x29\xf0\x10\xea\x04\xaa\x43\x19\x23\x18\x7a\x7f\x6f\x0b\xd3\x1a\x0c\xa3\xea\xfc\xbd\x3c\xcf\xd6\x8f\x61\x7f\xc3\x9a\x8b\x2a\xbf\x9d\x0a\xa5\x0a\xa6\x88\x06\x67\xa2\x2a\xca\xd3\x78\x5a\xef\xef\xe5\xee\xb3\xfc\x55\xe4\xcc\xbe\x5e\x1d\xf7\xe3\xb8\xf3\xdd\xa9\xaf\x6e\x50\x2b\xab\x35\xa9\xf7\x3f\xa6\x41\x61\xe0\x22\xc9\xfc\x07\x35\xa8\xda\x8e\xf2\x6a\x7e\x20\x65\xab\x87\x6e\xa0\x59\x41\x4e\x5c\xbf\x0c\xfb\x6c\xb3\xdc\xdc\x2d\x83\xc7\x22\x81\xb8\xc1\x4f\xd9\x58\xb8\x51\x17\x12\x89\xee\x6f\x18\xe5\xe8\x6f\x96\xe7\xe7\xc3\x72\xa4\x51\x52\x9b\x73\x5e\x17\x39\x90\x6c\xd2\x43\x37\xb4\xea\x35\xd3\x79\x86\x64\x78\x9a\x3f\xde\x2d\x83\x6f\xd9\x6b\x86\x38\x7e\x72\xe1\x0b\xb6\x2d\x43\x32\x79\x96\xbd\x20\x22\x33\xb0\x1f\xf0\x34\x1f\xbb\x3e\x95\xdb\x95\x3e\xb2\xa1\x8c\x79\x34\xd9\xa0\xd3\x3c\xe4\x22\xf4\x4a\xb0\x67\xcb\x7c\x39\xd2\x97\x73\xe2\x34\x3d\x12\x7c\x41\x77\x83\x4d\xdc\x80\x40\x3e\xbf\xd9\x88\x1e\xf5\x37\xc9\x6a\x99\x2d\x46\x4e\x28\xd4\xe5\x5a\x55\x4e\xef\x1d\x43\x08\x29\x58\x71\xa8\xab\x64\x76\xcc\xcc\x24\x14\x3c\x97\x91\x9e\xef\x89\x7d\x66\x50\xee\x21\xf6\xa4\x89\x9d\xb2\x96\x07\x0a\xba\x7d\x34\x32\xf5\x12\x4e\xaf\xff\xf5\xce\x6c\x51\x80\x5c\x5f\x29\x76\xbe\x74\xef\xae\x9c\xc3\xf6\x7d\x00\x87\xcb\x02\x43\x2c\x54\x7b\x05\x93\x07\x29\xc0\x50\xe6\x20\x05\xb7\xaf\xdf\xf4\xb8\x10\xdb\xd2\x1c\x26\x2f\x1a\x76\xe0\x9b\xd3\x87\xba\xbc\x9e\x2b\x1c\xa1\xaf\x1c\x0a\xae\x36\xd2\x61\xae\x02\x76\x4e\x96\x66\xe7\x9b\xa4\xcc\xf6\x57\xd7\xdb\xe7\x97\xb7\x04\x68\x93\x89\xd0\x6b\xcb\x6d\x88\x06\x1d\x76\xec\x45\xb0\x08\x85\xe2\xd5\x56\x0e\xac\x87\x09\x8d\x35\x5f\xa1\x58\xc1\xa1\xf1\x84\xa2\x05\xc6\xc0\x72\xed\x62\xd1\x83\x61\x50\xb2\x44\x5e\xe6\x0f\xe0\x9a\x0d\xaf\x74\x5a\x24\x16\x48\x16\xc3\xd9\x0a\xd9\x25\x8d\xbd\xa3\x66\x51\xd2\x82\xe0\x28\x08\x77\x29\xb6\xcb\x7d\xce\x0b\xa4\x04\x3b\x71\x46\x34\x9d\x0f\x74\x87\xc3\x26\x53\x9d\xcd\x13\x27\x0a\x92\x4b\xc1\x15\xf9\xa5\xa9\x5f\xb7\x73\x2b\x55\xd5\x87\x49\x2f\x78\x34\x61\x05\x39\xfa\x4e\x2a\x06\xb2\x91\x3b\x83\x56\x18\x12\x81\x6f\x36\xaa\xc4\xc8\xd7\xfd\x0f\xc0\x88\xdf\x7e\xc3\xb8\xf2\x39\xab\xaa\xbb\xe2\x58\x1c\x78\x94\xab\x27\x55\x25\xc5\x14\x91\xf3\x70\xec\x7f\x24\x8a\x88\xc4\x56\x81\xc2\xa9\x4e\xd5\x98\x0e\xd1\xa1\x58\x98\x30\x3f\xa7\x93\xb1\xbf\xe9\x5c\x19\x03\x2b\xde\xdc\x17\x66\x0b\x03\x07\xad\xdb\x02\xbc\x8f\x47\x07\xda\xde\x9d\x60\x04\x09\xb4\xf5\x1c\x06\xf7\x4d\x04\x62\x7b\xcd\x0f\xcd\x70\xb6\x69\x24\x8a\xa9\xea\xd7\x26\xbb\xb8\x47\x8f\x22\x10\x1c\x9e\x3f\x3e\x24\x2a\x7b\x86\x7b\x02\xd9\xb3\x0b\x16\x83\x90\x3c\x98\x79\x63\x61\x64\x0e\xf3\x1f\x81\x52\x2c\x22\xcb\x71\x19\x1a\x10\x0b\xaf\x14\x66\x66\xc4\x08\x98\xdf\x74\x50\x80\xfa\xb8\xb5\xa1\x54\x7c\x8c\x56\x38\x87\x94\xfa\x08\x69\xf5\x5f\xb7\x0e\x9c\x1d\x78\x3b\x48\x68\x5e\x32\xd0\xe0\xde\x38\xda\x01\x57\xdd\x42\x58\x65\xfd\xcf\x07\x6d\x3c\xc0\xe9\xbb\x48\x52\xc4\xc7\x8c\x6b\x9f\xd5\xff\x52\xeb\x60\xdd\xb8\xa7\xb0\x81\x79\x9a\xfa\xce\x17\x7f\xeb\xb4\x43\xac\x2c\x8b\x4b\x5b\xb4\x1f\xc6\x4c\x1f\x4a\x78\x6a\x9c\xdc\xe3\xae\xd1\xce\xca\x50\x6a\x1e\xf1\x7f\xcc\x4e\xac\xbc\x4c\x66\xc2\xc2\x03\xc9\x3f\x02\x4e\x80\x40\x01\x16\xd2\x1c\x8f\x0d\x3b\x83\x74\x6e\x8f\x69\x2a\x71\x42\x89\xa5\x84\x1b\xc3\x41\x7d\x8e\xbb\x06\xa0\x3d\x77\x0d\x42\x39\xe3\x7d\xe5\x1d\xd2\x3b\x98\xd4\x4f\x03\xea\x73\x58\x90\x7f\x5d\x95\x88\x24\x0a\xd6\xf1\xaa\x2a\x14\xe9\x02\xac\xc9\x41\x15\xf2\x6b\xf1\xe6\x79\x8e\x2a\x50\xd7\xc0\xc1\xa6\xfe\x50\x2c\x6e\x77\x0f\x2c\x2a\x4d\x45\xc5\xf5\xa9\x32\x75\xe7\x15\xec\x5c\x19\x95\x92\x57\x39\xc1\x2e\x87\x29\x1f\xbf\xa1\x08\x16\xc4\xbd\x72\xb0\x32\x0f\x76\xe5\xa3\x5a\x42\xb1\x32\x37\x92\x86\xde\xa2\x43\x1a\x6c\xcc\x44\x99\xb7\x40\x22\xde\xa9\xf4\xd5\x28\x6c\x23\x11\x9a\xca\x60\x3a\x89\x05\x97\x76\x36\x12\x1a\x5a\x5d\x7a\xa1\x65\x78\x7d\xf6\x52\x6b\xe1\xaf\x8b\x91\x67\x2a\xa2\x2a\x26\x74\xb0\x26\x26\xb0\xaf\x22\x60\xa1\x69\xd5\xc4\x2e\xf3\x54\x25\x42\xfe\xb0\xd0\x84\xa4\xe6\xb2\x35\xc0\x1e\xce\x58\x11\xc0\xc6\x4c\x16\x80\xde\x46\xd3\x1d\xe6\x51\x7f\x4b\x44\x0a\xeb\xa6\x90\x0a\x01\xc7\x88\x0a\x12\x4f\xc5\xf6\x48\xa4\xc4\x0e\x4e\x8c\xe4\x00\x29\xa6\x06\x10\xc1\x49\xd0\x3c\x42\x57\xd4\x05\xc9\x31\x1a\x13\x8d\xb3\x1d\xc9\xc3\x4c\xc7\x3c\x46\x87\xc6\x60\xc4\xd7\xc1\xd4\xa7\x68\xf0\xd8\x1a\x10\xba\x75\x0f\x66\x7c\x8d\x30\x3d\x1b\x8d\x46\xa4\xcc\x26\xf1\xf9\x76\x19\xbf\x87\xc4\x72\x73\xd5\xee\xa2\x18\xbf\xc6\xec\x9c\xd1\xc8\xe1\xdd\x34\x1a\xd7\xd8\x6c\x90\x15\x00\x5b\x0d\x62\x9a\x3f\x35\x45\xf5\xdb\x60\x95\x8b\xb6\x2f\xbe\x5e\x58\x3e\xd6\x47\x18\x30\x7f\x85\xec\x68\x16\xbf\x06\x9d\x09\xe9\xc7\x58\x59\xeb\xa1\x5b\x83\xd0\xa3\x3a\x0a\xd4\x79\xee\x12\x30\x7e\x8d\xed\x36\x1c\x39\xae\xdb\x70\x5c\x7e\x5f\x8c\x67\x18\x80\x6f\x29\x44\x62\xfd\x8a\x38\x0f\x93\xb1\xa8\xa3\xfc\xca\x00\x55\xdf\x2b\x0c\xa3\xe8\x84\x94\x44\xd2\x11\x1b\x3e\x89\x5c\x20\x0d\xab\x8b\xa2\x3a\xb1\xa6\xe8\xfc\x79\xd9\x1f\x37\x22\xe1\xb9\x41\x09\x7d\x97\x42\xf1\xe2\xb9\x46\xc5\xef\xf2\x1f\x47\x2a\x6f\x86\xf5\xc7\xcd\xf3\xe5\xed\x61\x72\x69\x8a\xaa\xbb\x0d\xed\x70\xaa\x9b\xe2\xf7\xba\xea\xb2\x12\x0c\x43\x50\x43\xa1\x1e\xfb\xac\x2d\xda\x6d\xba\x23\x47\x36\x1c\x3a\x22\x8d\xba\xb9\x0c\xe6\xdf\x01\x61\x7a\xd5\x07\xf6\x8c\xc4\x76\x91\x83\x59\xd5\xcd\x39\x2b\x6f\x11\x90\xd4\xc2\x31\x86\x0b\xbe\xa2\xf4\x60\xf6\x1d\x75\x73\x5f\x2a\x71\x9b\x6f\x8d\x1a\x09\xb3\xa3\x29\xbd\xeb\x41\x7e\x95\x20\x24\x8d\x5f\x8d\x95\x1b\x6f\xae\xac\x69\xea\xd7\x07\x64\x3a\x71\xc0\x3d\xcf\x9e\x3c\x4a\xa5\x2c\xce\xd9\x0b\x9b\x88\x7f\x92\xe2\xfc\x62\xe4\x56\xb6\x36\x17\xcc\x1d\x54\x24\x1b\xbd\x42\x43\x8a\x44\x8e\x65\x3a\x3b\x3f\x37\xfc\x70\x23\xc2\xdd\x4b\x44\xf3\x11\x9b\xbb\x66\xe2\x4a\xc1\x0d\x6e\x04\xc1\xdd\xcf\xc8\xe4\x0d\xc6\xae\xac\x44\x44\x52\x2d\x18\x6c\x07\xe7\xe7\x17\xf2\xd6\x83\xb1\xe7\x28\x40\xff\x97\x00\xa8\xe9\x71\xd0\xb0\xe6\x46\x62\x24\xac\x4b\x18\xa6\xf8\x20\xab\xa8\x47\xb9\xa8\x25\x91\xf7\x98\x40\x14\x43\xd7\xc1\x04\xd9\x90\x09\x54\x3e\x72\x11\xcc\x25\x8a\x48\x6d\x06\xf7\xd8\x62\x4b\xde\xc5\x01\xdd\xa3\xab\x19\xd7\x43\x11\xe0\x66\x27\xc5\x83\xa3\xe4\x23\x1a\xdd\xa9\x8c\x68\xfa\xf8\xda\x84\xe0\xed\xea\x44\xc2\xe3\x0c\x62\x74\xc1\xa9\x11\xd7\x88\xf8\x0a\x05\xc0\xed\xfa\xc4\x81\xa3\xe4\x23\xf4\x53\x57\x26\x7c\x3d\xea\x87\xdb\x32\xd3\xa4\x27\x2a\x21\xf9\xc4\xfa\xdc\x5e\xf7\x5d\xd1\x95\xcc\xfe\x8e\x7d\x6c\xbb\xa6\xd6\xfb\x92\x87\x6b\xd3\xb0\xaa\xfb\x87\xfe\x0f\x7f\x3b\xf0\x56\x64\xc7\xce\x19\xa0\xff\xbf\xbf\x70\xe7\x79\x5a\x8d\xba\x6d\x87\xd5\x6e\x16\xbc\xe4\x86\xe3\x84\x6e\xb9\xe1\x58\xfe\x6b\x6e\xdc\x15\xc0\x6e\xfc\x69\x1f\xe1\x66\x86\x4c\x80\x24\x68\x3d\x44\xcf\x61\xbe\xd9\xbf\x3f\x0b\x77\x62\xf8\xb6\x7f\x9f\x5b\x9f\x16\xee\xa7\xe5\xfe\x7d\x61\x7d\x5a\xed\xdf\x97\xd6\x27\xf1\x20\x07\x97\x45\x2f\xf8\x54\x92\x32\xe2\xd6\x63\x2a\xc7\x82\xea\xc6\x34\xfd\x99\x90\x7d\xff\x3e\x77\x58\x01\xef\xd4\x42\xe8\xe5\x03\xe5\xfc\x81\x09\x50\x23\x50\xbc\xd9\xf0\xa7\x62\x9c\xf6\x02\x40\xeb\xcd\x6c\x01\xc8\xf4\x6d\x05\x21\xac\x16\x7f\x9b\x6f\x74\x90\xc9\x66\x78\x35\x49\x24\xed\xd6\x54\x56\x6f\x8b\x95\x4e\xa7\x35\x3c\xae\xb4\x58\x01\xb0\xe5\xe2\x6d\xb9\x50\x60\xcb\xe1\x0d\xa8\xe5\x02\x80\xad\x9e\xde\x56\x4f\x0a\x6c\xf5\xa4\xc1\x56\x4f\x00\x6c\xb3\x7a\xdb\x68\xa6\x9b\x81\xe9\x06\x32\x7d\xde\xbc\x3d\xeb\x2a\x3c\x6f\x8c\x97\xbc\x00\xd8\x7c\xf1\xf4\x36\x5f\x68\xb6\xf3\xc5\xc0\x77\x2e\xc2\x56\xe0\x59\xbf\x73\x06\x8d\xa8\x36\x30\x62\x22\x2d\x9d\xdc\x96\x7b\x40\x8d\x19\x80\x3f\xd4\xb9\x6d\x07\x2f\x0d\x33\x82\x0c\xe4\xc1\x93\x0d\xc1\x11\x4d\x30\x1e\x01\x63\x42\xfd\xaa\x2e\x85\x92\x57\x79\xb5\x69\xe1\x86\x45\x40\xab\xcc\x5f\xf2\xaf\x3d\x3b\xd6\x0d\xeb\xbd\xf0\x17\x5e\xb1\x7e\x91\xf0\xc0\x8f\x89\x00\x34\x55\x2c\xd0\x85\x65\x5e\xa7\x3f\xeb\xec\x63\xc3\x9d\x61\xfe\x5b\x99\x75\xec\x3f\x7f\x9b\xae\xd3\x9f\x1f\x12\xfd\xe1\x9f\xe4\x07\x99\x04\x4d\xe6\x40\x1b\x12\x8f\xc1\xda\x0e\xc7\x75\xe8\xe5\x55\x17\x58\xa6\x41\x27\x6e\x3e\xba\xf0\x32\x07\x38\x19\xfc\x61\xc3\x8b\xf4\xd7\xd8\xa5\x2c\x17\x56\x67\x80\x26\xae\xf6\xb8\x18\xe2\x34\xd0\x95\xb1\xc2\x78\xaa\x03\x42\x1b\x5c\x27\xc7\x25\xa2\xdd\x91\x16\x56\x69\x60\x89\x60\x69\xac\x19\xbc\x8f\x81\x7f\x0c\x2b\xc6\x51\x69\x0e\xe5\x4c\x6e\xfc\xee\x4c\xde\x6a\x88\x1b\x0b\x75\xed\xcd\x08\x23\xac\x57\x9d\x3a\x8d\x95\xfa\x32\xdd\x67\x98\xcc\xc2\x5b\xf0\x22\x7e\xcf\xca\x2b\xa6\x83\x4a\xad\x0c\x54\x9e\xec\xca\xcf\x10\xc3\x6a\xa7\xc7\xa2\x2c\x43\x77\x76\x65\x40\x97\x42\xd4\xc3\x63\x84\xc8\x7c\xd8\x60\x04\x22\x04\xa7\x71\x49\xf1\x1d\x14\x71\x3d\xf6\xfe\x26\x36\x69\xdc\xd1\xd6\x00\x3d\xd0\xe8\x10\x4b\x5c\xfb\x1c\xd1\xd0\xd2\x84\x60\x34\x62\xda\xda\x87\x4e\x37\x37\x82\xc5\xef\x32\xc6\xcb\xbd\x30\xc7\xaf\x81\x1f\x21\x33\x89\x4a\xca\xeb\x60\xa8\x6b\x6b\x23\xe4\x95\xc6\x14\xa7\x12\x23\xb5\x9f\x00\x2d\x3b\x82\xc7\x6f\x88\xc5\xcb\xae\x6c\x38\x42\x22\x42\x70\x1f\x36\x29\x35\x86\xc4\xaf\x61\x7d\x4e\x6a\x49\xe2\x4e\xa9\x15\xf6\x28\xa9\xd5\x65\xa2\x11\xaa\x22\x27\x40\x9c\x4a\x8c\xaa\xf8\x09\xd0\xaa\x82\xe0\xa9\x7b\x31\x23\x2c\x8a\x9c\x8d\x71\x2a\x31\x36\xc5\x4f\x80\xb6\x2a\x08\x9e\xbc\xe9\x11\x2f\xbd\xed\x1a\x00\x22\x11\xc2\xfb\xf1\x49\xd9\x31\x34\x79\x68\x30\x3c\x4a\x2a\x96\xc6\x60\x1c\xf1\xb3\x01\x0d\x21\xd6\xc1\x62\xd7\x9a\x98\xe4\x86\xc7\x01\xf5\xf3\x79\x58\x42\x63\x05\x36\x33\x9e\x3e\x92\xf0\x01\x6f\xd7\xce\x14\x3a\x24\xa8\x55\xd3\x95\x49\x5b\xbd\x11\x64\xd0\xf6\x3b\xc7\x3b\x2c\x4b\xe2\x0e\xab\xe1\xcc\x78\x4f\xc7\x20\xef\xf7\xa5\xf1\x3c\xa7\xe6\x34\x60\x92\x97\x0f\xcf\x18\xd4\x69\xcf\x7b\xe7\x24\x0a\xb4\xaf\xdd\x9b\x94\x87\xc7\x5a\x0c\xe2\x21\x57\xdd\x66\x21\x3e\x52\x6d\x23\x9f\x6c\x01\xad\x55\x59\xd5\x01\x30\xa7\xa0\x9b\x8f\xe7\xaa\xa5\x04\x18\x1e\xcd\x30\xe8\x87\xd6\x05\x76\x1d\xc5\x47\x8a\xc5\xf0\x9e\x84\xa9\xbc\x81\x85\x84\xad\x03\xe2\x23\xc5\x42\xbf\xb4\x00\xb4\xc0\xbb\xf0\xd8\x61\x39\xd4\x48\x06\xe2\xd8\x0c\x32\x10\xdf\x6e\x6e\x8c\xb9\x5a\x63\xfc\x6c\x35\x35\xdf\xf3\x65\xb9\xd5\xd6\xf2\x2b\xad\x50\x64\xd7\x49\xcc\x24\x9b\xe0\xdf\xc5\x7e\x2a\xce\xce\x40\x3a\x21\x48\xe8\xbe\x45\xec\x5b\x9f\x12\xae\xb9\xbb\x7a\x0d\x21\x69\x33\x52\x52\x08\x6f\xd8\x5b\xab\xe0\xe4\x26\xb4\xdd\xf9\x1a\x40\x3d\x5e\x1a\xf1\x68\xa9\x46\xd2\xcf\x93\xde\xf1\x2c\xa9\xff\x39\xd2\x7b\x9e\x21\xe5\x38\xdc\xd0\xf3\x72\xb3\x75\xe0\x57\x4b\xc0\xb9\xae\x11\x04\xc3\x85\xf2\xc1\xe0\xa2\x41\xfa\xc3\xd3\x19\xe6\xaa\x5d\x17\xf3\x48\x2a\x58\x79\x75\xcc\xad\xfa\xf6\x41\xe5\x66\x46\xcc\x4c\xff\x83\x51\xe3\xf8\x5d\x53\x5c\x7a\xa1\xef\x20\x6c\xce\x24\x83\x9d\x80\xad\xa2\xbe\x9d\x86\xec\xcc\x3c\x4b\xa2\xd8\x89\xeb\x46\x88\x51\x75\x27\xd1\xa4\xdf\xd8\x77\x56\x3d\x78\x6b\xfa\xd2\x06\xaf\x17\xc0\x18\x20\x6f\x1c\x56\x4f\x2f\xe9\xff\x8b\x46\xac\x0c\xc5\xa1\x60\x82\x01\xdc\x17\xba\x63\x40\x85\xde\xab\xe7\x90\xfc\xd8\x05\x09\x27\x50\x07\x52\x58\xa4\x01\xfa\x9d\x08\x3d\xe8\x25\x01\x41\x7b\x46\x43\x0c\x4f\x9c\x20\x40\xc8\xcb\xdc\xf7\x5d\xc7\xa5\x89\x9b\xd2\xdf\x7b\x77\x98\x53\x8f\xb9\x88\x6b\x03\x22\x2d\x21\xae\x55\x80\x27\xe8\xd5\x4d\x0b\x85\x1d\x8a\x60\x03\x70\x54\x3b\xc2\xd7\x43\x5c\xfa\x31\xea\x28\xaa\x3e\x6c\x66\x63\x23\x86\x74\x5c\xa1\x43\x8c\x5d\xa8\x23\xee\xec\x80\x1b\x62\xe2\x95\x6f\x78\x61\x4b\x7c\xc3\xee\xb3\x01\x69\x13\xb5\xe7\x6f\xb5\xb5\xfd\x86\xfc\x54\x45\x2b\x39\x1b\xf7\xbe\x55\x85\xb3\x86\xb0\x70\x03\xab\x06\x38\xd3\x5b\xb8\xa1\xed\x75\xf7\x84\x81\xf6\xf2\x43\xa8\xe1\xed\x76\x07\x45\x39\xe1\x8e\xd4\x3e\x4f\xdc\x5b\xe1\xa0\x93\xed\xc5\x0e\xfa\xcf\x5e\xec\x90\x6f\xec\x45\x76\xe3\xe8\x1a\x54\x93\xdc\x98\xb9\xf9\xda\x85\x14\x67\xf8\xe6\x38\x26\x07\x28\x57\x66\xf5\xaa\x0d\x34\x30\xf3\x27\x44\x9d\x25\xe9\x81\x52\xc8\x64\x08\x2a\x31\x23\x05\x91\xda\x9d\xbb\x68\x79\xe9\xe1\x87\x0c\xdf\xf9\xe5\xcd\x38\xbf\x70\x63\xdb\xa4\xeb\xe8\x21\x17\x79\x4a\xe7\xa8\x83\xe9\xfd\x5a\xf1\x0c\x9e\x57\x8b\xe0\xe3\x44\x89\x31\x4f\xf8\x98\xab\xfd\x13\x7d\x1c\xbb\x16\xbe\x9e\xa7\x42\x0a\x67\x3d\x1c\xc6\x0b\xf7\x11\xc7\x51\xcf\xdf\x11\xc5\x94\x3f\x27\xee\x86\x7b\x44\xe1\x97\x01\x3c\x87\x45\x0e\x22\x87\xea\x97\x44\xe8\xb9\xd5\x87\x11\x33\xc3\xff\xb9\xbd\xd6\x4d\x3e\xdd\x37\x2c\xfb\x6d\xcb\xff\x3b\xed\x3f\x0c\x60\x09\x3b\x0f\x6e\x4d\xd2\x5e\xb2\x4a\x22\xf2\x82\xe1\xeb\xcd\xbc\x9f\xa9\xa2\x93\x07\xc4\x5e\x4e\x05\xce\xa7\x70\x6b\x4b\xea\x5c\xe4\x79\xc9\x3e\xa4\x4c\xe4\x45\x50\x11\x1b\x0a\xee\x82\x6e\xd2\xd4\x7a\xd3\x6c\xbe\x58\x7f\x28\xc9\xcc\x55\x9c\x94\x6a\x87\x4a\xca\xe1\x7f\x99\x9d\x8a\x97\x93\x98\x2c\xc0\x5b\x57\x32\xb4\x1b\xb8\x77\xdc\xcc\xf6\x93\x65\xfe\xf0\xcb\xcc\x6c\x52\xb7\x54\xe1\x01\xa2\xda\xd7\xeb\x4b\x78\xf4\x80\x99\xae\x02\x16\x2d\xcc\xfc\x17\x36\xde\xd2\x2c\x84\x45\x2b\x24\x88\x46\x17\xae\x51\xf3\xa9\x4a\x37\xae\x0d\x56\x45\x8f\x58\xa6\x6b\x55\x45\x70\x1b\x7a\xe7\xc6\x43\x9b\xad\xbf\x72\xfa\xae\xef\xba\x41\xdb\xcc\xde\x03\xda\x30\xf4\xbd\x99\xa8\x3a\xc9\xd4\xad\x19\xe3\x5b\x59\xcc\x86\x4c\x41\x99\x71\xdd\x76\x57\x5f\xb2\x43\xd1\xbd\x6f\xe7\x03\x4b\xbc\x1b\xcc\x52\xac\x27\xcc\x72\xb7\x33\xcc\x52\xac\x3f\xcc\x72\xb4\x4b\x4c\x00\xb7\x57\xcc\x52\xac\x63\xac\xdc\xdd\x5d\x7d\x3d\x9c\xa6\x87\xac\x2c\xeb\xab\xce\xde\x5d\xff\xee\xe6\xf4\x46\x92\x7c\x8f\x39\x41\xb7\x0d\x96\x9d\xd7\xf8\x21\xe6\x90\x9d\x78\xe9\x0c\xbc\x38\x39\xc4\x9a\xa7\xd6\x5d\x81\xa1\x2d\x74\x68\xd5\x82\x3f\xde\x38\xbc\xe6\xa8\xff\x96\xd3\x9c\xf5\xb6\xa3\xfe\xdb\x28\x46\x92\x66\xe8\xc9\xd2\xdd\x67\xdf\x0d\x98\xde\x18\x18\xc2\x27\xfe\xec\xb4\x78\xc8\x9a\x7c\xc2\xff\x3b\x95\xd1\xf4\x79\x53\x5f\xf2\xfa\xb5\x9a\xcc\xca\x3a\xcb\x59\x83\x45\xd3\xa1\x73\xe7\x02\xce\x9d\xfe\xa9\x72\x61\x54\x57\xce\x8c\xfe\x89\xd0\x52\x8f\xe5\xc3\xc0\x81\x98\x01\x2d\x8c\x95\xc6\x98\xe9\x1b\x1f\x66\xc8\x99\xd1\xe9\xfa\xef\x21\x0c\x0d\x3c\xe8\xb9\x01\x9d\xee\x04\xac\x0d\x5c\xe0\xf1\x0d\x0f\x59\x33\x75\x6b\x05\x75\x6b\x65\xe9\xd6\x0a\xea\x96\x1d\xf0\x36\xb0\x01\x47\x40\x3c\xe2\xcd\xe0\xa2\xff\x1e\xa2\xe0\x4c\x2e\xfa\x6f\xa3\xd8\x8c\x97\x3b\x31\x1e\x7a\x79\x23\x1f\x11\xec\x5d\xa6\x92\x75\x5d\x6f\x0c\x7a\x7b\x59\xbd\x70\x2f\x0a\x6e\x5b\xf0\xdc\x4a\x83\xcd\x45\x76\x3f\xf4\xbc\x1a\xbb\x03\x32\x4c\xc4\xf6\x84\x61\x3d\xd6\x69\x3c\x55\xa6\x71\x78\x90\x9b\x4e\x84\xc1\x63\x41\x21\xd6\x87\xd2\xfe\xd8\xe7\x25\x77\x7f\xcd\xe0\x5e\xe3\xf9\xcb\x70\x9c\xef\xc7\xac\xba\x9e\xf7\x7d\x55\x46\x6c\x25\x10\x42\x63\x7b\x0a\xee\x0c\xae\x14\xd8\x93\x24\x64\x50\xeb\x99\xb1\xdb\x20\xf7\x65\x12\xe7\xda\x96\x44\xc3\x8e\x29\x07\xad\xfa\x82\x29\x2c\x98\x75\xca\xba\xea\xa3\x54\x68\xfa\x26\x03\x8a\x91\x1d\x92\x73\x9d\x67\xe5\xf4\x50\xd6\x2d\x9b\xcc\x2e\xd9\x4b\x51\x71\x7d\x9a\xaa\xf4\x2b\xe0\xa3\x38\x7f\x33\x3e\x54\xec\xad\x03\x1f\x2e\x0d\xfb\x5e\xd4\xd7\xd6\xf7\xd8\x06\x56\x57\xec\x09\x8e\x9d\xa7\xc5\x90\xa9\x6a\xcc\x04\x0f\xdd\x2e\xcb\xe1\x0a\xed\x03\x43\x64\xd3\x25\xf3\x6f\x60\x89\x47\x06\x67\x62\x71\xeb\xba\x7d\x20\x95\x0a\x10\x08\x24\xd1\xc8\x60\xc6\xa4\xf4\x23\xce\x5b\x94\xbe\x48\xce\x8e\xd9\xb5\xec\xb0\x3b\x0e\x16\xa1\x5f\xca\x62\xab\xe6\x50\xfb\x50\x4a\x8e\xef\x3f\xfd\x04\x70\xea\x12\x34\xe4\xb5\x8c\xdb\x50\x47\x2f\x4a\xc6\x3d\xed\xe2\xee\x34\xd8\xdb\xe7\x56\x53\xdb\x9b\x1e\xc8\x9b\xca\x03\x34\xd8\xb8\x85\x95\x03\x45\xd7\x92\xdc\xff\x85\x18\x62\x9f\xd5\xa5\x24\xbe\x23\x64\x86\x2d\x5e\x88\x40\xe5\x01\x82\x50\x74\x32\x20\x08\x47\x65\x04\x32\xa0\xf8\x4e\x7a\xd3\xd4\xaf\xd3\x96\x5d\xb2\x26\xeb\xea\xc6\x51\x11\xa9\x14\xff\xed\xbf\xfe\x1f\x3f\x39\xb8\xfb\x6b\x59\xb2\x2e\x02\xf9\x7f\xfd\x3f\x5d\xe4\xbc\x8e\xc0\xfc\x7f\xff\x6f\x17\x91\xef\x22\xb2\xbc\x8d\xe0\xfb\xbf\xff\x3f\x3f\x09\x77\x93\x8c\x19\x31\x12\xbe\xf6\xb3\xe8\xf2\xf2\x66\x3f\x76\x32\x7f\x98\x88\x57\xbd\xe6\x58\x99\xb5\xff\x6d\x4f\xe8\xdc\xc9\xed\xdd\x19\x6b\x2a\x54\x76\x1e\x08\x30\x97\xf9\x14\x5d\x26\xd0\x4e\x19\x44\xa7\x62\x79\x8b\x8c\x48\xb8\x3e\xa5\xc7\x27\x4c\x60\x35\x18\x35\xb9\xb9\xe0\xf0\x8a\x3a\x20\x31\xb1\xa8\x14\x5f\xc4\x32\x2a\xe2\xc8\x00\x0a\x27\xae\xdf\x58\x77\x6f\x79\x89\xc4\xd6\xe7\x8d\xfa\x0a\x6d\x5f\x78\xac\x6b\xe3\xe9\x33\x7e\x4b\xc5\xf1\xa2\x42\x33\x33\x20\xc5\xe1\xe2\x6c\x63\xf8\x46\xf9\x98\x06\x30\xd8\x93\x67\x61\x8d\xda\x69\x84\x35\x14\x14\x92\x19\xbf\x3f\x1f\x9b\x92\x40\x2d\xd6\x6e\x98\x63\x86\x79\x4b\x0a\xc1\x98\xc4\xf4\xb7\xe9\x99\x55\xd7\x09\x00\xd1\xa7\xd2\x2a\xf1\x25\x80\xb5\x7b\xda\xc4\x94\x27\x5e\x10\x9e\x4f\x02\xdc\x51\xd2\xa7\x5d\x26\xce\xf5\x62\x23\x28\x9f\xdf\xf0\xe3\x55\x13\xac\x86\x7d\x69\xae\x32\xe2\x5d\xe2\xfe\xb7\x9e\xc1\x07\x21\x29\x77\x59\xe4\x6d\x2b\x63\x09\xb7\xb0\xaf\xd3\xaf\xcc\xbb\x36\xe0\x46\x22\x97\x45\xdd\x43\x5c\xa4\xd2\xbf\x9b\x48\x37\x6f\xb0\x6d\xf2\x3e\xa0\x75\x83\x6b\xb8\x45\xaf\xe5\x53\x43\xc3\x1b\x4a\x87\xbf\x46\x7f\xaf\xa1\xb4\x9a\x72\xe6\xe6\x21\x80\xea\x25\xc6\x13\xdc\xb8\xa3\x16\x84\xb3\x27\xb1\x05\x0b\xb7\xed\xd6\xc3\x78\x59\xf2\xf2\x04\xbf\x2a\xff\x31\xeb\xbb\x6b\x5a\x16\x6d\x37\x99\x9d\x59\xdb\x66\x2f\x4c\x19\x6d\x67\x23\x30\xb3\x04\x84\x67\x96\x3c\x45\x02\xe2\x90\x5b\x58\x81\x48\x0a\xeb\xd4\xd1\x42\x1e\x86\x51\xdc\x31\x9c\x46\xce\x8b\xef\x45\x8e\xb2\x05\xab\x46\x98\x1a\x15\xae\xf1\xf4\x22\x5b\xf4\x56\xd2\xab\x22\xcf\xbd\x21\xfe\x99\x88\x7f\x7e\x11\xff\xe0\xc6\x55\x3e\xf0\xf2\x3c\x51\xff\x9b\xad\x1f\x3e\x66\x25\xfb\xce\x4a\x79\x33\x4c\xf7\x46\x92\xe9\xfe\xc0\x12\x6d\x73\x1c\xcc\xe2\xda\xd6\x93\x77\xc5\x74\xcf\xba\x57\xc6\x2a\x89\x17\xbb\xe4\xe7\xc0\x9c\xbc\x79\xb3\xd7\xfc\x6a\x7e\xe2\x0e\x5a\xbd\x2f\x4a\x96\x18\x30\x11\x79\x55\x44\xfd\x8b\xf3\x8b\x6d\x55\x45\xfb\x63\x66\x75\xa0\xef\x30\x27\xa5\xe9\xed\x03\x59\xd8\x88\xa8\x55\xd1\x77\x70\x9e\xf3\x90\xfb\xc5\xc4\x36\xcf\x12\x52\x12\x8d\x0f\x1c\x34\xdf\x50\xa8\x11\x67\x44\x3e\x8f\x11\x19\x60\x84\xd6\x20\xd5\xfb\x35\x96\x99\x51\x79\x6f\x2f\x4f\xcc\x96\x89\xd2\x07\x2b\xd7\x88\xd1\x5a\x88\x96\x1b\xae\x04\x9f\xde\xe8\x3d\x67\xca\x4d\x73\x74\x42\x76\x62\x34\x65\xaa\x29\x78\x24\x5b\xc9\xde\x8a\xfd\x30\x58\x9c\x56\x30\x81\xa8\xf6\x8d\x19\xdd\xc6\x22\x32\x2a\xf1\x50\xfc\xb8\x04\x5a\xe9\x57\xf6\xf9\x0c\xf4\x99\x28\x8f\x15\xbe\x5f\x0b\x8e\xd5\x60\xa4\xdb\x80\x4e\x4b\xc3\x0c\x64\x30\x92\x57\x3b\x11\xac\xd2\x8c\x2b\xb9\x22\x5b\xc6\x34\xfe\x30\xf7\x0f\x98\xd9\x11\x68\x9a\xd5\x04\x81\x8b\xc9\x98\x85\xf1\x10\x82\x21\x5e\x06\x02\xa6\x66\x2d\x33\x39\xae\x01\x8c\x14\xcf\x6d\x17\x66\x3e\x80\xcf\x86\x44\x2c\x2e\x9e\xeb\xfc\xcc\x4d\x56\xb2\x6f\xc5\xef\xa3\x87\xe4\x40\x02\x9a\x15\x43\x38\xa8\xbf\x22\xe4\xc2\x28\x55\xde\x21\xcd\xd4\xca\xf3\x86\xa9\x53\x75\x75\x4e\x05\xfb\x8f\xbe\x8d\x0e\x55\x4e\x6f\x71\x28\x08\x6a\x73\xc3\x70\x1d\x6e\x78\x64\x9a\x3c\xb4\x42\xf6\xee\x0c\xdc\x48\xff\x4c\x05\x2b\x1b\x98\x63\x9d\xb3\x01\xb5\x2c\x92\xab\x7e\x0e\x5c\x45\xc1\x58\x0b\x52\xe5\x7b\x81\x68\xb9\x21\x80\x4e\x91\x33\xf3\x56\x8b\x1c\x45\xa6\xaf\xcc\x91\xad\xd3\x93\xd9\x1c\x62\xd3\x61\x43\x5c\x59\x31\x60\x8f\x2b\x25\xc0\xa5\x1f\x47\xb5\xa9\xab\x2c\x1c\x21\xd6\x4f\x93\xe0\xbe\x10\x79\x05\x02\xf3\x15\x88\x3f\xba\xec\x05\xcb\x5c\x20\x14\x3b\x67\x87\xba\x11\x07\x32\xd7\x2a\x67\x4d\xef\x98\x69\x72\x7e\x85\xd6\x20\x3e\x9d\xd6\x40\xb4\x5a\x6b\x10\xef\x85\x7f\x1b\x2e\xb1\x97\x33\x51\x41\x8e\x34\x15\x9e\xe2\x8d\xbc\x68\xb5\xca\xfb\x1f\x80\x4f\x85\x47\xaa\x00\x6d\x1b\x34\x42\x60\x24\xb2\x92\xa6\x82\x08\x0c\xf1\x91\x3a\x93\x61\x99\xae\xcc\xf2\xcd\xe1\x70\x23\xbb\xf7\xb9\x68\x2a\x58\x23\x03\xfc\xd5\xb1\xff\x01\x24\x88\xc8\xd0\xe3\xd3\x31\x3b\x1e\x1c\xc8\x08\x89\x91\x98\x52\x92\x08\x22\xb0\x81\x3e\x3f\x2c\x9e\x85\x91\xd4\xe8\x74\x30\xea\x71\x73\xcc\x8f\x7b\x0c\x38\x46\x66\xf7\x76\x8d\x8f\x0e\x26\x36\xa0\x30\x4f\x97\x8f\x8b\x27\xab\xab\xd0\xe0\xd7\xe3\xfa\xf8\x64\xb1\x13\x4f\x80\x06\x65\x46\xa7\x04\x82\x08\x22\x30\x44\x4f\x37\xab\xcd\x01\x36\x75\x51\x1d\xeb\x38\x81\xc5\x13\x9b\x9f\x14\x18\x12\xb9\x47\x60\x3a\x46\xf8\xf8\x78\xcc\x8f\x8f\x18\x70\x8c\x6e\xb8\x01\xc6\x3e\x3a\x98\x6e\x00\x0a\xf3\xc7\xd5\x62\x0e\x15\xd5\x13\x9f\x7c\x3c\x66\xd6\x08\xd2\x8f\x31\x86\x6d\x87\x1b\xdc\xec\xa3\x83\x59\x0f\x40\xe1\x71\xb1\x64\xe9\xde\x1a\xce\x44\x6c\x74\xdf\xe0\x56\x93\xab\x17\x05\x83\x72\x23\x71\xd5\x1e\x32\x88\xd8\x90\xc0\x53\xb6\x5c\x2c\x06\xb1\xb1\x43\x15\x32\xbe\x00\x5e\xe1\x75\x9f\xd1\xda\x21\xc1\x4d\xe8\x39\x04\xd8\x48\x42\x9c\x48\x7c\x6f\xd1\x14\x58\xdf\x56\xa0\x57\xeb\xe0\xf0\x52\xb9\x75\x26\x8d\x5f\xd0\x56\x73\xae\xcb\xd0\x57\x5d\x8c\x12\x79\x46\x8c\x10\x44\x9f\x4f\xb2\xf7\x85\x61\x03\x9b\xaf\xc1\xcd\xe5\x73\x3b\x26\x65\xbd\xbf\x67\x7c\xba\x50\x61\x66\x1f\x0e\x9c\x9d\xff\xc9\x0d\x52\x91\x1b\xe3\xbe\x53\x18\xbe\xb9\x49\x1c\xaf\xe8\xe0\x9c\x53\x91\xe7\x7d\x07\xab\xde\x3c\x16\x6f\x2c\x77\x37\xe0\x0d\x67\x1f\xee\x27\x39\xfb\xf2\xee\xb6\x7e\x28\x74\xec\x69\xf3\xa0\xc3\x38\x78\xbc\x9c\xfc\x5d\x2e\xcd\xe4\x4a\x20\x4d\xec\xe0\x41\xfe\xce\xd4\x3c\x4d\xbf\x9f\x92\x69\x32\xdf\xa4\x97\xb7\x87\x1d\x0c\x3a\xa2\xc2\xe9\xf9\x89\xe5\x88\x6d\x88\x08\xe1\x74\x90\x13\x26\xdc\x8a\xcb\xa6\x32\x9b\xa5\x17\xbe\x67\x31\xc4\xad\xdc\x9c\xc0\x91\xbf\x6a\x6c\xe6\x57\xc5\x63\xc2\x74\x65\x6a\x23\xbd\xaf\xae\xad\x5e\xcd\x40\xad\x1f\x98\xfc\x17\x99\x1e\x8e\x07\x6a\x1a\x6d\xa3\xa2\x35\xcd\x4f\xde\x90\x4d\x32\x78\x4b\xa7\x29\xc3\x0f\x9e\x3e\x97\xb8\x2c\x14\x08\x8a\x88\x8f\xc7\x75\x3a\x55\x27\x82\x3b\x4d\x38\x19\xe1\x69\x7e\x8a\x0f\xf3\x04\x0c\xe3\x63\x3d\x0d\xb4\x1f\x1d\xf0\x69\xb1\xfa\xa1\x51\x9f\x16\xaf\x1f\x19\xfa\x39\x18\x15\x24\x95\xb8\xf3\x14\xa9\xdf\xb4\x58\xe6\xdc\x24\xce\x0f\xcd\x27\xe6\x87\x7e\x6a\x1d\x15\xad\xe8\x8a\x17\x11\xe6\xa4\xa7\xc8\x45\x8a\x27\x56\x34\x24\xea\xa7\xbd\xc9\xac\xca\xbe\xef\xb3\x46\xfd\x1b\xde\x01\xb0\x6a\x04\xee\xc2\xd2\x53\xba\xed\x3c\xac\x3d\x0f\x1c\xad\x61\x3f\x4d\xd1\xdb\x31\x64\x64\x83\x93\x50\x1e\x9c\xb0\x3a\x7d\xe4\xb9\x28\x6c\xc8\x88\x5d\xf5\x85\x55\xc0\x62\x1f\x2c\x56\xfa\x61\x19\xff\xe9\xcc\x3c\xb5\xea\xcf\x7d\x26\x7a\x6b\xd4\x9a\x7c\x8d\xfe\xff\x90\x9d\x3a\xed\xb2\xbd\x48\x47\x32\x04\x58\xea\x20\xcf\xf6\xd0\xd4\x65\xd9\xa3\xf0\x78\x49\x85\x73\x33\xc7\x94\xbc\x6c\x8c\xe5\xe9\x84\x5a\xe3\xa8\x51\xa2\x44\xd8\x37\xfd\x5c\xaf\xfe\x12\x11\xa1\x5e\xd8\x5f\xd5\x5f\xe6\x31\xbd\x4e\x24\x19\xcd\x65\x66\xbc\x94\x14\x8f\xa5\x6e\xd4\xf8\x25\xcc\x4c\x11\xa3\x19\x41\x34\x7a\x27\x78\xd1\xff\xd8\xdb\x48\x23\xaa\x00\xf2\x33\x5b\xa9\xf5\xbc\x5e\xd8\x3c\xed\xad\xf2\xc3\x8d\x64\xc6\xee\x68\x63\x1b\x27\xd4\xc2\xec\x9e\xf6\x75\x90\x42\x5c\x38\x61\x1e\x2c\x88\x84\x10\x45\xe9\xaa\x43\x41\x05\x15\x45\x61\x73\x9b\x3d\xba\x2d\x5d\xac\x50\x3d\x39\xc6\xf8\xf6\x44\xd0\xbe\x48\x5f\x6d\x75\xf0\xf7\xa9\x29\xc0\x98\x66\x09\xd5\xec\x1e\x13\xe3\x28\xb2\xf2\x95\x47\xf4\x96\x6f\x68\x92\x74\x94\x82\x25\x44\x37\x46\xed\xbd\x9b\xe4\x47\xa4\x16\xb0\x90\x22\xad\x3a\x02\x8b\x36\xf9\x48\x16\xb8\xe6\x86\xb0\xdc\x21\x82\x89\x17\x31\x44\x82\x68\xe4\x10\x49\xd3\xf4\xce\x56\xc5\x35\xa6\x27\x32\xd6\x92\x43\x4e\x71\x96\xdc\x8f\x13\x6a\xd8\x48\x4b\x1e\x40\x0a\x71\xb9\xc7\x92\x07\x28\x04\x2c\x39\xc4\x8e\xb5\xe4\x21\xac\x50\x3d\xa3\x2d\x79\x10\xed\xd3\x6a\xea\xb3\xe1\x6e\x6f\x52\x36\x3c\xd4\x20\xa1\x3a\x8d\x36\x28\x11\x06\x3c\xd8\x49\xe4\x70\x24\x89\xdc\x61\xbd\x5d\x3b\x6c\x92\x0f\xe4\x7b\x34\x8f\x02\x2d\xa4\x48\xeb\x8d\xc0\xa2\x8d\x3d\x92\x05\xae\xad\x21\x2c\x77\x58\x60\xe2\x45\x0c\x8b\x20\x5a\x20\x69\xc5\x9d\x0d\x8b\x6b\x4c\x4f\x64\xac\x01\x87\x9c\xe2\x0c\xb8\x1f\x27\xd4\xb6\x91\x06\x3c\x80\x14\xe2\x72\x8f\x01\x0f\x50\x08\x18\x70\x88\x1d\x6b\xc0\x43\x58\xa1\x7a\x46\x1b\xf0\x20\xda\x57\x68\xaa\xcf\x86\xbb\x1d\x4a\xd9\xf0\x50\x9b\x84\xaa\x35\xda\xac\x44\xd8\xf0\x60\x3f\x91\x23\x92\x24\x72\x8f\x07\xee\x58\x63\x93\x7c\x7c\xbe\x2d\x88\x13\x69\xc1\x5d\x50\x7c\xb6\x1c\xcb\x03\xd7\xd7\x00\x92\x3b\x2e\x10\xf1\x22\x86\x45\x08\x8b\x1c\x15\xf3\x6c\xb1\x59\x2e\xef\x6e\x58\x62\xce\x17\x64\xc6\x1a\x71\xc0\x2b\xce\x86\x7b\x51\x02\x8d\x1b\x69\xc1\xfd\x38\x01\x1e\xf7\xd8\x6f\x3f\x81\x80\xf9\x06\xc8\xb1\xd6\x3b\x80\x14\xa8\x63\xb4\xed\x0e\x61\x7d\x8d\x92\xfa\x8c\xb7\xd3\x97\x94\xed\x0e\xb4\x48\xa0\x56\x77\xd8\x93\x08\xdb\x1d\xea\x25\xdf\x50\xa4\xc8\xdc\x61\xbc\x5d\x3b\x0c\xa9\x8b\x08\x93\x90\xc5\x30\x2b\x26\xc2\x97\xc6\x60\x88\x08\xad\x31\x18\x3a\x0e\x6d\x0c\x92\x0e\x50\x1a\x83\xa4\x63\x83\xc6\x1a\x4d\xb8\x50\x8a\x78\xa9\x69\x44\xe5\x82\x4d\x11\xb3\x62\x0c\xb3\xc1\xc7\x7d\x44\xdb\x3b\x16\x06\x17\x32\xc2\xc8\x44\x20\x92\x76\x66\x31\xcf\xd6\x8f\x8b\xdd\x27\x36\x92\x6c\xee\x71\xb3\x58\x08\x2b\xdc\x3c\x91\x73\x59\x10\x2d\xcc\xe9\x9e\x19\x2d\x48\x23\x30\xa9\xd9\xf8\xb1\xf3\x5a\x18\x2f\x5c\xdf\xe8\xd9\x2d\x02\x71\x84\xe2\x8d\xd0\x8e\x50\x07\x53\x73\x5c\xb8\x75\xc2\xd5\xbb\xc3\x6a\x44\xcc\x74\x11\xfd\x36\xc2\x84\x7e\x6a\xb2\x73\x82\x9b\x3f\xac\x69\x28\x2e\x58\x37\x7a\xea\xf2\xcf\x72\x31\xed\x1d\x60\x40\x2d\xab\xfd\x13\x2a\xb2\x7c\x77\x64\x8b\x5a\xbd\xfb\xb1\x3c\xbb\xaf\xeb\xd5\x71\xff\x19\xcb\x0c\x58\xc7\x6e\x10\x79\x50\x02\x4d\x12\xbd\x3d\xe4\xc3\x09\xf0\xb8\x6f\x73\xc8\x47\x20\xb8\x37\x54\x8d\x5f\x5c\x04\x90\x02\x75\x1c\xb1\x31\xe4\xc7\x1a\xa1\x5a\xb1\x2a\xe0\xed\x48\xca\xea\x06\x9a\x23\x50\xa5\xb1\xe3\x3f\x6a\x4b\xc8\xdf\x3f\x31\x96\x16\xd0\xb8\xc3\xcc\xba\x16\xd3\xa4\x4e\xdc\xa6\xf0\x9a\xd9\xc0\x9a\xc2\xbf\xfc\x88\x69\xe6\x00\x03\x5c\x49\x43\x2b\x1d\x67\x2c\x20\xb2\x45\x8c\x85\x10\xd6\x0f\x34\xb3\x80\x75\x9c\x99\xf5\xa2\x04\x9a\x24\xd2\xcc\xfa\x71\x02\x3c\xee\x31\xb3\x7e\x02\x01\x33\x0b\x90\x63\xcd\x6c\x00\x29\x50\xc7\x68\x33\x1b\xc2\xba\xcf\xcc\x7a\x55\xc0\xdb\x91\x94\x99\x0d\x34\x47\xa0\x4a\x63\xc7\x7f\x84\x99\x0d\xf5\x4f\x8c\x99\x05\x34\xbe\xdc\xcc\x8e\x7a\x27\xc2\x41\x8b\x34\xb6\x28\x74\x4c\x7b\x87\xd9\xe0\x0a\x1b\xb1\x87\xe3\x0c\x0d\x5c\xc8\x88\xd1\x11\x81\x48\xaf\x01\x9f\x9f\x0f\xcb\x4f\x6d\x3e\xd8\xdc\xe3\xcc\x6f\x08\x2b\xdc\x3c\x91\x46\x38\x88\x16\xe6\x74\x8f\x29\x0e\xd2\x08\x58\x63\x1b\x3f\xd6\x20\x87\xf1\xc2\xf5\x8d\x36\xcb\x11\x88\x23\x14\x6f\x84\x76\x84\x3a\x98\xb2\xcf\xe1\xd6\x09\x57\xef\x0e\xab\x11\x61\xa8\x23\xfa\x2d\xc6\x56\xdb\x64\xee\xd9\x7c\x70\xcc\x2e\x88\x83\x1c\xf3\x30\x8f\x83\x16\x69\xae\x51\xe8\x98\x86\x0f\xb3\xc1\x15\x39\x62\xf7\xdc\x8d\xea\x45\x85\x8c\x89\xeb\x0d\x23\xd2\x91\xbd\xcf\x4f\x73\x18\x87\x34\x3a\x7c\xdc\xe2\x1e\x19\x40\x1e\xc0\x0a\x37\x4f\x6c\x10\x79\x08\x2d\xcc\xe9\xae\x40\xf2\x10\x8d\x50\x28\xb9\x85\x1f\x1d\x4c\x1e\xc4\x0b\xd7\x37\x3e\xa0\x3c\x8c\x38\x42\xf1\x46\x68\x47\xa8\x83\x29\x73\x1d\x6e\x9d\x70\xf5\xee\xb0\x1a\x31\x61\xe5\xe1\x7e\x8b\x31\xd7\x36\x99\x7b\xa2\x5a\x1c\xb3\xeb\x1e\x8c\xc6\xdd\xd8\xb7\xb1\x22\x8d\x35\x06\x1c\xd3\xea\x41\x26\xb8\x12\x87\x8f\x7a\x91\xb8\x01\x44\xc2\xa8\xc8\x81\x10\x1e\x39\x5c\xf6\xab\x65\xb6\x38\x7e\xc6\x4e\x5b\xcc\x63\x03\x53\xbc\x48\xc1\xa6\x89\x0e\x4e\xf1\x63\x05\xf9\xdc\x17\xa0\xe2\x27\x11\x0c\x51\x01\xe8\xf1\x41\x2a\x01\xb4\x60\x5d\x47\x04\xaa\x84\xf0\x46\xa8\x5b\xbc\x52\x04\x3a\x96\xb2\xcd\xc1\x86\x09\x56\x6d\xbc\x8d\x88\x0a\x57\x09\xf5\x57\x8c\x5d\xb6\xa8\xdc\x61\x96\x5d\xfb\xaa\xe8\xff\xca\x93\x1c\x66\x45\x45\xa4\x89\x07\x77\x8d\x91\x9b\x9f\x66\xca\x79\x29\x31\xcf\x94\xcf\x33\x36\xdf\xe2\x92\x37\x9b\x75\xe5\x09\x09\xe4\xad\xda\x89\xf3\xbd\xab\x2f\x2a\xd1\x34\x9a\xc2\x20\xd5\x99\x32\x96\x29\x45\xf5\x36\xa4\xbe\xc5\x01\xc8\x0a\x4c\x47\xd4\xa0\x97\x54\xa4\xa2\x3d\x75\xe7\x92\x93\x94\x9d\x35\x94\x9b\x59\x18\x65\x7b\x12\xd0\x52\x72\x2b\x91\xb5\xc2\x01\x53\x82\x6a\x34\x7e\xb5\x37\xdc\xa5\x56\x02\x18\xa7\x83\xc1\x4d\xe1\x1b\x78\x64\xe0\xfb\xab\xf3\x20\x8c\xfe\xfb\x5d\xdf\x7c\x57\xb2\x5d\x9b\x7e\xea\x27\xb2\x64\x80\x54\xcf\xe4\xa5\x62\x75\x5d\x1f\x79\xe1\x58\x24\x41\x07\xbc\xc4\x33\x8c\x63\x9e\xd9\x34\x52\x4d\x73\xa2\xfc\x62\xff\x3a\xfd\x39\x99\x26\x4f\x97\xb7\x87\xf8\xf7\xc6\xc4\x77\x0e\x3b\xcd\xaf\x32\x7f\xdf\xd3\xe6\xdc\x9a\x05\x97\xa6\xbe\xb0\xa6\x7b\xdf\xda\x22\x4e\xe4\x43\x7c\x13\x4d\xdd\x44\xeb\x8a\x73\xaf\x02\xc7\x6b\x25\xf2\x11\xb0\xac\x65\xd3\xfa\xda\x81\x14\x0d\x6e\x43\x18\x4f\x97\xcf\x1f\xb8\x66\x1a\xb5\xdb\x5c\xde\x1e\x02\x48\x0b\x07\x69\x1e\x46\x5a\x5a\x48\xbf\x24\x2b\x17\xc9\x9b\x1b\x23\x9d\xf4\x3f\xb3\x74\x6d\x63\x19\x53\x34\x52\x3d\x37\x6f\xc8\x3f\x7d\x5b\x5f\xde\xac\x2c\x21\xd1\x24\x17\x0f\x37\xf5\x38\x62\x1a\x8d\xb4\x24\xe4\x98\x9a\x82\x4c\x2d\x49\x9c\xec\xfd\x1f\xd8\x8c\x27\x82\x2e\xa4\x35\x47\x13\xd4\x93\xe9\xe8\x7d\xc9\xe8\x29\xaf\x00\xf3\xa6\x32\xc2\x59\xc9\x5c\x6f\x24\x18\xfc\x2e\xb6\xe4\x41\x4d\xe9\x24\x55\x00\x8c\xa7\x2d\x37\x33\x9b\xa8\x7c\xbf\x94\x5b\x76\x33\x9e\x47\xb3\x2a\xcb\xde\x2e\x19\x7f\x29\x96\x4c\xa8\xe0\xa0\x74\xd9\x9e\x4c\x73\x61\x3e\x60\x86\x65\x4c\x80\xa6\x9c\x0f\x11\xd1\x39\xd6\xc8\x32\x78\xb9\x8e\x9a\x59\x4a\x35\x36\xf2\xcc\x9a\x4c\x5a\x41\x37\xbf\xc3\xd0\x4a\x86\xd1\x76\xef\x25\xdb\xf2\x8a\x5a\x34\xa5\x89\x1e\x12\x74\xc9\xf3\x16\x5f\x7d\x97\x66\x7d\x41\x06\x60\x6f\x2f\xf0\x41\x00\x1f\x41\x58\x88\x27\x97\x2c\x47\xe9\xe6\x3e\xd7\x10\xfb\x24\x84\xed\x72\x01\x1d\x05\x69\x70\xad\xcc\xca\x8d\x1a\x7a\x80\xcc\x3d\xcf\x20\xf0\x3f\xe8\x57\x10\xbc\x89\xc7\xe7\xe9\x62\x69\xac\xe4\x4c\x67\xcf\x7a\xcc\x04\x5d\xc0\x02\x9b\xd3\x3b\x00\xb0\xfe\xc1\x67\xcd\x4c\xa3\x16\xf1\x0c\xd2\xd3\xe5\x2d\xe9\xe7\x2f\xfa\x09\x8f\xe1\xed\x07\x83\xf4\xcc\xcd\x85\x06\x2a\x65\xfb\x77\xe2\xf9\x37\xd4\xb9\x14\x45\x9f\x76\x31\x25\x99\x90\xa3\x29\xc0\xbe\xca\xdd\x94\x4c\xe5\xfb\x07\x08\x40\x62\x36\x9a\xa7\xfa\x00\x2e\x98\x16\x86\xcc\x84\x24\x2d\x9d\x95\x03\x8e\x76\x87\xa5\xfc\x63\x9d\x62\x0b\xcd\x72\x8d\x47\x6d\x74\x4c\x8c\x95\xdd\x04\x6b\x2c\xb1\x80\x0b\x3a\xd5\x9e\x4c\x39\x66\xc7\x18\x86\xf9\x53\x5b\x11\xd1\x74\x9c\xe7\x8d\x22\x08\x46\xec\x14\x90\xe0\xee\x66\x04\x0a\x4a\x6f\x77\x90\xe0\x11\x73\xdd\xbf\x2a\xce\x97\xba\xe9\xb2\xaa\x0b\xb5\x39\xbe\x9e\x1e\xf7\x50\xce\x5d\x2c\xfc\x3b\xa9\x3e\x17\x49\xae\xa6\x22\x1d\xc5\x58\x3b\xed\x7a\x4b\x88\xa6\xd3\xd0\xfc\x41\x2b\x64\x6f\x63\xf0\x82\xa5\xd3\x3b\x5f\x72\xa7\x77\xc8\xe1\xf7\x8d\x67\xec\x9c\x4c\xf9\x3f\x0f\x71\x1c\xb4\x8c\x91\x79\xc6\x86\xdc\x5c\xc9\x5a\xe6\x5e\xb5\x72\x91\xee\xcc\xe7\xb7\xa0\x25\xee\x67\xa6\x27\x74\x62\x1a\x5e\xe0\x42\x3b\xd6\x11\xd7\xf1\xdc\xa8\x41\xe9\xbc\x75\x06\x27\xea\x00\x9b\xbe\x68\x5f\xbf\xb1\x7c\x34\x3f\x8d\xa9\x97\x3c\x73\xfb\x71\x4f\xbe\xd4\x47\xd7\x36\xe9\xc3\x07\xbd\xbb\x65\xf6\x8d\xf4\x0a\xc1\x1b\x71\xa0\x43\xd2\x21\x71\x64\x42\x3c\xfb\x2b\x9e\xd2\x75\xdf\x1d\xf5\xad\xd3\xb7\x70\xdd\x45\x2e\xe0\xc5\xfc\xc0\x39\x18\xaf\x0f\x4c\x67\x4b\x9e\x6b\x57\x39\x77\xf3\x5e\x5f\x55\xb6\x4a\xe8\xee\x90\x69\xe8\x3e\xe0\x5c\xe2\x49\xd8\x07\x72\xbf\x01\x1d\x63\x95\xfb\x00\xa2\x7a\xce\x85\xde\x16\x19\x46\x8c\xef\xe9\xb5\xaf\x4f\x77\xe7\x3a\x79\xf8\x50\x02\x0e\x2f\xf2\xc2\x9a\xf3\x8c\x5d\x4a\x26\x0f\x75\x5e\xad\x8b\xf1\xe3\xe1\x5b\x6d\xd8\xdb\xc6\x5e\x6b\x8e\xbc\xc7\x16\xc0\xb8\x6b\x8a\xf9\xf2\xb9\xc4\x1d\xf8\x8e\xc5\x44\x2c\x65\x4c\x8f\x7a\x1f\xe5\x83\x43\x5a\x6f\xaf\xa0\x03\x5a\x6f\x22\xf5\xfd\x9a\xfc\x92\x7c\x9b\xf6\x6e\xdb\x03\x6e\x83\xf8\xfe\xca\xb8\x1d\x38\x67\xc3\x0d\x6d\x1c\xf1\x72\x0d\xf2\xa8\xa3\xb5\xba\xb3\x1f\x04\x55\x4b\x2e\x75\xc4\x90\xa0\xfb\xb5\xc6\xda\x0c\x02\x80\xb7\x72\xa6\xe2\x85\x12\x9a\xa6\xe9\xae\x62\x24\xb9\x71\x02\x96\x45\x92\x24\x96\x28\x39\x6b\x7f\xeb\xea\x0b\xbe\x5c\x90\x85\x9f\x5f\x2f\x29\x42\xc1\x15\x93\x04\xfc\xb2\x35\x93\x62\x1c\xd8\xaa\xd7\x70\xa3\x57\x27\x36\xa2\xb5\x3e\x09\x6e\xb9\x41\xe7\xd8\x4a\x45\x47\x60\x8b\x34\xa2\xdc\xb8\x3c\x50\x94\x4c\x98\x40\x62\xf3\x3b\x97\x26\x51\x67\xa2\xa4\xb1\xfa\x10\xcf\xfc\x24\xf0\x49\x46\xbe\x07\x91\xdd\x86\x31\xbc\x1d\x7a\x3f\x99\xcd\xdb\x84\xef\x86\x17\xd5\xb4\xbe\x76\x1f\xc6\x33\xf2\xd6\x7b\x50\x6a\x0f\x65\xaa\x16\x65\x03\xe4\xcc\xf3\xa6\x0e\x84\xa2\x9f\xd5\x81\x70\xd4\xcb\x3a\x03\x94\xf5\x24\x7e\x8b\x3e\xdf\x16\xf3\x4a\xb1\xf1\x16\x96\x4a\x74\xfd\x85\x2f\xf0\x63\x29\x8a\x6d\xc7\x0e\xd9\x6c\xc4\xdf\x72\x05\x5b\x5c\xe6\x33\xbe\x2a\x31\x34\x5f\x0b\x50\xfb\xd8\x70\x1b\x91\x3b\x65\x72\xdf\x14\x6c\xe2\x61\xc5\xce\xa1\x92\x93\xec\xdd\xe8\x2a\xe7\xad\xab\xb5\xb3\xc5\xc7\x3f\x11\xfd\xa1\xb6\xea\xc4\x96\x2f\xda\x3b\x15\x2b\x45\x72\xf8\xa4\xa8\x2e\xd7\xee\xcf\xdd\xfb\x85\xfd\xdd\xe1\xc4\x0e\xbf\xed\xeb\xb7\xbf\x4c\x24\x04\x7f\xc9\xda\x7e\xa9\x11\x2a\x91\xee\x5e\x73\x29\x4d\x14\xf3\x04\xe5\xfd\xda\x00\x29\xdf\x7a\x70\x55\x66\x73\x4b\x7f\x08\x8e\xaa\x08\xe3\xc6\x57\x07\x04\x0e\xc2\xa5\x57\x4a\x82\x8b\x2a\xc2\xb8\xf4\x65\x18\x17\xfe\xdd\xe5\xa2\x34\x9d\xe0\x64\x16\x63\xdc\x54\x39\xc6\x51\x97\x71\xc4\x9b\x4e\xd2\x8f\xf6\xe0\x9f\xf3\xa2\xed\x57\x68\xf9\x5f\x9c\xb6\x21\x8a\xfa\x0a\x11\x45\x8a\xf3\x50\xac\x0e\x61\xab\xba\x57\xc7\xb2\x7e\x65\xf9\xc7\x9d\x26\x01\x86\x2d\xa8\xa7\xe2\x86\x74\xee\xf2\x25\x0e\xbb\x83\xe5\xbe\x90\xdd\x23\xee\x67\xdd\x6c\xd2\x53\x06\xec\xf6\xeb\xfe\xc7\x7e\x11\x2f\x4e\x99\x3c\xbd\x2f\xbb\x08\x7b\x3c\xc8\xa5\x4e\x29\x97\x4f\x05\xf4\x89\x8a\x36\x86\x45\xd5\xb2\x2e\x21\x9f\xe1\x5f\x3c\x38\x8c\xbf\x44\x0f\x02\xc7\x10\xce\x47\x68\xbc\x65\xa9\x7c\xe5\x4f\x39\xf0\xb3\xf5\x47\x9c\xea\xb8\x6f\x08\xda\x86\x95\x7f\xc3\x96\x61\x88\x8d\x91\xa7\xfa\xf4\x7d\x1f\xdf\x5b\x50\x47\xd1\xb3\xbd\xa1\x3d\xb1\xac\x17\x41\x78\x1a\x7a\x45\xa4\x9e\x65\x9c\x64\xa6\xc5\x96\xdf\xf8\x43\x84\xee\x77\xda\xb3\xc1\x86\xfc\x0d\xea\x34\xb2\x08\xfa\x70\x9c\x04\xbe\xe2\xef\x5b\x64\xcb\x9b\x25\xea\x05\x5a\xd3\x25\x82\xe8\x36\xf9\xa4\x2c\x22\x8d\x00\x7d\x52\x37\xe6\x4d\x17\xb4\x76\x68\x5a\x7b\xcf\x96\x89\x74\x47\x3e\x50\x39\x45\xe1\xc2\xd1\x4f\x59\xb0\x04\x0e\x63\xe0\x21\x6f\xe8\xe2\x89\xe9\x9c\xe5\x89\x87\xef\x3c\x0a\x89\x57\x9d\x7a\x23\xc8\x95\x9f\xa4\x43\xd5\x4b\xaf\x63\x47\x89\xea\x62\x18\xf4\x1d\x81\x5c\x68\xb4\x56\x7a\xc3\x4a\x89\x29\xc7\xa0\xf3\x76\x2b\xff\x1a\xfb\x18\xa7\x31\x0e\x27\xf6\x98\x16\x7f\xf2\x40\xa6\xc8\x4d\x63\xe2\x31\x54\xb0\x6d\x89\x3c\xef\x60\x1a\x03\xe3\x25\x53\x4b\x20\xac\xa8\x17\xce\xfc\x8e\x3f\x64\x6f\x31\x92\xf4\xdc\x87\xea\xed\x57\xc6\xd4\x13\x19\xc6\x5a\x84\x7b\xd9\xfc\xc3\xab\x3c\xa8\x4a\x53\xcb\xeb\x5e\xac\xd1\x47\x6b\x8d\xd6\x74\x5e\x7a\xee\xbb\x15\x86\x99\x81\xed\x3c\xd2\x63\x36\xa9\x26\x59\xb0\x97\xa0\x0a\x4c\xe7\x97\x37\x20\x29\xa4\x46\x06\x33\xc0\x38\x1a\xc7\x9d\xe8\x29\x60\xef\xfa\xc2\x32\x69\xf4\x1d\x77\x41\x2b\x02\xb6\x7c\x82\xdd\xe2\x5d\xe1\x21\x0f\xb9\x98\x9d\xc1\xab\x78\x2d\x07\x7b\x30\x31\x3f\xf1\x17\x99\x91\xd9\x15\x08\xf8\xab\x7a\xee\xda\x63\x7a\xcd\x68\x4f\x03\x95\x5f\x1e\x68\xb2\xcb\x45\x45\xcf\x80\x69\x05\x80\xc1\x1e\xe0\xbb\xcc\xe8\x9c\x0c\xdb\xdf\x42\x4f\xcc\x65\x11\x6c\x72\x30\x43\xbb\x73\xb3\x15\x80\xf8\x61\x12\xc2\x9f\xec\x1a\xc6\xca\xea\xa2\x57\xa7\x73\x7b\x69\x8a\x2d\xef\x76\xdf\x59\xd3\x15\x87\xac\x94\x5f\xbb\xfa\xa2\x1a\x90\x9d\xa1\xfb\x64\xca\x91\xcc\x8e\x99\x61\x03\x8b\xea\xc4\x9a\xa2\x03\xec\xe4\xb7\x0f\xf8\x70\x0b\x3f\x08\x9f\x1e\x7a\x97\xfe\x2a\x97\xb2\xaa\xc8\x59\xe3\x4e\xcf\xf5\xef\xd8\xd7\xd6\xfd\xe8\x7c\x08\xc7\x94\xc2\xcd\x16\xff\x53\x86\xf6\xcb\x77\x76\x48\x29\xe6\x00\x72\x2b\x19\x39\x21\x48\x53\x72\xe7\x8e\x0a\x62\x61\xdc\x5e\x95\x4c\xca\xc2\xde\xfa\x95\x9f\x0d\xc5\xcd\x70\xdb\x03\x75\x5f\x59\x0f\x39\x82\xe9\x8d\x17\x8b\x0a\x9c\x9d\x22\x43\xb5\xfa\x2a\xb9\x11\xc1\xe8\x03\x4a\xb4\x4d\x42\x0c\x10\x37\x04\xde\x37\x0f\xb1\x57\xc4\x0d\x32\x62\xbb\x9d\xf4\x1a\x48\xec\x59\x3f\x88\xc0\x1c\x0a\x37\x4e\x6c\xc8\x41\x85\xc0\x4e\xfb\x00\x07\x9c\xac\x6b\x49\xb8\x67\x03\xac\xf0\x7f\x10\x40\x25\xfb\x87\xbd\xba\x70\x0f\x48\xbd\xfb\x68\x6a\x5a\x77\xe8\xc0\x65\x32\xa6\x1c\x36\x8a\xad\x9c\xbe\x93\x41\x9f\x96\x79\xc3\x2f\x14\xcb\xe3\xb5\x2c\xb9\xd2\xf5\x43\xc5\x73\x40\xaa\xe0\xbb\xfa\xe5\xa5\x34\xc6\x0c\x2a\x00\xa2\xdf\x83\x62\xc3\xe1\x9b\x62\xef\x54\xd9\xcc\x42\x87\x72\xe8\x1e\x84\x3e\x6a\x74\xe8\x95\xc5\x2f\x65\x61\x1d\xe1\x5c\xde\x10\x30\x53\x63\x87\x2a\x1b\x9d\x9e\x26\xfc\x0a\x05\x86\x3a\xa8\xb0\x83\x29\xae\x5d\x70\x7c\x04\x33\xd0\xf9\x71\x6b\x67\x5d\xfb\xf9\xc7\xec\xc4\x9a\x3a\x51\xa3\x78\x62\x33\xbc\x96\x96\x4b\x27\x16\xb6\x0a\x8a\xda\x77\x57\xe5\xf4\x8e\xbb\x82\xa0\xf6\xda\xc5\xa3\x7d\xd0\x3c\x0b\xad\xdb\x67\x6d\xd1\xaa\x18\x63\xd4\xe7\xd1\xee\x96\x0c\x2d\x16\xb4\x84\x40\xf5\xbe\x28\xd9\xaf\xf2\x53\xff\xa5\xca\x9a\xa6\x7e\x1d\x6c\x5f\x00\xbc\x1f\x11\x86\xa1\x34\xdd\x2b\x2f\x5e\x77\x6a\x18\x9b\xfe\xcb\x35\x6b\x3a\xd6\xb4\x0e\x85\xc7\x75\x90\xc0\x6b\x3d\xed\x4e\x45\x93\xbb\xc8\x9b\xcd\x6c\xb3\xd9\x6c\x42\x14\x4e\x59\x79\x74\x70\xd7\x41\xc9\xeb\x8a\x09\xc6\x0e\xee\x72\x39\x5b\x2e\x97\xcb\x18\x02\xb2\xe2\x0e\x89\x45\xb0\xde\x3d\xf6\xb1\x38\x76\x27\x17\x37\xdc\xe8\xaf\xb5\xc0\x75\xdb\x6c\x15\xd9\x63\x04\xfa\x26\x88\x7e\xac\xaf\x0d\x85\xfd\x14\x6e\xf4\xe3\xb1\x65\x9d\xad\x35\xa6\x51\x0a\x6b\x8c\xa2\x31\x28\x8e\x89\x1f\xa9\x34\x92\x08\xd7\x1d\x13\x3d\x42\x6f\x04\xe6\xa0\x3e\x26\x7a\xac\xea\x0c\x34\x94\x06\x99\x54\x22\xb4\x67\x20\x20\x94\x08\xa0\x47\x77\xc3\xa0\x47\x26\x7e\x58\x87\x40\x37\x22\x14\xc2\x6a\x24\x29\x98\xda\x64\x12\x08\x6b\xd2\xdc\xd5\x3e\xde\xf4\xe2\xff\x22\xd9\xcf\x21\xd3\x11\x04\x16\xae\xb1\x14\x8a\xc7\xff\xef\x31\x92\xff\x02\xf0\x1f\x45\x61\x79\x8f\xcd\x11\x5c\x97\x23\x95\x6d\x45\x59\xc8\x51\x6d\xbd\xc2\x06\x4a\x1c\x85\xb5\x6b\xe6\xe6\xe3\x1b\x7b\x0d\x95\x7c\x0c\x85\xcd\x3d\xf3\x8b\xe0\xba\x19\x69\x5e\x1e\x5d\x56\x77\x28\xf6\x23\xe4\x3a\x86\xc2\x13\x35\x0f\x8f\x6a\xec\x27\xcc\x28\xc7\x51\x78\xbe\xc3\x8b\x90\x5c\x9f\x47\x4e\x25\xf3\xd4\xb5\x22\x77\xa8\xf6\x3c\x85\x76\x64\x0c\x89\xb9\x6b\xc8\x9e\xef\x50\xee\x39\x34\x65\xa3\x48\xcc\x11\x63\x16\xf6\xfc\x14\x63\xcb\x86\x51\x0f\xe8\x3b\x07\x40\xb6\xab\x2a\x59\xb8\x1e\xab\x72\x4f\x1d\x00\x44\x56\xd7\x25\xa5\xb0\x0c\xe5\x80\x6e\x28\x85\x60\x3b\x16\xca\xf5\xa4\xe0\xd7\x50\x2a\xed\x2f\x50\xf0\xb6\xeb\x60\xb9\x98\x14\xda\x62\xed\x60\xf0\xf9\x94\x84\x4f\x9d\x7a\x8b\xf9\x97\x42\x58\x61\xad\xeb\x47\xd9\x40\x14\x63\x92\xa7\x30\x9e\xac\xc6\xc2\xdc\x44\x85\x4b\x0c\x71\xd4\x35\xc4\x70\xb0\x8e\x34\xdc\x41\x0c\xc5\xee\x4b\xcb\x05\xc4\x50\xd0\xee\x74\xdc\x3e\x0c\xd3\xee\x51\xcb\xd5\x43\x51\xf0\xe6\x73\xfa\x96\xf0\xf2\x08\x97\x0e\x6d\x3c\x14\x0b\xe9\x61\xc2\x9b\xe3\xf6\x86\xd4\x02\xcc\x6e\x9a\xb6\x06\x25\x4e\x21\x2d\x48\x83\x81\xce\x46\xa6\x5b\x86\xf1\xa1\xb1\x96\xb1\x63\x53\xba\x5f\x11\x9d\xbe\x0a\x58\x09\xba\x8d\x56\x1e\x65\x44\xb0\xd6\xe4\xb0\x47\x67\x10\xd3\x9d\x42\x95\x8a\xc4\xda\xc4\xda\x49\xe9\x36\x45\x0c\xc3\x47\x92\x64\x48\x91\x1e\x51\xea\x24\xd6\x53\x60\x4e\xa0\x1b\xe9\xc9\x63\x80\x10\xac\xe7\xc8\xd9\x4a\xb9\x3b\x11\x26\x71\x9e\x92\xa3\x2d\xa4\x4a\x03\x6a\xd8\xbb\x11\xae\x0c\xc5\x0a\x77\x47\x80\xfb\x82\xb1\xa2\xd1\xe6\xf4\xe0\x4e\x51\x7d\x9a\xe3\x63\xba\x07\x1e\x13\x1b\x62\x3b\x2d\x13\xd7\x8d\xe9\xb2\x7d\xc9\x3a\xda\x8d\x99\xd8\x6e\x8d\x8d\x10\xe5\xd6\x4c\x68\x87\x87\xa0\x47\x3a\x3c\x13\xdc\x0d\x22\xc8\x50\x6e\xd0\xc4\x76\x8b\x08\x7c\xca\x2d\x9a\xa0\xbe\x12\x41\x24\xe0\x2b\xd9\xb4\xd4\x64\x4b\x50\xa3\x5c\x28\x9b\x8c\x98\x7e\x29\x22\x94\x5f\x65\x37\xaf\x9c\x26\x09\x32\x1e\x6f\xcb\xed\x72\x3f\x29\xda\x0b\x9b\x10\xce\x19\x41\x28\xc6\x39\x9b\x04\xbd\x37\x49\x7c\x8c\xf7\x86\x11\x75\x14\x74\x84\x6b\x87\xd0\x33\x55\x75\x84\xc7\x87\x50\x72\x94\x76\xbc\x37\x48\x50\xb5\xd4\x77\x84\xaf\x48\x10\x04\x8a\x3c\xc6\x8f\x24\x3a\x04\xaa\xcf\x38\x27\x93\x54\x1c\x9a\x68\xd0\x07\x45\x68\x22\x6a\xee\xf3\x50\x27\xc0\x5d\xa5\xc6\x45\x68\xfe\x44\xe4\x98\xa3\xdc\x49\x17\x76\x02\xfc\x59\x6a\xa6\x08\xfa\xb3\x88\x20\x0b\x4c\x10\x8f\x8f\x3b\x01\x0e\x6f\xa4\x25\x95\x0e\x2f\xc2\x7e\x19\xa1\xcd\xab\x09\xf0\x88\xfd\x73\x81\xc7\x23\x46\xd8\xaf\x3c\x83\x14\xf3\x92\x27\xc0\x65\xa6\x6c\x77\xd0\x65\x46\x24\x59\xa3\xc3\x86\x76\xa3\x27\xc0\xa7\x8e\x9c\x64\xa5\x4f\x8d\xb0\xdf\x44\x18\xbf\xc7\x09\x70\xba\x29\x9e\x41\xa7\x1b\x61\xff\x88\xb2\xa7\x1d\xf1\x09\xf0\xca\xfd\x2e\x8a\xc7\x2b\x47\x24\x79\xf2\xcc\x27\x98\xa7\x3e\x01\x6e\x7b\x9c\xcf\xa5\xdc\x76\x84\xfd\x73\xc4\xfc\x38\x4f\x27\xd0\xb1\xa7\xec\x52\xd8\xb1\xc7\x2c\x53\x8a\x9a\x26\x8f\xb7\x3f\x81\xbe\x3f\x21\x4d\x84\xef\x8f\x49\x83\x1a\x4a\xdf\x82\x60\x02\x97\x07\x91\x5e\xb5\x5e\x1e\x60\x32\xe0\x36\xd2\xdc\x1a\xe5\xb1\x5f\x3d\x8a\xbc\x5d\xf9\x70\x03\xf9\x2c\x22\x73\x22\xb9\x6b\x08\x9e\x49\x86\xde\x09\xb5\xca\xe3\x36\x42\x71\x24\x7a\x1f\x14\x87\x27\xb7\x41\x71\x70\x72\x17\x14\x07\x0f\x6d\x82\xe2\x58\xe4\x1e\x28\x01\x4e\x6e\x81\xe2\xf0\xbe\x1d\x50\xa2\x91\xe8\x0d\x50\x1c\x21\x6a\xff\x53\xa0\x8e\xda\xfe\x74\x51\x42\xbb\x9f\x2e\x46\x68\xf3\xd3\xc5\x88\xdc\xfb\x74\x11\x43\x5b\x9f\x08\x46\x68\xe7\xd3\x45\x89\xd8\xf8\x44\x9a\x2d\xb8\xef\xe9\xe2\x38\xdb\x9e\x44\xdf\x07\x77\x3d\x11\xd2\xf4\xa6\x27\x61\x1b\xc2\x7b\x9e\x2e\x17\xdf\x96\x67\xdc\x48\xd4\xce\x5e\xa8\xab\x57\x7e\x83\xe0\xdb\xef\x24\xf5\x0f\xdd\xee\x24\x86\x78\x78\xb7\x13\x51\x24\xcf\x66\x67\x9c\x35\xd4\x3e\x58\x68\xd0\x3d\x52\x04\xc3\x3b\x9d\x08\x6d\xcf\x46\xa7\xd7\xe8\xfb\xf6\x39\x49\x4b\x83\x6e\x73\x46\xcd\x45\x83\x6b\x14\x32\x7c\xbd\xef\x82\x8f\xad\x88\x3d\x4e\x64\x74\xf9\xb6\x38\x71\x46\x31\x3b\x9c\x2e\x23\xef\x06\x67\xdc\x24\x6f\xf8\x2a\xee\xf8\x0d\x6f\x6f\xea\xc4\x73\x8e\x0f\xa2\xf2\x45\xd0\x5e\x88\x03\x11\xe7\x87\x50\x68\xb4\x27\x42\x61\x90\xbe\x08\x85\x40\x7a\x23\x14\x42\xc8\x1f\xa1\xf0\x48\x8f\x84\x44\x20\x7d\x12\x0a\xc3\xe7\x95\x90\x0d\x46\xfb\x25\x14\x4a\x94\x67\xa2\x90\x47\xf9\x26\x18\x52\xc8\x3b\xc1\x70\x42\xfe\x09\x86\x13\xe9\xa1\x60\xa8\x21\x1f\x05\xc5\x09\x79\x29\x18\x52\x84\x9f\x82\x36\x61\xd0\x53\xc1\xb0\x1c\x5f\x85\xd4\x87\xa0\xb7\x82\x92\xa7\xfd\x15\xd2\x8a\x84\x3d\x16\x8c\x93\xcf\x67\x89\x1d\xad\xca\x6b\x89\xe8\xfe\x55\xc8\x74\xf8\x3c\x17\x8f\x66\xa2\xbe\x0b\x69\x0a\xc2\xde\x0b\xaa\x60\x1e\xff\x25\xd6\x82\x2a\x0f\x26\x62\x60\x3e\xd2\x44\xc3\x5e\x0c\x4a\xdf\xe3\xc7\x04\xa6\x0c\x9f\x27\xe3\xb1\x4b\xa8\x2f\x13\x39\x9f\x69\x6f\x26\xc2\x58\xce\x53\x7a\xfc\x45\x78\x34\xe8\x08\xf4\xf9\x34\x14\xb3\x18\xaf\x06\x63\xe6\xf5\x6b\x62\xdd\x86\xc1\xb3\x41\xc7\xb9\x1d\xa1\xa6\x80\xc2\x1b\x30\x83\xf3\xb3\x98\x6f\x70\xe7\xe7\xb5\xc8\x99\xc0\xf1\xf8\x3f\x18\x50\x9c\x0b\xe4\xc1\xa4\xbd\x20\x0f\x12\xe9\x08\x79\x70\x48\x5f\xc8\x83\x13\x72\x87\x3c\xa8\xa4\x47\xe4\xc3\x21\x9d\x22\x0f\x92\xcf\x2f\xf2\x35\x21\xed\x1a\x79\xb0\xa2\xbc\x23\x03\x7f\x94\x83\x44\xe0\x85\x7c\x24\x02\x2d\xe4\x26\x11\x68\x91\x9e\x12\x81\x1d\x72\x96\x28\xb4\x90\xbf\x44\xe0\x45\xb8\x4c\x54\xa3\x06\xbd\x26\x02\xd1\x71\x9c\x7c\xda\x12\xf4\x9d\x28\x26\xb4\xfb\xe4\x33\x42\x61\x0f\x8a\xe0\xe7\x73\xa2\x46\x8c\x71\xe5\x47\xc5\x29\xc7\x2a\xc2\xf2\xf8\xbc\x29\xbf\x02\xa3\x0e\x95\xcf\x8c\x84\x7d\x2a\x4a\x09\x3d\x6e\xd5\x08\x7b\xac\x3c\xab\xb8\xe1\xfc\xe8\x25\x1d\xf6\xaf\x28\x2e\x1e\x17\x2b\x3c\x1f\xf9\xbc\x2c\xbf\x71\x43\x1d\xad\xf8\x59\x53\xfb\x5a\x71\xa6\x77\x9e\x7a\x47\x6d\x84\xc7\x45\x8d\x5b\x9f\xd3\xe5\x61\x19\xe3\x77\x11\x2c\xbd\xae\xd7\x08\x8f\x65\xf0\xbe\x28\x1b\x11\xb1\xb9\xb4\x4a\x89\x58\xff\xde\x7f\x3a\xe5\x1e\xdf\xca\x06\x88\xf3\xab\x08\x2c\xda\xa7\x22\x10\x48\x7f\x8a\x80\x27\x7d\x29\x02\x3e\xe4\x47\x11\x68\xa4\x0f\x45\xc1\x93\xfe\x13\x81\xe0\xf3\x9d\xa8\xa6\xa2\xfd\x26\x02\x23\xca\x67\x92\xb8\xa3\xfc\x25\x04\x27\xe4\x2b\x21\x28\x21\x3f\x09\x41\x89\xf4\x91\x10\xcc\x90\x7f\x84\xa1\x84\x7c\x23\x04\x27\xc2\x2f\xc2\x1a\x2f\xe8\x13\x21\x48\x8e\x3f\x44\x69\x41\xd0\x17\xc2\x88\xd3\x7e\x10\x65\x30\xc2\x3e\x10\xc2\xc7\xe7\xff\x44\x8e\x4d\xe5\xfb\x84\x3b\x7d\x15\xb0\x12\x3e\x9f\x87\x56\x46\xd4\xdf\xa1\x86\x7d\xd8\xd7\xc1\x94\xca\xe3\xe7\x44\xda\x49\xe5\xe3\x84\x87\xe1\x23\x49\x32\xec\xdb\x60\xd4\x3d\x7e\x8d\x7f\x4e\xf0\xf9\x34\xb4\x01\x42\xfd\x99\xb8\xd9\x4a\xfb\x32\x61\x93\x38\x4f\xc9\xd1\x16\xe1\xc3\x60\xe3\xcd\xe7\xbf\x10\xac\x62\x7c\x17\x84\x95\xd7\x6f\x89\xf4\x06\x06\x9f\x05\x1b\xd3\xdc\x5f\x51\x3b\x46\xa0\x68\x2a\x32\x6a\xc0\x77\x2e\xac\x8f\xe2\xd5\x0d\x98\x79\x03\xc9\xd8\xa3\xf2\x33\xd9\x90\x81\x1c\x51\xe2\x4d\x01\xf5\x0c\x9d\x40\x7e\x00\xdb\x5b\x2a\xef\x0f\x99\xf4\xc7\x80\x7d\xc9\x2e\x25\x6b\x61\x1d\x53\x58\xbb\xd4\xac\x57\x8a\x61\xab\xbb\x9e\x92\xca\x36\xd5\xf9\x47\x52\x33\xa5\x8e\x8b\x18\x9b\x0f\x0b\xc1\x24\xdb\x13\x4a\x28\x6f\x72\xc0\xa7\x83\xcc\xf2\x6b\xd9\x15\x65\x51\x89\xdb\x21\x66\x0e\x38\x03\xe8\xbb\x6e\x51\x37\xab\x15\x04\xcc\x9a\x22\xdb\x97\xec\x36\x9d\x8a\xaf\xff\x36\xbb\x6c\x53\xa8\x1d\xbc\x89\x79\x27\x4e\xe7\xc9\x1f\x93\xef\x59\xf3\xcd\x80\x7e\x78\x80\x8d\xef\x01\x44\x39\x27\xaa\x2b\x40\xaa\x29\x1b\xd7\xca\x5a\x6b\x17\xa3\x94\xfb\xdf\x53\x58\x31\xbb\x6f\x4c\xd0\xb9\xd5\x06\x0b\xa7\x27\x4d\xe8\x85\x05\xed\x05\x5e\x62\xcd\x4b\x42\xaf\x00\xf4\xdc\x07\xba\x86\xa0\x01\x99\x37\x16\xb4\x17\xf8\xd1\x02\xf6\xcb\xfc\x04\xa0\x17\x22\x5d\x50\xaf\xc7\xbe\x34\x76\xa3\x12\x04\x19\xaf\xbc\xf5\xbf\x4a\x0b\x21\xb8\xf4\x12\x64\xd5\x81\xb5\x5d\xdd\x7c\xce\xf8\xd9\xd4\x22\xac\xa0\x83\x12\x30\x11\x36\x9e\x49\x1c\x9a\x1f\x05\x21\x72\x7d\xdd\xec\x14\x49\xaa\x58\xa5\xca\x13\x06\x21\x2f\x1a\x26\xde\x2c\x16\xfd\xe1\xc2\xfd\x0a\x59\xc7\x99\x34\x43\xae\x11\x57\xca\x7a\x46\x3a\x8c\x54\x52\x87\x96\x4d\x89\x12\x4c\x79\xa2\x00\xc3\xc9\x49\x14\x24\x91\x45\x44\x15\x87\x33\x7f\x28\xc8\x70\x8a\x0e\x05\x49\xe4\xd2\x50\xc5\xe1\xfc\x17\x0a\x32\x9c\xa8\x42\x41\x12\x19\x25\x74\xbb\x86\xb3\x40\x68\xd0\x70\xb6\x06\x0d\x4a\x64\x55\x10\xa9\xc9\x22\xdf\x43\xb7\x35\xd5\x9f\xc2\x52\x65\x3d\x93\x8f\x3e\x0e\x69\xd4\xb6\x3c\x47\x5f\x5f\xd8\x4b\xc6\x13\x59\x12\x19\xf6\xac\xc4\xb2\x00\x25\xc9\x84\x9e\xee\xaf\x5d\x57\x57\x0f\x13\xab\xb4\xed\x9a\xba\x7a\x91\x59\x50\x75\x62\x50\x08\x33\xeb\x8a\xae\xb4\x1f\x8f\xb1\x61\xda\xeb\xde\x04\xb3\x72\xd0\x3f\x3f\x90\x08\x01\x01\x07\x38\x20\xaa\x12\x23\x2e\x56\xdb\x22\x19\x7c\x58\xf6\xc3\x91\x16\xbc\x8e\x88\x97\x19\xaf\x6a\x5b\xb5\x7f\x74\x6b\x4f\x3c\x5e\x49\x43\xa9\xe7\x0d\xac\xce\xa5\xde\xd7\xf4\x80\xd1\x29\x0a\x17\xfd\x8f\x5f\x9b\x54\x42\x54\x00\x34\xa4\xef\x7f\x26\xe0\x71\xe9\xd1\x0c\xa7\xfa\xdd\x40\x94\xd4\x6c\x48\x57\x89\x52\x9b\x99\x89\x1f\xc3\x35\x99\x39\x39\xfa\x43\x44\xbd\xef\xcd\xc3\x17\xa3\xbc\xfc\x60\xad\x49\xb6\x18\x70\x9c\xa4\x91\x0c\x50\x68\x52\x45\x64\x7f\xc3\x94\x8e\xf2\xa3\xf9\x1c\x02\x60\x26\xea\x51\xe6\x26\xbd\xe2\x9c\xbd\xb0\x6d\xef\xee\x67\xcd\xf4\xa5\xc9\xf2\x82\x55\xdd\xb7\xf9\x6a\x9e\xb3\x97\xc9\x1f\xd8\x13\x5b\xb2\x55\x92\x4e\x7a\x6a\xc9\xe3\xfc\x67\xf1\x4b\x6f\x8a\x1f\xe2\x12\xd5\xa0\x02\x90\x23\xff\x13\xd2\x68\x4e\xfb\x32\x13\x49\xa6\x3f\xc1\x29\x4d\xd3\x9e\x8d\x68\x50\xc1\x69\xfe\x34\xdf\xcc\x37\x92\x99\xc5\x8d\xee\x20\xac\x2f\x38\x0a\x69\x6d\x45\xa9\x7f\x3a\x10\x30\x70\x3a\x40\x58\xa0\x73\xc1\x62\xbd\x9e\xa8\xff\x81\xe9\xc0\xc2\x09\x08\x48\x4d\x07\xbd\x18\xe3\xe6\x02\x49\xcf\x3f\x17\x48\xd3\xe1\x48\x8b\x4e\x07\xb0\xcc\x9e\x0e\x40\x03\x3c\xba\x0d\x10\x98\x11\x5c\x28\xdb\x0c\xc8\xfe\x0d\xcd\x08\x08\x18\x3d\xdc\xd3\xd4\xa3\x4a\xd6\x5c\xd0\x7b\x22\xd8\x44\x00\x80\x71\xa1\x63\x27\x02\x03\x1a\x9d\x08\xac\x72\x7b\x22\xa0\xea\xe0\x99\x05\x08\x8a\x77\xcc\x02\x28\x3f\xca\x48\x47\x00\xc7\x49\x1a\xc9\x60\xdc\x2c\xe0\x66\x75\xf6\x78\xa1\xc0\x2e\x7e\x9d\x29\xd4\xf4\x4b\x9e\xe8\x3b\xf4\x6a\xe9\x62\xb9\xb2\x50\x48\x43\x23\x4a\xfd\x96\x50\xc0\x40\x4b\x88\xb0\x40\x2d\xe1\x72\x35\x59\xcf\x27\x9b\x27\x68\x06\x2d\x84\x80\x74\x94\x19\xec\x65\x18\x67\x06\x25\xbd\x80\x4b\xac\x1e\x55\xc4\xb1\xa0\x19\x84\x65\xb6\x19\x1c\x6a\xff\xe8\xd6\x3e\x60\x03\x5d\x28\x7b\x10\xc8\x9e\x0d\xd9\x40\x04\x8c\x54\x76\xf6\xd4\xff\x78\xf4\xc8\x32\x83\x8b\xe5\x0a\x35\x83\x00\x18\x97\x3b\xd6\x0c\x1a\xd0\xa8\x19\xb4\xca\x6d\x33\x48\xd5\xc1\x63\x06\x09\x8a\x77\x98\x41\x94\x1f\x65\xa5\x22\x80\xe3\x24\x8d\x64\x30\xce\x0c\xf6\x3d\x0d\xcd\x60\xff\xc5\x7a\xad\x0b\x70\x1a\x6f\x06\xf3\x63\xfe\x94\x3f\x73\xdf\x93\x13\xfc\x94\x33\x0c\x64\xb8\xd3\x45\x0d\x09\xa4\x99\xe5\x59\xf3\x69\x77\x98\xcd\xf3\xc5\xba\xe7\xb5\x58\xae\x04\xa3\xc5\xe3\xf2\x69\xfd\xe4\xb8\xc3\x3d\x33\xa2\x87\x88\xfe\xe8\x31\x48\x23\xcb\x0b\xfd\x33\x00\x07\xb1\x5c\x61\x8c\x05\xee\x0c\xaf\xd6\x13\xf5\x3f\x30\x0b\x40\x14\xbf\x7c\xa4\x2b\x2c\xc4\x18\x37\x0d\x08\x8a\xfe\x59\xa0\xb7\x1b\xb6\xa8\xe8\x0c\x00\x8a\x1c\x3f\xd8\xac\xfb\xa3\x53\xf7\xc0\x14\xe0\x00\xd9\xe3\x5f\xf4\x6b\x68\x02\x70\xa1\xc8\x51\x3e\xcf\x16\x9b\xe5\xd2\xab\x46\xb6\x23\x2c\x3c\x0f\x6c\x12\x30\xc1\x51\xc9\x63\xa7\x80\x01\x18\x9d\x01\x60\xb1\xe3\x07\x93\x95\xf0\x4c\x01\x38\xc9\x3b\x66\x00\x8c\x1b\x65\x9f\xc3\xb0\x51\x62\xc6\x91\x1f\xe9\x04\x63\x0f\x7a\x78\x9c\x4e\xd3\x1e\x7e\x9d\x09\xd4\xe4\x2f\x4d\x71\xce\x9a\x77\x6c\xd8\xae\xf7\xd9\xd3\x1c\x5d\xc7\x49\x24\xd2\xce\xa8\x72\xbf\x29\x54\x50\x9e\x8d\x01\x0d\x32\x6a\x6b\xc0\xc1\x0a\x0a\xfa\x75\xdb\x03\x9a\x62\xc0\x26\xf2\xc6\xfd\x40\x64\x46\x2d\xa3\x5d\x1a\xbd\x49\x80\x21\x62\x86\x0d\x83\xb3\x87\x88\xee\xf5\x90\x95\x44\x01\x69\x77\x68\x9e\xad\x1f\x17\x5e\x3d\x8b\xdc\x31\xb0\xc0\x29\xf9\x63\x6d\x25\x80\x47\xcd\xa5\x03\xe1\xdd\x39\xa0\xe8\x79\xe5\xfc\xa4\xd1\x24\x78\x52\x86\x2d\x0a\x3c\x56\xde\x68\x26\x5f\xb8\x8b\x20\xc7\x95\xcd\x6b\xbc\x01\x9d\xaf\x9e\x9f\x56\x47\x6e\x40\x39\x49\x69\x43\x97\xf9\x3a\xbb\xcb\x87\xb6\x04\xb9\xd3\xb3\x8d\x90\xca\xf0\xda\xab\xcf\xef\x2b\x3f\xce\xd9\xbc\x67\x27\x9e\x5f\x92\xec\x8e\xeb\xb9\xf6\xdb\x07\x7e\x45\x75\xac\x15\xbf\x09\x2a\xc5\x97\x32\x06\x1c\xe8\x57\xa4\xb0\x81\xd8\x63\x78\x36\x4a\xaa\x90\x0f\xcf\x41\x3c\xb3\x96\x28\x1f\x35\x65\x41\x14\xbf\x70\x5f\x37\x59\x09\x72\xfe\x99\x4a\x3e\x0b\x68\x8b\x4a\x6c\xe1\x54\x77\x6c\x64\x3b\x58\xd8\x9c\xe2\x00\xb9\x0b\xf8\x2a\xc2\x81\x77\xa1\x3c\x9b\xd8\xeb\xd5\x71\x4f\x2b\x50\xe4\xa4\x64\xc2\xa2\x32\xc7\xef\xde\x54\x3e\xd7\x1d\x16\x7b\x27\x22\x94\x12\x2d\xdb\x27\xa7\x20\x8c\x1b\xbd\xaf\x12\x82\x8d\x12\x33\x8e\xfc\x17\x4e\x3b\xea\xed\x4c\xd3\x16\x8e\xb3\x49\x3d\x06\x39\xec\x79\xa1\xdf\x26\x71\x10\x8f\x4d\x12\xe5\xa3\x6c\x12\x44\xf1\x0b\xf7\x75\x36\x49\x90\x1b\x69\x93\x00\x12\xb4\x49\xa0\x28\xda\x26\x39\x58\x98\x31\x71\x80\x6c\xe5\x14\x9d\x1a\xb2\x49\x2e\xd4\x3d\x36\x49\x2a\x40\x94\x4d\x32\x61\x51\x99\x63\x6d\xd2\x00\x8c\xda\x24\x58\xec\xb5\x49\x28\x25\x5a\xb6\x4f\xda\x24\x8c\x1b\x65\x34\xc2\xb0\x51\x62\xc6\x91\xff\x7a\x9b\x34\xca\x4b\x35\x7d\xb8\x1f\xe7\x33\x6a\x76\xed\xf5\x70\x60\x6d\xfb\x49\x8e\x8b\xf5\x73\x3a\xdf\x73\xa7\x98\xed\xd3\xe5\xb3\xe4\x98\x1f\xb2\xf5\xda\xf1\x52\x25\x4b\x6c\x1d\xca\x91\xd1\xb1\x25\x91\x48\x13\xa8\xca\xfd\x26\x5a\x41\x79\xac\xb4\x06\x19\x65\xa8\x1d\xac\xa0\xa0\x5f\x67\xae\x35\xc5\xc0\x7e\x07\x6f\x5c\xb7\x1f\x08\xa3\x6d\x97\x46\xdb\x6d\x0c\x11\xb3\xb9\x18\x9c\x3d\x8c\x75\xaf\x87\x0c\x38\x0a\x48\xef\x77\x3c\x3f\x1f\x96\xf8\x7e\xc7\xa0\x21\x51\x66\xdc\x02\xa7\xe4\x8f\x35\xe6\x00\x1e\xb5\xe7\x0e\x84\xd7\xa4\x53\xf4\xbc\x72\x7e\xd2\xb0\x13\x3c\x29\xe3\x1b\x05\x1e\x2b\x6f\x34\x93\xaf\xdc\xef\x10\xe3\x8a\xb2\xa8\x5f\x6a\x44\x35\x93\xd7\xac\xa9\x8a\xea\x05\x93\x35\x7b\x62\x8b\x25\x1e\xd2\x27\x90\xe8\xb0\x5d\x59\x1e\x88\x2c\x96\x50\x1e\x1b\xaa\x41\x46\xd9\x50\x07\x2b\x28\xe8\xd7\xd9\x50\x4d\x31\x10\x4d\xc1\x1b\xf7\x03\x91\x19\x8f\x32\xb6\x4a\xa3\x6d\x28\x86\x88\x99\x3d\x0c\xce\x89\x31\x55\xbd\x1e\x0c\x38\xc6\x00\xe9\x31\xf1\xfc\x34\xa7\x42\x47\xb5\x86\x44\xd9\x50\x0b\x9c\x92\x3f\x3a\xe4\xd8\x84\x47\x6d\xa8\x03\xe1\xb5\xa1\x14\x3d\xaf\x9c\x9f\xb4\xa1\x04\x4f\x32\x30\x38\x06\x3c\x56\xde\x68\x26\x5f\x68\x43\xe5\xb8\xb2\x79\x8d\xb7\xa1\x2c\x5b\xe5\x22\xfc\x4c\x90\x54\x31\x0e\xfb\xc3\xf2\xe9\xae\x20\x64\x28\xc8\xbd\x61\xc8\x61\xa9\x34\xc7\x3c\xab\x5e\x58\xf3\x49\x86\x59\x36\x3f\x2e\xf8\x54\x72\x78\x5a\xa5\xea\xf8\x31\x5f\x6f\xd6\xab\x39\x12\x81\xd1\x73\x44\xba\x4c\xe0\xa2\x43\x5c\xe0\x78\xa2\x1c\x78\x71\x28\x0e\x83\x03\x79\xe6\x11\x05\x31\x6a\x1a\xb1\x91\x42\x42\x7e\xdd\x24\xa2\x08\xfa\xe7\x10\xd1\xaa\x4e\xfb\x93\x01\x19\xa0\x30\x7a\x06\x41\xf0\x30\x9b\x8f\x80\xb9\xc7\xf2\xa2\xab\xc3\x81\x19\x2e\x1c\x69\x0d\xf6\xab\x65\xb6\xc0\xb7\xe1\xb4\x5a\x44\x4d\x1e\x10\x9a\x90\x3d\x3e\x34\x63\x00\x47\x67\x0e\x1b\xc0\x3b\x71\x10\xd4\x7c\x32\x7e\x72\xda\xc0\x39\xd2\x21\x14\x61\xe8\x48\x61\x63\x59\x7c\xe1\x94\x21\x87\x11\x61\x37\xbf\xd4\x54\x0e\xae\xfd\x39\x2b\xcb\x84\xff\x39\xdd\xd7\xf9\xbb\xbe\x20\x0e\xee\xa5\xea\x8b\xe1\x5d\x3d\x5c\x69\x56\x24\x78\xa6\x04\x26\x62\x17\x35\x9d\xa1\xc1\x4e\x59\x79\x74\x8a\x91\x1b\xf3\x3b\x78\x65\xd5\x4b\xfd\xd7\xd9\xa1\xae\xba\xac\xa8\xcc\x8e\x44\x19\x19\x90\x37\xf2\xda\xf3\x07\x42\xe3\x66\x5c\x85\x5e\xa7\xdf\x4f\x98\x44\x26\xcc\x3c\xd5\x40\xd3\xef\x45\xce\xea\x9b\x4a\x3c\xb0\x93\xd9\x13\x2e\x75\x5b\xf0\x8b\x98\xd9\xbe\xad\xcb\x6b\xc7\x76\x2a\x91\x02\xcf\xa0\xb0\xeb\x55\xe6\x58\xd6\xaf\xdb\x53\x91\xe7\xea\x2a\xa6\xa0\x95\x08\x8a\x2a\xad\xc9\x0e\xf2\x15\x7f\x0f\x17\x44\x11\x4e\x3d\x87\x1e\xb1\x6b\xb2\xaa\x3d\xd6\xcd\x79\xcb\x7f\x2b\xb3\x8e\x2d\xf3\x6f\xd3\x75\xfa\xf3\x84\xff\x27\x7d\xf8\x98\x15\xd5\xe5\xda\x4d\xa4\xcd\x9b\x11\x51\x24\xbf\x40\xdb\xde\xb1\xb7\x2e\x6b\x58\x76\xd3\xac\x1b\x56\x66\xfd\x60\x30\xab\xc1\xc7\x4b\xcf\x57\xde\xb5\xd6\xd6\x4f\xfa\x49\x53\x31\xa1\xe9\xb4\x13\x86\xb6\x45\xbb\x38\xb2\xf1\x95\x32\x89\xd4\x60\x26\xf1\x44\x4e\x9b\x37\x57\xdf\x6c\x90\xc8\x4b\xe6\x63\xee\x6a\x2b\x25\xea\x31\xae\x67\xcf\xc0\x7b\xb6\x87\xdd\x33\x18\x74\x65\xd6\xbc\x30\xdf\xb8\x7d\x72\x86\xed\x93\x26\xa0\xdb\x19\x5c\x17\xa6\xd2\x82\x8c\x6a\x19\xa1\xd2\xb2\xd3\x24\xee\xb1\xae\x3b\x31\x4c\xa7\x27\x96\xe5\xc6\x38\x4c\xc1\x38\x4c\x3f\x8c\xfa\x50\x83\x75\x48\x22\xb2\x6c\xd8\x39\xf1\xa8\x87\xfb\x42\x41\x2b\x6e\x42\x0f\xed\xaf\x6f\xfb\x3f\x1b\xb4\x4c\x30\xde\xcc\x1a\x8a\x37\x61\xa2\x2b\xd7\xd7\xcb\x17\x8d\x87\x08\x9a\x6c\x38\x07\xa9\x81\xc7\xba\xea\xa6\xaf\x62\x1c\x3f\xa6\xe9\x6e\x5f\xf7\xd5\xcc\xf2\xbe\x65\x92\xc5\xe5\x2d\x49\x93\x34\x11\x93\xe3\x62\x31\x51\xff\x9b\x2d\x1e\xe4\x1c\xb2\x9d\x5f\xde\x92\xb6\x2e\x8b\x3c\x31\x86\xd5\xae\x1f\x8c\xd3\x9c\x1d\xea\x26\xe3\x43\x51\x8c\x01\xc1\x93\x1b\xb9\xde\xd2\xb0\x7c\xa2\xfa\x52\x4c\x56\x21\x2c\xe5\x1c\x0d\x5f\x8e\xf5\xe1\xda\x1a\x74\x20\xc4\x96\x17\xdf\xea\x6b\xd7\xcf\x53\xdb\x31\xb5\x0b\x89\x52\x54\xdf\x59\xd3\xb1\xbc\xff\x5d\xd2\xcf\x6f\x06\x79\x7e\x61\xde\xbe\xbb\x6e\xa2\xf3\xcc\x2e\x2a\x53\xc3\x94\xcf\x45\xdb\x73\x91\xe7\x25\x60\x73\xa8\xcf\x97\xec\x60\xa4\x84\x58\xac\xd9\x39\x99\x3d\xae\x75\x5a\x8b\xed\x54\x7c\x83\xff\xa4\x08\x91\xd9\xe5\x5a\x96\x62\x74\xc0\xa1\x32\x9d\x0f\x0a\x21\xa6\xfa\xbe\x67\x79\xf2\x1d\xd9\xc9\xa0\xe5\xec\xa6\xd0\x57\x4a\xdd\xee\xd1\x45\x56\x3f\xe9\xb2\x2d\x81\x23\x7b\x0e\xfa\x29\x6c\xd3\xff\xc4\x77\xa2\x23\x24\x4a\x0f\xad\x8a\xa5\x9f\x83\x5c\xf1\x5e\x95\x87\x3a\x55\x69\xf1\x9d\xbc\x89\x8e\xd2\x32\x94\xcf\xe4\x9e\xef\xfb\x1f\x2f\x06\xd7\x43\x95\xec\xe3\xe6\xb8\x84\x41\x5c\xaa\x4f\x6d\x38\xaa\x2d\x4d\x38\xd1\xdf\x7e\x10\xa2\xe9\x4d\xb3\x83\xea\xcb\x88\x2a\x79\x34\x58\x8b\x41\x75\x52\xac\x1c\x1e\xbd\x20\x8c\x8a\x41\xcb\x5a\xa6\xac\x1f\x76\xe8\xf7\x67\x57\xf7\x29\xfa\xa1\x9e\xa4\x70\x7c\xbd\x8a\xe1\x78\x7a\x18\x05\x1f\xdd\xdb\xf0\xa6\xb7\xba\x75\x39\xa2\x46\x9e\xce\x47\x25\xa4\x14\xc1\x59\x4a\x46\x08\xea\xb3\xaf\xfa\xc2\xa8\x2b\xa0\x2e\x42\x7a\x90\x97\x21\xf6\x55\x7c\xc7\xec\x6b\x3a\x66\xfe\x77\x24\x74\x89\xa1\x95\x40\xf4\x46\x48\x44\xde\x37\x79\xec\x7f\xec\x36\x24\xa8\x53\xd5\x25\x2d\x2b\x45\x28\xda\xac\x3a\x18\x3e\xb3\xea\x6a\x25\x8a\x4e\xf5\x66\xc4\x18\x74\xe0\xdc\x71\xe7\x82\x8c\x1f\x6b\xc3\x3d\xf8\xc8\x2a\x79\x74\xf7\x13\x96\xd5\x94\x83\xe8\xc8\x48\x9b\x0a\xb6\xfc\xa0\x59\x75\xf6\x44\x23\xb9\x84\x7a\x72\x84\x65\xf5\xe2\x78\x7a\xf8\x6b\x2c\xeb\xd1\x0a\xed\x1b\x51\x17\x4f\xb7\x8f\xb7\xa9\xa0\x23\x1c\xb3\x0a\xa5\xf4\x19\x54\x7d\xed\xd3\x95\x4e\x17\x21\x1d\xc7\xcb\x10\x83\x2a\xbe\x2b\x83\x3a\x6e\xf9\x44\xdb\x15\x79\x8d\x3f\x06\x8a\x50\x1a\x21\x57\xbc\xc3\xea\xa1\x4e\x55\x9a\x34\xab\xe2\x92\x38\x4a\x2b\xda\xb2\x3a\x18\x5e\x87\x55\x5e\xe1\x0b\xa0\x53\xdd\x1a\x31\x06\x1d\x38\x77\xdc\xb9\x20\xa3\xc7\x9a\x68\x06\xfb\x76\x65\x40\x5a\x8f\x1e\x7f\xc2\xb8\x42\x51\x3c\xfd\x13\x69\x62\x87\x4c\x07\xd0\xbe\xc2\xfc\x0f\x91\xf4\x43\x9d\x39\xc2\xb8\x7a\x71\x3c\x9d\xfc\x35\xc6\xd5\xb8\x92\xcd\xaf\x47\x8e\xa8\x8b\xa7\xdb\xc7\x1b\xd7\xa1\x17\x1c\xcb\x0a\x45\xf4\x59\x56\x75\xa7\xd3\x95\x4c\x95\x20\x7d\xd6\x17\x21\x66\x95\x7f\xc6\xdc\xd4\xf9\x7c\x9e\x2d\x16\xf7\x79\xaa\xe2\x5e\x3c\x42\x0e\xab\x05\xa2\x2b\x5c\x28\x32\x00\x6e\xbf\x4a\xd7\xf6\x0d\x58\x9a\x3c\x51\x65\xd2\xa6\x8a\x8b\xd7\x18\xa5\x68\x93\x6a\x23\xf8\x2c\xaa\xa5\x8d\x18\x2a\xd1\x99\x11\x63\xce\x06\x73\x87\x99\x03\x31\x7a\x64\x49\x3d\x89\xaf\x0e\xad\xb5\x9f\xb0\xa2\x50\x0a\x5a\x1b\x62\xfd\x54\x33\x5b\x80\xe5\xa7\xda\x49\x14\xe2\x98\x04\x3a\x72\x84\x21\xf5\xa1\xd0\x1d\xfc\x45\x3e\x2a\xb8\x68\xee\xce\x9b\xa1\xea\xd0\x7d\x7f\x87\x9f\x6a\x76\x84\xeb\xa7\x22\x92\xfa\x6c\xaa\x71\xc1\xd2\x15\xd2\x28\x44\xfa\x50\x96\x22\xc6\x55\x95\xa0\xf6\x35\x7f\x3a\x6e\x96\xf7\xd9\x57\x7d\xeb\x1e\xa1\x48\x54\x0a\x51\x24\x25\x1d\x1d\x69\x7c\x38\x3e\xa7\xf6\x40\xf3\x31\xa1\x5b\x80\x34\xb7\xe2\xfa\x36\x41\x2f\xda\xe2\x22\x38\x5e\xa3\x2b\xaf\xf9\x06\x09\xd0\xbd\x1d\x31\x50\x11\x48\x77\x7c\x62\x40\xe3\x6d\xb0\xd0\xa5\xb1\xb5\xf3\x2a\xfa\x67\x8c\x31\x10\xc7\xab\x31\x3f\x74\xdf\x20\xc0\x27\xdc\xc1\x23\xac\x72\x00\xcb\xdb\xf1\x3f\x7a\xff\x20\xa2\x46\x5e\x55\xf8\x5b\xee\x21\x54\x84\x13\xa7\x4a\xd0\xd5\x49\x85\x79\xba\xfc\x33\xbe\x21\xbb\xda\xb3\xf9\x7d\x96\x58\xdc\x1e\x47\xc8\x61\xb5\x40\x57\x45\x95\xc7\xd3\x3d\x3e\xae\x9c\xfd\x03\x9a\x3c\x51\x65\xcf\xa6\xec\x7a\x75\xdc\x63\x94\x46\x6c\x1e\x54\xd1\x9e\xae\xba\xe4\xea\xc7\x26\xfa\x33\x62\x04\xda\x60\xd8\x9a\xb2\xfa\xf4\x8e\x2c\x57\x95\x51\x35\xa2\x75\xf7\x53\x5b\xb2\xa6\x20\xb4\x4e\xfc\x50\xfb\xea\x63\x12\xe8\xcb\x51\x1b\x07\x34\x0a\xdd\xc7\x3f\xda\xa6\x86\x2a\x42\xf7\xfa\xdf\xce\x9a\xaa\xeb\x99\xae\x6c\xaa\x04\xe9\xb1\xbe\x08\xb1\xa6\xfc\xf3\x57\x5b\x53\x71\xef\x3d\x60\xee\x94\xac\x88\xaa\x70\xa1\x3e\x69\x4d\xfd\x8d\x34\xc6\x9a\x2a\x4a\xd1\xd6\xd4\x46\x18\x67\x4d\x31\x6c\xa2\x3f\x23\x46\x9d\x0d\xe6\x8e\x34\x07\xe2\xcb\xad\x29\x26\x2a\xad\xbb\x3f\xd0\x9a\x2a\x16\x3f\xd4\x9a\xfa\x98\x04\xfa\x72\x84\x35\xf5\xa1\xd0\x7d\xfc\xa3\xad\x69\xa8\x22\x74\xaf\xff\xed\xac\xa9\x71\x57\xd2\x15\xcf\x28\x44\xfa\x4d\x96\x22\x66\x55\x95\x60\x96\x75\xb1\x7c\x7a\x5a\x1c\xee\xb3\xac\xfa\xde\x3a\x42\x91\xa8\x14\xa2\x3c\x4a\x3a\xca\xc4\x2e\x97\x87\xd5\xca\xde\x31\xf0\x32\xa1\x5b\x80\xde\x31\xe0\x17\xa0\x09\x7a\xd1\xb6\x16\xc1\xf1\x99\x5b\x75\x51\x36\x48\x80\xee\xed\x88\xc1\x89\x40\xba\x63\x12\x03\xba\xe3\x3c\x84\xeb\xd2\xd8\xda\x79\x15\xfd\x13\x06\xd8\x12\xc7\xa7\x31\x3f\xd4\x06\x07\xf8\x84\x3b\x78\x84\x25\x0e\x60\x79\x3b\xfe\x47\xdb\xe3\x88\x1a\x79\x55\xe1\x6f\x67\x95\x8d\x4b\x8f\x48\xa4\xd9\x50\x88\x05\xe3\x89\x52\x2c\x58\x56\x96\xa0\xe1\xb2\xeb\xc7\x55\xba\xbe\x33\x5c\x56\xdd\x84\x47\x28\x12\x95\xc2\x02\x02\xa5\x74\x64\x0c\xc2\xfe\x79\xbf\x3c\xd8\xd1\x92\x3e\x26\x74\x0b\xd0\xb1\xb3\xfc\x4a\x35\x41\x2f\x3e\x7a\xd6\xc5\xf1\x59\x65\x75\xf5\x36\x48\x80\xee\xed\x88\x81\x8a\x40\x22\x61\x96\x08\xd0\xf8\x50\x5a\xa1\x4b\x63\x6b\xe7\x55\xf4\xcf\x44\xd4\x02\x71\xbc\x1a\xf3\x43\xad\x72\x80\x4f\xb8\x83\xc7\x44\xd7\xfa\xb1\xbc\x1d\xff\xa3\xad\x72\x44\x8d\xbc\xaa\xf0\xb7\xb3\xca\xc3\x05\x47\xec\x04\x50\x95\xa1\xe7\xa3\x7d\x21\x1a\xb7\xc0\x0b\x30\x8b\x9c\xa5\xcb\xe5\xe2\xf9\xde\xc8\x05\x71\x9f\x1c\x21\x88\xd7\x07\x3d\xa0\xe5\xa2\x51\xe6\xf8\x70\x5c\x2f\x56\x9b\x5d\x3c\x0b\xb2\xf2\xa4\x31\x16\x37\x94\x71\x6a\x23\xa2\x18\x6c\x14\x9f\x29\x56\x57\x5a\x43\xf8\x64\x1f\x47\x8c\x4d\x17\x10\x3b\xef\x76\x60\x46\x8f\x40\xa9\x40\x23\x6b\xe6\xd3\xec\x4f\x18\x61\x28\x8c\x4f\x4f\x7e\xa8\x0d\xf6\xb3\x09\xf6\xec\xa8\xf8\x06\x1f\x92\xaf\xc7\x7f\xb4\xfd\x0d\x57\xc7\xa7\x03\x7f\x1b\xeb\x9b\xcc\x8a\x83\x90\xa4\x63\x6f\xdd\xf6\x58\x34\xea\x26\xa7\x71\xa9\x73\x12\x06\xb6\xaf\x81\x12\x28\x03\x84\xc0\x30\x48\x3c\x78\xdf\x98\xff\x98\xed\x1b\x96\xe5\x87\xe6\x7a\xde\xeb\xd7\x9b\xf5\x45\xcd\xa1\x2c\xc9\xd0\xfb\x8b\x43\x7e\x85\x47\x08\xed\xbd\xf3\x28\x5f\xdf\x56\x6f\xa6\xcf\xcc\xb7\xf3\xc5\xbd\xf5\x96\x95\x47\x75\x6d\x5d\x5d\x9b\x35\xbf\x71\xba\xe2\x5a\xa1\xf5\x1c\xbc\x49\xf4\x5c\x54\xc5\xf9\x7a\x36\xef\xc3\xea\xdb\xd7\xfa\x42\xf5\xf4\x5c\xff\x3e\xcd\x2e\x17\x96\x35\x59\x75\x60\xa2\x5a\xd3\x57\xb6\xff\xad\xe8\x9c\xef\xc8\xad\x7a\xe7\xa6\xe8\x1f\xf6\xfb\xc3\x2a\x9f\x2b\xb5\x69\xb2\xbc\xb8\xb6\xdb\xc5\xe5\x4d\x5f\xc0\x17\xf7\x23\xa7\xe2\x0d\xe1\xba\xea\xa6\x6d\xf1\x3b\xe3\x4f\xa4\x3b\x77\x84\xc5\xcd\xdc\x2e\x6b\xba\x1d\xc7\x51\x97\xd2\x67\xeb\x9d\x75\xbd\xb2\xab\x2f\x3b\x3c\x10\x5a\xed\xaf\xa2\x77\x71\xf4\x25\xda\xd9\x4a\xdf\xbd\x94\x4c\xb2\x6b\x57\xcb\xf6\xfa\x73\x5e\xb4\xd9\xbe\x64\xf9\x5f\x86\x96\x1b\xbe\xdd\x0e\xd7\xa6\x15\x4f\x86\x4f\xb3\xb2\xac\x5f\x59\x8e\x88\x02\x9b\x45\x19\xd6\xc3\xfe\xf1\xf0\x28\xb9\x98\x43\x59\x7f\xd0\xf6\x4d\x7f\xd1\xc6\x8b\x7f\xd9\x02\x0c\x65\xa7\xc4\x1f\x32\x13\x85\x92\xd8\xa4\x6f\x7e\xd3\x2c\xcc\x8f\x9a\x8b\xfa\xb8\xb5\x51\x15\x2f\xfd\xb7\xb4\x79\x74\x05\xb7\xdb\x4b\x99\x1d\xd8\xa9\x2e\x73\x53\x2e\xf0\xf9\x06\x9a\xcb\x68\x19\x79\xd1\x15\x4a\xf9\x89\x2b\xb4\xc7\x82\x95\xc2\xb7\x10\xd7\x75\x2d\xed\xe4\xcf\xda\x7f\x70\x33\xe3\x4b\x26\x61\xea\x32\x7e\xc1\xdd\x51\xd4\x7e\xec\xf6\xda\xaa\x75\x99\xbf\xf7\xaf\x1e\xe0\x96\x7f\x1d\x8b\xb2\x1c\xee\xdf\x28\x63\xc7\xb3\x69\x4c\x80\xed\xbb\x29\x32\x06\x0d\x6e\xbc\x14\x90\xbc\x89\x3e\x8c\x1c\x93\xd9\x1a\x80\x8a\xdb\xe8\x12\x72\x31\xc0\x2d\x00\xd4\x31\xcb\x59\x7e\x13\x02\xee\xd7\xfd\xcf\x50\x26\x6e\xe2\x8a\x32\x3e\x8d\xa9\x02\x71\x8b\x0c\xaf\x95\xb8\x0d\x21\x91\x64\x70\x9f\x2a\xe3\x31\xbd\xa2\x88\x07\x79\xaa\xef\x2a\x16\x4d\x16\xc9\xd8\x23\x55\x5a\x54\xc7\x7a\x62\xd0\xaf\x14\x0d\x75\xda\xa3\x1b\x54\x6e\x50\x4b\x32\x72\x43\xf2\x70\xca\x9a\x6e\x96\x17\x6d\xd7\x14\xfb\x6b\x6f\xb9\xa7\xfb\xac\x49\xda\xef\x2f\xc9\x6c\x9f\x35\x6d\x32\x6b\xcb\xe2\xc0\xa6\xe9\xc0\x43\xed\xa9\xc8\x5a\xc8\x35\xf4\x50\x0b\xee\xdf\x8b\x42\xe5\xd9\x95\xec\x3b\x2b\x13\xf1\x8f\x4e\x11\x74\xb9\x96\x25\xcb\xe5\x45\x6e\xd4\x1a\xb2\x2a\xf7\xe3\xf6\x13\x1d\x8e\xca\x0d\xe9\xc7\xec\xcc\xaa\x6b\xc2\xff\x3b\x2d\x8b\xb6\x4b\x32\x90\x28\x60\x93\x0e\x29\x10\x44\x4e\x01\xa9\x33\xd0\xa0\x83\xdb\x84\x45\xd5\xb2\x8e\xaf\x74\x52\x6d\xff\xf1\xb9\xcf\xe1\x6d\x1a\x25\xa7\xd0\x71\xa3\xb6\x69\x82\x30\x9e\x2e\xe5\x3a\xcb\xca\x55\xae\x7a\xdb\xc3\x54\x38\x12\x24\x6b\x51\x6c\x29\x8f\x03\x2b\xa1\x80\x6b\x31\x5b\xeb\x51\xbc\x7e\xec\x7f\x5c\x3c\xf1\x6b\xdf\x7b\xca\xf5\x30\xdb\xdb\x07\xcf\x35\xae\xc8\x99\x85\xe7\x60\x65\x7b\x56\x2a\x98\xbe\x34\x11\x19\x45\x12\x37\xe9\x8e\xf8\x22\xdb\xed\x91\x3d\x1d\xb3\xa7\x5d\xc9\xba\x8e\x35\xd3\xb6\xf7\x71\xaa\x97\xde\x79\xb0\x69\x9b\x8e\x96\x99\x54\x25\x85\x99\x41\x50\xb9\x10\x4f\x4d\x6a\x18\xc7\xb1\xfd\x09\x45\xe0\x50\x97\x65\x76\x69\x59\x3e\xad\xab\xf2\xfd\x17\xb3\xa2\x06\x3a\x57\x36\x99\xb4\xa3\x87\xc3\x13\xbb\x24\xdb\xe7\x4d\xca\x33\x77\x8c\xa1\xed\x8a\xd6\xcb\xd6\xb6\xd9\x8b\xe9\x51\x4b\xfb\x27\x0b\x12\xf5\x0b\xcf\x50\x02\x55\x1a\x71\x52\x0c\xaf\x68\x36\x17\xf3\x01\x3e\x42\x95\x57\xab\xfe\xd4\x6e\xad\xc3\x97\x27\x3d\x71\x9d\x35\x79\x0f\xc8\x71\xd6\x08\x0a\x33\x99\x9f\x68\xba\x2f\x19\xcb\xf5\xb4\x4b\x31\xe4\x69\xac\x4a\x66\xa5\xb5\x49\x3f\x64\x72\x1f\x2b\x45\x8e\x93\x11\xc8\x6c\xa5\xd2\x4a\x46\xd5\xd5\x09\xaf\xec\xe4\x0f\xf3\xcd\x63\xba\xca\x27\x7f\x98\xe7\xcf\xab\xcd\xe3\x83\x9a\x57\x97\x40\xa5\xfb\x36\x06\x6d\xb6\x48\x2f\x6f\x56\xb3\xf1\x4f\x4e\x96\x24\x7f\x9e\x22\x32\xb3\xdc\x13\x95\x66\xc4\x4f\x4f\x5a\x3c\x73\x85\x65\xe5\x19\xf1\xe3\xcf\x94\x2d\x0d\x80\x69\x03\x08\x58\x09\x2d\x10\xdd\x34\x35\x57\xa3\x23\x92\x35\x6d\xb7\x7b\x76\xac\x1b\x76\x93\x3e\xc6\xe5\x4d\x7b\x3a\xfd\x24\x32\xd4\x86\xd8\x16\x10\xf3\xd5\x4f\xc9\x4f\xda\xc7\xe2\xae\x18\x92\x74\x4a\xea\xbe\xc8\xe2\xd4\xbb\x75\x3e\x39\x59\x95\xc3\x74\x44\xa6\x53\xd7\x76\x0d\xeb\x0e\x27\x7c\xf9\xc1\xaa\x7c\x67\xae\x21\xc5\xba\xc0\xcb\xe9\xd7\x2c\x52\x47\x46\xd1\xf9\x8c\x6e\xec\x9b\x8c\x20\x47\xd3\x68\xd9\xa1\xae\x72\xfc\x9d\x3d\x31\xd8\xb4\xa3\x20\xdd\xd6\xa4\x1f\x42\x89\xfa\x23\x55\x1d\xbf\x9a\xa1\x36\x0c\x57\x30\xcd\x15\x8e\x33\xd3\x24\x2e\x9b\xa1\xaf\x21\x14\xd9\xc3\x6a\x99\x8c\x20\xf5\x4c\x5f\xae\xfd\x54\x27\x55\x76\xb1\x4e\x8d\xd5\xaa\xd4\x3e\x65\xe9\xf8\x2c\x6b\x1a\x68\x42\x94\x81\xea\xaf\x7f\x54\x53\xf0\x74\xdd\xfb\x29\x63\xe6\x25\xbf\xb8\x20\x09\xd9\xc7\xac\xaa\xbb\xe2\x58\x1c\xb8\xb1\xb9\x59\x2e\xdc\xe0\xc0\x61\x53\xab\x89\xc9\xb5\x87\x55\x39\xcc\x95\xad\xd7\xaf\xae\xb9\xb0\x16\x6c\x36\xad\xe6\x5a\x55\x36\x2d\x36\x67\x7b\xdb\x4d\xb3\xa3\xf9\xa5\xb3\x65\x93\x63\x4d\x53\x5b\xd3\xe7\x2a\x7f\xcc\x57\x70\xdf\x74\x87\x6f\x13\xdb\xc4\x0e\x59\x75\x60\xbd\xd3\x6c\xcf\xc7\x2b\x96\xc1\xf3\x30\x7b\x17\x4c\x3a\xf8\x36\x41\x99\x89\x08\x9f\xdc\xd1\xe4\x8c\x2e\x0d\x99\x70\xc3\xa0\xf1\x98\xf6\x3f\xce\x46\x06\x96\x7c\xc2\x26\x66\xbd\x15\xbc\xfd\xc3\xe3\xf3\x1e\xde\xf7\x74\xae\x05\x3a\xca\xe0\x4e\xc6\x7f\xd8\x67\xc7\x79\x7e\x80\x57\x3f\x6c\x5a\x72\x4d\x66\x93\x13\x6b\x33\xfb\xab\xf5\x1e\xda\xa7\x54\xc4\x7d\x2d\x63\xfb\x87\xfd\x81\xb1\xc3\x1c\x46\x9e\xd8\x02\xcb\xd5\x9f\xd3\xa7\x4e\xe2\xf8\x4f\xa9\x88\x93\x3b\xf8\x53\x1a\x2c\x33\x09\xe0\x0a\x27\xfd\x78\x7c\x9c\x5e\xb2\x97\xa2\x12\xb6\x42\x81\x67\xfd\x8f\x59\x92\x18\xbf\x4f\xab\xeb\x79\xcf\x9a\x76\xb0\x2c\xe6\x5a\x82\x2b\x3e\x5f\x2a\xb0\x6d\x55\xbf\x36\xd9\x65\x27\xac\xcd\x82\xa4\xd7\x77\xf9\x84\x64\xc6\xde\x3a\xb2\xf0\xd2\xb0\xef\x45\x7d\x6d\x6f\xd8\x88\x90\xd9\xd9\xac\xc5\xaa\xda\xdb\xdd\xa1\xd2\x1b\x3b\x7e\x84\xd7\xe6\xa9\x83\xda\x66\xf3\xd4\x24\x00\xa2\xea\xa3\x77\xd0\xa8\x4c\x73\xfa\x88\x5c\x66\x60\xf0\x49\xa5\x1c\x41\x9f\x58\x01\x18\x2d\x17\x79\xe4\xa7\xce\xef\x2e\x4d\xfd\xd2\xc8\x28\x1c\xbe\x49\xa5\x76\x91\x36\xfd\x52\x42\x26\x3c\x1c\xf2\x1c\x8a\x56\x37\xf2\x42\x2f\xd2\xb4\x07\xe4\x4b\x0b\xfe\x69\xaa\x70\xcc\xe4\xd1\xe9\xcf\x1f\x72\x41\x81\x9a\x42\x63\xab\x39\xb4\x2b\xad\x56\x7a\xdb\x96\x5d\xb2\x26\xeb\xd8\xce\xe1\xc1\x97\x3a\xc5\x1b\xcb\x6f\xfc\xcf\x69\x99\xbd\xd7\xd7\x6e\xcb\x3f\xd9\x20\x49\x97\x8b\xbd\x7e\xbd\x7a\x60\x65\x59\x5c\xda\xa2\x75\xd7\x13\x1a\xb3\x68\xeb\x32\xeb\x58\xee\xae\x8e\x04\xc8\x6b\xd1\x9d\x78\x6e\x4b\x1b\xc0\xf2\xd3\x7b\xa7\xd4\xdc\x95\x31\xcb\xf8\xc2\x46\x17\x3a\x94\x7f\x11\x1f\x30\x2e\x6a\x13\x42\x8b\x2b\xb7\x5a\x93\x2e\x9f\x20\x1f\x4f\xa6\x59\x00\x78\xfd\x0c\xc4\xaa\xbe\x8d\xf8\x8a\xb0\x6b\x44\x6e\x71\xee\xe9\x95\xec\xd0\xb1\x7e\xe1\x8f\x3c\x1b\xd1\xff\x8c\x23\xa3\xf7\xbb\x6d\x1c\x0e\xd5\x35\xc5\xc5\x8f\x5e\x75\x27\xb1\x13\xf1\x8d\x7d\x67\x15\x2a\x95\xdc\x9d\xfc\x22\x0e\xe4\x61\xbd\x1a\xdf\x9c\xcf\xd0\xe2\x4e\x33\x27\x73\xbe\xcd\x64\x18\xbe\x01\x87\x6f\x10\x9f\x1a\xc6\xa6\xff\x72\xcd\x9a\x8e\x35\xed\x40\xc5\x2d\x93\xae\xef\xe3\xfa\x67\x8b\xc2\x6b\x3d\xed\x4e\x45\x93\xdb\xd8\xfa\xbb\xc4\xdc\x6c\x66\x9b\x8d\x85\x7c\xca\xca\x23\x44\xeb\xbf\x48\x84\x75\x6a\x41\xd7\x15\x13\x24\x21\x8a\xfe\x2c\xf1\x96\xcb\xd9\x72\x89\xa0\xca\x9a\xb8\xc8\xb2\x40\x3b\xf7\x76\x0d\x9b\x6b\x75\xc8\xf8\x17\xab\x8a\x43\xc1\xcd\x1a\xc5\x3b\x62\xb0\xbb\xb3\x20\xe4\x55\x65\x4d\x53\xbf\x42\x36\xe2\xdb\xcd\x5c\x49\xf5\x6b\xa7\x44\xfe\x32\x1b\x46\x13\x20\xf2\x8b\xa1\x15\xe0\xf3\x09\x23\x6f\x42\x83\xcf\x5a\xa1\xc4\xda\xd6\xe5\xc6\x2d\x33\xc4\xe5\x9f\x54\x73\xf6\xbf\x1b\x96\x5c\x1a\x72\x93\xc2\x1c\x62\xcf\x25\xe6\xd3\x6c\xa9\xff\xef\x67\x83\x02\xf8\x6e\xc9\x62\xc9\xa1\xb6\x18\x7a\xd5\x93\xff\xf7\x68\x92\x82\x05\x90\xd6\x12\xd2\x5a\x0e\xea\x61\xd6\xc6\x56\x96\x15\xc4\x5a\x99\x3a\x89\x55\x06\x16\x40\x5a\x6b\x48\x6b\x2d\x69\xad\xe6\x44\x6d\x60\x01\xa4\xb5\x81\xb4\x36\xc3\x18\x33\x08\x38\x23\xee\x11\x62\x3d\x2a\x2c\xaa\x6b\xd6\x9e\xbe\x79\x82\xb4\x9e\x4c\xb3\x80\xd5\x66\xe3\xe9\x9b\x67\x48\xeb\x79\x30\x4e\x06\x01\xc7\x54\xcd\x53\x4b\xd1\x52\xa5\x69\x54\xef\x3c\x79\x7a\x67\x6e\xab\xad\xd2\xdb\x67\xaa\x7f\x9e\x89\xfe\x49\xb2\x81\xd2\xf0\xee\x81\x5c\xd1\xd8\xde\xe6\xb5\xca\x59\x53\x16\x15\x03\xbb\x25\xab\x34\x35\xe9\x19\xab\x32\x93\xb4\xb9\x58\x83\x0e\x12\x1a\xbb\x60\x6d\xc7\x68\x06\x3c\x87\x36\x58\x51\xa8\x34\x16\xd4\xf6\x81\x81\xd8\xcf\x7b\xc4\xac\xa6\x5f\x33\x01\xe0\x86\x5d\xe2\x7f\x9f\xf4\x01\x30\x3f\x5a\xb4\x9b\xc1\x3e\x4d\x15\xde\x0a\xf4\x7a\x30\x11\x39\xd1\x69\xfb\x9a\x75\x87\x53\xbf\xfa\xcc\xd9\xb4\xed\xb2\xee\x2a\x57\x50\x93\x59\x57\xd7\x65\x57\x5c\xb6\xdb\xec\x28\x66\x91\xd7\x7a\xda\x76\xec\x22\x33\x93\x53\xd9\x9c\x61\x5d\x86\xd9\x1e\x4e\x27\xa2\x66\xb0\xd4\xdc\x3c\xf7\x51\x31\xd5\x07\xa3\x93\x64\x37\x7c\xab\xca\xf4\x10\x8c\xe4\xfd\xf8\xfa\xc6\x2f\x01\xf0\xac\x48\x39\x62\xdd\x19\x83\x89\x8e\x29\x70\x08\xcb\x25\x07\x92\xef\x9f\xa2\x32\x74\x1d\x41\x4c\x02\xdc\xf4\x1e\xf3\x4f\xba\x5d\x2e\x6f\x3b\x9d\x59\x9e\x9d\xf9\x96\xb2\x08\x22\x18\x32\xf1\xb3\x33\xb2\x05\x6d\x6f\x51\x17\x55\xc7\x9a\x69\xef\xdc\x75\x2d\xd9\xb2\x42\x9a\x59\xd6\x1e\x82\x22\x1b\x40\x83\xd8\xff\xed\xff\xfa\xdf\x7e\xf2\xd0\xcd\x59\x0c\x61\x03\xca\xa4\xfc\x5f\x1d\xca\xae\xfe\x0d\x46\x4c\xed\x18\xc8\x72\xe9\xf8\x8a\x5d\x9e\x8e\x35\xea\x84\x41\x84\xc7\xc8\xd6\x11\xc7\xb7\xc5\xef\xbd\x8a\xea\x61\xfb\x86\xd1\x70\x56\x9d\x72\x0b\x7d\x3e\x79\x7e\x56\xd1\x69\x34\x5e\xd2\xe5\xe0\x78\x92\xd6\xa4\x10\xaa\x6a\x26\xb7\xfb\x1d\x4d\x5a\x5e\xde\xe4\x6b\x1b\xf0\x75\x8e\xe9\xdc\xd9\x51\x36\x2d\xac\xda\xc9\x02\x02\x89\x51\x78\xdd\xf7\xad\xce\x43\x0b\xec\x6c\xfe\xf8\xa6\x0f\x4e\x0b\x39\xfa\x83\x2b\x62\x21\x7f\xda\x3b\x9e\xc3\xc1\x98\xf2\x46\xe7\xc0\x2f\x34\xc4\xeb\xfd\x6b\x1e\x3d\x43\x7b\xbe\x43\xc8\x08\x30\xec\x9a\x9a\x78\xbd\xc1\x5d\x87\xf6\xcd\xc8\x9b\x6d\xc4\x54\xe4\x5b\xfd\x0e\xdb\x02\xd8\xc2\x79\x81\x1d\xfd\x89\x17\x92\x26\xf2\x5f\xcb\x5e\xb5\xde\x28\x3f\x6b\x46\x02\xa6\xa0\xaf\xa5\xb9\xcf\x62\xd6\xde\xfc\x3e\xcc\x10\x7a\xfb\x4a\xc8\x84\xcd\xce\xd8\x6c\xde\x26\xd7\x12\xfa\xf7\x73\xe3\xd8\xbf\x51\x87\x72\xaa\xa2\xc3\x1a\x44\xcf\x1b\xf6\x46\xa2\x2f\xe2\xe3\x23\xd4\x4e\x08\xba\x8c\xdc\x20\xe2\x36\xe4\x1b\x54\x70\x18\x83\x83\xef\x01\x66\x08\x01\xbd\x39\x87\xe1\xea\x2d\xa5\xf6\xba\xaf\xb2\xef\xc3\x38\xe6\x7b\x37\xe2\xfc\x70\xde\x2b\x80\x38\x18\x5e\x0f\xb3\x41\xba\xfb\x7d\x5a\x54\x39\x7b\xeb\xd7\x35\x36\x9d\x5f\xfe\x68\xaa\xea\x7a\x78\x25\x24\xe6\x60\xc7\x12\x49\xd6\xa6\x67\xf1\xc2\xf7\x0d\xfa\x31\xa6\x03\x22\x94\x8e\xf2\xb5\x96\xed\x10\x0d\x47\x51\xb3\x27\xbe\xad\x06\x02\x25\x87\x28\x33\x39\x82\x0d\xf2\xb3\xaa\x9e\x8a\x68\x34\xf5\x6a\xcf\xe4\x50\xe7\xec\x06\xbf\x69\xdd\x35\x31\x8b\xc1\x6f\xb2\xbf\x47\x9d\x1d\x21\xf4\xb0\x73\x22\xa8\x16\x38\x1e\x76\x3c\x21\x0f\x24\xbc\x78\x87\xfa\x7c\x29\x99\x75\x5a\x23\x8f\x35\xbd\x88\xee\x09\x14\xf2\xea\x9f\xcb\x0e\x3f\x6a\x72\x9f\x9e\x75\x30\x4f\x75\x59\xd6\xaf\x4e\x8c\x96\x35\x34\xad\x53\x5c\x87\x8a\x11\x9a\x6f\x5c\x50\x91\xf6\x3e\x91\xac\x8b\x4e\x6c\x6b\xf5\xcb\x5c\xf5\xfb\xda\xf8\x7d\x63\x3f\x50\x24\xf7\x08\x79\x39\xdf\x55\xec\x27\xab\xa6\xae\xcf\xe0\x89\xa5\x1e\x28\x9b\x64\xf0\xfc\x3a\xb4\x00\xfa\xe0\xba\x28\x80\x0f\xd7\xa6\x61\x55\xf7\x0f\xfd\x1f\x56\x55\x87\x93\x59\xe7\x50\x96\x4f\x43\xe8\xcc\xe4\x75\x50\x3e\x66\xec\xbc\xef\x4d\x77\xd6\x16\x87\x69\xde\xd4\x97\xbc\x7e\xad\x30\xff\x01\x83\x53\xb1\x03\x88\xb7\x20\xa6\x58\x7e\xc8\xa0\xcc\xca\x3c\x05\x13\x39\x38\x17\xf4\x51\x9f\x8a\x28\x3f\x65\x04\xfd\xa0\x22\x98\x50\x5b\x43\x14\xb8\xef\x99\x32\x7b\xb7\x6d\xa3\xed\x7b\xa5\x93\xfe\x67\xb6\x7e\x30\x57\x14\xe6\x4b\x61\x43\xc5\xa4\x1f\xa4\x1f\x27\x43\x5c\x63\xaf\xd8\xaf\x75\x73\x3e\xd5\x25\x9b\xd6\x4d\xf1\x52\x54\x56\x7c\xae\x42\xbe\xd4\xaf\xac\x91\xab\x90\x69\xd7\x14\x2f\xf8\xbb\x9c\xbd\x7f\x04\x03\xc8\x1f\xd7\x7a\xbe\x9f\xbe\x05\xb6\xf5\xcc\xe7\xd0\xc4\x4a\xe0\xda\x6a\xae\x30\x62\xde\x29\xb0\xd6\xbe\xb4\xd4\xee\xe2\x44\xd5\x98\x7b\x07\xbb\x43\xc9\xb2\xa6\x5f\xef\x9e\x7c\x54\xa6\x7a\xea\xf5\x70\x02\xd7\xd7\xac\x90\xb6\x2c\xcb\xe8\xd5\xb4\x51\x28\xbd\x07\xb4\x4c\xb8\x1a\x76\x91\x75\x51\x04\xed\x7c\x5d\x8b\x3d\x2b\xeb\x57\x4f\x1d\xfe\x9c\x35\x45\x36\x65\x6f\x97\xac\xca\x59\xfe\x77\x5d\x73\x65\x7f\x99\x04\x68\x16\xd5\x94\x07\x9a\x8f\x24\x7b\xbb\xff\xb8\xc5\x2f\x4f\xb6\xaf\xbf\xdf\x2b\x4c\x57\x5f\x70\x49\xfa\x02\x5c\x0c\xc0\x02\x89\xb8\x7f\x7e\x7e\xb6\x96\x28\xee\x00\x41\x8e\x79\xf1\x31\x83\x32\x95\x3b\x2e\x3c\x58\x96\x5e\x4b\x9b\x01\xf8\xd2\xcc\xe8\x48\xa2\xd4\x5e\x5d\x49\xc7\x98\x1b\x55\xd9\x02\x6d\xf7\x5e\xb2\x2d\x57\x3d\xb8\xb8\x79\xbc\xbc\x25\xab\xde\xdf\xb4\x2f\x61\x64\x99\xf9\xbe\x19\x78\xeb\x4c\xa8\xf9\xfa\xf2\xe6\xef\x4c\xac\xab\x92\x50\x13\x0c\x2e\x56\x53\x77\x59\xc7\xbe\xcd\x9f\xd2\x9c\xbd\x3c\xa0\x6d\xc7\x87\xff\x74\xdf\x61\x2d\x67\x2d\xb0\x65\x34\xa3\x21\x34\x6a\x29\xce\xd7\xb2\x2b\x2e\x25\x9b\xf2\x2b\x16\xc2\xbf\x38\x66\xe7\xa2\x7c\x57\xe6\xca\x98\x51\xd5\x17\xf3\x8c\x1d\xed\x30\xd3\xca\x2a\x24\xea\x3a\x91\xf4\x49\xb6\x60\x12\x2f\xeb\xac\xdb\xf6\xaa\xed\xce\x8b\xce\x23\x74\xfd\x5c\x53\x75\x22\x5e\x35\xba\xa6\x5b\x75\x71\x07\xdb\xa9\x62\xde\x99\xc5\xa6\x04\x2e\xae\xe8\xd7\x71\x77\xc3\x80\x1a\x45\x4c\x35\x13\xff\x73\xfa\xb5\xa4\xcf\xf5\xef\x5f\x4d\xb1\xfd\x8c\xa0\x9a\x5c\x7d\xe9\x75\xb9\x45\xd7\xba\x61\x3c\x77\x5b\xe3\xa5\xc9\xde\xad\x80\x80\xd5\xe5\x4d\x89\xb3\x5c\x2e\xb1\x70\x8a\x55\xff\x63\xc4\xf8\xad\xdc\xdb\x6a\xae\x76\xcf\x67\xab\xb5\xa9\xae\x52\x6e\x71\xe7\xbb\xff\xef\x92\x50\x4b\x5d\x87\x86\x9d\xeb\xef\x8c\x0f\x6a\xdc\x05\x0d\xa1\x89\x18\x7a\xee\x56\x3f\x0c\xaf\x9d\xae\x71\xe3\xcb\xb2\xe6\x30\x9c\x1f\xaf\x08\xe1\x04\x98\xb4\x09\xee\x3e\x8b\xe9\x01\xa8\x99\xc7\x70\x05\x5d\x83\x81\xd9\x83\xa1\xa1\xb9\x8d\xda\x67\xf9\x0b\x9b\xcc\xf8\x63\xca\x53\xe3\x71\x4c\x11\x48\x62\xaf\x6f\x83\x52\x03\xf7\x26\xd2\x0d\x01\xc4\xb4\xcb\xef\x75\x67\x68\x2f\xc8\x71\x34\x5d\x75\xb4\x43\x7c\xec\xf3\xe5\xb0\xd7\xa8\x84\x0c\xf8\xfe\xdc\xc7\x88\x76\xf5\xdc\x9d\xab\x3b\xdc\x9d\x7b\xc4\xe4\xee\x1e\xea\xb3\x46\x12\x50\xbe\x9d\x7d\x09\x24\xca\x97\xfd\xac\x33\x35\x56\x46\x33\xd6\x08\x21\xa7\x4c\x62\x59\xb4\x9d\xf4\x66\x78\x55\xa2\x17\x1d\x3e\xaa\x7f\x6e\xea\x92\xfd\x5d\x4f\x7a\x5f\xbf\xfd\x45\x07\x36\x4c\xdf\x85\x0f\xa5\x48\xea\xef\xed\xa1\xa9\xcb\xb2\x1f\xad\x5d\x7d\x3d\x9c\xf8\x79\xa7\xd2\xed\x85\x8c\xba\x27\xb9\xd9\x5b\xff\xc3\xc0\x7f\x22\xcc\x4f\x6f\x98\x2f\xc2\x9b\x52\xd3\xb4\x74\x7c\x0d\x2f\xd5\xbd\x6f\x3b\x8e\x16\xea\x99\x09\x89\x51\x1d\x14\x45\x21\xa9\x90\x25\x6e\xac\xa4\x26\x03\x15\x2d\xa4\xfc\x7d\x37\xe6\x2e\x0f\x13\x91\x1b\x26\x24\x8d\xf5\xd3\xf3\xe3\x71\xbf\x73\xb7\x1b\xdc\x06\x9c\x56\xd9\x59\x6f\x91\xe4\xec\x98\x5d\xcb\x6e\x67\x9d\x45\xf8\x3c\x07\xb4\xd9\xe2\x3d\x2f\x70\x63\x18\xb5\xfc\xa2\xb9\xcc\x7b\x74\xc2\x62\x7b\x55\x0c\x55\x81\x40\x89\x68\x09\x78\x8b\x88\x9a\x46\xef\x61\x22\xc7\x0c\x60\xb0\x4a\x47\x33\xc0\xc8\xdc\x2b\x27\x52\x65\xaa\x59\x55\x77\xe7\x45\xf3\x77\x4d\x57\xfe\x65\xf0\xe8\xc4\x2e\xe3\x26\x12\x0f\x15\x26\xa4\x05\x51\x44\x50\x55\x11\x33\x78\x6c\xa5\x50\xba\x96\x4f\x7a\xbf\x80\xd4\xca\x8c\xfb\x98\x5c\xd0\xfb\x85\x34\x17\x9e\xe2\x9d\x7f\x7d\xca\x51\x54\x45\x57\x64\xe5\xfd\xb4\x87\xb5\xa9\x3c\x41\x89\x22\xad\x26\x48\x3f\xed\x2f\x1a\xad\x72\x4d\x4c\x0d\x83\x1f\x27\x8b\x35\x1a\x1b\x79\x6e\xf3\x83\xe4\x40\xb9\xfd\xd8\x5a\x63\xed\xcc\x87\x53\x76\x38\xd4\x4d\xce\x63\xca\xf5\xaf\xfc\x56\xe8\x04\x2f\x12\x71\x47\x51\x27\xbb\x56\xea\x8e\x47\xe3\x8c\x9a\xe4\x6a\x9e\x22\x7a\x24\x00\x87\x8d\x84\x7f\x68\x1c\x25\x3b\x1e\xe2\xc2\x5b\x75\x90\xfd\x86\x96\xc1\x38\xcc\x0c\x44\x36\x05\x8e\xb4\xfd\xe7\xe1\x84\xa0\xbc\x23\xc0\x4d\x3a\xec\xbc\xb9\x64\x6f\xdb\xb9\x87\x02\x79\x3b\x25\x80\x53\x54\xf0\x62\xaa\x0a\x17\x20\x91\xec\xbf\xf5\x09\x8c\xb1\x2e\x05\xc6\xde\xa7\x29\x36\xc1\xae\x7e\x79\x29\x99\x48\xa1\xd3\xfb\xf5\x7c\xbd\x8b\x9c\x28\xf1\x35\xec\xcd\x3c\x6c\xb5\xce\x61\xdd\x3b\x0a\x58\xce\x12\x10\xc9\xfd\x0f\x75\xce\xfe\x43\xd1\x34\x75\x33\x99\x1d\xce\xd3\x76\xda\x7b\xe8\x92\xa2\x51\x78\x03\xf9\x6a\xb8\x20\xd8\x55\x34\x32\x25\x8e\x8d\x63\x07\x6c\x58\x4f\x5e\x3f\x3d\x60\x08\xf2\x90\x92\x3c\x5c\xa4\xa2\x55\xf4\x83\xe9\x0e\xc5\xf6\xba\xef\x4a\x24\xfa\xc7\xbc\x40\xbb\x7c\x80\x39\xb3\x14\x11\xfb\x0a\x1d\xbc\x25\xe7\xc1\x41\xeb\xee\xdc\xd9\x75\x71\xbc\xd5\x57\xb7\x54\x88\x2b\xff\xfc\x6d\x63\x87\x22\x51\xfd\xa1\x1f\xa8\xba\xdb\x63\x0e\xde\x5d\x80\x2f\xe6\x01\x1c\xb4\xee\xc3\xcb\x91\xa0\xe2\xc6\xd3\xb4\xbe\x7e\x97\xd1\x3a\x78\xc5\x75\xee\x3f\x87\x28\xd5\xf5\xe6\xd3\x6b\x54\xf5\xad\x0b\x8f\xc6\xcd\x46\xe7\xfd\x38\x13\x05\xef\x78\x93\x21\xa8\xff\xf0\x8a\xa4\xa7\xfa\xfc\x7e\x25\x11\xa4\xa5\x9e\x0a\xb4\x09\x12\x55\x1f\xba\x81\xaa\xb7\x1b\x06\x01\x2f\x62\x7a\xb1\x46\xaa\x3d\x78\xe0\xcd\xd7\x00\xf2\x5e\x28\xd1\x06\xea\x85\x2e\x84\x2c\xd5\x0c\x8f\x93\xf9\xd3\x66\x32\x5f\x3c\xfb\xf4\xbf\xc2\x14\x00\x09\x25\x01\x28\x23\x9b\x60\x78\x5c\xc9\x53\x7f\x75\x6b\x95\x1a\xf8\xf2\xc1\x07\x9b\x26\xa5\xfe\x43\xdc\x23\x55\x77\xf1\x92\xc9\xa8\xba\xeb\x37\x58\xe2\xeb\x3e\x3c\x85\xf2\x75\x75\x57\x34\xef\xaf\xbb\x7b\xeb\x17\x5e\xec\xf5\x62\x8d\x6c\x01\xf0\x5e\x81\x6f\x00\xc8\x7b\xc6\x78\x23\xe8\x84\xf3\x08\x59\xa2\x1d\x56\x9b\xc9\xfc\x71\x33\x59\x3f\xd2\xed\xe0\x5e\x57\x86\x37\x92\xbd\x58\x23\xdb\x01\x64\x08\xf7\x4d\x04\xf2\x82\x34\xe1\x03\xa8\x14\xcf\x08\x59\xd2\x0b\x48\x27\xf3\xd5\x62\xb2\xf4\xce\x04\x15\x1e\x0c\x82\x84\x6b\x59\x48\x23\x9b\xc1\xcc\xcb\xeb\x69\x05\x75\xb1\x1b\x6f\x05\x9d\x63\xd5\xa5\x4a\x35\x42\x9a\x4e\x36\xab\xc9\x7a\x41\xb7\x41\xac\x1f\x27\x8e\x5a\xb4\x47\x3a\x1f\x6e\x9e\x0d\x20\x3a\x1b\x88\xe4\xb4\x59\x3c\xae\x9f\xa1\x75\xcf\x9f\x73\xc6\x36\x1f\x32\x0f\xa9\xf0\x89\xed\x93\x2d\x70\xcc\xe3\x5e\x3a\xe5\x3c\x4d\x10\x73\x31\xe4\xdc\x94\x05\x90\x09\xfc\x73\x2a\x22\x8b\xbd\x20\x7c\xa9\xe3\xb9\x52\x89\xac\xb7\xdc\xa5\x10\x58\x2a\xf1\x95\x42\x5e\x34\x52\xf8\xa6\x7e\x05\x79\x48\xf6\x59\xcb\xc4\xf5\x9e\x1e\xae\x5f\x3b\x6c\xe5\x02\x22\x54\x93\x64\x76\xb9\x96\xa5\x58\xc2\x44\xd4\xca\x04\xbf\xb9\xe9\x6b\xc2\xad\x72\xef\xda\x37\x48\xd9\xb3\x30\x8c\xc2\xd5\x63\xcc\x3d\xb9\xb2\x82\x20\x47\x90\xfb\xc5\x2a\x35\xd2\x65\x0d\x67\x49\x20\x61\xda\xa3\xab\xaa\x18\x0b\x94\xb0\x71\x11\x7e\x48\xac\x37\xea\x14\xca\xcb\x17\xf0\x00\x5a\x6d\x99\x1e\x52\xcb\x9d\x18\x7c\x37\x3f\x58\x50\x82\x19\x91\x2b\x0c\x2e\x72\x47\x92\xf9\x55\xee\x43\x7d\x2f\xd8\xab\xb9\x55\xf3\x2b\xdc\xde\x19\x4b\x35\x66\xd7\xe7\x73\xfd\x81\xac\x4d\xd4\xab\xef\x56\x38\xd2\x7a\xfd\x94\x66\xd6\x22\x35\x48\x7d\x48\x16\x70\xff\xf1\x6d\xd0\x04\xb9\x57\x33\x3e\xb5\xf9\xe4\xe5\xd7\xd4\xaf\xe6\x06\x0e\x99\xd8\x49\x19\xd4\x30\x39\x7b\x24\xf6\x1c\x8c\x0a\x21\x53\x8f\xde\x8f\xf8\x15\x35\x90\xe8\x60\xf2\x6d\xb3\x44\xd1\x36\x2d\x0f\xa9\x03\x24\xb6\xa9\x02\x66\xda\x21\x32\x23\x11\x42\x98\xef\x41\x04\xab\xec\x49\x43\x74\x07\x79\xa4\xd6\x64\xb3\xa1\x04\x90\x8a\x23\xfb\x2e\x58\x26\x25\x84\x03\x9f\x9e\xc2\x9d\x6e\x5e\x46\xf2\x6d\xb3\x44\x91\xc7\xfa\x5d\xed\x54\x44\x11\xc0\xba\xde\xbb\x01\x43\x92\xef\xed\x54\xb0\xf6\x68\xf6\xa8\xbb\x48\x23\x35\xc7\xdb\x0d\x43\x46\x6a\x6d\xef\xbb\xc0\x94\x57\x08\x5d\xb9\xf1\x10\xae\x32\x9d\xe7\xca\xaf\xf2\x04\x03\xac\xe2\xea\x15\xf5\x48\x12\x58\xf5\xdd\x5d\x17\x2c\x5d\x17\xaa\x56\x55\xb8\xdf\x3d\xa9\xb8\xfc\x8d\x80\x51\x47\x5a\x40\x3f\xc8\x19\x83\x8f\x54\x1f\xd9\x78\xc0\x72\x89\x21\x0c\x8a\xea\x58\xff\xb8\xea\x63\xd4\xc7\x54\x1f\xc3\xff\xd2\xea\xcb\xdd\x87\xf0\x28\xa0\x93\xa7\xf9\x5b\x80\x60\x80\x8d\x02\xf5\x32\x60\x24\x09\x6c\x14\xb8\x5b\x2f\x58\x0e\x38\x6c\x5e\x15\xbb\x0f\x61\xf3\x4f\x67\x7d\xf3\xb7\x03\xc1\x00\x9b\x00\xd4\x5b\x5c\x91\x24\xb0\x29\x00\xdd\x7a\x71\x92\xd7\xa1\xd6\xb6\x7a\x61\x4d\xb0\x19\x3c\xe9\xea\xfc\xcd\x80\xd3\x47\x5a\x41\x3f\x85\x13\x47\x01\x69\x04\x6c\xe7\x05\xc9\xb9\x67\x1e\xb9\xc9\xc0\xb7\x9b\x71\xf7\x67\x2d\x72\xdb\xf0\xa3\xb8\x53\xd6\x9e\x8a\x69\xc3\x32\x91\x2b\xda\x3d\xab\xe3\x00\xe6\x29\x1d\xb2\x2d\xcb\x0f\x01\x94\x08\xe0\x3c\xd7\xc8\xd0\x21\x43\xf2\xcf\x75\x55\xf3\x23\x47\x1d\xa2\x27\x02\x63\xcf\x75\xdd\x9d\xf8\x1b\x79\xd7\xae\xb6\xe3\x93\x4d\x61\x13\xb3\x72\x22\x81\x68\x3b\x41\x2b\x83\x41\x62\xe2\x9b\x8b\x17\xf5\xb4\x09\xce\x4e\xec\x01\x45\x70\x13\x80\x20\xf0\x56\x2c\x4c\xfb\x3a\x26\xda\xad\x20\xd8\xf4\xb5\x17\x59\x0a\x23\x58\x0d\xc0\x6a\x43\x6b\x79\x58\x3f\x3f\x3e\x06\x3b\x58\xbd\x97\x91\xe4\xc5\x77\xa0\x30\x32\xbc\x88\x50\x80\x10\x9a\xff\xa4\x73\xfe\xe0\xad\xf5\x76\x2b\xc8\xf0\xf0\x23\x0f\xdc\xaf\xed\x25\xab\x46\x01\xfb\x30\x3c\x2d\x3b\x1e\xe3\x4e\x46\xa8\x90\xa3\xda\xb2\xc7\xed\xff\x3e\xd4\xe7\x33\xab\x3a\x82\xaf\x05\x65\x67\xc0\x40\xe8\xb5\x5d\x53\x54\x2f\x13\xba\x68\xba\x08\xf0\x72\x29\x90\x40\xd3\xc5\xcd\xf2\xee\x10\xb6\xde\xb1\x01\x81\x6e\x3a\xd8\x74\xc5\xd6\x4f\x28\xb5\xef\x59\x53\x88\x34\x37\x9e\xc2\x60\x1d\x31\x2a\x1e\xb0\xa1\x9e\xf3\x3c\x63\xfd\xbc\x82\x30\xcf\xd9\x31\x40\x2e\x67\xc7\x88\xf6\xaa\x2f\xac\xc9\x3a\xd2\x70\xd9\x60\x11\x3a\xf1\x1b\x7b\x7f\xad\x9b\x3c\x40\x50\x42\x0d\x99\xbe\xf3\x7c\xfd\x88\xd2\xcb\xba\xfa\x1c\x20\xd6\x83\x28\x4a\x4f\xe9\x63\xce\x70\xc9\xce\xac\xcb\xd0\x9e\xec\xb2\x90\x06\xda\xa8\x08\x48\x97\xbd\x44\xb4\x77\xd6\x89\x07\x57\x70\x95\xfa\x97\x6b\x56\x16\xc7\x22\xa8\xc0\x28\x15\x04\x4e\xd3\x1b\xda\x39\x4d\x9f\xf0\x76\xbe\x34\x7d\x27\x77\xef\x01\x92\x0a\x2c\xa2\xae\xfb\x6b\x51\x76\x45\xe5\x1f\x3c\xcb\x00\x3f\x84\x88\x6f\xec\x2c\x3d\x35\x35\xed\xaa\x08\xc0\x12\xd7\x9e\xb4\x21\x8d\xb0\xc7\x28\x1e\x5c\x3b\xac\xfa\x1f\x92\xf1\x39\xeb\x0e\xbd\x33\xb3\x6f\xb2\xc3\x6f\x8c\x32\xc5\x1e\x0c\x27\x17\xcb\x90\x4f\xcd\xf4\x45\x63\xbd\x1e\x5c\x80\x80\x57\xc7\xdd\xa2\x8f\xd9\xa1\xbe\xbc\xab\xe4\x61\x56\x8e\xc5\x46\xbf\x4e\xa5\x8e\x2f\xf8\x7e\xa8\x81\x91\xc8\x77\xee\x64\x87\xe9\x8b\x40\x08\x08\x5f\x16\x75\x59\x57\x1c\x3c\x29\xd7\x10\xbc\xa4\xfd\x2e\x9f\x2b\x32\xb3\x2b\x7c\xcc\x0e\x65\x31\x7d\x2d\xaa\xbc\x7e\xb5\xdf\xdd\x31\xf6\x13\x4d\x8f\x78\xb8\xbc\x24\x8e\x96\x06\x02\x09\x4f\xe1\x60\xa4\x07\x00\x85\xc3\x39\x90\xb5\x1d\x37\xc0\xf0\x74\x1b\x65\xd6\xf6\x95\x03\x51\x6e\xf6\xfd\x5b\x5f\xcc\xb5\x9b\xb9\x61\x08\xbd\x5b\xb2\x33\x8f\x4c\x4f\xf8\x6f\xfd\x7f\xd0\x64\xc2\x91\x4f\xba\xc2\x05\x06\xcf\x60\x8b\x1d\xb1\x88\xc4\x76\xc3\xe5\x57\xfb\x84\xd4\xae\x9c\x7a\x68\x2d\xe2\x46\x7f\xa4\xa0\x13\x33\x7d\x4f\x0f\xa8\x83\xb1\x6c\xde\x66\xea\x10\x9f\x04\xb3\x7b\x5e\xff\x44\xde\xb0\x88\x6f\xec\x89\x92\xbd\xff\x9f\x75\xb6\xdd\x7b\x78\xbe\x9a\x84\x22\xe4\x63\x6b\x1a\x8c\xb4\x37\x4e\x8c\xa8\xd6\x78\x5c\xdf\x23\xec\xa5\x61\xc7\xe2\xed\x53\x72\x0a\x12\x64\x84\x03\x97\x4b\x98\x8a\xa9\xf9\x56\x0f\x78\xbd\xd1\x3d\xec\x1e\xfd\xfe\x31\x7f\x5a\x4d\x37\x00\x8c\x3b\x46\x72\xae\x60\x48\xbf\x0c\xe8\xe6\x49\xf7\x74\xce\x4f\x99\x10\x84\xc1\x6c\x98\xa5\xbe\x8c\x22\xd6\x95\x57\xe2\xd9\x53\x9c\x0b\x7c\x3c\x36\xc4\xcb\x1d\xcb\xe4\x60\xc5\x98\x9a\x27\x99\xa1\x0a\xe3\x38\xe1\x66\xf0\xc4\x04\xe0\x47\x81\x84\xa8\x43\x64\x47\xb4\xa4\x26\x4a\x9c\xa0\x81\x24\x70\xee\xb1\xa4\x93\xa8\xc3\x7c\x46\x4d\xdf\x81\xda\xd9\xf7\x87\x88\xfc\x15\x48\xac\xb8\x66\x50\x74\xec\x1c\x71\xa9\x6d\x44\xb2\x69\x4d\xda\x63\x1f\xc0\xb8\xd7\x8b\x95\x21\x13\xd0\x45\x9c\x9f\x3a\xa4\x1c\x88\x71\x66\x89\xa4\xeb\x81\xa5\xa5\x07\x4f\xdf\xd8\xa2\xe1\x73\xa5\x2e\x1b\x5e\xd4\x2b\x8b\xe4\x5a\xfa\xae\xe0\x3a\xcf\x46\xa4\x2e\x33\xec\xce\x8a\x98\xe2\xed\xe3\x72\xe3\xee\xec\x0a\xf3\x9c\x6c\xca\xbf\x5e\x4b\x70\x57\xd8\x2e\x4f\xec\x2f\x88\xbc\x58\xca\x16\xfb\x82\x7a\x04\xe5\x44\x0c\x02\x3c\xd3\xec\xf2\xf2\x96\xf0\x21\x51\x54\xc3\x5b\x0d\x97\x37\xda\xb1\xa1\xb8\xfc\xe2\x54\x08\xbf\xb9\xee\x78\x2b\x14\x41\x65\x7a\xc3\x80\xce\x63\x58\xca\x81\x1b\xfc\x34\x73\x57\x72\x31\x08\xa3\x0e\x54\x22\x85\x11\x2d\x19\x2d\x92\x6c\x78\xb0\x82\xd8\x80\xb6\x7e\x7e\x02\x56\xcb\x25\xc7\xce\x97\xee\x9d\xe8\xba\xa7\xcb\x5b\xc2\x73\x1f\xaa\x5d\x68\x79\xdb\x86\xe3\x4c\xd5\xb3\x86\xd6\xc3\x1d\xf4\x21\xb8\x69\x47\x01\x89\x04\xfe\xc9\x8f\x11\x78\xe2\xd0\x21\xbd\xc3\xc2\x7c\x81\x92\x5b\x25\xec\x9d\x6b\x2f\x55\x10\xf8\x94\x26\x0b\x95\xee\xd8\x24\xb1\xb3\x0c\x5f\x90\x60\xd2\x76\x4d\x5d\xbd\xd8\x06\x93\x89\x0d\xeb\xba\xea\xb2\xa2\xd2\xcf\x0b\x38\x09\xd1\xcc\x98\xb1\xc5\xfa\xfb\xc9\x1b\x2d\x28\xde\xee\x76\x9e\xa1\x13\x0f\x60\x63\x8f\x6f\x3b\x1d\xe1\xc8\x95\xc8\x0f\xaa\x2b\xa5\xce\xac\xbf\xbf\x9a\xc9\xd8\xc5\xc9\x86\x1f\x35\x11\x79\xfe\x6e\x58\xa7\xe0\x88\x6d\x97\x1d\x7e\x9b\x76\xcd\x90\x97\x21\xe6\xe9\x49\xfb\xac\x8a\x24\x5f\x16\xd5\x6f\x3a\x71\x8c\x30\x11\xeb\x61\x62\xd6\x7f\xfb\x4c\xc8\x8e\x6e\x0e\x4c\xf9\xe4\xbb\x6b\x66\xff\x52\x89\x40\xe4\x71\x8e\x93\x53\x56\x90\xb0\xdf\x1a\x85\xf3\xd9\x88\x3c\xa2\x52\x22\x20\x85\x98\x13\x45\x09\x5f\x05\x5c\x58\x65\x87\x24\x2f\x53\x7e\x33\x69\x3d\xdf\xcf\x17\x41\xa1\xd4\x36\x02\x06\xd8\x4f\xa6\x40\x7a\xd7\x69\xb7\x5e\xe4\x34\x1f\xd9\x1b\x52\x60\xf1\xdf\xca\xac\x63\xff\xf9\x1b\x2f\x7a\x18\x52\xaf\x2e\x52\x01\x27\xa8\x6a\x94\x84\x65\x2d\x9b\x16\x55\xbf\xca\x49\x66\x8b\x96\x92\x4e\x37\x01\xca\x2c\x7d\xa0\xf0\x12\xf9\x5d\xde\x01\x9c\x90\x60\x55\x7d\xce\xf2\x69\x59\xbf\xd4\xd6\xab\xd8\x14\x42\x0f\x6a\x58\x8e\xc0\xa3\x85\x98\x39\x31\x9f\xf5\x33\x1d\xd3\x05\x1f\xc7\x8a\x2f\xef\x1b\xa3\x19\x55\x09\xdf\x9d\xeb\xa7\x07\x7b\x52\x20\x93\x3f\xfe\x21\x65\xab\xf5\x32\xdd\xa9\x1c\x43\x2a\xe9\xcf\x21\x2b\x0f\xdf\xe6\x69\xfa\xfd\x35\xf9\x25\x91\xfd\x36\x88\xfb\xfd\x04\x93\x40\x22\x1d\xf0\x4f\xdf\xa6\x7d\xbd\x1e\xcc\x1e\x96\x4c\xec\xfe\x1d\x14\x62\xfe\x3c\x7e\x88\x90\x3a\x2b\x1f\x7a\xb7\x5a\xc6\xa7\x34\xff\xf4\x2d\x7d\xd0\x2d\x31\x7b\xd4\xc3\x42\x5d\x16\xc5\x47\x83\xfd\x6c\xa9\xfd\x74\xe6\xec\xb1\xef\x4c\x9d\x3f\x13\xf4\xba\x50\xab\xa7\xf4\xb0\xce\x32\xc7\xab\x02\xcc\x7f\x6d\xbf\xbf\xa8\xa9\x68\x7d\x79\x1b\xdf\x4e\x76\x25\xc0\x73\xf8\x1f\x33\xf9\x67\xce\x8e\xfc\x6a\x3f\x77\x34\x84\x87\x62\x65\x0d\xbe\x5e\x2e\xac\x39\x64\xad\x9d\x26\xce\xca\x5b\x0b\x56\x51\x0b\xf8\xb4\x26\xc8\x42\x67\xa6\xb6\xc6\x84\xb8\x64\x45\x03\x73\x3a\x2c\xf8\xa3\xf5\x04\x68\x32\xeb\x58\x73\x76\x92\xea\x3a\x4f\x78\xd3\x14\xec\xeb\x15\xb2\x46\x3e\x96\xa7\xac\xed\x9d\xb1\x53\xd6\x16\xf6\xdb\x75\x4e\x1d\xff\xb9\xde\x4f\xf3\xe2\xa8\x8f\xa9\xe4\x7c\x82\x86\x04\x0c\xd0\xbd\x50\x59\x9e\xb3\x7c\x02\x3e\xe5\xac\x64\x1d\xb3\x92\x67\xcf\x0f\x27\x88\xc8\xf2\xc2\x01\x5a\x98\x40\xc9\xac\xff\xaf\x0e\xb4\x30\xfa\x5d\x26\xe2\xb3\xde\xa5\x0e\x22\x6b\x71\x01\x95\x69\x14\x9e\x94\x16\x20\xae\x62\x10\x55\x63\x8c\x63\x99\xcc\xce\x59\xf3\x9b\x98\x50\x85\xc8\xd6\x19\x4f\x2c\xb2\x94\xdb\x8a\xbe\x89\xc5\x56\xc2\x5b\x71\x2b\x04\x3a\x1f\xb5\x4e\xca\x74\x0a\xb8\x2e\x0d\xb5\xb1\x0a\x0f\xa7\xac\x7a\x01\x8f\x45\x3b\x29\x80\x08\x4c\xf1\xd8\x09\xc8\x65\xeb\x87\xe5\x81\xd9\x00\xbe\xff\x12\xc0\x39\xb0\xb2\xb4\x90\xfa\x4f\x11\x58\xbf\x90\xe4\x4c\x05\xe1\x83\xa5\xac\xf9\x4b\x0c\xd3\xf6\x52\x54\x83\xcb\xbf\x4a\x87\x27\xae\x57\xa9\x76\x40\xc5\x1a\x38\x11\x2b\x7b\x0b\x33\xb1\x3f\x4c\xdb\x7f\xb9\x66\xfa\xcd\xec\xe5\x52\xaf\x21\xfa\x5f\xc9\x2b\xbd\x46\xf2\xc1\xac\x2a\xce\xe2\xc4\x0b\xa7\xfc\x6f\x9b\x22\xff\xc7\x43\x56\xb2\x7f\xcd\xca\xec\x3d\x99\xcf\x96\x6d\x52\x54\xdc\x42\x31\x73\xa2\x8d\x16\x75\x7e\xd3\x2c\x7b\xa5\xcc\xde\xb7\xdc\x05\x8b\xc4\x5e\xb8\xd8\xcb\x78\xec\xa5\x8b\xbd\x8a\xc7\x5e\xb9\xd8\xf3\x78\xec\xf5\xa7\xea\xbd\xf9\x54\xbd\x1f\x1d\xec\x34\x1e\xf9\xe9\x53\xd5\x7e\x46\xab\xfd\xf7\x2a\x16\xed\x37\xf6\x7e\x6c\xb2\x33\x6b\x93\x18\xf5\xbb\xa5\x3f\x4f\x7a\xbf\x66\xf2\x98\xfe\x6c\x38\x58\x6d\x0f\xb0\xfc\xd7\xdf\xe6\x93\xf9\x64\xfe\xf0\xb1\x5c\x63\x85\xe9\x24\xed\x0b\x3f\xfe\xfe\xaf\xcf\x72\x76\x66\x5d\x53\x1c\x44\xda\x1b\xf4\x3c\xc4\xc8\xf0\x6e\xfa\xf1\x7c\x95\xcf\x17\xf1\x90\x46\x22\xff\xb2\xef\x6a\xf9\xee\x1f\xba\xfb\x19\x11\x1b\x0a\xc6\xc6\x9c\x58\x21\x60\x52\xfc\xa2\xa4\x71\xcf\x50\x30\xf0\x91\x89\x72\xa8\x83\x01\x94\xb4\x9b\xff\xe6\xae\x9d\x7c\x8c\xf6\x6c\x48\x8d\x42\xdd\xd7\x41\x2e\xcc\x04\x68\x29\x1f\xd8\x8c\x31\xa0\x10\x64\x6e\x12\xcf\xb5\x19\xf2\xde\x4a\x80\xa8\x25\x85\x3a\x4e\xa7\x70\xe4\x1d\x4c\xcf\xed\x15\xfc\xfa\x48\x80\xa2\xdd\x16\x72\x5b\x8a\xc2\x11\x77\xe2\xa8\x7b\x24\xc8\x55\x0e\x3f\x29\x8b\x3b\xbf\xef\x41\xc1\xeb\x94\x19\x9e\xfb\x1c\xe4\x65\x8a\x20\x59\x5b\x12\xe9\x26\xd2\x6d\x57\xd9\xed\x80\x3d\x8a\x83\x04\xf6\xfb\x69\x5a\x62\xa8\xcd\x6a\x0a\x45\x64\x90\xf8\x5a\x31\x7a\x9a\x23\xc5\xd0\xc9\x1c\x3c\x97\x0c\xc8\x08\xff\x20\x59\xbb\x6b\xe4\x4d\x00\x72\x88\xab\x8c\x0a\xbe\x48\x7f\x2a\xcc\x3e\x48\xd6\x1e\x2f\xff\x1f\x6d\x57\xdf\xdb\x28\x8f\xc4\xbf\x0a\xba\x55\xa5\xad\x2e\xa0\xbc\x91\x3e\xed\x49\xfd\xf7\x3e\x07\x4d\x9c\x94\x2b\x05\x0e\x48\x9b\x2a\xea\x77\x3f\x61\x8f\xcd\xcc\x78\x0c\x34\xf7\xac\x56\xda\x06\xb0\xc7\x63\x63\xec\x79\xf3\xfc\x40\x21\x08\x4f\xf2\x12\x39\x38\xc5\x70\xfb\x60\xb4\xfb\x14\x55\xc6\x8a\x55\x2e\x42\x95\x28\xaa\x17\xc7\xd7\xc6\x37\xe7\x2e\x20\x9a\x22\xe3\xc2\x82\x4b\x49\x75\x6c\x51\x84\xfc\x92\xac\xac\x0d\xc1\x57\xeb\x87\xbc\x01\x32\xb1\x8f\xac\x38\x13\x8f\x84\x17\xa7\xb5\xfc\xf6\xb1\x23\x45\x53\x89\x95\xdf\x4d\x5a\x2f\xb3\xf7\xe2\x14\x5f\x76\x9f\x4a\x36\x0f\xfc\x60\xb6\x5d\xb7\xbd\x86\x92\x46\x65\x07\x09\xe8\x48\x2a\x6b\x12\x58\x7b\xe7\x34\xa4\xa2\x90\xa4\x51\x43\xf2\x91\xc8\x69\x55\xab\xac\xd3\x9a\x63\x5e\xaa\xac\x89\x4f\x3d\xd3\xaa\xec\x7e\xc7\xdb\xf4\xa0\x4e\x0b\x30\xa2\xdb\xbf\xd1\xa6\xbe\x2c\x7e\x3d\xee\xfb\x7f\xe4\xf7\xae\xbe\xdc\xcb\x0d\xab\x22\x3f\xe5\x2f\x34\xb7\x85\xfb\x04\x90\x5d\x15\x46\x73\xbd\xa3\x5e\x54\x7d\x6d\x8c\x63\x7a\x5e\x0d\x35\xa2\xc4\xcc\x4e\x64\xa6\x4b\xea\xec\x64\x61\xdc\xf1\xb1\x0e\xff\x7c\xb1\x28\x44\x91\xfa\x91\xb9\x78\x55\xd9\x01\x07\x98\x19\xbb\x29\xf2\x04\x0d\x26\x4b\x07\x61\x61\xa0\xc6\x3c\xbf\x80\x4f\x5c\x3b\xb3\x3c\xbe\x9e\x56\x52\xd4\x8d\xe7\x31\xaa\xb3\xbd\x8a\x5f\x54\xf7\xa9\x54\x49\x3c\x22\x2b\x2d\x19\xc9\xad\xc1\x4f\xd3\xdf\xab\xcd\xf0\x37\xa3\xac\xde\x6c\xd4\xd1\x0c\x2b\xb6\xef\x63\x28\xe5\xfe\x9a\x5b\x98\x2d\x8c\xc7\x80\xc1\x86\xad\xfe\xde\xba\x31\x93\x15\x3f\xe9\x85\x6e\xfd\x27\xc6\xd0\x9f\x74\xda\xd8\xb8\x45\xef\x42\x0c\x36\xf1\x79\xfe\x8b\x1f\x34\x3a\xed\xd4\xb8\x79\xac\x96\xdf\xdf\x09\xc8\x30\x31\x68\x04\xc1\xb8\x46\x31\x9f\xe1\x03\x42\x0e\xdc\x66\xfd\x3f\x4e\xd0\xba\x12\xa9\xb7\xd7\x43\x3c\xe6\x95\xec\xf5\xa9\xc9\xea\xd7\x21\x24\x74\xa5\x5f\xae\x57\xda\x25\xac\x71\xe5\xa9\x9a\x65\xfe\x17\x36\x87\x49\x42\xcf\x09\x7c\x22\xd4\x1b\x93\x3c\x18\x7c\x02\x5e\x3f\x2b\xcb\xaa\x63\x88\x8e\x90\xef\x11\x47\x88\xd8\xea\x80\x65\xf0\x52\x5d\x68\x06\x4b\x87\x03\x6e\x20\xd7\x87\x2f\x6d\x49\xbe\xac\x21\x54\x6e\x20\xd4\x0f\x9d\x3a\xe6\x17\x08\x6e\xc4\x0f\xda\xf3\xd1\x3e\x10\x90\x65\xec\xd7\x98\x2e\x83\xe4\xa2\x3a\xeb\x5e\x83\x34\xf5\x53\x70\x8b\x59\xcf\x79\xa0\x28\x84\x47\x8c\x92\x83\x98\x08\x44\xd4\xfa\xda\x02\xdc\x99\x8c\xc4\x66\xb0\x35\x4c\xe3\xf2\x2e\xe0\x86\x4a\x97\x77\x0e\xd5\x2c\x1d\x2c\x7a\xda\x8b\x12\xec\x7b\xfb\x71\x62\x3e\x34\x39\x0c\x20\xd8\x69\x58\x3c\x2c\xdc\x24\xde\x92\x80\x12\x7c\x4e\x0c\x43\x97\x07\xcd\xa2\x33\x78\xa1\x37\xd1\xf3\x3a\x85\x60\xec\xda\xaf\x2f\x18\x1b\xd9\x8e\xdc\xa8\x1f\xaf\x1f\xc0\xef\xa4\xcb\xdf\xf5\x09\x80\xc8\xfd\x8a\xcb\xaa\x53\x4f\x4f\x2f\xea\x58\x35\x6a\xe1\x6e\xdb\x3b\x03\xe2\x59\xf4\x0f\xc6\x8d\x85\x2c\x9d\x98\x32\x57\x17\xa2\x43\x0b\xf6\x84\x9b\x8a\x86\x50\xe1\xe7\x3a\xbb\x36\x99\x6a\x26\xdf\x36\x7a\x85\xee\x03\xdf\xea\x1c\x3a\x66\xdd\xe8\x7f\x5b\xe8\x03\x8f\x5e\x02\xd0\x92\xd9\x5e\x20\x8d\x1e\x5e\x85\xf4\xaf\x91\xf9\xed\x68\xe7\xef\x75\xa1\x74\xa4\x1a\xc6\x82\x38\xe4\xed\x3e\xca\xcb\x36\x3f\x28\xe2\xfb\x5d\x01\x1a\xe3\xfe\x35\x6b\xba\xc8\xfc\x89\x01\xd6\x3c\xaa\x8a\x61\xe4\x39\xb0\x04\x69\x29\x2a\x72\x0f\xe4\x51\x33\x63\x04\xb7\x4e\x5d\x3a\xee\x35\x23\x0f\x8d\x98\x67\x24\x55\x77\x52\xeb\x71\xbb\x7b\x10\x4a\x69\x19\x95\x29\x1b\x5e\x21\x22\x9d\xb2\x18\x1c\x5c\xd8\xd9\x75\xb0\x11\x86\x15\x30\xb6\x17\x66\x1f\x61\x65\xc8\x91\x04\x6b\xbd\x60\x65\xb4\xd1\x02\x9b\x18\xd8\x73\x86\xc2\x6f\xa5\x74\x56\xaa\xd7\x8b\x17\x7e\xf3\xe5\x1b\xd7\x92\x59\x11\xab\x1c\x33\xf5\x95\x0f\x06\x68\xad\x4c\xaf\xf4\x7a\xa2\xd5\x49\xf6\x12\xdc\x4c\xf1\x63\x39\x10\x72\xe5\xb7\xff\x2d\xfb\xeb\x0b\xc3\x6b\x83\x6f\x8b\x45\xf9\x80\x9e\x68\x69\x3f\x3e\x0e\xa4\x9f\x8b\x7c\x2e\x17\x6c\xc9\x61\x8e\x4c\xba\xdb\x6e\xfa\xfd\x20\xbc\x0f\x50\x27\xb5\x0f\x41\x14\x5a\xe5\xb0\x4d\x14\xb5\x16\x66\x72\x64\xe4\xd0\xfa\x8b\x97\x65\x2a\x78\x91\xe5\x59\xe8\x50\x2f\x81\xde\x2d\x4c\xa7\xe6\xe5\xb4\x33\x40\xb0\x1e\xb3\xd5\xcb\x7f\xd4\xbe\xe3\xf9\xfa\x02\x63\x61\x0a\x3f\x8f\xe6\xfa\xeb\xc7\xa4\xaa\x0a\x7c\xb4\x40\x2b\x39\x6c\xf1\xd1\xbb\xdf\xb8\x7a\x43\x53\xe9\x91\x35\x31\x06\xfd\x9a\xf8\xf5\xe1\xa6\x6b\x3f\xb2\x3f\x08\x30\x04\x45\xfe\x27\x07\xb8\x36\xe4\x1e\x04\x0b\x98\x9b\xc6\xec\xdf\xaa\xe2\x68\xcd\xf3\x9a\xbb\x53\x53\x7d\xf6\xba\x94\xd8\xa2\x13\xc3\x8d\x5d\x5f\x1d\xae\x43\x9d\xe5\xbf\xbc\xdc\x7d\xa0\xc5\x88\x0a\xcc\xd3\xc3\xee\x2f\xad\xbf\x20\x21\x12\x19\xff\x8d\xa0\x1c\x64\xe2\xbd\x7a\xc9\x0b\x65\xf2\xa2\xe9\x1a\x88\x91\x15\x61\x04\x83\x7e\x7d\x1b\x8a\x5d\x5e\x4b\x27\xad\x28\x28\x4e\x56\x14\xae\x34\xc0\xea\x2f\x86\x6b\xf7\x29\xf8\x40\x3a\x43\xe0\x51\x20\xa0\x26\xc5\xda\x76\xba\xe4\xad\x38\x29\x23\xeb\xba\xe6\xb7\x86\xa4\xd1\xa6\xa3\x7b\xc1\xf4\x22\xe8\x36\xa2\x89\x87\x2b\xb7\xdc\x39\x8e\x41\xb9\x39\xc0\x57\x20\xa6\x9f\x46\x66\xaf\x53\x29\x7a\xdb\x0a\x0e\x69\x7d\x89\x56\xc8\xdf\xec\x56\x59\x2d\xb9\xc8\xea\x68\xca\x42\xad\x4c\x8d\x28\x59\xb5\xd4\x09\xcc\x5f\x09\x95\xcb\x10\x46\xad\x87\xcf\x89\xa2\x2d\x77\xc3\x42\xc3\x06\xd6\x48\x0e\xee\x31\xc6\x75\xc4\x41\xd6\x72\x09\xb3\xa3\x90\xaf\x7c\x67\x43\x09\x41\xc5\xae\xea\x60\x97\x92\xac\xf8\xcc\xbe\x2c\x42\xbd\x37\x07\xb5\x7e\x61\xe7\xcc\x80\x66\x68\x47\x76\xdd\xcb\x90\x01\x4a\x4e\xc0\xa5\xa4\x60\x04\x07\x5a\x5a\xd9\x33\x84\x3e\xab\xb8\xed\x54\x6d\x8f\x89\x8a\xb3\xcc\xff\xa6\x90\xb5\x73\x5b\x5f\xe8\x9c\xf1\x88\x6a\x31\xf8\x98\x37\xe0\xbb\xd5\xf2\x5b\x30\x26\xcd\x9c\x54\xd0\xa9\x22\xc7\x1a\xf1\x30\xe8\xe9\x76\x29\x1d\x4c\xd1\xd2\x68\x72\xc8\x5b\x73\x36\x3b\x67\x87\xca\x98\xf6\xa1\x4f\x8a\x8a\x35\x88\xc6\x25\x19\x5c\xb1\xea\x34\x41\x27\x4a\x5e\xb2\xa6\x8d\x9a\x7e\x5f\x13\xc2\x0f\x93\x0d\x99\x41\x6e\x09\x5a\xcd\xa0\x99\x38\x14\x0b\x67\x80\x5c\xcf\xa9\xd6\x65\xcd\x49\x75\xae\xd2\x72\x4e\x9d\xb6\xc8\xf7\x2a\x5e\x5d\xad\x1d\x14\x92\x05\xcc\xac\xb7\x86\x7a\x56\x8a\x9c\x5b\x6f\x03\xf5\x96\xcb\xc3\xea\x65\x56\xdf\x4c\xbd\x2d\xd4\xb3\xb2\xed\xdc\x7a\x29\xd4\x4b\xf7\x5b\xa5\xd2\xf9\xf5\x76\x50\xcf\x8a\xb6\x72\xbd\xa4\xad\x8b\xbc\xd3\x59\x45\x7d\x93\xeb\x48\x3a\x5f\x1b\x18\x3e\x49\x35\x1a\xe2\x32\xd3\xc1\x34\xb0\x31\x09\x85\x26\x2b\x27\x85\x3a\xa9\xf2\xe0\x21\x02\x0e\x04\x69\x46\xd9\xa9\x2e\x30\x89\x49\x88\x39\xe6\x12\xd7\xfc\x8e\x02\xaf\xbd\x1e\x49\xbf\xee\x71\x38\x5f\xb4\x27\xb1\x72\x7c\x29\x0f\xcb\xb1\x12\xa2\x0a\x6c\x8e\xfa\x96\xb0\xb1\x43\xc0\x55\x1a\x5c\x28\xe4\xae\x81\xe3\x69\xf1\xc3\x4a\xc6\xc1\xc4\x02\x62\x3d\xb3\xa7\xa1\xa9\x97\x36\xfd\x73\xe1\xdd\x11\xec\x4e\x33\xd6\x4e\x99\x2b\x1d\xd0\x68\xd6\x2a\xef\x0d\xf1\xdc\xfb\x3a\x73\xce\x0f\x69\x9b\xd3\x47\x74\x87\xa0\x39\xa3\x6e\x21\xc8\x9c\x84\x36\xf6\x56\x1c\x28\x64\xcf\x71\x12\xd7\x47\xde\xe6\x3a\x12\xd1\xab\x91\xec\xb3\xf2\x23\x6b\xa3\xc4\x1c\x4f\xea\x17\x0f\x3c\x51\xdb\xae\xa9\xde\x94\x15\xa8\x93\x75\x3a\x46\x42\x8b\x00\x31\x2c\xea\x01\x52\xf8\x96\x44\x2b\xbb\xe4\x6d\xd4\xdf\x10\xa6\x81\x79\xa8\xad\xa1\x40\xcc\xb9\x4b\x03\x65\x8d\xfd\xc6\x98\x63\x43\x63\x96\x9c\x9a\x5c\x1f\xce\x22\xa4\xa1\xcb\xc2\xfc\xc4\x15\xf4\xa0\x59\x5e\x4c\x3a\x78\x3b\x64\x87\xac\x7d\xcd\x9a\x26\xfb\x7a\x4a\xa3\x95\x48\xc6\x0c\x1b\x8e\xaa\xc1\xd4\x8e\xc3\x76\x81\x2a\x19\xd7\xe4\xbf\xc1\x33\x89\xf2\xe2\xea\x78\xab\x6b\x3b\x1c\xbd\xd7\x82\xb9\xbe\x76\x7b\xf2\xee\x27\x04\xfb\x05\x78\x9c\xdc\x72\x64\x32\xe0\x28\x1d\xdc\x2b\x97\xf4\x62\x9a\x0f\xc8\x7b\xeb\x77\x0c\xa4\xeb\x5b\xfa\x06\x34\x79\xdf\x44\x8a\x53\xdd\xb3\xe1\x3f\xe4\xa5\xd9\x8c\x6d\xd3\xac\x40\x52\x5b\xe1\xbd\x99\x30\xa4\x5b\xba\x07\x34\xbd\x57\x27\x51\x9c\xea\x1e\x84\x17\xe1\xde\xad\x07\x89\x62\x94\x0d\x93\xb8\xd6\xef\xd9\x7a\xb3\xbd\xa9\x5b\x86\x1e\xef\x95\x4f\x6d\xaa\x4b\x43\xa8\x12\xe9\x95\xcd\x5a\x34\x52\x13\x62\x7a\x02\xcb\x12\x9e\x13\x25\x1f\x34\x2a\xf9\x8d\xf6\xd3\x25\xbd\x15\x86\xce\x04\x66\xdd\x32\x7a\x8e\xaa\x37\x80\x12\x4d\x71\x0c\xa5\x99\x56\x8a\xaf\x18\xe2\xa5\x6e\x9b\xbc\xa5\xf0\x96\x45\x82\x33\x99\x34\x39\x64\xff\x56\x26\x0d\xc9\xdb\x99\x44\x73\x65\x88\xce\x22\xb3\x91\x28\x26\xa3\xbc\xb8\xec\xb0\xc2\x74\x31\xc1\x62\xb7\xf4\xd0\x51\xf5\xa6\x8b\x44\x73\xaa\x93\x43\xd4\x17\x59\x26\xc1\x3a\x3f\x67\x37\xb2\xa9\x5f\x85\x85\xd2\x04\xa1\xdd\xb4\xc7\x59\xaa\xde\x52\x29\xd1\x9c\x5e\x2a\x21\x9c\x0c\xf7\x91\x6a\x60\x13\xeb\x9b\x49\xec\xea\x77\x11\x62\xdb\x6e\x5b\x34\x0d\x51\xde\x43\x91\xa4\xeb\xa1\x6f\xd3\x94\x3d\x6c\x41\xd7\x07\x39\x0d\x28\x67\x62\x67\xd9\x8b\x76\x92\xa9\x1e\x62\x24\x98\x31\x97\xa6\x98\x08\x9c\xa8\xd5\x66\xbf\x85\x7f\xce\x32\x59\xb7\x51\x57\xd5\x46\xb7\xaa\xce\xdd\xa2\xbf\x51\xa8\x63\xe7\xee\x88\x98\xe6\xc4\xca\x2a\x0d\x85\x33\xaa\xc9\x0f\x47\xac\xbc\xa2\x61\x67\xcc\xda\x28\x99\x7e\x7d\x0b\xb1\xcc\xa6\xfe\xb6\xcb\xac\xae\xbf\xae\x63\x83\x92\x2e\xdf\xd9\xa8\x84\x7a\x0d\x1d\x43\x16\xd0\x07\xef\xfd\x11\x0b\xe8\xc3\xa4\x05\x54\x2e\x21\xdb\x76\x1f\xea\xcb\xbd\x35\x54\xc6\x7f\x39\xc3\x82\xfc\x72\xae\xb2\x9d\x16\xe1\x58\xfc\x9f\x46\x5a\x91\xc5\x1d\x66\x71\x17\x62\x31\x01\x75\x94\x9d\xd0\x0d\xf8\xb5\x9f\x8b\x5c\x9e\x69\x51\x2d\x98\x72\xb4\xf2\x47\x4d\x20\x60\x56\x1f\xf7\x31\x21\xd3\x82\x0e\xf5\x19\x75\xb5\x3f\x17\x26\x97\x63\x88\x2f\xfb\xb0\xff\xf8\xe3\xf6\x33\xeb\xf6\xaf\xf2\x79\xdb\xb1\x06\x88\x05\xc2\x6f\x02\x47\xc6\x0e\xa7\xf4\xd8\x11\x03\xeb\x39\x98\xd1\x90\xd3\xbc\x27\x5a\xe4\x2a\xbf\x9f\xfa\x6b\x77\x3f\xa3\x39\x19\xb3\x6c\xbc\x6a\x42\x81\x83\x25\xd8\x55\xac\x8d\x8c\xd1\x08\x1c\xa5\x08\xd7\xfb\x67\x91\x07\x72\xd5\xd8\x00\x25\xa8\x5b\xab\xf2\x00\x51\xdf\x5f\xaa\x89\x97\x6e\x38\xff\x7b\x56\x67\x9d\x3c\xda\x5c\xea\xad\x0f\x17\x04\xad\xdd\xa6\xbe\x91\xc9\xad\x82\xf5\xc1\x3e\x7c\x6e\x8a\xdf\xbf\x0e\x79\x76\xaa\xca\xac\xd0\xb9\x83\x6b\x15\x6f\xee\x75\x10\x6d\xec\xd9\xaa\xa3\xa4\x39\x97\x3a\x8a\x00\x8c\xc4\x58\x33\x88\x92\x7d\xf5\x5e\x17\xaa\x53\xd6\xa4\x0b\x71\x1e\xf0\xf4\x98\xe5\x85\x3a\x48\xe6\xd7\x28\x29\xaa\xd6\x9a\x21\x8c\x0e\x85\x3f\x05\x6b\xca\x1a\x92\x45\xe0\x3c\x07\xe0\x6e\x5d\x9b\x4c\x34\x7e\xda\x19\x4c\x2a\x31\x7f\xe2\xa5\x18\x5f\x2c\x95\x5c\x31\x58\x1f\x30\xa6\x0b\x25\xd7\x02\x28\x82\x5c\x72\x43\x71\x73\xac\xc1\x5c\x28\xb9\x15\xa0\x26\xe4\x92\x29\x29\xe9\x8c\xe2\x42\xc9\x9d\x18\x05\x4e\x4a\x9a\xa9\x17\x4a\x39\xb7\xf2\xf3\x2b\x6e\xa8\xdb\xd4\xcd\x49\x4c\x14\x66\xe6\x82\x31\x05\xd3\xf2\x0f\xc6\x99\x93\xf6\xec\xfc\x95\x82\xe6\x49\x41\x37\x97\xc9\x1b\xb0\x33\x1a\x97\x84\x79\x3d\x39\xaa\x7a\x8e\x33\xc4\x1c\x56\x44\x80\xe9\xb6\x76\x2e\x56\x8c\x23\x5a\xa3\x35\x89\x95\x14\xa0\xf5\xec\xaa\xc7\x4a\x7a\x70\x64\x22\x83\x3e\xb0\x70\x60\x04\x5d\x44\x93\xcf\x51\xf9\x36\x3d\xb1\x45\x08\xd7\xc0\x87\x25\xc2\x9c\x06\x3e\x6c\x09\x09\x74\x78\x63\xb0\xdd\x1a\x51\x7f\x80\x6f\x6f\xb8\x13\x45\x72\xfa\xe0\xba\x89\x03\xd1\xb4\x3e\x19\x1d\x36\xfa\x71\x8a\xeb\xac\xeb\x54\x53\x5e\x79\x04\x40\xc0\x09\xab\xc5\xf4\xef\x5f\xda\xc9\x73\x3a\xe7\x07\x15\x25\xef\xd5\xfe\xcd\x81\xda\xd3\x58\x99\xe1\x14\x83\x09\x41\xc0\x5e\x80\x20\x0d\x77\x55\x7f\x2d\xa6\x0a\xe5\xef\xd9\x49\x79\xa7\x25\x3c\x64\x7d\x1d\x09\x34\x8f\x16\x7a\x0b\xfc\x73\xef\x2a\x2d\x7a\x1b\x88\x4b\x24\x4d\x46\x4b\x72\xb5\x7d\xbc\x5b\x80\x9d\x9b\xfc\x4e\x57\x77\xa4\x1c\xbf\xd6\x0a\xd0\x42\x68\x14\xa2\x20\xfe\x68\xbb\xb3\x5e\xc7\xbc\x55\xd1\x71\x6c\x39\x18\x38\xa9\x2f\x94\x13\x76\xbd\xda\xf6\x2b\xe4\x14\x27\x1f\xd9\xe9\x4c\x97\x24\xf5\xa8\xf6\xc7\x65\x28\xb6\xd9\xa7\xd7\xcb\xce\xfd\xc7\x69\xa5\xe6\xb5\x7a\xff\xfe\x5f\x00\x00\x00\xff\xff\x8e\x19\x49\xa1\x95\x39\x03\x00")
+var _distAssetsNomadUi2ffef17efbbc4361902d6cc1d42ce2b8Css = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xbd\x5d\x8f\x2b\x3b\x92\x20\xf6\x57\x72\x6e\xe3\x02\xa7\xfa\x48\xea\xd4\x67\x55\x49\xe8\x8b\x59\x0f\xb0\xf6\x02\x3b\x36\xe0\xd9\x01\x76\xd0\xb8\x0f\x29\x25\x55\xca\xb9\xa9\x4c\x4d\x66\xea\x54\x9d\xab\x2d\xc3\x4f\x6b\xf8\xd5\x3f\xc1\xcf\x7e\xf7\x83\xdf\xfc\x53\xf6\x97\x18\xc9\xaf\x64\x90\x11\x24\x53\x55\xa7\xdb\x53\xd3\xf7\x54\x25\xe3\x8b\x64\x30\x18\x24\x83\xc1\xbf\x3f\x9c\xb2\xa6\x65\x5d\xf2\xd3\x3f\xff\xa7\x7f\x3f\x7d\xfa\x69\x37\xdb\x5f\xcf\x17\xd6\x4c\x9b\xe2\xe5\xd4\x4d\x66\xd5\xf5\xbc\x67\xcd\xed\x9c\x35\x2f\x45\x25\x3e\x6e\xe7\xb3\x75\xc3\xce\xef\xfb\x3a\xff\x3e\x39\xd4\x39\xbb\x1d\xeb\xaa\x9b\xbe\x32\x5e\xb8\x4a\xd3\xf7\xac\xe9\x8a\x43\xc9\x26\x59\x5b\xe4\x6c\x72\x2c\x5e\xae\x0d\x9b\x1c\xeb\xba\x63\xcd\xe4\xc4\xb2\xbc\xff\xe7\xa5\xa9\xaf\x97\xc9\xa9\x99\xb4\xec\xd0\x15\x75\x75\xcb\x8b\xf6\x52\x66\xdf\xb7\xfb\xb2\x3e\xfc\xf6\x9e\x5d\xf3\xa2\x9e\xb0\xf3\x9e\xe5\x93\xe2\xfc\x32\xa9\xf7\xff\xca\x0e\xdd\xe4\x5b\x91\xb3\xfa\x76\xce\xde\xa6\xaf\x45\xde\x9d\xb6\xf3\x34\xfd\xf9\xbd\x97\x61\x72\x69\xd8\x6d\x9f\x1d\x7e\xeb\xe9\x56\xf9\xf4\x50\x97\x75\xb3\xfd\xc3\x71\xdd\xff\x08\x51\x7b\x08\xf9\x39\xcd\xfa\x9f\xf7\xd9\xa1\xae\x3a\x56\x75\xc9\xa5\x11\x04\x5e\xeb\x26\x9f\xbe\x36\xd9\x65\x5b\xd5\xcd\x39\x2b\xdf\xb3\xa4\xed\x9a\xba\x7a\xe9\x4b\x13\x5e\x57\x41\xe1\x70\x6d\x1a\x56\x75\xff\xd0\xff\xf1\x2e\x41\xba\x6c\x5f\xb2\xa4\x3b\x29\x26\xcb\x4d\xff\xf3\x3e\xdb\x5f\xbb\xae\xae\x26\xbd\x0c\xb7\xb2\xa8\xd8\xf4\xc4\x54\x33\xea\xc2\xec\x76\xb8\x36\x6d\xdd\x6c\x2f\x75\x51\x75\xac\x51\x05\xed\xec\x94\xb5\xd3\x2c\xcf\xeb\xaa\x4d\xe4\xb7\x59\xd1\x4e\x4f\xf5\x37\xd6\xb0\x7c\xe2\x01\xdb\x72\x98\xc9\xec\x58\xb0\x32\x07\xe5\x7d\xad\x9b\xba\x44\xe9\x05\xa1\x23\xc8\x16\xd5\xe5\xda\xc5\x52\xe5\xc0\x11\x44\x5b\x56\xb2\x43\x97\x88\x7f\x62\x89\x03\x24\xc1\xe4\xf6\xfb\xb4\xa8\x72\xf6\xb6\x5d\xbc\x1b\xf5\xef\xd8\x5b\xaf\xec\x75\x57\x1c\x8b\x43\xd6\xeb\x63\x92\x6d\xab\xba\xfb\x22\x61\x1e\x26\xd9\xac\xcb\x5e\x24\x89\x1e\x7a\x9a\xb3\x43\xdd\x70\xd0\xed\xb5\xca\x59\xd3\x77\xad\x50\xb4\xfe\x3f\xbf\xcc\x7a\xdd\x6d\xa6\xdf\x0a\xf6\x3a\x39\x75\xe7\xf2\xa6\x7a\x3d\x4d\x7f\xde\x19\xca\xab\xc6\x5b\xc9\x8e\x9d\x1a\x66\xfd\xef\x6a\x94\xf5\xd2\x65\x6d\x5b\x1f\x8a\xac\x2b\xbe\x31\x05\xd2\xd5\x97\xed\x74\xf6\xb8\x66\xe7\xf7\x3f\xfd\xf1\xef\x92\xfd\xb5\x3c\x67\xb3\xa2\x4e\xbe\xa5\xb3\xcd\x6c\x9e\xfc\x97\xe4\x1f\xff\xc3\x7f\x4a\xfe\x63\x71\x60\x55\xcb\x92\xff\x92\xbc\x14\xdd\xe9\xba\x9f\x1d\xea\xf3\x9f\xfe\xf5\xa5\x3b\x9d\xdb\x3f\x71\x8c\xe4\x8f\x7f\xfa\xfb\xdf\xd8\xf7\x63\x93\x9d\x59\x9b\xb4\x97\xa2\xfa\x77\x7c\xf8\xdc\x8e\x4d\x7d\xbe\x75\x4d\x56\xb5\xc7\xba\x39\x6f\x9b\xba\xcb\x3a\xf6\x25\x7d\x78\xef\x6a\xf7\xf3\x72\xfd\x9c\xb3\x97\x87\x77\x2e\xc9\xb9\xa8\x8a\x86\xb5\xac\x9b\x1d\xda\xb6\x17\x27\x9d\x2d\x22\xc4\x81\x68\x7f\xfc\x13\xb7\x02\xff\x76\xad\x3b\xc6\x9b\x73\x92\xe7\x93\xbc\x9c\xe4\xdd\x84\xf7\x76\xcb\x3a\x65\x56\x4e\xf3\xc9\x69\x31\x39\x2d\x27\xa7\xd5\xe4\xb4\x9e\x9c\x36\xbd\x4d\xe9\x1b\x7c\x52\xf0\x6a\x4d\x4a\xf6\xc2\xaa\x7c\x52\x16\x93\xba\x9c\x5c\xfa\x81\x3c\xe9\xfb\x2f\x6b\x58\x36\xb9\x96\xb2\x3d\xb7\xe9\xee\x92\xe5\x79\x51\xbd\x6c\xd3\x77\x87\xa4\x30\x70\x6d\xf1\x3b\x13\xdd\x67\xdb\xbb\x6b\x79\x2b\x8b\xb6\x9b\xb6\xdd\xf7\x92\x6d\xab\xba\x57\x04\x31\xae\xb9\x76\x4f\x84\xfe\x69\xb6\x9a\xe7\x3b\x57\x8c\x7d\xfd\xd6\xd3\xee\x79\xef\xeb\x26\x67\xcd\x74\x5f\xbf\xed\x10\x5b\x76\x3c\xee\x0c\x41\x56\x97\xb7\xdd\xf4\x5c\xff\x3e\xad\xdb\xb7\xa9\xf8\x7e\xae\xeb\xee\xd4\xd3\x79\x69\xb2\xef\xed\x21\x2b\xd9\x6e\xfa\xca\xf6\xbf\x15\x9d\x0d\x90\x55\x5d\x91\x95\x45\xd6\xb2\x7c\x77\x2e\x2a\x69\x4d\x97\x69\x7a\x79\xdb\xf5\x2a\x7e\x2c\xeb\xd7\xe9\xdb\xf6\x54\xe4\x39\xab\x86\x2f\xdf\xb7\xed\xa1\xa9\xcb\x72\xc7\x47\x40\xc3\x7a\xbd\xef\xc9\xd5\x97\xae\x38\x17\xbf\xb3\xff\xc8\x5e\x8a\x7d\x51\x16\xdd\x77\x01\xd1\x4b\x3a\xcd\xf2\x7f\xbd\xb6\x42\xf1\xdf\xff\x38\xd9\x66\xc7\x7e\x1a\xd8\xee\xd9\xb1\xee\x4d\xf6\x50\xf9\xa2\x3a\xb1\xa6\xe8\xde\xe5\xc8\xd9\x67\x6d\x71\x98\xe6\x4d\x7d\xc9\xeb\xd7\x6a\x82\x7e\x9d\x4a\x03\xee\x2f\x4d\xfe\xa8\xca\x2f\xf5\x2b\x6b\xa6\xa2\x3b\x34\x58\xf2\x47\xbc\x0b\xde\x85\x02\xdd\xc4\x97\x6d\xfa\xce\x0d\xbc\xfc\xb3\xef\x94\x32\xbb\xb4\x6c\xab\x7e\xd9\xc9\x82\xf6\x92\x1d\x84\x1e\x75\xf9\xa4\x3b\xdd\xb4\x5e\x89\x26\xc9\xca\xe2\xa5\xda\xf6\x23\x5c\x1a\x0b\x9f\xa2\xf0\x5e\x3b\x66\xe7\xa2\xfc\xbe\x9d\x66\x97\x4b\xc9\xa6\xed\xf7\xb6\x63\xe7\xc9\x7f\x57\x16\xd5\x6f\xff\x98\x1d\xfe\x89\xff\xf9\xef\xeb\xaa\x9b\xfc\xf4\x4f\xec\xa5\x66\xc9\x3f\xff\x87\x9f\x26\xff\x73\xbd\xaf\xbb\x7a\xf2\x3f\xbd\x7d\x7f\x61\xd5\xf4\x9f\xb2\xaa\x9d\xfc\xf3\xfe\x5a\x75\xd7\xc9\x3f\x64\x55\x4f\xba\x2c\x27\x3f\xfd\x0f\xac\xfc\xc6\xba\xe2\x90\x25\xff\x23\xbb\xb2\x9f\x26\x6d\x56\xb5\xd3\x96\x35\xc5\x71\x98\x51\x29\x05\xcb\xae\x5d\x4d\xea\x56\x5f\x66\x4a\x7e\xae\xab\xba\x6f\x15\x61\x1e\xcd\xc1\xd4\x1b\xb8\x7e\x40\xb6\xe7\xac\x2c\x8d\x82\xd9\x13\xb7\x6c\xa7\x06\x99\xd2\xf3\x7d\xff\x23\x5b\x9b\x0f\xb6\x9d\x32\xad\x97\xb7\x9d\x1c\x5a\xc2\x78\x26\xe9\x7b\x71\x7e\x51\x96\xb7\x97\xeb\x9d\xb7\xf3\x5f\xba\xef\x17\xf6\xe7\xc3\x89\x1d\x7e\xdb\xd7\x6f\xbf\x4e\x8c\x8f\x4d\x96\x17\xf5\xaf\xb7\x6f\xac\x77\x61\xb2\x52\x76\xd7\x3e\x6b\x19\xb7\xef\xed\x25\xab\xa4\x9c\x7c\xac\x4b\x9d\x05\x16\x41\xe9\xb1\x70\x0b\x80\x73\xf4\x98\xa6\xef\xbc\x59\x65\xcb\xe9\x81\x25\x86\x55\xdf\x7a\x5d\x7d\x3d\x9c\xcc\x31\xc8\x9b\x53\x29\xd1\x7c\xb6\xe0\x15\x13\xf5\xdb\xbd\x9e\x8a\x8e\x71\x8d\x63\xdb\x4b\xc3\xde\xb5\x97\xe2\x34\x1b\x37\xda\x97\xac\x77\x5a\x4c\x23\xc2\xce\x86\xdd\x9b\xed\xeb\x37\xe5\x51\x60\xbe\xd4\xf1\xf8\x2e\x7d\x9c\x7c\x70\x76\x2c\xa5\xde\x59\x2d\xd7\xd5\x17\x3e\x85\x1d\x4a\x96\x35\xc7\xe2\x4d\x0c\xff\x1b\xff\x73\xbb\xaf\xbb\xd3\x4e\x0e\xd2\xed\x4f\xc9\x4f\x3b\xe5\x03\x72\xea\x1c\xef\x72\x2d\x4b\x96\x8b\xd9\xf1\x58\xd6\x59\xc7\xb9\xfc\x5d\x71\xbe\xd4\x4d\x97\x55\x9d\x09\xc4\xbd\x53\x09\xc5\x7f\xb7\xc0\x0e\x65\x71\xb9\xb0\xfc\xa6\x1a\x57\x9a\x37\x13\xca\x74\x08\x67\xe7\x3a\xcf\xca\xe9\x21\x6b\xf2\x29\x57\xdc\x50\xaf\x71\x26\x7d\x61\x99\x7d\xbf\xed\xeb\xae\xab\xcf\xdb\x74\xc7\x27\xf3\x74\x77\xa9\xdb\x82\x3b\x0b\xd9\xbe\xad\xcb\x6b\xc7\x76\xc2\x99\x4e\x77\xfd\x54\x9e\x72\x5c\x6e\x2e\xe7\xc6\x38\x58\x36\xec\x6c\x55\x82\xc3\x2c\x0c\x98\x05\x57\x05\x0c\x6a\x69\x42\x11\x30\x2b\x73\x38\xce\x28\x7e\x6b\x00\x35\xa7\x18\x6e\xac\xb1\x8d\xc1\x3c\x82\x61\x6e\x51\xfa\xfb\x33\xcb\x8b\x2c\x69\x0f\x0d\x63\x55\x92\x55\x79\xf2\x65\xf0\xf5\x1f\x37\x4f\x97\xb7\x87\xdb\xd0\x50\xd3\x73\xbd\x2f\x4a\x16\xd3\x5e\x2e\xa8\xa7\xd9\x10\x60\xaa\xf5\x5c\x50\x4f\x23\x62\xc0\x74\x5b\x22\xd0\x54\x93\xba\xa0\x4e\xcb\x72\xff\x98\x8f\xd5\x03\xeb\x17\x18\x2c\x57\x48\xc6\x00\x16\x45\x06\x16\xda\x21\xda\x5d\x78\xdc\x3c\x5f\xde\x1e\x26\x97\xa6\xa8\x3a\xb3\x5b\xf8\xe8\xed\xa2\xba\xc5\x01\xf5\x75\x8b\x0b\x4c\x76\x8b\x03\xea\xeb\x16\x04\xd8\xd3\x2d\x2e\x34\xd9\x2d\x0e\x68\x4c\xb7\x48\xa4\xd1\xdd\x62\xac\x89\x17\x4b\x6b\xa0\x70\xf3\x14\xd7\x21\x16\xa4\xb7\x3f\x6c\x58\xba\x3b\x2c\x48\x6f\x6f\x38\xb0\xbe\xce\xb0\x81\xe9\xbe\xb0\x20\xa3\xba\x82\xe3\xdc\x3f\x40\xe6\xe9\x62\x65\xf5\x44\xce\xda\xdf\xba\xfa\x12\xd5\x17\x2e\xac\xaf\x37\x10\x68\xb2\x3f\x5c\x58\x5f\x8f\x60\xd0\x9e\x3e\x41\xc0\xc9\x5e\x71\x61\x63\xfa\x45\x61\x79\x7b\xc6\xc5\xf3\xc2\x47\x58\x3a\x72\xa0\x51\x83\x78\x5a\x57\xe5\xf7\x8f\xeb\x8f\xc3\x77\x31\x5f\x13\x7c\x65\xcb\x7c\x98\xf1\x62\xbe\xb1\x14\xf7\xb5\xc8\x99\x00\x8e\xd2\x5d\x14\xdc\xa7\xbe\x38\x02\xa9\xc1\x28\xb8\x4f\x89\x09\x04\x8f\x1e\xe3\x18\xa4\x2a\xa3\xe0\x31\xda\x6c\x20\x7e\xb8\xc7\x1c\x55\x59\xa5\x8f\x84\xaa\x0c\x6c\x3f\xac\x2d\xab\xd4\xf6\xcc\x8e\xd7\xb2\x3c\xe5\x51\x9a\xe2\x80\xfa\xb4\xc4\x05\x26\x35\xc4\x01\xf5\x69\x07\x02\xec\xd1\x0c\x17\x9a\xd4\x0a\x07\x34\x46\x23\x24\x92\xaf\x47\x06\xac\x7f\xbd\xb6\x5d\x71\x2c\x50\x34\x51\xf6\x1d\x37\x8b\x1a\xd1\x8f\x11\xe5\x93\x23\xd2\xb8\xee\x25\x22\xcd\x08\xff\x12\x61\xe1\xba\x4a\xf7\xb1\x08\x1b\x76\x9b\xa7\x33\x64\x22\x19\xc7\xb1\xb0\xdd\x8e\xb1\xb5\xd2\x7e\x07\x42\x1c\x99\x3b\xef\x24\x1f\x9e\x96\x1c\xae\xf7\x36\x9b\x3b\x31\x21\x3c\x70\x3b\x7a\x27\x87\xb0\x21\xc5\x18\x47\xd4\x6f\x20\x50\xb2\x63\xe7\xc3\xb5\x36\x3a\x2c\x4c\x0f\xe4\xb8\x11\xcb\xc5\x70\x07\xab\xcd\xfd\x9e\x91\xca\x49\xbb\x83\xf4\x0e\xd2\xe1\xe1\x63\xf0\x0a\xb6\xe4\xc8\x91\x29\x48\xdb\x83\x72\x54\x2d\xdc\x11\xc9\x89\x22\x83\xf1\x1e\xb2\xe1\x91\x68\x72\xbb\xab\x79\x3c\x23\xd0\xd2\xe3\xfb\x29\x2b\x37\x02\x52\x76\x67\x35\x7b\x07\x50\xc3\xf3\x1d\x35\x04\xc1\xde\x0c\xb4\x51\x7c\xb0\x7c\xe3\x30\xbb\x14\x5d\x56\x16\xbf\xab\xb9\x72\x38\x02\x1b\x8a\x2c\x9c\xb2\x7e\x65\xcd\x21\x6b\x99\x8d\xa1\x0b\x2c\x84\xeb\xe5\x82\x23\xe8\x02\x50\x67\x96\xe5\x45\xf5\x32\x99\x9d\x59\x75\x9d\x96\xd9\x9e\x95\x13\x7e\x42\x59\xd5\xdd\x97\x7d\x9d\x7f\x7f\x20\xc9\x18\xb5\xe7\xfb\xc7\xb7\x61\x7f\xd7\xe0\x90\x59\x50\xdb\x63\x7d\xb8\xb6\x13\xe7\xb3\x38\x11\x95\x24\xd8\xa6\xff\x41\xfb\x66\x5f\x66\x87\xdf\xe0\xf9\x3b\xce\x8d\x03\xba\xdc\xc4\x67\xc0\x2d\x4d\x53\xdc\xb0\xf2\x3e\x05\x11\x00\x38\x2b\x0e\xe8\xb2\x12\x9f\x01\x2b\x71\xe8\x80\x72\xcb\xb3\x46\xd7\x6b\xb1\x5c\xe1\x9c\x7a\x20\x97\x11\xff\x0a\xf8\xcc\xe7\xf3\x6c\xb1\x40\xf9\x5c\x9a\xe2\x9c\x35\xdf\x35\xab\xf5\x3e\x7b\x9a\xe3\xdc\x24\xa8\xcb\x50\x15\x40\x9e\xf9\xd3\x71\xb3\x24\x5a\xb2\xd2\x75\x9b\xaf\x37\x4b\x4a\x43\x7a\x38\xac\x1d\x2b\xa7\xc7\x56\x7b\x36\x47\x59\x15\xd5\xb1\x8e\x61\xd5\xc3\xb9\xac\xf8\xd7\x58\x56\xed\xf5\x70\x60\x6d\xab\x5b\x92\xed\xd3\xe5\x33\xce\x4d\x82\xba\x0c\x55\x01\xe0\xb9\x58\x3e\x3d\x2d\x0e\x28\xcf\xd7\xac\xa9\x8a\xea\x45\x6b\x65\xf6\xc4\x16\x4b\x62\xb8\x09\x50\x64\xc0\xc9\x02\x38\xe4\xd6\x8f\xab\x74\x4d\x68\x66\xf5\x32\x00\x1e\x9e\x56\x29\xad\x9e\x3d\x24\xa6\xa0\xfc\x3b\x60\x98\xa5\xcb\xe5\xe2\x99\x1e\xe3\xd3\x7d\xa1\x9b\x76\xbe\xe8\x7f\x3c\xb0\x9d\xd1\x78\xab\xfe\x07\x85\x7d\x69\xd8\x77\x3e\x58\x06\x68\x11\x5c\xe3\x87\x56\xb0\xab\xac\xff\x21\x61\x15\xd8\x63\xd6\xff\xd0\x24\x81\x59\xd9\xaf\xfb\x9f\x00\x70\x94\xfd\x10\x67\x78\x06\xac\x63\xb1\x6c\x58\xa3\x81\x8f\x59\xff\x83\xc3\xf2\x23\x47\x29\xb5\x79\x08\xb9\x24\xcc\xa6\x44\x10\x91\x4f\x76\x4c\x97\x0f\xa3\x65\xe7\x62\x5f\x97\x39\xc0\xd9\xf8\x71\x1c\xf8\x47\x08\x5f\xb4\x53\x1e\x02\x02\xc3\xc2\xee\x76\x72\x85\x67\xe0\x7a\xb9\xd8\x6c\xcf\x39\x29\x58\x8a\xfd\x5d\xfe\xb0\x90\xc2\x75\x88\x69\x29\x24\xec\x47\xa4\x08\xfb\xb7\xa6\x58\x8e\x73\x18\x92\x4d\x20\x8c\x12\x30\x2c\x8a\xed\x6b\x7b\x84\xe0\xa0\xf7\xb5\x8f\xeb\x94\x0b\xf6\x88\x57\x4e\x0b\xa0\x80\x3f\x24\x42\xd8\x81\x07\x92\x8d\xe8\x24\x80\x71\xa7\x8c\x8e\xc7\x2f\x84\xc1\x5d\x7e\x5a\x14\x03\xfe\x43\x82\x84\x97\xe6\xb6\x7c\x23\xda\xcb\x46\xba\x53\x52\x63\x47\x54\xd0\x95\x8b\x12\x8a\x5c\x0f\x78\x2c\xd9\x9b\x0d\xd7\x7f\x03\x0b\x17\x09\x47\x01\xc4\x1e\xa0\x73\x5e\x96\x89\xb3\x79\x8d\x3b\xfb\xe5\x14\x2d\x73\x75\x07\x45\xdf\x61\xa6\xc1\x02\x76\x4e\x0c\x1f\x0f\x45\x60\x42\x46\xc9\x6c\x1e\xf0\x71\x5a\xb6\x35\xb8\x87\x1a\x69\x0c\x2c\x26\xe3\xdb\x00\x3d\xdf\xe1\x24\x91\xb1\x79\x0f\x41\x72\x68\xba\x7c\xbc\xd2\xf7\xf0\x45\xc5\x83\xa5\x29\x0c\x51\x6c\x8f\x0d\xf1\x95\x06\x8a\x1d\x1f\x92\xb9\x35\x42\x5c\x9e\xe3\xc6\x88\xa4\x6a\x8d\x92\xbb\xa8\xfa\xb4\x1a\xb0\x09\xb5\x5a\xf4\x58\x51\x54\xc1\x68\x19\x29\xbb\x39\x5e\x24\x3d\x7b\xc4\xdc\x47\xd1\x37\x66\x20\xa3\x7b\xda\x03\x1d\x37\x8e\x7e\xde\x4d\xd4\x98\x2c\x24\x51\x6b\x16\x70\x08\x1a\xa0\xe8\xf4\x62\x96\xe1\x43\xc4\xf2\xae\x09\x84\x91\xc3\x05\xf5\x9c\x29\x59\xee\x1a\x3a\xa8\x57\xfc\x01\x0e\x11\x0a\x4f\x3b\xbb\x63\xf8\x46\x70\x40\x06\xd6\xc8\x3a\x21\xc3\x0b\x77\x52\x3f\x42\x3d\x62\xa8\x79\x5c\xcf\xfb\x38\xbb\xc3\x8e\x74\x29\x3f\xc2\xc0\x37\x7d\x11\x7c\xa3\x6a\x67\x8e\x6c\xdf\x2c\x68\xc0\x10\xa3\x16\xf8\x7e\x38\xf8\xc8\x31\x8b\x79\x82\x84\x1c\x77\x8d\x58\xcc\x2f\xbc\x9f\x7e\xc4\x68\x22\xbd\xc4\x11\x5c\xc3\xf4\xb1\xc1\x7a\xb7\xeb\x68\x52\x26\x86\xea\x67\x3b\x92\x08\xcb\xbb\x5b\xcb\x37\x4e\x29\xef\xf2\x2e\xf2\xc8\x44\x89\xac\x99\x70\xd2\xfc\xca\x18\x8f\xf7\xb6\xe1\xab\xda\xf5\x23\x05\x24\x05\x22\x04\xf8\x56\xb4\xc5\xbe\x64\x37\xfe\x2f\xbf\xf4\xe2\x06\x94\xc7\x0e\x46\x29\x99\x35\x0e\x7d\x6c\x15\xac\x8f\xfb\xc8\x11\x2b\x85\xb0\x06\xab\x57\x08\x09\xfb\x51\x21\x7c\xc3\x0e\x48\x05\x75\x34\x42\x34\x81\x30\x5a\x3e\xaf\x24\x60\xec\xfb\x65\xe0\xa0\xf7\xb7\x8e\x69\x24\x24\x77\xdb\x3e\x78\xf9\x2b\xe0\x0f\x4b\xe0\x33\x25\x50\xb0\x11\x3d\x04\x30\x3e\x20\xa2\x61\x75\xa4\x2c\x88\xc1\xf1\x4a\x62\xc0\x7f\x58\x0e\x9f\x13\xe1\x88\x37\xa2\xb5\x6c\x24\xaf\xa0\x3d\xaa\xb8\x0a\x55\xb2\xb6\xd5\x17\x0e\x2d\xe2\xf2\xea\x0f\x07\xd1\xd7\x80\x2c\x98\x26\xcb\x8b\x6b\xcb\x41\xe4\x05\x37\xf1\xc5\x01\x6c\x4f\x59\x5e\xbf\x4a\xc0\x37\xf9\x27\x56\xa5\x6b\x25\xae\xb9\xf1\xdb\x74\xea\x4e\x0d\x1f\x29\xd3\x43\x56\x96\xf5\xb5\x13\xb7\xba\x54\xd1\xb5\xd5\x77\xf6\x64\xc1\xb9\xfe\x1d\xfb\xda\xba\x1f\xed\x0f\xfa\xc2\xf5\xec\x58\x18\xdc\x3f\xc2\x82\xae\x01\xbf\x50\x65\xb5\xda\xfa\xf2\xb6\x33\x9a\x27\x4d\x16\x97\xb7\x64\x79\x79\x4b\x9a\x97\x7d\xf6\x65\x9e\x4e\xc4\xff\xcf\xe6\x0f\x93\x34\xe9\x7f\xe6\x58\xd9\x0e\x9c\xa3\xef\xc0\xae\xa2\x7d\x57\x8c\x4b\xc1\xc3\x02\xb6\x65\xd6\x76\xd3\xc3\xa9\x28\xf3\x07\x75\x8f\x58\x5e\x53\x92\x97\x8d\x33\x0e\xab\x8e\x01\xfb\xdf\xc5\xd1\xdf\x68\x89\xe5\x11\xae\x24\x98\x1d\xf8\xd5\x65\x83\x4a\x51\xb5\xac\x93\xb0\x0b\x97\xd6\x02\xa3\xa5\x6e\xa6\xf1\xbe\xc9\x2e\x17\x96\x35\x59\x75\x60\xb0\x17\xec\xef\x7c\xbf\x77\x5a\x74\xec\xdc\xca\x20\xca\x1d\xec\x90\xc5\xe5\x6d\x87\x78\x0e\x3b\x18\xdc\xa9\xae\x18\x2e\x66\x8b\xf5\x70\x67\x4e\xb5\xde\x21\x2b\x0f\x5f\x66\xcb\xc7\x35\x3b\x27\xd3\x5e\xe6\x07\x0d\xd1\xd5\x17\xb4\x58\xdd\x06\x6b\x58\xc9\xef\x75\x23\xf7\xe6\x1c\xe5\xdd\x81\xb3\xcf\x9d\x8c\x2d\x53\xb7\x5c\x55\xf5\x14\x67\x7e\xef\x8c\xdf\x10\xd7\x9f\xc4\x8d\x33\xf1\xcd\x09\x2e\x05\x97\x09\xab\xfa\xb5\xc9\x2e\xaa\xc9\x65\x12\x04\x79\xe8\xa8\xef\xe9\xca\xc2\x59\x71\xe8\x07\x94\xf9\x17\x0f\x80\xc9\x9a\x17\xe6\x7e\xee\x2d\xe8\xf5\xec\x7e\x17\x57\x40\x87\xd4\x08\xec\xac\x6e\xc9\xf7\xbf\x43\x66\xdb\x63\xd1\x28\x4d\x26\x35\x9b\xd7\x9f\x37\xfd\x14\xb6\x3d\xc8\x65\x31\x9b\x8b\xab\xa6\x90\xfe\x40\x4e\x90\x37\xf8\x41\xfa\x12\x1d\xd2\x44\x98\x7a\xe4\x1f\x78\x8d\x93\xdc\xc3\x65\xe6\x66\x88\xd0\x03\x59\x5d\x5e\x1e\x0e\xb1\x77\x68\xbe\x0a\xbe\x65\xdb\x1b\x02\x83\x06\xff\xdb\xa2\x21\x06\x67\x90\x86\x68\x47\x61\x08\x1e\x20\x41\x50\x04\x4d\x4d\xff\x33\x9b\xf7\x43\x4e\x58\x88\xc5\x7c\xf2\xfc\x3c\x59\xac\xd7\x93\xd9\x62\x0d\xaa\x2b\xd0\x35\x61\x6d\x71\x4c\x51\x45\x1c\x00\x2d\x6a\x3f\x24\xfc\x37\x67\x01\x3d\xb3\xc0\xca\x2b\x02\x69\x22\x4d\x69\x16\x59\x3d\xa5\x8a\xa4\x19\xb6\xbf\xca\x7e\x24\x32\x9d\xf8\x2b\xe7\x36\x94\x26\xab\x1a\xcc\xa1\xcb\x9e\xfa\x1f\x9a\x2e\xb7\x1a\x38\x61\x5d\x84\x54\x5e\x97\x21\xb5\x17\x81\x65\x04\x3d\xb7\x59\x90\x38\x34\xbc\x1f\xfe\x92\x17\x6d\xef\x74\xe4\xbf\xde\xd9\xcb\x96\x5f\xe3\x34\x03\x7e\x69\x9a\x56\x0e\xbb\x81\xd0\x41\x62\xd5\x7c\xcc\x68\x59\xaf\x27\xea\x7f\xf6\x78\xe1\x14\x7d\x0d\xc2\x25\xbf\xbb\x25\xa4\xeb\xca\x9a\x8e\xe5\x08\x6d\xe9\xb7\x18\x17\xcb\x7d\x04\x48\x9d\x4f\xd3\xd4\x8b\xe8\xad\x9f\x94\x21\xb6\x8a\x21\x61\xeb\x6b\xd7\x3b\x0f\xb8\x92\xab\xc2\x58\x0d\x0c\xf0\x2a\x6b\x1e\xfc\x29\xef\xd2\x53\x35\x48\xcc\xdf\x65\x75\x13\x37\xf4\xd2\x27\xef\xbd\xcc\x8e\xc7\x63\x62\xc5\x93\xc6\x36\x0b\xb0\xd8\x42\x07\xe3\x55\x2d\xd8\x11\x18\xe0\x5d\x66\xc1\x52\x61\xcf\xd8\x0e\xb1\xa4\xab\xc7\x43\xe4\x70\xd3\xaa\x8b\x10\xd3\xaa\xcb\x10\xd3\x2a\xa2\x68\x09\x7a\xae\x69\x45\x82\x6e\x2d\x9d\x14\x61\xbd\x23\x47\xb8\x2d\x3d\x69\xf7\x0c\xb1\x46\xd8\x3d\x63\x1d\x01\x8d\x1e\x27\xf7\x99\x46\x01\xad\x94\xc7\xee\x79\x67\x03\x87\x00\x3d\xd7\x2f\xfa\x1f\x2f\xee\xa7\x99\xf6\x08\x79\xb1\x11\xe7\x14\x8e\x34\x7d\x1e\x76\x9f\x6f\x90\x1c\x61\x7f\xa4\x91\xf5\xb6\x0c\x66\x62\xc6\xe8\x5c\xb0\x3b\x3e\xcf\x00\x1a\xba\x4c\x0d\xef\xfb\x4d\x1f\x8f\x5a\xc5\x4d\x9f\x2e\x42\x4c\x9f\x2e\x43\x4c\x9f\x88\xea\x27\xe8\xb9\xa6\x0f\xb9\x04\xb0\x58\xae\x1c\x19\x83\x9e\x38\x86\x14\x63\xfa\x0c\xb1\xc6\xb8\x7c\xab\xf5\x44\xfd\xcf\xb6\x7e\x9c\xa2\xdf\x2e\x08\xc9\xef\xb1\x7e\xba\x5e\x1e\xeb\xb7\x58\xae\x76\x30\x2f\xa3\x8f\x00\x69\xfd\xe6\xd9\x62\xb3\x5c\x7a\x71\xbd\xb5\xec\xc5\x18\xed\xf5\xd1\xf2\x62\xc3\xcd\x29\x1c\xeb\xf8\xd1\xec\xee\x31\x4b\x8b\xe5\x2a\xb1\xee\xa6\xf8\x84\xbd\xdb\xc8\x72\xa9\x13\x24\x80\x3d\xb2\x65\xa0\x7d\x51\xca\x18\xaf\x73\xc1\xee\xf8\x3c\xeb\x67\xe8\x32\x35\xc2\xef\xb7\x7e\x79\xd6\x10\x7e\x9f\x2a\x41\x6c\x9f\x2a\x42\x4c\x1f\xbf\x67\x84\x13\x73\x0d\x9f\x7b\x29\xc9\xd5\x46\x7e\xbb\x62\xe4\x00\xb7\x44\x27\x0d\xdf\x20\xd5\x08\xbb\xb7\x5c\x4d\xd6\xf3\xc9\xe6\xc9\x31\x7a\x3d\xb5\x4f\xb3\x06\x58\x75\x7c\xde\x9e\x6f\x22\xb0\xf1\x49\x73\x27\x36\x60\x7c\xa8\x9f\x69\xd3\x03\xd2\x62\xa3\xcb\x2e\x1b\x69\xeb\x08\x4e\x3f\xca\x00\xd9\xd2\xfe\x18\x9b\xea\x6b\x13\xc7\x8e\x8c\xd0\xb2\x50\x1f\x7c\xa2\x7b\x07\x94\x97\x1e\xce\xf7\x5b\x39\x79\x19\x11\x37\x74\x46\x21\x62\xeb\x8c\x52\xc4\xdc\xa9\x5b\x8e\x24\x55\xd7\xe8\xa1\x17\x23\x2d\xb7\x56\x5d\xc0\x44\x6c\x08\xbf\x8b\x49\x78\xc3\x6e\x4d\x48\xd3\x07\xc4\x1b\x63\xfd\x1e\x27\xf3\xa7\xcd\x64\xbe\x78\x76\xec\x9f\x24\xe9\x37\x81\x42\xfc\x7b\xac\xa0\x51\xb9\xb8\x65\xaf\xe0\x15\x20\x31\x62\xe1\x8b\x60\x7f\xfa\xd2\xd7\x2b\xf3\xe7\xaf\x46\x0d\xe2\x6a\x40\xc5\x19\x52\x9f\x98\x1f\x36\x77\x9c\x78\xe2\x5e\x3b\xf6\xb3\xbb\xd3\xb9\x52\x0a\x39\xbe\x3b\x30\x73\xf4\x39\xab\xda\x00\x93\xfb\x17\xd1\x71\x1b\xcd\xfc\x2a\x36\xb2\x18\x02\xc7\x6f\x08\x0e\xb9\x52\xae\x28\x6f\xd1\xb8\xcc\x6d\x7f\xf5\x99\x47\x8b\x99\x67\x61\x5b\x8d\xf7\xef\xe8\x83\x3f\xc5\x16\x5b\xd8\x57\xca\xeb\xf5\x88\xec\xb5\x16\xb2\x75\xef\x5b\x10\x57\x23\x76\x03\x61\x88\x03\x86\x3f\xc2\x26\xda\xa8\x9f\x6e\x10\x69\x69\x3f\xdf\x1a\x2a\xca\xa3\x4c\x21\x2d\xe0\x47\xed\xa0\xa0\x9c\xb8\x29\x0a\x3c\xbc\xee\x33\x0d\x5a\xf7\x46\x76\xc1\x8f\xb3\x80\x3e\x0e\x3f\xda\xfc\xf1\xf4\x10\x23\xcd\x5f\x8f\x43\x98\x3f\x55\x84\x98\x3f\x23\xc1\x84\xfd\xd5\x67\xfe\x2c\x66\xa4\xf9\x1b\xc8\x7f\x8a\xf9\x53\x6c\x5d\xf3\xc7\x19\x79\xcd\x5f\x0f\xf1\xa3\xcc\x9f\x92\xeb\x5e\xf3\x67\xe3\x8f\x30\x7f\x36\xea\x5f\xc1\xfc\x29\x96\x9f\x6f\xfe\x14\xe5\x0f\x9a\x3f\x9b\xcc\x8f\x34\x7f\x36\xaf\xbf\x8e\xf9\xb3\x7b\xfd\xf3\xcd\x9f\x8f\xc3\x8f\x36\x7f\x2a\x65\x0d\xb2\x78\xe3\xd9\x6b\xfc\x68\x84\x11\x34\x4a\x11\x3b\x08\x53\xdf\x20\x05\x3e\x6b\xe8\x32\x26\x0d\x22\xe0\x33\xc2\x26\xae\x36\x93\xf9\xe3\x66\xb2\x7e\x74\x6c\xa2\xc1\xdc\x35\x8b\x8a\x9d\xd7\x32\x4a\x20\xff\xaa\x59\x34\xfc\x3d\xc6\xd1\x10\x30\x72\xd5\xcc\x79\x05\x48\x8c\x30\x91\x08\xf6\xe7\xaf\x9a\x7d\x32\x7f\xbe\xa1\x34\x88\x8f\x5b\x35\xfb\xc4\xfc\xf0\xaa\x99\x13\x4f\xdc\x14\x53\x7e\x76\x77\xae\x9a\x95\x42\x8e\xef\x8e\x1f\x67\x34\x03\x4c\x7e\xb4\xdd\x54\x69\xb7\x10\x95\xe6\x19\xb8\xfc\x68\x84\xdd\x34\x4a\xb1\xe8\x45\x90\xbe\x0b\x29\xf0\xd9\x4d\x97\x31\x1d\x13\x68\xf2\x19\x15\x15\x98\x4e\xe6\xab\xc5\x64\x89\x04\x05\x0e\xdc\x91\xe8\x4b\xc9\xcf\x6b\x38\x25\x90\xdf\x98\x88\x96\xbf\x2b\xb6\x70\x10\x30\xce\x70\x0a\x5e\x01\x12\x23\x0c\x27\x82\xfd\xe9\x86\xd3\x2b\xf3\x0f\x88\xc6\x1b\x88\x8f\x32\x9c\x5e\x31\x3f\x7c\x94\xcc\x89\x27\x6e\x9e\x3c\x3f\xbb\x3b\xcd\x89\x52\xc8\xf1\xdd\xf1\xe3\x0c\x67\x80\xc9\x8f\x36\x9c\x32\x77\xa0\xab\xd1\x22\x8d\xa0\x17\x8b\x30\x9b\x43\x21\x7a\x44\x6d\x64\x20\x74\xbf\xfb\x6c\xa6\xc3\xd4\x73\xb4\x3c\x30\x19\x63\x31\xd3\x74\xb2\x59\x4d\xd6\x0b\xe4\x74\x59\xb1\xc6\x4e\xd7\x39\x33\xaf\xb9\x14\x30\x5e\x0b\x22\xdb\xfb\xbe\x23\x6a\x25\x5d\x9c\xb1\x14\xac\xfc\x14\x46\xd8\x4a\x17\xf9\xd3\x4d\xa5\x4f\x62\xfc\x98\xd4\x2e\x1d\x79\x58\xed\x63\xf8\xf9\xa6\xd9\x15\xf7\x5e\x3e\x42\xee\xc4\x4d\x02\x1a\xdd\x38\xc0\x8e\x68\xa5\x1c\xa1\x7b\xe1\x3e\xf9\x6b\xc4\x26\xc6\x73\xf3\x2c\xdf\xf8\x55\x35\xf7\x1a\xa1\xfd\xc8\x83\x89\x23\xae\xbd\xb9\x0f\x4c\x80\xfd\xd5\xac\x79\x71\x9f\x12\x53\x10\x86\x6c\xf2\xad\xe0\xaa\xee\xa6\x59\x59\xd6\xaf\x2c\x27\x9e\x0b\x85\xad\xa2\x5f\x4e\x84\x63\xa9\xbe\x64\x87\xa2\xfb\xbe\x9d\x81\xf3\xfd\xb6\xcb\xba\xe2\x30\xd1\x2f\xe2\x19\x0f\xb2\xea\x6f\xf2\x11\xc0\x26\x70\x29\xc9\x24\x7b\xbc\x96\x25\xbf\xd7\x07\x52\x7f\x59\x0f\xe2\xea\x06\x11\x9a\x7e\x73\xba\x7b\x50\xe0\x9d\x7c\x30\x79\xca\xbe\xb1\xaa\x6b\xdd\x63\x18\x30\x58\xb2\xaa\x38\x8b\x27\x7b\x87\xb7\x6e\x93\xd9\xba\x4d\x8a\xea\x58\x54\x45\xc7\x92\x5e\x0d\x32\x75\x47\xb4\xef\xd5\xa4\xad\xcb\x22\x4f\xe0\xb3\x93\xba\xd7\x9f\xd3\xd5\xd3\x86\x5f\xe9\x15\x9f\x79\xe2\x41\x52\x3b\xbb\xfa\x82\x9a\x16\xf9\x00\xe2\x4f\xd6\x45\x5e\x75\x19\x72\xb8\x0a\xc9\xce\xbb\xe1\x72\xe0\x3a\xfd\x39\x99\x26\x5f\xe6\xec\x9c\xfc\x29\x59\x3c\x3c\xec\xf4\x5d\x53\xa7\xc4\x79\x7c\x90\x58\x8a\xf2\x3e\xbf\xa1\x5a\x23\xff\x12\x49\x72\x1d\x1d\xf2\xf4\x42\x7b\x43\xee\xe0\x82\xce\x17\x39\x42\x9a\xec\xb2\xed\xff\xe3\xdc\x6b\xe5\xc5\x6d\x97\x35\x5a\x56\xfd\xc6\xb5\x75\x8b\x79\x66\x8e\xa8\xe1\x21\x6c\xea\x86\xa8\xbc\x01\x0a\x90\x90\xeb\x98\x92\xf8\xd4\x02\x0c\xdd\xa8\x36\x81\xb1\xe7\xb9\xdd\x8b\xa5\xfa\xe9\xd9\x9e\x80\x48\x7e\xaf\xee\xda\x9b\x1a\x04\x0a\xc2\x2c\x4c\x11\x21\x07\xa1\xad\x18\x0b\xab\x04\xb4\xd7\x74\x7e\x79\xf3\x72\x75\x5b\x50\xbe\x74\xe9\xc3\x72\x7d\x28\x0a\xca\xf2\x2c\x29\x30\x71\x6f\x3a\xf0\x44\x7a\x98\xa3\xbc\xf3\xaa\x1e\x0d\x5f\xc6\xd5\x41\xbd\x67\x1e\x55\x93\x38\x60\x55\x9f\x30\xf4\x36\x56\x06\xe9\x08\xc3\x67\xd1\x57\x43\x0d\x8b\x76\x78\x3a\x0d\xbf\x6c\x0e\x60\xc5\x53\x0a\xe8\xe8\x65\x55\x2e\xde\x56\xcd\x8a\x8a\x35\x3a\x1d\x45\x22\xde\xb6\xb5\xef\xc2\x47\xe6\x44\x31\xe9\xa9\x64\x1b\xcf\x9b\xf4\xa2\x66\x13\xfe\xbb\xc1\x96\x37\x79\x79\x2d\xe0\x3d\xeb\xe5\x42\xbf\x1a\x2c\xf5\x54\x7e\x51\x24\xb9\x7d\x13\xbf\xf2\x17\x84\x03\xf9\x62\x54\x62\x14\xc0\xd6\xc8\x2f\x62\x80\xce\xd7\x0b\x2d\x6c\x0c\x69\x95\x48\x04\xd6\x48\x24\x33\x32\xc0\x96\xab\x55\x04\x59\x37\x7d\x0a\xd6\x9e\x40\x46\xf1\xc7\xa8\x24\x4d\x2a\x79\x89\x94\xd2\x97\xb3\x04\xe7\x6f\x56\x46\xfc\xf1\xae\x5f\xe9\x8d\x4c\x6a\xa1\xdd\x95\xb2\xf8\x5a\x16\xe6\x03\xfa\x3c\x99\xc3\x3b\xe2\xe2\x38\x94\x07\x9f\x27\x2f\x3d\x85\xb5\xaf\xf0\xe2\x2b\x6b\x7c\x3c\xb9\x9f\xe5\x29\xbf\xba\x6c\xed\xa6\x30\xeb\x79\x9a\x0f\xa8\xa7\x85\xf1\xfb\xd2\xf8\x7d\x65\xfc\xbe\x36\x7e\xdf\xc0\x0c\xfc\xf6\x5b\xf8\x3b\x9e\x41\x43\xa7\x71\x98\x2f\xd6\x26\x5f\xf3\xe1\xb6\x21\x6b\x82\x9e\xbd\xa1\x90\x74\xea\x85\xbe\xef\x60\x8d\x16\xc0\x6d\x36\x53\x32\x68\xe2\x8f\xf3\x15\x44\x09\xd0\x9f\xcd\x57\x8b\x27\x80\xb1\x04\x4c\x10\x1e\x9b\xcd\x66\x03\x31\x42\x3c\x96\xcb\xe5\xd2\xc4\xa8\x4b\xb3\x57\xad\xfa\xee\x4c\xbb\xb5\x00\x8c\xe0\x33\xce\x0b\x44\x36\x58\x15\xeb\x41\x67\x14\xe1\xe9\x09\xe2\x80\xd7\x9d\x1d\xf8\x39\x3e\x92\x94\xcb\xc1\x65\x5e\x3b\xee\xb4\x99\xab\x46\x3c\x6b\x0e\x5b\xe3\x56\x16\xad\x7a\x6b\x3d\x67\x87\xe2\x9c\x95\xef\x66\x03\x99\xc5\x45\x7b\x30\xcb\x60\xf1\xb4\xfb\x7e\x61\xdb\x43\xd1\x1c\x4a\xb6\x33\x4d\x00\x60\xc8\xb1\x30\xc4\xf6\xdf\xae\x59\xc3\x06\xc0\x1c\x4e\x22\xa0\x33\x8e\xc5\xcb\xb5\x61\x76\x39\x9c\x63\x16\x58\x06\x16\x9b\x84\x5f\x79\x10\x9e\x21\x2b\x80\xa0\x24\xc5\xf9\x05\x4d\x5f\xe9\x00\x1e\x8b\x97\x43\x76\xe9\x27\x6a\xf0\x00\x7e\x97\x95\xc5\x01\x3c\x9c\x7e\xf3\x3d\x5e\xaf\x3a\xd9\x79\xba\x7e\xb6\x6f\x58\x96\x1f\x9a\xeb\x79\x2f\x92\x33\xa9\x47\x8d\xf8\xef\x55\x76\x66\x93\xd9\xa9\x78\x39\xf1\xeb\x35\x93\xd9\xa5\xa9\x5f\x1a\xd6\xb6\xf6\x63\xee\x83\x24\xed\x75\x3f\x31\xfe\x30\xdf\x98\x7d\x5c\xff\xfc\x0e\x8d\xeb\xcd\x5c\x80\x5a\xcb\xdb\xdc\x59\xf0\x9e\xa4\x56\x6f\xe7\xd4\xfa\x50\x90\x93\x19\x8c\x74\x03\xf4\x15\x4f\x84\x75\x42\x9f\xc9\xaf\x2e\xd7\x6e\x32\x13\x9e\x5e\x22\xfe\x99\xcc\x7a\x35\xc9\x1a\x96\xdd\x3e\x9c\x74\xc8\xcc\x6a\x87\xd4\xf3\x64\x59\x76\xeb\xc5\x2d\x17\x9e\x65\x39\xda\x3a\xfc\xbb\x6a\x23\xa3\x29\x7a\x4f\x02\xb0\x70\x48\x1e\xeb\xba\xc3\x48\x8a\xef\x16\xc9\x7e\x71\x9e\x26\x69\x80\xe4\xbe\xce\xbf\x27\x5d\x63\x8c\x0a\x8c\x01\x06\x75\xb2\x96\x4b\xb2\x22\x9a\xc3\xb0\x15\xe4\x6e\xfc\x18\x20\xf4\xce\x8f\x01\x44\x6d\xfd\x48\x95\x70\x74\x60\xd8\x05\x98\x6d\x16\x88\x06\x18\x29\x82\x20\x80\xd9\xff\x9c\xf8\x76\xcb\xf3\x69\x5d\xca\xec\xc0\x4e\x75\x99\xf7\x4b\x06\xc5\xce\x2d\x93\x2a\xc2\xb7\xc5\xd7\xab\x89\xf8\xff\xd9\xf2\x61\x20\x26\xf3\x70\xf1\x3f\x49\xaa\x14\x50\x88\xbc\x47\xd4\xb1\x92\x4e\xcf\xad\x57\x48\xb4\x3c\x40\xd4\x5c\xc4\xea\x0f\x7a\xbd\x2a\xf8\x82\x72\x75\xde\xa1\xb8\x9a\x04\xcc\x6f\x9a\x86\x16\xcf\x86\xd2\xb9\x99\xa2\xa3\x08\x77\x72\xd3\xb3\xd7\x68\x2e\xcc\xb0\xc1\x38\x90\xa5\x37\x44\xe1\x86\x90\x43\xc2\xa7\x56\x3e\x28\xb3\x85\xe7\x8b\xc5\x44\xfd\x6f\x68\x64\x80\x1d\xd6\xb6\x28\xf0\x51\x5c\xa3\x2a\xf6\xa1\x7a\x05\x74\x33\x04\x19\xc1\xab\x77\x6a\xfe\xdc\xb2\xac\x39\x9c\xcc\xde\x36\x3f\xdb\x1b\xdc\x72\xab\x53\x51\xe8\x67\xeb\xba\x2a\xbf\x9b\xe8\xfa\x9b\xbb\x7b\xae\x87\x03\x9f\xf7\xa1\x76\xcb\xdc\x49\xf6\x0e\xbe\x8d\x84\x8e\x2e\x37\xc7\x14\x2c\xda\xe2\x18\xd8\xc0\x73\x98\xa0\x85\xce\x50\x74\x59\xb9\x25\x31\x83\xd3\x49\xd6\xa4\x25\xe6\xf9\x14\x20\x59\x99\x76\x05\x49\x17\x61\xe3\xa1\xad\xe6\xa6\x8f\x81\x45\x6e\xab\x81\x04\x31\x8e\x24\x54\xab\xb9\x7c\x9c\x52\xb4\xd5\x0c\x6e\xa3\x52\xbd\x68\x71\xa5\x97\x68\xd2\x94\xe9\x1a\x90\x4b\x8e\x36\x1e\xda\x64\x6e\xda\x09\x58\xe4\x36\x19\x48\x2c\xe1\x48\x42\x35\x99\xcb\xc7\x29\x45\x9b\xcc\xe0\x36\x36\x45\x84\x96\x38\xcf\x1a\x4b\xcf\xc4\x45\x6f\xfb\xc6\xaa\x85\x82\xb6\x97\x73\x53\x1d\x94\xb8\xad\x65\x5e\x46\xb7\x25\xa0\xda\xca\xe1\x61\x17\xa2\x2d\x35\x70\x1a\x75\xa7\x5c\x4b\x2a\x2f\x82\x41\xa2\xfa\x72\x28\x72\x91\xcd\xc0\x2d\xaa\x63\x0d\x54\xa4\xb2\x1a\x5c\x00\xc0\x8e\xad\xec\x2e\x50\xd1\xcf\xb6\x48\x68\x47\x60\x37\x69\xed\x42\xb7\x3b\xac\x9b\xb2\x48\x55\xa9\x4e\xc1\xf8\x21\xe5\x68\xd7\x00\xae\x23\xef\xbc\x82\x36\x46\x5b\xc2\xb9\x0f\x02\x4a\xdc\x36\x30\x6f\x82\x80\x2e\x23\x0c\x44\x45\x28\xbc\x71\x11\xcd\xfe\x8a\x34\xaf\x2d\x3e\x56\x86\x36\x2c\xa8\x84\x53\x80\xda\xa1\x8a\x1c\x5a\x4e\x6d\xec\x42\xc2\x08\x55\x51\x43\xcb\xbe\xcf\xa2\x1b\x45\x86\x8b\x42\xaa\x3a\xf8\x1d\x09\x77\x75\x71\xd1\xce\xc1\x02\xe1\xed\x42\xb7\x8b\xac\x10\x78\x44\x26\xaa\xf9\x30\x7e\x48\x39\xda\x88\x80\xeb\xb8\x18\xf8\xc1\xc9\x11\xd1\x63\x96\x2f\xa2\x82\x61\x91\xe8\x37\x17\x17\x77\xb7\x90\xc0\x58\xbb\x10\x71\xb9\x60\x48\x2c\x22\x13\xe9\x76\x21\xfc\x90\x72\xdc\xf5\x32\xb9\x8e\x8c\x89\x35\xa6\xa5\xea\xc5\xf4\xbd\x67\x46\x6c\x1c\x12\x12\xe3\x60\x12\x73\xa3\x13\x26\x67\x95\x61\xf3\xa3\x19\x20\xe7\x8a\x43\xcf\x91\x0e\x2f\xb7\x98\x98\x27\x07\x8e\xe3\x02\xe4\x86\x01\x74\xce\xca\xd2\xd2\xee\xe8\xe0\x19\x4d\x45\xa5\x8c\x36\xc9\xd0\xbb\x2a\x83\x81\x15\x09\xa8\x81\x7d\xf2\x6d\xb3\xcc\xcc\xf0\x14\x6b\xfd\xed\x44\xad\x88\x08\x0d\x67\x37\x65\xa6\x9f\x26\xb1\x4d\x30\xf2\x2e\x9d\x79\x46\x37\x3b\x9c\xd8\xe1\xb7\x7d\xfd\x36\x99\xf5\x8d\x52\xab\x6d\x40\x74\x6f\x16\x39\x32\x35\xda\x5c\x06\x71\x7c\x46\x86\x5b\x98\x4c\x3c\xb5\xb6\x97\xd2\xf7\x61\x63\x0a\xee\x2d\xee\xcc\xe3\xda\xf4\xe7\x5d\xc3\x78\x73\xab\x4d\xcf\x01\x8f\xef\x58\xff\xa5\xa9\x5f\xdb\x5f\x1f\x38\x8d\x93\x7e\x3d\xf8\xf2\xc6\xa9\xa8\xa3\xa4\x05\x3f\xcc\xcd\x59\xc9\xfa\xe5\xe3\xb9\xce\xb3\x72\x7a\x28\xeb\x96\xdd\x0c\xa8\x1e\xc8\xdc\xd7\x18\x56\xa6\x3d\x07\x95\x5d\xfc\x5a\xb5\xac\x1b\x0a\xf9\xc9\xf8\xb1\x78\x63\x39\x57\x8a\x9b\x14\x56\xac\x5b\xad\x6e\x51\xa1\x57\x32\xde\xc5\x3a\xed\x5a\xac\xdf\xc5\x76\xf5\xa1\xcb\xc0\xc6\x35\xd8\xd2\xc5\xe2\x61\x20\x9d\x35\x96\x0d\x7e\x4c\xda\xfb\x41\xee\x44\xee\x20\x72\xe9\xc5\x1f\x56\x1d\x06\x58\x15\x31\xc0\x61\x61\xc8\xad\xde\x5c\x95\xa0\xe6\x5e\x11\x07\x37\xa3\xd3\x40\xa4\x90\x1b\xab\xf6\x2e\x30\xbe\xca\x16\x05\xe9\xd4\xf9\x69\x8c\x6c\x26\x4b\xa5\xb0\x1d\x73\x9d\x1c\xbf\xfb\xc2\x8d\xc2\xb5\xec\x8a\x4b\xc9\x1e\x6e\x20\x5d\x3f\x0d\xb7\x05\x41\x94\xe6\x76\x3e\xbc\xfa\x2a\xf5\xdd\x08\x91\xd9\xa6\x43\xdc\x56\x42\x04\x6e\xf1\x73\x0e\x24\x32\xca\x0d\xc7\xda\xf1\x31\x78\xac\x9b\xf3\xb6\xa9\xbb\xac\x63\x5f\xa6\xab\x75\xce\x5e\x1e\x86\x82\x69\xdd\x14\x2f\xc5\x90\xac\x9f\x37\x8c\x79\x08\xd9\x0b\x25\xd3\xc1\xef\x9a\xe1\xf8\x95\x9d\x79\x5c\xd8\x3a\xfd\x79\x67\x84\x78\xf4\xb2\x37\x75\x39\x33\x22\xe4\x44\x53\x28\x5d\x75\x4b\x6e\x46\x9c\x5a\x6c\x1c\xdd\xbb\xa5\xf9\xa1\x63\x13\x63\x3e\xb0\x2d\x11\x7c\x80\x81\x8e\x11\xdb\x7d\x78\x8b\xdc\x7d\x9b\xc1\x1b\x35\x2d\x4f\x4b\x2c\xc3\x00\x15\x02\x1e\x9c\x1a\x06\x0a\x34\xcf\x98\xed\x76\x1b\x71\xfc\x8e\x3a\xa4\x70\x2f\xe7\x91\xdb\xe4\x00\x79\x66\x5e\x05\x80\x64\xe9\xd7\x0a\x10\x1a\xca\x79\x71\x0a\xb4\xc7\x03\x89\xa3\xf0\xd2\xcf\xd1\x7d\x13\xbc\x8e\x1c\x5e\xd5\x00\xfa\xa3\xc3\x77\x91\xbc\x6d\x44\x4e\x44\x7b\x2b\x9e\xe0\x3b\x72\xb3\x9d\xa6\x72\xd7\x2e\x3a\x45\xee\x53\x64\x1a\xbf\x0d\xee\x0c\xbc\x76\xca\xde\x2e\x59\x05\x9f\x85\xa3\x39\x62\x0a\xaa\x76\x13\x21\x6d\xee\xe1\xa8\x19\xe7\xd7\x87\x1b\xb4\x3f\x0b\x73\xca\x53\x6c\x34\x34\xf0\x58\xf4\x31\xb2\x6d\x37\x06\xf8\xa4\x16\x07\xf4\xe0\xc0\x79\x6e\xcc\x80\x5c\xec\x2d\x76\x75\x40\x4f\xf1\xc3\xf0\xe1\x7b\xd7\xd0\x74\x83\xed\x79\x1c\xd2\x1d\x91\x18\x84\x35\x34\x6d\x90\xad\x9f\xc2\x7d\x1b\xea\x03\x2d\xbe\xbf\x8c\xd7\x4c\xed\xa2\xe3\xc0\x78\xe5\x6c\x08\xa4\x72\x26\x08\x52\x39\x50\x3c\x7e\xdf\xdb\x98\xb3\x7b\x7d\x21\xfa\x0c\xa8\xa7\x0d\x8c\xd7\xcc\x86\x40\x6a\x66\x82\x20\x35\x03\xc5\x77\x6d\x4f\x0f\xb4\xf2\xac\x21\x7a\x8d\x6f\x4a\xa3\x80\x78\xbd\x2c\x00\xa4\x5a\x06\x04\x52\x2b\xb3\x74\xfc\x56\xf2\x40\x47\x6e\x78\x12\x95\x92\xbb\xc7\x03\x78\x51\x1d\x6b\x1d\x18\x62\xb6\x71\x45\xb4\x8b\xda\x29\xa6\x38\xe2\xad\xe3\xc2\x20\x0d\x04\x81\x90\x36\xb2\x00\xee\xd9\xd3\x45\x6b\x8e\xcb\x6c\x01\x20\x02\x1b\x10\x88\xb4\x66\xa9\xdc\x64\x41\x1b\x98\x1a\x27\x55\x40\x9f\x0c\x08\x74\x94\x54\x63\xf4\x09\xf7\x34\x8c\xcd\x43\x42\xa1\xe4\x96\x29\x05\x8e\xd7\xcd\x85\x41\xaa\x07\x81\x90\x1a\x5a\x00\x77\x6c\x6e\x1a\x53\x81\xd8\xd9\x23\xcc\x9c\xdc\xcf\xa4\xc0\x89\xf9\xc9\x81\xc1\x66\x28\x00\x84\xcd\x51\x10\xe0\x9e\x9d\x47\xd3\xc6\x54\x2f\xac\xc1\x2b\xa9\x76\x1b\x09\x68\xca\xe8\x59\x20\xa8\xd9\x33\x60\x50\xc3\x67\x96\xdf\xb1\x37\x68\x68\x44\xf4\x4e\xe0\x80\x43\x6f\xfb\x19\x63\x89\xd8\xe4\x33\x2a\x21\xdd\x38\xdc\x11\x82\x6e\xb4\xb5\x2b\x88\x7c\x54\x3d\x64\x6e\x06\x1a\xd2\xc0\x45\xf4\x5f\xf3\x62\x59\xc4\x6d\x32\x63\xef\x20\x45\xb6\x25\xe4\x0d\xa9\x8d\xde\x46\x50\xbf\xea\xed\x0a\xe1\x25\x1f\x8b\x92\x99\x51\x9b\x37\x64\x83\x52\x6d\x39\x9c\xb2\x76\xca\x1f\xfd\x53\xbf\x88\xca\xa9\x67\x04\x6d\xb0\xd6\x2c\x9e\xe9\x6b\x26\x7a\x07\xd2\x69\x69\xad\x5a\xb2\xc5\x7d\xea\x64\xa0\x08\xcd\x72\x70\x30\xfd\x1a\x90\xb8\xaa\x21\x38\x42\xe1\xf8\x13\xa3\xce\x23\x8e\xe6\xee\x5f\xdb\x35\xac\x3b\x9c\xe0\x75\x38\xef\xfd\x37\x23\x48\x56\xec\x85\xfa\xde\x30\x75\x5f\x2b\x15\x42\x0d\xee\xb4\xde\xae\x1c\x7b\x21\xdb\xf2\x96\x01\x55\x63\x5d\x9f\x58\xfb\xa1\x33\xf8\x5e\x9b\x9f\xff\x73\xff\x73\xbf\x08\xd2\xba\xd1\x22\x70\x00\x53\x84\x88\x5d\x71\x6e\xde\xc8\x35\x46\x50\x26\x61\x50\x69\x91\xec\x72\xf2\xa2\xfd\xe8\x66\x11\x2b\x0c\x1f\xe1\xd0\xdb\x47\xe6\xd2\x0f\x50\x0d\xf4\xb7\xf1\x88\x94\x9f\xff\xaa\xff\xb9\x93\xbf\xa7\xb3\x8d\x60\xa2\x0f\x75\x36\x58\x73\xf9\xa5\xa1\xbb\xd9\x8c\x79\xf2\xb7\x46\x9a\x8e\x6b\x0a\xb1\xd0\xf2\x6a\x4e\xe0\x29\x00\x73\x2d\x05\xa8\x06\x3a\xd8\x78\x2a\xc7\xcb\x9f\x31\x76\x27\x73\x4f\xef\x1a\x71\x4f\x1f\x1b\xca\xd6\xba\xd3\x2f\x10\xdd\xc1\x66\x84\x96\xbf\x35\xc4\xc3\x9a\xa3\x1a\x84\x2f\x3b\x7d\x44\xbd\xaf\x59\x58\xfb\x00\x26\xd1\x40\x0f\x0f\x6f\x82\x78\xb9\xcf\xd9\x22\x5f\x1e\xee\x16\xc0\xd3\xcb\x43\xcc\xd6\x87\x3a\x19\xac\xc3\x43\xe2\xd0\x7d\x6c\x84\x96\xf9\xdb\x83\xbf\x54\x34\xba\x3d\xd4\xc2\xd9\xdb\xd1\x81\x9c\xfd\x98\x85\x70\x5f\x4d\xc0\x2a\x07\x9e\x42\x08\x28\x5b\x76\x7c\x1c\x39\x61\xb8\xd1\x61\x3e\x19\x3e\xa1\xc7\xe1\x96\x02\x2a\x93\x15\x55\x85\x09\x34\x84\x50\xe1\x63\xbe\x0a\x29\xf0\x10\x19\x05\xaa\x43\x19\x23\x18\xa9\x7f\x6f\x0b\xd3\x1a\x0c\x83\xf0\xfc\xbd\x3c\xcf\xd6\x8f\x61\x7f\xc3\x9a\x8b\x2a\xbf\x9d\x0a\x65\x16\xa6\x88\x06\x67\xa2\x2a\xca\xd3\x78\x5a\xef\xef\xe5\xee\xb3\xfc\x55\xe4\xcc\xbe\x5e\x1d\xf7\xe3\xb8\xf3\xdd\xa9\xcf\x6e\x50\x2b\x09\x36\xa9\xf7\x3f\xa6\x41\x61\x9c\x23\xc9\xfc\x07\x35\xa8\xda\x8e\xf2\x6a\x7e\x20\xc3\xab\x87\x6e\xa0\x59\x41\x0a\x5d\xbf\x0c\xfb\x6c\xb3\xdc\xdc\x2d\x83\xc7\x22\x81\x30\xc3\x0f\xd9\x58\xb8\x51\x17\x12\x89\xee\x6f\x18\x14\xe9\x6f\x96\xe7\xe7\xc3\x72\xa4\x51\x52\x9b\x73\x5e\x17\x39\x90\x9b\xd2\x43\x37\xb4\xea\x35\xb3\x7f\x86\x64\x78\x9a\x3f\xde\x2d\x83\x6f\xd9\x6b\x46\x44\x7e\x70\xe1\x0b\xb6\x2d\x43\x32\x79\x96\xbd\x20\x80\x33\xb0\x1f\xf0\x34\x1f\xbb\x3e\x95\xdb\x95\x3e\xb2\xa1\x04\x7b\x34\xd9\xa0\xd3\x3c\xa4\x2e\xf4\x4a\xb0\x67\xcb\x7c\x39\xd2\x97\x73\xc2\x3a\x3d\x12\x7c\x42\x77\x83\x4d\xdc\x80\x40\x3e\xbf\xd9\x08\x36\xf5\x37\xc9\x6a\x99\x2d\x46\x4e\x28\xd4\x5d\x5c\x55\x4e\xef\x1d\x43\x08\x29\x58\x71\xa8\xab\x64\x76\xcc\xcc\x9c\x15\x3c\xf5\x91\x9e\xef\x89\x7d\x66\x50\xee\x21\xf6\xa4\x89\x9d\xb2\x96\x07\x0a\xba\x7d\x34\x32\x53\x13\x4e\xaf\xff\xf5\xce\xe4\x52\x80\x5c\x5f\x29\x76\xbe\x74\xdf\x5d\x39\x87\xed\xfb\x00\x0e\x97\x05\x86\x58\xa8\xf6\x0a\xe6\x1a\x52\x80\xa1\x44\x43\x0a\x6e\x5f\xbf\xe9\x71\x21\xb6\xa5\x39\x4c\x5e\x34\xec\xc0\x37\xa7\x0f\x75\x79\x3d\x57\x38\x42\x5f\x39\x14\x5c\x6d\xa4\xc3\xd4\x06\xec\x9c\x2c\xcd\xce\x37\x49\x99\xed\xaf\x6e\xc3\xcf\x2f\x6f\x09\xd0\x26\x13\xa1\xd7\x96\xdb\x10\x0d\x3a\xec\xd8\x8b\x60\x11\x0a\xc5\xab\xad\x1c\x58\x0f\x13\x1a\x6b\xbe\x42\xb1\x82\x43\xe3\x09\x45\x0b\x8c\x81\xe5\xda\xc5\xa2\x07\xc3\xa0\x64\x89\xbc\xfb\x1f\xc0\x35\x1b\x5e\xe9\xb4\xc8\x43\x90\x2c\x86\xb3\x15\xb2\x4b\x1a\x7b\x47\xcd\xa2\xa4\x05\xc1\x51\x10\xee\x52\x6c\x97\xfb\x9c\x17\x48\x09\x76\xe2\x8c\x68\x3a\x1f\xe8\x0e\x87\x4d\xa6\x3a\x9b\x27\x4e\x14\x24\x97\x82\x2b\xf2\x4b\x53\xbf\x6e\xe7\x56\x66\xab\x77\x93\x5e\xf0\x68\xc2\x0a\x72\xf4\x9d\x54\xa8\x56\x33\x23\x85\xb5\x40\xe6\xc7\x4b\xf6\x52\x54\x3c\x98\x74\xca\xca\xb2\xb8\xb4\x45\x4b\x14\xc3\xe7\xba\x40\x51\xc5\xde\x3a\xa2\xe8\xd2\xb0\x6f\x45\x7d\x6d\xbd\x01\x78\x66\x33\x44\xee\x64\x5a\x61\x53\x04\xbe\xa9\x04\x12\x23\x5f\xf7\x3f\x00\x23\x7e\xbb\x10\xe3\xca\xe7\xd8\xaa\xee\x8a\x63\x71\xe0\x75\xf6\x64\xe2\xa4\x98\x22\x72\x1e\x8e\xfd\x8f\x44\x11\x91\xe3\x2a\xb0\x39\xd5\x99\x28\xd3\x21\x9a\x15\x0b\x6b\xe6\xe7\x8a\x32\x56\x39\x9d\x2b\xe3\x65\xc5\xc7\xfb\xc2\x82\x61\xa0\xa3\x75\x19\x82\xeb\xe4\xe8\xc0\xe0\xbb\xf3\xa7\x20\x81\xc1\x9e\xc3\xeb\xbe\x89\x40\x2c\xb2\xf9\xa1\x19\xce\x62\x8d\x3c\x38\x55\xfd\xda\x64\x17\xf7\xa8\x54\x04\xae\xc3\xf3\xd2\x87\x44\x25\x07\x71\x4f\x4c\x7b\x76\xc1\x62\x10\x42\x08\x13\x8b\x2c\x8c\xc4\x68\xfe\x23\x5b\x8a\x45\x64\x39\x2e\x43\x03\x62\xf7\x95\xc2\xcc\x8c\x98\x06\xf3\x9b\x0e\x62\x50\x1f\xb7\x36\x94\x8a\xe7\xd1\x0a\xe7\x90\x52\x1f\x21\xad\xfe\xeb\xd6\x81\xb3\x03\x85\x07\x09\xd5\xcd\x87\x55\xd6\xff\xbc\xd3\x06\x00\x9c\xf8\x8b\x3c\x4a\x5c\xef\xdd\x39\x41\xfd\x2f\xb5\x0e\xf3\x8d\xbb\x11\x1b\x98\x4a\xaa\xef\x40\xf1\xb7\xce\x8c\xa4\xcc\xea\xbb\xe1\x5d\x84\x72\xb2\x1a\xd1\x02\xb8\x3b\xb6\xb3\x92\xa8\x9a\x61\x05\xef\xb3\x13\x2b\x2f\x93\x99\x98\x55\x80\xe4\xef\x01\xc7\x43\xa0\x00\x2b\x67\x8e\xa9\x86\x9d\x41\xc6\xb9\xc7\x34\x95\x38\xa1\xdc\x57\xc2\x75\xe2\xa0\xbe\xc5\x82\x06\xa0\x57\x0b\x1a\x84\x5a\x00\xf4\x95\x77\x48\xef\x60\xde\x41\x0d\xa8\xcf\x7e\x41\x8a\x78\x55\x22\xf2\x3c\x58\x47\xba\xaa\x50\x64\x34\xb0\x0c\xbc\x2a\xe4\x37\xf7\xcd\x33\x24\x55\xa0\x6e\xaa\x83\x83\x84\xa1\x58\x5c\x40\x1f\x58\x54\x9a\x8a\x8a\x25\x54\x65\xea\x5a\x2e\xd8\x2d\x33\x2a\x25\x6f\x9b\x82\x9d\x15\x53\x3e\x7e\x89\x12\x2c\xc2\x7b\xe5\x60\x65\x1e\xec\xca\x47\xb5\x6c\x63\x65\x6e\xe4\x35\xbd\x45\x87\x51\xd8\x98\x89\x32\x51\x81\x5c\xc1\x53\xe9\x1f\x52\xd8\x46\xae\x36\x95\x64\x75\x12\x0b\x2e\x6d\x65\x24\x34\xb4\x9c\xf4\xe2\xce\xf0\x34\xed\xe5\xdd\xc2\x5f\x17\x23\x15\x56\x44\x55\x4c\xe8\x60\x4d\x4c\x60\x5f\x45\xc0\xe2\xd6\xaa\x89\x5d\xe6\xa9\x4a\x84\xfc\x61\xa1\x09\x49\xcd\xa5\x72\x80\x3d\x9c\x75\x22\x80\x8d\xd9\x28\x00\xbd\x8d\xa6\x3b\xcc\x85\xfe\x96\x88\x14\xd6\xcd\x72\x15\x02\x8e\x11\x15\xe4\xc6\x8a\xed\x91\x48\x89\x1d\x9c\x18\xc9\x01\x52\x4c\x0d\x20\x82\x93\x43\x7a\x84\xae\xa8\x4b\x99\x63\x34\x26\x1a\x67\x3b\x92\x87\x99\x31\x7a\x8c\x0e\x8d\xc1\x88\xaf\x83\xa9\x4f\xd1\xe0\xb1\x35\x20\x74\xeb\x1e\xcc\xf8\x1a\x61\x7a\x36\x1a\x8d\xc8\xea\x4d\xe2\xf3\x2d\x3a\x7e\xf7\x89\xe5\xe6\x4e\x81\x8b\x62\xfc\x1a\xb3\x5b\x47\x23\x87\x77\xf0\x68\x5c\x63\x83\x43\x56\x00\x6c\x6f\x88\x69\xfe\xd4\x14\xd5\x6f\x83\x55\x2e\xda\xbe\xf8\x7a\x61\xf9\x58\x1f\x61\xc0\xfc\x05\xb2\xa3\x59\xfc\x12\x74\x26\xa4\x1f\x63\x25\xd6\x87\x6e\x0d\x42\x8f\xea\x28\x50\xe7\xb9\x4b\xc0\xf8\x35\xb6\xdb\x70\xe4\xb8\x6e\xc3\x71\xf9\x1d\x35\x9e\x04\x01\x3e\xf7\x10\x89\xf5\x0b\xe2\x3c\x4c\xc6\xa2\x8e\xf2\x2b\x03\x54\x7d\x0f\x45\x8c\xa2\x13\x52\x12\x49\x47\x6c\xda\x24\x72\x81\x34\xac\x2e\x8a\xea\xc4\x9a\xa2\xf3\xa7\x8e\x7f\xdc\x88\x9c\xec\x06\x25\xf4\xe9\x0c\xc5\x8b\xa7\x43\x15\xbf\xcb\x7f\x1c\xa9\xbc\x49\xe0\x1f\x37\xcf\x97\xb7\x87\xc9\xa5\x29\xaa\xee\x36\xb4\xc3\xa9\x6e\x8a\xdf\xeb\xaa\xcb\x4a\x30\x0c\x41\x0d\x85\x7a\xec\xb3\xb6\x68\xb7\xe9\x8e\x1c\xd9\x70\xe8\x88\x4c\xef\xe6\x32\x98\x7f\x07\x84\xe9\x55\x1f\xd8\xf7\x11\x5b\x3e\x0e\x66\x55\x37\xe7\xac\xbc\x45\x40\x52\x0b\xc7\x18\x2e\xf8\x8a\xd2\x83\xd9\x77\xd4\xcd\x7d\x4c\xc5\x6d\xbe\x35\x6a\x24\xcc\x8e\xa6\xf4\xae\x07\xf9\x45\x82\x90\x34\x7e\x31\x56\x6e\xbc\xb9\xb2\xa6\xa9\x5f\x1f\x90\xe9\xc4\x01\xf7\xbc\xcc\xf2\x28\x95\xb2\x38\x67\x2f\x6c\x22\xfe\x49\x8a\xf3\x8b\x91\xfe\xd9\xda\x5c\x30\x77\x41\x91\x84\xf9\x0a\x0d\x29\x12\x69\xa0\xe9\x07\x04\xb8\xe1\x87\x1b\x11\xee\x7e\x20\x9a\x32\xd9\xdc\xf9\x12\xd7\x18\x6e\x70\x23\x08\xee\x60\x46\x26\x8c\x30\x76\x56\x25\x22\x92\xde\xc1\x60\x3b\x38\x3f\x5f\xc9\x9b\x16\xc6\xbe\xa1\x00\xfd\x5f\x02\xa0\xa6\xc7\x41\xc3\x9a\x9b\x81\x91\xb0\x2e\x61\x98\x56\x84\xac\xa2\x1e\xe5\xa2\x96\x44\x6a\x66\x02\x51\x0c\x5d\x07\x13\x24\x6c\x26\x50\xf9\xc8\x45\x30\x97\x28\x22\xb5\xa1\xdb\x63\x8b\x6d\x75\x17\x07\x74\x8f\xae\x66\x5c\x0f\x45\x80\x9b\x9d\x14\x0f\x8e\x92\x8f\x68\x74\xa7\x32\xa2\xe9\xe3\x6b\x13\x82\xb7\xab\x13\x09\x8f\x33\x88\xd1\x05\xa7\x46\x5c\x23\xe2\x2b\x14\x00\xb7\xeb\x13\x07\x8e\x92\x8f\xd0\x4f\x5d\x99\xf0\x95\xac\x1f\x6e\xcb\x4c\x93\x9e\xa8\x9c\xe9\x13\xeb\x73\x7b\xdd\x77\x45\x57\x32\xfb\x3b\xf6\xb1\xed\x9a\x5a\xef\x4b\x1e\xae\x4d\xc3\xaa\xee\x1f\xfa\x3f\xfc\xed\xc0\x5b\x91\x1d\x3b\x67\x80\xfe\xff\xfe\x92\x9f\xe7\xf5\x37\xea\x86\x1f\x56\xbb\x59\xf0\x62\x1d\x8e\x13\xba\x59\x87\x63\xf9\xaf\xd6\x71\x57\x00\xbb\x65\xa8\x7d\x84\x9b\x19\xa6\x01\xf2\xb4\xf5\x10\x3d\x87\xf9\x66\xff\xfd\x59\xb8\x13\xc3\xb7\xfd\xf7\xb9\xf5\x69\xe1\x7e\x5a\xee\xbf\x2f\xac\x4f\xab\xfd\xf7\xa5\xf5\x49\xbc\x19\xc2\x65\xd1\x0b\x3e\x95\x47\x8d\xb8\x69\x99\xca\xb1\xa0\xba\x31\x4d\x7f\x26\x64\xdf\x7f\x9f\x3b\xac\x80\x77\x6a\x21\xf4\xf2\x81\x72\xfe\x06\x06\xa8\x11\x28\xde\x6c\xf8\x6b\x36\x4e\x7b\x01\xa0\xf5\x66\xb6\x00\x64\xfa\xb6\x82\x10\x56\x8b\xbf\xcd\x37\x3a\xb0\x65\x33\x3c\xec\x24\xf2\x8a\x6b\x2a\xab\xb7\xc5\x4a\xa7\xf0\x1a\xde\x7f\x5a\xac\x00\xd8\x72\xf1\xb6\x5c\x28\xb0\xe5\xf0\x4c\xd5\x72\x01\xc0\x56\x4f\x6f\xab\x27\x05\xb6\x7a\xd2\x60\xab\x27\x00\xb6\x59\xbd\x6d\x34\xd3\xcd\xc0\x74\x03\x99\x3e\x6f\xde\x9e\x75\x15\x9e\x37\xc6\x63\x63\x00\x6c\xbe\x78\x7a\x9b\x2f\x34\xdb\xf9\x62\xe0\x3b\x17\xa1\x32\xf0\xbc\xde\x39\x47\x46\x54\x1b\x18\x31\x91\x39\x4f\x6e\xcb\x3d\xa0\xc6\x0c\xc0\x1f\xea\xdc\xb6\x83\x97\x86\x19\x81\x02\xf2\xe0\xc9\x86\xe0\x88\x26\x18\x8f\xba\x31\xa1\x7e\x51\x17\x51\xc9\xeb\xc3\xda\xb4\x70\xc3\x22\xa0\x55\xb6\x31\xf9\xd7\x9e\x1d\xeb\x86\xf5\x5e\xf8\x0b\xaf\x58\xbf\x48\x78\xe0\xc7\x44\x00\x9a\x2a\x16\xe8\xc2\x32\xaf\xd3\x9f\x75\xc6\xb3\xe1\x9e\x32\xff\xad\xcc\x3a\xf6\x9f\xbf\x4c\xd7\xe9\xcf\x0f\x89\xfe\xf0\x2f\xf2\x83\x4c\xbc\x26\xf3\xae\x0d\xc9\xce\x60\x6d\x87\xe3\x3a\xf4\xc2\xac\x0b\x2c\x33\xb5\x13\xb7\x2d\x5d\x78\x99\xa6\x9c\x0c\xe0\xb0\xe1\x45\x86\x6e\xec\x22\x98\x0b\xab\x93\x54\x13\xd7\x89\x5c\x0c\x71\x1a\xe8\xca\x58\x61\x3c\xd5\x01\xa1\x0d\xae\xf3\xf7\x12\x11\xf6\x48\x0b\xab\x4c\xb5\x44\x80\x36\xd6\x0c\xde\xf7\xca\xdf\x87\x15\xe3\x98\x3c\x8a\xea\x1d\x58\xe3\x77\x67\xf2\x56\x43\xdc\x58\xa8\x6b\x6f\x46\x18\x61\xbd\xea\xd4\xa9\xb3\xd4\x97\xe9\x3e\xc3\x64\x16\xde\x82\x17\xf1\x5b\x56\x5e\x31\x1d\x54\x6a\x65\xa0\xf2\x04\x5b\x7e\x86\x18\x56\x3b\x3d\x16\x65\x19\xba\x27\x2c\x83\xc8\x14\xa2\x1e\x1e\x23\x44\xe6\xc3\x06\x23\x10\x21\x38\x8d\x4b\x8a\xef\xa0\x88\x2b\xb9\xf7\x37\xb1\x49\xe3\x8e\xb6\x06\xe8\x81\x46\x87\x58\xe2\xaa\xe9\x88\x86\x96\x26\x04\xa3\x11\xd3\xd6\x3e\x74\xba\xb9\x11\x2c\x7e\x7f\x32\x5e\xee\x85\x39\x7e\x0d\xfc\x08\x99\x49\x54\x52\x5e\x07\x43\x5d\x95\x1b\x21\xaf\x34\xa6\x38\x95\x18\xa9\xfd\x04\x68\xd9\x11\x3c\x7e\x2b\x2d\x5e\x76\x65\xc3\x11\x12\x11\x82\xfb\xb0\x49\xa9\x31\x24\x7e\xf5\xeb\x63\x52\x4b\x12\x77\x4a\xad\xb0\x47\x49\xad\x2e\x30\x8d\x50\x15\x39\x01\xe2\x54\x62\x54\xc5\x4f\x80\x56\x15\x04\x4f\xdd\xc5\x19\x61\x51\xe4\x6c\x8c\x53\x89\xb1\x29\x7e\x02\xb4\x55\x41\xf0\xe4\xed\x92\x78\xe9\x6d\xd7\x00\x10\x89\x10\xde\x8f\x4f\xca\x8e\xa1\xc9\x43\x83\xe1\xdd\x54\xb1\x34\x06\xe3\x88\x9f\x0d\x68\x08\xb1\x0e\x16\xbb\xd6\xc4\x24\x37\xbc\x5f\xa8\x5f\xf8\xc3\x92\x28\x2b\xb0\x99\xf1\x3a\x93\x84\x0f\x78\xbb\x76\x76\xd2\x21\x29\xae\x9a\xae\x4c\xda\xea\x19\x23\x83\xb6\xdf\x39\xde\x61\x99\x19\x77\x58\x0d\x67\xc6\x93\x3f\x06\x79\xbf\x2f\x8d\xe7\x56\x35\xa7\x01\x93\xbc\x7c\x1b\xc7\xa0\x4e\x7b\xde\x3b\x27\x39\xa1\x7d\xd5\xdf\xa4\x3c\xbc\x27\x63\x10\x0f\xb9\xea\x36\x0b\xf1\x91\x6a\x1b\xf9\xaa\x0c\x68\xad\xca\xaa\x0e\x80\x39\x05\xdd\x7c\x3c\x3f\x2e\x25\xc0\xf0\xae\x87\x41\x3f\xb4\x2e\xb0\xeb\x28\x3e\x52\x2c\x86\x27\x2f\x4c\xe5\x0d\x2c\x24\x6c\x1d\x10\x1f\x29\x16\xfa\x31\x08\xa0\x05\xde\x85\xc7\x0e\xcb\xdb\x46\x32\x10\xc7\x66\x90\x81\xf8\x76\x73\xe3\xc4\xd5\x1a\xe3\x67\xab\xa9\xf9\x9e\x2f\xcb\xad\xb6\x96\x5f\x69\x85\x22\xbb\x4e\x62\x26\xd9\x04\xff\x2e\xf6\x53\x71\x76\x06\xd2\x09\x41\x42\xf7\x2d\x62\x9f\x23\x95\x70\xcd\xdd\xd5\x6b\x08\x49\x9b\x91\x92\x42\x78\xc3\xde\x5a\x05\x27\x37\x89\xee\xce\xd7\x00\xea\x7d\xd5\x88\x77\x55\x35\x92\x7e\x41\xf5\x8e\x97\x53\xfd\x2f\xa6\xde\xf3\x52\x2a\xc7\xe1\x86\x9e\x97\x9b\xad\x03\xbf\x5a\x02\xce\x75\x8d\x20\x18\x2e\x94\x0f\x06\x17\x0d\xd2\x1f\x5e\xf7\x30\x57\xed\xba\x98\x47\x52\xc1\xca\xab\x63\x6e\xd5\xb7\x0f\x2a\x1f\x34\x62\x66\xfa\x1f\x8c\x1a\xc7\xef\x9a\xe2\xd2\x0b\x7d\x07\x61\x73\x26\x19\xec\x04\x6c\x15\xf5\xed\x34\x64\x84\xe6\x99\x19\xc5\x4e\x5c\x37\x42\x8c\xaa\x3b\x89\x26\xfd\xc2\xbe\xb1\xea\xc1\x5b\xd3\x97\x36\x78\xbd\x00\xc6\x00\x79\xe3\xb0\x7a\x7a\x49\xff\x5f\x34\x62\x65\x28\x0e\x05\x13\x0c\xe0\xbe\xd0\x1d\x03\x2a\xf4\xa4\x3e\x87\xe4\xc7\x2e\x48\x38\x81\x3a\x90\xc2\x22\x0d\xd0\xef\x44\xe8\x41\x2f\x09\x08\xda\x33\x1a\x62\x78\x85\x05\x01\x42\x1e\x0f\xbf\xef\x0a\x30\x4d\xdc\x94\xfe\xde\xfb\xca\x9c\x7a\xcc\xe5\x5f\x1b\x10\x69\x09\x71\xad\x02\xbc\x92\xaf\x6e\x5a\x28\xec\x50\x04\x1b\x80\xa3\xda\x11\xbe\x58\xe2\xd2\x8f\x51\x47\x51\xf5\x61\x33\x1b\x1b\x31\xa4\xe3\x0a\x1d\x62\xec\x52\x1c\x71\x67\x07\xdc\xf2\x12\x0f\x91\xc3\x4b\x57\xe2\x1b\x76\x27\x0d\x48\x9b\xa8\x3d\x7f\xab\xad\xed\x67\xee\xa7\x2a\x5a\xc9\xd9\xb8\xf7\xad\x2a\x9c\x35\x84\x85\x1b\x58\x35\xc0\x99\xde\xc2\x0d\x6d\xaf\xbb\x27\x0c\xb4\x97\x1f\x42\x0d\x6f\xb7\x3b\x28\xca\x09\x77\xa4\xf6\x79\xe2\xde\x0a\x07\x9d\x6c\x2f\x76\xd0\x7f\xf6\x62\x87\x7c\x63\x2f\xb2\x1b\x47\xd7\xa0\x9a\xe4\xc6\xcc\xcd\xd7\x2e\xa4\x38\xc3\x37\xc7\x31\x39\x40\xb9\x32\xab\x97\x74\xa0\x81\x99\x3f\x21\xea\x2c\x49\x0f\x94\x42\x26\x43\x50\x89\x19\x29\x88\xd4\xee\xdc\x45\xcb\x4b\x0f\x3f\x64\xf8\xce\x2f\x6f\xc6\xf9\x85\x1b\xdb\x26\x5d\x47\x0f\xb9\xc8\x53\x3a\x47\x1d\x4c\xef\xd7\x8a\x67\xf0\xbc\x94\x04\x1f\x44\x4a\x8c\x79\xc2\xc7\x5c\xed\x9f\xe8\xe3\xd8\xb5\xf0\xf5\x3c\x15\x52\x38\xeb\xe1\x30\x5e\xb8\x8f\x38\x8e\x7a\xa1\x8f\x28\xa6\xfc\x39\x71\xbf\xdb\x23\x0a\xbf\x0c\xe0\x39\x2c\x72\x10\x39\x54\xbf\x24\x42\xcf\xad\xde\x8d\x98\x19\xfe\xcf\xed\xb5\x6e\xf2\xe9\xbe\x61\xd9\x6f\x5b\xfe\xdf\x69\xff\x61\x00\x4b\xd8\x79\x70\x6b\x92\xf6\x92\x55\x12\x91\x17\x0c\x5f\x6f\xe6\xfd\x4c\x15\x9d\x3c\x20\xf6\x72\x2a\x70\x3e\x85\x5b\x5b\x52\xe7\x22\xcf\x4b\x36\xbc\xf4\x56\x5d\xcf\x7b\xd6\xe0\x1b\x57\x5c\x6c\xf2\xae\xa8\x08\x1f\x05\xd7\x45\x37\x69\x6a\x3d\xb5\x36\x5f\xac\xdf\x95\xf0\xe6\x42\x4f\x0a\xbe\x43\x2b\xc3\xe1\xbf\xce\x4e\xc5\xcb\x49\xcc\x27\xe0\x09\x2e\x19\xfd\x0d\x3c\x40\x6e\x89\xfb\xf9\x34\x7f\xf8\x3a\x33\x5b\xdd\x2d\x55\x78\x80\xa8\x76\x07\xfb\x12\x1e\x60\x60\x66\xd1\x80\x45\x0b\x33\x2d\x87\x8d\xb7\x34\x0b\x61\xd1\x0a\x89\xb3\xd1\x85\x6b\xd4\xc2\xaa\xd2\x8d\x6b\xa6\x55\xd1\x23\x96\x80\x5b\x55\x11\x5c\x98\xde\xb9\x21\xd3\x66\xeb\xaf\x9c\xbe\xeb\xbb\x6e\x50\x48\xb3\xf7\x80\x36\x0c\x7d\x3f\x80\xe3\x4d\x68\x96\x62\xad\x68\x96\xbb\x0d\x69\x96\x62\x6d\x69\x96\xa3\xcd\x69\x02\xb8\x2d\x6a\x96\x62\x8d\x6a\xa5\x03\xef\xea\xeb\xe1\x34\x3d\x64\x65\x59\x5f\x75\x42\xf0\xfa\x77\x37\x4d\x38\x92\x37\x7c\xcc\x01\xb9\x6d\x8f\xec\x54\xc9\x0f\x31\x67\xe8\xc4\xe3\x69\xe0\xcd\xcb\x21\x94\x3c\xb5\xae\x02\x0c\x6d\xa1\x23\xa7\xf8\x43\x90\xc6\x7b\x92\xfa\x6f\x39\x8b\xa9\xd7\x25\x8d\x3f\xc9\x19\xcf\x78\x78\x12\x8d\x5a\x21\xbc\xd8\x8f\x4e\x64\x87\xac\xc9\x27\xfc\xbf\x53\x19\xff\x9e\x37\xf5\x25\xaf\x5f\xab\xc9\xac\xac\xb3\x9c\x35\x58\xfc\x1b\x3a\xdb\x2d\xe0\x6c\xe7\x9f\xdc\x16\x46\x75\xe5\x5c\xe6\x9f\xba\xac\x1e\x5f\x3e\x0c\x1c\x88\x39\xcb\xc2\x58\x69\x8c\x99\xbe\xa3\x61\x06\x89\x19\xfd\xa8\xff\x1e\x02\xc7\xc0\x2b\xa1\x1b\xd0\xaf\x4e\x88\xd9\xc0\x05\x1e\xb8\xf0\x20\x33\x53\x5d\x56\x50\x5d\x56\x90\x8d\xfe\xdb\x28\x36\x43\xd4\x06\x36\xe0\xd0\x86\xc7\xa8\x19\x5c\xf4\xdf\x43\xdc\x9a\xc9\x45\xff\x6d\x14\x9b\x11\x6e\x27\xc6\x83\x25\x6f\xe4\x53\x83\xbd\x93\x53\xb2\xae\xeb\xc7\xf7\x25\x3b\xf0\x3c\x55\x9c\xa3\xb9\xd1\xc0\x33\x30\x0d\xcf\x0a\x20\xfb\x15\x7a\x9a\x8b\xdd\xb3\x18\xe6\x45\xdb\x7e\x5b\x4f\x7a\x1a\x0f\x9a\x69\x1c\x1e\x96\xa6\x53\x57\xf0\xe8\x4d\x88\xf5\xae\xb4\x3f\xf6\x11\xca\xdd\x5f\x33\x1c\xd7\x78\x24\x33\x1c\x99\xfb\xae\xbc\x9b\x31\x8b\x7f\x42\x68\x6c\x17\xc0\x9d\x50\x95\x02\x7b\xd2\x7a\x0c\x6a\x3d\x33\xf6\x07\xe4\x4e\x4a\xe2\x5c\xb4\x52\xe6\x6a\x50\xa1\x4f\x98\x82\x82\x89\xa8\xac\x9b\x38\x4a\x5f\xa6\x6f\x32\xde\x17\xd9\xc0\x30\x9e\x0c\x46\x93\x4e\x39\xa9\xa6\x9c\x04\x53\x68\x5a\x29\xdf\xfb\x1b\x58\x5d\xb1\x57\x39\x76\x9e\x16\xfb\xf0\x4b\xc0\x43\xc7\x24\xd9\xc4\xfc\xab\x2c\x42\xdb\xb4\x10\xd9\x48\x50\x12\xd8\x5f\x12\xef\x0e\xce\xc4\xda\xd3\x24\x01\x1f\x15\xe6\xeb\x7e\x20\x10\xc8\x71\x91\xc1\xa4\x44\xa9\x05\x3b\x1b\x52\x4d\x02\xd1\xa4\x2f\x91\xb3\x63\x76\x2d\x3b\xec\x0a\x82\x45\xe8\x6b\x59\x6c\xd5\x84\x69\x9f\x19\xc9\xc1\xfc\xa7\x9f\x00\x4e\x5d\x82\x86\xbc\x96\x71\xfb\xdd\xe8\x3d\xc6\xb8\xd7\x5e\xdc\x8d\x00\x7b\x77\xdb\x6a\x6a\x7b\x4f\x02\x79\x66\x79\x80\x06\xfb\xaa\xb0\x72\xa0\xe8\x5a\x92\xdb\xb3\x10\x43\x6c\x83\xba\x94\xc4\x77\x84\xcc\xb0\x03\x0b\x11\xa8\x34\x3d\x10\x8a\xce\xd5\x03\xe1\xa8\x84\x3d\x06\x14\xdf\xe8\x6e\x9a\xfa\x75\xda\xb2\x4b\xd6\x64\x5d\xdd\x38\x2a\x22\x95\xe2\xbf\xfd\xd7\xff\xe3\x27\x07\x77\x7f\x2d\x4b\xd6\x45\x20\xff\xaf\xff\xa7\x8b\x9c\xd7\x11\x98\xff\xef\xff\xed\x22\xf2\x4d\x3e\x96\xb7\x11\x7c\xff\xf7\xff\xe7\x27\xe1\x5b\x92\x21\x1d\x46\x0e\xd8\x7e\xca\x5c\x5e\xde\xec\xf7\x4f\xe6\x0f\x13\xf1\xd0\xd7\x1c\x2b\xb3\xb6\xa7\xed\xd9\x9b\x7b\xb4\xbd\xef\x62\xcd\x7b\xca\xce\x03\x01\xe6\x32\xc5\xa2\xcb\x04\xda\x29\x83\xe8\x54\x2c\x2d\x91\x11\x09\xd7\x86\xf4\xf8\x84\xf9\xa5\x06\xa3\x26\x17\xf6\x0e\xaf\xa8\xf3\x0b\x13\x8b\xca\xc0\x45\x2c\x83\x22\x76\xf4\xa1\x70\xe2\x76\x8c\x75\x35\x96\x97\x48\x6c\x7d\x1c\xa8\x6f\xb8\xf6\x85\xc7\xba\x36\x5e\x43\xe3\x97\x48\x1c\x97\x29\x34\x33\x03\x52\x1c\x2e\xce\x36\x86\x2f\x7c\x8f\x69\x00\x83\x3d\x79\x54\xd5\xa8\x8d\x40\x58\x43\x41\x21\x99\xf1\xeb\xed\xb1\x19\x03\xd4\xca\xec\x86\x79\x61\xd8\xd6\x95\x42\x30\x26\x31\xfd\x6d\x7a\x66\xd5\x75\x02\x40\xf4\xa1\xb1\xca\x2d\x09\x60\xed\x9e\x36\x31\xe5\x81\x14\x84\xe7\x93\x00\x77\x94\xf4\x61\x94\x89\x73\xbd\xd8\x08\xca\xc1\x37\x9c\x76\xd5\x04\xab\x61\xdb\x98\xab\x8c\x78\xaa\xb8\xff\xad\x67\xf0\x4e\x48\xca\x5d\x16\x79\x19\xca\x58\xaf\x2d\xec\xdb\xee\x2b\x73\x61\x0e\x2e\x0c\x72\x59\xd4\x35\xc1\x45\x2a\xfd\xbb\x89\x74\xf3\x06\xdb\x26\xaf\xeb\x59\x17\xac\x86\x4b\xee\x5a\x3e\x35\x34\xbc\x91\x6e\xf8\x03\xf5\xf7\x1a\x4a\xab\x29\x67\x6e\x9a\x00\xa8\x5e\x62\x3c\xc1\x4d\x33\x6a\xf5\x37\x7b\x12\xdb\x9f\x70\xcb\x6c\x3d\x8c\x97\x25\x2f\x4f\xf0\x9b\xec\xef\xb3\xbe\xbb\xa6\x65\xd1\x76\x93\xd9\x99\xb5\x6d\xf6\xc2\x94\xd1\x76\x36\xe1\x32\x4b\x40\x78\xa4\xc8\x33\x18\x20\x0e\xb9\x85\x15\x08\x74\xb0\x0e\x05\x2d\xe4\x61\x18\xc5\x9d\x92\x69\xe4\xbc\xf8\x56\xe4\x28\x5b\xb0\x44\x84\xd9\x47\xe1\x82\x4e\xaf\xa8\x45\x6f\x25\xbd\x2a\xf2\xd4\x18\xe2\x9f\x89\xf8\xe7\xab\xf8\x07\x37\xae\xf2\xcd\x97\xe7\x89\xfa\xdf\x6c\xfd\xf0\x3e\x2b\xd9\x37\x56\xca\x8b\x5b\xba\x37\x92\x4c\xf7\x07\x96\x7b\x9b\xe3\x60\x16\xd7\xb6\x9e\xbc\x2b\xa6\x7b\xd6\xbd\x32\x56\x49\xbc\xd8\xf5\x3d\x07\xe6\xe4\xcd\x8b\xb7\xe6\x57\xf3\x13\x77\xd0\xea\x7d\x51\xb2\xc4\x80\x89\x48\x7b\x22\xea\x5f\x9c\x5f\x6c\xab\x2a\xda\x1f\x33\xab\x03\x7d\x87\x39\x29\x4d\x6f\x1f\xc8\xc2\x46\x04\x95\x8a\xbe\x83\xf3\x9c\x87\xdc\x57\x13\xdb\xdc\xc7\x4f\x49\x34\x3e\x70\xd0\x74\x40\xa1\x46\x9c\x11\xe9\x36\x46\x24\x68\x11\x5a\x83\x54\xef\x97\x58\x66\x46\xe5\xbd\xbd\x3c\x31\x5b\x26\x4a\x1f\xac\x54\x20\x46\x6b\x21\x5a\x6e\xb8\x12\x7c\x7a\xa3\xf7\x8c\x29\x37\xcd\xd1\x09\xd9\x89\xd1\x94\xa9\xa6\xe0\x81\x66\x25\x7b\x2b\xf6\xc3\x60\x71\x5a\xc1\x04\xa2\xda\x37\x66\x74\x1b\x8b\xc8\xa8\xbc\x40\xf1\xe3\x12\x68\xa5\x5f\xd9\xe7\x33\xd0\x67\xa2\x3c\x56\xf8\x7e\x2d\x38\x56\x83\x91\x6e\x03\x3a\x2d\x0d\x33\x90\xc1\xc8\x0f\xed\x04\x98\x4a\x33\xae\xe4\x8a\x6c\x19\xd3\xf8\xc3\xd4\x3c\x60\x66\x47\xa0\x69\x56\x13\x04\x2e\x26\xa1\x15\xc6\x43\x08\x86\x78\x19\x08\x98\x9a\xb5\xcc\xdc\xb5\x06\x30\x52\x3c\xb7\x5d\x98\xf9\x00\x3e\x1b\xf2\xa4\xb8\x78\xae\xf3\x33\x37\x59\xc9\xbe\x15\xbf\x8f\x1e\x92\x03\x09\x68\x56\x0c\xe1\xa0\xfe\x8a\x88\x08\xa3\x54\x79\x87\x34\x53\x2b\x0d\x1b\xa6\x4e\xd5\xd5\x39\xd5\xeb\x3f\xfa\x36\x3a\x54\x39\xbd\xc5\xa1\x20\xa8\xcd\x0d\xc3\x75\xb8\xe1\x81\x63\xf2\x84\x0a\xd9\xbb\x33\x70\x23\xfd\x33\x15\x4b\x6c\x60\x8e\x75\xce\x06\xd4\xb2\x48\xae\xfa\x85\x70\x15\xa4\x62\x2d\x48\x95\xef\x05\x82\xd9\x86\xf8\x36\x45\xce\x4c\x2b\x2d\x52\x08\x99\xbe\x32\x47\xb6\x8e\x4a\x66\x73\x88\x4d\x47\xf5\x70\x65\xc5\x80\x3d\xae\x94\x00\x97\x7e\x1c\xd5\xa6\xae\xb2\x70\x84\x58\x3f\x4d\x82\xfb\x22\xd8\x15\x08\x4c\x27\x20\xfe\xe8\xb2\x17\x2c\xb1\x80\x50\xec\x9c\x1d\xea\x46\x9c\xbe\x5c\xab\x9c\x35\xbd\x63\xa6\xc9\xf9\x15\x5a\x83\xf8\x74\x5a\x03\xd1\x6a\xad\x41\xbc\xf7\xf1\x6d\xb8\xc4\x5e\xce\x44\xc5\x20\xd2\x54\x78\x06\x36\xf2\x1e\xd4\x2a\xef\x7f\x00\x3e\x15\xbd\xa8\xe2\xa7\x6d\xd0\x08\x81\x91\xc0\x47\x9a\x0a\x22\x30\xc4\x47\xea\x4c\x46\x4d\xba\x32\xcb\x67\x88\xc3\x8d\xec\x5e\xb7\xa2\xa9\x60\x8d\x0c\xf0\x57\xc7\xfe\x07\x90\x20\x02\x37\x8f\x4f\xc7\xec\x78\x70\x20\x23\x24\x46\x42\x3e\x49\x22\x88\xc0\x06\xfa\xfc\xb0\x78\x16\x46\x52\xa3\xd3\xb1\xa2\xc7\xcd\x31\x3f\xee\x31\xe0\x18\x99\xdd\xcb\x2f\x3e\x3a\x98\xd8\x80\xc2\x3c\x5d\x3e\x2e\x9e\xac\xae\x42\x63\x53\x8f\xeb\xe3\x93\xc5\x4e\xbc\x0a\x1a\x94\x19\x9d\x12\x08\x22\x88\xc0\x10\x3d\xdd\xac\x36\x07\xd8\xd4\x45\x75\xac\xe3\x04\x16\xaf\x6e\x7e\x50\x60\x48\xe4\x1e\x81\xe9\x10\xde\xe3\xe3\x31\x3f\x3e\x62\xc0\x31\xba\xe1\xc6\xff\xfa\xe8\x60\xba\x01\x28\xcc\x1f\x57\x8b\x39\x54\x54\x4f\xf8\xf0\xf1\x98\x59\x23\x48\xbf\xcf\x18\xb6\x1d\x6e\xec\xb1\x8f\x0e\x66\x3d\x00\x85\xc7\xc5\x92\xa5\x7b\x6b\x38\x13\xa1\xcb\x7d\x83\x5b\x4d\xae\x1e\x19\x0c\xca\x8d\x84\x3d\x7b\xc8\x20\x62\x43\x02\x4f\xd9\x72\xb1\x18\xc4\xc6\x0e\x55\xc8\x60\x02\x78\xc3\xd6\x7d\x59\x6b\x87\x44\x32\xa1\xe7\x10\x60\x23\x09\x71\x22\xf1\xbd\x45\x53\x60\x7d\x99\x80\x5e\xad\x83\xc3\x4b\xe5\xd6\x99\x34\xbe\xa2\xad\xe6\xdc\x66\xa1\x6f\xa2\x18\x25\xf2\x8c\x18\x21\x88\xbe\x50\x64\xef\x0b\xc3\x06\x36\x1f\x88\x9b\xcb\x17\x6d\x4c\xca\x7a\x7f\xcf\xf8\x74\xa1\x62\xca\xde\x1d\x38\x3b\x3d\x93\x1b\x91\x22\x37\xc6\x7d\xa7\x30\x7c\x73\x93\x38\x5e\xd1\x91\x38\xa7\x22\xcf\xfb\x0e\x56\xbd\x79\x2c\xde\x58\xee\x6e\xc0\x1b\xce\x3e\xdc\x4f\x72\xf6\xe5\xdd\x6d\xfd\x50\x9c\xd8\xd3\xe6\x41\x87\x71\xf0\xe0\x38\xf9\xbb\x5c\x9a\xc9\x95\x40\x9a\xd8\xc1\x7f\xfc\x29\xa7\x79\x9a\x7e\x3b\x25\xd3\x64\xbe\x49\x2f\x6f\x0f\x3b\x18\x61\x44\xc5\xfe\xf1\x13\xcb\x11\xdb\x10\x11\xc2\xe9\x88\x26\x4c\xb8\x15\x97\x4d\x25\x1e\x4b\x2f\x7c\xcf\x62\x88\x5b\xb9\x39\x81\x23\x7f\xd5\xd8\xca\x71\xf1\x94\x30\x67\x98\xda\x2e\x5f\x81\x50\x4b\xa1\x44\xcd\x40\xb2\x1f\x7e\xfc\x17\x99\xa3\x8d\xc7\x5e\x1a\x2d\xa0\x02\x30\xcd\x4f\xde\x28\x4c\x32\x1e\x4b\xe7\x0a\xc3\x8f\x97\x3e\x96\x3d\x2c\x14\xdb\x89\x88\x8f\x87\x6a\x3a\x55\x27\xe2\x35\x4d\x38\x19\xb4\x69\x7e\x8a\x8f\xdc\x04\x0c\xe3\xc3\x37\x0d\xb4\x1f\x1d\xc3\x69\xb1\xfa\xa1\x81\x9c\x16\xaf\x1f\x19\xcd\x39\x98\x0e\x24\x9f\xb7\xf3\x06\xa9\xdf\x80\x58\x46\xdb\x24\xce\x8f\xc6\x27\xe6\x87\x7e\x02\x1d\x15\x80\xe8\x8a\x17\x11\xcc\xa4\x27\x42\x3c\xd6\x1a\x88\xd8\x4f\x6e\x93\x59\x95\x7d\xdb\x67\x8d\xfa\x37\xbc\xce\xb7\x6a\x04\x2e\xa4\xd2\x13\xb7\xed\x22\xac\x3d\xaf\x0c\xad\x61\x3f\x4d\xd1\xfb\x27\x64\xfc\x82\x93\xd5\x1d\x9c\xa3\x3a\x7d\xe4\xb9\xad\x6b\xc8\x88\xdd\xb7\x85\x55\xc0\x22\x1c\x2c\x56\xfa\x75\x17\xff\x19\xcc\x3c\xb5\xea\xcf\x3d\x23\x7a\x03\xd4\x9a\x62\x8d\xfe\x7f\x97\x9d\x3a\xed\xb2\xbd\xc8\x09\x32\x84\x51\xea\x50\xce\xf6\xd0\xd4\x65\xd9\xa3\xf0\xa8\x48\x85\x73\x33\xc7\x94\xbc\xf1\x8b\x25\xcb\x84\x5a\xe3\xa8\x51\xa2\x44\xd8\x37\xfd\x8c\xae\xfe\x12\x71\x9f\x5e\xd8\x5f\xd4\x5f\xe6\x61\xbc\xce\xe6\x18\xcd\x65\x66\x3c\x57\x14\x8f\xa5\x1e\x83\xf1\x4b\x98\x99\x22\x46\x33\x82\x68\xf4\x7e\xef\xa2\xff\xb1\x37\x8b\x46\x54\x01\x24\x49\xb6\xf2\xdb\x79\x7d\xad\x79\xda\x5b\xe5\x87\x1b\xc9\x8c\xdd\xd1\xc6\x36\x4e\xa8\x85\xd9\x3d\xed\xeb\x20\x85\xb8\x70\xc2\x3c\x24\x10\x09\x14\x8a\xd2\x55\x87\x82\x0a\x1d\x8a\xc2\xe6\x36\x7b\x74\x5b\xba\x58\xa1\x7a\x72\x8c\xf1\xed\x89\xa0\x7d\x92\xbe\xda\xea\xe0\xef\x53\x53\x80\x31\xcd\x12\xaa\xd9\x3d\x26\xc6\x51\x64\xe5\x2b\x8f\xe8\x2d\xdf\xd0\x24\xe9\x28\x05\x4b\x88\x6e\x8c\xda\x61\x37\xc9\x8f\xb8\xdf\x6f\x21\x45\x5a\x75\x04\x16\x6d\xf2\x91\x2c\x70\xcd\x0d\x61\xb9\x43\x04\x13\x2f\x62\x88\x04\xd1\xc8\x21\x92\xa6\xe9\x9d\xad\x8a\x6b\x4c\x4f\x64\xac\x25\x87\x9c\xe2\x2c\xb9\x1f\x27\xd4\xb0\x91\x96\x3c\x80\x14\xe2\x72\x8f\x25\x0f\x50\x08\x58\x72\x88\x1d\x6b\xc9\x43\x58\xa1\x7a\x46\x5b\xf2\x20\xda\x87\xd5\xd4\x67\xc3\xdd\xde\xa4\x6c\x78\xa8\x41\x42\x75\x1a\x6d\x50\x22\x0c\x78\xb0\x93\xc8\xe1\x48\x12\xb9\xc3\x7a\xbb\x76\xd8\x24\x1f\x48\xba\x68\x1e\xf8\x59\x48\x91\xd6\x1b\x81\x45\x1b\x7b\x24\x0b\x5c\x5b\x43\x58\xee\xb0\xc0\xc4\x8b\x18\x16\x41\xb4\x40\xe6\x88\x3b\x1b\x16\xd7\x98\x9e\xc8\x58\x03\x0e\x39\xc5\x19\x70\x3f\x4e\xa8\x6d\x23\x0d\x78\x00\x29\xc4\xe5\x1e\x03\x1e\xa0\x10\x30\xe0\x10\x3b\xd6\x80\x87\xb0\x42\xf5\x8c\x36\xe0\x41\xb4\xcf\xd0\x54\x9f\x0d\x77\x3b\x94\xb2\xe1\xa1\x36\x09\x55\x6b\xb4\x59\x89\xb0\xe1\xc1\x7e\x22\x47\x24\x49\xe4\x1e\x0f\xdc\xb1\xc6\x26\xf9\xf8\xa4\x57\x10\x27\xd2\x82\xbb\xa0\xf8\x6c\x39\x96\x07\xae\xaf\x01\x24\x77\x5c\x20\xe2\x45\x0c\x8b\x10\x16\x39\x2a\xe6\xd9\x62\xb3\x5c\xde\xdd\xb0\xc4\x9c\x2f\xc8\x8c\x35\xe2\x80\x57\x9c\x0d\xf7\xa2\x04\x1a\x37\xd2\x82\xfb\x71\x02\x3c\xee\xb1\xdf\x7e\x02\x01\xf3\x0d\x90\x63\xad\x77\x00\x29\x50\xc7\x68\xdb\x1d\xc2\xfa\x1c\x25\xf5\x19\x6f\xa7\x2f\x29\xdb\x1d\x68\x91\x40\xad\xee\xb0\x27\x11\xb6\x3b\xd4\x4b\xbe\xa1\x48\x91\xb9\xc3\x78\xbb\x76\x18\x52\x17\x71\x24\x21\x8b\x61\x56\x4c\x04\x29\x8d\xc1\x10\x71\x58\x63\x30\x74\xb4\xd9\x18\x24\x1d\x86\x34\x06\x49\x47\x00\x8d\x35\x9a\x70\xa1\x14\xf1\x5c\xd2\x88\xca\x05\x9b\x22\x66\xc5\x18\x66\x83\x8f\xfb\x88\xb6\x77\x2c\x0c\x2e\x64\x84\x91\x89\x40\x24\xed\xcc\x62\x9e\xad\x1f\x17\xbb\x0f\x6c\x24\xd9\xdc\xe3\x66\xb1\x10\x56\xb8\x79\x22\xe7\xb2\x20\x5a\x98\xd3\x3d\x33\x5a\x90\x46\x60\x52\xb3\xf1\x63\xe7\xb5\x30\x5e\xb8\xbe\xd1\xb3\x5b\x04\xe2\x08\xc5\x1b\xa1\x1d\xa1\x0e\xa6\xe6\xb8\x70\xeb\x84\xab\x77\x87\xd5\x88\x98\xe9\x22\xfa\x6d\x84\x09\xfd\xd0\x64\xe7\x84\x30\xbf\x5b\xd3\x50\x5c\x48\x6e\xf4\xd4\xe5\x9f\xe5\x62\xda\x3b\xc0\x80\x5a\x56\xfb\x27\x54\x64\xf9\xee\xc8\x16\xb5\x7a\xf7\x63\x79\x76\x5f\xd7\xab\xe3\xfe\x23\x96\x19\xb0\x8e\xdd\x20\xf2\xa0\x04\x9a\x24\x7a\x7b\xc8\x87\x13\xe0\x71\xdf\xe6\x90\x8f\x40\x70\x6f\xa8\x1a\xbf\xb8\x08\x20\x05\xea\x38\x62\x63\xc8\x8f\x35\x42\xb5\x62\x55\xc0\xdb\x91\x94\xd5\x0d\x34\x47\xa0\x4a\x63\xc7\x7f\xd4\x96\x90\xbf\x7f\x62\x2c\x2d\xa0\x71\x87\x99\x75\x2d\xa6\x49\x9d\xb8\x33\xe1\x35\xb3\x81\x35\x85\x7f\xf9\x11\xd3\xcc\x01\x06\xb8\x92\x86\x56\x3a\xce\x58\x40\x64\x8b\x18\x0b\x21\xac\x1f\x68\x66\x01\xeb\x38\x33\xeb\x45\x09\x34\x49\xa4\x99\xf5\xe3\x04\x78\xdc\x63\x66\xfd\x04\x02\x66\x16\x20\xc7\x9a\xd9\x00\x52\xa0\x8e\xd1\x66\x36\x84\x75\x9f\x99\xf5\xaa\x80\xb7\x23\x29\x33\x1b\x68\x8e\x40\x95\xc6\x8e\xff\x08\x33\x1b\xea\x9f\x18\x33\x0b\x68\x7c\xba\x99\x1d\xf5\x58\x83\x83\x16\x69\x6c\x51\xe8\x98\xf6\x0e\xb3\xc1\x15\x36\x62\x0f\xc7\x19\x1a\xb8\x90\x11\xa3\x23\x02\x91\x5e\x03\x3e\x3f\x1f\x96\x1f\xda\x7c\xb0\xb9\xc7\x99\xdf\x10\x56\xb8\x79\x22\x8d\x70\x10\x2d\xcc\xe9\x1e\x53\x1c\xa4\x11\xb0\xc6\x36\x7e\xac\x41\x0e\xe3\x85\xeb\x1b\x6d\x96\x23\x10\x47\x28\xde\x08\xed\x08\x75\x30\x65\x9f\xc3\xad\x13\xae\xde\x1d\x56\x23\xc2\x50\x47\xf4\x5b\x8c\xad\xb6\xc9\xdc\xb3\xf9\xe0\x98\x5d\x10\x07\x39\xe6\x75\x1c\x07\x2d\xd2\x5c\xa3\xd0\x31\x0d\x1f\x66\x83\x2b\x72\xc4\xee\xb9\x1b\xd5\x8b\x0a\x19\x13\xd7\x1b\x46\xa4\x23\x7b\x9f\x9f\xe6\x30\x0e\x69\x74\xf8\xb8\xc5\x3d\x32\x80\x3c\x80\x15\x6e\x9e\xd8\x20\xf2\x10\x5a\x98\xd3\x5d\x81\xe4\x21\x1a\xa1\x50\x72\x0b\x3f\x3a\x98\x3c\x88\x17\xae\x6f\x7c\x40\x79\x18\x71\x84\xe2\x8d\xd0\x8e\x50\x07\x53\xe6\x3a\xdc\x3a\xe1\xea\xdd\x61\x35\x62\xc2\xca\xc3\xfd\x16\x63\xae\x6d\x32\xf7\x44\xb5\x38\x66\xd7\x3d\x18\x8d\xbb\x97\x6f\x63\x45\x1a\x6b\x0c\x38\xa6\xd5\x83\x4c\x70\x25\x0e\x1f\xf5\x22\x71\x03\x88\x84\x51\x91\x03\x21\x3c\x72\xb8\xec\x57\xcb\x6c\x71\xfc\x88\x9d\xb6\x98\xc7\x06\xa6\x78\x91\x82\x4d\x13\x1d\x9c\xe2\xc7\x0a\xf2\xb9\x2f\x40\xc5\x4f\x22\x18\xa2\x02\xd0\xe3\x83\x54\x02\x68\xc1\xba\x8e\x08\x54\x09\xe1\x8d\x50\xb7\x78\xa5\x08\x74\x2c\x65\x9b\x83\x0d\x13\xac\xda\x78\x1b\x11\x15\xae\x12\xea\xaf\x18\xbb\x6c\x51\xb9\xc3\x2c\xbb\xf6\x55\xd1\xff\x85\xa7\x32\xcc\x8a\x8a\x48\x06\x0f\xee\x1a\x23\x37\x3f\xcd\xc4\xf2\x52\x62\x9e\x0f\x9f\xe7\x65\xbe\xc5\xa5\x68\x36\xeb\xca\x13\x12\xc8\x5b\xb5\x13\xe7\x7b\x57\x5f\x54\x3a\x69\x34\x85\x41\xaa\xf3\x61\x2c\x53\x8a\xea\x6d\x48\x70\x8b\x03\x90\x15\x98\x8e\xa8\x41\x2f\xa9\x48\x38\x7b\xea\xce\x25\x27\x29\x3b\x6b\x28\x37\x73\x2d\xca\xf6\x24\xa0\xa5\xe4\x56\xba\x6a\x85\x03\xa6\x04\xd5\x68\xfc\x6a\x6f\xb8\x4b\xad\x34\x2f\x4e\x07\x83\x9b\xc2\x37\xf0\x94\xc0\xb7\x57\xe7\xd9\x17\xfd\xf7\x77\x7d\xf3\x5d\xc9\x76\x6d\xfa\xa9\x9f\xc8\x85\x01\x12\x3a\x93\x97\x8a\xd5\x75\x7d\xe4\x99\x61\x91\xea\x1c\xf0\x12\x6f\x21\x8e\x79\xeb\xd2\x48\x28\xcd\x89\xf2\x8b\xfd\xeb\xf4\xe7\x64\x9a\x3c\x5d\xde\x1e\xe2\x9f\x10\x13\xdf\x39\xec\x34\xbf\xca\x2c\x7d\x4f\x9b\x73\x6b\x16\x5c\x9a\xfa\xc2\x9a\xee\xfb\xd6\x16\x71\x52\x5f\xb2\x43\xd1\x7d\x9f\x68\xea\x26\x5a\x57\x9c\x7b\x15\x38\x5e\x2b\x91\x8f\x80\x65\x2d\x9b\xd6\xd7\x0e\xa4\x68\x70\x1b\xc2\x78\x3f\x7c\xfe\xc0\x35\xd3\xa8\xdd\xe6\xf2\xf6\x10\x40\x5a\x38\x48\xf3\x30\xd2\xd2\x42\xfa\x9a\xac\x5c\x24\x6f\x6e\x8c\x74\xd2\xff\xcc\xd2\xb5\x8d\x65\x4c\xd1\x48\xf5\xdc\xbc\x21\xff\xf2\x65\x7d\x79\xb3\xb2\x84\x44\x93\x5c\x3c\xdc\x64\x9f\x0c\x56\x23\x88\xb4\x24\xe4\x98\x9a\x82\x4c\x2d\x49\x9c\x1c\xfd\xef\xd8\x8c\x27\x82\x2e\xa4\x35\x47\xd3\xd0\x93\x49\xe7\x7d\x29\xe7\x29\xaf\x00\xf3\xa6\x32\xc2\x59\xc9\x5c\x6f\x24\x18\xfc\x2e\xb6\xe4\x41\x4d\xe9\x54\x54\x00\x8c\x27\x27\x37\x33\x9b\xa8\xac\xbe\x94\x5b\x76\x33\x5e\x3c\xb3\x2a\xcb\xde\x2e\x19\x7f\xae\x95\x4c\xa8\xe0\xa0\x74\xd9\x9e\x4c\x73\x61\xbe\x49\x86\x65\x4c\x80\xa6\x9c\x0f\x11\xd1\x39\xd6\xc8\x32\x78\xb9\x8e\x9a\x59\x4a\x35\x36\xf2\x72\x9a\x4c\x5a\x41\x37\xbf\xc3\xd0\x4a\x86\xd1\x76\xdf\x4b\xb6\xe5\x15\xb5\x68\x4a\x13\x3d\xa4\xe1\x92\xe7\x2d\xbe\xfa\x2e\xcd\xfa\x82\x3c\xbf\xde\x5e\xe0\x83\x00\x3e\x75\xb0\x10\x0f\x2b\x59\x8e\xd2\xcd\x7d\x94\x21\xf6\xe1\x07\xdb\xe5\x02\x3a\x0a\x92\xdd\x5a\xf9\x93\x1b\x35\xf4\x00\x99\x7b\x1e\x3b\xe0\x7f\xd0\x6f\x1d\x78\xd3\x8b\xcf\xd3\xc5\xd2\x58\xc9\x99\xce\x9e\xf5\x64\x09\xba\x80\x05\x36\xa7\x77\x00\x60\xfd\x83\x8f\x97\x99\x46\x2d\xe2\xb1\xa3\xa7\xcb\x5b\xd2\xcf\x5f\xf4\x43\x1d\xc3\x0b\x0f\x06\xe9\x99\x9b\xf1\x0c\x54\xca\xf6\xef\xc4\x23\x6f\xa8\x73\x29\x8a\x3e\xec\x62\x4a\x32\x21\x47\x53\x80\x7d\x96\xbb\x29\x99\xca\x57\x0e\x10\x80\xc4\x6c\x34\x4f\xf5\x01\x5c\x30\x2d\x0c\x99\x09\x49\x5a\x3a\x2b\xd3\x1b\xed\x0e\x4b\xf9\xc7\x3a\xc5\x16\x9a\xe5\x1a\x8f\xda\xe8\x98\x18\x2b\xbb\x09\xd6\x58\x62\x01\x17\x74\xaa\x3d\x99\x72\xcc\x8e\x31\x0c\xf3\x87\xb6\x22\xa2\xe9\x38\x8f\x18\x45\x10\x8c\xd8\x29\x20\xc1\xdd\xcd\x08\x14\x94\xde\xee\x20\xc1\x23\xe6\xba\xbf\x2b\xce\x97\xba\xe9\xb2\xaa\x0b\xb5\x39\xbe\x9e\x1e\xf7\x1c\xce\x5d\x2c\xfc\x3b\xa9\x3e\x17\x49\xae\xa6\x22\x1d\xc5\x58\x3b\xed\x7a\x4b\x88\xa6\xd3\xd0\xfc\xd9\x2a\x64\x6f\x63\xf0\x82\xa5\xd3\x3b\x5f\x72\xa7\x77\xc8\xe1\xf7\x85\xe7\xe5\x9c\x4c\xf9\x3f\x0f\x71\x1c\xb4\x8c\x91\x79\xc6\x86\xdc\x5c\xc9\x5a\x66\x58\xb5\x32\x8e\xee\xcc\x47\xb6\xa0\x25\xee\x67\xa6\x27\x74\x62\x1a\xde\xd9\x42\x3b\xd6\x11\xd7\xf1\xdc\xa8\x41\xe9\xbc\x68\x06\x27\xea\x00\x9b\xbe\x68\x5f\xbf\xb1\x7c\x34\x3f\x8d\xa9\x97\x3c\x73\xfb\x09\x4f\xbe\xd4\x47\xd7\x36\xe9\xc3\x3b\xbd\xbb\x65\xf6\x8d\xf4\x0a\xc1\x4b\x70\xa0\x43\xd2\x21\x71\x64\x42\xbc\xe4\x2b\x5e\xc7\x75\x5f\x17\xf5\xad\xd3\xb7\x70\xdd\x45\x2e\xe0\xc5\xfc\xc0\x39\x18\x6f\x0c\x4c\x67\x4b\x9e\x51\x57\x39\x77\xf3\x5e\x5f\x55\xb6\x4a\xe8\xee\x90\x69\xe8\xde\xe1\x5c\xe2\x49\xd8\x07\x72\xbf\x01\x1d\x63\x95\xfb\xcc\xa1\x7a\xb4\x85\xde\x16\x19\x46\x8c\xef\x81\xb5\xcf\x4f\x77\xe7\x3a\x79\xf8\x50\x02\x0e\x2f\xf2\x8e\x9a\xf3\x58\x5d\x4a\x26\x0f\x75\xde\xa6\x8b\xf1\xe3\xe1\x8b\x6c\xd8\x0b\xc6\x5e\x6b\x8e\xbc\xba\x16\xc0\xb8\x6b\x8a\xf9\xf4\xb9\xc4\x1d\xf8\x8e\xc5\x44\x2c\x65\x4c\x8f\x7a\x9f\xde\x83\x43\x5a\x6f\xaf\xa0\x03\x5a\x6f\x22\xf5\xfd\x9a\x7c\x4d\xbe\x4c\x7b\xb7\xed\x01\xb7\x41\x7c\x7f\x65\xdc\x0e\x9c\xb3\xe1\x86\x36\x8e\x78\x9f\x06\x79\xba\xd1\x5a\xdd\xd9\xcf\x7e\xaa\x25\x97\x3a\x62\x48\xd0\xfd\x5a\x63\x6d\x06\x01\xc0\x8b\x38\x53\xf1\x0e\x09\x4d\xd3\x74\x57\x31\x92\xdc\x38\x01\xcb\x22\x49\x12\x4b\x94\x9c\xb5\xbf\x75\xf5\x05\x5f\x2e\xc8\xc2\x8f\xaf\x97\x14\xa1\xe0\x8a\x49\x02\x7e\xda\x9a\x49\x31\x0e\x6c\xd5\x6b\xb8\xd1\xab\x13\x1b\xd1\x5a\x9f\x04\xb7\xdc\xa0\x73\x6c\xa5\xa2\x23\xb0\x45\x1a\x51\x6e\x5c\x1e\x28\x4a\x26\x4c\x20\x7d\xf9\x9d\x4b\x93\xa8\x33\x51\xd2\x58\xbd\x8b\xc7\x7c\x12\xf8\xf0\x22\xdf\x83\xc8\x6e\xc3\x18\xde\x0e\xbd\x9f\xcc\xe6\x6d\xc2\x77\xc3\x8b\x6a\x5a\x5f\xbb\x77\xe3\xb1\x78\xeb\xd5\x27\xb5\x87\x32\x55\x8b\xb2\x01\x72\xe6\x79\x39\x07\x42\xd1\x8f\xe7\x40\x38\xea\xfd\x9c\x01\xca\x7a\xf8\xbe\x45\x1f\x69\x8b\x79\x8b\xd8\x78\xf1\x4a\x25\xba\xfe\xc4\x77\xf6\xb1\x14\xc5\xb6\x63\x87\x6c\x36\xe2\x2f\xb6\x82\x2d\x2e\xf3\xb1\x5e\x95\x18\x9a\xaf\x05\xa8\x7d\x6c\xb8\x8d\xc8\x9d\x32\xb9\x6f\x0a\x36\xf1\xb0\x62\xe7\x50\xc9\x49\xe9\x6e\x74\x95\xf3\xa2\xd5\xda\xd9\xe2\xe3\x9f\x88\xfe\x50\x5b\x75\x62\xcb\x17\xed\x9d\x8a\x95\x22\x05\x7c\x52\x54\x97\x6b\xf7\x97\xee\xfb\x85\xfd\xf9\x70\x62\x87\xdf\xf6\xf5\xdb\xaf\x13\x09\xc1\xdf\xab\xb6\xdf\x63\x84\x4a\xa4\xbb\xd7\x5c\x4a\x13\xc5\x3c\x41\x79\xbf\x36\x40\xca\xb7\x1e\x5c\x95\xd9\xdc\xd2\x1f\x82\xa3\x2a\xc2\xb8\xf1\xd5\x01\x81\x83\x70\xe9\x95\x92\xe0\xa2\x8a\x30\x2e\x7d\x19\xc6\x85\x7f\x77\xb9\x28\x4d\x27\x38\x99\xc5\x18\x37\x55\x8e\x71\xd4\x65\x1c\xf1\x56\x5f\xbb\x5e\xb3\xfb\x89\xee\xbe\xb1\x08\xe3\x05\xd4\x4b\x6c\x43\x1e\x75\xf9\xd0\x85\xdd\xb2\x72\x43\xc6\x6e\x0a\xf7\xb3\x96\x57\xba\xa8\x80\xdd\x7e\xdd\xff\xd8\x0f\xce\xc5\xf5\xa2\xa7\xd9\x65\xdb\x60\x6f\xf3\xb8\xd4\xa9\x5e\xf5\xb5\xbd\x3e\xca\xd0\x56\xa8\xa8\x5a\xd6\x25\xe4\x2b\xf7\x8b\x07\x87\xf1\x5f\xf2\xa2\xed\x57\xcf\xf9\xaf\x0e\x6f\xa2\x48\xb1\x1f\x8a\x43\xfb\xff\xce\x47\x68\x35\x65\xa9\x7c\x44\x4f\x79\xce\xb3\xf5\x7b\x9c\xea\xb8\x4f\xf4\xd9\x16\x8d\x7f\xc3\xd6\x3f\xc8\xe0\x96\xc7\xe9\xf4\x45\x1b\xdf\x53\x4b\x47\xd1\xb3\xbd\x85\x3b\xb1\xac\x17\x41\x4c\xf1\x7a\x29\xa2\x5e\x3d\x9c\x64\xa6\xa9\x94\xdf\xf8\x3b\x7f\xee\x77\xda\xa5\xc0\x4c\xda\x0d\xea\x34\xb2\xfa\x78\x77\x66\x67\xbe\xd4\xee\x5b\x64\xcb\x9b\x25\xea\x81\x57\xd3\x17\x81\xe8\x36\xf9\xa4\x2c\x22\x8d\x00\x7d\x44\x36\xe6\xc9\x14\xb4\x76\x68\x3e\x79\xcf\x5e\x85\xf4\x03\xde\x51\x39\x45\xe1\xc2\xd1\x4f\x59\xb0\x04\x9e\x5a\xe0\x9d\x6c\xe8\x5b\x89\x79\x94\xe5\x89\x87\xef\x3c\x0a\x89\x57\x9d\x7a\x82\xc7\x95\x9f\xa4\x43\xd5\x4b\x2f\x20\x47\x89\xea\x62\x18\xf4\x1d\x81\x5c\x68\xb4\x56\x7a\xa7\x48\x89\x29\xc7\xa0\xf3\x34\x2a\xff\x1a\xfb\xd6\xa5\x31\x0e\x27\xf6\x98\x16\x7f\xf2\x08\xa2\xc8\xdd\x5a\xe2\xad\x51\xb0\x5f\x88\xbc\xab\x60\x1a\x03\xe3\xa1\x50\x4b\x20\xac\xa8\x17\xce\xfc\x8e\xbf\x13\x6f\x31\x92\xf4\xdc\x77\xe0\xed\x47\xbc\xd4\xdb\x14\xc6\x22\x80\xbb\xb7\xfc\xc3\xab\x3c\x21\x4a\xd3\x9d\xfd\xb2\x3f\xfa\x26\xac\xd1\x9a\xce\x43\xca\x7d\xb7\xc2\xf8\x2e\xb0\x8f\x46\xba\xaa\x26\xd5\x24\x0b\xf6\x12\x54\x81\xe9\xfc\xf2\x06\x24\x85\xd4\xc8\x28\x02\x18\xc0\xe2\xb8\x13\x3d\x05\xec\xd9\x5c\x58\x26\x8d\xbe\xe3\x2e\x68\x45\xc0\xd6\x2d\xb0\x5b\xbc\x4b\x2b\xe4\x05\x15\xb3\x33\x78\x15\xaf\xe5\x60\x0f\x26\xe6\x27\xfe\xe0\x31\x32\xbb\x02\x01\x7f\x51\xaf\x49\x7b\x4c\xaf\x19\x66\x69\xa0\xf2\xa8\xfd\x26\xbb\x5c\x54\xd8\x0a\x98\x56\x00\x18\xec\x01\xbe\xbd\x8b\xce\xc9\xb0\xfd\x2d\xf4\xc4\x5c\x8f\xc0\x26\x07\x33\xb4\x3b\x37\x5b\x91\x7f\xef\x26\x21\xfc\x45\xac\x61\xac\xac\x2e\x7a\x59\x38\xb7\xd7\x84\xd8\xba\x6a\xf7\x8d\x35\x5d\x71\xc8\x4a\xf9\xb5\xab\x2f\xaa\x01\xd9\x19\xba\x4f\xa6\x1c\xc9\xec\x98\x19\x36\xb0\xa8\x4e\xac\x29\x3a\xc0\x4e\x7e\x7b\x87\x2f\xa6\xf0\x13\xe8\xe9\x21\x2b\xcb\xfa\x2a\xd7\x90\xaa\xc8\x59\x5c\x4e\xcf\xf5\xef\xd8\xd7\xd6\xfd\xe8\x7c\x08\x07\x73\xc2\x5d\x0e\xff\x4b\x81\xf6\xc3\x72\x76\x2c\x27\xe6\x00\x72\x2b\x19\x39\x21\x48\x53\x72\xe7\x56\x06\x62\x61\xdc\x5e\x95\x4c\xca\xc2\xde\x73\x95\x9f\x0d\xc5\xcd\x70\xdb\x03\x75\x5f\x59\x0f\x39\x82\xe9\x1d\x0f\x8b\x0a\x9c\x9d\x22\x63\xa4\xfa\x2a\xb9\xa1\xb8\xe8\xcb\x45\xb4\x4d\x42\x0c\x10\x37\x04\xde\x27\x05\xb1\x47\xba\x0d\x32\x62\x9f\x9b\xf4\x1a\x48\xec\x59\x3f\x88\xc0\x1c\x0a\x77\x2c\x6c\xc8\x41\x85\xc0\x16\xf7\x00\x07\x9c\xac\x6b\x49\xb8\x67\x03\xac\xf0\x7f\x10\x40\x25\xfb\xbb\xbd\xba\x70\x4f\x26\xbd\x1b\x58\x6a\x5a\x77\xe8\xc0\x65\x32\xa6\x1c\x36\x8a\xad\x9c\xbe\x23\x39\x9f\x96\x79\xe3\x1e\x14\xcb\xe3\xb5\x2c\xb9\xd2\xf5\x43\xc5\x73\x32\xa9\xe0\xbb\xfa\xe5\xa5\x34\xc6\x0c\x2a\x00\xa2\xdf\x83\x62\xc3\xe1\x9b\x62\x0f\x44\xd9\xcc\x42\xa7\x61\xe8\x1e\x84\x3e\xe3\x73\xe8\x95\xc5\xd7\xb2\xb0\xce\x4e\x2e\x6f\x08\x98\xa9\xb1\x43\x95\x8d\x4e\x4f\x13\x7e\x77\x01\x43\x1d\x54\xd8\xc1\x14\xf7\x1d\x38\x3e\x82\x19\xe8\xfc\xb8\xb5\xb3\xae\xfd\xfc\x7d\x76\x62\x4d\x9d\xa8\x51\x3c\xb1\x19\x0e\x8f\xf8\xcb\x1e\x11\x0b\x5b\x05\x45\x6d\x78\xab\x72\x7a\xab\x5b\x41\x50\x9b\xdc\xe2\xb5\x3c\x68\x9e\x85\xd6\xed\xb3\xb6\x68\x55\x70\x2f\xea\xf3\x68\x77\x4b\xc6\xf4\x0a\x5a\x42\xa0\x7a\x5f\x94\xec\x17\xf9\xa9\xff\x52\x65\x4d\x53\xbf\x0e\xb6\x2f\x00\xde\x8f\x08\xc3\x50\x9a\xee\x95\x17\xaf\x3b\x35\x8c\x4d\xff\xed\x9a\x35\x1d\x6b\x5a\x87\xc2\xe3\x3a\x48\xe0\xb5\x9e\x76\xa7\xa2\xc9\x5d\xe4\xcd\x66\xb6\xd9\x6c\x36\x21\x0a\xa7\xac\x3c\x3a\xb8\xeb\xa0\xe4\x75\xc5\x04\x63\x07\x77\xb9\x9c\x2d\x97\xcb\x65\x0c\x01\x59\x71\x87\xc4\x22\x58\xef\x1e\xfb\x58\x1c\xbb\x93\x8b\x1b\x6e\xf4\xd7\x5a\xe0\xba\x6d\xb6\x8a\xec\x31\x02\x7d\x13\x44\x3f\xd6\xd7\x86\xc2\x7e\x0a\x37\xfa\xf1\xd8\xb2\xce\xd6\x1a\xd3\x28\x85\x35\x46\xd1\x18\x14\xc7\xc4\x8f\x54\x1a\x49\x84\xeb\x8e\x89\x1e\xa1\x37\x02\x73\x50\x1f\x13\x3d\x56\x75\x06\x1a\x4a\x83\x4c\x2a\x11\xda\x33\x10\x10\x4a\x04\xd0\xa3\xbb\x61\xd0\x23\x13\x3f\xac\x43\xa0\x1b\x11\x0a\x61\x35\x92\x14\x4c\x6d\x32\x09\x84\x35\x69\xee\x6a\x1f\x6f\x7a\xf1\x7f\x91\xec\xe7\x90\xe9\x08\x02\x0b\xd7\x58\x0a\xc5\xe3\xff\xf7\x18\xc9\x7f\x01\xf8\x8f\xa2\xb0\xbc\xc7\xe6\x08\xae\xcb\x91\xca\xb6\xa2\x2c\xe4\xa8\xb6\x5e\x61\x03\x25\x8e\xc2\xda\x35\x73\xf3\xf1\x8d\xbd\x86\x4a\x3e\x86\xc2\xe6\x9e\xf9\x45\x70\xdd\x8c\x34\x2f\x8f\x2e\xab\x3b\x14\xfb\x11\x72\x1d\x43\xe1\x89\x9a\x87\x47\x35\xf6\x13\x66\x94\xe3\x28\x3c\xdf\xe1\x45\x48\xae\xcf\x23\xa7\x92\x79\xea\x5a\x91\x3b\x54\x7b\x9e\x42\x3b\x32\x86\xc4\xdc\x35\x64\xcf\x77\x28\xf7\x1c\x9a\xb2\x51\x24\xe6\x88\x31\x0b\x7b\x7e\x8a\xb1\x65\xc3\xa8\xf7\xe9\x9d\x03\x20\xdb\x55\x95\x2c\x5c\x8f\x55\xb9\xa7\x0e\x00\x22\xab\xeb\x92\x52\x58\x86\x72\x40\x37\x94\x42\xb0\x1d\x0b\xe5\x7a\x52\xf0\x6b\x28\x95\xf6\x17\x28\x78\xdb\x75\xb0\x5c\x4c\x0a\x6d\xb1\x76\x30\xf8\x7c\x4a\xc2\xa7\x4e\xbd\xc5\xfc\x4b\x21\xac\xb0\xd6\xf5\xa3\x6c\x20\x8a\x31\xc9\x53\x18\x4f\x56\x63\x61\x6e\xa2\xc2\x25\x86\x38\xea\x1a\x62\x38\x58\x47\x1a\xee\x20\x86\x62\xf7\xa5\xe5\x02\x62\x28\x68\x77\x3a\x6e\x1f\x86\x69\xf7\xa8\xe5\xea\xa1\x28\x78\xf3\x39\x7d\x4b\x78\x79\x84\x4b\x87\x36\x1e\x8a\x85\xf4\x30\xe1\xcd\x71\x7b\x43\x6a\x01\x66\x37\x4d\x5b\x83\x12\xa7\x90\x16\xa4\xc1\x40\x67\x23\xd3\x2d\xc3\xf8\xd0\x58\xcb\xd8\xb1\x29\xdd\xaf\x88\x4e\x5f\x05\xac\x04\xdd\x46\x2b\x8f\x32\x22\x58\x6b\x72\xd8\xa3\x33\x88\xe9\x4e\xa1\x4a\x45\x62\x6d\x62\xed\xa4\x74\x9b\x22\x86\xe1\x23\x49\x32\xa4\x48\x8f\x28\x75\x12\xeb\x29\x30\x27\xd0\x8d\xf4\xe4\x31\x40\x08\xd6\x73\xe4\x6c\xa5\xdc\x9d\x08\x93\x38\x4f\xc9\xd1\x16\x52\xa5\x01\x35\xec\xdd\x08\x57\x86\x62\x85\xbb\x23\xc0\x7d\xc1\x58\xd1\x68\x73\x7a\x70\xa7\xa8\x3e\xcd\xf1\x31\xdd\x03\x8f\x89\x0d\xb1\x9d\x96\x89\xeb\xc6\x74\xd9\xbe\x64\x1d\xed\xc6\x4c\x6c\xb7\xc6\x46\x88\x72\x6b\x26\xb4\xc3\x43\xd0\x23\x1d\x9e\x09\xee\x06\x11\x64\x28\x37\x68\x62\xbb\x45\x04\x3e\xe5\x16\x4d\x50\x5f\x89\x20\x12\xf0\x95\x6c\x5a\x6a\xb2\x25\xa8\x51\x2e\x94\x4d\x46\x4c\xbf\x14\x11\xca\xaf\xb2\x9b\x57\x4e\x93\x04\x19\x8f\xb7\xe5\x76\xb9\x9f\x14\xed\x85\x4d\x08\xe7\x8c\x20\x14\xe3\x9c\x4d\x82\xde\x9b\x24\x3e\xc6\x7b\xc3\x88\x3a\x0a\x3a\xc2\xb5\x43\xe8\x99\xaa\x3a\xc2\xe3\x43\x28\x39\x4a\x3b\xde\x1b\x24\xa8\x5a\xea\x3b\xc2\x57\x24\x08\x02\x45\x1e\xe3\x47\x12\x1d\x02\xd5\x67\x9c\x93\x49\x2a\x0e\x4d\x34\xe8\x83\x22\x34\x11\x35\xf7\x79\xa8\x13\xe0\xae\x52\xe3\x22\x34\x7f\x22\x72\xcc\x51\xee\xa4\x0b\x3b\x01\xfe\x2c\x35\x53\x04\xfd\x59\x44\x90\x05\x26\x88\xc7\xc7\x9d\x00\x87\x37\xd2\x92\x4a\x87\x17\x61\xbf\x8c\xd0\xe6\xd5\x04\x78\xc4\xfe\xb9\xc0\xe3\x11\x23\xec\x57\x9e\x41\x8a\x79\xc9\x13\xe0\x32\x53\xb6\x3b\xe8\x32\x23\x92\xac\xd1\x61\x43\xbb\xd1\x13\xe0\x53\x47\x4e\xb2\xd2\xa7\x46\xd8\x6f\x22\x8c\xdf\xe3\x04\x38\xdd\x14\xcf\xa0\xd3\x8d\xb0\x7f\x44\xd9\xd3\x8e\xf8\x04\x78\xe5\x7e\x17\xc5\xe3\x95\x23\x92\x3c\x79\xe6\x13\xcc\x53\x9f\x00\xb7\x3d\xce\xe7\x52\x6e\x3b\xc2\xfe\x39\x62\x7e\x9c\xa7\x13\xe8\xd8\x53\x76\x29\xec\xd8\x63\x96\x29\x45\x4d\x93\xc7\xdb\x9f\x40\xdf\x9f\x90\x26\xc2\xf7\xc7\xa4\x41\x0d\xa5\x6f\x41\x30\x81\xcb\x83\x48\xaf\x5a\x2f\x0f\x30\x19\x70\x1b\x69\x6e\x8d\xf2\xd8\xaf\x1e\x45\x5e\x6b\x7c\xb8\x81\x44\x12\x91\xc9\x88\xdc\x35\x04\x4f\xe1\x42\xef\x84\x5a\xe5\x71\x1b\xa1\x38\x12\xbd\x0f\x8a\xc3\x93\xdb\xa0\x38\x38\xb9\x0b\x8a\x83\x87\x36\x41\x71\x2c\x72\x0f\x94\x00\x27\xb7\x40\x71\x78\xdf\x0e\x28\xd1\x48\xf4\x06\x28\x8e\x10\xb5\xff\x29\x50\x47\x6d\x7f\xba\x28\xa1\xdd\x4f\x17\x23\xb4\xf9\xe9\x62\x44\xee\x7d\xba\x88\xa1\xad\x4f\x04\x23\xb4\xf3\xe9\xa2\x44\x6c\x7c\x22\xcd\x16\xdc\xf7\x74\x71\x9c\x6d\x4f\xa2\xef\x83\xbb\x9e\x08\x69\x7a\xd3\x93\xb0\x0d\xe1\x3d\x4f\x97\x8b\x6f\xcb\x33\x6e\x24\x6a\x67\x2f\xd4\xd5\x2b\xbf\x41\xf0\xed\x77\x92\xfa\x87\x6e\x77\x12\x43\x3c\xbc\xdb\x89\x28\x92\x67\xb3\x33\xce\x1a\x6a\x1f\x2c\x34\xe8\x1e\x29\x82\xe1\x9d\x4e\x84\xb6\x67\xa3\xd3\x6b\xf4\x7d\xfb\x9c\xa4\xa5\x41\xb7\x39\xa3\xe6\xa2\xc1\x35\x0a\x19\xbe\xde\x77\xc1\xc7\x56\xc4\x1e\x27\x32\xba\x7c\x5b\x9c\x38\xa3\x98\x1d\x4e\x97\x91\x77\x83\x33\x6e\x92\x37\x7c\x15\x77\xfc\x86\xb7\x37\x75\xc6\x37\xc7\x07\x51\x89\x1a\x68\x2f\xc4\x81\x88\xf3\x43\x28\x34\xda\x13\xa1\x30\x48\x5f\x84\x42\x20\xbd\x11\x0a\x21\xe4\x8f\x50\x78\xa4\x47\x42\x22\x90\x3e\x09\x85\xe1\xf3\x4a\xc8\x06\xa3\xfd\x12\x0a\x25\xca\x33\x51\xc8\xa3\x7c\x13\x0c\x29\xe4\x9d\x60\x38\x21\xff\x04\xc3\x89\xf4\x50\x30\xd4\x90\x8f\x82\xe2\x84\xbc\x14\x0c\x29\xc2\x4f\x41\x9b\x30\xe8\xa9\x60\x58\x8e\xaf\x42\xea\x43\xd0\x5b\x41\xc9\xd3\xfe\x0a\x69\x45\xc2\x1e\x0b\xc6\xc9\xe7\xb3\xc4\x8e\x56\xe5\xb5\x44\x74\xff\x2a\x64\x3a\x7c\x9e\x8b\x47\x33\x51\xdf\x85\x34\x05\x61\xef\x05\x55\x30\x8f\xff\x12\x6b\x41\x95\x07\x13\x31\x30\x1f\x69\xa2\x61\x2f\x06\xa5\xef\xf1\x63\x02\x53\x86\xcf\x93\xf1\xd8\x25\xd4\x97\x89\x9c\xcf\xb4\x37\x13\x61\x2c\xe7\x29\x3d\xfe\x22\x3c\x1a\x74\x04\xfa\x7c\x1a\x8a\x59\x8c\x57\x83\x31\xf3\xfa\x35\xb1\x6e\xc3\xe0\xd9\xa0\xe3\xdc\x8e\x50\x53\x40\xe1\x0d\x98\xc1\xf9\x59\xcc\x37\xb8\xf3\xf3\x5a\xe4\x4c\xe0\x78\xfc\x1f\x0c\x28\xce\x05\xf2\x60\xd2\x5e\x90\x07\x89\x74\x84\x3c\x38\xa4\x2f\xe4\xc1\x09\xb9\x43\x1e\x54\xd2\x23\xf2\xe1\x90\x4e\x91\x07\xc9\xe7\x17\xf9\x9a\x90\x76\x8d\x3c\x58\x51\xde\x91\x81\x3f\xca\x41\x22\xf0\x42\x3e\x12\x81\x16\x72\x93\x08\xb4\x48\x4f\x89\xc0\x0e\x39\x4b\x14\x5a\xc8\x5f\x22\xf0\x22\x5c\x26\xaa\x51\x83\x5e\x13\x81\xe8\x38\x4e\x3e\x6d\x09\xfa\x4e\x14\x13\xda\x7d\xf2\x19\xa1\xb0\x07\x45\xf0\xf3\x39\x51\x23\xc6\xb8\xf2\xa3\xe2\x94\x63\x15\x61\x79\x7c\xde\x94\x5f\x81\x51\x87\xca\x67\x46\xc2\x3e\x15\xa5\x84\x1e\xb7\x6a\x84\x3d\x56\x9e\x55\xdc\x70\x7e\xf4\x92\x0e\xfb\x57\x14\x17\x8f\x8b\x15\x9e\x8f\x7c\x5e\x96\xdf\xb8\xa1\x8e\x56\xfc\xac\xa9\x7d\xad\x38\xd3\x3b\x4f\xbd\xa3\x36\xc2\xe3\xa2\xc6\xad\xcf\xe9\xf2\xb0\x8c\xf1\xbb\x08\x96\x5e\xd7\x6b\x84\xc7\x32\x78\x5f\x94\x8d\x88\xd8\x5c\x5a\xa5\x44\xac\x7f\xef\x3f\x9d\x72\x8f\x6f\x65\x03\xc4\xf9\x55\x04\x16\xed\x53\x11\x08\xa4\x3f\x45\xc0\x93\xbe\x14\x01\x1f\xf2\xa3\x08\x34\xd2\x87\xa2\xe0\x49\xff\x89\x40\xf0\xf9\x4e\x54\x53\xd1\x7e\x13\x81\x11\xe5\x33\x49\xdc\x51\xfe\x12\x82\x13\xf2\x95\x10\x94\x90\x9f\x84\xa0\x44\xfa\x48\x08\x66\xc8\x3f\xc2\x50\x42\xbe\x11\x82\x13\xe1\x17\x61\x8d\x17\xf4\x89\x10\x24\xc7\x1f\xa2\xb4\x20\xe8\x0b\x61\xc4\x69\x3f\x88\x32\x18\x61\x1f\x08\xe1\xe3\xf3\x7f\x22\xc7\xa6\xf2\x7d\xc2\x9d\xbe\x0a\x58\x09\x9f\xcf\x43\x2b\x23\xea\xef\x50\xc3\x3e\xec\xeb\x60\x4a\xe5\xf1\x73\x22\xed\xa4\xf2\x71\xc2\xc3\xf0\x91\x24\x19\xf6\x6d\x30\xea\x1e\xbf\xc6\x3f\x27\xf8\x7c\x1a\xda\x00\xa1\xfe\x4c\xdc\x6c\xa5\x7d\x99\xb0\x49\x9c\xa7\xe4\x68\x8b\xf0\x61\xb0\xf1\xe6\xf3\x5f\x08\x56\x31\xbe\x0b\xc2\xca\xeb\xb7\x44\x7a\x03\x83\xcf\x82\x8d\x69\xee\xaf\xa8\x1d\x23\x50\x34\x15\x19\x35\xe0\x03\x13\xd6\x47\xf1\xdc\x05\xcc\xbc\x81\x64\xec\x51\xf9\x99\x6c\xc8\x40\x8e\x28\x91\xcc\x5f\xbd\xff\x26\x90\x1f\xc0\xf6\x96\xca\xfb\x43\x26\xfd\x31\x60\x5f\xb2\x4b\xc9\x5a\x58\xc7\x14\xd6\x2e\x35\xeb\x95\x62\xd8\xea\xae\xa7\xa4\xb2\x4d\x75\xfe\x91\xd4\x4c\xa9\xe3\x22\xc6\xe6\xc3\x42\x30\xc9\xf6\x84\x12\xca\x9b\x1c\xf0\xcd\x1e\xb3\xfc\x5a\x76\x45\x59\x54\xe2\x76\x88\x99\x03\xce\x00\xfa\xa6\x5b\xd4\xcd\x6a\x05\x01\xb3\xa6\xc8\xf6\x25\xbb\x4d\xa7\xe2\xeb\x7f\x9f\x5d\xb6\x29\xd4\x0e\xde\xc4\xbc\x13\xa7\xf3\xe4\x8f\xc9\xb7\xac\xf9\x62\x40\x3f\x3c\xc0\xc6\xf7\x00\xa2\x9c\x13\xd5\x15\x20\xd5\x94\x8d\x6b\x65\xad\xb5\x8b\x51\xca\xfd\xef\x29\xac\x98\xdd\x37\x26\xe8\xdc\x6a\x83\x85\xd3\x93\x26\xf4\xc2\x82\xf6\x02\x2f\xb1\xe6\x25\xa1\x57\x00\x7a\xee\x03\x5d\x43\xd0\x80\xcc\x1b\x0b\xda\x0b\xfc\x68\x01\xfb\x65\x7e\x02\xd0\x0b\x91\x2e\xa8\xd7\x63\x5f\x1a\xbb\x51\x09\x82\x8c\xe7\xd5\xfa\x5f\xa5\x85\x10\x5c\x7a\x09\xb2\xea\xc0\xda\xae\x6e\x3e\x66\xfc\x6c\x6a\x11\x56\xd0\x41\x09\x98\x08\x1b\xcf\x24\x0e\xcd\x8f\x82\x10\xb9\xbe\x6e\x76\x8a\x24\x55\xac\x52\xe5\x09\x83\x90\x17\x0d\x13\x8f\x05\x8b\xfe\x70\xe1\x7e\x81\xac\xe3\x4c\x9a\x21\xd7\x88\x2b\x65\x3d\x23\x1d\x46\x2a\xa9\x43\xcb\xa6\x44\x09\xa6\x3c\x51\x80\xe1\xe4\x24\x0a\x92\xc8\x22\xa2\x8a\xc3\x99\x3f\x14\x64\x38\x45\x87\x82\x24\x72\x69\xa8\xe2\x70\xfe\x0b\x05\x19\x4e\x54\xa1\x20\x89\x8c\x12\xba\x5d\xc3\x59\x20\x34\x68\x38\x5b\x83\x06\x25\xb2\x2a\x88\xd4\x64\x91\x0f\x91\xdb\x9a\xea\x4f\x61\xa9\xb2\x9e\xc9\xd7\x16\x87\x34\x6a\x5b\x9e\xa3\xaf\x2f\xec\x25\xe3\x89\x2c\x89\x0c\x7b\x56\x62\x59\x80\x92\x64\x42\x4f\xf7\xd7\xae\xab\xab\x87\x89\x55\xda\x76\x4d\x5d\xbd\xc8\x2c\xa8\x3a\x31\x28\x84\x99\x75\x45\x57\xda\xaf\xb6\xd8\x30\xed\x75\x6f\x82\x59\x39\xe8\x9f\x1f\x48\x84\x80\x80\x03\x1c\x10\x55\x89\x11\x17\xab\x6d\x91\x0c\xbe\xe8\xfa\xee\x48\x0b\x9e\x25\xc4\xcb\x8c\xe7\xac\xad\xda\x3f\xba\xb5\x27\x5e\x8d\xa4\xa1\xd4\xf3\x06\x56\xe7\x52\x0f\x5b\x7a\xc0\xe8\x14\x85\x8b\xfe\xc7\xaf\x4d\x2a\x21\x2a\x00\x1a\xd2\xf7\x3f\x13\xf0\xb8\xf4\x68\x86\x53\xfd\x60\x1f\x4a\x6a\x36\xa4\xab\x44\xa9\xcd\xcc\xc4\x8f\xe1\x9a\xcc\x9c\x1c\xfd\x21\xa2\xde\x87\xde\xe1\x53\x4d\x5e\x7e\xb0\xd6\x24\x5b\x0c\x38\x4e\xd2\x48\x06\x28\x34\xa9\x22\xb2\xbf\x61\x4a\x47\xf9\xd1\x7c\x0e\x01\x30\x13\xf5\x28\x73\x93\x5e\x71\xce\x5e\xd8\xb6\x77\xf7\xb3\x66\xfa\xd2\x64\x79\xc1\xaa\xee\xcb\x7c\x35\xcf\xd9\xcb\xe4\x0f\xec\x89\x2d\xd9\x2a\x49\x27\x3d\xb5\xe4\x71\xfe\xb3\xf8\xa5\x37\xc5\x0f\x71\x89\x6a\x50\x01\xc8\x91\xff\x01\x69\x34\xa7\x7d\x99\x89\x24\xd3\x1f\xe0\x94\xa6\x69\xcf\x46\x34\xa8\xe0\x34\x7f\x9a\x6f\xe6\x1b\xc9\xcc\xe2\x46\x77\x10\xd6\x17\x1c\x85\xb4\xb6\xa2\xd4\x3f\x1d\x08\x18\x38\x1d\x20\x2c\xd0\xb9\x60\xb1\x5e\x4f\xd4\xff\xc0\x74\x60\xe1\x04\x04\xa4\xa6\x83\x5e\x8c\x71\x73\x81\xa4\xe7\x9f\x0b\xa4\xe9\x70\xa4\x45\xa7\x03\x58\x66\x4f\x07\xa0\x01\x1e\xdd\x06\x08\xcc\x08\x2e\x94\x6d\x06\x64\xff\x86\x66\x04\x04\x8c\x1e\xee\x69\xea\x51\x25\x6b\x2e\xe8\x3d\x11\x6c\x22\x00\xc0\xb8\xd0\xb1\x13\x81\x01\x8d\x4e\x04\x56\xb9\x3d\x11\x50\x75\xf0\xcc\x02\x04\xc5\x3b\x66\x01\x94\x1f\x65\xa4\x23\x80\xe3\x24\x8d\x64\x30\x6e\x16\x70\xb3\x3a\x7b\xbc\x50\x60\x17\x3f\xcf\x14\x6a\xfa\x25\x4f\xf4\x1d\x7a\x2e\x74\xb1\x5c\x59\x28\xa4\xa1\x11\xa5\x7e\x4b\x28\x60\xa0\x25\x44\x58\xa0\x96\x70\xb9\x9a\xac\xe7\x93\xcd\x13\x34\x83\x16\x42\x40\x3a\xca\x0c\xf6\x32\x8c\x33\x83\x92\x5e\xc0\x25\x56\xaf\x19\xe2\x58\xd0\x0c\xc2\x32\xdb\x0c\x0e\xb5\x7f\x74\x6b\x1f\xb0\x81\x2e\x94\x3d\x08\x64\xcf\x86\x6c\x20\x02\x46\x2a\x3b\x7b\xea\x7f\x3c\x7a\x64\x99\xc1\xc5\x72\x85\x9a\x41\x00\x8c\xcb\x1d\x6b\x06\x0d\x68\xd4\x0c\x5a\xe5\xb6\x19\xa4\xea\xe0\x31\x83\x04\xc5\x3b\xcc\x20\xca\x8f\xb2\x52\x11\xc0\x71\x92\x46\x32\x18\x67\x06\xfb\x9e\x86\x66\xb0\xff\x62\xbd\xd6\x05\x38\x8d\x37\x83\xf9\x31\x7f\xca\x9f\xb9\xef\xc9\x09\x7e\xc8\x19\x06\x32\xdc\xe9\xa2\x86\x04\xd2\xcc\xf2\xac\xf9\xb0\x3b\xcc\xe6\xf9\x62\xdd\xf3\x5a\x2c\x57\x82\xd1\xe2\x71\xf9\xb4\x7e\x72\xdc\xe1\x9e\x19\xd1\x43\x44\x7f\xf4\x18\xa4\x91\xe5\x85\xfe\x19\x80\x83\x58\xae\x30\xc6\x02\x77\x86\x57\xeb\x89\xfa\x1f\x98\x05\x20\x8a\x5f\x3e\xd2\x15\x16\x62\x8c\x9b\x06\x04\x45\xff\x2c\xd0\xdb\x0d\x5b\x54\x74\x06\x00\x45\x8e\x1f\x6c\xd6\xfd\xd1\xa9\x7b\x60\x0a\x70\x80\xec\xf1\x2f\xfa\x35\x34\x01\xb8\x50\xe4\x28\x9f\x67\x8b\xcd\x72\xe9\x55\x23\xdb\x11\x16\x9e\x07\x36\x09\x98\xe0\xa8\xe4\xb1\x53\xc0\x00\x8c\xce\x00\xb0\xd8\xf1\x83\xc9\x4a\x78\xa6\x00\x9c\xe4\x1d\x33\x00\xc6\x8d\xb2\xcf\x61\xd8\x28\x31\xe3\xc8\x8f\x74\x82\xb1\x07\x3d\x3c\x4e\xa7\x69\x0f\x3f\xcf\x04\x6a\xf2\x97\xa6\x38\x67\xcd\x77\x6c\xd8\xae\xf7\xd9\xd3\x1c\x5d\xc7\x49\x24\xd2\xce\xa8\x72\xbf\x29\x54\x50\x9e\x8d\x01\x0d\x32\x6a\x6b\xc0\xc1\x0a\x0a\xfa\x79\xdb\x03\x9a\x62\xc0\x26\xf2\xc6\x7d\x47\x64\x46\x2d\xa3\x5d\x1a\xbd\x49\x80\x21\x62\x86\x0d\x83\xb3\x87\x88\xee\xf5\x90\x95\x44\x01\x69\x77\x68\x9e\xad\x1f\x17\x5e\x3d\x8b\xdc\x31\xb0\xc0\x29\xf9\x63\x6d\x25\x80\x47\xcd\xa5\x03\xe1\xdd\x39\xa0\xe8\x79\xe5\xfc\xa0\xd1\x24\x78\x52\x86\x2d\x0a\x3c\x56\xde\x68\x26\x9f\xb8\x8b\x20\xc7\x95\xcd\x6b\xbc\x01\x9d\xaf\x9e\x9f\x56\x47\x6e\x40\x39\x49\x69\x43\x97\xf9\x3a\xbb\xcb\x87\xb6\x04\xb9\xd3\xb3\x8d\x90\xca\xf0\xda\xab\x8f\xef\x2b\x3f\xce\xd9\xbc\x67\x27\x9e\x5f\x92\xec\x8e\xeb\xb9\xf6\xdb\x07\x7e\x45\x75\xac\x15\xbf\x09\x2a\xc5\xa7\x32\x06\x1c\xe8\x57\xa4\xb0\x81\xd8\x63\x78\x36\x4a\xaa\x90\x0f\xcf\x41\x3c\xb3\x96\x28\x1f\x35\x65\x41\x14\xbf\x70\x9f\x37\x59\x09\x72\xfe\x99\x4a\x3e\x0b\x68\x8b\x4a\x6c\xe1\x54\x77\x6c\x64\x3b\x58\xd8\x9c\xe2\x00\xb9\x0b\xf8\x2a\xc2\x81\x77\xa1\x3c\x9b\xd8\xeb\xd5\x71\x4f\x2b\x50\xe4\xa4\x64\xc2\xa2\x32\xc7\xef\xde\x54\x3e\xd7\x1d\x16\x7b\x27\x22\x94\x12\x2d\xdb\x07\xa7\x20\x8c\x1b\xbd\xaf\x12\x82\x8d\x12\x33\x8e\xfc\x27\x4e\x3b\xea\xed\x4c\xd3\x16\x8e\xb3\x49\x3d\x06\x39\xec\x79\xa1\xdf\x26\x71\x10\x8f\x4d\x12\xe5\xa3\x6c\x12\x44\xf1\x0b\xf7\x79\x36\x49\x90\x1b\x69\x93\x00\x12\xb4\x49\xa0\x28\xda\x26\x39\x58\x98\x31\x71\x80\x6c\xe5\x14\x9d\x1a\xb2\x49\x2e\xd4\x3d\x36\x49\x2a\x40\x94\x4d\x32\x61\x51\x99\x63\x6d\xd2\x00\x8c\xda\x24\x58\xec\xb5\x49\x28\x25\x5a\xb6\x0f\xda\x24\x8c\x1b\x65\x34\xc2\xb0\x51\x62\xc6\x91\xff\x7c\x9b\x34\xca\x4b\x35\x7d\xb8\x1f\xe7\x33\x6a\x76\xed\xf5\x70\x60\x6d\xfb\x41\x8e\x8b\xf5\x73\x3a\xdf\x73\xa7\x98\xed\xd3\xe5\xb3\xe4\x98\x1f\xb2\xf5\xda\xf1\x52\x25\x4b\x6c\x1d\xca\x91\xd1\xb1\x25\x91\x48\x13\xa8\xca\xfd\x26\x5a\x41\x79\xac\xb4\x06\x19\x65\xa8\x1d\xac\xa0\xa0\x9f\x67\xae\x35\xc5\xc0\x7e\x07\x6f\x5c\xb7\x1f\x08\xa3\x6d\x97\x46\xdb\x6d\x0c\x11\xb3\xb9\x18\x9c\x3d\x8c\x75\xaf\x87\x0c\x38\x0a\x48\xef\x77\x3c\x3f\x1f\x96\xf8\x7e\xc7\xa0\x21\x51\x66\xdc\x02\xa7\xe4\x8f\x35\xe6\x00\x1e\xb5\xe7\x0e\x84\xd7\xa4\x53\xf4\xbc\x72\x7e\xd0\xb0\x13\x3c\x29\xe3\x1b\x05\x1e\x2b\x6f\x34\x93\xcf\xdc\xef\x10\xe3\x8a\xb2\xa8\x9f\x6a\x44\x35\x93\xd7\xac\xa9\x8a\xea\x05\x93\x35\x7b\x62\x8b\x25\x1e\xd2\x27\x90\xe8\xb0\x5d\x59\x1e\x88\x2c\x96\x50\x1e\x1b\xaa\x41\x46\xd9\x50\x07\x2b\x28\xe8\xe7\xd9\x50\x4d\x31\x10\x4d\xc1\x1b\xf7\x1d\x91\x19\x8f\x32\xb6\x4a\xa3\x6d\x28\x86\x88\x99\x3d\x0c\xce\x89\x31\x55\xbd\x1e\x0c\x38\xc6\x00\xe9\x31\xf1\xfc\x34\xa7\x42\x47\xb5\x86\x44\xd9\x50\x0b\x9c\x92\x3f\x3a\xe4\xd8\x84\x47\x6d\xa8\x03\xe1\xb5\xa1\x14\x3d\xaf\x9c\x1f\xb4\xa1\x04\x4f\x32\x30\x38\x06\x3c\x56\xde\x68\x26\x9f\x68\x43\xe5\xb8\xb2\x79\x8d\xb7\xa1\x2c\x5b\xe5\x22\xfc\x4c\x90\x54\x31\x0e\xfb\xc3\xf2\xe9\xae\x20\x64\x28\xc8\xbd\x61\xc8\x61\xa9\x34\xc7\x3c\xab\x5e\x58\xf3\x41\x86\x59\x36\x3f\x2e\xf8\x54\x72\x78\x5a\xa5\xea\xf8\x31\x5f\x6f\xd6\xab\x39\x12\x81\xd1\x73\x44\xba\x4c\xe0\xa2\x43\x5c\xe0\x78\xa2\x1c\x78\x71\x28\x0e\x83\x03\x79\xe6\x11\x05\x31\x6a\x1a\xb1\x91\x42\x42\x7e\xde\x24\xa2\x08\xfa\xe7\x10\xd1\xaa\x4e\xfb\x93\x01\x19\xa0\x30\x7a\x06\x41\xf0\x30\x9b\x8f\x80\xb9\xc7\xf2\xa2\xab\xc3\x81\x19\x2e\x1c\x69\x0d\xf6\xab\x65\xb6\xc0\xb7\xe1\xb4\x5a\x44\x4d\x1e\x10\x9a\x90\x3d\x3e\x34\x63\x00\x47\x67\x0e\x1b\xc0\x3b\x71\x10\xd4\x7c\x32\x7e\x70\xda\xc0\x39\xd2\x21\x14\x61\xe8\x48\x61\x63\x59\x7c\xe2\x94\x21\x87\x11\x61\x37\x3f\xd5\x54\x0e\xae\xfd\x39\x2b\xcb\x84\xff\x39\xdd\xd7\xf9\x77\x7d\x41\x1c\xdc\x4b\xd5\x17\xc3\xbb\x7a\xb8\xd2\xac\x48\xf0\x4c\x09\x4c\xc4\x2e\x6a\x3a\x43\x83\x9d\xb2\xf2\xe8\x14\x23\x37\xe6\x77\xf0\xca\xaa\x97\xfa\x2f\xb3\x43\x5d\x75\x59\x51\x99\x1d\x89\x32\x32\x20\x6f\xe4\xb5\xe7\x77\x84\xc6\xcd\xb8\x0a\xbd\x4e\xbf\x9d\x30\x89\x4c\x98\x79\xaa\x81\xa6\xdf\x8a\x9c\xd5\x37\x95\x78\x60\x27\xb3\x27\x5c\xea\xb6\xe0\x17\x31\xb3\x7d\x5b\x97\xd7\x8e\xed\x54\x22\x05\x9e\x41\x61\xd7\xab\xcc\xb1\xac\x5f\xb7\xa7\x22\xcf\xd5\x55\x4c\x41\x2b\x11\x14\x55\x5a\x93\x1d\xe4\x2b\xfe\x1e\x2e\x88\x22\x9c\x7a\x0e\x3d\x62\xd7\x64\x55\x7b\xac\x9b\xf3\x96\xff\x56\x66\x1d\x5b\xe6\x5f\xa6\xeb\xf4\xe7\x09\xff\x4f\xfa\xf0\x3e\x2b\xaa\xcb\xb5\x9b\x48\x9b\x37\x23\xa2\x48\xbe\x42\xdb\xde\xb1\xb7\x2e\x6b\x58\x76\xd3\xac\x1b\x56\x66\xfd\x60\x30\xab\xc1\xc7\x4b\xcf\x57\xde\xb5\xd6\xd6\x4f\xfa\x49\x53\x31\xa1\xe9\xb4\x13\x86\xb6\x45\xbb\x38\xb2\xf1\x95\x32\x89\xd4\x60\x26\xf1\x44\x4e\x9b\x37\x57\xdf\x6c\x90\xc8\x4b\xe6\x63\xee\x6a\x2b\x25\xea\x31\xae\x67\xcf\xc0\x7b\xb6\x87\xdd\x33\x18\x74\x65\xd6\xbc\x30\xdf\xb8\x7d\x72\x86\xed\x93\x26\xa0\xdb\x19\x5c\x17\xa6\xd2\x82\x8c\x6a\x19\xa1\xd2\xb2\xd3\x24\xee\xb1\xae\x3b\x31\x4c\xa7\x27\x96\xe5\xc6\x38\x4c\xc1\x38\x4c\xdf\x8d\xfa\x50\x83\x75\x48\x22\xb2\x6c\xd8\x39\xf1\xa8\x87\xfb\x42\x41\x2b\x6e\x42\x0f\xed\xaf\x6f\xfb\x3f\x1b\xb4\x4c\x30\xde\xcc\x1a\x8a\x37\x61\xa2\x2b\xd7\xd7\xcb\x17\x8d\x87\x08\x9a\x6c\x38\x07\xa9\x81\xc7\xba\xea\xa6\xaf\x62\x1c\x3f\xa6\xe9\x6e\x5f\xf7\xd5\xcc\xf2\xbe\x65\x92\xc5\xe5\x2d\x49\x93\x34\x11\x93\xe3\x62\x31\x51\xff\x9b\x2d\x1e\xe4\x1c\xb2\x9d\x5f\xde\x92\xb6\x2e\x8b\x3c\x31\x86\xd5\xae\x1f\x8c\xd3\x9c\x1d\xea\x26\xe3\x43\x51\x8c\x01\xc1\x93\x1b\xb9\xde\xd2\xb0\x7c\xa2\xfa\x52\x4c\x56\x21\x2c\xe5\x1c\x0d\x5f\x8e\xf5\xe1\xda\x1a\x74\x20\xc4\x96\x17\xdf\xea\x6b\xd7\xcf\x53\xdb\x31\xb5\x0b\x89\x52\x54\xdf\x58\xd3\xb1\xbc\xff\x5d\xd2\xcf\x6f\x06\x79\x7e\x61\xde\xbe\xbb\x6e\xa2\xf3\xcc\x2e\x2a\x53\xc3\x94\xcf\x45\xdb\x73\x91\xe7\x25\x60\x73\xa8\xcf\x97\xec\x60\xa4\x84\x58\xac\xd9\x39\x99\x3d\xae\x75\x5a\x8b\xed\x54\x7c\x4b\x11\xb4\xd9\xe5\x5a\x96\x62\x3c\xc0\xc1\x31\x9d\x0f\x2a\x20\x26\xf7\xbe\x2f\x79\xba\x1d\xd9\xad\xa0\xad\xec\xca\xeb\x4b\xa4\x6e\x87\xe8\x22\xab\x67\x74\xd9\x96\xc0\x91\x7d\x05\x3d\x13\xb6\xe9\x7f\xe2\xbb\xcd\x11\x12\xa5\x87\x56\xc5\xd2\xc8\x41\xae\x78\x3f\xca\x43\x9d\xaa\xb4\xf8\x4e\xde\x3d\x47\x69\x19\xea\x66\x72\xcf\xf7\xfd\x8f\x17\x83\x6b\x9e\x4a\xef\x71\x73\x9c\xc0\x20\x2e\xd5\xa7\x36\x1c\xd5\x96\x26\x9c\xe8\x6f\x3f\x08\xd1\xf4\xa6\xa1\x41\xf5\x65\x44\x95\x3c\x1a\xac\xc5\xa0\x3a\x29\x56\x0e\x8f\x5e\x10\x66\xc4\xa0\x65\x2d\x4c\xd6\x0f\x3b\xf4\xfb\xb3\xab\xfb\x14\xfd\x50\x4f\x52\x38\xbe\x5e\xc5\x70\x3c\x3d\x8c\x82\x8f\xee\x6d\x78\xb7\x5b\xdd\xb3\x1c\x51\x23\x4f\xe7\xa3\x12\x52\x8a\xe0\x2c\x1e\x23\x04\xf5\xd9\x57\x7d\x45\xd4\x15\x50\x17\x21\x3d\xc8\xcb\x10\xfb\x2a\xbe\x63\xf6\x35\x1d\x33\xe3\x3b\x12\xba\xc4\xd0\x4a\x20\x7a\x23\x24\x22\x6f\x98\x3c\xf6\x3f\x76\x1b\x12\xd4\xa9\xea\x92\x96\x95\x22\x14\x6d\x56\x1d\x0c\x9f\x59\x75\xb5\x12\x45\xa7\x7a\x33\x62\x0c\x3a\x70\xee\xb8\x73\x41\xc6\x8f\xb5\xe1\xe6\x7b\x64\x95\x3c\xba\xfb\x01\xcb\x6a\xca\x41\x74\x64\xa4\x4d\x05\x9b\x7c\xd0\xac\x3a\xbb\xa0\x91\x5c\x42\x3d\x39\xc2\xb2\x7a\x71\x3c\x3d\xfc\x39\x96\xf5\x68\x05\xf3\x8d\xa8\x8b\xa7\xdb\xc7\xdb\x54\xd0\x11\x8e\x59\x85\x52\xfa\x0c\xaa\xbe\xe8\xe9\x4a\xa7\x8b\x90\x8e\xe3\x65\x88\x41\x15\xdf\x95\x41\x1d\xb7\x60\xa2\xed\x8a\xbc\xb8\x1f\x03\x45\x28\x8d\x90\x2b\xde\x61\xf5\x50\xa7\x2a\x4d\x9a\x55\x71\x2d\x1c\xa5\x15\x6d\x59\x1d\x0c\xaf\xc3\x2a\x2f\xed\x05\xd0\xa9\x6e\x8d\x18\x83\x0e\x9c\x3b\xee\x5c\x90\xd1\x63\x4d\x34\x83\x7d\x9f\x32\x20\xad\x47\x8f\x3f\x60\x5c\xa1\x28\x9e\xfe\x89\x34\xb1\x43\x6e\x03\x68\x5f\x61\xc6\x87\x48\xfa\xa1\xce\x1c\x61\x5c\xbd\x38\x9e\x4e\xfe\x1c\xe3\x6a\x5c\xc2\xe6\x17\x22\x47\xd4\xc5\xd3\xed\xe3\x8d\xeb\xd0\x0b\x8e\x65\x85\x22\xfa\x2c\xab\xba\xc5\xe9\x4a\xa6\x4a\x90\x3e\xeb\x8b\x10\xb3\xca\x3f\x63\x6e\xea\x7c\x3e\xcf\x16\x8b\xfb\x3c\x55\x71\x13\x1e\x21\x87\xd5\x02\xd1\x15\x2e\x14\x19\xf2\xb6\x5f\xa5\x6b\xfb\xce\x2b\x4d\x9e\xa8\x32\x69\x53\xc5\x55\x6b\x8c\x52\xb4\x49\xb5\x11\x7c\x16\xd5\xd2\x46\x0c\x95\xe8\xcc\x88\x31\x67\x83\xb9\xc3\xcc\x81\x18\x3d\xb2\xa4\x9e\xc4\x57\x87\xd6\xda\x0f\x58\x51\x28\x05\xad\x0d\xb1\x7e\xaa\x99\x1f\xc0\xf2\x53\xed\xb4\x09\x71\x4c\x02\x1d\x39\xc2\x90\xfa\x50\xe8\x0e\xfe\x24\x1f\x15\x5c\x2d\x77\xe7\xcd\x50\x75\xe8\xbe\xbf\xc3\x4f\x35\x3b\xc2\xf5\x53\x11\x49\x7d\x36\xd5\xb8\x52\xe9\x0a\x69\x14\x22\x7d\x28\x4b\x11\xe3\xaa\x4a\x50\xfb\x9a\x3f\x1d\x37\xcb\xfb\xec\xab\xbe\x67\x8f\x50\x24\x2a\x85\x28\x92\x92\x8e\x8e\x2d\x3e\x1c\x9f\x53\x7b\xa0\xf9\x98\xd0\x2d\x40\x9a\x5b\x71\x61\x9b\xa0\x17\x6d\x71\x11\x1c\xaf\xd1\x95\x17\x7b\x83\x04\xe8\xde\x8e\x18\xa8\x08\xa4\x3b\x3e\x31\xa0\xf1\x36\x58\xe8\xd2\xd8\xda\x79\x15\xfd\x23\xc6\x18\x88\xe3\xd5\x98\x1f\xba\x6f\x10\xe0\x13\xee\xe0\x11\x56\x39\x80\xe5\xed\xf8\x1f\xbd\x7f\x10\x51\x23\xaf\x2a\xfc\x2d\xf7\x10\x2a\xc2\x89\x53\x25\xe8\xea\xa4\xc2\x3c\x5d\xfe\x19\xdf\x90\x5d\xed\xd9\xfc\x3e\x4b\x2c\xee\x8b\x23\xe4\xb0\x5a\xa0\xab\xa2\xca\xe3\xe9\x1e\x1f\x57\xce\xfe\x01\x4d\x9e\xa8\xb2\x67\x53\x76\xbd\x3a\xee\x31\x4a\x23\x36\x0f\xaa\x68\x4f\x57\x5d\x6b\xf5\x63\x13\xfd\x19\x31\x02\x6d\x30\x6c\x4d\x59\x7d\x78\x47\x96\xab\xca\xa8\x1a\xd1\xba\xfb\xa1\x2d\x59\x53\x10\x5a\x27\x7e\xa8\x7d\xf5\x31\x09\xf4\xe5\xa8\x8d\x03\x1a\x85\xee\xe3\x1f\x6d\x53\x43\x15\xa1\x7b\xfd\x6f\x67\x4d\xd5\x85\x4c\x57\x36\x55\x82\xf4\x58\x5f\x84\x58\x53\xfe\xf9\xb3\xad\xa9\xb8\xe9\x1e\x30\x77\x4a\x56\x44\x55\xb8\x50\x1f\xb4\xa6\xfe\x46\x1a\x63\x4d\x15\xa5\x68\x6b\x6a\x23\x8c\xb3\xa6\x18\x36\xd1\x9f\x11\xa3\xce\x06\x73\x47\x9a\x03\xf1\xe9\xd6\x14\x13\x95\xd6\xdd\x1f\x68\x4d\x15\x8b\x1f\x6a\x4d\x7d\x4c\x02\x7d\x39\xc2\x9a\xfa\x50\xe8\x3e\xfe\xd1\xd6\x34\x54\x11\xba\xd7\xff\x76\xd6\xd4\xb8\x1d\xe9\x8a\x67\x14\x22\xfd\x26\x4b\x11\xb3\xaa\x4a\x30\xcb\xba\x58\x3e\x3d\x2d\x0e\xf7\x59\x56\x7d\x53\x1d\xa1\x48\x54\x0a\x51\x1e\x25\x1d\x65\x62\x97\xcb\xc3\x6a\x65\xef\x18\x78\x99\xd0\x2d\x40\xef\x18\xf0\x2b\xcf\x04\xbd\x68\x5b\x8b\xe0\xf8\xcc\xad\xba\x1a\x1b\x24\x40\xf7\x76\xc4\xe0\x44\x20\xdd\x31\x89\x01\xdd\x71\x1e\xc2\x75\x69\x6c\xed\xbc\x8a\xfe\x01\x03\x6c\x89\xe3\xd3\x98\x1f\x6a\x83\x03\x7c\xc2\x1d\x3c\xc2\x12\x07\xb0\xbc\x1d\xff\xa3\xed\x71\x44\x8d\xbc\xaa\xf0\xb7\xb3\xca\xc6\x35\x47\x24\xd2\x6c\x28\xc4\x82\xf1\x44\x29\x16\x2c\x2b\x4b\xd0\x70\xd9\xf5\xe3\x2a\x5d\xdf\x19\x2e\xab\xee\xbe\x23\x14\x89\x4a\x61\x01\x81\x52\x3a\x32\x06\x61\xff\xbc\x5f\x1e\xec\x68\x49\x1f\x13\xba\x05\xe8\xd8\x59\x7e\x89\x9a\xa0\x17\x1f\x3d\xeb\xe2\xf8\xac\xb2\xba\x6c\x1b\x24\x40\xf7\x76\xc4\x40\x45\x20\x91\x30\x4b\x04\x68\x7c\x28\xad\xd0\xa5\xb1\xb5\xf3\x2a\xfa\x47\x22\x6a\x81\x38\x5e\x8d\xf9\xa1\x56\x39\xc0\x27\xdc\xc1\x63\xa2\x6b\xfd\x58\xde\x8e\xff\xd1\x56\x39\xa2\x46\x5e\x55\xf8\xdb\x59\xe5\xe1\x4a\x23\x76\x02\xa8\xca\xd0\xf3\xd1\xbe\x10\x8d\x5b\xe0\x05\x98\x45\xce\xd2\xe5\x72\xf1\x7c\x6f\xe4\x82\xb8\x41\x8e\x10\xc4\xeb\x83\x1e\xd0\x72\xd1\x28\x73\x7c\x38\xae\x17\xab\xcd\x2e\x9e\x05\x59\x79\xd2\x18\x8b\x3b\xc9\x38\xb5\x11\x51\x0c\x36\x8a\xcf\x14\xab\x4b\xac\x21\x7c\xb2\x8f\x23\xc6\xa6\x0b\x88\x9d\x77\x3b\x30\xa3\x47\xa0\x54\xa0\x91\x35\xf3\x69\xf6\x07\x8c\x30\x14\xc6\xa7\x27\x3f\xd4\x06\xfb\xd9\x04\x7b\x76\x54\x7c\x83\x0f\xc9\xd7\xe3\x3f\xda\xfe\x86\xab\xe3\xd3\x81\xbf\x8d\xf5\x4d\x66\xc5\x41\x48\xd2\xb1\xb7\x6e\x7b\x2c\x1a\x75\x77\xd3\xb8\xc6\x39\x09\x03\xdb\x17\x3f\x09\x94\x01\x42\x60\x18\x24\x1e\xbc\xaf\xca\xbf\xcf\xf6\x0d\xcb\xf2\x43\x73\x3d\xef\xf5\x7b\xcd\xfa\x6a\xe6\x50\x96\x64\xe8\x8d\xc5\x21\xa3\xc2\x23\x84\xf6\xdc\x72\xdc\x19\x79\x13\x0c\x14\x3a\xb9\x82\x7c\x9e\x5b\x3d\xaa\x3e\x33\x1f\xd7\x17\x17\xdb\x5b\x56\x1e\xd5\xbd\x76\x75\xaf\xd6\xfc\xc6\xc5\x10\xf7\x0e\xad\xf7\xe2\x4d\xa2\xe7\xa2\x2a\xce\xd7\xb3\x79\x61\x56\x5f\xcf\xd6\x37\xae\xa7\xe7\xfa\xf7\x69\x76\xb9\xb0\xac\xc9\xaa\x03\x13\x35\x9a\xbe\xb2\xfd\x6f\x45\xe7\x7c\x47\xae\xdd\x3b\x57\x49\xff\xb0\xdf\x1f\x56\xf9\x5c\x69\x59\x93\xe5\xc5\xb5\xdd\x2e\x2e\x6f\xfa\x86\xbe\xb8\x40\x39\x15\x8f\x0c\xd7\x55\x37\x6d\x8b\xdf\x19\x7f\x43\xdd\xb9\x44\x2c\xae\xee\x76\x59\xd3\xed\x38\x8e\xba\xb5\x3e\x5b\xef\xac\xfb\x97\x5d\x7d\xd9\xe1\x71\xd3\x6a\x3b\x16\xbd\xba\xa3\x6f\xd9\xce\x56\xfa\x72\xa6\x64\x92\x5d\xbb\x5a\xb6\xd7\x5f\xf2\xa2\xcd\xf6\x25\xcb\x7f\x1d\x5a\x6e\xf8\x76\x3b\x5c\x9b\x56\xbc\x29\x3e\xcd\xca\xb2\x7e\x65\x39\x22\x0a\x6c\x16\x65\x87\x0f\xfb\xc7\xc3\xa3\xe4\x62\x8e\x7c\xfd\x41\x9b\x43\xfd\x45\xdb\x3a\xfe\x65\x0b\x30\x94\x59\x13\x7f\xc8\x54\x15\x4a\x62\x93\xbe\xf9\x4d\xb3\x30\x3f\x6a\x2e\xea\xe3\xd6\x46\x55\xbc\xf4\xdf\xd2\x44\xd2\x15\xdc\x6e\x2f\x65\x76\x60\xa7\xba\xcc\x4d\xb9\xc0\xe7\x1b\x68\x2e\xa3\x65\xe4\xbd\x58\x28\x65\xfc\x1d\x5b\xf8\x4f\xfa\x3e\x3b\x16\xac\x14\xae\x88\xb8\xcf\x6b\x69\x27\x7f\xf7\xfe\x9d\x5b\x25\x5f\xb6\x09\x53\x97\xf1\x1b\xf0\x8e\xa2\xf6\x63\xb7\xd7\x56\xad\xcb\x0b\x9e\x23\x43\x5e\x36\x97\x7f\x1d\x8b\xb2\x1c\xae\xeb\x28\xdb\xc8\xd3\x6d\x4c\x80\xa9\xbc\x29\x32\x06\x0d\x6e\xeb\x14\x90\xbc\xaa\x3e\x8c\x1c\x93\xd9\x1a\x80\x8a\xeb\xea\x12\x72\x31\xc0\x2d\x00\xd4\x31\xcb\x59\x7e\x13\x02\xee\xd7\xfd\xcf\x50\x26\x2e\xee\x8a\x32\x3e\xeb\xa9\x02\x71\xe9\x0c\xaf\x95\xb8\x3c\x21\x91\x64\x2c\xa0\x2a\xe3\x21\xc0\xa2\x88\xc7\x84\xaa\xef\x2a\x74\x4d\x16\xc9\x50\x25\x55\x5a\x54\xc7\x7a\x62\xd0\xaf\x14\x0d\x75\x38\xa4\x1b\x54\xee\x67\x4b\x32\x72\xff\xf2\x70\xca\x9a\x6e\x96\x17\x6d\xd7\x14\xfb\x6b\x6f\xe8\xa7\xfb\xac\x49\xda\x6f\x2f\xc9\x6c\x9f\x35\x6d\x32\x6b\xcb\xe2\xc0\xa6\xe9\xc0\x43\x6d\xc1\xc8\x5a\xc8\x25\xf7\x50\x0b\xbe\x1c\x10\x85\xca\x11\x2c\xd9\x37\x56\x26\xe2\x1f\x9d\x43\xe8\x72\x2d\x4b\x96\xcb\x7b\xdf\xa8\x35\x64\x55\xee\xc7\xed\xe7\x45\x1c\x95\x1b\xd2\xf7\xd9\x99\x55\xd7\x84\xff\x77\x5a\x16\x6d\x97\x64\x20\x93\xc0\x26\x1d\x72\x24\x88\xa4\x03\x52\x67\xa0\x41\x07\x97\x0f\x8b\xaa\x65\x1d\x5f\x18\xa5\xda\xfe\xe3\xb7\xf0\x1d\xde\xa6\x51\x72\x0a\x1d\xaf\x6b\x9b\x26\x08\xe3\xe9\x52\x2e\xcb\xac\x64\xe6\xaa\xb7\x3d\x4c\x85\xdf\x41\xb2\x16\xc5\x96\xf2\x38\xb0\x12\x0a\x78\x22\xb3\xb5\x1e\xc5\xeb\xc7\xfe\xc7\xc5\x13\xbf\xf6\xbd\xa7\x3c\x15\xb3\xbd\x7d\xf0\x5c\xe3\x8a\x9c\x59\x78\x0e\x56\xb6\x67\xa5\x82\xe9\x4b\x13\x91\x72\x24\x71\xb3\xf2\x88\x2f\xb2\xdd\x1e\xd9\xd3\x31\x7b\xda\x95\xac\xeb\x58\x33\x6d\x7b\xcf\xa5\x7a\xe9\x9d\x07\x9b\xb6\xe9\x97\x99\x59\x57\x52\x98\x3a\x04\x95\x0b\x71\xec\xa4\x86\x71\x1c\xdb\x9f\x50\x04\x0e\x75\x59\x66\x97\x96\xe5\xd3\xba\x2a\xbf\x7f\x35\x2b\x6a\xa0\x73\x65\x93\x59\x3d\x7a\x38\x3c\xf3\x4b\xb2\x7d\xde\xa4\x3c\xb5\xc7\x18\xda\xae\x68\xbd\x6c\x6d\x9b\xbd\x98\x0e\xb8\xb4\x7f\xb2\x20\x51\xbf\xf0\x14\x26\x50\xa5\x11\x27\xc5\xf0\x8a\x66\x73\x31\x1f\xe0\x23\x54\x39\xc1\xea\x4f\xed\x05\x3b\x7c\x79\x56\x14\xd7\x59\x93\xd7\x86\x1c\x67\x8d\xa0\x30\x93\x09\x8c\xa6\xfb\x92\xb1\x5c\x4f\xbb\x14\x43\x9e\xe7\xaa\x64\x56\xde\x9b\xf4\x5d\x66\xff\xb1\x72\xe8\x38\x29\x83\xcc\x56\x2a\xad\x6c\x55\x5d\x9d\xf0\xca\x4e\xfe\x30\xdf\x3c\xa6\xab\x7c\xf2\x87\x79\xfe\xbc\xda\x3c\x3e\xa8\x79\x75\x09\x54\xba\x6f\x63\xd0\x66\x8b\xf4\xf2\x66\x35\x1b\xff\xe4\xa4\x51\xf2\x27\x32\x22\x53\xcf\x3d\x51\x79\x48\xfc\xf4\xa4\xc5\x33\x17\x64\x56\x22\x12\x3f\xfe\x4c\xd9\xd2\x00\x98\x36\x80\x80\x95\xd0\x02\xd1\x4d\x53\x73\xf1\x3a\x22\x9b\xd3\x76\xbb\x67\xc7\xba\x61\x37\xe9\x63\x5c\xde\xb4\xa7\xd3\x4f\x22\x43\x6d\x88\x5d\x04\x31\x5f\xfd\x94\xfc\xa4\x7d\x2c\xee\x8a\x21\x59\xa9\xa4\xee\x8b\x34\x4f\xbd\x5b\xe7\x93\x93\x55\x39\xcc\x57\x64\x3a\x75\x6d\xd7\xb0\xee\x70\xc2\x97\x1f\xac\xca\x77\xe6\x92\x53\xac\x0b\xbc\x9c\x7e\xc9\x22\x75\x64\x14\x9d\x8f\xe8\xc6\xbe\xc9\x08\x72\x34\x8d\x96\x1d\xea\x2a\xc7\x1f\xe2\x13\x83\x4d\x3b\x0a\xd2\x6d\x4d\xfa\x21\x94\xa8\x3f\x52\xd5\xf1\xab\x19\x6a\xc3\x70\x05\xd3\x5c\xe1\x38\x33\x4d\xe2\xb2\x19\xfa\x1a\x42\x91\x3d\xac\x96\xc9\x08\x52\xcf\xf4\xe5\xda\x4f\x75\x52\x65\x17\xeb\xd4\x58\xad\x4a\xed\x53\x96\x8e\xcf\xb2\xa6\x81\x26\x44\x19\xa8\xfe\xf2\x47\x35\x05\x4f\xd7\xbd\x9f\x32\x66\x5e\xf2\x8b\x0b\xb2\x94\xbd\xcf\xaa\xba\x2b\x8e\xc5\x81\x1b\x9b\x9b\xe5\xc2\x0d\x0e\x1c\x36\xb5\x9a\x98\x5c\x7b\x58\x95\xc3\x64\xda\x7a\xfd\xea\x9a\x0b\x6b\xc1\x66\xd3\x6a\xae\x55\x65\xd3\x62\x73\xb6\xb7\xdd\x34\x3b\xf8\x5f\x3a\x5b\x36\x39\xd6\x34\xb5\x35\x7d\xae\xf2\xc7\x7c\x05\xb7\x59\x77\xf8\xae\xb2\x4d\xec\x90\x55\x07\xd6\x3b\xcd\xf6\x7c\xbc\x62\x19\x3c\x3e\xb3\x37\xcd\xa4\x83\x6f\x13\x94\x89\x8b\xf0\xc9\x1d\xcd\xde\xe8\xd2\x90\xf9\x39\x0c\x1a\x8f\x69\xff\xe3\x6c\x64\x60\xb9\x2a\x6c\x62\xd6\x63\xc2\xdb\x3f\x3c\x3e\xef\xe1\xf5\x50\xe7\x16\xa1\xa3\x0c\xee\x64\xfc\x87\x7d\x76\x9c\xe7\x07\x78\x53\xc4\xa6\x25\xd7\x64\x36\x39\xb1\x36\xb3\xbf\x5a\x0f\xa6\x7d\x48\x45\xdc\xe7\x34\xb6\x7f\xd8\x1f\x18\x3b\xcc\x61\xa0\x8a\x2d\xb0\x5c\xfd\x39\x7d\xea\x64\x96\xff\x90\x8a\x38\xc9\x85\x3f\xa4\xc1\x32\xf1\x00\xae\x70\xd2\x8f\xc7\xc7\xe9\x25\x7b\x29\x2a\x61\x2b\x14\x78\xd6\xff\x98\x25\x89\xf1\xfb\xb4\xba\x9e\xf7\xac\x69\x07\xcb\x62\xae\x25\xb8\xe2\xf3\xa5\x02\xdb\x56\xf5\x6b\x93\x5d\x76\xc2\xda\x2c\x48\x7a\x7d\x97\x4f\x48\x66\xec\xad\x23\x0b\x2f\x0d\xfb\x56\xd4\xd7\xf6\x86\x8d\x08\x99\xbe\xcd\x5a\xac\xaa\xad\xe0\x1d\x2a\xbd\xb1\xe3\x47\x78\x6d\x9e\x3a\xa8\x6d\x36\x4f\x4d\x02\x20\xaa\x3e\x7a\x07\x8d\x4a\x45\xa7\x4f\xd4\x65\xc2\x06\x9f\x54\xca\x11\xf4\x89\x15\x80\xd1\x72\x91\x27\x84\xea\xb8\xef\xd2\xd4\x2f\x8d\x0c\xda\xe1\x9b\x54\x6a\x17\x69\xd3\x2f\x25\x64\x46\xc4\x21\x11\xa2\x68\x75\x23\x71\xf4\x22\x4d\x7b\x40\xbe\xb4\xe0\x9f\xa6\x0a\xc7\xcc\x2e\x9d\xfe\xfc\x2e\x17\x14\xa8\x29\x34\xb6\x9a\x43\xbb\xd2\x6a\xa5\xb7\x6d\xd9\x25\x6b\xb2\x8e\xed\x1c\x1e\x7c\xa9\x53\xbc\xb1\xfc\xc6\xff\x9c\x96\xd9\xf7\xfa\xda\x6d\xf9\x27\x1b\x24\xe9\x72\x71\x34\xa0\x57\x0f\xac\x2c\x8b\x4b\x5b\xb4\xee\x7a\x42\x63\x16\x6d\x5d\x66\x1d\xcb\xdd\xd5\x91\x00\x79\x2d\xba\x13\x4f\x7e\x69\x03\x58\x7e\x7a\xef\x94\x9a\xbb\x32\x66\x19\x5f\xd8\xe8\x42\x87\xf2\x57\xf1\x01\xe3\xa2\x36\x21\xb4\xb8\x72\xab\x35\x11\x3e\x5a\xc9\x0e\xbc\x24\xc9\x26\x2e\x48\x97\x63\x1f\x4f\xa6\xe5\x00\xa4\xfb\x49\x8a\x55\x7d\x33\xf2\x45\x63\xd7\x88\xfc\xe4\x9a\x11\xcb\x1f\xd0\xa7\x27\xfa\x9f\x71\x64\xf4\x96\xb8\x8d\xc3\xa1\xba\xa6\xb8\xf8\xd1\xab\xee\x24\x36\x2b\xbe\xb0\x6f\xac\x42\xa5\x92\x1b\x98\x9f\xc4\x81\x3c\xfe\x57\x26\x40\xf4\x82\x6e\x71\xa7\x99\x93\x39\xdf\x89\x32\x6c\xe3\x80\xc3\xf7\x90\x4f\x0d\x63\xd3\x7f\xbb\x66\x4d\xc7\x9a\x76\xa0\xe2\x96\x49\xef\xf8\x71\xfd\xb3\x45\xe1\xb5\x9e\x76\xa7\xa2\xc9\x6d\x6c\xfd\x5d\x62\x6e\x36\xb3\xcd\xc6\x42\x3e\x65\xe5\x11\xa2\xf5\x5f\x24\xc2\x3a\xb5\xa0\xeb\x8a\x09\x92\x10\x45\x7f\x96\x78\xcb\xe5\x6c\xb9\x44\x50\x65\x4d\x5c\x64\x59\xa0\xfd\x7f\xbb\x86\xcd\xb5\x3a\x64\xfc\x8b\x55\xc5\xa1\xe0\x66\x0d\xf4\x1d\x61\x0f\xdc\x89\x12\xf2\xaa\xb2\xa6\xa9\x5f\x21\x1b\xf1\xed\x66\x2e\xb6\xfa\xe5\x55\x22\x7f\x99\x0d\xa3\x09\x10\xf9\x6a\x68\x05\xf8\x7c\xc2\xc8\x9b\xd0\xe0\xb3\x56\x28\xb1\xfc\x75\xb9\x71\xe3\x0d\x71\xf9\x27\xd5\x9c\xfd\xef\x86\xb1\x97\xb6\xde\xa4\x30\x87\xd8\x73\x89\xf9\x34\x5b\xea\xff\xfb\xd9\xa0\x00\xbe\x5b\xb2\x58\x72\xa8\x5d\x88\x5e\xf5\xe4\xff\x3d\x9a\xa4\x60\x01\xa4\xb5\x84\xb4\x96\x83\x7a\x98\xb5\xb1\x95\x65\x05\xb1\x56\xa6\x4e\x62\x95\x81\x05\x90\xd6\x1a\xd2\x5a\x4b\x5a\xab\x39\x51\x1b\x58\x00\x69\x6d\x20\xad\xcd\x30\xc6\x0c\x02\xce\x88\x7b\x84\x58\x8f\x0a\x8b\xea\x9a\xb5\xa7\x6f\x9e\x20\xad\x27\xd3\x2c\x60\xb5\xd9\x78\xfa\xe6\x19\xd2\x7a\x1e\x8c\x93\x41\xc0\x31\x55\xf3\xd4\x52\xb4\x54\x69\x1a\xd5\x3b\x4f\x9e\xde\x99\xdb\x6a\xab\xf4\xf6\x99\xea\x9f\x67\xa2\x7f\xf4\x2c\x9a\x74\xa7\xe1\xed\x04\xb9\xe8\xb1\x1d\xd2\x6b\x95\xb3\xa6\x2c\x2a\x06\x36\x54\x56\x69\x6a\xd2\x33\x16\x6e\x26\x69\x73\x3d\x07\x7d\x28\x34\xb2\xc1\xda\xb1\xd1\x0c\x78\x1e\x6e\xb0\xe8\x50\x89\x31\xa8\x1d\x06\x03\xb1\x9f\xf7\x88\x59\x4d\xbf\x88\x02\xc0\x0d\xbb\xc4\xff\x3e\xe9\x33\x62\x7e\xfa\x68\x37\x83\x7d\xe0\x2a\x1c\x1a\xe8\x18\x61\x22\x72\xa2\xd3\xf6\x35\xeb\x0e\xa7\x7e\x81\x9a\xb3\x69\xdb\x65\xdd\x55\x2e\xb2\x26\xb3\xae\xae\xcb\xae\xb8\x6c\xb7\xd9\x51\xcc\x22\xaf\xf5\xb4\xed\xd8\x45\x66\x37\xa7\x32\x42\xc3\xba\x40\xf7\xc9\xae\x19\x2c\x35\xf7\xd7\x7d\x54\x4c\xf5\xc1\xe8\x24\xd9\x0d\xdf\xcd\x32\x3d\x04\xe3\x01\x00\x54\x17\x90\xd4\xfc\x7e\x99\x80\xaf\x45\x4a\x16\xeb\xe0\x50\x4c\x74\x67\x04\xc0\xc4\xa6\x74\x50\x1a\x94\x1c\x02\x26\xf7\xb8\xdd\x4d\xe9\x4b\x5d\x54\x1d\x6b\xa6\xbd\xf7\xd6\xb5\xa2\xe9\x80\xba\xde\x57\x23\x4a\xd2\x1b\xf2\x24\xc3\x7f\xfe\xb2\xb9\xbc\x3d\x84\xf9\xc4\x36\x89\xac\x2b\xca\x69\xba\x48\x09\x5e\x62\xcd\x38\xcb\x59\x7b\xf0\x56\x0a\x83\xbb\xe9\x63\x80\xff\xf6\x7f\xfd\xd7\x9f\x3c\xd4\xb3\x38\xe2\x19\x41\xfb\x7f\xf3\xd1\x3e\x65\x22\xc2\x42\x2c\xa2\x62\xd8\x10\x18\x9a\x23\xf0\xbe\x43\x0c\x75\x8b\xd0\xdd\x14\x83\x17\xdd\x94\x16\x95\xec\x3e\xe6\x19\xc5\xdb\x6d\x6a\xd7\x6a\x0d\x53\x9f\xda\x8a\x92\xe5\x72\xb9\x24\xb6\x0f\x3b\xd6\xa8\xa3\x2b\x11\x77\x25\x87\x9c\x88\x0b\x28\x7e\xef\x0d\x9b\x36\xf6\x6f\x18\x0d\x67\x3b\x43\x9e\xcd\xcc\x27\xcf\xcf\x2a\x4a\x92\xc6\x4b\xba\x1c\x9c\x7b\xd3\x86\x31\x84\xaa\xf4\xc3\xb5\x22\xba\xe1\x7e\x92\x76\x79\x79\x79\x93\xef\xbc\xc0\x77\x61\xa6\x73\xe7\xa8\xc2\x9c\x97\xd5\x16\x29\x10\x48\x98\x82\xeb\xbe\x6f\x75\x1e\xb3\x62\xbf\x23\x81\xef\x26\xe2\xb4\x90\x33\x65\xb8\xd5\x22\xe4\x4f\xfb\xe5\xca\x70\xe2\xaa\xd6\x30\x73\xb0\x9a\x30\xc4\xeb\x57\x65\x3c\x2c\x8b\x5e\x2f\xcd\x74\x2c\x12\x6e\x5f\xc5\xbb\x21\xee\x06\x47\xdf\x8c\xbc\xd9\x46\x38\x30\xbe\x6d\x95\x61\xbf\x09\xdb\x91\x59\x60\x67\xca\xe2\x6d\xae\x89\xfc\xd7\x0c\x81\x31\x5f\xed\xc2\xa3\x4d\xa1\x1f\x03\x4c\x4a\x5f\x4b\x73\x03\xcf\xac\xbd\xf9\x7d\xf0\x2b\xf4\xbe\xa8\x90\x09\xf3\xe9\x30\x1f\xb0\x4d\xae\x25\x5c\x15\xce\x8d\x78\x92\x46\x9d\xf6\xaa\x8a\x0e\x2b\x57\xed\x6d\xd8\x3b\xd4\xbe\x50\xa2\xf7\x50\x3b\x21\xe8\x32\x24\x88\x08\x08\x92\xaf\x9f\xc1\x61\x0c\x22\x2a\x06\x98\x21\x14\xf9\xe6\x44\x59\xa8\x57\xbc\xda\xeb\xbe\xca\xbe\x0d\xe3\x98\x6f\x0a\x8a\x83\xe9\x79\xaf\x00\x22\xe2\x80\x1f\x2b\xaa\x47\x9b\x7e\x9f\x16\x55\xce\xde\xfa\xd5\xb0\x4d\xe7\xeb\x1f\x4d\x55\x55\x03\xc4\x04\xe0\xfb\x6a\x65\xdd\xb2\xc6\x84\x3c\x64\xe5\xe1\xcb\xb2\x6f\xde\xe4\x6b\x3f\xd8\x1e\xc6\x9c\x34\x5a\x55\x91\xad\xd0\x73\x7e\xe1\xbb\x54\xfd\xd8\xd4\x11\x3a\x4a\xb7\xf9\xca\xde\x76\xbf\x87\xb3\xd1\xd9\x13\xdf\xe7\x05\x91\xbb\x43\xd8\xa3\xac\x98\x41\x7e\x56\xd5\x62\x2e\xd1\xae\xc6\xe4\x50\xe7\xec\x06\xbf\x69\x9d\x37\x31\x8b\xc1\x4b\xb7\xbf\x47\x1d\x66\x22\xf4\xb0\x83\x4b\xa8\x4e\x38\x1e\x76\x5e\x26\x4f\xc8\xbc\x78\x87\xfa\x7c\x29\x99\x75\x7c\x28\xcf\xd9\xbd\x88\xee\x91\x28\xf2\x4e\xa5\xcb\x0e\x3f\xfb\x74\x1f\x4b\x76\x30\x4f\x75\x59\xd6\xaf\x4e\xd0\xa0\x35\xa4\xad\xb0\x02\x87\x8a\x71\xb5\xc4\xb8\x60\x25\xe7\x89\x44\xb2\x2e\x3a\xb1\x89\xba\x9a\x0c\xbf\xaf\x8d\xdf\x37\xf6\x93\x5a\x72\xd3\x9a\x97\xf3\x6d\xee\x7e\x92\x6b\xea\xfa\x0c\x1e\x05\xeb\x81\xb2\x49\x06\x03\x2a\x42\xcb\xed\x77\xae\x8b\x02\xf8\x70\x6d\x1a\x56\x75\xff\xd0\xff\x61\x55\x75\x08\x15\x70\xa2\x04\xf8\xf4\x85\xce\x68\x5e\xc7\xe6\x7d\xc6\xce\xfb\xde\xe4\x67\x6d\x71\x98\xe6\x4d\x7d\xc9\xeb\xd7\x0a\xf3\x3b\x30\x38\x15\xcc\x82\x78\x19\x62\x6a\xe6\xa7\x5e\xca\x1c\xcd\x53\xe0\x00\x80\x83\x6a\x1f\xf5\xa9\x08\x3b\x55\xc6\xd3\x0f\x2a\xa2\x5b\xb5\x15\x45\x81\xfb\x9e\x29\xb3\xef\xb6\x4d\xb5\x7d\xb6\x74\xd2\xff\xcc\xd6\x0f\xe6\xfa\xd5\x7c\xdb\x6e\xa8\x98\xf4\x9f\xf4\x73\x7a\xce\x3a\x2d\x20\xf6\x6b\xdd\x9c\x4f\x75\xc9\xa6\x75\x53\xbc\x14\x95\x15\x30\xae\x90\x2f\xf5\x2b\x6b\xe4\x02\x6a\xda\x35\xc5\x0b\xfe\x92\x6c\xef\x57\xc1\x1b\x0d\x8f\x6b\xed\x27\x4c\xdf\x02\x9b\xc8\xe6\x03\x7e\x22\xd8\xfd\xda\x6a\xae\xf0\x0a\x87\x53\x60\xed\xb4\xd0\x52\xdb\xcb\xa5\x21\x20\x8b\x7b\x15\xbb\x43\xc9\xb2\x66\xbb\xaf\xbb\x93\x8f\xca\x54\x4f\xd9\x1e\x4e\xe0\xfa\xa5\x15\x63\x99\x65\x19\xbd\x77\x63\x14\x4a\xaf\x03\x2d\x13\x2e\x8a\x5d\x64\x5d\x74\x42\x3b\x5f\xd7\x62\xcf\xca\xfa\xd5\x53\x87\xbf\x64\x4d\x91\x4d\xd9\xdb\x25\xab\x72\x96\xff\xb9\x6b\xae\xec\xd7\x49\x80\x66\x51\x4d\xf9\xcd\x87\x91\x64\x6f\xf7\x9f\xff\xf9\xe5\xc9\xf6\xf5\xb7\x7b\x85\xe9\xea\x0b\x2e\x49\x5f\x80\x8b\x01\x58\x20\x57\x40\x9e\x9f\x9f\xad\xa5\x8d\x3b\x40\x90\xb8\x03\x7c\xcc\xa0\x4c\xe5\xfe\x1e\x8f\xde\x76\xcd\x23\x76\x23\x44\x9a\x19\x1d\xda\x96\xda\xab\x32\xe9\x50\x73\xa3\x2a\x5b\xa0\xed\xbe\x97\x6c\xcb\x55\x0f\x2e\x8a\x1e\x2f\x6f\xc9\xaa\xf7\x53\xed\x5b\x41\x59\x66\xbe\xc8\x07\x5e\xe7\x13\x6a\xbe\xbe\xbc\xf9\x3b\x13\xeb\xaa\x24\xd4\x04\x83\x8b\xd5\xd4\x5d\xd6\xb1\x2f\xf3\xa7\x34\x67\x2f\x0f\x68\xdb\xf1\xe1\x3f\xdd\x77\x58\xcb\x59\x0b\x73\x19\x5e\x6b\x08\x8d\x5a\x8a\xf3\xb5\xec\x8a\x4b\xc9\xa6\xfc\xce\x8f\xf0\x2f\x8e\xd9\xb9\x28\xbf\x2b\x73\x65\xcc\xa8\xea\x8b\x19\xf4\x81\x76\x98\x69\x65\x15\x12\x75\xbf\x4d\xfa\x24\x5b\x30\x89\x97\x75\xd6\x6d\x7b\xd5\x76\xe7\x45\xe7\xd9\xc4\x7e\xae\xa9\x3a\x11\x40\x1d\x5d\xd3\xad\xba\x49\x86\xed\x82\x32\xef\xcc\x62\x53\x02\x37\xa9\xf4\x95\xc3\xdd\x30\xa0\x46\x11\x53\xcd\xc4\xff\x9c\x7e\x2e\xe9\x73\xfd\xfb\x67\x53\x6c\x3f\x22\xa8\x26\x57\x5f\x7a\x5d\x6e\xd1\x35\x72\x18\xcf\xdd\x0e\x79\x69\xb2\xef\x56\x84\xca\xea\xf2\xa6\xc4\x59\x2e\x97\x58\x7c\xcf\xaa\xff\x31\x82\x4e\x57\xee\xf5\x49\x57\xbb\xe7\xb3\xd5\xda\x54\x57\x29\xb7\xc8\x59\xd0\xff\x77\x49\xa8\xa5\xae\x43\xc3\xce\xf5\x37\xc6\x07\x35\xee\x82\x86\xd0\xc4\xa5\x0e\xee\x56\x3f\x0c\xef\xf3\xae\x71\xe3\xcb\xb2\xe6\x30\x44\x2b\xac\x08\xe1\x04\x98\xb4\x09\xee\xfe\x8c\xe9\x01\xa8\x99\xc7\x70\x05\x5d\x83\x81\xd9\x83\xa1\xa1\xb9\x8d\xda\x67\xf9\x0b\x9b\xcc\xf8\xf3\xdf\x53\xe3\x39\x57\x11\xd9\x64\xaf\x6f\x83\x52\x03\xf7\x26\xd2\x0d\x01\xc4\xb4\xcb\xef\x75\x67\x68\x2f\xc8\x71\x34\x5d\x75\xb4\x63\xce\xec\x68\x86\xb0\xd7\xa8\x84\x0c\xf8\xfe\xdc\xc7\x88\x76\xf5\xdc\x1d\xaf\x3b\xdc\x9d\x7b\xc4\xe4\xee\x1e\xea\xb3\x46\x12\x50\xbe\x9d\x7d\x2b\x29\xca\x97\xfd\xa8\x33\x35\x56\x46\x33\xf8\x0d\x21\xa7\x4c\x62\x59\xb4\x9d\xf4\x66\x78\x55\xa2\x17\x1d\x3e\xaa\x7f\x69\xea\x92\xfd\xb9\x27\xbd\xaf\xdf\x7e\xd5\x61\x34\xd3\xef\xc2\x87\x52\x24\xf5\xf7\xf6\xd0\xd4\x65\xd9\x8f\xd6\xae\xbe\x1e\x4e\xfc\x74\x5d\xe9\xf6\x42\x5e\x03\x21\xb9\xd9\x47\x06\xc3\xc0\x7f\x22\xcc\x4f\x6f\x98\x2f\xc2\x9b\x52\xd3\xb4\x74\x7c\x0d\x2f\xd5\xbd\x00\x3e\x8e\x16\xea\x99\x09\x89\x51\x1d\x14\x45\x21\xa9\xd0\xa3\xc8\x38\x49\x4d\x06\x2a\x36\x4d\xf9\xfb\x6e\x10\x68\x1e\x26\x22\x37\x4c\x48\x1a\xeb\xa7\xe7\xc7\xe3\x7e\xe7\x6e\x37\xb8\x0d\x38\xad\xb2\xb3\xde\x22\xc9\xd9\x31\xbb\x96\xdd\xce\x3a\xc3\xf0\x79\x0e\x68\xb3\xc5\x7b\x5e\xe0\x0a\x3b\x6a\xf9\x45\x73\x99\x17\x3b\x85\xc5\xf6\xaa\x18\xaa\x02\x81\x12\xd1\x12\xf0\x5a\x1b\x35\x8d\xde\xc3\x44\x8e\x19\xc0\x60\x95\x8e\x66\x80\x91\xb9\x57\x4e\xa4\xca\x54\xb3\xaa\xee\xce\x8b\xe6\xcf\x4d\x57\xfe\x3a\x78\x74\x62\x97\x71\x13\x89\x87\x0a\x13\xd2\x82\x28\x22\xa8\xaa\x88\x19\x3c\xb6\x52\x28\x5d\xcb\x27\xbd\x5f\x40\x6a\x65\xc6\x7d\x4c\x2e\xe8\xfd\x42\x9a\x0b\x4f\xde\x8f\x6b\x7d\x3a\x52\x54\x45\x57\x64\xe5\xfd\xb4\x87\xb5\xa9\x3c\x79\x89\x22\xad\x26\x48\x3f\xed\x4f\x1a\xad\x72\x4d\x4c\x0d\x83\x1f\x27\x8b\x35\x1a\x1b\x79\x6e\xf3\x83\xe4\x40\xb9\xfd\xd8\x5a\x63\xed\xcc\x87\x53\x76\x38\xd4\x4d\xce\x2f\x39\xe8\x5f\xf9\x35\xe5\x09\x5e\x24\xa2\xdc\xa2\x4e\x84\xad\x5c\x32\x8f\xc6\xd9\x36\xc9\xd5\x3c\x7d\xf4\x48\x00\x0e\x29\x09\xff\xd0\x38\x82\x76\x3c\xc4\x85\xb7\xea\x20\x7b\x13\x2d\x83\x71\x08\x1a\x88\xa3\x0b\x1c\x85\xfb\xcf\xd1\x09\x41\x79\x47\x80\xab\x9d\xd8\x39\x75\xc9\xde\xb6\x73\x0f\x05\xf2\xba\x54\x00\xa7\xa8\xe0\x4d\x69\x15\x66\x40\x22\xd9\x7f\xeb\x13\x18\x63\x5d\x0a\x8c\xbd\x4f\x53\x6c\x82\x5d\xfd\xf2\x52\x32\x91\xd3\xa9\xf7\xeb\xf9\x7a\x17\x39\x51\xe2\x6b\xd8\x9b\x79\xd8\x6a\x9d\xc3\xba\x97\x66\xb0\x24\x3a\xe0\xde\xc0\x3f\xd4\x39\xfb\xc7\xa2\x69\xea\x66\x32\x3b\x9c\xa7\xed\xb4\xf7\xd0\x25\x45\xa3\xf0\x06\x12\x28\x71\x41\xb0\xbb\x91\x64\x8e\x26\x1b\xc7\x0e\xf4\xb0\x9e\x6c\x7f\x7a\xc0\x10\xe4\x21\x25\x79\xb8\x48\x45\xb9\xe8\x07\xff\x1d\x8a\xed\x75\xdf\x95\x48\xd4\x90\x79\xa3\x7b\xf9\x00\x73\xbe\x29\x22\xf6\x9d\x4e\x78\x6d\xd3\x83\x83\xd6\xdd\xb9\x44\xee\xe2\x78\xab\xaf\xae\x4d\x11\x39\x28\xf8\xdb\xdc\x0e\x45\xa2\xfa\x43\x3f\x50\x75\xb7\xc7\x1c\xbc\x29\x03\x5f\x7c\x04\x38\x68\xdd\x87\x97\x4f\x41\xc5\x8d\xa7\x95\x7d\xfd\x2e\xa3\x7c\xf0\x8a\xeb\xdc\x95\x0e\x51\xaa\xeb\xcd\xa7\x03\xa9\xea\x5b\x37\x70\x8d\xab\xb6\xce\xfb\x87\x26\x0a\xde\xf1\x26\x43\x50\xff\xe1\x15\x54\x4f\xf5\xf9\x85\x5f\x22\xb8\x4b\x3d\x75\x69\x13\x24\xaa\x3e\x74\x03\x55\x6f\x37\x0c\x02\xde\x0c\xf6\x62\x8d\x54\x7b\xf0\x40\xa1\xaf\x01\xe4\x45\x65\xa2\x0d\xd4\x0b\x73\x08\x59\xaa\x19\x1e\x27\xf3\xa7\xcd\x64\xbe\x78\xf6\xe9\x7f\x85\x29\x00\x12\x4a\x02\x50\x46\x36\xc1\xf0\x38\x98\xa7\xfe\xea\x1a\x35\x35\xf0\xe5\x83\x25\x36\x4d\x4a\xfd\x87\x78\x49\xaa\xee\xe2\x25\x9e\x51\x75\xd7\x6f\x08\xc5\xd7\x7d\x78\xca\xe7\xf3\xea\xae\x68\xde\x5f\x77\xf7\x1a\x3a\xbc\x69\xee\xc5\x1a\xd9\x02\xe0\xbd\x0d\xdf\x00\x90\x17\xdf\xf1\x46\xd0\x0f\x26\x20\x64\x89\x76\x58\x6d\x26\xf3\xc7\xcd\x64\xfd\x48\xb7\x83\x7b\x7f\x1e\x5e\x91\xf7\x62\x8d\x6c\x07\x90\xe1\xde\x37\x11\xc8\x1b\xfb\x84\x0f\xa0\x52\x94\x23\x64\x49\x2f\x20\x9d\xcc\x57\x8b\xc9\xd2\x3b\x13\x54\x78\x30\x08\x12\xae\x65\x21\x8d\x6c\x06\x33\xaf\xb4\xa7\x15\x54\xa6\x01\xbc\x15\x74\x8e\x60\x97\x2a\xd5\x08\x69\x3a\xd9\xac\x26\xeb\x05\xdd\x06\xb1\x7e\x9c\x38\x6a\xd1\x1e\xe9\x7c\xb8\xe7\x38\x80\xe8\xf4\x34\x92\xd3\x66\xf1\xb8\x7e\x86\xd6\x3d\x7f\xce\x19\xdb\xbc\xcb\x3c\xba\xc2\x27\xb6\x4f\xb6\xc0\x31\x8f\x7b\x0b\x9a\xf3\x34\x41\xcc\xc5\x90\x73\x75\x1b\x40\x26\xf0\xcf\xa9\x88\x48\xf6\x82\xf0\xa5\x8e\xe7\x02\x2f\xb2\xde\x72\x97\x42\x60\xa9\xc4\x57\x0a\x79\xd1\x48\xe1\x9b\xfa\x15\x24\xc6\xd9\x67\x2d\x13\x97\xc9\x7a\xb8\x7e\xed\xb0\x95\x0b\x88\x50\x4d\x92\xd9\xe5\x5a\x96\x62\x09\x13\x51\x2b\x13\xfc\xe6\xe6\x53\x0a\xb2\x9b\x99\x39\x40\x83\xdc\x66\x58\x72\xd0\x47\xb7\x33\xd1\xf6\xbf\x77\x95\x1d\x25\x15\xb1\x04\x8d\xc2\xd5\xa3\xd9\x3d\x23\xb3\xc2\x2d\x47\x90\xfb\x6a\x95\x1a\x99\xe2\x86\x53\x2b\x90\x2b\x30\xb2\x1d\x51\xc2\x46\x0e\x88\x21\xa7\xe4\xa8\xf3\x2e\x2f\x5f\xc0\x03\x8c\x1f\xcb\xc8\x91\xe3\xc9\xb9\x25\xe0\xa6\xc6\x0b\x4a\x30\x23\xd2\xe4\xc1\xe5\xf4\x48\x32\xbf\xc8\x1d\xaf\x6f\x05\x7b\x35\x37\x85\x7e\x81\x1b\x49\x63\xa9\xc6\xec\x2f\x7d\xac\x3f\x90\x55\xd0\xf6\x0f\xf3\x6c\xb1\x59\xda\x39\x73\xd6\xeb\xa7\x34\xb3\x96\xc3\x41\xea\x43\x9e\x8c\xfb\x0f\x8a\x83\xd6\xc7\xbd\x3c\xf2\xa1\x6d\x2e\x2f\xbf\xa6\x7e\x35\xb7\x8a\xc8\x9c\x66\xca\x74\x87\xc9\xd9\x23\xb1\xe7\x60\x54\x08\x99\xe4\xf4\xce\xc7\x2f\xa8\x81\x44\x07\x93\x6f\x43\x27\x8a\xb6\x69\x79\x48\x1d\x20\xb1\x4d\x15\x30\x33\x6e\x91\xc9\xb8\x10\xc2\x7c\xb7\x23\x58\x65\x4f\x06\xae\x3b\xc8\x23\xb5\x26\x9b\x0d\x25\x80\x54\x1c\xd9\xe1\xc1\x92\x88\x21\x1c\xf8\xf4\x14\xee\x74\xf3\xba\x94\x6f\x43\x27\x8a\x3c\xd6\xef\x6a\x4f\x24\x8a\x00\xd6\xf5\xde\xad\x1e\x92\x7c\x6f\xa7\x82\xb5\x47\x13\xa7\xdd\x45\x1a\xa9\x39\xde\x6e\x18\x32\x52\x6b\x7b\x87\x07\x66\x7b\x43\xe8\xca\x2d\x8e\x70\x95\xe9\x14\x6f\x7e\x95\x27\x18\x60\x15\x97\x09\xe3\x62\x49\x60\xd5\x77\xf7\x77\xb0\x4c\x75\xa8\x5a\x55\xe1\x7e\xf7\x64\xa1\xf3\x37\x02\x46\x1d\x69\x01\xfd\x74\x6d\x0c\x3e\x52\x7d\x64\x8b\x03\x4b\xa3\x87\x30\x28\xaa\x63\xfd\xe3\xaa\x8f\x51\x1f\x53\x7d\x0c\xff\x53\xab\x2f\xf7\x39\xc2\xa3\x80\xce\x1b\xe8\x6f\x01\x82\x01\x36\x0a\xd4\x1b\x9a\x91\x24\xb0\x51\xe0\x6e\xf2\x60\xe9\x0f\xb1\x79\x55\xec\x73\x84\xcd\x3f\x9d\xf0\xd0\xdf\x0e\x04\x03\x6c\x02\x50\xaf\xd6\x45\x92\xc0\xa6\x00\x74\x93\xc7\xc9\xdb\x88\x5a\xdb\xea\x85\x35\xc1\x66\xf0\x64\x6a\xf4\x37\x03\x4e\x1f\x69\x05\xfd\x68\x54\x1c\x05\xa4\x11\xb0\x3d\x1e\x24\xdd\xa4\x79\xb8\x27\x43\xec\x6e\xc6\x2d\xa3\xb5\xc8\xd9\xc4\x0f\xfd\x4e\x59\x7b\x2a\xa6\x0d\xcb\x44\x9a\x74\xf7\x54\x90\x03\x98\xe7\x81\xc8\x06\x30\x3f\x6e\xd0\x89\x31\xcc\x93\x63\x23\xf3\x8c\x0c\xfe\x3f\xd7\x55\xcd\x0f\x37\x75\x30\xa0\x08\xc1\x3d\xd7\x75\x77\xe2\xaf\x49\x5e\xbb\xda\x8e\x84\x36\x85\x4d\xcc\xca\x89\xdc\xb9\xed\x04\xad\x0c\x06\x89\x89\x6f\x2e\x5e\xe4\x6a\x8e\x60\x27\x76\x9b\x22\xb8\x09\x40\x10\xe2\x2b\x16\xa6\x7d\x1d\x13\xed\x56\x10\x6c\xfa\xda\x8b\x04\x9d\x11\xac\x06\x60\xb5\x75\xb6\x3c\xac\x9f\x1f\x1f\x83\x1d\xac\x9e\x8a\x49\xf2\xe2\x1b\x50\x18\x19\xc8\x44\x28\x40\x08\xcd\x7f\xa6\x3a\x7f\xf0\xd6\x7a\xbb\x15\x64\x78\xa0\x93\x07\xee\x97\xf6\x92\x55\xa3\x80\x7d\x18\x9e\x96\x1d\x8f\x71\x27\x23\x54\xc8\x51\x6d\xd9\xe3\xf6\x7f\x1f\xea\xf3\x99\x55\x1d\xc1\xd7\x82\xb2\x73\x74\x20\xf4\xda\xae\x29\xaa\x97\x09\x5d\x34\x5d\x04\x78\xb9\x14\x48\xa0\xe9\xe2\x66\x79\x77\x08\x5b\xef\xd8\x80\x40\x37\x1d\xd6\xba\x62\xeb\x27\x94\xda\xb7\xac\x29\x44\xfa\x26\x4f\x61\xb0\x8e\x18\x15\x0f\xd8\x50\xcf\x79\x9e\xb1\x7e\x5e\x41\x98\xe7\xec\x18\x20\x97\xb3\x63\x44\x7b\xd5\x17\xd6\x64\x1d\x69\xb8\x6c\xb0\x08\x9d\xf8\x8d\x7d\x7f\xad\x9b\x3c\x40\x50\x42\x0d\x49\xee\xf3\x7c\xfd\x88\xd2\xcb\xba\xfa\x1c\x20\xd6\x83\x28\x4a\x4f\xe9\x63\xce\x70\xc9\xce\xac\xcb\xd0\x9e\xec\xb2\x90\x06\xda\xa8\x08\x48\x97\xbd\x44\xb4\x77\xd6\x89\xb7\x86\x70\x95\xfa\xb7\x6b\x56\x16\xc7\x22\xa8\xc0\x28\x15\x04\x4e\xd3\x1b\xda\x39\x4d\x9f\xf0\x76\xbe\x34\x7d\x27\x77\xdf\x03\x24\x15\x58\x44\x5d\xf7\xd7\xa2\xec\x8a\xca\x3f\x78\x96\x01\x7e\x08\x11\xdf\xd8\x59\x7a\x6a\x6a\xda\x55\x11\xea\x25\x2e\x58\x69\x43\x1a\x61\x8f\x51\x3c\xb8\x76\x58\xf5\x3f\x24\xe3\x73\xd6\x1d\x7a\x67\x66\xdf\x64\x87\xdf\x18\x65\x8a\x3d\x18\x4e\xb6\x98\x21\x4f\xa0\xe9\x8b\xc6\x7a\x3d\xb8\x00\x01\xaf\x8e\xbb\x45\xef\xb3\x43\x7d\xf9\xae\x92\xe2\x59\xb9\x43\x1b\xfd\x30\x9b\x3a\xbe\xe0\xfb\xa1\x06\x46\x22\x5f\x84\x94\x1d\xa6\xaf\x1c\x21\x20\x7c\x59\xd4\x65\x5d\x71\xf0\xa4\x12\x44\xf0\x92\xf6\x9b\x7c\xa9\xcb\xcc\xe3\xf0\x3e\x3b\x94\xc5\xf4\xb5\xa8\xf2\xfa\xd5\x7e\x72\xca\xd8\x4f\x34\x3d\xe2\xe1\x9a\x94\x38\xc4\x1a\x08\x24\x3c\x59\x84\x91\x88\x00\x14\x0e\xe7\x40\xd6\x76\xdc\x00\xc3\x13\x7b\x94\x59\xdb\x57\x0e\xc4\xd3\xd9\x37\x7d\x7d\xd1\xdd\x6e\x8e\x88\x21\xc8\x6f\xc9\xce\x3c\x06\x3e\xe1\xbf\xf5\xff\x41\xf3\x68\x47\x3e\x7e\x0c\x17\x18\x3c\x33\x33\x76\xc4\x22\x12\x36\x0e\xd7\x6c\xed\xb3\x58\xbb\x72\xea\x8d\xc1\x88\xdc\x01\x91\x82\x4e\xcc\x04\x43\x3d\xa0\x0e\xfb\xb2\x79\x9b\x49\x4a\x7c\x12\xcc\xee\x79\x27\x17\x79\xbe\x25\xbe\xb1\x27\x4a\xf6\xfe\x7f\xd6\x29\x7a\xef\xe1\xf9\x6a\x12\x8a\xc5\x8f\xad\x69\x30\xa6\xdf\x38\x31\xa2\x5a\xe3\x71\x7d\x8f\xb0\x97\x86\x1d\x8b\xb7\x0f\xc9\x29\x48\x90\xb1\x14\x5c\x2e\x61\x2a\xa6\xe6\x33\x55\xe0\xe1\x52\xf7\x58\x7d\xf4\x4b\xe1\xfc\x55\x41\xdd\x00\x30\xc2\x19\xc9\xee\x82\x21\x7d\x1d\xd0\xcd\x33\xf5\xe9\x9c\x9f\x32\x21\x08\x83\xd9\x30\x4b\x7d\xb9\x4b\xac\xcb\xb5\xc4\x03\xc1\x38\x17\xf8\xcc\x72\x88\x97\x3b\x96\xc9\xc1\x8a\x31\x35\x4f\x32\x43\x15\xc6\x71\xc2\xcd\xe0\x89\x09\xc0\x8f\x02\x09\x51\x87\x18\x92\x68\x49\x4d\x94\x38\x41\x03\x69\xea\xdc\x63\x49\x27\x25\x88\xf9\x82\xa0\xbe\x6d\xb5\xb3\x6f\x2a\x11\x99\x32\x90\xa8\x74\xcd\xa0\xe8\xd8\x39\xe2\xfa\xdc\x88\x24\xea\x9a\xb4\xc7\x3e\x80\x71\xaf\x17\x2b\x43\xce\xa1\x8b\x38\x3f\x75\x48\x39\x10\xe3\xcc\x12\x49\xd7\x03\x4b\x4b\x0f\x5e\x7d\xb2\x45\xc3\xe7\x4a\x5d\x36\x3c\x26\x59\x16\xc9\xb5\xf4\x5d\xf6\x75\x5e\x4c\x49\x5d\x66\xd8\xed\x18\x31\xc5\xdb\xc7\xe5\xc6\x2d\xdd\x15\xe6\x39\xd9\x94\x7f\xb9\x96\xe0\x56\xb2\x5d\x9e\xd8\x5f\x10\x79\xb1\xe4\x30\xf6\x55\xf8\x08\xca\x89\x18\x04\x78\x06\xe5\xe5\xe5\x2d\xe1\x43\xa2\xa8\x86\x67\x4a\x2e\x6f\xb4\x63\x43\x71\xf9\xea\x54\x08\xbf\x23\xef\x78\x2b\x14\x41\x65\x7a\xc3\x80\xce\x3b\x70\xca\x81\x1b\xfc\x34\x73\x57\x72\x31\x08\xa3\x0e\x54\x22\x85\x11\x2d\x19\x2d\x92\x6c\x78\xb0\x82\xd8\x80\xb6\x7e\x7e\x02\x56\xcb\x25\xc7\xce\x97\xee\x3b\xd1\x75\x4f\x97\xb7\x84\x67\x67\x54\xbb\xd0\xf2\x5e\x0f\xc7\x99\xaa\x17\x3d\xad\x37\x6b\xe8\x43\x70\xd3\x8e\x02\x12\x09\xfc\x93\x1f\x23\xf0\xd4\xa6\x43\x22\x89\x85\xf9\xf8\x2a\xb7\x4a\xd8\x13\xef\x5e\xaa\x20\xf0\x29\x4d\x16\x2a\x8d\xb7\x49\x62\x67\x19\xbe\x20\xc1\xa4\xed\x9a\xba\x7a\xb1\x0d\x26\x00\x34\xe3\xd2\xac\x20\x34\x26\x36\xb6\xeb\xaa\xcb\x8a\x4a\x3f\xaf\xe1\xa4\x68\x33\x63\xcb\x16\xeb\x6f\x27\x6f\xfc\xa2\x78\xde\xde\x79\xa9\x51\xbc\x11\x8f\xbd\x4f\xef\x74\x98\x23\x57\x22\x3f\xa8\x2e\x97\xba\xb5\xfe\xf6\x6a\x3e\x46\x20\x4e\x40\xfc\xa8\x89\xc8\x3c\x78\xc3\x3a\x0f\x47\x6c\xbb\xec\xf0\xdb\xb4\x6b\x86\x4c\x11\x31\xaf\xb3\xda\x67\x5a\x24\xf9\xb2\xa8\x7e\xd3\xa9\x6c\x84\x29\x59\x0f\x13\xb8\xfe\xdb\x67\x6a\x76\x74\x73\x60\x4a\x7a\x6c\xa7\xec\xed\x52\xd6\x0d\xe8\x6f\xf0\x5d\xbe\x0a\x1b\x8e\x9b\xa3\x9f\x13\x30\xa9\x89\xb4\xc1\x19\x9e\x2d\xd7\xda\x0c\x40\xf0\xd4\x43\xcf\xfc\xd6\x28\x9d\xfc\x11\x56\x60\xdf\xb0\x2c\x3f\x34\xd7\xf3\x3e\xc9\x26\xa8\x34\x88\xff\x4e\x52\x90\xd3\x30\xcf\x26\xc5\x91\xfa\xce\x2a\x2a\x9d\x70\x1c\xa1\xef\x47\xb9\x65\x55\x71\x16\x35\x68\x2f\x45\xf5\xef\xb8\xa6\x24\xb3\x75\x9b\x14\xd5\xb1\xa8\x8a\x8e\x25\xe2\x3d\x5d\xb5\x46\x5f\x38\x13\xb8\xa5\x73\xcf\xe9\xea\x69\x63\x44\x43\x72\xd7\x51\x34\xae\x99\x04\xcb\x59\xf4\x99\x85\x48\x26\x41\x61\x91\x8d\xf7\x61\xa5\xca\xb0\x33\xf2\xde\xab\xf0\x37\xa7\x22\x9e\x53\x27\xbc\x5d\xa7\x3f\x27\xd3\xe4\xcb\x9c\x9d\x93\x3f\x25\x8b\x87\x07\xb2\x9d\x6f\x43\x1e\x27\xaa\x27\xca\xc2\x48\x5d\x0e\x26\x05\xb2\xef\xc0\xe0\x1a\x1e\x62\xd6\xf9\xe0\x60\x6c\xc2\x90\x8e\xca\x4e\xba\x8d\x3f\x3b\x47\xb1\x9d\x0d\x29\xc5\xb3\xc9\xac\x38\xf7\x06\xfb\x58\xd8\x0f\xa3\x79\xc4\x26\x32\x4c\xc7\xe8\x3b\xa1\x7a\x37\xec\x4a\xeb\x9d\x2a\x7f\x53\x5d\xdd\xd3\x90\x8f\x9d\x9a\x33\x06\x95\xec\x48\x1e\x24\x3b\xf9\xb6\x05\x09\xfb\x81\x6f\xe8\x49\x8f\xc8\x95\x2c\x25\x02\x52\x88\xfe\x12\x25\x7c\xff\xe1\xc2\x2a\xfb\xda\xc5\x32\xe5\xb7\x2f\xd7\xf3\xfd\x7c\x11\x14\x4a\xd9\x2c\x0c\xb0\x77\xe3\x81\xf4\xee\x76\x81\xf5\x0c\xb6\xf9\xb2\x2d\xfa\x90\x03\x2f\x7a\x18\xd2\x52\x2f\xd2\xdd\xd0\x39\x5b\x8d\x92\xb0\xac\x65\xd3\xa2\x9a\xd6\xd7\x2e\x99\x2d\x5a\x4a\x3a\xdd\x04\x28\xb3\xf4\x81\xc2\x4b\xe4\x77\x79\xcf\x79\x42\x82\x55\xf5\x39\xcb\xa7\x65\xfd\x52\xcb\xd7\xf9\xd5\x48\xa5\x10\x7a\x50\xc3\x17\x09\xbc\x14\x8c\x39\x28\xe6\x5b\xba\xe6\x92\x78\xc1\x3d\x03\xc5\x97\xf7\x8d\xd1\x8c\xaa\x84\x9f\x0b\xf4\x8e\xa9\xed\x8e\x92\x09\x6e\xff\x90\xb2\xd5\x7a\x99\x6a\xa3\xa1\x12\x9b\x71\xb3\x37\x4f\xd3\x6f\xaf\xc9\xd7\x44\xf6\xdb\x20\xee\xb7\x13\x4c\x74\x8b\x74\xc0\xbf\x7c\x99\xf6\xf5\x7a\x30\x7b\x58\x32\xb1\xfb\x77\x50\x88\xf9\xf3\xf8\x21\x42\xea\x2c\xaf\xba\xd3\x32\x3e\xa5\xf9\x97\x2f\xe9\x83\x6e\x89\xd9\xa3\x1e\x16\xea\x42\x3c\x3e\x1a\xec\xb7\xc2\xed\xf7\xaa\x67\x8f\x7d\x67\xea\x1c\xc1\xa0\xd7\x85\x5a\x3d\xa5\x87\x75\x96\x39\xeb\x39\xc0\xfc\x97\xf6\xdb\x8b\x72\x76\xd6\x97\xb7\xf1\xed\x64\x57\xc2\xdc\x47\x79\x7f\x37\xed\x3b\xe1\x42\xdb\x61\xae\x88\x63\x36\x10\x49\x8c\xdf\xa7\xfc\xd7\x9b\x91\xb5\x94\x84\x3c\x64\xe6\x42\xdb\x08\x1c\xf7\xc3\xeb\x8b\xc0\x50\xed\xad\x25\x85\xac\x71\xce\xb8\x7b\x22\x56\x71\x62\xf9\x67\x25\x7f\xbf\x5e\x2e\xac\x39\x64\xad\x9d\xed\xd3\x4a\x3f\x0e\x26\xa3\x05\x7c\xb2\x1b\x24\x13\x35\x5f\x36\xc0\x84\xb8\x64\x45\x03\xa7\xb6\x05\xaf\x33\x01\x9a\xcc\x3a\xd6\x9c\x9d\xdc\xe8\x80\x80\x6c\x35\x82\x82\x7d\x4b\x4e\xd6\xc8\xc7\xf2\x94\xb5\xfd\x4a\xf7\x94\xb5\x85\xfd\x26\xae\x53\xc7\x7f\xad\xf7\xd3\xbc\x38\xea\x18\x00\x39\x65\xa2\xf1\x56\x03\x34\xf7\x37\xf2\x9c\xe5\x13\xf0\x29\x67\x25\xeb\x98\xf5\x76\xc2\xfc\x70\x82\x88\x2c\x2f\x1c\xa0\x85\x09\x94\xcc\xfa\xff\xea\x95\x80\xd1\xef\x32\x9f\xea\xe0\x57\xc5\x21\x6b\x71\x01\x95\x69\x14\x9e\x94\x16\x20\xae\x62\x10\x55\x63\x8c\x63\x99\xcc\xce\x59\xf3\x9b\xf0\x19\x84\xc8\xd6\x01\x7a\x2c\xb2\x94\xdb\x0a\x6d\x8c\xc5\x56\xc2\x5b\x41\x81\x04\x3a\x1f\xc2\xce\x8b\x19\x14\x70\x5d\x1a\x6a\x63\x15\x1e\x4e\x59\xf5\xc2\x6e\xc6\xa1\x98\x93\xc9\x8d\xc0\x14\x2f\xa4\x81\x94\xe4\x7e\x58\x7e\xeb\x05\xc0\xf7\x5f\x02\x38\x07\x56\x96\x16\x52\xff\x29\x02\xeb\x2b\x49\xce\x54\x10\x3e\x58\xca\x9a\x3f\xc4\x33\xfd\xff\x78\x3b\xfe\xdd\x46\x71\xe6\xab\x20\xad\x2a\xed\xea\x12\x04\x49\x48\xb7\x7b\xd2\xea\xfe\x38\xe9\x1e\xe0\x7b\x02\x9a\xb8\x29\xdf\xd2\xc0\x01\xe9\xb6\xaa\xfa\xee\x9f\xf0\x8c\xed\xf1\x78\x0c\x34\x7b\xf7\x69\xa5\x6d\x00\xcf\x78\x6c\x8c\x3d\xbf\x67\x94\xd5\x9c\x9e\x64\x37\xf2\x6a\x56\x67\x6a\xa5\x76\x50\x30\x26\xb0\x55\x33\xc8\x84\xdf\x58\xf7\x7f\x5f\xca\x4e\xd9\x1a\x94\xf6\xd4\x18\x7f\x46\x33\x33\x90\x1c\xb2\x4e\x90\x94\x31\xff\xd5\x55\xc7\xff\x1c\xca\x5a\xfd\xa9\xea\xf2\x35\xc9\xd3\x2d\x91\x31\x09\x2f\xb1\x98\xd4\xdc\xc9\xae\xe3\xa2\x2c\x5f\xbf\x69\x2e\x73\x21\xf4\x26\x84\xde\x2e\x87\xde\x86\xd0\xbb\xe5\xd0\xbb\x10\x3a\x5f\x0e\x5d\xfc\xd2\xb8\xf7\xbf\x34\xee\xdb\x00\x3a\x5b\x0e\xfc\xf5\x97\x86\x7d\x27\x0e\xfb\x0f\xe3\xe8\xfb\x43\xbd\x3e\x74\xe5\x93\xea\x93\x25\xcb\xef\x2d\xbb\x59\x8d\xec\xd0\xea\x36\xbb\x21\x3c\x64\x3f\x36\xd8\xfe\xf9\x39\x5f\xe5\xab\xfc\xcb\xfb\xb6\x90\x1e\x66\xab\x6c\x7c\xf8\xfe\xc7\xff\xbf\xcb\xf4\x49\x0d\x5d\x75\x80\xec\x65\xa2\xb1\x99\x14\xea\xa0\xa2\x8a\x56\x8d\x6a\xcd\xa7\x8f\x23\xc1\x2b\x1e\x08\x3b\x15\x46\x1e\x2a\x8b\x17\x68\x61\x89\xd5\x03\x84\x20\x89\x8a\xdf\x0c\x35\xa1\x81\x5a\x6a\xfe\xc1\x7c\x67\x31\xab\xab\x88\x3a\x4c\x63\x76\x95\x99\x54\xc2\x9d\xba\x0c\x57\xb1\x60\x48\x21\x1a\x71\x06\x97\xe1\x81\xa9\x03\x57\x0c\x00\x53\x4c\x4d\xc4\x24\x46\x83\x02\x67\x90\x32\x2a\x8c\x6e\x29\x06\x83\x01\xee\x13\xa1\x81\x72\x6c\xde\x0c\x46\x3e\x17\xa8\xcb\x8f\xc1\x40\xc0\x71\x2c\x48\x4f\x88\x93\x9b\x46\xc5\x7a\xd7\xc1\x74\xb1\xf6\x36\xf3\xd1\x44\xb0\x5c\x34\x52\x6d\x16\x2d\xa7\x04\xd9\xc4\xf8\xdc\x9d\xf9\x3c\x48\x35\xd1\x84\xa8\xa9\x69\x9c\x8c\x0c\x63\x09\x8c\x81\x40\x22\xa0\x7f\x96\x8c\x11\xe7\x07\xc9\xb0\x39\x79\x26\x22\xb8\xa2\xe1\x53\xb3\x68\xf9\xab\xc1\x30\xab\xe8\x27\x6e\x12\xe3\x4c\x85\x51\xc5\x62\x98\x66\xd1\xf2\xef\x05\x05\x82\xf8\x22\x3f\x13\xef\x11\x31\x96\x29\x1a\x4a\x34\x87\x95\x91\x62\x84\x8b\x18\x90\x5f\xd4\xd1\xcb\x2a\xc9\x6e\x2e\xdd\x40\x34\x46\x46\x85\x31\x25\x49\x30\xa6\x29\x29\xe0\x95\xe6\x46\x87\x10\x8a\xf5\x2e\xfd\x8b\x8c\xec\xb9\xac\x2f\x9e\xb9\x37\x70\x82\xcd\xde\xc3\x82\xd3\xa2\x36\xc8\xf0\xef\x90\x9d\x11\xce\x5e\x9a\xa9\xd1\x9c\x53\xe9\xf6\x96\x67\xbd\x30\xfb\x76\xd0\x51\xda\xa9\xf2\x28\xd5\xab\x93\xda\x42\x1d\x82\x20\x08\x4e\x6a\x8a\xb9\x76\x75\x45\x56\x2f\x2c\x45\xb5\xaa\x1c\xb4\xe4\xa8\x8d\x50\xeb\xd3\x48\xb4\x3a\x0f\x9f\xd7\xbb\xe2\xa8\x4e\x2b\xb4\x3c\x9a\xbf\xc9\xb6\x7d\x59\x7d\xba\x3b\x8c\xff\xbc\xdf\x50\xe6\x58\xea\x58\xd5\xd5\xa9\xba\xf7\x53\x14\xd9\x4f\x80\xa8\x8e\x71\x36\x37\x7b\xdf\x45\x45\x5f\x83\xfe\x4f\xaf\x2b\x07\x91\xa4\xb0\x3a\x89\x26\x32\x6d\xcb\x93\x5a\xd7\xe5\x6b\x73\x19\x68\xcc\x5c\x98\xbc\x41\x64\xa2\x3c\xf8\x04\x2e\x1e\x55\x79\xa4\xde\xbb\xa0\x1a\x26\xba\x3f\xa7\x95\xb5\x95\x88\xa0\xd2\x64\x60\xfa\x08\x91\x6b\x4f\x81\x80\xae\x6f\xb9\xe4\xd2\x18\x98\xd9\xdb\xf2\xa0\xd6\xf7\x6a\xf8\xa9\xd4\xd9\x33\x23\xe7\x9a\x33\x92\x7b\xc3\x9f\x30\xde\x37\x93\xa8\x75\x41\x5b\x7d\xd8\xa8\x07\x98\x56\x6a\xc2\x70\x86\x68\xb8\xe6\x4a\x74\x63\x7d\x73\x25\x38\xa9\x61\x23\xd8\x37\x16\x92\x12\xe6\x2e\x82\xde\x7d\xb5\xfc\x4d\xb2\x36\x5a\x79\x47\x66\xf8\xf0\x23\x5a\xe2\x8f\x4c\x15\x28\xff\x23\xc5\xba\x81\xac\x65\x86\x9d\x0f\x74\x3a\x6f\xed\xb9\x7a\x86\x69\x35\x97\xf7\xf7\x14\x99\xa0\x35\x8a\x14\x51\xaf\x73\x31\xaf\xed\x2d\xa9\x3c\xbb\x2b\xc7\x7f\x1c\xa1\x71\xe0\xf0\x7d\x71\x58\x85\xd3\x10\xc8\x5c\x9f\xba\xb2\x7d\x74\x0e\xfb\x79\xa1\x85\x22\xde\xda\x26\x2e\xb3\xed\x7d\x39\x0d\xfe\x17\x4e\x97\x59\x44\xdf\x53\xfc\xc6\x7c\x8b\x55\x7a\x0b\x75\x6a\x38\x7c\x79\x3e\x37\x03\xab\x08\x8c\x79\x7f\xa9\xff\x9e\x01\xc7\x9a\x36\xf7\xcd\x8b\x9f\xc9\xd8\xac\x71\x70\xec\x23\x9f\x6a\xe6\x7d\x9a\xce\x11\xc2\x21\x1a\xa7\x4e\x3d\x54\x2f\xe8\x7a\x4e\x1f\xf4\x97\x07\xf3\x40\xa8\x30\x66\x3e\xe7\x22\x8b\xa2\x4b\xda\x72\x78\x8c\xe2\xd4\x4f\xd1\x74\x68\x8c\x10\x91\xa6\xe8\xbc\x36\x89\x0e\xbd\x48\x08\x52\x63\x8f\x8c\x50\x07\x99\xe9\x61\xb2\x75\x99\xdf\xec\x26\x62\xaa\x2b\xb2\x1b\x5b\xdd\xb2\x70\x2a\x41\x6d\x69\x8a\x8e\xbd\x7f\x3e\x31\x83\x8b\x6c\x39\x8a\x0e\x1a\xf7\x11\x53\xae\x98\x9e\x69\x88\x09\x3f\x27\x56\x83\x9d\x87\x34\x90\x08\xe9\xd8\x9b\x18\x69\x8d\x57\xdf\xf3\x5d\x44\xdc\x76\xab\x7f\x9a\x99\x9b\xb4\x75\x8e\x13\xf8\x9e\x0e\xd5\x93\x8e\xcf\x4a\xec\xaf\xf5\xb9\x19\x14\x29\x71\x8f\xb7\xc3\xea\xf5\x09\x77\x58\x31\x25\xaf\x67\x96\xcc\x9b\x75\xa0\xf4\x1b\x8e\x88\xbb\xc6\x77\x70\xa5\xcf\x75\x95\x05\x6f\xa9\x41\xdd\x05\xf2\x0a\xed\x07\xbe\xd3\x19\xce\x60\xdf\x18\x7f\x9b\x12\x38\x01\x3e\x2f\x7f\x1e\x47\x2d\xa6\xcb\x73\x69\xc0\x13\xf8\x6d\x71\x57\x4f\x6d\xad\xb4\x1f\x31\xad\x09\x74\xac\xfa\x43\x52\x9d\xfb\xea\xa8\x3c\xfb\x78\x8e\x55\x79\x0f\x8f\x65\x37\x24\xf0\x67\x3d\x34\x4d\x3d\x54\x6d\xd2\xd4\x6e\xe6\x79\x81\x21\xaf\xa7\xa4\xae\x82\x62\xbf\x9a\x18\xe0\xfc\x06\xf5\x32\x70\xb3\x9b\xf7\x10\xf8\x44\x60\x75\x6d\x1c\xed\xdd\x6e\x7f\x2b\xb4\xd2\x4c\x2e\x93\x56\x82\x46\x1e\x7b\xcb\xcc\x99\xb4\xb1\x55\x0c\x51\x2d\x0e\x6b\x00\xca\x1b\xa6\x60\x61\x6d\xbc\x80\x31\xa3\xfe\x60\x6d\xb4\xd6\x83\xea\x28\xd8\x73\xa3\x9a\x60\xca\x03\xd6\x6a\x14\xac\x57\x61\xf7\xe7\x1f\x5c\xcc\x66\x4d\x8c\x74\xcd\xe4\x5f\x3e\x19\x28\xf6\x32\xc1\x34\x18\x89\x96\x47\xd9\x4b\xb0\x2b\x25\xf4\x77\x21\x15\x8c\xdf\xc3\x6f\x39\xdc\x5f\x58\xdd\x4e\xfc\xb6\x98\x6f\x25\x0a\x9a\x06\xf7\xdd\x9d\x43\xfd\xbd\xae\x96\x52\xc1\xb6\x1c\x66\x09\xf5\x4f\xdb\xed\x78\x1e\xc4\xcf\x01\xdf\xca\x1d\x96\xa2\x8b\xed\x72\x54\xa9\x4a\x7a\x8b\x13\x39\x31\x73\x64\xff\xa5\xdb\xb2\xcf\x78\x79\xdb\xb3\x30\xa0\x91\x19\xbd\x59\xc1\xa0\x96\xe5\x36\x85\x82\xe0\x01\xb1\xcd\xfd\x7f\xd5\x61\xe0\x79\x5b\x23\x73\x01\x8d\xbf\x4f\xe6\x7c\x1d\xe7\xa4\x69\x6a\x1a\xf8\xa5\xa5\x24\xb6\xf9\xe8\xd3\x6f\x5a\x3e\xf2\x53\xaa\x7a\x7b\xe2\x1a\x05\x74\xcf\x31\x00\x6f\xda\xfe\x13\xf3\xc3\x2b\x10\xe4\x11\xe0\x87\xd7\x6e\xbd\x7b\xe8\x6d\x00\x37\xc1\x6e\xd0\xab\xfa\xc1\xe8\xf7\x35\x75\xa7\xae\xf9\x39\x0a\x63\x62\x8f\x96\x23\x07\xc3\x80\x3a\xbe\x39\x98\xec\xf7\x20\x87\x2b\x0a\x34\xa2\x2c\xf3\xed\x76\xff\x55\x8b\x32\x84\x89\x24\xd6\x03\x60\x94\xa3\x44\x3c\x35\xf7\x55\xad\xc0\x35\x58\x43\x10\x42\xf2\xdf\x27\xc4\x05\x3c\x65\xa4\x38\x58\xbf\x38\x5a\x59\xd7\xb6\xb5\xf5\xbb\xb5\xd7\xf6\x53\x08\x0b\xaa\x39\xe7\xac\x88\xd3\x51\x41\xc5\xf5\x22\xe3\xbd\x58\x2e\xa3\x1c\x86\xee\xb3\x2e\x4d\xa6\x75\x4f\x5f\x04\xdd\x8d\x20\xdb\x88\x3a\x22\x2e\x1d\x73\xeb\x3a\xd9\x31\x82\x42\x8f\x91\x88\x2b\x3f\x6e\x66\x53\x48\xb1\x35\x86\x71\x28\xda\x97\x24\x27\x06\x6b\xbb\xcb\x6a\xce\x45\x96\x4c\x0b\xe6\x8e\x06\x10\x49\x9a\xf7\xbe\x15\x99\xbf\x12\xee\x54\x64\x3d\x8c\x83\x3a\xcd\xc4\xc7\x7d\xef\x36\x1a\x36\xb1\xc0\x39\xd8\xc7\x82\x6b\xb3\x89\x42\x11\x5a\xc0\x89\xe2\x7d\xe5\x7b\xe3\x6e\x89\xd2\x76\xd3\x46\x87\x94\x96\xf5\xcf\xf2\xd5\xb8\xf5\x06\x6b\x50\xcb\x17\x66\xcd\x38\x37\x62\x33\xb3\x9b\x91\x87\x8c\x60\xb2\x0c\xae\x8f\x0a\x67\xd0\xe1\xd2\xc2\x1e\x20\xfa\xd9\xac\xfb\x41\xb5\x26\x88\x5f\x5c\x65\xe1\x37\x45\xd4\xa5\xbb\xf6\xc5\x5f\x33\x01\x52\xcd\x06\x3f\x54\x1d\x1a\x7f\x35\xff\x16\xf5\xdb\x83\x38\x32\xed\xf8\x3d\xd5\x09\x97\xd4\xd9\x71\x29\x85\x0d\x6a\x6e\x34\x3d\x56\x3d\x64\xce\xa8\x58\xc8\x2f\x93\x3e\x74\x1c\xbf\x08\xe1\x49\x5c\x92\xc6\x96\x8a\x4e\x33\x78\x92\xf4\xbe\xec\xfa\xa4\x1b\xcf\x35\xc1\x45\x33\xdd\x7a\x2b\xc8\x39\x95\x2f\xc0\x99\xda\x6a\x46\x56\x83\xb9\x59\x02\x36\x94\xdd\x49\x0d\x16\x28\x5b\x02\xd3\xd7\xd5\x41\xad\xf3\x37\xa3\x48\xc5\x54\x2e\x0b\xe1\x36\x08\x67\xb8\xc8\xa5\x70\x5b\x84\xcb\xb2\x63\x7e\xbf\x68\x6c\x00\xb7\x43\x38\xc3\xdb\x2e\x85\x2b\x10\xae\x38\xec\x94\x2a\x96\xc3\xed\x11\xce\xb0\xb6\x32\x5c\xda\xb7\x75\x35\xe8\x9c\xcf\xa1\xce\x76\x22\xad\xbb\xf1\xfa\x9c\xc5\x9a\x38\xdf\xd5\xc2\xa9\x06\xb6\x90\xee\x6d\x16\x38\xad\xd5\x49\x9d\x8f\x41\x65\x58\x87\xd0\xcf\xf7\x3d\x37\x04\xc6\x31\x09\x7e\xd9\x9c\xe3\x5a\x3e\x50\xa4\x75\x94\x23\xfd\xaf\x7b\xba\xac\x3b\x39\x93\x58\x3b\xbe\x95\xc7\xf9\x58\xa9\xb2\x16\x1e\x8e\xfa\x96\x70\xb0\xa3\xc7\x56\x11\xdd\x28\xe4\xa1\xa1\xe5\x6a\xf5\x41\x20\xb0\x50\x31\x8f\xda\x40\xed\x09\x38\xf5\xd6\xa6\x7f\xae\x82\x3b\x82\xde\x69\xc1\xde\x29\x53\xe5\x62\x5c\xc2\xec\x2e\xbc\x06\x8b\xce\x6b\xf6\x41\xdc\x10\x1b\xea\x9f\x10\x7e\x46\xbf\x6b\x10\x32\x2b\xa3\x71\xde\x15\x27\x8a\xe8\x73\x2c\xc7\xf5\x5c\xf5\x95\x76\x65\x0c\x20\xd2\x43\x79\x7e\x2e\xfb\x24\x85\xe0\xd1\x71\xf3\xa0\x0b\xb5\x1f\xba\xe6\x87\x32\x0c\x75\xba\x29\xa6\x50\x68\x16\x60\x8d\x9b\x7a\x04\x15\xbd\x25\xe1\x2a\x5f\xaa\x5e\x87\x91\x09\xcb\x00\x1e\x6a\x6d\x28\x22\xb3\xf6\xd6\x48\x5b\xd0\xdf\x80\x3a\x36\x36\x67\xe9\xa9\xab\x74\xe8\xac\x87\x1a\x87\x2c\xac\x4f\x0a\xa0\x27\xcd\xd0\x02\x65\x41\xcc\x94\x1d\xcb\xfe\xb1\xec\xba\xf2\xf5\x5b\x91\xe4\x22\x1a\x98\x36\xea\x96\x43\xb1\x3d\xb8\xe3\x82\x00\x81\x6d\xf3\x2f\x34\x6d\x92\xac\xe5\xda\x61\xeb\xad\x77\x31\x72\x9a\x31\xd7\xd7\xf6\x4c\xde\x7f\x04\xe1\xb8\x01\x4f\xa3\xcb\x26\x16\x03\x75\xf3\xa1\xa3\xb2\x29\x89\xe6\xe9\xc0\xac\xe4\xe1\xc0\x90\xbb\xbe\x66\x6c\x88\x93\x8f\x4d\xc4\x38\x37\x3c\xe3\x3f\xe4\xbd\x34\x93\x4f\x73\x9e\x14\x4c\x39\x2e\xbc\x37\xf0\x63\xba\x66\x78\x88\x33\x78\x75\x12\xc6\xb9\xe1\xa1\x7f\x12\x1d\xdd\xc6\x71\x14\x93\x64\x40\x5a\xf1\x70\x64\x9b\xed\xee\xaa\x61\x01\x3e\x3e\xaa\x10\xdb\xdc\x90\x9c\xaf\x93\x37\x2a\x93\x53\x6e\x02\x12\x9d\x82\x22\xdb\x12\x5d\x13\x67\x3e\x69\x3e\xe7\x37\x39\x4e\x9b\x92\x5c\x98\x3a\xf0\xec\xba\x66\xf6\x2c\xd6\x60\x02\x25\x9c\xe2\x1c\x4a\x2b\xed\x2c\xbe\x62\x74\xb8\xba\x6e\xf1\x9e\x85\xb7\x2c\x22\x5c\x48\x24\x64\xf8\xfe\x47\x89\x04\x94\xd7\x13\x49\xd6\x8a\x73\xef\xf2\x56\xa3\x27\x98\x4c\xd2\x62\x73\x77\x0b\xcb\x05\xbc\xcd\xae\x19\xa1\xc5\x1a\x2c\x17\x09\xe7\xdc\x20\x9d\xdb\x98\xb7\x4d\xa2\x76\x7e\xc9\x69\x64\x12\x73\x0b\x1b\x25\x78\xb1\x5d\x75\xc6\x19\xac\xc1\x56\x29\xe1\x9c\xdf\x2a\xd1\x1f\x8d\x8e\xd1\x97\xc0\x66\xf6\x37\x48\xbb\x1d\x0e\x11\x9d\xe3\xae\xdb\x34\x01\x29\x1f\xa1\x88\xd2\x8e\x50\xca\x30\x20\x59\xd8\xa2\xa6\x0f\x2f\x62\x52\xae\x93\xc1\x72\xcb\xed\x25\x55\x3d\xfa\x48\x30\x65\xae\x9f\x00\x28\x12\x75\xac\xd5\x7e\xab\x30\x16\x35\xdd\xf4\xc9\xd0\xb4\x20\x5b\x35\x97\x61\x35\xde\xa8\xd5\xc3\x60\xef\x70\xf5\xad\x1e\x83\xa7\x65\x95\xa6\xc2\x2a\xd5\xe4\x87\x13\x5a\x5e\x51\xb1\x33\xa5\x6d\x94\x54\xbf\xa1\x86\x58\x26\x53\x7f\xdb\xe7\xb2\x6d\x5f\xdf\xa6\x26\xa5\xc8\x9e\xd8\xac\xc4\x46\x8d\x03\x23\x1a\xd0\xdb\xe0\xfd\x79\x1a\xd0\xdb\x59\x0d\xa8\xdc\x42\xd6\xed\xde\xb6\x2f\x5f\x8c\xa2\x72\xfd\xd5\x2a\x16\xe4\x97\xf3\x26\xeb\x69\x49\x95\xa1\x5f\x54\xd2\x8a\x24\xee\x29\x89\xfb\x18\x89\x29\x8a\xa3\x2c\x8a\x39\x62\xd7\xfe\x5e\x57\xf2\x4a\x4b\x5a\x41\x95\xa3\x85\x3f\x5f\x05\x82\x6a\xf5\x69\x1b\x13\x51\x2d\x68\x57\x9f\x49\x53\xfb\xf7\x1a\x32\xed\xc6\xe8\x32\x0f\xc7\x8f\x7f\xdd\xff\x2c\x87\xc3\xa3\x1c\x93\x3c\xd5\x81\xa7\x81\x08\xbb\xa0\xae\xb5\x24\xff\x85\xcf\xdf\xbb\x54\x1d\xb3\x1d\x59\xc9\x7b\xa6\x47\x2e\xf2\x87\x89\x19\xf7\x5f\x16\x74\x27\xd7\xae\x9c\x06\x4d\xfd\x02\xf2\x52\xf9\x6d\x2a\x8d\x4c\xe1\x88\xc4\x62\xc4\xe1\x7e\xab\xab\x48\x26\x31\xe3\xa0\x84\xb0\xad\x3a\x1f\xd1\x6d\xfc\x55\x75\xeb\xcc\x4e\xe7\xdf\x17\x75\xd1\xa9\xfd\xe1\x52\x1f\x7d\xb4\x21\x4a\xed\x26\x31\x99\x8c\x2e\x8f\xc2\xa3\x7e\xf8\xd2\xd5\x9f\x3f\x1d\xab\xf2\xd4\x9c\xcb\x5a\x67\x76\x6f\xd5\x7a\xfb\x45\x7b\xe1\xae\x03\x5d\x75\x92\x76\x97\xb3\xf6\x22\x40\x25\x31\x95\x0c\x92\xf4\xd0\x3c\xb5\xb5\x1a\x94\x51\xe9\xa2\x9f\x07\x3e\x7d\x28\xab\x5a\x1d\x25\xf5\x6b\x92\xd6\x4d\x6f\xd4\x10\x20\x43\xd1\x4f\xc1\xa8\xb2\x5c\x42\x0d\x9a\x0b\x02\xcd\xad\x1b\xc8\x13\x16\x26\x05\xa3\xa8\x52\xf8\xb3\xce\x44\x07\x65\xa9\x65\xce\x8a\xae\xa1\x32\x5d\x68\xb9\x11\x4a\xd6\xc8\x2d\xb7\x7e\x55\x33\xa3\x30\x17\x5a\xee\x84\x42\x40\x72\xcb\xc2\x6b\x69\x95\xe2\x42\xcb\xbd\xe8\x46\xee\xb5\x84\xa5\x17\x4b\x08\x9a\x87\xd9\x6f\xb7\xbe\xd9\xd4\xae\x49\x8a\x14\x57\xe6\x8a\x11\x85\xcb\xf2\x5f\x74\x54\xf7\xfa\x33\xeb\x57\xf2\xba\xf7\x1a\xda\xb5\xec\xbd\x01\xb3\xa2\x69\x4b\x5c\xd7\xb3\xb3\xaa\xd7\x38\xab\x67\xc6\x9a\xb8\x60\x36\xee\x81\xc1\x9b\x61\xd8\x99\x10\x67\xc0\x5b\x0a\x85\x4f\xcd\xae\xc7\x5a\x06\xc5\x22\x45\x02\xc3\x02\xf3\x91\x19\xb4\x1e\x4d\x21\x45\xe7\x1f\xf3\x0b\x5b\x2c\xe5\x1d\xf9\xb0\xc4\x72\xd7\x91\x0f\x5b\xaa\x08\xed\xde\x18\x1e\xb7\xc0\xea\x5b\xc3\xbb\xde\x5b\x66\x52\xd7\xf8\xb0\xa9\x2d\xa6\x6c\x6c\x32\xda\x6d\xf4\xf9\xb4\x6e\xcb\x61\x50\xdd\xf9\x8d\x7b\x00\x44\x8c\xb0\x9a\x4d\x7f\xff\xa4\x8d\x3c\xa7\x4b\x75\x54\x49\xfa\xd4\x1c\x7e\x18\xb6\x84\xf9\xca\xb8\x30\x08\x70\x41\xa0\x56\x80\x28\x0e\x7b\xd5\xbe\xae\xe6\x1a\x61\xde\x12\x16\x6e\xe1\xf9\x25\x43\xb4\xbc\x7a\x9a\xed\x10\x70\x91\xb7\xc0\x3f\xf7\xa1\xd1\xac\x37\x94\x3a\x26\xdc\x64\x92\x79\x57\xbb\xbb\x9b\x15\xea\xb9\xbd\xdf\x45\x7e\xe3\xb5\xe3\xd7\x5a\x00\x5a\x09\x9d\xa2\x17\xc4\xbf\xda\xef\xa2\xd7\xb1\x6c\x57\xb4\x14\x1b\x0a\x1c\x25\xed\x8b\x4f\x09\xbb\xce\x77\xe3\x0e\x39\x47\xc9\x73\x79\xba\xf8\x5b\x92\xba\x53\x87\x87\x2c\xe6\xdb\x1c\xe2\x1b\x79\xe7\xf1\xe3\x34\x5c\xf3\x46\x3d\xbd\xff\x2f\x00\x00\xff\xff\xd5\x63\x05\x1e\xf0\x41\x03\x00")
-func distAssetsNomadUi80bd290f31e717fefbf81265e9fd5591CssBytes() ([]byte, error) {
+func distAssetsNomadUi2ffef17efbbc4361902d6cc1d42ce2b8CssBytes() ([]byte, error) {
return bindataRead(
- _distAssetsNomadUi80bd290f31e717fefbf81265e9fd5591Css,
- "dist/assets/nomad-ui-80bd290f31e717fefbf81265e9fd5591.css",
+ _distAssetsNomadUi2ffef17efbbc4361902d6cc1d42ce2b8Css,
+ "dist/assets/nomad-ui-2ffef17efbbc4361902d6cc1d42ce2b8.css",
)
}
-func distAssetsNomadUi80bd290f31e717fefbf81265e9fd5591Css() (*asset, error) {
- bytes, err := distAssetsNomadUi80bd290f31e717fefbf81265e9fd5591CssBytes()
+func distAssetsNomadUi2ffef17efbbc4361902d6cc1d42ce2b8Css() (*asset, error) {
+ bytes, err := distAssetsNomadUi2ffef17efbbc4361902d6cc1d42ce2b8CssBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "dist/assets/nomad-ui-80bd290f31e717fefbf81265e9fd5591.css", size: 211349, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
+ info := bindataFileInfo{name: "dist/assets/nomad-ui-2ffef17efbbc4361902d6cc1d42ce2b8.css", size: 213488, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _distAssetsNomadUiB1d9a065040a9f727f900c02bfb30b88Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x77\xdb\x38\x92\x28\xfe\xbf\x3f\x85\xcc\xbd\xe3\x1f\xb9\x81\x68\x4a\x7e\xc4\x66\xaf\x26\x9b\x8e\x93\xe9\xf4\xe6\xb5\xb6\x7b\xe6\xee\xf1\xe8\xcc\x81\x48\x48\x42\x4c\x01\x6a\x00\xb2\xad\xb6\x75\x3f\xfb\xef\xe0\x41\x10\x7c\xe8\xe5\xbc\x67\xa7\xe7\x4c\x2c\x92\x40\x01\x55\x28\x00\x55\x85\x42\x95\x37\xe3\xa8\xc5\x05\xc3\x89\xf0\x76\x52\x34\xc4\x04\xf9\x1e\xa1\x13\x98\xb6\x67\x78\x1f\xa6\x70\x2a\x10\xe3\xfb\x70\x84\x88\xf0\xc0\x95\x87\xee\xa6\x94\x09\xee\x81\xa6\x42\xd3\x69\x86\x13\x28\x30\x25\x5e\x1f\x0c\x67\x24\x91\x3f\x7d\x04\x44\x70\x9f\x3f\xb5\x88\x8f\x82\x7b\x86\xc4\x8c\x91\x56\x51\x24\xb8\xc7\x43\xff\x39\x63\x70\x1e\x62\xae\xfe\xfa\x28\x08\xee\x87\x94\xf9\x37\x90\xb5\x44\x2f\x02\xa4\x47\xd0\x6d\xcb\x7c\x0b\x33\x44\x46\x62\x1c\xfc\x24\xfe\x23\xff\xfd\x93\x78\xf2\x24\x20\x57\xa2\xdf\x43\x57\xa2\xbf\x63\x9a\x20\x8b\x85\x8f\x82\x87\x87\x4a\x53\x17\xf3\xc9\x80\x66\x21\x16\x88\x41\x41\x59\x0b\x93\xd6\xfb\xc1\x47\x94\x08\x55\xd8\xbb\xa2\xea\xa1\xf5\x9c\x8d\x66\x13\x44\x04\xef\x7b\xbd\x5e\x4f\x97\x08\xa7\x8c\x0a\x2a\xe6\x53\x14\x0a\x7a\x21\x18\x26\xa3\x30\x81\x59\x26\x3b\x6c\x1a\xd5\x88\x0c\x19\x9d\xf8\x28\xa8\xb4\x1f\xdc\x8b\x31\xa3\xb7\x2d\x89\xcc\xe5\x7c\x8a\x5e\x32\x46\x99\xef\xbd\x26\x37\x30\xc3\x69\x0b\x0a\x81\x26\x53\xd1\x12\xb4\xc5\xa7\x0c\xc1\xb4\x45\x28\x69\xab\x7e\x0e\x32\xd4\xc2\x84\x0b\x48\x12\xe4\x05\x0b\x3f\x58\x98\x0e\xe9\x61\xfb\xc0\xe8\x14\x31\x31\xf7\x11\xf0\xfe\xf1\x0f\xc4\xdf\xd2\x74\x96\x21\x0f\xdc\xdf\xc0\x6c\x86\xe2\xdd\x68\x11\x00\x24\xcb\xc2\x59\x26\x7a\x37\x14\xa7\xad\x68\x47\x12\x17\xf6\x44\xfe\x3a\x44\x77\x02\x91\xd4\xbf\x9f\x42\x31\x7e\x45\x99\xec\x60\xec\x74\x5d\xe3\xe7\x29\x6e\xd8\x9f\xa0\xc9\x00\x31\xee\x2d\xc0\x8c\x65\xaf\x28\x7b\x85\x49\x7a\x8e\x12\xca\x52\xb7\x8a\x6c\x01\xf5\x34\x45\x0a\xca\xf1\x0c\x27\x48\x93\x0d\xe6\x34\x0e\xf4\x5b\xbf\x13\xe4\x83\x27\xc6\x98\x87\x05\xf0\xe7\x59\x16\x4a\x1e\x9b\xfb\xf2\x03\x90\x63\x19\x2c\x16\xc1\x4e\x81\x15\x5c\x04\x60\x05\x13\x67\x19\x35\xec\xb9\x86\x93\x6f\xa1\x48\xc6\x92\xe0\xee\xd7\x99\xc0\x19\xdf\x87\x69\xda\x16\xb4\x2d\x09\x54\x61\x72\x40\x82\xfb\x2f\x37\x22\x5c\xd0\x69\xec\x72\xb1\x9e\x17\x96\x7a\x66\x16\xfc\xb9\xb3\xb7\xa7\x21\xed\xf6\x8a\x8f\x57\x9d\xfe\x33\xf7\x21\xf6\x3e\xbc\xbf\xb8\xf4\x76\xaa\xf3\x10\x6a\xb0\xbc\xe7\x47\x80\xe4\x5d\x08\xfc\xca\x38\xe8\x41\xf6\x61\x88\x53\xe0\x39\x44\x0d\x00\x2a\x0f\x1d\xfc\x08\xef\x7c\x0e\x44\xb0\x58\xf8\xde\xbe\xc4\xc0\x0b\x00\x43\x5c\x40\x26\xe2\xf2\xfa\x20\x9b\x25\x3d\xcf\x0b\x13\x4a\x12\x28\x74\x93\x63\xca\xc5\xc3\x83\xb7\xef\x05\xa5\xd7\x33\x96\x7d\x60\x68\x88\xef\xfc\x20\x00\xd0\xa9\x44\x80\xb7\x9f\x64\x58\x32\x67\xd1\x2d\xa7\x36\x52\x3d\xde\x37\x3d\xf0\x1a\x3a\x0b\x81\xf7\xe1\xb7\x4b\x0f\xdc\xa7\x50\xc0\x58\xec\xed\xdd\x5f\x42\x7e\xfd\x0e\x4e\x50\x2c\x16\x8b\xed\xb8\xcd\x59\x0d\x4b\xec\xa6\xa6\x4d\x5b\x36\x50\x14\x96\x5d\xaa\xf3\x5a\x42\x53\xc4\xdb\x43\xca\xda\x48\xae\x12\xf5\x02\x0c\x4d\xe8\x0d\x6a\x33\x35\x20\xf5\xcf\x84\xb6\x33\x04\x53\x94\xd7\xaf\xf2\x2b\x80\x80\x7f\x12\xcf\xa2\x90\xc0\x09\xe2\x53\x98\xa0\x9c\x7f\xdd\x57\xde\x4d\xc7\x53\x0c\x9d\x35\x30\xb4\x2d\x16\xcb\x62\x80\xcf\xb9\x40\x93\xf8\xa5\x24\x4e\x88\x89\xea\x12\x47\xec\x46\xae\x08\x01\x10\xf4\x1a\x91\x65\x1f\xc7\x0a\x47\x6e\x3e\x27\x74\x32\x9d\x09\x94\xfa\x9e\xaa\x14\x72\x94\x30\x24\x3c\x50\x5b\x93\xd4\xa8\x8f\x90\xa8\x14\x0c\x76\xf0\xd0\x47\x66\x29\xbf\xf7\xfe\x6f\xfb\x9d\x22\xea\xa5\x2c\xe3\xc5\x68\xb1\x08\xc0\x18\x92\x34\x43\xe7\x88\x4f\x29\xe1\x28\xae\x2e\x02\x86\xab\x8e\xa2\xa8\xd7\xeb\xa1\xbd\x3d\xd2\xeb\xf5\x78\xf8\xee\xfd\x3f\xde\xbc\x7c\x7e\xf6\xf2\xfc\x99\x5c\xfa\x79\x4e\x8f\x58\x75\xe3\x1f\x7c\x36\x45\xcc\x5d\xdd\x8a\x65\x71\x01\x86\x7a\xf1\xab\xaf\xc4\xad\xb5\x95\xc3\x44\x2e\x65\x7e\x65\xfb\x2b\x4f\x6f\x14\x84\x98\x24\xd9\x2c\x45\xdc\xf7\x8e\xa2\x8e\x97\x6f\x64\x57\xfd\x1d\xbd\x59\xa1\x45\xb0\x00\x72\x82\xbc\x9f\x4a\x28\xbc\x71\xf2\xd6\x96\xa2\x6e\xe3\x52\xd4\x75\x97\xa2\x6e\x3f\xbe\x5f\x48\x82\x93\x50\x4e\x88\x87\x07\xf3\xa3\x77\xbf\x08\x40\x31\x40\x9a\x39\x42\x3e\xa6\xb3\x2c\x7d\xad\xfb\x7a\x8e\x46\x6a\xd1\xd1\xcd\xc3\x5e\xad\x34\x4c\x04\xbe\xb1\xc5\x76\xe0\xde\x9e\x01\x1e\x32\xf5\xae\x07\x83\x45\x9d\x8c\x66\x10\x35\xd1\x7f\x81\xfc\x2d\x24\xf3\xca\x08\xcb\x49\xb3\x31\xfd\xc5\x18\x91\x82\xfc\x44\xf7\x36\xeb\xf1\x50\xee\x83\x80\xf6\x44\xa8\x67\x6f\x88\xc9\x0d\x62\x1c\xbd\xa2\xcc\xe7\xe1\x35\x9a\xdb\xd5\x89\xee\xed\xa1\x70\x8a\xd0\xf5\xf3\x2c\xf3\xb3\x20\x1c\xe2\x4c\x20\x56\x1a\x52\x53\x12\x69\xfc\xed\x7a\x48\xd5\x5c\x04\x5e\x88\x53\x2f\x08\x7a\xbd\x9e\x08\x71\xba\x08\xc2\x21\x65\x2f\xa1\xcb\x15\x22\xb8\xf7\x23\x00\x1d\x96\x90\x8b\x76\x00\x88\x1c\xf7\xda\xee\x4e\xcd\xab\xdf\xa6\x29\x14\x28\x7f\xb9\x08\x76\xac\x90\x47\x1d\xbe\x00\xb0\x77\xd5\x07\xbc\xa7\x67\xa7\xec\xa0\x22\x91\x27\x17\x77\x2f\x00\x59\xaf\xba\xa6\xdb\x55\x59\x0e\x58\x4f\x84\x09\x9c\xa0\x0c\xff\x81\xfc\x20\xd8\xdb\x83\xe1\x74\xc6\xc7\x3e\x09\x00\xb2\x0f\x88\xc8\x85\xf2\xb7\xf3\xd7\x2f\xe8\x64\x4a\x09\x22\x52\x8a\x0b\x40\x26\x0b\xcc\x08\x1f\xe3\xa1\xf0\x33\xb9\x53\xc0\xf0\x23\xc5\xc4\x97\x1b\x0a\xd8\xe5\x7b\x7b\x70\x6f\xcf\xdb\xf7\x24\x77\x86\xc9\x18\xb2\xe7\xc2\x8f\x82\xbd\x3d\x1f\xf6\xbc\x7d\xef\x09\x0c\x00\x5c\x14\x4b\x5d\xb6\x72\xb1\x4f\xd1\x34\xa3\xf3\xc9\x06\x42\x72\x21\x5a\xac\x12\x91\xe5\xf3\x86\x42\x72\x3e\xf6\x55\x39\xb7\x98\x98\x57\x7d\x00\x7b\xbb\x11\xe0\xbd\xdd\x0e\xc8\xf2\x85\x5a\xb0\xb9\x95\xaf\x29\x60\x3d\x74\x55\x11\x8a\xfb\x7e\xf0\xd3\xae\x0f\x7b\x3e\xed\xb1\x90\xa0\x3b\xe1\x07\x41\x98\x52\x82\x02\x35\x93\x14\xe9\x69\xa8\xf6\x85\x00\xec\x8a\x87\x07\x62\x26\xfe\x6e\xaf\x27\x82\x9f\x64\x93\xc1\x4f\x0b\xbd\xfe\xe0\xe0\x9e\xcb\x2e\x64\x3d\xbc\x18\x62\x02\xb3\x6c\x7e\x2f\x3b\x00\x1f\x1e\xc8\x2c\xcb\x7a\x3d\x16\x6a\x3c\x1e\x1e\xf2\x5f\x7e\x60\x4b\xe2\xa1\xcf\x03\xbd\x12\x65\x8b\x85\x95\xec\x15\x8e\x8f\x12\xad\x53\xc4\x05\x9b\x25\x62\xc6\xd0\x37\x92\xaf\x19\x9d\x50\x81\x1a\x04\x3a\x33\x87\xe5\x8c\x05\xb0\xf7\xf9\x04\x3e\x0f\xc0\x1e\xf1\x51\xc8\xa7\x19\x16\xbe\xf7\xcc\x0b\x40\x37\x00\xbc\x07\xaf\xa2\x3e\xc8\x7a\xf0\xaa\xd3\x07\xb4\xc7\xf3\xef\x72\x8a\xb0\x1e\x0d\xa7\x74\xea\x07\x00\xf7\xdc\x45\xc5\x4e\xa2\x42\x2c\x03\xae\x90\xc6\x82\x9d\x6c\x6f\xcf\xc7\x4f\x7a\xde\x33\x5b\x2d\x0b\xec\xc4\xc6\x8b\x25\x12\xa5\x00\x9e\x33\x91\x02\xe0\xed\x1b\x3a\x2d\x13\xd5\xa4\x10\x6b\x64\xb5\xfb\x33\x5b\xf3\x75\x1a\x0b\x20\xf7\xcb\xdd\x68\x4b\x99\xed\x23\x1d\xb4\xf9\x6c\x32\x81\x6c\xfe\xaf\x79\xfc\xaf\x79\xbc\x7e\x1e\x2f\xd7\x7c\xa5\xa4\x60\xd5\x29\xe2\xff\x7a\xf1\xfe\x5d\x38\x85\x8c\x23\x1f\xa9\x99\x97\xf5\xb8\x9c\x79\xb4\x27\xa7\x27\x60\x3d\x57\x04\xc9\x80\xf7\x91\x0e\x3c\x00\x83\x27\xde\x7e\xce\x8f\x8e\x38\xe0\x99\x6e\xc8\xad\x8b\xee\xed\xf9\x4c\xce\x34\x47\xec\xb6\x53\x35\x08\x00\xdb\x92\xff\xbf\x98\x6a\x6c\xa7\x05\xfc\xd7\xb4\xf8\x67\x9a\x16\xbc\xc9\x58\xb1\x52\x99\x6b\x50\x67\xaa\x1a\x59\x49\x84\x7f\x97\x73\x76\x65\x1b\xd8\x42\xee\x2e\xf8\x4d\x34\x4a\xbf\x22\xb4\x8d\xf4\xd0\x33\x67\x0f\x8e\xed\x5c\x93\x0a\xc9\xc2\xe8\x05\x4d\x93\x5d\xa9\x05\x5a\xb8\x87\xee\x74\x27\x72\xba\xeb\xdd\x35\x2b\x4f\xdd\xec\x99\xa3\x04\x67\x0b\xa9\x09\x2d\xd3\x47\x00\x07\xb4\x24\x8a\x37\xab\x83\x99\xbf\x96\x30\x75\xad\xaa\x42\x64\xad\x2c\xac\x32\xea\x99\x09\xad\x07\x1f\xd6\x97\x36\xaa\x97\x36\xa6\x96\xb6\x9d\xa6\xae\xf9\x54\x81\x00\xcc\xb6\x53\xd2\x25\xbe\x50\x4b\x77\x63\xf6\x5f\x68\xfe\x99\x75\xd7\x2d\x28\xaf\xb5\xcf\xbd\x3d\xa3\x85\xda\xb1\x0f\x16\x80\xa1\x4c\x59\x8a\xf8\x18\x4f\x5f\xc1\x2c\x1b\xc0\xe4\xfa\x0d\x26\xd7\x3c\xbe\x37\xeb\x7f\x5c\xec\x04\x0b\x30\x44\x22\x19\x9f\xc3\xdb\x33\x39\x75\xb1\xac\xd8\x20\x49\x36\xcb\x58\xae\x7c\xa9\x76\x99\x06\xd1\x4a\x00\xef\x2f\x2f\x2f\x3d\xc9\xec\x94\x25\xe8\x03\x62\x98\xa6\x38\x89\x2b\x6b\xb5\x01\x35\x35\x9f\x73\x55\x5c\x6c\x64\x3d\xac\xf7\x43\x8a\x7b\x06\xd4\xbe\x6a\x77\x49\xd7\x94\xd4\x17\x2c\x16\x60\x89\x49\xf4\x93\xf0\x3e\x7b\xf9\xe6\xe5\xe5\x4b\x89\xba\xe2\xb3\x06\xf0\x2b\x91\x93\x2a\x7a\x81\x8d\x84\xb0\x0a\x89\x5c\x74\xfd\x95\x0e\x7e\x79\xf1\x26\x46\xe0\x05\x24\x94\xe0\x04\x4a\x75\xd7\x48\xaf\x60\x9a\xc1\xa6\xd1\x2d\xeb\x09\x0a\x36\x17\x94\x21\xb0\x99\xf1\x56\x38\x44\xcf\x20\x69\xea\x25\xaf\xf7\x32\x36\xad\xfe\x83\x20\x87\xf7\xe4\xb4\xf4\x02\x70\x86\x87\x43\xdd\xe9\xca\xe2\xeb\x1a\x28\x5e\x9f\xf5\x04\xd0\x7a\xfb\x07\x38\xcf\x28\x4c\x15\xbd\xda\xaa\x13\xe0\xfe\x23\x1d\x7c\xc8\x20\xe1\xf1\x15\xea\x2f\x02\x59\x10\xa1\x6b\xd3\x65\xa7\x9c\x08\x24\x65\xd8\xac\x4c\x98\x3a\x9d\x0b\xd4\x5f\x30\x64\xd7\x17\x3b\x42\xdb\xa0\xa7\xc6\x62\xa6\x56\xa9\x8d\x1b\x75\x17\xb5\x46\x86\xdf\xb6\x03\xae\x8d\x25\x2b\x89\x51\xa2\xbc\xb5\x88\xbd\x3d\x1f\x2d\x91\x0a\x45\x10\x00\xe4\x58\x36\xf8\x4a\x91\xd0\x02\xd8\xe6\xf4\x6f\xad\x25\xfb\x6b\x9e\x9c\x2c\xdb\xb0\xe1\x57\xb2\xa2\xde\xab\xe3\x03\xb8\xa5\x2a\x4a\x68\xba\x96\xe4\xcb\x75\xd0\xcf\x43\x4d\x52\xa7\xa6\x8b\x00\x59\x89\xc0\x94\x66\x38\x59\xab\x46\xaf\x3a\x33\xfe\x62\x48\x38\x62\x97\x28\xb6\xe1\x27\xde\x3e\x4c\x32\x6f\xb1\x39\x8a\xea\xdc\xe0\xfb\xc4\x50\xed\x05\xcb\x04\xf0\x55\xe8\x2b\xf9\xf6\x02\x65\xc3\x66\xf1\xbc\xbe\x4d\x54\xce\xec\x06\x33\x9c\xa5\xbf\x9d\xbf\xf1\xe5\xd6\xa2\x08\xb4\xcf\x51\x36\x94\xab\x9d\x92\x29\xea\x82\xb9\x46\x01\xe9\xed\xcb\x9e\xdb\x97\xb7\x08\x43\xe9\x7b\xf5\x97\xc7\x57\x42\xee\x0e\xa4\xb4\x3b\x98\x22\x24\x24\x94\x4d\xd4\x0e\x6a\xdf\x89\x40\x4b\x5c\x38\x0d\xaa\x93\x70\xf5\x00\x3b\xca\xae\x3b\xc8\xbf\xcf\x10\x9b\xb7\xb9\x3a\xfb\xdf\x60\x2d\x6c\x3a\xf0\x53\xcb\x20\x6f\x38\x91\x73\x14\x65\xfe\x2f\x45\xf9\x9f\x49\x51\xce\x7a\xa4\x36\x4d\x15\x83\xbd\xc1\x5c\x2c\x9b\xaa\x2b\xe7\xf1\xb2\x13\xb9\x5c\x67\x82\xbd\xf5\x4a\x09\xef\xf9\xe4\xe1\xe1\x7e\x11\x84\x70\x40\x99\x50\xc7\x9c\x3b\x8a\xd0\xf7\x29\xca\x90\x40\x2d\xe2\x7e\x31\x0a\x6e\x38\x40\x43\xca\xd0\x05\x22\xe9\x8e\xfb\x50\x32\x58\xf3\x30\x81\x53\x49\x5b\xa9\xad\x65\x7b\x7b\xb9\xf7\x86\xa6\x89\x7b\xc2\x99\x8f\x25\x6c\x38\xeb\xb4\xf3\xc2\x68\x81\x55\x4d\xed\xb0\x51\x53\x3b\x74\x35\xb5\x43\xa9\xa9\x81\xcc\x1c\x41\x41\xce\xf1\x88\x38\xab\xd5\x7f\xcb\xe9\x2c\x69\x2d\x15\xca\x06\x81\x5e\x84\x13\x9a\xa2\x4c\x6e\xe3\xc1\x4e\x71\x8c\x05\x25\xd9\x80\x67\xa6\xb4\x19\x87\x50\x8d\xa8\x27\xa7\x46\x16\x62\x92\xa2\x3b\x0d\xd1\x0e\xb4\xac\xfa\x5a\xbe\x7f\x45\x99\x4f\x83\x40\x51\x94\xf5\xd6\x81\x2d\x86\xa0\x49\x54\xa7\x7a\x71\x05\xf7\x45\xb1\x98\x01\x25\x56\x66\xcb\x6d\x16\x04\x64\x80\x6a\xba\xb2\x4f\xa0\x2b\xee\xf1\xca\xd2\x4f\x0a\x82\xc9\x26\x80\x57\xb4\xef\x05\x95\x13\x88\x59\x0f\x4b\x15\x3e\xed\x61\xa9\xc2\xa7\x95\x31\xb2\x13\x46\x6b\xfd\x69\xa0\x88\x53\x1f\x3a\x16\x80\x82\x82\x74\xcd\xc0\xa4\xeb\x07\x66\x66\x06\x26\xe9\xad\x03\xbb\x7a\x60\x66\x0d\x03\x93\xe8\x81\x49\x17\x4b\xc4\xca\x5d\xbf\x58\x7f\xe8\xb0\x05\xc3\xe7\xb2\xae\x5a\xc4\x82\xc0\x39\x8f\x67\x48\xee\x8d\xe7\x8e\xe5\xa0\x34\xb8\xf9\x84\x51\x13\x3e\x7b\xb4\x85\x43\xd1\x27\xde\xed\x00\x07\x03\xb9\x54\x2f\x00\xed\x65\x9a\x7a\x80\xf5\x32\x87\x0e\x00\xf7\x50\x58\x32\x68\x50\xe6\x13\xe5\x56\xe1\x0d\x50\x46\xc9\x88\x5f\x52\xa9\xa4\xe0\xf0\x1a\x93\x74\x6f\xcf\x1b\xeb\x63\xf6\xe2\x5d\x50\x2c\xe0\x66\xf1\xb6\x42\x06\x0e\xaf\xd1\x1c\x78\xad\xc9\x8c\x8b\xd6\x00\xb5\x60\xcb\xc2\x6c\x51\xd6\x32\xa0\x80\xa2\x20\x82\x69\x0b\x8b\xd6\x2d\xe4\xad\xe2\x74\xca\xb4\xa0\xc7\x77\xd6\x43\x57\xfa\x45\x5f\x43\x0e\xc2\x0c\x93\x6b\x3f\x00\x69\x4f\x3b\x26\xd0\x8d\x19\x06\xcc\x1c\x05\xe0\x59\x6e\x0d\x49\x7a\x55\x26\x9e\x39\x33\xe0\xaa\xd3\x0f\x76\xcc\xf6\x72\x8d\xe6\xdc\x4f\x1a\x4e\xe7\x91\x5d\x8a\x53\xa5\x16\x2f\x36\x62\x33\x56\xb0\x59\x4d\x1d\xd7\x26\x84\xdc\x62\x40\x7a\xce\xb8\xf4\xf2\x31\x78\xe6\x59\x41\x4a\x2e\x84\x3f\xe7\x25\x72\xb7\x17\x2f\x2e\x17\x30\xbe\x12\xf6\x33\x90\xba\x18\x47\x0c\xab\x12\x4c\x12\x09\x2b\xa7\x07\x75\xe6\xaf\x57\x08\xf7\x25\xed\xc1\x2b\xd2\xf7\x05\xc8\x00\x0a\x76\x84\x91\x2b\xe4\xe2\x55\xb1\x3a\x2d\x9d\x1c\xc6\x3b\xb1\x09\x97\xfb\x45\x5c\x76\x66\x59\xe9\xc2\x53\xec\x36\xe2\xca\xbb\x6b\x6b\xf9\x4e\xb1\x80\xd7\x7f\x78\x10\x57\xd6\x29\xe8\xb5\x7e\x97\xcf\x7b\xbe\xb7\x57\x61\x11\xee\xb0\x08\x94\xdb\x0a\xc8\x2d\xb0\x2b\x3d\x7e\x4a\x22\x6a\xb3\xe7\xc1\x74\xba\x44\xf1\x60\x88\xd3\xec\x06\x31\x2b\x78\xca\x55\xa2\xad\x4c\x09\x7a\x24\x4a\xa5\x13\x4a\x86\x78\xb4\x8f\xc8\x0d\x66\x94\xa8\x73\xd7\x26\x99\x54\x51\x63\xe7\x93\xe5\x20\xeb\x06\xf2\xbc\x10\x90\xad\x2c\x34\x51\x00\xb4\x17\x48\x6c\x7d\x51\x42\xf7\x35\x98\xd2\xf4\x6d\x73\xb1\xca\x17\x70\x6e\xc8\x10\xdb\xe9\xb7\x08\x40\x59\x63\xe7\xa0\xb9\x95\xc0\x48\x39\x7c\xdd\x20\x0c\x18\x82\xd7\x53\x8a\x89\x1c\x81\x62\x30\xfa\x25\x96\xfd\x74\xe1\xb1\x78\x71\x3f\xa1\x03\x9c\xa1\xd8\xf3\x27\xf0\xae\x7d\x8b\x53\x31\x8e\x5b\x4f\x8f\x4f\xa6\x77\x81\x07\x84\x94\x5c\x85\xfc\x86\x49\xf1\xed\x54\x7d\x4b\x11\xbf\x16\x74\x5a\xfe\xd8\x89\x4e\x74\xcd\xd1\x4c\x08\xc4\x32\xc4\x79\x19\xf2\xe9\x71\x24\xbf\x2f\x9a\x70\x4f\x72\x5f\x1b\x75\xee\x47\x49\x3b\xa1\xd3\x79\x7b\x30\x13\xa2\xd9\xdf\x31\xc9\xb0\xfc\xff\x74\x40\x21\x4b\xdd\xda\x6e\xbd\x4f\xd6\x8f\x97\x56\xc8\x6d\x63\xe0\x1e\x91\xd9\x44\x4b\xf9\xf1\x6e\x04\x46\x48\x34\xb9\xd5\x59\x9e\x59\x04\xeb\x90\xb7\x8e\xa6\x6d\x46\x6f\x1b\x31\xa7\x24\x99\x31\x86\x48\x32\x77\x67\xde\x18\x65\x53\xa9\x09\x66\xf0\x8f\xb9\xa4\x4c\x72\xdd\x60\x36\xcb\x20\xe7\xa8\xd4\x08\x17\x50\xf0\xb6\x60\x30\xb9\x46\x4d\x1e\x9d\x9f\xcb\xa8\x90\xcf\x54\xeb\x53\xb5\x99\x69\x61\xa5\xa3\xa6\x80\x23\x65\x0b\xf3\x04\xf3\x80\xc2\x4d\x9d\x3a\xc5\x57\x5e\x95\x8a\x1e\xe6\x6d\x4c\xa4\x36\xa6\x0e\xa7\xbc\x3e\x28\x4a\x28\xf1\x03\x24\x94\x08\x74\x27\xf4\x83\x22\x8a\xda\x04\xa4\xa4\x82\x88\x1c\xdd\x0f\x34\xcb\x30\x19\x55\xbd\x42\x6b\x83\xbd\xab\x0b\x08\xc4\x05\x26\xa3\x45\xa0\x81\xd5\x9c\x49\x5d\xe7\x71\xe7\x21\xc4\xfc\x7c\x46\x88\x32\x04\x34\x1b\x4c\xf0\xd0\x2f\x8e\xdc\x1a\x2b\x5a\xdd\xbd\x58\x8e\x12\x65\xae\xf6\xef\xd5\x41\x4f\xdc\x70\x8c\x89\x42\xed\xb4\x0a\x67\x62\x4c\x19\xfe\x03\xa5\xe7\xe8\xf7\x19\xe2\xc2\x17\xc1\xc2\x25\x96\x16\x12\xec\xb3\xe2\xe7\x64\x3a\xab\xe0\x17\xc2\x0c\x43\xee\x7b\x0a\xf7\x30\x99\xce\xc2\x0c\x72\xa1\x39\xc9\x0b\xc0\x04\x4d\x28\x9b\xaf\xac\xa3\x8b\x94\xab\x51\xf2\x42\xf2\xb5\x3b\xc1\x16\x20\x29\xbf\x42\xca\xf5\x90\x84\x72\x1a\xa8\xd2\x81\x7f\xa5\xfa\x6c\x2a\x03\xd4\x0f\x16\x20\xc5\x52\x7f\x40\xf8\x06\x3d\x17\x82\xf1\xb8\xa4\xeb\x97\x10\x7c\xa6\x3b\xc9\x66\x24\xe4\xc9\x18\x49\x6e\x7f\x4f\x12\xe4\x7b\x70\x28\x10\x3b\x47\x24\x95\x5b\xa3\x16\x8a\x03\x4d\x1d\x45\xe4\x0b\x8d\xb9\x94\x2b\x32\xa9\xf4\x05\xe6\x94\x4d\xbd\x8f\xfd\x08\x88\x50\x40\x7e\x1d\xf8\x0c\x8d\x10\xd1\x96\x91\xf3\x19\x11\x78\x82\xc2\x09\x64\xd7\x96\xb1\x5a\xa8\x58\x47\x1a\xca\xde\x32\x38\x2d\xc9\x62\x43\xca\xfc\x9f\x7e\x0a\xf8\x2d\x96\xba\x00\x0a\xa7\x0c\xdd\xf4\x90\x32\xb4\x04\xf7\x09\xe4\xa8\x15\xc5\x52\x2b\x30\x47\x3c\x50\xf0\xe0\x5e\x7f\xee\x75\xa2\x1d\xb5\x05\x2d\x2c\x53\xa8\xca\x1d\x60\xbe\x1f\xba\x87\xbd\x0a\xbf\x29\xcd\x32\x2f\x08\xa7\x88\x0d\x29\x9b\xf8\xc1\x8e\x6a\xe0\x50\xd3\x81\xdb\x72\x2f\xb5\xbb\xf9\x6e\x27\x00\x95\xa6\x74\x85\xa7\xb1\x69\xea\x29\x40\xa1\x88\x7a\xc8\x68\x32\x1d\x23\xdc\xd4\x21\x45\xa6\xa9\x4e\x14\xdb\xce\x6a\xc0\x5d\xa0\x89\x8b\x27\x88\xce\x44\xe0\x1f\x45\xb6\x6c\x37\xce\x27\x4f\x69\x4a\x5b\xfc\x73\xf4\x75\xe9\x83\x58\xfe\xf5\x10\x49\xbd\xa2\x0d\x2e\xe8\xd4\x0f\x16\x0b\x80\xf4\x98\x5f\x5d\x75\xc0\xd3\x7e\x3f\x58\x04\x41\x98\x32\xf5\xad\x74\xa6\xe2\x4e\x5d\x60\xce\x12\x0b\xe6\xb2\x0a\x5e\xa8\x95\x2f\xbf\x2a\x5b\x9b\x73\x51\x87\xa3\x2c\xa9\x81\xd8\xdb\x13\x7a\x2c\xd4\xe9\xcf\xde\xde\x6e\xf1\x18\x62\xfe\x01\x91\x54\xad\x06\xc5\x07\xc9\x70\x7f\x61\x74\x36\xcd\x95\x09\xd2\x73\xaa\xa8\x15\x90\x08\x2f\xd8\x21\x7b\x7b\xc4\xf6\x48\x6e\x59\x6b\x0e\x77\x9a\xb7\x2f\x39\x5e\x33\xde\x1e\x40\xb6\x44\xb2\x74\xaa\xa5\x98\x0b\x86\x07\x33\x55\x51\xd6\xf8\x7a\x96\xed\x0c\xce\xe9\x4c\xe8\x7d\x64\x55\x8f\x9c\x45\xf0\x05\x25\x02\x62\x82\x98\xde\x2d\x3c\xa9\x18\xb5\xe5\x82\xdf\x6e\x46\x5f\x0a\x06\x4a\x79\x5a\xbe\x09\x58\x90\xe1\xfd\xef\x33\x34\x43\xe9\x73\xf9\x89\x03\x59\x56\xaa\x6a\xe6\x71\x08\x71\x66\xbf\x31\xbd\xde\x9b\x27\x75\x07\xc5\x3e\x2e\x4a\xdb\x87\x9d\xef\x0d\x0d\x16\xbe\xf9\x8e\xd3\x4c\x53\xc7\x46\x48\x18\xc2\x63\xa9\x91\xba\xdd\xf4\x80\x57\xee\xa8\x07\x3c\xb7\xab\x1e\xf0\x4a\x9d\xf5\x80\x57\xee\xae\x07\xbc\x8c\x72\x61\x1e\x72\xc3\xc7\xd5\x7d\x06\x07\x28\x8b\xbd\xff\x56\x6d\x79\x40\x8f\x2f\x0a\xcb\x24\xca\x37\xfe\xd8\xf4\xc9\x5b\x80\xbc\xe2\x85\x69\xa5\xa8\x5a\x6e\xd7\xad\xcc\x6d\xd9\x0c\xce\x11\xe3\x71\xb7\x80\x63\xf7\xe4\x1c\x4c\x99\xf6\x0e\x14\xf3\xc1\xe9\xc3\x0b\x43\x99\xa2\x72\x65\x50\x9d\xda\xf9\x17\xa7\xfa\x2b\x45\xc7\xa2\x72\x89\x05\x9c\xaa\xfa\xbd\x53\xf1\x0d\xe5\xa2\xa8\x56\x90\xd7\xad\x24\xdf\x7a\x8b\xbe\xdc\xc5\xd7\x1d\x62\xb8\x93\x7c\x3a\x6d\xcb\x95\x32\x4d\xd8\x6c\x32\xf8\xa2\xba\x8a\xb6\x2c\x2c\x13\x1d\x9d\x4e\x5c\x68\xa9\xb0\x59\x54\xf4\xdc\xde\x3a\x72\xa3\x07\x9c\x0f\x55\x71\x44\x7e\xe1\xa5\xaa\xa6\x8d\xb0\x04\xad\x44\x39\xb1\x8e\x72\x42\x2f\x2a\x88\xb7\x39\x4a\xaa\x77\xb9\xbe\x2e\xf1\x0a\x2a\x6c\x85\xc2\x00\x72\x9c\xb4\xe5\x5e\x97\xd2\xdb\x46\xd5\xac\x5c\x62\x45\xdd\x1f\x50\x3d\xab\xe1\xa6\xf6\xcc\x36\xca\x50\xfd\xb2\xc6\x76\xd4\xa8\xc1\xfa\xa7\xa1\xce\xe7\xa0\xca\x3f\x01\x35\x04\xc3\xa3\x11\x62\x9f\x44\x8d\x1c\xc6\x0f\x48\x8d\x64\x8c\xb3\x94\xa1\x7f\x3e\xb9\xf0\x23\x1d\xd4\xe4\xc0\x26\x64\x97\x4a\x81\x52\xf8\xbe\x9f\x6a\x71\xfd\x85\xa9\x98\x0b\x77\xf6\x39\x45\x30\xcd\x1f\x96\x08\x77\x1f\xe9\xa0\x51\x98\x93\xf0\x2b\xc2\x5b\xa5\xb5\x42\x3e\x73\xde\xb8\x2d\xd6\x45\xb2\x5c\xbd\xb0\x02\x46\x15\x81\x55\x62\xd9\x32\x71\xaa\xa9\x72\x5d\xa0\x3a\x43\xd0\x91\x87\xdc\x6e\x36\x8b\x52\xdb\x8a\x37\xfa\xca\x77\x9b\xd0\x14\xd5\x6d\x70\x5b\xd9\xdb\xa6\x96\xe4\xda\xf5\xc3\x2d\x31\xc1\x77\x98\xf0\xfd\x5b\x2c\xc6\x6d\xdb\x78\xfb\x06\x73\x3c\xc0\x19\x16\xf3\x76\x8a\x84\x11\x11\xbe\x81\x55\xce\x9a\x8e\xc0\x1a\xfb\xdc\x52\x13\x5c\x8d\x8a\x75\x1b\x9c\xfc\xa6\xa7\xce\xe6\x96\x1d\xf1\x78\xcb\x4e\x5d\x13\x97\x1d\xd8\x51\x7a\xf4\x52\xfd\x1b\xe9\xd3\x17\xab\x77\x0b\xd0\x89\x22\xe5\x2e\x5a\x0c\xd5\x2f\xea\xf0\x87\xc5\xe5\x49\x99\xd2\x44\x9d\xbf\x84\x63\x9c\xa6\x88\x04\xc5\x51\x8e\x6b\x16\xda\x41\x19\x47\xee\x7d\x05\xd5\x27\xe4\x9e\xfc\xd8\xb6\x91\x6e\x7b\x01\x6e\x71\x96\x9d\x21\x2e\x18\x9d\xd7\x4c\x57\xb5\x16\x36\x38\x1f\x02\xfa\x54\x56\x19\xce\xd4\x4f\xf7\x14\x38\x70\xf5\xd4\xaa\xc0\xbb\xce\x1e\xb0\xce\x8a\xef\xd8\xb2\xbf\xd4\xd2\xbe\x4c\xfe\x2d\x73\x6b\xe9\xd4\xc0\x1e\x2c\x5c\x96\x4c\xc2\x86\x59\x31\x49\x71\x02\x05\xba\x98\x25\x09\xe2\xdf\xdc\x98\xe7\x9e\xde\x5a\x43\x19\x92\x2a\xb6\xee\x9f\x67\x8d\x6e\x07\x15\xd3\x58\x17\x1d\x18\xd3\xd8\x41\x5c\xab\x2e\x51\xb5\xf6\xbc\xf5\x96\x30\x65\x01\x33\x91\x30\xa4\xcc\xe0\x6f\xb7\xe6\xd6\xb7\xd5\x26\x66\x99\xce\xe5\xbe\x74\xd0\xe6\x28\xcb\xb5\x27\xf9\x28\x18\x24\x1c\x57\x3d\x85\xed\x02\x4b\x52\x7a\xdb\x66\x88\xe3\x3f\x9a\xef\x99\x39\xab\x34\x17\xf3\x0c\xe5\x9e\x78\x4d\xe1\x2d\x40\xf6\xb9\x18\x93\xf6\xca\xec\x9e\x13\xf6\x89\x58\x00\xb6\x8c\x69\x79\xb1\x2c\x97\xd9\x77\x0c\x99\x90\xc4\xa8\xcb\x4b\xb6\xdc\xcf\x58\x6d\xd0\xb2\x38\xe6\xef\x20\x63\xf4\x36\xc6\xbc\x4d\xd4\x2f\x59\x50\xc2\xd0\x1c\xae\xc4\x14\xf5\x4b\xaf\xd5\x67\x50\xcc\x26\x86\xf9\xf3\xaa\xbb\x1d\x20\x28\xcd\x04\x9e\x5e\x48\xa2\xc9\x59\x90\x15\x67\xa1\x9e\xf9\xf6\x81\x9a\x81\x09\xc0\x04\xf2\xeb\xd7\xa9\x86\xf2\x8f\x46\x41\x48\xbe\x6c\x38\xf6\x50\x4c\x2b\x07\xdf\x5c\x3e\x90\xc5\xc0\x6e\x14\x00\xd2\x93\xd3\x6b\xfa\xf3\xdc\xf7\x14\xb5\x3d\xc9\x81\xe9\x2c\x41\x3e\x05\x91\xf5\x9e\x51\x65\x1c\x0f\x51\xe7\x34\x3e\x54\x12\x85\xf2\x1f\x50\x00\x4c\x15\x23\x68\x70\x23\x63\x64\x8e\x58\x21\x42\xfb\x3b\x37\x13\x49\x28\xf2\x07\x50\x27\xfa\x31\x04\x53\xc4\x12\x44\x44\x9c\xed\x13\x40\x87\x43\x8e\x44\x6c\x22\x14\xf9\x11\x80\xc1\x8a\x2e\xef\x13\x23\x47\xe3\xf4\x35\xe1\x88\x89\x97\x5a\x17\x5c\xba\x8b\x15\x1e\x80\x7a\x4a\x68\x02\xfd\x1f\xdf\xe3\x37\x23\x2f\xb8\x8a\xfa\x2a\xa0\x8d\xe4\x8a\xb6\x24\x7f\xdb\xba\xbd\x18\x37\xa4\x19\x4e\x5f\x51\xa6\x6a\x05\xc1\x4e\xbe\x06\x38\x92\xe2\xbd\xe6\x0a\x91\x8f\x1e\xcc\xe3\x68\xe8\x36\x5a\x72\xa5\xfc\x00\xc5\xd8\x0b\x42\x28\x04\x53\xf7\x11\x00\x0c\x80\x08\x29\xf1\xbd\x09\x9d\xc9\x7e\xc1\x1b\x54\x1a\x56\x7b\xa4\x52\xde\x68\xd5\xea\x83\xf9\x73\x2d\x1e\x98\xd3\x02\xf5\xd2\xe1\x42\xb3\x30\x81\x1c\x63\x75\x43\x66\xe4\x05\x7a\x5c\x94\x51\xb5\xa8\x5f\xbc\xc4\xc4\x79\xad\x68\xac\xb0\x60\xea\xfc\xe6\x85\xc4\xd1\xd7\xc2\x83\xbe\x63\xd1\x7c\x2a\x54\x29\xad\x6f\x6f\xa8\x47\xc3\xca\x74\x20\x25\x23\xc4\x7c\x4f\x31\x78\xf8\x9f\x08\x26\xe3\x50\x2f\x05\x40\xf3\x9a\x65\x9f\xb2\x10\xdf\x00\x3f\x00\xce\xf3\x6a\x39\x46\x0d\x52\x7e\x6d\x47\x35\x0d\xb4\xa3\x56\x98\x4f\xd7\x3c\x2e\x46\xce\x1a\xa1\x3a\x92\xf7\x95\x9b\xcc\xca\x08\x20\xaa\xef\x7f\x8e\x16\xc1\x0e\x6d\xf0\x24\x92\x0b\x97\x46\x5d\x8e\x13\x02\x9e\xf6\x6a\x51\x17\x6a\x8c\x27\xa2\x65\x4d\x2f\x1c\x40\xc6\xbd\xa0\x3a\x70\xb2\xbb\x3e\x05\x8d\xad\x2b\x9a\x2d\x02\x80\x7b\xd4\xf8\x99\xed\xb0\x10\xdd\x61\xe1\xcb\x79\x33\xa1\x37\xc8\xcf\x1d\xaf\x58\x88\xa4\x70\xe9\x07\x52\xc6\x91\x6b\xa5\x02\x6e\xb9\x50\x7d\x74\x48\x2e\x96\xb0\xa1\xf5\x1e\x97\xf3\x95\x03\xd8\x23\x2b\xc9\xa3\x3a\xa8\x22\xa1\x98\xae\xee\x90\xcd\x39\x31\x0a\x00\x6c\x28\x1d\x2d\xe3\xdb\xc6\xe9\x20\x02\x23\xc9\x43\x25\x3a\xfa\x81\xd4\xf5\x7e\xfe\x99\xde\xf9\xea\x52\x78\x78\xf7\x84\xeb\xc1\xde\xef\xee\xd4\xcf\x32\x2b\xe7\x98\x08\xd4\x75\xfc\xfa\xc4\x94\xf2\x6f\xde\x97\xea\x3a\x0f\xee\x33\x34\x14\xca\x4d\x34\x58\x04\x3f\xf9\xac\xc7\xc2\x09\x62\x23\xe4\xcf\x82\x7c\x8d\x50\xd8\x95\xc7\x22\xd7\xc2\xed\xf4\x78\x78\xf0\xd4\x10\x14\x4b\x16\xd4\x5e\x73\xef\x87\xea\xc6\x11\xef\xa1\xd0\xa1\x43\xae\x9e\x12\xc0\xf7\xf6\x78\x75\x58\xf6\xf6\x2c\x75\x8b\xcf\xbb\xee\x67\x4b\xe7\xbe\xda\x8f\x60\x22\x39\x4c\x07\xa6\x68\x79\x76\xb9\xd0\xf2\x91\xe2\x0c\x0f\x30\x4d\xf8\xb4\x21\xa8\x46\x37\xdf\x7b\x54\xc4\x26\xdd\xef\xbd\x3d\xd1\x6e\x03\xf3\xd0\xeb\xf5\x70\xbb\xa3\x5f\x15\xbe\x88\xd9\xbf\x4b\x35\x5a\x6d\x1e\x6d\x01\xbc\xe9\x9d\x17\x2c\x40\xd2\xab\x33\x5e\xb9\x8a\xde\x63\x9e\xf8\x4e\x63\xcf\xa2\xb8\x13\xe4\x10\x26\x3d\xe6\xce\xb9\x50\x40\x36\x42\x22\x9f\x79\x75\xe8\xca\x29\x70\x67\x52\x9b\x4f\x4c\x9d\xc2\x97\xc7\xd0\xb3\xc0\xf4\x6b\xc5\x69\x1e\x48\xf3\xe7\x31\xc2\xa3\xb1\x94\x4c\x3a\x51\xf4\x27\x5b\xea\xce\x03\x49\x60\xd8\x62\x12\x84\x85\xfc\xe6\x07\x61\x3a\x63\x4a\xd3\xf0\xbb\x51\xb4\x0c\xaa\xaa\xaf\xa8\x3f\xad\xe0\x26\x65\x9e\x1a\x62\x8e\x78\x55\x8a\xf9\xa8\xb6\xed\x87\x87\x8e\x8a\x81\x94\xf9\x25\x57\xe1\x7b\xbd\x9b\x8b\x05\x40\x81\x5c\xcc\xa6\xab\xc9\xd1\xd8\x43\xf3\x7b\xee\x35\xcc\x2a\xfe\xcc\x3b\x8a\xfe\xe4\xc5\xd1\xa2\xa0\x28\x9e\xea\x60\x07\xc0\x9b\xb1\xcc\xff\xb7\xf2\x45\x18\xbd\x01\x03\x2f\xf0\x82\x2a\x71\x1b\xa1\x1f\x4f\xef\xbc\x58\x93\xdd\x36\xa1\x08\x2d\x55\xc9\x25\x75\xd4\xf7\x0c\x0a\x29\xa8\xb4\xda\x07\x81\xa7\x0e\x07\xcc\x40\x4d\x97\x4d\x5f\x87\xbe\xde\x00\xb2\x96\xa2\x6b\xdb\xb9\x1f\xb8\x78\xec\x10\xcb\xd9\xda\x2c\xe2\x18\x23\x79\x50\x6c\x2e\x92\x3e\x5e\x8d\xed\x24\x15\x9c\x71\x50\x34\x97\xfa\xae\x52\x0a\xce\xa5\x4e\x80\x1a\xb4\xf7\x62\x9d\xa4\x24\x41\x5a\x5d\xae\xee\xd0\x15\xaf\x4a\xb6\x46\xc1\x19\x32\x84\x94\x76\xb1\xcf\x47\x6d\x98\x24\x94\xa5\xcb\x03\x47\x6a\xbd\x44\x15\x97\x22\x1a\x92\x2a\x4a\x3a\x4b\x44\x7b\x82\x04\x54\x52\xf2\xd7\x56\x96\x4d\x07\xb8\xeb\xfe\xb8\x85\x7a\x57\xc2\x7e\x40\xef\x50\xfa\xed\xcf\xbf\x6e\x20\xc3\x90\xd4\x5d\xb3\x6a\x33\xe3\xea\xfe\x1a\xcd\x63\xef\x9d\xf2\x4e\xf6\x80\xc0\x22\x43\xc5\x23\xcf\x66\x23\x39\x4d\x80\x2e\xf5\x9a\x0c\xa9\x2d\xa3\x1f\x74\x09\x65\xfd\x1a\x52\x5b\xf0\x6f\x90\x69\x1b\xa8\x29\x6b\x9f\x6d\xf1\x5b\xf3\x26\xaf\x71\x06\x89\x3a\x3f\x30\x15\xf2\x47\x5b\x3e\xd5\x2f\x6a\xf6\xce\x75\x27\x7a\xa5\xc1\x49\x68\x46\xd9\x37\x3c\xd2\x55\x1d\xbc\x1c\xa3\x09\xda\x60\x5c\x88\x32\x3d\x7e\x60\x58\x47\x58\x1a\x40\x8e\x62\xef\xdf\xba\x47\x03\x78\xd2\x91\x64\x2b\x7d\x6f\x9d\x41\x76\x6d\x0b\x75\xd2\xd3\xc3\xe3\xa7\x45\xa1\x4b\x74\x27\xec\xc7\x08\xca\xff\x15\x1f\xdf\x60\xe2\xd4\x3c\x3a\x3e\x18\x0e\x8b\x8f\x7f\x61\xb0\x68\x7b\x30\x48\x0e\x53\xa7\xed\xf7\xc3\x61\xfb\x76\x8c\x05\xb2\x25\x86\x47\xf2\x7f\x6a\x94\x80\x99\x55\x2f\x14\xcd\x37\xc6\xf7\x05\x25\x7c\x96\xb5\x3e\xb8\x9d\x1a\x0e\xa3\xe8\xc4\x41\xc7\x29\x53\xc6\x3b\x39\xee\xc2\xa7\x2e\x71\x94\xe3\x67\xeb\x67\xa9\x8b\x16\xb4\x81\xc8\xc5\xd0\x29\x53\x27\x62\x9a\xba\x44\x64\x0c\xca\xfd\xa5\xf5\x61\xc6\xa6\x59\x01\xf1\x28\x39\x44\xe8\x68\x79\xc1\x32\xd8\xc3\xe8\x30\x1a\x74\x8b\xd2\x7f\x85\x23\x06\x89\xa8\x74\xb2\x32\x0c\x6e\xa1\x4a\x2f\xa3\x43\xe4\x82\x53\xbe\xf6\xad\xbf\x30\x84\xc8\x52\x9e\x71\xca\xac\xe6\x9b\x6a\x41\x39\x23\xf3\xa2\xc7\x4f\xa3\xc3\x54\x8f\x34\x9a\x50\x29\x5e\x6e\x39\xd2\xc6\xc2\x58\xf4\xf2\x20\xed\x1c\x47\x45\xe3\x76\xcd\xc8\xb9\x00\x9e\xa0\xee\x41\xf1\x3d\x5f\x22\xf2\xb1\x3f\x39\x8c\x0e\x0e\x8b\xcf\x7a\x79\xaa\xd0\xf3\x93\x56\x8f\x14\x0f\x87\xed\x1b\x8c\x6e\xcb\xe7\x9c\x5f\x66\x09\xa9\x4b\xae\xf7\xaf\x30\xca\x52\xae\x6d\x4c\xaf\xcf\x62\x0f\x2b\x2b\x0a\xa6\x84\xb7\x29\xc9\xe6\x9e\x39\xf7\x34\x25\x2e\x73\x7f\x38\x1e\x5f\xe5\x55\xaf\xee\x9f\x13\x42\x85\x36\x76\xeb\x62\xef\xcc\x8c\x9a\x11\xe1\x81\x77\xe8\x36\xf6\xba\x1e\x78\x9f\xa5\xea\xaf\x0a\x69\xed\xbd\xa3\x04\x79\x8b\xbe\x29\x9a\xc0\x64\x8c\x8a\xb6\x2c\x6c\x64\xbe\x9f\x6b\x33\xe9\x07\x73\xa3\xbd\xdc\x27\x05\xef\x65\x8a\x05\x92\xac\x53\x7e\x06\xda\x3a\xa1\x8b\x56\x3f\x2e\x16\x60\xf9\xfe\x5d\x10\xe2\x3d\xc9\xe6\xb1\xf0\x97\xe2\xf9\x5c\x5f\x67\xe5\x06\xd5\xce\x91\xc1\x55\xfe\x70\x91\x05\xcb\x00\x9c\xa1\x4c\x2e\x88\x9a\x50\x47\x51\xfe\x9f\x01\x93\x03\x79\x9e\xa6\xfa\x48\x70\x09\x94\xd7\x52\xda\xbe\x91\x1b\xac\x02\x74\x1a\x45\x8f\x85\xf4\x56\x45\x3e\x50\x50\x52\xdd\x35\x55\xdd\xfc\x2e\x8d\x9f\xe4\xf4\x0c\x7d\x0f\x64\x2a\xbd\xd9\x08\xde\x7a\x82\x95\x5f\x6d\x04\xd4\xa1\x5d\x13\xd9\xce\xd4\x35\xb2\x54\x51\x0e\xa5\x58\xfc\x33\x52\xcd\x81\x69\x81\xe6\x33\xee\xf3\xf0\x5c\x26\x55\x68\x15\xed\xa6\xb6\x7e\xa1\x3b\x38\x51\xfb\xe8\xda\x75\xcb\x69\xbc\xb2\xfc\xd8\x2a\x8d\x8b\xdb\xba\x65\xef\x2d\x12\xf0\x8a\x12\xd4\x37\xe8\x0c\x33\x74\xdb\xa2\x37\x88\xb5\xc4\x18\xb5\x92\x59\x72\x4d\xe9\xff\xc7\x5b\x44\x05\x1c\xdf\x6e\x5e\x4a\xc8\xe2\x96\xe6\x90\x07\x98\xa5\xbc\x45\x49\x0b\xb6\x6e\x31\x43\xcd\xd0\xf2\x25\x96\xa1\x14\xf3\x86\x25\x76\x29\x1e\x78\x02\x47\xf9\x90\xa8\xca\xf1\x41\x78\x68\xda\xc8\x9f\xbb\x1b\x8f\xaf\xdc\xd6\xfe\x31\x81\xd3\xab\xa8\x7f\x95\x0e\x72\x0c\x8e\x0f\x4e\x72\xae\x39\x3e\x78\x7a\x5a\x85\xd6\xb7\x3b\x09\x19\xe2\xd1\xca\x75\x1f\xac\xdf\x8e\x3e\xfc\x96\x4f\xa2\x82\x57\x8f\xb6\x60\xd1\x33\xcc\xaf\xdf\xfe\x6c\x60\xe4\x00\x36\x9e\x36\xef\x3f\x5c\x3c\xb2\xea\x5b\x75\xb1\xc3\xb6\x7c\xd4\xb1\x9b\xe9\xd1\xf1\x32\x8a\x9d\x23\x4e\x67\x4c\x59\xdd\x36\x1f\xf1\xb7\x3f\xe3\x62\xa1\x59\xb6\x6b\xe4\x2d\xbc\x43\xe2\x96\x4a\x31\x6f\x73\xf8\x6f\xe0\x00\xe5\xeb\x46\x3a\x58\x0d\xfe\x6c\x4e\xe0\x04\x27\xad\x0f\x94\x89\xc6\x81\xb7\xe5\x2b\x73\x67\x1b\x24\xf3\xb5\x34\xaa\x2f\xcf\x9f\x07\xcb\x7c\x15\x1b\x2c\x6d\x60\x2d\x9e\x4e\x8d\x25\x2f\x36\x9f\x02\xcf\xd3\x94\x21\xce\x9d\xb5\x16\xce\x04\x35\x9d\xd4\x3f\x37\xe2\x48\xf9\xaf\xbb\x32\xb4\xf3\x05\xd4\xae\x0d\xf9\x9b\x8d\xc0\x49\xdc\x1b\x79\xa3\xa0\x5b\x59\x5c\x34\x6e\xc5\xdb\x8c\xca\x25\x1c\x71\xb7\xcb\x5b\x2e\xbd\x4e\x75\x17\xd7\x6d\xb0\x74\x40\x8c\x32\x3a\x90\x3b\xa8\x82\x91\x3f\x34\x21\xaa\xeb\x2c\xe7\xfe\xc7\x0c\x79\x05\xf3\x35\xbd\x7e\x41\x27\x13\x48\xd2\x47\xd5\xfd\xcb\xf9\x87\x17\x76\xa8\x1e\x59\xff\x37\x8e\x2e\xdf\xe4\x2b\xe7\x10\x66\x3c\x27\xbd\xf9\xbd\xa1\xcc\xa2\xee\x5e\x5f\x28\xd7\xc2\x47\x75\xa5\x22\xf5\x74\x6a\x82\x54\xe7\x31\x32\x0f\x12\x63\xfa\x38\xd2\x3a\x33\x10\x66\xea\x98\x46\xcf\x61\xfd\x7b\xb3\x59\xa7\x0c\xe7\x8f\x68\xbb\x3a\x5d\xb7\xac\xcd\xa8\xa0\x09\x7d\x5c\xe5\xcb\x37\x17\x17\xd7\x78\xfa\x57\xc4\xf0\x70\xfe\x89\x4c\x71\xa9\x9d\x7a\x0c\x94\xa7\x35\x29\x76\xfb\xf1\x94\xc5\x0c\x38\x91\x4c\x0d\x1c\xf5\xab\x69\x6e\xbf\x18\xa3\xe4\x7a\x1b\x5d\x76\xdd\x73\x59\xd7\xdd\x40\x20\x72\xf4\xf3\xce\x63\x44\xd1\x6b\x34\xcf\x05\x39\xed\x9a\xf1\x08\x18\x0c\xa5\x56\x50\xc6\x7c\xbc\x5a\x28\x50\xcb\x6d\x77\x9b\x65\xbf\xa2\x3e\x75\xb7\xec\xa2\xab\x3c\xd5\xe7\xfc\x23\x35\xf3\xce\xc9\x67\x51\xcd\x87\x10\x67\xab\xc9\xb5\xde\x6a\xb2\xb9\xd4\x84\x47\x4c\x39\xb9\xd5\xa6\xdc\xa6\x3d\xbf\xc0\x7f\x20\x2b\xc3\x1e\x6c\x8d\xf8\x85\xc0\xc9\x75\xd3\x94\x5f\x82\xfb\xcb\xe9\x18\x4d\x10\x83\x99\x94\xda\xd7\x08\x90\x8f\xd5\xf4\xce\x18\x56\x61\x3e\xb4\xd0\x42\x55\x3c\x80\xed\xb0\xfa\x2f\x9c\x65\xe5\x75\xe8\xd1\x4c\xf6\x46\xe5\x60\xfa\x94\x01\x1a\xcf\x44\x4a\x6f\x89\xcb\xf3\x6b\x74\x80\xcf\xa2\x53\x6e\x3b\x27\x97\x69\x92\x52\x7d\x5c\xd5\xd9\x15\x4a\xe4\xc6\xd3\xa0\xd0\x21\x8f\xb6\x1e\xa0\x46\xf5\x71\xe3\x25\xa4\xae\x3e\x6e\xbe\xcc\x96\xd4\x47\xa5\x34\xae\x59\x35\x3e\x55\x75\xfc\x11\x35\xc7\x6d\x1e\xd7\x58\x95\x2b\xe7\xbc\xf5\xac\x9e\xcb\x0f\x03\xca\xce\xa8\xed\x8f\xb3\xc9\x80\x7e\xbb\xa3\x45\xb7\x3f\x3f\x43\x76\xd6\xe0\x82\xda\x70\x12\x63\x2e\x9d\x48\x61\xc7\xf8\x83\x76\xa2\xe2\x2e\x8a\xb8\xa5\xf9\xeb\xae\xfb\x7a\xcc\x90\x2d\xef\xbc\x1f\xd2\x19\xcb\x5f\x1f\x1c\x7d\xea\x59\xcb\x72\x97\xe9\xaf\x7c\x93\x14\x4f\x10\xbb\xc4\xc9\x35\x8f\x23\x7d\x0f\x5d\xee\x02\x6c\x49\xc4\xd7\xc2\x93\x4a\xd5\xf3\x80\x0a\x6a\xa5\x65\x8a\xb2\x43\x28\x26\x09\x53\x6e\x1e\xb6\xcf\x5e\xd1\x94\x17\x2c\xc0\x51\x14\x05\xc1\x42\x39\xf9\x61\x82\x85\x17\x2c\xbb\x19\x91\x64\x08\x32\xdb\x88\xea\x81\x82\xa4\x7c\x3e\xab\x5c\x31\x9b\x3c\x96\x2d\xfa\xca\x77\xf7\xdb\x70\xd9\xc1\xd2\xe6\xff\x86\xc5\xf8\x85\x8e\xfc\xb3\x79\x4f\xca\x57\xee\x3b\xd1\xca\xfb\x5c\xd5\x2b\xee\xdd\x68\xab\x4b\xed\x07\x51\xd3\x45\xf6\x25\xd8\x9c\xab\x15\xb5\x1e\x88\xc7\x65\x8d\xba\x77\x53\x13\x85\xdf\x42\x31\x0e\x19\x9d\x91\xd4\x3f\x8a\xfe\x5d\x3f\x41\x92\xd2\x89\x1f\x04\x8d\xb4\xdf\xb0\x82\x3b\x2a\x2b\xab\x7c\xda\xf4\x6f\xb8\x81\xfd\x75\xa7\x3d\x35\xa1\x62\xcb\x7e\x09\x95\xa3\xf1\xaa\x17\x41\x83\x0f\x40\xed\x0c\xdf\x7d\xa1\x52\xa5\xf4\xc1\x04\x92\x79\x1e\x9a\xf6\xca\x7b\x2f\x07\xd1\xbb\x94\x23\xe3\x5d\x6a\x72\x7b\xaf\xd4\xd2\xea\xbd\x52\x26\x03\xef\x02\xdf\xc9\x7f\xd1\x8d\xba\xca\xf8\xd2\x78\x83\xbd\xc3\xba\xa2\x7e\x99\x99\xaf\x97\xb7\x28\x53\x95\x2e\xc7\x98\x09\xe5\x15\xa0\xa0\xe5\x3f\xf1\x50\xfd\xea\x97\xef\x11\x14\x87\xce\xaa\xab\x68\xf1\x29\x83\xf9\x91\x53\xf2\xd5\xce\xcd\x97\x8d\xa7\xec\xc4\xc5\x04\x66\x59\x7c\x3f\xa4\x34\xf6\xd4\x9e\x42\x66\xb2\x74\xdc\xe9\x1e\x1c\x1e\x1d\x3f\x3d\x39\x05\xd6\x13\xec\x2a\x1f\x70\x60\x46\x1a\xe4\x43\x0c\x9c\xb1\x05\x76\x50\x81\x19\xcd\x3e\xd0\x57\xbe\xd4\x26\x11\xfb\x04\xdd\xb6\xce\xa0\x40\x41\x28\xe8\xeb\x8b\xf7\x3a\x03\xb6\x1f\x00\x82\xb8\x40\x69\x7c\x4f\x07\x1f\x63\x4f\x05\x80\x5a\x00\x42\x09\xba\xc3\x5c\x20\x62\x2e\xaa\x8c\x67\xe3\xd8\x84\x02\xc4\xfc\x92\x49\xc4\x3b\x0b\x20\x11\x79\x03\xd9\x08\xc5\xf7\x17\x82\x4e\xe3\xdd\x0e\xd0\x69\x3b\x0b\xf3\xe4\xbb\x22\x5b\xac\xbd\xf1\xfc\xfa\x2c\xf6\xf8\x9c\x67\x74\xe4\x81\x0f\x50\xf6\x50\xbe\xf1\x8c\x20\x96\x7f\xd1\xd2\x91\xce\x75\xe3\x81\x0f\x0c\x53\x86\xc5\x3c\x3e\x8a\xc0\xf3\x2c\x7b\x2e\xde\x93\x44\x76\x02\xc8\xa5\x2a\x51\x2e\xa3\x92\x52\x69\xd2\xf1\x80\x97\x26\x5d\xaf\x0f\x24\xd5\x04\x83\x98\x34\x1e\xe7\x95\x1b\x53\x46\x8d\xb8\x63\x24\x34\x89\x0e\x1c\x8d\xe4\x70\xa0\x4e\x04\xde\xc2\xbb\x0f\x90\xc1\x2c\x43\x59\xdc\x01\xbf\x20\x98\x89\xb1\x32\xc3\xc4\x5e\x22\xff\x70\x0f\xbc\xc5\x44\xbf\x9f\x2b\x62\xab\x6a\xe6\xc5\x19\x82\x69\x86\x09\x8a\x0f\x50\xa7\x03\x3e\x30\x3a\x62\x88\x73\xfb\xf6\x58\xbe\x7d\x3e\x13\xf4\x1c\xdd\x20\x26\x24\x4a\x2f\x20\x81\x6c\x2e\xc5\x19\xa3\x3f\xeb\xee\xbb\xf8\x5c\xdd\xbf\xb9\x54\x0e\xc1\x92\x6e\xe7\xc5\xcf\xf7\x53\x24\x97\xbd\x58\x5d\x45\xc1\x24\x11\xff\x18\x53\x2e\xb8\x9c\xd9\x25\xb5\x3e\xbe\xcf\x4d\x1c\x72\xcb\xc9\x37\x6c\xdd\x45\xa5\xc9\xc5\xdd\x23\x74\x0a\xde\xd2\x14\xe5\xa7\xa9\x0b\xab\xf1\x96\x49\xa7\xd5\xd9\x42\x93\xfd\x8d\xcb\x27\x49\x52\xa9\x38\xc5\xf7\xb9\xe2\x15\x5f\xdd\x8b\x64\x1a\x1f\x47\x1d\x30\x4b\xa7\xf1\x51\xe7\x70\xd1\x07\x4a\xb3\x93\x33\x20\x83\x03\x2c\xf6\x35\xcc\x36\x19\xc5\x99\x14\x94\x25\x2b\xbe\x24\x37\x1a\x7d\x63\x12\x36\x63\xa9\x58\xdc\x0c\x2b\x9a\x4c\x33\x2b\x57\xd7\x87\xdd\x6a\x26\xf1\xfd\x8b\x0f\xbf\xc5\x47\x51\x04\x72\xe5\x26\xee\x1e\x1d\x03\xad\x61\xc5\x11\x90\xda\x52\x1c\x01\xa3\x68\x48\x4c\xcf\x90\x8a\x75\x22\xb1\x79\x7d\x76\x2e\xff\xbe\xfe\x20\xff\x55\x7a\x8b\xa4\xdc\x39\x52\x17\x51\x52\xa9\x35\xa8\x51\xd1\x5b\xd3\x2c\x9d\x7a\xe0\xaf\x6a\x81\x90\x78\x82\xfc\xbd\xb2\xea\xe9\xf7\xc7\x51\x67\xd1\x07\x46\xeb\xd0\xd5\xb5\x5a\xb0\x90\x1d\x9a\x42\x91\xe4\x51\xf4\x35\x16\x6f\x51\x7e\x55\xcc\xd1\xfe\x63\x39\x48\x6f\xe8\x28\xa7\xf5\x5b\x78\xf7\x0a\x67\x48\x75\xcd\xfc\xd6\x06\x14\x25\xe5\x3c\x67\x02\x0f\xa1\x55\x6b\xb4\xea\x2f\x19\xae\xa4\xc3\xc7\x91\x6a\xe1\x02\x8f\x08\xcc\x62\x4f\xb2\x4e\xc9\x2a\x22\x27\x07\x4e\xae\xe7\xaa\xa2\x06\x7e\x20\x49\x6a\x58\x55\xae\x0b\x45\x5f\xcf\x51\x7e\x01\xc2\xf0\x9d\x51\x7d\xb6\x9d\x67\xb5\x19\x56\x9f\x5e\x51\x7d\x6e\x45\x4b\x27\x96\x4d\x8d\xa4\x7a\x29\x5b\x9d\x20\x81\x54\x3c\xbe\x5f\xf3\x30\x03\xf9\x30\xa0\x54\xd6\x5d\x32\x18\x8a\x0f\x75\xe0\x5e\xcf\x03\xfa\xa8\xa0\xb8\x4b\x6f\x5e\x9c\x21\x9e\x30\xac\x76\x55\x53\x4a\x05\x7b\xe8\x80\xbf\x22\xc6\xe5\xcb\x08\x5c\xcc\x06\x13\xac\x57\xea\xe8\xae\x73\x74\x30\x48\x8f\x8f\x50\x9a\x74\x61\x92\x46\x11\xd0\x59\x70\x54\x44\xda\xb8\xfb\x54\x4e\x4b\x3c\x9c\xdb\xc7\x5f\xe9\xa0\xfc\x66\xf1\xf8\x0d\x52\xd2\xad\x6d\x6e\x39\xba\x2e\xd3\xe9\x41\x5b\xca\x7d\x6d\xb9\xd7\xc0\xcf\x10\x25\x64\x4b\xb7\xe8\x6f\xa4\xf9\xec\xe4\x39\x9b\x24\x59\x94\x37\xfa\x1b\x7c\x83\x76\x44\x08\xd3\x54\xa3\xec\xdf\x0b\x1e\xcb\x6d\x35\x24\xf4\xd6\x0f\x80\x5a\x45\x2b\x02\xe8\x93\xae\xc4\x58\xe4\x01\xbc\x8f\xa3\xbd\x3d\xa1\x62\x49\xab\x8b\x8a\xf9\xfb\xf6\x71\xf4\x99\x34\x2d\xdb\xd9\x0d\x75\xa2\x39\x82\x2c\xee\x46\x9d\xc8\xd5\x88\xf2\x97\x9d\xa6\x97\x5d\x57\x49\xca\x5f\x1e\x14\x0a\x52\xf1\xf2\xd0\xbc\x3c\x72\x5f\x1e\x99\x97\x27\xee\xcb\xe3\xbc\xa1\x52\xfd\xa7\x79\x4b\xa5\xf6\x4f\xf2\xa6\x0e\xb5\x32\x66\x31\x7e\x8b\xb3\xf4\x51\x18\x37\xa1\x7c\xda\x84\x72\xa7\x11\xe7\x4e\x23\xd2\x9d\xce\x51\x03\xd6\x9d\xe8\xa8\x01\xed\xd3\x26\xac\x4f\x8e\x1a\x90\x3e\xad\xe0\xfc\x17\x38\xfd\xe2\x03\x6d\xce\x86\x3e\xf3\x50\x57\xa0\x6e\x39\xd6\x72\x2a\xae\x47\x5a\x56\xe1\x28\xa1\x24\xe5\xaf\xd4\xda\xb5\x2a\xba\x8e\x9a\x42\xba\x98\xef\xfd\xe9\x97\xf8\x4f\x6f\xe3\x3f\x5d\x78\x9b\xa4\x9e\x59\xba\x9e\xd2\x51\x9b\x0b\x86\xe0\xe4\xdb\xe9\x1b\x13\x9a\xa2\x4e\xec\x71\x91\xaa\x03\x03\xcc\x3f\x64\x70\x8e\xc9\xa8\x13\xef\x46\x80\x2b\xc7\xb7\xf7\x33\x31\x9d\x89\xd8\xbb\x50\x4f\x2d\xaa\x1e\xff\x4e\xfe\xdc\xea\xc8\x7f\xba\xf2\x9f\x83\xbf\x93\xab\x28\x8a\x3b\xdd\xf8\xe8\xa4\xdf\x7a\x43\x47\xa6\x54\x6b\x8c\x18\x32\xdf\x8e\xe2\xee\x69\xbf\x75\xf5\xf2\xfc\xbc\xdf\xfa\x6d\xdc\xa2\xe3\xbf\x93\x37\x14\xa6\x98\x8c\xc2\xe2\x97\xfb\x33\xfc\x3b\xf9\x3b\x69\xb5\xfe\xfc\xe7\xd6\x19\x25\x68\xb7\xf5\x1f\xff\x21\x5f\x78\xa6\x57\x3a\x32\x70\xde\x29\x95\x7a\x47\x7e\xbe\xea\xf5\x7a\xbd\x87\x76\xc3\x7f\xfd\x56\x37\xfa\x93\x2c\xb2\xbb\xbb\xdb\xfa\x8d\x30\x94\xd0\x1b\x93\x19\x46\xd5\x8e\x75\x73\x2f\x20\x21\x54\xb4\x12\x4a\x04\x26\x33\xd4\x1a\xa0\x39\x25\xa9\x8a\xec\xd0\x52\x61\xc1\xc3\xd6\xcb\xbb\x04\xa9\x0d\xbb\xc5\xc7\x74\x96\xa5\xad\x01\x6a\x25\x70\x36\x1a\x8b\x50\x42\xb8\x94\x45\x31\x6f\x49\x30\xb0\x35\xc1\x5c\xc0\x6b\x14\xb6\xfe\x87\xce\x5a\x29\x4e\x5b\x9c\x4e\x90\x18\x63\x32\x6a\xdd\x32\x4a\x46\x61\x4b\x89\x31\xda\x93\x8f\xa6\x48\x81\x78\x47\x41\x6b\x4e\x67\x2d\xb9\xbe\x2b\x38\x4c\x87\x53\x69\x41\x32\x6f\x4d\x28\x43\xad\x14\x09\x88\x33\xde\xa2\xac\x35\x9a\xe1\x14\x92\x04\xb5\x86\x8c\x4e\x54\x47\x25\x08\x85\x53\x6b\x82\x38\x87\x23\xa4\x48\xb9\x5d\x88\xb9\x12\xa7\x4e\x66\x99\xc0\x26\xe2\xc3\xf7\x63\xf4\xe8\x6c\x7a\x6b\x48\x97\x6f\x77\x3c\x60\xcc\x43\xda\x8a\xd1\x7a\xaf\x4f\xf3\xdd\x32\xdd\x6a\x99\xcb\x5b\x5a\x2d\x73\x50\x2b\xa3\xcc\x1f\x95\x52\x87\xd5\x52\xca\x38\x52\x29\x74\x54\x2b\x84\x6f\x74\xb4\x24\x60\xe3\x6b\x6c\x80\xa6\xd3\x7b\xa7\xf9\xa2\x11\x09\xcf\x10\xed\x2d\x24\xd5\xa0\xcf\x75\x80\xe6\x7a\x66\x27\x8a\xcc\xb5\x4c\x75\xdf\xbf\x62\x7b\x29\x6e\x1c\xde\x97\x71\x70\x6e\x1d\x02\x17\x59\xf7\x36\xa2\xba\xfe\x6f\x51\xdc\xa8\x53\x57\x0e\x16\x85\x66\xbf\x29\x0f\x4c\xd3\x3b\x87\x01\xf4\x53\x3e\x18\x1f\x87\xd7\xce\x37\xfd\xe4\x7e\xeb\x96\xbe\x75\xed\xb7\xc9\x2c\x71\xea\xe9\xa7\xf2\xd8\x6d\xd3\xcf\xbc\x1b\xa6\x11\x07\x5b\x65\xee\xd8\x10\xcf\x81\x8e\x71\x65\xfa\xf4\xb3\x7a\xca\xfb\xcb\x73\xcf\xa9\x3c\x32\xab\x79\xb6\xdf\x8d\x41\x25\xff\xac\x1f\xf3\xaf\x36\x27\x2c\xb0\xe1\xc7\xcc\x0b\x5b\xc2\xd5\x95\x8a\x62\xa5\xb7\x65\xfa\x6c\x86\x99\xed\x98\xc5\xc0\x21\x8e\xd1\xab\x36\x65\x83\x3c\x64\x5a\x25\x84\x5a\x8e\x82\xd5\xce\x2a\x51\xd2\xf2\xef\xa9\x8a\x7b\xe6\x06\x41\x2b\x23\xb4\x69\x6f\x3e\xc9\xec\x3c\x35\xca\xec\xff\xd2\x13\xa7\x0e\x3a\xf8\xf4\x13\x27\x44\xe8\x04\x13\x28\x68\x6d\x66\xae\x3e\xc4\x68\x39\xa7\x09\x1d\x74\x50\x3d\x4e\x08\xf2\xc8\x33\x70\x54\x63\xec\x2d\x00\x47\xd5\x73\x8a\x7d\xa9\x86\x04\x40\x87\x83\x6c\xea\xb4\x83\x90\x07\xbc\xa2\x13\x6b\x5a\xd2\xc1\x7c\x8a\xba\xff\xae\x5e\x14\xd5\xff\x5d\xee\x01\xa6\xf1\x0c\xdf\xa0\x33\x2d\x77\xac\x69\xde\x76\x73\x6d\x57\xf2\x60\xf6\x6e\x60\xc4\x8d\x60\x05\x9f\x32\x81\x4c\xc2\x0d\x3c\x41\x6d\x8e\x18\x46\x7c\xa5\x41\x03\x78\x13\xda\x98\x45\xe7\xf3\x65\xb8\xfd\xba\x73\x2c\xb7\x5c\x4c\x90\x60\x38\xe1\xbf\xe0\xd1\x18\x90\x5e\x6e\x6c\x78\x26\xae\xac\xdd\xa1\xd3\xd7\xc1\x67\xe2\xf0\x74\x07\x99\xa8\x0b\x97\x17\xca\x4a\xe9\x0b\xa0\xf8\x68\x82\x89\xaf\x7f\xc0\x3b\x9f\x3c\x09\xa3\xa3\x32\xeb\xb6\xc3\xa8\x7b\x04\xc2\xa3\x00\x74\x4c\x82\x2e\x58\x34\xfd\x86\xde\x02\xde\x83\x79\xcb\xf0\x0a\xd6\x5b\xee\xd4\x5a\x86\x0d\x2d\xf3\x65\x2d\x47\x81\x6c\xbc\x71\xd9\x28\x41\xfd\x9c\x39\xe4\x0f\xa2\x48\x76\xda\x31\x04\xe1\x09\xe2\x02\x4e\xa6\x15\x7b\xd0\x0c\xc5\x42\x71\x85\x01\x4f\xf6\xf6\x50\x61\xfe\xc9\x5f\xb7\x49\xb0\x34\xde\xe0\x8a\x35\xce\x19\xde\xcd\x84\xab\x62\x50\x36\xd4\x9d\x05\x14\x38\x79\xab\x6b\xad\xa8\xa2\x59\xb4\x7e\x6a\x57\x4e\xdd\x14\x84\x7c\x36\x10\x0c\x26\x2a\x88\xd1\xc4\x0b\x42\x41\x25\xb5\xfc\x60\x61\x03\x9f\x16\x74\x44\x7e\x37\xca\x49\x18\x1e\x2d\x40\xe9\x53\xe7\x64\xf9\xa7\x63\xfb\xe9\xb0\xfa\xe9\xd0\x7e\x3a\xa8\x7e\xea\xda\x4f\xa7\xd5\x4f\xd1\xd2\x5a\x27\x4b\xbf\x2c\xef\xc4\xe1\xd2\x9e\x17\x5d\x38\xae\x7c\x89\x9c\x2f\x9f\xdf\xa6\xd1\x98\xd3\x7a\xd9\xca\xaa\xcc\xd7\x6d\x9d\x81\xcc\x44\x18\xf9\x76\x12\x4a\x11\xe9\x3d\xd6\xd2\x9b\xf2\x98\x4d\x11\x9a\xba\xcf\x52\x9f\x8e\x3d\x2e\x66\xea\x26\x3b\x94\x9a\x4f\x7c\xa5\x7d\x14\xb4\xe3\x41\xee\x4d\xa0\x3d\x87\xfa\xe0\x06\xb1\x79\x7c\x5f\x80\xb9\xc7\x24\x91\x1b\xd6\x28\xbe\xa7\x04\xc5\x1d\x20\x6e\x69\xdc\x05\xaa\x56\x7c\x00\x64\xad\xd8\xe3\x33\x36\x65\x98\x63\x32\xca\xe6\xad\x8c\x92\x51\x4b\xe1\xd5\x12\x63\x28\x5a\x98\xb7\x66\x24\xc3\xd7\x48\x99\x01\xa8\x18\x23\xd6\x2a\x22\x22\xb6\xb0\xde\x27\x5b\x54\x27\xe1\x59\xa8\xff\x1e\xbd\xf9\x89\x7a\xf2\xe3\xef\x38\xe8\x09\x47\x90\x25\xe3\x4b\xc4\x26\xb1\xe7\xe5\xa7\xd6\x1f\xa4\x74\xd5\x01\x9c\x32\x2b\x24\xc6\x1e\x51\x17\x18\xe4\xbb\x33\xc4\x13\x2d\xd7\xc7\xbb\x1d\xc0\xc7\x94\x09\x95\x8f\xd7\xf2\x3d\x90\x03\xa0\x5e\x5d\xdd\x27\x58\x56\x7e\x87\x6e\x5b\xff\xa3\x5c\x08\x47\x8c\xde\x8a\x71\x1c\x46\x87\x27\x60\x4a\xa7\x33\x1d\x84\x35\xf6\x4e\x0e\xa3\xa3\x93\x83\xa7\x1e\x60\x90\x5c\x2b\xf7\x76\x1d\x8e\xb4\xa8\xba\x00\x06\xd8\x1b\xca\x5b\xcf\xc9\x08\x65\x52\xb0\x58\x06\xef\xe0\xe4\xe4\xf0\x20\xb2\xf0\xba\x16\xde\x0b\x98\xe1\x21\x65\x04\xc3\x02\xe2\x8b\x31\x4e\xe0\x88\x5a\x68\xed\x30\x3a\xee\x94\xc0\x75\x9f\x76\x4e\x9e\x9e\x74\x73\x70\x07\x16\xdc\xeb\x2c\xc3\x84\x62\x5e\x00\xfb\x85\xce\xb8\x8a\x05\x9b\x77\xad\x53\x01\xd5\x39\x3d\x3a\xed\x1c\xe6\xa0\x0e\x2d\xa8\x4b\x74\x07\x1d\x38\x1f\xc6\x38\x83\x29\xca\xa6\x63\x0c\x1d\x3c\xbb\xc7\x25\x68\x9d\xa3\xa3\x83\xce\xf1\x51\x0e\xed\xc8\x42\xfb\x80\x08\xe1\xf3\xec\x06\x96\x30\xfd\x30\xa6\x88\xe0\x3b\xa7\x73\x87\x15\x70\x9d\x83\x83\x63\x4b\xb6\x63\x0b\xee\x39\xc3\x7f\x50\xe2\x40\xba\x80\xa4\xf5\x9c\x08\x4a\x70\x41\xb7\xb0\x5b\x46\xb5\x73\x18\x9d\x46\x9d\xd3\x1c\xda\xd3\x65\xa8\x4a\x58\x67\x18\x39\x23\x10\x76\xa2\xa3\x32\xa8\x83\xa3\xa3\x93\xd3\xe3\x1c\xd4\xc9\xca\xf1\x3c\x83\x59\x06\x5d\xe6\x38\xaa\x10\xad\x7b\xf4\xf4\xf8\xa9\x05\x76\xba\xaa\x5f\xbf\x52\x8e\x96\x77\xeb\xf4\xf4\xe4\xc8\xe1\xda\x68\x65\xb7\x9e\xcf\xb8\xc0\x0e\x63\x1c\x74\x9e\x96\xe7\xc0\xc9\xd1\x61\x14\x59\x60\x9d\x65\xdd\x7a\x4d\x52\x0c\x09\x9c\xd2\x0c\xbb\x48\x3e\xad\xce\xa8\x83\x83\xd3\x03\x0b\xad\x98\x01\xa6\x7a\x01\xef\x57\x98\x5c\x73\x4a\x6e\x70\x96\xb9\xa8\x1e\x1e\x54\xe0\x75\x8f\x4e\x0a\x78\xc5\x14\x78\x95\x51\x86\xd3\x0a\x6b\xbc\x62\x90\x24\x98\x27\xd4\xed\x60\x05\xdd\x83\xa7\x87\x87\x76\x4a\x75\x0e\x57\x4f\x51\x9a\xcd\x26\x83\x19\x77\xfb\x57\xc1\xb7\xdb\x3d\x3a\x2a\xfa\x57\xcc\x84\xf7\x63\x4c\xdd\xb9\x0e\x59\x46\x85\x70\x30\x3d\x38\x2d\xb3\xed\xd3\xd3\xee\xc9\x71\xd1\xb1\x62\x12\xbc\xa3\x4c\x8c\x5b\x2f\x20\xa3\x19\x76\x09\xf8\x8a\x32\xd1\xfa\x9b\xfc\x58\x00\x3d\x3c\xaa\x01\x7d\xda\x2d\x38\x65\xe9\x5c\x38\x43\x82\x51\x2c\x9c\xb5\xa8\xfb\xb4\x0c\xe9\xf8\xe4\xe4\x69\xd4\xb1\x90\x8a\xa9\xf0\x16\x27\x63\x3c\x82\xa4\x00\xf6\x32\x6b\x7d\x80\xdc\x9d\x56\xa7\xe5\xf9\x7e\xfc\xf4\xf0\xf0\xa0\x20\xda\xd2\x99\xf0\x16\x4d\xa6\x63\x87\xdb\xda\x61\x74\x54\x66\x8f\xe3\xa3\x83\xc3\x23\xcb\xbc\xdd\xc8\x81\x44\x08\xe2\x5c\x9b\x70\x0d\x83\x20\x28\x44\x89\xd7\x2a\x13\xf4\xf8\xa8\x7b\x18\xd9\x45\xad\x5b\xcc\x84\xbf\x41\x3e\xc6\x64\x24\xd7\x57\x87\x62\x44\xdd\xea\xb0\xc0\x8e\xcb\x7c\x76\x7c\x78\x7a\x78\x5a\x00\x73\xb6\x02\x9a\x51\x06\x53\x87\x39\x1c\xf0\x05\xb8\x0a\x9e\x87\xc7\x87\x87\x76\x49\xeb\x16\xd3\xe0\x4c\x39\x72\x26\xa2\x45\x87\x2d\xcd\xad\x2e\xff\xfe\x4c\xcb\x9b\x42\x54\x1d\x88\xc3\xa3\xd3\x63\xbb\x22\x75\x8b\xc9\xf0\x16\x72\x0e\x93\xf1\x8c\x23\x21\x9c\x01\x79\x07\xf9\x58\x4d\xd8\xf6\x19\xbc\xc1\x29\x2f\xf5\xf8\xb8\x5b\x86\x7d\x70\x78\x78\x6c\x37\x9c\xee\xd1\xaa\xa1\xf9\x19\x66\x02\x4b\x99\xcd\x1d\xea\x4a\x57\xbb\xdd\x4e\x54\x80\x3b\x76\xba\xca\xe6\x19\x24\x69\x01\xed\xfd\x75\x06\xc7\x74\x02\x5b\x2f\xb0\x98\x3b\xdb\x44\x54\xe9\x60\x27\x3a\xee\x58\x2e\xec\x16\x73\x23\xaf\xef\x6e\xfe\x33\xcc\x15\xe2\xfb\xbf\xa2\xe1\x10\x31\x4e\x49\x4b\xf9\x90\x39\xf0\x2b\xf3\x25\x3a\x3d\x29\x16\xc2\x6e\x31\x5f\xfe\x0b\x11\x31\x4b\xae\xe7\xce\xf6\x48\x99\x50\x18\x38\x9c\x59\x85\x75\x78\x54\x0c\x53\x31\x5f\xde\x33\x34\x72\x99\xf2\x0d\xe4\xad\xbf\xa2\x91\xbb\x0b\x75\x0f\xab\xb0\x0e\x0e\x4f\x4e\xac\x48\x11\x39\x22\xcf\x0d\x74\xd7\xd3\xb7\x38\xbb\x85\xb3\x6b\xe4\x4c\x98\x28\x2a\x73\xe5\xd1\xe9\x69\xa7\x18\xe2\x03\x67\xc2\xc8\x35\x98\x70\xec\x74\xed\x79\x36\x98\xfd\x3e\x43\xec\xf7\x99\x03\xb0\x7b\x50\xee\xdc\xd1\xd1\xb1\x33\x69\x0e\xba\x25\x79\xec\x2d\xba\xc3\x89\x33\x6d\x2e\x67\x49\x89\x01\xa3\xa7\x15\x60\xdd\xe3\x4e\xc7\x52\xed\xe0\x60\xb9\x54\xf1\x8a\x21\x4e\xdc\xf5\xea\xa4\x82\x67\x74\x7a\xda\x2d\xf0\x5c\xbd\x67\x5c\xc0\x84\xc1\x09\x22\xc2\x05\xf8\xb4\xcc\x7a\x87\x4f\x4f\x8f\x4f\x8a\xae\x1d\xad\x04\xf8\x46\x2a\x16\x3f\x23\x98\x38\xeb\x7c\x54\xe1\x90\xc3\xe3\xd3\xc3\x6e\x31\xaa\xc7\x2b\x01\xfe\x17\x24\x1c\xf2\xca\xec\x88\x8e\xaa\x10\x9f\x46\x85\x24\x7b\xf0\xd4\x59\xef\x39\xa7\x33\x86\xdd\x65\x9a\x43\x77\xe5\xaa\x00\x3a\x7a\x7a\x74\x52\x00\x3a\x59\x3e\x0c\x7f\xc5\x6c\x84\x09\x86\x35\x64\x2b\x9b\xda\xe1\xe1\xc9\xe1\x53\xbb\x18\x1e\x14\xd3\x21\x07\xe0\x70\x9d\x9c\x58\xc2\x95\x64\x2b\xab\xd4\xe1\xe1\xd3\x93\x43\xbb\xad\x1d\x16\xd3\xe1\x2f\x88\xb2\x51\x45\x16\x50\xeb\x76\xeb\x62\xca\x30\x19\xb9\x53\xac\x22\xce\x1e\x1e\x9c\x9e\x14\xa3\x7b\xd8\x59\xb1\xf4\xbf\x9f\xc0\xb1\xdb\xbb\xa3\xd3\x0a\xa4\xc3\x83\x42\xba\x38\x74\xe7\xc3\x80\x41\x7e\xed\x74\xef\x1c\x66\x08\x8f\x5c\x51\xe0\xe4\x69\x05\x56\xe7\xe9\x61\xd1\xab\x83\xb5\xf2\xc5\x5b\x0c\x27\xd8\x95\x7c\x2a\x7d\xeb\x3c\x3d\x2e\xb6\xde\xc3\xc3\xe5\x92\xd9\x7b\x78\x5d\x5e\xde\xa2\xca\xee\x76\x18\x1d\x77\x1d\x34\x57\x4f\x87\xb7\x98\x10\x54\x13\x43\x2b\xab\xdc\x61\x14\x45\x4f\x8b\xce\x39\xbb\x85\xac\xcd\xa9\x80\xee\x3a\x92\xb9\xfc\x5b\xed\xdc\xc1\xe9\x49\xa7\x5b\x70\xc8\xaa\x6d\xe2\x45\x86\x6e\x50\x09\xd5\x76\xd8\x39\xe9\x54\xc0\x45\x9d\x62\xd7\x39\x3c\x59\x22\x30\xfe\x4d\x4a\x55\x25\xc6\x3d\x7d\x5a\x51\x35\x8f\x8f\x8e\xac\xb8\x78\x58\x4c\x02\x3d\xbb\x9d\x29\xc0\xb2\xba\x70\x51\x41\xf1\xe9\xe9\xd1\x53\x3b\x45\x8f\xa2\xaa\x3c\xd6\x07\x3a\x54\x37\x4a\x2f\xac\xde\x5d\x3d\x2c\x28\x74\x7a\x0f\x78\x56\x3d\x0f\xaf\xfa\x4b\xf2\x2d\x87\x45\x85\x50\xd0\x37\xf4\x16\xb1\x17\x90\x23\xdf\xa6\x17\xd0\x85\x2c\xa0\x6a\xb0\x70\xe1\x58\xbe\x08\x9c\xa0\x32\x90\x10\x93\x24\x9b\xa5\x88\xfb\x48\x47\xa5\xe7\x94\x89\x95\xdd\x2f\xf5\xd8\x73\xad\x10\xe6\xb1\x30\x40\x2c\xc5\xc8\xc2\x90\xe5\x7f\xd6\xe9\x60\x42\x17\x54\x05\xb9\x12\xd4\x67\x28\x64\xe8\x06\x31\xd9\xfd\x18\x6d\x99\x5a\xa9\x6c\x0c\xc2\x13\x94\xa9\x1b\x19\xae\x3d\xa8\xf1\xbc\xe3\xcb\xdb\x7a\xe6\x88\x0b\xc4\x52\xb8\xde\x17\x40\xf9\x46\x36\x59\x8e\x3b\xc0\x4b\x75\xac\x70\xfa\x08\x38\x5b\x52\x52\x5f\x64\x68\x8f\xcd\x3d\xe9\x6f\x65\xe6\x74\x72\x9e\x95\x7b\x14\xef\x46\x80\x92\x5f\xe0\x64\x30\x63\x23\xc4\xea\xe9\x9d\xb6\x32\x22\x8e\x66\x42\x20\xd6\x9e\x20\x32\xfb\x76\xb8\x6a\x4f\x80\x65\x99\xb0\x18\x9d\x15\xae\x16\xb5\xaf\x7a\x5e\xdb\x5b\x27\xf5\x43\x4c\x0d\x5c\x2d\x11\xba\x84\x49\x1e\xa1\x2d\x8b\x75\xe6\x71\x32\x71\x57\x6b\xaa\xd3\x0b\xed\x45\x13\x3c\x3c\x5c\xf5\x03\x35\x83\xfd\xa6\x33\x26\xa4\x41\xa8\x46\x02\x00\xf3\x74\xd0\xfa\xd9\x2c\x02\xf6\x82\x4c\xaf\xd7\x23\xcf\xda\x9d\xd8\x7d\x01\x9f\x75\x62\xf2\x1f\x50\xbe\x26\x7f\x96\x0f\x91\x5a\xc6\x56\x8e\x3c\x18\x51\x41\x7f\xa5\x03\xfe\x8a\xb2\xe2\x1e\x8e\x3b\x92\x68\x6f\xcf\xf4\x0c\xa7\x5e\x60\x72\x61\x69\x02\x3b\x91\xc4\x2f\xa9\xca\x9d\xc7\x3d\x70\x2f\x25\xf6\xb9\x72\xf6\xe0\xf1\xbd\xa5\x44\xec\x00\x59\x2c\x82\xed\x58\x4e\xf2\x71\xbb\x31\x83\xa5\x2d\x2d\xf2\x1b\x1e\xaa\xf0\xd7\x77\x3e\x2f\xd2\xd8\x4e\x68\x8a\xb2\x25\xb9\x6f\x15\x22\xca\x7e\x1e\x00\x9d\xd4\xf0\x91\x41\xbc\x15\x20\x0d\xa1\x31\x3d\x53\x86\xd5\xe4\x5f\x56\xe5\x07\xcc\x59\x89\x6f\xe6\xed\x84\xa6\x68\x82\x75\xda\x79\x17\xe9\xf2\xb7\x15\xb5\x7e\x40\xbc\x3f\xd2\x41\x3b\x45\xd3\x8c\xce\xab\x59\x6d\xbf\xee\x8a\x5b\xca\x71\x55\xed\x94\x57\x8e\x23\xdf\x07\xc5\xc7\x3c\x55\xd5\xfb\x29\x22\xf1\x6e\x67\xab\x79\x5f\x6e\x66\xbf\xf8\xd9\x36\x47\xd4\x3f\x5c\xc6\xe6\x32\x46\xbc\xc1\xef\xfb\x9b\x49\x5d\x16\x23\x9a\x55\xd2\x47\x5a\xe1\xd0\x1d\xd7\xcd\x9c\xdb\xcc\x66\x7b\xb6\xbc\x9a\xe7\x80\x34\xfb\xec\x8d\xbe\xf2\x54\xdc\x77\x5a\xea\x31\xe4\xd6\x35\x02\xb4\x57\xaf\x1d\x14\x52\xf2\x22\x00\x50\x07\x02\x59\xdd\xa9\x5a\xb7\xcb\x5d\x5b\x2a\xce\x57\xab\x2d\x49\x7c\x46\x8a\xc4\x67\xf7\x8b\x1d\x3c\x54\xf9\x62\x60\xa0\xf4\x81\xdb\x33\x28\x50\x6f\x37\x2a\xb2\x51\x66\x3d\x14\xea\x33\xdf\xe7\xc2\x87\xed\x4e\xa0\xb7\x52\xd3\x17\x29\xf4\x5a\x4c\x01\xed\x11\x23\x8a\x38\x6f\x77\xe8\xde\x5e\xb6\xb7\x57\x96\x72\xb3\x40\x27\xe0\x7f\x3f\xf4\xbd\x14\xce\xbd\x20\x4c\xf1\x70\xe8\x97\x0b\xd1\x6a\x21\x20\xff\x70\x2f\xf8\x73\xb4\xb7\xe7\x97\xfa\x1b\x2c\x8c\x17\xb0\x3b\xf7\xc1\x04\x09\x18\xf3\xc5\x62\x5b\x99\x5a\x4d\x14\x3c\x1c\xb6\x87\x2a\x80\x4b\x1b\x92\xb4\xad\x69\xf0\x83\x4e\x7a\x3c\x1c\x7e\x4f\x8b\xb7\xec\xce\xb2\x84\x84\x3a\xdc\x4c\x8c\x79\x1b\x99\xf8\x6f\x1e\xe6\x2a\x3e\x8d\x7c\x07\x75\xa0\x1a\x0f\x73\x13\x2f\x54\xbe\x4c\x4d\xe8\xd0\x3e\x90\x90\xf5\x9a\x7f\x83\xd8\x80\x72\xb5\x0b\x5a\x98\x95\xbc\xfe\xe8\xf7\x19\xcc\x7c\x4f\xd6\x09\x75\x8c\xbb\x3c\xd6\x4d\x00\xf2\x26\xd7\x57\xd1\xa1\x73\x64\x8d\xbc\x47\xeb\xeb\xe4\xb1\x4e\xb7\xf3\x1e\x94\xa4\x93\x34\xa9\x0a\x20\xf5\x0c\xaa\x35\x67\x0a\x73\x05\xa3\x3d\x64\x74\xd2\x86\x29\x9c\x4a\x25\x0a\x69\x59\x66\x45\x16\xcc\x8c\x26\x30\x6b\x73\x41\x19\x1c\xa1\x6f\x91\x7d\x78\x75\xce\x61\xed\xe1\xb3\xec\xab\xa3\x91\x3a\x94\x93\x0c\x61\x13\x75\xe7\x0b\x75\x25\xdd\xb0\x94\xf5\xef\x6a\x26\x97\xfb\x25\xd2\x94\x4a\xb5\x67\xea\x2c\x00\x77\x0b\xb9\x09\xa7\x0a\xbf\xc8\xbc\xb0\x07\x44\x00\xa4\x10\x06\xf2\x37\xba\x57\x53\xc8\xb8\xb9\x5a\xa4\x9f\x33\x48\x9c\x47\x36\x23\x95\x8f\xe6\x72\x94\x4e\x4f\x3b\xa6\xb7\x1f\x32\x48\xde\xea\x11\x8f\xfd\x08\x40\x27\x1b\xa7\x1a\x6b\xf3\xed\x57\x3a\x90\x25\x75\xfe\x39\x59\xef\xa5\x22\xd1\x66\x35\x5f\x1a\x46\x54\x75\x1b\x1d\x8d\x8b\x9e\x2d\xdd\x41\x8b\x22\xcf\x54\x71\x2f\xf6\xcc\x30\x2d\x02\x85\xd9\xd6\x29\x75\xd5\x4a\x04\x20\xb0\x7b\xdf\x97\x48\xae\xcb\x90\x1c\x47\xc9\xcb\xaa\x64\x27\x4f\xab\x7b\x08\x6c\x9a\x75\x35\x86\xbe\x4d\x9b\x6b\x0a\x74\xba\x3b\x03\x86\xe0\xb5\x7e\x7d\x5c\xe4\xd0\x55\x70\x8e\x01\x0a\x45\xd4\x43\x61\x02\x65\x3f\x3a\x01\x10\xbd\xb2\x77\xa2\xfc\x1e\x3c\x3c\x78\x2f\xd4\x8d\x2f\x42\x45\x4b\xb5\xd3\xc2\x44\x51\xb9\x60\xb1\x82\x85\x34\x93\xa9\x0f\x09\xa3\x59\x76\x49\xd5\x6b\xd5\x7b\x38\x60\xb3\xa9\xf0\x3d\xa3\xde\x9b\xde\x76\xba\x95\x7e\x75\xba\x39\x82\x9d\x23\x07\xc3\x0c\x92\x1c\xc1\xce\x51\x0c\x7b\x28\xe4\x88\x08\xb7\x13\x0e\x03\x40\x9b\x7b\xb8\x7b\xe8\xd2\xa0\x73\x1a\xe7\xad\x9c\x4a\xf4\x3b\x05\xfa\xdd\x00\xf0\x3a\xfe\x9d\x0a\xfe\x19\x24\xad\x8f\x74\xe0\x55\xda\x35\xb8\xf3\x66\xdc\x75\xdb\xdd\x4d\xd2\x19\x83\xab\xab\x0e\x38\xee\x83\xab\x4e\x17\x74\x4e\xfb\x7d\x95\xde\x38\x65\xb2\x0c\xd0\x52\xce\xf7\xc3\xa3\x78\x98\x7f\x88\x80\x47\xd0\xad\xb7\xdb\x33\x69\x41\xf5\xf2\x12\xdc\x9b\x31\x38\xd6\x43\xb0\xb0\x48\x57\xd9\x97\xcd\x48\x8d\x79\x4f\x96\xf0\xae\xfe\x58\xd4\xd5\xd9\x50\xf3\xea\x27\xb1\x49\x4d\xaa\xe4\x42\xc3\x38\x98\xbc\x4e\xb5\x99\xa9\xf4\xc5\xda\x6b\xb4\xb1\x4b\x8e\xb4\xd5\x6c\x4b\x13\xcf\x64\x7b\xd7\x8b\xb7\x4a\xe4\x6b\xb9\x2b\x2a\x71\xd7\xa1\xe5\xae\xc3\xf2\xe4\x8a\x1a\x99\xab\x32\xb9\xf4\xf8\x56\xd9\x2b\x5f\x7f\x1d\xee\xaa\x72\xbb\xc9\x4c\xbb\x9c\xf3\xa2\xcd\x38\x2f\x02\x9d\x43\xcd\x72\x40\xa1\x5e\x4b\x44\xbb\xb2\xe5\xca\x5c\xa8\x7d\x72\xd6\x88\xea\xb7\x02\x47\xf5\x65\x01\x4a\x68\xd4\xba\xa1\x46\x50\xef\xc6\x21\xe6\x97\x88\x0b\x39\x78\x3a\xb7\x9e\xa5\x80\x1f\x81\xa8\x62\x7a\x5b\x97\x34\x5e\xee\xdb\x53\x38\x42\xfb\x70\xc0\x95\x69\xfd\x7b\xb5\xf9\x5a\x89\xa2\xe4\x0d\x6a\xdf\x38\xbe\xa0\xea\xdd\x88\x0a\x6a\x83\xfd\x34\x9a\x44\xcb\x2f\x95\xa4\x96\xef\xcb\x24\x4f\xc7\x4d\x09\x8f\xb5\xeb\xfd\x4b\xf7\x7b\x23\x8f\xb8\x10\xec\xa0\x8e\x55\xc2\xc3\xca\x90\xa2\xe5\xd5\x50\xb0\xa5\xcb\xaf\x1d\x3f\x73\x21\xb0\xd1\x78\xba\x72\xbc\xbf\x94\x1d\xa2\xf0\x3e\x37\x03\xbc\xad\x7a\xa8\xba\x59\xba\x6b\xd8\x4e\xc6\x38\x4b\xb7\x40\x32\xbf\xcb\x68\x2a\x7e\x35\x54\xef\xa7\x26\x54\x4c\x45\x51\x81\x19\x86\x5c\xaf\xc4\x29\x4a\x68\x8a\x52\x13\x53\xc6\x0b\x80\xa9\xf2\xeb\xc5\xfb\x77\x75\x41\xcf\x94\xaa\x99\x25\x76\x04\x9b\xdf\xa3\x9e\xac\x64\x04\x22\x2d\xf5\xe9\xf2\xc1\x42\x2f\xc5\x22\xb8\xb7\x1b\xd1\x23\xf4\xf4\xfa\x40\xfc\x53\xf2\x99\xe0\xfb\x8a\x4d\x18\x5a\x96\x2b\x74\x82\xef\x30\xe1\xfb\x72\xbd\x51\xce\xf5\x5f\xd9\x84\x57\xf8\xb5\xdf\xdb\xd5\xb0\xa4\xf9\x57\xad\xb4\x9b\x2d\x95\xae\xb3\xbd\x5d\x3b\x6b\x0b\xa4\xa4\xd2\x05\xfe\x43\xc5\xa7\x14\x45\x14\xb5\x2a\xa7\x4a\xd6\x2e\x3e\x57\xcf\xfa\x2b\xb7\x01\xab\xc5\x3d\x75\x86\xb6\x08\x40\x3e\x0e\x8d\xe0\xf3\x8f\x1b\x01\xb7\x23\x9a\x83\xce\x30\x17\x97\xf4\x82\xb2\xaa\xf6\x99\x4f\xce\xa2\x86\x31\x6e\xbe\x68\xee\x4c\x5e\x5e\x02\xbc\x50\x05\xbd\xc7\x4f\x2d\xc1\xf7\x51\xf5\xdc\xe3\x5b\xd9\xbe\x1a\xf6\x42\x4a\xce\x30\x9f\x60\xce\x1f\x7f\xac\x5c\xc1\x56\x07\x77\x5b\x72\xf2\xf1\xa9\x06\x97\xaf\x7f\x81\xd3\xce\x47\x87\x8c\x8d\x7b\xbf\x9c\x4a\x98\x5f\x8c\xe9\x2d\x26\xa3\xc2\x90\x9c\xdf\xb7\xdd\xed\x80\x29\xa3\x13\x2a\xd0\xe3\x74\x9e\x2f\xa4\x93\x5b\x9d\xc7\xe8\x00\x07\xa0\x3c\xcb\xf4\x68\x16\xe8\x84\xf9\x61\x6e\x10\x1a\x74\x72\xb9\xfc\xc0\x2a\xea\x25\x35\xe2\x28\xd7\x22\x8e\x6a\x4a\x84\xdf\xa8\xa2\x07\x7b\x7b\xde\x2b\xca\x06\x38\x4d\x11\x51\x5a\xd8\xc3\x83\x2f\x7a\xde\xff\xd0\x19\x6b\x3d\x7f\xf1\xa6\x25\xe8\x35\x22\xad\x94\x22\x1d\xa1\x45\x27\x2c\x9d\x22\x26\xb9\x58\x92\x4c\xd0\x96\xe9\x5a\xcb\x3d\x65\xf0\x8c\x8c\xee\x0c\x9e\x7f\x6f\xb2\x00\x6b\xb5\xe5\x1d\x15\xad\x0f\xa6\xe6\x99\xc3\xbe\xa9\x13\xe1\x4d\x2c\x72\xb5\x7d\x63\x35\xe4\x48\x6b\x21\xd5\x2b\x79\x2b\x43\x80\x57\xe6\xd4\x34\x83\x89\xba\x51\xdf\x1e\x42\x9c\xcd\x18\xfa\x86\xa6\xf4\x86\x09\xf1\x29\xcb\x05\x43\x2a\x53\x3f\xcc\x32\x9a\xe8\x20\xef\x2b\x6f\xb6\x25\x3a\x04\xf3\xbe\x1c\x61\xcc\x51\x5b\xdd\xf6\xfb\xea\x27\x6e\x9b\xef\xcd\xde\xa4\x08\xde\x57\xbf\xdb\x16\x99\x8d\xe8\x79\x81\x7d\xe3\xc6\xe8\x50\xc7\x1c\x67\x95\xc0\xd6\xb7\x4a\x82\x6e\x8b\xa3\x6a\x95\x78\x5c\x52\x2b\x2e\xcf\x6d\x97\xe6\x41\x28\xc6\x88\x34\x04\xe6\x95\x4c\x6d\xce\xe7\xdc\x36\x9d\x93\xb9\x90\x9b\xdb\xce\x47\x81\x3e\x2c\x2a\x14\x2c\x29\x6f\x14\xb8\xd5\xf5\x24\xd7\x0d\xe5\x9c\xce\x04\xf2\x3d\x17\xd5\xe2\x77\x83\xfe\xb4\xe5\x26\xcc\x67\x13\x9d\xdf\xfa\x9b\xcf\x9b\x95\xcc\x83\xf9\xcb\xbb\x29\x24\xf5\xe3\x93\xfa\x75\x6c\x63\x22\x50\xe7\x0c\x17\xfa\x98\x21\x54\x84\xd0\x10\x7e\xa5\x83\x0b\x8d\x73\xbe\x75\xc8\xd6\x7b\x3d\xf4\xf0\xe0\x28\x15\xc8\x44\xbc\xe0\x98\x57\x6d\xef\x1b\xc3\xef\x19\xc3\x25\xa1\x02\x0f\xe7\x39\xe9\x5e\x8c\x21\x19\x21\xdf\x2b\x30\xaa\xde\x4b\xde\x72\xa5\x90\x3b\x66\x7b\xa4\xc5\xc9\xff\x4d\x52\xfc\x0a\x83\xc7\x17\x17\xd7\xd7\xca\xd4\x6e\x1d\xb3\x98\x5d\x2e\xeb\xd4\xe7\x96\xab\xd5\xe6\xfd\x63\x4b\x97\x8e\x50\x59\xec\xab\x4a\x26\xd1\x91\xb9\x97\x09\x9a\x52\xce\x90\x8a\xdc\x77\x29\x4a\x1a\xa3\xf5\x47\x3a\x70\x0e\x77\x8c\x68\x94\xdb\xc5\xad\xc5\x5b\x99\xca\xb8\xc9\xc2\xa7\xa3\x33\x59\x83\x74\x59\x92\x7c\x9a\x4b\x92\x4f\x6b\x92\xe4\x06\x82\xdd\x85\xa0\xd3\xd6\xaf\x74\x50\x16\xe7\xb6\x92\x2a\x25\x06\xad\x8f\x74\xc0\x43\x6f\x7b\x29\xf0\xa9\xb1\x45\x2b\xa7\x8c\x47\x0f\xdd\x97\x3c\x9d\xab\x8d\xda\x01\x10\xe1\x10\x89\x64\x7c\x0e\x6f\xcf\xe4\x0c\xc0\x9a\xff\x72\x79\xdf\x54\xd4\x1e\x04\x7e\x7e\x88\x15\x84\x92\xd4\x72\xc0\xd5\x79\x2d\x41\x4e\x5d\x0f\xa8\xad\x87\xab\xf0\xf4\x78\x38\xf7\x61\x60\x4f\x02\x8f\xf3\x66\x4f\x81\x28\x1f\x01\x9e\x56\xce\x4b\x3a\x1d\x20\x2a\x27\x25\x9d\x4e\x2c\x2a\xac\x94\x07\x02\x2b\xb8\xe9\x74\xb3\xe3\x8d\xe3\x00\xf8\x8d\xe7\x1b\x35\xcd\x84\x3f\x3c\xf8\x7c\x3b\xcd\xc4\xe1\xa1\x0d\xd9\x16\x32\x51\xe7\x5b\x6e\x19\xf0\x74\x33\x06\x3c\xb6\xa7\x21\x5b\x85\x06\x59\x66\x6f\xfd\x9e\xad\x84\xf7\x72\x94\xd3\x84\xcd\x26\x83\xe6\x6d\x51\xf9\x36\x03\x9c\x2e\x3c\xe0\x99\xf3\x66\xb9\x26\x3b\xaf\x9b\x7d\xc4\xe4\xd4\xa8\x1d\xc8\xa9\xba\xd6\xcd\xdb\x66\x48\xf9\x55\xb9\x54\x43\x36\x32\x7e\x3b\xdc\xeb\xdb\xe4\x26\xa2\xec\x2f\x5e\x94\x09\xf5\x69\x59\x51\xd2\xb8\x5e\x0b\x86\x27\x13\xed\xf8\xde\x54\x01\xf5\x6b\x49\x50\x36\xdf\x49\x6d\x4c\xc0\xef\x79\x44\x57\x7a\xb2\xac\x38\xe0\x19\x52\x96\xa0\x37\x70\x46\x92\xf1\xaa\x88\x5b\x72\x20\x55\xd1\x3c\x20\xa2\x1f\x98\xb5\xa0\x14\xd7\xae\xe1\x54\xa7\x3e\x61\x5f\x49\x38\x2d\xdd\xe6\xa7\xec\x35\xf6\xf8\x54\xed\x36\x8b\x60\x01\x3e\xe1\xb4\xea\x91\x9a\x93\x0d\x37\xf9\x1d\xf3\xc6\xe3\x10\x33\xe1\x28\xff\x89\xf0\x62\xf4\x76\x09\x3e\x63\x94\x49\x05\x6f\x3f\x83\x7f\xcc\xdb\x49\x86\x93\xeb\xaf\x1f\x03\x68\xd5\xfc\xb5\x32\xb0\x60\x15\xf7\x65\x8b\x97\x87\x79\x1b\x13\x81\xe4\x10\xe0\x1b\xa9\xd8\x39\x6e\x68\x0d\x77\x63\x92\xf2\x2b\x14\xdc\xeb\x58\xfc\xf0\x8f\xb9\x2a\x1d\xf8\x57\xc6\x0d\x42\x3d\x02\xd4\xdf\x32\x0c\xb8\xec\x99\xf5\x28\xfe\xd2\x16\x85\xab\x3c\xc5\xa0\xf5\x7d\xb4\xce\x96\x7d\xb0\xa1\x91\xaa\xd4\xe1\x9a\x22\x6a\xbe\x54\x3c\xfe\x5d\x3f\xd0\x44\x69\xf3\x3a\x93\x4e\x75\x4f\xcd\xdd\x99\xb5\xa7\x6c\xf3\xde\x59\xf2\x7b\x56\x05\x03\x20\x7a\x28\x2c\x94\x45\xa9\x71\x5a\xa7\xeb\x67\x99\x8f\x82\x27\x22\x64\x28\x9d\x25\xc8\xa7\x20\x0a\x9e\xf8\x22\x9c\xc0\xe9\xcf\x73\xdf\x53\xb9\x6a\x3c\x73\x2d\xcb\x14\x81\xc0\x79\x90\xe5\xe3\xc8\xb5\x44\x09\x3a\x1a\x65\xe8\x0c\x0f\x87\xb5\x55\x53\x7f\x2a\x62\x95\x6a\xfc\xbd\xda\xaa\x69\x54\xb9\x46\x07\x45\xe4\x44\x46\x06\xdc\x2d\x43\x9c\xab\x23\xf6\x9e\x2a\x51\xce\xac\xc1\x33\xf4\xa4\x13\xa3\xc5\x8e\x95\xf3\x33\x27\xb4\x1e\x0a\x75\x06\xcc\x12\x96\x5c\x11\x02\x85\x26\x85\x65\xe9\x9b\x44\x7a\x61\x41\xd1\xb2\x03\xe5\x33\xf4\x24\xf3\x45\xa0\x32\x6c\x6d\xca\xd9\x3f\xde\x25\x87\xbc\xe3\x9b\xdd\x70\x70\xd8\xdb\x5e\x2d\xf8\xeb\x12\x08\x39\xef\xd6\x2c\x29\x0e\x8f\xdb\x22\xb9\xc1\x94\x37\xde\x64\xf8\x32\x37\x0b\x00\xed\x55\x6e\x09\xd4\x6f\x13\xd4\xae\x04\xb0\x4a\x9d\x86\x1b\x08\xd5\x3a\x3b\x54\xdf\x36\x60\x1b\xdc\x27\xb0\xcb\xca\xe3\x2f\x13\x7c\x0f\x29\xdd\xca\x0b\xa9\xd3\xa3\xbe\x4a\x92\xa6\x57\x4d\x95\xf7\x4d\xd4\xc3\xfa\x7e\xe4\x95\x4b\x27\x66\xf4\x2b\x8a\xb0\x96\x43\x39\x25\x4a\x62\x03\xdd\x6d\xa3\xe3\xae\x48\xed\x63\x43\x5b\x9b\xc7\x04\x4a\x7a\xc8\x9f\xf0\x0e\x9b\x32\xfa\x18\x45\x7f\x1f\xc3\xa9\xf9\x6e\xc3\xe7\xd6\xe2\xe9\x56\x4d\xae\xda\x56\xdc\x66\x88\xe3\x3f\x74\x74\xc2\x15\x9e\xf1\xea\xee\x7a\x5b\xe3\xde\xe0\x18\x0f\x38\xc8\x00\x05\x0c\x60\x30\x0b\xee\xed\x82\x96\x3a\x67\x12\x53\x1f\x05\x0f\x0f\x2e\x0f\xe0\xa1\x7f\x31\x9f\x0c\x68\x16\x62\xa1\x6d\x22\x2d\x4c\x5a\x26\x7a\xab\x2c\xec\x5d\xe9\xe9\xd2\x7a\x9e\xc7\x79\xed\x7b\xbd\x5e\xcf\xf0\xce\x94\x51\x41\xc5\x7c\x8a\x42\x41\x75\xf2\xbc\x30\x81\x99\x5c\x8e\x03\x37\xa0\x7e\x38\x64\x74\xe2\xa3\x60\xa1\x40\x4e\x7c\x67\xbd\x4d\x4a\xeb\x6d\xb5\x83\xc5\x65\xe1\xab\x3e\x80\xbd\xdd\x08\xf0\xde\x6e\x07\x64\x39\x03\x0a\x36\x57\xb6\x1a\x59\x86\x02\xd6\x43\x57\x15\x6c\xfa\x7e\xf0\xd3\xae\x0f\x7b\x3e\xed\x31\x65\xce\xf0\x83\x20\x4c\x29\x41\xc1\xde\x9e\x4f\xc2\xe9\x8c\x8f\x7d\xaa\x03\xee\x06\x60\x57\x3c\x3c\x10\x13\x7a\x76\xb7\xd7\x13\xc1\x4f\xb2\xc9\xe0\x27\xe3\x34\x84\x83\x7b\x2e\xbb\x90\xf5\xf0\x62\x88\x09\xcc\xb2\xf9\xbd\xec\x00\x7c\x78\xd0\x47\x04\x2c\xd4\x68\x3c\x3c\xe4\xbf\x24\xa6\xa6\x24\x1e\xfa\x3c\x10\x63\x46\x6f\x5b\xd9\x22\x77\x3e\x22\x0b\x85\x63\x85\x26\x13\xb5\xc5\xca\x92\x04\xdd\xb6\xe4\x96\xa7\xcd\x1c\xde\x6b\x72\x03\x33\x9c\xb6\xa0\xce\x53\x27\x15\x9e\x14\x71\xc1\x66\x89\x98\x31\xd4\x22\x94\xb4\x15\xe2\x83\x0c\xb5\x30\xe1\x02\x92\x04\x79\x0e\xe0\xa9\x19\x72\x3d\x28\x98\xeb\x7b\xda\xc5\x60\xa1\xc5\xe7\x59\x13\x86\x3d\xc7\x04\xe7\xec\xa6\xb6\x53\x74\xa8\x19\xe3\x99\x92\x4d\x7c\x14\xb8\xb9\x4a\xa5\x2c\x30\x58\xb6\xaa\xe0\xe2\xb0\xa0\xb4\xbe\x98\x39\xec\x39\x13\xba\x0f\x52\x98\xa7\x24\xbb\x93\xb8\xe8\x9f\xf3\xe2\xa7\x8a\x25\xab\xe2\x60\x4b\xb1\x4d\xd5\x52\xb9\x6a\x63\x29\x38\x4f\x19\xd6\x27\x5f\x46\x57\x7d\x83\x09\x6a\xbd\xd0\xcd\xb8\xfa\xa9\x82\x74\x8b\x53\x31\x8e\x23\x30\x46\x78\x34\x16\x71\x04\x30\x7f\xae\x64\x6e\x09\x78\x88\xb3\xec\xf5\xfa\x14\x4c\x4e\xdf\xdb\xb2\x4a\x91\x37\x42\xd7\x1c\xcd\x70\xfa\x8a\x32\xb5\xe6\xa9\x88\xeb\x13\xc8\xaf\xb7\x84\x2b\xab\xac\x85\xab\xb5\x05\x9d\x8c\xd8\x1a\x06\xcc\x0b\x9d\xb4\xaf\xba\x5a\x3b\x05\x96\xed\xf2\x4e\x11\xb9\x4b\x23\x1b\x8d\x5b\xab\x14\x6a\x80\xfa\xa5\xd0\x1f\x77\x26\x40\xaf\x8d\xed\xac\x87\x2a\xd0\x69\x34\xdc\x4e\xe9\x38\xd6\x9f\xbf\x53\xf3\x7a\xa7\xe6\xa6\x53\x79\x2f\xee\xaa\xc1\x86\x9d\x13\xe0\x67\x2c\x6c\x8c\x37\x3c\xf0\x82\x98\xda\x4f\x43\xf3\x1a\x78\xc1\x02\xcc\x97\xc6\x2e\x6e\xa8\x10\x76\xff\x1f\x93\x95\x04\xa5\x99\xc0\xd3\x0f\x54\x9f\x09\x1b\xde\xd6\x2f\x2f\xe4\xa6\x11\xfb\x11\x98\x39\xf7\x6a\x2a\x15\xbc\x00\xdc\x5d\xc8\xed\xad\x7e\x55\x15\x0a\xa8\x83\xbd\xa8\xf1\xf1\x80\x57\x8c\x83\x07\xbc\xf9\xf3\x3b\xcc\xdf\x0f\x87\x1c\x89\x65\x14\x56\xf5\x72\xf3\x5f\x51\xf9\x99\x35\x12\x87\x6a\x63\x95\x42\x93\x1f\xc4\x95\xb7\x72\xca\x41\xe6\x5b\xaf\x7d\xd5\x1d\x13\x32\x9d\x97\x35\x7f\xc3\x26\xb2\x04\x68\x8a\x7f\x73\x85\xfa\x8b\x20\xbe\x8a\x40\xa7\x18\xcf\x90\x49\xe5\xec\x5c\x2d\x3a\x57\x9d\x48\xdb\x95\x1d\x9c\xfa\x72\xab\x98\x40\x4c\x7c\x18\x00\x29\x49\xdc\x9d\xcb\x0a\xab\xa8\xf4\x2a\xdf\xe9\x9b\xe8\xb5\x15\x85\x00\x29\x70\x06\xb0\x57\x43\x97\x2c\x47\x13\x64\xbd\xf2\x04\xb2\xb2\x33\x54\xcb\x6d\x26\x27\xf9\x7c\x1d\x2e\x73\x8b\xcb\x5c\xe3\xd2\xdc\xfd\xb9\xe9\xfe\x63\xc6\x23\xc7\xd1\x4e\xaa\x62\x68\x64\x3f\x89\xea\xe7\x3a\xce\x34\xbd\xf3\xee\xd6\x33\x63\xbd\xaf\x13\x78\xb7\x49\x47\x1f\x1e\x3a\xb6\x6b\x7f\xee\xec\xed\xf9\xa2\x37\xf4\x45\x10\x80\x25\x0c\x5b\xe2\x2c\x3d\x16\x45\xef\x40\x27\x2a\x38\xeb\x2a\x02\xa2\x2f\xf1\x54\x05\x6a\x68\xea\x79\xb9\x94\x75\x96\xac\x90\xc5\x70\xe7\xbd\x93\x22\xeb\xcf\x54\x08\x3a\xf1\x03\xdd\x55\x5d\x49\xc3\x0f\x42\x81\x93\x6b\xee\x1f\xe9\x1f\x06\xaa\xf2\x71\x98\xeb\x24\x0c\xb5\x7e\x6d\x30\xf3\x1d\x8c\x45\xaf\xab\x53\x14\x24\x08\x67\x3e\xda\xef\x74\xa3\xe0\x49\xc7\x0e\xbf\xea\x44\x4e\x11\x39\xdb\xcb\x12\x60\x2e\xe1\x91\x9e\x94\x16\xbb\xb2\x00\xb9\x8a\xfa\x80\xf7\x7c\x72\xd5\xe9\xb7\x61\xb0\xef\x0b\xa9\xcb\x65\x52\x4c\xa4\xbd\xe8\x27\xfa\x1f\xe2\x27\xfa\xe4\x49\x90\x69\x09\x0f\x3e\xe1\xff\x4e\x2d\x55\xb2\x85\x4f\x40\x31\x27\x14\x08\x09\xef\xcf\x9d\x67\x43\x1f\x06\x31\x94\x68\x37\x8e\xc6\x7c\xe5\x68\xd4\xb8\xb8\x4c\xfe\x73\x29\x19\x94\xa9\x3f\x77\xa8\xaf\xf6\x30\x6e\xde\x2b\xa2\x37\x0c\xc6\x5f\x18\x56\x59\x5c\xb7\xe8\x5a\x5a\x06\xa9\x9d\x8e\x3a\x9f\xd4\x47\xf3\x74\x81\xff\x40\x7e\xbb\xba\x68\x96\x7a\xed\x79\x96\xb5\x7f\xd1\x92\xd1\x72\x61\x05\x0f\xfd\x5d\x05\x0c\x65\xca\x67\x2f\x17\x4a\x3b\x3b\x0e\x8d\xcd\xb7\x50\xc5\xdc\xb9\x50\x1a\x9a\x14\x8c\xc3\x3b\xad\x94\x15\x46\x02\x13\xc4\xe7\xe7\x9f\xe9\x9d\x1f\x84\x5a\x2c\xcb\xc7\xf5\x6f\x4a\x58\xfb\x42\x3d\x99\xaf\xee\x89\x12\x14\x73\x9a\x68\x8a\xd5\xc6\x52\xf7\x36\x5f\xd2\x7e\x31\x4f\x4b\xdc\x50\x74\xe1\x76\x31\xe5\x7e\x29\xe1\xba\xa4\x09\xd5\x8d\x7c\x07\xff\x9b\x7e\x58\xd2\x80\x2a\xea\x0c\xf3\xdf\x0c\x06\x2a\x9b\xf0\x8a\xad\xd0\x30\xe4\x9a\x49\xa3\x8b\xe5\xdb\x9f\x2e\x9b\xaf\x0b\x7a\x67\x84\xce\xda\x6d\xa7\xb0\xe5\x5a\xd9\x0b\x3f\x30\x0a\x4b\xda\xe4\x88\x27\xa5\xa1\xdd\x1e\xba\x82\xfd\x45\x10\xde\x35\x05\xc7\x43\xbe\xb8\x22\x72\x11\x0e\xe7\x4d\x00\x84\x2f\x2b\x07\x8b\xa0\xd8\x29\x94\x94\xcc\x50\x2d\xbf\xe8\xd7\xc7\x5f\xf6\xe2\x33\xe2\x1f\xf9\xc2\x8f\x82\x20\x9c\x77\xb6\xa0\x44\x8a\xd3\xd7\x84\x23\x26\x5e\xea\x39\xb1\xea\xcc\x50\xfb\x1f\x9c\xe1\x09\x22\xca\xe8\xe7\x07\xb5\x93\x1c\x6d\x78\xf1\x57\xce\xb2\x04\x92\x1b\xc8\xbd\xc0\x8a\x86\x1a\xee\xf3\x42\x9e\x0f\x07\xd8\xa4\x79\x0a\x00\xd7\x1d\x20\x2a\x07\xce\x84\xce\x38\x52\xa9\xe9\x9a\xc6\xa4\x90\x0c\x64\x31\x5d\xff\x2a\xea\xef\x98\x53\x42\xed\xd7\xfd\x56\x7e\xfb\xbf\x1e\x40\x01\x80\x3e\x0a\x80\xe6\x02\x36\x23\x61\x9e\xd9\xdb\xf7\xe0\x50\x20\x76\x8e\x88\x8a\x90\xc7\x1b\x26\x97\x81\x98\x2b\x8a\xea\x5a\xbb\x72\x03\x75\xba\x39\xa1\x37\x8d\x9c\xf3\x98\x5e\x96\x21\x67\x08\x56\x40\xaf\x45\x02\x35\x20\x81\x6a\x48\x74\x02\x65\x15\x50\xaf\x4b\x1a\x98\x3e\x52\x0d\x16\x92\x5d\x74\xaa\xf3\xe7\x42\x30\x5e\x3b\x57\x60\xaa\x39\xa5\x68\xfb\xc1\x02\xd4\x06\xb6\xa4\x6a\x69\x75\xcd\x9d\x49\x8d\x73\x47\x7f\xca\x5c\x29\x90\x16\xe2\xb5\x54\xfd\xe8\xde\x1e\x35\xaa\x85\x86\xca\x00\x76\xe4\xc4\x01\xe6\x9a\xf5\x9a\xf4\xbc\x2b\x22\xa7\x56\x86\x86\x02\xcc\x7a\x22\xc4\xe4\x06\x31\xb9\x63\x83\xb4\x87\x7d\x0a\x66\xa0\x13\x80\xa4\x47\xaf\xd2\x76\xa7\x0f\x26\xf2\x47\x7f\x87\xf5\x92\xbd\xbd\xdd\xc9\xb3\x24\x9e\xb5\x93\x2b\xd2\xff\xf3\xe4\x8a\xf4\xdb\xb3\x67\x93\x38\x71\xee\xc4\x96\x08\xc8\xdc\xdb\xb2\x55\x15\x0e\xdc\xcb\xf6\x63\xe1\x33\x39\x95\x81\xa0\xd3\x18\xfa\xec\x2a\xeb\x07\xed\x4e\xb4\x08\x16\x39\x21\x15\x5d\xcd\xb2\x45\x07\x1c\xb1\x1b\xc4\x9c\x65\x6b\xf5\x60\x04\xc0\x79\x5e\x35\xcb\xcd\xb4\x95\x82\xb2\x7c\x9c\xd0\x19\x11\x67\x07\x66\x79\xe0\xbe\x3b\x63\x94\x51\xae\xe4\x2f\xd0\xec\x0f\xeb\xee\x85\xca\x37\xa9\xb1\x94\xb3\x9f\xc9\x42\xf5\x86\x51\x98\xf3\xaa\xdc\x97\x6b\xcc\xe5\xa3\xd0\x9d\x3c\xca\xf1\x07\x54\xa0\xd4\x38\x16\x73\x93\x9f\x0a\xa5\x0f\x0f\xe5\x37\x98\x8c\x1e\x1e\xfc\xed\xd6\xb6\x5c\x96\x09\xb4\x2d\xb5\xd8\xd9\x03\xb0\x1d\xa0\x79\x03\xa0\xf9\xe3\x00\x8d\x72\xc1\xb3\x02\xcd\x0a\xa4\x81\xca\xd4\x45\x52\x7a\x7b\x8e\x38\xfe\x03\xfd\xa2\xdc\xb3\x4a\xee\x97\xc5\x98\x53\x92\xe8\x45\x0b\x34\xee\x09\x76\xd6\x17\xaf\x9a\x99\x2d\xfc\x3f\xbe\xc7\x6f\x46\xe6\x4c\x54\x09\x2a\xbe\x54\x2a\x91\x91\x8a\xfc\xc0\xa6\x86\x73\xf2\xec\xdd\x6b\x63\x9d\xc8\x8d\x75\x64\x11\x80\x06\x66\x2f\x9d\x23\x0c\xd6\x9e\x23\x70\xd1\x86\x49\x42\x59\xfa\x4d\x33\x3f\x95\x6c\xa2\x45\x7f\xfa\x3a\x1f\x2d\x4e\x3d\xc0\xe9\x8c\x25\x1b\xe6\x08\xa7\xe4\x52\x1d\xf2\x56\x9d\x68\x21\x13\xd6\xdd\x7e\xb7\x03\x52\x94\x50\x06\x05\x4a\x2f\x1a\x61\x7b\xba\xc9\x55\x61\x8e\x85\x5c\x99\x60\x32\xb6\x82\xd0\x35\x9a\x03\xd2\xf3\xb0\x40\x93\xd0\x4d\xab\x0b\x6d\x85\xa2\x0b\x66\x7b\x0f\x4d\x33\xa5\xd3\x41\x1e\xd8\x63\xbf\x21\x26\xe9\xcf\x73\x9f\x98\xb5\x67\x84\x84\xcf\x81\x08\x72\x41\xfd\x5e\xb6\x15\xf3\xfc\x18\x3f\x7b\xb6\xbb\x9b\x85\xe6\x01\x4a\x66\xa8\xc5\xd4\x29\x7a\xad\xc2\x32\x70\x93\x18\x4e\xbf\xfa\xfc\x99\x50\xcb\x2c\xb6\x6f\x7f\xb5\x07\x34\xfd\x86\xf7\x33\x1c\x57\xec\xc7\xc5\x3c\x5c\x8a\x97\x8a\x6b\xfa\x9d\xcd\xa4\xb6\x09\xb6\xda\x1c\x47\x4c\xa1\x1f\x63\xde\xce\x8c\x02\x97\x5f\xe2\x50\xc1\x31\x63\xe5\x8d\x63\x5d\x71\x9c\x58\x51\x15\xf0\xf1\x6e\x04\x06\x33\x21\x28\xd1\xd6\x76\x4f\xbb\x5a\x38\x04\x06\x25\xc0\xbb\x11\x50\xcc\x6b\x1d\x7b\x28\xaf\x4c\x59\x4a\x54\xc5\x47\xdf\x55\x55\x63\x34\x85\x23\x4c\xbe\x71\x66\xbb\x6d\x56\x2f\xb9\x0d\xc5\xdd\x23\x75\x51\x3b\xee\x00\x3e\x65\x08\xa6\x71\x57\xaf\x5f\xfc\x79\x43\x7c\x73\xfc\x87\x54\xd8\xa6\xcd\x29\x5b\xf3\x40\x02\x23\xd4\xee\x04\x3a\x5d\xac\xac\xf0\xa4\x23\xb1\x20\x69\x23\xc0\x62\xe1\x5b\x03\xbc\x65\x13\x7b\xda\x56\x8a\x26\x9c\xbb\xa5\x06\xa2\x16\x54\x3d\x75\x5a\x93\x41\xae\xaf\xaa\xaf\x6f\x7d\x49\xb3\xca\x28\xb7\xb4\x8d\x7d\xdb\x0f\x75\xe7\x09\x8e\xd0\x1b\x4c\x1a\x4c\x82\x6e\x73\x1a\x4b\x4f\x93\x7c\xe9\xaa\xaf\xbe\xe6\x2b\xbe\xac\x92\x0b\xef\x39\x4a\x52\x30\xef\xf4\x7a\x3d\x12\xe4\xc3\x6a\x9c\x89\x6c\xf6\xd3\x0e\x10\x6d\x24\x15\x3c\x4b\x3f\x02\xc4\x13\x14\x3c\xb1\xf6\x5a\x7d\xc6\xc9\xdb\x70\xb3\x8c\xee\xb2\x1b\xef\x66\x12\xb5\x18\x3e\x31\xd1\x6a\xb3\xc6\x60\xf8\x0d\xe8\x56\x89\xec\x22\xab\xc6\xb1\x57\x66\x22\x54\x09\x75\xaf\x20\x6a\x0b\x9d\x50\x68\x3c\x66\x8b\x28\xa6\xa9\x7d\xfe\x96\x5e\x20\x8f\xbc\xee\xaa\xba\x5e\xcb\xd8\xf8\x8d\xba\x6e\xfa\x51\x76\x9f\x32\x57\xe5\xb6\x59\x91\x1e\x27\x28\x35\xf0\xc8\xa4\x72\x5f\xc5\x30\xaf\x8e\xc4\x8d\xea\xfe\x42\x9b\x53\x5b\xdd\x02\x6c\x0f\xbe\x07\x81\x42\x8c\x3d\x60\x33\x99\x3a\xfb\xac\xbe\xbf\xd6\xb7\x61\x3a\x18\x9d\x4a\xe9\x63\x6a\xfe\x96\x46\x09\x73\xe3\xc7\x63\x46\xab\x79\xdf\x36\x47\xf5\x98\xb7\xcd\xee\x5c\xcd\x66\x11\xa7\x88\x27\x31\xe4\x89\xba\x6a\x6a\x8a\x57\x47\xcf\xe9\x8f\x5c\x13\xaa\x67\x66\xee\x30\x3a\x45\x7b\x26\x5e\x9a\x2c\xbf\x50\x31\x11\x67\x59\x7a\x51\x6e\xbd\x29\x58\xaf\x9b\x6a\xc3\xb1\xbf\xd4\x1a\xdc\x35\x0a\xa9\x2e\xf0\xf0\xb0\x6b\xf8\xc8\x85\xf0\x78\x6e\xd1\x69\x6f\xbf\x13\x09\x54\xa8\x7e\x7c\x1a\x2a\xdf\x56\xe8\x74\x78\x5f\xf6\x63\x2b\x54\x26\xb3\x4c\x60\xc3\xed\xed\x94\xd1\x69\x4a\x6f\xbf\x17\x4d\xd4\x76\xa7\x0f\xe8\x54\x6c\xee\x6a\x6a\x7d\xf0\x36\xd5\x57\xb5\xd1\xa2\x1a\x5d\x24\x97\x9a\xf3\x6e\x98\x3b\xc6\x70\x2a\x66\x0c\x2d\x09\x43\x56\x50\x10\x69\x9b\xe5\x39\x4a\x10\xbe\xa9\x1b\x2d\x9d\x4d\x3e\xaf\xb3\x63\xe6\x9c\x6c\x77\x6f\x0f\xed\xed\xd5\x6d\xab\xef\x49\x52\xb5\xaf\x96\x8c\x60\xc6\x03\x3b\x64\x68\x6a\x4c\x7c\x2a\x4b\x4b\xd5\x33\xbb\xc1\x18\x8a\x8c\xf2\x6c\x50\x31\x04\x34\x62\x45\xb0\x43\x0a\x77\x6a\x11\x3c\x23\x21\x53\x46\x66\xe3\xf1\x27\x82\x98\x38\xe9\xdb\x45\x11\xf6\x50\x5b\x89\x48\xb0\x00\x74\x8a\xc8\x7b\xf2\x9c\x31\x7a\x7b\x26\x69\x59\x16\xa3\xf0\x50\x8b\x38\x86\xb8\x3e\x32\x20\x34\x31\x1e\x1e\x0e\xa3\xdd\x5e\x4f\xc8\x2e\xbe\xa0\x29\x2a\xca\xe7\xc4\xf2\x4f\x7b\xce\x77\x59\xde\x7d\x0e\x72\x77\xc0\x95\xe6\xaa\x7c\x18\xda\x82\xe1\x91\x14\x7e\x54\xfc\xf0\xe7\xf9\x56\xe2\x7b\x90\x61\xd8\xa6\xb7\x84\xab\x80\x90\x29\x4d\x66\x4d\x70\xfe\xcd\x1a\x1e\x08\xf0\x5a\x05\x54\xcd\xc1\x5e\x10\xec\xc0\xbd\x3d\x1f\x86\x43\x9a\xcc\xb8\x1f\x00\xa1\xee\x45\xaa\xd8\x35\x3a\x7e\x44\x10\x2c\x16\x28\xe3\xa8\x55\x0c\xa7\x24\x9e\x22\x6b\xad\xec\x02\x08\x06\x95\xab\xf3\x9b\x7a\x4c\x01\x3c\xf4\xbb\x4f\x4b\x84\x70\xe9\x60\xd9\x0e\x0f\x7d\x12\xdc\x13\xdb\x5a\x22\x35\x41\x5f\x04\x46\x6a\xde\x92\x68\x12\xbd\x55\xd8\x81\xa6\xc9\x62\x2e\x4e\x29\xb4\xf1\xd0\x3f\x38\xa9\xf7\x9a\xf7\x44\x28\x20\x1b\x21\x0d\x12\xd3\x19\x37\xa6\xd5\x0b\x3c\xc8\x30\x19\xed\x70\xe5\x1a\xbd\x8a\xae\x39\xfc\x0a\x7b\x18\x63\x8f\x85\x4f\xd0\x9d\xa8\xc0\xce\xf6\xf6\xfc\x6c\x3d\xec\x83\xae\x0b\x38\x37\x64\x73\xb9\xb4\x59\x75\x1c\x2d\x19\xf3\xad\x96\x6d\xa5\x0b\xd4\x13\x9b\x7c\xc3\xc5\xda\xed\x91\x14\x77\xfe\xa2\xf2\x1f\x3d\xc6\xb4\x53\x8b\xbf\xf3\x2d\x77\xd6\x3c\x12\x84\x5a\xfb\x65\x7f\x50\x7a\xf9\x17\x15\x65\xc5\x46\xb5\xd6\x9d\x7d\x65\x62\x05\x55\xc3\x30\xc8\x69\x62\xc1\x84\xb5\xe2\x1e\xf0\x4a\x50\xb7\x8c\xb4\x3e\xa5\xb7\x88\xe5\xdb\xb7\xda\xcb\xa7\xcd\x51\x1a\xdc\x82\xeb\x01\xfc\x80\x09\x60\x1a\x11\xd9\xcf\x97\xa5\x4f\xa5\x88\x05\xf4\x83\x53\xe6\xb1\x84\xf8\xd1\xf1\xde\x1f\xa0\x21\x65\xc8\xec\xc2\xfc\xb1\x64\xa8\x82\xf9\x3e\xa9\xb2\x32\xd8\x59\x09\x9d\x4f\x25\xc7\xf7\x4d\x87\xcd\xb9\x43\x2d\xcb\x63\x9a\xa5\x8f\x5f\x2a\x4a\x30\x7e\x78\x7a\xb8\x6b\xa0\x8a\x02\xf5\x78\xb2\xd4\x41\xfd\xe8\xd4\xd1\xf9\x55\xdb\x93\xfc\xda\xff\x23\x29\x53\x01\xf3\xa3\x53\xe5\x13\xb7\xda\x1f\x7a\x87\xd5\x97\x7e\x4c\xba\xb5\x75\x41\xb2\xbe\xfa\x65\x5e\x7a\x6d\xa3\xee\xd6\xb3\x7c\x0a\x28\xf8\x25\x83\xc9\x35\x62\xfc\x1c\x8d\x30\x17\x6c\xbe\x24\x2d\xa3\x2a\xdb\x16\xa6\x70\x9b\x99\xd2\x5e\x50\xb6\x9e\x56\xa8\xd1\x07\x0c\x19\x73\xb7\x92\x98\xf5\x6b\xfd\xdb\x39\xcd\xac\xd4\x92\xe3\x62\x5a\xaa\x19\x32\xf5\xfb\xf4\xdc\x80\xf5\x80\x27\x54\xb6\xa2\x66\xf3\x4a\xa5\x74\xf9\xf0\xa4\x09\x7b\xa9\xf6\x9b\x77\xda\x01\x4e\x42\xaf\x75\x82\xd9\xd6\x9b\x9b\x65\x95\xf6\x94\xe7\x50\x42\x89\xbe\x78\x47\x59\xa8\xcc\xee\x92\x66\xb2\x85\x72\x1f\x57\x34\x56\x47\xd5\x5c\xd7\x52\x01\xfb\x94\x27\x81\x97\x1b\x87\x65\xd1\x67\xc5\x09\x5d\x0e\xc4\x8d\xf4\x18\xc4\xa5\xce\x2e\x02\x33\x3c\xcd\x17\xb6\x72\xfe\x6e\xc6\x58\x7f\xcd\x1d\x23\x92\xe9\x2c\xf6\x5e\x7c\xf8\xcd\x03\x13\x34\xa1\x4c\x25\xb3\x97\x7f\xbd\xc5\x15\xea\x3f\x3c\xc8\xa6\xd4\x45\xbb\x15\xa8\xe6\xcd\xd5\x71\xb6\xbe\xd6\x86\x45\xca\x27\x7d\xe5\xfe\xe0\xa1\xbf\x8c\x38\x25\x4f\x40\x13\xfc\x47\xc1\x53\xa1\xc2\xb8\x17\xe4\xee\x1f\x0a\x80\x07\x1a\x68\xa9\xe3\x0a\x15\x7e\x1e\x7b\x7b\xea\xee\x47\x2d\xe4\x5f\x0e\xd8\x5a\x87\x50\xa0\x3d\xe3\x94\x33\x5d\xfa\x7c\xd2\x18\xec\x61\x23\x62\x68\x94\xbd\x64\x3a\xb3\xc8\xe9\xc2\xcf\xbc\x1c\xbc\x1c\x87\xd8\x3e\x99\x81\xd8\xd9\x98\x73\x1e\x4b\x95\x2b\xd4\x8f\xd7\x92\xc0\xb9\x40\xb9\x01\xbf\xb9\xdc\xa5\x3c\x23\x86\xb4\xe0\x30\xcc\xdb\x29\x24\x72\x13\x59\x5c\x39\x74\xe8\x3f\x3c\xb8\x57\x33\x17\x01\x98\xd2\x2c\x43\x6c\xeb\xa8\x70\x5f\x30\x53\x53\x89\x42\xb2\x7b\x5e\x10\x4e\x11\x1b\x52\x36\xf1\x83\x22\x46\x9c\xee\x31\x9e\x20\x3a\x13\x81\xdf\x89\x22\x1b\x1f\x4e\x4e\x09\x4d\x3f\xb9\x9c\x62\x32\xb2\x39\x74\x4c\x5c\xbf\x85\x09\x06\xb8\x3e\x82\x99\x0a\x9d\xb7\xc2\x76\xed\xce\x3c\x93\xe9\x58\x13\xb4\xe8\xf1\x02\xdc\xe2\x2c\x33\xee\x8c\xb5\xba\xa6\x74\x02\x49\x82\xb2\xe7\x59\x96\x5b\x05\x4b\x44\xe0\x78\x44\x60\xf6\x01\xce\x38\x72\x69\xb1\x5d\xe8\x18\xb9\x47\x51\xd2\xd6\xc3\xf0\x2d\x0f\xb4\x3f\x29\x13\xf7\xaa\x80\x3e\x3a\x0c\xe8\xb9\xc2\x73\x69\x8e\x6e\x4d\x06\xbe\x3a\x2a\x69\xa5\xac\x93\x92\x5b\x67\xe3\x96\x93\x75\x44\x05\xd5\x6d\xd5\x0f\x40\x36\xce\x76\xad\x5b\xd0\x27\xce\x5b\x59\xbb\x18\xca\x0f\x42\xda\xca\x7c\x5a\x8d\xc3\xf4\x95\x87\x74\xa3\x38\x4b\x1e\x28\xb6\xdb\xd7\xa9\xb9\x19\x5d\x44\x69\xae\x5d\x3f\x76\x0a\x2f\x3f\xcf\x97\x2d\xab\x55\xf8\x1c\x25\x94\x95\xaa\x99\xf5\xd8\x85\xa3\x64\x18\x3c\x31\xf2\x57\x86\xc9\xf5\xa5\x1b\x28\x7a\x37\x02\x26\x8e\xde\x76\x47\x87\x46\x7f\x19\xd0\xbb\x6f\x38\x06\xaa\x0f\x97\x88\x19\x3f\xb6\x7f\x38\x2f\x2a\x86\x58\x86\x60\xca\x7d\xaf\x28\xe0\x49\xf4\x06\x74\x46\x12\x14\x77\x8e\x22\x40\x89\xf6\x07\xaf\x46\xb7\x72\x44\x5b\x17\x65\x4f\xa5\x5c\xf5\x80\x37\x86\x2a\xdb\xa7\xb6\x83\xd8\x93\x36\x8e\xc4\x45\xd1\x97\xe6\xd3\x42\xa7\xb7\x1e\x40\xf9\xf1\x83\x89\x2b\x51\x9c\xfe\xe5\xbd\xd4\xce\xcf\x44\x0f\x70\xfe\x32\x8f\x55\xd7\x1c\x9f\xae\xd4\x82\xe7\x6d\x01\x55\xce\x4c\xbb\xf9\x55\x24\x3d\x07\xea\x8e\x39\xea\x33\xae\xf4\xc8\x3d\xdf\x29\x61\x17\x2c\xb6\xe1\x2c\x76\x83\x58\x1b\x8e\x1a\xe6\xf8\xf7\x15\x6b\xed\x1f\xab\x56\x6e\xaf\x2d\xbf\xea\xb0\xa8\xa5\x72\xd5\x18\xcd\x06\x8a\x59\x41\xbd\x55\x51\xda\xea\xa4\xa9\x87\x6b\xdb\xd0\x5d\xa5\x0f\x14\x94\x3c\x0e\xd9\x12\xff\x14\x55\xc6\x03\x9e\xe9\xa2\xf1\x41\xf9\xed\xfc\xcd\x52\xc5\x47\x15\x54\xbe\xf5\x46\x4c\x92\xaa\xa3\xea\x36\x0f\xf5\xdf\x7c\x8d\x92\xa0\x73\xd1\xd9\x2b\xc4\x42\x23\x4c\x52\xaa\x9a\x29\x42\xde\xb7\x3b\x41\x50\x29\xe4\x74\x27\x08\xf9\x34\xc3\xc2\xf7\x9e\x79\xc1\x55\xa4\x22\x75\x29\x93\x9c\xbf\xff\xa7\xc3\x68\x7f\x04\xbc\xff\xf4\x02\x75\x3a\xd7\xf0\x5e\x8a\xa1\xd5\xc0\x76\x05\x4a\x3f\xd5\xe2\xd9\x35\x5d\x69\x6a\xdc\xfe\xaa\x78\x23\x83\xf4\x02\xa8\x0d\x6c\xdb\x48\x78\x46\x03\xc7\x13\xd4\xce\xc3\x03\x34\x44\x0b\x6b\x08\x21\x54\x89\x2f\xe4\x86\x25\x32\xc1\x88\xd6\xc5\x39\xaa\x86\x18\xd2\xe0\xda\xe9\x8c\xe9\x6d\x67\x79\x68\x21\x27\xac\x10\x2e\xc5\xed\x71\x17\xc5\x95\xf1\x65\xfe\xb7\xc6\xf7\x29\x2d\xe9\x9f\x2f\xb2\x8f\x1f\x7c\xa6\x88\x3d\xb3\x1e\xad\x46\xd2\xbc\xd7\x31\x73\x74\x04\x0b\x01\x27\x53\xcf\x84\xce\xf1\xa6\x88\x25\x8a\x3b\xdd\xf8\x39\x51\x3d\x14\x4a\x71\x05\xb5\x39\x0e\xca\x2f\xf1\x9f\xde\xc6\x7f\xba\x58\x1d\xf7\x04\xd6\xe2\x9e\x84\x9d\xff\xf7\x27\x15\xf6\x44\xc7\xe5\xb9\x90\x33\xa9\x75\x89\x27\xa8\x75\xa1\xfa\xd2\x14\xa4\x67\x7d\x60\x93\x95\x41\x2e\x4a\x31\x3a\xf4\xfd\xc1\x72\x78\x8e\x6c\x45\x78\x0e\xf7\xa6\xa0\x50\x5e\x4d\x2b\x8b\xd7\x82\x64\xd0\x4a\x78\x01\x80\x7b\x7e\x04\x58\x11\xcf\x85\x5f\x75\xfa\x6d\x7e\x15\xf5\x81\x37\xe1\xea\x1e\x69\xbe\x12\x2b\xaa\xe8\x11\x6a\xc9\x9e\xb6\x86\x94\xb5\xc4\x18\xb5\x32\xc8\x45\xcb\xae\xd3\x18\x78\xa0\x75\x8b\xc5\xb8\xa5\xf8\x84\xb7\x18\x24\x23\x4c\x46\xad\x21\xa3\x93\x96\x67\x97\x6a\xea\x43\xb9\x1e\x03\x4f\xf2\x67\xf9\x75\xa7\xaf\x4c\x00\x5f\x38\x8e\x0c\xa9\xc5\x91\xe1\x8d\x71\x64\xf8\xfa\x38\x32\x80\xf6\xb0\x5f\x1b\x87\x55\xc1\x4a\xba\x01\x60\x3d\x2a\xc9\x3c\xeb\xd1\xab\x4e\x1f\xa4\x95\x30\x80\xb3\x20\xe4\xb3\x81\x0a\x78\xeb\x1f\x01\x6f\x82\xc9\x4c\x20\xad\x7e\x9d\xa9\xa0\xeb\x20\xe9\xd9\xf8\x35\x57\xd6\x63\x9d\x81\x34\x00\xb3\x7e\x7c\x95\x02\xb9\x2a\xc8\xa2\x36\x46\x0d\xd9\x3c\x46\x4d\x12\x00\xf2\x85\xe2\xa5\x14\xd7\xbd\x75\xe4\x4c\x1d\x4f\x14\x05\x80\xf4\x22\x00\x7b\x9d\x1d\x3c\xf4\x85\x6a\x4c\xa2\x1e\x94\xee\xd1\x36\x92\x59\x48\x6a\xee\x10\x4d\x4d\xa8\xa8\xb9\xb0\xd7\xa2\x3f\x35\xa2\x8a\x25\x6c\x04\x48\x00\x9c\xab\x02\x30\xe8\x57\x1d\xa3\x67\x6b\xb6\xe9\x22\x79\xca\xf7\x2d\xbd\x2e\x17\x33\xab\x18\xd4\x85\xcc\x8a\x6b\xcc\xb7\x89\x0c\xac\xba\x99\xd1\xd1\xd6\x79\x49\xf2\xcc\x56\xaa\xee\x23\x02\x2c\x1a\x13\x5c\xa3\xd4\xf3\xb9\xc6\x2d\x5b\x36\x6e\xb0\x88\x66\xb7\xf2\x6c\x67\x45\x3a\x1c\xe0\x59\xd2\xf5\x5d\x73\x84\xc9\x35\xc6\xaf\xf5\xaf\x19\x47\x17\x4a\x72\x8d\x77\x3b\x80\xd0\x17\x94\x10\xe3\x59\xbb\xdb\x91\xa3\x8b\x88\x0a\x5c\x4a\x67\x22\xee\xa0\x03\xa0\xa5\xdc\xfc\xcd\x11\x3a\x58\x6b\x45\x2c\x9a\x36\x86\x44\xd9\xb6\xf9\xe9\xba\xcd\x5d\xe8\xd8\xb8\xda\xa7\x76\x69\xd8\x08\x55\x6d\x88\xb3\xec\xf9\x0d\xc4\x99\x1c\xb9\x5f\xcc\x8d\xde\xc7\x5f\x33\x6e\x00\x17\x2c\x40\xc3\xdb\xe5\x97\x8d\xc3\x24\xc3\x6d\xdd\xbe\x27\xb9\xdb\x5c\x33\x36\x29\x9f\x30\x21\x88\x69\x10\x6d\x14\x52\xb5\x34\xf9\x72\xf5\x9f\xb6\xbb\x47\xea\x1e\x79\x8a\x62\x8f\x8b\x54\xf9\xfa\x65\x74\xf4\x1b\x6b\x08\xa5\x67\xe9\x18\xe2\xd4\x03\xee\x33\xa1\x29\x0a\xc7\x42\x4c\x9f\xa7\x29\xf3\x80\x67\xc7\x74\x65\xf4\xe8\xa5\x00\x82\x52\x56\x86\x72\xbb\x72\x69\xf7\xf6\x6f\x3a\xfb\x9a\x35\xf6\x87\x6a\x82\xf1\x7d\xe7\x2e\x6e\xe9\xf8\xcd\x76\xe5\x19\x89\xbd\xfd\x7d\xe7\x60\xc0\xfa\xd0\xaa\x9b\x54\x74\x64\x4c\x87\xb5\x93\x40\x75\x00\xe1\x49\x12\x35\x9d\x12\x28\x46\xb6\x6c\xa5\xcf\xf1\x4c\x68\x81\x54\xc5\x66\xce\xe8\x68\xa4\xcf\x01\x48\xa8\x7f\x07\xbe\xa7\x49\xec\x01\xcf\xb6\xbb\x84\x52\x39\x25\x0a\x34\x0c\xdf\xba\xb3\x40\xfb\x35\xbb\x53\x65\xa7\xaa\xfe\x14\x51\xab\x35\x7e\xe7\x17\x7f\xfd\x10\x32\xa9\xa2\x5e\xa1\x50\xcd\xf0\x10\xce\xc4\x98\xaa\x9c\xc1\xe7\xe8\xf7\x19\xe2\x92\x32\xc0\x8f\x00\x2f\xe4\x08\x11\xf4\x57\xe4\x95\x5b\x94\x44\x14\xad\x4d\x20\xa7\xe7\x26\xf6\x86\x3b\xc7\x95\x4c\x18\xfb\xc8\x4c\xc4\x21\xc4\x19\x95\x88\x51\xc3\x3e\x2a\x60\x87\x9a\x97\x85\x75\x5e\x45\xbc\x93\x94\x1d\x23\x98\x3e\x2e\xeb\x8e\x0e\x08\xf1\xa5\xb2\x26\xe9\xdc\xfb\xce\x71\x83\x1e\xf6\x70\x44\x05\xfd\x45\xe5\x43\x2a\x90\x31\x29\xf0\xe3\x6d\xfd\xf0\x45\x6d\xd2\xdb\xd4\xf2\x53\x3f\x0a\x16\xf6\xcc\x66\xc3\xa3\x18\x01\x71\xf6\xa3\xd1\xf2\x12\xe2\xec\x73\xd0\x32\x0f\x5d\xd3\xb0\x8c\x16\x34\x45\x57\x51\xdf\x3c\xe6\x2b\xf4\xb6\x34\xd6\x8c\xfc\xfd\x51\x59\xdf\x6c\xd5\x74\xa5\xc4\xf7\x84\x94\x13\x57\x07\xe0\xf9\x42\x04\x5d\x04\x95\xb4\xb5\xa6\x57\xea\x62\xb4\xde\x9f\x31\x19\x15\x09\xab\x4a\x3d\x1f\x0e\x4d\xd7\x6d\x4e\xb2\x0d\xc7\x65\xd5\x31\xa2\xed\x80\xaa\x56\x32\xbd\xbf\x95\x9b\x66\xcd\xe8\x5e\xaa\xe0\x18\xaa\xf5\xfe\x61\x6d\xd7\x95\x35\x6d\x01\x5c\x19\xa4\xd6\x0b\x97\xf3\x31\xb7\x84\xf0\x82\x67\xf5\x36\xe3\x25\x0d\x54\xd7\xd6\x66\x63\xbe\xb3\x73\xef\x46\xd5\x1b\x03\xd9\x26\xa2\x72\x4d\x1b\x59\x29\x2a\xaf\xd5\x50\xbe\x46\xd2\xbe\xd5\xa7\x6c\x5f\xde\xb5\x69\x8d\x8e\xb4\x42\x3b\x32\x49\x26\x25\x64\x9d\x54\x70\xb7\x03\x10\x91\x02\xe3\x07\x9a\x65\x0d\x37\x34\xeb\xb7\x30\x4b\x07\xfa\x26\x52\xc8\x52\x29\x48\xfe\x09\x31\x3f\x37\xa9\xd8\x2a\xfe\x32\xce\x01\x7b\xb9\x9c\xb5\xb3\x6e\xe6\x11\x55\x81\xe3\xfa\x12\xa9\x73\x46\xc8\xaf\x2f\x96\xf6\x52\x3b\x86\x00\x4d\x6e\xed\x4e\x52\xbd\xb7\x9c\x77\x55\x15\x09\xea\x87\xd4\x45\xcd\x15\x8e\x28\x45\x5b\xda\xc5\x64\x3a\x5b\x91\x51\x53\x75\x37\x4c\xa6\x33\x15\x41\x40\xf3\xb3\x17\xe4\x4e\x25\xeb\xea\xe9\x62\xe5\xaa\x9b\x2b\xc3\x64\xb5\x32\x0c\x54\x46\x40\x4d\xcf\x6f\xec\xac\x62\x5d\xae\xf4\xc0\xdc\x57\xb2\x46\x2e\xec\x2a\xae\xd3\xfc\x39\xc9\x28\x2b\x63\x57\x75\x6e\x29\x25\xa9\xb4\x21\x72\xf4\x94\x51\x91\xe1\xb6\x4b\x50\xd9\x29\x9d\x40\xba\x90\xa2\x22\x8d\x64\x59\x84\xe9\x74\x2b\x7e\x35\x47\xd6\xaf\xa6\xd3\x8d\x73\x86\x2c\x4d\xdd\x66\xe7\x9a\xce\x26\xe2\x06\xb8\xba\xea\xe4\x09\x2a\xd5\xfd\x39\x7f\xbd\xb3\x4d\xf3\x7c\xd3\x1b\x4c\xc1\x22\x05\x4d\xe3\xea\x17\xc7\xd5\x66\xb1\x55\x4e\x42\x71\x4b\xdb\x5c\xa0\x69\x5b\x87\x96\xf9\xde\x7c\x5b\xcb\x0b\x72\xa5\xaf\x7d\x80\xd3\x0c\x5d\xa2\x3b\xa1\x6e\xf8\x2b\x12\xd8\x27\x4a\x86\x98\x4d\x2a\x8f\x8a\xb0\x79\xc2\x37\xcf\x03\xf0\x16\x62\xb9\xf4\xbe\x70\x3e\xab\x2b\xc1\x98\x4b\x66\x50\x71\xac\x28\x31\x5f\xab\xc1\x73\x5e\xa8\x06\x6b\x51\xb0\x04\x8a\x3d\xd9\x2f\x0f\x60\xfe\x3a\xad\x19\x5d\x43\xf4\xfb\x0c\x66\x26\x4e\x94\xdc\x5a\x64\xd1\x00\x60\xfe\x41\xdf\xba\x2f\x75\x65\x75\xd5\x29\xa3\x93\xa9\x5c\x8f\x34\xea\xef\xf5\xc2\xf2\x7e\x26\x38\x4e\xd1\xa3\x44\x5d\xf2\x65\x75\x09\xe3\xdf\x26\x89\xfe\x8a\xb2\x97\x37\x88\x88\xc0\xb7\x17\x6d\x07\x34\x9d\x03\x4f\xcb\x21\x56\xca\x24\x26\x11\x2a\x28\x5d\x53\x4d\x28\x11\x10\x13\xee\x13\xe3\x54\x11\x98\x10\x7b\x4d\x03\x6a\x3e\x69\x2d\x97\x23\x71\x49\x5f\x6b\x9a\x97\xa7\x78\xbe\xec\x6c\x28\xb8\xba\xd2\xa8\x86\xd8\x2c\xd4\x55\xc6\xd9\x5c\x83\xae\x8f\x57\x69\x0a\x03\x3d\xb4\xaf\x28\x2b\xb1\x43\xa3\x95\x62\xa7\xde\x96\x65\x8c\x55\x01\x15\x1b\x3b\x51\xc8\xac\xc1\x22\x9f\x34\x4b\x9a\x75\x6d\x19\x88\xd3\xec\xc6\x84\x86\xb6\xf3\xc5\x0f\xaa\xf6\x0a\x9d\xf7\xb1\x32\x0c\x8b\x0d\x33\x2a\x12\xc1\x94\x5b\x21\xdf\x77\xb2\xda\x3b\xbf\xf7\xb1\xce\xdf\xbf\xb1\xf8\x5b\x4d\x70\xbe\x5a\x32\x5e\x95\x83\xe7\x56\xee\x4c\x5f\xc9\x56\x9c\x93\x21\x5f\x22\xc9\x86\xc6\xe2\x92\x87\x5e\x29\x57\xba\x0a\x1c\xe2\x55\xb3\xa5\x7b\x29\xe2\x89\xb7\x28\xa7\x55\xd7\x69\x56\xab\x45\x77\x3b\xeb\x53\x9b\x2b\x6f\x78\x1d\xd2\xaf\x48\x6e\x7e\xa1\x1e\x37\x48\x6c\x0e\xa6\x0c\xa1\xc9\x54\x20\xa6\x85\x6e\x95\x96\x73\xad\x78\xad\x82\x1c\xab\x00\x10\x67\x98\x4f\x30\xaf\xef\xbb\x45\x8e\xcf\xfc\x8e\x3a\x50\x63\xf9\x4e\x6e\x1b\xca\xfc\xa6\x1e\xb5\x17\x5e\x50\x72\xc3\x0b\x80\x09\x94\xfa\x37\x5b\xa1\x1a\x3f\x55\xe3\x2c\x67\x5e\xe1\x8d\x67\x4c\x85\x17\x26\xb1\xf2\x12\x4f\xfb\x86\x8a\x3b\xf9\x05\x03\x81\x88\xd0\x92\x81\xed\xaa\x9d\xb6\xc8\x48\x06\xc5\x17\x77\x55\x51\x9e\xa6\x53\xc7\x33\xf0\xfb\xf0\x8f\xb6\xa9\xce\xcb\xe6\x87\x9c\x63\x8a\x44\xe7\x07\xb1\xfb\x41\xb9\x07\x95\x88\xe9\x49\x56\xc8\x90\x70\xd6\xf6\x52\x96\xea\xe3\xd8\xc9\x8e\xdd\x90\xf3\xdc\xe5\x86\x25\x39\xcf\x9f\x3b\x7e\x98\x5b\xa4\xa3\x2d\xf8\xa6\x95\xe1\x21\x4a\xe6\x49\x86\x9c\x1c\xb5\x4e\x0e\xf4\x0d\x33\x50\x47\xe0\xd8\xa4\x40\x67\x48\x19\x68\x7e\xac\x51\x35\x9d\x2e\x06\xd6\x14\x3a\x71\x87\xeb\x28\x1f\xae\xa3\xc7\x0c\xd7\xb9\x6e\xe2\xcb\x8f\xd8\xc9\xa6\x23\x76\x64\x46\xcc\x4a\x0e\xda\x8e\xca\xaf\x2b\x61\x3d\x72\xf7\x7b\xeb\x66\x76\x4e\x75\x7c\x92\x62\xdb\x73\xd4\x84\xd0\xe8\xc6\xc1\x42\xe9\xe6\x15\xc5\xd4\x18\x71\x4c\x80\x0d\xe3\xeb\x06\xd7\xf8\xba\xe5\xb2\x52\xde\x3f\x4f\x62\x11\x2c\x00\xe9\x6f\x68\x94\x5a\xbb\x55\xcb\x9e\x6e\xb6\x5f\x7f\x69\x85\xa3\xba\x9d\xde\x13\x24\x6e\x29\xbb\x5e\xb9\x8d\xe5\xf7\x60\x78\x68\x4a\xf3\x70\x88\x99\x63\x20\x50\xf8\xd4\x2c\x24\xa6\x70\x98\xdf\xd3\xf9\x20\x4b\x69\xf7\x8b\xfc\x53\x3a\x27\x70\x82\x93\xe2\x4b\x6d\x74\x1c\x03\x4d\x23\xbc\x3c\x93\xeb\x92\x60\x70\x72\x03\x8f\x51\xa8\xee\x7f\xa9\x6e\xc6\x28\x54\x09\x3c\x00\xe6\x67\xba\xf1\x78\xb7\xb3\x58\xd8\x13\xba\x86\xf6\xdc\x4e\x7e\x8e\xe6\xa2\x85\x54\x95\xf3\x3c\x9f\xda\xac\xb3\x08\xbe\xe4\x26\x6f\xd6\x1f\x35\xf9\xfe\xb5\x5c\xba\xcb\xa5\x9e\xef\xdf\xc5\x42\xb9\xa5\x52\x30\x9d\x66\x38\xa9\x05\xa2\xad\x7b\x86\xd0\x14\xf1\xf6\x90\xb2\xb6\xa1\x45\xb5\x00\xa1\xed\x0c\xc1\x14\xe5\x05\xbe\xbc\x49\xbc\xb6\x06\x29\xc5\x6b\xb4\xd4\xee\xbd\xf2\xaa\x51\xd3\x4d\x1c\x4f\xff\xf5\x24\xe3\x8f\xac\x1b\x88\x9e\x5f\xc5\xcf\xa6\x84\xab\x86\x46\x4b\xee\xa9\xa8\xaf\x36\xc9\xa7\x6f\x27\xed\x0b\x49\xe3\x8d\x61\x95\xdd\xe5\x0a\xc0\x12\x1c\xe6\x87\xd1\x41\x33\x24\xd5\xc8\xaa\xa8\x98\x4e\x29\x1b\xdc\xcc\x3b\x8c\x0e\xbc\x1c\xf0\xe1\xe7\x05\x7c\x68\x00\x1f\x45\xd1\xe7\x04\x7c\x14\x45\x06\xf0\x3b\xfa\x46\x31\xe6\x63\x46\xc9\x4d\xb2\x69\x55\x46\x15\xe2\x9e\xd1\xdb\x97\xce\x4a\x5b\xa8\x2f\x75\xa8\x55\xa3\x83\x76\xd1\x57\xcc\xaa\x92\x1b\xdc\x78\xc1\xb3\xe5\x26\x87\xdc\x29\x41\xc1\x5d\x04\x71\xe9\xf0\xe3\xe1\x61\x79\xc5\x84\x12\x4e\x33\x14\xde\x42\x46\x7c\xef\xb7\x77\xe7\x2f\x5f\xbc\xff\xeb\xcb\xf3\xe7\x3f\xbf\x79\xd9\x7a\x79\x7e\xfe\xfe\x3c\xf6\x00\xb2\x3c\x53\xf1\xe5\x5b\x62\x00\x2d\x16\x0e\xad\x43\xf0\xaf\x77\xc7\xa9\x36\xdd\x31\x7f\x45\xd9\x00\xa7\xe9\xc6\xb1\xb4\x6a\xbd\x37\x7f\x97\xac\x7c\x2b\x2c\x1d\xf9\x27\x75\x95\xc7\x84\x43\xfd\xda\xeb\x9d\x9d\xfd\xc0\x31\x66\x94\xd6\xb1\x3c\x32\xaa\x32\xdb\xea\xb8\xca\xce\x45\x30\x73\x11\xc9\x03\x1b\x9b\x35\x00\x25\xd9\xfc\x83\xb6\x29\x28\x59\xdc\x9b\x16\x0f\xde\x02\xb8\xed\x75\x54\x74\xeb\x0b\xfc\x07\x8a\x4f\x2a\x2d\x4c\x68\x8a\x87\xf3\xd7\x5a\x8e\xad\x1a\x45\x22\xd3\x45\x59\x7c\x83\xc0\x96\x1e\x1f\x53\x26\x5e\xa7\x72\x70\xa4\x04\xa4\x23\x57\x96\x7b\xb9\xdb\x01\x37\x98\xe3\x41\x86\x0a\xad\xa6\xe1\x56\xb5\x92\x19\x5c\x6d\x41\x87\xa3\x2e\x00\xe9\x17\x15\xe8\x4b\xd7\x8f\x4a\x39\x6d\x7b\x70\xa0\xb9\x5a\xb9\xd3\xaa\x09\x91\xbd\xd2\x2a\x54\xc7\xc6\xb3\xb5\x14\xf1\x36\xb1\x0d\x69\x5b\xd2\x72\x8a\x94\x2a\x29\xa8\xae\x49\x69\x43\x12\xfe\x27\x82\xc9\x38\xbc\x85\xdc\x50\x02\x2d\xbf\xbd\x59\xaf\x3c\xc4\x99\x40\x4c\x0a\xb7\x25\x00\xca\x22\xa3\x3a\xaf\x4c\xe1\xcb\xba\xa1\x6e\x12\xe5\x3d\x90\x82\xe6\xea\x6b\xbe\x6e\x25\xaf\x10\xab\x45\x25\x71\xbe\x6d\xfb\x8c\x61\xf9\x6a\x49\xe3\xa9\xfe\x6a\x5a\xd7\xe6\xbf\xf5\xad\x9b\x5a\x5e\x83\x54\x5f\xd2\x7e\x1d\xab\x45\xcd\x99\x63\x63\x0d\x58\xc7\x62\x55\xd9\x5c\xf2\x11\x7d\xa5\x08\xbe\xe4\x56\x66\x8d\xef\x51\x55\xad\xdd\x74\xcf\x68\x52\x61\x33\x9a\x42\x3e\x0e\x95\xbb\x40\xe1\x8d\xfb\xb8\xa5\xb8\x26\x9b\xfe\x3e\x55\xf7\xc2\x60\x86\xff\xa8\x2f\xd4\x5f\xdb\xde\xec\xb8\x29\x1b\x7a\x14\xa5\xcb\xd2\x69\x41\xba\xdc\x64\x27\xe7\x39\x69\x90\x12\xcb\x7a\xb6\x2a\xe1\x05\xfa\x1e\xe3\xea\xa2\xba\x88\x57\x91\x7f\x3f\xfb\xbe\xf1\xfb\xd4\xa4\x02\x57\x07\x93\xf2\xf9\x42\x9f\xf8\x99\xa3\x97\xdf\xa7\x67\x50\xc0\x44\x25\x92\x8b\xbd\x34\xf9\x46\x7b\x09\xb6\xdb\x88\x0e\xc1\xa3\x3b\xa4\xf6\x14\x8b\x81\xd3\xf9\x6a\xbf\xbd\x22\xc4\xb2\x2e\x6c\x3c\x51\x2d\xef\xa5\xff\x6d\xa9\x1c\xf8\x9e\x01\xe9\x39\x91\x99\x35\xe0\x75\xd5\x54\x29\xb7\x9a\xd3\x89\x75\x75\x8b\xa2\x5e\x90\x87\x8f\x6e\x8e\x32\x42\x9a\xc4\x6e\xc7\xcb\x97\xf4\xf4\xcd\xc4\x21\xa3\x13\x9f\xa0\xdb\xd6\x05\x32\x99\xaf\x74\x4d\x7d\xaf\x45\x81\x31\x78\xaa\x6b\xaa\xe6\x5a\xcb\x4e\xc9\xb5\xb7\xc1\x4f\x2f\xa9\xef\xae\xc6\x19\x37\xa7\x9b\x76\xf4\xb5\x98\x06\x7e\x59\x23\x22\x2a\x71\x9e\x3b\x1e\x41\xa0\xf3\xf6\xe9\xb0\x0d\xcb\x6c\x2f\xd7\x68\x1e\x23\x73\xf5\x5f\x47\xff\xcf\xe9\xa4\x47\x67\x2d\x1b\xdd\xeb\xf4\x50\x04\x0b\xd5\x31\xe5\x74\x64\x22\x09\xbc\x76\x5f\x2e\x80\x2e\xc9\x10\x4c\xe7\xb6\xc8\xb9\x7a\xca\xbf\xe9\x38\xc0\xe6\xd3\x99\x7c\xc8\xbf\x60\x82\x32\x3c\xc2\x6a\xbd\xb3\xd0\xed\x2b\x5b\x9f\x41\x4c\xdc\x1e\x9c\xe5\x2f\x16\xfd\x02\x31\x87\x7f\xbe\x10\x17\x38\xb3\xe9\xf3\xb1\x81\xc3\xcb\xdb\xf0\x42\x51\xed\xd1\x0c\xa1\x25\x13\x94\xbe\x6b\xd4\xd8\x0b\x9a\x79\x65\x06\x74\x5f\x5c\x98\x43\xe7\x86\x6e\x2d\x4d\x7b\x52\x02\x96\xbb\xd9\x97\x21\xd6\x62\x95\x17\x60\x01\x54\xf9\x14\x73\x05\xd9\x61\x20\x95\xd4\xd3\xf9\x64\xb9\x46\x65\x3f\x0f\x6f\xb1\x18\xd3\x99\x28\x57\x29\xde\x16\xa5\x4b\xb7\x18\x34\x15\x34\xa5\x1a\x12\xa5\xee\xfa\x79\x56\x9c\xbd\xbd\x5d\xe4\xc4\x51\x37\x46\x53\x77\xd9\xd8\xdb\xf3\x77\xfd\xac\x28\x9e\xd5\x8a\x73\x7d\x96\x95\x97\x25\x45\x59\x52\x2b\x5b\xe6\xc5\xbd\x3d\xdf\xdf\x85\x0f\x0f\xbb\xe6\x2b\xe6\x2f\x2d\x8e\xc1\xde\xde\xae\xcf\xf7\xf6\x8a\x6f\x76\xfa\x04\x81\x62\x9e\x4d\xa4\xf5\x12\xb3\x3c\x5a\x50\x6f\x62\xb5\x25\x22\xba\xab\x18\x37\x57\xa8\x09\x1e\xa1\x53\x47\xed\x2c\xe2\x15\x4c\x90\x28\x36\x8f\xa6\xc3\x16\x39\x0d\x51\x6d\xe6\x89\xc0\x75\x3a\x96\xe2\xea\xbb\x46\xaf\xe3\x06\x41\xd5\x74\x2b\xcc\xb5\xf2\x9a\x84\xb9\xf6\xe0\x64\xc8\x10\xe2\x62\xde\x1c\xec\xd9\x7e\x5c\x52\xe5\x4b\x1d\x9a\x88\xda\x6d\xf0\xb5\xd2\xd6\xe6\x8e\x06\x65\x39\x69\x13\xb7\x83\x08\x28\x72\xbc\xca\xf1\x5e\x62\x12\xdd\xce\x8e\xac\x03\x1a\x7d\x33\x5b\xd0\x16\xc6\xdd\x8f\x74\xa0\x3c\xe3\xa6\x30\x41\x9a\x44\xea\xa7\xb7\x00\x65\x83\x12\x28\x17\xcc\xa3\x64\x6e\x67\x67\x92\x64\xf9\x97\xba\x63\xd4\x9d\xd5\x83\x24\x49\xb5\x89\x26\xa4\x38\x6d\x93\x45\xae\x0c\xb0\xb2\xc2\x7d\x69\x7d\xe7\x72\x3e\x45\xb1\x09\x4a\xa8\x25\xf6\x19\x8f\xf3\x6d\xaa\xae\xef\x80\xdf\xa7\x1f\x18\x1a\xe2\x3b\x65\x52\x1b\xe2\xbb\xe5\x1a\x50\x27\xfa\x3a\x2a\x90\x94\x0f\x87\xb3\x3f\xfe\x98\x5f\x6c\x05\xa0\xa9\xee\x4b\x62\xdc\x42\x23\x4b\x19\x97\x2a\x75\x3d\xaa\xa0\x86\xa3\x53\xa9\x8a\xeb\xf4\x1b\x59\xa8\xaa\x51\xcd\xd6\x6b\x62\xc6\x17\xe6\x33\xe8\x54\x16\x80\xc1\x60\x5d\x65\x5d\xac\x50\xc6\x2e\x1b\xa2\xaa\x2e\xd3\x31\x06\xca\x81\x2e\x17\xed\x7f\x56\x4f\xb9\xe4\x3f\x95\x2d\x20\x81\xd4\xed\x48\x5b\xe6\x43\xe9\xad\x2d\x8b\x18\xa6\x29\x4e\x8a\x62\xf9\x8b\xbc\x84\x99\xa6\xb6\xc0\x85\x79\xb6\xdf\xd5\xd4\x2e\x3e\xeb\x47\x57\xc7\x30\x03\xb1\x21\x66\xd3\x3c\x1b\x97\xed\x90\x7e\xb6\x3a\x53\x7e\x9b\x23\xd7\x9a\xcc\xb3\xd5\x7b\x54\xe6\xa9\x5c\xe7\x51\xe9\x9f\x36\xd3\x77\x8c\x69\xf5\x57\x3a\x58\xad\xf5\x94\x54\x1d\xb7\x52\x4d\xe1\xe1\xca\x7c\x98\xce\x12\xd4\x98\x24\xb1\x85\x8a\x5b\xc0\x0b\x70\xd5\x57\x59\xf8\x5d\x9d\xea\xeb\x6b\x4b\x70\x95\xb6\x04\x1f\xad\x3e\x9b\x09\xf1\x58\x8a\xef\x87\x57\xed\xf0\x1f\xfd\xfd\x3c\xee\x48\x03\xd1\xb5\xb5\xb4\x99\xda\x78\xe8\x13\x75\x6a\x26\x05\xd4\x7b\x93\xc3\x27\x9c\xa8\xb3\xfe\x7d\x3f\x7c\xf2\x2c\xd0\xe0\x83\xab\x4e\x7f\x07\x5d\xc1\x7e\x4f\xfe\xf3\x4c\xfe\xf3\xa4\x13\x77\x16\xc5\x8d\xe1\x7b\x29\xf4\xf7\xcc\x0e\x7a\x8d\xe6\xdc\x87\x4b\xa9\xa1\x17\xf3\x18\x81\x44\x05\xb2\x85\x57\xa8\xbf\x58\x04\x35\xad\x08\x95\xb8\x61\x46\xc4\x9f\x3b\x2a\x56\x4d\x96\x63\x66\x36\x85\x4f\xe3\x00\xb3\xd4\xac\x19\x7d\xea\x8e\xbe\xae\xa2\x47\x3e\xb3\x56\xe9\xbc\x37\x2b\x79\x20\xd4\xa5\x6c\x10\xc5\x22\x44\x99\xf9\xe0\xb5\x7c\xcf\x09\x5c\xa6\xf0\x06\x5e\xe0\x05\x9a\x6b\x9c\xf1\x5d\x62\x64\x57\x1a\xb6\xfe\xa9\xed\xec\x53\xc8\x94\xde\xb0\xe2\x02\xbf\x89\xe6\x69\xc5\x3e\x6e\x53\xb3\x96\x2e\xf0\x9b\x62\xfa\xe2\x9a\x95\x02\xd5\x65\xfe\x87\x07\x2b\x0b\xee\xd4\xcf\x2f\x8a\xb8\x2d\xd5\x31\xb6\xd7\xd9\x77\xd1\xc3\x03\x31\x5a\x6e\x09\x72\xaf\x27\x05\xca\xe5\xcc\xb1\x6b\xa2\xbb\x69\x34\x73\xa7\x56\x2f\x28\x99\x24\x1a\xe9\x55\x9d\x63\x5e\x69\x53\xad\x9a\x25\x66\x7c\x99\x5d\xc2\xab\x30\xc6\x5a\x4b\x85\x04\xdf\x68\xa8\x98\xf1\x35\x96\x8a\xd2\x27\xdd\x5a\x89\xdc\x2e\x4a\x55\x8a\x71\x35\xdd\x9b\xed\x0b\x66\x80\x53\xcc\xa7\x19\x9c\x6b\x71\x21\xbf\xeb\xb7\x6b\x82\xef\xd8\x7a\xa2\x56\xaf\x30\x34\xb8\x55\x1c\x7b\x03\xaf\x1a\x19\xf2\x0b\x79\x4d\xb3\xdd\x31\x4e\xa0\x60\xe1\xc0\xd4\xd2\x35\x2f\xb8\xc4\x4e\xfd\x5d\x1f\x16\x8d\xc1\xa5\x90\x33\x7d\x01\x99\xff\x0d\x8b\xb1\x86\xbd\x9d\xb1\xe2\x57\x2d\x65\x3f\xce\x56\xd1\xc0\x83\x4b\x4d\x15\x17\x63\x7a\x8b\xc9\xe8\x0c\x4d\x33\x3a\x9f\xa8\xe4\x5f\x02\xe2\x4c\x9d\xda\x7e\x5e\x33\xc4\xaf\x74\xb0\x91\x15\x42\xea\x0d\xe1\x47\x3a\xf0\x40\x3e\xdf\x32\x88\xc9\xeb\xd4\xab\xa5\x23\x5b\x6b\x8e\x50\xea\xdf\x47\x3a\x70\x1d\x3a\x3f\x87\xb3\x41\x53\x6c\x1e\x31\x6e\xdb\xe5\xa4\xcd\x10\x47\x42\xc5\xd8\xac\xeb\x7f\x9f\x4b\xfb\xe3\x5b\x79\x26\xc0\xaf\xe4\xa3\xb0\x54\x6f\xea\x1e\x6d\xa7\x37\x7d\xa4\x83\x55\x47\x67\x4a\xd4\xff\x04\x47\x05\x50\xa4\x3f\x7b\x97\xab\x4c\x70\x6b\xf7\x84\xf5\x67\xca\x2e\xe7\x29\xa7\xd3\x4d\x56\x01\xf8\x2d\x3c\x0b\xbe\xd0\x11\x77\x79\xca\xf2\x8d\xa7\xac\x2a\x85\xc5\x72\xc7\xc8\xed\x66\xde\x97\xf7\xc1\x2e\x66\xdd\xfd\x1a\xde\x55\xab\x9b\xa1\x83\xc2\x70\x65\x61\x87\x10\x72\xc1\x7e\x99\xaa\xab\x82\xea\xda\x7e\x8a\xeb\x81\xa6\x3e\xd2\x81\x09\xb2\x4c\xd0\xed\x99\x43\xc4\x5f\x2f\xde\xbf\x0b\xb9\xf2\x79\xc4\xc3\xb9\x09\x83\x67\xbf\x2b\x1f\x63\xd0\x0d\x5c\xb7\x5b\xdb\x98\x8e\xec\xd0\x78\x79\xb4\xb9\x74\x47\x95\xbe\x98\x0d\x26\xb8\x9a\xfe\x73\x83\x65\xbf\xb2\x44\x95\x0c\x81\xa2\x16\x9e\x7d\x23\xdb\xa8\x61\xa9\x7c\x93\x5b\xb3\x0b\xfc\x80\x3c\xe5\x3d\xc2\x60\xac\x88\x82\x64\xef\x36\xd9\x1a\x97\x12\x65\xc5\x2e\xfa\x3d\x7a\xe5\x3d\xfa\x16\xe1\x27\x6f\x58\x0e\xa9\x57\xce\x78\x77\x48\x36\xd8\x2d\xca\xc5\x73\xd7\xac\x75\x4d\xb9\x5b\xc6\x76\x6e\x44\x96\x75\x1a\x0c\xeb\x3f\xc2\x4c\xda\xe2\xb0\xe2\x73\x9e\x0d\x6d\x20\xd0\x6c\x74\x69\xb5\x76\x11\x4b\xc7\xbb\xdc\x46\xb4\x0e\x8b\x40\x9a\x56\xca\xd6\x7b\x12\x0a\x16\xe0\x91\xc2\xfa\xaa\x55\x1b\x55\xf5\x6d\xe3\x58\xb7\xfd\x2d\x6a\xcb\x7c\x2e\x0a\xff\x92\xe8\xbf\x85\x44\xff\x65\x4f\x42\x1a\x1c\x8b\xff\x25\x9f\x7f\x0d\xf9\xbc\x29\x4f\x6b\xc3\xfc\xbb\x41\x8c\x7f\x82\xd0\xf0\x4f\x26\x49\xb1\x19\xf9\x86\xc7\xef\x5f\x4b\xd4\x5e\x7b\xde\x6e\x12\x4b\x6c\xb8\x22\x7f\x43\x1e\xf8\x46\x5e\xbc\x9f\xbc\xe6\x56\xfd\x6f\x31\xd7\x97\xab\x9a\xd6\xdb\x8a\x3f\xc5\xfa\x55\x2d\x47\xc3\x2c\x50\xab\x10\x5f\x2a\x3d\xae\x9d\x2e\x86\x45\xea\xc2\xe3\xd7\x76\x59\xd1\xfd\xd8\xc4\xe5\x21\xe7\xea\x4d\xbc\x1e\x6a\x60\xcb\x8e\x0f\x8f\x9a\x4e\xfb\x79\x9e\x96\x6f\x46\x2c\x7d\x10\x73\x09\x07\xb1\x27\xe0\x88\x7b\x86\x45\x2e\xe1\x68\xd9\x4e\xac\x8b\xad\x38\x09\x72\x8a\x05\x0f\x0f\xf7\x8b\xfc\x74\xc1\x3d\xd8\x43\x95\x23\x2e\x51\xbe\xa1\x2d\x80\x46\x49\xa5\xa2\x58\xac\xba\xb5\xc1\x91\x90\x9d\x6f\xbe\x59\x61\x91\x6b\xd8\x0f\x37\x18\x22\xb5\x9f\xf1\x7d\x75\xcd\xf8\x5b\xfa\x60\xad\x8e\x3a\xb9\x52\xe7\x59\x9d\xca\x0f\x25\x0c\xd5\xd6\x0c\x93\xb7\x4c\xc7\x81\xd6\x45\x3c\x13\xf9\xf2\x35\xff\x2b\xcc\xb0\x8a\x42\x66\x9e\x4d\x46\x18\xfb\x46\x47\xa6\xd1\x97\x78\x95\x48\x70\xa1\x3a\x50\x33\x2b\xa9\x84\x72\x33\x92\x51\x98\x9a\x08\x53\x76\x44\x55\x76\xb1\x4b\x09\xec\x83\x8d\x68\x54\xcf\x06\x69\x7a\x27\x8a\x32\x72\xe2\x2b\x7c\x34\x51\x17\x85\xbd\xcb\x2d\xb3\x3d\x1e\x39\xa0\x02\x1d\xd9\xdd\x1b\xc4\xf0\x70\xae\xba\xd9\x1c\x8f\xaa\x38\x9c\x93\x9d\x02\xf9\xde\x35\x42\xe2\xfd\x2d\x31\x71\x2d\x83\x30\xa3\xf4\x7a\x36\xf5\x3d\x98\x42\x15\x4d\x48\x35\xee\x05\x4e\x0c\xad\xd2\x38\x00\x11\x00\xa2\x8e\xa6\x2e\x50\x36\xf4\xab\xf1\xac\x6c\x9e\xa2\xdc\xad\x36\xd5\x71\x76\xf3\x44\x8b\x2a\xd2\x3b\x40\x25\x54\x8c\xd5\x05\x35\x24\xf9\xd3\x9d\x01\x44\xc1\x58\x45\xc6\x68\x0d\x19\xe1\x22\x58\x34\x1c\x9c\x97\x51\xd3\xc3\xa6\x82\x7c\x6f\x37\x64\x51\xc3\x90\xd5\xd4\xcf\xc6\xe9\x9e\x87\xd5\x82\x24\x6d\x72\x6b\x15\x6c\x26\xc6\xed\xbc\x90\x5b\xf8\x7b\xcc\x19\xbe\x1c\xa6\x42\x6f\x43\x78\x90\xa4\x4b\xf2\x8f\x5b\xfc\xa7\x53\xd4\x4c\x2f\x15\xc6\x51\x05\x2a\xac\x13\x4d\x57\xfa\xc1\xe8\x66\x30\xdd\x94\x74\xaa\xf8\x3a\xea\xe9\xf4\x67\xdb\x11\x4f\xd5\xf9\xc1\x68\xa7\xf1\xdc\x94\x74\xb2\xf4\x1a\xca\x25\x70\x82\x94\xe3\x6d\x13\xf1\x32\xdc\xd6\x07\x20\x35\xe2\xd9\x6a\x3f\x16\xfd\x0a\x6c\x37\x04\x9a\x57\x58\x4b\x45\x92\xa0\xac\x0d\xb3\x6c\x4d\xa4\xa3\xa6\x1a\xdf\x23\x09\x57\x23\x3b\xc5\x02\x3e\x8a\x69\x6c\xc5\xef\x11\xe7\x55\x6c\x53\x60\xbc\x31\xe3\xe4\x55\xd6\x51\x73\x3c\x23\xd7\x5b\x2e\x5d\xba\xce\x0f\x46\x43\x8d\xe7\xa6\xe4\x93\xa5\xd7\x51\x2e\x83\x9c\xe3\x61\xf3\xba\xbf\x82\x0b\xf3\x6a\x3f\x18\xfd\x2c\xb6\x9b\x92\xd0\x54\x58\x47\x45\xed\x01\xb8\x2d\x07\x9a\x5a\xdf\x23\x0d\xd7\x61\x3b\x13\xcd\x0b\xd7\x6a\x6c\x65\xad\xef\x11\xdb\x15\x1c\x93\xe3\xba\x29\xc3\xe8\xf2\x6b\x29\xa8\x83\x32\x6f\x4d\x42\x53\xed\x47\xa3\x61\x8e\xed\xc6\x44\xd4\x15\xd6\x51\x91\xf3\xb6\x09\x2e\xb0\xcc\x00\x62\xc3\xd1\x89\x7f\xa5\xdb\xfd\x3e\xd2\xed\xda\x11\x71\x3d\x57\xe5\xe8\x74\x82\xab\xa8\x5f\x64\xa4\xfe\xfb\xfe\xfe\x08\x78\x6d\x2f\x08\x53\xc8\xc7\xea\xf2\xca\xe3\x92\xf5\x26\x5c\x07\x3b\xe8\x91\xd5\x6e\x1d\xbf\x28\xae\x0a\x35\x73\xf9\x64\xad\x77\x42\xce\x85\xb6\x7b\x5b\x6e\xa1\x45\xbd\x1f\x6b\x36\x3b\xf8\x6e\x0a\x35\xaf\xb1\x66\x3e\xa7\x28\xd9\x72\x41\x94\x35\x7e\x30\xea\x49\x1c\x37\x86\x97\xac\xa3\x98\xca\x44\xbb\x1d\xc9\x64\x95\xef\x91\x66\xab\xf0\xd4\x58\x4d\xe9\x2d\x62\x6d\x7d\x41\xa0\x8d\x79\x93\x23\x46\xbd\xe0\x46\x30\xbe\x47\x7a\x2c\x87\xa9\x30\xf9\x20\x11\xb9\x50\x78\xbc\xe6\x7f\xd1\x94\xd8\xb0\x8d\x25\xf5\x1f\x35\x06\xfa\x17\x6a\x34\xba\x6d\x31\x0c\x16\xcc\x8f\x3e\x12\x17\x96\x1e\x8f\x1e\x8c\x1c\xc4\xf6\xe3\x21\xd8\x0c\xe5\xdb\x0d\x1e\xb6\xa7\x0c\xf1\x5a\xa4\xc3\xed\x86\x66\x09\xc4\x1f\x7b\x94\x2e\xd9\x0c\xe9\x38\xac\xaf\x87\x1f\x72\x1a\x3d\x72\xb8\x1a\x60\xad\x1b\xb7\xdf\x37\x37\xe8\xab\x2c\x36\x3f\x1a\xb5\x55\x9f\x37\xa6\xe7\xff\xcf\xde\xbb\x77\xb7\x6d\x24\x89\xa3\xff\xfb\x53\xc0\xd8\xb3\xfa\x11\xbf\x00\x6d\xbc\x1f\x4c\x18\x5f\xc7\x4e\x56\x9e\x95\x33\x3e\xb6\xa3\xbd\xb3\xba\x3a\x73\x20\xb2\x25\x22\x06\x01\x0e\x00\xd2\xd6\x83\xdf\xfd\x9e\xaa\x6e\xbc\x01\x12\x94\xa9\x8c\x34\x93\x93\x98\x22\x81\x7e\x54\x57\x57\x57\x57\x55\x57\x55\x43\xe9\x1d\x18\x63\xf1\x49\xca\xc5\xbe\xc6\xe9\xb2\xde\x63\xc4\xe0\xee\x11\xdf\x6b\xb8\x4f\x70\xac\xd1\xec\x3e\x73\xcb\x6a\x3d\xb9\xd1\x86\xa0\x32\xf5\x5c\x1e\xd6\x3f\x5a\x5e\xeb\x31\x8e\xb6\xbf\xcd\x62\xac\x03\xdb\xe4\xe5\x77\x61\x30\x4e\x16\x7e\xa6\x5c\x5c\x67\xf4\x4f\xc5\xff\x09\x29\xfe\xf7\x50\xdd\xd9\x54\xff\x04\x33\x3d\xf1\xfb\x1c\xef\xce\xc4\x9f\x18\x29\x88\xff\x1d\xfc\x24\xca\xe2\xbb\xe0\x27\xf1\xfc\x59\x31\xff\x3e\x4c\x35\x0f\xfd\xcf\xad\x0c\xcf\xfc\xbb\xbb\x91\x3f\x51\xa5\x67\xf9\x9c\xa5\x13\xf5\x7b\xff\xc7\x89\xa6\xea\xe6\xd1\x51\xfa\x43\x8e\x7c\x45\xfb\x5e\xf2\x5f\xe0\x63\x39\xfd\xee\x3b\xee\x2e\x54\xc6\xb5\xbf\xf3\xb3\x39\xb9\x0c\xe3\x38\x19\xf9\x92\x2c\x0a\x65\x6c\x7b\x74\x96\x9e\x4b\x9b\xaa\x83\x75\xdd\xbe\xe0\xef\x74\x80\x6d\xd0\xfb\xcc\x6f\x5a\x5c\x17\xf1\xa2\x4b\x16\xab\x1a\x58\xfe\xa4\xfc\xc7\x40\xf9\x5d\xb4\x18\x15\xb4\xd8\x95\xd9\xdf\x97\x38\xed\x8f\xc4\x77\xef\xde\xbd\x13\xde\xc8\xc2\xdf\xfe\xf6\xb7\xbf\x89\xdf\xb0\x8a\x3e\xf5\x2e\xa1\x61\x04\xba\x93\x21\xcf\x56\xc9\xee\x2b\x25\x9a\x65\xff\x24\xde\xc7\x4e\xbc\x87\x8d\x9d\xab\xd3\x58\x65\xa2\xfc\xfc\xe6\xa5\x62\x61\xc8\xe1\xc4\x27\xab\x28\xc8\x52\x39\x9e\xf8\x24\x8c\xa3\xab\x5f\xe2\x64\xd1\xb9\x5e\x52\x39\x94\xe3\x01\x11\x65\x0d\x92\x5d\xc4\x51\x36\x57\x9a\x81\x99\x7f\xf2\xd5\x27\x42\x9a\xdf\xca\x57\x85\x37\x6f\x84\xe3\xe3\xf1\x62\x31\x4e\x53\xe1\x7f\xff\xf7\x5b\xb8\xeb\x3b\xa0\xa4\x07\x67\xb1\x4b\x9a\x4c\x69\x94\xa1\x5b\xff\x10\xc1\x97\x21\x25\x93\xfd\x89\x9f\x5c\xe1\xcd\xb1\x79\xea\x9b\x1f\xb5\xa3\x23\x06\xdf\xf3\x49\xf9\xf2\x4c\x3b\x7f\x59\xfd\x31\xbe\xdd\xc8\xb8\x22\xcf\xd4\x73\x09\xd7\x23\xbb\x36\x10\xde\xe3\xa2\xcc\xe2\xcc\x0f\x73\x27\x6a\xf5\x87\x51\x06\xd4\x58\xb4\x1b\xbf\x8c\x46\xb1\x34\x2e\x7e\x87\x2f\xd3\xef\xa2\x51\x28\x8d\x53\xe9\x65\xfa\x22\x1e\xab\xd2\xd1\x51\xf6\x03\x51\xb5\x97\xe2\x0f\x82\xf6\x9f\xe2\x18\xc5\xa9\x24\x5e\x45\xb3\x91\xa6\xaa\xff\x37\x93\xbe\x13\xff\x53\xec\x3e\x31\x0a\xd2\x5f\xfd\x5f\x47\x54\x7a\xa9\x8e\xbf\xa3\xf7\x9f\xb7\xf7\x05\x46\x27\xd9\x3e\x9c\x2b\xdb\x97\xd5\xfc\xc9\x64\xfe\x7d\x99\x8c\x2c\xfc\x9f\xbf\xfd\xed\x50\x9c\xe6\xe1\x98\x0c\x1e\x85\xec\x6f\x89\x29\xaa\x3d\x46\xe3\xc4\xd6\xf1\x76\x5a\xc6\xbb\x0d\xb1\x57\x4f\xcd\xe6\x7d\x35\xbc\xb9\xab\xdd\x88\xea\x3c\xdb\xee\xc3\xd4\x53\x3b\xd0\xbe\xda\xc3\xbd\xe7\x6a\xa7\x6b\xcf\xdc\x4f\x15\x60\x94\x7b\xae\xa2\xa2\xda\xd3\xc2\xdd\xdc\x4f\x7f\xc5\xc1\x0e\x6c\x93\x97\x1f\x80\xc3\x65\x42\xd7\x41\xbc\xda\xd7\x45\xaa\x56\xf5\xc9\xe1\xf2\x7d\x31\xe8\xe1\xf8\xcc\xeb\xec\xc2\x69\xb6\x08\x95\xd4\xbf\xdc\xd7\x4d\xa5\xac\xf7\xc4\xb0\x99\x2d\xc2\x8f\x38\xdc\xa1\xa8\xe4\x15\x76\xe1\x71\xb5\xf0\xa3\xfd\xbd\x7d\x8a\x6a\x4f\x0c\x8b\xc5\x68\x87\x62\x91\x57\xd8\x81\xc5\x20\xda\xd7\xd5\x07\x6a\x3c\x2d\xdc\xe1\x18\x07\xb6\x17\x44\xbb\x5c\x7d\x82\x28\x0c\x22\xaa\xa4\xeb\xab\x2e\xc4\x95\x6f\x3b\x2b\x94\xcd\xa5\xeb\xab\x26\x5f\x94\xa3\x8a\xde\xe1\xff\xa9\x77\x3c\x0e\xbd\xe3\xb0\xd9\x5d\x98\x4e\x70\x74\xd4\xa1\x21\xbc\xdc\x61\x99\x4b\xd9\x54\x86\x13\xbf\x4b\xeb\x61\x54\xf6\x71\x7d\x25\x55\xf2\xff\x87\x72\x2a\x15\xb7\x96\x1e\xfb\xd1\x2c\xa4\x17\x7e\x92\x92\x85\xff\x99\xfe\x04\xea\xfd\x71\x97\xfd\x6f\x57\xab\x54\xf6\x61\xbf\x9b\xdf\xdd\xdd\x36\x2e\x2e\xdd\xaa\xd6\x14\xf7\x2d\xec\xcd\x70\xf2\x7a\x8f\x91\xed\x6c\x1f\xf1\x3a\xfe\xbc\xaf\x7b\x3e\xaf\xf4\x18\xc7\xba\x8d\xc5\xb2\x91\x0e\xe6\xb2\x50\x7c\x17\xf6\x52\xc5\xbf\xec\xf1\xbe\x60\x56\x9b\x76\xd1\xc7\x88\xb5\x5d\x63\xec\x8b\xf6\xec\x56\xeb\x8a\x1a\x8f\x71\xa8\x5b\x08\x84\xed\x55\xc3\x29\x84\x95\xdf\x8d\xbe\x0b\x7a\x19\x27\x9d\x6b\xac\x4d\x23\xbc\xec\x63\xc4\xdc\xce\x51\x66\x5f\x68\xb7\xb7\x4a\xd7\x30\x59\xe1\x27\x38\xce\x69\x18\x2c\x2f\x62\x3f\x99\x29\xe9\x6a\xb9\x64\x29\x66\x7a\xe4\xfb\xa2\xe8\xae\xfa\x8f\x11\x0d\xdb\x16\xca\xeb\x7c\x0c\x1f\x4b\x14\x0c\x5e\x35\xed\xca\xbb\x91\x0e\x02\xd1\x7e\x1c\x88\xd5\x78\x8c\x88\xdd\x35\x54\xe6\x13\xb9\xcf\x50\x9f\xa0\xe7\x67\x90\xfe\xbc\x97\xef\x27\x2f\xbf\x1b\x7d\x31\xf6\x38\xf4\xcc\x8b\xcb\x91\xd9\x44\xcc\x9f\x8b\x93\x49\x76\xbd\xa4\xf1\xa5\xc0\xd4\x8c\xa3\x23\x31\xc5\x2f\xcd\x17\x85\xfe\xf1\xb2\xda\x7c\x0e\x30\x2b\x49\x37\xe3\x8e\x97\xf4\xe8\x68\x4b\x77\x78\xdf\x0b\x13\xfb\xe3\x64\x32\x99\x14\xcf\x9f\xe7\xdf\xc9\x32\x89\xb3\x18\xaa\xbd\xcc\x61\x1b\x17\x1d\x4a\x23\x5a\x0f\x9c\xfa\x53\x45\x7b\x0c\x2a\xda\x90\xa3\xa1\xe7\xf5\x09\xf1\xa5\xa3\x23\x18\xd1\xf3\xc9\xc4\x3f\x3a\x12\x39\x61\x4f\x26\x93\x6c\xe4\xdf\x4b\xe7\x0b\x52\x56\xe9\xa1\x0e\x85\x82\x54\x49\xfd\x05\x55\xe2\x64\x1f\xa9\xb8\x5e\xe5\x31\x72\xb1\x81\x63\xde\x47\xcc\x6b\xd4\x79\xa2\xa3\x1e\x3e\xd6\x27\x37\xc2\xdf\xe3\x60\x5f\xc7\x6b\xac\xf2\xd4\xc6\x19\xfa\x37\xd7\x20\x92\x4e\x1b\x29\x31\x7e\xc7\x54\x91\x7f\xfa\x1c\x3c\xd9\x8d\x45\x97\xe4\x74\xe2\x73\xdf\xb8\x33\xed\xfc\xfb\xba\xe3\x41\x48\x32\x3f\xb9\xa2\x99\x44\x82\x74\x24\xfa\xa2\x74\x77\x97\x8e\xc2\x7b\x6d\x2b\x40\x42\xaf\x81\x82\x1e\x6a\x5f\x09\xe3\x2f\x34\x99\xfa\xe9\xbe\xe7\x28\x65\xbd\xc7\xb8\x2a\xfb\xdb\xac\x8c\x77\x60\xab\x45\x0d\x5c\xed\xfd\xfe\xe1\xe1\x1e\x6e\x0c\xe1\xe3\x34\x66\x6e\x41\xdb\xf0\xe6\x76\xb3\xc5\x7d\xdc\x18\xc2\x27\xe7\xc6\x10\xee\xe1\xc6\x10\xee\x74\x63\x58\xf8\xf7\x70\x05\xe2\x95\x1e\x23\xde\x76\x8c\x75\xff\x81\x3e\xbd\x51\xd2\x59\xe0\x77\x8d\x33\xa1\xe9\x32\x8e\xd2\x60\x4d\x1b\x65\x1f\xe3\x08\xfb\xdb\xe4\xe3\x1b\xd8\x22\x96\xde\x85\x31\x14\x7b\x15\x7f\xd6\x69\x0c\x6c\x08\xc5\x95\xc2\x8f\x11\x6f\x03\xc6\x39\xf5\x43\x1a\xcd\xfc\x21\x2a\x5e\xb3\xc6\x13\x1d\xf1\x2c\xb8\xbc\x1c\x3e\x5a\x2c\xfd\x54\x47\xda\x19\x9c\xb3\x75\xb4\x7d\x21\x3a\x4f\x64\xc4\xcc\x5b\x76\xf8\x78\x79\xf9\xa7\x3a\xda\x24\x5e\x28\x51\xfc\x65\x8f\xf1\xe6\x35\x9e\xf0\x88\xf7\x1b\xed\x53\x1d\x69\xba\xba\xc8\x92\x9e\xec\x82\xdd\xa3\x2d\x6a\x3c\xd1\x11\x67\x71\x47\xb8\xeb\xb6\x01\xe7\x15\x9e\xee\x78\xf7\x5a\xbb\xbc\xfc\x93\x1d\xed\x3e\x23\x7d\xaa\xa3\x5c\x45\xc1\xd7\x01\xe3\xc4\x62\x4f\x73\x88\x83\x67\xf1\xc9\x8d\xef\x1e\xfe\xfb\x4f\xd0\x77\x3f\xda\xc7\x71\x3f\xda\xed\xb5\x1f\xc5\x99\xb2\x4f\x72\x23\x56\xfe\xe9\x1d\x73\x47\x71\xf6\xf3\x3f\x86\x23\x0e\x4a\xef\xc6\xdc\x5e\x68\x7b\x7a\x08\xdb\x07\x5d\x3b\x91\x35\x64\xa7\x7c\x8a\xfb\x23\x3b\x0d\x56\xba\xb5\x96\x2d\xbc\xa7\xac\xf7\x18\x47\xdc\xdf\x26\x83\xfb\xd5\xf0\x46\xf3\x0a\xbb\xf0\xb8\x84\x8a\xdd\x0e\x37\xdb\xd0\x98\x57\x7b\x62\x58\x2c\x46\x3b\x14\x8b\xbc\xc2\x2e\x2c\x76\x1a\x82\xba\x79\x52\xfc\x38\x4d\x40\x5b\x90\x96\x0c\x47\x57\xb2\x03\x51\x4b\xff\x8a\x2a\x59\x90\x85\x9d\x0a\x4b\xf9\xb6\xab\xc2\x43\xdd\x46\x58\x60\x61\xd7\x2d\x79\x05\x4c\x34\xb9\x8c\x93\x4e\x8d\xba\xeb\xe6\x8d\xbc\xf8\x63\x9c\xf5\xad\xc3\x0c\x96\x54\x61\xf7\x79\xed\xc9\x1d\xaa\x35\x9f\xe2\xa8\xef\x31\xdc\x47\x39\xce\xfe\x36\xd9\x28\x07\x36\x08\x85\x77\x61\x2d\x5c\x25\x7e\xdf\x0d\x2d\x41\x74\x19\xd2\x69\xd6\xc1\xf8\xfe\x74\xa7\x78\x72\xee\x14\x79\x06\x13\x6d\x32\x41\xbf\x8a\x97\xe9\x18\x3d\x2b\x0a\x0a\x90\x46\xe9\xbd\xdc\x28\x8a\x06\x98\x9b\xc4\xb7\x39\x53\xf4\xbb\x00\xdc\x33\x56\xfa\x89\xc6\x49\x2f\xf7\x0d\x92\x5e\x0e\x8b\x90\xfe\xc7\x8a\xae\xf6\x65\x93\xac\xce\xd3\xc2\x1f\x1f\xe7\xc0\x16\xb1\xf4\x0e\xcc\x25\x7e\x74\xb5\x2f\xe6\x58\x9d\xa7\x85\x39\x3e\xce\x81\x2d\x62\xe9\x5d\x98\xa3\xb3\xd5\x74\x6f\xd4\xb1\x4a\x8f\x11\x77\xdb\xc7\x8a\x6a\xea\xde\x5e\x25\x65\xbd\xa7\x37\xe2\x25\xdd\x5b\x9b\xe7\x95\x1e\xe3\x58\xb7\xac\x0c\x3e\xd2\xa1\x4b\x03\x8b\xef\xc4\xde\x9a\x26\x3d\x0e\x82\xdb\xd0\xc7\x6a\x3d\x46\xfc\x6d\x1b\x6d\x3a\x5f\x5d\x5e\x76\xab\x90\x5b\x46\x9b\xd7\x7a\x8c\xa3\xed\x6f\xb3\x18\xeb\xc0\x36\x79\xf9\x5d\x18\x0c\xa2\xab\x55\xe8\xf7\x5d\xc5\x53\x48\xec\x2f\xc2\xe0\xa2\xb3\xd2\xa3\x51\xc6\xd3\x30\xd8\x7b\x53\x60\x75\x1e\x23\x1d\x6c\x1d\x69\x9c\xdc\x63\x47\xc8\x6b\x3d\xb5\xd1\x66\xfe\xde\x61\xf9\x58\xe5\xe9\x8d\x33\xed\xb9\x8d\xb3\x6d\x49\xc2\xb2\x4f\x6e\x80\x41\x16\xd2\xfd\x93\x00\x15\xd5\x1e\xe3\x78\xfb\xdb\x2c\x47\x3b\xb0\xd1\xbc\xc2\x2e\x2c\xc6\x57\x57\xe1\x3d\xcd\x71\xf5\xba\x8f\x11\x9f\xbb\x47\x7e\xaf\x21\x3f\xca\xb1\x6e\xa1\x1d\x3e\xd2\xa1\x94\x83\xc5\x77\x61\x2f\x09\xba\x0d\xd5\x5b\x56\x1e\x54\x79\x62\x98\xc3\x51\x0e\xc5\x5b\x12\x2c\x76\x62\x6d\x15\x4d\x7b\xbc\xaa\xb6\x62\x8e\x57\x7b\x6a\xd8\xcb\x47\x3b\x18\x83\xac\xc2\x0e\x2c\xae\xa2\x19\x4d\xd2\x69\x4f\x50\xe8\x16\x3c\x56\x2a\x3e\x2d\x4c\x56\x47\x3c\xb0\xd9\xb2\xca\x4e\x6c\xee\xcf\xf9\x59\x9d\xc7\x88\xc3\x1d\x23\xfd\x97\x75\x07\x5b\x2d\x97\xf7\x8a\xe5\x2b\xeb\x3d\xc6\x11\x6f\x59\x11\xe5\x78\x87\x2e\x88\xbc\xc6\x2e\x4c\x66\x9d\x69\x11\x9b\x44\x92\x3d\xb5\x54\x88\x38\xae\xa1\xb8\xca\x76\xa5\x42\xec\xf4\xff\xd9\x42\x67\x8f\xd3\x13\xa8\xbf\xcd\x2f\x83\x5b\xfb\xb2\x0b\x53\x41\x36\x8f\x57\xfb\x5a\x20\xf3\x5a\x4f\x0c\x6b\xf9\x58\x87\xe2\x8e\x95\xdf\x81\xc1\xaf\x4a\x30\xed\xde\xa2\x0e\x9a\x72\xb3\xb8\xfe\x84\xb2\xe8\xee\x33\x9f\xe0\xcd\xe6\xb2\xc8\xba\xc7\x3f\x4a\x90\x2a\xc5\xd5\x53\xa9\x74\x8e\xb7\x31\xf8\xd3\x6c\x24\x91\xdf\xe3\x20\x1a\x89\x82\x28\xed\xcc\xcd\x98\xca\xb7\xd8\xf2\x38\xdc\xdc\xeb\x48\xf3\xeb\xdb\x69\x1c\x3d\x54\x54\xf8\xd7\x7d\x9c\x8e\xbe\x3e\x39\xaf\xa3\xaf\x7b\xb8\x1d\x7d\xed\xf5\x3b\x0a\xa2\x20\x0b\xf0\x54\x39\x49\x5f\xf8\xcb\xa5\x42\xa3\xf5\xa0\xdc\x48\x8c\xc6\x68\xed\xbe\x8f\xbb\xbb\xf2\x97\x7a\xfe\x8c\x92\x20\x02\xe0\x47\x78\x69\x7f\x12\x87\x21\x4d\x44\xbc\xc1\xff\x32\x00\xa2\x4e\x69\xb2\x0e\xa6\x74\xcc\x1f\x60\x06\x9a\xa2\xc2\x62\x19\x47\xe8\x17\xde\x5f\xfe\x5e\x29\x6e\x8a\xf1\xf6\xdd\xd1\x11\x4d\x6e\x23\x7f\x41\xc7\x22\x60\x23\xef\xbb\xac\x36\xce\x36\xbb\x2c\xaf\x2d\x9c\x66\xf1\xe7\x7a\xde\xbb\x07\xc0\x2a\xef\xa3\x40\x12\xfb\xdd\x87\xd3\x9e\xd2\x7f\x00\x46\x79\xcf\xf7\x47\x28\x8c\xda\x0f\x22\x9a\x28\x33\x7a\xb1\xba\x52\xfc\x99\xbf\xec\xc9\x25\x94\xd0\x34\x0e\xd7\x34\x79\x91\x7f\x49\x5f\x20\xbb\x0a\xa6\xbd\xad\x3c\x94\xd9\x9e\x63\xa0\x17\xf8\x0a\x3e\x2a\x0b\x78\x00\x31\x24\xf4\x2a\x48\x33\x9a\x8c\xfa\xda\x1e\x2f\xfc\x20\x12\x2b\xa9\x3d\xe4\x3a\x05\xf5\x57\x11\x01\xe6\x74\xe9\x4f\xa9\x28\xc3\xdc\x85\xc1\x14\xa3\x38\xd9\x6b\x69\xd3\x98\xb7\xb6\x4b\x49\x6d\xde\x4a\xc9\x6a\x11\x24\x5b\x6f\x1d\xfa\x76\x9c\x97\x0f\x38\xde\xdb\x9d\x77\x23\x7c\xb3\xd9\x49\x7f\x2d\xeb\xf3\x2e\xe3\xf4\x8e\xda\x8f\x71\xd7\x19\x88\x84\x99\x9f\x75\x26\x01\x80\xe7\x2f\x52\x9a\xad\x90\x81\x32\x0a\xab\xbd\xec\x90\x60\x0e\xb3\xd0\xfc\xfa\x84\x33\x00\xab\xbc\xa6\x18\xe4\xae\x2b\x97\x3a\x86\x5b\xe6\x36\x50\x2e\x12\xea\x7f\x5e\xc6\x41\xd4\xbc\x8a\xa9\x95\x05\xa1\xd6\x4e\xf9\xfc\x9f\x7f\x3e\x58\x1f\x20\x0e\x40\xa9\x2c\x72\xe5\x2a\x8c\x2f\x9a\x6e\xef\x45\x65\xb6\x2f\xbe\xa0\xd1\x3a\x48\xe2\x68\xd7\xed\x53\x03\x18\x59\x70\x39\x7a\xae\x3d\x9f\x94\xe0\x13\xd6\xeb\xab\x12\xa2\xff\x42\x80\xb8\x03\x23\x54\x40\x6b\x12\x8c\x6a\x26\x3e\xcf\x93\x24\x7e\x09\xa2\x59\xfc\x45\x8a\x26\xec\xcb\x33\x1a\xa6\x54\xe8\x29\xcb\x46\x28\x45\x13\xf6\x05\xcb\xde\xd6\xcb\x16\xc9\x17\x53\x1a\x5e\x72\xb7\xca\x67\xd1\x04\x7e\xe1\x7d\xac\xbe\x9c\xee\x06\xf9\x99\x3f\x11\x99\x36\x59\x69\xef\x65\xca\x53\x9a\xb3\x0b\xdf\x99\x84\x1e\x5c\x5e\x8f\xca\xe6\x16\x38\xeb\xef\x13\x7a\x19\x7c\x95\xe4\xe8\xcc\x3f\xbf\xbb\x1b\xc1\x9f\x09\x95\x81\xf1\xc7\x4b\x1a\x8d\x6e\xbf\x04\x61\xf8\x86\xa6\x59\x12\x5f\x8f\x6b\x6e\x8f\x41\x4a\xfe\x9e\xae\x40\x74\x86\x69\xbd\x1e\xc1\x13\xb9\x40\x3a\x50\x44\x48\x33\x2a\x40\x83\x9b\x8d\x24\x6d\xbe\x71\xf3\x8f\x76\xad\xc8\x7e\x12\xab\x2c\xd0\x68\xbf\x85\x79\x99\xf8\x57\x2c\x4a\x99\x26\xfc\x61\x0f\xc5\x96\x05\xca\x5a\x5b\xdd\x6d\xa5\xdb\xea\xe6\x5a\x56\x1f\x2b\x45\xf5\xca\xa6\xfa\xc0\xc8\xeb\x1c\xe7\xfd\xd1\xb6\x88\x67\x34\x2c\xc6\xd1\xc9\xc2\x80\x75\x2a\xcd\x72\x87\x67\x5a\xad\x9d\x3a\xef\xec\x53\xe2\x47\x29\x8b\x22\x60\x39\x10\x7b\x79\x7a\x55\x74\x28\x45\x9b\xac\xac\x2f\xa6\x19\x1a\x9c\x0b\x69\x97\xfd\x96\xfa\x36\x7b\xe6\xee\xab\xec\xbb\xe1\x95\xe5\x15\xec\x40\xe1\xdd\x3d\xb4\x4c\xb9\xcf\x56\xd7\xb3\x13\x74\x8d\x78\x4e\xfd\x99\x72\x91\xc4\x5f\xd2\xfa\x9a\x7a\x70\x59\xad\xde\xf1\x3e\x72\xda\x22\xf8\x1a\x44\xe9\x8b\x94\xfa\xc9\x74\x0e\xd2\x4e\x7d\xae\x2e\x57\x29\x25\xbf\xb7\xa9\xb8\xbe\xea\x07\xba\xd8\x17\x7e\xf2\xd9\x44\x95\xa3\x49\x44\xbf\x08\xfc\x1d\xf7\x78\x97\xbe\xcf\x7e\xc8\xbf\x7f\x9f\x7d\xf7\x9d\x14\x9d\x65\xe7\x13\x7a\x96\x15\x1e\xe2\xd1\xa6\xe9\x9f\x8f\x5d\x35\x5c\xee\x85\x20\x12\x18\x96\xb1\xb0\x78\xc6\x02\xd7\x84\x57\x39\x27\x3f\x17\x27\x93\x09\x9f\x87\x22\xf1\x2f\xc9\xe2\x7c\x63\xf1\xc3\xb0\x12\x13\xc0\x06\x72\x99\xc4\x8b\x11\x95\x1a\xfd\x0f\x77\x96\x4f\x97\x09\xf5\x67\x7f\xdc\x55\xbf\xef\x60\x66\xc9\x34\xa1\x7e\x46\x47\xb7\x6c\x82\x3f\xd1\x64\x31\x16\x45\x39\x0c\xd2\xec\x53\xfc\x11\x9f\xf1\x3d\x15\x54\xdd\x55\x46\x67\xa3\x96\x98\x7b\x76\xbe\x91\x64\x56\x1f\x80\x4a\xc7\xd1\x2a\x0c\x65\xfa\xd5\x9f\x66\xef\xfc\x6c\x3a\xff\x58\x79\x55\x6f\x8b\xc0\x88\x53\xd8\x09\x8a\x12\xa2\x24\x27\xf4\x8a\x7e\xdd\xb7\xd2\xe5\xea\xe6\xe6\x7a\xdf\x4a\x25\x8c\x3f\x47\x80\xef\x19\x88\xf2\x95\x96\x8a\xa7\x1a\x03\xaa\x52\x2a\xa1\x29\xcd\xde\xfb\x57\x41\xc4\xf4\xb7\x0a\x56\x58\xfe\x60\x14\x16\x98\x46\x02\xe5\xe8\xd1\x11\x3e\x49\x29\xe8\x88\xe5\x63\x51\xd6\xa4\x8d\x0c\xcb\xa8\x89\x67\xb1\x3a\x09\xe4\xec\x1c\x57\x5b\x7d\x90\xf8\xb4\xad\x76\x00\xad\x15\xac\x0a\x65\x14\x52\x6d\x4b\xbe\x4d\xe7\xf1\x2a\x9c\x7d\x8c\x93\x0c\x86\x92\xcd\x13\x9a\xce\xe3\x70\x36\x26\xa6\x1c\xc6\x5c\x21\x55\xe5\x59\xc0\x88\x6f\xac\xa9\xaa\x8c\x36\x06\xe0\x18\xcf\x55\x79\x01\x18\x7b\x15\x86\x9f\xe0\x59\xca\x9e\x7c\x7d\x0f\xa4\x9c\x44\x27\xb8\x38\xc7\x86\x2e\x2f\x82\x08\x51\xfb\x7a\xee\x27\xfc\xa9\x26\x7f\xa6\xd7\xe9\x18\x21\x6a\x8e\xe5\xee\xee\xec\x1c\xd4\xa8\x5f\x2a\xb8\xac\xc6\xe7\x30\xec\x5c\xd1\x0c\x9f\x32\x85\x0a\x46\xc5\x9a\xa0\xb3\x16\xfa\x4a\x8a\x16\xe5\x0e\x5c\xb6\xe6\xbe\x8e\xdf\xf2\x61\x75\xe6\x6b\xf5\x9a\x13\xd1\x3d\x3d\x62\x93\x9c\x9b\x93\xc6\xe4\x78\x4e\x1c\x39\xc8\xe8\x30\x30\x92\x50\x86\xa7\x77\x77\xcf\x0b\x0e\x98\x6b\x96\xcd\x49\x7d\xc6\xf8\xe6\x59\xc1\x09\xb1\x44\x6b\x90\x47\x47\x19\x46\x14\xe5\xf2\xab\x1c\x8d\x9a\x5a\x63\x70\x39\x6a\xf5\x46\x2e\x83\x30\xab\x5e\x08\x54\xce\x4b\x44\xd2\x78\x41\xcb\x37\x51\xc7\x8c\x41\xbb\x93\xc9\x84\xc2\xa4\x61\x38\x51\x8b\x24\x1b\xd0\x56\xd0\x25\x49\x92\xdc\x24\x98\xfe\xc1\xf0\x92\x29\xe5\xb8\x04\x2e\xcd\xeb\x57\xe7\x71\x4f\x34\x60\x0c\x15\x8f\x4b\xa2\x5f\x84\x0f\xf4\xea\xe7\xaf\x4b\x60\xbc\x41\x61\xd0\xef\xc0\x11\xed\xc5\x51\x89\x3d\x9f\x64\x34\xcd\x46\x75\xe2\x96\x10\x4f\x2c\xa2\x2b\x95\x6e\x37\x05\x9b\xdd\x82\xbb\x26\x95\xe1\xb0\xc9\x2a\x0a\xfe\x31\x92\x36\x03\x6e\x5e\xcf\xf7\xf9\x38\xc9\x9a\xbb\xfc\xa1\xa5\x13\x46\xa9\x9d\x9b\x50\x9c\x64\x79\x93\x6c\x17\x81\x27\x6f\x68\x3a\xa5\xd1\x2c\x88\xae\x80\xd5\xf0\xa1\x03\xef\x1a\xb4\x31\x21\x8f\xc0\x1b\x2f\xfa\x18\x6c\x9c\x64\x6c\xa5\x56\xbb\xe7\x3f\xcb\xbe\xfb\xd6\x6c\xa5\x91\xf2\xb8\x07\xaa\xfe\xc4\xd4\x43\x52\x6d\x55\xaa\xad\xce\x7a\x07\x2f\x41\x37\x42\xdf\xf8\x91\x34\xa6\x8d\x39\xcb\xb6\xcc\x19\x53\xcb\x95\x84\xa6\xc1\x4d\x5b\x42\xeb\x49\x2a\x7d\x28\x81\xb9\x6b\x1a\x19\x40\x1f\x00\x1e\xca\x6e\x17\x4b\x6a\x82\xa6\x8c\x76\xac\xff\xa9\x94\x6a\x1b\x68\x01\x41\xcf\x58\xe3\xc9\x2a\x22\x29\xb0\xf8\x55\x48\xff\x1a\x4d\xe9\x48\xc4\xb4\xf5\x1f\x68\x34\x03\x69\x16\x75\xf0\x4a\x7d\xca\xf6\xd8\xbf\x77\x40\x21\xca\x94\x74\x3c\x26\x17\x41\x34\x03\x4e\x21\xd7\xf3\x35\x73\xc3\x07\x89\xa3\x91\x88\xd8\xa5\xd0\x40\x57\xc3\xb0\xc4\xb0\xd8\x2c\x98\xbd\x8d\x52\x9a\x64\x3f\xb3\x5b\xd8\x51\x9c\x59\xc4\x6b\xda\x37\xda\x9e\x1e\x2f\x2f\xcb\x2e\x99\xd9\xa1\xb3\x57\xec\xb3\x62\xad\x28\x7a\xad\x11\x4f\xa7\x86\x52\x10\x4f\x36\x57\x8a\x63\x0c\x65\x1d\xa4\xc1\x45\x10\x06\xd9\xb5\x32\xa3\x19\x6d\x79\x7e\xfe\x71\xbc\xa0\x84\xa4\x9f\x84\xde\xc4\x53\x94\xd7\x4f\x8b\xb2\xd5\x42\xac\x55\xe0\xaf\x41\x74\x75\x77\x37\x2a\xe5\xaf\xbf\xb7\x1a\xe7\x58\x6e\x3d\x67\xa4\x01\xef\x24\x49\x9e\xf1\xee\x88\x3f\x9b\xfd\xbc\xa6\x51\x76\x12\xa4\x19\x8d\x68\x32\x12\xcb\x8a\xd3\x39\x0b\x42\x63\xb3\xd6\x6a\x50\xe2\x93\x06\x3a\x58\x41\x1c\x7b\x8d\xa3\x80\x82\xd5\xbd\x37\x20\x2d\xe2\x11\xf7\x61\x39\xd9\x5c\xb9\x8c\x93\x8b\x60\x36\xa3\x91\x92\x66\x0d\xbf\xc5\x3f\x70\xcb\x00\x3a\x78\x5d\x9c\xda\xd5\x2c\x17\x38\xf2\x20\xfd\x25\x87\xf3\xe8\xa8\x42\x03\x95\xe7\xa2\xcc\xba\x81\x8e\xdb\xef\x9e\xab\xb9\x04\xb1\xcd\xf4\xb7\x61\x1a\x41\x0f\x24\x9d\xed\x6a\x43\x9a\xdd\x6f\x4a\x98\x71\x89\x82\x8e\xa9\xcc\x61\x9e\x71\xe3\xea\x34\xde\xad\xb2\x20\xc4\x64\x45\xc1\xe5\x35\xab\xf1\x87\xee\x11\x08\x69\xd7\x91\xc9\x2e\x8c\x10\x26\x17\xd5\xf9\x26\x5b\xa0\x9b\xfd\xb8\x5e\x71\x14\xa7\xe0\xd4\x65\x0d\x5c\xfd\x81\x34\x7c\x9d\x66\x74\xc1\xc5\x13\x66\x6c\x23\xdc\xd0\x35\x92\xe4\xdf\xe3\x8b\xb4\x42\x56\xb5\x52\xe5\x71\xf5\x48\x84\x72\xa2\x24\x33\x8f\xfb\x74\x7c\x7b\x15\x67\xf1\x5f\xe2\x8b\xb4\xbd\x24\x90\x16\x59\xa7\x04\x8a\xaf\xe9\xaf\xe5\xa9\x24\x96\x00\x49\x54\xac\x77\x4c\x7e\x8f\x2f\xca\x62\xf9\x92\x48\x77\x15\x94\x29\x6b\x2c\x98\x15\x75\xd0\x8c\x18\x00\x44\x9f\xe2\x0f\xf1\x2a\xa3\x39\xec\x9b\x3d\xa9\x3d\x81\xca\x7f\x6e\x59\x7f\xd4\x96\x85\xa4\x02\x8c\xfe\x11\x6c\x5b\x33\x5a\x42\xb3\x1f\xd1\x7c\x01\xf6\x41\x93\xb4\x87\x2d\x0e\xa4\xaf\x3f\x90\x55\x16\x6c\x4e\xbe\xcd\x61\x1f\xa6\xf9\x4c\xfd\x68\x4a\xc3\x57\x61\xf8\x3f\x79\xb5\xe6\x59\x56\xde\x1e\xb9\x8c\x93\x9f\xfd\xe9\x7c\x54\xdf\xb3\x8a\x06\x50\x85\x94\xd3\xcc\x4f\xb2\xae\xb6\x38\x69\x77\xed\x7d\x75\xbe\x5e\x6b\xa1\xe7\x08\x6d\xc0\x4e\xbb\x75\x9d\x15\x74\x36\xc7\x7d\xf6\x25\xb3\xc3\x35\x51\x31\x92\xc6\x6d\x88\xd8\x72\x2b\x79\xaa\xdc\xf8\xcd\x38\x19\xee\x5c\xa2\x24\x6d\x4a\x56\x0b\x42\xd4\xa7\x82\xab\x75\x5e\x3f\x47\x82\x28\x03\xa8\x60\xd3\x39\x3a\xaa\xfd\x64\x40\xa4\xff\x13\x64\x73\x06\x01\xd2\x1d\xb0\x50\xe9\xee\xae\x0f\x7c\xf9\xb9\xba\x19\xb2\xdf\x01\xb0\xe9\x0b\xff\xaa\x27\x1f\x28\x9e\xb2\xb0\x11\xd5\x1e\xf9\x59\xd6\x94\x07\x0e\xe9\x51\x50\x3d\xdf\xcd\x68\x34\xdb\xb5\x07\xe2\x29\xc6\x48\x95\xa3\x72\xcb\xcf\x8f\x7f\x25\xd9\x9f\xcd\x12\x9a\xa6\xbd\xef\x53\x9a\x5c\xbe\x8f\x93\xac\xb7\x40\xb2\x9c\x6e\x7d\x9f\xf9\x57\xcd\xd6\x6f\xf9\xb7\x53\x1c\x6a\x8b\xdc\xd9\x61\x0a\x88\xc5\xab\x7e\xb8\x00\xd1\x53\x1a\x65\x34\xe9\x87\x8c\x5e\x01\x41\x6d\x01\xfc\xd5\x6c\x96\xb4\x0c\x1b\x1c\x23\xa2\x2c\xc2\x6c\xf7\x59\x2e\x78\x29\x39\x63\x3f\x39\x16\x9e\x95\x17\x26\x66\x47\x47\x62\xe1\xcf\x4a\x65\x71\x2c\x4a\xf9\xaf\x4c\xda\x48\x72\x90\x9e\x50\x7f\x46\xdb\xfd\x73\xd9\x22\xc4\xb7\x84\x43\xd9\x65\xa9\x2e\x85\x8d\xee\x2a\xd2\x64\x52\x00\x07\x0f\x06\x59\xb2\x38\xc9\x87\xb9\x29\x7b\x6f\xba\xaf\x3d\x49\x68\x88\xad\xa4\xf3\x60\xb9\xfd\x28\x17\x2b\x07\x17\xab\x8c\x42\xb9\x30\x9e\xf9\xe9\x9c\x14\xb7\x94\x23\x20\x4d\xf1\x7b\xc9\x96\x50\x40\xd3\x17\xe9\x3c\x4e\x32\x65\xb5\x0a\x9a\xf7\x53\xc8\x91\xec\xcb\xa9\x1c\xca\xf1\xa1\xd6\x5f\x32\xb9\x5d\x72\x83\x9a\x26\x27\xab\x28\x82\x6f\xba\x0c\xf3\x17\xd2\x8c\x8e\x0d\xf9\xd2\x0f\x42\x3a\x1b\x9b\x72\x18\xa7\xd9\xd8\xda\xc8\x41\xc7\x92\xc5\x23\x81\xbe\x15\x8b\xc3\x79\x3b\x03\xd2\x8d\x2b\xa4\x0b\x62\x20\x48\xb4\xf0\xdc\x27\x17\x34\x8c\xa3\xab\xf4\x53\x2c\xa1\x08\x28\x4a\x72\x14\xcf\x68\xfb\x1d\x3c\x15\x77\x70\x81\xcc\x4f\x3f\xff\x57\x12\xaf\x96\xbf\x6e\x2b\x95\xd0\x34\x5e\x25\x53\x8a\xab\x32\x25\xf9\xdc\x49\x68\x6d\x61\x6f\x18\x80\xa7\x34\x49\x3b\x96\x5e\xb4\x82\xe1\x8a\x92\xbc\x88\x67\xc1\xe5\xf5\xdb\x68\x46\xbf\xee\x28\xf3\x29\x68\xc3\x33\x63\x62\x14\xdb\xe1\xb7\x37\xc2\xca\x6c\x6b\x24\x0c\x68\x94\x7d\xdc\xc1\x6b\x68\x1a\x24\x74\xb6\xa3\x14\x63\x58\x0c\x9e\xe6\x9a\xae\x76\xd3\xb5\x94\x93\x33\xb6\x55\x55\x8a\x9d\xdf\xdd\x69\xaa\x8a\x8c\xe2\x03\xa7\xb2\xc6\xa9\x1c\xa6\x17\x6e\xb6\x2d\x72\x92\x14\x25\x39\xcf\x0c\xf5\xaa\x58\xcc\x6d\xe2\xa8\x2e\xf4\xdb\x20\x42\x0b\xea\x18\x93\x27\x97\xb5\xc4\x8d\x24\xd7\x9f\x0c\x6d\xa7\x0d\x01\xb4\xb5\x4c\x28\x5d\x2c\x33\x3a\x2b\x1f\xa7\xac\xc5\xb9\x9f\xbe\xf3\xa3\xeb\x6d\xed\xb1\x9a\x3f\x5d\xf7\x34\x59\x7d\xb1\x07\x94\x2d\x78\xa0\xd1\x2f\x7e\xfa\x3e\x7f\xd5\x9c\xf5\x8b\x38\x0e\xa9\x1f\x89\x92\x7c\x19\x87\x61\xfc\xe5\xb7\xe5\xcf\xc0\x38\x7a\xfa\xa5\xc5\xbb\x82\x4e\x5e\x63\x98\xc2\x9e\x74\x52\x70\x1e\x31\x48\x95\x65\x6e\x5a\xcf\x99\x10\x3e\x4c\x82\x85\x9f\x5c\x8b\x25\x3f\x82\xa7\xf9\x0f\x31\xe7\x4d\xf0\x90\x99\x2d\x18\x93\x82\xdf\x61\x70\x35\xcf\xc4\x4d\x27\x25\xc2\xfb\x99\x9f\x7c\x06\xb4\x14\xbc\xa2\x05\x7d\x8d\x8b\x88\x32\x70\x25\x52\x3c\xdb\x76\x74\x97\x6b\xcc\x95\xd2\xe5\xd9\x10\x4a\x7c\x97\x41\x34\xfb\xe9\x7a\x84\x1e\xc0\x5c\xbd\xa9\xf5\x06\x3b\xea\x2a\x9a\x53\x3f\xcc\xe6\xd7\x6f\x92\x60\xdd\x21\xe8\x97\xf0\x91\x19\x2b\xc1\x4e\x2e\x80\x41\x92\x46\x65\xd4\xc1\x77\x41\xdc\x6a\x0f\x38\x69\xe5\x7d\x6f\xc3\xb5\xc1\x65\x2f\x47\xaa\x1c\x96\xb4\x05\x2a\xd1\x98\xb9\x05\x64\x7e\xd6\x64\xb6\xe8\x2e\x21\xb1\xbe\xb9\xe9\x10\x19\x33\x37\xf1\xa3\x66\xd8\x53\xa5\x2c\xa5\xd0\x35\x33\xaf\xcf\xfd\xf4\x43\xb3\x6e\x13\x6b\xcd\xc6\xf9\xb9\x9e\x28\x37\xd9\xc4\x56\x11\xa5\xaf\x15\xe9\x47\x95\xcb\xe9\xf5\xd6\x36\x08\xdc\xc7\x2c\x5e\x2e\xe9\xac\x80\xb1\xcd\x05\x47\x2d\x28\x9a\x0c\xb1\xbd\x40\x51\x2b\x41\x99\xbe\x05\xf1\xf3\xca\xec\xd5\xda\x2d\xea\x48\x47\x47\x95\x42\x5b\x1a\x97\x8e\x8e\x44\xb6\xdc\xc4\x5c\x10\xab\x42\x86\xf3\x1b\x2f\xfb\xb5\xbd\x38\xa1\x84\xfb\xbf\xff\x12\x27\x35\xe6\x25\xc1\xeb\x25\x33\x53\xa0\xed\x14\x74\xa0\x2e\xcd\x69\x48\x53\xbc\x3a\xd3\x14\x69\xc3\x0e\x18\x6c\x11\x12\x67\x74\x19\xc6\xd7\x7d\x97\x25\x3c\xbc\x90\x38\x48\x1c\xdc\x5a\x6c\xb5\x50\xfc\xab\xab\x84\x5e\x75\x5d\x06\xf5\x10\xa2\x63\x87\xea\x56\x8a\x7a\xe1\x60\x51\xaf\xb2\x79\x95\x93\x80\x7b\xd6\xef\xf1\xc5\x2f\x71\x72\x02\x7c\x23\xdb\x59\x37\xc4\x62\x6f\xca\x69\xdc\x48\xf2\x9a\x89\x6e\xbf\xa2\x04\xd5\x2b\x57\x25\xf4\x1f\xab\x20\xa1\xe9\xfb\x24\x5e\xc4\xb8\xe7\xf5\xf2\xda\x8f\xab\xc5\xc2\x4f\x02\x9a\x92\xff\x87\xfa\xd3\x39\x59\x62\x15\x3a\xeb\x58\x7c\x85\xec\x92\xaf\x17\xb6\x55\x72\xe7\x9f\x8e\x16\xb3\x98\xb9\xb8\x49\x0d\x17\x81\xaa\xe9\x80\x73\x9f\x06\xbc\xb8\x8c\xf9\xcb\x02\x22\x3c\xeb\xdf\xa5\x78\xb2\xd7\x6f\x68\x3a\x4d\x82\x65\xb6\x4d\xc1\xdc\x25\xb8\xa5\x6d\x91\xad\x3d\xc6\x2d\xdc\xff\x0a\x0a\x2a\x25\x01\x28\x29\x56\xba\x06\xad\x7e\x88\x64\x05\xdb\x15\x9f\xee\xd6\xf4\xd5\xc8\x80\x6f\xe5\xfc\x59\x9a\x73\x38\x3e\xa1\x9c\x28\xda\xd3\x39\xaa\xef\xed\x79\x75\x51\xba\xbb\x3b\x3b\x97\xca\x2d\x9d\xd7\x67\x06\xd9\x6a\xbf\x52\x49\x8f\x1f\x57\x17\x8b\x20\x43\x41\xbe\x81\x4c\x3f\x0c\xfc\xb4\x00\x98\xa4\x45\x41\x90\x80\x43\x7f\x4a\x67\xaf\xfd\xa8\x40\x65\x55\x9d\x6a\x23\x1b\x74\xfe\x5a\x95\x52\xf8\xdf\xab\x91\x46\x9d\xb2\x95\x4f\x71\xe6\x87\xfb\x34\x81\x15\x8a\x91\xe0\x76\xb4\xcf\x38\x58\x05\xd8\xe8\x99\x0c\xb2\x47\x03\xb5\x1a\x62\x45\xba\xda\xa3\x8d\x46\x9d\x1d\xc2\x6f\xda\x2b\xf6\x56\x25\xdc\x7c\xb1\xc8\xe9\x6a\x3a\xa5\x69\x7a\xb9\x0a\xeb\x92\xef\xd2\x5f\xa5\x5c\xc4\x65\x22\x6d\x87\xd0\xcb\x6c\x82\xf9\xc3\xe2\x57\x2e\xfd\xa6\x5d\x72\x2f\x67\x13\xc3\x37\xec\xca\xfe\x28\xe5\x6c\x8f\xef\xd9\xb5\x3d\x36\xd9\xb6\xc7\x26\x7e\x10\x29\x69\x96\xf8\x19\xbd\xea\x8c\xec\xea\xde\x54\x5b\x3b\x67\x4f\x88\xc1\x21\xed\x92\x51\x6b\x73\x9b\x51\x7f\x16\x06\x11\x1d\xd7\x0f\x1c\xcb\x7d\xe4\x32\x4e\xa6\xf4\x4d\x4f\x29\xae\xa2\x07\x57\x51\x9c\xd0\x8f\x68\xe2\xc2\x23\xb9\x46\xb1\x52\x15\xc3\x13\xe2\x69\xcb\x57\x89\x84\x19\x9e\x79\x60\x27\xa2\xac\xa2\x64\xf9\x6b\x5c\x74\xdb\xcd\x9d\xab\x15\x06\xdb\xcd\x2a\x8a\xde\xe3\x15\x89\xba\xc5\x9c\x43\xd1\x41\xbc\xa7\x90\xb3\x4c\x82\x38\x09\xb2\xeb\x5e\x59\x23\xbb\x5e\x6e\x31\x5c\x25\xc1\xd5\x15\x4d\x40\xf1\xdf\xb1\x63\x1f\x60\x43\x67\x7c\xe4\xd3\x7f\x95\x1c\xb0\xbd\x33\x23\xdf\x65\xb7\x32\xfa\x41\xb8\xc2\xbc\x42\xdb\xcd\xdd\x67\xe7\x1b\xa6\xec\xbc\xcf\xab\xfe\xc2\x6a\xb6\xdc\xb0\x81\xd2\x47\x62\x1d\x8a\x42\x8f\x92\x83\xf4\xa7\x30\x9e\x7e\x6e\x93\x7f\x53\xdc\xb8\x60\xc5\xb6\xdb\x12\x87\x98\xe8\xbe\xf8\x41\xf6\x5b\x94\x05\x61\xb7\x71\xad\xb6\x6a\xe2\x2d\xab\xe6\xf7\xf8\x42\x59\x86\xfe\xb7\xad\x99\xed\x0b\xa3\x77\x6d\x75\x2d\x86\x43\x2d\x85\xb0\x63\x29\xcc\x82\xcb\xcb\x06\xba\xba\x08\xcb\x3f\x18\x61\x71\xeb\x56\x2e\x0a\xa6\xdd\x46\xb6\xfa\x64\x85\x3b\x26\x2b\x17\x34\x1f\x1b\x8f\x1b\xa4\xcf\x3d\x24\xa3\xdb\xb2\xa0\xee\x21\xda\x97\xf2\x3c\xe6\xa9\xaf\x88\x7f\xe1\x2e\xc9\xab\x5a\x81\xf1\xb8\x24\x0b\xa2\xab\x3d\x5a\xa8\x57\x01\x9d\x8f\x09\x5e\x7b\x34\x51\xab\x21\x4a\x85\x4d\x72\x8f\x26\xea\x55\x0a\x1e\xbc\x47\x0b\xd5\x0a\xa2\x84\xe6\xce\x3d\x6a\x97\xc5\x73\xad\x2a\x3d\x09\xd2\xa6\xf7\x34\x99\xc6\x61\x88\x51\x7e\x35\xbc\xb7\x90\xd8\x44\x49\x6b\x7c\x0d\x70\x1b\xfd\x67\xa0\x0c\x70\xe0\x1b\x00\xa4\xab\x05\x5f\xcf\x08\x1f\xec\xab\xcc\x3c\xfc\x7a\x1e\x84\xb3\x84\xf6\x9f\xc5\x70\x88\x76\x96\x03\x79\x68\x67\xa1\x29\x2f\xb0\x15\x47\x0d\xc8\x4a\xac\x54\x9e\x54\x7b\xcb\x47\x5e\xf4\xde\x35\xf6\x6a\xcf\x7b\x6e\x3d\x5c\x75\x3c\x24\x37\x6b\x73\x9e\x43\x71\x9d\x74\x3f\xae\x93\x62\x40\x42\xff\xe9\x45\xa9\x2e\xf7\x1c\x90\x45\xdb\x0d\x41\x5d\xdb\xd9\x66\x67\x46\xa4\x12\xf9\xff\x8c\x2d\xa4\x7b\xcb\x2f\x82\x2e\xc3\x3f\x83\x2e\x1f\x59\xd0\x65\x3c\x39\xcb\x43\xa5\x41\x7c\xf5\xb3\xe9\x1c\x78\x2b\x6a\x84\xe2\xb9\xdc\x65\x56\xdd\xe1\xfb\xb1\xf5\x30\x7c\x19\xfa\x41\xf4\xb6\x75\xe4\x57\xea\x1c\xdb\x14\x92\x9d\xea\x8c\x1f\x86\xaf\xb2\xbf\x46\xd3\x6d\x8b\xf2\x50\x0a\xcb\x90\x23\xf2\x21\x82\xfe\x92\x26\x41\x3c\x0b\xa6\xfd\x20\x2f\xfd\xc4\x5f\xd0\x8c\x26\xc1\xcd\xb6\xc3\xd2\x59\x90\x2e\xd1\x0b\x6b\x4b\x99\xbc\xb3\x37\x34\xf3\x83\xb0\x89\x86\x46\x57\x7d\x85\xe6\x7e\xda\xb3\x5d\xc0\xfe\xc3\x3a\x10\x65\xb1\xd6\x16\x6c\x3b\x05\x7c\xbd\xa7\x59\x79\x6d\x7e\x6a\x55\x6b\x21\x3f\x1a\x2a\x9b\xd9\x20\xbc\x34\xda\x6d\x8c\xcf\x37\x30\x71\x53\x6e\xa3\x4d\xdb\x6d\xa3\x0a\x6b\x19\xcf\x64\x93\x60\xb1\xa0\x33\xf4\xde\x68\x9d\x8f\xb1\xc3\x58\x5e\x78\xeb\x21\x1d\x2b\x53\x9e\x60\x31\xff\x3f\x74\xb3\x4b\x28\x2a\x20\xa3\x17\xe4\xbb\x97\xff\xdf\x8b\x17\xb2\x28\x72\x27\x40\x78\xbb\x61\x33\x1b\xfa\xd7\xc0\x30\xda\x67\x01\xd7\x4b\x84\xa0\x17\xef\x3b\x50\xfd\xb2\xac\x3a\x6e\x23\xfd\x65\xa3\x35\x56\x04\xfa\x04\xc4\xd0\xc5\x32\xf4\x33\x7a\x3f\xb8\x72\x84\xd4\x4b\xe0\x93\xde\x01\x54\x0e\x89\xa1\xfd\x67\x7d\x48\x2e\xda\x94\xca\xe1\x29\x38\xf1\x7c\x04\xb5\xc2\xb5\xee\xa4\xc6\x90\x6b\xd5\xee\x89\xb4\x98\x04\xd1\x34\x5c\xcd\x68\x3a\xa2\x7c\xde\x91\xcf\x15\x8c\x77\x53\xf5\xb9\x6b\x2f\xb8\xf2\xe4\x7e\x97\x5a\x33\x50\x6f\xe5\xca\x4f\xe7\xba\xa9\x68\x46\x41\xfa\x1e\x44\x6c\x3f\xec\xb1\x7a\x54\xfc\x0f\xf2\x73\x6b\xb5\x02\xed\xeb\x78\x15\xb5\x24\x55\xd8\xee\x3a\xea\x75\x9d\x69\x15\xd6\x97\x0e\xf5\xae\xfb\xa0\x82\x83\xde\x71\x9c\xd5\xd4\xf3\xb6\xd7\xdf\xae\xe1\x6d\xaf\xbb\x43\xb7\xdb\x5e\x79\x87\x56\xb7\xbd\xf2\x76\x7d\x6e\x7b\xdd\x7e\x4d\x6e\x7b\xbd\xa1\x3a\x54\x73\x82\xca\x92\x1d\xea\xd4\xf6\xba\x4d\x15\xa7\xad\x66\x0d\xc2\x71\xa5\x7e\x4d\xfd\xda\x5e\x79\x1f\xdd\xa9\x6b\xcc\x95\xba\xeb\x1d\x8e\x7c\xf9\x99\x5e\xc7\x46\xa5\x94\xe7\x7d\xc3\x8f\x23\x2b\xa7\xd9\xcd\x82\xd5\x83\x6e\x49\x2e\x0d\xed\xad\x82\x95\x57\x5c\xd2\xc3\x60\x9a\x0e\xc7\xc8\x32\x20\x47\x9e\xed\x72\x19\xca\x8f\xaf\x73\x4f\x9f\xbe\x3d\xab\x52\x61\xe1\x2f\x7f\xba\x1e\x89\x85\x6f\x10\x61\x57\xdb\x8d\x3a\x33\x34\xd0\x6a\x48\x3d\x95\xc3\x51\x26\x49\x32\xdd\xc8\x67\xe7\x52\x11\x88\xbe\xdb\xc3\xa9\x82\x4d\x0e\x6f\xb3\x4a\x4f\xd6\x0b\xe6\xd3\x5c\xa9\xcd\x81\x6f\x56\x3f\xc4\x28\xe6\x7e\x6e\xa9\xae\xf8\xcc\x35\x47\x52\x99\x45\x3e\x92\xc2\xbe\xdd\x0b\x7f\xb5\xce\x60\xd7\x80\xb2\x59\x76\xfc\x3f\xc4\x10\xef\x47\xb3\x11\xf7\x9e\xe0\x45\x7e\xae\x1c\xfc\x88\x5d\x03\x04\x86\x85\x15\xf6\x1a\x73\x45\x38\x07\xf5\xb6\xf2\x3e\x48\xdf\x6f\x0f\xad\xaf\x14\xe6\x32\xc8\x73\x7a\x77\x57\x0c\x3a\xaf\x2d\xbd\x8c\x56\x61\x38\xa6\x79\xd4\xbd\x58\xed\x52\x62\xa5\x43\x3f\xcd\x98\x26\x27\x62\xe2\x90\xee\x81\xff\x71\xc3\xe1\x79\x3d\xda\x63\xc9\xd5\x5b\x18\x12\x0f\x35\xa3\x3c\xb3\x04\x0c\xad\x6b\x6a\x2b\x39\x28\x5e\x66\x43\x91\x30\x66\xca\x29\x4a\x29\x4b\x34\x5e\xbc\xa9\x30\xae\x1e\x41\x84\x09\x9b\xb9\x38\x95\xa3\xb1\xac\xd8\x66\x50\x55\x07\xab\x52\xea\xaf\xba\xf8\x80\x54\xc6\xf7\x8a\x4a\x43\xad\x54\x0d\x4d\x3f\x1f\xb9\xf5\x88\x14\xce\x2a\xbd\xa9\x1a\x1a\x35\x9e\x61\x8e\x0f\x3e\x03\x79\xdd\xca\x4d\xcf\x92\x7c\x49\xb3\xe9\xfc\x83\xff\xe5\x0d\x68\xff\x8d\xe0\x9e\x5d\x67\xe7\x68\xbd\x22\xed\x16\x72\x9f\x37\x3c\x38\x7e\x9f\xab\xa5\xfb\x36\x5b\xad\x9c\xb7\xb8\x9f\x33\x1e\x6b\xa8\xea\x85\xb7\x0c\xfd\xbd\xc7\x07\x75\x0a\x2f\xbe\xd5\xde\xd5\x93\x55\x51\x7b\xb5\x9c\xf9\xfb\xf8\x26\xb0\x06\x58\xad\x62\x04\x3e\xd0\x57\x73\xf6\xb9\x47\xab\x1c\x31\x32\xf8\x7b\x44\x2b\xd3\xf1\xac\xcc\xed\xf2\x97\x8f\x7f\xfd\x95\x60\x13\xa3\x48\x7a\x56\x89\xbd\xac\x55\x80\x52\xa2\xec\xf3\x48\xb5\x20\xfd\x95\x7e\x29\x73\x3b\xbd\x9d\xfd\x74\xfd\xde\xbf\x0e\x63\x7f\x36\xf2\x25\x99\xf2\x80\xbe\x0f\x1f\x4f\xdf\x13\x9e\x31\x79\x14\x55\x72\xbb\xe4\x89\x7f\xfa\xb0\x8b\xc0\x74\x40\x2d\x91\x6c\x4e\xa3\xda\x9e\x90\xf5\x03\x4b\x25\x39\x6b\x42\x47\x61\xaf\x28\x48\x5d\xae\xbf\xad\x39\x62\xe6\x5c\xa8\x08\xea\xbd\xbb\x2b\xf3\xe0\x46\xfc\x45\x05\x5d\xdc\xf8\x24\xca\x51\x35\x48\x38\x98\x89\x32\x22\x98\x99\x76\x82\xcb\xeb\xd1\x59\x24\x67\xe7\x92\x94\xc7\x84\x95\x88\x58\x52\xfa\xf9\x03\x9d\xc6\xc9\xac\x2a\xe2\xc8\x99\xf4\xcc\xaf\xa6\xd1\xaa\xbc\xf2\xf3\x00\xfc\xb7\xb3\x56\x94\x63\x6f\xf7\x4c\xa7\x64\xd0\x56\xe2\x9e\x8b\x66\xd1\x30\x20\x4a\x95\xe1\x9e\x4b\x2c\x0e\xf2\x1e\x0e\x40\xc3\xfd\xde\x41\xf8\x6d\xbb\xb3\x77\x3b\xf4\xf0\xe9\xea\x0f\xfb\x98\xc6\x33\x3a\xcb\x67\xb5\x65\x46\x62\xcf\xbb\xa4\x11\x96\x6e\x84\xf8\x59\x7c\x31\xe2\xba\x37\x96\xbd\xbb\x13\x71\x07\xad\x93\x59\x2f\x00\x6d\x6a\xec\x2b\x3a\xd8\x9f\xa8\x32\xeb\x8f\x38\x9e\x31\x6a\xdb\xb1\x30\x07\xdd\x5f\xa3\xf0\x9a\xbb\x8d\xcc\xfd\x74\xbe\x2d\x60\x67\x97\x6d\x74\xb0\x4b\x4f\x44\xb3\x2f\x71\xd2\x79\xe3\xe3\xbe\xae\x57\xf7\x3f\xa0\x38\xdc\xe9\x51\x97\x93\x16\xe6\x20\x6d\x78\x55\x95\x36\xe4\x60\x96\xf4\xbe\x0c\x96\xbd\xaf\x16\x17\x41\xd6\xf2\xd5\xaa\x38\x10\x83\x20\x44\x67\xef\x01\xa1\x4c\xf2\xf1\x99\xa5\x48\x92\x67\xd7\x91\xbf\x08\xa6\x1d\xaf\x06\x9f\x2c\x45\xf1\x8c\x2a\x55\xaf\x81\x43\x4c\xde\x65\xd8\xba\xb9\xfa\xb0\x73\xe3\x17\x73\xb3\x8a\xa0\xb3\x8c\x46\x72\xd8\x31\x63\xe5\xc0\x1a\xf8\x95\xe4\xf2\xd5\xc7\x2c\x59\x4d\xb3\x55\xd2\x91\xba\xab\x8a\x98\x9e\xe8\xd6\xa2\x04\x8a\x79\xf9\x36\xc6\x07\xfa\x99\x5e\xa7\x23\xca\x12\x75\x8d\xda\x0a\x21\x32\x87\x5c\xfc\x38\x8b\xce\x27\xf4\x2c\x3a\x97\xb3\x8d\x7c\xbb\x29\x84\xed\x74\x94\xc9\xb7\xf1\x9a\x26\x5f\x92\x20\x63\x58\xd9\xa0\x82\xfb\x39\x8a\xbf\x44\x45\x1a\xb3\x0e\xb5\xad\x92\x18\xaf\x0e\x69\x39\xe0\x56\x14\x43\xd8\x75\x19\x40\x95\x54\x98\x8e\x3e\x34\xed\x70\xf7\x8a\xde\xcf\x25\xe9\x8f\x3d\x21\x2e\x23\x43\x73\x60\xfe\xfa\x25\xa2\x49\x9d\x62\xea\x05\x78\xe4\x68\x75\x15\xd5\xc8\x6b\xde\x91\x44\x2e\x3f\x6b\x28\x8b\x75\xce\xcf\xd6\xa0\xaa\x5d\x75\x0b\x12\xaa\xa6\xfd\xe3\x46\x16\x52\x04\x5c\x17\x47\x13\x12\xec\xb7\x5b\x8f\xfb\x58\x5e\x8a\xfe\x13\xa9\x86\xb9\xfa\xb9\xb6\x29\xdc\xa9\xf7\xaf\x32\xe4\xd4\x8e\x49\xe5\x5b\xce\xe4\x59\x53\xdd\x32\x14\x87\xac\xd7\x46\xc2\xdf\xbf\x2c\x82\x0e\xc6\x79\x90\xd2\x66\x4f\xf6\xca\x62\xc8\xfe\x1d\x97\xcc\x82\xa6\xa9\x7f\xd5\x4f\x51\xe9\xea\x82\x67\x64\xd8\x42\x73\x9d\xc7\x96\x59\xff\xa4\x33\x0a\xef\xb1\xdf\xf2\xf6\xb8\x75\x52\xdc\x6f\x26\x1f\x9d\x1b\xdf\x96\xe8\xad\x60\xa9\x2c\xfd\x66\x62\xa2\x3f\x2a\x56\x6b\x3b\x1b\xd9\x9d\x90\x02\x90\xcd\x56\x6d\x7f\xc8\xd0\x9b\xc4\x0f\x50\xab\xe9\xf7\x0e\x28\x42\x21\x7f\x0e\x83\xab\x3c\x77\xd0\x83\x3b\x3f\x6f\xf3\xe1\x1e\xe2\x43\x30\xcf\xb2\x25\xe6\xdb\xe8\x75\xab\x08\xd3\x3c\x45\x74\xef\xd8\xeb\x9b\x55\xba\x7d\xb3\x5a\xd0\xcc\x1f\x50\x6c\x58\x56\x83\x5c\x60\xdd\x5a\x08\xa3\x35\x3e\xf2\x60\x8d\x56\xc9\x46\x2c\x07\xcc\x36\x9b\xc1\xb0\x2f\x06\xa1\x73\xaa\x61\x8d\xf1\x6a\x95\xfc\x2d\xad\x7d\x80\xa3\xbb\x2b\x2e\xab\x16\xb9\xc3\x76\x05\x5e\x5a\xca\xf3\x9a\x80\x7a\xdc\xb5\xc1\xdf\xb7\x59\x68\x6c\xd3\x7f\x5a\xbb\xb5\x61\x34\xe7\xf2\x88\xc0\xbc\xd8\x66\xf0\xa1\x52\x35\xad\x01\x30\xbb\x4d\x79\xd8\xd3\x79\x50\x5d\x95\x07\x25\x99\x6e\x89\xa7\xae\xec\x82\xa5\x14\xd1\x77\x32\x93\x47\x9c\xf3\x53\x24\x5e\xba\x77\x9b\xce\x8b\x97\xc6\xeb\xa2\xca\xa0\x83\xa0\x06\x38\xbc\xdb\x5d\xc2\x41\xb3\x56\xc5\x74\x9e\xd7\x7c\xae\x75\xf4\x8f\xc6\xad\x16\x0c\xad\xa3\x27\x1e\x2f\x88\x32\x62\x0f\x04\xad\x3a\xfc\x1c\x8a\x19\x93\x36\xec\xb4\x39\x4e\x83\x8c\xf2\x6c\x1c\x7d\x36\x24\xb1\x5c\x5c\xbd\x9d\x95\x45\x5e\x56\xac\x44\x63\x31\x88\x8a\x05\xb6\x19\x6e\x5a\xe9\x70\xd0\x7f\x5a\xd1\x5a\xf9\xf6\xd6\x6d\x06\x88\xfd\x90\xa6\x53\x3a\x2b\xce\xc4\xfa\x54\x7b\x58\x16\x29\x3f\x16\x62\xfc\x72\x4b\xb1\xaf\x73\x7f\x95\xee\x2c\xf6\x6a\xed\x07\x61\xee\xc8\x5a\xd3\x77\xf1\x96\xa2\x5f\x90\x4c\x5b\x8d\x00\xd0\x11\xb0\xdb\x20\xca\xfa\x8b\x40\x03\x7d\x60\x48\xf2\x2c\x58\xd0\x28\x0d\xe2\xa8\xbf\xc8\x3f\x56\x71\xe6\xf7\xbf\xc6\x9b\xc2\x5b\x8a\xfa\x60\xf3\xd3\x32\x0e\x83\xee\x2b\xdd\x1e\x97\xb5\xee\x1b\x4c\x71\x72\xb2\x0a\x69\xaf\x88\x32\x18\x53\xad\xf4\x16\x7f\xa0\x6a\xf2\x0d\x91\x77\x0f\x19\x6c\xe4\x37\x72\xe1\xb4\x34\x99\x76\x82\x9e\x2d\x7e\xaf\x79\xe1\x5f\xe3\x19\xdd\xe6\x1e\xbb\x45\x87\xa1\xa1\xdf\x2f\xaa\xb6\x81\xf9\x58\xca\x9c\x69\xa5\x46\x17\xd4\x0d\xf8\x76\xd4\xac\x14\xd9\x23\xf4\xa9\x14\xf5\xfe\x65\x8d\xc1\xd3\xe5\xaa\x97\x15\x2f\xe8\x22\x66\x0e\x79\x9d\xaf\x67\x41\xfa\xb9\xf7\x65\x10\x2f\xb7\xec\x18\xcc\xc4\xde\x13\xf8\x56\x18\xe0\x87\xb8\x0d\x0e\x56\x7c\xd1\x1f\xf1\x5f\xdc\x84\x81\xe9\x81\x7a\x56\xfe\x56\x27\xf6\x34\xb8\x8a\xfc\x56\x54\x67\x31\x5f\xf4\x6b\x90\xbd\xe6\xe6\x91\xee\x90\xdd\x7e\x16\x00\xaf\x7e\xf5\xa3\xb8\xc5\xef\x2b\x64\xb6\xd5\xba\xb2\xdf\x0c\xf7\xe6\xc8\xf8\x97\x9d\xf4\x59\xc3\xa1\xa4\x35\xf3\xdb\xd3\x81\xae\xb2\xf8\x03\x5d\xd3\x76\x42\xcf\x8a\x83\x3e\xcf\x97\xd2\x5f\x62\x57\x7a\x18\x72\x85\x11\xf9\xf5\x24\x19\xb2\x5a\x4b\xd8\x71\xdd\xc8\x0e\x37\x3c\x7f\x28\x8f\x7b\xad\xe7\xfe\xe8\xb6\x9b\xf5\xf4\x57\xba\xf5\x76\x64\xff\xe8\x89\x8e\xab\xe7\xf7\xe8\x0e\xa3\x68\x24\xf1\xe8\xb6\x93\x34\xb3\x6c\x74\x96\xea\xc8\xc6\xb1\x2d\x51\xcf\xfb\x24\xbe\x02\xb5\xbe\x1d\x25\xdf\x11\xaa\x3d\x70\x51\xfd\xcb\xaf\xa4\x22\xac\x6e\xbf\x25\xd4\x8c\xd5\xed\x9c\x97\x76\x40\xee\xb6\xe0\xcc\x1d\xa5\xda\x71\xb5\x9d\xc5\x9a\xa1\xb3\x9d\x85\xea\xf1\xb1\x7d\x11\x4c\x4f\x26\x0c\xf6\x1e\x84\xfd\x68\xf4\x86\x01\xd1\xec\x87\x53\x1e\xba\x1c\x64\xef\xee\xce\xce\x37\xf2\xd6\x38\xf7\xfd\x96\xc6\x14\xa3\x2d\x7a\xa5\x06\x3f\xed\x93\x01\xe1\xd5\x0e\x2f\xed\xba\x83\xf6\x56\xff\xec\x86\x6b\xb6\x58\xf1\x4d\xae\x1a\x15\x9b\xbd\xfc\x1e\x5f\x90\xb6\x83\x75\xe1\xf0\xdd\xd5\x65\xd8\xc8\x81\x55\xf3\x76\x97\x2a\xf6\xb5\x46\xea\xcc\xf2\xf8\x72\x53\x9a\x9e\x5f\xbf\xff\xad\xa9\xcf\xe0\x68\xf0\x9a\xbc\xa2\x48\xc5\x56\xfd\xae\x10\xd8\xb7\xd5\x61\xa5\x2a\xd5\xde\x70\x41\x7e\x5b\x25\x28\x53\xa9\xf2\xf3\x72\x4e\x17\x34\xf1\xc3\xbc\x6e\xff\xfe\xb7\xc5\xaf\x9a\xe1\xa8\xc7\xbd\x98\x34\xf2\x9e\x0c\xc8\x26\x3a\xac\xa5\xdd\x99\x46\xf3\x89\x60\x5c\xed\xaf\xc9\xc7\x6d\xb1\x36\x65\x30\xc5\x6d\x95\x0b\x36\x38\xfe\x66\x47\x42\xef\xce\x20\x9f\xef\xda\x05\x9a\x91\x3c\x95\xc0\xa9\x2e\xdc\x76\x44\x30\x75\xc7\x03\x34\x09\xb7\x2b\x5a\x49\xda\x82\xab\xc1\x01\xf8\x95\x3c\xa6\xff\xb2\x82\xc4\x4e\x33\xcc\x56\xa6\x59\x68\x71\x7d\x6f\x93\x8c\xce\x5e\xb5\xd8\x2a\xd7\xb7\x2e\x83\x28\x48\xe7\xdb\x0a\xb0\xe4\x68\xbd\xb2\x7c\x90\xbe\xc2\x5b\x6e\x9a\x5b\x6d\x14\xc3\x74\x96\xcd\x6f\x4b\x78\x88\xf1\x12\x79\x43\xa2\x5c\x39\x9f\xa9\xf8\x9d\xb3\x0d\x60\x4b\x48\x4b\x49\x84\x9c\x8b\xef\x60\x01\xfd\x35\x87\x2f\xf9\xad\xa7\xee\xd0\x56\x71\xe4\xce\x8b\xf6\x1c\x4b\x54\x8b\xd6\xc6\x8f\x39\x82\x67\xdb\x62\x73\x46\x9d\x23\xaa\xd6\x6b\x65\x54\x2c\xc7\x51\xe4\x29\x2e\xe0\xe4\x3b\x4a\x79\xe4\xe9\xf7\x9d\x66\x96\x67\x5f\xdd\x1b\x72\x71\xf6\x85\x14\xda\xef\xd2\xdb\x75\x00\xb3\x87\x47\x6f\x4e\x62\xbb\x32\x59\x57\x5c\x7d\x69\xc3\xd3\xb7\x95\x21\xb7\x2f\xee\xa9\x96\x0c\x97\x13\xc1\x5e\x22\xe4\xbf\xd4\x99\x0f\x27\xfe\xbe\xd7\x6d\x31\x63\xab\xab\x27\x17\x5f\xb6\x96\x79\xb3\xcd\x86\xd8\x2b\x6c\x74\x95\x1e\x7c\x6c\x80\x17\x31\x3c\xdd\xdc\x2f\x29\x9d\x26\xb4\xff\xf6\x95\xad\x3b\xcb\x55\x18\x5f\xb4\xcd\x15\x25\xeb\xdf\x79\x7b\xc2\xf6\x4c\x18\x71\x18\x4c\x03\xda\x3a\x9c\xe7\x27\x5a\xbc\xc0\x35\x3b\x3b\x6e\x3a\x42\xf9\x98\xdb\x33\xee\xe3\xbc\x41\xd3\x6c\xdf\xb9\x2e\x79\xcc\x48\xa7\x5f\x67\xf1\xee\xa1\x2e\xa3\x2a\xa6\x6a\xd7\x2d\x43\x78\x61\x51\xd2\x73\xa3\xd6\x34\x8e\x2e\x83\xab\x17\x34\x5a\x07\x49\x1c\x75\xb0\x87\x43\xdf\x9e\x85\x77\xca\x25\x05\x79\x15\x82\x4b\x49\x79\xf9\xa3\x4f\xd7\x4b\x2a\x27\x71\x9c\xfd\xf6\xe1\xa4\xf2\x9a\x3f\xd9\x48\xcf\x22\x50\xb3\x46\xcd\x80\x92\xa4\x72\x69\x9d\xdc\xf3\x32\x59\x61\xe0\x72\xbd\xb8\x28\xdf\x2e\xfd\x6c\x3e\x16\x5f\x8c\x7f\x8f\x2f\xfe\x8e\x9b\xdc\xa6\xaf\x85\x5a\xba\x81\xbc\x1a\xab\x52\x6f\x78\x56\xc4\x57\x34\x7a\xac\x84\x2f\xd7\xcb\x57\xc3\x90\xab\x6f\xea\x71\xc7\xd5\x37\x35\xad\x0f\x83\x4c\xab\x6f\x59\x52\xf8\x7e\x64\xb0\xf7\xd5\x61\xc4\x33\xfa\xf7\x80\x39\x6c\xd6\x5a\x42\xf6\x98\xf4\xb7\xc4\xde\x57\x5a\xc2\x9b\xad\x3a\x9b\xaa\x79\xd0\xf4\x34\x57\xbb\x4d\xa3\x68\xb2\x78\x88\xed\x6e\x9b\x9f\xd6\xcc\xf4\x15\x0e\xe3\x2b\x8e\xb8\xd6\x80\xf1\xe2\xc9\x7e\x10\x91\xb9\x33\xb5\x48\x9c\xd1\x35\x0d\xe3\x25\xae\xa1\xc9\xa4\xca\x4a\xcb\xc5\xc5\x03\xa4\x78\xed\xcb\x84\xd2\x34\xbb\x46\x3f\xab\xea\xf3\x28\xce\x94\xcb\x78\x15\xcd\xca\x11\xfc\x5f\xe6\x29\xc2\xb7\xd9\x5d\x5b\x0f\xb6\x53\xbd\x65\xa9\xff\xc6\xa5\x7e\xfb\xd0\x17\x9e\x07\x69\xc7\x45\x7d\x5b\x2f\x2d\x6d\xbd\x45\x77\x08\x9a\xbe\xc0\x7b\xaf\x15\xcc\x11\xd2\xd1\xc6\x45\x42\xfd\xd9\x34\x59\x2d\x2e\x14\x7c\xd0\x9b\x69\xb1\x48\xaa\x15\xff\x99\x54\xeb\x91\x25\xd5\x4a\xaa\x0c\x3f\xe7\xf7\xc5\x1e\x2c\xdf\xf6\x5c\x58\x88\x5b\x4e\x06\x5a\x13\x46\x06\x72\x3a\xe3\xda\x06\xfe\x22\x4b\x9a\x5c\xc6\xc9\x62\x94\x49\xd2\x46\x2e\x49\x25\xed\x88\x8b\x44\x2b\xd3\x3f\x96\x3f\xad\x82\x70\x06\xaa\xf0\x6d\xf5\xfa\xd3\x31\x2d\xed\x0f\x5b\xc2\x0a\x8b\xa0\x92\xb3\xdb\xd0\xbf\xa0\xe1\x58\xfc\x0b\xee\x2d\x7e\x72\x95\x8e\xcf\x70\xa3\x21\x01\x0b\x39\xcf\xce\x37\xe7\x79\x84\x40\x3c\x42\x4f\xd6\xdf\xe3\x8b\xd7\x08\x9d\x34\x2a\xbb\x13\x25\x49\x92\xf3\xe6\x68\xe3\xb2\x17\xb4\xd0\x49\xb5\xe6\x73\x0b\x49\xbe\xe3\x54\x00\xcf\xe3\x39\x25\xb9\xa7\x9d\xec\x7c\x23\xd7\x7b\x4a\x73\xc7\x84\xbc\x8f\xaa\xd1\xb1\xca\x27\xe8\xf9\xe6\x5c\xda\xc8\xf7\xbf\x0d\xb8\x15\x06\x5b\x4f\x8d\xc0\xc2\x68\xeb\x85\xca\x32\xc0\xf0\xca\xfb\x84\x7d\x52\x73\xfd\x84\xa9\x47\x6a\x60\xf2\x39\x7e\x65\x41\xa9\x8d\xbc\xb3\x72\xcf\xb5\x9c\xe5\x59\x02\xe3\x73\x03\xfc\xf0\xb6\x72\xd5\x17\x9c\x04\xfe\x98\xab\x6d\x6b\x8b\x6a\xcb\x35\xdb\xb0\x98\x82\xcb\x51\xc6\xd6\x43\x34\xe9\x40\x33\x0f\x0b\xe6\x17\x51\xc1\x4a\x23\x9d\xb7\x5d\x49\x9b\x67\x3d\x6f\xd8\x0c\x46\x72\x54\x84\x2c\xef\xa4\x8c\x6d\x17\x72\x17\x0c\x00\x27\xe6\x57\xfa\x35\xab\xdd\x75\xba\xfb\x42\xd9\xed\xf3\xd4\xd4\xa2\xff\xc0\x69\xca\xe2\x84\xf6\x5d\xc9\xd7\xc7\xc7\xf2\x69\x7a\xd9\x60\x17\x51\x8d\x4b\x74\xaf\x60\xc2\xc6\x4a\x9b\xc6\x1d\x60\x16\xe7\x9b\xf3\xf1\xd9\x79\x6b\x71\x57\x22\xca\xa1\x87\x3c\x2a\x1f\x4b\x35\xae\xf6\xa9\xf1\x0a\xe9\x59\x70\x39\x8a\xa4\xdb\xdc\x0e\xc0\x18\x0d\xde\x2f\x25\xb6\x0c\x47\x58\xf8\xb9\xcf\x4a\xa7\xb8\x01\x33\xac\xf0\x5d\xeb\x93\x9f\x7e\x16\xca\x50\x2b\x59\x14\xa2\x38\x13\x50\x22\x12\x2e\xe3\x44\x28\xfb\x15\xca\x4b\x2f\xa3\xca\x55\xd6\xd2\xb3\x94\x4c\xe3\x19\x9d\x88\xa6\x6a\x8a\xcd\x9b\x62\xd9\x38\x96\xcb\x30\x28\xaf\x3b\x82\xaa\x5c\x64\x49\x0b\x32\xf6\x87\xdc\x79\xbd\x9b\xda\x5e\xa0\x7c\xf9\x4f\x21\xb9\x16\xeb\xae\xd8\x30\xb7\xad\xcf\x9a\xf9\xb2\xcb\x34\xb8\x9d\x6f\x0f\xc7\x5a\x65\x16\x7a\x2d\x5b\x2c\xf1\x42\xfa\x02\xe7\xa7\x29\x0b\x3e\x88\x7e\x5a\xba\xab\xa1\x7a\xdc\x7b\x8d\xe6\xd6\x6b\x71\xb7\x2e\x77\x94\x7f\xdf\xa3\xf8\x3b\xce\x93\x89\xde\x26\xf4\x32\xa1\xe9\xfc\x1d\x4e\xda\x73\x75\x33\x88\x4b\x56\x49\x37\x5a\x85\x21\xc8\x44\xf4\x32\x4e\xe8\xbb\x9e\x95\x0d\x53\x5d\x8f\x71\xc4\x04\x18\x20\x6b\x9e\x65\xcd\x2b\x5f\x19\x68\x85\xc2\x59\x7d\xc5\x91\xf8\x01\x4b\x88\xd2\x79\x93\x22\x22\xdc\x7a\x9e\x67\xb5\x4a\xe9\x3c\x5e\x85\xb3\x8f\xf3\xf8\xcb\x87\xbc\xe5\x22\xa9\x0e\xd7\x6e\x28\xa9\x20\x87\x03\x20\xa7\x93\xac\xbf\x73\x5e\x48\x94\xe4\xb0\x51\x8c\x5d\xa0\x9f\x83\x78\x77\x97\x0f\x7c\xe4\x1f\x1d\xf9\xcf\x27\x93\xf0\xee\xee\xb9\x7f\x74\x14\x3e\x9f\x4c\x52\xe9\xe8\x68\x94\x91\x62\xdc\x80\x57\xcc\xcc\x81\x49\x2f\x56\x51\x18\xfb\x33\xdc\x81\x78\xba\x8e\xee\x3e\x64\xff\xee\x2e\x95\xe4\x68\xd3\x96\x9b\xaa\xe2\x0f\x03\x78\xcb\xd5\xdc\xd5\xa4\x57\x59\x7e\x5d\xd5\x6e\x04\x1c\x1d\xb1\x19\x4d\x56\x11\xde\x77\x57\x5d\x9f\x9c\x54\x78\x51\x4e\x2b\x83\xae\xf4\x2e\xae\xd2\x9e\x05\xb3\xae\x9b\xb4\xb9\x4e\x8c\xe0\xb1\x15\x43\x82\xf4\x13\x4d\x33\x40\x39\xcf\x55\x91\x4e\x61\x88\x9f\xe2\x91\x2a\xab\x20\xbb\xf5\x5c\xca\xcd\x9b\x1a\xcc\xac\x39\xc5\xe3\xaf\x1a\xaa\x4b\xa5\x26\xbe\x14\x32\xf2\xea\x22\x4e\x32\xdc\x5e\xf2\x5b\xbb\x87\xf6\x40\xa5\x21\x57\x79\x73\x7e\x56\xd8\x5a\x76\x5e\x5f\x7f\x19\x27\x17\x78\x07\x7a\x7e\x38\xd9\xa3\x47\x17\xe5\x1e\xd0\x6c\xdf\xc1\xf9\xb2\xaa\xa2\xb6\x85\x8f\x6d\x67\x81\x55\xa1\xa6\xd0\x9e\x5e\xe7\x38\xe2\xb2\x0b\xc7\x19\xd7\xa1\xce\x37\xe7\xdd\xfc\x6b\xd7\xb5\xd4\xe2\x16\x4d\xa5\xc2\xe6\xe6\x7e\x3a\x67\xc1\xb7\xe9\xb8\x92\xd4\x06\x24\x14\x58\xdd\xf9\x6d\xc6\x68\xb9\xea\x2e\xc1\xae\x6b\xaf\x29\x27\x51\x4b\x39\xd9\x7d\x3c\x50\xa7\x98\x17\xb9\x15\x6e\x8b\x6d\x66\xbb\x65\x65\x6f\xcb\xcd\x43\x9e\x23\x74\x50\x94\x3f\x90\xa2\xee\xaf\x6d\x16\xd3\x91\xb5\x75\xc5\x7d\xc5\xeb\x96\x8e\x9c\x53\x69\x3e\x4f\xb4\x14\x37\x73\x51\xda\xbf\xcc\x68\xd2\xde\x75\x5b\xa2\x54\x11\xa4\x28\x4a\x2f\x61\x2b\xc0\x8c\x4f\x3b\x95\xe5\x86\x91\x77\xdc\x25\x9a\xc1\x1b\x79\x87\x61\x65\x54\xb5\xac\xbc\x63\xc7\x4f\xdd\xc6\x15\xb9\x5a\xb2\x7a\x77\x71\xa5\x7c\xd5\xa9\xb5\x52\xb5\xaa\x9d\x47\x0d\xed\x9c\xaf\xb0\x66\xf5\x5a\xd1\xf2\xbc\xab\x95\xc2\x73\xa0\x3e\x2f\xb7\xc1\x1e\x72\xa2\x53\x5f\x94\x2d\x9d\xfe\xf0\xab\xee\x41\xb9\xf8\x00\x73\x5b\x21\x17\x6c\xb3\xb4\x75\x59\x5b\x5e\x85\x61\x63\x32\xf7\x35\xb2\x6c\x63\x8b\xa5\x69\xfc\x9f\xa2\x37\xa1\xfa\xf1\x4b\x0e\x43\xef\xf6\xd6\xbd\x4f\x55\xb3\x4a\xd6\xda\x29\xb4\x2a\x42\xa3\x74\x95\xd0\xe3\xf0\xf7\xb4\xb5\xf0\xbb\x36\x2d\x94\xcd\xab\xb5\x4e\xfc\xe8\x6a\xe5\x5f\xd1\x91\x38\xf7\xa3\x59\x48\x2f\x7c\xbc\x1c\xba\xa7\x48\xb6\x08\x59\x81\x73\x69\x1f\xe5\xec\x9f\x68\xd1\x4a\xe8\x2c\x48\xe8\x34\x6b\x09\x86\x59\x21\x33\x7e\x8a\xf9\x21\xdf\x1e\x23\x62\x87\x82\xff\x4a\xb2\xd9\xfd\x35\xd0\x4e\xd9\xac\xcf\xb2\x0d\x52\x59\x4d\x65\xad\xd9\xd1\x3b\x14\xd7\xe1\x2a\x68\x4b\x9c\x2b\x4c\xf1\x69\xcb\xc8\x50\x18\x98\xea\x3a\x62\x51\xa3\x68\xb3\x43\x41\xfb\xb5\x92\x8f\xb0\x62\xdd\xef\xd6\xd5\xba\xd2\x5b\x16\x02\x20\x3b\x2b\x66\xfb\x36\xce\xdd\x36\x41\xb0\x54\x9e\x38\x92\x70\x2a\x5b\x74\xcd\x5f\x8e\x9a\xca\xc6\x36\x1e\x09\xf3\xf3\x6f\xb5\x45\xe1\x24\xfd\x0f\x1b\xc3\x5e\xbb\x14\xbb\xab\xe8\xe0\x9b\x14\x4e\x40\xeb\x92\xa1\xbd\xa4\xf6\x9d\x27\x9d\x0f\x8a\xfc\xed\x92\x38\x1e\x6e\x0f\x61\x1f\x51\x79\xca\x25\xa7\x34\x09\xfc\x30\xb8\xa1\x1d\x32\xf0\x6d\xee\x57\x91\x4b\xd9\xc5\xe1\xd5\xa6\x6d\x2d\x91\x2b\xd6\xe4\xce\xc5\xce\x15\xf9\xb6\xb9\xa7\x58\xe9\x04\x93\xc7\xa4\x13\x4a\xf2\x8e\xe5\x70\xd2\xcc\x33\x9a\xd6\xd8\xc1\xb9\xf4\xac\x7b\xe5\xe7\x19\x4f\x71\xba\xc3\xfa\xf2\xef\x93\xdc\xdb\x3b\x78\x5b\x5e\xcf\x15\x89\x9a\x77\x47\xcb\x96\xd6\x77\x2a\xd6\xd6\x74\xf6\x26\xde\x17\x35\x57\x8c\x7f\x05\x3e\xb2\xcd\xe8\x5d\x1e\x64\xe4\x07\xab\xe2\x56\x63\x77\x7b\x0f\xaa\x4d\xc5\x2e\x65\xeb\xfe\x1a\xd4\xa6\x53\x41\xca\x0e\xa6\x20\xf5\x2b\x46\x7e\x57\x32\xc3\x26\xd1\x54\xdc\x9a\x1e\xdd\xc1\x46\xe7\x1c\x63\x9a\xc9\x42\xfe\xee\x48\xfc\xdd\x9c\xe7\xac\xca\xb5\xc6\x54\x2e\x47\x3c\xce\x36\x9b\x9d\x27\x98\xd5\x53\x57\xe4\x3f\xcf\x22\x02\x05\x2f\xfc\xe9\xe7\x57\x45\xa0\xc0\x48\x92\x23\xc2\x53\x23\x8f\x0a\x85\x3b\x48\x7f\x9e\x05\x19\x7a\x2c\x3f\xd7\x9a\x12\xc1\x2e\xf9\x96\x4f\x4f\xe9\x45\xf6\xef\xbe\xa6\x7b\xb8\x70\xe3\xbe\x0f\xf6\xb0\x74\xca\xdb\xce\x82\xf7\x32\xb2\xbc\xa9\x4e\x46\xb9\xf0\x2b\x8f\x7b\xad\x2e\xa7\x39\x3c\x95\x7a\xf9\xb3\x2e\x7b\xcb\x9b\xfa\xfd\x26\xdd\xec\xa2\x3e\xf2\x5a\x9b\xfd\x95\x2a\xee\x8a\xc3\x18\x4c\x6d\xd4\x8d\xd1\xec\x2f\x62\xbd\xa8\xee\x8f\xff\xee\x14\xdd\x25\x32\x1c\x6a\x97\xfa\xb9\x8a\xe7\x92\xe8\x2a\x8f\x3b\x76\xa9\x9f\xeb\xb7\xe5\x74\x53\x50\xdd\x7f\x75\x18\x11\x55\xa1\xb9\x07\xd1\xfc\x1b\x28\x47\x9d\xee\x72\xa9\x98\xd3\x57\xa7\x65\xb7\x08\xe1\x2b\xdf\x7e\x2c\x2e\x96\xe2\x85\x6a\x61\x80\xa2\x54\x8f\x5c\xdd\x25\xbd\xd4\xae\x4f\xda\x45\x44\xed\x8b\x4a\x8a\xce\x5b\x77\x9f\x88\x12\xf7\xa0\xc5\xf6\x4e\x9a\x97\x8c\x54\x1b\x0d\xd2\xa2\xa1\xca\x65\x8d\xf5\x06\x5e\x85\x61\xa9\x3d\x6e\xb6\xb9\x94\x55\x34\xc8\x57\x61\xb8\x4d\xc1\xfc\x58\xde\x2b\xd7\xd1\x48\xe5\x66\xb9\x6f\x92\xef\xee\xbb\xe2\x9a\x28\xeb\xaf\xdc\xba\xd4\xe5\x1e\xa6\xf7\xfc\xeb\xc7\x3c\x95\x43\x87\x24\xdc\xc1\x76\xc4\x4e\x50\xef\xc3\x00\xfa\xa2\xee\x0f\xee\xf5\x3c\xcc\xaf\xb9\x66\x0b\x78\xd8\x78\xfb\xed\xdc\xe4\xdb\xbc\xcd\x76\xf8\xa4\x96\xe2\x14\xaf\x86\xee\x9b\xdf\xec\x85\x7b\x5f\x8f\xb5\xba\x12\x10\x71\x25\xa0\xf0\x17\xab\x1c\xc6\x45\xc5\x61\xdc\xb8\xe3\x66\x18\xa9\xbd\xc7\xb2\x2d\x3b\x6a\x38\xde\xf6\x7a\xbc\xd1\xc2\xa2\xd1\xe9\xf1\x86\x88\xac\xfb\xbd\x5d\xc6\x89\xf0\x7b\x7c\xd1\x76\x73\xe3\x98\xad\x78\xc6\x89\x92\xf4\x8c\xf9\x80\xfb\x55\xdf\x37\x3f\x77\x66\x8b\xf2\x10\xa9\xa6\x7a\xdb\x73\x00\xd9\x67\x72\x48\xdb\x26\xce\x6d\x7b\x53\x55\x0f\xca\x2a\x24\xf2\xac\xbd\x63\x81\x9e\x55\xf2\xe6\xbf\xc4\x17\x05\x6f\x8e\x86\x6c\x59\xd1\x37\x6c\x59\x11\x1e\x8c\xc8\x79\xc7\x3b\x76\x80\x3f\x86\xc5\xef\x64\xb4\x7f\x89\x2f\x06\x30\xd8\x01\xe9\xe7\x9a\x5c\xb3\x90\xf5\xff\x25\x24\xa7\x6f\x17\xb4\x4b\xdd\xe7\x50\x52\x76\xfd\x9c\xb5\x4b\xa3\xdb\x3c\x98\x62\x76\x5f\x2d\x2c\x59\xfd\x93\x6c\x3d\x87\x76\x40\xfa\x00\x03\xa9\x6e\x65\x30\xb2\xf3\xcd\xf9\x90\x43\x20\x16\xb2\x5a\x33\x06\xdf\x96\x57\x80\xee\x32\x48\x63\x90\xd9\x10\xa7\x4e\x84\x84\xcc\x68\x48\x8b\xce\xf6\x38\xe6\xac\xc4\x8f\x3d\x22\xdb\x5c\x6b\xd3\x7b\xef\x5f\xd1\xea\xfe\xf5\x8c\xde\xdf\x69\xbb\x19\x47\xbf\x0d\x3d\x45\x18\xe3\xbf\xd2\x41\xf0\x81\xd7\xc8\xc7\x1c\x47\x7c\x9d\x70\x9c\xfd\x9b\x3a\xe9\xf1\xd1\xbf\xc8\x03\x5c\x77\x12\x0e\xcb\xbd\x80\xb4\xa9\xa0\x87\x46\x10\x5d\xfd\x91\x8e\xeb\xe5\xb9\xd0\x2e\xc7\xd5\xe2\xbc\x2e\x49\x5f\x30\xa4\x75\x8f\xae\x56\xae\xea\xb5\x3f\xdc\x55\xff\x61\xb3\x44\xfb\x59\x96\xa4\xe3\xdb\xca\x35\x19\xe2\x6c\x2a\x16\xf7\x17\x88\x2c\xf9\x7f\x4a\x93\xcb\xf7\x71\x92\x8d\x45\xf8\x14\x37\x72\x14\x27\x8b\xe6\x79\x25\x97\x5b\x9f\x67\x55\x79\x3d\x22\xaf\xd8\xe8\x18\xf7\x3a\xbb\xcd\xb3\xb9\x03\xb7\xda\x9c\x97\xc2\x37\xcf\x2f\x3a\x11\x3f\xd0\x7f\xac\x68\x9a\xd1\x99\xf0\x0a\x10\x2b\x7c\xf1\xd3\x4a\x20\x4b\x10\x09\x29\xcd\x84\xf8\x52\xf0\xf3\xec\xe3\xac\x5c\x5a\x11\xda\x33\xf2\xf6\xcd\x24\xc3\x3b\x1c\xe5\x8c\xbc\x29\xc6\x36\xc9\xc8\x27\xff\x2a\x3d\x3a\x62\x7f\xc9\x6c\x2a\x67\x84\xf9\x82\x37\x5f\x71\x07\xfa\x8c\x7c\x58\xe2\x95\x67\xcd\xf7\x30\xd3\x55\x27\x70\x1c\x7e\x05\x2f\x1f\x68\xba\x8c\xa3\xb4\x8e\x1f\x98\xca\x3c\x8a\xd6\x9f\x14\x3e\x98\x3c\x66\x56\x4e\x2b\x41\xb5\xfe\x8f\xc6\x4b\x5f\x31\xc6\xaa\x24\x87\x13\xe3\xfb\xf0\x07\xff\xfb\xf0\xbb\xef\xa4\xf4\x2c\x54\x8c\xf3\xb2\xea\x59\x78\xfe\x6c\xbb\xa7\xe7\x19\xf6\x4b\xde\x21\xbd\xa5\x77\x77\x67\xe7\x45\xac\x25\x6a\x21\x05\xc4\x1f\x83\xe8\x2a\xec\x83\x5b\xf6\x4b\xc8\xd3\x36\xe4\x61\x05\xf2\xf4\x47\xf3\x65\xaa\x98\x00\x79\x3c\x31\xbf\x8f\x7f\x48\xbf\x8f\xbf\xfb\x4e\x0a\xcf\x62\xc5\xac\x42\x1e\x0f\x84\x3c\xd7\x09\x59\x0a\x36\x5f\x92\xfd\x62\x00\xe1\x20\x6e\x54\x5b\x83\xbb\xe2\xb9\xfb\x16\xec\x83\xe7\xa3\x28\xe5\xb6\xad\xdb\x0e\x5f\xaf\xb5\x70\xd5\x31\x2a\xc2\x3c\xdb\x1d\x8b\x1e\x63\x8f\x3e\xb2\x48\xb2\xfe\xe5\x9a\xc3\x50\x16\xbe\xbb\xbb\xdd\x94\xfe\x40\xe5\xf3\xda\x25\x73\x91\x54\xcf\x21\x51\x6a\xe8\x67\xf4\x1c\x5a\x90\xd3\xc9\x2d\x42\x46\x8b\xc6\xaa\xf5\x7d\xbc\xec\xf7\x67\x7f\x3a\xef\x3a\xff\x4f\xcf\xe8\xf9\xc4\x3f\xa3\xe7\x1b\x49\x4e\xc9\x87\x3c\xf5\x11\x07\xb3\xf8\xcd\x96\x62\xe5\xc1\x19\x3d\x97\xd3\x8d\x24\x67\xe4\x2f\xf1\x05\x17\xd7\x27\xd1\x2a\x0c\x9f\x4f\xaa\x8f\x5e\x56\x7f\x8c\x2b\xf7\xd6\xc9\x22\x28\xcf\xfc\x85\x08\xed\xbc\x0f\xfd\x20\xfa\x4b\x7c\xf1\x76\xc6\x5a\x78\xfb\x46\xce\xca\x2b\x63\x27\x59\xf5\xfa\xd8\x56\x43\x15\xf1\x75\xa0\xcf\x45\xf5\x0e\x5a\xde\x5f\xcb\xef\xa2\x03\x8e\x73\x00\xf5\x1d\xde\xf5\xf3\x29\x4f\xe3\x3c\xa9\x3e\xf9\x4f\x8d\xda\xb5\x22\x93\x77\x7e\x36\x27\x97\x61\x1c\x27\xa3\xea\xf3\x17\x1a\xb5\xa1\xb1\xd7\x45\x86\x99\xbc\xb1\xf2\x09\x6f\xac\x7c\x50\x6f\xac\x7c\x9e\x37\xf6\xa1\xb8\x00\xe0\x67\xcc\x5c\x35\x19\x55\x9f\x7d\x4a\xfc\xe9\x67\x9a\x00\xd1\x48\x84\x15\x00\xc4\xb7\x53\xc9\x03\x43\x6f\x3f\x7e\xd9\xf5\x70\x0c\x93\x0e\x18\xa2\x5f\xb3\x46\x0b\xf5\x47\x2f\x9b\x0f\xf2\x9a\xbf\xc4\x61\x18\x7f\xf9\x6d\x59\xda\x57\xb1\x36\x7b\xbc\xc2\xc7\x6f\xdf\xbc\x6c\x3e\xc8\x6b\xbf\xcf\xc3\x7d\xab\x9d\xa7\x93\xce\x17\xc8\x91\xab\x75\xaa\x21\xc2\xf9\xa0\xdb\x6f\xee\xee\x78\x5f\xff\xe3\xa7\x45\x81\xc9\xf3\xe7\xbd\x0d\xb5\xf7\xaa\xdd\xd1\x39\xbd\xc2\x4b\x3b\xe4\x70\x1a\x2f\xaf\xeb\x42\x4d\xb5\xf2\xef\x69\x45\xe4\x09\xa2\x4b\x50\xab\xbb\xdc\xba\x12\xba\x88\xd7\x54\x49\x50\x75\xeb\xb1\xf4\x16\xb9\x2b\xc2\x3f\x73\x57\x3c\xb2\xdc\x15\x71\x47\x26\x33\x9e\x2f\xee\xbf\xe9\xf5\x58\x7c\xfb\x46\x94\x3f\xd3\xeb\x5f\xe2\xa4\x70\xe5\xe8\x8e\xf3\x9b\xfa\x0b\x0a\xa4\x33\x02\x3d\x64\x19\x64\x3e\xfb\xb1\xe1\xb5\xab\xa6\x9c\xce\x0d\x4d\x2c\xac\xc1\x68\x43\x4f\x83\xe8\x6a\x15\xfa\x49\x70\x43\xa5\x11\x95\xfa\x9a\x97\x01\xc0\xdc\x8e\x25\x72\xb3\x2f\xe6\xa4\x79\x89\xcd\x2c\xc3\x55\x82\x45\xa5\x51\x24\x8d\xa3\x8d\xbc\x5c\xa5\xf3\xf6\xe5\xe2\x95\x7d\x15\x23\x6d\x26\x28\x5c\x8f\xcf\xce\xe5\x20\x9a\x86\xab\x19\x9d\x8d\xcf\xce\x37\xcf\xaa\xfb\x61\xd6\xb1\x1f\xa6\xac\x15\xc0\x29\xaa\x45\xc0\xee\x7f\x49\xe2\x05\xef\xf0\xbf\xe9\xf5\x28\x95\xe4\x64\x42\x49\xb9\xd2\x40\xdb\x8f\x25\x39\x98\xd0\xd2\x44\x17\x4b\xcf\xd8\xd6\xb4\xf0\x3f\x53\x46\xf4\xd9\x59\x7a\xde\xbd\x03\xe3\x12\x91\xa3\x49\x42\x0a\x89\x61\x14\xc8\x54\x4e\x41\x96\x8b\x08\x0c\x44\x5e\x4d\x22\x92\x8f\xe4\xfb\x91\x8f\x0f\x09\xa0\x02\xba\x5e\x61\x38\xe8\xc4\x2f\x4a\x48\xf8\x2a\x17\xeb\xe4\x70\xb4\x92\x58\xc2\x20\xca\xea\xf8\x55\x11\xf4\x17\xa6\x87\x76\xca\xa0\x55\xa4\x0e\x0a\xc2\x66\x96\x90\x55\x18\x7e\x04\x1d\x17\x9a\x28\x11\x29\xb3\xb1\x48\x72\xb4\x91\x8b\x22\x35\x2f\x4a\x99\xc7\xd9\x87\x2d\x61\xf7\x47\xe3\xe8\x88\x11\xfd\xf3\x49\x45\x9c\x35\xce\x5f\x56\x7f\xb4\x35\xf5\xe7\xea\x46\x8e\x27\x68\x90\x04\x6e\x29\xa1\x14\x84\x99\x86\xfb\x9d\x20\xf9\x35\xaa\x45\x5e\xb5\x25\xa5\x9f\x41\x51\x8f\xf6\xac\x9a\x97\x0e\x3b\xa6\xbd\xc0\x6c\x8c\xa2\xf6\xa0\x16\x27\x93\x49\x4d\xde\xe1\x00\x46\x2f\x63\xc2\x78\x38\xe7\x81\x91\xd4\xc8\x58\x8c\x3b\x4f\x6e\xcd\x68\x93\x74\x07\x3b\xe8\x58\xc1\x64\xe6\xa7\x73\x9a\xe0\xa2\x6d\xec\x63\x9d\x39\x6d\xab\x5b\x51\xe9\xc5\xf3\x68\x15\x00\x2e\xe2\x73\x0b\xf5\xaf\x98\x39\x11\x63\x0c\x72\xd1\x74\xab\xfa\xdd\x90\xea\xd9\xd1\x1a\x4a\xf5\x95\x07\x45\xba\xe0\x21\x62\x7d\x86\x62\x7d\x3d\xf6\xdd\x4f\xd3\xe0\x2a\x1a\xe5\x42\x3e\xce\xea\xe3\x10\x98\xf1\xef\x2f\x71\xc2\xce\xc1\x87\x4a\xd0\x1d\x29\x58\xb8\x46\x4f\xbf\x66\x89\x3f\xcd\xaa\x7b\x4e\xf3\x94\xa2\xc2\x98\x98\x3d\x8d\x1b\x74\x80\xfd\xd2\x92\xe9\x48\xe5\x19\x24\x1f\xa6\xec\xf3\x78\x27\xd6\xc7\xdb\x19\xb6\xd7\x8d\xe9\xea\xa9\xdc\x6d\x18\x44\x9f\x31\x36\x22\xc4\xcb\xdc\xc4\x17\xc5\x86\x17\xc9\x62\x85\xc6\x6b\xf9\x35\xca\xd3\x50\x5f\xda\x6c\x36\x2d\x89\x70\x5f\x91\xb0\x71\x71\xe6\x63\x5d\x4e\x7d\x6b\x85\xef\xf3\xaa\xaa\x6a\x0a\xfe\xff\x49\x55\xc7\xf8\xff\xff\xb2\x44\x74\xbf\xc4\xc9\x94\xbe\xa1\xfe\x2c\x0c\x22\x8a\x59\x0e\x6a\x4f\x50\xb5\x94\xbe\x55\xae\x2e\x9d\x4d\x1e\x2d\x02\xb7\x1b\x24\x76\x99\x16\x7e\xa9\x65\x75\xaf\x9b\x17\xea\xef\x86\xf3\xa2\x6a\x2b\x8f\x9d\x1f\x0d\x54\xe0\xbf\x8d\x8a\xca\xdc\xeb\x8f\x94\x86\xf6\x1b\xce\xef\xf1\x85\xb2\x0c\xfd\xc7\xbb\x24\xfe\x38\xa2\xdf\x4a\xe5\xf9\x5a\xe0\xc4\xce\x34\x7f\x6e\x6d\x18\xd5\xe8\xf9\x55\x14\xc5\x19\xf7\xde\xa8\x5b\x21\x8a\x34\xe5\xfc\xf2\x0d\xd0\x81\x06\x64\x37\xd9\x7f\x42\x3b\x2f\x26\x7a\x02\x73\xda\xc3\x45\x86\x2d\xed\x5a\x8c\x54\x45\x46\x79\xfb\xa6\x80\x83\x3b\xa1\x1c\x40\x44\x43\xcb\xab\xbf\xd5\xf2\xda\xa5\x69\x96\x54\xe6\x9f\x95\x9a\x33\x95\xc5\x9c\x3e\xce\x27\x19\xb3\xc6\xfa\x45\x2e\xd5\x1a\x71\x95\x5e\xa2\x79\x97\xfe\xd1\xd1\x70\x7b\x6f\x56\xef\xb5\x6c\xad\xb0\x02\x7f\x23\x77\x04\xea\xe3\xd2\xf4\xa3\xa5\x3e\x2e\xf4\x47\x5c\xda\xef\x10\xf5\x41\x39\x3e\x66\x46\x89\xde\x43\x1a\x39\xcd\xb5\xd6\x88\x14\xee\x31\x75\x82\xa9\x64\x48\xaa\x33\x95\x8d\x4c\xe5\xdb\x37\xc1\xe5\xe5\x38\x22\xf0\x27\x3d\x3a\xe2\x5f\xce\xb2\x73\xf9\xed\x9b\x71\x65\x96\xc8\xdb\x37\xb2\xa8\x94\x02\x25\xcd\x7b\x93\x64\xa4\xf0\x71\x73\x69\x60\x0d\xda\xb7\x2e\x3e\xae\x2e\x16\x41\x86\x19\xcd\x2b\xc6\x64\x4a\xca\xe7\xcc\x98\x5c\xfe\x66\x77\x15\x56\x4b\xfc\xa7\x46\x6d\x4c\xf6\xdb\x2d\xc9\xcb\x21\xc7\xcf\xfe\xb4\xb3\xf7\xd1\x2e\xf3\x66\xe5\x19\xd7\xdb\x87\xb9\x85\x05\xd3\xaf\xcd\xc6\x2e\x1b\x66\xe1\x33\xd5\x30\x43\x96\xfb\xce\xd9\xb9\xec\x4f\x9e\xab\x72\x3a\x79\xae\xc9\x61\x4e\x71\x59\x72\x5d\x98\x3f\x63\x39\x99\xd0\xb3\x86\xcd\xf2\x7c\x24\x7d\xff\x7c\xe4\x4f\x46\xf1\x24\x61\xe9\xaf\x24\x89\xcc\xe2\x88\x4a\x47\x47\xa3\x88\x9b\x76\x08\x12\xb5\x24\x3f\xcf\xee\xee\x22\x6e\x09\x79\x3e\x99\x64\xd2\xf7\xd0\xa5\xf4\xfd\x86\x39\x0c\x04\xd2\x6d\x0a\x20\x84\x93\x60\x73\x19\x44\x7e\x18\x5e\xdf\x02\x00\x3e\x33\x58\x4f\x26\x09\x61\xe3\xb8\xbb\xcb\xbf\x8d\xa4\xa2\x64\x70\x39\x4a\x25\x66\xd5\x0c\x37\x85\x07\xe6\x06\xc7\x78\x2f\xcb\xe7\x8c\xa6\x59\xb2\x9a\x66\xab\x84\x3e\xbc\xf9\xb3\xf3\x8e\x19\xb6\xac\xd1\xb3\x99\x66\x68\xb3\x98\x8d\xc5\xf7\xd5\x9f\x7f\x89\x2f\xb6\x68\xf4\x85\xd8\x50\x2c\x9d\xe2\x68\x1b\x7f\xe5\x42\x2e\xee\x4d\xfd\x1b\x53\x7d\x57\x7a\xfb\xa6\xb9\x2f\xbd\xf7\x13\x1a\x65\x78\xa6\x91\x7f\xed\x68\x25\x7f\xb5\xa5\xad\x71\xa5\x01\x7e\x44\xc1\x37\x38\xbe\xef\x41\x67\x34\x09\xe2\x59\x30\xad\xe6\x1a\x63\x53\x80\x5a\x56\xfe\xfa\x0d\xcd\xfc\x20\xc4\x73\x13\xfe\xa4\x52\x17\x88\x8e\xc1\x5d\xc3\x64\x5f\x93\xd5\x62\x95\x76\x1b\xb5\x3b\x1a\xe4\xfd\xfc\x25\xbe\xe0\xc3\xe0\x81\x10\x4c\xd1\xaf\x58\x80\xeb\x4e\xac\xf2\x6d\xed\xe7\xf8\xac\xda\x44\xe7\x96\xb6\x87\xa1\xa1\x8a\xfc\xa3\xa3\x02\xf9\xb0\x1c\xab\xaf\x5e\xd6\x7e\x8d\x19\xa5\x62\x5c\x77\x69\x07\x8d\x27\xfe\xa8\xdb\x70\x91\x4a\xe4\x62\x15\x84\xb3\xdf\x3e\x9c\x8c\x52\x99\xcd\x9c\x2c\x96\x31\xdd\xa2\x44\xd2\x65\x18\x64\x23\xf1\xa5\x28\xc9\x9a\x74\xa6\x76\x9b\x88\x76\x8a\x92\xf2\x56\xd3\x46\x38\x2a\xb7\x9d\x58\x16\x5f\xd4\x3d\x7e\x2b\x4e\x84\x11\xba\x22\xe7\x6e\x9d\x3b\xdb\xa9\xf8\x7f\x56\x1b\x91\x67\xb0\xe1\xe1\x22\xdf\x6c\xe4\x4a\xc8\xdf\xce\x06\xeb\xe1\x81\x2d\xc0\x5a\xd1\x3a\xc3\xdb\xeb\x6a\xae\x1a\x29\xb4\xab\xa5\x7a\x3c\x4b\xb3\x29\x96\xda\xa6\x7a\xaa\x26\x97\x0e\x3c\x05\x3f\x2b\xd9\x40\x69\x9f\xf2\x5f\xd6\xe4\xb6\x97\x55\xfb\xd2\x98\x6e\x76\xe4\x8c\xaa\x6e\x9f\xa5\x49\xec\xb1\x8a\x67\xd5\x63\xac\x5f\xd9\x7d\x15\xfb\x48\x11\xc5\x65\xd9\x8f\x74\x78\x7c\x9b\x9a\x06\xb3\x64\x2c\xbe\x7e\xfb\xe6\x83\x28\x07\xcb\xb1\xf8\xf6\xbd\x28\x2f\x2e\x82\x2c\x1d\x8b\xef\x7e\x0a\xb2\x54\xdc\x53\x78\x8a\xe2\x19\x55\xaa\xf7\x6a\x3e\xd2\xe1\xef\xda\x7c\x6b\xbc\xfa\xb6\x8c\x43\x1f\x67\xcd\xc4\x50\xc3\x50\xd2\x71\xc1\xf9\x23\xc2\x46\xee\x62\x14\xa0\x67\x51\xb0\xa0\x69\xe6\x2f\x96\xf7\x99\xfb\x47\x3b\xc4\xed\x09\x8a\x39\x02\x82\xf4\x4d\xe2\x07\xec\xe6\x33\xfc\x26\xca\xf3\x2c\x5b\xbe\x9a\xc1\x22\x39\xfe\xf4\xe9\x3d\xfa\x46\xee\x76\xae\x7a\xc3\xae\x83\xab\x5b\x81\xf8\xc3\x7b\x99\x7f\x98\xe1\x47\xce\xf5\x7c\xe9\xdb\xc4\x89\xaa\x38\xe0\xf7\x9c\x62\x44\x15\x61\x20\x92\x3b\xce\x2c\x9a\xb2\x01\x1f\xe8\xf6\x53\x8b\x62\xf7\xf0\x9b\x1b\xfb\x66\x33\x24\x7b\x6c\x95\x8e\xf8\xf5\x55\x8f\x95\xe0\x76\x8a\xf7\x15\x87\xd5\x6f\x33\x76\x24\x85\x6b\xd5\x23\x67\x33\x3b\x51\x52\xf5\x3f\xab\x38\x8c\x95\x3e\x68\x6d\xef\xb3\x7a\xb1\xdc\x03\xad\xc3\x9b\x6c\xc6\xbd\xc9\xf0\x11\x53\x7b\xca\x5f\x15\x3f\x2e\xac\xf7\x6b\x3c\xa3\x45\x0d\xfc\x91\x57\x60\x3f\x78\xf9\x6f\x9e\x37\x7e\xc5\xe3\x63\x9d\xb0\x5c\x48\x58\xae\xc6\xe2\xeb\xf7\xbf\x89\xf2\x82\xdd\x30\x28\xb2\x9b\x06\xdf\xfd\x24\xca\xb3\x20\xfd\x3c\x16\xdf\x04\xe9\x67\xf8\x15\xc4\xcb\x74\x2c\xbe\xfd\xeb\xfb\x8f\xfb\x6e\x1e\x95\x7b\x2c\x1f\x39\x36\xb8\xdb\x3a\x0e\x7a\x19\xfa\xd7\xef\xd8\xef\x21\x1a\x7d\x95\xbe\xb7\x52\x75\x85\x96\x77\xd1\x58\x3b\x05\x51\x0b\xad\x18\x2f\xab\x94\xea\xc5\x93\x35\xcc\x17\x88\x7c\x1f\xfa\x53\x3a\x7b\xed\x47\x7e\x52\xf1\x79\x44\x05\xbf\x7c\x13\x50\xe6\x6a\xc9\xa2\xc3\x84\xe6\xbb\x6f\x5d\xbe\xdb\x2f\xaa\xe7\xee\x91\x7b\x22\xf5\x81\xef\x18\xed\x42\x6b\x54\xa0\x35\xc2\xa3\x88\xb4\xd3\x70\x4f\x49\xed\xb2\xcf\xaa\x53\x53\x54\x7f\x05\xb2\x49\x04\x6c\xb9\x7d\x45\xe8\xa4\x51\x94\x7c\x0c\x6e\xe8\xbb\x9f\x1a\x13\x11\xed\xeb\xe1\xdf\x77\x73\xf5\x93\x21\xe8\x6d\x1e\x09\xc5\xb5\xce\xcc\x1d\xa1\xf8\x79\x18\x5f\x84\xf6\x4d\xb9\x4f\x00\x69\x79\xf9\x22\x0c\xa0\x70\xd8\x45\x1c\x7d\xa8\xdd\x86\x3b\xc1\x40\x18\xdc\xac\xe4\xf2\xdd\xeb\xf7\xbf\x4d\x22\xf2\xfa\xfd\x6f\x95\x67\x9c\x42\xd9\x56\x56\x79\x5e\x27\xe1\xac\x93\x84\xbf\x7d\x22\xfa\x2e\xbf\x7d\x8c\x7c\xa4\x6a\x1a\x79\xc5\xef\x87\x7d\xfb\x46\xcc\xb5\x28\x7e\x13\xae\xf8\x11\xff\xbe\x7d\xd3\xb7\x33\x56\x39\xcf\x7b\x14\xe6\xdf\xbe\x49\x27\xfc\x3b\x30\xe8\xfc\x31\xda\x34\xeb\x2c\x27\x2f\xd3\x44\xfc\x50\xe6\x01\x7a\x5f\xfa\xc2\xff\xdd\xff\xda\x85\x74\x78\xde\x28\xf5\xcd\x64\xdf\x5b\xa1\xf0\x1f\xb9\xa5\xd1\x6a\xc1\x4e\x2b\xc6\xcf\x55\xf9\x8a\x76\xde\x93\x9d\x0f\x6d\x83\x5a\x60\xff\xd8\x2a\xd1\xaa\xfd\xd1\xcd\x85\x11\x30\xfb\xd3\xb5\xfe\x91\xb9\xd6\xe7\xe1\xaa\x1f\xd9\x84\x96\x19\xbf\xf1\x5e\xe0\x21\x31\xca\xcd\x2b\xe0\x59\x4d\x32\x5d\x25\x09\x8d\xb2\xdf\x3e\x9c\x88\x72\xe3\x19\x86\xc6\xb2\xa8\xbb\x56\x54\x7a\x71\xfe\xff\xd7\x2f\x11\x4d\x58\x64\xb0\x1c\x4d\x2a\x97\xe2\xf7\xb5\x05\x53\x57\x9e\x1d\x10\x51\x22\x5f\x82\x6c\x1e\xaf\xb2\x11\x3c\x6e\x9e\x55\xd7\xd8\x42\x1a\xc2\xb0\x54\x39\xfb\x4e\x93\xc8\xef\x71\x10\x61\xfd\x8d\x24\xfb\x93\xb3\x92\x98\xda\x12\x0b\x4f\x89\x9b\xca\xe1\x84\x92\x30\x8e\x3f\xaf\x96\x1c\xbe\x71\xe9\x37\x29\x49\xcf\x42\x96\x53\xf2\xa7\x12\x6b\x47\x47\x23\x68\x5b\xe2\xe1\x0d\x21\xa9\x60\x14\xa4\xc9\x67\x62\xde\x89\x38\x99\x00\xb9\xc5\x97\x42\x7c\x74\x34\x8a\x27\xf1\x28\x2c\x6e\xf6\xe1\xb1\xf8\xcc\xce\x22\x4a\xcc\xdf\x46\x1e\xa5\x13\xbf\xe6\x1d\x9f\xca\xd9\x28\x96\x24\xe6\x67\x31\x68\xc3\x60\x6b\x7b\x1a\xcf\xa8\xb2\x08\x58\x44\x7f\x95\x7d\x05\xeb\x6b\x05\x5e\xb2\x77\xdd\x15\x9e\x1c\x27\x63\xa6\xbb\xc7\x72\x2f\x77\x73\x3d\xae\xa2\xcf\x51\xfc\x25\xca\xdb\xed\x0a\x6f\xa9\xb8\xce\x14\x89\x08\xa8\xb4\x91\x83\xf4\x0d\x5d\x37\x73\x90\xd0\x7f\xac\xfc\x70\x24\x56\x07\x54\xbf\x32\x59\x92\x83\xf4\x7d\x12\xcf\x06\x55\x5c\x26\xf1\x6c\xc5\xc8\x15\xea\x7d\xa2\x69\x36\xa8\x5e\x86\x97\x52\xed\x41\x92\x6c\xe3\xec\xbc\x8d\x22\xdf\x55\x8b\x97\xfd\xb5\xfe\x38\xe1\x92\xff\xfe\x04\xb2\xdc\x58\x4c\x63\x16\x6a\x30\x53\xc2\xe0\x6a\x9e\x0d\x3b\xeb\x61\x43\x98\x53\x7f\x86\xf1\x6f\x9d\xd2\x5b\x18\x28\x50\xa0\xab\xf8\x93\x5b\x87\x0b\x3a\x0b\x3a\x47\x99\x30\xe7\xa4\x60\x4d\x9b\x85\xff\xe9\x77\xfa\x97\xf0\xc4\x6d\x6f\x59\x06\x3d\x7b\xd3\x2e\xb9\x07\x8f\x39\x7c\xfa\x92\x2b\x9a\xc9\x5d\xde\x25\xfc\xf7\x2f\x20\x4f\x67\x63\xbf\x92\xbe\x49\x64\x70\x93\x78\x95\x2d\x57\xbc\xc0\x90\x9b\x7c\x8a\x71\x2f\xfd\x2b\xaa\x64\x41\x16\x52\x25\x0c\xd2\x4e\x54\x95\x45\xb6\x54\xfb\x27\xe1\xed\x76\xf3\xfd\x99\x98\xd2\xa5\x8f\xa2\x23\xb2\x3e\xba\xa4\xd1\x0c\x84\x1c\xba\x0c\xfd\x29\x15\xcf\x3b\x4d\x1b\xa5\x7e\x03\x43\xf9\x04\x23\x39\x3a\xea\x78\x78\x46\xcf\x41\x38\x38\x2b\x96\x57\x2e\x48\x74\x07\x34\xce\xfd\xe4\x55\x36\x52\x25\x92\xc5\xbf\x2d\x97\x34\x79\xed\xa7\x74\x24\x7d\x47\xb9\x4c\xa3\xa1\x04\x2a\x9d\x4f\xba\x7b\xca\xef\xb0\xef\xa0\x01\x7f\xf8\x94\xa6\x99\x9f\xa5\x4a\xc6\x02\xae\x53\x25\xa1\x57\x41\x9a\x35\xed\x7e\x61\xb2\xfa\xfb\xc2\x5f\xf6\xa7\x6a\xc4\x03\xcc\x5a\x53\xfd\x65\xcb\x33\x9d\x46\x8d\x07\xbc\x44\x4d\x0e\x7b\xb6\xe6\xad\xf7\x32\x04\x51\x50\xe3\x86\x2c\x15\x47\x46\x4e\x3e\xfc\xf6\xce\x5f\x8e\x34\x15\x13\x50\x31\x84\x7d\xa0\x97\x4d\x69\xba\xcd\x47\x61\x2a\xae\x68\xc6\xc3\xdb\xfb\x2e\x73\xc1\xf4\xea\xdc\x63\x13\x13\xa7\x4d\xe3\x88\x79\xac\xc5\x49\xcd\x4b\xa7\x3c\x2b\x0b\x65\x71\x5c\x75\xbc\x2c\xaf\xef\x95\x93\x09\x4b\xf1\x33\x99\x4c\xc2\x97\x05\x25\x8d\xcb\x2b\xe4\x82\x6a\x01\xf6\x75\x5c\xbd\xe0\x58\x5e\x4d\x98\xf4\x1e\x63\xe6\xc5\x95\xd4\xd2\x01\x2b\x76\x57\xd6\x75\x26\x1d\x1d\x3d\xcf\xbf\x12\x90\x61\xd2\x2c\x89\xaf\xe9\xac\xf3\x71\x10\x5d\x6d\x46\x2b\x39\x90\xee\xee\x56\x98\x88\x2a\x90\xa9\x24\xaf\x70\xe6\x66\x93\x84\xe7\x09\xeb\xd3\x00\x32\x50\x01\xe9\xcb\x3e\x42\xc9\x72\xea\x88\xe4\xfa\x4e\xc7\x38\xcf\xaa\xf8\xfd\x25\x09\x32\xfe\x7d\x23\x8d\x41\x13\x9d\x44\x32\xdd\x8c\x6e\x31\xbf\x7d\x97\xcc\x96\x11\xa4\x1e\xe2\xaf\xb2\x79\x8c\xa2\x01\xcf\x52\x03\xba\xe3\x46\x86\x51\x14\x6e\x31\x29\x0e\x2c\x96\x67\x92\x3c\x6b\x9c\x62\x76\xa6\x11\x2c\xd7\x27\x06\x96\x6c\xcd\x1e\x98\x2f\xac\x65\x12\x2f\x82\x94\x2a\x4c\x05\xde\x5d\xce\x07\x65\xb7\x5a\xac\x48\x39\x54\xf7\x5c\x6d\x34\xf3\x7b\x1a\x47\x0a\x66\x66\x2a\x1c\xfc\xfe\x80\xec\xab\x7b\x2d\xdc\xad\x19\xbc\x58\xf6\xac\x96\xea\x5b\xbf\x7a\xb6\x33\xc5\x61\x9e\x0f\x15\xfb\x7e\xd6\x94\x8d\x72\x3a\xbd\xe5\xf8\x1d\x77\x51\x46\x25\x28\xcf\x2f\x53\xb4\xca\xe2\x0b\x96\x01\xe9\x45\x9e\xda\x6b\xdb\x15\x86\x30\x01\x23\xa9\xff\xae\x94\xdb\x64\x39\x45\x7f\x04\xba\x69\x15\xaa\xae\x54\x96\x70\x2d\x9f\x99\xd7\x73\x3f\xba\xa2\x23\x91\x41\x40\x78\x1b\xa2\x24\x67\x1b\x29\x97\xfa\xfc\xe2\x96\xdc\x2d\xbc\xae\x92\x12\x72\x20\xa2\x68\x15\x51\xfe\x97\x9d\xb8\xc2\xdc\x5a\x2f\x16\x2c\x79\x51\x81\xab\x7a\x4c\xf1\xed\xa6\x1f\x87\xf9\x25\xd1\x94\xb0\xd4\x6c\x6c\x48\x1b\x3e\x4e\x7e\x4d\xf3\x3d\x46\x18\x1d\x6c\x84\xc5\x55\xd1\x9d\x63\x3b\x3b\xe7\xe1\xf2\x55\x9a\x6d\xdb\x72\x58\x1b\xe4\xec\x5c\x94\x6f\x1b\x72\x7d\x65\x04\xbc\x98\x9c\x4d\xf8\xed\xc2\xc0\xf8\x31\xf6\xdd\xbf\x02\x1a\x59\xf8\xb3\x57\x95\x6e\xca\x7b\xf7\x78\x30\x7f\x3a\xca\xa4\x97\x19\x9e\x76\xe3\x1d\xcc\xed\xe0\x63\x9e\x6d\xa7\xb0\xca\x7f\x27\x8a\x79\x2b\x83\xba\x9c\x44\x72\xb4\xe9\x2a\xc9\xa2\xca\xdf\x66\x74\xc1\x39\xe7\xab\xda\x15\xd5\x9b\x8d\x24\xb7\xee\xc8\xde\x8a\xa6\x6d\xb9\xf7\xf2\x72\xcc\x66\x29\x4a\x3f\x6a\x45\xf3\x6f\x19\x26\x7a\xe6\xa1\xce\x58\xc4\xda\x32\xca\x2f\x9b\x96\xc5\xf6\x65\xde\x7d\xd0\xb4\x4a\x72\xe7\xe3\x6a\x3f\xcf\xab\xb7\x5c\x77\xf6\x88\x67\x70\xc5\xed\x70\xc3\xb9\xe1\x4e\x52\xef\xcc\x31\x58\x06\x4d\x6e\xe1\x6b\xd0\xbb\x3f\xcd\x30\x7b\xbc\x54\x9b\xbb\x5f\xfb\x01\x2d\xc7\xd0\x9c\xc1\x0a\x8d\x57\x0a\x65\x31\x33\x44\x97\xa9\x69\xf9\x8c\x62\x52\xd9\x78\x41\x3b\x60\xab\x3a\x53\x57\x64\xab\xca\x12\x2c\x33\x70\xef\x80\xaf\x7b\x21\xee\x58\x06\x5d\x01\x32\x72\xd6\x1a\x5a\x9e\x13\x2d\x98\x89\x32\x2d\x43\x5e\xee\xee\x46\x7b\x2c\x9e\x4a\x7c\xab\xbc\xad\x83\xf2\xd2\x3f\x69\xc7\xb2\xe7\x38\xe4\x91\x2f\x85\x45\x34\x7b\xd9\x09\x56\x17\x28\x93\x6c\x2b\x28\x99\x24\x8d\xf7\x68\xab\x96\xf4\x3b\x93\x9e\xdd\x0f\x39\x1b\xdc\x29\x52\xda\xbe\x56\x13\x53\xa9\xb6\xee\x49\x64\x97\xab\xef\x21\xf8\x65\xf4\x6b\xa6\x2c\xa8\x9f\xae\x92\x66\x9a\x4c\xa6\x69\xd7\x0a\xf4\xd5\x7b\x72\x16\xa4\x8e\x53\xce\x5a\xe4\x54\x4b\x1c\x45\xf1\xfc\xc1\x8d\x2d\x4d\xf1\x73\xc7\x65\xa1\xec\x78\xb3\xc1\x0b\x9a\x6b\x7f\xd7\x1e\xf8\x09\x50\xc1\x4e\x48\xbb\x96\x58\xce\x89\x31\x82\x2a\x7b\x39\x88\x8c\x2b\x4d\x8a\xd2\x78\x48\xcf\xb0\xf6\x80\xd6\xbb\xe4\x97\x0e\x05\xb6\x95\x17\x47\xeb\xcc\x8b\xa3\x55\xf3\xe2\x68\xe7\xe3\xdb\x69\x42\x67\x34\xca\x02\x3f\x4c\xc7\x22\x97\x2c\x44\x8c\x5b\xdd\xc8\x29\xf7\x3f\x45\x78\x0a\x85\x8a\x19\x5a\xfe\x5f\xe5\x57\x24\x07\x84\x58\x3c\x9f\xa4\x78\x43\x42\x25\x3d\x2d\x95\xeb\x81\x27\xf2\xed\x1c\x05\xdc\x74\xec\x6f\xf0\x4a\xd1\xa6\x88\xde\x38\x7e\x0e\x2e\x47\xad\x28\xff\x8e\x5d\x5f\x94\xf2\xf0\x88\x9e\x9c\x00\x79\xb1\x67\xfe\xd1\xd1\x88\x4e\xea\x9d\x34\xf3\xb0\x96\x81\x15\x11\xbb\x73\xb1\x90\xb5\xc4\x97\xa2\xf4\x52\x3c\x12\xc7\xe2\xcb\x5c\x88\xaa\xc4\x5b\x48\x65\x12\xcf\x4a\x56\x8f\x11\x95\x73\x89\x17\xc7\x5c\x15\x26\x3a\xc5\xd2\x7d\xcf\xc8\x31\x15\x7a\xaf\x45\x10\xdd\x13\x1e\xca\xca\x8b\xb1\xcd\xdd\x4b\x14\x6f\xad\x69\x1c\x64\x24\xd4\x9f\xfd\x35\x0a\xaf\xdb\xb6\x99\xaa\xeb\x80\xfc\x5c\x05\x26\xd5\x34\xff\x40\x6f\x1b\xe0\x6f\x6f\xa3\x19\xfd\xfa\x4b\x9c\x74\x19\x05\x58\xc8\xb5\x86\x0b\xb6\xa3\x1c\x8c\x1d\x8a\x4c\xbe\xcb\x86\x60\x78\x7d\xb5\xe5\x64\xfe\xdb\x71\x58\x3e\xb8\x15\xfd\x90\x26\x99\x32\x0d\x92\x69\x48\x95\xcb\x20\x0c\xc5\xf1\xff\xf9\x21\x5d\x5f\x09\xeb\x80\x7e\xf9\x29\xfe\x3a\x11\x55\x41\x15\x74\x53\xd0\x4d\x51\xf8\xba\x08\xa3\x74\x22\xce\xb3\x6c\x39\x7e\xf1\xe2\xcb\x97\x2f\xe4\x8b\x41\xe2\xe4\xea\x85\xae\xaa\x2a\x80\x2d\xfe\xf8\xc3\xd2\xcf\xe6\xc2\x6c\x22\xbe\xd3\x74\x41\x7f\x6d\x13\xd3\x15\x74\x41\x17\xf8\x17\x4d\x4f\x4d\xf8\xa6\xa9\xc5\xff\x0a\x7f\xa0\x68\xea\x47\xcd\x21\x96\x8e\xc5\x04\xfd\x66\xa1\x09\x9a\x35\x57\xf4\xb5\xa2\xcf\xf5\xb5\x7e\xb3\x50\x15\x73\xae\xe8\xa7\xce\x5c\x5f\xdb\x37\xa2\x00\xd0\x4e\x44\x7e\xa8\xfc\x3a\x0e\xe3\x44\x7c\xf1\xe3\x0f\x00\xc6\x8f\xff\x47\xae\x0f\x2c\x5e\x65\x61\x10\xd1\xc3\x8d\x0d\x41\xd3\xd7\x3a\x03\x0f\x40\x73\x01\x2a\x04\xef\x66\x41\x3c\x4f\xb1\x60\xec\x4e\x7b\xec\x0e\x8c\xda\x23\x9e\x27\x68\xea\x6b\x3e\x5e\xfc\xbf\xf8\xae\xe9\x25\x1e\x34\x28\xa8\xdf\x20\x32\xd5\x29\xa0\x4a\x17\x54\xc5\x55\x0c\x62\xb9\x8a\xab\xb8\x29\xfb\x22\xe0\x3f\x01\x7e\x08\xf0\x83\x7d\x81\x67\x03\xf1\x94\x25\x81\x1f\x5d\x85\x07\xc4\x90\xa0\x6b\x73\x5d\x3f\xd1\x70\x18\x82\xae\xdd\x2c\x34\x5d\x31\xda\xd3\xb9\x56\xcc\xb9\xbe\x36\x77\xc3\x99\x24\xf1\x17\x65\x16\x7f\x89\x0e\x39\x8b\xc6\x5a\x33\x89\x1e\x2a\x06\xb1\xe1\xdf\x89\x2d\x68\x56\x68\x0b\xb6\x60\x2b\xb6\xa2\x11\x13\xff\x19\xc4\x16\x0c\x62\x9f\x02\xf4\x03\xe1\x0c\xe9\x65\x76\x30\x38\x75\x4d\xd0\xb4\x63\x9b\xb8\x46\x88\xd3\x6d\x10\xcb\x3b\xf1\x04\x3b\x54\x10\x52\xc1\x16\x34\x62\x6a\x00\xaa\x76\x02\xa5\x04\xcd\x38\xd6\xb5\x81\x90\x26\x78\xac\x79\x28\x50\xa1\xef\x79\x81\x52\xc0\xda\x89\x66\x09\x9a\x1b\x02\x3e\x39\x4e\x01\x5a\x81\xbf\x3d\x36\xd6\x43\x51\xba\x5a\x1e\x6e\xe2\x0d\x41\xd7\x4e\x6d\xe2\x86\x05\x90\xae\xe0\x85\x0c\x44\x86\x4e\xf8\x77\xa2\x69\x82\x4d\xdc\x53\xa0\xe4\x5d\x40\x5e\xc4\x71\xc6\xc1\xfb\x12\xcc\xb2\xf9\x44\xd4\x5c\x5b\x14\xe6\x14\xd0\xcb\x7f\xd4\xe0\xd6\x5c\x5b\xc0\xa7\xfb\x41\xae\xaa\xc4\x73\x0d\xc1\x36\x88\xed\x85\x06\x31\x54\x43\x70\x89\xad\x5a\x82\xae\x12\xc7\xb0\x15\x87\x78\xf6\x54\xf3\x88\xa9\x38\xc4\x34\x1d\xc1\xd4\x88\xaa\xc3\x68\x74\xdd\x16\x2c\x95\x68\x9a\x2e\xc0\x6b\xd3\xf1\x75\x95\xa8\x8e\x26\xf0\x3f\x08\x93\xa0\x0b\x06\x71\xbd\xd0\x21\x9a\xed\x0a\x9a\x4b\x6c\x47\x9b\x1a\xc4\xb3\x80\x41\x13\x43\xd3\x15\x8d\x68\x1e\x60\x8f\xb8\xae\xa2\x69\xc4\x82\x9e\x2d\xe2\x9a\xa1\xe2\x7a\xc4\xd6\x0d\xc1\x30\x89\xa9\x1a\xd8\xb8\xc7\x1a\xf7\x78\xe3\x8a\x41\x5c\xd7\x13\x34\xa2\xda\x5a\xa8\xc0\x1b\x5b\x13\x1c\xe2\xa8\x9a\x0f\x5c\x8b\x95\x81\x6e\x0c\x5b\x31\x89\xad\xea\x27\xc4\xb5\x1d\xc1\xb4\x88\x6d\xda\x65\x11\x01\xdf\xb1\x82\xd6\x89\xa3\x11\xc7\x32\x04\x0f\x8a\x56\xca\xb0\xb7\xac\xe8\x89\xa7\x13\xcd\x14\x4c\x95\xd8\x96\xee\xeb\xc4\x74\x5d\x81\x7d\x42\x59\x15\x86\xa4\x39\xc4\xd5\xa7\x8a\x41\x34\x13\x2a\xa9\x0e\x8c\x4d\x73\x00\x3a\x45\x37\x88\x07\x60\xab\xc4\xf2\x7c\x9d\x58\x02\xfc\x53\x59\x3f\x04\xa0\x71\x1d\x77\xaa\xe9\xc4\xf5\x14\x9d\x78\xaa\x0d\xc8\xb1\x54\x5b\xb1\x89\xe5\xb9\x80\x1c\x4f\x33\xa1\x39\x43\x73\x43\x8b\xa8\x9a\x29\x68\x06\x51\x6d\x00\xc4\x83\xc6\xe0\x33\x07\x44\x35\x89\xe3\x31\x38\xcc\x12\x0e\xdb\x2d\x01\x71\x07\x00\xa2\xbb\x0a\x80\xa3\x03\x24\xa6\x6e\x00\x24\xb6\x8e\xd3\x64\x41\x7b\xba\x75\x53\x21\xdc\xa9\x1f\xd2\x68\xe6\x27\x07\x5b\x5b\xb0\x47\x79\x40\x63\x9a\x69\xcc\x01\x00\x77\x0d\xab\x5e\xf7\x8e\xe1\x95\xb1\xc6\xef\x37\x0b\x00\xd1\x72\x05\xf5\x58\x33\xf8\xfb\x39\xfb\x53\x2b\xe0\x08\xea\x9c\x3d\xe5\x6d\xb8\xc4\xd1\xcc\xed\x45\x60\x9c\x4e\x5e\x44\xc3\xbf\xac\x60\x0d\x1a\xd6\x9b\xdb\xd9\xd4\x23\x83\xf8\x54\xd3\xb7\x42\x7b\xaa\xe9\xbd\x90\x16\x75\x7b\xa0\x84\xba\x5b\x20\x84\xd7\x7d\xd0\xb9\xbc\x77\x36\xd3\x15\x00\xdd\x16\x80\x58\xa4\x02\xa3\x5b\x87\xb1\xd2\x82\xd7\xd9\x82\xc7\x5b\x28\x21\x75\x6f\x16\x0e\x3c\x52\x2c\x78\xc4\x0b\x15\x43\xc5\xba\x37\x0b\xc5\x25\x16\xb0\x36\x0e\x85\x7e\xec\x10\xdd\xb5\xf9\xdb\x77\x8c\x50\x75\x15\xca\xcc\x35\x6c\xe7\xd4\x81\xcf\x63\x93\x01\xc2\xcb\xe9\x2a\x74\x24\x18\xa4\x84\x11\x18\xca\x54\x15\x88\xa9\x10\x43\x33\x89\xa3\x59\x0a\x54\x84\x2f\x73\x06\xb8\x4f\x1c\x15\x78\x9b\xc3\xf9\x1a\xbc\x86\x0f\xeb\x94\xb5\x63\x72\x48\x7a\xdb\x39\xb6\xc9\xae\x56\x00\x4e\xe3\x95\x46\x4c\x43\xc0\x0f\xc6\x0b\x0c\xe0\x04\x30\x61\x38\xa2\xd7\xc8\xac\x0d\xcb\x81\x6d\xce\x34\x40\xbe\xe4\xe3\xd6\xf9\x98\xa7\xc4\x71\x6d\xe4\x21\xa6\xee\x2a\x58\x88\x7d\x65\x38\xc5\xc6\xa6\xaa\x02\xa5\xe0\xad\xae\x94\x6f\xf9\x27\xdf\x1b\x95\x64\x15\xd2\x89\x48\xd7\x34\x8a\x67\xb3\x5d\x9b\xfa\xd4\x8f\xa6\x34\x7c\x50\xcd\xa3\x90\xbe\x9d\xba\xf4\x5d\xd5\x3c\x9c\x8a\xe6\x61\x14\x9a\x87\x05\x3c\xda\xf2\x4e\x34\x8b\x58\x9e\xa0\x39\xf0\x58\x33\x88\xa9\x09\x2e\x7c\xc0\xce\x20\xf0\x77\x2a\x7e\xea\x82\xc3\x5e\xe1\x07\x2b\xcf\xde\x60\x29\x07\xaa\xb0\xaa\xd8\x0a\xbc\xe6\x2d\xec\x94\x7e\xea\x88\x3a\xb8\x26\x63\x02\x7c\xee\x49\x01\xb0\x87\xa3\x10\x5c\xf6\xa5\x18\x9e\x2b\xb0\x92\xec\xa9\x5d\x22\x84\x3d\x86\x27\x76\xfe\xbd\x18\xa2\xcd\x8b\xb3\x3e\x6e\x0e\x30\x31\x20\x37\xa1\x1a\xa4\xe5\x6a\x90\x97\xab\x41\x5e\x55\x0d\xf2\x72\x35\xc8\x1b\xa8\x06\x71\x2c\x2f\x43\x3f\x38\xa0\x82\xe1\xc1\x20\xb5\x13\x18\x83\x27\x58\x25\x55\xc0\x53\xc1\x12\x2c\xf6\xa5\x40\xb2\x25\xb0\x92\xec\xa9\x57\x41\x32\x3e\xd6\xd8\xff\x4e\x15\xc9\x43\x07\x96\xfe\x63\xe5\x27\x87\x5e\x67\x9e\x60\x4c\x41\xf4\x50\x05\x5d\x20\x1e\x4c\xea\x1a\xf9\x99\x46\x34\x05\x7e\x2b\xba\xa0\x1f\x5b\x53\x05\xcb\x28\xba\x42\x3c\x45\x57\xf4\x53\x6b\x8a\x42\x17\xfc\x82\x32\x73\xcd\x04\x76\x2f\x68\x3a\x2e\xb9\xca\x02\x61\x2b\x26\x5f\x41\x39\xf2\xf8\x12\xcb\x5f\x97\x0b\x90\x95\xcc\x57\x68\x89\xbc\x62\x11\xef\xb9\xe4\x38\xce\x0e\xbe\xe4\x3c\xc1\x5a\x6b\xe6\xb1\x75\x6a\xe1\xd0\x55\xa5\x8a\x24\x81\xa1\xa5\x40\x24\xc3\xab\x00\x58\xca\x71\xcd\x71\x9b\xe3\x91\xa3\x55\xd1\x6f\x16\x6c\x65\x58\x7f\xc8\x6a\xde\x81\x44\x86\xc3\x86\x4a\x64\x56\x34\x22\xb3\xa9\x10\x99\x82\xb6\x3f\xf7\x42\xd5\xf7\x04\x49\x47\x50\x05\x47\x60\x73\x8d\xfc\x81\xed\x69\x9a\xc0\xe9\x47\x65\x04\xc6\x9e\x69\x66\x41\x3f\xec\xa1\x89\xff\xeb\x25\x7d\xdd\xd4\x09\x22\xa1\xd9\x61\x8d\x0f\xc0\xdf\x42\x60\x01\x96\x62\x0d\x20\x48\xe8\xff\x80\x1a\xb0\x23\x68\x66\x68\x29\xd8\xff\xee\xde\xe7\x74\xfa\xf9\x91\xda\x08\x81\x6f\x58\xa1\x02\x43\x29\x8d\x20\x50\xc7\x24\x9a\x13\x02\xab\x54\x1c\x64\x2b\x9e\xe0\x86\x8a\x27\x0c\x58\xfc\xd5\xd1\x1e\x7c\xed\x7f\xeb\x80\xdf\x01\x95\x4e\x55\xb6\xd0\xcb\x5d\x2f\xed\xdc\xf5\x2a\x3b\xe4\xcd\xc2\x10\xd4\xb0\x82\x22\x14\x45\x34\x27\x84\xd5\xa1\x58\x88\x22\xb4\x81\x38\x82\xa3\x98\xca\x6e\x7b\x1c\x43\xd3\x61\xf7\x4b\xe0\x3c\x44\x73\x4e\x4c\x34\x62\xe9\x21\x8a\x97\x6c\x85\xe3\xd6\xa7\x6b\x82\x83\x0f\xd9\x20\x86\xc0\xb8\x4e\xe2\xe8\xc0\x56\x43\x9b\x31\x09\xc0\x98\xce\x90\x28\x38\x4c\xf4\x83\xad\x1b\x96\x35\x37\x20\x0e\x86\xef\xa0\xd6\x42\x90\xea\x01\x8f\x5e\xa8\x98\x04\x2d\x29\x02\xff\x5b\x18\x34\x2b\x66\x43\xf8\x3d\x18\xce\xc3\xda\x0a\x5d\x62\x08\x0e\x71\xc2\x0a\x84\xf0\x37\xb7\xbe\x09\x0d\x93\xe1\x60\x28\x0f\xc9\x26\xa1\x6b\x3b\xac\x42\xc7\x21\x64\x78\x64\xf6\xc2\x13\x56\x6c\x37\x80\x61\x3c\xfd\xfc\x20\x0c\xd4\xe2\xec\xc4\xca\xb9\x89\xd5\x60\x26\x56\x85\x97\x14\xbc\xd3\x24\x3a\xf0\x49\x9d\x31\x83\x53\x67\xae\x11\x6b\x6d\x11\x3d\x34\xd1\xb8\xe4\x28\xc4\x15\x34\x62\x0c\x1c\xd7\xe1\xcf\x58\xf0\xec\xe3\x91\x1c\xa3\x2c\x88\xa5\x68\xc6\xb1\xa6\xad\xed\xd0\x22\xba\x25\x18\x04\x16\x9a\xa5\x68\x44\x37\x00\xc1\x8a\x4e\x6c\xe7\xd4\xd9\x29\x16\x01\xae\x38\x8a\x76\xa3\x23\x17\x9c\xdc\x52\x6e\x72\x1b\x62\x93\x2b\xb8\x55\xac\x99\x82\xfa\x5a\x23\xdc\x0c\x8a\x7f\xcd\x14\xfe\x9a\xec\x3f\x05\xbf\x2b\xf8\x17\xd8\xbc\x62\xa2\x4e\x35\xd5\x88\x6d\xa3\xed\x40\x23\x86\x29\x18\x82\xf1\xd1\x82\x27\x8e\x00\x72\x12\x88\x50\xb6\x2d\x68\xd8\x94\x61\x2a\x86\x60\x28\xc6\xcd\x42\x01\xaa\x5a\xeb\x44\xd7\x43\x02\x7c\xdb\x20\x16\xb1\x88\x61\x12\xc3\x25\x8e\xae\xe0\x3f\xc3\x55\xa0\x06\xff\x77\xaa\x13\x55\x9f\x2b\x5a\xcd\xfe\x18\xcf\xe8\xc1\xf6\x0f\x5c\x87\xc4\x86\x0d\x04\xf6\x0f\xbe\x6e\x4f\xdc\xc6\x59\x09\x32\xbd\x85\x45\x74\x41\xcd\xcb\xe4\xff\x4e\x34\x5b\xb0\x43\x64\xdf\x42\xc1\x30\x77\xaf\x80\x78\x79\xad\xf8\x2c\x9a\xee\x70\x87\x14\xc4\xd5\x05\xe3\x35\x08\xe0\x30\x95\x28\x9e\x1a\x82\x26\xc0\x6a\x05\x75\xc1\x00\x75\x81\x98\xc4\x35\x15\x1d\x8a\xea\xc7\x66\x5b\x8b\xb0\xf7\xd6\x22\xe6\x8a\x49\x34\xf7\x06\x36\x63\xe3\xd8\x5e\xeb\x73\x03\x4f\x38\x15\x43\xb0\xe7\xd6\x5a\xd1\xe1\xd9\xcd\x3b\x5b\xf0\xd6\xfa\xdc\x3e\xf5\x8e\xed\x9b\x85\xa5\xd8\x53\x62\x59\x68\x79\x27\xa6\x05\x30\xa6\x0a\x7e\x51\x34\xf8\x07\xdf\x15\xf8\x8e\x7f\xe1\xc9\xcd\xc2\x23\xaa\x6a\x08\x9a\x7a\xac\x1b\x78\x8c\x4a\x3c\xcf\x59\xeb\xc7\x9a\xbb\x36\x8f\xcd\x53\x6b\xae\xaf\x35\xa2\xaa\xce\x5c\x53\xf1\x87\x45\x3c\x4f\x9f\xeb\x50\xe9\x54\x33\x80\x68\xd5\x63\x0d\x1e\xae\x15\x03\xf7\x61\x33\x34\x60\x91\x9b\x6b\xc5\x98\x9b\x44\xd5\x10\xea\x41\xf3\x96\xae\x30\x53\xc1\x21\x4d\x2a\x6c\xe2\xcc\x62\xe2\x0c\x36\x71\x7a\xdf\xc4\x75\xa8\x7f\x36\x51\x75\xeb\xde\x93\xa7\xe9\x82\xb1\xf7\x94\x70\x59\xda\x54\xcc\x86\x2c\x6d\x81\xa0\x08\x62\x0f\x1e\x6a\x80\xa0\xa8\xa9\xe1\x10\xb3\xca\x2c\x48\xfd\x8b\x90\xce\x1e\x8d\xf8\x5c\x1a\x90\xea\x1b\x00\x9e\xbe\xb8\x16\xb1\x0d\x78\x04\xba\x84\xed\x29\x26\xf1\x4e\x40\x90\x12\x34\x97\x18\xda\x2b\x87\x78\xaa\x2e\xb0\x4f\x7e\xca\x04\xdb\xc9\xcd\xc2\x26\x86\xa6\x18\x44\x3b\x71\x08\xb2\x4a\xaf\xbb\xa8\x39\x65\xdd\x56\x76\x18\xc6\xa4\x2d\x85\xd8\x06\x3c\x83\xdd\xc4\xf6\x04\x93\xec\xd4\x52\x66\xf1\x34\x3d\x18\x52\x5d\x60\xe4\xda\xb1\xae\xae\x3d\x02\x24\xc7\x4c\xbd\x0e\x2a\xd7\x00\x12\xa0\xc3\x9a\x2b\x9a\x39\x55\x98\xad\x18\x9e\x31\x5b\x34\x2f\xb0\x56\x34\xe7\xb5\x01\x32\x83\x66\x0a\x06\x7e\xea\x02\x4a\x11\xc7\x9a\xb1\xd6\x88\x75\x6c\x12\x6b\xad\x39\x73\xcd\x3c\xd5\xb4\x1b\x50\x3f\xd1\xd2\x3e\xe7\x47\x20\xee\xb1\x93\x5b\xf5\x55\x7e\xf2\xe1\x9d\x6a\x68\xe3\xce\x5f\x40\x1d\x7d\x5e\x1c\x99\x38\xa7\x1a\x73\x21\x20\xba\x6b\x9f\xda\xf0\x39\xb7\xd6\xbc\xad\x9b\x77\x9a\x23\xe8\xc4\x3a\xd5\xe6\xf6\xda\x9e\x03\x84\xa7\x06\x54\x03\xd2\x05\x0d\x42\x41\xdd\x09\xa6\xfa\x58\xdb\xb9\x65\x83\xf6\x80\xf7\xfa\x1d\xce\xfe\xe3\xcd\x15\xf3\xd4\x38\xf6\xd6\xf6\xb1\x15\x3a\x02\xe8\x5c\xce\xcd\x3b\x4b\xd0\xdc\x35\xac\x72\xe0\xb2\x16\xae\x47\x7d\xae\xaf\x15\xf3\xd8\x58\x9b\x37\x0b\xcd\x16\x54\xfc\x39\x57\x06\x38\x4c\xd0\x59\x90\x1d\x0a\x62\x0b\x58\x80\xe3\xd9\x6b\x83\xa8\x96\x3b\xc7\xcf\xd0\x25\x9a\x65\x28\xf0\x69\x2a\xf0\xc4\x61\x9f\x27\x79\xe1\x9b\x85\x46\x80\xfc\xe7\x1a\x51\x35\x17\xb8\xb9\x0e\x5f\x91\xaf\x6b\xee\x31\xf0\xb7\xb5\xa2\x13\xd5\x70\x6f\x16\x9a\x4e\x2c\x3c\xbc\x36\xcd\x13\xcd\x21\xba\x21\x78\xc4\x76\x43\x6c\xd1\x65\xed\x82\x64\xa2\x03\xb1\x19\xba\xed\x43\x13\x40\x95\xf0\xc9\xd7\x17\x31\x0d\x5b\x21\xaa\xaa\xcd\x89\xaa\xea\xa1\x46\x6c\xd0\x1c\x6d\x5d\x9f\x12\xc3\x73\xf2\x7f\x50\xc7\x64\x86\x21\x63\xe7\xc4\xd3\xaf\x07\x45\xa1\x77\x6a\xcd\x2d\xe2\x99\x30\xf3\x96\x0f\x2c\x89\x1d\xfb\x32\x6b\x5f\xf9\xa0\x9b\xd5\xaf\x15\x8b\x78\xee\x5c\xd1\x4f\x35\x0f\x88\xc3\x53\x34\xdc\x9c\x89\xe5\x85\x8a\x07\x0a\x33\x7e\x30\xeb\x16\x32\x6e\x66\x47\x3e\xd5\xd4\xb9\x7e\x6a\xcc\x95\x9d\xc3\x15\xe9\xd7\xa5\x1f\xcd\x94\xf0\x90\x9b\xa1\x25\x68\x46\x08\x72\x8b\x4e\x0c\x3c\x95\x16\x74\xe2\x3a\x42\xae\xd8\xeb\x27\x2e\xd3\x56\x1d\x14\x6b\xbc\xb5\x62\xc3\xe0\x34\x53\xd1\x43\x85\x55\x81\xaa\x78\xb6\xee\x3a\xb8\xf6\xf1\xe3\x44\xb3\x50\x7b\x34\x04\xcd\x10\xac\xb5\x3d\xdf\xad\x7d\xf1\xd1\x2d\xe2\xe4\x90\xa7\x27\x82\xb9\x75\x74\xc0\xe6\x40\xc9\x15\x74\xd8\x96\x4e\xcd\xb9\x62\xdf\x2c\x14\x54\x2a\xb7\x0e\xcf\x86\x91\xc1\x87\x29\x68\xe6\xa0\xe1\x5d\x06\x07\x37\xce\xe1\x69\xab\x80\x8c\xfa\x04\xcf\x6e\xf3\x33\x50\x75\xad\x39\x44\x33\xd1\xd1\xc7\xb5\xd8\xa1\x69\x71\x4e\xea\xac\x41\x13\x70\xb4\x62\x23\xc9\x4f\x14\x3d\xc6\xba\xd9\xf7\xf2\xec\x92\x1d\x5e\x1a\x7c\x1d\x1b\xfc\x40\x16\x0f\x38\x71\x4b\xb1\xb1\x5f\x3c\xbb\xcc\x8f\x2e\xe7\x9a\x0a\x5d\x86\x96\x60\xdd\xbc\xc3\xe3\xe9\x7c\x3f\xd1\x54\xbe\xa1\x30\x28\xeb\x5b\x8a\xa6\xb2\x3d\xa5\xfb\x5d\x79\xa6\xaf\x56\xf7\x96\x39\x3b\x18\xc6\x1d\xa6\x72\x14\xbe\xfb\x44\x09\x27\xe4\xd0\x4a\xf1\x3f\x07\xc7\x0b\xd6\x2a\x9e\x8d\x23\x21\x9c\x6e\x23\x84\x1d\x88\x61\xd7\x8f\x1e\x8c\x48\x41\xa0\x9b\xc3\x8e\x39\x57\x4c\x50\x4c\x0c\x01\xd8\xa2\xe6\x9e\xda\xc7\xc6\xcd\xc2\x10\x9c\xb9\xa6\xe7\x5a\xcb\x2e\xc8\x42\xff\xea\x90\x6e\x30\x82\x7d\x02\x0c\xe2\x18\x25\x1f\x7d\xad\x38\x73\x8b\xd8\x21\x31\x05\x7d\xee\x9c\x0e\x58\xd1\x71\x38\xa3\xc9\x81\xd7\xb4\x2a\x98\xa5\x9a\xa8\x11\xcf\x23\x9e\xc2\xac\x23\x27\x3a\x88\xc6\x0d\x85\xc3\x6e\x2a\x1c\x6e\x4b\xe1\x70\x43\x3c\x7b\x1a\x38\x9a\xc3\x2f\x08\xc1\xce\x61\x38\xe8\xc0\x50\x55\xd0\x8f\xcd\x53\x77\xae\xd9\x6b\x4d\xdd\x39\xc0\xab\x20\x53\x2e\x12\x3f\x9a\xce\x0f\x69\x6a\xd6\x5d\x1b\x64\x21\xcf\xf3\x35\x62\x59\xb6\xc0\x3e\xb9\xaf\x1c\xb1\x4c\x83\x7d\x4e\x55\x85\xb8\x86\x4d\x1c\xd5\x61\x0f\x84\xca\x4b\xe2\x1a\xa8\x08\xe2\x77\x47\x75\x84\x4a\x09\x41\x15\xe0\xb5\x42\x1c\xd5\xad\xd6\x61\xdf\xdf\xb9\x04\x78\xab\x47\x3c\xd7\xec\x01\x40\xaf\x02\x60\x15\x00\xe8\x42\xf9\x52\x07\xd0\x7a\x00\xd0\x19\x00\xa0\x6f\xe4\xcf\xab\x00\x2c\x54\x05\xb4\x7c\xcb\x9a\x12\xd7\xf4\xee\xd7\x06\x00\x6e\xa3\x2e\x63\x9b\x15\xc0\x07\xc0\xbd\xd0\x54\x9c\x00\x93\x68\x20\xa0\x11\xcb\x06\x66\x09\x9f\x5c\x72\x03\x2e\x8a\x9f\xfa\x2b\x9d\x39\xd9\xe1\x27\x77\xca\xb3\xd0\x0d\xd1\x32\xd7\xc4\x70\xed\xa9\x42\x54\xdd\x26\xb6\xed\x29\x44\xf7\x00\x8f\xba\xad\x10\x17\x84\x35\xc7\x31\x15\x62\x69\x26\xb1\x34\x10\x70\x35\xd5\x26\x8e\x0b\xdf\x1c\xc7\x24\x2e\x40\xab\xda\x0e\xd4\x06\x82\x56\x0d\xa2\xab\x36\xeb\x94\x58\x2e\xf0\x5c\xd7\x78\xd5\x82\x4d\x70\x89\x65\x0b\xf8\xc8\xd2\xf9\x27\x7b\x61\x0b\x16\x80\xed\x23\xf0\x02\xfb\xcc\xbd\x08\x61\xb0\x3a\xd1\x35\x7d\xed\x12\xd3\x30\x5f\xdb\xc4\xd2\x51\x3c\xb3\x6d\x47\xb0\x61\x93\x35\xf1\x88\x03\xde\x76\xf7\x09\x4d\x6a\x6d\x54\x61\x3f\x3a\x43\x18\xa0\xdc\x76\x75\x85\xe8\x16\xe0\x5c\xc7\xfd\xcb\x05\x94\x3b\xa6\x47\x34\x0d\xc4\x78\xc7\x21\xb6\xe6\x2a\xc4\xd2\x6d\xe2\x58\x9e\x42\x6c\xd5\x24\x86\xae\x29\x44\x33\x75\xb4\x2c\xea\x1a\xec\x72\xba\xea\xe5\x5f\x81\x88\x55\xdb\x84\x9e\x54\x47\x21\x96\x83\x6a\xb6\x81\x3a\x35\x92\x85\x8a\xbb\xa3\x8a\xbb\x23\x90\x88\x4e\x2c\x13\xe6\xc1\x56\x1d\x74\x4d\x35\xe6\x0a\xda\x5c\x88\xe3\x9a\x0a\x31\x6d\x34\x86\x6a\x1a\x03\x91\x7f\xd7\x89\x0e\xab\x78\x37\x27\x98\xc6\x8b\x45\x70\xc0\x43\x1d\xb4\xd4\x7b\x38\x6d\x2e\xcc\xa7\xcb\x0d\x0b\x68\x41\x42\xf1\x51\x77\x5f\x35\xde\x09\x9a\x2e\x78\xc4\x40\xd2\xad\xbf\xc0\x4a\xec\xb3\xab\x12\x76\x75\xb3\x30\x89\x67\x1b\x0a\x12\xff\x6b\x10\x46\x5d\x53\x70\x89\x6d\xa2\x67\x80\xc1\x5d\x32\x9c\x54\x31\xf1\x8d\x06\x6f\x14\xac\x22\x18\x20\x26\x1d\x1b\x6b\x9c\xf4\xb9\x49\x54\xc3\x79\x0d\x13\x6a\x83\x6a\x68\x9b\xc0\xd0\xd0\xa7\x05\xf1\xaa\xf3\x6f\x29\xb6\xa3\x60\x3b\x02\xeb\x9a\xb5\xa3\x6b\x6b\x46\xee\x73\x05\x9b\x1a\xc4\x89\x97\xab\x30\x54\x12\x16\xd9\x74\xc0\xe3\x20\xc3\x73\x05\x97\xa8\x68\x09\xf1\x74\xdc\x69\x4c\x53\x21\xb6\xcd\xbe\xc0\x87\x80\xbe\x72\xf9\x23\xa1\x78\x4e\x1c\x66\xee\x31\x4d\x34\xa6\xe7\xef\x04\x14\xe1\x94\xfc\x59\x59\x69\xc1\xbe\xa9\xc4\xb2\x51\xcc\xf3\xf4\x8e\x42\x0a\xb6\xda\x0b\x85\xb6\x1d\x0c\xe6\x0d\xc1\xbb\x23\x9e\xad\xe0\xd1\xb2\x46\x0c\x43\x47\xa6\xe3\x2a\x3a\x31\xf3\x7f\xbe\x4e\x0c\x0f\x48\xc7\xe0\x0e\xdd\x50\x12\xc5\x45\xdb\x5c\x3b\xc4\x45\x1e\x68\x78\x58\x80\x2f\x7a\x86\x2f\xe4\x07\xf5\x17\x1a\xd1\x15\xac\x78\x0a\x88\xc2\xa6\x91\xf3\x18\xae\x5d\x29\xa1\xc3\x7a\x5e\x38\x84\x39\xa7\xec\xc6\xf9\x1e\xa3\xdd\x86\x75\x5d\x31\x88\xa5\x9a\xa7\x1e\xb0\x6c\xd8\x55\x3c\xf8\x30\x55\x17\x38\x94\x0d\x65\x35\xf4\xb0\x36\x1d\xfd\xa3\x66\x11\xcb\x30\x05\x8b\x98\x06\x77\x98\x71\xe1\xc7\x1c\x50\x73\x6a\x14\x41\x10\xf9\xbf\x53\x87\xb8\x73\x8d\xe8\x53\x62\xe8\x26\x51\x75\x93\x58\x8e\x4d\x34\x03\x97\x2f\x31\x1c\x3d\x25\x86\x0d\x9d\xc3\x77\x78\xb6\x76\x88\x65\xd8\x88\x3f\x5d\x60\x9f\x05\x7e\x18\xea\x85\x5e\xdc\xee\x5a\x26\x73\x1a\x2e\x1f\xa9\x57\x07\x70\x87\x6a\xa8\x90\x4e\x54\x47\x71\x88\x63\x85\x0a\xf1\x88\xa7\xe3\xa1\x88\x25\x68\x3a\xf1\x04\xcd\x40\x67\x4d\xfc\xcb\xc2\xc5\x48\xee\x60\x66\x5a\x8a\x4e\x60\x87\xd5\x1c\xe0\x90\x46\xa8\x11\x1d\xe6\x4f\xb7\xa7\xc4\x70\x14\xc4\xb5\xa7\x10\x17\xff\x30\xa7\xa1\x9a\x0c\x98\x16\xf6\xf8\x63\x10\x0f\x61\x67\x84\xed\xda\x53\x4c\xc1\x54\xcc\xd4\xc4\x1f\x82\x29\xa0\x0f\xaf\xeb\x42\x83\xc0\x07\x5d\x20\x19\xd8\x47\xad\x7b\x79\xc6\x56\xe7\xe5\x21\x02\xd7\xdc\x39\x22\x56\x41\xcc\x6a\x8a\x66\x1f\xc8\xa2\xbe\xaf\x4b\x26\xc8\x76\xe6\x94\x61\x55\x55\xcc\x02\xb3\x73\xbd\xee\x1f\x98\xe6\xce\x85\x53\x10\xd7\x61\x57\x76\x2c\xc5\x10\x2c\x2c\xa7\xe3\x59\x2c\xec\x0f\x82\xa1\x58\x02\x9b\x24\x85\x35\x35\xc4\x8f\x65\x1e\xa4\x59\x9c\x5c\x3f\xe0\x89\xac\x2a\xa8\x6b\x73\x6e\x9e\xaa\xc7\xea\xcd\xc2\x12\xf4\xb5\x71\xac\xaf\xb5\xb9\x79\x8a\x36\x5e\x1d\x1f\x98\xf8\xc0\x3c\xae\x7b\x9d\x05\xd1\x65\xfc\x60\x0b\x74\x6a\x81\xc8\x29\xe0\xf4\xc2\xdc\xda\x6c\x9e\x53\x25\xff\xa1\xe0\xef\x8f\xec\x44\xdd\xe4\x2e\xb8\x36\xbe\x2c\x96\x29\xb3\x35\xa8\x44\xd5\x98\x7a\x80\x27\x05\x56\x1e\xcf\x42\x4c\xd3\x50\x88\xe7\x5a\x53\x85\x49\x79\x3a\x08\x6e\xc0\x4b\x75\x0f\x9e\xdb\x58\x82\xfb\xd4\x4f\x15\x62\xb8\x16\x51\xd1\x07\xdd\xb5\x88\xe6\x5a\x58\x17\x8a\xf8\xb0\x94\xd1\xac\x66\x39\x95\xb6\xe1\x75\x1e\x01\x61\x13\x63\x0a\xb2\x1d\x6c\x21\x44\xb3\xd0\x74\xc5\xcb\xa0\x12\x45\x74\xd7\x22\x76\xf1\xc4\xe4\xb1\x29\xde\x14\x7a\x85\xdd\xc0\x86\xfe\xa0\xa2\x07\x5f\xa0\x5c\x0e\x32\x03\xd7\xce\x47\x63\x1f\xa3\x11\xe9\x54\xd3\xd7\x30\xee\x1b\x58\x53\x0e\x71\x00\x48\x03\x78\x12\x7e\x72\x77\x7d\x53\x41\x69\xd7\x24\x1a\x34\xe1\x98\x06\x3c\x11\x88\xee\x68\x20\xfd\xba\x88\x0b\x2c\x97\xe2\x4b\x4d\x77\xf1\xb8\x6e\x0a\xa2\x31\x94\x22\x26\xf4\x8b\x47\x77\x9a\xee\x11\xc7\xd4\xb1\x82\xdf\xb2\xe9\xe0\x41\x9e\xee\x4e\xe1\xb5\x8a\x3d\xc1\x60\x1c\x3c\xe7\xeb\xb3\x55\x75\xb1\xa6\x1e\xea\x7b\x08\x37\xb8\x43\x10\x20\x1e\x9f\x81\x6e\xc5\xea\xa8\x8a\xcb\x43\x35\x6c\xdd\xe5\xdf\x5d\x10\x5f\x85\xbc\x0b\x83\xd8\x96\x23\x14\x6f\x8a\x4f\x5e\x9f\xfd\x52\x98\x29\x8c\x7d\x67\xef\xd1\x87\x46\xc1\xda\xf0\x44\xf7\x94\xe2\xad\xee\x01\x1d\x58\xf9\x6a\x80\x27\xee\xbf\xf5\x62\x70\x9f\xe2\x62\x28\x09\x3f\xa4\x7e\x12\x1d\x8e\xd0\x89\xa9\x7a\x82\x45\x74\xc7\x08\x5d\xe2\x69\x96\x80\xe1\x94\x53\x62\xda\x44\x57\x4d\x62\x3b\x36\xb1\x41\x72\x75\x40\x74\xd0\x54\x10\x57\x89\xa9\x3b\xa0\xd5\xda\xc4\x53\x41\xd0\xcd\x5f\x81\x38\xa9\xc1\x0e\x4e\x0c\x57\x5b\x1b\xc4\xb1\x1d\x10\x3c\x34\x13\x34\x5f\xe8\xc2\x53\x88\x86\xfe\x37\x38\x7b\x0e\xaa\xc4\xa6\x61\x12\xdb\x30\x18\xc2\x5d\x0b\x84\x14\x07\xd0\x69\x2a\xc4\xb5\x2c\x62\xa9\x20\xea\x1b\x1e\xb1\x51\xf7\x52\x1d\x83\x18\x36\x88\x4d\xa6\x0d\x3a\x17\x6c\xd8\x9e\x6d\xe0\x37\x8d\xb0\xfd\xd5\x45\x95\xdb\xc0\x37\x3a\x2a\xda\x0a\x9e\xde\x11\x0d\x95\x78\x55\x03\xed\x59\xc3\x56\x15\x6c\x96\x18\x30\xc3\xba\xa5\x10\x0b\xa8\xc8\x52\x71\xfa\x11\x00\xd7\x07\x3d\x1f\xfe\xe5\x54\xa2\x01\xac\x86\x6b\xad\x51\xa7\x35\x43\x54\xdb\x89\x67\x5a\x27\x16\x41\x89\xcf\xc2\xc5\x41\x2c\x68\xcf\xc5\x13\x3d\xd3\xb0\x51\xb1\x47\x8b\x83\x61\xfb\x20\xa0\xeb\x02\xfb\x64\x3a\x2d\x51\xd1\x02\xe0\x69\xfa\x14\xd6\x2a\xd1\x5c\x87\xa8\x1a\x7a\x27\xa9\xaa\x43\x2c\xdb\xf6\x0d\xe2\x32\xcd\xd5\xce\xa9\x88\xa8\x86\x4e\x74\xd3\x99\xc3\x3a\x04\x44\xab\xaa\x49\x54\xd5\x80\x9f\x44\xd5\x6c\xa2\x3a\x26\xb6\xa6\x5a\x3a\x51\x41\x4d\xf6\xd0\x70\xa1\x79\xec\x95\x66\xd9\x44\x73\x6d\x62\x18\x06\x31\x74\x87\x98\x9e\x43\x0c\x62\x58\xc0\x9c\x88\x65\x18\xc4\x83\xcf\x13\x16\x13\xaa\xab\x30\x2c\xd3\x46\x82\xd5\x61\xad\x59\x18\x6c\x0b\x1a\x9e\x05\x48\x73\x51\x29\xe1\x31\xa2\x16\x0c\xd8\x70\xf0\x5b\x08\xba\x89\x09\x8b\xd1\x01\xa9\x16\x35\x1b\xd5\x50\x88\x6e\xdb\xc4\x83\x11\xba\x9a\x4e\x34\x4d\x87\x27\x44\x73\x35\x85\x58\x48\x7b\x8e\x42\x5c\x15\x90\x65\xeb\xe8\xef\xa0\x17\x9c\x4a\xd5\x1c\x85\x98\x68\xa3\x6a\x21\xd2\x40\x23\x8a\xe7\xd8\x53\x20\x35\x80\xd0\x31\x88\xa5\xa3\xb2\x66\x6a\xc4\x33\xe1\x9b\x6d\xbb\xa1\xa2\x11\x57\x03\xe1\x5a\x75\x5f\x83\x4c\x66\x0b\x1a\x48\xdf\xc8\xc6\x55\xe2\xd8\x36\xfb\x62\x98\xc8\x13\x74\x07\x8a\x28\x40\xf0\x40\xef\x0a\xa3\x77\x5c\x30\x0a\x5f\x30\x3a\x10\x9b\xa6\xd9\xc4\x02\x7c\xc0\x17\x17\xa8\xe6\x66\x01\x34\xae\x0b\x06\x71\x4c\x2b\x54\x2c\x14\x4d\x89\x63\x32\xef\x5c\x93\xe8\xba\x13\xba\xc4\xc1\x63\x64\xd7\xc5\x40\x27\x9b\x40\x49\x7c\x88\xe1\xce\x02\xe0\x87\x78\x86\x73\x82\xdc\xcb\x0a\x89\xe7\x38\xc4\xd2\x5c\x34\x81\x78\xa6\x60\x12\xc3\xd6\x43\xd8\x02\xd0\xc4\xa7\xea\x96\xaf\x11\x55\x05\xd4\xa8\xb9\x87\x87\xc2\xc0\x39\x01\xc2\x42\x87\x1f\x47\x0b\x01\x95\x06\x0f\x18\xb4\x7d\x62\x59\x06\xfc\x2b\x69\xd2\x25\xaa\xee\x00\xa7\x06\xfd\xc6\x23\x9a\xea\x10\x5d\x37\x89\x61\xb9\xc4\x84\xef\xa6\x49\x34\xc7\x25\x36\x31\xd0\xf0\xaa\x5a\x1e\xb1\x40\xe7\xd1\x1c\x62\x68\x40\xed\x9a\x0d\x70\xc2\xe0\x2d\x58\xae\x9a\x9e\xea\xc4\x06\x76\xc0\x1e\x19\x0a\x3c\x03\x5e\xa3\x20\x35\xba\x40\x4e\x86\x61\x62\x5b\x2e\xbe\x24\xba\x05\x8b\xce\x35\x30\xec\x9a\x18\xa0\x86\xc2\x2b\x53\x75\x3a\x00\xf6\x14\x80\x78\xad\xc0\x1a\xd8\xe6\x64\x01\x42\xb9\x4d\x1c\x4b\xd0\x1c\xc1\x0e\x87\xbb\x5a\x84\x41\xf4\xf9\x80\x47\x65\xaa\x63\x32\xe9\xd4\x0a\x41\x2f\xc0\x70\x6b\xdd\x33\x7d\x83\xa8\xb8\xd6\xd5\x62\xad\x03\x1e\x88\xa7\xdb\x53\xc6\x53\x40\xff\xb0\x6d\x0d\xf0\x61\x60\x4d\x58\x5f\x0e\x28\x9f\x0e\xf1\x9c\x29\xb1\x4d\x07\x98\x2a\x61\xec\x47\x85\x05\x01\x2a\xb8\x8a\x9b\xa7\xeb\x02\x07\x53\x71\x51\xc1\x26\xa9\x61\xb7\x26\x82\xe0\x00\xfd\xe8\xae\x3e\x55\x88\x0d\x6b\x0e\xd7\x31\x5b\xa7\x0c\x04\x5c\xb0\xae\xc1\x20\x00\xce\x67\xa8\xc0\x8d\x75\x13\x1b\x0a\xf1\x29\x7c\x68\xaf\x0d\x62\x30\xdb\x19\xf2\x2d\xf8\xa2\x69\x8e\x80\xc7\xc6\x3a\x5b\x55\xae\x0b\x30\xc1\x7a\xb5\x0d\x1d\x46\x87\x7d\x84\x88\x09\xa5\x07\x13\xa8\xb6\x2a\x88\x0a\x86\x09\x01\x31\x01\x88\x60\xc8\x03\x3c\x10\xcf\x01\x54\xf8\x06\xd1\x54\xa0\x34\xad\x5c\x04\x1e\x68\xda\x86\x6a\xb1\xfe\x0d\x04\x1f\xfa\xc7\x95\x8c\x68\x40\x2c\x28\x0c\x0b\x04\x70\x6c\xeb\x68\x5d\x45\x43\x8b\x9b\xf7\x6f\xb8\x0c\x0d\xc8\x99\x3c\x44\x27\xd4\x46\x24\xe4\xbe\x1d\xda\x14\xea\x12\x1b\x17\x2f\xba\x2a\x5b\x4e\xde\x86\xc9\x66\x42\x07\x04\x7a\x38\x13\x3a\x8e\x0a\xdb\x5f\x28\x1e\x31\x0d\x47\x30\x89\x6b\x84\x0a\xee\xc3\xba\xe6\x33\x86\xc2\xd9\x0a\x1b\x8d\x6e\x38\x44\xc7\x06\x71\xe1\xdb\xc5\x30\x75\xd5\x23\x9a\x6d\x13\xd7\x35\xe1\x5f\xfe\x18\xb8\xb4\x86\xb3\xab\x7b\x28\x7b\x58\x28\x7b\xa8\xb8\xfd\xc2\x64\x82\xb4\xa2\x22\xbf\x55\xf5\x42\x30\x32\x54\x17\xb8\x3c\x71\x3d\x60\x46\x7c\xb1\xc1\x66\x0a\xfb\x25\xa6\x2a\xd0\xf9\x27\x7f\x67\xaa\x20\xca\x98\x6e\x08\xba\x2e\x80\xff\x4a\x23\x2a\xe2\x44\x2d\x4e\x1f\x5c\xdc\x4d\x34\x03\xb6\x15\x55\x43\x58\x2c\xa2\x21\x1c\x44\xf7\x5c\xb6\x20\x70\x4a\xbd\x16\x4c\x2a\xc2\x44\x1c\x0b\x0f\x98\x75\xd7\x81\x21\x10\x0b\x44\x0b\x78\x6c\xc2\x0c\xa0\xcd\xdd\xd6\x40\x3c\x83\xfd\xc5\xf3\x50\x62\xd0\x3d\x78\xef\xe2\x5f\x44\x81\x50\xa0\x20\xc7\x00\x10\x00\x5a\x16\x75\xd8\xb0\x74\x15\xb8\x95\x6a\x33\x24\x98\x96\x9d\x63\x03\x41\x06\xc1\x41\x83\x31\xa2\x90\x61\xc0\x72\x72\x55\x67\xe1\x12\xd5\xb2\x14\x87\x78\xa6\x89\x2b\x42\x43\x1a\xd7\x10\x0d\x96\xcb\xb8\x5b\x6e\x0d\xb3\x89\xa1\x5b\x82\xb5\x0d\x0d\x36\x52\x8c\xeb\xee\xc0\x83\x01\x1b\xa1\x06\xa0\x00\x24\x00\x48\x08\xb8\x07\x61\x68\x0a\x4a\x06\x6c\x4a\x2e\xd1\x3c\x18\xae\x07\x74\x03\x42\x9c\xe1\xfa\x0d\xe2\x11\xd8\xa1\x45\x8b\x7a\x04\xa0\x1e\x14\xa2\xa6\x15\xd4\xe5\x98\x83\xde\x75\x10\xf2\x18\xaa\x72\x4c\x11\xc7\xf2\xab\x74\x83\xf5\xbb\xc9\x46\x41\x46\x05\x54\x03\x10\x03\xe4\x53\xa2\xeb\x44\x37\x40\xa5\xb2\x88\x61\x99\xc4\xf1\x0c\xfc\xbb\x65\xe6\x3c\xa4\x1b\x77\xd7\xc4\xe9\xae\xc3\xe9\xde\x42\xd7\x6f\x7c\xb5\xcb\x22\x19\xc6\xfe\x2c\x88\xae\x86\xdb\x62\xb0\xc8\xf8\x2b\xec\x1a\x5d\x05\x35\xcf\xf3\x5e\xe0\x5b\xb1\x73\x3b\xc1\xcc\xd8\x13\x91\x25\x59\x5f\x25\x54\x09\xa6\x71\xa4\x70\x28\xc4\x1f\x7f\x98\xd1\xcb\x94\x6f\x28\x69\x96\xc4\x9f\x69\x53\x81\x66\x4f\x15\x6e\x12\x32\xf2\xe1\x45\x71\x44\x45\x21\x98\x4d\x44\x5f\xcc\xd5\x5d\x2b\xb4\x05\x63\xed\x86\x8a\x2d\x18\x8a\xad\x18\xa7\x2e\x33\xf5\xb0\x3e\x56\x29\x15\x10\xd0\xf1\x3c\xa1\x97\x13\xf1\x3f\xfc\x1d\xd0\x29\x17\x7e\x4a\xa1\x81\xfd\x6b\x2e\x93\xf8\x2a\xa1\x69\x5a\xd5\xf5\x31\x80\x63\x1a\xc6\x29\x9d\x1d\xd0\x7d\x48\x70\xe7\x8a\x76\x6a\xa3\x95\xce\xb1\xd9\x2e\x66\xc1\x7f\x1f\x1d\xc1\x00\x16\xed\x08\xf6\x5a\x3f\xb6\xdb\xce\xcf\x6a\xf3\xb8\x5e\x6f\x1e\xd7\x43\x91\x66\xf0\xab\x41\x5c\xc7\x16\x2c\xd0\x8b\x8e\x3d\x62\x3a\xe8\x78\xa6\x79\xa0\x71\x21\x0f\x37\x0c\x5d\xc1\xef\x37\xef\x40\x07\x10\xdc\x63\x97\x78\x08\x9f\x46\x1c\x54\xab\x3c\xd0\xb0\x60\x43\xc3\xbf\xf8\x54\x15\xd8\x57\xc3\x13\xf8\xbb\x01\x19\x8b\x10\x9f\xb9\xf3\xf3\x21\xf3\x40\xe9\x1a\x71\xdc\x13\x90\x6a\x05\x4b\x30\x04\x9b\xe8\x7a\x08\x92\x37\x48\xa5\xe6\x6b\xf4\x2f\x76\x89\x2d\x98\x82\x07\x22\x18\x48\x3f\x9d\xc8\x24\x3a\x1e\xfc\x73\xc5\xd1\x06\xf1\x50\x3f\xd1\x3c\xe2\xb8\x02\xec\xf3\xbc\x9f\x9b\x77\x2e\xf1\x84\x7b\xe0\xe7\xd8\x23\xb6\x7d\xa2\xab\xe8\x38\x6d\xb6\xe7\xaa\x87\x2c\x14\x9d\x58\x36\x9a\x5a\xf0\xb8\xde\x33\x14\x93\xa0\xf4\x6d\x9e\x00\x20\x20\x10\x0f\x70\x9b\x61\xc1\x48\x4b\x7a\xc0\x48\x8c\x41\x94\x3c\xd7\x88\x77\x0f\x54\x1d\x8a\xfa\xd1\x5b\xc5\x3e\xd5\xd4\xb9\x06\x4d\xe4\xcb\x41\x01\x69\xd0\xd8\xb1\x1c\x76\xa1\x14\xaf\xec\x51\x96\xfe\x2a\x2d\x4c\x80\x0f\x61\x29\xd7\x04\x6d\x6d\xcf\xf5\x53\xed\x58\xbb\x59\x98\x82\xca\x7f\xd4\xd2\x15\xe5\xb0\x84\xfe\xf5\x83\x83\x12\xda\x0a\xf2\xea\x6a\xff\x0b\x1a\xad\x0e\x45\x57\xa6\xa0\xa1\x73\x91\xa2\x1f\x9b\x2c\x21\x9e\x55\xff\xe9\xac\xf5\xb9\x66\x9f\xda\xc7\xbb\x23\x90\x16\x41\xb4\x4a\x1f\xe9\x69\x1e\x46\x17\x38\x6b\x45\x9f\x6b\xea\x00\xe6\x59\x1b\xca\xa1\x2d\xcf\x8e\xa0\x69\x6b\x04\x44\xd1\x8f\x9d\x9b\x85\xa5\x78\xff\xa4\xe3\xaf\x61\x68\x38\x78\x42\x12\xcd\x38\xb6\xd6\x2c\xe9\xc6\x30\x08\x1e\x2a\x73\xc8\xc1\x72\x5e\xe8\x82\xa6\xee\x43\x5e\x71\x42\x15\xcc\x7e\x1b\x47\x99\x7f\xb8\x31\xd9\x82\xa6\x36\x47\x94\xe6\x23\x29\x06\x50\x01\x5c\xd3\x85\xfd\x2a\x28\xf6\x7e\x15\x06\x61\x62\x4d\x93\x2c\x98\x1e\x10\x0f\x9a\x2e\xb8\x8d\x59\x4b\x0b\x98\x0a\xb8\x85\x1c\x6e\x58\x41\xfa\x5e\x68\x50\x85\xd6\x9e\xf9\x2d\x58\x58\x86\x8f\x9a\x71\xce\x15\x73\xcd\xf3\xa4\x32\x22\x37\x31\x01\xae\x39\x37\x07\xd0\x7a\x75\x6c\x07\x3f\xc3\x33\x04\xf4\xd1\x00\xb0\xf4\x39\x00\x89\xb1\x49\xdc\x15\xfb\xd4\xb9\x59\x28\x1a\xcb\x82\xfb\x08\x99\x2b\x22\xe6\x01\x78\xeb\x5c\x41\x5b\xa8\x8e\x71\x2c\x80\x09\x1b\xa3\x57\x87\x04\x70\x20\x48\x0f\xc7\x6c\xf7\x0e\x38\xea\x63\xb5\xdf\x42\x90\xff\x58\xd1\xd5\xc1\xa2\xbd\x35\x4f\xf0\x8e\x75\xd8\xcc\x9d\x53\x0f\xa5\xa7\xfc\x97\x79\xf3\x4e\x17\x34\x7b\x8e\x41\xc0\xc7\xcc\x83\x48\x15\xcc\xb5\x62\x87\x0a\xa8\x4d\x96\xb0\x33\xa9\x41\x42\x2f\x13\x9a\xce\x0f\x06\xab\x43\x6c\x4b\xb0\x89\x61\xbd\x72\x30\x9d\x2a\xfb\xe4\x36\x2a\x5d\x30\x8b\x98\x54\x87\x78\x1e\xc6\x87\xb2\x6f\x48\xeb\x8e\x80\x15\x3c\xc1\x9d\x1a\xc4\x01\xd5\xcd\x66\xc1\xc3\x96\x85\xae\x07\x0a\x90\x1c\x51\xdd\x57\x16\x14\xc2\x8f\xd2\x97\xd3\x9d\x2a\x06\x31\x60\x01\x81\xe2\x62\x7b\x8a\xad\xd8\x29\xfb\x22\xd8\x8a\x5d\x84\xfe\x13\xcd\x64\xc1\xa7\x78\xe4\xe3\xb8\x27\x9a\x01\xec\xc7\x39\x45\xcb\xb5\x61\x81\xc6\xb0\x33\x57\x50\xb2\xfa\xb6\xa3\xd3\x1e\xdb\x45\xb2\x8a\xc4\x1f\x7f\xb8\xaa\xd9\x57\x3a\xbc\x17\x7e\xfc\x81\xf1\x3a\x61\xfa\x75\x22\x6a\xba\x28\x4c\xaf\xd9\xdf\x04\x05\xfe\x21\x46\x1c\x13\x06\xd3\xdf\x8a\x35\xac\x15\x7d\xcb\x40\x6a\x06\x98\xfe\x9e\xfa\x8d\x65\x57\x05\xb6\x53\xea\x27\xd3\x79\x33\xed\x70\x35\xeb\x70\x2b\xe9\xb0\x00\xcf\xf6\x3d\xc2\x66\xfb\x10\x71\xbc\x50\x21\xba\xab\x10\xdd\x79\x65\x13\xd3\xd1\x04\xf6\xc9\xa9\xd8\xc0\x04\x24\xf9\x3f\x20\x3f\x15\xbf\x69\x06\xd0\x18\x53\x7f\x55\x4f\x01\x26\x6d\x12\x1d\x5d\xf4\x9d\x90\xe8\x0e\xd1\xdd\x35\xb4\x6d\x09\x26\xf1\xbc\x13\xe6\x64\xae\xd9\x21\x68\xff\x9e\x62\x31\xb9\xe7\xb5\x89\xe7\x6a\x9a\xa0\x0b\x2e\x46\x75\x40\xd3\x1f\xf1\x61\x91\xf8\x44\x13\xf2\x42\xf0\x00\x8b\xf1\xef\x5a\x2d\xe5\x44\x4a\xb3\x2c\x88\xae\x0e\x17\x40\xed\x61\x0a\x4e\x9d\x78\xee\x94\xa8\xa6\x42\x0c\xf4\x57\x24\x36\x66\xf0\x25\x9e\x8b\x86\x64\x53\x21\xaa\x81\x6e\xab\xfc\x69\xa8\x13\xf4\x2e\xb7\xad\x29\xd1\x3c\x85\x68\x16\x1e\xf3\x98\x3a\xd1\x74\xa8\x1c\x2a\xa0\x9f\x9b\xf6\x54\xc1\x07\xba\xae\xe0\x89\x3a\xb4\x81\xe7\xe9\xb0\x2c\x01\x53\x53\x85\x58\x3a\xba\x57\x10\x34\xb3\x1a\x18\x45\x8e\x3d\x60\x02\x0e\x9d\xd8\xd6\x2b\x62\xba\x6e\x99\xf3\x58\xd0\x4c\x01\x76\xe9\xa9\x42\x74\x0b\x1d\x48\x6c\xa2\xb9\x0a\x31\x3d\x62\xea\x58\x4b\x80\x5a\xec\x94\x0a\xa3\x6e\x31\xeb\x20\x36\x4c\x98\xd5\xdc\xf4\x14\xe8\x59\x37\x14\x9c\x54\xd3\x83\x66\xa0\x34\xc0\x25\xe4\x70\x1b\x08\xb6\x0a\x53\x4a\x34\x1d\x06\x05\x83\x16\x34\xd6\x38\xfa\xf4\xe3\x6b\xdb\xc2\x3f\x1e\xba\x3f\x18\x06\x51\x0d\x62\xdb\xec\x09\x74\x56\x56\xd1\x3c\xa2\x59\x0a\xd1\x81\x5b\x2a\x79\x93\xac\x3b\xf8\xa5\xeb\xc4\xf0\x88\xc1\x01\xe1\x50\x12\x4b\xc7\x4c\x0c\xaa\x0b\xcc\x33\x1f\x43\x31\x48\xe8\x4c\x37\x59\x93\x0c\x03\x73\x74\x3a\x41\x0b\x19\xba\x35\x40\x33\x80\x98\x1c\x9b\xec\xdc\x0a\x8f\x0a\x34\x47\x61\x49\xe5\x38\xc6\xf9\x94\x10\x1d\x68\x1d\xb1\x22\xe4\xd3\xc5\x67\x93\x4f\x26\x12\x01\xb4\x5b\x4c\x76\x4e\x0d\x98\xbd\x41\xb3\x08\xea\x47\x9e\x21\xa8\x20\xd8\xe0\x6a\x51\xf8\x49\x6a\x9a\xff\xc8\xa3\xd8\x05\x83\x05\xe9\x3b\x42\xfe\x30\xff\x91\xbf\xdd\x29\x7e\xa4\x99\x7f\xe8\x58\x33\xe6\xd9\xef\x9c\x68\x2e\xd1\x5c\x41\xd7\xf0\xac\xc6\x54\x1c\xa2\x1a\x27\xba\x2e\x78\x78\x28\xea\x20\xed\xdb\x1a\xbb\x29\xc0\x23\x9a\x27\xb8\xc4\x36\x04\xfe\xde\x22\x18\x0d\xe0\x18\x27\x16\xc6\x29\xec\x4e\xfa\x85\x03\x39\x78\x98\x59\x03\x5c\x7d\x28\xb8\x79\x7c\x83\x23\xd4\xb0\x60\xd4\xb0\x90\xcf\xb8\x19\x2a\x06\x71\xf0\x8c\xd2\x11\x34\x8c\x3f\x85\xbd\x5b\x57\x74\xe2\xba\x82\xc9\xb2\xe9\x70\x17\x06\x2d\x44\x9b\xa2\x49\x54\xf4\x4f\x70\xe1\x25\x94\x15\xb0\x2c\xbc\xd0\x59\x56\x57\x6b\x40\xfe\x9a\x74\x75\xa1\x3c\xc0\xc5\x05\x9a\x26\x78\x61\x35\xd4\xdb\x35\x04\xcd\x3c\xd6\xdc\x53\x50\x16\x30\xf3\x34\xbb\xd3\x80\x49\x3c\x27\xc0\xde\x35\x4c\xc3\xbf\x07\xc4\x87\x4d\x4a\x06\x52\xbc\x15\xe6\xc9\x7f\xca\x60\x73\xcd\x11\x34\xfb\xd8\x64\x80\xab\x73\x8f\x68\x4e\xc8\xf4\x11\x06\xb9\x31\x20\xb3\x60\xfa\xc5\x5f\x3e\x88\xe5\x81\xed\x74\x27\x06\x80\x5e\x64\xc1\x39\x66\x79\x24\x6c\x96\x23\xe7\xe6\x9d\x0e\x93\xa1\xc0\x6b\xc5\x5c\x1b\xc7\x9a\xba\xd6\xe7\x0e\x51\xb5\xb5\x71\x02\xaf\x86\x41\x7f\x78\x6b\x01\x46\x95\xa9\x98\xa6\x40\xd1\xd7\xf0\x75\xae\x18\x27\x9a\x05\x94\x60\x22\xb8\x73\x80\xde\x13\x8c\x13\x10\x2c\x3c\x6f\x6e\x9c\x6a\xe6\x5c\x3f\x65\xdf\x4f\xbc\xdd\xb2\xbc\x98\x05\x34\x51\x68\x94\xd1\x64\x99\x04\xe9\x37\x72\x85\x3d\x4e\x1d\x6b\x47\x88\x39\x75\x69\xc4\xb1\x4e\xdd\x50\x71\x14\x53\x71\x04\x73\xed\x86\x98\x65\x4b\x31\xd7\xb0\xe0\x31\xd8\x5a\x20\x96\xa3\xc1\x36\xaa\x11\xcd\x34\x4e\x3d\x82\x19\x5d\x1d\x4c\xe3\x6a\xad\x0d\xe2\x31\xe1\x80\xbd\x75\x89\x15\xda\x8a\x81\x2e\x37\x02\xfc\x59\x1b\xc4\xd5\x35\x96\xec\x2c\xc4\x5c\xb3\x6a\xa8\x78\x82\xa5\x78\x8a\x75\xea\x84\x28\x52\x81\x64\xa6\x5b\x78\x37\x87\xba\x06\xb6\x83\x5e\xf5\x27\x9e\x00\x44\x63\x86\x20\x42\x38\x7c\x23\x72\xb0\x75\xc7\x5a\xa3\xf3\x88\xc2\xfa\x50\x58\x8f\x6b\xf4\x28\x41\x36\xe3\xdc\xe4\x47\x9e\x2f\x7e\xfc\x01\x78\xaf\x9f\xfc\x57\xe2\xcf\x02\x1a\x65\xc2\x57\x6d\x22\x5a\xea\x7f\x8a\xc2\xb5\x36\x11\xe1\xef\x57\x3d\x7f\xa0\x4f\x44\x4d\x85\x6f\x50\xf7\x42\xfc\xf1\x87\x34\x8b\x97\x02\x7c\x28\x53\x98\xc6\x89\xf8\x1f\xbf\xfc\xf2\x8b\xc8\x9e\xc4\x4b\x7f\x1a\x64\xd7\x13\x91\xe8\x96\x28\xc4\x97\x97\x29\xcd\xb0\xc1\x17\x43\xeb\x55\xaa\x61\xb7\x40\x24\x75\x60\x8b\x33\xd9\x01\xda\xc6\xc2\x4f\x3f\x23\xe0\xd3\x9c\x02\xff\xe3\xf2\xf2\x52\xec\x3c\x95\x85\x9e\xa0\x3c\x7b\xd9\xe5\x8e\xdd\xae\x80\x74\xc3\x8a\xae\x92\x70\xf4\x1f\x17\x92\x28\xd4\xc6\x02\x0d\xf2\x77\x53\xa9\x38\x6b\xae\xcd\xfa\x4d\x43\x67\x60\x8b\x21\xfe\xd6\x14\x1f\xdf\xb4\x0a\xb6\x12\xa6\x7e\x62\x09\x6e\xb9\x2a\xf8\x52\xb9\x59\x10\x15\x64\xfb\x13\xcd\x15\x5c\x62\xad\x9d\x13\x4d\x67\x4f\x30\x20\xd5\x22\xd6\x5a\x29\x9e\x59\x7f\xd2\xe2\x93\xa0\xc5\x2c\xf1\x0f\x68\x62\xb1\x05\x07\xa5\x8a\x66\x02\x72\xb7\x95\x80\x9c\x95\x9b\xbb\xa7\xce\xcd\xc2\x50\xb4\x63\xeb\xd4\x9c\xff\xff\xec\xfd\xf9\x72\x1b\xb9\x9a\x20\x8a\xff\x3f\x4f\x81\x5f\x76\xcc\x9c\x73\xa2\x98\xb4\x48\x4a\x96\x54\x33\xbf\x39\x61\x4b\x76\xd9\x75\xbc\x1d\x4b\x76\x75\x95\xcb\xd1\x01\x66\x82\x24\xac\x24\x90\x05\x20\x45\xd1\x7d\x3b\xa2\xdf\x61\xde\xe1\x3e\xc4\xfd\xf3\x3e\x4a\x3f\xc9\x0d\x2c\xb9\x23\x37\x32\x49\xca\x2e\x55\x77\x1c\x8b\xb9\x20\x81\x0f\x1f\xbe\x7d\x99\x0c\x4f\x82\x91\x3b\x5a\x9c\x04\x23\x30\x7a\x31\x3a\xbf\x1d\x7f\x5d\xba\x8a\x5c\x8f\xce\xce\x3e\x9e\x2e\x46\xb7\xa3\x23\xf9\xe7\xc2\x1d\xa9\x5a\xba\x85\x4b\x0d\x2c\x48\x44\xa4\x37\xbb\xd7\x04\x8c\x4e\x6f\xc7\x0b\xe5\x28\x9c\x7c\x7d\x3d\x01\x27\xca\xa1\xf5\xf1\xe4\xc5\xe4\xeb\x72\x74\x04\x94\x0b\x71\x71\xa6\xec\xb0\x67\x26\xd3\xeb\xf1\x62\xfc\xf5\xf5\x29\x38\xbf\x1d\xbf\x98\x28\x6b\xed\x78\x31\xfe\x78\xfe\xe2\xf4\xeb\x72\x74\x0c\x94\x9c\x60\xdc\x62\x52\xdb\x76\x25\x7b\x3d\x5d\x1c\x7f\x3c\x51\x65\xaa\xd4\xfb\x8d\x3c\x36\x22\x33\x1a\xf4\x5c\x3c\x48\x95\xd5\x1d\xa9\x52\xbb\x4a\x76\x1c\x1f\xe9\x42\xe4\x4a\x8e\x54\x32\xd9\x38\x57\xd3\x58\x95\x01\x74\x8f\xb5\x85\xe1\xe4\xfc\xeb\xf2\x5c\x6a\xb5\xa3\xc9\x70\x74\x66\x64\xb8\x63\x95\xb3\x3c\x54\xb5\xe5\xcf\x26\x92\xc2\xe8\x0a\xe1\xa6\xc4\xf9\x51\x20\xdf\x53\x23\xb4\x5d\x70\xbf\xf5\x84\xc6\xe0\x64\x78\x36\x31\x93\x3d\xcf\xaf\x6d\xa2\x27\x7b\xaa\xcb\x0f\x9f\x4d\x80\xee\x19\x30\x3c\x9b\x68\xef\xff\x70\x72\x6c\x44\xec\x13\x5d\x24\x39\xae\x8d\xae\x44\xa9\x78\x5d\xb1\x30\xab\xbb\x11\x9c\x0d\x9b\x83\x72\xa3\xb0\xcf\xea\x67\x52\xe2\x58\xa8\x92\x46\xb7\xee\xe3\x85\xd4\xa8\xe4\xff\x81\x53\xb9\x86\xfe\xaa\x9f\x39\x11\x97\x5c\x8e\xcd\x21\xc1\x5f\x61\xbf\x75\x39\xc7\xe0\xf4\xa3\xca\xe1\x3b\x5b\x8c\x8f\x3e\x9e\xbe\x18\xa9\x72\x98\xa3\xf3\x17\xc7\xd9\xd6\x76\xc5\x5f\x1f\xcf\xb3\x3f\x4e\xf4\x0f\x89\x8e\x2f\xce\x72\x0f\x16\x7e\x65\x5f\x3b\x8b\x5f\x93\x87\x3c\x3e\xdc\x71\x2e\x67\xfa\xe7\xc7\xf3\xc5\x99\x8e\x00\x19\xbb\x67\x2a\xcd\x73\x61\x9a\x14\x82\xe3\xcc\xcf\x56\x10\xec\xd9\x45\x32\x06\xa3\xb1\xa7\x13\x3e\x55\x2d\xda\xd3\x73\x95\x48\x9b\xc9\xd7\xcc\xe4\x81\x26\xd9\xb5\xe0\xd8\x38\x09\xc7\xc3\xc7\xa7\xe0\xc8\x55\xa1\xbe\xc7\xee\x19\x38\x56\xf1\x11\xb7\xae\x4e\x04\x7d\xfc\xd8\x3d\x19\x4e\x26\xee\xb1\x7b\xd6\xa2\x7e\xb9\x5a\xde\x2e\xdc\x2d\x13\xd5\xdd\xa1\xb3\x77\xa5\xe8\xa1\x51\xfe\x61\x5d\x00\x54\x65\xb5\x4f\x8e\xc1\xc4\x9d\x80\x09\x77\x27\xae\xae\xc2\xeb\xea\x6a\xbd\xba\x1c\x6f\xa6\x74\xaf\xe2\x5b\x2a\x5f\x19\x1c\xab\xe0\x23\x29\xab\x8f\xb8\x4a\xe7\x50\x2a\xc2\xe8\x76\xf4\xe2\xf1\x6d\x33\xd3\xca\xc1\xe8\x9b\xea\x82\x01\x4e\xef\x01\xe0\x04\x82\xcb\x5e\xab\xce\x03\x15\x08\x36\x39\x53\xe5\x54\x8e\xcf\x55\x21\x02\xfd\xd7\x78\x78\x72\x35\x3a\x1d\x9e\x9d\x01\x55\xad\xe5\x04\x9c\x16\x1a\xc4\x1d\x81\x13\x55\xd1\x37\xa9\xf4\x3c\x1e\x9e\x9f\x6b\xe0\xa8\xbf\x26\x57\xa3\x23\x79\xe3\x04\x9c\x83\x93\x8b\x53\x79\x5d\xaa\x93\x8f\xe5\x1f\x8f\xc1\x19\x8f\x41\x24\x81\x74\x3a\x3c\x01\x13\xb9\x53\x2a\x4d\xe1\x64\x78\x32\x3c\x1f\xcb\x7f\xc0\x58\x6a\xb6\xa3\xf3\xc5\x68\xa4\xf5\x42\xb5\x31\x67\x2a\x9d\xf2\xd4\x95\x37\xe5\x53\xea\x0f\x5d\x5d\x58\x1e\xe8\x89\x1c\xe3\x54\x1b\x52\x95\xc1\x52\x0e\x70\x9a\xbc\x3f\x3c\x53\x47\x7a\xac\x27\x3a\x39\x75\x27\xc3\xe3\xd3\x8b\xd1\x91\x72\x2b\x0c\x47\xe0\x5c\x55\x70\x50\xac\xb0\xd9\x0c\x70\x8b\x39\x9e\xe2\x00\x8b\xb5\xbb\xc0\x7e\xaf\x5c\xfb\xd4\x1b\x0f\x4f\x25\x5c\x75\x9a\x82\xea\xed\x73\x04\x94\x59\x7b\x34\x31\xb5\x7e\x54\x71\x80\xb3\x49\x30\x1e\xaa\x5a\x0e\xe7\x72\x33\x4f\x54\x79\x99\xc7\xaa\xda\xba\xaa\x1f\x38\x19\x1e\x4f\xdc\x63\x5d\x58\xfc\x54\xfe\x35\x39\x77\x1f\xbb\xa7\xc3\x13\x77\x34\xd2\xff\xa8\xa4\xc6\xf1\xf0\xf4\x58\xaa\xe1\x93\xe1\xf9\xd9\xf0\x34\x18\x0f\x47\x8f\x55\x3a\x90\x04\xcd\xa9\x94\x6a\x94\xf3\x6e\x38\x39\x31\x55\x5a\xbe\xbe\x1e\x83\xe3\xe1\x58\x3e\x39\xd6\xd1\xee\xc3\xe3\xc7\xc3\xe3\xc7\x4f\x46\xa3\xe1\xd9\xd1\x31\x30\xff\x1c\x25\x7e\x43\x4f\x7e\x1e\xa8\x3a\x2f\x8f\xa5\xc8\x01\x54\x96\xb3\x4e\x69\xd5\x9e\x9c\x89\x3b\x9c\x18\x9b\xe4\xd9\x71\xa0\x6c\xe7\x3a\x86\x54\x35\x19\x1b\x8f\x74\x47\x4a\x30\x19\x8e\x4f\x81\xae\x2b\x37\x3e\xfd\xfa\x5a\x75\x73\x3a\x1f\x9e\x05\xa3\xa1\x49\x90\xf5\x74\xf2\xe2\xc8\x1d\x1e\x9d\xc9\xc5\xcb\x7f\x1e\x9f\x98\xc4\x13\x90\x22\x1e\x18\xaa\x2c\x34\x55\xfb\xe3\x68\xa2\x3d\x06\xf9\x61\x1e\x9f\x4a\x5c\x91\x42\xcf\xf0\x44\xa5\xed\xe8\x7f\xe4\xbe\xb8\x27\x49\xd0\xa6\xca\xb0\x3b\x1f\xaa\x12\x4f\x13\xf3\xe0\xd7\xe5\xb1\xca\x35\x38\x3d\x0b\x26\xc3\x91\x29\xee\x7e\x34\x76\x87\x23\x1d\xfd\x6a\x08\x89\x24\x1d\xee\x24\x70\x87\xca\x64\xd5\x05\xdf\xf8\x82\xae\xfa\xc4\xb7\xe3\xe1\xc9\xc5\x29\x30\x75\xfa\xa5\x60\xf8\x78\x54\xb7\x6d\xfc\x7c\x38\x3e\x55\xd9\xa3\x40\xa3\x91\x57\x81\x5e\xc6\xe4\xe3\x95\xc1\xc6\xf5\x1f\x40\x37\x8d\x89\x91\xdc\xd5\x7f\xb8\xaa\x4a\xe0\x91\xab\x54\x2d\x49\x5f\x32\x24\x36\x43\x3b\xc0\x24\xa1\xc7\x19\x78\x36\xc1\x71\x05\x19\xe9\x94\x16\xd0\x39\xda\x73\x32\x3c\x3a\x07\x47\x12\x11\x55\xfe\xe5\x48\x39\xf1\x46\xf2\xea\xab\xe1\xd1\x18\x3c\x1e\xaa\x52\x30\xe3\xe1\xd1\x89\x42\xbd\xd1\x44\xff\x73\x7e\x3b\x3c\x53\x99\x21\x47\x27\xc3\xa3\xe3\xe1\xd1\xb9\xfe\xff\xc5\x63\x79\x79\xa8\x93\xc1\x54\xca\xdc\xb1\xfe\xe7\xfc\xd6\x55\x2f\xb8\x7a\x20\x55\xcc\x4a\x3b\x05\x47\xe7\xaf\x8e\x87\x47\xa3\xe1\xd1\xf9\x13\x55\xe0\x6a\x74\x1c\x0b\x0f\x13\x49\xd4\x8f\x16\xf2\x45\xa9\xea\x4d\x16\x23\xa9\xc2\x7d\x54\x22\xbf\xfc\x31\x7a\x31\xf9\xf8\x38\xe3\xdc\xfc\x0f\x5b\x43\x71\x81\x96\x61\x00\x05\xe2\x8f\x60\x10\x50\x4f\xc9\xc3\x3b\xed\x30\x7e\x0b\x19\x10\xa6\x41\xfb\x8b\xeb\xd7\xaf\x9e\x42\xc6\x87\xf1\x2c\xfe\xfa\xef\xd8\xff\xd1\x79\x76\x2c\x16\x77\x2f\xdf\xfe\xd3\x19\x4c\x75\x4b\x84\x7f\x77\xf8\x7a\x39\xa5\x01\x77\x7e\xfc\xf4\x59\xb9\x71\x04\x5a\x22\x22\xe4\xef\x4f\xc7\x03\x27\x84\x73\xe4\x06\x70\x4d\x23\xe1\x0c\x48\x14\x04\xfa\x7f\xfe\xbd\xf0\xe4\xd1\xc0\x01\xc0\xf9\x3c\xf8\x34\x1a\x7c\x1a\x8f\x06\x8e\x94\x5b\x90\x90\x2b\x84\x01\x47\x9f\x07\xf2\x81\xdf\x7f\x27\xce\xe7\xcf\x72\x48\x06\x97\x48\x20\xa6\xbe\xf9\x1f\x6a\x40\x79\x7d\x01\xf9\xb3\x5b\x18\x38\x3f\xaa\x77\xfe\xe3\x2f\x83\x25\x12\xf0\xc7\x7f\x5f\xaa\xa5\xbf\x81\x4b\xf4\x63\x03\x6c\x87\x8b\x29\x77\xf2\x9d\xde\x45\xeb\x8d\xc9\xfc\x7d\xe0\x3d\xf2\xa7\xf4\x37\xef\xf1\x8b\xa0\xdd\x1e\xb5\x00\xf8\xd6\x80\xcd\xfc\xdd\x17\x8c\x1f\x61\xe2\xa3\xbb\x03\x43\xfa\xd4\x9b\x3f\xbf\x38\x9b\x5d\x59\x21\xed\x08\x67\xe0\x30\xba\x72\x06\xc9\x5f\x56\xe0\x9f\x9a\x43\x22\xb0\x90\x73\xfa\xe4\x3c\x49\x16\x09\x9c\xc1\xa7\xf1\x64\xf0\xc9\x59\x52\x1f\x05\xce\xc0\x21\x70\x89\x9c\xcf\x9f\x3f\x6b\x9c\x2f\xed\xd5\xe0\xd3\xe9\xc0\xe1\x48\x77\xb4\x90\x87\x69\x34\x70\x54\x44\x8b\x93\xbb\x7c\x9e\x7b\xe5\x78\xe0\xe0\x99\x33\xf8\xa4\xbf\x84\x18\xa3\x2c\xf9\x84\xfd\x9c\xea\x93\x7a\x3a\x70\x7c\x7c\x5b\xfc\x0c\xa1\x02\xcf\xb0\x99\x3e\xe6\xae\x0f\xc9\x1c\xb1\xfc\x57\x01\xa8\x1f\xc3\xa3\x41\xb4\x24\xdc\xf6\x52\xf3\x6b\xf6\xb7\x92\xf7\x16\x93\xe2\x6b\x0a\xee\x72\xaa\xc7\xf1\xab\xa3\x41\x16\x16\xe6\x09\x79\x12\x62\x78\x8f\x8e\xaa\x3f\x10\x56\x8d\xe2\x23\xee\x31\x1c\xea\x4d\xa8\x1d\xcb\xa9\xbe\x5c\xb7\x72\xb9\x06\x4f\xf9\xcb\x90\x2f\xff\x5e\x62\x82\x97\xd1\xb2\x01\x20\xd3\x48\x88\x32\xb6\xe8\xab\xf9\x0d\x1c\x8d\x07\x0e\x25\x5e\x80\xbd\x1b\x47\xe3\xad\xe9\x9d\x22\x71\x67\x3c\x38\x1a\x7c\xfa\xfc\xd9\xac\x99\x92\x4b\xcc\x97\x98\xf3\x14\x59\xd3\x59\xbc\xbd\x81\xeb\x9a\x25\x96\x2e\x5b\x2e\x16\x2e\x55\xb3\x85\xf4\xa5\x78\xff\x47\xf6\xfd\x5f\x61\xb1\x70\x17\x08\xfa\x8c\x52\x0b\xc8\xb2\x67\x32\xb3\xb7\x85\x73\x59\x38\x90\x19\x28\xf3\x10\x92\x18\x86\xe6\xc3\x9f\xc6\x67\x83\x4f\xce\x34\x5a\x86\x88\x29\x07\x3e\x10\x70\x5e\x3a\xf1\xf2\xf8\x45\xfc\x42\xbd\xf2\x59\xfe\x97\x47\xae\xf8\x31\x2f\xc0\x88\x88\x2b\xf5\x70\x0d\x76\x15\x67\x93\x05\x03\x9c\xcb\xed\x5e\xd0\x20\xa0\x2b\xf9\x17\x5f\xc2\x20\x00\x84\xba\x02\xdd\x09\x57\x30\x48\xf8\x8c\x32\x2b\x3a\xd9\x40\x82\x7d\x3b\x40\xd2\xa7\x4f\x4d\x27\x17\x83\x81\x9a\xe0\x7c\xfa\x24\xd7\x12\x4e\x29\x64\xfe\x35\xba\x93\x1c\xe9\x93\x65\xe0\xcf\x95\xc0\xce\xa1\x45\x91\xba\x25\x63\xf0\xf7\x11\x91\xe2\x69\x23\xa5\xcb\x4d\x57\xac\xa8\xcb\x05\x0a\x4b\x53\xc6\x7e\x80\xd4\x6c\xe3\x2e\xa4\xf1\x0f\x4a\x66\x98\x2d\xf3\xbf\x14\x1a\xbd\x46\x9c\xc3\x39\x72\x06\x0e\x5c\x41\x2c\x30\x99\x5f\x64\xee\x4a\x72\x11\xe7\x21\xca\x43\x67\xee\xc9\xa9\x38\x57\x82\x86\xce\xc0\xb9\x50\xdf\x71\x06\xce\xaf\x88\x0f\x80\xb9\xf8\x84\x21\xb0\xa6\x11\xe0\x11\x43\x7f\x07\xd7\x0b\xcc\xc1\x0a\x07\x01\x60\x88\x7b\x0b\x24\x99\x1e\x10\x0b\x04\x52\x36\x0a\x28\x01\x10\xf8\x78\x36\x43\x52\x88\x07\x1a\x8f\x86\x31\x16\x72\x41\xc3\x27\x19\xb9\x26\x07\x38\x0d\x13\x49\xdb\x3e\xb5\x7b\x5a\x3e\xc3\x10\x17\x90\x89\xca\xc7\x62\xd6\xa6\xf9\x22\x62\x0a\xe5\x2a\x3e\x90\xd2\x96\x66\x4c\xbb\x17\x5b\xf7\x5e\x2f\xbe\xb4\x7b\xe9\xf5\x9a\x0d\x94\x4f\x14\x77\x0f\x13\x37\x0c\xa0\x87\x92\x0d\x6b\x02\xef\xfe\xf7\xac\xfc\x72\xcd\xb6\x35\x10\xf2\xd2\x09\xcf\x52\x76\x0b\x5f\x9c\xd2\x3b\xe4\xbb\x46\xf2\x49\x68\x5a\x99\x82\xb5\x1c\xc1\x9d\x52\x7f\x0d\x30\x09\x30\x41\xae\x92\x2c\xb1\xd6\xc9\xaa\xa5\x1b\x1b\xa5\x0d\xe0\x14\x65\x27\x91\xe1\x2d\x97\x48\x40\x1c\xf0\x4a\x36\x58\x31\x62\x08\x31\x03\x5f\xe8\xd4\x55\x9e\x7b\x33\x72\x15\x9d\x47\x39\x1a\xfe\x33\x9d\xd6\xf0\xe2\xe3\x81\x23\x87\x74\x05\x95\x82\xe9\x17\x3a\xe5\xc3\x2f\x74\x5a\xe4\x51\xf2\x52\x8c\x5a\x7f\x44\x88\xad\x5d\xb5\x85\x3c\x3d\x64\x5f\xe8\x54\xea\x09\x3c\x84\x1e\x2a\x53\x74\x35\xa4\xe2\xa1\xfa\x81\x94\xc6\x57\xd0\xe6\x22\xaf\x49\x07\x48\x79\x4e\xb3\x44\x50\x2b\x70\xd4\x41\x9a\x50\x1f\x6d\x00\xea\x0b\x45\x5b\x5b\x43\x5b\x93\x62\x3e\xd4\xff\x96\x34\x01\xea\xa3\x6a\xe6\x55\x92\x4f\xe4\xd3\x03\x87\x2f\x28\x13\x2f\xfd\x1e\x80\x54\xba\xb4\xc5\xc1\xdc\xfc\x3c\x4a\x79\x2d\x15\x5a\x6c\xc7\xf0\x3d\xe2\x34\x62\x1e\x02\x1f\x04\x0e\x8c\x4f\xb1\x6a\x09\xdd\xe8\x40\x93\x22\xb5\x89\xa8\xb1\xb1\x52\xb4\xb9\x5a\x94\x63\x92\x21\xc3\x4b\xc8\xd6\xee\x12\x09\x86\xbd\xf4\xf8\x32\x03\x45\x67\xe0\x98\x5b\x85\x33\x2c\x11\xc9\x0b\x23\xa7\x8a\x11\xd7\x68\x35\xf7\x61\xea\x4b\xb4\xa4\x6c\xbd\xc9\xec\xdb\x28\x22\x1b\x6d\x37\x5a\x86\x42\xae\x46\x8b\x1a\x5d\x75\xda\xdc\xdb\xea\x98\x28\x2f\xa0\x95\xe7\x60\x4e\x7e\xff\x8b\x00\x2c\xc6\xd2\x16\xea\x6d\xf5\xa7\x0a\x27\xe3\x2d\x09\xd6\xf1\xc8\x19\xb9\x85\x83\x48\x1d\x47\x04\xe2\xed\xe1\xc3\xcd\x01\x1c\xcb\x06\xf7\x89\x2a\xd9\x76\xec\x1a\xf2\x1b\xde\x9a\xf8\x94\x14\xc5\xb2\x24\x62\xb4\xf0\x0c\xd1\xe1\x94\x09\xe4\x4b\x35\x10\x29\x49\x03\x91\xb9\x58\x28\x98\x61\xee\xce\xa2\x20\x70\xa7\x01\x42\x72\x76\x89\x00\x56\x4b\xc4\xaa\xc6\xab\x20\x64\x8a\x81\x71\xe1\x0a\x29\xfe\xa6\x67\x30\x39\x81\x72\xb8\xd8\x16\x67\x7e\x5e\x22\xee\x21\xa2\x4a\xf7\xc4\x0b\xfe\x6c\xfd\x7a\x22\x8d\xe6\x06\xc9\x5d\xcd\x8c\x65\x96\xcc\x05\xc3\x21\x52\x0c\xcf\x32\x57\x8f\x2e\x43\x4a\x34\x73\xfd\x34\x1e\x0f\xe4\x38\x7a\xf3\x5a\x50\xea\xcc\x96\x49\x90\xe4\x11\x02\x73\x97\xa8\x38\xf7\xc4\x18\x64\x3b\x52\x09\xd7\xb7\x4d\x44\x2e\xc8\x9d\x6a\xa2\xf4\xe9\x93\x13\x32\xaa\x8e\x5e\x22\xe5\x58\xa6\xf6\xc6\xdc\x6a\xc3\xd3\x37\xfe\xbe\xfa\x6a\xc5\x04\xae\xe2\x7b\xdd\x66\x90\x80\xd0\xa0\xe2\x2b\xc8\x05\x78\x76\x5b\x2d\x2c\x6d\x38\x75\x74\xab\x04\xaa\x00\x72\x61\xcc\xc3\x02\x57\x02\xf3\x1a\x6f\x02\xcc\xe2\x52\x9e\xf8\x3e\x43\x9c\x23\xbb\x48\x5f\xfd\xde\xc5\xbb\x0f\x1d\xdf\x78\x6d\x78\x58\x6b\xc3\x58\x05\xf0\x34\x05\xef\x70\x00\x62\x05\x1b\xf2\x1b\x57\x99\xbb\xe3\x63\x2f\xaf\x68\x15\x58\x99\x0c\x3f\xeb\x6f\x1c\x67\x39\x6f\x95\x15\x51\xbd\x7b\x11\x5b\x1a\xb3\x2f\x0d\x1c\x98\xd5\x24\x07\xc5\x21\x3b\xa8\x96\xc7\x19\xdf\x51\xee\xc6\xa4\xea\xc6\x3d\x65\xe6\x6f\xa8\xe6\x2d\xfd\xf2\xee\x27\x19\x76\xad\x6c\x10\x84\x0a\xb0\x80\xb7\x08\xc8\xcd\xe1\x20\x22\x02\x07\x40\x2c\xd0\x1a\x40\x86\x00\x26\x00\x26\xac\x5e\xc1\x68\x5f\x2c\xbd\x5a\xf6\x5e\x40\xfe\x3e\xb1\x7c\x29\x82\xc2\xb7\x70\x6d\x34\x88\x07\x7d\xaa\x2d\x4a\x71\x89\x2d\x76\x7a\xe2\xad\x54\xd6\x0d\x34\x17\xcb\x51\x4e\xad\x85\xae\x22\x99\xae\x24\x93\x0a\xe7\x92\xb3\x9d\x3d\x84\x45\x79\xba\xd6\x1a\xb7\xa5\x1d\xbf\x7a\xaf\x57\x90\xbf\x63\x48\x62\x34\x6a\x66\xe0\x2d\xc1\x25\x37\xc9\xc4\x31\x6c\xbb\xdf\x99\xf7\x93\x69\x82\xa7\x76\x3f\x48\x5f\x6a\xe8\xa9\x72\xc7\x25\x90\x0a\xcd\x77\x59\xd6\x29\xd3\x4c\xe5\xb7\x24\x6b\xbd\x69\x29\x60\x4e\xf5\xcd\x7a\xa6\xd8\x8d\xc8\x29\x0b\x6b\xc6\xa0\xba\x80\x1c\x4c\x11\x22\x2a\xeb\x23\x44\x3e\x80\xc4\x07\x73\xc8\xa6\x70\x8e\x80\x47\x83\x00\x79\x02\xf9\x55\x94\x6d\x6b\x7d\xb0\x0f\x63\x66\xc7\x91\xba\x18\x35\x0b\x43\x57\x19\xc8\xea\x5e\x6d\xf6\x88\x65\xbd\x60\x29\xca\x56\x7a\xc2\xec\x1f\xc9\xfb\xa4\xb2\xc3\x54\x79\xca\xaa\x27\x5b\x81\x6f\x2d\x6e\xf6\x06\xa3\x0a\xa3\xa2\x6d\x7d\x45\x57\x64\xe5\x04\x6d\x36\xc7\x6c\x30\x4c\x2e\x9e\xa5\x82\x80\x54\x1a\x1e\x73\x1b\xb7\x99\xd5\xb1\x0f\x28\xf7\x6e\x14\xaf\x06\x5d\xd1\x38\x9e\x85\xc0\xa6\x06\xf2\xe2\x18\x1b\x19\xc9\xed\x83\x1c\x6c\x37\x42\x86\x29\xc3\x62\xdd\x6d\x47\xde\x65\xde\x6a\xd8\x96\xcc\x80\x55\x67\x44\x83\x21\x9d\x49\x8b\xd3\xb2\xd5\xba\x77\xe1\x30\xa8\xc6\x44\xbb\xe3\x20\x47\x23\x5a\x39\x0f\x4a\x6f\x1c\xf4\x28\x77\x03\xdd\x7b\xc4\x11\xbb\x45\x3e\xa8\x57\xa4\x3b\xe0\x4c\x62\xa9\x74\x62\x53\x77\x96\x75\x80\xd7\x2f\xbe\xee\x9c\x57\x74\x5c\xba\xd5\x22\xd0\xc3\xea\x13\x6b\x79\x1e\x00\xf8\xe9\xa6\x00\xd8\x46\x9a\x4a\x35\xc5\x5d\x28\x18\xa7\x03\x07\x12\xbf\xa4\x6b\xc4\x90\xf1\x9f\x64\x03\x73\x1d\xcc\x9f\x47\xc1\x0c\x07\x81\xb6\x38\xb6\x7a\xa7\x60\x52\xbd\x1f\xca\xa9\x55\x59\xc9\xce\x7b\x27\x5a\x4b\xad\xe9\xb8\x60\x1a\xae\x85\xaa\xdc\xe4\xac\xb3\x01\x73\x17\x73\x1a\x40\xd1\xda\x12\x3c\x3a\x88\x25\xb8\x68\xd2\x7b\x79\xd9\xac\xee\xe4\x5e\xb8\x86\xfc\x06\xfc\xc4\x68\x14\x76\x7c\xf1\x82\x21\x0d\x9d\x6e\x26\x47\xea\xe3\x19\xee\xfc\x5a\x2c\x7b\x77\x7a\xe9\x23\x62\x3c\x8e\x6a\x6d\xff\xd6\x1b\xc5\xe8\xbe\x01\xcb\xeb\x68\x0b\xcb\x6b\x8a\xea\x79\xfb\x6b\x56\x80\x77\x3c\x4a\x44\x12\x4e\x37\x1e\x8c\x73\xfe\x4f\x2d\x9f\x36\x5b\x4c\xc7\x55\x86\xd1\x51\x21\x4c\x67\x7b\x6a\x5c\x7c\xac\xcf\x18\x74\x1d\x3b\xde\x5b\x24\xba\xb6\x73\x1f\x34\x10\xfd\x64\xfa\xe1\x6e\xf6\xf6\x5f\x2f\xef\x65\xc8\xbf\x02\x50\xaf\xd0\xbe\x17\xc1\xff\xbf\x52\x3c\xf9\x07\xb9\xf8\xa1\xdf\xe0\x7f\x45\xc2\x3b\x87\xfd\x8f\x4e\x72\x1c\xaf\x04\x2f\x1e\x4d\x09\xbc\x75\x74\x84\x76\xfa\xda\x43\xb6\x40\x95\x19\xc6\x79\xc8\x16\xb0\xce\xf7\x21\x5b\x40\xef\xae\x2d\x36\x64\xbf\x49\x01\xa8\x31\x27\x20\xf1\xd4\x5b\x90\xa7\x7c\x94\xbf\x87\xd0\xf8\x7e\xe2\xab\x85\xaa\xc9\x54\x11\x59\x7d\xad\x9d\xda\xd5\x51\xd2\xf6\x07\xaa\x03\xa3\xd5\xf3\x0f\x21\xd1\xf9\x90\x68\xc5\x05\xb7\x08\x86\xae\x65\x06\x2d\x6c\x28\x57\x72\x67\xa4\xce\x5b\x17\xae\x6b\x30\x5f\x6e\x2a\x14\xae\xe0\xa5\xa3\xc4\xf5\x28\x72\x90\x0a\xde\x6d\x25\x59\xd5\x67\x53\x82\x97\x2f\x72\x23\xb6\x08\x48\xe8\xea\x82\x68\x0f\xa6\xe7\x66\x3e\xd5\x70\x6a\x09\x29\xcb\xc2\xaa\x3c\x33\xdd\x88\xf9\x5e\xb0\xe5\x92\xe1\x5b\xc3\xf4\xaa\x31\x25\xbb\x5c\x13\x19\xe3\x9b\xf7\x36\x75\x97\x1f\x30\xbe\xf1\x21\xea\x7a\x2b\xf1\xb2\xbf\xd0\xe5\x87\xa8\xeb\x6f\x28\xea\x5a\xb1\xb5\xbd\xc5\x5b\x9b\x30\xad\x43\x45\x5a\x97\x0f\xa7\x56\xd5\x9b\xc3\x88\x0f\x66\xec\xce\x40\x23\x09\xdc\xec\x2f\xee\x0a\x14\x63\xb0\x3b\x99\xc0\x3f\xe7\xa1\xa8\x24\xc5\x7d\xc7\x34\x8f\xb2\x4c\x6f\x4d\xe0\x12\x7b\x7f\xaf\x44\xe0\xfa\xa1\xc6\x99\xa1\x74\xdc\x72\x27\x9b\xab\xd9\x9e\x0e\xc2\x40\x5f\xe1\xae\x72\x26\xb5\xd1\x1b\xf1\x43\xc9\x0e\x8f\x72\x61\xfa\xf9\x60\x56\xcc\x0d\x1c\xd5\xd4\x7f\x55\xfe\xb5\x37\xd4\x29\x8a\x40\x4d\x9e\xc3\xfc\xc7\xf2\x9f\x68\x1d\x10\x52\x1a\xab\xd6\x63\x08\x63\xcd\x75\xc1\xd0\x2c\x56\x5c\x4d\x7d\x9f\x58\x67\x22\x48\xac\x28\x53\xea\x50\xa8\x16\xf8\x63\x39\x9c\x57\xa2\x73\xac\xc5\x4a\x1c\x11\x90\xcd\x91\x54\xd5\xfe\x6d\x1a\x40\xed\x31\x97\x97\x99\xc9\x63\xa3\x21\x22\x88\x01\x42\x19\x9a\x21\xc6\xec\xc6\xa2\xe2\x74\x47\x15\xf3\xc9\xb0\x9d\x1f\x1d\x2b\xf0\xcc\xec\x76\x14\x25\xd4\x88\xbe\xcd\x21\xca\x3d\xbb\x3f\xf7\x24\x3e\xda\x85\x46\x0f\x11\x91\x8f\x76\xdd\x52\x5a\xdc\x8e\xe2\xe6\x9c\x8e\x2a\x2c\xf6\x16\x31\x8e\x4a\xb2\x26\xca\x07\x16\x6f\x92\x79\xd2\xd1\xdf\x58\x47\x58\x27\x59\x79\x03\xd7\x10\xd6\xb6\x84\xfe\x7a\x1d\xb6\x1c\x24\xe6\x0c\x59\xd3\xe5\x1e\x9d\x62\x2d\xa8\x73\x15\x6d\xce\x6b\xa6\x59\xf7\xd8\xc0\x31\x39\x22\x2d\x49\x72\x05\x41\xce\x0d\xa8\x00\xda\x7d\x24\x9b\xce\x93\x1f\x39\x11\x5c\x5b\xf2\xb3\x2c\x7d\xac\x1a\xa9\x8d\x39\xaa\xe5\x67\x4e\xa5\xf4\xea\xe4\xf2\x16\x32\xa2\x76\x87\x40\x8f\x06\xc2\xda\x38\x5a\x07\x3f\x66\x93\xa0\x6b\xfb\x56\xe2\x3c\x13\x2c\xea\xc3\x77\xb6\x03\x7f\xe5\xa3\x80\xce\x0f\x5d\x4b\xee\xd5\x6f\xbf\x4c\xd6\xa7\xab\x69\x7b\xa7\x65\x27\x6f\xd9\xc0\x01\x6a\x91\xfb\xf7\x9a\x01\xc5\x73\x54\x3d\xc3\x2a\x76\x99\xd1\xa1\x55\xe2\x54\x40\xe7\x15\x8e\x7b\x65\x2b\x2a\xc5\xbd\x14\x93\xa0\x6c\xde\x42\xcb\xd9\xdd\x03\xae\x4a\x98\xf7\x8b\xaa\xc9\x36\x1c\x12\x59\x5f\x8e\x5e\xff\xf3\xf2\x37\x48\xdb\x21\xab\x5d\x40\x11\x70\xaa\x82\x91\xcc\x82\x2c\x28\x71\x3a\x70\xa2\x6a\x63\x7c\x80\xe3\x5b\x6d\xa2\xb6\x87\xca\xed\x1e\x7b\xca\x5b\x62\x8f\x49\x99\x84\x9e\xc0\xb7\xb1\x87\x69\xf0\x49\x8a\x04\xfa\x52\x45\xb2\xe4\xdb\x5b\xc4\x6e\x31\x5a\xb5\x8c\xe8\xd8\x72\x4d\x86\x76\xed\x76\x49\xaf\x14\xed\x68\xb9\x9c\x2e\x4c\xa1\xaf\x88\x0a\x73\x2e\x36\x38\x6b\x61\x18\xe0\x7b\x51\xa9\xf2\xeb\xcd\xa5\x58\xe3\xd3\x77\x9d\xc2\x56\xa4\x9c\x1c\x57\x14\xb5\x52\x38\x0b\xa3\x28\xe5\xc9\xaf\xb9\x40\x4b\x1d\xd0\x1c\x05\xfe\xd5\x82\xae\xde\xa3\x79\x1c\x3c\x68\x4a\x93\x11\x0f\x8a\xf2\x1b\x1a\x69\xf4\xd3\x9a\xcb\xb8\xc0\xc9\x05\x6f\x7e\x96\x92\xcd\x52\x2b\x39\x9f\x1c\x8e\x24\x02\x09\xaa\xa4\x52\xfd\xb0\x9d\x30\x9f\x0c\x1c\x7e\x3b\x77\x43\x28\x04\x62\xaa\xd0\xeb\xe7\xa2\xd0\x17\x11\xd5\xa8\xa3\x4b\xf4\x45\x0c\x91\x8e\x35\x55\x2b\xc7\xaa\xb0\x9b\xca\x99\xb8\x1e\x25\x02\x62\x62\xd3\xc9\x9b\x5e\xb5\x9a\x5c\xcb\x16\x44\xcc\xdf\xd0\x57\x08\xfa\x75\x29\x28\x65\x43\x6f\x55\xcd\x3f\x49\x8a\x43\xe8\xe5\x34\xc3\x37\x14\x5c\x04\x11\x17\x88\x81\xf8\x43\x75\xe1\x15\x25\xf3\x2c\x8f\xa6\x15\x21\x02\xfa\xbf\xeb\x05\x02\x9e\xf9\xc0\x02\x72\x40\x28\x08\xd4\x77\x86\x79\xc3\xca\x28\x36\xac\x28\x9b\x0a\x37\x45\x93\xd5\x69\x0e\x19\x55\x67\x13\xd3\x47\xf3\x08\xfb\x88\x3f\xa2\x91\x80\x73\x34\x5c\x88\x65\x96\x79\x80\xf7\x08\xfa\x00\x4e\x69\x24\xc0\x5b\xf5\x84\xd4\xb1\xe9\x2d\x62\xeb\x2d\x6c\xc0\x36\x75\x36\xb7\x43\x27\x47\x47\xbb\xda\x9c\x2b\xc4\x6e\x11\x03\xcf\x34\xde\x6f\xbb\x2f\x4f\x00\xd7\xe3\x29\x14\x04\x21\x53\x8a\x3c\xf2\x81\x0f\x05\x04\x33\x46\x97\x60\x8a\x54\x36\x33\x22\x02\x08\xaa\x82\x03\xe2\x02\x79\x3d\x00\xea\xf8\xe8\x78\x77\x58\x2c\xc0\x73\x1a\x91\xaa\xd0\xdc\x0e\x50\xfa\x65\x01\x05\x58\xd3\xe8\xf7\xbf\x30\x04\x02\x4a\x6f\x24\x44\x66\x94\x01\x4f\x52\x4e\xe5\xca\x98\x22\x30\x93\x1f\x1b\x82\x97\x02\x20\x2c\x16\x88\x01\x9f\x22\xed\xe7\x40\x77\x98\x0b\x40\x99\x0a\xbb\x80\x0c\xa9\x34\x72\x18\x09\xd5\x51\x11\xf9\x12\xae\x1c\x21\x80\xfb\x82\xe9\x64\x97\x30\x7d\x92\xcc\xdb\xc2\xf1\xf3\x73\x11\xf4\x06\x11\xad\x13\x30\xd4\xce\x5f\xdf\x69\x5f\x7e\xa5\x11\x03\x4e\x49\x6e\x8a\xbb\x24\x0f\xd5\xf7\x63\xed\xc7\xf6\xd5\x27\x17\xaf\x80\x9e\x64\x83\x0b\x5d\x6e\xa5\xda\xb5\x90\xd1\x5b\xec\xeb\x12\x92\x0c\xfd\x11\x61\x86\x7c\x10\x22\xb6\xc4\x9c\x2b\x41\x0d\x5c\x48\x0e\xe0\x29\x7c\x61\x00\xfa\x4b\x4c\x30\x17\x8a\xfb\x01\x3c\x03\x62\x81\xa5\xfc\x0b\x20\xd1\x47\x6e\xa3\x1d\xdf\x14\x5e\xef\xcc\xe4\x21\xd9\x0f\xd4\x56\x58\x2c\x34\x94\x38\x16\x28\x0b\x26\x89\xf2\x52\x58\x56\xf0\x68\x03\x83\xcd\xdc\x9b\x5d\x70\xbb\x27\x8a\x7a\x45\x97\x48\x2c\x24\x81\x58\x49\x92\xb9\x62\x94\xcc\xed\xac\xa6\xe5\x32\x5b\x5e\x2a\xa4\xec\xa0\x3f\x92\x53\xa8\xe2\xca\xe6\x52\xcc\x20\xb7\x98\x51\xb2\x54\x09\x75\x9f\x07\x8e\x8f\x6e\x51\x40\x43\xfd\xbb\x6d\x32\x7c\x0c\x0a\x86\xec\x52\x0c\x17\xd0\xbb\x71\x05\x33\x49\x9c\x26\x67\xcb\x33\x49\x08\xe7\xa9\x28\xa6\x1e\xbf\x52\x96\xca\x9c\x15\x30\x86\x53\x8b\xa8\x96\x4e\xa6\x71\x3d\x3d\x89\xf0\x95\x91\x59\xe5\x6c\x56\x2d\xbf\x26\x36\xf0\x4c\x94\xe7\x6a\x81\x2b\x6b\x00\xfd\x44\x25\x7e\xff\xac\xde\x6f\x5f\x5e\xd0\x9a\xc1\xb8\xcd\x04\x2e\xe2\x21\xda\xcc\xa1\xd9\xc8\x67\xc7\xc3\xcd\x8c\x27\xa9\xfa\xd5\x5d\x77\x8b\x21\x73\x58\xbd\x6d\xf1\xc3\xaf\x97\x6f\x7f\x63\xde\xf7\xd3\x05\x22\xce\x99\xdd\x74\x43\x1e\x25\xc9\xb6\x87\xdc\x97\x3f\xce\xbe\xfe\x32\x1d\xff\xf2\xc4\x9e\x92\x00\x33\xc9\x08\x92\x9e\x77\x4d\x4d\xd0\x47\x2a\xae\x3a\x97\xa9\x21\x5c\x34\xbc\x16\xa2\x20\x93\x9c\xe1\x82\x96\xbc\x75\xf7\x82\xcd\xc2\xb4\xeb\x02\xaf\x55\xa2\xb6\x2e\x34\xe1\x06\x78\xbe\x10\x25\xe3\xb2\xf2\x51\x49\x8e\x9e\x54\x90\x48\xe3\xaf\x2d\xbe\xd7\x6d\x61\xd5\x22\x78\xfc\xfb\xae\xe1\xfe\x7d\xc6\x37\x9b\xa3\x74\xd8\x08\xe7\xea\x24\xcc\xa6\x63\x62\x4e\x88\x44\x2a\x5d\xdb\xc0\xde\xb5\xa0\x29\x39\xa1\xb6\x55\x41\x7d\xc0\xd5\xae\xc0\x62\x8f\x2b\xca\x99\x47\x0a\x0b\x59\x08\x11\xca\xb7\x3a\x84\xf1\xee\x21\x20\x19\x62\x4b\x70\x61\x59\x49\xcd\x84\x21\x25\xaf\x74\x51\x54\x6d\x73\xc9\x22\x07\xe6\x2e\x26\x33\x9a\x99\x9a\x94\x94\xb6\x56\xfb\x14\x9c\x37\x2b\x08\xb0\x73\xd8\x3f\x0b\xf0\xdc\xf4\x8f\xeb\x00\x7e\xfd\x56\xd0\xd6\x75\x6f\x43\x44\x53\xb3\x0d\x93\x79\x6e\x0a\xdb\x3b\xf0\xdb\xef\x75\xa1\x56\x5a\xe7\x19\x6e\x57\xeb\x61\xf7\xc7\x0a\x0a\xa8\x53\xe6\x3a\xd0\x07\x3f\xf3\xd2\x7d\xa2\x10\xf8\x56\x82\xb5\x2d\x86\x46\x64\x81\x60\x20\x16\xeb\xf8\xc5\xd6\x51\xbc\x25\x79\xe1\xce\xc5\x9e\xf6\x3c\x65\xd0\x25\xab\xe6\x61\x0b\x42\x35\xc5\x88\x0f\xda\x4f\x37\x57\xb5\x84\xce\xec\x9b\x86\x84\x2a\xf4\xd6\xf4\x7a\x66\x59\x61\x10\x31\x18\xe0\xaf\x4a\x54\x36\x99\x1d\xed\x47\xb5\x88\x7b\x20\x59\xc4\x46\xa7\xf6\x49\x10\x80\xfa\xf7\x1b\x8e\x53\x0b\x41\xac\x1a\x5f\x7c\xc9\x4e\xae\x04\x83\x02\xcd\x9b\xe3\xb7\xba\x8a\x73\x16\xbe\xb2\x61\x44\x76\xcb\xb2\x77\x1d\x44\x3b\xc5\x48\x41\xba\xf4\x56\x02\x56\xef\x99\x59\x97\x99\xe4\x83\x56\x07\x3c\xbf\x61\xaa\x96\x0d\x65\x5e\x8b\x52\x9a\x2d\xe6\x36\x85\xfe\x1c\x59\xd3\xbb\xf5\x37\x80\x82\xd9\x26\x52\x41\xbb\xb5\x2c\x20\x7f\x43\x53\x88\xb4\x5c\xd0\x1b\x0a\x7c\xf3\xce\x86\x71\x6f\x4e\x29\xc0\xd0\x8f\x18\x4c\x92\xa0\xeb\xa6\xec\x17\x67\x5b\x47\xff\xda\x1a\x49\x0b\x96\xcc\x8d\xf0\x62\x26\x77\xac\x23\x2c\x37\xc4\xf6\x2e\xf8\x1e\x23\x92\x1d\xed\xeb\x37\xc5\x92\x8f\xd8\x6e\xd5\x75\x61\xe1\x7f\xcd\x7c\x67\x49\x25\x5c\xdc\x19\xa3\x4b\x97\xd0\xd5\x06\x5f\xfb\xf4\xc9\xc1\x52\x84\xb8\x85\x81\x5e\xda\xd1\x51\x81\x25\xfe\xad\x5b\x04\xa4\x25\x7c\x7c\x0f\x54\xe9\xe5\x9c\x50\x86\xc0\x95\x8a\xa5\x50\x36\xe2\xea\xf4\x91\x0c\xfc\xda\x90\x2b\x35\xb2\x1e\x38\xb1\x3d\x57\xa6\x53\xd4\x3a\xbd\x2b\x2f\x76\x03\xea\x9f\x2d\x17\x33\x87\x0b\xfb\x2c\xd3\xb1\xfb\x2c\xca\x7a\x26\x7e\xb0\x49\x37\xe6\x4f\x6e\x88\xd8\x5b\x99\xdc\xb6\x43\xe5\x66\x94\xb2\x64\xea\xa5\x21\x72\xe5\xcd\xc9\xd7\x2b\x61\x34\x40\x4e\x65\x11\x93\x58\x4a\x31\xce\xa5\x96\x25\x4c\x1c\x8e\x84\x29\x92\x87\x29\x79\x8e\x03\x55\x30\xd1\x6c\x48\xa1\x96\x49\xa3\xde\x02\xed\xb5\x01\xdb\xa6\xc2\x97\x12\x2e\x93\x79\x6d\xa4\xb0\x6d\x0a\xbf\x54\xad\xdb\x02\x82\x82\x45\x0d\x00\xcc\x83\xb0\x62\xad\xad\xd4\xb5\xf4\x5d\xa7\x7e\xb4\x66\x59\x6c\xb3\xe2\x04\xf6\x53\xaa\x67\xca\x11\x64\xde\xc2\x9d\xd2\xbb\x4c\x86\x92\xba\x76\x2d\xb9\xab\xaa\x81\xb2\x90\x82\xb5\x64\xd3\x01\xf4\xd0\x82\x06\xbe\x29\x75\x6d\x12\x7a\x48\x18\x89\x8b\x5c\x2e\xd3\x32\xca\x84\x36\xa6\x83\x15\x7a\x39\x56\x56\xec\x61\x48\xee\x19\x9c\x63\x52\x68\xe9\x38\x70\xae\xd4\x68\xd9\x66\x4f\xc3\xe1\x50\x67\x15\x69\x6d\x0b\x84\x51\x10\xb8\x0c\xcf\x17\x42\x5f\xf6\xe8\x32\x84\x9e\xa8\x20\x64\x5b\x32\xa9\xb6\x29\x60\x61\xba\x18\x4b\xdf\x22\x85\x27\xca\x1d\xe6\x14\xba\x13\x15\xea\x4e\x1a\xec\x81\x73\x74\x25\xdf\x49\xae\x78\x11\x63\x88\x48\x90\xa1\xca\xd4\xdd\xbe\x5a\x27\xe9\x0c\x46\x39\xda\x06\x4d\x93\x54\x1f\xe4\x19\xa5\xa2\x65\xe6\xda\xc9\x7d\xe9\x99\x74\x52\xd7\xb3\x28\x2d\x5b\x6c\x99\xdd\xcb\xcb\x5e\x9a\x26\x55\x4d\x20\xe3\x8c\x94\x74\x1e\xcf\xd6\x2f\x75\x4c\xbe\xae\x9f\xb9\x06\xfa\xa7\x7d\x6e\x69\x89\xcd\x3d\xcd\xd0\x53\x95\x40\xe3\x19\xea\xba\xa0\xb5\x33\x4c\x4a\x87\xee\x70\x82\x9f\x13\x9f\x53\xdd\x4c\xd2\x9a\xfe\x3b\x9d\xc8\x17\x3a\x1d\xd6\x34\xe1\xfa\x59\xd7\x7a\xdf\xf5\x14\x92\x7a\xa8\xd6\x49\x64\xee\x6e\xd7\xbf\xea\x30\xd5\x50\x4f\xf6\x55\x0d\xb5\xd4\x9d\xea\x71\x4e\xc2\xd6\x55\xcf\x2b\xe5\x96\x39\x15\xf4\x49\xae\x4b\x42\x7e\x80\x0e\x35\xbd\x1e\x57\x65\x24\x9e\xd4\x69\xea\xf6\x1c\xa3\x00\x19\x02\x5e\xab\xae\x9b\x0c\xa4\xbc\x92\x9f\x32\xf4\x06\x93\x8c\xe5\xcb\xe9\xdb\x2e\x89\x96\x53\xe3\x5d\xa8\xab\x92\x90\xa6\xdb\xab\x4a\x59\xfc\x49\x31\xd5\xfe\xbf\xfe\xf3\xff\xe4\x9f\x43\xc4\x2f\x3f\x55\x34\xe2\x97\x19\x73\xb3\x28\x0d\xea\xf2\x49\x2b\xcf\xe8\xb1\x96\x14\x6f\xe3\x03\x9a\xfa\x30\x32\xc0\x90\x0f\x60\xaa\x09\x93\x0d\x8d\xff\x97\xd5\x82\xd7\x99\x5e\x1c\xab\xfa\x06\x77\xa2\x76\x2e\xe6\x01\xeb\x3c\xfe\xf7\x06\xf3\x48\xf2\xd5\x2a\x10\x41\x0b\x21\x35\xec\xbc\x46\xb5\x6e\x57\x18\x61\xf0\xe9\x9b\xe8\xfd\x69\x02\x3e\xee\x69\x71\x83\xf4\xd4\x24\x4d\xd2\x36\x28\x62\x30\xee\xaf\x88\x41\xb6\x3a\xcc\xc6\x45\x0c\xb2\x83\x5c\x45\x53\x93\xc1\xd5\x6a\xa4\x84\x97\xb5\xcd\x4e\xaf\x61\x66\xe3\x83\x55\x31\x98\xf4\x5d\xc5\x20\xe7\xcc\x4f\x21\xda\x57\x29\x83\x49\x97\x52\x06\x55\x2f\x26\x45\xf5\xda\x97\x40\x68\xe7\xbc\xe2\xc8\xa3\xc4\x87\x6c\x5d\x8a\x2a\x2b\x03\xa7\x5c\xd9\xaf\xbb\x35\x3e\x47\x0b\x4b\x5f\xf8\xbe\x0b\x34\x54\x76\xe0\x1c\x7f\x63\x74\x5f\xbb\xfa\x81\x56\x4d\x76\x61\x76\xcf\x52\x7a\xe8\x79\x94\xf9\x76\x13\xc6\x0d\x5a\x17\x69\x7d\x12\x03\xf2\x79\x50\xd9\x55\xb8\xa9\x56\xcd\xa7\x38\x2a\xff\x95\x72\x83\xab\x50\xa6\xbb\x10\x12\x5f\x31\x1d\x29\x7d\xf8\x26\xc6\x71\x10\xbf\x8b\x75\x1e\x6d\x1c\x0c\x61\x37\x87\xd4\xf5\xc4\x2b\x46\x23\x1a\xcf\x82\xc5\x99\x1f\xc7\x2a\x67\xf2\x66\xab\xe6\xa0\x3b\x64\x43\xbf\xb2\x39\xb6\xe5\xac\xd4\xd6\xd6\x1e\x35\x49\xbf\x96\xae\x3b\xb9\xc9\xb5\xac\xdb\xd5\xac\x9e\xd5\x4e\x73\x5c\x4f\x92\x2b\x36\xac\x53\x75\x99\xc2\x42\x6d\xf0\xb0\xd1\x60\xcb\x36\x53\xe6\xf2\x15\x14\xde\x02\x94\xd0\x49\x87\xba\x94\x6b\x62\x57\x55\xe5\x02\x56\x17\xa3\x65\x48\x65\x2e\x73\x5e\x98\xbf\x07\xce\x07\x92\x5c\x6f\x74\x02\xb7\xa2\x75\x95\xc4\x7f\x8b\x9d\xed\x80\x7b\xed\xbd\xf1\x0d\x2f\x97\x22\x50\x62\x74\xa9\xdd\x85\x8a\x93\x50\xb1\x25\xb9\x03\xbb\x59\xb5\xbc\xa6\xf2\x77\xb6\xa5\x61\xee\x86\x51\x10\x20\xdf\x98\xad\x37\x05\x51\x33\x7c\xbb\x40\x58\xb5\x49\xff\x10\xfa\x0d\x9d\x7b\x9a\x87\xa5\x34\x10\x38\x8c\x0f\x1d\x64\x18\xba\x3a\xaa\x49\x9f\x3c\xab\x6c\x99\xd9\x94\x48\x4d\xe1\x3a\x27\x60\x36\xb6\xe7\xcc\x9d\x3e\x5b\x80\x44\xdd\x27\x9a\xc3\x21\xaa\xcf\x7b\x3d\x2a\xf6\x50\xc5\xaf\xf2\xc6\x5e\xaa\x9f\x95\xd2\x34\x0b\x95\x15\x4a\x6c\x46\x53\xb3\xcb\xd6\xed\x26\xb6\x10\xa6\x3a\x0e\x50\x53\x9d\xb5\x8c\x42\x1e\x0c\xb1\x88\x1d\x7a\x76\x4e\x6a\x8b\xb1\x7c\x22\x04\xc3\xd3\x48\x20\x5e\xbf\xa9\x35\x7c\x11\x26\x43\xe4\x7e\x5c\x09\x16\x79\x22\x62\x9d\x18\x66\x5f\xfa\x7f\xcd\x59\x4b\x67\x58\xb4\x0c\xe4\x16\x92\xf3\x27\x59\x57\x7b\xb5\x30\xb5\x31\xcb\x43\x36\x1d\xc6\x36\x07\xa3\x57\x58\xb5\xa2\xd8\x9b\x77\xb8\xce\x0d\xb3\x59\x03\x7f\xa3\x28\xa4\xf8\xd8\x23\xb1\x6a\xa3\xad\xb5\xa6\x55\xdb\x97\xcc\x3b\xac\x46\x56\x3a\xf1\x5b\xaa\x63\xcd\xc7\x70\xab\xc3\x97\x8b\x0e\x69\x41\x69\x5a\x9f\xc6\x2d\x96\x5d\x05\xda\xd7\x48\xc0\xaa\x58\xb9\xaa\xf8\xd2\x25\x12\x70\x73\xba\xd9\x37\xbd\xec\x6d\xab\xea\x97\xd5\x81\x64\x6e\x45\x2a\xb7\x27\x91\x5b\x92\xc6\xad\x48\xa2\x44\xa7\x36\x04\xb1\x4a\xf2\x69\x6e\xfc\xaf\x93\xb6\x81\xfc\x4b\xd5\x89\x90\xdb\xa3\x0b\x77\x10\x0a\xe4\x16\x82\x74\x9f\x5a\x96\x4c\xea\x4c\x80\x2d\x27\xa5\x9f\xd2\x71\xf9\xcc\x74\x7b\x66\xfb\x7f\x6b\x91\xd9\x7e\x1f\x7a\xed\xfd\xeb\xd3\xd9\xe2\xe4\xa7\xe7\xf6\x82\x03\x1b\xa7\xb2\xd7\xd5\x06\xdd\xba\x35\x9e\x4a\xa0\x98\x62\xdf\x47\xa4\x55\xfe\xcb\xe8\x44\xa1\x88\xc0\x30\xe0\x8f\x66\xf1\xab\xc9\x01\xcb\x57\x83\x6b\x4f\x04\xaa\x0f\xb0\x54\xfb\xa6\xb0\x63\xb3\x3d\xf3\x92\x8b\x05\x5a\x36\x41\x80\x50\x1f\x6d\x93\x28\xb6\x69\xe0\xdb\xde\x62\xdc\xe2\xa2\x11\xc3\x61\xab\xee\xa9\x5d\x62\xff\x9a\xa1\x2f\xd9\x99\xb2\x46\xb8\x30\xc0\x73\x62\x9a\xf8\xd1\x29\x0e\x90\x9b\xd6\x9f\xed\x4a\xd5\xb5\x31\xd7\xad\xc0\x8b\xc2\x06\x2d\xa3\x40\x60\x97\xa3\x00\x79\xc2\xf5\x19\x0d\x7d\xba\xca\xd8\x9e\x8d\x0d\xc1\xa1\x49\x1c\xa5\x7e\x54\x87\x60\x50\x72\xa5\x7e\xc9\xf1\x9c\x8b\xd8\xd0\xa7\xda\x01\xea\xe7\x63\x5b\x5e\xec\xd5\x8f\xdf\xcd\x5c\xaf\xdb\x3e\x8e\xc4\x73\xe8\x21\xf1\xcf\x08\xb1\xf5\x3b\xb9\x0f\x6a\x47\xfe\x08\xe3\x40\xc8\x8a\xd8\x8c\x1d\xaf\xf4\x4a\x35\xe5\xcb\xaf\xf4\x2a\x6e\xd4\x57\x58\x69\xe6\xfa\x46\x2b\x35\xef\x1f\x68\xa5\x99\x6c\xd9\xfc\x72\x2f\x73\x19\xb1\x85\x35\x17\x6f\x6e\xb4\xf0\x5c\xa2\x6e\xc3\xea\xdb\xf0\xef\x6a\x89\x76\xab\xd8\xd1\x37\x8a\x40\xde\x9b\xa8\xd1\xd1\xfe\xa2\x46\x7b\x0c\x15\x68\x11\x33\xea\x54\x3b\xe6\xab\x22\xec\x70\x3f\xc1\xa2\xed\xbf\x9c\x98\x88\x93\x19\x70\x77\x7c\x74\x14\xde\x49\xb2\x2e\x58\x44\x3c\x68\x36\xb9\xd2\x57\x97\x74\xd2\xd9\xc5\xfc\x0a\x71\x98\x35\x21\x98\x9d\x27\xd0\xae\xb7\xcf\x56\x93\xce\x27\xe1\x5b\x26\x9e\x27\x3b\xdb\xcc\xfe\x5f\x74\x42\xca\x96\xad\x89\x36\x08\x1a\x89\x0d\xa1\x4a\x28\x71\x55\x59\x96\x5c\x00\xa4\x0e\x66\x2c\x06\x3c\xe6\x52\x8a\x6a\x23\x1d\xdf\x98\x60\xc8\xfc\x3b\x1d\x62\x1c\x3b\x38\xf5\xb7\x89\x70\x74\xb6\x88\x6f\xac\xfe\x6a\x97\xe8\x46\x27\x67\x67\x6f\x13\xdb\x38\xea\x16\xdb\xf8\xa6\x28\x59\x6f\xd6\xfe\xaf\xc2\xe9\xb0\xe7\x88\xc6\x9a\x99\xec\x31\x9e\xd1\xd9\x3e\x9a\x71\x33\x4b\xc0\x68\x33\x03\x4e\x8d\xf9\xc5\xa9\xa9\x87\x59\xd2\xc9\x06\x47\xad\xab\x5f\x6e\x69\xce\x49\x75\xee\x1e\xcd\x38\x85\x93\x97\xad\xae\x6d\x84\xa7\x60\x1d\xd7\xd9\x36\xd6\x1e\x05\x82\x61\x67\x47\x5d\x75\xfc\x59\x1e\xc2\x33\x95\xbf\x66\x3b\xa3\x7b\x83\xf4\x6b\x28\xbc\x45\xdf\x06\xb3\x02\xa4\xdf\xc4\xf0\xe4\x60\xa9\x22\x32\x54\xc9\x5f\x03\x73\xa0\x81\x00\x12\xa9\xbe\x4f\x70\x57\xa8\xf3\xdf\x1a\x3c\x4b\x00\x54\xad\xc7\x11\x5b\x26\xae\x7a\xc1\x68\xbe\x96\xd2\x68\x90\x5b\xb8\xbd\x74\x6c\x8e\x20\xb5\x75\xe2\x34\x56\x8c\x68\x63\xd0\xb4\x8e\x50\x69\xcb\xec\x52\x32\x35\x67\x8a\xdc\xbc\x46\x67\x40\xa1\xd6\x7b\x0e\x6a\xcb\x7c\x74\xf9\xe6\x87\xe0\xc9\xe5\xac\x75\x27\x99\x86\x66\x43\x0b\xa8\xeb\x25\xb9\x5a\x7e\x4d\x5d\x1b\x39\x8b\xa2\x59\xbb\xcb\x43\x4c\x88\x52\xc9\x3f\xf7\xbd\x3b\xe6\x13\x1b\xec\x4f\xcc\xfa\xb3\x3d\x4e\xb4\xf0\x7a\xd0\x9d\xfa\xf5\xb7\xf0\xe5\xd7\x57\x93\x79\xeb\x9d\xd2\x01\xce\xb5\x0a\x6a\x95\xb1\x34\x97\x9e\xb4\x79\xb5\x2d\xa7\x31\xcc\x07\x64\x70\x25\x7e\xc4\xe4\x75\x67\x03\x81\x46\xf9\x40\x20\x27\x4d\xa7\x01\x3e\x0a\xa5\xac\x0a\x28\x49\x4b\x54\x01\x3f\x2d\x28\x56\xe3\xff\x6c\x53\xfb\xab\xbe\xe6\x57\x37\xb5\xaa\x0a\xc0\x52\x6e\x7c\x92\xed\x18\x74\x78\xa8\xae\x20\x07\x0c\x99\x12\x79\x8d\x8e\xe4\x14\x90\x0b\xcc\x85\x49\xb8\x2b\x00\xd2\x44\xb3\xee\x10\x8c\x2b\xc8\x4d\xe2\x7e\x0b\x6f\xed\xbe\x80\x18\xa6\x33\x6a\x09\xc2\xa9\xd1\x25\x77\x03\xbf\x82\xd1\xb0\x3a\x0f\xa2\xb1\xfb\x55\x6c\x47\x85\x79\xcc\x2d\xce\xdb\x14\x15\xa9\xd2\x8b\x32\x50\x28\x6d\x68\x26\x51\xba\xbd\x37\xa3\xd2\xcf\x5f\x2a\xc5\x2f\x8c\xba\xe6\x7c\xa1\xd3\x36\x55\xf7\x5b\xc3\xeb\x0b\x9d\xf2\xe1\x17\x3a\x55\xfd\xc1\xdc\x39\xa3\x51\x68\x01\x96\xf9\xee\x67\xdb\x1d\xf9\xe2\x4f\xf2\xbd\x37\x49\x61\xe6\xd3\x81\xf3\x47\x84\xd8\xda\x55\xeb\xe6\xa9\x25\xe5\x0b\x9d\xca\xa7\x54\x17\x85\xd4\xa6\x5b\xfa\x90\xb6\xd4\xe9\xa7\xd2\x92\xc7\x6d\x42\x1a\xac\x7b\x53\x9a\x61\x47\x7f\x53\x07\x94\xad\x49\x2e\x5a\x52\x22\x16\xd9\x92\x59\xf9\xbc\x5a\x95\x0c\x7e\xdd\x98\x6b\x54\xb1\xb1\xbd\x85\xa9\xd6\xcf\x52\x67\xe1\x37\x06\xac\x3a\xf5\x01\xaa\xad\x86\x2d\x91\x0e\x8b\x1b\xa1\x0a\x2e\x05\x39\x82\x12\xe4\x16\x74\x13\x2b\xc8\x1a\xe3\xe6\xcb\xbb\xa6\x04\xb8\xea\x82\xe6\xd5\x38\x59\x78\xb3\xa9\xdf\x64\x81\x38\x98\xb2\xe8\xd5\x64\x22\x41\x79\x27\xe7\xb2\x6d\x4b\x54\xba\xd1\x16\xeb\x02\xf3\x99\xf6\xd6\xb0\xd8\xd2\x40\xd6\x5e\x16\xc3\xa4\x41\x80\x45\x1a\x51\x0d\x42\xaa\x66\x6b\x9d\x97\x31\xe6\x96\xe8\x75\x4b\x2a\xbd\x85\x7d\x23\x0b\x71\x3d\xf1\x6d\xe9\x78\x09\x21\x2a\xa8\x29\xe6\xef\x52\x97\x53\xcd\x53\xef\x51\xac\xe8\x7d\x6e\x83\x08\xf2\xbf\xe1\x70\xb8\x51\x70\x95\x9d\x0b\xd5\xb3\x9e\xbd\xb2\x95\x2a\xa4\x2e\xe5\x17\xb5\x6f\xd5\x52\x9d\x23\x11\xa7\x4f\xc5\x5b\xfc\xa8\x05\x33\xab\x4f\x74\xea\x10\x38\x55\xc0\xb2\x51\x45\x43\xf3\xcd\x4e\x79\x27\x4b\x4a\xcd\x2c\xaa\x95\xf5\x56\x7a\x21\xe6\xef\x23\x52\x5f\xa5\x3d\x77\x9e\x20\xf1\xe3\x3f\x09\x4d\x83\x61\xe2\x6a\x77\x31\x49\x55\x66\x4b\x24\xbc\x85\x24\xe4\xdc\xfa\x9d\x3e\x4f\x50\xc1\x94\x27\xbf\xf9\xac\x45\x27\xcb\x9d\xea\x10\x17\x49\x33\x3b\x8f\x06\x01\xf2\x04\x50\xf3\xb2\xdb\x3f\x7b\x55\x68\x77\x16\xe2\x69\xd2\x21\xbd\x05\x64\x22\xad\x9c\x5c\x00\x82\x05\x34\x76\xd9\x2a\xc6\x9b\x81\x13\x71\x13\xc3\x0a\x1e\x25\xe2\x04\x37\x88\xc3\x90\x6a\xa9\xe8\xab\xb2\x31\xf2\x91\xd7\x2f\xbe\x3a\x15\xb9\x40\xb1\xd5\x94\xd1\x79\xe2\xee\xcd\xfa\x5d\xcc\xf5\xb8\xd6\x73\x2e\xeb\x5a\x4e\x52\x19\x77\x2c\xf3\x0b\x11\xf3\x74\x97\x2f\xf5\x61\x39\xe6\x12\xde\x39\x03\xa7\x32\x23\x33\x4b\xa5\x8a\x63\x6c\x1d\x35\xb2\x69\x53\xb3\x26\xf5\xf1\x7e\x92\x96\x4c\x4d\xca\xef\x92\xba\xa4\xe7\xe8\x81\xcc\x58\xc8\xcc\xa6\xd4\x25\xd5\xdc\xa6\x6b\x15\x57\x9f\x47\xa7\x84\xe8\x24\x11\x98\x35\xb4\x27\x2e\x40\xa5\xc8\x0f\x7e\xda\x03\xf9\xd1\x65\xcb\x5b\x10\xa0\x64\xba\xdb\xd1\x20\xcb\x30\xf7\x8b\x0c\x6d\x1e\x93\x5e\x65\xe9\xdf\xce\x69\x10\x86\xee\x94\x21\xe8\x7b\x2c\x5a\x4e\x0f\xdd\x1c\xef\xfd\x4f\x77\xef\x56\xfe\x3f\x7e\xb3\xc7\xaa\xa7\xf3\x54\x67\x47\x55\xb3\xb3\x34\xcc\x43\xd0\x5b\x24\xa7\x20\xbb\xb6\xe6\x6e\xdf\x49\x53\xfd\xa2\x25\x20\x9b\x55\x9d\xea\x74\xf2\x1a\xf1\xd2\xb0\xa3\x22\xe9\xce\x01\xb6\x5c\x09\x35\xdb\x47\xdf\x6a\x49\x71\x6c\x99\x93\x19\x4d\xae\x25\x51\x2e\x76\xc5\xfe\x17\x2b\x7d\x4d\x14\xbf\x64\x06\xff\xf5\x9f\xff\xf7\x26\x84\x2f\xab\xd8\xc5\xfa\x99\xd1\xd7\x32\xd1\x92\x90\xcd\x79\x63\xfd\x0a\x27\x17\xe5\x63\xda\x45\x74\x6a\x69\xd8\x36\x73\xa4\x14\x5a\x32\x18\x6f\xdf\x18\xb1\xf2\x98\x6d\x77\x64\xd3\xfc\xa7\xd8\xbd\x79\xd8\x53\xfb\xfa\xdd\xcd\xaf\x5f\xc3\x33\xbb\xaf\x2f\x26\xf5\xa6\x8a\x4a\xcd\x71\x3d\x1d\x38\xae\xfc\xe1\xe2\xb4\xc7\x43\x26\x5f\xac\x49\xe0\xc9\x89\x58\x98\xbb\x54\x2d\x3d\x3d\x39\x2d\x05\x26\xa7\xae\x86\x54\x9d\x14\xc9\xa3\xe9\x02\x25\x47\x48\xdd\xa4\x81\x92\x87\x06\xce\xb8\x5a\x4a\x29\x55\x9d\x9e\xe1\xbb\xea\xa3\xdd\xd2\x80\x60\x22\x1e\xe2\xd1\xb2\x07\x26\xce\xc5\xaa\x61\x57\x83\x84\x9c\xb5\xed\xb9\x54\x75\xa9\x94\x0e\x98\x20\x6c\x42\x18\xf4\x14\x73\x09\x9a\x9f\xf3\xf4\x36\x07\x97\xb8\x6f\x22\xf1\xa0\xb0\xdc\x75\x86\xce\xc0\x42\x8c\x2d\x17\x34\x46\x6c\x55\x02\xaa\x3d\xaa\x7c\xc7\x5b\x5f\x3c\x14\xe3\xb8\x22\x6e\xcc\x38\x33\xa0\xce\x57\x51\xa8\xae\x95\xd0\x82\xeb\xec\x9c\x60\x97\x70\xb6\x2f\x9a\x6d\x42\xd1\x0f\x4a\xb1\xc5\x9b\x5f\xfd\x7f\x3e\x5f\xa1\xf6\xd1\x19\x71\x4d\xaa\x52\x34\x31\x48\x6b\x1d\xaa\x2c\x61\x7c\xa7\xff\x30\x95\xc9\xb5\x0e\xc0\x6e\x10\x29\x3b\x95\x63\xc4\xb1\xe7\x44\xb7\x3a\x5d\xb6\xac\x06\x4a\x90\x2b\x16\x98\x65\xc7\xd4\x7e\xbf\x1a\xe4\xcd\x86\xa1\x7f\x54\x1c\xab\x05\x95\xab\x34\xa3\xda\xe3\xff\x5a\x92\xc4\x22\x25\x2c\xf3\x41\xcb\xe9\xb4\xf8\x8b\xfa\x57\x3b\x0a\x48\xbc\xd5\x89\x28\xc5\xda\x1f\xf4\x40\xf0\xeb\x93\xc7\xeb\x17\xbf\xfd\xb0\x8f\x70\x25\xe3\x7f\xba\x87\x81\x4a\xa6\xd2\xea\x02\xf2\xfb\x1d\x9d\x54\xe7\x0d\x6f\xe3\x41\x34\x3b\x80\xfd\xae\x31\x20\xa3\xfc\x00\x9b\xba\x10\xab\x85\x48\x6b\xda\x92\x95\xad\x66\xa6\x11\xd7\xe8\x29\xf6\x0b\xce\xdf\xde\x5f\x2c\x41\x16\x42\x69\x5d\x79\x63\x76\x3a\xb5\x9d\x85\x5c\x0f\x5d\xd3\xa1\x4a\x67\xd9\x11\x2a\x80\x9f\xb6\xe4\xcd\x9b\xb0\x2a\xc6\xca\x34\x84\x1d\x38\x28\xfe\xa1\xc7\x4a\x7e\xb6\xd1\xb8\xab\x66\xb8\x85\x31\xb4\xbe\xc3\xaf\x5f\xd5\x7c\xb8\xab\xd3\x39\x6b\x57\xb6\xc1\xa5\xa5\xed\xb8\xfd\x42\x0a\xed\x6b\x8f\x06\x0e\x26\x19\x58\x6f\x67\x3d\x2d\x1e\xbb\x8a\x98\x89\x2e\xd6\xba\x2a\x3b\x40\xfd\xf1\x28\x4c\xc4\xd6\xbf\xba\xc3\xeb\xf6\xf6\xb6\xad\x63\xde\xca\x48\x9a\x6f\x81\xd4\xde\x52\xd4\xdd\x85\x6f\xd9\x95\x76\xfd\x97\x2a\xbc\xd2\xbd\xcb\x2a\x05\xf1\x62\x3b\x51\x25\xdb\xa5\xff\xa0\x62\xca\x33\xc2\x5e\xff\xf6\xe4\xb7\x77\xed\xc4\x94\xaa\x30\x14\x9e\x64\x9a\xf2\xc8\xf3\x50\x26\xa3\xbf\xd9\x3c\x5a\x59\xf7\x40\x12\x81\x29\x65\x3e\x62\x81\x31\xfd\x27\xed\x66\xe5\x68\xba\x0d\x9b\x55\xc2\x6f\x29\xc7\x00\x18\xac\xe0\x3a\x63\x31\x6d\xef\x38\x0a\x31\xf2\xff\x7f\xad\x05\x18\xb5\xdd\x05\xc8\xb4\x29\x02\xb5\x35\xd1\xb6\x6e\x11\xd2\x0e\xb8\x6f\x60\x83\x3a\x6c\x89\xf2\x2a\x02\x09\xe8\x3c\xcf\xa8\xdf\x18\x18\x20\x26\x5c\xc1\x30\x24\xf3\x94\x83\xef\x70\x6b\xa0\xef\x53\xe2\xe6\x8e\x7f\xac\xa4\x25\x35\x63\x03\x1c\x4e\x29\x64\xfe\xb5\xee\x89\x12\xe3\x4d\xba\x71\x9f\xea\xe1\x1f\xcb\xa4\xf9\x81\x62\x43\x57\x88\xd8\x8c\xb2\x65\x5a\x19\x87\xf8\xd8\x83\x02\x5d\xc5\xe8\xd9\xa2\x20\x4b\xb1\x9c\x8b\x41\xad\x44\x98\xca\x63\x58\x63\xe0\x73\xf9\xac\xc0\x38\xc7\xc6\x5e\x10\x68\xbb\x44\xaa\x5e\x98\x41\xba\x83\x5b\x31\x02\x1f\x73\xad\x01\x63\x53\xe7\xe5\xb0\xdc\xe0\x16\x5e\x93\x27\xcf\x9f\x9e\xda\xed\xee\x3e\x14\xd1\x32\x71\x94\x0d\x9c\xff\x61\x3e\x50\x36\xc2\xcb\x23\x7e\x5b\x3a\x86\x31\x3d\x41\x33\x8b\xee\x67\x6e\x4a\xa4\x7d\x07\xed\xa5\x72\xcc\x23\xcc\xd4\x34\xc9\xd5\x55\x85\xfc\x26\xbe\x26\xa7\x76\x14\xff\x58\x67\x7f\xe8\x22\x3c\x03\x67\x74\x74\xf4\xdf\xe3\x6b\x0b\x64\x7a\xdf\x65\x2f\x32\x39\xc6\x38\xbc\x4b\x7e\xaf\xd3\xdf\x96\x7c\xe3\xd6\x66\x9c\x79\x89\x90\xc2\x54\x0f\xae\x97\x1a\x53\xba\x7e\x3c\x98\x34\x92\xed\xd1\xf1\x60\x62\x78\xc0\x02\xf2\x45\x4a\x65\xa4\x84\xe8\xe8\x63\x7d\x8b\x2e\xd5\x86\x26\x26\xa1\x7f\x53\x37\xd3\x70\xce\xec\x33\x26\xac\xb1\xb3\xc0\xed\x34\x54\x8b\x5f\x40\x49\x80\x0d\xe9\x2f\x6b\x60\x98\x3f\x31\xcc\xf9\x73\x3c\x69\x85\x80\x16\x27\xa7\x1c\x9b\x8b\xb5\x56\x68\x47\x09\xb7\xb8\x52\x97\xec\xf1\xe4\xa7\x03\x87\x06\x56\x49\x38\xe7\xf1\x8d\xe1\xd2\x9c\xda\xea\x74\xf7\xf8\x16\x1c\x91\x65\xd0\x27\x4d\xed\x53\xfa\x5a\xeb\xe2\xcd\x47\x31\xd4\xc5\xa2\xab\x71\x0b\x40\x2f\x4e\x4c\xfb\xda\x32\xf9\xd2\xca\xa8\xa0\x72\x69\xdb\x97\xe6\x6f\x1f\x0d\x5f\xac\x34\xae\x9e\x4e\x93\x40\xac\x17\xb3\xde\x1b\x47\x8f\xe5\x96\x7d\x36\xc5\xc9\xd6\x95\x8f\x6e\xf2\x0f\x17\x1e\xaf\xc9\x42\xb6\x09\x3a\xb7\xb1\x31\x38\x5f\x01\x3a\x81\x74\x4d\xb9\xe7\x46\xa9\x23\xe3\xb3\x18\x7c\x6a\x59\x01\xb6\x4a\xc1\xdd\x9a\x49\x16\x99\xdb\x56\x9c\x72\xc6\x10\x52\xc7\xfb\x11\x9f\x67\x7b\x6b\x1c\x94\x5f\xbe\x7a\x31\x79\xf5\xf1\x1f\x4f\x9e\xda\xf9\xa5\x22\xb4\x8a\xd8\x5a\xdd\xd4\xc9\x8a\xdc\xc8\x14\x15\x74\xd2\x75\x29\x23\x62\xda\x08\xf2\x49\x7a\xa3\xba\xee\x54\xeb\x8e\x23\x21\xa3\x7e\xe4\x89\xce\xcd\x46\x26\x35\xcd\x46\xb2\xdd\x45\xea\x42\x30\xaa\x95\x8a\xea\xce\x21\x36\x61\xa0\x79\x24\x50\x8c\x34\xd7\x0b\x68\xdf\xd0\xa3\xd3\x07\x3a\x10\x80\x69\xb4\x0c\x11\x73\x03\x34\x13\x20\x69\x68\x14\x64\x7b\x19\x94\x66\x1b\x40\x6d\xc8\x6c\x4f\x1b\x5a\x12\x8c\xda\xba\x47\x93\xf6\x75\x8f\xcc\x72\x17\xa3\x92\x5a\x27\x71\x58\x2e\xf0\x78\xf3\xad\x70\x32\x25\x1d\xac\x23\xf8\x88\x7b\x9d\x46\x48\x62\x98\xc6\x71\x0c\x53\xe2\x5b\xce\x42\x1d\x93\x9b\xac\x19\xfc\x68\xe0\xbc\x42\x90\x11\xb0\xa4\x0c\xa9\x42\x93\xe5\x72\x0f\xed\xb5\x93\xca\x0a\x4c\xc5\x6c\x0f\x23\x93\xd4\xd1\x0b\x97\x63\xa3\xc1\xda\xc9\xc6\x00\xbc\x25\x08\xbc\x34\x0d\xc2\xb6\x22\x20\xca\x77\x7b\x23\x3f\x9f\x36\xfb\x4e\xc8\x49\x22\x24\x74\xa0\x2a\xe3\x6f\x9d\xaa\x8c\xbf\x29\xaa\x32\x3e\x34\x55\xe9\x50\x4d\xad\x33\x55\xe9\xb2\x15\x76\xaa\x32\xde\x82\xaa\x3c\xce\x04\xbb\x7c\xb2\xd1\x96\xb1\x8d\xb6\xc8\x67\x3f\xab\x77\x2c\x70\x28\xd0\x9b\x56\xa6\xee\x56\xd4\x67\xdc\x27\xf5\x21\x54\xb8\x28\xd7\x69\xac\x82\x0a\xbd\xa1\x02\x64\x5b\x92\x1d\x50\x98\xd9\xbc\x73\x5a\x51\x47\x2a\x9c\x26\x67\x4e\xf5\x9f\x4d\xf6\xaf\x03\x93\xad\x6e\xdd\xcd\x0e\x4d\xb6\x2c\x80\xde\x2f\xd9\xea\xd0\x01\xa8\x33\xd9\xea\xb2\x15\x76\xb2\x35\xda\x9a\x6c\x8d\xaa\xc9\xd6\xe8\xfe\x90\xad\x51\x13\xd9\xea\x43\x71\xb5\xeb\x9a\x3d\xaa\xaf\x01\x62\xe2\xd0\x99\x11\x77\xab\xc7\x73\x7e\xf1\xab\xdd\xd6\xdb\x56\x5f\x55\xfe\x13\x2e\x24\xa1\xd4\xd1\x71\x39\xba\x2f\xef\x56\x8a\x6d\xd5\x04\x85\x50\x81\x67\xd8\x14\x91\x29\x87\x34\xe4\x0d\x78\xe5\x22\x72\xe5\x43\x16\x77\x98\xc0\x1c\x40\x02\xa0\x9e\x56\x55\xc3\x95\x30\xf3\x96\x5a\x01\x07\x90\x21\x10\x71\xe4\x83\x19\x65\x60\x4a\xc5\x02\x70\x2c\x22\x35\x3f\x18\x00\x48\x7c\xc0\x90\x76\x59\xa8\x86\xb4\x44\x67\x4f\x49\x94\xd9\xc4\xf6\x92\xa1\x41\x29\xc8\x21\x21\x54\x64\xab\x5a\x37\xba\xed\x2c\xeb\x88\x38\x02\x4f\xa3\x60\x09\x7f\xff\x0b\x07\x39\x28\x27\x98\x5a\x9c\x71\x73\xd5\xce\x1a\xf9\x40\x61\x87\xb2\xf1\x71\x2b\x6e\x80\xf8\xde\x03\x8a\x54\xa3\x48\xce\x75\xd2\x0c\x89\xd4\xcd\xfc\x00\x0c\x4b\x0c\xd1\x9f\x18\x18\x3a\x71\xf2\x3b\x85\xc5\x7e\x09\xa9\x5c\x87\x0e\x1e\x01\x21\xc4\x49\x9f\x22\x48\x00\x5a\x52\x81\x6f\x91\xa6\x6c\x43\xf0\x72\x06\xc4\x02\x31\x09\x45\x40\x68\x72\x17\x72\x4e\x3d\x6c\xaa\xa4\xc9\x37\xc5\x42\xbe\x42\x04\x22\x02\x50\xf5\x8e\x86\xee\x40\xfe\x49\x12\x60\xcb\x61\xe4\xbd\x15\xa3\x64\x9e\x12\x6d\x20\xa8\x04\x6b\xff\xb4\xdb\xc7\x7c\x89\x39\xd7\x8d\x3d\xcb\xe4\x3b\x73\x7b\xb7\x14\xbc\x5a\x41\xb2\x69\x1c\x4d\x2f\xd5\x6a\x50\xfd\x1d\x83\xbd\x1d\x85\x5a\x85\xa7\x49\x67\x8b\xeb\x13\xa8\x86\x35\x98\xe0\x65\xb4\xac\x85\x8f\x09\x5b\xa9\x0c\x08\x2a\xec\xe3\xdb\x1b\xb8\x6e\x3b\xe1\x3d\x73\xc2\x07\xa4\xfa\x66\x90\xaa\xbc\x95\x07\xc4\xab\x26\xa1\xe2\x01\xaf\xbe\x19\xbc\x2a\x6f\xe5\x01\xf1\xaa\x41\x3e\x7b\x40\xab\x6f\x06\xad\x4a\x3b\xd9\x27\x56\xd5\xda\xca\x7a\x36\x7d\xa9\x6d\xea\xcf\xee\x95\x6f\x26\x7c\x58\xf3\xd7\xe8\xed\xfb\x2f\x47\xb7\x6f\xa7\xf6\xd0\x0d\x53\x10\x48\x57\x63\xba\x85\x0c\x43\x22\x34\xca\xec\xe3\x72\xbd\xf5\x2d\xfb\x7e\x12\xd6\xa7\xd7\xff\x0f\xed\x18\x71\xde\xc8\x83\x62\x95\xca\x6d\x86\x6d\x1d\x7d\xa4\xe7\x61\x9c\x21\x37\x6d\x06\xb2\xa8\x0d\xf9\x4e\xb6\x44\xbd\x6d\xfe\x29\xaa\x10\x7a\x68\xf0\x54\xbe\x01\xae\xe2\x95\x6f\xe4\x2c\x69\xd1\xe9\xbe\xe5\xcb\xb5\x5d\xee\x6d\x33\x6e\xf2\x39\xb4\xff\x72\x5d\x87\x8f\xea\x31\x96\xd4\xbb\x71\x8d\xe6\x58\xf5\x76\xe3\xfb\x78\x99\x69\x5b\x53\x13\x18\x57\x3b\x85\x70\xbd\xe3\x11\x6a\xe0\xbb\xb9\xab\xa7\x9b\x0b\xa8\xe6\xa4\xbc\x54\x7a\xcf\x56\xe7\x24\x56\x9d\xb2\xa7\x44\x0e\xdb\xff\x19\xa9\x56\xb8\x1f\xce\xca\xc3\x59\xd9\xf9\x59\xf9\x25\x49\xdb\xde\xe6\xb8\xe4\xd2\xc2\xd3\x13\x63\x06\xdf\xcd\xa1\xa9\xd4\xfd\x1e\xce\xcd\xc3\xb9\xd9\xf9\xb9\xb9\x34\x7a\xc5\x56\xc7\x26\x55\x4e\xb2\xa7\x46\x0f\xbd\x9b\x43\x53\xa5\xd8\x3e\x9c\x99\x87\x33\xd3\xf5\xcc\x94\xe2\x41\x46\x8d\x3e\x8d\x6d\xf5\xa5\x5c\x2e\x90\x39\x99\x35\xa5\x1f\x2d\x67\xfa\xbc\xf2\x48\xab\x13\x7f\x34\x30\xbf\x2b\x9a\x4a\x37\x9e\x6c\xdd\x79\x7e\x01\x89\x6f\xd7\xb5\x8a\x15\xce\xcc\x37\xcd\xfd\xcf\x03\xab\x2e\x06\x7e\xc1\x62\x01\xde\xcb\xa1\xc1\x0b\x48\x7c\x70\x19\xc7\xe1\x36\xc7\xb5\x95\x90\xaa\x98\xf8\x93\xa7\x11\x3a\x5b\x47\xcd\x89\x07\xd1\xbc\x10\x72\xdd\xf2\xc4\xb5\xa7\x17\xa0\xdd\x42\xed\xc7\xc4\x16\xc3\x16\x46\x41\xa0\x37\xc1\xc9\x04\x65\xa9\xa2\x19\x99\x96\xbf\x98\x08\xc4\x6e\xf5\xe6\x8c\x8e\x8e\x8e\x3e\xd7\x87\xb0\x55\x1e\xac\x7e\x48\xd7\xf6\xc4\xab\x17\xf2\xd5\x07\x01\xeb\x8b\x08\x6e\x41\xdd\x7a\x20\x64\x47\x55\x77\xce\xbf\x01\x0a\x77\x5a\x4b\xe1\xce\xb6\x25\x70\x01\x9a\x09\x57\x45\x87\xb6\x25\x70\x67\x39\xfa\x66\x15\x11\xf4\xb9\xbf\x56\x96\xed\x4b\xe4\x51\x06\xb3\x49\xe7\xbd\x93\xb7\xb3\x43\x52\xb7\xe2\x2a\xdb\xd3\xb6\x24\x26\x77\xb5\xc0\x22\xdb\xee\xe8\xb4\xeb\x91\x79\xa0\x5b\xdf\x23\xdd\x3a\xab\xba\x71\xfa\x0d\x90\xad\x93\x5a\xb2\xf5\x78\x5b\xb2\xb5\xc2\x62\xa1\x7a\xe3\xb7\xa5\x5a\x8f\xf3\x54\xcb\x72\x90\x9f\xeb\xee\x88\xbb\x21\x51\x8f\x0f\x49\xa2\x5e\x41\x36\x47\xe0\x05\x82\x3e\x62\xfd\x93\x13\x90\xec\xc5\x03\x61\xd9\x09\x61\x69\xbf\x1d\xad\x36\x21\x66\x45\x49\xda\xe5\x4c\xb8\x30\xc0\x73\x82\x7c\x90\xe9\xb3\x5f\xaf\xd2\x56\x96\xa9\xaf\x16\xdc\x8f\x06\xce\x35\x9d\xcf\x03\x04\x28\x03\x54\x2c\x10\x03\x30\x6d\xf8\x7c\x48\x42\xfb\xb8\xea\xc6\xc9\x37\x40\x68\x27\xb5\x84\xf6\xb8\x17\x42\x1b\x48\x02\xa2\xe8\x4e\xc9\xbc\x55\xa6\xb4\xc7\x8d\x94\x36\x4b\x8f\x76\x46\x71\x8f\xf7\x46\x71\xdb\x8e\x52\x2a\x37\x9b\x27\x2c\x5d\x08\xb7\xe5\x38\x57\x4b\x96\x3a\xcc\x6b\x2a\xc5\xd4\x4c\x4a\x58\x66\x2a\x71\x5f\xcb\xee\x14\xab\xb7\xc5\xd7\x2c\x46\xc0\xb9\x5c\x01\x8d\x44\x80\xf3\x85\xa9\x9f\x00\x79\x4f\x2c\xa0\x00\x73\x8a\x54\xa3\x6e\x08\x38\xf2\x28\xf1\x81\x7c\x16\x4c\x91\x07\x23\x8e\x00\x16\xbf\xff\x85\x03\x06\x15\xd1\x09\x68\xa9\x66\xe7\x7e\xa8\xf3\x83\xec\xfd\xed\xc8\xde\xc7\x8d\xa5\x05\xee\x31\x4b\xa8\xf6\x73\xc4\x99\xd2\xdb\xb3\x04\x1f\xb2\x9b\x04\xa3\x6b\xf9\xc1\xb8\x91\x1f\x5c\x42\x76\x03\x9e\xea\xb1\x76\xc3\x0c\xc6\x87\x14\xbf\x93\xe5\xed\x40\xf6\x36\x15\xfb\x1f\xc8\xca\xb7\x41\x56\x2a\x4b\x03\x8c\x76\x16\x69\x98\x43\x9a\x1e\x03\x0e\xef\x4d\x1f\xb2\x5f\xa2\x7f\x5c\x7c\xfc\xe1\xbc\x65\x7f\x8c\x0a\x02\x97\xae\xa6\x32\xe7\xf6\xca\x5c\x07\x4f\x73\x6d\xca\x3a\x67\xe7\xc0\xdb\x29\xd4\x4d\xf6\x94\xa4\xa2\xaa\xd7\xb7\x0f\x4c\xd6\xaf\xbb\x2a\x67\xdc\x8e\xec\xe6\x5d\x02\xcb\xf4\x23\x99\xb8\xaa\x04\x20\x85\x4b\xdb\xc1\x37\x03\xe8\x52\x7b\x95\x7e\x65\xab\x06\x98\xe8\x79\xa1\x2e\x51\xdb\x29\x90\x78\x8b\x0f\x5e\x45\x53\x57\x6c\xf1\xd1\x2c\x94\xb2\x8d\xde\x36\x9b\x8d\x2e\xac\x08\x3a\x41\xa1\x74\xa9\x35\xed\xd9\x3c\x0b\x2f\x83\xc8\x2a\x60\x9c\x92\x60\x0d\xd0\x2d\x62\x3a\x74\x1c\x13\x95\x11\x97\xa0\x29\x20\xf0\x36\x4e\xa1\x33\x7d\x17\x80\xd6\x09\x2b\x2b\x92\xb7\x4c\x89\xcb\x1d\x3f\x6b\xb9\xa5\x2b\x75\x35\x33\xe3\x87\x93\xb7\xfd\xc9\xbb\x0f\x38\x37\xc7\xb7\x48\xaa\x6d\x01\x55\xe9\x99\x68\x19\x2e\x20\x57\x99\x0f\x3e\xa0\x33\x81\x08\xf0\x69\x34\x0d\x10\x80\x1c\x40\x10\xc2\x39\x02\x0a\x2b\x86\xe0\x0a\x13\x0f\x49\x64\x5c\x9b\xa4\x51\x4e\xc1\x3c\xa0\x53\x18\xa8\x66\xb3\x68\x90\xde\xc3\x4b\xc9\x9d\x20\x11\x2a\x1d\x62\x81\x82\x10\x93\x39\x80\x12\xcd\x19\xb8\x41\x28\x94\x8f\x62\x06\xa6\x08\x32\x4c\xe6\xbc\x1e\x9f\xfb\x67\xd1\x3d\x35\x1b\xcc\x0f\xaa\x72\x26\x0e\xcd\x9c\x5f\xd2\x57\xff\xfc\xe9\xe9\xc5\xa3\xc6\x5c\x80\xad\x03\xf3\x53\xb6\xdd\xba\x46\x51\x45\x2c\x58\xc3\x48\x36\xfa\xa5\x61\xdd\x42\x74\x30\x9b\xb2\x61\xf8\x97\x04\x61\x3b\xd2\x90\xcf\x9c\xc9\xbc\xf3\x34\x4d\xb0\xa9\x0c\xdc\xaa\x18\xc5\xe6\xaa\xfc\x25\xfe\xbd\xd1\x68\x41\xc1\x3e\xfc\x2a\xfe\xbd\xd1\x68\x05\x45\xe8\xd2\xfc\xdc\x68\xac\x69\x00\x73\xa0\x7e\x1a\xff\xde\x70\x9d\xe4\x26\xb7\x4c\x62\x1f\xab\x4e\x50\xe9\x13\x1f\x40\xb6\x73\x52\xf2\xfa\xbb\xf4\xca\x46\xab\x2c\x84\xbd\xbf\x34\x3f\x37\x1a\xab\x9c\x96\x7a\x95\x5e\xd9\x0c\x73\x4b\xf1\xc5\xbf\xa4\x57\x36\xc4\xb7\x42\xf0\xe5\x65\x72\x61\x5f\x11\xad\xd5\x44\xcc\x98\x4b\xad\xa4\xa6\x9e\x88\xa5\x6f\xe6\x89\xd8\x5b\x7d\xfd\x50\x34\xac\xc2\x06\xfc\x36\x73\x69\xa3\x5d\x8c\x25\x59\xfb\xf0\x7d\x9c\x89\x8a\xa1\xfb\x38\x1f\x15\x43\xf7\x74\x56\x2a\x46\xef\xe7\xdc\x64\x07\x57\x90\x8a\x65\xb4\x7b\x7a\xa0\x16\x34\x08\xe8\xaa\xfb\x71\x8a\xdf\xcb\x1f\xa6\x17\xea\x6a\x5f\x67\x49\x5e\x34\x05\xfa\x9d\x29\xf4\x6e\xe6\x8c\x46\xc4\xff\xf1\x5f\xc6\x27\x4f\x9f\x9c\x8d\xfe\x27\x08\xa1\xef\x63\x32\xff\x71\x72\x94\x36\x5a\xd8\xe2\x9c\x60\x72\x8b\x98\xd0\xdb\xb6\xc3\x33\xd3\xf0\x99\xbe\xce\x4f\xc3\x67\x7a\x3c\x4b\x0d\x5f\xea\xef\x5c\x35\x7c\xe8\x3e\x1d\x2b\x8e\xbf\x76\xcb\x57\x8a\x45\x6d\xf3\x5e\xfe\x58\xe9\xf3\x04\xae\xf0\x57\x3b\xe7\xdb\x35\x83\xd2\x5d\x82\x32\xc8\x13\xff\xee\xbc\xa1\x99\x41\xde\x24\x11\x4e\x1b\xa1\xc5\x12\xf9\x38\x97\x75\xff\x3a\xb9\xb0\x99\x30\x5b\xb0\x5e\xbc\x8a\x7f\xef\x21\x25\x61\x77\x2a\xb8\x46\xab\xfe\xd4\x6f\x53\x7f\xef\xb0\xda\xf7\xe4\xea\xfc\xe5\xd1\x6f\xaf\x46\xdb\x98\xc6\x93\x22\x83\x0d\x6d\x71\x74\x58\x7e\x3a\x40\x08\x03\x24\x04\xca\x74\xe1\x92\x03\xbd\x8b\xaf\xc6\x1d\x52\x55\x4d\x55\x86\xc3\x38\x10\x28\x6e\x53\xb8\x84\xfe\xf5\x02\x2d\xe3\x24\x8a\x25\xf4\x81\xfe\x3d\x70\x9e\x78\x1e\x22\x42\x59\x88\x08\x8a\x04\x83\x01\x1f\x5a\xfa\xd4\xa6\x16\xad\x5e\xa7\x66\x8a\x22\x5f\x24\xf5\x15\x9d\x77\xfa\x0a\x30\x97\x06\x8e\xfe\x03\xcc\x18\x5d\x9a\x40\xa7\x17\x90\x2f\xf0\x05\x65\x21\x88\x6b\x2a\x0f\xc1\x5b\x65\xdd\x9a\x52\xc6\xe8\xca\x14\xea\x80\x81\x40\x8c\x40\x5d\xc8\x4c\xad\x52\x1b\xc2\xd4\xfc\x00\xf7\x24\x00\xf6\xb9\x56\x53\x54\x2d\xb3\xd6\x67\xa6\xcc\x5a\x71\xad\xb1\xc1\xd8\xa3\xe4\x8b\xc1\xf2\x7c\xe1\x36\x55\x77\x84\x21\x1e\x52\xa2\xca\xa9\xb5\x6b\xe6\xbf\x9b\xc3\xae\x51\xba\xcf\xb3\x7e\x5f\x7a\x4e\x7e\xf8\x75\xfc\xf3\xd3\x5f\x4f\xda\xf7\x9c\xb4\x1e\xf8\x74\x35\x05\xf6\x7a\x41\xc3\x35\x88\x2d\x48\xf5\xf6\xf7\x9a\x48\x1e\x2d\x11\xa7\x4d\x0d\x09\x55\x9d\x69\x5d\xc1\x20\xe1\xaa\x83\x5e\x89\xfb\xa2\x33\xef\xec\xfc\x0c\x1e\xb9\xa7\xe7\xc7\x53\xf7\xfc\xe8\xf1\xc4\x3d\x85\xa7\x33\x77\x3a\x3b\xf2\x8e\xe1\xf1\xd1\xc9\xec\x6c\x92\x35\x6a\xc7\xbd\x8b\xac\xcd\x00\x73\xbd\xfb\xe4\x7e\xb5\x18\xdc\xda\x07\xbb\x0b\x7f\xeb\x1b\x83\xfb\x69\x92\x97\x1b\xd4\xc7\xb3\x99\x7b\x8b\xd1\x0a\x1d\xba\x59\xde\x6f\xcf\xde\x3c\xbb\xfb\x80\x6e\xb7\x41\xe3\xcc\x6a\x5c\x4c\x38\x62\x22\x2e\xf1\x9e\x4b\xce\xc5\xb3\x19\xf8\xa8\x9e\xd2\xf4\xea\x65\xe6\xd1\xce\x1e\xa6\x86\x6a\x29\x2d\x5f\x6c\x8c\xec\xc8\xa0\xf8\x17\x3a\x55\xfb\x96\x31\x8b\xcb\x5f\x9f\xd3\x1e\x94\xf1\x72\xde\x92\x60\x6d\xc2\x5f\x7a\x6a\xc2\x69\xf3\x04\x59\xc1\xef\xa3\x00\x09\x4b\xeb\xa5\x12\xf0\x2f\xcd\x83\xdf\x07\xec\xe3\x65\x1f\x12\xf4\xe9\xfe\xbb\xb7\x88\x4d\x29\x2f\x79\x56\x4b\x9b\xf0\xcc\xc7\xe2\xfb\xd8\x00\x24\x57\xb2\x33\xe0\x57\x38\xb5\x3b\xf8\x42\xb5\x04\x28\xf0\x12\x71\x00\x81\x9c\x3b\x58\xe1\x20\xd0\x7e\xf8\x05\x94\x42\x20\xf0\x68\x14\x06\x48\x85\xb3\xf2\x21\x78\x8d\x09\x65\x40\xac\x10\xbc\xe1\x40\x50\x00\xc1\x17\x3a\x05\x3c\x44\x9e\x94\xad\xa2\x40\x48\x19\x4c\x73\x55\x39\x5c\x83\x23\xb3\xd9\x31\x9f\x45\xa5\x44\xef\xab\xc5\x9e\xd7\x90\xac\xc1\xc5\x02\x92\x79\x8d\x06\xfe\x2d\x21\x91\x5a\xf6\xa5\xba\xd4\x3b\x12\xf5\x2e\x17\x64\xf6\xab\x4f\xb9\x20\xdf\x6c\xd0\xfd\x12\x2d\xa7\xf4\xc0\x22\xc2\x92\x9d\x06\xe1\x6b\x6a\x57\x6d\x75\xf3\x53\xdd\xb5\x3f\xd3\x57\xb7\xa5\xe4\xa0\x96\x57\x5a\x75\x95\x06\x7c\x2c\xd1\xb1\xd8\x6a\xb8\xd0\x13\x56\x23\x69\xca\x18\x32\xcf\x3f\x85\xec\xd2\xf4\x86\x75\x78\x18\x60\xa1\xb6\xaf\xc6\x76\x65\x8e\x80\xee\xae\x9a\x3d\x01\x01\x9a\x23\x52\x88\x4c\x75\x0a\x3d\x57\xb5\x29\xae\xaf\xa6\xab\x3a\xae\x56\x5d\x8b\x7b\x86\x3a\x35\x4d\x4f\xc7\xba\x27\xb6\xdc\x88\xb4\xe3\x68\xbe\x1f\x6b\x7c\x3b\xdb\x11\x35\xdf\x92\xb5\xf1\x0b\xdb\xb4\x55\x2d\xea\x2e\x9d\x9a\xaa\x96\x60\x51\x71\xb1\xba\xa9\xea\xa4\x6b\x53\xd5\x1a\x5d\xcb\xd2\x0a\x75\xdc\xb2\x15\x6a\xed\xb8\x41\xdc\x3c\xae\x3a\xdc\x38\xfd\xda\xa6\x4d\x5e\x1b\x09\xe8\x78\x30\x69\x6a\xc6\x6a\xe9\xe0\xda\xca\x76\xbd\x4d\x3d\xfb\xf6\xe6\xe4\x27\x40\xd9\xc3\x95\x9d\xc4\x84\xd4\x5d\x66\xa8\x02\x78\x0a\x59\xa6\x08\xfd\x8c\x32\xb0\x5a\x20\x1d\x8f\x97\xa5\x1e\x40\x07\xb4\xe9\x22\xf7\x88\x08\x06\x83\xcc\x6b\x71\xac\x1e\x9c\xa3\x21\x78\xa9\x72\x60\x20\x50\xfc\x8c\x01\x5d\xf0\x55\x27\xcf\x30\xf4\x47\x84\x19\x52\x75\xf4\x55\x29\x0d\x9d\x97\x27\x05\x0c\x8e\x90\xfe\x28\x14\xf2\xd5\x29\x0a\xb4\x45\x4a\xe1\x91\x12\x2f\x2a\xf8\xdf\xbd\x61\xef\x9c\x92\x44\xa9\x8d\xc9\xb2\xbc\xd8\x44\x8e\xbf\x01\x5e\x6f\x63\xcb\xbb\x63\xfb\x07\x66\xf8\xe3\x63\xfe\x1e\xd3\x5f\x5e\xf4\x1d\x49\xb6\x7d\x52\xcd\x06\x01\x63\xa5\xbd\xcb\x44\x8e\xb5\x6a\x80\xd6\xd6\x1b\xac\x7b\xf0\xff\x78\x72\x14\xde\xfd\x4f\xa0\x9a\xf4\xff\x38\x3e\x92\x3f\xaa\x3d\x5c\xe6\xe0\x34\x08\x35\x1b\x9d\x9e\xbd\x44\x98\x6e\xec\xde\xbb\xb6\x11\x57\x25\x49\x82\x90\x51\x89\xf8\xca\x8a\x1d\xac\x01\x5f\xd0\x95\x26\x89\x58\xa5\x1c\xea\xe0\xe4\x29\x64\x92\xcc\x02\x4c\xbc\x20\xf2\x95\x4e\x17\xb7\xdf\xa7\x51\x42\x8d\xa7\xf4\x6e\x00\x20\xe7\x91\xd4\xfa\x54\x7c\x35\xfe\x8a\xe2\x9b\x1e\x25\x02\x62\x82\x18\x40\x81\x5a\xd6\x40\x51\x5b\xcc\x81\x8f\xb8\x4e\xd1\x16\x14\x4c\x11\x50\x50\x31\xbd\x51\x2e\xae\xae\x86\x1b\x87\x90\xf5\x57\xdf\xb7\x4d\x3e\xd2\xee\x08\x73\xed\xda\xf7\xea\xd1\x56\x7b\xa2\x40\xd4\x25\xfa\xaa\x44\x11\x54\x96\x5d\x32\xcc\x77\x40\x15\x7e\xc1\x62\x71\x91\x80\xe5\x5b\x24\x10\x2f\x67\x00\x02\xa5\x52\x4a\x82\x70\x8b\xf5\x19\x37\x43\x79\xd4\xcf\x7a\xc5\x33\x42\x7f\xba\x20\x45\x47\x24\x73\x1c\x00\x2c\xb4\xad\x67\xaa\x5a\x16\x25\x47\x5b\x13\x01\xa6\x1d\x65\x3e\x26\xf3\x8a\xe1\x19\xf2\x72\x81\xb2\x19\x7a\x11\x04\x74\x25\x5f\x94\x42\xa3\x17\x71\x41\x97\xda\x7f\x88\xbf\xea\x02\xff\x7f\x16\x52\xd1\x0e\xdf\xee\x0b\xd5\x98\x05\xe8\x0e\x4f\x71\x80\xa5\x9a\xba\xb9\x18\xa1\xa2\x62\x54\xb7\xd8\x5d\x10\x8c\x51\x86\x60\x3c\xfe\x16\xc5\x88\x46\xc8\x8d\x77\x04\x39\x4d\x5e\x0d\xe8\x26\xdf\x20\xe4\x76\x4f\x5f\x2f\x8b\xa2\x57\x56\x48\xf2\xf1\x12\x11\x8e\x29\xe1\x25\x51\xa9\x92\xa0\xed\xfe\xd0\x06\xf8\x16\x81\x28\xf4\xa1\xe8\x14\xc3\x56\x42\xbe\x74\x88\x9d\xf3\xf9\xdd\x1f\xdb\xf7\x0a\x4f\xc8\xfc\x3b\x41\x42\x82\x97\x52\x4d\xd6\xa2\xb6\x92\xf9\x3d\xed\xdd\xf8\xd3\x30\xd2\x16\x1b\x7a\x5f\xb8\x68\xaa\x89\x6d\xc5\x44\x4d\x06\xea\x37\x7f\x16\xa3\x65\x1f\x87\xf0\xf0\xd1\x99\x45\x08\xf4\x68\xe4\x62\x34\xf4\xe9\xea\xd0\x71\x5b\xcf\xcf\xd6\x2f\x30\x7a\x36\xb7\x1b\xb7\xa8\x0e\xcb\x1b\x94\xfe\x68\x1b\x0a\x13\x2f\xb2\x94\x54\xbd\x0c\x03\x04\x2e\x93\xdb\xd6\x23\x13\xd2\x15\x62\x2e\x47\x81\x54\x39\x12\xd4\xd3\x33\x90\xd8\xae\xef\x20\x5f\xfd\x09\x99\xb7\x78\x8e\x51\x90\xfe\x7a\x46\xe0\x34\x50\x77\x29\xd1\x94\x33\xc5\xd8\x78\x10\xe5\x17\x91\x17\xe2\xb1\xde\x9a\xf5\x7d\x36\x5d\xfb\xf5\x41\x98\x0b\xa7\xf8\xe6\xc0\x09\x10\x99\x8b\x85\x7c\x74\x94\x78\x7c\xd4\xd3\x30\xee\x85\x25\x69\xc6\x91\x6e\xc1\x2f\xaf\x2f\xa3\x74\x98\xd2\xf7\x8a\xde\x97\x3a\x2f\xdc\x28\x76\xda\xe8\x39\xb6\x88\x68\x9c\x34\xd3\xbb\xed\xa3\x0a\xde\xc9\xfd\x02\x57\x6a\x65\xc0\x8b\x18\x43\x44\x04\x6b\x30\x8b\x82\x19\x0e\x02\x2e\x15\x44\x29\x43\xa9\x98\xda\xdf\xff\xc2\x41\x8c\x1d\x80\x20\xe4\xf3\x82\xa9\x6a\xeb\x00\x02\x33\xb8\x94\xaf\x51\x29\x2f\x36\xc6\x3c\xf0\x1e\x99\xfb\x9d\x03\x06\x2a\x1b\xf5\x35\xbd\x22\xd9\xe6\xc4\xb1\x79\x4b\x0f\x87\xf0\xe3\x7d\x63\xfc\xb8\x03\xca\x83\x92\x7b\xaf\x2d\xda\x8f\x9b\x7c\x75\x7b\x8e\xbb\x89\xd1\x2e\xd7\x6d\x7a\x74\x74\xf4\xdf\x25\x5f\x46\x43\x70\x4d\x95\x76\xc1\x68\xa0\x5b\x42\x4b\x66\x2d\xcf\x04\x4c\xce\xca\x00\x40\xff\x4b\xc4\x85\x45\x37\xc1\x82\x67\x74\x13\xf0\x96\x20\xb0\x82\x6b\x15\xac\xe3\x2d\x30\xba\x45\x40\x98\xe6\x8e\x91\x14\x34\x80\x41\xe0\xfe\x0e\x9a\x42\xc2\xca\x93\xa6\xc4\xd8\x2b\xf3\xcc\x77\x7e\xda\x96\x90\xac\xdf\xd6\x9f\xb8\x49\xcd\x89\xcb\xbe\xde\xeb\xa9\x9b\x6c\x7c\xea\x46\x1d\x4e\xdd\xe8\x9e\x9d\xba\x5f\x16\x48\xe5\x42\x50\x06\x08\x35\x27\x27\xc6\xca\x85\xaa\xee\xa1\x77\x54\xb2\x1d\x79\x3c\x3c\x4a\x66\x78\x1e\x31\xb9\xbf\x43\x70\xbd\x0e\xb1\xa7\x9c\x2f\xea\x45\x2d\x61\x29\xd7\x37\xd5\xee\x98\xe4\x75\x4a\x3c\x94\x39\xaa\x6a\xec\x25\x65\xf2\xdc\x41\x02\x46\x47\xc0\xe0\xd6\x9e\x8b\x7c\xc4\xf3\xe9\x4f\x76\x9d\x51\x22\xe2\x3c\xb8\xc3\x8a\xaf\x8f\xd6\xf3\x27\xc7\xbf\xbc\xbb\xdb\x26\x5e\x3b\xbb\x9a\xa6\x64\xa3\x4e\x4a\xbd\x79\x61\x31\x2a\x3e\x9f\x50\xc7\x6c\x22\x9b\xae\xe7\x6f\xd1\x66\xcd\x30\xd9\x5e\xbb\x57\x74\x89\x40\xc8\x28\x47\x12\x0b\x67\x3a\xad\x41\xa2\xa7\x8a\xb1\x88\xeb\xd4\xbc\xa1\x02\x10\xe4\x21\xce\x21\xc3\xc1\x1a\x2c\x51\x5c\x88\x86\x21\xe8\x63\x32\x2f\xb7\xdc\xb5\x5e\xd8\x68\xd1\x63\xeb\xa2\x8b\xed\x86\x75\x46\xe0\x77\xb6\xf4\xea\x4e\xcb\x27\x4e\x21\x43\xf3\x3e\xae\x7c\x8f\xa4\x29\x73\xf4\xfa\xa6\x4e\x02\x7a\x37\x87\xce\x82\xf4\x7d\x7e\xf3\xfa\xed\xbb\xb7\x3b\xa8\x41\x84\x49\x80\x89\x42\x1c\xc1\x22\xb4\x75\xe5\x21\x17\x86\x61\x80\x5c\xbe\xe6\xaa\xc8\x58\x5b\x0b\x96\x02\x75\xfe\xd5\xbc\xf4\xd7\x38\x6e\xce\xa8\x55\xca\x21\x14\xeb\x10\xcd\xa0\x97\x49\x22\x94\x5f\x7c\x0e\x97\x38\xb0\xcf\xbb\x53\x6e\x5f\x2f\x86\xbf\xa7\x01\x26\x37\xaf\xa1\x77\xa5\xa6\xf0\x9c\xaa\x27\xba\x80\x6f\x2a\x07\x70\x97\xd0\xab\x00\x61\xbb\x0f\x6c\x09\x47\xeb\x47\xf6\x0f\xcc\x2b\x34\xa7\x08\x7c\x78\xd9\x11\x84\x5c\xbe\xe6\x46\xb8\x64\x66\xaa\x19\x6e\x4b\x80\x65\x86\xde\x3f\x98\xde\xd3\x29\x15\x1d\x3a\x13\x2b\x20\x31\xf3\x52\x1e\x44\xd5\x43\x6d\x09\xa0\x64\xe0\xfd\x83\xe7\xed\xdd\x7a\x8e\x08\xb8\x82\xf6\x74\xae\x1a\x18\x51\xf5\xa6\xcb\x61\x39\x5f\xaf\x61\xd0\x2d\xa1\xa5\x47\x77\xcd\xe8\xfb\x07\xd9\x87\x69\x44\x44\xd4\x11\x5a\x91\x79\x29\x0f\xa8\xea\xa1\xb6\x84\x51\x32\xf0\xfe\xc1\x73\x01\x89\x80\x0c\x05\x1d\xba\xe6\x2b\x08\x79\xe9\x7b\x85\x7c\xe6\xba\x01\xb7\x84\x53\x76\xec\xfd\x83\xea\x05\x0a\x6e\x91\xc0\x1e\x04\x6f\x90\x0e\xf8\xef\x00\xaf\x45\xfc\xb2\x4b\x50\x54\x4a\xf9\x6a\x1e\x7a\x4b\xc8\x95\x3e\xb0\x7f\xf0\x49\xd2\xe3\x72\xc4\xf0\xac\x2b\x0f\xcc\xbc\x98\x07\x5b\xfd\x90\x5b\x82\x2c\x37\xf8\xfe\xc1\xb5\xa4\x84\xf2\x50\x4e\xb0\x1b\xb4\x32\xef\xe5\x81\x55\x3b\xe0\x96\xb0\xca\x8e\xbd\x3d\xa8\xf6\xe7\x04\xcd\x28\x54\xfd\x69\x69\xf3\x48\x08\xc4\xdc\x25\x22\xd1\xa1\x4b\x57\x5c\x4d\x7e\xfd\x30\xfa\xfa\xcc\xae\xa5\xa9\xaa\xcb\x83\xc2\x3f\xdd\xbc\xa0\x66\xa9\xa6\x3a\x73\x16\xdb\x7e\x52\x77\xc0\x6b\x09\x84\x3d\xdb\xc4\x8f\xcb\xaf\xd5\xbd\xa8\xd7\x60\x7b\x27\xad\xdc\xc4\xb1\x8e\x14\xcd\x35\x48\x50\x4b\xab\x4d\x7a\x0b\x6d\xef\xb8\xc5\x74\xaf\x77\x01\xf4\x50\x75\xab\x20\x33\x56\x54\x4a\x4e\xd4\x83\x61\xde\xdc\x9e\x2c\x2d\x7e\xdd\xa6\xcd\x98\xad\x58\xbb\x9a\x23\x78\x4b\x52\x83\x4e\x7d\xef\xa2\xe6\x2f\xe6\x06\xbe\x5e\xd1\xfa\x81\x0b\xd0\xd9\x1c\xd8\xcf\x11\x14\x11\x3b\x34\xb8\xf3\x93\xd9\x05\x5c\xe3\xa1\xbb\x42\xb6\xf6\x72\x85\x35\xcf\x6e\xe0\xab\x3c\xa3\xdd\x8e\x67\x73\x4b\x95\x86\x77\x6f\xe1\x3c\xaa\x6e\xa6\xd2\x66\x49\xad\xad\x88\xcd\x2e\xc5\x94\x60\xba\x0c\x7b\x0b\x37\xe5\x21\x15\x04\xf4\x0d\xbc\xc5\x73\x98\xd6\x7e\x7a\x8f\xbd\x05\xb8\xc8\xbc\xf5\x40\x5b\xef\x0b\x6d\x2d\x3f\x52\x8b\x9b\xf2\x0b\xd9\xc6\x07\x2d\x3c\xb8\x19\xbf\x6d\xea\xcc\xcd\xfb\x68\x4f\x07\x0e\x65\x05\x1f\x69\x1c\xf6\xa3\xc9\x4c\xd6\xcd\xca\x18\x5c\x4b\xb4\x94\x77\x06\x8e\xa4\x15\x03\xe7\x7a\xc1\x50\xf1\xb9\xd6\xee\xd8\x6e\x11\x3f\x65\x58\x8d\xe2\x3e\x83\x2d\xc4\xc8\xe3\x92\x33\xb6\x91\xaa\xb5\xb8\xf5\xc0\x2e\x1f\xd8\xe5\x03\xbb\xdc\x13\xbb\xdc\x34\xee\xe1\x25\x01\x94\xf9\x88\x01\x41\x93\x5e\x23\x40\x33\x1b\x40\x52\x8e\xc9\x05\x43\x70\xa9\xcb\x61\x43\xe2\x03\x04\xb9\x8a\x1a\x4a\x1f\x19\x00\xc9\x86\xd3\xfc\x7e\x0e\xf8\x82\x46\x81\xaf\x72\xc8\xa4\xa2\x85\x7c\x5d\x25\x20\xa4\x9c\x63\x15\x35\xf1\x8b\xfc\x49\xa8\x48\x2e\x99\xa6\x28\xe9\x8b\x37\x28\x14\x80\x20\xa9\x9f\x2d\x10\x10\x34\xdc\x36\x10\x29\x23\x35\x2c\x21\x59\x2b\xb6\x51\x12\x18\x5e\xac\x43\x2a\x16\xca\xc8\x13\x80\x0a\xe9\x41\x55\x12\x7a\xa9\xdf\x7e\x10\x1c\xf6\x28\x38\x38\x85\xa2\x31\x05\xe6\x0b\xb2\xac\x77\xe0\x3c\xa7\x11\x93\xff\x48\xa6\x32\x70\xae\xf0\x9d\xfc\x5f\x74\x8b\x88\x93\xe3\xac\xcd\x6c\x75\x33\xf6\xe2\x64\x03\x71\x8b\x75\x4d\x6a\x4f\x76\xb9\x82\xc8\x7d\xe7\x47\xdf\xc8\xc6\xc4\xfc\xc9\xc9\x06\x8b\x76\xda\x9a\x72\xc0\x68\xcf\x5b\xf3\x56\x2c\x2a\x0a\xa0\x6f\xb2\x2f\x1b\x01\xab\x49\x2c\xbb\x5e\x20\x40\x09\xd2\x15\x5a\x7c\xec\x93\xdf\xff\x22\xc0\x0c\x0b\x80\xc9\x9e\xe4\xa9\xeb\x05\x26\xf3\x3f\x1d\xf6\xaa\x55\xe7\x43\x2e\x3b\xe1\x6e\x39\xec\xd2\xba\x2d\xb5\x97\x1f\x84\xb1\x5d\x09\x63\xd7\x0b\xc4\x50\xa6\xca\xa2\xea\x76\x38\xd5\x27\xcd\xc8\x64\x12\x7d\xe3\xde\x87\xba\xf0\xf8\x87\x97\x03\x30\x8d\x04\xc0\x42\xf5\x8e\x53\x31\xa7\x78\x09\xe7\x98\x20\x55\xfd\x43\x44\x46\x6c\x51\x83\x0b\xf5\xbf\x90\x21\x20\xe5\x9f\xac\x88\xa7\x44\xa1\x78\x68\xfd\xb5\x1e\xa5\x2d\xec\x51\xb2\xb9\xb4\xf5\xd2\xa3\xe4\x41\xda\xba\x6f\x66\x9a\x3a\x5a\x65\x3c\x5f\x77\x6a\xe3\x55\xe1\x6e\x13\x0f\xa9\x51\x27\x63\x91\x00\xfd\xab\xf8\xb5\xdc\xab\x34\xb3\x05\xe6\x82\xb2\x75\xcd\xdc\xfe\x8c\x56\x82\x12\x98\xd2\x16\x65\x65\x30\xed\xca\x9e\x50\x9a\xc4\x12\xf9\x18\xba\x21\x8c\x38\xaa\x9d\xc8\x83\xf5\xe1\x9b\x60\x78\x2f\x35\xb7\x99\x45\x72\xd3\x06\x59\xdb\x83\xe2\x73\x4b\x68\x2a\x0d\xcb\xed\xdf\x3a\x09\x29\xc3\x8d\x74\x27\xd6\x22\x27\xfa\x49\xf7\x67\x2d\xf1\xa0\x03\xf3\x1c\xb3\xa2\x9c\x33\xbc\x12\xae\xb5\xe0\x39\xd4\x36\x3b\x96\x40\xf5\xb8\x3f\x6e\x17\x81\x47\x8a\x3a\x58\x80\x25\xbc\x41\x1c\x70\x44\x74\x94\x3b\xba\x0b\x19\xe2\xba\x12\x87\x7a\x5a\xa7\xeb\xa8\x3c\x79\x41\x49\x6a\x92\x1a\x82\x6b\x93\xdc\xb6\x5a\xc4\xd5\x25\x2d\x8f\x81\x80\xd2\x1b\x0e\x02\x7c\x83\x8a\x71\xf0\xd9\x98\xff\x30\x43\xc0\xb8\x60\x34\xd7\xbd\xf1\x0d\x15\xe8\xc7\xec\xcb\x40\xf7\x49\x32\x19\x42\xb9\xb5\x71\xc0\x10\xf1\x11\x33\x15\xd3\x54\xd1\x36\xd5\x4a\x38\x80\x6b\x1a\x89\xb8\xc6\xda\x0c\xdf\x21\x1f\x84\x94\x63\x55\x28\x49\x15\x84\x33\x68\xa6\x72\x8c\x88\x86\x12\xe6\x00\xdd\x41\x95\x3a\x9d\x74\xcd\x56\x12\x21\x96\xfb\xa2\xbe\x0e\x3d\x11\xc1\xc0\x64\x0e\xca\x4f\xaa\xaf\x84\x61\xb0\x56\x95\x99\x72\xdf\xb1\x24\x03\xec\x31\xf6\x3f\x83\xf3\xfd\x45\x95\xe8\xae\xe0\x07\x0e\x28\xc1\x5f\x3e\xfe\xf0\xc7\x88\xd0\x6d\x92\x92\xcc\x42\xec\x54\xec\x85\xb9\x59\x4f\xba\x2c\xdd\xc0\xd3\x46\xe4\xe5\x26\xac\x8d\x44\xcc\xb4\x21\x9f\x32\x58\x2c\xf6\x9c\x63\x5a\xb6\xda\xbd\x66\xaf\x05\x9d\x9b\x0e\xeb\xf2\x26\x64\x18\x1a\x21\xa9\x4e\x48\x56\x8f\x9f\x28\xac\x14\x18\x06\xfc\xd1\x02\x2e\xa7\x11\x9b\xa7\xc1\x43\x9f\x9b\x19\x60\xed\xec\x32\xfd\xd5\x55\x9b\x31\x3a\xa7\x2d\xa7\xa2\x31\x53\xbd\xd0\x6a\x1a\x9d\x44\x0b\x33\xad\x52\x69\xed\xdc\x7a\x4a\xed\xd2\x2c\xcd\xe2\x25\x49\xce\xf6\x9d\xaf\x82\x4d\xcb\xb1\x5e\x61\x72\x63\x17\x62\xbb\x8d\xf3\x02\xb1\xaa\xcc\xa7\xed\xd3\x93\x04\x8b\xb6\xa6\x50\xfa\x0c\xf6\x47\x9c\x74\xce\x8e\xab\xde\xc4\xc6\x31\x7d\x50\x42\xf5\x2a\xc4\x4f\x2f\x8f\x27\x5b\x11\x2a\xcb\xa2\x0a\x44\xeb\xa5\x7a\x02\x5c\x66\x9f\xd8\xae\x3d\x83\xad\xe1\x61\xe3\x71\xb2\xd5\x2f\xb2\xce\xbd\x03\x5d\x2b\xaa\x78\x2a\x45\xef\x55\x7c\xb1\x0b\x0d\x0a\x21\xae\x37\x2d\x58\xdb\x5a\xa1\x5c\xcb\xaa\x6b\xc4\x96\xa0\x58\xf9\xb1\x7a\xa4\xec\x5b\x1f\xe3\xa2\xed\x6d\xb4\x89\x9d\x2f\xe4\x7d\x44\xa4\x70\xf2\xf7\x4e\xeb\xf8\xb5\x42\xb3\x3e\xc4\x02\x5e\x41\x2e\xc0\x87\xd0\x87\xa2\xa9\x3f\x74\x76\x11\x71\x44\xb1\x2a\x90\xee\x0a\x1e\x1b\xab\x09\x5d\x65\xc4\xf0\xcf\x45\xdd\xf8\xbe\x2a\x80\x4f\xe2\xf2\x13\x02\xcf\x17\x22\x58\x03\x1f\xf3\x30\x80\x6b\x70\x83\xd6\x8f\x14\xe5\x02\x98\xe8\xc5\x6a\xa1\x37\x49\xb4\xe7\x08\x11\x00\x45\xec\x18\x06\x74\xa6\x84\xe6\xad\xb5\xc4\xf2\x79\x77\x4d\x5c\x79\x0b\xa2\x05\x3e\x26\x8f\xf6\x44\xbd\xec\xed\xe6\xef\x07\x21\x33\x5d\x8a\x1f\x68\xd9\x9f\x8e\x14\x6c\x86\xc7\xa9\x05\xf1\x5e\xe1\xb1\xe9\x6c\xfd\x80\xc7\x0f\x78\xdc\x0e\x8f\xfd\xa4\x43\xf9\x7d\x42\x63\xdd\x37\xfd\x01\x8b\x1f\xb0\xb8\x1d\x16\x4b\xb9\xea\xbe\xe1\xf0\x4b\x32\xa3\x0f\x18\xfc\xe7\xc3\xe0\xdd\xf8\x96\x94\x74\x9e\x41\x4e\x1d\xf6\xa0\x6a\xdd\x08\x0a\x24\xa0\xc1\x0a\x05\x81\x0e\x31\x30\xdd\xc4\x4d\x37\xf3\xa4\xff\xd5\xbe\x0b\x71\x95\x8f\x54\x7f\xb6\xa5\x5c\x81\xe5\x83\x1a\x95\x56\xef\x5e\x1c\xdd\x91\xdb\x5f\xb7\x31\x2a\x65\x57\x53\x50\xcc\x7e\xbe\x7a\xfb\xc6\xf4\xfd\xfc\x36\xba\x7c\x36\x57\xbe\x96\xbf\xae\xb4\x39\x6b\x7f\xdd\x62\x6d\xb0\x76\x67\x51\xb9\x54\x41\x06\xe0\xaa\x8c\xd4\xf3\x28\x08\xc0\x25\xf5\xa2\x25\xaa\x29\x45\xf3\x0d\x6e\xc1\x2b\xdd\x66\xf6\xfe\xf7\x5f\xcb\xac\xa7\x3f\x02\xa2\x48\x93\xe9\x5e\x7a\x50\xfa\x31\x9b\x3d\x1d\x93\x7f\xbc\x1d\x6f\x43\x3f\xd2\xc5\x64\xfb\x9b\xe5\x6b\x03\xd5\xb4\x4e\x6b\x5b\xee\x6f\x64\x6b\x54\x92\x29\xb3\x0e\x8e\x2b\xea\xac\x67\x90\x33\x0b\x77\x92\x6f\xde\x7a\x27\x41\xec\x0c\x9c\xb5\xf9\x57\x3d\xa5\x1a\xcb\xa4\x88\x2b\x5f\xbf\x90\xd7\x93\x5e\xae\x6b\x04\x59\xd2\x86\x53\xc5\x48\x25\xbe\x3e\x0b\x62\x77\x11\x37\xef\xe3\xb2\x5f\xe3\xc0\xaf\x58\xb6\x16\x82\x9b\xd7\xbc\x0d\xf1\xcc\x20\xda\x0c\x07\x81\xab\x00\x50\x44\xb5\xe7\x41\x84\x7d\x60\x6e\xf5\x8a\x6d\xe3\x93\xfb\x80\x5f\xb1\xce\xbc\x3b\xf4\xda\xe3\x3a\x6b\x10\x2a\xb1\x71\x6d\x87\x53\x3d\x46\xda\x3c\x51\xed\xd9\x4d\xab\x40\x15\x6a\xa3\x5b\xd7\xe4\xab\x47\x17\x0a\x43\xeb\x40\x99\xb8\x55\xa0\xbd\xc7\x0d\xbc\x43\x7c\x00\x56\x0b\xec\x2d\x94\x64\xed\xc1\xc0\x8b\x24\x8d\xf6\xc1\x14\x72\xe4\x03\x4a\x00\x43\x30\x00\x97\x6f\x5f\x4b\xb1\x9b\x47\x4c\xcf\xd6\x0c\x9f\x34\x76\x85\x40\xac\xa8\x1b\x42\x1e\x47\xc2\xfc\x08\x66\x98\x99\xfa\xd5\xf2\x2b\x6a\xf8\x30\x80\x5e\xdc\x54\x50\x2c\x10\x66\x7a\x70\x9f\x2e\x21\x26\x1c\xfc\x15\x67\x32\xd9\x3c\x18\xaa\x30\x40\xbd\x3c\x48\x7c\xa0\x91\x44\x4d\x1d\x7b\x37\xa6\x59\xec\xdf\x06\x80\x2b\xa7\x77\xfe\x4b\xba\x7a\xb6\x6e\x79\xb6\x84\x37\x08\xc8\x99\x83\x29\xd5\x1f\x06\x77\x6a\xc0\x75\xfa\xbc\x89\xda\x91\xf7\xcc\x67\xe4\x03\xfa\xdb\x53\x1a\x11\xdf\xd2\x16\x68\x37\xf4\x25\xc0\xb7\xc8\x4d\xfa\x6e\x64\xc8\xcb\x2b\xa9\xda\x98\xce\xda\xbd\x13\x97\xbe\xce\x9c\xc0\x4b\xc4\x11\xc3\x88\xe7\x0f\xe0\xc0\xb9\x7b\xae\x94\x52\xcb\x51\x7c\xa5\x22\x7b\x3f\x0f\x1c\xa9\xaf\xca\x83\xe8\x0c\x04\x8b\x50\x8e\xa7\x25\xb5\xb5\xe5\x56\xf3\x78\x28\xab\x0c\xb7\x9b\x6d\x51\xdd\x12\xe7\x30\x2c\x79\x90\x24\xc1\xd4\x18\xad\xef\xde\xdf\xbd\xa9\xa5\x87\x3f\xc1\xb0\x1f\xd1\x62\x8f\x02\x72\xba\xf6\x1e\xe5\x63\x3a\x77\x75\xa6\xec\x81\xe5\xe3\xdf\x7c\xf2\xec\x68\x39\x7e\xb2\x95\x7c\x9c\x2e\xa6\x48\x4c\xe8\x1c\x5c\x99\x3b\x87\x52\xed\x16\x08\xb6\x09\x30\xab\xb4\xa2\x4d\x23\x21\xa8\xbd\x8f\xbe\xbe\x55\xd9\xc8\x5f\x15\xdf\xa7\x3e\x1a\x29\x64\xe5\xc2\xa7\x91\x70\xb2\xdd\xfc\x8d\x61\x95\x24\x1d\xf2\xe5\x17\x28\xf1\x02\xec\xdd\x38\xed\xcb\x40\xc4\xdf\x48\x86\xce\x7f\x2a\x5d\x5c\x72\xbd\xc6\xce\xd7\xe3\x72\x11\x63\xb9\xe5\x26\xde\x90\x5d\x2c\x38\xf3\xb1\xdc\x82\xf5\xf5\x1e\xac\xad\x51\x10\xb8\x4c\x92\xcb\xb6\xd8\x92\xc5\x48\x0d\x39\x29\xf5\x2d\xb0\xc8\xa6\x47\xbe\x30\xd8\xd9\x6a\x43\x5a\x8d\x78\x0d\xb1\xdd\x26\xde\x7d\xc4\xf2\xee\x98\x98\xcb\xc1\x27\x07\xf3\x77\x01\x5c\x63\x32\x1f\x39\x83\x64\xab\x4a\x1b\x50\xce\xa4\x28\xe4\x69\x64\x51\x69\x92\x1f\x56\x62\x91\xc9\xe2\x08\xe0\xda\x19\xd8\x52\x3a\x14\xbd\xf1\x62\x66\x23\x91\x4c\xa0\x3b\x5b\xb5\xe1\xdc\x1c\xfa\x4e\xdb\xa8\xb6\x25\xc9\x7f\x67\x12\x73\xa6\x01\x42\x75\x64\x28\x64\xa5\x4c\x2f\x2f\xc0\xee\x0a\x13\x9f\xae\x9c\x34\x7e\x3c\xdb\x3f\x77\xb4\x09\xdd\x31\x12\x8e\x8a\xfb\x7e\x1b\x89\x30\x12\x99\x9e\x22\xea\xea\x33\xc6\x28\xcb\x9c\x2e\x6b\xce\xe8\x3d\x33\x62\xa5\x2c\xa8\x3f\x1e\xbd\x44\x82\x61\xef\xd0\x51\x95\x47\x2f\xde\xcd\x4f\xc7\x62\xb4\x0d\x83\x8e\x57\x52\xe0\xce\xaf\xe3\xcb\x9d\x59\xb3\x1e\xd0\x9d\x33\x1a\x85\x5d\x38\xb3\x7e\xaf\xe6\x18\x94\xbb\x1d\x14\x1d\x7f\x8d\x3e\xbf\x52\xfa\xdc\x6d\xec\x71\x33\x23\x8c\xc6\x6d\xce\xfb\x61\x54\x70\xb3\x25\x5a\xb9\x8c\x23\xde\x54\x5f\x18\xae\x9b\xdc\xa9\xc5\x70\xf0\xd7\x39\x22\x88\xa9\xf0\x36\x12\x49\xf4\xe1\x7f\x1b\x6a\x77\xa8\x7e\x57\xf9\x6e\xa5\x86\xbb\x80\x24\x7e\x42\xb9\xb2\x22\x01\xd0\x32\x5c\x40\x8e\xb9\xd4\xba\x95\xbe\x0e\x05\xec\x53\xcb\xcc\x22\x47\x05\xce\x81\x9f\xcc\xcd\x3f\x19\xe6\x81\x47\xa0\x15\xf2\xed\x78\x25\x6f\x14\x42\x6c\xb7\x94\xc1\xe4\xe8\xe8\x1e\x2c\x45\x6a\x93\x1e\x22\x62\xcb\xe5\xf8\xde\x68\x03\xa2\xd0\x60\x83\x3c\x20\xae\x5e\x53\x1f\xd6\x66\x67\x34\x42\xe4\x6c\xf4\xff\xfe\x3f\xf7\x60\x7f\xaf\xe9\x92\x32\xa6\x45\xa0\x8d\xd7\x72\x3a\x69\xb7\x96\xc3\xd0\xfc\xf7\x48\x9b\x42\x0d\x97\xce\x14\xb5\x0a\xa2\x65\xa8\x8c\x8b\x73\xdd\x72\x0c\x13\xf3\x10\xd0\xc4\x75\x08\x9e\x04\x41\xf2\x9e\xca\x7f\x15\x54\xbe\xa8\x32\x03\xb3\x8f\x0e\xc1\xd3\xb5\x24\xfe\x02\x93\x39\x58\x46\x81\xc0\x92\x99\xc4\x6f\xaa\xc7\x4d\xcf\x61\xf5\xb8\x29\xaf\xa5\x6c\xc0\x53\x04\x6e\x31\x8f\x14\xaf\x29\x4c\x68\x07\x5c\x43\x05\x55\x54\x71\x8d\x0b\x73\x73\xcf\x5c\xa3\x3a\x06\xaa\x03\x22\xbf\x34\x03\x6c\x4e\x71\xfb\x39\x8d\xb5\x61\xe2\x1d\xd6\x73\x95\x8e\xb1\xf1\x92\x7a\xe2\x85\xb5\x11\xc3\x1d\x96\xf4\x4b\x3a\xc6\xc6\x4b\x9a\xf4\xb7\xa4\xaa\xe0\xd1\x4e\xdc\x31\x1e\x62\xe3\x05\x1d\xdf\x37\xbe\x68\xb3\x79\x6c\xb0\xd7\x89\x8d\x63\x53\xc0\x9c\xf4\xb7\xd3\x41\x95\x59\xa9\xf5\x72\x5e\xc5\x23\x6c\xbc\x9c\xc7\xfd\x2d\xa7\x32\x1b\xb8\xc3\x82\xde\xa5\x63\x6c\xce\xf6\xfb\x3c\x8b\xd5\x71\x41\x2d\x4f\xa2\x1e\x60\x73\x79\xac\xbf\xc5\x4c\x03\x68\x6b\x38\xd8\x61\x35\x4f\xe3\x11\x36\x5e\xce\xf9\xfd\x95\xc7\xa4\x4c\xa5\xc4\x10\x77\x49\x7d\x3c\xc3\x52\x75\x5e\x51\x76\xa3\xe2\xd5\x8c\xc8\xa4\x0b\x69\x71\xba\x44\xfa\xd6\x14\xa9\x32\x0d\x4a\xdd\xa6\x52\x34\xe2\xf6\xc6\x88\x85\x4f\x3d\xcb\x86\x92\x9a\xaf\xa8\x40\x53\x48\x7c\xed\xca\x8e\x54\x04\x6a\xc4\x91\x2e\x89\x0a\xc3\x30\xc0\x9e\x6e\x25\xab\x8a\xff\xc5\xaf\x2a\xe1\x6f\x45\x19\x47\x80\x47\x61\x48\x99\x76\x2d\x07\x88\x73\x10\x09\x1c\x60\xb1\xde\x81\xb4\xa6\x00\x5a\x25\xad\x5d\x99\x9b\x07\x90\xd6\x0c\x05\x52\xd6\x57\xe8\xd7\x1a\x5e\x9b\x91\x3d\x5b\xaa\x68\x13\x54\x7f\x72\xbf\x28\x6b\xb6\xe0\xd1\x26\xcb\x79\xda\xfb\x72\xfa\xd9\xa6\xb8\x86\xfa\xe6\x2b\xbb\xb8\x8f\xa2\x8e\x96\x02\xbf\x3b\x4c\xee\x73\x59\xf7\x08\xa3\x7b\x90\xd9\x0f\x83\xc7\x7b\xb6\x6f\x2b\x76\x05\x81\x8f\xb9\x6a\x7b\x0f\xd4\xdb\x69\xd5\xa5\x88\xc7\x35\xc0\x13\x33\x06\xe6\x80\x50\xe2\xa2\x3b\xcc\x05\x22\x02\x50\x06\x30\x63\x28\x40\xb7\x90\x88\x21\x78\x29\x7e\xff\x0b\x07\x5f\x22\x2e\x00\xe4\x00\x2f\x25\x07\x34\xe9\x1b\xca\x7c\xae\x3b\x1b\x7b\x37\x80\xce\xb4\x0d\x5d\x3d\x56\xe8\xbc\xae\x6e\x0c\x00\xa7\xda\xda\xbe\x56\x25\xc7\x75\xa0\x19\x26\xf3\x9a\xef\x27\x96\x94\x55\x6c\xba\x51\xac\xf8\x80\xf5\x90\xcc\x84\x7a\xf4\x86\x45\x81\xc0\xa6\x3b\x46\xd2\x04\xfe\xc0\xbe\xb1\x5f\x96\x8f\x9f\x7f\x98\x3f\x7e\xb9\x95\x6f\xcc\xba\xae\xa2\x44\x93\x79\x08\xa4\x0f\xd5\x48\x36\xa3\x38\x6a\xc1\x0a\xb5\x38\x84\x2a\xae\x57\x94\x76\x16\x49\x5b\x7a\x0c\x1c\x4a\xae\x74\x33\x12\x39\x85\x67\xa6\x54\xd7\x65\x0a\x7a\xe5\xb3\x35\xaf\x8e\x32\x5e\xdc\x78\x08\x73\xad\x6b\x33\x91\x91\xa5\x9b\x48\xfb\x06\x73\x5b\x55\x78\x60\x30\x0c\x11\x03\x90\xd1\x88\xa8\xd8\x50\xec\x25\x50\x53\xe2\xb7\xc7\x10\x54\x36\x4c\x08\x02\xcc\x55\x94\xa6\xb7\x40\xde\xcd\x94\xaa\x10\x4b\xe2\x03\xc1\xa0\x77\x23\x9f\x90\x27\x9e\xc7\x95\xcc\x18\xa2\xb3\x6d\xeb\x3d\xe4\xf6\x52\x45\x82\xb8\x30\xc0\x73\x82\x4a\xd9\x00\x56\x74\x01\x85\x57\x5a\x8b\xc5\x71\xb0\x9e\x29\x78\xf1\xe3\x2c\x40\x77\xff\x53\x91\x3a\x3c\x5b\xc7\x95\x1f\xd5\x55\x7b\x75\xa7\x9d\xa2\x63\x6e\x51\xf7\x04\x39\x3b\x31\xb7\x4e\xbb\x1e\x83\xcc\x5d\x6a\xef\x4a\xf3\xa6\xab\x90\x4d\x55\x40\x39\x06\xea\x5e\xa9\xc6\x2b\x2a\x54\x48\xb1\x79\x14\x60\x02\xe4\x61\x28\xec\xcf\x6b\x48\xd6\x96\x2d\x4a\x2f\x77\xdd\x25\xf3\xe6\x61\xa8\x08\x17\x0c\x91\xb9\x0e\x56\x57\x95\x1e\x6d\xd0\x94\x8c\x1f\x0b\x1e\xbb\xd5\x43\x86\x38\x22\xc2\xd4\x8e\x79\xa9\xe4\x82\x3f\x22\xec\xdd\x28\xe9\x40\xef\x69\x0c\x43\x55\x65\x31\xff\x04\x43\x4b\x7a\x8b\xe2\x27\x86\x0a\x07\x5f\xd0\x15\xba\x45\x6c\xa0\x2b\x2d\x26\x93\x9a\x22\x8f\x2e\x55\x28\xfb\x0a\xc1\x1b\x22\xf5\x73\x25\xe8\xa4\xe5\xb6\x05\xa5\x39\x8c\x19\x82\xa4\x04\x26\x48\x20\x0c\x30\x57\x95\xf4\x43\x4c\xe4\xc1\xc3\x04\xc8\x37\x56\x70\x3d\xd0\x93\xd1\x34\x32\x79\x5c\xcd\xc8\x83\xc4\x7c\x1e\x40\x02\xa0\x7f\x8b\x88\x8a\x7d\xa7\x33\xc0\x3d\x46\x83\x40\xbe\x14\x85\x6a\x81\x12\x46\x43\xf0\x24\x50\xb2\x50\xc3\xd7\xcd\x12\xd3\xb2\x98\x1e\x54\x77\x63\x43\x04\x47\x90\x79\x8b\x81\x19\x48\xff\xd2\x92\x92\x9a\x16\x22\x02\x33\x14\xac\xc1\x12\xf2\x9b\xfc\x77\x7a\x25\xd9\xc9\xe1\x9d\xc2\x52\x1e\xa8\xfd\xf0\xaa\x07\xbb\xc7\xad\xaa\x40\xba\xf8\x2b\x7b\xa0\xc5\x19\x1f\x78\xfe\x5c\x67\x9d\xe3\xa5\xd3\x5d\xbc\xd9\xf5\x8c\xe7\xde\x6f\x26\xc9\x3b\x5a\xfb\xf5\x3a\x2c\x52\x33\x75\xa9\xbc\xde\xf4\x72\xd7\x95\x9a\x37\x0f\xb6\xc6\x2b\x01\x45\xc4\x0b\xab\x34\x17\xcb\xeb\xcc\xde\xe8\xba\xd2\xe4\xdd\x5e\x59\xec\xa6\xa4\x3c\x26\x7b\x5a\x27\x84\xc0\xa3\x0c\x65\xa8\x8c\x94\x07\x67\xd0\x43\x42\xea\x8f\x86\xc4\x94\x6b\xfe\x7a\x94\x70\xc1\x22\x4f\x28\x9a\xc7\x98\x54\xd0\x97\x4a\x81\x9b\xe5\x38\x43\x72\xea\x0d\xf9\xbe\xa4\xfa\xcb\xd3\xb5\x16\x4b\x15\x41\x0d\x02\x45\x9f\x32\xdc\x14\xc6\x84\x20\x1b\x98\x79\x34\x70\x86\x79\x2a\x90\x84\x4d\xa6\x79\x3d\x7b\xd6\x07\x6d\xd8\x68\xd7\x0e\xff\xdb\x06\xda\x61\x08\xe7\xc8\x15\x70\x7a\xe8\x68\xc9\x7f\x5c\x2d\x48\x20\x9e\x5e\x6c\xa3\x11\xa6\x6b\x29\x30\x89\x77\x70\x8e\xc0\xb5\xba\xd1\x99\x29\xc4\xe3\x59\x0d\x80\x91\xa5\xf4\x64\x72\xb3\x75\xc7\x97\xb7\xb7\x88\xdd\x62\x94\x86\xca\x54\x19\x90\xb6\x6f\xea\x93\x16\xb2\xeb\xe1\x63\x66\xcc\x8f\x88\xf1\xb8\x30\x4c\x3f\x23\x5e\xa2\x30\xa0\xeb\x65\xdc\xe9\xd5\x36\xe8\x36\x66\xb1\x26\xe1\x23\xc1\x23\x57\x87\xd6\x14\xd1\xe9\x4a\x07\xdc\xc4\x58\x75\xcf\x90\xaa\x09\x05\x9a\xb0\x6d\x73\xc8\xf6\x4e\xfb\x92\x8d\xe8\xcf\x1a\xa6\x87\x54\x5b\x79\x58\x82\x77\xf6\x14\xff\xe3\xd7\x5f\x23\x7b\xbb\xf9\x4e\x04\x2f\xc6\xcb\x32\xc5\xd3\x3f\xbb\xbb\xf1\xa8\x77\xe3\xf2\x10\x7a\x75\x95\xfc\x16\xa3\x12\x52\xc7\x5f\x4f\xec\xe1\x9a\xff\x4b\xc6\x9b\x9d\xcf\xbd\xb0\x67\xbf\x24\x19\x2d\x92\x2b\x99\x64\x39\x88\xab\xf2\xab\x95\xc8\xa9\x6b\xb3\x34\x01\x2f\x46\x7d\xfa\x60\xd3\x6d\x73\xe1\x4c\x20\xe6\xa2\x00\x2d\x6d\x6d\xad\x53\xa8\x69\x73\xc4\x13\xf9\x34\x78\x96\x3c\x7d\xa8\x9d\x4d\x88\x92\x7d\x8b\x8b\x34\xcb\x96\x95\x35\x8d\x96\x21\x62\x6e\x80\x66\x02\x08\x38\x07\x98\xbb\x4c\x97\xfb\xcd\x7c\xe7\x7d\x7a\xa5\x4b\xc6\x97\x19\x6f\x41\x83\x80\xae\xd2\x82\x68\x84\xaa\x1c\x23\x57\x30\x48\xb8\xdc\xef\xcc\x97\xc6\x93\x53\x88\x7c\x6f\x7a\x76\x7e\x36\x9e\xa1\xa3\xf3\xa9\x87\xd0\xd1\xd9\xe9\x29\xf4\x90\x6f\x4b\xf3\xba\x2f\x58\xac\xac\x19\x1e\x5d\x2e\x29\x89\xb3\x04\x16\x78\xbe\x70\xf1\x32\x84\x9e\x82\xac\x36\x7b\x4c\xa1\x3f\x47\xca\x63\x22\xb7\x8a\xa5\x89\xf2\x22\x40\x2a\x59\x1f\x49\xa1\x5b\x3e\x6d\x82\x58\xd3\x5e\x1d\x30\x0c\x11\x64\x71\xce\x81\x36\x1b\x2e\xe4\x98\x1c\xfb\x28\x36\xd5\xa8\x81\x06\xda\x8e\x9b\xef\xef\x1a\x60\x95\x67\x8f\x09\xf0\x11\xf7\x10\xf1\xa5\x3c\xbe\x52\xe9\xcb\xf2\xc3\xf2\x93\x0a\xb7\x21\x98\x42\xef\x66\xae\x0d\xc8\x90\x21\xb0\x40\xf0\x16\xc7\xa1\x19\x6a\x6a\xaa\x9b\x87\xba\xa5\x76\x76\x08\x5e\x51\xe5\x8b\x34\xa9\x15\xa5\x97\xf8\x82\x32\x91\xdc\xdf\xd1\x09\x56\x89\xdf\x5c\xa9\x5f\x69\x38\x58\xdd\x21\xd6\xaa\x1a\x30\x81\x5f\x07\x3f\xc2\x35\xe7\x88\x50\x1f\xe5\x96\x06\x94\xec\x08\x03\xfc\x35\xf3\xf1\xd2\xc9\x7c\x20\x0a\x07\x0e\x83\x8a\x6d\xa3\xba\xce\x1d\x65\x20\x84\x42\x20\xa6\x4c\xa7\x33\xc8\x85\x2e\xa0\xc1\x3d\x79\xae\xe4\x39\x81\x86\xe1\xc9\xd3\x2b\x2f\xd2\x99\x40\x04\x70\xb8\x06\x4b\xaa\xfa\x09\x42\x02\x56\x94\xf9\x5c\xde\x1d\x82\xe7\x6a\x44\x45\x4e\xe4\x81\xd4\x1e\x61\x92\x71\xdd\x6a\x94\xc9\x28\xfc\x9a\xec\x2c\xc1\x5f\xd1\x70\x3e\x1c\x00\x2f\xc0\xf2\xaa\x8f\x04\xc4\x81\x1a\xea\x6f\x92\xf5\x9a\xd7\x34\xa6\x69\x93\xa7\xe9\x7a\x63\xc8\x96\xc2\x8b\x2c\xc1\x89\x1b\x1e\x26\x15\xc3\xd1\x1a\xf1\x38\xf8\x7d\x8e\x49\xb2\x4c\xcd\xd7\x77\x49\x01\xb4\xb5\xa6\x99\x83\x7b\x9b\x76\x3e\x78\x38\xf7\xf7\xf6\xdc\x27\xdf\x6f\xcc\xcf\x36\x65\xa8\xf3\x35\x5a\x03\x4c\xb2\x3b\xf4\x72\x06\xd6\x34\x02\x2b\xcc\x17\xdb\x7c\x2b\x8d\xd3\xa1\x91\xd0\x5d\xdd\xe5\xd7\x92\x43\x5a\x3b\x87\x37\x14\xbc\x47\x73\x86\x84\x2d\x4d\xe0\x9e\x90\x39\xd5\x5a\xde\x1c\x3b\xdd\xda\x2a\xa6\x13\xda\x2f\xa1\x2c\x76\xe8\x4e\x51\x0c\x7d\xfe\x07\x31\x01\xfa\x42\xa7\xc9\x9b\x46\xae\x91\x97\xf2\x04\x49\x83\x92\x2b\x6b\xa5\x50\xf2\x51\xfc\xca\x9c\xc6\xdd\xca\x52\x6d\x61\x08\x9e\x9a\xe7\x55\x06\x68\xb0\x82\x6b\x1e\xd7\x33\x32\x9f\x98\x41\x66\x24\x2f\x44\xfc\x74\x56\xf1\xfb\x6f\x28\x88\xf5\x00\x45\xfd\xe6\xb4\x2c\xae\xa9\x69\x98\x89\x1d\x30\x46\x25\x25\x7e\x3d\x2a\xe6\x8c\xce\x19\xe2\x5c\x19\x5e\x0f\x5c\x7a\xf0\xa5\x7f\xf9\xec\x87\xd5\xdb\xad\x54\xf3\xec\x72\x8a\x4c\xc1\xdc\x03\x4f\x37\x72\x53\x99\xfa\xb1\xba\xda\x97\xa0\x34\x10\x38\x89\x2c\x63\x54\x45\x1c\x14\xae\xe6\x5a\x6c\x9d\x80\x47\x60\x74\x52\xc9\x42\xe2\x89\x17\xbf\x1a\x5f\x2f\x84\x7f\x26\xfd\x77\xe4\xb3\x71\x45\xa0\xa3\xe1\x24\x89\x96\x5b\xc2\x3b\xc7\xe4\x40\x15\x59\x90\x7c\x6c\x1f\xe6\xbc\xcc\x56\x54\xa4\xa9\x65\x77\x64\xf3\x64\xb5\x8d\x3b\x42\xd6\xf0\xe7\xfd\xed\x7f\x47\x1c\xc0\x64\x46\xb7\x45\x80\x02\x12\x54\x84\x6f\x56\xc6\x74\xb6\x0e\xf3\xfc\x76\xa1\x6c\x12\xfe\x1e\x00\xbd\x6b\x40\x17\x45\xb3\x07\x40\xef\x08\xd0\xa9\x5c\x7a\x5f\xe0\xbc\x2b\x56\x13\x18\xbf\x4b\x25\xa3\x51\x15\x1b\x75\x0d\xff\xbd\x37\xbd\xa7\x04\xb9\x62\x81\x59\x5d\x00\xff\xf6\x38\x34\xce\xe3\x90\xaa\x46\xf6\x69\x3c\x1a\x38\x24\x5a\x22\x06\x05\x95\xb2\x91\x03\x1e\xa9\xd2\x64\xa3\x81\xe3\x23\x42\x97\x98\xe8\x1b\x9f\xed\xe5\xa8\xb6\x95\x53\xc6\x09\xb2\xa5\xd3\x09\x11\xf3\x10\x11\xd0\x14\xfe\x6e\x85\x7e\x8e\x89\x18\x29\xbc\xde\x77\xf9\xaa\xfd\x29\x57\xdf\x4a\x91\x76\x79\xae\x2e\x95\xaa\xc6\xbf\x85\x32\xed\x59\x9a\xd0\x9f\xba\xa4\xe3\x66\xdc\x29\xbd\x3b\xb0\xb2\x34\x42\xfe\x9b\xd1\x2f\xaf\x7e\xd8\x46\x59\xca\x2c\xa6\xe8\x6a\xd7\x31\x87\x4f\xe5\x9d\xe6\xf0\xdb\x2c\x50\x62\xdc\xd1\xd7\xae\x11\x5b\x4a\xe2\x20\x15\xf2\x05\x0d\xe2\x9e\xca\xe5\x78\xaa\xf8\xe1\x5c\x95\x42\x33\x0b\xb1\xc0\x64\xce\x87\xc3\xa1\xa5\x4c\xdd\x9e\x8c\x1e\xd7\x8b\x24\x0e\x73\x4a\xef\x32\x26\x56\x15\x67\xa5\x6a\x14\x17\x62\xf1\x61\x6c\x0d\xc6\x24\x8c\xc4\x10\x3c\x09\xc4\x82\x46\xf3\x85\x89\xd7\x8c\xd7\x0b\x42\xc8\xb9\xae\x87\x8c\xcd\x68\xcb\x48\xc0\x69\x80\x00\x43\x33\xc4\x10\xf1\xd0\x00\x60\x22\x10\x23\xa6\x39\xa3\x86\x89\x7c\x17\x73\xe0\xa3\x29\x8d\x88\x87\xfc\x34\x17\x48\x50\x10\x32\x74\x2b\x67\x17\x52\x81\x88\xc0\xda\x46\x7b\x17\x22\xc2\x75\xf2\xac\x8f\xb4\x0d\xd9\x47\x21\x52\x35\x94\x49\x76\x4a\x33\x46\x97\x80\x21\xb9\xc8\x48\xd7\x3f\x81\x64\x0d\x54\x09\x61\xdd\x00\x3e\xe2\x88\x01\xb1\x0e\xcb\xce\x9d\x2a\xe0\x31\xa4\xf3\x91\x94\xbf\x37\xb6\x25\x5b\x01\x6a\xe6\x35\x43\x8c\x83\x48\xf2\xe8\x24\x35\x21\x9d\x60\x02\x19\x10\x11\x81\x75\x88\x99\x9a\xd3\x12\x12\x5d\x77\x45\x95\x60\x94\x53\xfd\xfd\x77\x83\x45\xbf\xff\xee\x18\x0b\x8e\x81\x94\xb1\x74\x43\x6f\x81\xd1\x2d\xf2\xc1\x74\xad\xec\x46\x3a\x0e\xd8\xd8\xf3\x08\xba\x8b\xad\xe8\xc9\x6c\x21\xcb\xcc\x16\x12\x1f\x44\x5c\x09\xb0\xba\xf3\x0d\x62\x6a\x85\x71\x78\x9d\x4a\x7a\xd6\x2f\xa6\xae\x39\x18\x09\xba\x84\x02\x7b\x2a\x90\x59\x39\xfb\x42\xca\x39\x9e\x06\xbd\x9a\xca\xd3\x53\xe9\xca\x09\x43\xaf\xe4\x22\x4b\x4f\x39\xb8\x88\x9f\xe8\xf9\xb4\x4b\xd1\x25\x8c\xb2\xe5\x8d\x2b\x8f\xfe\xb8\xf6\xe8\xab\xa0\x9a\x64\x1d\x87\xa2\x03\x57\x29\xca\x86\x8c\xde\x62\x5f\x25\xd1\x80\x74\x8d\xf2\xb2\xa2\xf7\x26\x94\x52\x30\xaa\xf1\x13\x13\xa2\x0a\x12\x29\x62\x10\x1f\x55\x82\x3d\xa4\xc3\x32\xb1\x28\x20\xba\xfa\x06\x26\x82\x26\xa5\xe9\x78\x08\x3d\xc4\x07\x80\x47\xde\x42\x9e\xc3\x7c\xff\xb1\x05\x82\xfe\x21\x6d\x93\x29\x56\xf4\xc8\x6c\x05\x14\xdc\x95\x84\xc7\x8d\x8b\x97\x1f\x94\xe7\xfe\xfc\xe6\xf8\xc5\x34\x1a\x6d\x55\xfb\xb9\xb4\xa6\xba\x16\x29\x82\x83\x6b\xbc\x44\xe0\x4a\xaf\xfe\xc0\xbd\x52\x2c\xdb\x51\x28\x6d\x6e\x2b\x65\x2e\xdf\xc2\x5e\xa6\x74\x66\x6f\x85\xcb\x5b\x90\xc0\x12\xb0\x15\x05\x61\x38\x16\x6c\xeb\xc0\x0d\x5e\xe0\xf9\xe2\xd1\x2b\xba\xd2\xc4\xd1\xbc\xb4\x0f\x75\x51\xed\x1a\x48\x6d\x0d\x96\xcd\x1b\x67\x37\x4f\xed\x5d\x83\x80\xbf\xd9\xe6\x99\xac\x58\x09\x89\x78\xeb\x2a\xfb\xba\x74\x34\xa5\xdc\xbb\x45\xbe\xa2\xab\x4d\xd6\xb8\x3f\x45\x31\xcb\x88\x5e\x25\x8d\x47\x78\x12\xfe\xc3\xd0\x8c\x32\x9d\xc3\xc9\x95\xb8\x06\x34\x10\x92\xe7\x22\x8e\x54\x56\x00\xe1\xca\x15\x19\x60\x82\x20\x03\x73\x06\x7d\x15\x18\x60\xe2\x81\x4c\xa3\x0d\xf4\x47\x04\x83\x58\xf8\xf1\x20\xb9\x85\x71\x77\x11\x9d\x30\xa0\x9b\x6e\x04\x94\x29\xe9\x94\x70\x2c\xd6\xb1\x60\x97\x8c\x08\x45\x1c\x24\x24\x3f\x6a\x12\xc1\xa1\xc7\x28\x8f\x27\x25\x19\x59\x40\xa5\xcc\x25\x47\xa4\x3c\x5e\x94\x29\xce\x27\xd9\x21\x5c\x22\xb0\x76\xe1\x9d\x94\x76\x55\x47\x92\x96\x42\x67\x26\x33\x5e\x50\x30\x67\x08\x0a\x80\x66\x33\xe4\x99\x95\x6a\x38\x99\xcf\x25\x39\x5b\x6b\x95\xb4\x60\xd2\xed\x73\x9f\x95\xab\x3b\x72\x47\x47\x47\xff\xfd\x90\x6c\xb6\x88\xe1\xfd\x71\x5b\xa5\x75\xb8\x1e\x25\x33\x3c\x8f\x98\xc1\xcc\xc3\xa6\xab\x3f\xfb\xc0\x7f\x78\xfa\x4f\xba\x0d\xbf\xb5\xad\xaa\x40\xf9\xaf\xe5\x23\x03\x70\x91\x7f\xa6\x59\x10\x86\x42\x30\x3c\x8d\x04\xe2\x1a\x76\x29\xb1\x49\xef\x38\x83\xb4\xda\xba\xa6\x36\x99\x7b\x12\x3d\x4a\x83\x74\x91\x6d\x7b\x47\x2f\x0b\xb4\x7a\x46\xb0\x03\xa3\xd4\xc7\xa3\xeb\xf7\x8f\x8e\xf1\x63\x2b\x4a\x39\xaa\x55\x8e\x33\x70\x18\x5d\x35\xfe\xd5\xe5\xd9\xf8\xaf\x4e\x38\xab\xed\x07\x56\x64\xb5\x61\xe7\xf1\xc0\x09\x30\x17\x45\x54\xe4\x34\x62\x1e\xca\x88\x63\x0b\xca\xc4\x2b\xcc\x75\x9b\x1e\xdb\x28\xc9\xf6\x99\x1c\xb8\xd1\xf9\xe0\x93\xa3\x9b\x82\x18\xfd\xcc\x7e\x32\x32\xec\x5e\x37\x61\x8b\x83\x5a\xaa\xda\xfe\xda\x1e\x7e\x05\xc9\x3c\xd2\x06\xdd\x76\x2f\x5c\x22\xee\x31\x1c\xe6\x52\x6b\x5a\x71\x62\xeb\x32\xa7\xd4\xd7\x42\xe9\xa7\x4f\xce\x0d\x52\x29\xeb\xaa\x33\x40\x30\x24\x6a\x15\x15\x44\x21\x3b\xb9\xfa\x16\xc3\x22\x31\xfc\x8f\x54\x17\x88\xf1\x51\xfc\x05\x67\xe0\xc4\xdf\xa8\xec\xff\xdb\x6e\x98\x00\xaa\x2e\x69\xdb\x0e\xe3\x23\xee\xd5\x0e\xd3\x08\xef\xf1\x51\x86\x50\xe5\xee\x8c\xce\xab\xee\xec\xc6\x7c\x27\xcf\x44\x5c\x44\x07\xb3\x35\xf0\x11\xc7\x73\x92\x84\x40\x2f\x31\xc1\x4b\x18\x00\xb8\xa4\x91\xce\x74\x9c\xaa\x86\x67\xa9\xc4\x73\x87\x97\xf8\xab\x96\x7a\x30\xdb\x45\x81\x38\x73\xe6\x95\x16\x6d\x3d\xf3\xe0\xca\xdc\xbb\x6f\x7d\x81\xf4\xec\xe4\x29\xb7\x8a\xe4\xdd\xac\x45\xa9\xc3\xab\xa5\xd5\xa8\x6c\x34\x4a\xac\x45\xda\x69\x06\x32\x8d\x68\x1a\x8c\x48\xed\x74\x98\x52\x97\x9f\xb2\xcf\x25\xdf\xf1\x47\x4e\x78\x86\x03\x81\x18\xf2\xaf\x12\xf2\x3b\x70\x02\x55\xe0\x20\xd6\x39\x72\x5d\x4f\xd2\x86\x3f\xe7\x45\xdc\x69\x3b\x68\x05\xa9\x6e\xc9\x26\xca\x43\xb7\x66\x17\xa7\xed\xd9\xc5\x06\x4c\x63\x43\xd6\xb1\x0f\x06\x72\xba\x1d\x03\x69\xc5\x46\x6a\xc9\xf7\xe8\xac\x1b\x33\x69\x3f\x58\x0b\x96\xd2\x7e\xb0\x46\xc6\xd2\x92\xbd\x8c\xce\x2a\xd9\xcb\x69\x0d\x7b\xa9\xd9\x80\x6a\x52\x88\x96\xa1\x58\xbb\x4b\xc4\xb9\xc1\xb0\x2a\xd7\xb4\xb5\x64\x5d\xee\x6d\x45\x48\xcb\x81\xbf\xaf\xa1\xf0\x16\xc8\x5e\x1f\x1c\xd4\x14\xb3\xcb\x8f\xad\xf1\x2f\x3b\x6e\xc8\xa8\x1f\x79\x42\x32\x31\xe1\x2d\xc0\x9a\x46\x0c\xfc\x11\x21\x56\xe2\x5e\xad\xe1\xfe\xf9\x3f\xf4\x4d\x2b\xb9\x3c\x8c\x39\xc4\x30\x78\x75\x24\xb9\x89\xf9\xcf\xdb\xc7\x55\x36\x56\xee\x8a\x79\xd8\x08\x01\xa9\xd5\x7d\x07\x5c\x9d\xb2\x58\xb1\x4a\x6c\x81\x16\xfe\x6e\x9e\x02\x17\xf1\x53\x5d\x85\xfc\x81\x23\xbf\x14\xab\x4e\xe6\xe7\x65\x92\xfe\x95\x51\x02\x28\x13\x79\xda\x3e\x48\x6f\x24\xef\xe7\xae\x66\x87\x69\xcb\x09\x4e\xba\x29\x0e\x55\x43\xc8\xcf\xbb\xd3\x84\xac\x86\x8c\xaa\xad\x77\x6a\x28\xea\x1b\x73\xab\x7e\xdf\x36\xfb\x74\x46\xa3\xd7\x74\x51\xb1\xef\x71\xc5\x4c\x52\xae\xd4\x7e\x36\xbb\x63\x51\x27\x87\xd0\x71\x46\x8f\x7b\xd1\x71\x72\xc3\x6c\xae\xe3\xe4\x86\xd9\x5e\xc7\x19\x3d\xae\x64\x42\x27\xfb\xd5\x71\x16\x3a\xe9\x53\xd3\x86\x8c\x8f\x3a\x75\x54\xc6\xaf\x15\x4a\xaf\x24\x48\x5e\x28\xbb\x82\xee\x44\x04\x83\x42\x01\x99\x69\x84\x03\x95\x4b\x6a\x1f\x2b\xc0\xe4\xc6\x15\xb4\x30\x56\x6c\x0f\x4a\x5a\x4c\x03\x18\xca\xb3\xc4\x30\x14\x48\x73\x23\xa0\x20\xd4\x36\xa0\x00\x73\x10\x20\x78\x9b\x98\xa1\xe3\x19\x2a\x50\x05\x88\xf3\x01\x60\x28\x58\xcb\x79\x52\xa2\x1a\x76\x99\x46\x2f\x26\xdc\x42\x55\xab\x52\xc9\xb4\x26\x33\x36\xce\x31\x99\x42\xef\x06\x44\x21\xb8\xc5\x50\xe7\x80\xd0\x48\x20\x06\xfe\x2a\x7f\x9b\xb5\xfd\xad\x7f\x06\xa1\x8b\xcd\x98\xae\x3d\x65\xce\xf0\x3a\xbd\xdd\x37\x4b\x28\x99\x27\xb7\x65\x0d\x8a\x18\x72\xc1\x70\x68\xaf\xd9\x68\xa3\x4a\x93\xed\xf9\xc4\xe4\x70\x7c\xa2\xee\xd3\x31\x99\xda\x8a\x31\x74\x25\xf2\x93\x83\x10\xf9\xe3\x7e\x88\xfc\x71\x17\x22\x5f\x6b\x25\x6c\x33\x7f\x25\x48\xd3\x40\x25\x30\x9a\xf6\x3a\x15\x73\xe9\x81\x53\x1c\x57\x72\x8a\xc9\x7e\x39\xc5\x8b\x0a\x4e\x01\x85\x90\xda\x04\x37\xb4\x12\x72\x30\x0b\xd0\x1d\x96\x0f\x41\x9e\xc6\x28\xa9\x4c\x64\x55\xeb\x8b\x21\xc8\x29\x19\x54\xf0\x02\x31\x8c\xb5\x91\x84\x15\xf8\x14\x71\x55\x24\xda\x30\x25\x9d\x53\xac\xf3\x88\xab\x46\xc9\xd7\x03\x33\xb9\x7a\x71\x01\x6b\x4e\x97\x48\x47\xa6\xf9\x88\x63\xa6\x7d\x7d\xca\xce\x97\x34\xed\x4a\xb2\xfb\x42\xc4\x54\x58\x1b\xf3\xfb\xa7\xe0\x21\x9c\x63\x52\xed\x5d\x02\xef\x32\xf7\xab\x69\x78\x66\x14\x0b\x21\xc7\x5f\xe5\x3f\xa1\x51\x40\x4d\x50\x2e\x25\xf3\x98\x4e\x9f\x18\x9a\xec\x45\x8c\x21\x22\xde\x25\x61\xd5\x5d\x59\x46\x86\x25\x8c\x07\xa3\x23\x15\xfb\xab\x3f\xe1\xa8\xa4\xeb\x19\xa5\xd6\x48\x31\x1b\x31\x1a\x75\xb1\x06\xe5\x84\xdf\x42\x41\xa5\x6c\x40\xf8\x7b\x48\xec\xdd\x54\xec\xf2\xf3\x05\x16\xf6\xc6\x38\xf6\xc7\x55\x1f\x8e\x0e\xcf\xbf\xa3\x61\x14\x40\x8b\x74\x5e\xf7\xd2\x4f\x8c\xae\x44\x31\xd3\xb8\x2b\xa5\x1f\xd5\x52\x7a\xa6\xa0\x54\x6b\x71\x6a\xb4\x36\x55\x91\xe9\x71\x86\x34\xc6\xdf\xa9\xb5\xe7\xb4\x19\xc8\xc3\x5a\xb4\xd8\x7a\x20\xae\x77\xb0\x87\x91\xc2\xcc\xde\x6e\x32\xdc\xe9\xc0\x99\x51\xb6\x84\xc2\xcd\x24\x2b\x98\xdd\xcb\x7e\x67\x6e\xd0\x41\xef\xa3\xa0\x02\xea\xac\x89\xcf\xcd\x5c\xb4\x9e\xe9\x8c\x2b\x99\xce\x28\x47\xe3\x40\xad\xf9\x4b\x13\x39\x7d\xee\x2b\xf3\x56\x08\x2c\xbd\x97\x27\x8b\x95\xcc\xb8\xa1\x38\x41\xe6\xdd\x0f\xc3\xab\x21\x90\xe7\x19\xa4\x3b\xa3\x04\x79\x0d\x40\x1d\xbb\x3c\x3e\x3a\x3a\x72\xc7\x47\x23\x5b\x6f\xb9\xfa\x75\xa6\xf3\x75\x4d\x13\xe0\xba\x83\x61\xf0\xe5\x48\x47\x9a\x31\xc1\x9f\x08\x27\xef\x54\xf8\xaf\xff\xfc\x3f\x85\x07\x11\xf1\xcb\x8f\x01\x3a\x4b\x06\xcc\x51\xf5\xac\x93\xa0\x43\x82\x0b\xa8\x11\x57\x8f\x54\xbe\x14\xba\x8d\x71\x2d\x35\x66\x64\x16\x2f\x1f\xc0\x34\xaa\x0c\x39\xfc\x5f\xa0\xad\xd4\xdc\x34\x15\x12\xb7\x9f\xaf\x9a\x8a\x79\xc0\x3a\x8d\xff\xdd\x79\x1a\x49\x9d\xbf\x8a\x5d\xd7\x8c\xae\xa2\xd2\x86\x05\xd6\xcd\x07\xb0\xd2\x07\xba\x13\xd9\x2e\x95\x33\x54\x73\x2c\x0e\x02\x7c\x83\x80\x54\x4f\x30\x99\xff\x68\x62\xd5\x5b\xab\xee\xba\xd7\x07\x12\x00\x66\x95\xf4\x56\x3a\x7a\x3a\x91\x81\x9e\x83\x89\xb2\xd1\x29\x0e\xc6\xdf\xaa\xdd\xb0\x43\xf0\x96\x04\x6b\x00\x75\xb8\xbd\x3c\xcc\x31\xfa\xc5\x71\xf8\xaa\xb6\xc3\x2d\xc4\x81\x6e\xe4\x75\x2d\x75\x7e\x2d\xe4\xe8\x5a\x0f\x71\x5d\x08\x39\x55\x3a\x33\x55\x72\x30\xd7\xbd\x0d\x74\x6c\x3f\x5f\xd0\x95\x2a\x81\xb5\xc0\xde\x02\xf0\x00\x7b\xaa\x88\x16\x16\x68\xa9\x1e\x35\xe3\x05\xfa\xc9\xb6\x31\x66\xaa\x14\x45\x0c\xf0\x54\x90\x46\x77\xda\xb2\x3c\xc3\x8c\x9b\xbe\x62\x90\x8b\xac\x21\xe4\xaf\x33\xca\xc0\x97\x68\xa9\xca\xe4\x9a\x20\x3b\x55\x3b\x47\x65\xc3\xca\x37\x92\x62\x15\x12\x25\xff\x26\x05\x70\xdd\xe8\x8c\xab\xe5\xbd\xc2\xe4\x46\xd7\xc8\xd0\x8d\xcd\x55\xf4\x78\xa0\x2e\x9a\x04\x14\x91\x05\x52\xcf\x55\x78\x34\x3b\x60\x74\xe5\xaa\x4f\xda\x45\xde\xf7\x74\x05\x5e\xe9\xdb\x7b\x8c\x56\x39\xfb\x53\x04\xab\x9c\xf5\xa8\xe2\x17\xe4\x6c\x95\x6b\x54\xaa\x5e\x5a\xa7\xb9\xb7\xac\x88\x5a\xe8\xc5\xa6\x79\xe2\x79\x93\xd5\xa0\xbd\xe9\xe0\xbc\x17\xf3\xf0\x79\xaf\x3a\x7f\x65\x98\x4b\xa5\xeb\x72\xf7\xf5\x0a\x55\x61\x1d\xed\x2f\x13\x14\x40\x4f\x35\x80\x92\x87\x51\x35\xbe\x50\x07\x7a\x90\x2f\x19\xa6\x6f\xab\xc0\x58\x18\x04\xd4\x53\xf3\xe0\x03\x80\xa0\xb7\x00\x8c\xae\x0c\xe1\x31\x64\x2c\x7d\xc4\x54\xf6\xf9\x9b\xa6\xd8\x0b\x14\x48\x0d\x5c\x61\x44\x05\x0b\x2a\xa3\x5f\xa2\xf7\x9b\x62\x3e\xad\x6c\x04\x26\x40\x59\x67\xd1\xd1\x55\xd2\x3d\x2b\xa4\x6a\x74\x49\x16\x39\x65\x5d\x66\x15\x96\xbb\xab\xd6\xcf\x08\xda\x8c\x16\xba\xfe\x79\x32\xaf\x4c\x20\xb5\x04\x20\x98\xd2\xc0\xd7\x7e\x4a\xd5\x78\x0b\x13\x2e\x10\x54\x4c\x60\x1a\x44\xa8\x14\x7c\xad\xde\x51\xc9\x23\x80\x46\x02\x68\xab\x77\xda\x7b\xc2\x54\x63\x62\xaa\xfa\x16\xd0\xd6\xeb\x56\x5c\xed\x09\x98\xa1\x15\x60\x91\x44\x10\x89\x2b\x5a\x66\x48\x67\xad\x36\xfb\xc7\xaa\x91\xa8\xa5\x8a\xb2\x53\xac\xa1\x6c\x78\x67\x27\x70\x7b\x92\xfb\x99\x24\x3a\x53\xe7\x69\xaa\x57\xaa\xb9\xac\xbc\x5f\x21\xa0\xed\xe2\xdb\xa6\x2e\xbd\x01\x6c\x8c\xfb\x3e\xe2\x22\x16\x07\x8c\x4c\x12\x67\x3c\x42\xd2\x05\x55\x72\xe9\x9c\x71\x5f\x10\x1a\x22\x12\xf7\x72\x22\x37\x1a\x9b\x08\x5a\xc9\xbd\xb1\x39\xf3\xab\x96\x3e\x8b\x82\x40\xed\xa4\x59\x91\xaa\xc5\xa6\x8a\x93\xdb\x96\x21\x05\x9b\x00\x7b\x37\xb9\x19\xe1\x65\xc8\xa8\x09\xd0\x8f\x38\x9c\xaa\x70\x38\x2d\xae\x68\x44\x99\xae\x73\xad\xa7\x20\x9b\xab\x43\x86\xbd\x1b\x29\xcc\x41\x3b\x22\xf6\x2a\x9d\xc8\x3d\xab\x13\x4f\x2e\xe4\x9e\xee\x5f\x3e\x79\xfc\xa7\x90\x4f\x1e\xef\xd7\x05\x91\x48\x20\xe3\x58\x02\x91\x93\x38\xcd\x0a\x04\x58\xd9\xa8\x72\xac\xfe\xb4\x3f\xd9\xe3\xb4\x17\xd9\xe3\xb4\x57\xd9\xa3\x32\x06\xaa\xd2\x63\xbd\xab\x4c\xa5\x1b\xd5\xf9\xc3\x78\x1b\x50\x10\xe8\x62\x7d\xaa\xc8\xb7\x3a\xa0\xfd\xab\x26\xea\xf0\xfb\xc8\xa3\x3a\x87\xa1\x8e\x04\x5c\x66\x9f\xda\x23\x21\x38\xfe\x53\x10\x82\xe3\xfb\x40\x08\x4e\x1a\x08\xc1\xc9\xb6\x84\x20\x5f\xc5\x75\xc5\xa0\xa5\x77\x71\xee\xb5\xc4\xe0\x59\x0c\x26\xd6\x7d\xd4\xf9\x0a\x0a\x6f\x51\x8c\x87\xcc\x05\x15\x9f\x0e\x1c\xf4\x87\x01\xf2\x89\x85\xfa\x38\x2c\x52\x21\x1d\x26\x34\x5a\x8f\xe8\x3e\x4e\xaf\x6c\x37\xfa\x9c\xea\x3f\x0b\xe3\x9f\x94\x62\x97\x2b\x6d\x93\x65\xd0\x17\x09\x67\x2b\x43\x67\x05\x29\x3d\xe9\x95\x94\x56\x46\xf2\x54\xba\x74\x77\x53\x7d\x40\x17\x8e\xf5\xe2\xa6\x7a\xd0\xf3\x94\x76\x46\x67\x26\x13\x53\x2a\x07\xb1\x6e\x87\x20\xc7\x69\xc5\xe9\x1d\x91\x58\x35\x97\x1a\xe2\xfa\xd2\x6b\x20\xab\xf7\xd2\xe3\xb9\x8d\xc3\x73\xdc\x97\xbf\x93\x40\x66\x02\x82\x2a\x8e\x51\xdd\xcb\x0f\xce\x52\xeb\xc6\xec\xd1\x57\x5a\xbb\x9b\xb6\x84\x0e\xa9\xa9\xc5\x73\x9d\xd8\x3c\x83\x83\xa3\x5c\x93\xb9\xa6\x44\x82\x5c\x16\xce\x9d\x3a\xa9\xf2\xf0\x9a\x82\x8b\x4e\xc1\xe1\x92\x96\x62\xec\x58\x5c\x25\xf7\xd5\x8a\x2d\xad\xa4\xd2\x93\x9e\xbc\xc8\x93\x9e\x9c\xc8\x93\xbe\x7c\xc8\x93\xfd\xb8\x90\xad\x78\xd2\xb3\x07\xb9\x32\x36\x69\xfc\xfd\xfb\x8f\xd5\xa3\x38\x4e\x11\x20\x68\x0e\x05\xbe\x45\xf1\xb3\x3e\x22\x54\xa0\x52\x30\x51\x61\x6e\x7d\x79\x99\xdb\x3a\x99\xef\x83\x8f\xf9\xfe\xb8\x98\xff\x0c\x1e\xe6\x26\x19\x74\x37\x55\x02\x7a\xac\x0b\x80\x97\x48\xe5\x43\x1d\xb6\x34\xc0\x0f\xf0\xe2\x87\xe9\xf2\xa7\x3f\xb6\xaa\x36\x11\x2f\xa5\xd4\xba\x50\xd5\x02\xbc\x4e\x6e\xd7\x27\xf1\xd2\x12\x02\x65\x07\xae\x31\xae\xdb\x5e\x71\x25\x95\xaa\x22\xbb\x79\x06\xe3\x4b\x96\x17\x0b\xda\x6b\xc4\x05\x62\x3e\xcc\x34\x26\xef\x94\x2f\x5b\x33\x23\xaa\xf6\xb3\x86\x15\x74\xcf\x62\xee\xf0\xb2\x4a\xc0\x03\x38\xd3\x37\xca\x46\x7a\x35\xce\x01\x4d\xa0\x01\x25\xa8\x89\x20\x36\x9f\xdd\xef\x15\x38\x62\x45\xf7\x05\x9c\x0d\x71\x59\xd0\x07\x3c\xd6\x5b\xb5\x60\xa8\x17\x4c\xde\xde\x9e\xb0\x65\x10\xbb\xd9\x03\xd3\xf8\x05\x78\x74\x39\x4d\x5c\x56\x33\xa0\x77\x46\x9b\x49\x24\xce\xf0\xa1\x01\x84\x2d\x49\x14\x18\x80\x2a\xd7\x96\x72\x5b\x21\xa0\x7b\x60\x47\xac\x14\x37\x53\x3b\x1b\xfd\xad\x4c\xad\x4f\x55\x7e\x8a\x87\x90\x61\x32\x0f\xd6\xaa\xe0\x67\x26\x90\xfe\x25\xd1\x71\xf4\xe8\x0e\x2a\xfe\x20\xe2\x4a\xa9\x50\x0d\xa4\x22\xd6\x7d\xb8\x06\x0c\xca\x3b\x71\xd7\xb0\xe4\x96\x5e\x64\xaf\xa6\x9d\x18\xb3\x31\x11\x0c\x7b\x46\xb5\xcf\x72\x32\x5d\x01\x1a\xf9\xdf\x16\x2f\xfb\x13\x9f\xff\x1a\x15\x69\xa3\x9e\x5f\x0d\x63\x66\x7b\x8a\x85\x10\xab\x8e\x03\x33\xe8\x23\x6b\xe9\x90\xe6\x19\xa2\x5c\x87\xb0\x2b\x53\x22\xab\xa9\xc0\x83\x75\x62\xd0\x9f\xa3\x04\x5a\xa5\x69\x59\xfc\xf2\x93\xb3\x53\x34\x3e\x4e\x83\x88\xab\x4d\xd9\xf7\x0a\x46\xd1\x74\x89\x85\x40\xf6\x8e\x69\xcd\xa3\x35\xb6\x11\x48\x8f\xd8\x92\x12\xb1\x70\x05\x8f\xed\x57\x84\xae\x32\xa4\xfc\x73\xc9\x15\xa0\xcf\xe7\x92\x4a\x3a\xe1\x4a\x4d\xdb\x55\x6f\xd4\xbd\xdc\x6c\x2f\x69\xb6\x69\xf4\x2b\x81\x7c\x1f\x67\x5e\x32\xc1\x00\xe5\x68\xe9\x45\xe6\xd2\xbd\xc2\xe8\x67\x77\x21\x66\x9b\xe2\x73\xe7\x63\x3f\x9d\x8c\xc7\x47\x68\x36\xfd\xfe\x8f\x7d\xd9\xc0\x98\x3b\xd0\x4d\x3a\xe0\xbd\x39\x91\x0f\xfa\xed\x6e\x68\x04\x62\x8c\x66\x9d\x1d\xcf\x95\xe0\x77\xef\x30\xff\x3d\xba\x45\x6c\x63\x7e\xd7\x99\x3e\xcc\x90\x77\x3e\x1e\x9d\xa1\x07\xfa\x70\x1f\xe8\x83\xb3\x03\xdd\x47\xd0\xf9\x3c\x40\x65\xb7\xb6\xbc\x8c\xc9\x3c\xd1\x7c\x62\x8d\xf2\x41\x03\xfa\xd6\x29\xdd\x83\x06\xb4\x43\x0d\xa8\xa9\x63\x72\x32\x1b\x53\x98\x31\x5b\xb0\xd1\x68\x21\x94\xa8\xd0\x61\x13\xa3\xa4\x6b\xb5\x18\x0f\xcf\xd1\xe0\x93\x2a\x46\x52\x28\x10\xa9\xcf\x70\xb6\x9b\x90\x51\x32\x6a\x1e\x49\xfe\xa9\xd9\xa5\x51\xa9\xb2\x63\x3a\xcc\xc0\xb9\x08\x28\x47\xce\xc0\x79\x1b\x22\xe2\x54\x9f\xb4\x2e\xa4\xd0\x29\x55\x7d\x2c\xce\xbb\x3e\x10\xa0\xed\x49\x2a\x14\x8e\xb3\x63\x55\x2e\x18\x89\x2e\x91\x49\xf0\x48\x9a\x35\x83\x98\x2e\x54\x98\xa6\x2a\x17\xdf\x2a\xc2\xe0\x41\x5e\xbc\xdf\x54\xf4\x41\xa7\xdc\xad\x4e\x79\x40\x42\x3a\x6e\x26\xa4\xe3\x7e\x08\xe9\x78\xdf\x84\x74\xfc\x40\x48\xf7\x25\x58\xa3\x65\xb8\x80\x1c\x97\x24\xeb\x67\xfa\xfa\x57\x9d\x2c\x54\x10\xaf\x1f\xa4\xeb\x6f\x96\x2f\x3c\x48\xbf\xdf\x86\xa2\xbf\xa9\xfd\xff\xc1\xf2\xbf\xef\xd3\x58\x85\x20\xef\xe0\x5a\x55\x6f\x23\xa6\x17\x20\x6b\xf4\xf1\xf7\xc3\xd0\xf6\x79\xf8\xbf\x45\x91\xed\x5b\x38\xfd\x65\x33\xdf\x7d\x32\xf0\x3d\x28\x74\xdf\x03\xe3\x7e\xb0\xd1\xff\x29\x0f\x6f\x07\x25\x62\xd3\xd0\xb0\xa7\x6b\x53\xa0\x02\xea\xba\x06\xf9\x1a\xff\x52\x9d\x82\x04\x18\xc5\xe3\x2b\xf2\x8b\x8a\xd5\x40\x69\x5b\xfa\x6f\x20\x54\x6d\x8d\x28\x04\x4b\xd5\x47\x31\x84\x1e\xd2\xb9\x01\x48\x70\x7d\xed\x16\xf3\x08\x06\x60\xa5\x5a\x24\x0e\xc1\x4b\x01\x60\xc0\x29\x80\xbe\x64\xb9\x2a\x7c\x0c\xdd\x61\xae\xaa\x1e\x84\x92\x1f\x33\xc2\x87\x7b\xee\xe0\x66\xd6\xd7\x63\x78\xf6\x8a\xba\x5c\xa0\xd0\x35\xf6\x87\xc3\x46\x69\x5f\xfd\xf1\x31\x8c\xde\x7d\x3c\xde\x2a\x4a\xbb\xb0\xa2\xa2\xa3\x67\x45\xc1\x95\x40\x21\x78\x6a\x6e\x97\x15\x50\x3b\x11\x5e\x52\xef\xc6\x95\x68\x93\xf7\x25\xa4\x47\x41\x1f\xd4\x12\x40\xe3\x74\x44\xec\x07\xe8\x1a\xdd\x09\x67\xe0\x78\x90\x78\x28\x88\x7f\x50\x32\xc3\x6c\x99\xff\xa5\x8e\xc7\xeb\xb4\x21\x89\x73\xe5\x41\xb6\x06\x4f\x8c\x4d\xc7\x79\x73\xbb\x74\x06\xce\xaf\x28\x74\x06\xce\x2f\x10\x8b\x01\x60\x08\x06\xc1\xfa\xef\xe0\x15\xbe\x41\xc3\xe1\x90\x23\x86\x69\xc4\x83\xf5\xdf\xad\x29\x5f\xfd\xa9\xff\xf9\xe5\xba\x09\xa0\x6b\x60\x0e\x30\x01\xd7\xfa\x66\x5f\xc0\x3f\x1d\x38\x8b\x51\x99\x61\x9b\x09\x64\x9f\x8e\xeb\x9c\x40\x55\x37\x0d\xa8\x67\xbe\xc5\x3d\xb4\x9a\xc0\x76\xb4\xa9\x01\x85\x49\x8b\x91\x9a\x6d\x7d\xa5\x1f\x03\x57\x71\x72\x5d\xc7\x56\x66\x75\x9b\xdc\x75\x9b\x6b\x36\x7a\xd7\x5b\x3d\x70\xe0\x0a\x62\xc9\x26\x2e\x32\x77\xd3\xa4\xc3\xed\x30\x61\x20\x58\x84\x06\x4e\xc8\xe8\x32\x6c\xdd\xe6\x6c\x0f\xac\x3a\x16\x5d\x04\xa3\xb9\xdd\x7b\x43\x05\xca\xd5\x93\xaa\xa9\xab\xc5\x8b\xe9\xc6\x69\xc3\x7d\xb9\x97\x44\xb2\x5c\x18\xe8\x3e\x10\x8a\x77\x53\x12\xac\x75\x14\xb6\x8a\xad\x16\x14\x4c\xd7\x21\xe4\xba\x84\x96\xdc\x41\xf3\xac\x94\x14\x7c\xb4\xa4\x84\x0b\x5d\x0d\x04\x84\x11\x53\x55\x1c\xf7\xcd\xc0\xf3\xe8\xb6\x15\x1f\x9f\x07\x74\x0a\x03\xa5\x0e\x20\x76\x60\xc6\x1d\xcc\xef\x6e\x4f\xc7\x93\x0f\xf6\xce\xab\xff\xc3\x0c\x58\x6e\x91\x6a\x4f\x0c\x25\xf0\x76\x0a\x95\xf4\x5d\x28\x2b\x58\x20\xf9\x16\x1a\xa2\x5f\x75\xa7\x0c\x12\x8b\xd4\x5e\x23\xad\xcf\x23\x29\xd1\x99\xf0\x90\xf8\x66\xd6\x40\xe6\x2c\x11\x89\x9c\xf6\xae\x16\x29\xa3\x53\xf2\x02\x2e\xa7\x11\x9b\x23\x76\xa1\x9e\xff\x5c\xe3\x3e\x51\x63\x9f\x28\x4c\x14\x18\x06\xfc\xd1\x22\x7e\xd7\x55\x9f\xd6\xe3\x56\x9e\x72\x43\xce\xe3\x42\xaf\x83\x4f\xce\x17\x3a\x35\xd6\xf8\x34\x33\xd2\xc0\x07\x0b\xb4\x54\x3a\x17\x9d\xd3\xc6\x1a\x2d\xb9\x49\x69\x9c\x54\xef\x65\x27\xd4\xe8\x9a\xb0\xd2\xa4\xda\x3d\x44\xc5\x1d\x74\x8a\x29\xf5\xa6\x8a\x89\x2a\x12\xa1\xba\x1a\x3b\x03\x07\x91\x5b\xcc\x28\x91\x2b\x51\x73\xf2\xd1\x2d\x0a\x68\xa8\x7f\xb7\x4b\xb1\x2f\x43\x32\x39\xc3\x35\xe0\xac\x00\xe3\x95\x7c\x6d\x1e\x61\x7f\xcb\x5e\x20\xf9\x2c\xec\x62\x49\xce\x85\x10\x21\xff\xf1\x91\xde\x9d\x90\x51\x75\xe4\x31\x7d\xe4\x53\x8f\x57\x80\x57\xcf\x39\x81\xef\x25\xf5\x22\x39\xef\xaa\xea\x0d\x65\xa0\x70\x24\x24\x93\xe3\x43\x41\x6f\x10\xa9\xc3\xb4\x0a\xd0\x3c\xb9\x78\x05\xae\xcd\xbb\xcd\x69\xb8\x4d\xe2\x4e\x3d\x36\x49\x64\xe7\xc8\xa3\xc4\xdf\x84\x9c\xc4\xc7\x45\x13\x09\x3b\x5d\x31\x02\x05\x43\x73\x4c\x89\xcb\x57\x58\x78\x0b\x49\x97\x63\x81\x22\x2d\x58\xe5\x98\x9a\x0c\x34\x12\x52\x99\xf3\xdb\x48\x77\xc9\x24\x2d\xe4\x72\xca\x10\xf4\x3d\x16\x2d\xa7\xea\x48\x43\x66\x6b\x62\xe8\x64\xb3\x97\xad\xa4\xe7\x78\x30\xea\x28\x45\x94\x85\x8a\x84\x5b\x4a\x29\x65\x03\x66\x99\xe3\x69\xdb\x71\x47\x4d\xcf\x0d\xe5\x3c\x24\x6f\xfc\xc7\xcd\xe4\x87\xd7\xd7\xab\x73\x3b\x6f\x24\x70\x89\x94\x31\xc2\x19\xd4\xf3\xc9\xaa\x0e\xb5\x52\xba\x35\xbd\x07\xd5\xf6\xa3\x99\xb0\xb4\xa8\xc5\x5c\x7b\xdb\x75\x0b\x27\x9a\xf1\xbc\x7f\x2e\xf2\xa2\xc2\x69\x28\x7e\x4f\x03\x76\xbb\x4f\xa4\xd2\xbc\x16\x5e\x6c\xdf\xf1\x68\x10\xc0\x90\x23\x5f\xed\xe1\xb6\xdf\xbb\xe7\xbc\xbf\x3b\xf7\xaf\x31\xdc\x55\xac\x52\xf2\x6c\xd7\x54\x36\xb5\x11\xb1\x2e\xec\xbe\xbd\x95\x30\x65\x59\x1c\xfb\xa8\xa4\xf2\x19\xb8\x56\x31\x79\x55\x7d\x6f\xcd\x25\x0f\x19\x38\x3a\xf1\xf2\x6a\x41\x57\xef\x15\x91\xe5\x5d\xca\x30\x59\x88\x7b\x8a\x61\x52\x8f\xa8\xb2\xf1\x3a\x99\xa0\x8e\xe2\xd4\x0d\x7e\x54\x5a\x87\xf5\x3c\x3b\xd9\xa5\xcb\xe5\x25\xf4\x87\x32\x85\x25\x2a\xed\xc6\xb9\x62\xb0\x85\x47\x6a\x15\x6f\xf9\x85\x98\xc7\xad\xb0\x5f\xd9\x03\x37\xb3\x84\xc1\xa7\xf1\xa8\xcc\xed\xaa\xe3\x78\x6a\xd7\xde\x00\x96\x36\xf1\x3f\x2d\x23\x63\x36\xd9\xc9\x5f\x28\xbb\x09\x28\xf4\x5b\x9d\xbc\xd6\xfb\xd7\x0a\xd1\xdf\xc4\xdc\xa1\x1d\xae\xb7\xc2\x84\x8d\xf1\xc0\xcc\x38\xa4\x2b\xc4\x5c\x8e\x02\xe4\x89\x54\xbc\xa1\xa1\xae\xb2\x39\x70\xf4\x1d\xe4\x3b\x71\x7f\xf8\xe7\x18\x05\xe9\xaf\x67\x04\x4e\x03\x75\x97\x12\x6f\x01\x89\xb2\x98\x08\x38\x57\x35\x2f\x73\xc5\xda\xd2\x8e\x85\x39\x30\x0c\x0a\xd0\xd2\xf5\xc4\x93\x47\x14\x2a\xa8\x42\x8f\x9a\x40\xcf\x33\x8d\xe5\x8b\x83\x65\xab\xe3\x8c\x8e\x72\x31\x70\x95\x74\x7d\x4e\x05\xfd\x99\x4e\xf9\x73\xca\xb2\xdf\x4c\x8a\x25\x4a\xb8\x0e\x52\xb6\x9e\x39\x1b\xd6\x12\x73\x96\x9a\x8c\xa3\x4c\x5b\x43\x27\x15\x09\x3a\x95\x07\x93\xff\x5d\xea\x57\x41\x32\xcd\xaa\x83\xd2\x6a\xb4\xf8\xd4\xe7\xe7\xd7\x5c\x4b\xac\xba\xa4\xcd\xa0\xf8\xa1\xb6\x44\xa0\x65\xc9\xb2\xd2\x59\xa8\x52\x8f\x35\x06\x5d\x24\xaa\x0b\xe6\x6e\x5c\xa4\xde\xaa\xb8\xfc\xac\xde\xac\x9e\x43\x1b\x77\xda\xe6\xe4\xe8\x22\x88\xb8\x40\xac\x5f\x6a\xd4\x12\x66\xa6\x65\xc0\x66\x60\xbb\x88\x5f\xee\x00\xb9\xc6\x19\x71\xc4\x6e\x4d\x8d\xad\xee\x33\xba\x8a\x5f\xde\x6e\x2f\x3b\x6b\x4a\x55\x04\xb8\x20\xcb\x33\x9b\x87\xdf\xe8\x6a\xe3\x96\xa3\xdb\xc5\x77\x77\x0a\xbd\x1b\x9f\xd1\xb0\xbb\x5c\xdd\xa7\x08\xdc\xbb\xfa\x98\x2a\x7d\x5b\x29\x8f\x5f\xe8\xd4\xf5\x51\x18\xd0\xb5\x8a\x69\x33\xf1\xbb\x07\xd6\x23\x27\xe1\xf9\xe5\x3f\xff\xf9\xf2\xb2\xab\x8d\x55\x2a\xf6\x86\xc5\x2c\x20\x5f\xa4\x2c\x7b\x89\x04\xc3\x9e\x8e\xf1\xe7\x37\x3f\x31\x1a\x85\xf2\x47\xa6\x0b\x88\xe6\xc3\xa7\xf9\xd2\x6b\x4e\x1e\x3a\x8f\x32\x80\x8a\x47\xfc\xac\x0d\x1e\xf1\xf5\x94\x9d\x67\xaf\x69\x74\x6a\x1a\x5d\x4e\xcd\x9d\xeb\xb9\xf5\x38\x6c\x66\xd2\xc5\xf5\xb6\xfa\x82\xf9\x8c\x0d\x77\x37\x75\x14\xd8\x91\xae\x47\x3c\x3e\x74\x09\xb6\xb7\x3f\x7d\x78\xff\xf1\xf1\x4b\x3b\xfe\xfa\xb5\x46\x8f\x76\xc1\x50\x00\x13\x15\xa0\xa5\xd6\x81\x93\x1d\xb5\x18\x37\x8a\x11\x36\x85\x2d\x1e\xe8\x92\xef\x2f\xfd\xca\xa2\x9e\x45\x3d\xbb\x48\x66\xb3\xa1\x44\x02\xce\x15\x99\x2d\x7f\x44\x40\x11\x71\xc3\xae\xf2\x01\xb5\x15\xcf\x56\xcc\xa7\xac\x4b\xe4\xde\x65\xe8\x8f\x08\x33\xc4\xdf\x31\xba\xa4\xa6\x56\x69\xbd\x20\x59\x63\x46\xc8\xae\x2c\x89\xdd\x32\xe5\x65\xe5\x9f\x0b\x1a\x04\xb9\x62\xb8\xef\xcd\xd7\x41\xe6\xf3\xdd\xc4\xb9\x9a\xd9\xe4\xb3\x60\x5a\x7b\x7b\x1a\xa3\xbb\x6a\xde\x2d\xc4\x75\x7d\x44\x8c\x57\x15\x3c\xae\x19\x65\x01\x79\x2e\x65\xc2\x8c\xf6\x2f\x4e\x15\x02\xdc\x9a\xef\x0c\x1c\x5d\xed\xab\xb1\xe8\x79\x01\xcd\x8f\x06\xce\xff\x55\x16\xab\x7a\x8a\x12\xaf\x99\x2d\x57\x71\x6f\xd7\x78\x99\xd1\x92\xac\x06\x3a\x90\x37\xa4\xdb\xe2\xc9\x3b\x7e\xa6\x4b\xc5\xd3\x4e\xb6\xac\x2d\x93\xb5\x26\xd5\xd9\x59\xc6\x06\x99\x8a\x61\x83\xe4\x81\x04\x76\x09\xe8\x62\xb9\xa4\x30\xcf\x66\xe9\xf3\xd8\x2e\xf0\xd5\xd1\x84\x6a\xa1\xb5\x29\xa0\xdc\x7c\xb0\x4a\xa6\x4a\xfd\x23\x8d\x5c\xb7\xc1\x4d\x99\x28\xa7\x89\x18\x62\xc7\x80\xfc\xc3\x19\xd9\xa7\xd5\xf3\x39\x71\xa1\x59\x01\x2e\x6a\xbb\xad\x69\x5f\xff\x22\x45\x8f\xa2\x44\x95\xfc\x74\x58\x09\xe3\x5f\xf1\xf1\xeb\x67\xcb\x37\xc4\x2e\x61\x28\x4e\xa8\x38\x53\x77\x39\xa3\x42\x8c\xd8\x30\xad\xe3\x49\x0a\xb1\x5a\x5f\x5f\xab\xc3\xa6\xd8\x98\x24\x2f\xd3\x00\x15\x79\x99\x13\xab\xcb\xed\xba\x23\x94\xc8\x6b\x01\xd7\x8b\xbf\xdb\xb4\x88\x3f\x4c\xc7\x04\x03\x82\x97\x97\x35\xe6\xe3\xe2\xc3\xd7\x90\xdf\x00\x45\x09\x3a\xbc\x74\xa1\x0a\x4a\x56\xc5\x74\xdb\xde\x78\x4d\x7d\x3c\xc3\x9d\x5e\xb9\x32\xb2\x5f\xeb\x17\xea\x64\x12\xfb\x1b\x6f\x4c\x24\x56\xdb\x65\xbf\xfb\xd0\x65\xc9\x68\x49\x59\xb1\xef\x44\xd7\x76\xf8\xd9\x0e\x0f\x6d\x10\xc9\x88\x11\x29\xca\xba\x2c\x49\x45\xfb\x94\x25\xe3\x3a\x8c\x4f\xa8\x3a\xe1\x69\x37\x09\x5d\x79\x5f\xce\xf1\x0b\x9d\xb6\x6a\x9b\x50\xdd\x8c\xbd\x89\x05\xd4\x18\x42\xfa\xa1\xfc\x15\xe4\x7a\x47\x0c\x21\xb1\x2b\x1c\x94\x19\x90\xc5\x53\x7f\x4d\xbd\x57\xed\x62\xc9\x2b\x3d\x84\xd1\x92\x70\x60\x37\x71\xb4\x63\x08\xc6\x9c\x57\xd5\x39\xaa\xfa\x45\xfd\x25\x6d\xfb\xa8\x51\x51\xaa\x0c\x7d\xfa\xf5\xca\xd6\x4f\x25\x5a\xaf\x7a\x6d\xfb\x17\x90\x40\x86\xb3\x7e\x96\xdc\x43\x3e\xe2\x98\xe5\x9e\x4a\xfc\x1e\xb9\x68\x3d\x73\xad\xfd\xd7\xcb\x03\x27\x1d\x51\xd4\xd0\xb1\xa2\x56\xa7\x3e\x18\x80\x2c\x26\x45\x48\x16\x8d\xe9\xe9\x57\xea\x48\x58\xc9\x30\xaf\x10\xb2\xd6\x6a\x50\x86\x61\xb6\x47\xc3\x23\x50\xa9\xdc\x59\x96\xdf\xb6\xa1\x95\xe5\x52\xdf\xa8\x55\x7a\xd3\xf6\x4e\x07\xf8\xbf\x53\x60\xda\x11\xf4\x95\x70\xd5\x19\x82\x3b\x5f\xf3\xa5\xde\xe1\xde\x17\x6d\x30\xe7\x5a\xb7\x84\xb9\x57\x68\xd3\x96\x22\x65\x3c\xb4\xb9\xa5\x2d\x10\x0c\xc4\x62\x9d\x6e\xe8\x91\x8d\xd8\xf4\x4f\x1e\x5e\xe8\xef\xf6\xbe\x55\xa5\xf5\x7c\x47\x7b\x15\x91\xfa\xdd\xf2\x21\x99\x23\xb6\x83\xcd\xfa\x10\x7f\xb8\xf7\xed\xb2\x2c\x69\x8b\x0d\xeb\xa4\xe5\x69\x99\xa1\x51\x58\x28\x6e\x1a\xa1\x02\xcf\xb0\x69\xcf\xde\xc5\xe2\x6c\xb3\x76\x54\xbc\x9b\x6b\x1e\xba\x59\xf2\xc9\x5e\xc5\x5d\x23\xaf\xf5\x29\xea\x66\x5d\x52\x87\x95\x71\xbf\xfe\xf0\x1c\xf2\x5f\x7e\xba\xbd\xef\x06\x8f\x54\xb5\xbe\xe7\x06\x8f\xc4\x18\x78\x15\x2d\x97\x89\x28\xe6\xe4\x9c\x90\x3b\xb6\x7b\xc4\x0a\x79\x55\x0b\xe0\x8a\xc7\x11\xf2\x33\x1e\x96\xbf\x77\x78\xf5\x49\x24\x28\xd0\x39\xfc\x5d\x5e\x6b\x27\x44\xe7\xbf\x64\x08\x69\xeb\x17\x0c\x27\x06\x9d\x5f\x4c\xb8\x42\xf7\x57\xdf\x31\x3a\x67\x88\x73\x70\x89\xa0\x1f\x57\x9a\xda\xa3\xdd\xa2\x7d\x17\xca\xf3\xc4\x2e\x3d\x6e\xea\x71\xdc\x38\x8e\xcd\x37\x90\x1f\xb7\xbb\x13\x31\xff\xb9\x7c\x4d\xb8\xfc\xd8\xa1\x1a\x53\x65\x42\x0c\x9c\x37\x54\x25\x43\xf2\x8a\xd2\x70\x9b\x45\xb0\xbd\x79\xf4\xa4\x2a\x3e\x6d\xf0\x69\x8b\x36\x97\x55\x2b\x82\x91\xa0\xfa\x4c\xa9\x6f\xfe\xaa\x82\x0d\xdf\xd0\xd2\x9a\x3a\x7d\x89\x32\x1b\xec\x4a\x3a\xe7\x91\x05\x70\x19\xe5\x33\xff\x7a\x17\xcd\xb3\x25\x06\x56\xe9\x61\x2d\xa6\xd1\xac\xc6\xb4\x9c\x43\x7b\xd1\xad\xe5\x80\x5d\xa4\xc1\x9a\x13\x56\x3c\x15\x15\x2e\xd8\xbc\xb5\xc8\x5a\x03\xc4\x7a\x3a\x63\xe2\xf5\xb4\xe7\xaa\x20\x3b\xb3\x76\xee\x4a\x02\xcc\x70\xec\x1e\x45\x3f\xee\x72\xc1\x10\x5c\x1e\x58\xec\xfb\xf9\xdd\x04\x2d\x5f\xac\x5f\xdb\xc5\x3e\x86\x3c\xca\x2c\xe1\x34\xc7\x03\x07\x41\x6f\x91\xe8\x6f\x26\xb9\x1b\xf9\x97\xe9\xfa\x8a\xfd\x93\x33\xce\x43\xec\xd7\x47\x30\x27\xae\x57\xa8\xc3\x67\x56\x97\xba\x0a\x40\xab\x40\x93\x4e\xf5\x9f\x8a\x5c\x6a\xd4\x29\x2a\xa0\xa5\xdf\xa0\x58\x53\xaa\xeb\x67\xb6\x65\x5b\x1f\xc8\x0d\xa1\x2b\xa2\x4a\xda\x34\x72\xae\x0e\x22\x4a\xd6\x99\xbf\x41\x8d\xab\x0c\x84\x8a\xc1\x65\x55\x8e\xfc\x12\xe4\xb4\xe2\xd9\x58\xce\xa2\xae\x15\x6a\xcf\xe4\x22\x3e\xd7\xdb\x93\x0a\x3c\x9b\xb9\x33\x8c\x02\x9f\xbb\x90\xf8\x06\x8c\x87\x56\x13\xdf\xbd\x0e\x3e\xcc\xce\x3f\xfc\xc3\x4e\x2f\xcc\x56\x0f\x1c\x35\xef\xb6\xda\xa2\x5a\x69\xac\x96\x25\x95\x3b\x4b\x87\x34\x47\x71\x34\x60\xda\xd2\x84\x2a\x2b\x47\xf9\xcb\x2e\xa3\xab\xd8\x54\xe5\x51\xe2\x41\x15\xea\x98\x7b\x4e\x99\x8d\xa4\xe6\x68\x1e\x0b\xe8\x0a\x31\x0f\x72\x94\xe1\xa5\xd7\xeb\x10\x95\xeb\x1c\x77\xcc\x25\xb4\xcc\xce\x43\x41\x45\x28\x7f\x71\x9c\x92\x15\x0e\xb2\x9b\x34\xd7\x32\x5d\xda\xf6\xeb\x70\x2a\x72\xe9\x5b\x0d\x39\x70\xa0\x9f\x35\xe1\xb5\xd2\x02\x7e\x68\x4b\x04\xb7\x98\x96\x8f\x02\x24\xba\x4e\xcc\xdd\xc3\xc4\x90\x8f\x3b\xcf\xeb\x87\x47\x6e\x41\x52\xab\x09\x15\x6a\x4a\xba\x29\xea\x39\x75\x62\x5f\x22\xfb\xbe\x29\x27\xf9\xfc\x58\x65\xf2\xdc\x2f\x42\x75\x3f\x80\x20\x77\xdd\x24\x9e\x65\x8f\x84\x53\x58\x3b\x5a\x95\xec\x9b\x4e\x1b\x3e\x7b\x48\x74\xde\x3d\x58\xde\x06\xfe\xc1\xc1\xd2\xf5\x30\x1d\x08\x2a\xe0\xff\xff\xbf\xc1\xee\xd0\x6a\xab\xf5\x6d\x8b\xf8\xd5\x04\xa9\x2b\x2d\x6a\xaf\x67\x96\xd5\xc6\xb2\x80\x41\x93\x9e\x4d\x1d\x42\x59\x0b\x4c\x77\x1b\x29\x62\xd4\x41\x8a\xe8\x9f\xf7\xb7\xfd\x7a\x07\x52\x5d\x1e\xb2\x33\xa9\xee\x9b\xef\xdb\xa6\xd4\x99\x50\xf6\xcd\xf3\x6d\x93\xea\x4a\xa6\xb2\xfc\xbe\x37\x5e\x6f\x39\xb8\xe9\x71\x1f\xd9\x79\x3c\xf8\xf7\x16\x41\x11\xe5\x73\x51\x2d\xe2\x66\x15\xc6\x2a\x05\x29\xd6\x1e\x8d\x8e\x30\x48\xcf\x72\x0a\xe1\xe7\xb1\xfe\x90\xcc\x3e\x6d\xd2\x66\xaf\x84\x67\x05\xc0\x7f\x1c\x4a\xdf\xb4\xaf\xbd\x17\xa5\xf3\xd0\x1a\xe6\xdb\x53\xf6\xf6\xcb\xf8\xc4\xae\x61\xea\x20\x04\xed\x46\x73\x06\x4e\xb6\xaa\xa0\x83\x89\x8f\xee\x94\xcb\x3b\xd2\x5e\xf7\xd0\x87\x02\xe9\xb3\xd4\xbe\x0a\x4e\x31\x87\x55\x83\x24\x3e\x92\x5b\x68\x86\xe5\xc1\x8a\x6d\x70\x6a\x8b\xe8\xf4\x46\xdd\x1b\xe7\xb1\x21\x89\xaf\x1c\xb7\x23\x9d\xef\x97\xca\xd7\xcc\xaa\x23\xa9\xef\x97\xd0\xd7\xcc\xab\x1b\xb5\x4f\x69\x7d\x4f\x94\xbe\x44\xe6\xda\x0a\x85\x53\x1a\x64\x5d\x14\x3f\xd3\xe9\x8f\x59\xa9\x35\xb3\xe2\x97\x97\x2d\x24\xd7\x0a\x29\x2d\x05\xad\xf1\x61\xc9\x71\x6f\x11\x9b\x52\x9e\x1e\xd0\x9e\xa0\xbe\x61\x1a\x53\x1b\x86\xd6\x0f\x33\xcb\xac\x27\xcb\xd1\x32\x97\xeb\xd9\x5a\x37\x6b\x6f\x85\xa8\x1c\x03\x34\x9b\xfd\xb4\xa5\xd0\x9c\x33\xc8\x6f\x4f\x7a\xeb\x04\xda\x07\xa9\xfa\x41\xaa\xbe\x7f\x52\xf5\x06\xf4\x36\x8d\x8c\xfa\x31\x6f\x2c\xa8\x90\xcd\xed\x34\xb7\xe8\x0d\xfb\xa0\x84\xa8\x36\x35\xa3\xfe\x5a\xa4\x0d\xa7\x03\xc7\x95\x3f\x5c\x4c\x6a\x06\xac\x19\xb7\x83\x79\x3b\xa1\xa1\x5a\xe8\x73\x95\x0c\x98\x9c\x4d\xce\xdd\xf8\x69\x39\x8d\xc7\xb9\x1c\xd8\x9c\x9f\xfe\x44\xe5\xcf\x66\x35\x98\x14\x8e\x8f\x73\xf7\x5a\xd8\x30\x4e\x06\x8f\x73\xf4\xf3\x6f\x5d\x48\x6c\x89\xcf\x6d\x89\xdf\x83\x22\xa7\xec\x50\xc2\xf6\xbb\xd2\xdb\xba\x33\x39\x03\x5e\xc8\x6f\xda\x9c\x83\x2e\xec\x6d\xdc\x13\x7b\xab\xf6\xd5\x74\x70\x3d\x7d\xbf\x2e\xa3\x7b\xea\x30\xba\x9f\xee\xa2\xbc\xb3\xa8\x47\x57\x91\xd5\xf2\x2b\x4f\xd5\x8f\x16\xe3\xb6\x95\x5f\x55\xc4\x15\x3e\x49\xac\x00\x6d\x6b\x1b\x96\x78\x55\xb7\x81\x1a\xa2\xaf\xac\x66\xe0\x02\x0f\x9a\x54\xf3\xa0\x49\x3d\x9f\x49\xbf\x79\x3c\x70\x22\x12\x20\xce\x4b\x75\xff\x8e\xd3\x32\x10\x3e\xf2\x2a\x56\x98\x29\x59\xd8\x56\xeb\x19\xb4\x29\xaf\x5d\x8d\x3a\x93\xc1\x71\x27\x86\xb8\xad\xba\xd7\xfe\x48\xb4\xae\x88\xd9\x07\x23\x1b\x97\x18\xd9\xb8\x81\x91\xb5\x2e\x4a\xda\xd6\x01\xd2\xae\x80\xc4\x4e\xec\x96\x5b\x1b\x29\xe5\xfe\xd1\x43\xb7\xa9\x38\x7d\xf6\xfa\x99\xf8\xe9\xc3\xc7\xfa\x7c\x09\x13\xc1\x2a\xd1\xe9\x39\xc4\x41\xc4\x2c\xa6\xc8\x7c\x05\x95\x10\x32\x8e\x9e\x31\x46\xd9\xc6\x55\x54\x72\xb9\x3b\x69\xc2\x54\x65\xe1\xec\x52\x62\x94\x6a\x70\x23\xdf\x3c\xce\xbc\xf4\x4e\x4e\x0c\x98\x99\x55\xe9\x2c\xb9\x38\xd3\xd1\x20\xb7\x9a\xea\xea\x57\xed\x43\xe2\xb3\x80\x0a\x20\xb9\x97\x70\x0a\x20\xe9\x0c\xa6\x74\x2d\x3d\x43\x89\x45\xf7\x12\x48\xef\xa3\xce\x30\x4a\x57\xb2\x35\x88\xea\x85\x50\x55\xde\x57\xa8\x4e\x5b\x86\x59\xa8\x8f\xd6\x71\x89\xdc\x30\x90\xf8\xe9\x38\x0b\xba\x7a\xa6\x46\x48\xba\x77\xe5\x59\x96\x69\x38\xa2\x4b\x46\x7c\x1e\x38\x04\xad\x3a\x31\xa6\xf6\x1b\x87\xc9\x8c\xda\xf4\xb3\xea\x11\x4c\xc9\x82\x6a\xa5\xae\x5b\xc6\x61\xee\xbd\x0e\x78\x02\xc1\xcf\x74\x6a\x95\x1d\x6d\xd8\xa2\x28\x15\x17\x08\x50\x06\x60\x24\x16\x94\x81\x17\x17\xaf\xe4\xaf\x9f\xaf\xde\xbe\x01\x82\x02\x1d\x61\x2b\xff\x5a\xd3\x88\x01\x4f\xd7\xc0\x1d\x82\x27\x40\x1e\x43\xb0\xc2\x41\x00\xa6\x08\x30\xf4\x47\x84\xb8\x40\x3e\x98\xa2\x19\x65\x48\x35\x82\xfa\x42\xa7\x00\x73\x33\x84\x40\x7e\x55\xbf\xfd\x9a\xcb\xb5\xa5\x1d\x30\x77\x3d\x44\x04\x62\x48\x95\x22\x5c\x62\x82\x97\xd1\xb2\x01\x96\x4d\x25\xc4\xe2\x9d\x2f\x97\x5b\xd5\x25\xc2\xdc\xa4\x82\x98\x05\x5f\xcb\x45\xc3\x92\xb9\xbc\xbd\x81\x75\xa9\xb2\x1b\x64\xb6\xb6\x8d\x36\xee\xde\x15\xb7\xe5\x8b\x95\xcd\xb3\x7f\xa6\x53\x70\x99\xd4\x82\xb4\xd6\x3e\xd3\xbd\xdd\x74\xf8\x6a\xfb\x50\xa2\x2d\xeb\xbf\x75\x2a\xa1\x7b\xa1\x66\x68\xeb\x1e\x11\xdf\xe9\x5a\x1b\xbb\x9a\x7c\x6f\x9d\x7f\x59\x12\xb9\xf1\xed\xda\xf5\xa8\x8f\x96\x58\xb1\x81\x44\xca\xd6\xe9\xd7\x26\x0d\x5b\x5b\x17\x55\x49\xf8\x30\x5f\x77\x36\xa3\x3e\x7c\xa1\x53\x67\xe0\xfc\x1b\x41\xab\x74\x4b\x53\xc7\xc9\x17\x3a\xbd\x0a\x91\x97\xd1\x18\xaa\xe1\x7a\x3a\x70\x96\x91\x68\x1a\x38\x4f\xd0\x07\xb6\xfa\xb9\xd4\x57\xb5\xeb\x17\x68\xa9\x6b\xd8\x4f\xaf\xf0\x57\xf9\x57\x80\x09\x7a\xa3\x8a\x34\xea\x32\xd4\x5f\xe0\x2d\xd4\x59\xd3\xba\xf0\xe3\x02\x3b\x83\xb1\x6a\xe4\xf7\xb9\xca\x00\xf6\xff\xb1\xf7\xa6\xdb\x6d\xe3\x58\xa3\xe8\xff\x3c\x05\xc3\x73\xbf\xb4\x74\x42\xd1\x1a\x3c\xd7\xa7\xce\x71\x39\x49\x25\xe9\x0c\xae\xd8\x49\xba\xca\xed\xd5\x0b\x16\x21\x09\x09\x45\x28\x00\x68\x5b\x49\xbc\xd6\x79\x87\xf3\x2c\xf7\x05\xee\xa3\x9c\x27\xb9\x0b\x03\x49\x90\x04\x27\x49\x1e\xba\x3b\xd5\xab\x1d\x49\x24\xc1\x8d\x8d\x8d\x8d\x3d\xef\xdc\x1a\x19\x7f\x28\x62\x4b\x01\x83\x81\xa0\x3f\x40\x29\x1e\x21\x20\x4b\x60\x17\x6c\x2f\x8d\x98\xf3\x55\x4c\x23\x8a\x56\xd5\x16\x0c\xe5\xa2\x39\xff\x15\x79\xfd\xef\xc3\x20\x10\x9d\x1b\x65\xc6\x7f\xd2\x34\x32\x51\x97\xf3\x84\x3f\x87\x64\x8c\xc9\x2c\x3d\x9a\x4e\xeb\xfc\x11\x0f\x51\xd5\x33\x20\x4b\x14\xa6\x97\x8b\x7b\x02\xdc\x70\x81\x15\x0e\x19\x57\x3b\x75\x9c\x68\x02\x62\xd5\x9a\xac\x4b\x7a\x91\x38\xa8\x29\xbb\x44\x02\x0b\x07\x30\x11\x57\xfe\xa3\xe5\x0f\xce\xf6\x8d\xeb\x55\x22\x7e\x44\xdd\x42\x45\xe3\x48\xc9\xb3\x89\x24\x29\x8b\xf1\x4b\x5c\x86\x10\x42\xc6\x14\x5c\x40\x0b\x07\x69\x31\xe4\xdf\x50\xa0\xd0\xe9\xe9\x3f\x5b\x9c\x28\x21\xa7\xa6\xc7\xa6\x07\xc8\x97\x8a\x03\x33\x09\xe8\x8a\x8e\x19\xe5\xa9\x8f\xcd\x67\x3a\xef\x7b\x17\xb2\x79\xc8\x94\x5b\x27\x31\xbd\xae\xe7\x48\xc9\x9d\x06\xa9\xee\xeb\xe6\x93\x20\x06\x68\x0c\x90\x0f\xbd\x93\xdf\x92\x74\x59\x3b\xa9\x13\x6d\x9b\xca\x85\x15\x7b\xf3\x9b\xae\xd8\xf1\x68\x0a\xbd\xd0\x87\xc4\xf2\xc8\xa2\x43\xc2\x55\x97\xce\x2e\xf1\x83\x54\x4f\xbc\x98\x85\xa7\x02\x32\x96\x1a\xa4\xc8\xd2\x19\x1b\xb0\x3a\x63\x65\xc1\x4a\xec\x9b\xfa\xd0\xf6\x99\x6e\xd8\xae\x61\xc1\x1c\x14\x3b\x12\xca\x80\x3b\xf0\x7d\x8b\x01\xfa\x85\x6b\x61\xa3\x11\xa4\x94\x0b\x90\x0b\x4b\xd5\x22\x84\x5e\x51\x1b\xde\x12\xa1\x35\xc7\x36\x9c\x62\x8d\x3e\x85\xdb\x39\x81\x70\x16\x77\x2b\x42\xf4\x79\xe8\x8f\x91\xef\xcb\xea\x03\x95\xf7\x9b\xad\xef\xcd\x4f\xda\xf4\x66\xd2\xb6\x46\xa3\xd3\xb6\x9e\x1e\x64\x59\x47\xc9\x1c\xac\x16\x1a\xf3\xd3\xcb\x1a\x4d\x31\xa6\xa2\x69\x32\x09\x83\xf8\x94\x73\xf8\x11\x48\xa1\xa5\x95\x89\x8c\xb5\x6b\xca\xf0\x7c\x0e\xbd\x76\x19\x37\x5f\xc3\xce\x6a\x52\xbd\xa5\x70\xa5\x32\xe5\x6a\xc5\x09\x48\xb1\x0f\x54\x95\x89\x75\x97\x70\xb1\xb2\xd5\x44\x9a\x96\xaf\xcd\x0d\x50\x55\xc2\xb6\xe8\x81\xca\x32\xb6\x45\x0f\x96\x97\xb2\x2d\x7a\xaa\xa2\x9c\x6d\xd1\x63\xa5\x25\x6d\x8b\x1e\x2a\x2f\x6b\x5b\xf4\x54\x49\x69\xdb\x42\x54\x14\x96\xb7\x2d\x44\xc3\x6d\x97\xb8\xcd\x30\xfc\x7b\x58\xe6\xb6\x80\x41\xac\x4f\xdc\xbb\x5d\x3d\x57\x9a\x0f\xd7\xa7\xe9\xaa\xf1\xca\x74\xdd\xc2\xd7\x56\x28\xab\xef\xcb\x24\x9e\x5a\xb6\x2b\xb3\xa2\x50\x68\xa5\x22\x90\xc2\xcc\x54\x4a\xc0\x33\xda\xad\x1a\x10\xc6\xba\xfc\x9a\xd2\x4b\xb0\xb2\x67\x73\x0e\x26\x70\xe3\x1c\x30\x21\xcb\xdd\xa5\x77\xd3\xfb\xba\x75\x38\x7b\xbe\xb3\x5d\xaf\xe2\xb1\x6a\xc9\x20\xa0\x9f\x03\xc2\xe8\x86\xe0\x3d\x31\xe7\xf8\x2c\xed\xf7\x89\x09\xa5\xb8\x03\x43\x46\x7d\xd1\x86\x84\x69\xab\x9f\xf8\x1a\x6b\x95\x36\x0e\x9e\x22\x3a\x43\xfa\x79\x9e\xba\xe3\xac\xd8\x8a\x67\x8f\x7c\x08\xc8\xb3\xd4\xdd\xc9\xf6\x4b\xf3\xb0\x84\xba\x8c\x30\x0a\x1b\x42\x7a\xde\x9c\xc0\x02\xcf\x8f\x9d\xa0\x29\x2c\x14\xc3\x94\x7e\xa8\x0a\x9a\x3a\x72\x21\x07\x95\x23\xdc\x60\x4f\x59\x5e\xcc\x4a\x9d\x62\x7a\x8b\x18\xfe\x95\x11\x9c\x12\x42\x4f\x16\x73\xb8\xaf\x6f\xcd\x18\x93\x89\x69\x8d\xa9\x60\x38\x3d\x02\xf3\x47\xa9\x70\x58\xf5\xd6\x23\x82\x30\x41\x6c\x51\xf5\xe6\xb9\xba\x2f\xfb\xf6\x26\xca\x81\x1c\x29\xd0\xfb\x87\x36\xe9\xc7\xda\x3c\x01\x79\x2f\x85\x22\xd3\xf4\xe3\xd7\x54\xcd\x5f\xef\x1e\x5e\x52\xf8\x6d\x19\xa7\x40\xe6\x87\x8a\x4d\x44\x45\xbd\xc4\x2a\xf6\xd1\x70\x67\xe6\xb4\x58\xba\xde\xf1\x53\x85\x3c\xd3\xfb\x9f\x62\xc2\x22\x3e\xad\xbe\x3e\x85\x74\x04\x03\x4f\x9a\x2f\x26\x98\xe1\x38\x77\xc2\xc0\x21\xa2\x76\xb3\xf1\x18\xa9\x5f\xb5\xa1\x52\x7d\x65\xb5\x11\x9b\xcf\x86\xc0\x51\xae\x1d\x4b\x23\x6c\xdd\xfc\x89\x9b\x1c\x95\xeb\x39\x75\x63\x60\xd1\x37\xe8\x75\x46\x53\xe4\x7b\x77\x7c\x06\xf7\x9f\x5e\xfd\x9d\xfd\xbd\xfb\xe9\xe7\x19\xbc\xfa\x19\xac\x7e\xac\x38\x8b\xb5\x63\x88\xa0\xd9\x4c\xf6\x77\xfe\x79\x4c\xff\x2b\x1e\xd3\x65\xa7\xa5\x21\xad\x24\x07\x0d\x20\x30\x60\xfb\xe6\xb3\x3f\xd3\xf8\xd9\x15\x80\xa5\x60\x14\x4f\xc7\x84\xf3\x35\x84\x64\xd1\x11\x0c\x26\xcd\x47\xb5\xa6\xdf\x69\x09\x42\x0d\x60\x3c\x94\xcf\x9a\x59\x70\x0b\x06\xcd\x17\xdc\x5e\x2e\xc4\xf4\xa7\x30\xf4\x53\x18\xfa\x29\x0c\xd5\xc4\xd6\x6d\xba\x1a\x8f\xc0\xc2\xc7\xc0\x64\x4b\x6d\x72\x8c\x98\x3d\x8d\x76\xde\x6d\x25\xdf\xf6\xea\xf8\xdd\xdb\xa6\xd5\x31\x3f\x53\x1c\x74\x2e\x10\xbc\x84\x9a\x64\xc1\x7f\x4c\x10\x9b\x19\xbd\x1e\xeb\xaa\xe6\x1b\x73\x02\x73\x76\x40\x1f\x75\x2e\x51\xe0\xe1\x4b\x3e\x73\xe8\x03\xca\x92\x76\x2d\x22\x09\xca\x4b\x75\x7a\x10\x21\xce\x11\xa2\x53\x0c\x22\x42\xfa\xaa\xae\xa8\x5b\x91\xa3\x0d\xc2\xef\x0d\x48\xd5\x77\x2c\x4f\xbf\xfb\xad\xff\xaa\x3b\x46\xdf\x7e\xca\xd3\x39\xf6\x64\x27\x7d\x55\x6f\xcf\x9a\xb5\x44\xc3\x68\x06\xcc\x7d\xa1\x8f\x52\x64\xd6\x34\x94\xea\x5f\x49\x38\x57\x7e\xab\x2a\xf9\x25\xaa\x27\x7c\x9f\x45\xf4\x9f\xc2\xe3\xfd\x14\x1e\xcb\x46\x14\x47\x03\x81\x41\x53\xb1\x6e\x14\x12\xae\x7c\x1c\x49\xc6\xc6\x45\xb2\x57\x79\x50\x96\x12\xef\xf4\x91\x53\x32\xdf\xab\xbb\x35\x4d\xa5\x4e\xbe\xb5\x1d\xa6\xf1\x31\x74\xa7\x27\xe9\xf4\xdd\xef\xaf\x67\x78\x52\x50\x34\xfe\x91\x1a\x30\x9f\xe9\xd6\xdb\x12\x04\x25\xa6\xb4\x41\xc3\xf3\x00\x5c\xd8\xd2\xf5\x97\x70\x04\xbe\xf3\x12\x51\x58\xe7\xa3\x25\xed\x84\x7a\x9b\x4e\x2f\x35\x4a\x76\x9b\xc5\xeb\xca\x48\xb8\xea\xb2\xaa\x35\x58\xe7\x9a\x26\xdb\xea\x4e\xd7\x75\xf0\xc7\xe8\x0b\xfa\xf4\xe9\xa9\x79\x5d\x45\xd9\xb5\x15\xfa\x40\x19\x63\x8a\x5e\xe1\x73\xeb\x35\x08\x83\xd1\x14\x52\x73\x83\xf9\xba\x51\x84\x52\x5f\x31\x38\xdb\x31\x61\xd0\x3b\x8c\x31\x9c\x84\x5d\xc9\x0e\x72\x7a\xfa\x41\x49\xad\x02\x11\x49\x34\x07\x13\x14\xa8\x10\x88\x5c\x38\x11\x95\x11\xfb\x73\x29\x6c\x99\xdf\x9e\x84\x85\x81\x09\x14\x21\xfe\x05\x8c\xcc\x1c\x57\x54\x1a\xce\x54\xc9\x83\x93\x70\x27\x19\x20\xc2\x47\x6b\xce\x76\xed\x4b\xc4\xa6\x9d\x31\xc6\xac\x66\xf0\x53\xbf\x69\xff\xaa\x82\x31\x38\x28\x9d\xf3\x45\xd4\x57\x62\x4e\xb0\x30\x10\xc4\x47\xac\x61\xd4\xc8\x7e\x5b\x2f\x63\x7d\x89\x77\x53\x15\x7b\x64\x7c\xfb\x71\x7c\xf1\xc6\xde\x1f\xd9\x61\x0d\x6f\x8f\xca\x8a\xdc\xd8\xbb\x75\x31\xcf\xf0\xfe\x23\xed\x72\x7d\x18\xb2\xc1\x50\x51\x41\xb1\xea\x9e\x5b\x99\x28\xb9\x81\x36\xc8\xb1\x92\x83\x56\x0a\xa9\xea\xeb\x21\x55\x5a\x5f\x13\x11\xf6\x54\xd0\xd2\xa4\xc0\xe2\x81\xcf\xd3\x91\x55\x52\x86\xc2\xc1\xa1\x08\x90\x49\xe2\x68\x93\x90\xaa\xf2\x98\x99\x44\xdc\x71\xb2\x4f\x16\x6a\x7d\x0d\xe2\x71\xb3\x65\x03\xca\x94\x1d\x59\x18\x5a\x72\x87\x42\x25\x87\x9f\xfb\x99\xe7\x34\xce\xda\x30\xdd\x23\x79\xb2\x13\x24\x89\x52\x45\xd9\x0d\x49\x45\x2c\xca\xf8\xd1\x7b\xc0\x32\x5a\xca\xff\xfd\xdf\xff\x27\x7d\x1f\x0c\xbc\xfc\x5d\x16\x1e\xa7\x04\xff\x92\x43\xc6\x54\x91\xa8\x34\x9f\xa3\x20\x9c\x6f\x4e\xe0\x45\x44\x7b\x31\x2b\xd7\x67\xcf\x6f\x40\xb8\x90\x1b\x59\xff\x5d\x52\xcb\xa5\x01\x1c\x81\x4c\x55\x2e\x86\x43\xdd\x60\x84\xe1\xaf\x0d\x61\xd8\x71\xec\xd0\x2f\x59\x71\x79\x84\x15\x44\xc2\x16\xd8\x3e\x2b\x2b\x5e\x34\x0e\xc0\x86\xb3\x39\x5b\x74\x66\xb1\xa1\xa5\x88\xee\xf3\x49\x47\xa9\x27\x85\x80\x14\xb5\x09\x8c\x23\x4e\x53\x22\x52\x99\xfa\x9e\xeb\x4b\x9b\x1e\x3c\x63\x78\x78\x8b\x2d\x02\x67\x00\x89\xbc\x24\x1f\x5d\xf0\x7f\x3e\xe3\x73\xcb\x57\x6f\x32\x25\x22\xd5\x60\xa0\x65\xb2\xf7\x3a\x74\x2a\x4d\x58\x5e\xa7\x00\xae\x0c\x71\x77\x2a\x7d\x9f\x3f\xfd\x78\x7c\xfc\xa6\xbb\x59\xdb\x3e\xa9\x09\xb9\x19\xbb\xe0\xad\x94\x7a\x68\x96\xb1\x57\xf5\x50\x29\xdb\xaf\x93\xad\x17\xb1\xe2\x8c\x11\x55\x1a\x31\xcb\xeb\x29\xd9\x86\x8a\x13\x86\xa1\x3c\x73\xbf\xe2\x3a\x7c\x67\xcd\x99\x7a\x76\xbd\xf8\xdb\x64\x01\x1b\xa5\x89\xc7\x56\xe7\x06\x39\x7a\xd5\xdc\xe2\x0e\x7d\x1b\xd1\x06\x5f\x27\xc7\x10\xd7\x59\xaa\x6b\xd9\x9d\x72\x8f\x93\xbf\xed\xec\x81\xab\x77\xc7\x66\xdd\xdd\xdc\xc3\x4f\x63\x20\x52\x04\x95\x93\x7a\x9a\xea\xaf\x56\x9f\x95\x34\x4d\xf2\x2b\x78\xa7\x21\x2c\x5e\x25\x9c\xae\x39\xb7\xaf\x71\x9a\x11\x49\x39\x1d\xb2\xd2\xdc\xb2\xf3\x3b\x18\x89\x5c\x03\xc7\x7e\x2d\xee\x34\xf5\xaa\xb5\x92\xc7\x0d\xc1\x2b\x45\xf5\x1b\xcf\x81\x37\x11\x3c\xf2\x72\x8a\x18\x5c\x69\x01\x68\x78\x2e\xd8\x68\x54\x42\xcd\x3a\x0f\x67\x73\x48\x3a\x3e\x1c\x2b\x61\x70\x2f\x67\x06\x37\x8c\x4b\xa7\x98\xb0\x97\x5e\xa1\x41\x3c\xeb\x56\x2e\x1c\x68\xe9\xb6\x8c\xa5\xee\xa5\xa4\xb4\x86\xaa\xf0\xd2\x61\x68\x06\x2d\x86\xb1\xcf\xd0\x3c\xc2\x31\x20\x08\xa8\x72\xa7\x5a\x7d\xbf\x74\x47\xd5\xe5\x81\x37\x97\xea\xcc\x91\xd9\x0c\xcb\xf8\x0d\x82\x67\x9d\x80\xeb\x92\xab\xbd\xb4\x40\x4b\x69\x9e\x62\xb3\xc4\xf9\xd7\x60\x8f\x95\x51\xbb\xf2\x0d\xe2\x90\x71\x11\xda\xb3\xec\x4a\x62\x14\xe6\x99\x43\xa9\xc2\x14\xa3\x3d\xef\xdf\x29\x1c\xab\xb6\xba\xd7\x80\xd2\x97\xed\x95\x9d\x17\x11\x8a\x33\x95\x54\xbe\x28\xff\x48\x67\xc0\xf7\xb5\x1a\x33\xa6\xdc\x6c\xd9\x61\xbb\x49\xfa\x52\x36\x13\xc9\x3c\x84\x51\x4e\xc9\x55\xf5\x50\x8f\xd6\xcd\x10\x92\x78\x83\x96\xe8\x4a\xdd\xc4\x04\xd4\x20\xf1\xac\x09\x7d\x0b\x2b\xb5\x66\x42\x35\x98\x9a\xd3\x0d\x45\x3b\x1e\x64\x00\xf9\xb4\xb8\x2b\x6a\xf9\xf9\x5d\xcb\x2a\x15\x77\xdc\x25\x28\xd7\x68\xdb\x48\xaf\x88\x1e\x4f\xf1\x25\x0a\x26\xc9\xcb\x9e\x2a\x38\x9b\xc5\x27\xca\x37\x33\xbd\x77\x40\x39\x33\x8a\x9f\xd1\x03\xb2\x9a\x79\xf9\x2a\x72\x0d\x57\x58\xdd\x0a\xc3\x17\x28\x3e\x71\xf8\x95\x41\x71\x95\x21\x59\x58\xc3\x2e\xc7\x7c\xbe\xb8\x46\x03\x69\xa5\x74\x45\x1d\xfb\x05\x12\x15\x8a\xf8\x3d\x46\x09\x25\x21\x4a\x91\x9d\x6f\xc9\xf0\x3f\x0b\x04\x9e\x9e\xff\xfd\x2f\xa3\x2f\xe4\xc4\xfb\x75\xea\x0e\xa6\xf8\xcb\x3b\x55\x1e\xd0\x9b\xe0\x30\x3c\xfe\x60\x0e\x8d\x4a\x36\x67\x3d\x25\x62\x0a\xe8\x51\xa6\xe8\x69\xc3\x8e\x20\x65\xb5\x0d\x9a\x1b\x25\xea\xe9\x00\x31\xc8\x56\x04\xf3\x7a\x78\xbd\x91\xc3\xa7\xaa\x75\xa8\x88\xfa\xba\xdd\x53\x72\x7b\xb8\xa4\x40\x07\x4b\x47\xd2\x0a\xbe\x59\x2f\x26\xa2\x06\x57\xbc\xcb\xed\x99\xdf\x41\xeb\xdc\x9f\xa6\x88\xdf\x3b\xdd\x9f\x5f\x3e\x3c\x1b\xbc\xff\xf6\x78\x5e\x5e\x6c\x78\x19\xa7\x7c\x76\x2b\xac\xb6\x8d\xde\x0b\xc4\x59\x07\x19\x86\x6f\x24\x9d\x55\xfd\xfa\x72\xdb\xa4\xd6\x68\x49\xd7\x7e\xdd\x41\x8b\xab\xef\xac\xcb\x2f\x9f\xb8\x92\x0e\xd2\xc2\xcd\x0d\xbb\xe8\x1b\xd6\x27\xb1\x57\xab\x4e\x62\x37\xab\x4d\x62\xba\xbd\x46\x65\x12\xd3\x63\x55\x75\x49\x4c\xcf\x54\x56\x25\x31\x3d\x54\x51\x93\xc4\xf4\x48\x55\x45\x12\xe3\x7c\x7c\xa4\xb4\x80\xfa\x8f\x94\xd4\x23\x31\x4e\xff\xf6\xab\x91\x68\x67\x5b\xa3\x5a\x24\x39\x17\x7a\xbe\x2a\x49\x71\x88\xf2\x04\x33\x7c\xa0\x8d\x9a\x7d\xbe\x81\x23\xbd\xba\xac\x49\x93\x74\x85\x62\x8e\x5c\xe9\x76\x5c\xd1\xf1\x98\xe2\x41\x95\x8e\x93\x26\x9e\x47\xbd\x9a\x92\xa8\x82\x78\x0e\x61\x60\x89\x43\xbd\xa0\xa4\x72\x0d\x02\x8c\x44\x95\x9a\xb6\x96\x66\x4c\xbe\x59\x11\xae\x2a\x3d\x30\x87\xb0\xb4\x1e\xb8\x57\x98\x67\xe8\xa6\x65\x12\x3d\x8e\xb7\x10\x6e\x6d\xbd\x3e\x22\x78\xc9\x91\x6f\x30\x6a\x15\x1d\xa4\xa6\x56\x58\x42\xe8\x0c\x09\xf0\x45\xc4\x5b\x7a\x37\xd6\x46\x71\x51\xaf\xa6\x62\xce\xb2\x7c\xf5\x9f\x9b\x76\x49\xe7\x05\xc6\x75\x8a\xa3\x71\x18\xf7\x9d\xca\xa0\x6f\x9e\x3f\x26\x5b\xbd\x8f\x8f\xcd\x32\x28\xe0\x7c\x78\x0a\x88\x28\x20\x09\x58\x38\x8b\xfb\xf1\x9a\x74\x46\x21\x2f\x81\xd1\x08\x13\xcf\x1c\x4b\xf9\x05\x2e\xa4\x55\x95\xb0\x67\x57\x73\x10\x78\xb2\xa4\x73\x70\x22\xcd\x20\x51\x4d\x67\x40\x08\x58\xd8\x99\x80\xf6\xc8\x47\x81\x62\x73\x23\xa2\xf1\x20\x95\xb1\x54\x73\x7e\x0c\x53\xbd\x02\x51\x73\x09\xea\x34\x32\xae\xbe\x8e\x9a\xa2\xe5\x9b\x5a\x22\xfa\x6e\x2e\x03\x42\xed\x11\xf6\x7d\x30\xa7\x7c\xde\x50\xc0\x59\x3b\x47\x66\xbd\x2e\x78\xcd\xed\x6c\x05\xf8\x92\x80\xb9\x51\x79\x4d\x4f\x43\x26\x63\x4c\x01\xd5\x62\x5c\xeb\x1c\xf2\xd1\xed\x96\x14\x95\x4c\x72\x48\x85\x63\x2b\xad\x12\xe4\xb0\x1a\xf9\xbd\xa4\x58\x1a\x95\xa2\xaa\xeb\x62\x49\xcd\x2e\xde\x80\x36\xc3\x0c\xf8\x7a\x34\xef\x2a\x7e\x93\x52\xfc\x24\x87\xef\xbf\x20\x86\x92\x4a\xad\x2b\xe0\xa7\xc4\x06\x6f\xca\x1e\x8a\xca\x74\x67\xa6\xd9\x34\x1f\x68\xd9\x82\xd2\x86\xe7\x50\xc0\x65\xaa\x8e\x60\x8b\x69\x87\xe9\x3a\x77\x55\x0a\x09\x13\x96\x1f\x25\x47\xb3\xdd\x06\x2d\xaf\x72\x12\x79\x14\x7d\xd5\x91\x2e\xaf\xce\x39\x20\xd9\x40\x56\x44\xdf\xc6\x4a\x60\x0a\x96\xb3\xb3\xa8\x52\xfd\x8a\x09\xbc\x19\xdc\xc3\x99\x41\x11\x1d\x03\x2f\xd5\x52\xe0\x2d\xb6\x12\x24\x54\x13\xdf\x32\x00\x99\x15\x17\x13\xa2\x92\xcb\x87\x38\x60\x00\x05\x90\xac\x0d\x71\xfa\xbe\x31\xec\x9d\x26\x1c\xaa\xd4\x02\xb8\x76\x25\x30\xf7\x50\x8e\x77\x99\xb6\x45\x01\x49\x16\xac\x40\xe2\x34\x2c\x5a\x04\x49\xc3\xb9\x64\x89\x0c\xa3\xd3\x1a\x90\xe6\xaf\xd8\x74\xee\x23\x26\x92\xda\x4b\xa2\xc2\x15\xf1\xe2\x5c\x7c\xab\x0f\x27\x30\xf0\xca\x0d\xc7\x52\x39\xf5\x00\x03\x4d\x9a\x8d\xf8\xc8\x74\x5a\x44\x31\xe3\xe2\xb7\x38\x65\x22\x73\x7a\xe8\xdd\x05\xf9\xcd\xaa\xdf\x6b\xd2\xbe\x0e\x88\x30\x96\xa7\x4a\xf6\x8b\x2e\x27\xd2\x18\xed\xc8\x3b\xb4\x20\x92\xf2\x37\xc8\xbe\x1e\x1a\xbf\x12\x83\x08\xd5\xb2\xf2\x98\xaa\x3a\x1f\x47\xd8\xc7\xa4\x43\x2f\x01\x1b\x4d\x73\xc7\x64\x0e\x17\x05\x3f\xa6\x9a\xa2\xca\xb1\x3a\xd2\x70\xb0\x99\x2a\x70\x9f\x06\xb5\xcc\xf2\x62\x0a\x4a\x51\x68\x48\x22\x6c\x32\xd8\x29\xed\x13\x59\x32\x6e\x49\xc3\xde\xf4\x31\x9f\x5a\xed\x9a\xe7\x79\x6d\x26\x93\xed\x08\x59\xeb\xa1\x42\x03\x4b\x3d\x1f\xef\x4d\x69\x81\x8a\x03\x98\x55\xbf\x07\x4b\xa9\x7e\xa9\x4a\x2a\x77\xaa\xfe\x1d\x5d\xc0\xe9\xc5\xde\xdf\x16\xf7\xdd\x05\x91\x58\x86\xeb\xf9\x1e\x96\xee\x4f\x64\xd7\xa8\x30\x5e\x6e\xfa\xcf\x98\xfc\x4f\x52\x31\x10\x8d\x2c\xfe\x37\x60\xe5\xb7\x8b\x4f\xf1\xbb\x4a\xc4\x2b\x7b\xb7\xe8\xf7\x5e\xf0\xf2\xc3\xe8\xda\x8d\xbc\x5d\x93\x15\xec\xaf\x21\x0c\xa1\xf7\x8e\x1c\x33\x40\x18\x0a\x26\x4a\x0f\x8a\x12\xd2\x8c\xd0\xe5\x14\xbd\x1b\xc5\x13\x81\x14\x92\x0b\xe8\x09\x37\x80\x11\x9e\xf7\xea\x0e\x4b\xdd\x72\xe3\xa0\x44\x1e\x86\x72\x68\x92\xbb\x6e\x1c\xa0\x67\xf3\x29\x9c\x41\x02\xfc\xa7\x88\x7e\xa9\x82\x2b\xba\xa7\xaa\x5b\xd3\xcd\x39\x4c\x34\xad\x23\x39\x2e\xd2\xee\x92\x24\x0e\xa0\xdc\x47\x52\x9d\x66\xa8\x57\xd2\xba\x59\x1f\x49\xb1\x35\xff\xa6\xad\xb9\xda\xa1\xbb\x4e\x33\xae\x2a\xa7\x73\xa7\xa7\xf8\xd5\xe4\x2b\x79\x3e\x78\xf6\xa5\x69\xe5\x86\x1d\xc7\x9e\xf6\xb2\xe7\xa5\x4a\xad\x31\x94\x63\xc8\x35\x57\x8b\xb3\x70\xb2\x75\x52\x4a\xdc\x01\x95\x36\xae\xc4\xa2\x62\x31\x30\xc9\x04\xfc\x16\x44\xf7\xf6\x0c\x37\x15\x4a\xd1\xe2\xb5\xd9\xd2\x12\x46\xa3\x53\xba\xff\x5a\x76\x70\xdb\x93\xa2\x4a\xd0\xa8\xad\x6b\xb4\xa7\x2f\x71\x87\x32\x38\xef\xa8\xd0\xd6\x78\x53\x23\xcf\x87\x27\xd2\xef\x29\x5b\x4f\x46\x5f\x70\x30\x46\x64\x96\xfe\x26\x0e\x98\x24\x95\x09\x5c\x02\xc4\x0f\xa8\x43\xed\xaa\xe4\x0d\xf2\x07\xc1\x0f\x8f\x99\x38\xde\x54\x8d\x7d\xc7\xfe\x03\x52\xc7\x52\x3f\x1e\x10\x28\x3a\xbf\xd0\x50\x7d\xb8\x04\x81\xe8\xa9\x4a\x19\x9e\xc7\x1d\x60\x9e\xc4\xad\x07\x18\x9e\xbf\x52\xc6\xa1\x6c\x7f\xbd\x5c\x37\x03\x75\x6f\x23\x7e\x52\x9e\xb6\x79\x0f\x50\x29\x5d\x23\x59\x5c\xca\x5f\x4b\x90\x09\x08\x33\x61\x13\x10\x56\x1f\x9d\xea\xe6\x86\xf8\xbc\x0d\x46\xcb\xb9\xc2\x9a\x58\x2c\x24\x08\x7b\x68\x74\x2f\x2a\x37\xff\xed\xa0\xff\xf2\xeb\xbc\xf7\xc7\xcf\x4a\x73\x3f\x2b\x37\xff\xac\xdc\xfc\xb3\x72\xf3\xcf\xca\xcd\x3f\x8b\xef\xfd\xac\xdc\xfc\x2f\x58\xb9\xf9\xb6\x62\xda\x53\xc2\xcb\x7a\x05\xa2\x3b\x16\x85\x3e\xbd\x7f\xe6\xbf\x18\xcf\xc6\x3f\x45\xa1\x55\x8a\xee\xde\xaa\x10\xb4\xc6\xba\xbc\x31\x11\x16\xe6\xd0\x54\x95\xb0\xc8\xa5\xa6\x8a\x6a\x00\x51\xac\x6a\xad\xb2\x16\xf6\x18\x93\x11\x94\x15\x74\xec\x5c\x45\x8b\xe7\xfc\xa2\x15\x5f\xfd\x59\x39\xf8\x67\xe5\xe0\x7f\x07\xe1\x65\x09\x28\x0f\x89\x89\x3a\x0c\x45\xef\xb5\xf5\x52\xfb\x3b\x4e\x40\xb5\x8f\xe7\x70\x94\x83\xba\x61\xa2\xe7\xcf\xaa\xc6\xf7\xb7\xaa\xb1\x5a\xf0\xf5\xc8\x28\x14\x92\x0b\x34\xba\x6b\x9b\xf8\x20\xfc\xbc\x38\x79\x36\x36\x57\xce\xf9\xcf\x16\x51\x1a\x5b\x6b\x7e\xf6\xba\xfc\x77\x32\xc5\xfc\x3c\x67\x7f\x1a\x09\x0c\xe3\x1b\x4a\x9f\xdd\x3a\x17\xf8\x69\xbe\xb8\x3f\xe6\x0b\x75\x8c\xaf\x49\x26\x50\xdc\xe3\x6e\xdb\x5f\xff\x0a\x26\x8f\x07\x7f\xfb\xfd\xa7\x48\xf0\x53\x24\xf8\x29\x12\xfc\x14\x09\x7e\x8a\x04\x3f\x0f\xde\xfb\x78\xf0\x8a\x6d\xb5\xf2\xb9\x2b\x42\x05\xef\xf4\xbc\x7d\xf6\xe9\xf7\xe7\x2f\x7e\x7f\x6e\x0e\x4b\x33\x05\xa3\xb1\x38\x18\xbb\x96\x57\xd7\x07\x28\x78\xe9\xe5\xab\xd6\x23\xda\x99\x13\x14\xa5\xed\x64\xf9\x4e\x9e\x41\x24\x4c\xa1\x66\xae\xb9\x93\x06\xb6\x6e\x68\xdb\x4d\x84\xb3\x19\x18\x79\x0a\xb6\xf4\x50\x1e\xa2\x73\x1f\x2c\x4e\x32\xe7\x51\xfd\x01\x4c\xe7\x49\x35\x6a\xec\x82\x62\x0d\x71\x00\x6b\x14\xcb\x5d\x2f\x7c\xae\x64\x80\x15\x22\xca\x3a\x9d\x9a\x21\x53\xe5\xab\x5f\x91\x31\x5a\x0f\x31\x4b\xa7\x88\x6a\xa8\x59\x3e\x3f\x54\x63\xa1\x8d\xf3\x42\x35\x26\xbf\x9e\xa4\x50\xfb\x7e\x24\x83\x6a\x38\x59\x43\x12\xe8\x52\x58\x8a\x64\x11\xc3\x96\xbf\x91\x90\x3e\x82\x2f\x57\x3e\x84\xe2\xfa\xc4\x77\xeb\xae\x3e\xf8\xf0\xe6\xeb\x97\xde\x5e\xed\x83\xa8\x56\x96\x92\x15\xa5\xd7\x5b\x6a\x83\x8b\x49\xa0\xb8\xb2\x8e\xce\x1c\x94\x9b\xce\xfa\x1f\x3a\x0f\x4b\x8a\x37\xcb\x16\x37\xa6\x4c\xbc\xec\x99\x92\x72\xa7\x26\x91\xd2\x73\x80\x88\x65\xd8\x11\x69\x5d\xc8\xe8\xe4\x85\x44\x6f\x47\x70\x2c\x93\x9e\x0a\x3d\xbb\x46\x40\xa2\x8a\xe4\x0a\x1b\x19\x30\x0a\x7c\x4d\x5a\xe9\x6a\xf5\xce\x32\xff\x92\x51\xfc\x2e\x2a\xf8\xbd\x36\x64\x88\x9a\xda\xe6\xd2\x62\x25\xa3\xa8\x2a\xe3\x1e\x60\xa9\x49\x1b\xcb\x89\xd7\x2c\xe0\x5d\x5e\xa2\x31\x7b\x88\x24\x83\x7a\x68\x3c\xae\x5b\xfe\xa8\xca\x69\x1f\xaf\x2e\xdf\xe3\x60\xc4\xac\x3a\x65\x6e\x55\x89\xdb\xa7\x12\x8e\x04\x19\x3d\x51\x58\x26\x98\x40\x75\x72\xd7\xaa\x48\x74\x28\x9e\x88\x44\xa8\xd4\xf3\x65\x18\x6b\x1a\x57\x5e\x59\x47\x3e\x7b\xe4\x70\x38\xb2\xc5\xb4\xea\x49\x12\xd9\xf2\xcb\xa9\xf2\x16\x2b\x55\x55\x2d\x69\xf4\x9e\x39\xcf\x44\x61\x6a\xbe\x3e\xf1\x11\x26\xbf\x71\x32\x3a\xc7\x54\x0b\x86\xcc\xd1\x55\xb2\x95\xe5\x8d\xc5\x1e\xda\xdb\xac\x28\xaa\xc0\x5c\xd7\xe1\x45\x3b\x94\x11\x08\xee\xda\x7a\xf9\xf1\xf3\xe4\xf0\x8f\xd7\xaf\x9e\x9b\x93\x7c\x08\x1c\x61\x62\xee\x07\x92\x2a\x4b\x0b\x82\x00\xf3\x1b\x3c\x75\x22\xd1\x6c\xe3\xbb\x08\x79\xe6\xd6\x77\xd9\x92\x26\x7c\x79\xa4\x01\xe8\xf2\x29\x60\xd5\xcd\x1a\xec\x54\xc5\x82\x54\xd6\xd1\x0c\x8a\x43\x34\xc0\xac\xb0\xd9\x56\x9a\x8b\x0a\xfe\x9a\x80\xd2\xb8\x15\x42\x6d\xba\x74\x52\x1b\xaf\x04\x76\x2c\xe8\xa0\x72\xb3\xc5\x90\x46\xfb\x2d\x01\x3d\xb5\xe5\xd2\xf3\x5a\xd7\x6e\xeb\xdd\xd0\x76\x8b\xb6\xc9\x6a\xdb\x8e\xe2\x40\x54\xd8\x80\x77\xdd\xb7\x6b\xe1\xb1\x17\x8b\xfe\xd1\x6f\xf5\x64\xc6\xa8\xf0\xfa\xc5\xa2\xc3\x65\x9d\x19\x4a\xdb\xf5\x65\x59\x07\xc7\xc6\xf3\x58\x3a\x54\x4a\x00\xc5\xc1\x31\x23\xb1\xd5\x7c\x0a\xe8\x34\x79\x6c\x86\x45\x75\x76\x36\x85\x33\x28\xbb\x30\x1e\xcb\x6e\xb4\x9c\xda\xde\xaa\xb6\x88\x8e\x4d\x20\xf0\xde\x05\xbe\xdc\xbf\x9f\xc1\x05\x90\x0d\xad\xa4\x1e\x39\x45\x1d\x7e\xbd\x83\xf9\x0d\x4e\x5f\xe8\x1b\x91\xd2\x51\xa0\x77\xac\x4e\x15\xc9\x2a\xae\x44\x0d\x9a\xda\x7c\xc7\x95\xd4\x17\xec\xf8\xc3\xf8\x6a\x56\x5b\x81\xa0\x17\x93\x88\x4b\x10\x2c\x82\x3c\xd1\x6c\x12\x19\x85\x92\x56\x33\x3e\xf4\xce\x17\x7a\xbf\x99\xa4\xf2\x88\xf0\xba\x74\x22\x59\x07\xfa\x62\xf8\x97\x9e\x5e\x7c\x25\x2a\x71\x92\x3c\xe4\x41\x3a\x2a\x7b\x26\x57\x59\x25\xb2\x66\x44\x39\x9f\x1c\x3c\x59\x61\x6f\x09\x88\xce\x32\x02\x5e\x34\x6a\xa1\x10\xbb\x93\xe9\xbe\x56\xfe\xfe\x86\x93\xcb\x8b\x57\xe9\x4e\x6f\x55\x76\x10\x3b\x99\x48\x1a\xc8\x55\xec\x19\x7f\xef\x80\x2b\x44\x2d\x41\x8e\xd4\x22\x5c\x70\xb4\xc6\x04\xcf\x52\xb6\xad\xab\xf7\x52\xcc\xb5\xc7\x88\x50\xf6\x4e\x1d\x2a\x69\x11\x99\x61\xf3\x23\x3e\x28\x78\xc2\x89\x4f\x52\x10\x78\xd6\x1f\x75\xe0\x58\x34\x87\x63\x51\x09\x87\xdb\xcc\xba\xa1\x11\xca\xb8\xd8\xc9\xc7\x19\x05\x20\xbf\x11\xe0\xc5\x95\x93\x7b\x8e\x7d\xd5\xb3\x1d\xbb\x1b\x7f\xeb\xeb\xdf\x16\xa9\x6b\x0b\x7e\xad\x67\x32\xda\x46\x9a\x0a\x61\x89\x95\x36\x47\xa6\x3d\x8e\x22\xdf\x97\xc4\x58\xe2\x4a\x64\x38\x57\x22\x56\xe4\x71\x46\x3f\xe2\xf1\x98\x42\xce\xb7\xbb\xff\x65\x97\xb5\x3f\x2d\x18\x4b\x95\x97\x4a\x8d\xd4\xeb\x16\x8e\x55\xac\xd4\x8e\x7c\x34\x3f\x02\xaa\x10\x78\x6e\xaa\x33\x40\xbf\x54\x4d\x75\x0e\xf2\x65\xc4\x39\x8a\xa2\x11\x53\x03\x02\x02\x81\x5d\x58\x4a\xc9\x48\x10\x26\x0a\x99\x64\x5f\xb8\xe8\x4c\x08\x12\x15\x90\xa9\x15\x7f\x8a\x20\x60\x04\x04\x54\xa5\xd4\x4a\xeb\x3c\xff\x41\xb0\x7c\x5b\xee\xfa\xc5\xc1\x15\xa2\xef\x24\x22\xcf\x1c\xdb\xb1\xba\x6d\xdb\x0c\x64\x0a\x80\x5c\x51\x2a\x10\x5c\x00\x6a\xd9\x8e\x99\x94\x8c\xf4\x6c\x42\x9f\x1e\x1d\x9f\x42\x9f\xbc\x50\x86\xbe\x1d\x2e\x23\x8c\x58\x76\x44\x89\x77\xb5\x3b\x52\xdb\x21\xfe\xd2\x77\xec\x4b\xe4\xb1\xa9\xfe\xbe\x14\x5e\xe2\xed\x30\x85\x42\x33\xd6\xee\xbb\x32\xde\x27\xa8\x40\xa1\x26\x24\x7e\xeb\x7f\x28\xc4\x44\x1b\xc8\xb1\xdb\x49\xd3\x28\x4e\x88\x1d\x81\x0c\xc3\x13\x11\x1d\xc6\x4f\x34\x9b\xfd\x14\x5f\x40\xd2\x61\x80\x4c\x20\xbb\x55\x2c\x18\xc9\xa7\x94\xa0\x85\xc0\x30\x45\x9e\x27\x9a\x50\x73\xe1\x2d\x3b\x99\x2b\xc9\xcf\xf9\x9f\x1a\x04\xde\x75\x22\x72\xbc\x4a\xd3\x78\x2d\x02\xaf\x05\xd0\xa2\x11\x40\x0d\x77\x9c\xc1\x00\x56\xd2\x77\x42\x6c\xb9\x8e\x6a\xf7\x27\x52\x4e\x02\x30\x9f\x9b\x9a\x4f\x20\xaa\xba\x36\xf2\xf3\x09\x44\x0d\x1c\x51\x90\x2e\x71\x17\x2f\x36\x65\x0b\x51\xfa\x43\xc8\x3a\x72\xf8\x63\xf1\x53\x81\x94\x35\x6f\x64\x8b\x2c\xac\xe4\x96\x7d\xa6\xb2\x0a\x5e\x11\xdb\x31\x97\x63\x97\x0f\x68\x75\xff\xa2\x72\xc7\x95\x1a\x74\xc5\x84\x72\x25\xef\xd2\xaf\xf9\xa8\x2e\xd7\x35\x79\xae\xdd\xe7\x91\x68\x1b\x2b\x2a\x2d\xe9\x2a\xd8\x77\xdb\x7d\xfa\xf5\xc1\xc7\xdd\xd9\xb4\xc0\x68\xa4\x6a\x5c\x16\x17\x88\xc9\x5a\x8f\x3c\x38\xc2\x04\x30\xe8\x1d\xcb\x5a\x68\xd5\x96\xca\xde\xa6\xd3\x57\x92\x7c\x5a\xb7\x15\x25\xcb\x1c\x59\x0f\xc9\x89\x20\x89\x0c\xa0\xb1\xec\x9f\x14\x50\xca\x54\x17\xdf\x88\x3f\xc5\x15\xe3\x62\xfb\xa9\x63\xe3\x20\xfe\x70\xe8\x67\xec\x29\x49\xa9\xe4\xe2\xba\x48\x32\x49\x3c\x84\x71\x38\x54\xc1\x4d\xb3\xb0\xac\x3a\xb1\x54\xb3\x23\x1b\x52\x45\x7b\xe6\xa8\x06\x7a\xa6\x02\xa9\xfe\xdd\x58\xfc\xf8\xac\xfa\x05\x6b\x9a\x8d\xda\x98\xb7\x33\x9d\xb3\xa4\x16\x67\x1d\x1a\x88\x82\xf8\x4e\x53\x24\x94\x7d\x51\x2d\x68\xe4\x6d\xb7\x62\x3d\x4b\x4f\x67\x8d\x5c\x27\x8b\x99\xbb\x65\x42\x9b\x7f\x1b\x3f\xfd\x34\x9f\x7f\x6a\x5a\x9e\x6a\xad\xce\x91\x3c\xad\x18\x6c\xb4\x7a\x55\xa8\x5b\x76\x5c\x94\x2e\xe0\xcd\x90\x86\x64\xc1\x77\x9b\xa5\x75\x89\x3f\xd0\x37\x1f\xce\x97\xa8\x5c\x56\xba\xc6\x7c\x6a\x1d\xd1\x41\x28\xc8\xd9\xe3\x73\x2b\x6d\x16\x27\x6b\xf5\xd8\x2d\xf1\x89\x5a\x09\x34\xd2\x07\x1a\x09\x9c\x61\xe0\x43\x4a\x35\xba\x96\x6d\x2c\x22\x1f\xb8\xec\x8c\x7e\x81\x28\x3a\xf7\xf3\x32\x67\x8d\x76\xff\x59\x99\x36\x39\xee\x24\x6b\x56\x27\x62\xf2\x43\x86\xcf\xab\xe7\x24\x83\xcc\x65\x56\xa7\x82\x2c\x7b\x4e\xa6\x25\x46\xbe\xc1\xec\x0d\x88\x69\x25\xe4\xbc\xfa\x46\x99\x83\x09\x0a\xa2\xae\x37\x77\xb9\x35\x9e\x1f\x92\x80\x2e\x0e\xb6\x0b\xb6\x06\x0a\x2e\x20\x11\xdd\x45\xea\x32\xd0\xb8\x7e\x6d\xad\xae\x48\xa5\xc2\x9b\x30\x08\x8a\x70\x40\x78\x61\x3b\x76\x20\x2b\xa9\xf9\x40\xfe\x08\x26\xf0\x35\x0a\xbe\xd0\x5c\x2e\xad\x88\x49\xe3\x9f\x63\xcb\x17\x3d\x60\xd2\x70\x25\x3f\xf8\xa2\x47\x4b\xa1\xf4\x97\xac\x4d\xbc\x56\xb2\x69\xe8\xa9\x2d\x7a\xec\xcb\x77\x73\x55\x23\xde\x3d\x31\xac\xca\x43\x63\x2e\xed\x37\x57\xd9\x14\xbd\xda\x42\xc8\x52\xa0\x48\x74\x89\x11\x3d\x38\xca\xbe\x3d\x25\x5a\xdd\x29\x9c\x72\x3d\x25\x27\x09\x56\x81\x53\x7e\xe3\x74\x71\x94\x7a\xf6\x86\xe0\x96\x04\x98\x7b\xe9\xda\x20\x8d\x1e\x90\xd4\x9d\xfa\xc9\x38\x86\x5e\xd8\x8f\x13\x78\xfc\x8b\x22\xf8\xe4\x19\xd5\x9b\xa8\x5c\xf6\x2c\x72\x2c\x18\x0e\x34\x73\xb4\xe3\x7a\x78\x6f\xb2\x34\xeb\xe4\xb6\xfa\x32\xdf\x71\xa0\x85\x47\x9e\xff\xed\x4f\x72\x52\x21\x93\x38\xf6\xff\x8a\x42\xce\x4b\xd9\x6e\x4c\xa0\xa5\x9d\x46\xa3\x58\xf7\x92\x02\x65\xa9\xea\x01\xd9\x3d\x99\x0d\x82\x57\x45\x7c\xcb\x3a\xc5\xd7\x22\x1b\x73\x39\xdf\xb5\x0b\xbe\x46\x3a\x58\x9d\xbc\x54\x05\xf7\x3b\x25\xa7\x93\xfe\x1f\xdf\xfa\xe8\x59\xaf\xa9\x88\xcb\x97\xa6\x86\xe5\x24\x2e\x7b\x5d\x78\x6a\x0a\x24\x6c\x88\xbf\x91\xad\x44\x63\xe0\xe5\xf7\x27\x7a\x35\xc1\x97\x5a\xdc\x82\xc1\x10\x54\xcc\xcb\xe5\x80\x3a\xa0\x31\x2d\xcb\x52\xeb\x65\x15\xf4\x6b\xd5\xc9\x37\x70\xce\xf5\xd0\xa5\x00\x7d\x4d\x74\x18\x63\xe0\x6e\xe9\x71\xef\x8b\xff\xfa\x63\xb7\xfb\x6a\x09\x6d\xbc\x16\x9b\xaa\xd9\x1d\x41\xd6\x67\x8f\xd7\x54\x66\x10\x9a\x56\xb6\x5a\x46\xad\xc9\xc1\xd6\x48\x11\xd1\x52\xae\x8b\x32\xb4\xcd\x76\xb7\xc4\xf1\xf4\xe2\xf5\xe8\xd3\xe0\xf7\xab\x82\x20\x43\x7c\xd9\xc8\x5c\x2c\x79\x46\x2a\xbe\x50\x5e\x10\x5f\xca\xd3\xa5\x95\xea\x11\x37\xb7\xbf\x4d\x93\x5c\x76\x51\xd6\xbb\xcc\xf7\xc0\xec\xf2\xe2\xd9\x6f\xde\xbb\xd9\xe3\xc9\x12\x66\x17\x46\x9a\xdb\x53\x6e\x64\x61\x56\x56\xf7\x67\xa1\xcf\x50\x87\x42\x1f\x8e\x58\xc7\x23\x78\xee\xe1\xcb\xbb\x56\xfa\x7f\xc5\x5b\x97\x2f\xdf\xbd\x79\x6f\x5e\x18\xcf\x8b\x63\x08\x8d\x9b\xef\x1c\x50\x34\xd2\xa6\x12\x4b\x0c\x98\xa0\x6f\x38\xe0\xca\x37\xa6\x28\x2e\x65\x9e\xf7\x91\xd8\xa2\x91\xe1\x1a\x5d\x09\x06\xc3\x6d\x13\xb7\xc8\x08\xcc\x59\x48\x0c\xea\x58\x1d\x9f\x47\x29\x0c\xba\x33\xa3\x7e\x9f\x1d\x46\xd0\x44\xe8\xa1\xba\xb4\xcd\x31\xf8\x37\xb8\x78\xca\x51\xce\x71\x18\xe1\xbf\x13\xdd\x5d\x5c\x10\x01\xcf\x61\xf0\x2e\x38\x20\x04\x5f\xaa\xc7\x97\xaf\xd6\x98\x7d\x6d\xa7\xd4\x81\xac\xac\x77\x7e\xa1\xdd\x2e\x63\x3b\x12\xbb\x44\x12\x4e\xcd\xa6\xda\xf5\x8a\x4b\xfa\x7a\x3e\x45\x14\x45\x66\x7c\xdb\xba\xf2\xf6\x9b\x21\x11\x8d\x70\x60\x41\xbe\x65\x3b\x73\x7c\x09\x49\xc4\x2f\x54\xe6\x1f\xbf\x6c\x08\xaf\x2a\x83\xab\x80\xb4\x62\x63\x75\x36\x9b\x39\x06\x29\x0e\x1e\xae\xa2\x8e\x30\xee\x3d\xa8\x62\x4f\x39\xef\x3c\xc7\x57\x76\x69\xef\x41\x61\x0b\x8e\x5f\x91\xca\x09\x90\xc7\x75\xfd\x4e\x84\x26\x84\xe2\x24\xc6\xb3\x27\x42\x99\x65\x1f\x69\x2d\xec\x0e\x07\x5f\xe0\x42\xf1\xe0\xa2\x0d\xc3\x08\x10\x66\xcf\xd7\x48\x5a\x7a\x22\x25\xd7\x68\xa5\xce\x02\x57\xdd\x1a\x4f\x18\xbc\xe6\x21\x33\x80\xd9\x49\xc2\x03\xa7\x70\xf4\x05\x7a\x49\xf0\x2d\x03\x28\xa0\x5a\xff\x46\x85\xae\x2c\x2d\xeb\x60\x2a\x53\x7e\x9c\xcf\x54\x34\x5d\xe9\x45\x35\x4d\x54\x80\xb7\x98\x43\x5b\x01\xa4\xad\xaf\xb1\x67\x60\xb2\xed\x25\x90\x37\xd6\xfb\xaf\xbf\x64\x3e\x6f\x4c\x29\x51\x2f\x48\x2d\xc5\x4a\x8b\x9b\xaf\xdd\x5e\xb8\x89\xf7\xee\xe6\xe4\x49\xa3\x90\xb1\x92\xd8\x32\x07\x13\xd8\xf1\xc1\x02\x87\x77\x1d\x15\xdf\xfd\xf8\xed\xf1\xab\xb7\x63\xba\x84\x26\x39\xf1\xf1\x39\xf0\x85\x0c\x07\xb5\x3c\x89\xe4\x40\x7d\x01\x66\xe7\x21\x99\x40\x12\xb7\xb5\x12\xa6\xae\xf8\x89\x06\x27\xff\x6f\x21\x63\x90\x14\xcb\x20\x55\x55\x9b\x7a\x8e\x0d\xe6\xf3\xce\x39\x81\xc0\x1b\x91\x70\x76\x4e\xeb\x05\x81\x27\xfc\x7e\x22\x20\xe8\xcc\x60\x10\xe6\xe7\xaa\x05\xad\x14\x4d\x5a\x29\x86\xa6\xf9\xac\x8c\x88\x0a\x41\xe8\x2e\xf4\x6c\x8d\xc2\x57\xdb\x29\xd9\xf2\x38\x77\xbc\x5f\xde\x5e\x9c\xbf\x7f\x76\x7c\x72\x60\xde\x2f\x49\x09\x1f\x9b\x8e\x30\x89\x2b\x16\x39\xb6\x87\x66\x30\x50\x09\x62\x5f\x43\x2c\x32\xee\x64\x67\xc4\xf4\xb5\xe8\xb7\xa4\xc3\xb9\xfa\x8e\x03\xca\x08\x40\xea\x4b\xfa\x26\x70\x01\x90\x2f\xcd\xa4\xa2\xf1\xf0\x08\x06\x4c\x78\x5a\x4a\x8d\xda\x31\x6a\x9f\x47\x50\x97\x99\xb7\x2f\x11\x9b\x2e\xf3\x68\x5a\xac\x99\x0e\x72\x32\x24\x62\xbe\x48\x3c\xdf\x2a\x13\x73\xcd\x2f\x2d\x6a\xbb\x51\x29\xb8\xa6\xb3\xdd\xed\x74\x82\x77\xe4\x2e\x8b\x64\x3a\xe0\x43\x3a\x82\x5e\x6e\xaa\xe9\x24\x8a\x30\x10\xf0\x15\xa5\x99\x9b\xc5\xd7\x30\xd7\x61\x9a\xa2\xd9\xdc\x87\x9d\xc8\x89\x5a\x94\x0a\xa3\x77\x64\xe6\x50\x06\xd8\x83\x62\xc7\x86\x40\xa4\xba\x37\x2d\x15\x12\xcb\x7d\xc9\x79\x2d\x86\xb4\x2e\x21\x81\x16\xf4\xd1\x04\x9d\xfb\xd0\x1a\x63\x62\x41\xf9\x96\x48\x10\xac\x2d\x30\xc7\x42\xea\x8e\x63\x77\xf8\x97\x0e\x0a\xb2\x33\x38\x88\x09\xb9\xaa\xf2\x58\x01\x2a\x44\x7b\xe7\x46\x6d\xf4\x4b\x67\x0f\x08\xb4\xe2\xcd\x65\xa1\xc0\x4a\x76\x97\x26\x8a\xf5\xb6\xc4\x5b\x1b\xe9\x36\x39\x81\x65\xd3\xe9\x6d\x35\xc1\x97\x20\x98\xe7\xc8\x67\x90\x40\x6f\x89\x42\x6d\xa9\x09\x8b\xa8\x62\x7d\x46\x83\xd4\x8c\xf8\xd3\x63\xf5\x2a\xfd\xae\x7e\xee\x2e\xfb\xcc\x9c\xf5\x1f\x88\x2c\xc8\xe4\xa1\x46\x99\xfe\x3d\x0e\x50\x23\xdc\xc4\xcc\x72\x6d\x08\x8a\x47\x8c\xf3\x6b\x32\xe5\x30\xfa\x4e\xaf\x67\x24\x03\x23\xe6\xba\xcb\x60\xae\xdb\x1c\x73\x5d\xa7\xd7\x4b\x61\x2e\x95\xf9\x2d\xb9\xc6\xd5\x14\x84\x94\xc1\xfa\xcd\x87\xb3\xc8\x79\x0f\x65\x58\x0a\xb5\x60\x34\x96\x85\x03\x7d\xba\xa6\x77\x35\x9d\x7d\x31\xbc\x8d\xcd\x0a\x35\x77\x97\xe1\x4d\xeb\xd9\x5e\x7b\xb9\xd5\x2f\x40\xdc\xee\x12\x64\xb2\xdb\x98\x4a\x76\x9d\xbd\x26\xb8\x89\xc5\x95\xb5\xe1\xe7\x69\x34\xa2\x36\xf5\x9d\xba\x38\xda\x5e\x02\x47\xdb\x8d\x71\xb4\xed\xec\x34\xc1\x91\x10\xf1\xd6\x86\x9f\xdf\xf9\x68\x96\x8f\x66\x88\x59\x53\xc4\xb4\xc9\x6f\xd6\x3f\x79\x36\x9d\x46\xe7\x8b\x90\x5f\x97\xa9\x00\x9a\x82\xfc\x98\x8f\xa2\xc1\x9b\x3f\x57\x86\x69\x9b\x46\xdd\xd9\xf4\x9d\x41\x95\x99\xb0\xdc\xcb\x74\x73\x9a\x4f\x56\x63\x59\x4d\xff\x91\x45\x10\x3b\x33\xc8\xc8\x9d\xb7\x8c\xda\xe8\x0e\x2e\xfb\xdb\xe7\x8b\xda\x29\xf4\xd3\xcd\x6a\x71\x5f\xa9\xe7\x72\x82\xd9\x18\xd4\xe2\x0c\x31\xbd\xa8\x8f\xc2\xd1\x84\x80\xf9\x54\xb6\x34\x2a\xe8\x7b\x2c\xca\x0c\x77\x18\x9a\xc1\x0e\x85\x04\xe9\xb5\x56\xb9\x64\x67\xa7\x93\xac\xe2\x40\x09\x7e\x29\xf1\x67\xa4\xd3\xb0\x2a\xe3\x65\x8b\xa0\x1e\x61\x3f\x9c\x05\xd4\xa2\x70\x84\x03\xaf\x02\xfe\xb2\x21\xf2\x7a\x53\xf1\x13\xc5\x65\x0c\x53\x7b\x78\x4e\xf0\x84\x40\x1a\xa7\xfd\xa5\x22\xa7\xa3\x8b\xa6\xbc\x34\xc7\x8e\xfb\x41\x25\x19\xa0\xaa\x72\x86\xca\xa7\x8c\x31\x9a\x4a\x30\x17\x1d\x6b\x46\xca\x78\x1e\xd9\x46\x67\x20\x36\x2e\x9b\xdb\x4c\x46\xaa\x61\xf9\x78\x85\xda\xe1\xb2\x59\xca\x85\x4b\xc1\x27\x3f\x43\x01\x9a\x85\xb3\xc2\x55\x31\xe9\xa3\x01\xbe\x24\x60\x6e\x1b\x0b\x8d\xa9\x79\x88\x48\xc9\x7a\xe8\x13\x01\x96\x98\x01\xa9\x5c\x9e\x95\xf6\xd0\xae\x9b\x90\xa9\x47\xe8\xcb\xf2\x43\x08\x07\xf5\x34\xd4\x81\xac\x31\xc4\xd9\x97\x28\x6a\x3e\x0f\xed\xda\x9d\xb6\x73\x85\xa3\xcb\x56\x3c\xa4\x79\xc1\xf2\xcd\xf4\x9b\x3e\x31\x6b\x43\x37\x09\x12\x48\x21\xb9\x80\xde\xc1\xcc\x50\xc0\xec\xcd\xf4\x9b\x15\xdd\x50\x37\x94\xb3\xc6\xf4\x67\x70\x86\xc9\x62\x45\x0c\x24\xd4\x71\xbe\x60\x90\x96\x12\x86\xc2\x4a\x91\xb4\xd3\x04\x23\xe8\xd7\xc6\x18\x59\xd7\x5a\x2e\x01\xae\x06\x2a\x07\xa0\x56\xf1\xd0\x9b\x88\x7a\x48\x1f\xe1\x2b\x49\x03\x04\x4e\x44\xc9\xd2\x4b\xc4\x46\xd3\x3b\x0f\xb2\x7d\xb1\xf9\x71\xf7\xf5\xee\x78\xb7\xa8\x9a\xd9\xa4\x28\xc6\x41\x77\x4a\xe7\xeb\xcf\xbf\x17\x0f\x96\x5b\x23\x75\x3f\x6e\x72\x86\x33\x30\x79\x2b\xcd\xad\xca\xf5\x7b\x18\xf9\x22\x94\xef\xc9\x51\xae\x3c\xe8\x89\x8f\x80\x8c\xa6\xcf\x02\x70\xee\x8b\xef\xb1\x2f\x4f\x78\x6c\xd1\x45\x64\xad\x57\x71\x92\xa9\xfa\x5d\x14\x13\x06\xbd\x04\xd2\x6c\x35\x7d\x99\x13\xfd\x5e\xa1\x40\xd1\x65\x45\xa0\xc4\x04\x33\x1c\x3f\xb1\x4a\x14\x81\xc1\xd5\x3d\x27\x70\x8c\xae\x52\x3a\x3b\x7f\xd1\x7e\x72\x08\xc4\x9a\x7a\x8d\x3a\xb6\xb7\x22\x47\x67\x68\x7d\xc5\x7d\x43\x47\x53\xc8\xdf\xdc\x81\x17\x5c\x34\xbf\xfb\xc2\xea\xbf\xcd\x4f\xfa\x6f\x3f\xef\x3e\xab\x2d\x4b\x37\xaa\xb7\x67\xe7\xa2\x3f\x22\x5f\xf1\x92\x27\x8e\x21\xce\xa4\x69\xdd\xbd\xc2\xfa\xa9\xac\xac\xca\x9f\x59\x2c\x69\x5c\xc0\xaf\x58\x9c\x49\x55\xdc\x34\x62\x31\x93\xec\xe7\xa3\xe0\xcb\x09\x3e\x88\x4b\x44\xd7\xac\x43\x55\xb7\x24\xb1\x59\xda\x3d\x99\x22\x6a\x25\xef\x2c\x12\x63\x6b\x06\xd3\xd4\xaf\x3d\x5a\x59\x15\xb9\x7c\x48\xa5\xe4\x14\x4b\xf0\x55\xd2\xb4\x34\xb6\x43\xaf\x54\xb2\x36\xfb\x7b\xca\x4a\xf7\x27\x05\xbe\x8b\x2b\xf8\x17\x47\x5f\xe4\x46\x18\xf9\x08\x06\xec\x38\x57\xe4\x7f\xb9\x78\x8c\xba\xf8\xa9\x40\x44\xe5\x0a\x93\x54\x47\x60\x73\x28\x4d\x51\x6d\xe6\xe2\x07\x9b\x14\x67\xd6\x37\x51\x45\x5d\xdd\xfa\xbb\x2e\xdd\x77\x42\x6b\x15\xe2\xea\x6b\x66\x58\x45\x54\xcf\x04\x9e\x9b\xa8\xa9\x32\x76\x9a\xc0\xa6\x98\xc8\x32\x77\xab\x39\x89\xca\xa3\x72\x6e\x1e\xaa\x84\x89\x54\x50\xee\xad\x11\xd0\xa1\x1f\x17\x8b\x33\x43\x91\x1b\x2c\xc7\xdd\x35\x5a\x91\xdb\x98\xba\xf2\x5f\x23\x8d\x48\x1b\xf2\xcd\x91\x8a\x3e\xfe\xd2\x0d\x86\x6b\xae\x8e\xf1\x52\x13\x16\xb5\x84\x0d\xc5\x74\x5e\xad\x41\x54\xcc\x8b\x77\xeb\x95\x17\x23\xe9\xe2\x8e\x85\xc6\xcf\x8f\x17\xdd\x0f\xa3\x77\xd8\xac\x71\x09\x50\x8d\x01\xff\x38\x17\x67\x10\x4f\xa8\x42\x6c\x4c\x13\x27\xbc\x62\x0d\xe4\x1e\x4d\xe8\x33\x0b\xe0\x91\xde\x26\x25\x4b\x27\xfd\x32\x29\x15\x3a\xa7\xf6\x5b\x78\xc5\x34\xd1\xc7\xbc\x2d\xb3\x90\xd5\xb8\xc9\xb1\x67\xd8\x43\xe3\x45\x54\x64\xba\x41\xaf\xa8\x52\x2c\x4d\x01\x3d\x66\x78\x3e\xe7\xfa\xa1\x9a\xb5\xca\x84\xaa\x23\x7a\xaf\x56\x56\xfb\x4a\x46\x33\x3b\xa7\xb6\x6a\xcf\x6f\xe7\xfb\x2a\x69\x8d\xfb\x19\xbc\x92\x16\x43\xdd\x6e\xf2\x96\x6f\x0d\x6b\x0a\xa8\x45\xe5\x34\x2c\xc0\x38\x19\x32\xfe\x10\xc3\x56\xb2\x96\x16\xe3\x52\x69\x32\x79\xb7\x79\x55\xee\xc2\x8e\x75\x29\x94\x8e\xb1\xef\xe3\xcb\x0f\xf3\x67\x49\xec\x89\x63\x5f\x02\xc4\x3e\x04\x0c\xf9\xb9\xf4\xf0\xba\x84\x5b\xcf\xb7\xb5\xe6\x85\x19\xf1\x9d\x6b\x58\x16\x14\x8c\x71\xc5\x9a\x5c\x22\xdf\x8f\x16\x23\xbd\x12\x75\x82\x9e\x54\x79\xbb\x48\x36\x4e\x2a\x18\xeb\xa5\x7a\xf3\xda\x59\xb3\x85\x28\x2a\x52\x9c\x43\xc8\x0c\x4b\x1f\x19\xc1\xb3\x4e\x20\xb4\xf1\xe5\x5e\x77\x7a\x6a\x23\xae\x22\x5c\x28\x73\x77\xb7\xdb\x35\x95\x54\xaf\x77\x5c\x35\xd1\x63\xcb\x59\x5a\x6a\x1a\x39\xd9\x35\xe1\x6e\xb9\x49\x6b\xc6\xa2\x1c\x3a\x2a\xf8\x95\x21\x21\x40\xc0\xa9\x8a\x8c\x98\x10\x9c\x4c\xe2\xd9\x85\x20\xfb\x9a\xfe\xde\x25\xf0\xf0\xd2\x4b\x4d\x5b\x7a\x99\xe7\x04\x5e\x20\x1c\xd2\x03\xfd\x36\xad\xa4\x17\xab\xcf\x9b\x7b\x05\x8d\xde\x6e\x44\xc0\x88\xb6\xfe\x4a\x52\x86\x34\x40\x76\xce\xf1\xd5\x1d\x8b\x15\xc1\x9f\xaf\xce\x5f\x7d\x98\x9b\x53\x09\x6b\xd6\x6d\x1a\xe1\x80\x11\x9c\xcb\xcd\x28\xd3\x02\x84\x4d\x32\x9d\x7e\x93\x65\x96\x12\x45\x76\x65\x2b\x9d\x54\xd2\x47\x56\xf1\x17\x57\x22\x6f\xa5\xf8\x92\xad\x03\x2d\x7c\xf6\x53\xec\xab\xb0\xf4\x5e\xfa\x97\x9c\x1f\xb3\xe7\xd8\xff\x94\x90\x9d\x08\x75\xe4\x2c\x4a\x06\x91\x30\x14\xe7\x82\x50\xc8\x8e\xb5\xe7\x52\x89\x20\x54\xb6\x05\xe8\x45\x68\x52\x89\x21\xf2\x38\x28\xae\xe7\x6a\xee\xf8\x43\xc3\xb1\x8e\xdb\x5a\x55\xa7\x64\xbb\x61\x3b\x9d\x87\x93\x3f\xbe\x40\x30\x12\x66\xc0\x92\xe0\x99\x1b\xd8\x81\xc9\x5e\x59\x71\xcb\x91\x0b\x48\x3a\x60\x72\x3f\x8c\xc0\xdf\xbc\x57\xb3\xd7\x17\xc7\xe6\x3c\xfe\x26\xdd\x35\xe5\xbc\xa8\x2b\xff\x8d\x45\xe4\x89\x50\x63\x23\x6d\x75\x89\x06\x9b\xd1\x08\xeb\x68\xb1\x99\x1d\xb3\xb2\x27\x66\xee\xe9\x74\x55\xb4\x78\x76\xf4\xb5\x4c\x28\xe1\x70\x9d\x10\xd1\xa4\xe3\x39\x1f\xb1\x8a\x48\x4b\xa1\x03\x9e\x27\x23\x20\x96\x7b\x9c\x42\x32\x3e\xc2\x84\x2d\xfb\xbc\x1e\xc6\x5f\x6c\x08\x58\xc3\xb6\x4a\xef\x87\xd5\x36\x57\x3e\xba\xe6\x4e\x77\xd7\xab\xd7\x7f\xec\xa1\xcf\x7f\xfb\x58\xb3\xfd\xcb\x96\x96\xd4\x99\xe9\x5b\x52\x54\x97\x84\x91\x70\x29\xac\x67\x11\x65\x46\xfb\x83\x7a\x68\x4f\x3a\x3c\xdf\x03\x8e\x76\xf0\xb5\x07\xcf\xf7\x50\xb8\x04\x47\x2b\xb2\xca\x45\x9d\x83\xdd\x64\xa2\x11\x83\x8b\x7b\xc7\xda\x4e\xba\x2d\x35\xd3\x9b\x4c\x37\x61\x7c\x86\x36\xb5\xfa\x4b\xcc\xf9\x26\x65\x6a\x43\x9d\x4d\xaf\xbf\x61\x94\xed\x82\xbb\xfe\xbe\xb5\xeb\xed\x81\xaa\x03\x1f\x75\x48\x37\xf4\x44\x5d\xa2\xdf\xb1\x3e\x72\x14\xcc\x71\x78\xf4\x21\x17\xe2\xf3\xe2\xdb\x2a\x23\xbe\x51\x01\x39\xb9\x58\x97\x55\x06\x7d\x36\x9f\xc2\x19\x24\xc0\x7f\x8a\xe8\x97\x3a\x63\xaf\x83\x99\xa7\x19\xc1\x4a\xac\x5c\x0c\xe5\xe3\xc9\x1d\x73\x93\xbf\x3d\xee\x6d\x7d\x1b\x40\x73\x19\xb7\x8a\xc8\x92\x00\x1f\xe2\x20\xc8\xe4\x6d\x37\xad\x38\x1c\x60\x86\xc6\x48\x6e\x03\x0b\xd1\x0e\x14\x3d\xc1\x8a\x42\xfb\x4a\xb2\xdb\x36\x75\xa7\x85\x88\xa0\xb3\xc6\x90\x8d\xa6\x96\x8f\x27\xd9\x9c\x68\x6d\x44\xbd\xdd\xc0\xc9\x14\x8a\xbb\x45\x16\x96\xb0\xbc\xf1\x55\x12\x39\x4a\x28\x00\xa3\x11\xa4\xa2\x48\x9d\x6b\x1d\x4e\xe1\xe8\x8b\xc5\xa6\xd0\x1a\xe1\xc0\x13\x6e\x5b\x0b\x8f\xc5\x0f\x01\xf6\xa0\xf8\x90\xec\x6e\x0b\x51\x0b\x07\x6e\xb5\xe1\xbe\x98\xc7\x2d\xeb\xda\x2e\x74\xcd\x58\xc6\x8e\xa6\x05\x25\x7c\xd3\x3d\x20\x32\x81\x77\xc2\xdf\x22\x28\xc5\xc3\x42\x3d\x94\x20\x47\x06\xb7\x54\x6d\xde\x82\xee\xa7\x14\xb2\x37\xd2\x2b\x13\x0d\x92\xc0\x1a\x0f\x5b\xb0\x7e\xeb\x83\x1e\x12\x92\x82\xde\x03\x81\xac\xa6\xd9\x0c\x7e\x31\x4c\x0a\x7e\x39\xf0\x0a\x9d\x7a\x4d\x2d\x55\x0b\xb1\x60\xec\x4a\x7b\x39\x45\x0c\x9a\xf5\xd4\x39\x24\xaa\xdd\x88\x44\x89\x24\xa3\x7c\xb1\x88\x17\x8a\xbc\x2a\x97\x61\x55\x00\x18\x48\xd9\x39\x93\xdd\x29\x7e\xbf\x01\x00\x8a\x6b\x4a\x1c\xcb\x96\xa6\xc5\x85\x33\x4c\xf6\xe7\xac\x16\xe5\x63\x59\xdf\xc6\x46\x54\x8e\x27\x7d\x15\x8e\x3d\x83\x1e\x02\x9d\x39\x08\x45\x81\x62\xf5\xcd\x07\x5a\xe8\x6a\x56\xac\x32\x59\xae\x97\x75\x0b\x36\xef\x8f\x2b\xba\x45\x73\x5a\x3c\xf7\x61\xbe\x65\x74\xc4\x4f\x49\xae\xcb\xcd\xc8\x47\x9d\x4b\x14\x78\x49\x30\x44\x81\x9f\x36\xc6\x14\x0e\xd9\x3c\xcc\xcb\x68\x11\xfc\x37\x77\xb6\xfb\x78\xb2\xfa\xa9\x7e\xf7\x3a\xc2\xc9\xd6\x26\xfa\xfb\x74\xe0\x9b\xbd\x98\x01\x64\x97\x98\x7c\xe1\x9c\x85\xeb\xcf\xea\x9f\x62\xd5\x21\x25\xed\xd2\x4e\x10\x8b\xa7\x25\x91\xe9\xba\xa3\x88\x23\x45\x94\x2e\x41\x17\x90\xa8\x10\x1e\x87\xf3\x19\x9f\x4d\x17\x4d\xec\xe1\xe5\x6e\x17\x8b\xef\x8e\x4e\x9c\x99\x5f\xe4\x82\xc9\x41\x24\xc8\x87\x9f\xd1\x61\xa0\xc3\xb4\x26\x27\x60\xbd\xed\xba\xac\x7e\x53\xa4\xd1\x99\x63\x72\x5c\x39\xef\x14\x0e\x80\xc1\xa7\x2b\x2e\xad\x47\xad\xbb\x51\x8d\x4e\x99\xb8\xf2\x4d\xf1\xeb\x60\x4b\xe3\xd0\x6a\x2c\x28\x1d\x34\x99\x38\xf9\x19\xa4\x54\x2f\x76\xdd\x60\xe6\x55\x03\xae\xd0\x24\xd3\xd6\x0b\x04\x25\x49\xf5\xf1\xd8\x4b\x74\x59\x37\x19\x03\x0d\xa1\xa4\x65\x53\x2b\x88\x33\x6d\xa0\x60\x87\xbe\x71\xb1\x52\xb5\x31\x14\x08\x24\x4a\x8a\x16\xee\x67\xc1\xd2\x68\xae\x0d\x67\x71\x04\x5b\xec\xc1\x93\x7e\xb0\x48\xaf\x3c\x92\x3c\x7b\xc9\x6c\x4c\x63\xb8\x64\x2e\xd4\x57\x64\x69\xda\xaf\x0d\xb5\xa5\xf6\x0d\x02\x4e\x6a\x30\x10\x71\xb6\x29\x81\xe3\x48\xd0\x9d\x32\x36\xdf\xdf\xd8\x48\xd2\xb8\x91\x28\x1a\x6b\xef\xdb\xf1\xcb\x54\xdf\xb0\x24\xf3\x4b\xb5\xf4\x73\xec\x7f\x9e\xfb\x20\xf8\x12\xf1\x54\x22\xc2\x44\x02\x8c\xe7\x30\x80\xc4\x0a\x30\x81\x63\x48\x08\x24\x69\xf8\x93\x97\xe4\x80\xcf\xbd\xd2\xec\x53\x32\x3a\x8c\xf3\x84\x5a\x50\x95\x40\xe5\x49\x2f\x02\x30\x43\xa3\xdb\x59\xb2\xfe\x6d\x2e\x59\xff\xf6\x97\xac\xbf\xae\x25\xeb\x57\x96\x0c\xd3\x5d\xfd\xf5\x8c\x56\x19\x11\xa4\x67\x4d\x81\x94\x86\xe3\xf0\xe5\x9a\x3c\x1e\xd1\xf7\x61\x10\x94\x46\x0b\x19\x03\x66\x32\x22\x8d\x48\xb1\xcb\xf4\x82\x11\xd6\x06\x2e\xde\x50\xe3\x7b\x2a\xc9\xd3\x75\x8b\xba\xfe\x96\x80\xa8\x3a\x27\x30\xfa\x4c\xda\x4d\xea\x06\xca\x37\x91\xa3\x92\x12\x89\x7a\x80\x4b\x2f\x2d\x5d\xd9\x87\x38\xf4\xbd\xe0\x1f\x7f\x61\xd6\x08\xfb\x3e\x1c\x31\x4b\xc0\x65\xde\x69\x6b\x95\xa5\xea\x49\x53\x4b\xa4\x0e\xe8\xa6\xdd\x38\xeb\xd6\xca\x20\xc1\x80\x9a\x62\xc1\x93\xd3\x4d\x92\x7a\x27\x72\xed\x34\x91\x21\x22\x9e\x8c\x29\x56\x19\x60\x8b\x03\x7e\xb2\xf9\xc4\xa9\x10\x00\x95\x4a\xac\xc5\x3f\xa9\xe4\xe1\xa2\xd4\x61\x09\x63\xd3\x64\xe1\xb4\x00\x94\x1d\xa3\x20\x5e\xdf\xc8\x3a\x8d\x3a\x7e\xbd\xdc\xc2\xe6\x22\xe5\x7d\x63\x2c\x51\xf2\xea\xbf\x2b\x6f\x49\x76\xd1\x4f\x26\x63\x60\x32\xcb\xf2\x96\xa2\x74\x65\x45\x4e\xb9\x1c\xe5\x2a\xce\x93\xb8\x6c\x94\x33\x65\x65\xe6\x23\xad\xa9\x35\xd8\x4f\x0c\xf2\x6a\x1c\xc8\x30\xcc\xfd\x62\x42\x6b\xb3\x59\xad\xec\x89\xba\xc4\x1d\xca\xe0\xbc\xa3\x4c\xa8\x77\xdc\xeb\xf0\xcd\x1f\xe0\xcd\xfb\x73\xb0\x8c\x43\x0a\xd1\x97\x5e\x59\x0f\x21\xdd\x15\x55\x65\x2f\x4e\xe8\x15\x87\x8c\xef\x50\x91\x20\x87\x66\x1c\x31\x20\x60\x39\x42\xf6\x10\x55\x69\xce\x22\x7a\x2d\xfe\x5a\xbb\x25\x21\xdf\x2d\xb3\x39\x7b\x8e\xc9\x21\x0e\xc6\x88\x6f\x66\x99\xb5\x15\xe4\x6b\x19\x27\xc0\x1b\xda\x73\xaa\x28\x3c\xcf\x87\x27\x32\xb2\x2d\x4b\xf6\xcb\x30\xb2\x2c\xa2\x8f\x64\xf7\x91\x34\xa8\x75\xf0\x6e\x3a\x1c\x46\xda\x28\x9d\x54\x38\x9e\xaa\x7f\xa2\x5d\x7f\x13\x5b\x38\xca\x42\x15\xab\x57\x57\x9a\xb3\xf5\xb5\x2d\x5b\x4e\x70\x09\x10\xcb\xcf\xb7\x49\xb7\xc9\xaa\x8e\x00\x36\x85\xec\x04\x4b\x02\x8e\xcf\xfe\xf2\xf6\xc1\x87\x2a\x52\xb0\xa0\x39\x70\x53\x92\x91\x81\x87\xf5\x88\xa6\x81\xff\x2d\xcf\xfc\x0d\x4d\xe5\x8b\x10\xcc\x0f\x66\x1f\x03\xd5\x15\x27\x48\x75\xf9\x5c\xeb\x1a\x45\x44\x56\xe8\xec\xb1\x73\xf4\xb8\xc2\xf6\x2a\x48\x3e\x5c\xcf\xa1\x90\xe6\xe7\xcd\xcf\x86\x31\x81\x30\xea\xda\x7f\x97\x47\xc1\x9b\x9d\xe7\xe1\xe3\x6d\x54\xd0\x66\x87\xc6\xcd\x0f\xf2\x9f\x2a\x22\xaa\x91\x28\x4e\xc1\x67\x38\x09\x91\x67\xce\xd0\x8a\x91\xd0\x91\xf7\x24\x25\x30\x10\x13\x42\x19\x0d\xcf\xe5\x47\x91\x41\x25\xb2\x47\x3e\xbc\xb4\x1d\xfb\x98\x3f\x44\x2d\x10\x78\xd6\x11\x60\x0c\x12\x73\x33\x82\xd4\x2b\xe2\x19\x44\x2f\x91\x36\x73\xe7\xd4\x3e\x99\x42\x69\x3d\xaf\xd1\x7b\x43\xc8\xeb\xe1\x39\xd5\x22\x32\xf4\xa1\x9e\xe3\x80\x59\xc7\x0c\x8c\xbe\x94\x75\x47\xc8\x90\x7a\x0c\xe3\x06\x9d\x74\xc6\x38\x10\x3d\x1d\xc4\x08\x0d\xec\xf9\x29\xc4\x36\x84\x9a\x6f\x32\xeb\x18\x7d\x53\x4e\xd3\xa5\xa1\x56\x23\xdc\x12\xd4\x87\xd8\xc7\x64\x59\x34\x8f\xd4\xc3\xb5\x61\x2d\x31\x9a\x16\xd0\x74\x31\xc1\x1d\xc6\x8c\xa4\x26\xd5\xf5\xcb\x31\x71\x10\x75\x1e\x5e\x12\x19\x20\x79\x7e\x5d\x6b\x57\x05\xb1\x0f\x89\x79\xf6\x75\xc0\x55\x0f\xdf\x12\xac\xbf\xe2\x2b\xe8\x59\xc9\xd5\x65\x40\xce\x96\xe7\xb8\x25\xc8\xf5\x46\x01\xcb\xc1\xbd\x64\xab\x81\x95\xa0\x16\x47\xea\xd2\x10\x47\x4f\xdf\x12\xb4\x87\x78\xbe\xb0\x7e\x55\x02\xda\x92\xac\x68\xbe\xe8\xc4\x22\xde\xed\x40\xfd\x14\x8d\xc7\xd6\x47\x04\x2f\xa5\x6b\x7e\x09\xa8\x3d\x34\x1e\x77\x2e\xd4\x08\xb7\x05\x75\xd4\x4f\x6c\x49\x90\xe3\xc7\x6f\x09\x5e\xd9\xe6\xc2\x12\xdd\x36\x96\x03\x59\xef\xd7\x71\x5b\x50\xbf\x88\xf3\x50\x96\x00\x58\x75\x45\xb9\x2d\x58\x5f\x0a\xc3\x9e\x95\xaa\xec\xb3\x14\xdc\xc6\x12\x41\xb7\x33\x87\x57\xc7\xef\xde\xae\xb6\x17\x3f\x53\x1c\xdc\xf6\x5e\x7c\x8d\x27\x56\x14\xba\xb7\x14\xd0\x3e\x9e\x74\x68\x14\xfb\x77\x3b\x30\xbf\x11\xb5\x0b\x97\x25\x91\x59\xf4\xf4\x6d\x41\xab\x35\x6c\xb2\xbc\xd5\x58\x9f\xb9\xc3\xe4\x6d\xcd\xe4\x08\x4c\xa0\xc5\xc0\xd2\x52\x88\x68\xc3\x23\x9f\xbf\x55\x88\xa5\xea\xb9\x02\xc8\x4a\x77\xbd\x1d\x98\x65\x4e\xae\x25\xda\xaf\x2d\x05\xb3\x96\xc9\x7d\x5b\x30\x9f\xa8\x36\x29\x75\xc0\xdd\xc9\x80\xab\x5a\xaa\x07\xb5\xba\x3d\x3b\xe6\xa6\xf5\x35\xfb\x7a\x47\x1e\x57\x7d\x88\x86\xa5\x56\x56\xc6\x92\x63\x09\xa3\xdb\x24\x4c\xaa\x78\x2e\xb1\xc6\xb2\x63\xed\x28\x3d\xd2\x6d\x4d\x23\xae\xd6\xb3\x1c\xe8\x49\xb1\x9f\x5b\x82\x57\x19\xf9\x56\x13\xef\xb3\xae\x9f\xe5\x4d\x0e\xfd\x55\x4c\x0e\x53\x50\xa0\x70\x17\x74\x01\x2d\x55\x1e\x28\x23\xe8\x3c\x14\x79\x37\xbf\x82\xe5\x35\x88\x64\x18\x91\xb4\xb7\xb6\x75\xad\x80\xff\x55\x38\x3b\xc7\xd6\x0d\xcd\xa2\xf3\x99\x8f\x7e\x6b\x73\x79\xcd\xc5\xdf\x43\x99\x17\xb9\x9c\x18\xa6\x27\x56\xde\x0e\xcc\x47\x91\xcb\x7a\x79\xac\x47\x5e\xef\x5b\xa5\x1b\xe1\xc0\xb7\x38\x17\xb3\x8e\x65\x66\xf8\x92\xe7\x6c\x2e\xc3\x7c\x79\x9e\x50\x59\xc4\x38\xe5\x27\x59\xcd\x29\x1e\x4f\xa2\xb9\xbb\xe3\x1e\x74\x9a\xff\x83\x80\x43\xfa\x6c\xef\xbc\x7e\x4e\x77\xe4\x79\xd0\x43\xe2\x67\xd8\x13\x41\x32\xb1\x6c\xb8\xde\xa2\x06\xcb\xb5\x92\x57\x9d\x81\xef\x14\xbd\x9f\x9e\xbf\x3d\x19\x80\xa3\x7a\x45\x40\x96\xc6\x8f\x98\x69\x73\x04\x7d\xc6\xe7\x77\x5d\xc6\xe1\xef\xbf\xbd\x24\x6f\xbc\x67\xac\x76\xcc\x45\xaa\xbb\xae\x38\xcf\xcb\xfd\xfe\x8a\xd3\xe0\x90\xf9\xb0\x09\x2f\x5f\x7a\x2d\x44\x45\x83\xa5\x96\xe2\x5e\x10\xec\xe2\xf7\xde\x5b\x7a\x8c\xcd\x41\x30\xf6\x9c\xef\x71\xdb\xb1\x65\x16\x96\xa1\xae\xcc\x8e\x5a\x21\xe5\xaa\x3c\xb5\x5f\x61\xa1\x9f\x16\x55\xff\xde\xd1\x3d\xa7\xe9\x2a\x47\x25\x45\xbb\x53\xf1\x20\xcf\x31\x39\x47\x9e\x07\x6b\xd6\xac\xdc\x12\x0b\xce\x10\xf0\xe9\xc6\x38\x7a\xb4\x13\x65\xaf\xe4\xca\x81\x34\x4b\x8a\x31\x04\xd9\x31\x8c\x7d\x79\x1c\x37\x28\xad\xad\x1e\xea\x20\x06\x67\x55\x18\xb8\x40\x22\x35\x5c\x20\xba\x51\xf3\xff\x94\x0e\xa9\xd7\x2b\x8b\x75\xc7\xa4\x9c\x95\x63\xe3\xe0\x50\x75\x43\x4f\xd7\xcf\x52\x61\x25\x7a\x27\xe3\x54\xf9\xac\x7a\x11\x25\x04\x52\xc8\x35\x48\x14\x64\xaa\x38\x3a\x91\x02\x2f\xf6\x95\xeb\x1a\x62\x24\x2b\x04\x1b\x6d\xaa\x45\x35\xa8\x77\x54\x0e\xac\x2d\x08\xea\x0d\x3e\x47\x49\x28\x4c\xed\xd4\x8e\x8a\x65\xb4\x10\x95\x99\xd4\x1d\xe0\xa3\x49\x90\xcf\x62\xd5\x87\x33\x14\x49\x21\xa1\x00\x5a\x8f\x1c\x4d\xa2\x5c\xca\xb3\xe3\xde\x87\x81\xf5\x4a\x56\x50\x29\x17\x00\x53\x74\xd1\xb0\x2e\xf1\x92\x58\x10\xb5\xdf\x05\xc2\x65\x82\xef\x25\xf2\x38\xf9\x36\x2b\x29\x2f\x11\xd1\x29\xd8\x66\x19\x4a\x37\x1b\xfd\x72\xf5\x6a\xb3\x6d\x45\x64\x98\x07\x0e\x8e\x65\x5f\x12\xa1\x09\x8b\xf8\x26\x15\x12\x25\x6f\x17\x3f\x25\x16\x93\xe8\xc9\xe4\xe7\xb2\x4d\x40\x21\x7b\x0e\x46\x90\xfd\x1e\x42\xb2\x38\xe2\xf8\x16\x98\xff\x3a\x97\x8f\x27\x31\x48\xa5\x25\xe8\xd7\x3d\xcb\x28\x6d\x36\x35\xcf\xa4\x1c\x7e\x66\xa6\xfa\x85\xa5\xe6\x1a\x0d\x70\x47\xb3\x7d\x9a\xd4\xe6\x4a\xcf\xf8\x69\xaa\x68\x57\x66\xd6\xd9\x8b\x4b\xcd\x5c\x1f\xe4\x8e\x66\x7f\x24\x5b\xc9\xa4\x67\xae\x7e\xcc\xcf\x5a\xbf\xb0\xd4\x8c\xa3\x01\xaa\x66\x6b\xd7\x88\x93\xce\x71\xf4\x28\xb7\xa1\x9a\xb9\xff\xe4\xf1\xb5\x78\xbc\x19\xe1\x3e\xa2\xac\x33\x4f\x4e\x6e\xcd\xf2\x1c\x92\x91\x08\x57\x93\xc5\x2f\xe7\x39\x13\x33\xf4\xa4\x74\x18\xd1\x09\xbf\xe3\x98\xdf\x5c\x68\x5a\x36\xf7\x83\xa0\x2c\x6f\xf5\x8e\xde\x5d\x65\xfe\x4e\xba\x41\x4a\x43\x87\x6c\xce\xae\x9b\xbc\xeb\x18\xc2\x45\x96\x70\x67\x8c\xb1\xd1\xde\x54\x60\x63\x4d\x95\x3b\xa9\x16\xd4\x8a\x2c\xb5\x98\xb0\xce\xf9\x22\x32\xcb\xcc\x09\x16\xd9\x1a\x71\xee\xbb\x61\xdc\xb7\xea\x52\x3d\x42\x59\xea\xed\x49\xfd\x47\xc3\xfb\x93\x33\xe2\x06\x21\x60\xea\xc8\x35\xbc\x3f\x3a\x8d\x6f\xf0\xed\x73\x82\x30\x41\xac\x68\xb7\x1e\x69\x97\x9b\x40\xb1\xe3\xd8\x29\xe9\x48\x94\x26\x33\x95\x98\x32\x3c\x92\xc9\x37\x1b\x68\xc3\x1c\x47\xa5\xdd\x9a\x94\x76\x37\xa1\xe3\x1c\x7b\x31\x2e\xbe\x40\x31\xa0\xb4\x0d\xb9\xb2\xe9\x45\x5d\x6d\xe4\x33\x3e\x4f\x97\x9a\xfe\x8c\xcf\xa5\x0e\x22\x42\xa9\xcf\x92\x48\x48\x69\x79\x2a\x39\x82\x44\xeb\x35\xce\x19\x9d\xec\x23\x85\xc7\x4e\x7e\xe2\x83\x7a\xce\x87\xca\xb3\x42\xb8\x99\x24\x9b\x28\x91\x70\x03\x90\x6f\x83\xab\xa9\x46\x4d\x1b\x03\x25\xcf\x76\x82\x90\xeb\xfe\x05\x49\x6b\xfa\x1a\x28\xab\x2f\x03\x84\xd1\x83\x6c\x06\xd3\xff\xfd\xdf\xff\x27\x7d\x1f\x0c\xbc\xfc\x5d\x16\x1e\xa7\xd2\xa2\x34\x8e\xaf\xa9\xa9\x06\x9b\x40\x26\x0d\x30\xaf\x4c\x56\x77\x65\xb1\x0d\x35\x2a\x5a\x1a\x7d\x79\x70\x64\x1b\x4e\x22\x1d\x2e\x95\xfd\xa8\xfa\xfb\x9b\xb5\xeb\xf4\x7c\xa7\xc2\x94\x60\x9d\x2f\x2c\x09\xb3\xc5\x20\x99\xb5\x97\xd1\xa5\x0a\x65\x9e\x12\x6e\x14\x55\x5c\xcf\x57\x4f\xd1\xd6\x3f\x2a\xc9\x5e\xb4\x17\xff\xdb\x98\x6a\xd6\x90\x2f\x8a\x6e\xfe\x51\xb9\xa8\x22\x48\xd4\x0d\x46\x28\xfe\xda\x18\x8a\xb8\x7c\x47\x01\xdd\xcb\x53\xdd\x50\x68\xbb\x04\xd7\x95\x0b\xd7\x5b\x2e\xeb\x12\xce\xe6\x6c\xd1\xd1\xca\xa5\xd4\xeb\xb2\x5b\x60\xe6\x71\xba\xb5\x65\x58\xab\xb8\x94\x61\x0a\x26\x11\xad\x96\xe9\x1f\xf3\x16\x5b\xca\x92\x57\x7a\xd2\xcc\xcb\x07\x96\xc7\x43\x11\xef\x39\x99\x42\x6b\xe4\x87\x94\x89\x7c\x1d\x4b\xc9\x7e\xfe\xc2\x12\x83\xb8\x65\x9d\x8c\x1a\x26\x92\xa5\x31\x5b\xb4\xc7\x6f\x0f\xb5\x6f\x00\x1b\x4d\xe1\xcd\x62\xf7\x2d\x16\x26\x34\x6b\xc6\xdf\x65\x2d\x70\x48\x22\x0c\x5b\x12\x01\x56\xac\xd7\xad\x13\xd5\x4b\xb1\xf0\xfb\x87\xcc\x34\xf6\xd8\x14\x0a\xe6\x5e\x5c\xb4\xa5\xe7\xa4\x66\x6d\x2e\x26\x97\xe2\x40\xcd\x52\xb5\x4a\x9a\xb7\xd5\x58\xaf\x1a\x45\x99\x96\xad\x84\x9d\x38\x32\x96\x74\x82\x08\x49\xef\x4e\x5d\x20\x6c\xfa\xe2\x8f\xcd\xf0\xad\xb9\xf5\xb1\xd1\xeb\x51\xe1\x60\x5a\xde\x91\xc4\xff\x2c\x8f\xc7\x0d\xad\x16\xdb\x5d\x37\x37\xc3\x1f\x4f\x1e\xef\x5e\xee\xad\xd1\xad\x14\x57\x11\x90\xba\x41\xa4\xef\xda\x96\x3e\xeb\x92\xbe\xb3\x5b\x42\xcd\x90\x88\xa2\xe1\x39\x17\xba\xd3\xde\x9f\x35\x78\xa7\x52\x0b\x50\xd7\x37\x53\x2c\x3a\x8c\x70\xc0\x54\x4b\xc4\x72\x5f\x52\x69\x45\x8a\x7b\xef\xea\xd1\x4b\x08\x1a\x3d\x3e\x85\x52\xdb\x3a\x4c\x54\x29\xa3\x50\xa2\x20\x1c\xe8\x54\x55\xd7\x62\xe5\xa4\x28\xe0\x3f\xdb\x7e\x55\x64\x88\x48\x17\xf5\x6c\xa2\xf2\x94\x1a\xa0\x92\x06\xa8\x06\xc8\x5e\x3e\xbd\x69\xeb\x53\x54\x37\xfe\x6d\xb1\x19\xee\x04\xd0\x2f\x56\xd4\xc8\xe0\xa6\x80\xd1\x02\x76\xec\x11\x81\x80\xc1\x97\x32\xca\xc0\x3e\x14\xdf\x2c\xf9\xd5\x0c\xa1\xbc\xc5\xbb\x25\xf0\x64\x07\xb4\x08\xbc\x37\xe2\x5b\x29\x78\xe2\x16\x74\xa3\xf0\x25\xb6\xcc\x32\x40\x6e\xc5\xa0\xf9\x19\x9f\x7f\x84\x84\x16\x07\x39\x6b\x57\x6f\x10\x8c\x00\x7b\xd0\x2d\xdf\x5d\x51\xe3\xde\xd5\x6c\x9b\xa2\x04\x59\x1d\xc3\xa6\xba\x3f\x2a\x1c\xb4\x36\x1b\x66\xa3\xf8\x09\xad\xe1\x46\x71\xaf\x40\x71\x7e\x5f\xb1\x0a\x4b\xa6\x14\x68\x4a\xed\x99\xe9\x8e\xa9\x3f\xcd\x9a\x77\x6e\xd6\x3c\x30\x0b\x7a\x4d\x9b\xc5\xff\xb4\xee\xfd\xab\x5b\xf7\xf2\x35\xec\x4b\xf7\x44\x33\xfb\x60\x0e\x2d\xf7\xcb\x42\xa2\xc9\xba\x37\x68\x28\x59\x66\x31\xcd\xb5\xd1\x1a\xeb\x5f\xf5\x16\x77\xa5\xa5\x5d\x69\x61\x53\x3a\x4a\x21\xfa\x56\x5d\xda\x29\xb8\x80\xd6\x39\x84\x81\x25\xb4\x43\x2f\xdf\x5e\xa6\x60\xa1\xea\x2c\xd3\x3a\xcd\x50\x19\x13\xc8\x0a\x86\x94\x24\x01\xfa\x8e\xed\x28\x4f\x3f\x0d\x3e\x5d\x5d\x7c\xde\xac\x6f\x9b\x6a\x64\x3a\xd1\xe6\x79\x17\x96\x93\x30\xf0\x21\xa5\x5a\x6c\xef\x33\x4f\xd4\xd5\x5a\xc1\x64\x92\x2d\x31\xd2\x60\xb7\x56\xf7\x38\x92\xff\x71\x84\x3e\x8d\x11\x97\xdf\x6c\x55\x15\xe1\x7c\x34\x99\x8a\xaa\x7e\xfc\xa8\x05\x23\x66\xa5\xbb\xee\xd4\xac\xf3\xc6\x11\x06\x3d\xc4\x52\xfd\x6b\xca\xaa\xb0\x3d\x13\x37\xd7\xdb\xb9\xcd\x98\x62\x79\xb7\x96\xb4\x44\xb6\xe3\xd8\x7a\x9e\x7e\xe2\xf0\xa7\x12\x58\x39\x31\x9d\x2e\x0b\xe3\xc4\x96\xe3\x38\x35\xba\x60\x7f\xc6\xe7\x1d\x8e\x5a\x4c\xb2\x01\x09\xb2\x6e\x9d\xb4\xdd\xa4\xa5\x7b\x59\x1f\x4f\x84\xd7\x85\xe7\x33\x89\xe9\x64\xcf\xa9\x1e\x7a\x8e\x5c\xb1\xc6\xd5\xf6\x2a\x1f\x88\xde\xd9\x44\x19\xb8\x01\xe6\x9b\x2c\xdb\x4a\xbc\x77\xee\xe3\x85\x5c\x9e\xbb\x65\xbe\x6f\xbb\x1f\xc0\xf9\xb7\x31\xbd\x31\xe6\x9b\x4c\xf4\x56\xb9\x6f\x8e\xd8\x35\x48\xa2\x62\x14\x31\xe1\xa7\xa1\x3c\x4d\xe7\x7f\xa5\x2e\x1a\xa9\x6e\xfd\x24\x16\xbf\x71\x05\x1a\x83\x9c\x32\xee\x85\xa3\xa4\x3f\x0d\xf7\xde\x7d\x0e\x0e\xcc\x8e\x92\xf5\x39\x49\xf4\x19\xdf\xb1\x93\x44\x6a\xd0\xcf\xf4\x25\xa8\x74\x95\xac\x66\x37\x3f\x2b\x7e\x75\x53\xd3\x79\xfd\xd4\xf1\xda\xe6\x72\x93\x71\xeb\xe5\xd3\x12\x81\xbe\x28\x67\xf7\xb6\x62\x13\x97\x80\x81\x11\x34\x99\x40\x02\xbd\x5f\x8b\xc0\x38\x89\xee\xb0\x7e\xbd\x59\x50\xd6\x1a\xaa\xba\xc4\xfb\xa7\x80\x1e\x71\x3d\x8a\xbf\xf6\x39\x40\x7e\x48\x0a\x53\xa8\xe3\xfb\x2c\xfd\xc6\xaa\xa4\xee\x46\x16\xd0\x5e\x13\x0b\x68\x44\xa9\xa5\x69\x37\xb9\xe6\x4e\xd2\xcc\x1a\x1d\x19\x9a\x29\xb9\xa4\xf5\x4b\xad\xa1\x74\xc2\x5e\x75\xac\x0c\x81\xae\x3a\x1c\x2d\xeb\x87\x5f\x32\x52\x79\x5c\x58\xd1\x3b\x6c\x71\x76\x08\xd1\xbb\x76\x00\x13\xff\xef\xed\xc6\x81\xd5\xb1\x5e\x06\x56\x54\x8b\xa0\x79\xbc\x4f\x1a\xa4\x02\xda\xae\x0b\xcf\x09\x09\x61\xe3\x7e\x07\xd1\x7f\xcf\x39\xa2\x73\x76\xe0\xc6\xe1\x34\x85\x1a\x51\x0d\xed\xa2\xba\x1f\xd1\x3a\xac\x52\x95\x56\xa5\x95\x6c\x4a\xa9\xc3\xb1\x58\x31\x6c\x66\x51\x3a\x99\x22\x6a\x21\x6a\xcd\x30\x65\x96\x8f\xbe\x40\x7f\x61\x79\x21\xb4\x18\xb6\x26\x80\x9c\x83\x09\x8c\xba\x6c\x20\x53\xfb\xe2\xbb\x31\x25\x69\x22\xd3\x0a\xa2\xe6\x7d\x48\xf2\xfe\x82\x2e\x17\xe4\x83\x3f\x5a\x93\x22\x13\xed\x76\x25\x5d\x96\x88\x93\x72\xa4\xf4\x99\x23\x7e\x08\x46\x80\xa9\x34\x28\x51\x24\x6c\x23\x3b\x76\x34\x01\x95\xbb\xa1\xf7\xa9\x95\xa2\x6d\x93\x42\x57\x5a\x52\x80\xf8\x74\x12\x77\x79\xcf\x68\x34\x8d\x03\x29\x8c\x41\x20\x95\xa9\x09\x55\x6a\x7d\x0e\xc8\x32\xa5\x7e\xb5\x68\xb3\x55\x63\xf7\x36\xa2\x92\xf9\x77\x4b\xe1\xd3\x57\x8b\xed\x57\xf8\xf0\xb7\x9a\x14\xbe\x0e\x35\xa7\xb8\x7f\x53\xaa\xe6\x80\xc2\x4f\x87\xce\x51\x10\x88\x2c\xd3\xb3\xb5\x73\x2a\xf5\x8e\x15\x56\x31\x46\xc2\x5d\x2e\xe2\xf3\x3f\x4e\x4e\x16\xd3\x17\x61\xed\xda\x34\x66\xdf\xb4\x68\x02\xa4\x26\x54\xaf\xf5\xa7\x76\xae\x25\x0d\x1b\x0d\xf9\x9a\x9f\xf1\xb9\x1b\xf1\x73\xcd\xb6\x27\xb8\x12\xdf\xc6\x17\xf0\x50\x6f\xf3\x24\x7f\x2a\x90\xed\xdf\x5d\x40\x72\x81\xe0\x65\x99\xbc\x6e\xee\x3f\x5e\x09\x62\xca\x7b\xb1\x2a\x9c\x4f\x75\x53\xec\xba\x21\xbd\x90\x21\x2c\x74\x0d\x70\x7e\x8c\x86\xaa\x07\x65\xde\x2c\xa1\x8e\x95\x70\x2e\xe8\xff\x69\xda\xb2\x55\x21\xc0\xd6\x5f\x19\xdd\xb6\xb9\xfa\xd2\xe8\x30\xd6\xee\x05\x55\x9d\xf5\x5b\x67\x2a\xe9\x58\xe3\x55\xa7\x92\x89\xb6\x5c\x33\x99\xa5\xcd\x7d\xab\xc2\x9a\x31\x1f\xd5\x82\x35\x27\xbf\xae\xab\x54\x56\x86\x83\xaf\x70\x04\x88\x0e\x5f\x13\x21\x70\xdc\x71\x89\x32\x7c\xf1\xf1\x57\xfa\xf5\xcf\xea\xd8\x71\xc7\x96\x25\xfb\x1c\xdb\x03\x2c\x9c\x89\x16\x77\x22\x6a\xaf\x96\x48\x2b\xe2\x31\xc5\x84\x8b\x24\x5b\xc7\xb6\x3a\x96\x49\xf2\x4d\x59\x57\x4b\xab\x1d\xdd\xc5\x11\x95\x5a\xc9\x1c\xdc\xb1\xd4\x9a\x04\x90\xdd\xc6\xf1\x55\xb5\x03\x96\xf4\x62\x70\x3d\xb7\x97\xc3\xb0\x5e\xb3\x2e\xa3\x44\x16\xac\x74\x45\x6b\x25\xfd\x7d\x55\x3e\xd1\x54\x87\x2f\xe3\x0a\xd6\xf4\xaa\x9a\x8a\xb1\x17\x29\xfb\xa6\x66\x67\xb2\x10\x88\xa6\x85\xc7\x01\xc8\xd6\x53\xc8\x00\xf2\xb3\x1a\x7e\x9d\x41\xe7\x00\xc5\xe6\xbf\xa2\x0e\x9c\x32\xb4\x27\x7a\xed\xff\xb0\xf8\x8b\x53\xef\x32\x2e\x05\x13\x77\x99\xa2\xe9\x8a\x8c\x10\xeb\x81\xef\xbd\xea\x44\x69\x65\x22\x50\x8d\x40\x66\x1a\xe6\xea\x81\x82\xa2\x75\xee\xad\x01\x9b\x0f\x7f\x2d\x85\x37\x69\xb3\x99\x02\x19\xfd\x7a\x8b\x20\x3f\x45\xf4\x4b\x6d\x80\x9f\xcd\xa7\x70\x06\x09\xf0\xe5\x53\x75\xe0\xce\xfd\xb4\xc2\x26\x5e\x7e\xef\x16\x05\x8e\xd8\xa6\x8c\x9d\x44\xee\xb1\xa4\xeb\xa1\x0c\xf5\xe7\xc0\x9b\x40\xce\x5d\x2e\xa7\x88\xe5\x6a\x72\x16\xe4\x1e\x95\x46\xd8\x15\x20\x71\xb9\x68\x38\x25\x52\x6b\x91\xd1\xd2\x42\x2d\xea\x74\x19\x02\xa4\x0f\x71\xc0\x00\x12\x3a\x71\x36\x05\x27\x36\x71\x47\x85\x2a\xf8\x89\x3e\xf7\x11\xeb\x44\x67\x4e\xb5\x97\x02\xe7\x42\x48\x7d\x38\x81\x81\xd9\xd4\xae\xb5\xfb\xdf\x74\x4e\xb9\x38\x01\x6a\xdb\xad\x53\xc7\x72\xb6\x35\x21\x1f\x71\xcb\x51\x61\xb3\x71\x21\x96\x4c\x5b\x42\xdd\xc2\xcf\x6f\xf6\xa3\xe6\xff\x11\x3c\xf2\x28\x7e\xaa\x84\x9c\xe8\x72\x9c\x47\xa5\x1d\xd6\xd1\x4f\x15\x6f\xb8\x88\xda\xef\x77\xf5\x41\x84\x0d\x37\xd5\xfc\xd0\x1c\x5e\x9d\x67\x10\xd9\x86\x8c\xa2\xb1\x58\x87\x5e\x8a\xa8\xd0\x34\x28\x06\x7c\x14\xfc\x98\xb2\x14\xca\xb1\x3a\x32\xfe\x7d\xdb\x39\xcd\xb5\xa2\x3c\x2b\xcb\x28\xaa\x60\x6a\x0a\x1d\xba\x37\x27\x85\xa5\x52\x27\x4e\xc3\x53\x38\xf7\xac\x1e\xae\x9e\x5a\xfd\xa2\x60\xf2\x12\x17\x45\x2d\x5b\xf9\x96\xb3\x6d\x2c\x42\x51\xf9\xe0\x66\x55\x8d\xa8\x7b\xc6\x72\x35\xad\x32\x1d\x35\x56\x33\x31\x52\xcf\x86\x4c\xa5\x49\x26\x1d\xb5\xe7\x21\x3b\x4c\x78\x57\x9d\x6c\xc9\x82\xac\xc7\xe5\xb3\x28\x11\x55\x7d\x7b\xf4\x40\x42\xf1\xb3\x0a\x30\x2c\xc8\xa8\x5c\x91\xf9\x97\x45\xfd\xd9\x3f\x13\x31\xef\x47\x22\xe6\xca\xa9\x98\x77\x9e\x8c\x79\xef\x33\x20\xef\x7f\x0e\xe4\xbd\xc9\x82\xbc\x37\x79\x90\xf7\x27\x13\xb2\x79\x2e\xe4\xbd\xc9\x86\xbc\xb1\x7c\xc8\x38\x99\xfa\x1e\x66\x45\xae\x92\x17\xb9\x5a\x66\xe4\xba\x72\x23\xef\x61\x76\x64\xa5\x38\x7b\x3f\x32\x24\xef\x4b\x8e\xe4\x5a\xb2\x24\x97\x8f\x72\x32\x65\x4a\xae\xa1\x0c\x4a\x15\x8d\xd7\xcd\xb4\x2c\x1f\xa5\x56\xb6\xa5\x75\xd3\x19\x97\xd6\x3d\xcf\xba\x2c\xdd\x92\x75\x0e\x99\xff\x80\x35\xae\x4e\xbe\x5c\xdf\x3a\xd7\x4b\xc1\x5c\x7d\xdd\x4a\x63\x23\xab\x74\x7d\xd3\xf8\x2b\x3a\x35\x13\x4f\xd6\x0a\x8e\x4d\x2d\xc8\xe0\x2e\xdd\x9a\xfe\xdf\x3f\x1e\xf6\xb7\x37\xd6\x15\x84\x97\x4d\xf0\x88\x67\x79\xb7\xa9\x44\x11\x18\xb9\x3c\xa2\x64\x15\xf8\xc7\x73\x4c\x61\xde\xdc\x7b\xa1\xc5\x70\x30\x12\xc2\xdb\x48\x28\x8a\xde\xb9\x24\x81\xdd\x8f\xf0\xb7\xaf\x78\xf3\xd3\xec\xeb\xe4\xa8\x76\xe4\xd4\xbf\x44\x68\xdb\x6a\x61\x6d\x24\xbc\xeb\xe4\xed\xaf\xd3\x8d\xd1\xc9\xee\xf9\x62\x85\x1d\xff\x3e\x0c\x2c\x60\x7d\xd6\x62\x46\x57\xee\xa9\x54\x37\xd5\x55\xd3\xd5\xb2\x29\xad\x89\xaa\x16\xc0\xcb\xea\x74\xd6\x3a\xd9\xa9\x6b\x3d\x3a\x48\xb8\x44\x02\xea\xfd\xd8\xc9\x83\x2f\xfd\xf7\xef\x8f\x2e\x26\x37\xd6\x20\xed\x76\x37\x7f\x65\xaf\xb5\x26\x4c\x61\x69\x7e\x50\xda\x00\xec\x2e\x57\x7b\x42\x07\x9f\x3e\xf7\xd9\xe3\x55\x22\x5e\x4b\xa5\xdd\x55\x24\x5c\x66\x1d\x84\x6c\x8a\x09\xfa\x26\x49\x20\x27\xfb\x2d\x53\xa2\xd8\xce\xc5\x5d\x32\xfc\x05\x06\x92\xfc\x08\x64\x35\xd4\xc4\x3f\x70\x48\x2c\x3b\x17\xfe\x44\x21\x63\x28\x98\x50\x57\x0c\x18\xc9\x41\xc6\x60\xc3\xc3\xd7\x96\x7c\x6b\x45\x38\xa4\x87\x21\xb5\x02\xcc\xac\x39\xc1\x17\xc8\x83\x42\xd3\x22\xf0\x6b\x88\x08\xf4\xac\x39\x24\x33\x44\xa5\xf0\x60\x09\x67\xf6\x88\xc9\x42\xcb\xc0\x9b\xa1\x00\x51\x46\x00\xc3\xc4\x42\x63\x8b\xa9\xfc\x17\x10\x58\x90\x10\x4c\xdc\xc6\x7a\xd3\x91\x82\x00\x04\xb7\x33\xf5\x4b\xc4\xa6\x72\xaa\x14\x31\xa8\xcf\xd5\x62\xd8\xba\x40\xf0\x52\x4c\xaa\x68\x22\x91\xd6\x70\x63\x2a\x42\xf1\x96\x5e\x81\x3d\x4c\xc1\xec\x3c\x24\x13\x48\x3a\x33\x18\x84\x77\x5d\x7d\x20\x38\x79\xb9\xf1\xc7\xee\xd7\xfa\x32\xdd\xc5\x24\xbb\x1b\x33\x13\x52\x57\xf9\xea\xfd\x8a\xaf\x6c\xc7\xee\x5a\x5d\xab\xd7\x15\xff\x8f\x2e\x5e\xcd\x7c\x21\xa4\x4f\x19\x9b\xef\x6f\x6c\x5c\x5e\x5e\xba\x97\x03\x17\x93\xc9\x46\xbf\xdb\xed\x6e\xf0\x97\x14\x5e\x14\xcf\x6e\x14\xf0\x20\xa2\x9a\x4e\x89\x97\xf0\x77\x47\x5f\x16\xfa\x17\xd9\x0f\xce\xb1\x35\x88\xa6\x50\x79\x34\x7b\xdb\x46\x7b\x56\x9d\xf1\x37\xfb\x37\xfc\x82\xdd\xcd\xa5\x5f\x70\x03\x9b\x22\xbd\xee\x2b\xec\x88\xfc\x29\x7f\xa7\x91\xc1\xef\xdf\xfc\xba\xb7\x4b\xcc\xcd\x4a\x6b\x1e\x97\xd9\x19\x99\x89\xb5\xfa\xc1\x0e\xfd\x1a\x02\x02\x2d\xf3\xcf\xbd\x32\x42\x5a\x75\xf0\xfe\x4d\x0e\x3e\xb8\xc9\xc1\x37\x6f\x72\xf0\xad\x9b\x1c\xbc\x94\x33\xac\x3a\xf8\xce\x4d\x0e\xbe\x7b\x93\x83\xef\xdd\x0e\x3f\xcb\xbc\x7c\x05\x86\x26\xaf\xf9\x78\x82\xef\x9a\x97\xcd\x7a\xf4\x79\xf8\xfb\x1f\xab\x1c\xef\xda\x64\xd6\x7a\x7a\xe7\x85\x84\x7e\x77\xdb\x1d\xf4\xac\xed\xae\xdb\xdd\x29\x60\x99\x93\xbc\xa5\xbd\xf8\x4a\xa2\x40\x80\x24\x32\xc5\xb3\x1d\xfb\xcd\xce\xae\xbb\xb9\xe7\xf4\x7b\xee\xee\xe0\xe3\xe6\xb6\xdb\xdd\x99\x76\xb6\xdc\xbd\x8b\xce\xa0\x3f\xdd\x75\xbb\xdb\xaf\xf7\xfa\xee\xce\x9e\x33\xd8\x75\x07\x7b\x1f\x7b\x9b\x6e\x6f\xca\xaf\x0e\xfa\x2f\xf6\xba\xee\xf6\xe0\x4f\x23\xad\x97\xbd\xae\xd7\x1b\xb8\xdd\x3d\x67\x73\xdb\xdd\xda\x1a\x75\x76\x9d\x6e\xa7\xd7\x75\x7b\xbb\x9d\x4d\x77\xb3\xaf\x3e\xee\xb9\xfd\xfe\xc7\x41\xcf\xdd\x1c\x8c\xba\x9d\x4d\x77\xd7\xe9\xbb\xbd\x6d\xf1\xab\x93\xdc\x40\xc5\x47\x87\x3f\x26\x7f\x75\xf8\xaf\x17\x5b\xee\x5e\xef\xb0\xd7\x1f\xb8\xfd\x1d\x67\xb3\xef\xf6\x06\x4e\xaf\xdf\x73\x7b\x3d\xf9\x42\x47\x7f\xfb\x9f\xb3\x6e\xa7\xb7\xe7\x0e\xb6\x46\x9d\x81\xdb\xeb\x3b\xfc\x5d\x83\xbe\xd3\x73\x07\x7b\xf2\xd3\xe6\xc5\xb6\xdb\xdf\x1b\x75\x9d\xbe\xbb\xbd\xe9\xf4\xdc\xbe\xb3\xe9\xc8\x0b\x94\xff\xd3\xe1\x77\x8a\x1f\x3a\x9b\x1c\xdc\xfe\xe6\x61\xaf\xb7\xe3\x6e\xf6\x9c\xfe\xae\xbb\xed\xf4\x7a\xdb\x6e\xbf\xe7\xf4\x77\xdc\x7e\xf4\x5a\xfe\x79\x09\x8c\x6d\xf6\xdc\xee\xae\x23\xd6\xe6\x63\x7f\xcf\xdd\xd9\x1a\x75\x3b\x3d\xb7\xbf\xd5\x71\xb7\x06\x9d\x9e\xbb\xbb\x93\xfc\x01\xbd\x6d\xb7\xb7\xed\xc8\xbf\x5d\xfe\xbf\xce\xb6\xdb\x73\xfa\xc9\xca\xee\x6e\x7f\xec\xf7\xdd\xed\xbd\xe9\xa6\xbb\xb9\xed\xbb\x5b\xbb\x4e\x1f\xf4\x07\xee\xe6\xc0\x91\x7f\xf9\x43\x3d\x67\xcf\x1d\x6c\x77\xfa\xee\xe6\x16\x47\xf0\xa6\xfc\x23\xaf\x08\x84\xf7\xdd\x2d\xa7\xcf\x9f\x88\x6f\xdf\xec\x75\xfa\xee\xd6\x68\xe0\xee\xee\x39\x5d\x67\xcb\xed\xf3\x55\xdb\xd9\x94\x9f\xb6\xdd\xbd\x9e\x84\xe0\x45\x6f\x6b\xd3\xdd\xab\x9e\xc5\x96\xbb\xe5\x88\x3f\xb9\x39\x2c\x81\xbf\xdd\xbe\xbb\xab\xf0\x37\xe5\xf4\xe4\x77\xdc\x4d\xfe\xca\xad\x5d\xd0\x13\xc4\x2d\xff\x8a\xa9\x74\x76\x9c\xbe\xdb\xdd\x1e\x75\x36\x39\x05\x89\x37\x77\xfa\xee\xde\x40\x7c\xd8\x11\x34\xb2\xb3\x25\x6e\xe9\x6c\x73\xe4\x6d\xbb\xbb\x7d\xf1\xe9\x45\x6f\x67\xe7\xe3\xa0\xeb\x6e\x6d\x8f\xba\x1c\x15\x7b\x1d\x77\xa7\xdf\x19\xb8\x5b\x9c\xb2\xb7\xf9\x07\x30\xe8\xbb\x3b\x3d\x47\xfe\x8d\xe6\xb5\xb9\xeb\xee\xf4\x7d\x71\x2f\xbf\x0f\xf0\x11\xfa\x8e\xfc\x2b\x71\xbb\xdb\xe9\xb9\xbd\xd1\x8e\x3b\xe0\x2b\xb0\xc7\x11\xef\x6e\xed\x89\x0f\xbb\xee\xe6\xd6\x9f\x6f\x7a\x3b\x3b\xce\x60\xc7\xed\x6f\x4e\x05\xd5\x8e\x3a\x3d\x77\x8f\x13\x33\x5f\x3d\x8e\x5a\xb1\x8a\x7d\x77\x40\xdd\xad\x01\xff\x77\x2b\xf9\x03\xf6\xdc\x3e\xdf\x36\x12\x1a\x47\x6e\xc1\xa5\x48\x74\x97\xcf\x84\x83\xbd\xb9\x33\xea\x76\xb6\xf8\x76\xec\xbb\x83\xce\xae\xdb\xdf\x76\x76\xdc\x1d\xf9\x89\x23\xa0\xdf\x77\xe4\x5f\x39\xb9\x6d\xb7\xbf\xe9\x6e\xef\x7c\xec\x0d\xdc\xde\xa6\xcf\xa9\xb3\xe3\xee\xc6\xd4\xba\xe9\x6e\x6f\xfb\x1d\x77\x6b\xb7\xd3\xe7\x2b\x35\xe8\x39\xf2\xaf\x5a\x29\xbe\xfd\xf8\xec\xf8\x62\xf1\xa5\xd9\x71\xfb\x1d\xbe\x92\xe2\xc3\xae\xdb\xeb\xfd\x39\xeb\x6d\x76\xf8\xe6\x05\xfd\x6d\xa7\x1f\x6d\x08\x0e\x5d\xc7\xdd\xee\x8f\x3a\x7d\xce\x18\xba\x62\x7d\x1d\xb9\xcc\x0e\xe7\x04\x17\x1c\xd8\x51\xd7\xe1\x88\x74\x77\xfa\x0e\x47\xdb\xee\xae\x33\x00\xbb\x9c\x98\xc5\x1f\x89\xb0\x2d\xb7\x3f\x10\x83\x54\x63\x0c\xfb\x8b\x49\xde\x02\x38\x06\x9e\x32\xf5\xf4\xf8\x3d\x48\xa4\xa9\xda\x83\x5d\xb7\xdb\xb7\xfa\x03\xb7\x37\xb0\xe4\xe7\xc1\xc0\xed\xee\x5a\x83\x9e\xdb\xdd\xb3\x06\x3b\xfc\x6f\x7f\xdb\xed\x6f\x59\x83\xcd\xe4\x33\x3f\x2a\xb6\xf9\xe7\xc1\xae\x3c\x36\xac\xad\xbe\xbb\xb9\x67\x6d\x6e\x25\x9f\x7b\x5b\x6e\xaf\xc7\x3f\x77\x7b\xea\xb3\xf6\xae\x86\x73\x88\xc1\xed\x6f\xbb\xdd\x81\x25\xde\xd8\x55\xa3\xf6\x76\xdc\xad\x6d\xab\xbf\xe5\x6e\x0e\x2c\xc1\x7e\x2d\xc1\x91\x2d\xb1\xef\xad\xfe\x2e\x9f\x8d\xfc\xdc\x13\x9f\x25\x14\x9c\x08\x52\x10\x65\xa1\x96\x9f\xbb\x3b\x56\xf2\xca\xa5\x81\xee\xf3\xb7\x0f\xfa\x02\x7f\xe2\xf3\x66\x9f\x43\xd2\xdb\x74\x77\x77\xac\xcd\x9d\xe4\x73\x5f\x7e\xde\x71\x77\xc5\x8c\xfa\x5b\x56\xd7\xed\x6d\x29\xa0\xba\xf1\xbf\x9b\x11\x60\xfa\x52\x24\x4b\x94\xbc\xae\x00\xe2\xdb\x73\xf6\x1a\x44\xb3\xe6\xf2\x9d\xc8\x19\x22\x77\xed\xe2\x25\xc1\xa7\x8d\x6f\x83\x5f\xd9\x12\x5d\x8f\x6e\xc2\x92\x5f\x65\x79\x45\xf4\x79\x64\x3c\xab\x99\xe3\x9e\xf2\x00\x98\x8c\xe9\x67\xcd\xc2\x42\x56\xed\x27\x7d\x30\x89\x92\xdf\x7f\x76\x94\xae\x13\xac\x79\x77\x3d\xa5\x57\x88\x41\xbe\xdb\xf0\x63\x44\x5f\x43\xe0\xc9\x46\xff\x06\x28\x92\x8b\x37\x0a\x05\xf0\x3c\x02\x69\x11\x2a\x0e\x92\xab\x37\xbb\x1e\x90\x8c\x8f\x30\x29\x0a\x63\x9c\xab\x4b\x37\x0a\x83\x07\x18\x90\x8e\xc9\xa2\xaa\x18\xa9\x1b\xd6\x5a\x2c\x71\x95\x00\x69\x79\x42\x75\x00\xe7\x58\x99\x10\xe9\x89\xea\xf1\x96\x8b\x61\xfe\x19\xbc\x7c\x17\xc1\xcb\xf2\x4c\xf9\x19\xb7\xfc\xef\x18\xb7\x6c\x6a\x72\x54\xa3\xa3\x67\x5d\xef\xe6\xba\x23\x1e\x94\x58\xbb\xb4\x3c\x7c\x2f\xaa\x0f\x3e\x7f\xfb\xf1\xc3\xd5\xe7\x8f\xab\x04\x3e\x1e\x2b\xf1\x3e\x1d\x04\xb5\xb4\xca\x91\xc2\xce\xf2\xc8\xbd\x1f\x11\x43\xaf\x9f\xff\xf9\x92\x4e\xfc\x5e\x3d\xf4\xde\x51\x1c\xd0\x2a\xd4\xbf\x7c\xdc\x4f\x34\x80\xfc\xf7\x8e\xd7\xe9\xf8\xcf\xc5\xf6\xf9\x9f\xe0\xb8\xa0\xd2\x3b\x98\xd4\x2c\x5b\x24\xf7\x42\xf3\x62\x9c\x45\x2d\x66\xfd\x70\x96\xaf\x2c\x53\xf5\x80\x85\x68\x67\x0a\xfc\x71\xa1\xcd\xdf\xf0\x64\x75\xc5\xda\xe2\x87\x44\x84\x52\xde\x5b\x2b\xff\x3b\x01\x93\x4c\x7e\x77\x81\xf5\x45\xea\x78\x26\xc1\xc7\x52\xe2\x19\x03\x93\x02\xe9\x23\x1a\xa2\xb8\x2f\x4c\x72\x4f\x61\x7d\xec\xe4\x16\x7d\x0c\xa9\x4b\x55\xa6\xfb\xe9\x8f\x7c\x8c\x0a\x16\xac\x70\x42\x66\xc7\x2f\x0c\xd6\x8a\x8b\x63\x24\x42\xd2\x89\xc0\x53\xc3\x14\xe4\x12\xb4\x18\x66\x99\x08\x6f\xd9\x1a\x4d\x55\xa9\x16\xa6\x31\xea\x96\x72\x58\x4a\x8a\x28\xa1\xba\x3b\x33\xab\xa5\x79\x9f\x99\x77\x3e\x28\xe5\x9d\x32\xa6\xec\x8e\xb9\xe6\x7b\xaf\x3f\x3e\x39\x7c\xf1\xee\xc6\xe2\x61\x9b\x4b\x7f\x79\x91\xae\xe1\xc2\xa8\x60\xbd\x25\x8e\x33\xf9\xe4\x86\x0a\xf3\xbb\xdb\x95\x79\xb5\xf1\x61\xf6\xb1\x77\x05\x0b\x8c\x9d\xd8\x47\xa3\x45\xdd\x4a\x7c\x7a\xd8\xe2\xda\x42\xdc\x6b\x95\x86\x3b\x18\x8d\x20\xa5\x22\x7c\x93\x60\xdf\x8a\x21\xa9\x1b\x2d\x51\x70\x7e\xd6\x3b\x41\xd9\x25\xee\xb0\x29\x22\x5e\x59\x65\xb7\x5c\x88\x6d\xfe\x1c\x3d\xf4\x43\xca\xc9\xd3\x62\x53\xc0\xac\x90\x42\x2b\x33\xad\xd7\x88\x32\x1a\x45\xae\xca\x00\x50\x11\xc7\x39\x87\x64\x8c\xc9\xcc\x1a\x41\xc2\x00\x0a\x2c\x51\x82\xcd\xb5\x7e\x5d\xa8\x88\x57\x14\x4c\x2c\x20\xef\x37\x27\x17\x76\x1d\xfb\x58\xc4\xed\x5a\xe9\x8e\x25\x8e\xc5\x0f\x0d\x6b\x1c\xb2\x90\xc8\x90\x59\x48\x99\x75\x89\x7c\xdf\x3a\x87\x16\x08\xd9\x14\x06\x0c\x8d\x00\x83\x9e\x63\xcd\x31\xe3\xdf\x80\xef\x2f\xc4\x25\x4c\xd0\x37\xfe\x66\x02\x81\x67\x01\x39\x13\x86\x2d\xe0\x79\xa2\x0c\x1e\xf0\x2d\x14\x70\xb0\x85\xbe\xd8\x10\x5a\x89\x18\x4c\x72\xf0\xb2\x29\xb4\x04\xd1\x22\x48\x2d\x10\x78\x16\x09\x7d\x48\xad\x31\x26\x32\xbf\x52\x8c\x1a\x4d\x80\xeb\xa8\xf9\x2c\xbc\x1a\xe2\x4c\x80\x19\x1a\x23\x55\xf1\x4b\x14\x6e\x19\xe3\x52\x79\xa3\x09\xc9\xd5\x7b\xb0\x52\x36\xc9\x07\x8b\x8b\x4d\xc3\xc1\xdd\xd4\x1e\x16\x5b\xc5\x3a\x66\x98\x28\x62\x2c\x17\x5f\xe6\xd9\x47\xa9\x05\x08\xb4\x28\xc3\x04\x7a\xd6\x48\x14\x4e\xe8\x50\xe4\x41\x0b\xc5\xab\x07\x22\x40\xa6\x04\x8e\x55\xe0\x0a\xdd\xdf\xd8\xf0\xe0\x05\xf4\x39\x57\x73\x67\xf8\x1b\xf2\x7d\x20\x82\x58\x60\xd0\xf9\x70\xbc\xe1\xe1\x11\xdd\xf8\x04\xcf\x37\x0e\x8e\x5e\x6e\x7c\x42\x81\x87\x2f\x37\x7c\x3c\x02\xbe\x06\xa9\x02\x43\xfc\x2c\x20\xc8\xcc\xc0\xb5\x44\xc3\x02\xb1\xda\x73\x48\x28\xa2\x2a\xb0\x5b\x52\x01\x18\x11\x4c\xa9\x45\x61\x14\xfc\xfd\x07\x0e\xad\x11\x08\xac\x19\x08\x42\x41\xc5\x23\x1f\x02\xa2\x3f\x32\x85\x04\x16\x27\x6d\x96\x5e\xa8\x62\x22\x91\x76\xc6\x3f\xcf\x50\x80\x66\xe1\xac\x72\x89\xab\x5a\x14\x46\x64\x39\x30\x17\x5f\x10\xd3\x13\x8b\xa8\x0e\x17\x24\x3b\xd3\x24\xfc\x88\x4f\xff\x44\xc6\x99\xaf\x41\x46\xcd\xef\x33\x3b\xdb\x21\x25\xc0\x2c\x9d\x51\xf0\x92\x7e\x04\x3e\xf2\xec\x4c\x9d\xb0\x1a\x85\xe3\x0c\xd8\x1e\x23\xe8\x57\x49\xfd\x71\x9d\xaf\xb2\xe2\x5f\x46\x66\x59\x7b\xc9\x05\x33\xaf\x5c\x5c\x51\x94\x2a\xfb\x70\xea\xc7\x74\x5d\xab\xbf\xab\xff\x3a\x86\x3f\xd1\x7f\xe2\xc9\x7e\x54\x28\xcd\x29\xcc\xdc\x50\xdd\x2b\xe5\xdb\x4a\x12\xc3\x72\x85\xb2\x52\xb9\x1f\xd2\x1a\x19\x17\x65\xb3\x19\x20\x13\xc8\xdc\x48\x86\xcf\x74\xba\x14\x69\x6a\x4b\x18\x0c\x8b\x4f\xd8\x29\xf4\xe7\xa9\x45\x0b\x98\x4c\x88\x80\x17\x90\x2c\xe2\xe3\x8c\x61\xcb\xe3\x62\xe1\x0c\x05\x30\x3e\xb8\x62\x33\x78\x35\x71\xe7\xb9\x7d\x0e\x12\x91\x85\x17\xc4\xd3\xab\xb1\x75\xe7\x04\xc9\x92\x89\x85\xbb\xf7\x02\x12\x34\x5e\x9c\x44\x59\x20\xc9\x2c\x59\x66\xcb\xd6\x2f\x1c\x5e\x9c\xd8\x93\xdd\x86\xcb\xed\xbf\xec\xb1\x49\x43\x71\x8c\x2f\x7b\x04\x56\x74\x8e\x5f\xee\xf4\x5c\xee\xfc\x3c\xd0\x45\xa1\x87\x25\xc7\xa8\xf1\x20\xfd\x23\x39\x61\x10\xb5\x2e\x38\xa6\x85\xec\x02\xe2\xc4\xad\x58\x80\x19\x63\xdf\xc7\x97\x5c\x44\x8a\xa4\x9c\x75\x14\x11\x28\xf8\x79\x05\x72\x79\x19\x5c\xdc\x00\xc1\x78\x20\x98\x14\x99\x8f\xfe\xa5\xe8\xe5\x39\x40\x3e\xf4\x38\xeb\xd1\x29\xa7\x29\xdd\x9c\xc4\x12\xad\xe4\xbc\x5c\x54\x91\x45\x26\x54\xa6\x9b\x97\xe4\xbe\xc9\x1a\x23\x20\xb0\xe0\x15\xa2\x5c\xff\x94\x4f\xde\x47\xea\x79\x0f\x47\x98\x34\x22\x9d\x26\xb8\xdf\x4f\x39\x0b\xf5\x17\xe6\xcb\x88\x17\x9b\xd9\x0a\x0e\x76\x8d\xc9\x97\x53\x67\x46\x8f\x79\xf9\x74\x3f\xba\x61\x84\xbd\x5c\x51\xe0\x34\x94\x40\x3d\x54\x55\x16\xb8\xe4\xbd\x52\x80\x69\xf4\xd6\xf8\x70\x5f\xae\xd9\x7f\xd3\xb5\x3a\x52\xec\x2d\x47\x54\xe6\x9e\x7a\x79\x78\x99\x6c\x39\xe5\xd8\x33\x10\x80\x89\xa0\x9e\x26\x8d\xf5\x8a\xd7\xb9\xb2\x37\x79\xa3\x01\x64\x11\xce\x29\x48\x34\x80\x8e\x2e\x09\x99\x38\x01\xdf\xf6\xc9\xa4\x22\xd5\x04\x50\x0b\x48\x45\x27\x4a\xf1\xbc\xc9\x4a\x40\x59\x7b\x72\x1a\xf7\xf3\x78\xf1\x9a\xd9\x96\x97\xc7\x76\x7d\x7c\x97\x59\xfe\x35\x7c\x14\x9a\xad\x0b\xa3\x19\x2a\x18\xf7\x8a\x75\x92\xac\xfa\xe2\xa5\x69\xa7\xc8\xb9\x78\x90\x8e\x08\x9a\xa7\x4a\xcf\x56\xb7\x64\x34\x61\x25\x3d\x52\x1d\x73\x6b\x83\xd7\xf0\x6d\xad\x6b\xbf\x6f\xb9\x84\xae\xbd\xaf\xba\x00\x92\x63\x1a\xbe\x74\x95\x12\xec\x12\xa8\xc9\xe9\x59\xbe\x28\x67\x2f\x8c\x4a\x85\xac\xb0\xf6\x5b\x2b\x67\x52\xd2\x70\xb2\x5e\x0b\xa0\x06\x4e\x8a\x55\xfd\x14\x29\xa3\xf6\x12\x56\xf1\x8b\x49\x67\x0e\x18\x83\xe4\xce\x4d\xe2\xc7\x60\xe7\x23\x7e\xdf\xdf\x5c\x25\xa7\x4b\x9b\x4e\x74\x29\x4e\x1f\xce\x65\x49\xaf\x39\x6b\x5b\xe4\x7d\xa9\x6a\xaa\x8e\xdd\x73\x7b\x19\xae\x12\x31\x24\x38\xce\x48\xc4\x8a\x28\xa2\x9e\x0e\x32\x27\x43\x9f\x02\xe2\xcc\xdd\x43\x60\x82\x03\xe0\x77\x28\x23\x68\x0e\x3b\xf1\x79\xae\x6e\xfe\x10\x20\x11\x78\x15\x52\x48\x8e\xe7\x60\x04\xdf\x05\x1f\x28\xcc\xce\xb9\x67\x48\xab\xee\x66\xd9\x9f\x82\x02\xcd\x22\xcb\x1e\xc7\x91\x8f\x82\x2f\xfb\xca\x94\xe8\x01\x06\xf6\xc5\x65\x8e\x9c\xc7\x57\x33\xff\x97\x73\x40\xe1\xf6\xa6\x73\xf4\xe2\x6d\xff\xcf\xc5\xaf\x9b\xe7\x9f\xae\xc2\xd1\xb7\x6e\x00\x5e\xbc\xef\x8e\x9e\xe2\x8b\xd7\x03\x6f\xe0\x2d\xb6\x06\x6f\x16\x5b\x17\xa3\xd9\xe8\xe2\xcd\xe7\x83\xcb\x37\x87\x7b\xdf\xbc\xd9\x28\x78\xf9\xc2\x9b\xff\xf9\xe2\x3d\x3e\x3a\x1e\x5d\xbd\x39\x1c\x4d\xc0\x6f\x1f\xe7\x7f\xf6\xa7\x5d\xf5\xfd\xf1\x21\x3a\x98\x1c\xbd\x78\xe5\xff\x31\xf8\x7d\xe2\xf5\xfd\x2f\xde\x6f\x93\xbd\x57\xdf\x9e\x5d\xbe\x5a\xfc\x8a\xff\xfc\xe4\x07\xe0\xc5\xef\xd1\xf7\x19\xf8\x74\x45\x8f\x8e\xbd\x01\xf8\xcd\xef\xfe\x79\x3c\xba\x38\x9a\xe0\xc9\xcb\xa7\x57\x97\x7f\xfc\xfd\x3d\x7e\xf9\xdb\xef\x7b\xaf\xba\x5d\xf6\xe6\xf8\xf2\xea\xe5\x6f\x97\x8b\xd7\x87\xdd\x05\x1f\xfb\xe5\x61\xf2\xff\x93\x93\x03\xfa\xe6\xe4\x60\x72\xfe\xf4\xd9\xe5\xeb\xc3\xee\xd5\x9b\x03\x9c\xba\xfe\xf2\x59\x77\xeb\xf5\xd3\x67\xf1\xf3\xaf\x16\xbf\x7e\xf3\x5e\xbc\xba\x00\xfd\x0f\x7b\xaf\xfa\xaf\xe8\x1f\x9f\xde\x12\xed\x37\x96\xc0\xfb\x26\x78\xfd\x6d\xf3\x6f\x47\x72\xce\x8f\x8d\x04\xd5\xdb\xdb\xdb\xdb\x10\x88\x8e\xb1\x5e\x23\xd5\xbf\x64\x41\x75\x3e\x64\x30\x9f\x94\x73\xa6\x55\xd8\x92\xc6\x55\x6a\xf3\x24\x02\x02\x3a\xc6\x64\x46\x37\x00\x21\x60\xa1\x73\x23\x7e\x30\x9d\x43\xd2\xe1\x74\xd7\x11\x31\x1b\x9d\x31\x01\x13\xc1\x0c\xf2\x0f\xea\xbc\xcb\x61\xeb\xe2\x5e\xc1\x90\x45\x3f\x6b\x53\x09\x2a\xa6\x12\x81\xd9\x59\x7a\x4e\x99\x11\xee\xe3\xe4\x56\x99\xd6\xdd\x4f\x28\x64\xc8\xa7\x1b\xc0\xf3\x3a\x0c\x77\x44\x36\xdc\x4d\x9c\x83\xfa\x30\xf2\x30\x04\x64\x12\x0a\xb4\xb8\x32\x56\xf6\xaf\xbd\x47\x8f\xe4\x0c\x1e\x0e\x93\x8b\xa7\xbd\xb3\x27\xfa\x97\x7d\xdb\x76\x82\x61\x0b\x0f\xa1\x2b\x7a\xba\xb4\xec\x27\x76\xdb\x21\xc3\x7e\x0a\x50\x34\x6e\x1d\x70\x72\x71\x11\x15\xff\xb6\x60\xbb\x4d\x20\x0b\x49\x60\xc1\xeb\x16\x6e\xff\xf8\x91\x46\xba\x44\xd9\xe9\x99\x03\x86\x0f\xbb\x0e\x1d\x3e\xec\x39\x7e\x84\x4e\x46\x16\xdf\xc7\x98\xb4\xf8\x3d\xd8\x21\x43\x78\x7a\x2c\x8e\x65\x17\x31\x28\x6a\xf4\x9c\xb5\xda\xbf\x3c\x6c\x01\x0e\x14\x71\x03\x78\xc5\x5a\xed\xb6\xeb\xe1\x00\xb6\x1f\x3d\x6a\x05\xee\x3c\xa4\xd3\x16\x96\xf6\xe7\xb6\xf3\x90\xfd\xf8\x11\xa8\x19\x3f\x1c\x0e\x59\xfb\x17\xfe\xca\xf6\x2f\xd7\x23\xc0\x46\xd3\x16\x6a\x7f\xa7\x1c\x04\x7f\x88\xae\xc7\x28\x00\xbe\xbf\xf8\xce\x01\x00\x3f\x7e\x70\x31\x6b\x38\x24\xae\x9c\xc7\x8f\x1f\xd1\xa7\x56\x3b\xbe\x13\x8d\x5b\xb4\xcd\xa6\x04\x5f\x5a\xfe\xf5\xb5\x9a\x70\x70\xdd\xc2\x0e\xd1\xa7\xdc\xfe\x2e\xef\x09\xe0\xa5\x75\xb2\x98\xc3\x67\x84\x60\xd2\xb2\x95\xf1\xcc\xe2\x8c\x6b\x36\x57\x16\x6a\xca\x48\x38\x12\x7e\xd8\x00\x07\x1d\x31\xe5\x73\xae\x36\x07\x94\x81\x60\x04\xed\xf6\x75\xab\xdd\x76\xc0\x30\x38\xed\x9e\x39\x74\x18\x9c\xf6\xce\x1c\x7f\x68\xdb\xae\x6c\xbe\xd2\x02\xed\xe8\x13\x6b\x3f\x50\x28\x7c\x40\x1f\x3d\x6a\xf9\x8f\x87\xf6\x93\xf8\x36\xda\x6e\x3f\x50\xf0\xfa\xd7\xc5\x54\x7a\x4e\x20\xf0\x46\x24\x9c\x9d\x77\xc4\x0f\xe9\x9d\x97\xb9\x59\x08\x45\x90\x6e\xcc\x09\x9e\x21\x0a\x3b\x58\x50\x6f\xf1\x7d\x5f\x43\x48\x16\x1d\x21\xdd\xd2\xcc\xb6\x74\x82\xa5\x88\xff\x33\x3e\x3f\xe4\xc0\xd2\x61\xf2\x59\xdf\xa5\x20\xb5\x2d\xe4\xfc\xbf\x0b\xaf\xcf\x3e\x74\x27\x90\xb5\x6c\x46\xd0\x6c\x06\x3d\x11\xe4\xd5\x76\x00\x99\xd0\xfd\x7c\x3b\x59\x75\xef\xdc\x07\x28\x78\xe9\xd9\x6d\xa7\xd5\x75\x02\xf7\xeb\xfc\xd7\x10\xf9\x1e\x24\xed\xd6\xf7\xcf\xf8\x9c\x0f\x41\xb9\x5c\x14\x0d\x1d\x44\x3f\xb8\x42\xd7\x6c\xff\xf8\x61\xab\xcd\x6a\x5f\xb7\xcf\xae\xaf\x1f\x68\x30\x83\x07\xfa\x64\xf2\x40\x5b\xf0\x49\x04\x04\x20\x30\x60\x6e\xa4\x1b\xb6\x9f\x9c\xc6\x8c\xc8\x95\x0d\x15\x5a\xdf\xd5\x82\xec\xa7\x1e\xb1\xdb\x2e\x9b\xc2\xa0\x65\x18\x1c\xb4\x60\xfb\xba\x7d\xdd\x76\xf8\x87\xb3\xfd\x53\xf5\xcf\x59\x09\xa1\x44\x6b\x0a\xce\x29\x23\x60\xc4\x3a\x3e\x9e\x4c\xd2\x51\x9c\x8e\x2d\x17\x9c\xcb\x93\xc2\xcb\x7f\x33\x7c\x58\xca\xfc\x6f\xd0\x15\x0a\x62\x04\x84\xc4\xe7\x7c\x4c\x92\xda\xbe\xbc\x63\x84\x67\xf3\x90\x41\xaf\xa5\x6d\x53\x45\x11\x7c\x9e\x3e\x9e\x3c\x87\x6c\x34\xdd\xd7\x2e\x5f\x3b\x30\xf0\xde\x8d\xc7\x14\xb2\x7d\xa1\x53\x63\xf1\xf9\xc8\x38\xac\x1d\xdf\x6b\x3b\xda\x18\x1c\x48\x38\x14\xd5\xb8\xe2\x1b\x1e\xc4\x8b\xfa\x1d\x13\x34\x41\xc1\xbe\x4c\x95\xb0\xd5\x0b\xf6\xe1\xf5\x7e\x7c\x05\x06\x5e\xfc\xfb\x16\xdc\xe4\xb0\x26\xb1\x16\x66\x50\xcc\x33\x1c\x87\xbe\xff\x81\xf8\x39\xb8\x43\xe2\xdb\x4a\xe9\xe4\x8b\xa6\xcf\xd1\x76\xec\xec\xbb\x4c\x93\x8b\x09\x50\x2e\x35\x1a\x2f\x5a\xf2\x25\x80\x52\x34\x09\x5a\xdf\xaf\x1d\x81\x00\xf9\x0e\xf9\x59\x7f\x8d\xfc\x25\xfb\xa6\x98\x63\x25\xcc\x4e\xdc\x17\x12\xdf\xe1\x87\x52\xf4\xa3\xa4\xdd\x7a\xa7\x70\x8e\x6c\xb9\xd2\x47\x3b\xfc\xf3\x97\x2c\xf5\x4a\x39\x83\xbf\x44\x64\x29\x8e\x16\x79\xce\xf6\x99\xe2\xa0\x23\x72\x03\xa3\x9d\xbd\x16\xb6\x66\xa0\x73\x50\x46\xe7\xe7\xe1\x78\x0c\xc9\x31\xfa\x06\xf7\xb7\xba\x5d\x67\x06\xae\x9e\x13\x30\x83\x6f\x10\x9f\xeb\xfe\x96\x33\xce\x13\x36\x98\xcf\x61\xe0\xa5\x7f\x9b\x83\x90\xc2\xf4\x4f\x63\x6d\x9c\xae\x33\x05\x81\xe7\xc3\xf7\x90\xce\x71\xa0\xdf\x29\x05\x02\xe8\x8a\xea\x79\x91\x1c\x20\xd6\x0a\x05\x23\x22\x74\xea\x78\xe2\xb6\x36\xa4\xdd\x76\xf8\x14\xe5\xb2\x6a\xbf\xff\x55\xee\x97\xf4\x3c\x1e\x3d\x6a\x29\x22\x0a\x29\x6c\xb5\x25\xcd\x50\xce\xdf\xf4\x11\x9d\x6e\xbb\xdd\x7e\x50\x78\x4d\x51\x9a\x98\x3c\x27\x1c\x67\x8e\x7d\x7f\xbf\xd5\x75\x98\xe8\xcb\xda\x6e\x11\x38\x81\x81\x14\x3b\xde\x87\x01\x43\x33\xe8\xce\x00\xf9\x12\x6f\x29\x0b\x2a\xb2\x07\x0e\x15\x50\x46\x7b\xd9\xf0\xe0\x25\x01\xf3\x14\xbb\xe5\x52\xce\x2f\xbf\xb4\xe9\x25\xe2\xa2\x08\x74\xe7\x04\x5e\x0c\xa1\x10\x69\xda\xdf\x47\x80\x42\xab\xbb\xaf\x63\x8f\x6f\x1e\xbe\x1b\x42\x0a\xdd\x11\x97\x06\xfc\x03\xdf\x6f\x71\x0a\x11\x4f\xf6\x1c\x30\x8c\x77\x84\x1c\x66\xb8\x2d\x67\x28\x56\x9c\xcb\x06\x82\xe5\x8b\xe3\x4a\x11\x55\xbb\xf5\x5d\x2c\x93\xa0\xb5\xe2\x23\x81\xba\xe9\xc5\x16\xbb\xec\x81\x80\x71\x7b\x5f\xbd\xab\xd7\x7b\xc0\xe5\x85\x2f\xf2\xe7\xdd\x7d\x29\xf4\x28\xe0\x76\x1d\xe8\xb2\xee\x90\x03\xce\x41\xe9\xb5\x1d\x2e\x0d\x49\x49\x88\x5f\x51\x83\xf5\x7a\xd1\x8c\xa3\x41\x07\x8e\x5c\x0e\x34\x83\x38\x64\x6d\xc5\x49\x18\x14\xde\xad\x27\xdd\xfd\x3e\x1c\x44\xcf\x0e\xf6\xf9\xbf\x82\x43\x26\xa3\x50\x86\xe7\xad\xf6\xf5\xb5\x03\x05\x2a\x9c\xd3\xd3\x9e\xb3\x7b\x76\xd6\xe6\xb3\xf5\x08\xbf\xe6\x68\x78\x6d\xbc\xf6\x37\xb3\xdc\x6a\xf2\xfd\xda\x73\xef\xef\xeb\x9b\x41\xfe\x56\x07\x1d\x1a\x1a\x52\x3c\x13\xd4\xe0\x99\xe9\xd6\x91\x05\x5c\xb3\xe0\x61\x82\x7d\x1f\x05\x93\x48\x4d\x6d\xc8\x97\xd7\xc2\x55\xc5\x90\xc3\xb4\x10\xa2\xd0\x94\x39\x12\xa1\x93\x3b\x41\x2d\x3f\x66\xba\x92\x9b\x32\x77\x04\x7c\x5f\xb0\xa4\xb6\x93\xa0\x46\x2e\x0b\x17\xbb\xe4\xb1\x74\x5d\xc4\xce\x8d\x70\xc0\x47\x8f\xd8\x13\xb8\xc1\xf6\xbb\xd7\x8e\x49\x0c\xfc\xce\x29\x83\x32\x30\x9b\xef\x43\x27\xa4\xd0\x93\x62\xc9\x1c\x92\x11\x0c\xa4\x8c\x72\x7d\xed\xf8\xea\xac\x50\x38\x82\x57\x8c\x73\xbb\x98\x03\x38\xdf\x35\x70\xc5\xf3\xa1\x41\x2a\xd0\x5b\x03\xe5\xb0\x61\x6f\x5c\xf4\x36\x64\x54\xa0\x46\x16\x1b\xe9\x73\x5a\xc8\x9e\xc9\x55\x17\x71\xc9\xd9\xde\x10\xcb\x60\x0b\x69\x33\x73\x06\xc5\x9a\x2b\xe7\x14\x4f\x39\xae\xdf\x00\x36\x75\xc7\x3e\x16\x3c\xe3\x24\x9a\xfb\x46\x0f\x6e\xb7\xdb\x4e\x30\x4c\x5d\x7e\x0f\x65\x55\x80\x0f\xa2\xcc\xe8\xe1\x3c\x3c\xe6\x2f\x72\x4f\x30\x03\xfe\x09\x1a\x7d\xa1\xed\x1f\x3f\xba\xf2\x64\x18\xcd\x43\xa1\x35\x4a\x04\xb5\x34\xac\x32\x85\xd5\x18\xa5\xa0\x15\x48\x8e\xaa\xb5\x16\xe6\x3b\x87\x03\xca\xb5\x8e\xf4\x5b\x65\x9f\x27\xf9\xe2\xf7\xc7\xc7\x0f\x22\xb5\xd6\xb7\x90\x62\xe9\x33\x71\x47\xf9\xdb\xa9\xf6\x76\xba\xd1\xeb\xf6\x37\xc5\x9f\x34\x1c\xf2\x55\x6d\x41\xd9\xa2\x83\xb3\x44\x1e\xd7\xdb\xc5\xd7\x53\xff\xcc\x21\xf2\x78\x90\x71\xc3\x63\x14\x78\xbf\x2e\x5a\xa2\x7f\x93\xed\xf8\xed\x07\x68\xdc\x22\xf2\x21\x64\xc4\x38\xce\x61\x3c\x1c\xa6\x2e\xd7\xc3\x38\x29\x41\x37\x92\x13\x0e\xb5\x09\x87\x0e\x31\xe1\xda\x1b\x66\xdf\x97\xc5\x35\x29\xc7\xad\x7a\x95\xa7\xbd\xca\xd3\x70\x4b\xf2\x88\xbd\xbe\x36\x88\x44\x52\xe2\x8d\xd0\xf5\xa0\x60\x4d\x69\x0b\xb6\x95\xac\x91\x99\xbc\x76\x45\x2d\x0b\x26\xcf\xc0\x68\x9a\x1c\x1c\xac\xfd\x9d\x15\x0f\x69\x1c\x8f\xb3\x19\x0d\x67\x99\xbd\xec\x02\x1f\x01\x9a\xda\x8a\x71\x0f\x2f\x1d\xd5\x76\xdb\x49\xe3\x60\x99\x71\x54\xa7\xb3\xb6\x33\x9a\x87\xcd\x78\x8a\x38\xf9\x62\x21\x45\x60\x28\x91\x6b\x39\x9d\xcf\x4c\x40\xad\x3a\xa8\x58\x84\xba\x63\x6a\xba\x5c\x32\x8a\x12\x00\xcd\x3c\x2f\x41\x90\xec\x9f\xde\xfe\xf1\xe3\xf4\xac\xed\xce\x74\x49\x21\x48\xb8\x3b\xa0\x5f\x14\x2c\x7c\xa0\x40\x45\xae\xb4\x0d\x8b\xab\xae\xd7\x58\xbe\xcc\x9d\xa9\x05\x4a\xa3\x07\xc6\x38\xce\xfe\x7e\x7d\x2d\xed\x03\x78\xe8\x6b\x32\x03\xae\x96\x19\x7c\x3c\x29\x31\x09\xd4\xd2\xb1\xa2\xa1\x64\xcb\x92\xd8\xce\x50\x68\x8c\xc2\xbe\x9f\xdc\x04\x02\x6a\x10\x1f\x1c\xe0\x50\xc7\x5f\x4a\x88\x90\x23\x0f\xb3\xe2\x48\x91\x1c\xc1\x0c\x92\x04\x89\x25\x89\xd8\xe6\x10\xe8\xc2\x84\xb2\x5a\xc4\xf4\xc4\xda\xe2\x80\x2e\x11\x2c\xa0\x94\xf7\x9f\x03\xe4\x87\x04\xea\x72\x06\x36\xd9\x92\xf2\x20\x8d\x70\x40\xb1\x0f\xdd\x4b\x40\x82\x96\xfd\xfa\xdd\x6f\xd6\xf3\x67\x27\x87\x2f\xf6\xad\x43\x1c\xfa\x5e\xf0\x17\xc6\xef\x08\xe0\x48\xd8\x2c\xed\x44\xf1\x6e\x0b\x2b\x56\xea\xe5\x58\xbc\x97\x18\x45\x10\xf9\xdb\xb3\x0b\x18\x30\xe8\x39\xeb\xb3\xd2\x20\x7a\x2c\x88\x03\x05\x93\x02\x9e\xe5\xe3\x89\xbc\x05\x12\x97\x53\x88\x8b\xe8\xfb\x30\x08\x38\x11\x8a\x41\x8f\x30\x0a\x18\x24\x52\x1c\xd2\x6e\x96\x3f\x4c\x21\xf0\x38\xa4\x0c\x20\x01\x31\x0e\xd9\x3c\x64\x39\xae\x91\x8c\x23\xa2\x94\x81\x08\x57\x02\xc8\x37\xf0\x10\x79\x79\x38\x94\xcc\x24\x79\xf0\x89\xf8\x2e\xde\xa7\xce\x08\xe4\x3b\x6c\xe8\xc7\x16\x16\x10\x50\x74\x82\x5f\xb0\x99\xdf\x82\xb1\x45\x57\x02\x72\x2c\x36\x95\x3b\x65\x33\xff\x18\x8c\x61\x8b\xf1\x1d\x8b\x02\xc4\xf2\xe7\x97\x50\x5c\xc5\x0b\xfe\x49\xc3\x39\x24\xad\xb6\x72\xa0\x47\x44\x96\x64\x0e\xe4\xec\x43\xd1\x12\xd8\xed\x07\xcc\xbd\x24\x88\xc1\xa1\x7e\x76\x49\xa3\x1c\x14\x90\x3f\x66\x0f\x22\x53\xfc\x5f\xb7\xe0\xe6\xa3\x47\xad\x60\x18\xb8\x34\xe4\x42\x7e\x2b\xba\xd2\xd9\x82\x9b\x6d\x21\x9f\x0b\x7b\xac\xc0\x57\xc0\xbf\x33\x82\xf8\x5e\x6b\xd9\x0c\x8d\xbe\xd8\x0e\x6b\x5f\x3b\x20\xc6\x03\xa2\xc7\xe1\x7c\x2e\xb2\x5d\x9f\x24\xda\xbe\xb6\x72\xb6\x76\xb3\xda\x6f\xac\xdd\xde\x2f\xb8\x97\x1a\xee\xbd\x76\x84\x75\x1e\x2f\xf6\x53\x86\x7d\xfe\xbc\xd0\xa9\x9c\x14\x02\xaf\x9d\x09\x66\xf8\x05\x5f\x39\xa1\x6e\x37\x34\x27\x28\x9e\x74\x43\xd6\x84\x20\xa6\x33\xb1\x74\x0e\xa8\xb6\xd9\xe9\x06\xbb\xef\xc2\xf2\xbd\xff\xb0\xeb\x98\xcd\x95\xdd\xeb\x76\xdb\xa1\xc3\x0a\x3b\x1d\x88\x6c\x36\x12\x7b\xb1\xc1\x22\x68\xd1\x62\x3b\x04\x74\x99\x70\xf8\x5c\x3b\x58\xf8\x30\x94\x05\xa2\xe5\x0f\x39\xc1\x04\xac\xfd\xe8\x91\x9f\x26\x31\x7f\xe8\x47\x24\xd6\x75\x38\x6d\x39\xfe\xe3\xe1\x5f\xfe\x11\xfc\x23\xe8\xc4\xff\x59\x27\xef\x3f\xbc\x3d\x3c\x38\x79\xf6\x74\xdf\x12\xad\x4e\x2d\x49\x78\x5a\xf7\x04\x68\x9d\x63\xc6\xf0\xcc\xc2\x63\xf1\xcd\xc7\x13\x2b\x19\xe0\x2f\xba\xfd\x49\x6e\x75\x5f\xff\x29\xcf\x0a\x22\x9b\x45\xb7\xa6\x92\x2e\xc8\xe9\x84\x33\x9c\xff\x00\x72\xca\xda\xb8\x6f\x9b\x9c\x22\x6a\xd2\x56\x50\x32\xa2\xe2\x45\x15\xd7\xd5\x00\x7b\x75\xd7\x54\x6c\x9b\xe4\xac\xca\x1f\xc4\xa5\x2f\x73\x22\xac\xc7\x47\x99\x18\x8f\xcf\x86\xbf\x2c\xc7\xa6\xd2\x77\x4a\x68\xda\x0e\x1a\x12\x4d\x86\x43\xd5\x32\x5c\x80\x3d\xf8\xd3\xe2\x93\xb1\xf8\x70\xa4\xfc\x4b\xd8\x7a\x04\xa0\x85\x56\x1e\x7e\xb5\xc2\xbe\x23\x90\xf8\x84\xdf\xf8\x4f\xe4\x0d\x0d\x26\x1e\xd1\x79\x1b\x79\x76\x7b\xfd\x36\x9d\xc3\xa3\x0f\xc2\x90\x70\x88\x03\x1a\xce\xa0\x77\x23\x26\x1c\xa9\x11\xb9\x1f\x28\xf4\x8a\xf4\xf9\x55\x6d\x34\x37\x65\x48\xa8\xa3\xf6\x8b\xe5\x21\xca\x74\x22\x86\xa9\xab\xe8\x67\x9e\x9c\x95\xa9\xf6\x05\x84\xb4\xac\x52\xbf\xe4\x70\xcb\xa8\xa8\x29\x85\xb1\xa1\xff\xaf\xd0\x0b\x5e\xa6\x0f\xe7\xb5\xd1\x75\x39\x09\x69\x15\x33\x10\xe7\xc9\x05\xf0\xf7\x7b\x70\x20\x0f\xa3\xa2\x33\x48\x28\x49\x3e\x0a\xbe\x40\xaf\xd5\x76\x55\x25\x02\xd3\x49\x93\x7b\x48\x73\x54\xad\xe0\x5e\x0b\xb8\xf8\xe2\x60\x87\x38\xc8\x09\xd7\x2d\xc6\x28\xf9\x25\xc2\x86\xf2\xe4\xc5\xf2\x8c\x92\xd4\xa2\xa3\xdc\x97\x57\x95\xfb\x3c\x12\x34\xb6\x1c\xda\xf2\x4b\x04\x8d\x6b\xa7\xd5\x75\x40\x4a\x37\x6e\xb7\xfc\x48\xe4\xd8\xda\x47\x63\x19\x63\xc5\x65\xd8\xef\x6a\xcc\x5d\xe9\x4f\xbb\x8e\x65\x08\x70\x4e\xc2\x39\x6b\xd9\x8a\x2b\xb7\x23\x4f\x5b\xc6\x65\xd6\x75\xb0\x92\x6b\x62\x21\x53\xed\x17\x92\x88\xc9\x2d\x24\x62\x9b\x44\x76\x71\x6b\xe3\x1f\xd7\xff\xf8\xbe\x31\x71\xec\xeb\x7f\x04\xdf\xed\x76\x14\xea\xf5\x8f\xc0\x6e\x3b\xad\x70\x88\xd2\x16\xaa\x64\x5a\xaf\x8e\xdf\xbd\xe5\x62\x9c\x72\x08\xba\x63\xe4\x33\x48\x4c\x77\xf2\x23\xe7\xe1\x10\xba\x4f\x01\x03\x8f\x1e\x45\xdf\x64\xfc\xc3\x75\xbb\xad\x64\xf6\x47\x8f\x5a\x61\xde\x04\xaa\xcb\x6b\xfc\xf9\xe1\xa5\xa8\x14\xe0\x02\x86\xcf\x5b\xf2\x27\x61\xbb\x8b\x85\x25\x2d\xf4\x22\x3c\x0d\x23\xc5\xb2\x77\xa6\xde\xa7\x6e\x15\xca\x6a\x2b\xe4\x73\xfb\x75\xd1\x12\xa5\x48\xed\xb6\xfb\x19\xa3\xa0\x65\xdb\xed\x76\x3b\x16\x22\x7b\x9b\x19\x3f\x5c\x10\x21\x76\x33\xf6\x7d\xea\xae\xcf\xde\x76\x4d\x01\x30\xe5\x72\xa3\x35\x78\x93\x8a\xac\xca\x05\x77\xde\x64\xf8\xbc\x08\xe8\x3b\x22\xf8\x6a\x91\xb6\xdb\x1c\x49\x60\xc4\x15\x11\x86\x50\x19\x72\x5b\x1e\x26\x76\x3b\xb3\x91\xa3\xdd\xc0\x74\x52\xd1\x6c\x37\x31\x19\x98\x44\x98\x15\x4f\x2c\x9a\xd3\x77\x44\x7f\xe7\x00\xa9\x80\xa0\x87\x5d\x47\x8c\x49\xa5\x9c\xc8\xa7\x96\x0c\x66\xd8\x67\x49\xec\x98\x7a\x0c\x5e\xb7\xaf\xa3\x40\xd7\x66\xa1\x35\x19\xb9\xbf\x08\x31\x31\xc7\x67\x2d\xc8\x95\xd5\xf8\x88\xd7\x42\x59\x45\x58\x89\x1d\x06\xf2\x8d\x9e\x3d\x1c\xb2\xc5\x1c\xe2\xb1\xf5\x1e\x8e\x7d\x38\x62\x3f\x7e\x3c\x54\x9f\xb8\x54\x2a\x23\x29\x55\xf8\xc9\xc3\xde\x03\x34\x6e\xe5\xae\xba\x74\x0a\x66\xa9\x5b\xec\xe8\x6d\xc9\xe8\x82\x24\xa2\x9b\x64\x7c\xaa\x42\x13\x17\xd5\xdc\x39\xc1\x0c\xf3\x5b\x5d\x86\x95\xcd\x4d\x28\x06\xb9\x97\xb5\xf8\xed\xce\xe9\x99\x2e\xc7\x70\x2d\xf0\x61\x57\x05\xa3\xc6\xf8\x7f\xd8\xbb\xbe\x6e\xb5\x9f\xe4\x46\xd8\x4f\x49\x0a\x40\x1e\x8d\x74\x78\x2a\x32\x82\x1e\x50\x21\x0f\xba\x60\x3e\xf7\x17\x2d\xea\xa8\xf8\x4f\x9f\x0b\x95\xad\xe7\xea\x41\xf7\x1c\x05\x9e\xba\x05\x3a\x5a\x14\x28\x67\xca\x2d\xdf\x01\xc9\x74\xda\x8e\x7f\xdd\x56\xb7\x0a\x85\x21\x0e\x0b\x6e\x5f\xc7\xab\x95\xd2\x61\x5a\xc1\x50\x51\x21\x15\x26\x43\x39\xce\xbb\x71\x36\xfa\x37\x66\x89\xff\xfc\xa7\x78\xdb\x3f\xff\x39\x64\x0e\xbc\x6e\x8b\xab\xd7\x6b\x0a\x7a\x8e\x7c\xad\x41\x2e\xf0\xd9\x01\x42\xce\x96\x81\xca\xc1\x5f\x7b\x4f\x82\x4e\x6f\xbf\xdb\x76\xc8\xb0\xf7\x0b\xf9\xef\xe0\x17\xf2\xf8\x71\x1b\x9c\x92\x4e\xef\x4c\x0b\x8b\x26\x67\x0f\xa4\x6b\x94\xc9\x48\x67\x07\xc4\xa8\xe3\xa7\xe3\xd5\x6b\x31\xf4\x10\x3a\xc8\xfd\xa7\x8f\x66\x28\x45\xb6\x9a\xa3\x48\x9d\x45\x51\x40\x93\x7c\xec\x01\xfc\x6b\xf7\xd1\x23\x79\x7e\xcd\x7d\x34\x82\xad\xae\x03\xdb\xd7\x0e\x12\x2b\xaa\x8f\x14\xcd\x0a\xe6\x67\xc5\xb4\x59\x41\xae\x3a\x75\x7f\x09\xfe\x1b\xfe\x12\x3c\x7e\xdc\x66\xa7\x81\x3e\x97\xe0\xec\x41\x1c\xd6\x23\xd7\x57\x44\xc6\x44\xe7\xa2\x84\x3f\x32\x68\xca\xd1\x39\x2c\x12\xb4\x9b\x80\x46\xaa\xc5\x7e\x1a\x98\x07\xba\x28\x19\xc3\x04\x38\x24\x28\xa0\x90\xb0\x03\x76\x73\xb0\xe0\x3a\xb0\xc8\xe0\x31\x3e\xec\xa1\x0c\xbf\x7d\x8a\xbc\xc3\x29\x08\x26\x30\x02\x34\x0c\xe8\x14\x8d\x53\x70\x26\xa1\xe0\x2a\x0c\xfc\x10\x04\x01\x66\x96\xba\xd5\xc2\x01\xc3\x16\xb0\xde\x4b\xb6\x29\x80\xb6\x39\x29\x5c\x2b\xc8\x64\x9c\x7d\xbc\x4b\x1d\x3a\x04\x82\x4a\x1c\x7f\x08\xd4\x12\x39\x38\x7b\x57\x8c\xb1\x6a\x7e\x9d\xf1\xab\x2d\xa9\x01\x89\x52\xb4\x1e\x1c\x61\xaf\x4c\xfd\x59\x51\x4f\xe2\xa7\x44\xcc\x89\xfc\x14\x6f\xa9\x9f\x9c\x00\xff\xd3\x92\x13\xf8\x1c\x6f\x30\x39\x61\x15\xfe\xad\x7b\x2a\xa5\xaa\x67\x14\x6e\x40\xa2\xc1\x12\x51\x69\x56\x1a\xb4\x9a\x87\x41\xcb\x32\x2b\x1c\x8a\xeb\x76\x0d\xfd\xb7\x44\xed\xd5\x38\xbc\x04\xe9\x41\x62\xd6\x8b\x82\x35\x23\x8e\xb1\x46\xb5\x98\x39\x20\x52\x8a\x1d\xef\x46\xe3\x4f\xd3\x4a\x2f\xc8\x58\xfc\x31\xdf\x24\x64\x68\xdb\x8e\x8c\x1d\x4a\x6c\x0c\x4a\x3f\xda\x71\x40\x8b\x95\xd9\xe1\xcf\xb1\xb7\x70\x27\x90\xbd\x17\xd8\xe3\x48\x69\x75\x1d\x9a\xd1\x97\x59\xa4\x2f\xef\x70\x7d\x39\xcc\xea\xcb\xbd\x6e\x3d\x85\xb9\xd7\xd5\xfc\x7e\x72\xb9\x6c\x27\x4c\x22\x50\xb9\x2e\x9e\x0c\xba\x9d\x1d\x34\xd2\x09\x43\xb1\xd4\x2d\xc3\xac\xa4\x5c\x0e\xe5\x36\x77\x82\x21\x14\x1c\xe0\x81\xd0\xf1\x03\xa7\xd3\x7b\x38\x1c\xb6\xc8\xe3\x21\x72\x25\x87\x6c\x31\xe7\xbb\x64\xbb\x2a\x0a\x57\xe4\x99\xbc\x1b\xb7\xec\x6b\xbb\xad\xc2\x8b\x87\x7e\x8b\xb8\xa2\xba\x4b\x6b\xa3\xe5\xfe\xcf\x7f\x5c\xb7\x5b\xee\xff\x6c\xff\x3f\x1b\x6d\x67\xd0\xe6\x67\xc0\x69\xef\xcc\x09\x87\xe0\xb4\x7f\xf6\x80\x0c\x43\xb1\x85\x46\x43\x5a\x47\xc1\x5f\x5d\xb7\x97\x2a\xf8\x75\xfb\xc1\x28\x51\xe3\x47\x4b\xab\xf1\x5e\x4e\x87\x1f\x9d\x8e\x0c\x3a\xbc\xa7\x14\xf8\x51\xa1\x02\x7f\x7d\x9d\xd7\xd3\x97\x55\xd4\x5d\x02\xf1\x1c\x06\x87\xfc\x40\xe2\xda\x55\xec\x6e\xde\x7f\xd8\x7a\xa8\x26\xc2\x69\x97\x33\x44\xe9\x65\xf9\xf1\xa3\x85\x87\x1b\xb1\xec\x8e\xc9\x06\x12\xa1\xbb\x2d\x75\xf7\x8b\x93\x37\xaf\x9f\xf9\x22\x1a\xbe\xed\xa0\x61\x34\x08\x05\x63\x40\xd0\x8f\x1f\x71\x6a\x5e\xea\xf7\x47\x8f\x52\x5f\xc5\x79\xf2\x56\x2b\x9f\xc4\x37\xe1\xa9\xd4\xa8\xad\x63\x71\xcb\x7b\x38\xc3\x0c\xea\xf7\x9c\xd9\xc3\xe1\x10\xc5\xda\x4a\xab\xed\xe0\x1f\x3f\x48\xc6\x1a\x11\x56\x4b\x0a\xe9\x33\xfe\xa6\xd5\x77\x35\xef\x13\x78\xc5\x9e\xca\x77\x66\x0e\x31\x44\xd5\x76\x32\xaa\x01\x6c\x28\x12\x19\x07\x5c\xf2\x73\xcf\x17\x0c\x4a\xc9\x5b\x0a\x81\x8f\x87\x4a\x71\x1b\x13\x3c\x3b\x9c\x02\x72\xc8\x77\x25\x3c\x0d\xce\x12\xc9\x4f\x84\xb6\x34\xb0\x07\x5c\x4d\x49\x47\xd5\xdc\xab\xa5\xf3\x32\x5d\x65\xe1\x02\x2a\x53\x34\x2f\x40\x54\x4c\x80\x8b\xab\x0f\x80\x0b\x83\x70\x26\xcf\xde\xa1\xfe\xe5\xc7\x8f\x87\x3d\x07\x70\x75\x71\x8c\x26\xa1\xbc\xfe\xb0\x1b\xd5\x01\x44\x42\xc9\x6b\x01\xb1\x6d\xd4\xb5\xb6\x53\xb4\x3c\xc0\xfd\x02\xb9\x92\x73\xbd\xa6\xf3\x3c\x48\xc9\xea\xfa\x39\xd6\x4a\x4b\x5f\x68\xdc\x7a\xd8\x4a\x64\x0a\x3c\xb6\x58\xbb\x6d\x14\x51\x94\xe0\xcc\x95\x6d\x0b\x58\x02\xef\x16\xa0\x16\x88\x85\x3f\xbb\x7d\x2d\xbd\x02\x5c\x99\x8a\xdd\xe0\x0f\x62\xaf\x35\x74\x5a\x60\x78\xfa\xfd\x0b\x5c\xec\xdb\x23\x30\xe7\x82\x8d\x2d\xed\x24\x29\x87\x95\x14\xfa\xaf\xa6\x64\x08\xaf\xaf\x1d\x79\x3b\x38\xc7\x84\xe5\x6e\xd6\xee\x55\xea\x1c\xff\xe8\x8a\x9b\x39\x47\x39\x6b\x3f\x7a\xc4\xb8\x14\x18\x4b\xef\xa0\xed\x50\xf1\x9b\x43\xdb\x0e\xbc\x6e\xd5\xcd\x5b\xc2\x1e\xa4\x9d\x31\x26\x1d\x91\xbc\x71\x4b\x19\xc4\xa7\xd0\xe5\x2f\x3e\x7b\xa0\x52\x7b\x28\x97\x6d\xe4\x27\x23\xb7\x67\x52\xdc\x95\x8e\xd7\x90\x33\xd2\x07\x89\x7d\x09\xcf\xe6\x60\xc4\x5a\x6d\x37\x0c\xd0\xd7\x56\xd1\x29\x64\xdb\x8f\xe1\x75\xbb\x24\xf1\x50\x08\x08\x69\x35\x45\xfd\x94\xdc\x29\x37\xc4\x06\x0c\x2e\x10\xc1\x81\x21\x0b\x7c\x9d\x79\x59\xf6\x9c\x60\x2f\x94\xf4\xf7\x70\x38\x8c\x25\x21\x57\x7b\xfd\xa3\x47\xf1\xcf\xa7\x91\x56\xe5\xa3\xce\x0c\xc9\xda\xb6\x8f\x1e\x3d\xec\xe9\x8f\x9a\xee\x71\x61\xc0\xf7\xb0\xe7\x44\x4e\x1e\x95\x15\xf2\xe3\x07\x78\x12\xfb\xc4\xf6\x15\xd3\x14\x18\xf9\xf1\xc3\x94\xa2\x5e\x62\x75\x96\x55\x9b\x3b\x5e\x48\x54\xe8\xab\x8e\xe4\x19\x96\x99\xf8\x0a\x34\x14\x08\x53\x15\x5e\x93\xa7\x3e\x47\x83\x91\x84\x9d\x4b\x62\xef\x1a\x93\xd8\xbb\x7a\x12\x7b\xf7\x6c\xbf\xeb\xe4\xcd\x40\x75\xf3\xdf\x03\x6a\x73\xdd\x3a\xfb\x74\xdf\xf8\x74\xff\xec\xd1\x23\xfd\x9b\x83\x87\xdf\xaf\x1f\xf0\x31\x86\xc3\x61\xf0\xa4\x85\xdd\x00\x04\x98\xc2\x11\x0e\x3c\x3a\x84\xff\xd5\x83\x03\x07\xbb\x33\x34\x22\xf1\x8f\xba\xc7\xfb\xbf\x7a\x70\x7b\xa3\x07\x07\x6d\x07\xa6\x7e\x97\xee\xf1\x7d\x7b\x36\x93\x03\x3f\x7a\xd4\xca\x8c\x22\x87\xce\x3d\x35\x68\xb7\x55\x40\x66\x20\xa0\x7a\x28\x1e\x16\xe3\xf0\x8f\x3f\x7e\xb4\xc8\xd0\x9e\x51\xbb\x1d\x59\xbb\x62\xf2\x8d\xc8\xa0\x05\x1d\xd2\x7e\x00\x94\x38\xc8\xe5\x2e\x14\xbc\x91\xc4\xd0\x8e\x24\x31\x19\xa6\x6c\xe4\x09\xf8\x14\x9e\x0d\xd1\x29\x3c\x6b\x45\x3e\xf7\x70\x08\x5c\x02\xbd\x70\x04\xf3\x27\x01\x3e\x65\x22\x5b\xfa\x2c\xd2\xca\xe3\x1f\x1e\x40\xc9\x5c\x68\x2b\x70\x98\xe3\xb7\xdb\xd7\x89\xa7\xed\xf4\x4c\x64\x33\x44\x8e\x9f\x48\xd9\x0f\x95\x68\x68\xd9\x31\x1f\xa2\xd2\x29\xa7\x52\x21\x68\x38\x1e\xa3\x2b\x11\x6e\xe8\xb7\x23\x7b\xcb\xe9\xf7\x40\x94\x1d\x59\x40\x40\xa8\xed\xc8\x7b\xe4\x57\xdb\x89\xa6\xbe\xff\xb0\xeb\xcc\xfd\x90\x00\x1f\x7d\xe3\xdb\x92\xd3\xb1\xa3\x1e\x9c\xe1\x80\x4d\xb5\x27\xc5\xf7\x7a\x8f\x7a\x60\xa1\x3d\xe8\x81\x45\xbd\xc7\xa6\x38\xd4\x41\x9d\xda\x8e\x8f\x83\xc9\x71\xf4\x15\x87\xa5\x90\xf7\x12\xc8\x51\x10\x32\xa8\x83\x9e\x1e\x49\x5e\xaf\x37\x96\xa2\xcb\x64\x2c\x9a\x1e\x4b\x5e\xaf\x0b\x97\xef\xa3\xdc\x80\x33\x5a\xf7\xe9\x64\x9b\x24\x4f\xff\x7f\xff\x6f\xea\xf1\x5e\xe1\xe3\xda\xfe\x4d\x9e\x0e\x2a\x1e\x3e\x73\xd2\x71\x47\xb1\xed\xfe\x01\x1d\x82\x47\x8f\x98\x9b\xa0\xe2\x49\x6f\x38\x1c\xc2\x27\xfa\x4f\x32\xe4\x2f\x1a\x93\xeb\xc1\xda\xc5\xf6\x3e\x3f\x2b\x20\x1f\x44\x7f\xeb\x93\xfc\x33\x54\xdd\x1f\x7d\x52\xee\x81\xf4\x73\x3f\x7e\x64\xe0\xc9\x25\x5d\xc3\x38\xe4\xce\x7f\x62\x5b\xf6\xbe\x9d\xc4\xe0\xd1\xb2\x93\x1a\xcd\x3b\x73\x20\x0e\x8f\x5b\x11\x56\xe0\x93\xb8\x62\xc9\xbe\xdd\xde\x3f\x8d\x6d\xde\xdd\xe1\x70\x18\xc9\xd6\x4f\xbe\xab\x5e\x9d\xfb\xd0\xe1\x10\xed\x4b\x96\x7e\xbd\xdf\x37\xde\xc4\x4e\xbb\x67\xf2\x3e\x76\xda\x3b\xbb\xde\x87\x32\xe2\x8e\x7e\x42\x6c\xda\xb2\x4f\xed\xb6\x76\xab\x4b\x95\x21\x9f\xc5\xba\x6b\xa4\x9b\xee\xdb\xed\x68\x94\xe4\xe2\xd9\xf5\x7e\x01\x30\x25\x38\xcd\x27\x9c\x1b\x0d\xb6\xf3\x9b\xab\xe3\x53\x96\x4f\x90\x24\x42\x04\x2e\xfe\xf2\x24\x70\x39\xb8\xad\xb6\xb4\x74\x71\xa8\xda\x2d\xe8\x3c\xec\xb6\x53\xaa\x55\x89\xd4\x1b\xb5\x97\xe2\x5a\x5a\x07\x78\x60\xce\xe0\x6d\x09\xc0\x49\x3e\x3b\x8d\x6d\xc7\x91\xe8\xab\x0e\x3d\x0f\xca\xb0\x4c\xb5\xc8\xff\x08\xfe\xc1\x15\x90\xe2\xd9\x04\xb8\xe3\x0b\xdb\x53\x7e\x0a\x7a\x51\xa3\x0d\x35\x51\xba\x21\x5f\xb7\xce\x95\x84\xee\xdb\x77\xff\x7c\xfd\xec\xe0\xe9\xb3\xf7\xd1\xaa\xea\x3f\xd9\x6f\xb1\x35\x92\xdd\x4a\x2c\x09\xaa\x1d\x17\x3b\x3a\x90\x50\x09\x55\x2c\x76\x3a\xab\x05\xda\x37\x3c\x58\xb7\x22\x83\xa8\x05\xbd\xb8\xa5\x55\xcd\x12\xac\x30\x25\xaa\xca\xfd\x3e\x24\xcf\xb9\x96\x09\xe6\x73\x5f\x19\x4e\xec\xb6\x32\x4d\x49\xe0\x58\xbb\x6c\x6b\xaa\x89\xc4\x7d\xb7\xcb\x83\x64\x33\xfa\xdc\x1a\xd7\xb8\x62\x83\x0a\x75\x3b\x15\x46\x17\xb4\x5d\x14\x8c\xfc\xd0\x83\xb4\x65\x6f\x76\x07\x76\xac\x7e\x3f\x50\x49\x19\x7a\x2b\x72\xb9\x7f\x4d\xdd\xa9\xe4\xcc\xe6\x71\xe6\x88\x6c\xec\xd1\x89\x3a\x78\xdc\xec\xda\x16\x87\xf6\x7e\x9f\xc0\x5c\x06\x4c\x10\x59\x97\xf4\xde\x23\xee\x04\xb2\x97\x0c\xce\xb4\xc4\x9a\xe0\x89\x66\x14\x0d\xda\xfb\xec\xda\xa1\xfa\x68\x7a\xee\x97\x69\x44\x1a\x8d\xe8\x88\x71\x92\xd8\xf8\xa0\xdd\x76\x82\xeb\x52\x45\x57\x43\x24\x9d\x62\xc2\x3a\x61\x88\xbc\xdb\xda\x21\x35\xc2\xa3\xb5\xe0\xe7\xe8\xdc\xed\xd8\xed\xd3\xee\x59\xed\x59\xb1\x85\x0f\xe3\x54\xc0\xbb\x9f\x57\x3a\x03\x4a\x3a\x8e\x6d\x3b\xb6\x60\x88\xec\x25\x05\xcd\x17\xb8\xa0\x2d\xd6\x36\xa8\x31\x41\xca\x72\x17\x9f\x1c\x42\x75\x09\x1e\xdb\xfb\xf6\xe3\x96\x2d\xfb\x28\x27\xf1\x26\xe0\x09\x70\x19\x7e\x8e\xae\xa0\xd7\xea\xb7\x1f\xdb\xf3\x2b\x7b\x1f\xb4\xdb\x8e\xd4\x6c\xd4\xf1\xf2\x8b\xcd\x49\x26\xc9\xee\x6a\xd7\x46\x73\x38\xeb\x80\xc9\x84\xc0\x49\x4e\xab\xbf\xd5\x7d\xa8\x09\x94\x8e\xed\xfe\x2f\x08\x46\x53\xd7\xd6\x8a\x97\x55\x90\x98\x3c\x74\x8d\x38\xd7\x22\x4c\x1e\xb3\x6b\xa7\x5b\x1b\x35\x97\x20\x67\x4b\xaa\xe1\xf2\xbe\x04\xa8\xa4\xc8\x99\x66\x06\x6e\x64\x90\xca\x7b\xb7\xe3\x28\x1b\x7f\x68\x08\x52\x92\x6e\xe8\x47\x8f\x54\x0d\xdb\xec\x85\xd8\x3f\xfd\xc4\x14\xed\x25\xef\x84\xd7\xfb\x26\x5f\xcd\xa3\x47\x25\xaf\x83\xae\xe6\xe0\x18\x0e\x87\xf1\xef\x0f\xa3\xcf\x89\xb1\xf3\x49\x04\xdb\x7e\xfc\x42\x91\x4c\xbc\x04\xa1\x89\x95\x92\x75\xc8\x0d\xdb\xba\x89\x27\x95\x2b\x2d\x62\x8b\x4a\x77\x73\x6c\xbb\xa9\xed\x47\x65\x59\x3f\x2a\x93\x7e\x54\x96\xf1\xa3\x0e\x43\x93\xdd\x29\x3c\xed\x9d\x3d\xe1\x7f\xf6\xfb\x70\xa0\x9c\xa7\x89\x7b\xdb\x56\xb1\x91\xc3\xe1\xd0\x6f\xd1\xf6\xa3\x47\xad\xc8\xda\xc7\x77\x01\x15\x95\x7a\xdb\x71\xb5\x17\x7e\x94\xe3\x1f\x3f\x52\xe6\xc0\xf6\x77\xa6\x1c\x5f\x7b\x69\x37\xa6\x82\x72\xd3\x61\x91\x83\x56\x3e\xf7\xfe\xf8\xe3\x91\x0b\x7c\xbf\x75\x1a\x65\x53\x11\x28\x0c\x24\x12\xdb\x2d\xe8\x50\xe7\x3b\x81\x3e\x06\x1e\x57\xb2\x95\x70\xfa\x4e\x94\xec\xa6\xfb\xdf\xc5\xc2\x88\x0b\xe7\x98\x30\xd9\x89\x01\xf1\xdd\x97\xae\x39\x44\xda\x67\xb1\x27\x37\x02\x70\x53\xf7\xcc\xed\xed\xa7\xe1\xdc\xe3\x2b\xda\x1d\x32\x55\x3e\x68\xb3\x1d\xc1\xdd\x1b\x88\x2b\x71\x05\xa0\xf8\xb1\xc8\xf5\x2b\x06\xb5\x9d\xde\x5e\xe2\x0b\x4c\x0f\xdd\xdb\x74\x50\x64\xa2\x77\x18\x9f\x2b\xa2\xd3\x56\x6f\x33\xba\x3f\x86\x70\x90\x72\x1d\x1a\x92\xbc\x58\xe2\x3a\x64\x51\xb1\xa1\x4d\x67\xcf\xe9\x6d\x3a\xbd\x9d\x54\xc9\xa1\xeb\x84\x86\x7d\xc1\x86\xe9\x14\xcd\xd7\x45\xc9\xbe\x43\x1c\x74\x73\x94\xec\x0f\x91\x89\x92\x11\xa7\x64\x14\x51\x32\x49\x53\x72\x54\xa4\xa8\x9c\x44\x77\x8d\x24\x3a\x88\x96\x7a\xbb\x8c\x44\x15\x21\x72\x91\x9d\xea\x3c\xc9\x15\x35\x61\xdf\x82\x19\xe4\x47\x05\x27\x5b\x1d\xe5\x2d\xea\x40\xc7\x48\xb4\x24\x47\xb3\x7e\x4c\xb3\xdb\x31\xcd\x0e\xd2\x15\xaf\xd2\x80\xef\xa6\x69\x76\x90\xd0\x6c\x5f\xa7\xd9\x7e\x31\xcd\xee\xb6\xf3\x74\x2d\x69\x76\xe0\x10\x03\xcd\xc6\x95\xb0\x62\x08\xfb\x29\x9a\xdd\xad\x47\xb3\x03\x67\xd7\xe9\x0d\x9c\xde\xb6\x99\x66\x0f\x7c\x7f\x65\x52\x55\xe6\x2f\xc7\x77\xc8\xcd\x51\x2a\x1d\x12\x93\x9b\x80\x9c\x76\xcf\x9e\xf0\x3f\x82\x52\xfd\xdb\xa6\x54\xce\x4c\x0f\x7c\xbf\x05\x9b\xf2\x51\x3f\xcf\x47\xe9\xfd\xa2\x49\xff\xd6\x69\x52\x55\xb5\x10\xfe\xb2\x24\x69\xff\xe0\xe8\xc8\x15\x45\xfd\x51\x30\xf9\x3d\x84\x04\xc1\x12\x37\xd7\xd7\x79\x87\x42\x82\x84\x99\x74\xcd\xd2\x70\x3c\xae\x97\x04\xe3\x0f\x53\x17\x44\x08\x53\xf4\x39\x36\xc1\x24\x3f\x19\x83\x67\x94\x59\x32\xa3\x43\xc2\xf6\xbe\x6d\x5f\xab\x68\x89\x94\x1b\x36\x09\x58\x4f\xc5\xf4\x68\x3e\xd8\x4b\xc4\xa6\x38\x64\x2d\xdb\x6e\xab\xd8\xc3\x58\x88\x3e\x3d\x53\xe6\xb9\x04\x28\xf6\xa0\x70\x72\x4b\xea\x8e\x2d\x4d\xb4\x2f\x17\xd7\x09\x9c\xe1\x0b\xd8\x21\xaa\x07\xcd\x8d\x2b\x2f\x51\x30\xe8\x03\xe6\x72\x15\x25\x75\x78\xe4\xef\x04\x43\xe6\x7e\x41\x81\xf7\x40\x45\x7a\x8a\x60\x01\xe8\xf0\x9f\xf6\xc1\xb5\xac\xce\x25\x2f\x88\x96\x06\xdf\x91\xb7\xcf\x64\xd6\xac\xa8\x86\xc6\xe5\xe2\x7d\x66\x3e\xbe\x1c\xa2\xbd\x9a\xee\x07\xe5\x8a\xcf\xa9\x50\x4a\xcf\x86\xf2\x3d\xf6\x14\xd0\x37\x20\x58\x88\x0a\x23\x02\xc0\x27\xa7\x67\x32\x15\x84\x6b\x95\xdf\x25\xc6\xa1\x1b\x06\xf2\x80\x14\x92\x1e\x2b\x5b\x06\xa1\xac\x4f\x42\xe4\xc1\x0d\xe5\xef\xee\xcc\x20\x03\xfc\x6d\x37\x19\x0a\x94\xfc\x10\xb9\xe5\xde\x72\xb8\x6c\xc7\x07\xc1\x64\xdf\x9e\x60\xfe\xaf\xed\x78\x90\x8e\xd4\x25\x0b\x89\x88\x10\x1f\x5e\xa1\x73\x1f\x3a\x96\xe8\xbe\x34\x27\x88\xc2\xce\x84\x00\x0f\xc6\x76\x4a\x3a\x9a\x42\x0e\x01\xb1\x3c\x48\xd1\x24\x90\x7d\xdb\x20\xa0\xc8\x5f\x58\x28\x60\x70\x42\x00\x83\xfc\x13\x4e\x9a\xab\x5d\x62\xf2\x65\xec\xe3\x4b\xea\x5a\xf2\x6d\x23\x10\x58\x24\x0c\x2c\x60\x79\xe8\x02\x12\x0a\xc5\x2d\x1c\xab\x16\x1e\x5b\xc2\xf5\xc4\xb9\xcd\x05\x1a\x41\xc7\x3a\xe7\x3b\xcd\xb1\x46\x38\x60\x00\x05\x50\xb6\x00\x04\x81\x27\xa2\x6b\x33\xbf\x26\x56\x48\xea\xda\x8e\x68\x8e\x11\x77\xd8\xbd\xbc\xbc\x74\xc5\xfa\xcc\x09\x16\x18\x46\x78\xc3\x8e\x1d\x56\x27\x90\x10\x30\xc6\x64\x66\xc6\x52\x7c\x59\x62\x8a\x61\xec\x8b\x36\x84\xe7\x21\xf2\x3d\x14\x4c\x1c\x6b\x34\x05\xc1\x44\x7c\xe2\xb0\x8d\xf0\xec\x1c\x05\x7c\xf2\x28\x18\x13\x90\x84\x04\x53\x30\x86\xfe\x42\xdc\x03\xc7\x63\x34\x42\x30\x60\xfe\xc2\x08\x2c\x8b\xde\x99\x86\xf4\xa3\xf4\x60\x98\xa0\x3c\x48\x00\x93\x1d\xca\xa8\xd6\x1b\x8b\xaf\xea\x88\x2c\xc4\xd9\x29\x23\x80\x62\x14\x73\x68\xe6\x04\x5d\x20\x1f\x4e\x60\xdc\x9f\x5a\xeb\x15\x66\x80\xee\x82\x83\x61\x44\xa5\xc8\x3b\xf7\xcd\x10\xca\x6b\x12\x89\x1e\xe2\x6c\xf9\x3c\x14\x0d\xb3\xa7\x68\x32\xe5\x78\xb9\x00\xc8\x07\x82\x06\x39\x50\x7c\xa7\x58\xb2\x17\x98\x05\x2e\x45\x73\x65\xec\x87\x52\x3a\xc2\x71\x79\x25\x89\x70\x19\xce\x05\x53\x44\x10\xf5\x35\xf6\x16\x01\x98\xa1\x91\xa3\xbf\x33\xb3\x32\xc6\x25\x18\x09\x70\xb3\xf8\x9f\x10\x10\xc4\x2b\x40\xc2\xf3\x45\x34\x3b\x75\xa9\x80\x46\xe4\x8c\x22\x00\xf8\x0f\xaa\xe9\xb3\xe8\x5c\xa6\x99\x39\xcc\xb4\x7b\x21\x07\x0f\xe7\xfc\x94\xd0\xe0\x39\x52\xd5\x25\x4c\xe8\x96\xd7\x32\xf0\x88\xa4\x35\x41\x9a\x9e\x6c\xb6\xe8\x5b\x33\x30\x9a\xa2\x00\x5a\xa2\x7b\x8c\xec\x10\x3e\x0b\x7d\x86\xe6\x3e\xb4\xe6\x3e\x60\xa2\x3b\x84\x35\x26\x78\xc6\xc9\x06\x05\x13\x9f\xaf\x44\x48\x46\x30\x46\xbc\x2c\xdd\x66\x02\x7c\x2e\x80\x90\x48\x3c\x2b\x66\x96\x2a\x6f\xf4\xb6\x8c\x9a\x22\xb7\x24\x91\x3f\x55\x62\x63\x2b\x6d\xa5\xa6\x90\x9d\x48\xb0\xf4\xb8\xf8\xa0\x65\xab\x5f\x39\xbb\xd2\x2d\x74\x33\x6a\xc1\xab\x11\x84\x1e\x14\x95\x1d\x1c\x58\x7e\x4c\x8b\x66\x7f\x19\x81\xca\xd1\xc2\x98\xa4\xd8\xd2\x99\x42\x7f\x0e\x09\xcd\x3e\xb4\xb2\xfb\xa3\xf0\x81\xd8\x4d\xfa\x3d\x09\x9b\xe4\x62\x76\xc6\x29\x10\x0b\xa2\xea\x7e\x51\xf0\xae\x68\xae\xd2\x00\x78\x4f\xd6\xb6\x68\x65\x59\xcb\xfe\x04\x10\x67\x0e\xe9\x55\x2d\x5f\x4c\x83\xa1\x32\x93\xc0\xc8\x85\x4b\x55\xc3\xac\xf4\x29\x36\xf4\xf0\x48\xa8\x79\xae\xc8\x94\x3d\x86\x32\x5e\xac\xf5\x17\x2e\x37\x9c\xf2\x0d\x3f\xb4\xff\xf2\x18\x3e\xfe\x8b\x7d\xf6\x97\x36\x97\x89\x0e\x98\xe2\x67\xad\xb8\xf3\x5d\xdb\x09\x86\xdf\xa3\xd8\x36\x4d\x96\x0d\x03\x48\x47\x60\x2e\xcb\x74\x45\x5a\xa4\x19\xf1\x41\x31\xe2\x03\x25\xfa\x82\x7c\x92\xd6\x5f\x44\xe1\x3b\xd1\x61\x95\x40\x10\xf1\x64\xc9\x36\x38\xfc\x16\x03\x13\xd9\x74\x9a\x4f\xc4\x52\x13\x71\xff\x22\xb0\x4a\x64\x65\xb9\x13\x48\x19\xfd\xf1\x83\xc0\xaf\x21\x22\x3a\x92\xc1\x7c\x6e\xb7\x73\x4d\x1b\x32\xfa\x0b\x27\x52\x19\xfb\x77\x3c\x82\x01\x20\x08\xef\xdb\x74\x06\x7c\xff\x50\xca\x2f\xb6\xba\xfa\x09\xb1\x69\xdc\x7a\x42\x7b\x8a\xff\x2e\x3b\xf9\xa7\x7f\x7b\x0f\x27\x42\xe3\xe4\x18\x78\xf0\xff\x07\x00\x00\xff\xff\x5f\xcc\xdc\x6a\xae\x61\x09\x00")
+var _distAssetsNomadUi3f5aade8a94ca946d42dfb0ab70ffee0Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7b\x77\xdb\x38\xb2\x20\xfe\xbf\x3f\x85\x8c\xdd\xf1\x8f\x9c\x86\x68\xca\x6f\xb3\x47\x9d\x9b\x8e\x93\xe9\xf4\xcd\x6b\xed\xf4\xcc\xde\xe3\xd1\xce\x81\x49\x48\x42\x9b\x02\x34\x00\x64\x5b\x6d\x6b\x3f\xfb\xef\xe0\x41\x10\x7c\x48\x96\x9c\xa4\x93\xbe\x3b\x3d\x67\x62\x91\x04\x0a\x85\x42\xa1\x50\x55\x28\x14\xc0\x4c\xe0\x8e\x90\x9c\xa4\x12\x6c\x65\x78\x48\x28\x0e\x00\x65\x13\x94\x75\x67\x64\x17\x65\x68\x2a\x31\x17\xbb\x68\x84\xa9\x04\xf0\x12\xe0\xbb\x29\xe3\x52\x00\xd8\x56\x68\x3a\xcd\x49\x8a\x24\x61\x14\x0c\xe0\x70\x46\x53\xf5\x33\xc0\x50\x86\xf7\xc5\x53\x87\x06\x38\xbc\xe7\x58\xce\x38\xed\x94\x45\xc2\x7b\x32\x0c\x9e\x73\x8e\xe6\x11\x11\xfa\x6f\x80\xc3\xf0\x7e\xc8\x78\x70\x83\x78\x47\xf6\x63\x48\xfb\x14\xdf\x76\xec\xb7\x28\xc7\x74\x24\xc7\xe1\xf7\xf2\x2f\xc5\xef\xef\xe5\x77\xdf\x85\xf4\x52\x0e\xfa\xf8\x52\x0e\xb6\x6c\x13\x74\xb1\x08\x70\xf8\xf0\x50\x6b\xea\x62\x3e\xb9\x62\x79\x44\x24\xe6\x48\x32\xde\x21\xb4\xf3\xfe\xea\x57\x9c\x4a\x5d\x18\x5c\x32\xfd\xd0\x79\xce\x47\xb3\x09\xa6\x52\x0c\x40\xbf\xdf\x37\x25\xa2\x29\x67\x92\xc9\xf9\x14\x47\x92\x5d\x48\x4e\xe8\x28\x4a\x51\x9e\x2b\x84\x6d\xa3\xa6\x23\x43\xce\x26\x01\x0e\x6b\xed\x87\xf7\x72\xcc\xd9\x6d\x47\x75\xe6\xe3\x7c\x8a\x5f\x72\xce\x78\x00\x5e\xd3\x1b\x94\x93\xac\x83\xa4\xc4\x93\xa9\xec\x48\xd6\x11\x53\x8e\x51\xd6\xa1\x8c\x76\x35\x9e\x57\x39\xee\x10\x2a\x24\xa2\x29\x06\xe1\x22\x08\x17\x16\x21\x33\x6c\x1f\x38\x9b\x62\x2e\xe7\x01\x86\xe0\x9f\xff\xc4\xe2\x2d\xcb\x66\x39\x06\xf0\xfe\x06\xe5\x33\x9c\x6c\xc7\x8b\x10\x62\x55\x16\xcd\x72\xd9\xbf\x61\x24\xeb\xc4\x5b\x8a\xb8\xa8\x2f\x8b\xd7\x11\xbe\x93\x98\x66\xc1\xfd\x14\xc9\xf1\x2b\xc6\x15\x82\x89\x87\xba\xe9\x1f\xd0\xdc\xb0\x3b\xc1\x93\x2b\xcc\x05\x58\xc0\x19\xcf\x5f\x31\xfe\x8a\xd0\xec\x1c\xa7\x8c\x67\x7e\x15\xd5\x02\xee\x1b\x8a\x94\x94\x13\x39\x49\xb1\x21\x1b\x2a\x68\x1c\x9a\xb7\x41\x2f\x2c\x06\x4f\x8e\x89\x88\x4a\xe0\xcf\xf3\x3c\x52\x3c\x36\x0f\xd4\x07\xa8\xc6\x32\x5c\x2c\xc2\xad\xb2\x57\x68\x11\xc2\x15\x4c\x9c\xe7\xcc\xb2\xe7\x23\x9c\x7c\x8b\x64\x3a\x56\x04\xf7\xbf\xce\x24\xc9\xc5\x2e\xca\xb2\xae\x64\x5d\x45\xa0\x1a\x93\x43\x1a\xde\x7f\xb9\x11\x11\x92\x4d\x13\x9f\x8b\xcd\xbc\x70\xd4\xb3\xb3\xe0\x87\xde\xce\x8e\x81\xb4\xdd\x2f\x3f\x5e\xf6\x06\xcf\xfc\x87\x04\x7c\x78\x7f\xf1\x11\x6c\xd5\xe7\x21\x32\x60\x45\x3f\x88\x21\x2d\x50\x08\x83\xda\x38\x98\x41\x0e\x50\x44\x32\x08\x3c\xa2\x86\x10\x57\x87\x0e\xfd\x8a\xee\x02\x01\x65\xb8\x58\x04\x60\x57\xf5\x00\x84\x90\x63\x21\x11\x97\x49\x55\x3e\xa8\x66\x69\x1f\x80\x28\x65\x34\x45\xd2\x34\x39\x66\x42\x3e\x3c\x80\x5d\x10\x56\x5e\xcf\x78\xfe\x81\xe3\x21\xb9\x0b\xc2\x10\x22\xaf\x12\x85\x60\x37\xcd\x89\x62\xce\x12\x2d\xaf\x36\xd6\x18\xef\x5a\x0c\x40\x0b\xb2\x08\x82\x0f\xbf\x7c\x04\xf0\x3e\x43\x12\x25\x72\x67\xe7\xfe\x23\x12\xd7\xef\xd0\x04\x27\x72\xb1\xd8\x8c\xdb\x3c\x69\x58\x61\x37\x3d\x6d\xba\xaa\x81\xb2\xb0\x42\xa9\xc9\x6b\x29\xcb\xb0\xe8\x0e\x19\xef\x62\x25\x25\x9a\x05\x38\x9e\xb0\x1b\xdc\xe5\x7a\x40\x9a\x9f\x29\xeb\xe6\x18\x65\xb8\xa8\x5f\xe7\x57\x88\xa0\xf8\x24\x9e\xc5\x11\x45\x13\x2c\xa6\x28\xc5\x05\xff\xfa\xaf\xc0\x4d\x0f\x68\x86\x66\x2d\x0c\xed\x8a\x25\xaa\x18\x14\x73\x21\xf1\x24\x79\xa9\x88\x13\x11\xaa\x51\x12\x98\xdf\x28\x89\x10\x42\xc9\xae\x31\x5d\xf6\x71\xac\xfb\x28\xec\xe7\x94\x4d\xa6\x33\x89\xb3\x00\xe8\x4a\x91\xc0\x29\xc7\x12\xc0\x86\x4c\xd2\xa3\x3e\xc2\xb2\x56\x30\xdc\x22\xc3\x00\x5b\x51\x7e\x0f\xfe\x77\xf7\x9d\x26\xea\x47\x55\x06\x24\x78\xb1\x08\xe1\x18\xd1\x2c\xc7\xe7\x58\x4c\x19\x15\x38\xa9\x0b\x01\xcb\x55\x87\x71\xdc\xef\xf7\xf1\xce\x0e\xed\xf7\xfb\x22\x7a\xf7\xfe\x9f\x6f\x5e\x3e\x3f\x7b\x79\xfe\x4c\x89\x7e\x51\xd0\x23\xd1\x68\xfc\x53\xcc\xa6\x98\xfb\xd2\xad\x14\x8b\x0b\x38\x34\xc2\xaf\x29\x89\x3b\x8f\x56\x8e\x52\x25\xca\x82\xda\xf2\x57\x9d\xde\x38\x8c\x08\x4d\xf3\x59\x86\x45\x00\x0e\xe3\x1e\x28\x16\xb2\xcb\xc1\x96\x59\xac\xf0\x22\x5c\x40\x35\x41\xde\x4f\x15\x14\xd1\x3a\x79\x1b\xa2\x68\xaf\x55\x14\xed\xf9\xa2\x68\x6f\x90\xdc\x2f\x14\xc1\x69\xa4\x26\xc4\xc3\x83\xfd\xd1\xbf\x5f\x84\xb0\x1c\x20\xc3\x1c\x91\x18\xb3\x59\x9e\xbd\x36\xb8\x9e\xe3\x91\x16\x3a\xa6\x79\xd4\x6f\x94\x46\xa9\x24\x37\xae\xd8\x16\xda\xd9\xb1\xc0\x23\xae\xdf\xf5\x51\xb8\x68\x92\xd1\x0e\xa2\x21\xfa\x4f\x48\xbc\x45\x74\x5e\x1b\x61\x35\x69\xd6\xa6\xbf\x1c\x63\x5a\x92\x9f\x1a\x6c\x59\x5f\x44\x6a\x1d\x84\xbc\x2f\x23\x33\x7b\x23\x42\x6f\x30\x17\xf8\x15\xe3\x81\x88\xae\xf1\xdc\x49\x27\xbe\xb3\x83\xa3\x29\xc6\xd7\xcf\xf3\x3c\x60\x61\x34\x24\xb9\xc4\xbc\x32\xa4\xb6\x24\x36\xfd\x77\xf2\x90\xeb\xb9\x08\x41\x44\x32\x10\x86\xfd\x7e\x5f\x46\x24\x5b\x84\xd1\x90\xf1\x97\xc8\xe7\x0a\x19\xde\x07\x31\x44\x1e\x4b\x28\xa1\x1d\x42\xaa\xc6\xbd\xb1\xba\x73\xfb\xea\x97\x69\x86\x24\x2e\x5e\x2e\xc2\x2d\xa7\xe4\x71\x8f\x2f\x20\xea\x5f\x0e\xa0\xe8\x9b\xd9\xa9\x10\xd4\x24\x02\x4a\xb8\x83\x10\xb2\x7e\x5d\xa6\x3b\xa9\xac\x06\xac\x2f\xa3\x14\x4d\x70\x4e\x7e\xc3\x41\x18\xee\xec\xa0\x68\x3a\x13\xe3\x80\x86\x10\xbb\x07\x4c\x95\xa0\xfc\xe5\xfc\xf5\x0b\x36\x99\x32\x8a\xa9\xd2\xe2\x42\xc8\x54\x81\x19\x15\x63\x32\x94\x01\x53\x2b\x05\x8a\x7e\x65\x84\x06\x6a\x41\x81\xdb\x62\x67\x07\xed\xec\x80\x5d\xa0\xb8\x33\x4a\xc7\x88\x3f\x97\x41\x1c\xee\xec\x04\xa8\x0f\x76\xc1\x77\x28\x84\x68\x51\x8a\x3a\xb6\x52\xd8\x67\x78\x9a\xb3\xf9\x64\x0d\x25\xb9\x54\x2d\x56\xa9\xc8\xea\x79\x4d\x25\xb9\x18\xfb\xba\x9e\xab\x40\x90\x61\xb0\xfd\xa5\x74\x5d\xdb\xf0\x96\x99\xfc\x97\x03\x88\xfa\xdb\x31\x14\xfd\xed\x1e\x64\xc5\x62\x20\xf9\xdc\xe9\xf0\x1c\xe6\x7d\x7c\x59\x43\x66\x10\x84\xdf\x6f\x07\xa8\x1f\xf0\x7e\x1e\x51\x7c\x27\x83\x30\x8c\x32\x46\x71\xa8\x67\xab\x1e\x5e\x1e\xe9\xb5\x27\x84\xdb\xf2\xe1\x81\x5a\xe1\xb2\xdd\xef\xcb\xf0\x7b\xd5\x64\xf8\xfd\xc2\xc8\x38\x12\xde\x0b\x85\x02\xeb\x93\xc5\x90\x50\x94\xe7\xf3\x7b\x85\x00\x7a\x78\xa0\xb3\x3c\xef\xf7\xf3\xc8\xa0\xfc\xf0\x50\xfc\x0a\x42\x57\x92\x0c\x03\x11\x1a\x69\xc7\x16\x0b\x67\x3d\x68\x3a\x3e\x49\x7d\xcf\xb0\x90\x7c\x96\xca\x19\xc7\x5f\x49\x87\xe7\x6c\xc2\x24\x6e\x51\x1a\xad\x9c\x50\x52\x01\xa2\xfe\xe7\x53\x2a\x01\x44\x7d\x1a\xe0\x48\x4c\x73\x22\x03\xf0\x0c\x84\x70\x2f\x84\xa2\x8f\x2e\xe3\x01\x64\x7d\x74\xd9\x1b\x40\xde\x17\xc5\x77\x35\x0d\xf3\x3e\x8f\xa6\x6c\x1a\x84\x90\xf4\x7d\xc1\xe5\x26\x6a\xa9\xfa\x41\x5f\x11\xcc\xc3\x2d\xb6\xb3\x13\x90\xef\xfa\xe0\x99\xab\xc6\x42\x27\x3c\xc8\x62\x89\xd6\x2a\x21\xf0\x26\x6b\x08\xc1\xae\xa5\xd3\x32\x75\x50\x29\xca\x56\x1f\xbc\x3f\x73\x35\x5f\x67\x89\x84\x6a\x4d\xde\x8e\x37\xd4\x0b\x7f\x65\x57\x5d\x31\x9b\x4c\x10\x9f\xff\x5b\x56\xfc\x5b\x56\x7c\x1b\xb2\x62\xb9\x05\xaf\x34\x1e\x67\x16\xd2\xe0\xe7\x8b\xf7\xef\xa2\x29\xe2\x02\x07\x58\xcf\x6e\xd6\x17\x6a\x76\xf3\xbe\x12\x01\x30\xef\xfb\xaa\x14\x83\xe0\x57\x76\x05\x20\x0a\xbf\x03\xbb\x05\xcf\x7b\x6a\x0d\xb0\x68\xa8\x25\x98\xef\xec\x04\xb9\x9a\xcd\x9e\xf9\xe0\xc4\x41\x18\xc2\x7c\xc3\x39\xf6\xc5\x4c\x7c\x37\xf5\xd0\xbf\xa7\xde\xbf\xa7\xde\x66\x53\x4f\xb4\x39\x76\x56\x1a\xbe\x2d\xa6\x5f\xdd\x7a\xad\x98\x3b\xef\x8a\xd9\x53\x5b\xce\x36\xb0\x51\x4a\x9e\x96\xad\x96\x82\x8c\x5c\x23\x7d\xfc\xcc\xd3\x25\x12\x37\x9f\x95\xf1\xb6\xb0\x36\x54\x9b\x40\xd1\x26\x94\x31\x84\x90\x2f\x52\xa8\x12\x29\x46\x4b\x60\x55\xf1\xc0\x9e\x79\x0e\x03\xb6\x50\x56\xe3\x32\xdb\x0d\x0a\xc8\x2b\x66\x4b\xbb\xe9\xcc\x82\x47\x09\xd3\xb4\x40\x6b\x44\x36\x86\xd5\x2a\x07\xa8\x15\x1a\x66\xf0\x51\x53\x7c\x72\x23\x3e\x73\x2d\x3e\xb7\xda\x50\x0b\xb8\x06\x01\x73\xd7\x4e\xc5\xee\xfa\x42\x2d\xdd\x8d\xf9\x7f\xe2\xf9\x67\xb6\xf3\x37\xa0\xbc\xb1\xd4\x77\x76\xac\xc5\xee\xc6\x3e\x5c\x40\x8e\x73\xed\x55\x13\x63\x32\x7d\x85\xf2\xfc\x0a\xa5\xd7\x6f\x08\xbd\x16\xc9\xbd\x5d\x63\x92\x72\xb5\x59\xc0\x21\x96\xe9\xf8\x1c\xdd\x9e\xa9\xa9\x4b\x54\xc5\x16\x8d\xb8\x5d\x57\xf4\xf5\x64\xbd\x92\xb5\xa8\x88\x12\x82\xbf\xbe\xfc\x08\x14\xb3\x33\x9e\xe2\x0f\x98\x13\x96\x91\x34\xa9\xad\x07\x16\xd4\xd4\x7e\x2e\xdc\x16\x72\x2d\x4f\x6b\x13\x0f\xa5\xb6\x5a\x50\xbb\xba\xdd\x25\xa8\x69\xed\x35\x5c\x2c\xe0\x12\xf7\xf1\x27\xf5\xfb\xec\xe5\x9b\x97\x1f\x5f\xaa\xae\x6b\x3e\x6b\x01\xbf\xb2\x73\xcf\xf3\x3c\x28\x7b\xa3\x20\xac\xea\x44\xa1\x82\xff\xcc\xae\x7e\x7a\xf1\x26\xc1\xf0\x05\xa2\x8c\x92\x14\xe5\xe4\x37\x6c\xb5\x70\x38\xcd\x51\xdb\xe8\x7a\xfd\x79\x78\xb0\x0f\xff\x24\xd9\x8f\x78\xc8\x38\xbe\x40\x37\x84\x8e\xb4\x25\xa4\x5b\x15\x92\x71\x0c\xd7\x73\x81\x4b\x6f\x38\x72\x44\xdb\xf0\x17\x4d\xfc\x93\x02\x05\x8a\x3d\xae\x54\x13\x16\x84\xf0\x8c\x0c\x87\xa6\x3b\x35\xb1\xec\xbb\x79\x5e\x9f\xf5\x25\x34\xde\x8f\x0f\x68\x9e\x33\x94\x69\x4a\x76\x35\x12\xf0\xfe\x57\x76\xf5\x21\x47\x54\x24\x97\x78\xb0\x08\x55\x41\x8c\xaf\x2d\xca\x5e\x39\x19\x2a\x9a\xf1\x59\x95\x64\xcd\x11\x28\xbb\xfe\x82\x63\x27\x79\xdc\xd8\x6d\xd2\x3d\x3d\x4a\x33\x2d\xbf\x9e\x3a\x4e\x2d\x2c\x52\x22\xe8\x8b\x46\x6f\x74\x36\x45\xd1\xf7\x65\xb1\x8a\x9a\x27\xab\xcb\x92\xdc\xd9\x09\xf0\x12\xad\x55\x86\x21\xc4\x9e\x07\x49\xac\x54\x59\x1d\x80\x4d\x76\x59\x1f\xdd\x31\xf8\x3d\x77\xa8\x96\x2d\xf6\xe8\x77\xf2\x56\xdf\xeb\x6d\x1a\xb4\xa1\x39\x4e\x59\xf6\x28\xc9\x97\xdb\xe1\x9f\x87\x9a\xb4\x49\x4d\xbf\x03\x74\x65\x07\xa6\x2c\x27\xe9\xa3\xae\x84\x55\x7b\xf3\x5f\xac\x13\x9e\xca\x26\xcb\x25\xfc\x3b\xb0\x8b\xd2\x1c\x2c\xd6\xef\xa2\x44\xe2\xba\x2b\x24\x92\x1b\x4d\x8e\xd5\x3e\x13\xb3\xfb\x05\x19\xe4\xa1\x36\x3f\x54\x17\x94\xe5\xc3\x06\x01\x0f\x21\xe9\xe7\xc6\x9c\xb1\x46\xcb\xcc\xf1\xb0\xee\x31\x0d\x66\xe1\x22\xd7\x16\xd0\x33\x19\x90\x30\xf9\xc0\xd9\x84\x08\x1c\x71\x2c\x58\x7e\x83\x03\x62\xa5\x37\x82\xe2\x4b\x9a\xed\x2b\xb7\xc5\xf2\xfa\x36\x8d\x3f\x0b\xcd\x96\x17\x9a\xc9\x31\xe3\xe4\x37\x9c\x9d\xe3\x7f\xcd\xb0\x90\x01\xd8\xbd\xe9\x15\x7b\xa8\x43\xb1\x9b\x8b\x5d\x50\xee\x9e\x96\x9b\xaa\x7a\x23\xf5\x99\xb2\x90\xfb\xde\xf6\x6a\xd3\x0f\x2f\xc3\xd0\x52\x42\x84\x4a\x09\x41\xf5\x7d\xdf\x27\xe0\xa4\xa0\x7c\x46\xac\x7c\x59\x2f\xbc\x05\x90\x2d\xd9\x8d\xf3\x16\x06\x6b\x8b\x15\x2b\x12\xee\x73\x3c\xc2\xd4\x98\xcc\xe7\x33\x2a\xc9\x04\x47\x13\xc4\xaf\x9d\x40\xeb\xe0\xa0\xdc\x16\x81\xc2\xb9\x42\x9a\xd5\x6e\x39\x9a\x56\xe4\xa0\xb2\xcf\xbf\xff\x3e\x14\xb7\x44\xf1\x23\x8e\xa6\x1c\xdf\xf4\xb1\x36\xc6\xc3\xfb\x14\x09\xdc\x89\x13\x32\x0c\xb6\x65\xc4\xae\xc3\x7b\xf3\xa1\x7f\xb0\x75\xc5\x31\xba\x5e\x38\xc5\x01\x5d\xf1\xd9\x54\x06\xc0\x06\x72\x40\x19\xfd\x2a\x94\x51\x14\x6e\x69\x10\x07\x89\x2b\xa9\xeb\x1f\x41\x19\x49\x6d\xee\x9b\xef\x47\x89\x35\xab\xfb\x38\x12\x98\x4a\x88\xfa\x66\x97\x53\x46\x6a\x54\x66\x02\x8a\x3e\xf5\xc4\x33\x65\x1d\x31\x4b\xc7\x9d\x21\xc9\x71\x87\xf1\x4e\x46\x38\x4e\x25\xe3\x73\x10\xc2\x7b\x35\x2c\x09\xda\xd9\x11\xcf\x0e\xe2\x83\xc4\x41\x28\x3c\x18\x2d\x26\x1b\x5d\x2c\x0c\x1e\xbd\x5e\xa2\xfe\x02\x4c\x33\x50\xa2\xac\x74\xdc\x40\x29\xbb\x38\x5c\x84\x30\x60\xfd\x9a\xd1\x6c\xd4\x5d\x88\x4a\x23\xc5\x45\x09\xe1\xdb\x8e\x9d\xc2\x25\xd1\x05\x64\xa6\x1e\xef\xe3\x82\x17\x20\xf2\xb8\x25\x57\xe3\x42\x03\xae\xc5\x48\x0e\x09\x04\x8a\x68\x40\x35\xef\xca\x90\x46\x19\x4d\x41\x5d\x28\x0f\xcc\xf4\x56\x6a\x58\xb8\x84\xdb\xd6\x5d\xc6\xf4\xdc\xf9\x36\x17\x01\xad\x50\x2f\x13\x52\xab\x56\x08\xed\x3e\xb8\xc0\xf9\xb0\xdd\xfb\xd1\x54\x04\x6b\xe1\x23\x57\x33\x92\x67\xbf\x9c\xbf\x09\x94\x7e\xae\x09\xb4\x2b\x70\x3e\x54\x0a\xa1\x36\xd9\x9a\x7e\x0f\xd3\x05\x6c\x6c\x00\xc7\x1c\x55\x3d\xdb\x52\xda\xc8\x5e\x91\x5c\x4a\xa5\x62\xd3\x8a\x8a\x6d\x8b\xd0\x88\x32\x3e\xd1\x06\x8a\x7b\x27\x43\x63\xd0\x92\x2c\xac\xeb\x29\xab\xd7\x40\xcf\x5f\xe9\x0f\xf2\xbf\x66\x98\xcf\xbb\x42\xcf\x98\x35\xd4\xc5\xff\x68\x06\x9f\xec\x2e\x8b\x0d\xf1\x56\x4c\xf1\x6f\x57\xe7\xbf\x5d\x9d\x9b\x49\x02\xd6\xa7\x0d\x49\xa0\x79\xf8\x0d\x11\x72\x99\x34\x58\x29\x2a\x96\xc5\x9f\x14\x5e\x2f\xd4\x7f\xdc\xad\x24\xfa\x01\x7d\x78\xb8\x57\xe2\xf6\x8a\x71\xa9\x83\x7a\xb6\x34\xa1\xef\x33\x9c\x63\x89\x3b\xd4\xff\x62\x5d\x94\xd1\x95\xb1\x40\x31\xcd\xb6\xfc\x87\xca\xd6\xa9\x88\x52\x34\x55\xb4\x0d\xb0\x8e\x3d\x28\xf4\x07\x43\x13\x5f\xa6\x17\x63\x89\x5a\x22\x7b\xdc\xdc\xb3\x7e\xbc\xba\xaf\xed\xa0\xd5\xd7\x76\xe0\xfb\xda\x0e\x06\xc9\xfd\x02\x32\x1b\x70\x81\x84\x20\x23\xea\x09\xc4\xff\xa5\x24\x86\xa2\x75\x08\x79\xdd\xff\xf3\x3c\xcf\x03\x19\x4d\x58\x86\x73\x65\x4c\x85\x5b\x65\xd0\x06\x52\x64\x83\xc0\x0a\x0d\x3b\x0e\x91\x1e\x51\xa0\xa6\x06\x8b\x08\xcd\xf0\x9d\x81\xe8\x06\x5a\x55\x7d\xad\xde\xbf\x62\x3c\xe0\x61\xb8\x65\xd4\xec\xc7\xc0\x96\x43\xd0\x66\xef\x73\x23\xbf\xe1\x7d\x59\x2c\xc9\xa1\x36\xee\xd9\x72\xaf\x33\x35\xba\xbe\x41\xe0\xe9\x74\x25\x7d\x51\x5b\x5d\x68\x49\x30\xd5\x04\x04\x65\xfb\x20\xac\xed\x85\xcf\xfa\xe4\x32\x1e\xc0\xb4\x4f\x2e\x7b\x83\xad\xb4\x36\x46\x6e\xc2\x18\xbf\x6d\x1a\x6a\xe2\x34\x87\x2e\x0f\x61\x49\x41\xfe\xc8\xc0\xa4\x8f\x0f\xcc\xcc\x0e\x4c\xd6\x7f\x0c\xec\xea\x81\x99\xb5\x0c\x4c\x66\x06\x26\x5d\x2c\x31\xee\xb7\x83\x52\xfe\xb0\x61\x07\x45\xcf\x55\x5d\x2d\xc4\xc2\xd0\x8b\x3e\xe3\x58\x2d\xbf\xe7\x9e\xef\xb7\x32\xb8\xc5\x84\xd1\x13\x9e\x3d\xd9\x47\xad\xe9\x93\x6c\xf7\xa0\xd7\x03\x25\xaa\x17\x90\xf7\x99\xa1\x1e\xcc\xfb\xcc\xa3\x03\x24\x7d\x65\xf6\x79\x2e\x69\xc6\x03\xaa\x83\x08\xc1\x15\xce\x19\x1d\x89\x8f\x0c\x6c\xf7\xfb\x24\xba\x26\x34\xdb\xd9\x01\x63\x13\x54\x56\xbe\x0b\x4b\x01\x6e\x85\xb7\xd3\x63\x48\x74\x8d\xe7\x10\x74\x26\x33\x21\x3b\x57\xb8\x83\x3a\x0e\xa6\xd2\xa7\x2d\x28\xa8\x29\x88\x51\xd6\x21\xb2\x73\x8b\x44\xa7\xb4\x7e\x6c\x0b\x66\x7c\x67\x7d\x7c\x69\x5e\x0c\x0c\xe4\x30\xca\x09\xbd\x0e\x42\x98\xf6\x4d\x18\x1e\x5f\x9b\x61\xe0\xcc\xd3\xf3\x9f\x15\xfe\xec\xac\x5f\x67\xe2\x99\x37\x03\x2e\x7b\x83\x70\xcb\x2e\x2f\xd7\x78\x2e\x82\xac\x25\x16\x0d\x3b\x51\x9c\x6a\xf7\xe5\x62\x2d\x36\xcb\x4b\x36\x6b\xb8\x4d\x8d\xee\x5f\x78\x76\x69\xdf\x1b\x97\x7e\x31\x06\xcf\x80\xd3\xd5\x94\x20\xfc\xb1\x28\x51\x04\x79\x82\xa4\x5a\xc0\x46\x06\xba\xcf\x50\x99\xe7\x02\x73\xa2\x4b\x70\x45\x24\xa2\x43\xfc\x74\x84\x9b\x91\x10\xfe\x4b\xde\x47\x97\x74\x10\x48\xc8\x20\x0e\xb7\xa4\xd5\x2b\x94\xf0\xaa\xed\x1b\x2c\x9d\x1c\xd6\x84\x6b\xeb\xcb\xfd\x22\xa9\x86\x6e\xae\x0c\x58\x2d\x57\x1b\x79\x09\xee\xba\x46\x85\xd4\x2c\x00\x06\x0f\x0f\xf2\xd2\x85\xc0\xbe\x36\xef\x8a\x79\x2f\x76\x76\x6a\x2c\x22\x3c\x16\x41\x6a\x59\x81\xc5\x1e\xda\xca\xf8\xd6\x8a\x16\xdc\x1e\x67\x37\x9d\x2e\xb1\x6d\xac\xc3\x85\xbb\xb8\x6a\x25\x25\xba\xda\xa1\x6b\x46\xa2\x52\x3a\x65\x74\x48\x46\xbb\x98\xde\x10\xce\xa8\x8e\x00\x6a\xd3\x7b\x35\x35\xb6\x3e\x59\x0f\x72\x41\x8f\xcf\x4b\x1d\xdc\xe9\x42\x13\x0d\xc0\xc4\x3c\x26\x2e\xf2\x32\xf2\x5f\xc3\x29\xcb\xde\xb6\x17\xab\x7d\x81\xe7\x96\x0c\x89\x9b\x7e\xca\x02\xae\xf8\x4d\x05\x6c\x6f\x25\xb4\x5a\x8e\x78\x6c\x10\xb4\x2b\x61\xca\x08\x55\x23\x50\x0e\xc6\xa0\xc2\xb2\x9f\xae\x3c\x96\x2f\xee\x27\xec\x8a\xe4\x38\x01\xc1\x04\xdd\x75\x6f\x49\x26\xc7\x49\xe7\xf8\xe8\x64\x7a\x17\x02\x28\x95\xe6\x2a\xd5\x37\x42\xcb\x6f\xa7\xfa\x5b\x86\xc5\xb5\x64\xd3\xea\xc7\x5e\x7c\x62\x6a\x8e\x66\x52\x62\x9e\x63\x21\xaa\x90\x4f\x8f\x62\xf5\x7d\xd1\xd6\xf7\xb4\xf0\x1d\x89\xdd\x6e\x36\xa7\x68\x42\xd2\x2e\xce\xb1\xe2\xa0\x2e\xca\xe5\x97\xa4\x87\x91\x5e\x86\x91\x9c\x0b\xcb\xa3\x92\xdc\x10\xdf\x6f\x19\x57\x94\x65\x8c\x76\x53\x36\x9d\x77\xaf\x66\x52\xb6\x9f\x9c\x48\x73\xa2\xfe\x3f\xbd\x62\x88\x67\x7e\x6d\xbf\xde\x27\xbb\x37\x96\x56\x28\x76\x7f\xe0\x3d\xa6\xb3\x89\xb1\xa0\x92\xed\x18\x8e\xb0\x6c\x0b\xd0\x77\xf3\x71\x11\x3e\xd6\x79\xe7\xc7\xec\x6a\x0f\x51\xb3\xe7\xec\x06\x73\x4e\x32\xd5\x62\xb7\x38\xe6\x50\x92\x85\xd1\x74\xc6\x39\xa6\xe9\xdc\x17\x79\x63\x9c\x4f\x31\x17\xbb\x39\xfa\x6d\xae\xc8\x96\x5e\xb7\xec\x1a\xe5\x48\x08\x5c\xc1\x40\x48\x24\x45\x57\x72\x94\x5e\xe3\x2f\x70\x70\xa4\x62\x28\xd6\xf8\x65\x3d\xc7\xd1\x4a\xd7\xb7\x44\x23\xbd\x19\x04\x24\x07\x50\xf7\x4e\x87\x6c\x24\x97\xa0\x4e\x64\x40\x44\x97\x50\x65\x08\xeb\xc8\x0e\x30\x80\x65\x09\xad\xf9\xc1\x94\x51\x89\xef\xa4\x79\xd0\x64\xd1\xeb\xaf\x52\x12\x31\x55\x43\xf1\x81\xe5\x39\xa1\xa3\x24\x88\xa1\x74\xa7\x4f\xc2\xa0\xc1\x0b\xdb\x06\x59\x89\x85\x24\x74\xb4\x08\x0d\xb0\xc6\xa9\x15\xff\x94\x1a\xf0\x7d\xdb\xe2\x7c\x46\xa9\x76\xf3\xb4\xbb\xc3\xc8\x30\x28\xe3\x55\x5a\x2b\x3a\xd7\x8c\x3b\x7d\x12\xa5\x7a\x47\x37\xb8\xd7\x51\x12\x49\x4b\x0c\x10\x5e\xea\x96\x97\xe1\xc2\x27\x96\xd1\xcf\xdc\xb3\x66\xf7\x74\x3a\xab\xf5\x2f\x42\x39\x41\x22\x00\xba\xef\x51\x3a\x9d\x45\x39\x12\xd2\x70\x12\x08\xe1\x04\x4f\x18\x9f\xaf\xac\x63\x8a\x54\xab\x31\xfa\x42\x71\xb6\x3f\xff\x16\x30\xad\xbe\xc2\xf6\x8c\x83\x9a\x08\xba\x74\x18\x5c\x6a\x9c\x6d\x65\x88\x07\xe1\x02\x66\x44\x99\x6e\x98\xdc\xe0\xe7\x52\x72\x91\x54\xdc\x2c\x95\x0e\x3e\x33\x48\xf2\x19\x8d\x44\x3a\xc6\x8a\xdb\xdf\xd3\x14\x07\x00\x0d\x25\xe6\xe7\x98\x66\x4a\x2b\xd1\xba\x0e\x0f\x0d\x75\x34\x91\x2f\x4c\xcf\x95\x4a\x97\x2b\x7b\x3b\xb4\x21\x2a\xfa\x7d\xa2\xd7\x6c\x89\xc4\x75\x18\xac\xb1\x99\xe0\x46\xe9\xb3\xee\x20\x98\x28\x08\x24\x85\xdb\x47\xe8\xc5\xf5\x8d\x04\x5d\xb9\x07\x8b\x7d\x06\x3f\x52\x4a\xf7\x6f\xca\xf2\x1c\x84\xd1\x14\xf3\x21\xe3\x93\xc0\xed\x2f\x18\xe0\xae\xdc\x4b\x73\xae\x6d\xbb\x17\xc2\x5a\x53\xa6\xc2\x71\x62\x9b\x3a\x86\x38\x92\x71\x1f\x5b\x23\xb2\x67\xf5\xca\x26\xa4\xd8\x36\xd5\x8b\x6b\x7b\x19\xbd\x3d\xa3\x10\x29\xe2\xb0\x99\x0c\x83\xc3\xd8\x95\xdd\x4b\x8a\xc9\x53\x99\xd2\xae\xff\x45\xf7\x4d\xe9\xfd\xd5\x9b\x0f\x66\xcc\x2f\x2f\x7b\xf0\x78\x30\x08\x17\x61\x18\x65\x5c\x7f\xab\x1c\x90\xf1\xa7\x2e\xb4\x81\x38\x25\x73\x39\xdb\x3a\x32\x76\x6f\x50\x37\x6b\x6c\x50\x91\xc7\x51\x8e\xd4\x50\xee\xec\x48\x33\x16\x3a\xfc\x61\x67\x67\xbb\x7c\x8c\x88\xf8\x80\x69\xa6\xa5\x41\xf9\x41\x31\xdc\x5f\x39\x9b\x4d\x0b\x3b\x8e\xf6\xbd\x2a\x5a\x02\x52\x09\xc2\x2d\xba\xb3\x43\x1d\x46\x6a\x45\x7b\x44\x65\x6c\x5f\xdd\xcc\x46\x4f\xf7\x0a\xf1\x25\x4a\xbd\x57\x2d\x23\x42\x72\x72\x35\xd3\x15\x55\x8d\xdf\x6f\xdf\x22\x47\x73\x36\x93\x66\x1d\x59\x85\x91\x27\x04\x5f\x30\x2a\x11\xa1\x98\x9b\xd5\x02\x28\x9b\xb4\xab\x04\x7e\xb7\xbd\xfb\x4a\x6f\xd0\x76\xeb\xf2\x45\xc0\x81\x8c\xee\xff\x35\xc3\x33\x9c\x3d\x57\x9f\x04\x54\x65\x95\x95\x6c\x1f\x87\x88\xe4\xee\x1b\x37\xf2\xde\x3e\xe9\xc3\xae\xee\x71\x51\x59\x3e\xdc\x7c\x6f\x69\xb0\x3c\x04\xe8\x45\x9c\xb6\x21\x36\xc2\xd2\x12\x9e\x60\x11\x00\x1f\x4d\x00\x41\x15\x51\x00\x81\x8f\x2a\x80\xa0\x82\x2c\x80\xa0\x8a\x2e\x80\x20\x67\x42\xda\x87\xc2\xe7\x74\x79\x9f\xa3\x2b\x9c\x27\xe0\x7f\xe9\xb6\x00\x34\xe3\x8b\xa3\x2a\x89\x8a\x85\x3f\xb1\x38\x81\x05\x2c\x2a\x5e\xd8\x56\xca\xaa\xd5\x76\xfd\xca\xc2\x95\xcd\xd1\x1c\x73\x91\xec\x95\x70\xdc\x9a\x5c\x80\xa9\xd2\xde\x83\x62\x3f\x78\x38\xbc\xb0\x94\x29\x2b\xd7\x06\xd5\xab\x5d\x7c\xf1\xaa\xbf\xd2\x74\x2c\x2b\x57\x58\xc0\xab\x6a\xde\x7b\x15\xdf\x30\x21\xcb\x6a\x25\x79\xfd\x4a\xea\x2d\x58\x0c\xd4\x2a\xfe\xd8\x16\x95\x3f\xc9\xa7\xd3\xae\x92\x94\x59\xca\x67\x93\xab\x2f\x6a\x26\xb6\x9a\x1a\x6e\xee\x7a\x48\x5c\x18\xad\xb0\x5d\x55\x04\x3e\xb6\x9e\xde\x08\xa0\xf7\xa1\xae\x8e\xa8\x2f\xa2\x52\xd5\xb6\x11\x55\xa0\x55\x28\xf7\xa8\xe5\x23\x8d\x50\xc1\xa2\x2b\x70\x2a\x6b\x87\xc6\x7f\x5f\xe2\x95\x54\xd8\xa8\x0b\x57\x48\x90\xb4\xab\xd6\xba\x8c\xdd\x2a\x2b\xce\xac\x1a\x2d\x76\x4c\xb5\xe4\x1a\x30\xfe\x80\xd6\x5c\xad\x27\x92\x93\xd1\x08\xf3\x4f\xa2\x46\x01\xe3\x0f\x4f\x8d\x4f\xa1\xc2\x1f\xb1\xf7\xe9\x98\xe4\x19\xc7\xff\xfd\x34\x9f\x5f\xd9\x55\x43\xd3\x69\xeb\xec\x52\x3d\x47\xa9\x97\xf7\x53\xa3\x90\xbe\xb0\x15\x0b\xf5\xc5\x3d\x67\x18\x65\xc5\xc3\x12\xf5\xe5\x57\x76\xd5\xaa\xae\x28\xf8\x35\xf5\xa4\xd6\x5a\xa9\x81\x78\x6f\xfc\x16\x9b\x4a\x47\xa1\x40\xbb\x25\xb4\xde\x81\x55\x8a\xc7\x32\x85\xa1\xad\x72\x53\x65\x38\xc3\xc8\x5b\xf1\x7d\x34\xdb\x95\x85\x4d\x17\x70\x13\x65\xd7\xa5\x2c\xc3\x4d\x27\xd4\x46\x3e\xa5\xa9\x23\xb9\x09\x5d\xf1\x4b\x4c\xc8\x1d\xa1\x62\xf7\x96\xc8\x71\xd7\x35\xde\xbd\x21\x82\x5c\x91\x9c\xc8\x79\x37\xc3\xd2\x2e\x82\x6d\xee\xf9\xcf\x75\x16\x6b\xc9\xfa\xe7\xdc\xe4\xf0\x11\x0f\xd4\x52\x27\x53\x83\x8a\x4d\x2f\x93\xfa\x66\xa6\xce\xfa\xbe\x0b\xf9\x74\xdf\x45\xd3\xd6\x54\x08\x6c\x69\x4b\x71\xa9\x85\x89\xcd\xd6\x8e\xb3\x2c\x25\xec\xc5\x3a\x58\x0d\x96\x43\xf5\x93\xde\x59\xe2\x49\x75\x52\x66\x2c\xd5\x9b\x3b\xd1\x98\x64\x19\xa6\x61\xb9\x4f\xe4\x3b\x3e\xb6\x70\x2e\xb0\x7f\x9c\x4d\xe3\x84\xfd\x6d\x25\xd7\x36\x36\x6d\x2f\xe0\x2d\xc9\xf3\x33\x2c\x24\x67\xf3\x86\x73\xa6\xd1\xc2\x1a\x9b\x4f\xd0\x6c\xf9\x6a\xd7\x80\xfe\xe9\x6f\x31\x87\xbe\x25\x56\x57\xe9\x5a\xe3\xf9\x97\xb8\xa3\xdb\xdc\xd8\x9e\xbf\xf6\x4b\x89\xf6\x65\x1a\x5e\x95\x5b\x2b\x6e\x73\xe7\x59\xff\x58\x71\x7a\x5a\x66\x25\x34\x23\x29\x92\xf8\x62\x96\xa6\x58\x08\xe3\xf3\xfc\x7a\xee\x2a\x7f\x6b\xd8\xb9\x82\xb0\x32\x22\x0d\x7e\xc0\xb9\x95\xf6\xa1\x41\xb5\x70\xfe\xec\xe1\x7d\xeb\xfc\xd9\x4f\x1a\xd5\x55\x57\x9d\xc7\xea\x71\x5f\x8f\xf6\xf1\xd8\xa4\x52\x4a\x67\x08\x36\x93\xb9\xcd\x65\xb5\x8d\x59\xa6\x73\xb5\x2e\xed\x77\x05\xce\x0b\xfb\x40\x3d\x4a\x8e\xa8\x20\xf5\xc3\x20\x4e\xc0\xd2\x8c\xdd\x76\x39\x16\xe4\xb7\xf6\xa3\xce\x9e\x94\x16\x72\x9e\xe3\x22\x92\xb0\xcd\xe1\x0f\xd9\xe7\x62\x4c\xde\x6f\x0d\x02\xc7\xdf\xc9\x05\xcc\x97\x31\xad\x28\xc5\x72\x95\x7d\xc7\x88\x4b\x45\x8c\xa6\xbe\xe4\xca\xfd\x48\xf4\x02\xad\x8a\x13\xf1\x0e\x71\xce\x6e\x13\x22\xba\x54\xff\x52\x05\x15\x0c\xc3\xe1\x5a\x4d\xd1\xbf\x8c\xac\x3e\x43\x72\x36\xb1\xcc\x5f\x54\xdd\xee\x41\xc9\x58\x2e\xc9\xf4\x42\x11\x4d\xcd\x02\x56\x6e\xb4\x02\xfb\xed\x03\xb3\x03\x13\xc2\x09\x12\xd7\xaf\x33\x03\xe5\x9f\xad\x8a\x90\x7a\xd9\xe2\xd8\xb7\x7b\x0a\xd3\xb9\x3d\x81\xa6\x8a\xc1\xed\x38\x84\xb4\xaf\xa6\xd7\xf4\xc7\x79\x00\x34\xb5\x81\xe2\xc0\x6c\x96\xe2\x80\xc3\xd8\x85\xe6\xe8\x32\x5e\x84\xab\xb7\xd5\x1f\x69\x8d\x42\x07\x27\x68\x00\xb6\x8a\x55\x34\x84\xd5\x31\x98\xa7\x56\xc8\xc8\xfd\x2e\x1c\x21\x0a\x8a\xfa\x01\x75\xb8\x40\x82\xe0\x14\xf3\x14\x53\x99\xb0\x5d\x0a\xd9\x70\x28\xb0\x4c\x6c\xb2\xbf\x20\x86\x28\x5c\x81\xf2\x2e\xb5\x7a\x34\xc9\x5e\x53\x81\xb9\x7c\x69\xb6\x2b\x97\xae\x62\x65\x78\xa1\x99\x12\x86\x40\xff\x33\x00\xe2\x66\x04\xc2\xcb\x78\xa0\x73\xc3\x29\xae\xe8\x2a\xf2\x77\x5d\x4c\x8d\x8d\x71\x9a\x91\xec\x15\xe3\xba\x56\x18\x6e\x15\x32\xc0\xd3\x14\xef\x0d\x57\xc8\x62\xf4\x50\x91\x92\xca\xb4\xd1\x51\x92\xf2\x03\x92\x63\x10\x46\xca\x7a\xd7\xe7\xd6\x20\x0a\xa1\x8c\x18\x0d\xc0\x84\xcd\x14\x5e\xe8\x06\x57\x86\xd5\x6d\x1a\x54\x17\x5a\x2d\x7d\x88\x78\x6e\xd4\x03\xeb\x0f\xd7\x2f\x3d\x2e\xb4\x82\x09\x16\x3d\xd6\x07\x28\x47\x20\x34\xe3\xa2\xdd\x86\x65\xfd\xf2\x25\xa1\xde\x6b\x4d\x63\xdd\x0b\xae\x77\x28\x5e\xa8\x3e\x06\x46\x79\x30\x87\xe7\xda\xf7\x3d\x6a\xa5\xcd\x11\x3e\xfd\x68\x59\x99\x5d\x29\xcd\x08\xf3\x00\x68\x06\x8f\xfe\x03\xa3\x74\x1c\x19\x51\x00\x0d\xaf\x39\xf6\xa9\x2a\xf1\x2d\xf0\x43\xe8\x3d\xaf\xd6\x63\xf4\x20\x15\x67\x37\x75\xd3\xd0\x44\x81\x45\xc5\x74\x2d\x52\x4c\x15\xac\x11\xe9\xfd\xfe\x40\xc7\xe0\xac\x4c\xa6\xa5\x71\xff\x21\x5e\x84\x5b\xbc\x25\x4c\x49\x09\x2e\xd3\x75\x35\x4e\x18\x02\x13\x32\xa3\x4f\x55\xda\x30\x47\xc7\x9a\x20\xba\x42\x5c\x80\xb0\x3e\x70\x0a\xdd\x80\xc3\xd6\xd6\x35\xcd\x16\x21\x24\x7d\x6e\x83\xd8\xb6\xf2\x08\xdf\x11\x19\xa8\x79\x33\x61\x37\x38\x28\xa2\xba\xf2\x08\x2b\xe5\x32\xd0\x87\x08\x94\xac\xd4\xc0\x1d\x17\xea\x8f\x1e\xc9\xe5\x12\x36\x74\xd1\xef\x6a\xbe\x0a\x88\xfa\x74\x25\x79\x34\x82\xfa\xec\x87\x45\x75\x8b\xae\xcf\x89\x71\x08\x51\x4b\xe9\x78\x19\xdf\xb6\x4e\x07\x19\x5a\x4d\x1e\x69\xd5\x31\x08\x95\xad\xf7\xe3\x8f\xec\x2e\xd0\x79\x49\xa2\xbb\xef\x84\x19\xec\xdd\xbd\xad\xe6\x6e\x5d\x6d\xa7\x0e\xc3\xa6\x8d\xdf\x9c\x98\x4a\xff\x2d\x70\xa9\xcb\x79\x78\x9f\xe3\xa1\xd4\x31\xa8\xe1\x22\xfc\x3e\xc8\xfb\x79\x34\xc1\x7c\x84\x83\x59\x58\xc8\x08\xdd\xbb\xea\x58\x14\x56\xb8\x9b\x1e\x0f\x0f\x40\x0f\x41\x29\xb2\x90\x09\xc9\x7b\x3f\xd4\x87\x4a\x45\x1f\x47\x1e\x1d\x0a\xf3\x94\x42\xb1\xb3\x23\xea\xc3\xb2\xb3\xe3\xa8\x5b\x7e\xde\xf6\x3f\x3b\x3a\x0f\xf4\x7a\x84\x52\xc5\x61\x26\xff\x52\x07\x38\x71\x61\xf4\x23\xcd\x19\x00\xe6\x86\xf0\x69\x4b\xee\xa8\xbd\x62\xed\xd1\xc9\x0f\x0d\xde\x3b\x3b\xb2\xdb\x85\xf6\xa1\xdf\xef\x93\x6e\xcf\xbc\x2a\x03\x1d\xd9\x9f\x95\x19\xad\x17\x8f\xae\x84\x60\x7a\x07\x94\x4c\xea\x37\x19\xaf\x5a\xc5\xac\x31\xdf\x05\x5e\x63\xcf\xe2\xa4\x17\x16\x10\x26\xfd\xdc\x9f\x73\x91\x44\x7c\x84\x65\x31\xf3\x9a\xd0\x75\xc4\xe1\xd6\xa4\x31\x9f\xb8\xde\x67\xae\x8e\x21\x70\xc0\xcc\x6b\xcd\x69\x00\xa6\xc5\xf3\x18\x93\xd1\x58\x69\x26\xbd\x38\xfe\x93\x2b\x75\x07\x60\x16\x5a\xb6\x98\x84\x51\xa9\xbf\x05\x61\x94\xcd\xb8\xb6\x34\x82\xbd\x38\x5e\x06\x55\xd7\xd7\xd4\x9f\xd6\xfa\xa6\x74\x9e\x46\xc7\x3c\xf5\xaa\x92\x3e\x59\x2f\xdb\x0f\x0f\x3d\x9d\x4e\x30\x0f\x2a\x71\xc8\xf7\x66\x35\x97\x0b\x88\x43\x25\xcc\xa6\xab\xc9\xd1\x8a\xa1\xfd\x3d\x07\x2d\xb3\x4a\x3c\x03\x87\xf1\x9f\x40\x12\x2f\x4a\x8a\x92\xa9\xc9\xb7\x03\xc1\x8c\xe7\xc1\xff\xa8\x1e\xe4\x31\x0b\x30\x04\x21\x08\xeb\xc4\x6d\x85\x7e\x34\xbd\x03\x89\x21\xbb\x6b\x42\x13\x5a\x99\x92\x4b\xea\xe8\xef\x39\x92\x4a\x51\xe9\x74\xf7\x43\xa0\xdd\xdf\x76\xa0\xa6\xcb\xa6\xaf\x47\x5f\x70\xa5\x64\xbe\xa2\x6b\xd7\x3b\x02\xbe\x78\xea\x10\xab\xd9\xda\xae\xe2\xd8\x38\xae\xb0\x5c\x5c\x14\x7d\x40\x83\xed\x14\x15\xbc\x71\xd0\x34\x57\xf6\xae\x36\x0a\xce\x95\x4d\x80\x5b\xac\xf7\x52\x4e\x32\x9a\x62\x63\x2e\xd7\x57\xe8\x5a\xc8\x66\xfe\x88\x81\x33\xe4\x18\x6b\xeb\x62\x57\x8c\xba\x28\x4d\x19\xcf\x96\xe7\x60\x36\x76\x89\x2e\xae\x54\x34\xac\x4c\x94\x6c\x96\xca\xee\x04\x4b\xa4\xb5\xe4\xdf\xdb\x58\xb6\x08\x08\x3f\xb6\x72\x03\xf3\xae\xd2\xfb\x2b\x76\x87\xb3\xaf\xbf\xc3\x73\x83\x38\x41\xb4\x19\x7c\xd4\x98\x19\x97\xf7\xd7\x78\x9e\x80\x77\x3a\xf4\x19\x40\x49\x64\x8e\xcb\x47\x91\xcf\x46\x6a\x9a\x40\x53\xea\x35\x1d\x32\x57\xc6\x3c\x98\x12\xda\xfb\x35\x64\xae\xe0\xdf\x11\x37\x3e\x50\x5b\xd6\x3d\xbb\xe2\xb7\xf6\x4d\x51\xe3\x0c\x51\xbd\x7b\x62\x2b\x14\x8f\xae\x7c\x66\x5e\x34\xfc\x9d\x6a\xa8\xd6\x1e\x9c\x94\xe5\x8c\x7f\xc5\x4d\x4b\x8d\xe0\xc7\x31\x9e\xe0\x35\xc6\x85\x6a\xd7\xe3\x07\x4e\x4c\x22\xc1\x2b\x24\x70\x02\xfe\xc7\xde\xe1\x15\x3a\xe9\x29\xb2\x55\xbe\x77\xce\x10\xbf\x76\x85\x7a\xd9\xe9\xc1\xd1\x71\x59\xe8\xa3\x3e\xb5\x6a\x3f\xc6\x48\xfd\xaf\xfc\xf8\x86\x50\xaf\xe6\xe1\xd1\xfe\x70\x58\x7e\xfc\x2b\x47\x65\xdb\x57\x57\xe9\x41\xe6\xb5\xfd\x7e\x38\xec\xde\x8e\x89\xc4\xae\xc4\xf0\x50\xfd\x4f\x8f\x12\xb4\xb3\xea\x85\xa6\xf9\xda\xfd\x7d\xc1\xa8\x98\xe5\x9d\x0f\x3e\x52\xc3\x61\x1c\x9f\x78\xdd\xf1\xca\x54\xfb\x9d\x1e\xed\xa1\x63\x9f\x38\x3a\xb8\xb1\xf3\xa3\xb2\x45\x4b\xda\x20\xec\xf7\xd0\x2b\xd3\x24\x62\x96\xf9\x44\xe4\x1c\xa9\xf5\xa5\xf3\x61\xc6\xa7\x79\x09\xf1\x30\x3d\xc0\xf8\x70\x79\xc1\x2a\xd8\x83\xf8\x20\xbe\xda\x2b\x4b\xff\x0d\x8d\x38\xa2\xb2\x86\x64\x6d\x18\xfc\x42\x35\x2c\xe3\x03\xec\x83\xd3\x81\xfc\x9d\xbf\x72\x8c\xe9\x52\x9e\xf1\xca\xac\xe6\x9b\x7a\x41\x35\x23\x8b\xa2\x47\xc7\xf1\x41\x66\x46\x1a\x4f\x98\x52\x2f\x37\x1c\x69\xeb\x61\x2c\xb1\xdc\xcf\x7a\x47\x71\xd9\xb8\x93\x19\x05\x17\xa0\x13\xbc\xb7\x5f\x7e\x2f\x44\x44\x31\xf6\x27\x07\xf1\xfe\x41\xf9\xd9\x88\xa7\x1a\x3d\x5b\xa4\xc7\xfa\xa2\x3d\x23\xc3\x61\xf7\x86\xe0\xdb\xea\x2e\xef\x97\x11\x21\x4d\xcd\xf5\xfe\x15\xc1\x79\x26\x8c\x8f\xe9\xf5\x59\x02\x88\xf6\xa2\x10\x46\x45\x97\xd1\x7c\x0e\xec\xbe\xa7\x2d\xf1\xb1\x88\xf8\x12\xc9\x65\x51\xf5\xf2\xfe\x39\xa5\x4c\x1a\x67\xb7\x29\xf6\xce\xce\xa8\x19\x95\x00\xbe\xc3\xb7\x09\xd8\x03\xf0\x7d\x9e\xe9\xbf\xfa\x76\x08\xf0\x8e\x51\x0c\x16\x03\x5b\x34\x45\xe9\x18\x97\x6d\x39\xd8\xd8\x7e\x3f\x37\x6e\xd2\x0f\x36\x69\x49\x15\x27\x0d\xef\x65\x46\x24\x56\xac\x53\x7d\x86\xc6\x3b\x61\x8a\xd6\x3f\x2e\x16\x70\xf9\xfa\x5d\x12\xe2\x3d\xcd\xe7\x89\x0c\x96\xf6\xf3\xb9\x39\x2b\x2b\x6c\x57\x7b\x87\xb6\xaf\xea\x87\xdf\x59\xb8\x0c\xc0\x19\xce\x95\x40\x34\x84\x3a\x8c\x8b\xff\x2c\x98\x02\xc8\xf3\x2c\x33\x5b\x82\x4b\xa0\xbc\x56\xda\xf6\x8d\x5a\x60\x35\xa0\xd3\x38\x7e\x2a\xa4\xb7\x3a\xb9\x8d\x86\x92\x19\xd4\x74\x75\xfb\xbb\x32\x7e\x8a\xd3\x73\xfc\x2d\x90\xa9\xf2\x66\x2d\x78\x8f\x13\xac\xfa\x6a\x2d\xa0\x1e\xed\xda\xc8\x76\xa6\xcf\xa8\x65\x9a\x72\x38\x23\xf2\xbf\x23\xd5\x3c\x98\x0e\x68\x31\xe3\x3e\x0f\xcf\xe5\xca\x84\xd6\x29\xcf\x1a\xf2\x0b\xdf\xa1\x89\x5e\x47\x1f\x95\x5b\x5e\xe3\x35\xf1\xe3\xaa\xb4\x0a\xb7\xc7\xc4\xde\x5b\x2c\xd1\x25\xa3\x78\x60\xbb\x33\xcc\xf1\x6d\x87\xdd\x60\xde\x91\x63\xdc\x49\x67\xe9\x35\x63\xff\x9f\xe8\x50\x7d\x77\xc7\x66\xf3\x52\x41\x96\xb7\xac\x80\x7c\x45\x78\x26\x3a\x8c\x76\x50\xe7\x96\x70\xdc\x0e\xad\x10\xb1\x1c\x67\x44\xb4\x88\xd8\xa5\xfd\x20\x13\x34\x2a\x86\x44\x57\x4e\xf6\xa3\x03\xdb\x46\xf1\xbc\xb7\xf6\xf8\xaa\x65\xed\x9f\x13\x34\xbd\x8c\x07\x97\xd9\x55\xd1\x83\xa3\xfd\x93\x82\x6b\x8e\xf6\x8f\x4f\xeb\xd0\x06\x6e\x25\xa1\x43\x32\x5a\x29\xf7\xe1\xe3\xcb\xd1\x87\x5f\x8a\x49\x54\xf2\xea\xe1\x06\x2c\x7a\x46\xc4\xf5\xdb\x1f\x2d\x8c\x02\xc0\xda\xd3\xe6\xfd\x87\x8b\x27\x56\x7d\xab\x8f\x2e\xb8\x96\x0f\x7b\x6e\x31\x3d\x3c\x5a\x46\xb1\x73\x2c\xd8\x8c\x6b\xaf\xdb\xfa\x23\xfe\xf6\x47\x52\x0a\x9a\x65\xab\x46\xd1\xc2\x3b\x2c\x6f\x99\x52\xf3\xd6\x87\xff\x06\x5d\xe1\x42\x6e\x64\x57\xab\xc1\x9f\x99\xe3\x67\x9d\x0f\x8c\xcb\xd6\x81\x77\xe5\x6b\x73\x67\x93\x4e\x16\xb2\x34\x6e\x8a\xe7\xcf\xd3\xcb\x42\x8a\x5d\x2d\x6d\xe0\xd1\x7e\x7a\x35\x96\xbc\x58\x7f\x0a\x3c\xcf\x32\x8e\x85\xf0\x64\x2d\x9a\x49\x66\x91\x34\x3f\xd7\xe2\x48\xf5\xaf\x2f\x19\xba\x85\x00\x75\xb2\xa1\x78\xb3\x16\x38\xd5\xf7\x56\xde\x28\xe9\x56\x55\x17\x6d\xe0\xec\x26\xa3\xf2\x11\x8d\x84\x8f\xf2\x86\xa2\xd7\xab\xee\xf7\x75\x93\x5e\x7a\x20\x46\x39\xbb\x52\x2b\xa8\x86\x51\x3c\xb4\x75\xd4\xd4\x59\xce\xfd\x4f\x19\xf2\x5a\xcf\x1f\xc1\xfa\x05\x9b\x4c\x10\xcd\x9e\x54\xf7\xaf\xe7\x1f\x5e\xb8\xa1\x7a\x62\xfd\x5f\x04\xfe\xf8\xa6\x90\x9c\x43\x94\x8b\x82\xf4\xf6\xf7\x9a\x3a\x8b\x3e\xd8\x7d\xa1\x43\x0b\x9f\x84\x4a\x4d\xeb\xe9\x35\x14\xa9\xde\x53\x74\x1e\x2c\xc7\xec\x69\xa4\xf5\x66\x20\xca\xf5\x36\x8d\x99\xc3\xe6\xf7\x7a\xb3\x4e\x3b\xce\x9f\xd0\x76\x7d\xba\x6e\x58\x9b\x33\xc9\x52\xf6\xb4\xca\x1f\xdf\x5c\x5c\x5c\x93\xe9\xdf\x30\x27\xc3\xf9\x27\x32\xc5\x47\x13\xd4\x63\xa1\x1c\x37\xb4\xd8\xcd\xc7\x53\x15\xb3\xe0\x64\x3a\xb5\x70\xf4\xaf\xb6\xb9\xfd\x62\x8c\xd3\xeb\x4d\x6c\xd9\xc7\x9e\xab\xb6\xee\x1a\x0a\x91\x67\x9f\xf7\x9e\xa2\x8a\x5e\xe3\x79\xa1\xc8\x99\xd0\x8c\x27\xc0\xe0\x38\x73\x8a\x32\x11\xe3\xd5\x4a\x81\x16\xb7\x7b\x9b\x88\xfd\x9a\xf9\xb4\xb7\x21\x8a\xbe\xf1\xd4\x9c\xf3\x4f\xb4\xcc\x7b\x27\x9f\xc5\x34\x1f\x22\x92\xaf\x26\xd7\xe3\x5e\x93\xf5\xb5\x26\x32\xe2\x3a\xc8\xad\x31\xe5\xd6\xc5\xfc\x82\xfc\x86\x9d\x0e\xbb\xbf\x71\xc7\x2f\x24\x49\xaf\xdb\xa6\xfc\x92\xbe\xbf\x9c\x8e\xf1\x04\x73\x94\x2b\xad\xfd\x11\x05\xf2\xa9\x96\xde\x19\x27\x3a\x87\x88\x51\x5a\x98\x3e\xf3\xbe\x59\xaf\xfe\x93\xe4\x79\x55\x0e\x3d\x99\xc9\xde\xe8\xeb\x0c\x3f\x65\x80\xc6\x33\x99\xb1\x5b\xea\xf3\xfc\x23\x36\xc0\x67\xb1\x29\x37\x9d\x93\xcb\x2c\x49\x65\x3e\xae\x42\x76\x85\x11\xb9\xf6\x34\x28\x6d\xc8\xc3\x8d\x07\xa8\xd5\x7c\x5c\x5b\x84\x34\xcd\xc7\xf5\xc5\x6c\xc5\x7c\xd4\x46\xe3\x23\x52\xe3\x53\x4d\xc7\x3f\xa2\xe5\xb8\xc9\xe3\x23\x5e\xe5\x27\xef\xf3\xd6\x83\x51\xbb\xbf\xce\x26\x57\xec\xeb\x6d\x2d\xfa\xf8\xfc\x88\xf8\x59\x4b\x08\x6a\xcb\x4e\x8c\x3d\x74\xa2\x94\x1d\x1b\x0f\xda\x8b\xcb\xb3\x28\xf2\x96\x15\xaf\xf7\xfc\xd7\x63\x8e\x5d\x79\xef\xfd\x90\xcd\x78\xf1\x7a\xff\xf0\x53\xf7\x5a\x96\x87\x4c\xff\xce\x67\x25\xc9\x04\xf3\x8f\x24\xbd\x16\x49\x6c\x4e\x5a\xab\x55\x80\x17\x41\x91\x34\x00\x84\x92\x65\xb7\xcf\x6e\x95\x91\x55\x1a\x0e\x80\x3a\x83\x96\xd1\x31\xaa\x01\xa2\x84\xa6\x5c\x87\x7d\xb8\x3e\x80\xb2\x69\x10\x2e\xe0\x61\x1c\x87\xe1\x22\x5c\x76\x3e\x22\xcd\x31\xe2\x0e\xb4\x49\xb7\xad\xea\xeb\xc8\xcf\x3a\x6f\xcc\x26\x4f\x65\x8e\x81\x8e\xe0\xfd\x3a\xbc\xb6\xbf\xb4\xf9\xbf\x13\x39\x7e\x61\x72\xdc\xac\x8f\x49\xf5\x68\x79\x2f\x5e\x79\xaa\xab\x7e\x94\x7b\x2f\xde\xe8\xf0\xf6\x7e\xdc\x76\x60\x7b\x49\x6f\xce\xb5\x5c\xa5\xa3\xe6\x7d\xc7\x25\x43\x34\x63\x9c\xda\x28\xfc\x16\xc9\x71\xc4\xd9\x8c\x66\xc1\x61\xfc\x67\xf3\x84\x68\xc6\x26\x41\x18\xb6\xd2\x7e\xcd\x0a\xfe\xa8\xac\xac\xf2\x69\x42\xa0\xe5\x34\xe9\xef\x3b\xf9\x99\xcd\x46\x5b\x8d\x4e\xa8\x6d\x90\xd7\x63\x09\x5a\x22\x01\x1a\x3b\xf9\xfe\x0b\x7d\x9f\xd6\x00\x4e\x10\x9d\x17\xd9\x6f\x2f\xc1\x7b\x35\x88\xe0\xa3\x1a\x19\xf0\xd1\x90\x1b\xbc\xd2\x02\x16\xbc\xd2\x8e\x03\x70\x41\xee\xd4\xbf\xf8\x46\x1f\x68\x7c\x69\x63\xc2\xde\x11\x53\xd1\xbc\xcc\xed\xd7\x8f\xb7\x38\xd7\x95\x3e\x8e\x09\x97\x3a\x36\x40\x43\x2b\x7e\x92\xa1\xfe\x35\xa8\x9e\x26\x28\xb7\x9e\x35\xaa\x78\xf1\x29\x83\xf9\xab\x60\xf4\x77\xdb\x3d\x5f\x36\x9e\x0a\x89\x8b\x09\xca\xf3\xe4\x7e\xc8\x58\x02\xf4\xca\x42\x67\xaa\x74\xd2\xdb\xdb\x3f\x38\x3c\x3a\x3e\x39\x85\x2e\x1e\xec\xb2\x18\x70\x68\x47\x1a\x16\x43\x0c\xbd\xb1\x85\x6e\x50\xa1\x1d\xcd\x01\x34\x07\xbf\xf4\x52\x91\x04\x14\xdf\x76\xce\x90\xc4\x61\x24\xd9\xeb\x8b\xf7\x26\xa9\x75\x10\x42\x8a\x85\xc4\x59\x72\xcf\xae\x7e\x4d\x80\x4e\x74\xb4\x80\x94\x51\x7c\x47\x84\xc4\xd4\x1e\x57\x19\xcf\xc6\x89\xcd\x36\x48\xc4\x47\xae\x3a\xde\x5b\x40\xd5\x91\x37\x88\x8f\x70\x72\x7f\x21\xd9\x34\xd9\xee\x41\x73\x0f\x76\xe9\xa4\x7c\x57\x5e\xbf\xee\xce\x3d\xbf\x3e\x4b\x80\x98\x8b\x9c\x8d\x00\xfc\x80\x14\x86\xea\x0d\xb0\xea\x58\xf1\xc5\xe8\x48\xe6\x42\x34\x00\x3f\x70\xc2\x38\x91\xf3\xe4\x30\x86\xcf\xf3\xfc\xb9\x7c\x4f\x53\x85\x04\x54\xa2\x2a\xd5\x81\xa3\x8a\x52\x59\xda\x03\x10\x64\xe9\x1e\x18\x40\x45\x35\xc9\x11\xa1\xad\x9b\x7a\xd5\xc6\xb4\x6b\x23\xe9\x59\x3d\x4d\x75\x07\x8d\x46\x6a\x38\x70\x2f\x86\x6f\xd1\xdd\x07\xc4\x51\x9e\xe3\x3c\xe9\xc1\x9f\x30\xca\xe5\x58\x3b\x63\x12\x90\xaa\x3f\x02\xc0\xb7\x84\x9a\xf7\x73\x4d\x6c\x5d\xcd\xbe\x38\xc3\x28\xcb\x09\xc5\xc9\x3e\xee\xf5\xe0\x07\xce\x46\x1c\x0b\xe1\xde\x1e\xa9\xb7\xcf\x67\x92\x9d\xe3\x1b\xcc\xa5\xea\xd2\x0b\x44\x11\x9f\x2b\xa5\xc6\x5a\xd1\x06\x7d\xbf\x3f\x97\xf7\x6f\x3e\xea\xb0\x60\x45\xb7\xf3\xf2\xe7\xfb\x29\x56\x62\x2f\xd1\x07\x52\x08\x4d\xe5\x3f\xc7\x4c\x48\xa1\x66\x76\xc5\xb8\x4f\xee\x0b\x47\x87\x5a\x72\x8a\x05\xdb\xa0\xa8\xed\xb9\x64\xef\x10\x9f\xc2\xb7\x2c\xc3\xc5\x9e\xea\xc2\xd9\xbd\x55\xd2\x19\xa3\xb6\xb4\x67\x7f\x11\xea\x49\x91\x54\x99\x4f\xc9\x7d\x61\x7e\x25\x97\xf7\x32\x9d\x26\x47\x71\x0f\xce\xb2\x69\x72\xd8\x3b\x58\x0c\xa0\xb6\xef\xd4\x0c\xc8\xd1\x15\x91\xbb\x06\x66\x97\x8e\x92\x5c\xa9\xcb\x8a\x15\x5f\xd2\x1b\xd3\x7d\xeb\x18\xb6\x63\xa9\x59\xdc\x0e\x2b\x9e\x4c\x73\xa7\x5d\x37\x87\xdd\xd9\x27\xc9\xfd\x8b\x0f\xbf\x24\x87\x71\x0c\x0b\x13\x27\xd9\x3b\x3c\x82\xc6\xce\x4a\x62\xa8\x6c\xa6\x24\x86\xd6\xdc\x50\x3d\x3d\xc3\x3a\xa7\x87\xea\xcd\xeb\xb3\x73\xf5\xf7\xf5\x07\xf5\xaf\xb6\x5e\x14\xe5\xce\xb1\x3e\x8e\x92\x29\xdb\x41\x8f\x8a\x59\x9a\x66\xd9\x14\xc0\xbf\x69\x01\xa1\xfa\x09\x8b\xf7\xda\xb7\x67\xde\x1f\xc5\xbd\xc5\x00\x5a\xdb\xc3\x54\x37\xc6\xc1\x42\x21\x34\x45\x32\x2d\xee\x02\x30\xbd\x78\x8b\x8b\x03\x63\x9e\x0f\x20\x51\x83\xf4\x86\x8d\x0a\x5a\xbf\x45\x77\xaf\x48\x8e\x35\x6a\xf6\xb7\x71\xa3\x68\x2d\xe7\x39\x97\x64\x88\x9c\x71\x63\x1c\x00\x8a\xe1\x2a\x96\x7c\x12\xeb\x16\x2e\xc8\x88\xa2\x3c\x01\x8a\x75\x2a\xbe\x11\x35\x39\x48\x7a\x3d\xd7\x15\x0d\xf0\x7d\x45\x52\xcb\xaa\x4a\x2e\x94\xb8\x9e\xe3\xe2\x18\x84\xe5\x3b\x6b\x00\x6d\x3a\xcf\x1a\x33\xac\x39\xbd\xe2\xe6\xdc\x8a\x97\x4e\x2c\x77\x7f\x9e\xc6\x52\xb5\x3a\xc1\x12\xeb\xbc\x73\x3f\x17\xc9\x06\x8a\x61\xc0\x99\xaa\xbb\x64\x30\x34\x1f\x9a\xdc\xc0\x00\x40\xb3\x61\x50\x9e\xa8\xb7\x2f\xce\xb0\x48\x39\xd1\xab\xaa\x2d\xa5\x53\x3e\xf4\xe0\xdf\x30\x17\xea\x65\x0c\x2f\x66\x57\x13\x62\x24\x75\x7c\xd7\x3b\xdc\xbf\xca\x8e\x0e\x71\x96\xee\xa1\x34\x8b\x63\x68\x2e\x44\xd3\x49\x6f\x93\xbd\x63\x35\x2d\xc9\x70\xee\x1e\x7f\x66\x57\xd5\x37\x8b\xa7\x2f\x90\x8a\x6e\x5d\x7b\xd6\xd1\x0f\x9c\xce\xf6\xbb\x4a\xef\xeb\xaa\xb5\x06\x7d\x86\x4c\x29\x1b\x06\x47\x7f\x23\xf6\xcf\x56\x71\x81\x9c\x22\x93\x8e\x51\x7f\x43\x6e\xf0\x96\x8c\x50\x96\xd9\xab\x25\xee\xa5\x48\xd4\x32\x1b\x51\x76\x1b\x84\x50\x4b\xd5\x9a\x42\xfa\xdd\x9e\xa2\x80\x2c\x72\x86\x1f\xc5\x3b\x3b\x52\xa7\xaf\xd6\xc7\x17\x8b\xf7\xdd\xa3\xf8\x93\xec\x2d\x87\xe2\x9a\x96\xd1\x1c\x23\x9e\xec\xc5\xbd\xd8\xb7\x8b\x8a\x97\xbd\xb6\x97\x7b\xbe\xa9\x54\xbc\xdc\x2f\xcd\xa4\xf2\xe5\x81\x7d\x79\xe8\xbf\x3c\xb4\x2f\x4f\xfc\x97\x47\x45\x43\x95\xfa\xc7\x45\x4b\x95\xf6\x4f\x8a\xa6\x0e\x8c\x49\xe6\x7a\xfc\x96\xe4\xd9\x93\x7a\xdc\xd6\xe5\xd3\xb6\x2e\xf7\x5a\xfb\xdc\x6b\xed\x74\xaf\x77\xd8\xd2\xeb\x5e\x7c\xd8\xd2\xed\xd3\xb6\x5e\x9f\x1c\xb6\x74\xfa\xb4\xd6\xe7\xbf\xa2\xe9\x17\x1f\x68\xbb\x4f\xf4\x99\x87\xba\x06\x75\xc3\xb1\x56\x13\xf0\xf1\x4e\xab\x2a\x02\xa7\x8c\x66\xe2\x95\x96\x60\xab\x32\xed\xe8\x29\x64\x8a\x05\xe0\x4f\x3f\x25\x7f\x7a\x9b\xfc\xe9\x02\xac\x73\x8d\xce\x52\xa9\xca\x46\x5d\x21\x39\x46\x93\xaf\x67\x75\x4c\x58\x86\x7b\x09\x10\x32\xd3\x9b\x07\x44\x7c\xc8\xd1\x9c\xd0\x51\x2f\xd9\x8e\xa1\xd0\x41\x70\xef\x67\x72\x3a\x93\x09\xb8\xd0\x4f\x1d\xa6\x1f\xff\x41\x7f\xe8\xf4\xd4\x3f\x7b\xea\x9f\xfd\x7f\xd0\xcb\x38\x4e\x7a\x7b\xc9\xe1\xc9\xa0\xf3\x86\x8d\x6c\xa9\xce\x18\x73\x6c\xbf\x1d\x26\x7b\xa7\x83\xce\xe5\xcb\xf3\xf3\x41\xe7\x97\x71\x87\x8d\xff\x41\xdf\x30\x94\x11\x3a\x8a\xca\x5f\xfe\xcf\xe8\x1f\xf4\x1f\xb4\xd3\xf9\xe1\x87\xce\x19\xa3\x78\xbb\xf3\x97\xbf\xa8\x17\xc0\x62\x65\xf2\xe0\x16\x48\xe9\x6b\x84\xd4\xe7\xcb\x7e\xbf\xdf\x7f\xe8\xb6\xfc\x37\xe8\xec\xc5\x7f\x52\x45\xb6\xb7\xb7\x3b\xbf\x50\x8e\x53\x76\x63\xaf\xa0\xd1\xb5\x13\xd3\xdc\x0b\x44\x29\x93\x9d\x94\x51\x49\xe8\x0c\x77\xae\xf0\x9c\xd1\x4c\x67\x79\xe8\xe8\xfc\xe3\x51\xe7\xe5\x5d\x8a\xf5\xb2\xdd\x11\x63\x36\xcb\xb3\xce\x15\xee\xa4\x68\x36\x1a\xcb\x48\x41\xf8\xa8\x8a\x12\xd1\x51\x60\x50\x67\x42\x84\x44\xd7\x38\xea\xfc\x17\x9b\x75\x32\x92\x75\x04\x9b\x60\x39\x26\x74\xd4\xb9\xe5\x8c\x8e\xa2\x8e\x56\x66\x4c\x54\x1f\xcb\xb0\x06\xf1\x8e\xc1\xce\x9c\xcd\x3a\x4a\xbe\x6b\x38\xdc\xa4\x56\xe9\x20\x3a\xef\x4c\x18\xc7\x9d\x0c\x4b\x44\x72\xd1\x61\xbc\x33\x9a\x91\x0c\xd1\x14\x77\x86\x9c\x4d\x34\xa2\x0a\x84\xee\x53\x67\x82\x85\x40\x23\xac\x49\xb9\x59\x42\xb5\x0a\xa7\x4e\x66\xb9\x24\x36\xfb\xc3\xb7\xe3\xfa\xe8\xad\x7b\x82\xc8\x94\xef\xf6\x00\xb4\x4e\x22\xe3\xcb\xe8\xbc\x37\x3b\xfb\x7e\x99\xbd\x7a\x99\x8f\xb7\xac\x5e\x66\xbf\x51\x46\x3b\x41\x6a\xa5\x0e\xea\xa5\xb4\x8b\xa4\x56\xe8\xb0\x51\x88\xdc\x98\xcc\x49\xd0\xe5\xda\x58\xa3\x9b\x1e\xf6\x5e\xf3\x65\x23\x0a\x9e\x25\xda\x5b\x44\xeb\x29\x8e\x9b\x00\xed\x51\xcd\x5e\x1c\xdb\x23\x9a\xfa\xec\x7f\xcd\x03\x53\x9e\x3e\xbc\xaf\xf6\xc1\x3b\x81\x08\xfd\xce\xfa\x27\x13\x75\x2a\x00\xd7\xc5\xb5\x90\xba\xf4\x7a\x51\xda\xf7\xeb\xf2\xc0\x34\xbb\xf3\x18\xc0\x3c\x15\x83\xf1\xeb\xf0\xda\xfb\x66\x9e\xfc\x6f\x7b\x95\x6f\x7b\xee\xdb\x64\x96\x7a\xf5\xcc\x53\x75\xec\x36\xc1\xb3\x40\xc3\x36\xe2\xf5\x56\x3b\x3d\xd6\xec\xe7\x95\xc9\x77\x65\x71\xfa\x51\x3f\x15\xf8\x8a\x22\x8a\xaa\xc8\x43\x6a\x9f\xdd\x77\xeb\x56\x29\x3e\x9b\xc7\xe2\xab\xbb\x3e\x1c\xba\x54\x64\xf6\x85\x2b\xe1\x5b\x4c\x65\xb1\xca\xdb\x2a\x7d\xd6\xeb\x99\x43\xcc\xf5\xc0\x23\x8e\xb5\xae\xd6\x65\x83\x22\x7d\x5a\x2d\x9d\x5a\xd1\x05\x67\xa3\xd5\x32\xa6\x15\xdf\x33\x9d\x03\xcd\x4f\x88\x56\xed\xd0\xba\xd8\x7c\x92\xf3\x79\x6a\x4d\xda\x7f\xef\x3e\xe9\xdd\xa7\x1e\xde\x7f\xea\xee\x13\xa6\x6c\x42\x28\x92\xac\x31\x3f\x57\x6f\x68\x74\xbc\x9d\x85\x1e\xde\xaf\x6f\x2d\x84\x45\x2e\x1a\x34\x6a\xb0\xf7\x06\x80\xe3\xfa\x9e\xc5\xae\x32\x46\x42\x68\x12\x44\xb6\x21\xed\x75\x08\x40\x50\x22\xf1\x48\x4b\x26\xbd\x4f\x59\xf7\xcf\xfa\x45\x59\xfd\xcf\x6a\x25\xb0\x8d\xe7\xe4\x06\x9f\x19\xed\xe3\x91\xe6\x1d\x9a\x8f\xa2\x52\x24\x70\xf7\x53\x25\xae\x05\x2b\xfc\x94\x69\x64\xaf\x99\x20\x13\xdc\x15\x98\x13\x2c\x56\x3a\x37\x20\x98\xb0\xd6\x4b\x7b\x3e\xdf\xb5\xe6\x9b\xce\xb4\x4f\x9b\x59\x85\xd7\x62\x82\x25\x27\xa9\xf8\x89\x8c\xc6\x90\xf6\x0b\x47\xc3\x33\x79\xe9\x7c\x0e\xbd\x81\x49\x47\x93\x44\xa7\x5b\xd8\xe6\x61\xf8\x78\xa1\x3d\x96\x81\x84\x9a\x8f\x26\x84\x06\xe6\x07\xba\x0b\xe8\x77\x51\x7c\x58\x65\xdd\x6e\x14\xef\x1d\xc2\xe8\x30\x84\x3d\x7b\x1f\x18\x2a\x9b\x7e\xc3\x6e\xa1\xe8\xa3\xa2\x65\x74\x89\x9a\x2d\xf7\x1a\x2d\xa3\x96\x96\xc5\xb2\x96\xe3\x50\x35\xee\x84\x45\x29\x9e\x42\x58\x81\x5a\xbb\x21\xda\xf8\x9f\x9e\x78\xa1\xdb\x7e\x1c\x2b\xa4\x3d\x27\x10\x99\x60\x21\xd1\x64\x5a\xf3\x05\xcd\x70\x22\x35\x57\x58\xf0\x74\x67\x07\x97\xae\x9f\xe2\x75\x97\x86\x4b\x33\x10\xae\x90\x71\xde\xf0\xae\xa7\x62\x95\x83\xb2\xa6\x05\x2d\x91\x24\xe9\x5b\x53\x6b\x45\x15\xc3\xa2\xcd\x1d\xbc\xea\x4d\x51\x61\x24\x66\x57\x92\xa3\x54\xa7\x35\x9a\x80\x30\x92\x4c\x51\x2b\x08\x17\x2e\x15\x6a\x49\x47\x1c\xec\xc5\x05\x09\xa3\xc3\x05\xac\x7c\xea\x9d\x2c\xff\x74\xe4\x3e\x1d\xd4\x3f\x1d\xb8\x4f\xfb\xf5\x4f\x7b\xee\xd3\x69\xfd\x53\xbc\xb4\xd6\xc9\xd2\x2f\xcb\x91\x38\x58\x8a\x79\x89\xc2\x51\xed\x4b\xec\x7d\xf9\xfc\x9e\x8d\xd6\x1b\xa0\x97\x49\x56\x69\x6f\x09\xa2\x43\x32\xb2\x39\x47\xbe\x9e\x9e\x52\x66\x37\x4f\x8c\x0e\xa7\x63\x68\x33\x8c\xa7\xfe\xb3\xb2\xaa\x13\x20\xe4\x4c\x9f\x6d\x47\xca\xfe\x49\x2e\x4d\xbc\x82\x09\x42\x28\x22\x0b\x4c\x2c\xd1\x00\xde\x60\x3e\x4f\xee\x4b\x30\xf7\x84\xa6\x6a\xc1\x1a\x25\xf7\x8c\xe2\xa4\x07\xe5\x2d\x4b\xf6\xa0\xae\x95\xec\x43\x55\x2b\x01\x62\xc6\xa7\x9c\x08\x42\x47\xf9\xbc\x93\x33\x3a\xea\xe8\x7e\x75\xe4\x18\xc9\x0e\x11\x9d\x19\xcd\xc9\x35\xd6\xce\x00\x26\xc7\x98\x77\xca\x1c\x89\x1d\x62\xd6\xc9\x8e\xb9\xa0\x18\x2c\xf4\x7f\x4f\x5e\xfc\x64\xf3\x3a\xe7\x6f\x38\x0d\x8a\xc0\x88\xa7\xe3\x8f\x98\x4f\x12\x00\x8a\x1d\xec\x0f\x4a\xbb\xea\x41\xc1\xb8\x53\x0d\x13\x40\xf5\x91\x06\xf5\xee\x0c\x8b\xd4\x68\xf7\xc9\x76\x0f\x8a\x31\xe3\x52\x5f\xff\xeb\xf8\x1e\xaa\x01\xd0\xaf\x2e\xef\x53\xa2\x2a\xbf\xc3\xb7\x9d\xff\xd2\x41\x85\x23\xce\x6e\xe5\x38\x89\xe2\x83\x13\x38\x65\xd3\x99\x49\xcb\x9a\x80\x93\x83\xf8\xf0\x64\xff\x18\x40\x8e\xe8\xb5\x0e\x78\x37\x09\x4a\xcb\xaa\x0b\x68\x81\xbd\x61\xa2\xf3\x9c\x8e\x70\xae\x14\x8b\x65\xf0\xf6\x4f\x4e\x0e\xf6\x63\x07\x6f\xcf\xc1\x7b\x81\x72\x32\x64\x9c\x12\x54\x42\x7c\x31\x26\x29\x1a\x31\x07\xad\x1b\xc5\x47\xbd\x0a\xb8\xbd\xe3\xde\xc9\xf1\xc9\x5e\x01\x6e\xdf\x81\x7b\x9d\xe7\x84\x32\x22\x4a\x60\x3f\xb1\x99\xd0\xd9\x61\x0b\xd4\x7a\x35\x50\xbd\xd3\xc3\xd3\xde\x41\x01\xea\xc0\x81\xfa\x88\xef\x90\x07\xe7\xc3\x98\xe4\x28\xc3\xf9\x74\x4c\x90\xd7\xcf\xbd\xa3\x0a\xb4\xde\xe1\xe1\x7e\xef\xe8\xb0\x80\x76\xe8\xa0\x7d\xc0\x94\x8a\x79\x7e\x83\x2a\x3d\xfd\x30\x66\x98\x92\x3b\x0f\xb9\x83\x1a\xb8\xde\xfe\xfe\x91\x23\xdb\x91\x03\xf7\x9c\x93\xdf\x18\xf5\x20\x5d\x20\xda\x79\x4e\x25\xa3\xa4\xa4\x5b\xb4\x57\xed\x6a\xef\x20\x3e\x8d\x7b\xa7\x05\xb4\xe3\x65\x5d\x55\xb0\xce\x08\xf6\x46\x20\xea\xc5\x87\x55\x50\xfb\x87\x87\x27\xa7\x47\x05\xa8\x93\x95\xe3\x79\x86\xf2\x1c\xf9\xcc\x71\x58\x23\xda\xde\xe1\xf1\xd1\xb1\x03\x76\xba\x0a\xaf\x9f\x99\xc0\xcb\xd1\x3a\x3d\x3d\x39\xf4\xb8\x36\x5e\x89\xd6\xf3\x99\x90\xc4\x63\x8c\xfd\xde\x71\x75\x0e\x9c\x1c\x1e\xc4\xb1\x03\xd6\x5b\x86\xd6\x6b\x9a\x11\x44\xd1\x94\xe5\xc4\xef\xe4\x71\x7d\x46\xed\xef\x9f\xee\x3b\x68\xe5\x0c\xb0\xd5\x4b\x78\x3f\xa3\xf4\x5a\x30\x7a\x43\xf2\xdc\xef\xea\xc1\x7e\x0d\xde\xde\xe1\x49\x09\xaf\x9c\x02\xaf\x72\xc6\x49\x56\x63\x8d\x57\x1c\xd1\x94\x88\x94\xf9\x08\xd6\xba\xbb\x7f\x7c\x70\xe0\xa6\x54\xef\x60\xf5\x14\x65\xf9\x6c\x72\x35\x13\x3e\x7e\xb5\xfe\xee\xed\x1d\x1e\x96\xf8\x95\x33\xe1\xfd\x98\x30\x7f\xae\x23\x9e\x33\x29\xbd\x9e\xee\x9f\x56\xd9\xf6\xf8\x74\xef\xe4\xa8\x44\xac\x9c\x04\xef\x18\x97\xe3\xce\x0b\xc4\x59\x4e\x7c\x02\xbe\x62\x5c\x76\xfe\xae\x3e\x96\x40\x0f\x0e\x1b\x40\x8f\xf7\x4a\x4e\x59\x3a\x17\xce\xb0\xe4\x4c\x99\xf7\x4e\x16\xed\x1d\x57\x21\x1d\x9d\x9c\x1c\xc7\x3d\x07\xa9\x9c\x0a\x6f\x49\x3a\x26\x23\x44\x4b\x60\x2f\xf3\xce\x07\x24\xfc\x69\x75\x5a\x9d\xef\x47\xc7\x07\x07\xfb\x25\xd1\x96\xce\x84\xb7\x78\x32\x1d\x7b\xdc\xd6\x8d\xe2\xc3\x2a\x7b\x1c\x1d\xee\x1f\x1c\x3a\xe6\xdd\x8b\x3d\x48\x94\x62\x21\x8c\x23\xd7\x32\x08\x46\x52\x56\x78\xad\x36\x41\x8f\x0e\xf7\x0e\x62\x27\xd4\xf6\xca\x99\xf0\x77\x24\xc6\x84\x8e\x94\x7c\xf5\x28\x46\xf5\x39\x0f\x07\xec\xa8\xca\x67\x47\x07\xa7\x07\xa7\x25\x30\x6f\x29\x60\x39\xe3\x28\xf3\x98\xc3\x03\x5f\x82\xab\xf5\xf3\xe0\xe8\xe0\xc0\x89\xb4\xbd\x72\x1a\x9c\xe9\xa0\xce\x54\x76\xd8\xb0\x63\xb8\xd5\xe7\xdf\x1f\x59\x75\x51\x88\xeb\x03\x71\x70\x78\x7a\xe4\x24\xd2\x5e\x39\x19\xde\x22\x21\x50\x3a\x9e\x09\x2c\xa5\x37\x20\xef\x90\x18\xeb\x09\xdb\x3d\x43\x37\x24\x13\x15\x8c\x8f\xf6\xaa\xb0\xf7\x0f\x0e\x8e\xdc\x82\xb3\x77\xb8\x6a\x68\x7e\x44\xb9\x24\x4a\x67\xf3\x87\xba\x86\xea\xde\x5e\x2f\x2e\xc1\x1d\x79\xa8\xf2\x79\x8e\x68\x56\x42\x7b\x7f\x9d\xa3\x31\x9b\xa0\xce\x0b\x22\xe7\xde\x32\x11\xd7\x10\xec\xc5\x47\x3d\xc7\x85\x7b\xe5\xdc\x28\xea\xfb\x8b\xff\x8c\x08\xdd\xf1\xdd\x9f\xf1\x70\x88\xb9\x60\xb4\xa3\xe3\xc9\x3c\xf8\xb5\xf9\x12\x9f\x9e\x94\x82\x70\xaf\x9c\x2f\xff\x89\xa9\x9c\xa5\xd7\x73\x6f\x79\x64\x5c\xea\x1e\x78\x9c\x59\x87\x75\x70\x58\x0e\x53\x39\x5f\xde\x73\x3c\xf2\x99\xf2\x0d\x12\x9d\xbf\xe1\x91\xbf\x0a\xed\x1d\xd4\x61\xed\x1f\x9c\x9c\x38\x95\x22\xf6\x54\x9e\x1b\xe4\xcb\xd3\xb7\x24\xbf\x45\xb3\x6b\xec\x4d\x98\x38\xae\x72\xe5\xe1\xe9\x69\xaf\x1c\xe2\x7d\x6f\xc2\x28\x19\x4c\x05\xf1\x50\x7b\x9e\x5f\xcd\xfe\x35\xc3\xfc\x5f\x33\x0f\xe0\xde\x7e\x15\xb9\xc3\xc3\x23\x6f\xd2\xec\xef\x55\xf4\xb1\xb7\xf8\x8e\xa4\xde\xb4\xf9\x38\x4b\x2b\x0c\x18\x1f\xd7\x80\xed\x1d\xf5\x7a\x8e\x6a\xfb\xfb\xcb\xb5\x8a\x57\x1c\x0b\xea\xcb\xab\x93\x5a\x3f\xe3\xd3\xd3\xbd\xb2\x9f\xab\xd7\x8c\x0b\x94\x72\x34\xc1\x54\xfa\x00\x8f\xab\xac\x77\x70\x7c\x7a\x74\x52\xa2\x76\xb8\x12\xe0\x1b\x65\x58\xfc\x88\x51\xea\xc9\xf9\xb8\xc6\x21\x07\x47\xa7\x07\x7b\xe5\xa8\x1e\xad\x04\xf8\x9f\x88\x0a\x24\x6a\xb3\x23\x3e\xac\x43\x3c\x8e\x4b\x4d\x76\xff\xd8\x93\xf7\x42\xb0\x19\x27\xbe\x98\x16\xc8\x97\x5c\x35\x40\x87\xc7\x87\x27\x25\xa0\x93\xe5\xc3\xf0\x37\xc2\x47\x84\x12\xd4\xe8\x6c\x6d\x51\x3b\x38\x38\x39\x38\x76\xc2\x70\xbf\x9c\x0e\x05\x00\x8f\xeb\xd4\xc4\x92\xbe\x26\x5b\x93\x52\x07\x07\xc7\x27\x07\x6e\x59\x3b\x28\xa7\xc3\x5f\x31\xe3\xa3\x9a\x2e\xa0\xe5\x76\xe7\x62\xca\x09\x1d\xf9\x53\xac\xa6\xce\x1e\xec\x9f\x9e\x94\xa3\x7b\xd0\x5b\x21\xfa\xdf\x4f\xd0\xd8\xc7\xee\xf0\xb4\x06\xe9\x60\xbf\xd4\x2e\x0e\xfc\xf9\x70\xc5\x91\xb8\xf6\xd0\x3b\x47\x39\x26\x23\x5f\x15\x38\x39\xae\xc1\xea\x1d\x1f\x94\x58\xed\x3f\xaa\x5f\xbc\x25\x68\x42\x7c\xcd\xa7\x86\x5b\xef\xf8\xa8\x5c\x7a\x0f\x0e\x96\x6b\x66\xef\xd1\x75\x55\xbc\xc5\xb5\xd5\xed\x20\x3e\xda\xf3\xba\xb9\x7a\x3a\xbc\x25\x94\xe2\x86\x1a\x5a\x93\x72\x07\x71\x1c\x1f\x97\xc8\x79\xab\x85\xaa\x2d\x98\x44\xbe\x1c\xc9\x7d\xfe\xad\x23\xb7\x7f\x7a\xd2\xdb\x2b\x39\x64\xd5\x32\xf1\x22\xc7\x37\xb8\xd2\xd5\x6e\xd4\x3b\xe9\xd5\xc0\xc5\xbd\x72\xd5\x39\x38\x59\xa2\x30\xfe\x5d\x69\x55\x15\xc6\x3d\x3d\xae\x99\x9a\x47\x87\x87\x4e\x5d\x3c\x28\x27\x81\x99\xdd\xde\x14\xe0\x79\x53\xb9\xa8\x75\xf1\xf8\xf4\xf0\xd8\x4d\xd1\xc3\xb8\xae\x8f\x0d\xa0\x49\xde\x8d\xb3\x0b\x67\x77\xd7\x37\x0b\x4a\x9b\x1e\x40\xe0\xcc\xf3\xe8\x72\xb0\x64\xcb\x28\x2a\x2b\x44\x92\xbd\x61\xb7\x98\xbf\x40\x02\x07\xee\xc2\x01\x53\xc8\x01\xaa\xa7\x0f\x97\x9e\xe7\x8b\xa2\x09\xae\x02\x89\x08\x4d\xf3\x59\x86\x45\x80\x4d\x9e\x7a\xc1\xb8\x5c\x89\x7e\x05\x63\xe0\x7b\x21\xec\x63\xe9\x80\x58\xda\x23\x07\x43\x95\xff\xd1\x5c\x10\x13\xf9\xa0\x6a\x9d\xab\x40\x7d\x86\x23\x8e\x6f\x30\x57\xe8\x27\x78\xc3\xcb\x96\xaa\xce\x20\x32\xc1\xb9\x3e\x9d\xe1\xfb\x83\x5a\xf7\x3b\xbe\xbc\xaf\x67\x8e\x85\xc4\x3c\x43\x8f\x47\x04\xe8\xb8\xc8\x36\xcf\x71\x0f\x82\xcc\x64\x0f\x67\x4f\x80\xb3\x29\x25\xc5\xb7\x71\xed\xa4\xbb\x12\x8a\xa2\x9b\xda\x9d\x50\x25\x7e\x60\xe0\x5f\x97\x56\x43\x3d\xd9\x8e\xa1\x44\xe2\xda\x04\x31\x4f\x91\x1c\x9b\x5f\xcb\xaf\xa3\x0c\x80\x49\x9c\xdd\xce\xde\xea\x9b\xde\xc7\x90\x01\xd8\xd5\x37\x6e\xe8\x7d\x10\x7b\xa5\x95\x78\x39\x99\xca\xb9\xbb\x87\xa3\xbe\xa9\xa6\xf7\x88\xb6\xc8\x30\xa0\x3f\xc4\xc5\xc5\x21\xf8\x92\x76\x7b\x83\x2d\xd4\x2f\x13\xb1\x9b\x56\xa0\x86\x5f\x86\x97\xe0\x5c\xe0\x0e\xea\xcb\xf2\x2e\x92\xe9\x4c\x8c\x03\x73\x58\x48\x9a\xae\x21\x45\xe2\x05\xbc\x1c\x78\x37\x96\x98\x9d\x96\x9d\x9d\x00\x5f\x62\x6f\x0f\x8a\x88\x37\x48\xc8\xfe\x76\xac\x6a\x6c\xb8\xe3\x28\xba\x19\xe1\x38\x95\x8c\xcf\xbb\x98\x4a\x3e\xff\x06\x38\x04\x68\x0a\x7c\x64\x2f\x15\x3e\x4b\x86\x14\x68\x64\x23\x93\x22\xa6\x7d\x7c\xf5\x25\xcd\x53\x73\x0b\x09\xc7\xd3\x1c\xa5\x38\xd8\xfd\x3f\xff\xd8\xdd\x85\x00\x84\x50\xf6\x31\x4d\x59\x86\x7f\x39\x7f\xed\x50\xf1\x2e\x89\xf7\xc0\x87\x6e\x04\x2a\xac\x11\xe0\xf0\x99\x4c\xca\xa1\xc6\xf5\x51\xde\x6c\x24\xcc\xe1\xa3\xee\xd8\x66\x38\xf8\x5a\x83\xe0\x4d\xbf\x2a\x46\x6a\xf6\x31\xfa\x13\x9a\x5c\xcd\xf8\x08\xf3\xe6\xc5\x6c\x9b\xf5\x76\x26\x25\xe6\xdd\x09\xa6\xb3\xaf\xd7\x57\x13\xb7\xb3\xec\x0e\x3b\xce\x66\x65\x60\x54\xe3\xab\x59\x7f\xdd\x49\xb1\xa6\xe4\x31\xc0\xf5\x52\x6e\x4a\xd8\x6b\x5f\x68\x9d\x63\xad\x90\xf7\x6e\x89\xaf\xd7\xd4\xbb\x8c\x26\xe6\x2d\x7c\x78\xb8\x1c\x84\x7a\xa5\x0d\xda\xf6\x82\xb1\x01\xa1\x1b\x09\x21\x2a\xae\x2a\x37\xcf\x96\x8d\xdd\xa1\xb6\x7e\xbf\x4f\x9f\x75\x7b\x89\xff\x02\x3d\xeb\x25\xf4\x2f\x48\xbd\xa6\x3f\xa8\x87\x58\xab\x1b\x2b\x47\x1e\x8e\x98\x64\x3f\xb3\x2b\xf1\x8a\xf1\xf2\xec\x9c\x3f\x92\x78\x67\xc7\x62\x46\x32\x10\xda\x5b\xec\x0c\x81\xbd\x3b\x00\x3e\x32\x7d\xeb\xa5\x00\xf0\x5e\x59\xd6\x73\x1d\x9a\x25\x92\x7b\x47\x89\xc4\x03\xb2\x58\x84\x9b\xb1\x9c\xe2\xe3\xf6\x9b\x77\x5d\x69\x59\x9c\xca\xd2\x85\x7f\xff\x03\x23\xa5\x00\x9c\xb0\x0c\xe7\x4b\xee\x65\xd6\x1d\xd1\xfb\x5c\x21\x34\xd7\x91\x3e\x31\xfd\xbe\x06\x64\x20\xb4\x5e\xac\x96\x13\x3d\xf9\x97\x55\xf9\x03\xde\x36\xab\x8f\xee\x75\x87\xa4\xba\xb7\xf8\x95\x96\x39\xbd\xfb\x8c\x2b\xba\x10\xf0\x11\xf4\x44\xb1\xf7\x5a\x47\xbe\x73\x7b\x08\x0c\x15\xe7\x09\x05\xf9\xcd\x9e\xb8\xd4\x37\x66\x24\x31\x34\x77\x5d\x24\xb1\x32\x75\xb0\x6e\xb0\x21\xa1\x78\x5a\xbf\x31\xd6\xa8\xf1\x3c\x0d\x2b\x6a\x3d\x4f\x4b\xf3\x43\xad\x71\xcf\xdc\xeb\x09\x92\xe9\x38\xd8\xfd\x3f\xd1\x9f\xff\xb1\x1b\x44\x7f\x0e\xff\xe7\x6e\x78\xd9\x1b\x24\xc5\xf7\x45\x68\x6f\xc3\x7a\xad\xf0\xd7\x07\xd0\x9a\xb7\xe2\x60\x7b\xf3\x4c\xeb\x3d\x63\xa6\x37\xca\x22\x92\x33\x8e\xf2\xbf\xab\xc7\xa2\x6b\xee\xed\x4f\xfa\x79\x53\x79\x40\x6e\xe6\x5d\xa5\x00\x4c\x08\xe7\xac\x76\xb3\x60\xf5\xdb\x8a\x5a\x7f\xc0\x39\xf0\x2b\xbb\xea\x66\x78\x9a\xb3\xf9\xa4\x26\x09\x7f\xdf\x79\x50\x31\x01\xea\x48\x81\xea\x6d\x20\x03\x58\x7e\x2c\x2e\x1c\x7c\x3f\xc5\x34\xd9\xee\x6d\x34\xe6\xd5\x66\x76\xcb\x9f\x5d\x1b\x56\xf4\x0d\x88\x85\xcd\x0e\x42\x54\x7b\x24\x5a\x4e\xec\x14\xe2\x9c\xdd\x60\xce\x49\x66\x63\x5f\x8c\x10\xf8\xaa\x61\x83\x45\x87\x59\x5e\xb3\x07\x9d\xbd\xef\x0f\xbb\xbd\x50\xb5\xc0\x3c\x5c\x16\xee\xa5\xf5\xb2\x33\xaf\x5a\x33\x0a\xd4\x7d\xb3\x2a\xd9\x8d\x39\xd1\x5a\x1e\x67\x5d\x1a\x04\xea\xd7\xb5\x3e\x11\xd0\xac\x1d\x96\x8e\x8f\x45\x08\x91\xc9\xf6\xb4\x1a\xa9\x06\xda\x55\xd4\x96\x7a\x68\xea\xd5\x1e\xbf\xdd\xf2\x7e\xa1\xac\xd6\x58\xa9\x7a\xa1\x76\xf1\xdc\x9e\x21\x89\xfb\xdb\x71\x79\xe5\x30\xeb\xe3\xc8\x84\xf1\x3c\x97\x01\xea\xf6\x42\xa3\x75\x59\x5c\x22\xe1\xf5\x14\xf2\x42\xc5\xf4\xdf\x6e\xf1\x9d\x1d\xb6\xb3\x53\x0d\x9d\x63\x61\xa4\x83\x43\xdf\x0f\x03\x90\xa1\x39\x08\xa3\x8c\x0c\x87\x41\xb5\x10\xaf\x17\x52\xab\xe0\x5c\x80\xf0\x87\x78\x67\x27\xa8\xe0\x1b\x2e\xec\xf1\x0e\x4f\x34\x48\x38\x51\x8b\x8c\x58\x2c\xea\xe6\xd7\x63\x01\x62\x7a\x1e\x91\xe1\xb0\x3b\xd4\x59\xba\xba\x88\x66\x5d\x43\x83\x3f\xa8\x4c\x20\xc3\xe1\xb7\x24\xdb\x15\x3a\xcb\x6e\x9d\x35\x39\xc5\x12\x22\xba\xd8\x26\xf9\x04\x44\xe8\x24\x64\xea\x1d\x32\xd9\xc8\x00\x11\x36\x29\xb4\x7a\x99\xd9\xfc\xd0\x03\xa8\x20\x9b\x25\xe1\x06\xf3\x2b\x26\xf4\x22\xe9\x60\x56\xe7\x59\x84\xff\x35\x43\x79\x00\x54\x9d\xc8\x24\x32\x2d\x12\x9a\x85\xb0\x68\xf2\xf1\x2a\x26\x3f\x9a\xaa\x51\x60\xf4\x78\x9d\x22\xa1\xf5\x66\x4e\x01\x45\x3a\x45\x93\xba\x7e\xd2\xbc\x26\xbb\x11\x1f\x67\xcf\xd6\x75\x87\x9c\x4d\xba\x28\x43\x53\x65\x6f\x63\xa3\xea\xac\xb8\xea\x38\x67\x29\xca\xbb\x42\x32\x8e\x46\xf8\x6b\x5c\x31\xbf\xfa\x62\x79\x13\xb4\xb9\xec\xab\xa7\x31\x7b\x94\x53\x0c\xf1\x6b\x91\x20\xa1\x10\xd4\xb5\x3b\xe5\x95\x59\x78\xd7\xf0\xa2\xdf\x2f\x51\xb6\xf4\x7d\xaa\xb6\xce\x02\x0a\xbf\x90\x7f\xab\x60\x19\xea\x5e\x14\x06\x50\x86\x50\xe9\x68\xb0\x78\x53\x38\x33\xb9\xb0\x67\x46\xcd\x73\x8e\xa8\xf7\xc8\x67\xb4\xf6\xd1\x9e\x7a\x35\xba\xff\x98\xdd\x7e\xc8\x11\x7d\x6b\x46\x5c\xad\x93\xc8\xbb\x72\x59\x8f\xb5\xfd\xf6\x33\xbb\x52\x25\xcd\x25\xa3\xaa\xde\x4b\x4d\xa2\xf5\x6a\xbe\xb4\x8c\xa8\xeb\xb6\x9e\x1d\x29\x31\x5b\xba\x82\x96\x45\x9e\xe9\xe2\x20\x01\x76\x98\x16\xa1\xee\xd9\xc6\xf7\xa6\x6b\x49\x04\x11\x74\x6b\xdf\x97\xb8\x41\x9d\x63\x35\x8e\x8a\x97\x75\xc9\x5e\x71\x77\xfa\x81\xb9\x00\xf0\x57\x76\x15\xe9\x31\x0c\xdc\xdd\xe8\xb6\x40\x6f\x6f\xeb\x8a\x63\x74\x6d\x5e\x1f\x95\x17\xa5\x6b\x38\x47\x10\x47\x32\xee\xe3\x28\xd5\x86\x54\x2f\x84\xb2\x5f\x5d\x10\xd5\xf7\xf0\xe1\x01\xbc\xd0\x47\x79\x29\x93\x1d\xdd\x4e\x87\x50\x4d\xe5\x92\xc5\x4a\x16\x32\x4c\xa6\x3f\xa4\x9c\xe5\xf9\x47\xa6\x5f\x6b\xec\xd1\x15\x9f\x4d\x65\x00\xac\x27\xc8\x62\xdb\xdb\xab\xe1\xd5\xdb\x2b\x3a\xd8\x3b\xf4\x7a\x98\x23\x5a\x74\xb0\x77\x98\xa0\x3e\x8e\x04\xa6\xd2\x47\xc2\x63\x00\xe4\x2e\x98\xdf\x3b\xf0\x69\xd0\x3b\x4d\x8a\x56\x4e\x55\xf7\x7b\x65\xf7\xf7\x42\x28\x9a\xfd\xef\xd5\xfa\x9f\x23\xda\xf9\x95\x5d\x81\x5a\xbb\xb6\xef\xa2\xbd\xef\xa6\xed\xbd\x75\xee\xac\x87\x97\x97\x3d\x78\x34\x80\x97\xbd\x3d\xd8\x3b\x1d\x0c\xf4\x1d\xf6\x19\x57\x65\xa0\xd1\x72\xbe\x1d\x1e\x25\xc3\xe2\x43\x0c\x01\xc5\xb7\x60\xbb\x6f\xef\x7e\x36\xe2\x25\xbc\xb7\x63\x70\x64\x86\x60\xe1\x3a\x5d\x67\x5f\x3e\xa3\x0d\xe6\x3d\x59\xc2\xbb\xe6\x63\x59\xd7\x18\xf9\x45\xf5\x93\x44\x7a\x0e\x78\xcb\x38\x84\xbe\xce\x8c\x47\xb2\xf2\xc5\xb9\xf6\x8c\x5f\x54\x8d\xb4\x33\x7c\x2b\x13\x4f\x3f\x14\xc2\x5b\xeb\xb3\x8e\xbb\xe2\x0a\x77\x1d\x38\xee\x3a\xa8\x4e\xae\xb8\x95\xb9\x6a\x93\xcb\x8c\x6f\x9d\xbd\x0a\xf9\xeb\x71\x57\x9d\xdb\xed\xf5\xe3\xcb\x39\x2f\x5e\x8f\xf3\x62\xd8\x3b\x30\x2c\x07\x75\xd7\x1b\xb7\x8d\xaf\x6c\xb9\x36\x17\x1a\x9f\x3c\x19\x51\xff\x56\xf6\x51\x7f\x59\xc0\x4a\x37\x1a\x68\xe8\x11\x34\xab\x71\x44\xc4\x47\x2c\xa4\x1a\x3c\x73\x81\xaa\xa3\x40\x10\xc3\xb8\xe6\x95\x11\x6b\x68\x3c\x53\x34\xc2\xbb\xe8\x4a\xe8\xdd\xd2\x6f\x75\x7b\xc0\x69\x14\x95\x00\x7f\xf7\xc6\x0b\xef\xd7\xef\x46\x4c\x32\x97\xcb\xad\xd5\x7b\x5e\x7d\xa9\x35\xb5\x62\x5d\x36\xbe\x3e\xfd\x51\x24\xe6\x34\xd5\x4b\xff\x7b\x2b\x8f\xf8\x10\xdc\xa0\x8e\xf5\xad\xb6\xb5\x21\xc5\xcb\xab\xe1\x70\xc3\x53\x1c\x6e\xfc\xec\x49\xef\x56\x3f\xfb\xca\xf1\xfe\x52\x5e\xf7\xf2\x40\x91\x1d\xe0\x9a\xab\x7c\xe5\x65\xa8\x0e\xcd\xca\x21\xf2\x6e\x3a\x26\x79\xb6\x41\x27\x8b\x43\xea\xb6\xe2\xef\xd6\xd5\xfb\xa9\xcd\x04\x56\x33\x54\x50\x4e\x90\x30\x92\x38\xc3\x29\xcb\x70\x66\x53\x86\x81\x10\xda\x2a\x3f\x5f\xbc\x7f\xd7\xb2\x07\x6b\x4a\x35\xdc\x12\x5b\x92\xcf\xef\x71\x5f\x55\xb2\x0a\x91\xdd\x6a\xd7\xe5\xc3\x85\x11\xc5\x32\xbc\x77\x0b\xd1\x86\xe1\x0c\xed\x03\xf1\x47\xe2\xb3\xb5\xbb\x27\xc5\xae\x66\x13\x8e\x97\x5d\x08\x3d\x21\x77\x84\x8a\x5d\x25\x6f\xf4\x79\xa9\xdf\x79\xc3\xaa\x3c\xaa\x74\xef\xa4\x61\x35\xb0\xa3\xe6\xc4\x5d\x4f\x54\xfa\xe7\xa7\x9c\xec\x6c\x08\x48\x45\xa5\x0b\xf2\x9b\x4e\x3f\x2c\xcb\x24\x99\x75\x4e\x55\xac\x5d\x7e\xae\x87\x6f\xd5\x0e\x78\xd7\x8b\x03\xbd\xdd\xba\x08\x61\x31\x0e\xad\xe0\x8b\x8f\x6b\x01\x77\x23\x5a\x80\xce\x89\x90\x1f\xd9\x05\xe3\x75\xeb\xb3\x98\x9c\x65\x0d\xeb\xdc\x7c\xd1\x8e\x4c\x51\x5e\x01\xbc\xd0\x05\xc1\xd3\xa7\x96\x14\xbb\xb8\xbe\x2d\xf2\xd5\xa2\x41\x9a\x6b\x21\xa3\x67\x44\x4c\x88\x10\x4f\x8f\x40\xa8\xf5\xd6\xe4\xee\x5c\xb2\x31\xf2\xa9\x0e\x97\xdf\xdf\xb9\xee\xe6\xa3\x47\xc6\xd6\xb5\x5f\x4d\x25\x22\x2e\xc6\xec\x96\xd0\x51\xe9\x48\x2e\x52\x28\x6c\xf7\xe0\x94\xb3\x09\x93\xf8\x69\x36\xcf\x17\xb2\xc9\x9d\xcd\x63\x6d\x80\x7d\x58\x9d\x65\x66\x34\xcb\xee\x44\xc5\xbe\x7f\x18\xd9\xee\x14\x7a\xf9\xbe\x33\xd4\x2b\x66\xc4\x61\x61\x45\x1c\x36\x8c\x88\xa0\xd5\x44\x0f\x77\x76\xc0\x2b\xc6\xaf\x48\x96\x61\xaa\xad\xb0\x87\x87\x40\xf6\xc1\x7f\xb1\x19\xef\x3c\x7f\xf1\xa6\x23\xd9\x35\xa6\x9d\x8c\x61\x93\x7a\xcb\xdc\x4a\x3d\xc5\x5c\x71\xb1\x22\x99\x64\x1d\x8b\x5a\xc7\xdf\x65\x00\x56\x47\xf7\x06\x2f\xb8\xb7\x57\xbd\x1b\xb3\xe5\x1d\x93\x9d\x0f\xb6\xe6\x99\xc7\xbe\x99\x97\xc0\x53\x2e\x0a\xb3\x7d\x6d\x33\xe4\xd0\x58\x21\x1b\x3b\xd1\xbd\x39\xa5\x43\xae\xf4\xee\xda\x10\x91\x7c\xc6\xf1\x57\x74\xa5\xb7\x4c\x88\x4f\x11\x17\x1c\xa7\xaa\x5f\x28\xcf\x59\x6a\x6e\xf2\x58\x79\x58\x39\x35\x19\xf6\x77\xd5\x08\x13\x81\xbb\xfa\x00\xf7\xef\x1e\x5f\xb2\x72\x6d\x7e\x3c\xdc\xa9\x3c\xc5\x3c\x29\x33\xb7\x36\x0f\x33\xc7\x76\x99\x7a\x5e\xd2\xa6\x75\xd9\xf4\x68\x67\x37\xbb\x2a\x60\x57\x65\x04\x48\x75\x6a\xd9\xe0\xde\x92\x33\xa9\x4e\x7e\x7f\x50\xc2\x48\x8e\x31\x6d\x49\xcc\xae\xb8\xde\x6e\xe0\xf9\xcd\x7a\x5b\x77\x91\xb0\x19\x2e\x0e\x43\xb3\x9b\x54\x5a\x60\x4a\x21\x29\xbb\xd7\x34\xa4\x5a\x23\x9b\xfc\xfe\x96\xbf\x01\xc4\x11\xc9\xea\x56\xd6\x86\x4b\xb5\x98\x4d\x26\xe8\x6b\x86\x6e\xae\xa7\xfe\x11\xf1\xf2\x6e\x8a\x68\x73\x93\xa5\x99\x87\xc3\x3a\x12\xf4\x6e\xc4\x85\xd9\x8c\x88\x34\x21\x0c\x84\x9f\xd9\xd5\x85\xe9\x73\xb1\xc0\xa8\xd6\xfb\x7d\xfc\xf0\xe0\x99\x1e\xd8\xa6\x3a\x12\x44\xd4\x3d\xf4\x6b\xc3\xef\x5b\xf7\x26\x65\x92\x0c\xe7\x05\xe9\x5e\x8c\x11\x1d\xe1\x00\x94\x3d\xaa\x27\xa4\xd8\x50\x9e\xa8\x75\xb5\x3b\x32\x4a\xe7\xff\x4b\xba\xfe\x0a\xb7\xc8\x17\x57\xea\x1f\xd5\xbc\xfd\x3a\x56\xa8\x7d\x5c\x86\xd4\xe7\xd6\xbe\xf5\x12\xff\xc7\xd6\x41\x3d\xd5\xb3\x5c\x7d\xb5\xe6\x62\xae\x67\x58\xa6\x8e\x2a\x6d\x44\x99\x7b\xdf\xa4\xc2\x69\x5d\xdb\xbf\xb2\x2b\x6f\x0b\xc8\x2a\x50\x85\xf7\xdc\xf9\xc5\xb5\x43\x4d\xd8\x0b\x59\x4d\x72\x3e\xe7\xb6\xae\xea\x9b\xc7\x85\xbe\x79\xdc\xd0\x37\xd7\x50\xff\x2e\x24\x9b\x76\x7e\x66\x57\x55\xa5\x6f\x23\xdd\x53\xf5\xa0\xf3\x2b\xbb\x12\x11\xd8\x5c\x57\x3c\xb6\x1e\x6b\x1d\xba\xf1\xe4\xa1\xfb\x92\x7b\x78\x8d\x51\xdb\x87\x32\x1a\x62\x99\x8e\xcf\xd1\xed\x99\x9a\x01\xc4\xf0\x5f\x61\x15\xd8\x8a\x26\xce\x20\x28\xb6\xba\xc2\x48\x91\x5a\x0d\xb8\xde\xd5\xa5\xd8\xab\x0b\xa0\x5e\x7a\x84\xbe\xa3\x84\x0c\xe7\x01\x0a\xdd\x7e\xe1\x51\xd1\xec\x29\x94\xd5\x8d\xc2\xd3\xda\xae\x4a\xaf\x07\x65\x6d\x3f\xa5\xd7\x4b\x64\x8d\x95\x8a\x3c\x90\x25\x37\x9d\xae\xb7\x09\x72\x14\xc2\xa0\x75\x17\xa4\x61\xbf\x88\x87\x87\x40\x6c\x66\xbf\x78\x3c\xb4\x26\xdb\x22\x2e\x9b\x7c\x2b\x1c\x03\x9e\xae\xc7\x80\x47\x6e\xcf\xe4\x89\xd6\x4a\xd5\x2b\xfb\x2d\xfb\x12\xef\x57\x1d\x76\x52\x22\x47\x07\xcb\x43\x92\x2d\x00\x04\x76\x57\x5a\xc9\x64\xef\x75\x7b\x24\x99\x9a\x1a\x8d\x6d\x3b\x5d\xd7\x9d\x1b\x70\xd7\x64\xfd\xac\x63\xf4\x11\x1f\xd9\xe8\x1e\x01\x06\xee\x86\x2b\x59\x3d\x80\x50\x96\x89\xcc\x9e\x5a\x59\xd2\xc6\xf2\x4b\x4e\x26\x13\x73\x92\xa2\xad\x02\x1e\x34\x6e\xc2\x5a\x7f\x25\x75\x29\x61\xbf\xe5\x11\x5d\x19\xef\xb2\x62\x1b\x68\xc8\x78\x8a\xdf\xa0\x19\x4d\xc7\xab\x52\x2d\xaa\x81\xd4\x45\x8b\x7c\xb8\x41\x68\x65\x41\x25\x8d\x69\xcb\xde\x4f\x73\xc2\xbe\x52\x70\x3a\xa6\xcd\x4f\x59\x6b\xdc\x26\xab\x5e\x6d\x16\xe1\x02\x7e\xc2\x9e\xd6\x13\x2d\x27\x97\x6d\xf8\x1b\xe6\x8d\xa7\x75\xcc\x66\x23\xfe\x6f\xd4\x2f\xce\x6e\x97\xf4\x67\x8c\x73\x65\xe0\xed\xe6\xe8\xb7\x79\x37\xcd\x49\x7a\xfd\xfb\x27\x7f\x5b\x35\x7f\x9d\x0e\x2c\x79\x2d\xc8\xd9\xf5\x0b\x10\xd1\x25\x54\x62\x35\x04\xe4\x46\x19\x76\x5e\xb0\x5a\xcb\x61\xab\xb4\xfa\x0a\x87\xf7\xe6\x02\x16\xf4\xdb\x5c\x97\x0e\x83\x4b\x1b\x2c\xa1\x1f\x21\x1e\x6c\x78\x0b\x84\xc2\xcc\xc5\x1d\x7f\x69\x8f\xc2\x65\x71\xdb\xac\x8b\x90\x74\x21\x99\x03\xb8\xa6\x2b\xab\x82\x70\xc3\x10\xb5\x5f\x6a\xc7\x06\xfc\x68\xd1\x54\x5b\xf3\xe6\x3a\xb5\xfa\x9a\x5a\x04\x3d\x9b\x78\xda\x15\x07\x4d\x2b\x05\xf5\xf1\xd2\xa8\x34\x16\x95\xc5\xe9\x42\xb3\x9f\xb1\x00\x87\xdf\xc9\xe2\x64\x31\x87\x71\xf8\x5d\x20\xa3\x09\x9a\xfe\x38\x0f\x80\xbe\xb0\x0c\xd8\x73\x7e\xb6\x08\x82\xde\x83\x2a\x9f\xc4\xbe\x3b\x4a\xb2\xd1\x28\xc7\x67\x64\x38\x6c\x48\x4d\xf3\xa9\x4c\x4d\x6d\xfa\x0f\x1a\x52\xd3\x9a\x72\xad\x61\x8c\xd8\x3b\xd3\x0a\x85\x5f\x86\x7a\xbe\x39\x77\x42\x88\xea\x90\xd7\xf0\x19\xfe\xae\x97\xe0\xc5\x96\xd3\xf3\x99\x97\x53\x15\x47\xe6\x32\xe4\x4a\x2f\x85\x26\x04\x8e\xec\x6d\xc6\x95\x6f\xaa\xd3\x0b\x07\x8a\x57\xc3\x2c\x9f\xe1\xef\x58\x20\x43\x7d\xcd\xe2\xba\x9c\xfd\xdf\xee\xa4\x44\xd1\xaf\xf5\x8e\x49\x78\xdc\xef\xce\x27\xfc\xad\x80\xb0\x64\x0e\x34\x1c\x2d\xde\x14\x70\x45\x0a\xa7\xaa\x68\x3d\x0e\xf1\x65\x8e\x27\x40\x5e\xb3\x68\x58\xf3\x48\x42\xe3\x5c\x41\x5e\xab\xd3\x72\x8c\xa1\x5e\x67\x8b\x9b\x23\x0b\xf9\x1a\x87\x12\x0a\xa9\xf3\x09\x27\x12\xbe\x85\x6b\x3f\xab\x72\xd6\xc3\x68\xa0\x2f\xd2\x34\x42\x55\xdf\x0d\x2a\x9b\xe9\xde\x7f\x15\xb5\x93\x2b\x76\xf4\x6b\x76\xb2\x51\x53\x05\xa3\x5a\xa1\x83\x7b\x9b\x9e\x9c\x5f\x76\xfd\xdb\xca\xc9\x9c\xed\x77\xdd\xad\x08\xf6\x31\x45\xe6\xd4\xe5\x7e\x17\xdd\x11\x9b\x62\xdd\x6c\xd4\x98\xef\x63\x34\xb5\xdf\x5d\xce\xf5\x46\x12\xf6\xba\xbb\xd6\xf8\x99\xbb\x1c\x0b\xf2\x9b\x49\x69\xbb\x22\xf6\x5e\x27\x3c\xe9\x1a\xc2\xb4\x84\xde\x43\x01\x19\xe4\x30\x87\x04\xce\x60\x1a\xde\x3b\x71\x98\x79\xdb\x1a\xc3\x00\x87\x0f\x0f\x3e\x8b\x90\x61\x70\x31\x9f\x5c\xb1\x3c\x22\xd2\x78\x54\x3a\x84\x76\x6c\xd2\x6f\x55\x18\x5c\x9a\xd9\xd4\x79\x5e\xa4\x07\x1f\x80\x7e\xbf\x6f\x59\x6b\xca\x99\x64\x72\x3e\xc5\x91\x64\xe6\xfe\xd5\x28\x45\x79\x1e\xe0\x30\xf4\x6f\x63\x89\x86\x9c\x4d\x02\x1c\x2e\x34\x48\x65\xa0\x3b\xf4\x26\x15\x69\x5d\x47\x50\x7d\x22\xc3\x60\xfb\x4b\x21\x69\xb1\xb4\x4a\xdc\xe5\x00\xa2\xfe\x76\x0c\x45\x7f\xbb\x07\x59\x31\x07\x24\x9f\x6b\x6f\x92\x2a\xc3\x61\xde\xc7\x97\x35\x64\x06\x41\xf8\xfd\x76\x80\xfa\x01\xef\xe7\xda\xe1\x12\x84\x61\x94\x31\x8a\xc3\x9d\x9d\x80\x9a\xec\x1d\xdc\xe4\x82\x0f\xe1\xb6\x7c\x78\xa0\x36\x3d\xc7\x76\xbf\x2f\xc3\xef\x55\x93\xe1\xf7\x36\xf8\x89\x84\xf7\x42\xa1\xc0\xfa\x64\x31\x24\x14\xe5\xf9\xfc\x5e\x21\x80\x1e\x1e\xcc\x26\x46\x1e\x19\x94\x1f\x1e\x8a\x5f\x8a\x9a\xb6\x24\x19\x06\x22\x94\x63\xce\x6e\x3b\x6c\x51\x04\x51\xd1\x85\xa6\x63\x8d\xee\x53\xad\x04\xa8\x92\x14\xdf\x76\xd4\xa2\x6c\x1c\x31\xe0\x35\xbd\x41\x39\xc9\x3a\xc8\x5c\xa7\xaa\x4c\xb2\x0c\x0b\xc9\x67\xa9\x9c\x71\xdc\xa1\x8c\x76\x75\xc7\xaf\x72\xdc\x21\x54\x48\x44\x53\x0c\x3c\xc0\x43\xcb\x56\x66\xe0\x89\x30\xa9\x09\x4a\x86\xc0\x8b\xcf\x23\x96\xae\xfa\x9e\x93\xd0\x5b\xef\x1d\x52\x6c\x68\x98\xef\x99\xd6\x9e\x02\x1c\xfa\x57\x6a\x2b\x6d\x65\xbc\x4c\xb0\xcd\xca\xed\x8c\x8a\x88\xb3\x62\x04\x78\x32\x65\x00\x33\x54\xdc\x9c\x79\xa7\xfa\x62\x7e\xce\xcb\x9f\x3a\xcd\xb9\xbe\xa2\x41\x29\x96\xba\x96\xbe\x52\x3d\x51\xaa\xfd\x94\x13\xb3\x37\x67\xad\xe9\x37\x84\xe2\xce\x0b\xd3\x8c\x6f\x41\xb7\x1f\xde\x26\xe2\xb9\xb6\x0a\x14\xe0\x21\xc9\xf3\xd7\x8f\xdf\x11\xe8\xe1\xde\x55\x55\xca\x8b\x8d\x4c\xcd\xd1\x8c\x64\xaf\x18\xd7\x62\x57\x5f\x06\x32\x41\xe2\x7a\x43\xb8\xaa\xca\xa3\x70\x8d\x3d\x63\xee\xcc\x77\xae\x0b\xfb\xc2\xdc\x2d\x5b\x5f\x30\xbc\x02\xcb\x14\x0d\xaf\x88\x52\x14\xca\x53\xe4\xc6\xe8\xd1\x03\x34\xa8\x64\xa5\xba\xb3\xb9\xe3\xdd\xb5\x03\x66\xa8\x42\x73\xcf\x93\x8f\x94\xb9\x62\xe1\xf3\x23\x35\x6f\x22\x35\xb7\x48\x15\x58\xdc\xd5\xf3\xe0\x7b\x1b\xd5\xcf\x48\xd4\x9a\x0a\xff\x0a\x84\x49\xee\x3e\x0d\xed\x6b\x08\xc2\x05\x9c\x2f\x4d\xab\xdf\x52\x21\xda\xfb\xbf\x5c\x55\x92\x8c\xe5\x92\x4c\x3f\x30\xb3\x67\x6d\x79\xdb\xbc\xbc\x50\x4b\x93\x52\x2d\x53\xef\x7c\x50\xad\x02\x08\xe1\xdd\x85\x5a\x44\x9b\x47\x6e\x91\x44\x26\x0f\x99\x1e\x1f\x00\x41\x39\x0e\x00\x82\xf9\xf3\x3b\x22\xde\x0f\x87\x02\x2f\xbb\x8f\xc7\x8c\x6b\xe1\xa0\x2c\x2b\x3f\x73\xc7\x95\x22\xbd\x7c\x2b\xbd\x2d\x08\x93\xda\x5b\x35\xe5\x10\x0f\x42\x48\x4d\x7d\x8d\x8e\xbd\xcd\x83\x55\x7d\x13\x96\x4d\x54\x09\xd8\x96\x9a\xed\x12\x0f\x16\x61\x72\x19\xc3\x5e\x39\x9e\x11\x57\xe6\xe3\xb9\x16\x3a\x97\xbd\xd8\x78\xbe\xbd\x3e\x0d\xd4\x52\x31\x41\x84\x06\x34\x84\x4a\x99\xb9\x3b\x57\x15\x56\x51\xe9\x55\xa1\x4f\xb4\xd1\x6b\x23\x0a\xf9\x7d\x86\xa8\xdf\xe8\x2e\x5d\xde\x4d\x28\xfa\xd5\x09\xe4\xd4\x77\xa4\xc5\xad\x50\x93\x7c\xfe\x58\x5f\xe6\xae\x2f\x73\xd3\x97\x76\xf4\xe7\x16\xfd\xa7\x8c\x47\xd1\x47\x37\xa9\xca\xa1\x51\x78\x52\x8d\xe7\x63\x9c\x69\xb1\x03\x77\x8f\x33\x63\x13\xd7\x09\xba\x5b\x07\xd1\x87\x87\x9e\x43\xed\x87\xde\xce\x4e\x20\xfb\x57\x81\x0c\x43\xb8\x84\x61\x2b\x9c\x65\xc6\xa2\xc4\x0e\xf6\xe2\x92\xb3\x2e\x63\x28\x07\xaa\x9f\xba\x40\xa3\x9b\x66\x5e\x2e\x65\x9d\x25\x12\xb2\xc0\x55\x38\xec\x94\x62\xfc\x23\x93\x92\x4d\x82\xd0\xa0\x6a\x2a\x19\xf8\x61\x24\x49\x7a\x2d\x82\x43\xf3\xc3\x42\xd5\x51\x18\x73\x73\x3f\x50\x03\xaf\x35\x66\xbe\xd7\x63\xd9\xdf\x33\xb7\xe7\xa4\x98\xe4\x01\xde\xed\xed\xc5\xe1\x77\x3d\x37\xfc\x1a\x89\x82\x22\x21\xac\xbb\x33\x0a\x0d\x8f\xf6\x95\x46\xba\xa7\x0a\xd0\xcb\x78\x00\x45\x3f\xa0\x97\xbd\x41\x17\x85\xbb\x81\x54\xe6\x24\x53\x6a\x22\xef\xc7\xdf\xf3\xbf\xc8\xef\xf9\x77\xdf\x85\xcc\x68\x78\xe8\x3b\xf1\x67\xee\xa8\xc2\x16\x01\x85\xe5\x9c\xd0\x20\x14\xbc\x1f\x7a\xcf\xae\x02\x14\xea\x04\x6e\xf3\xd6\xd1\x98\xaf\x1c\x8d\x06\x17\x57\xc9\x7f\xae\x34\x83\x2a\xf5\xe7\x1e\xf5\xf5\x1a\x26\xec\x7b\x4d\xf4\x96\xc1\xf8\x2b\x27\xfa\xb2\xf1\x0d\x50\xcb\xaa\x20\x4d\x6c\x54\xef\x93\x70\xb4\x4f\x17\xe4\x37\x1c\x74\xeb\x42\xb3\x82\x35\x00\x8e\xb5\x4d\xae\x97\x15\xca\x8a\xb2\x25\x34\x30\x9c\xeb\xd8\xc3\x42\x29\xed\x6d\x79\x34\xb6\xdf\x22\x9d\x66\xea\x42\xdb\x81\x4a\x31\x8e\xee\x8c\xe9\x57\xfa\x29\x6c\xde\xaa\x1f\x7f\x64\x77\x41\x18\x8d\x6d\xa2\x19\x33\xae\x3a\x19\xcd\x97\xc2\x64\xbe\x1a\x13\xad\x28\x16\x34\x31\x14\xab\x3b\x7e\x80\xc1\xb6\x10\x69\x3f\xd9\xa7\x25\x81\x32\xa6\x70\xb7\x9c\x72\x3f\x55\xfa\x6a\x9b\xa8\xb3\x8b\x46\xa3\x58\xc1\xff\x6e\x1e\x96\x34\xa0\x8b\x7a\xc3\xfc\x77\xdb\x03\x7d\xe9\xfd\x8a\xa5\xd0\x32\xe4\x23\x93\xc6\x14\x2b\x96\x3f\x53\xb6\x90\x0b\x66\x65\x44\x9e\xec\x76\x51\x06\x8e\x6b\x15\x16\x41\x68\x0d\x96\xac\x2d\x5e\x50\x69\x43\xdb\x7d\x7c\x89\x06\x8b\x30\xba\x6b\xcb\xdb\x8a\x03\x79\x49\x95\x10\x8e\xe6\x6d\x00\x64\xa0\x2a\x87\x8b\xb0\x5c\x29\xb4\x96\xcc\x71\xe3\x02\xec\xdf\xbf\xff\x0a\x8b\xcf\xd8\xff\x38\x90\x41\x1c\x86\xd1\xbc\xb7\x01\x25\x32\x92\xbd\xa6\x02\x73\xf9\xd2\xcc\x89\x55\xbb\x9a\x26\x42\xe2\x8c\x4c\x30\xd5\x7e\xc7\xa0\xb8\xe6\x9e\x96\x2b\xa9\x9e\x4c\xc1\xca\x59\x96\x22\x7a\x83\x04\x08\xdd\xc1\x54\x03\xf7\x79\xa9\xcf\x47\x57\xc4\xde\x40\x58\xe8\x43\x5b\x52\x5f\xcf\x36\x61\x33\x81\xf5\xdd\xa9\x2d\x63\x52\x62\xa1\x8b\x99\xfa\x97\xf1\x60\xcb\xee\x63\x9a\xf8\xf4\xb7\xea\xdb\xff\x06\x10\x87\x10\x05\x38\x84\x86\x0b\xf8\x8c\x46\x22\x1d\x63\x65\x24\x07\x00\x0d\x25\xe6\xe7\x98\xea\xa4\x90\xa2\x65\x72\x59\x88\x85\xa1\xa8\x8f\xe7\xeb\x68\x55\x0f\xcd\x09\xbb\x69\xe3\x9c\x27\x61\x59\x85\x9c\x63\x54\x03\xfd\x68\x27\x70\x4b\x27\x70\xa3\x13\xbd\x50\x7b\x05\xf4\xeb\x8a\x05\x66\x36\x7d\xc3\x85\x62\x97\x5f\xcc\x68\x49\xc9\x45\x63\xe7\x83\xeb\xe6\xb4\xa1\x1d\x84\x0b\xd8\x18\xd8\x96\x4c\x64\xfe\x4c\x6a\x9d\x3b\xe6\x93\xf0\xb5\x40\x5e\xaa\xd7\xca\xf4\xe3\x3b\x3b\xdc\x9a\x16\x06\x6a\x0e\x89\xa7\x27\x5e\x11\x61\x58\xaf\xcd\xce\xbb\xa4\x6a\x6a\xe5\x78\x28\xe1\xac\x2f\x23\x42\x6f\x30\x57\x2b\x36\x4c\xfb\x24\xe0\x70\x06\x7b\x21\xcc\xfa\xfc\x32\xed\xf6\x06\x70\xa2\x7e\x0c\xb6\xf2\x7e\xb6\xb3\xb3\x3d\x79\x96\x25\xb3\x6e\x76\x49\x07\x3f\x4c\x2e\xe9\xa0\x3b\x7b\x36\x49\x32\xef\x6c\x6f\x85\x80\x95\x53\xbf\x75\x13\x0e\xde\xab\xf6\x13\x19\xe4\x6a\x2a\x43\xc9\xa6\x09\x0a\xf2\x4b\x31\x08\xbb\xbd\x78\x11\x2e\x0a\x42\x6a\xba\x16\x77\xa9\x5e\x09\xcc\x6f\x30\xf7\xc4\xd6\xea\xc1\x08\xa1\xf7\xbc\x6a\x96\xdb\x69\xab\x14\x65\xf5\x38\x61\x33\x2a\xcf\xf6\xad\x78\x10\x81\x3f\x63\xb4\x53\xae\x12\xd1\xd0\x1e\xb1\xeb\xaf\x85\x3a\x7a\xaa\xb5\x94\xb7\x9e\xa9\x42\xcd\x86\x71\x54\xf0\xaa\x5a\x97\x1b\xcc\x15\xe0\xc8\x9f\x3c\x3a\x34\x09\xd6\xa0\x34\x38\x96\x08\x7b\x75\x22\xce\x1e\x1e\xaa\x6f\x08\x1d\x3d\x3c\x04\x9b\xc9\xb6\x42\x97\x09\x8d\x2b\xb4\x5c\xd9\x43\xb8\x19\xa0\x79\x0b\xa0\xf9\xd3\x00\x8d\x0a\xc5\xb3\x06\xcd\x29\xa4\xa1\xbe\x44\x92\x66\xec\xf6\x1c\x0b\xf2\x1b\xfe\x49\x07\x90\x55\x02\x44\xcb\x31\x67\x34\x35\x42\x0b\xb6\xae\x09\x6e\xd6\x97\xaf\xda\x99\x2d\xfa\x9f\x01\x10\x37\x23\xbb\x6b\xab\x15\x15\xed\x2c\xc0\x56\x2b\x0a\xc2\x55\xb9\x09\x0b\x67\x1d\x5d\x84\xb0\x85\xd9\x2b\x5b\x19\xe3\x47\xb7\x32\x84\xec\xa2\x34\x65\x3c\xab\xed\xbe\xaf\xdc\xce\xf8\xaa\x07\x49\x4a\x74\x07\xe6\x3e\x75\x92\x01\x28\xd8\x8c\xa7\x78\xbd\xbd\x48\x46\x3f\xea\x5d\xea\x7a\x14\x30\xe2\xd2\x9d\x17\xd8\xee\xc1\x0c\xa7\x8c\x23\x89\xb3\x0b\x03\xbb\x99\x42\x4d\xbd\x5e\x95\xa0\x5f\x2a\xc1\x85\xd2\xb1\xd3\x93\xae\xf1\x1c\xd2\x3e\x20\x12\x4f\x22\xff\x5a\x78\xe4\x2a\x94\x28\x14\x62\xdf\x36\x53\xd9\xbf\x14\xa1\xdb\x98\x1c\x12\x9a\xfd\x38\x0f\xa8\x15\x4d\x23\x2c\x03\x01\xa5\x4b\x21\x7d\xaf\xda\x4a\x44\x11\x87\xc0\x9e\x6d\x6f\xb3\xc8\x3e\x20\xc5\x2b\x8d\xd4\x41\x25\xd6\x3a\xfb\x84\xb0\x57\x9a\x9a\x57\x6b\x11\x78\xa3\xe0\x8f\x2a\x07\xee\xba\x5f\xdd\x2b\x96\x7d\x1b\xb9\xc1\x9f\x96\xf9\x71\x69\xbf\x74\xa6\xdf\x6f\x63\x7f\xb5\x86\xd4\xb2\x74\x69\xba\xfb\x09\x11\xdd\xdc\xda\x77\xc5\x29\x14\x9d\x22\x34\xd1\xe1\x44\x2e\x96\xc8\x4b\x89\x55\x03\x9f\x6c\xc7\xf0\x6a\x26\x25\xa3\xc6\x19\x0f\x4c\xac\x88\x47\x60\x58\x01\xbc\x1d\x43\xcd\xbc\x2e\x32\x89\x89\xda\x94\x65\x54\x57\x7c\xf2\x91\x5c\x3d\x46\x53\x34\x22\xb4\x71\x27\xeb\x37\x25\xfe\x36\x11\x6e\x3a\x31\xef\xde\xa1\x3e\xae\x9e\xf4\xa0\x98\x72\x8c\xb2\x64\xcf\x88\x37\xf1\xbc\xe5\xe2\x0e\xf2\x9b\x32\xf7\xa6\xed\x77\x91\x17\xe9\x14\x46\xb8\xdb\x0b\xcd\x3d\xe8\xaa\xc2\x77\x3d\xd5\x0b\x9a\xb5\x02\x2c\xe5\xe2\x23\xc0\x3b\xee\xc6\x6a\xd7\x4a\xd9\x84\x77\xc2\xd6\x42\x34\x6a\x2e\xd0\x7b\x3d\x39\x12\xe6\xc0\xfe\xe3\xad\x2f\x69\x56\xbb\xf4\x96\xb6\xb1\xeb\xf0\xd0\x67\xba\xd0\x08\xbf\x21\xb4\xc5\xa1\xe8\x37\x67\x7a\x09\x0c\xc9\x97\x2e\x0a\xfa\x6b\xb1\x20\xa8\x2a\x85\xea\x5f\x74\x49\xa9\xf5\xbd\x7e\xbf\x4f\xc3\x62\x58\x6d\xb8\x8e\xbb\xd6\xbb\x07\x65\x17\x2b\xf3\xd0\xd1\x8f\x42\xf9\x1d\x0e\xbf\x73\xde\x5e\xb3\x43\x2a\xba\x28\x8c\x86\x24\xcf\x03\x6d\xc4\x54\xd7\x10\x6f\x8f\xfc\x5e\xa1\xf1\x6e\xa6\xba\x96\xa0\xef\x6c\x4a\xdf\xbc\xf5\x96\x97\x96\xee\xd6\x89\xec\x77\x56\x8f\x63\xbf\xca\x44\xb8\x76\x87\x8b\x86\x68\xfc\x7b\x52\x77\xe3\x29\x2b\x48\x39\x8b\xdd\xf3\xd7\x0c\x63\x79\xe2\xa1\x5f\x8d\x7a\xcb\x55\xc4\xdf\x90\x2c\x2a\x03\x4c\x0d\x9a\xd5\xf0\x30\x7b\x52\x70\x13\x81\xf5\x34\x35\xab\x85\x85\x26\xb5\xe3\x3a\x96\xb7\x4d\x66\x7b\xdc\x8c\x87\x5a\x8b\xaf\x74\x8f\xf4\x21\xc8\xee\xd5\xb7\xa0\x8e\xc8\x31\x80\xee\x06\x6f\x6f\x95\x36\xc7\xf7\x06\x2e\x97\x09\x67\x53\x7d\xaf\x89\xfd\x5b\x19\x25\x22\x6c\x28\x92\x1d\xad\xf6\x55\xdf\xc6\x01\x10\xd1\xb5\x6b\x7b\xfd\x16\xa7\x24\xc3\x22\x4d\x90\x48\xf5\x49\x5b\x5b\xbc\x3e\x7a\x1e\x3e\x4a\x64\xd4\x37\xe4\xfc\x61\xf4\x8a\xf6\x6d\x52\x39\x55\x7e\xa1\x13\x47\xce\xf2\xec\xa2\xda\x7a\x5b\x46\x63\xff\x8a\x29\xcf\xb9\xd3\x68\x70\xdb\x5a\xbb\xa6\xc0\xc3\xc3\xb6\xe5\x23\x1f\xc2\xc6\x41\x61\x8e\x5b\xcc\x75\xef\xdf\x88\xfe\x2a\x35\x1e\x9f\xd6\x95\xaf\xab\xb2\x7a\xbc\xaf\xf0\xd8\xa8\x2b\x93\x59\x2e\x89\xe5\xf6\x6e\xc6\xd9\x34\x63\xb7\xdf\xae\x9e\x57\x99\xa5\x0e\xdb\x01\x64\x53\xb9\x7e\xa4\xad\x8b\x32\x5c\xd7\x18\x36\x0e\x93\x7a\x86\x96\x42\x25\x2f\xd0\xb0\x27\xb0\xd1\x54\xce\x38\x5e\x92\xca\xad\x24\x30\x36\xfe\xd2\x73\x9c\x62\x72\xd3\x74\x98\x7a\x2a\x42\x51\x67\xcb\x4e\x49\xd5\xee\xce\x0e\xde\xd9\x69\xfa\x75\xdf\xd3\xb4\xee\xdb\xad\x38\xe0\x6c\x7c\x7a\xc4\xf1\xd4\xba\x17\xf5\xe5\x65\xf5\xb8\xf5\xd6\x2b\x21\x8c\x65\x6e\xbb\x62\x09\x68\x95\x92\x70\x8b\x96\xc1\xe6\x32\x7c\x46\x23\xae\x1d\xdc\x36\x58\x50\x86\x09\x8d\x50\x96\xb9\x47\x97\x3a\xd2\x78\xa8\x68\xb8\x80\x6c\x8a\xe9\x7b\xfa\x9c\x73\x76\x7b\xa6\x68\xd9\x88\x46\x34\x02\xd0\x10\x37\xc0\x16\x84\x21\xc6\xc3\xc3\x41\xbc\xdd\xef\x4b\x85\xe2\x0b\x96\xe1\xb2\x7c\x41\xac\xe0\xb4\xef\x7d\x57\xe5\xfd\xe7\xb0\xb8\xaa\x67\xa5\xab\xac\x18\x86\xae\xe4\x64\xa4\x54\x27\x9d\x83\xfd\x79\xb1\xd2\x04\x00\x71\x82\xba\xec\x96\x0a\x9d\x54\x33\x63\xe9\xac\x0d\xce\xff\x70\x5e\x0d\x0a\x41\xa7\x84\x6a\x38\x18\x84\xe1\x16\xda\xd9\x09\x50\x34\x64\xe9\x4c\x04\x21\x94\xfa\xd4\xa8\xce\xff\xa3\xe7\x49\x10\x86\x0b\x73\x5b\x59\x39\x9c\x8a\x78\x9a\xac\x8d\xb2\x0b\x28\x39\xd2\x91\xde\x6f\x9a\x19\x17\xc8\x30\xd8\x3b\xae\x10\xc2\xa7\x83\x63\x3b\x32\x0c\x68\x78\x4f\x5d\x6b\xa9\x32\x33\x03\x19\x5a\x9d\x7b\x43\xa2\xa9\xee\xad\xea\x1d\x6c\x9b\x2c\xf6\x58\x99\xee\x36\x19\x06\xfb\x27\x4d\xac\x45\x5f\xda\x5b\x4b\x34\x48\xc2\x66\xc2\xba\x75\x2f\xc8\x55\x4e\xe8\x68\x4b\xe8\xc8\xf0\x55\x74\x2d\xe0\xd7\xd8\xc3\x7a\x92\x1c\x7c\x8a\xef\x64\x0d\x36\xdb\xd9\x09\xd8\xe3\xb0\xf7\xf7\x7c\xc0\x85\x13\x5d\x28\xd1\xe6\x6c\x7d\xbc\x64\xcc\x37\xd2\xcc\xb4\x25\xd1\xbc\x47\xe8\x2b\x7a\x52\x7c\x8c\x94\x36\xf4\x57\x7d\xdd\xd8\x12\xbf\xd1\xca\xc4\x8f\x8d\x1c\x46\x5f\x73\xe1\x2d\xf2\x64\x68\xd9\xaf\xf0\xc1\xd9\xc7\xbf\xea\x44\x34\x2e\x33\xb8\x41\xf6\x95\xcd\xb7\x54\x4f\x52\xa1\xa6\x89\x03\x13\x35\x8a\x03\x08\x2a\x50\x37\xcc\x56\x3f\x65\xb7\x98\x17\xab\xbb\x5e\xea\xa7\xed\x96\x93\x5f\xf0\x71\x00\x7f\xc0\x3b\x76\x5a\x3b\xb2\x5b\x88\xa5\x4f\xa5\x88\x03\xf4\x07\xa7\xcc\x53\x09\xf1\x47\xef\xf7\xee\x15\x1e\x32\x8e\xed\x2a\x2c\x9e\x4a\x86\x3a\x98\x3f\x3a\x55\x3e\x95\x1c\xff\x5d\xe8\xa0\xc5\xf2\x98\xe5\xd9\xd3\x45\x45\x05\xc6\x1f\x9e\x1e\xbe\x0c\xd4\x39\xb2\x9e\x4e\x96\x26\xa8\x3f\x3a\x75\xcc\xb5\xe3\xdd\x49\x91\x14\xe1\x89\x94\xa9\x81\xf9\xa3\x53\xe5\x13\x97\xda\x3f\xf4\x0a\x6b\x0e\x1c\xd9\x1b\xed\x1e\x4b\x21\xf6\xbb\xfb\xab\xd9\xb5\xcb\x5c\xdc\xcc\x32\x29\x91\x14\x1f\x39\x4a\xaf\x31\x17\xe7\x78\x44\x44\x79\x01\x74\xfd\x16\x54\x5d\xb6\x2b\x6d\xe1\x2e\xb7\xa5\x41\x58\x75\xae\xd6\xa8\x31\x80\x1c\x5b\x6f\xb8\xd6\x98\xcd\x6b\xf3\xdb\xdb\x2a\xad\xd5\xd2\x37\x8f\x9b\x96\x1a\x7e\x4e\xf3\x3e\x3b\xb7\x60\x01\x04\x52\xdf\xf8\xd4\xee\x5e\xa9\x95\xae\x6e\xbd\xb4\xf5\x5e\x99\xfd\xf6\x9d\x0d\xbe\x9b\x4f\x9b\x6e\x5d\xee\x5a\x6f\x6f\x96\xd7\xda\xd3\x51\x4b\x29\xa3\xe6\xd0\x1f\xe3\x91\xf6\xca\x2b\x9a\xa9\x16\xaa\x38\xae\x68\xac\xd9\x55\x7b\x54\x4c\xa7\x33\xd4\x61\x0a\xa0\xf0\x1d\xab\xa2\xcf\xca\xfd\xbd\x02\x88\x9f\x0a\x33\x4c\x2a\xc8\x2e\x42\x3b\x3c\xed\x87\xc5\x0a\xfe\x6e\xef\xb1\xf9\x5a\x44\x5d\xa4\xd3\x59\x02\x5e\x7c\xf8\x05\xc0\x09\x9e\x30\x3e\x4f\xc0\x5b\xfd\x17\x2c\x2e\xf1\xe0\xe1\x41\x35\xa5\x0f\xf9\xad\xe8\x6a\xd1\x5c\xb3\xcf\x2e\xce\xdb\xb2\x48\x75\x9f\xb0\x8a\x0f\x19\x06\xcb\x88\x53\x89\x42\xb4\xa9\x91\x34\x3c\x9d\x48\x4d\x80\xb0\x88\x2d\xd1\x00\x00\x6c\xa1\x25\xad\x5e\x57\x2e\x77\x76\xf4\xb9\x93\x46\x42\xc4\x02\x70\x79\x77\x79\x68\xa2\xf2\x74\x20\x5f\xf6\x7c\xd2\x9a\x0a\x63\x2d\x62\x98\x2e\x83\x74\x3a\x73\x9d\x33\x85\x9f\x81\x02\xbc\x1a\x87\xc4\x3d\xd9\x81\xd8\x5a\x9b\x73\x9e\x4a\x95\x4b\x3c\x48\x1e\x25\x81\x77\x78\x73\x0d\x7e\xf3\xb9\x4b\x87\x5d\x0c\x59\xc9\x61\x44\x74\x33\x44\xd5\x22\xb2\xb8\xf4\xe8\x30\x78\x78\xf0\x8f\x85\x2e\x42\x38\x65\x79\x8e\xf9\xc6\x39\xf3\xbe\xe0\x6d\x57\x15\x0a\x29\xf4\x40\x18\x4d\x31\x1f\x32\x3e\x09\xc2\x32\x83\x9e\xc1\x98\x4c\x30\x9b\xc9\x30\xe8\xc5\xb1\xcb\x9e\xa7\xa6\x84\xa1\x9f\x12\xa7\x84\x8e\xdc\x3d\x44\x36\xeb\xe1\xc2\xa6\x4a\x7c\x3c\xbf\x9b\x4e\x2c\xb8\xc2\x77\xed\xcf\x3c\x7b\xb1\xb8\x21\x68\x89\xf1\x02\xde\x92\x3c\xb7\xa1\x94\x8d\xba\xb6\x74\x8a\x68\x8a\xf3\xe7\x79\x5e\x78\x05\x2b\x44\x10\x64\x44\x51\xfe\x01\xcd\x04\xf6\x69\xb1\xa1\x9f\x8c\xb3\xbb\x79\x57\xa2\xd1\x37\xb0\x79\xb3\xd9\xbe\x8d\x5a\x5d\x19\xed\x1a\x06\xfa\x9a\x1b\xf9\x9f\x74\x65\xff\xaa\x44\x4d\x26\xbd\xeb\xb9\xee\xe7\xd2\xcb\xfc\x0d\x19\xc4\xea\x6c\xb3\xb5\xb2\xde\xdd\xfd\xe6\xda\x7e\x25\x66\x46\x4c\x32\xd3\xd6\x9a\xc9\xa3\xdb\xae\xc5\x37\x2d\x98\xad\xf4\x0d\x47\xb3\xd8\xc2\xe9\x6a\xc7\x6f\x33\xbf\xd6\x37\xb4\x09\xb7\x5e\x7a\x2d\x00\x4b\x3d\xe2\x75\x56\x5c\x8e\xee\x32\x74\xd7\x8f\x46\xf9\x85\x97\xc7\x31\xa8\x96\xf5\xf2\x72\x8e\x53\xc6\x33\xbf\x9a\x5d\x68\x7c\x38\x5a\x39\x23\x13\xab\x58\xe6\x84\x5e\x7f\xf4\x93\x84\x6f\xc7\xd0\xa6\x4f\x04\x1b\x09\x0d\x6b\x98\x5d\xb1\xbb\xaf\x38\xeb\x34\x0e\x1f\x31\xb7\xd1\x7f\xff\xf4\x5e\xd4\x3c\xcc\x1c\xa3\x4c\x04\xa0\x2c\x00\x54\xf7\xae\xd8\x8c\xa6\x38\xe9\x1d\xc6\x90\x51\x13\x64\x5f\x4f\x6a\xe6\xe9\xec\x7e\x97\x81\xbe\x8f\x17\x40\x30\x46\xfa\x2a\x58\xe3\xe0\x71\x5b\x88\x02\xcb\x8b\x12\x97\xf6\x6d\x50\x0f\x5b\x00\x8b\xdb\xe6\x8b\x64\x1d\xe5\xb6\x66\x81\xa5\x89\x28\xa7\x66\x80\x8b\x97\x45\x8a\xc2\xf6\xb4\x84\x95\x16\x00\xd8\x00\xaa\x9a\xb8\x6e\x55\xaf\xa9\xb0\x1e\xd4\x2d\xbb\x87\x69\xcf\x27\x60\x7f\xe3\xaa\xd2\xbb\x70\xb1\xbe\x18\x30\xa7\x36\xba\x68\xd4\x2a\x02\xbe\xa5\x14\x7b\xff\x5c\x25\xd8\x41\x57\x7d\x35\xd9\x70\x2b\xe5\xea\xa9\xb9\x2d\x14\x2b\x60\xc1\xaa\xe4\x7c\x4d\xd2\x34\xb3\xf4\xad\x19\xa6\x33\x80\x1a\x4a\x91\x7e\x6e\x49\x5c\x8e\x2e\x03\x20\xb0\x28\xda\xd8\x9b\x5f\xce\xdf\x2c\xb5\xe8\x74\x41\x7d\x60\xc1\xea\x7f\xca\x26\xd6\x68\x8b\xc8\xfc\x2d\x64\x94\x02\x5d\xd8\x04\xa0\xd4\x77\xad\x96\xcc\x98\x6e\xa6\xbc\xee\xa0\xdb\x0b\xc3\x5a\x21\x0f\x9d\x30\x12\xd3\x9c\xc8\x00\x3c\x03\xe1\x65\xac\x13\xb4\x69\x5f\x63\xb0\xfb\xa7\x83\x78\x77\x04\xc1\x7f\x80\x50\x6f\x3b\xb6\xbc\x57\xfa\x75\x3d\x9f\x61\xd9\xa5\xef\x1b\x69\x0c\xdb\xce\x89\xb5\xae\x8e\xf5\x7e\x63\xdb\xe9\x05\xd4\xeb\xdb\xa6\x09\x10\xad\x6b\x81\x4c\x70\xb7\xc8\xb9\xe0\xcf\x0c\x9b\x07\xae\x25\xfb\x53\x2d\x35\x94\x9f\x51\xca\xe6\x91\x7a\x2c\x7f\x55\x3d\x3b\x94\x01\xd7\xcd\x66\xdc\x2c\x3b\xcb\xb3\x42\x79\xf9\xa0\x48\x35\xe1\x92\x27\x14\x57\x26\xed\xf9\x77\x62\xa6\x2f\x97\x98\xa9\xb2\x6c\x7c\xbe\x94\x4c\x41\xf8\x99\x52\x2d\xcd\xfa\xbc\x9e\xa4\xf5\xde\x24\x3b\x32\xa9\x47\x24\x9a\x4c\x81\xcd\x79\x04\xa6\x98\xa7\x7a\x06\xf8\x89\x8f\xe2\x66\x0e\x9b\xf2\xec\x70\x7b\x02\x9b\x9f\x92\x3f\xbd\x4d\xfe\x74\xb1\x3a\x61\x0d\x6a\x24\xac\x89\x7a\xff\xf7\x4f\x3a\x5f\x8d\x49\xa8\x74\xa1\x66\x6b\xe7\x23\x99\xe0\xce\x85\xc6\xa5\x2d\xbb\xd2\xe3\x19\x69\x56\x66\x27\xa9\x24\x57\x31\x07\x3f\xd7\xcf\xab\xe2\x1f\xf1\x94\x26\xaf\xca\x46\x69\x58\x78\x2d\x2f\x04\x24\xfd\x20\x86\x79\x99\x88\x47\x5c\xf6\x06\x5d\x71\x19\x0f\x20\x98\x08\x7d\x00\xb8\x90\xf6\x9a\x2a\x66\x84\x3a\x0a\xd3\xce\x90\xf1\x8e\x1c\xe3\x4e\x8e\x84\xec\xb8\xb5\x80\x40\x00\x3b\xb7\x44\x8e\x3b\x9a\x4f\x44\x87\x23\x3a\x22\x74\xd4\x19\x72\x36\xe9\x00\xb7\x1c\xf0\x00\x29\x99\x0f\x81\xe2\xcf\xea\xeb\xde\x40\xfb\x4f\xbe\x70\x02\x20\xda\x48\x00\x24\x5a\x13\x00\x89\x25\x09\x80\x90\x37\x68\xbc\x4f\x82\xc6\x38\xac\xca\x32\xb3\x17\xc2\xbc\xcf\x15\x99\x67\x7d\x7e\xd9\x1b\xc0\xb4\xaf\x97\x2c\x37\x0e\xb3\x30\x12\xb3\x2b\x9d\x4b\x39\x38\x84\x60\x42\xe8\x4c\x62\x63\x01\x9e\xe9\x7c\xfe\x30\xeb\xbb\xc4\x43\x97\xee\xb0\x40\x0e\xd3\x10\xce\x06\xc9\x65\x0a\x95\x54\x50\x45\x5d\x72\x21\xba\x7e\x72\xa1\x2c\x84\xf4\x0b\x25\xba\x29\xcf\xe9\x9b\xa4\xac\x26\x55\x2d\x0e\x21\xed\xc7\x10\xf5\x7b\x5b\x64\x18\x18\xfb\x4a\x75\x3d\xac\x1c\x80\x6e\x25\xb3\x54\xd4\xdc\xa2\x86\x9a\x48\x53\x73\xd1\xc8\x24\xf2\xd4\x54\x38\x8e\xb0\x31\xa4\x21\xf4\x4e\x69\xa0\x70\x50\x0f\x3a\x9f\x3d\xaa\x0a\x70\x8c\x26\x84\x8e\xba\x43\xb2\xd1\x7d\x2c\xcb\xf2\x3f\xfe\xee\xd9\x63\x69\x99\xe9\xce\xe9\xbb\x53\x5e\x3f\x29\x90\xe6\xa4\x6b\x70\xad\x9e\x19\xcb\xd9\x48\xe9\xfc\x7a\x07\x64\xc2\x32\x9c\x00\x47\x11\x00\x89\xb8\x28\x1e\xb4\x79\xcb\x46\x23\xcc\x8d\xa2\xbb\x56\xb0\xa9\xb1\x6a\x4c\xb5\x15\x01\xa6\xa9\x6c\x38\x5d\x9c\x27\x73\xa2\x43\xe6\xb4\x17\xd1\x1c\x6a\xc3\x91\xfa\x5b\x7a\xe8\xbc\x6b\x31\x80\x44\x24\x57\x25\xd4\xdf\xf6\x12\x65\xe7\x12\x1c\x79\xdd\x7b\x86\x23\xf3\xa9\xac\x96\x60\x8b\xb9\x73\x58\x9a\x18\xdb\xa5\x29\x2c\x74\x67\x87\x24\xcf\x9f\xdf\x20\x92\x2b\x66\xf8\xc9\x9e\x2e\x7e\xfa\x91\xe7\x16\x70\xe1\x02\xb6\xbc\x5d\x12\xed\x6b\x23\x29\xb7\x54\xf7\xe6\x79\x71\xde\xb9\x5f\x5a\x09\xf6\x9e\x2c\x42\x29\xe6\x06\x52\x17\x47\x4c\x4f\xba\x8f\x6c\xda\xdd\x8f\x21\x98\xde\xa9\xc5\x58\x51\xfd\x69\xd7\xbe\x18\x56\xf8\x52\xd7\xf6\x98\x2b\xe2\x3d\x8f\xae\x1d\xb4\x11\x93\xec\x27\x7d\x21\x8f\xc7\x09\xe6\xa6\xf6\x64\xd3\x50\x67\xe9\x22\x52\x8b\x8b\xcf\xa7\xfd\x78\xe1\x9c\xe1\x6b\xfa\xb8\x15\x57\xfe\xd1\x28\xf8\x51\xcd\xa8\xcf\x40\x41\xcb\x92\x3e\x3f\x3a\x4a\x16\xbf\x8b\x84\x44\x1b\x92\x55\xcc\x69\x3a\xe6\x8c\x92\xdf\xf0\x85\x86\xe3\xf2\x1b\x36\xda\x47\x85\x05\x63\x17\xb0\x1f\xe2\x9d\x1d\x23\x62\xb7\xfb\xe5\xc7\xcb\x78\xb0\xb3\xe3\x3f\x15\x7a\xa1\x45\xfe\xfb\x40\x56\x30\xee\x7a\x6c\xf1\x97\x5e\xfc\xf0\xa0\x6d\x13\x9f\x57\xaa\xe5\xc3\x05\x34\xb2\xe6\xdb\x63\x06\x4f\x5e\x47\x4c\x2d\x99\x92\xa4\xd7\x8f\x64\x7f\x59\x3d\xf0\x2e\xbc\x61\xe9\x30\x05\x2e\x9f\x4d\xa5\xf1\xa2\x6d\x2d\x0b\x41\xd1\x98\xa9\x7a\xe1\x60\xd9\x7d\x65\xef\xaa\x2e\x0f\x88\x3e\x82\xeb\x44\x7c\xed\xfa\xae\xa2\xa1\xe1\x70\xa3\x96\x8a\xdb\x63\xd7\x65\xce\x55\xd0\x96\x2c\x9a\x4f\x24\x31\x5e\x41\x62\x7d\x2c\x63\xd5\x1e\x59\x7d\xa5\xdb\x20\x8d\xb9\xde\xd0\x6d\x2a\x4f\x4b\x2e\x48\xcd\xd9\xa8\xf9\xd1\x6e\x31\x7e\x8d\xcc\xfb\xab\xa2\x55\x56\x5c\x7f\x08\xcd\x3e\xb6\xea\x4d\x45\x9d\x52\x74\x28\x32\xa8\xeb\xdc\xfb\xe5\xfe\x80\xbd\x9c\x56\x5c\xdb\xe8\x6e\x52\xdc\x93\x27\x24\xb2\xde\xc3\x99\xc0\x17\xda\xc3\x95\x6c\xf7\x20\x65\x2f\x18\xa5\xf6\x68\xd1\x76\x0f\xa6\x39\xc1\x54\x27\xae\x67\x33\x99\xf4\xf0\x3e\x34\xde\xb0\xe2\xcd\x21\xde\xb7\x1a\x9c\x39\x3e\xa6\x1a\x70\x1d\x6e\x6e\x78\x49\x24\xa3\x17\xe6\xd2\xe4\x8f\x2b\xe2\x59\xea\xe5\x1e\x1e\x00\xd8\xf2\x58\x1e\x71\x29\xfe\x4e\xe4\x38\x00\x64\x82\x46\x78\x17\x84\xcf\xcc\x2f\xa5\x60\xf9\x9f\x25\xbe\x93\xbb\x20\x7c\x78\xa8\xbe\x46\xd3\x69\x4e\x0c\x85\x74\x42\x7c\x55\xdf\x5e\xdc\x90\x80\x19\xbd\xa6\xec\x96\x82\x45\x08\x89\x78\x83\x78\xe3\xf8\x79\x34\xb2\x09\x34\xa2\x0b\x7d\x2a\xfa\x10\x1f\x84\xba\xe3\x0a\xd5\xd7\xe2\x17\x53\xbf\x5e\x09\xff\x6b\x86\xf2\x00\x54\x08\x04\xa0\x6b\x2d\x74\x7a\xaf\x0e\xd9\x5a\xaf\xb2\xc5\x39\xac\xea\xcc\x3d\x98\x22\xf9\x0b\x6f\x49\x84\xec\xf8\x22\x22\x99\xe5\x26\x13\xc7\x00\x81\x99\x4b\x8d\xe1\xc0\x34\x65\x19\xfe\xe5\xfc\xb5\x6b\x36\x28\xd5\x38\x63\x35\x17\x40\x20\xd8\x2d\x8d\xf7\x42\x8f\xc4\x2e\x6e\x04\xec\xde\xf4\x76\x0d\x3b\xed\x0e\xc5\x6e\x8a\xe4\x6e\x15\x50\x05\x3b\x08\x9e\x4d\x91\x1c\xf7\x4b\x88\x3a\x4c\x49\xdf\xad\xf7\x56\xf1\x5b\xbd\x6f\x76\xa8\xb4\x23\x35\x6b\x8d\x1e\x2a\xb5\x70\x17\x42\xc2\x32\x5c\x0e\xbc\x3d\x6d\xa5\xc1\x3c\x33\xec\xec\x17\x7c\x78\x30\x9a\x7e\xb5\x32\xc7\x28\x43\x12\x24\x66\xde\x27\x20\x45\x52\x31\x8e\xea\xf9\x3a\x23\xe0\x3d\x53\x96\xe1\x68\x2c\xe5\xf4\x79\x96\x71\x35\x20\x45\x57\x15\x93\x14\x53\x74\xe5\x5d\x31\x4b\x81\x85\x50\xf6\x6b\xe4\xaf\x92\xde\xb5\xd5\x1c\xc3\x0a\xc6\xd5\x44\x32\x0e\xab\x67\x32\x01\xbb\xbb\x5e\xcc\x8b\x77\xb5\x8b\xa1\x85\xdd\x5c\x6e\x44\xb9\x35\x18\xb0\x39\x7a\x36\xf4\x67\x33\xa6\xdb\xb2\x7a\x87\x1b\xa9\x8a\x35\xe7\xf2\x21\xc8\x71\x82\xa1\xb1\x3b\x92\x18\xe6\x64\x42\x94\x44\x3b\x58\xf8\x86\x5d\x6b\xe1\x52\x4a\x29\x11\xd0\x3d\xc4\x07\x8d\xda\x9e\xd1\xd7\x0a\x42\xd5\x61\x9c\x8c\x08\x4d\xf4\x92\xbe\xd8\xb2\x6b\x48\xb5\xf8\x62\xb1\x08\x0b\x1b\xb8\x4e\x3e\xcb\x65\x96\x78\x86\xc6\xcb\x49\xa8\x35\x0d\xd4\x5f\x8f\xb3\x8b\xbc\x44\xde\x18\x9b\xad\x41\x5f\xf8\x9b\xf3\x8c\xfe\x0a\xb1\x55\x0f\x2c\x75\x97\x6a\xe7\x6c\xf4\x4a\x71\x59\xd2\xe2\x09\x33\xfd\x3a\xbf\xf8\xdb\x87\x88\xa3\x14\x07\x97\x38\xd2\x4b\x64\x84\x66\x72\xcc\x38\xf9\x0d\x67\xe7\xf8\x5f\x33\x2c\xb4\x8b\xa7\x7a\xc1\x8a\x08\x07\xf5\xdb\xb8\x3d\x17\xdb\xce\x8e\x8c\xd8\xb5\x12\xff\xfa\xc0\x1b\xe7\x8c\x5f\x48\x85\x8f\x0c\xa1\x5c\xb4\x79\xe5\x5a\x4a\x2a\x35\x66\x9a\x23\x42\x3f\xe2\x3b\x99\x20\x38\x35\xcc\xec\xb8\xcd\x10\x1e\xce\x78\x5e\xbe\xfb\x85\xe7\x5a\xbd\xac\x02\xab\x6d\x25\x73\x76\xdb\x98\x49\x6e\x03\xd6\x5f\x89\xb5\xf7\x35\xf1\x0e\xda\x0d\x11\xc9\x99\x1a\x09\x66\xe5\x42\x08\x71\xe3\x08\xac\x59\x12\xda\xf7\x96\x0d\x8f\x78\x4c\x6a\x35\xe1\xe6\xcd\x4e\x17\x65\x91\x05\x2c\xec\xdb\x95\x40\xc7\xe6\x46\xda\xf2\xbd\x0f\x44\xe7\x60\x84\x85\x95\xb7\x12\x8e\x66\xca\xd5\x70\xea\x74\x68\x87\xe7\x89\x4f\xa5\xf6\x3f\x41\xd3\xd4\x41\xfd\xdf\xf6\x6e\xf6\xf2\x6d\xe7\x7a\x0f\x9a\x9b\xce\xb5\x33\x80\x5f\xe7\x82\x38\xa7\xdb\xfe\xbf\xaa\xd1\x2f\x57\xdb\x3f\x59\x45\xaf\xf9\x54\xcd\xb4\x7f\x5b\xf7\xbc\x16\xae\xd8\x4c\x1f\xb9\xcd\xd9\xe8\x13\x55\x98\xcf\xa0\xb6\xb4\x16\x23\x4a\xbc\xd0\xba\x4a\x93\xb3\x91\xaf\xd7\x2c\xd3\x55\xe8\x12\x5d\x45\xe7\xf3\xcf\xd9\x68\x85\xaa\xb2\x5c\xb9\xd4\xa7\x68\x13\xa7\x9a\x98\x70\x7a\xb7\x98\x7a\x4b\xb8\x99\x33\xfa\x77\xa8\x7d\x5e\x66\xfd\x76\xed\x2e\x5b\xb7\xe5\x27\x2d\xc7\x0e\x26\x7a\xca\x9a\x8b\xea\x6b\xae\x6c\xae\xb9\xde\x6e\x64\x75\x59\x35\xab\x1c\xf6\x30\xc7\xcb\xd6\x37\xbc\x7c\x71\x93\x0b\x77\xab\x4a\x11\xa0\xa5\xb9\xb7\x11\x9a\x55\x71\x29\xc0\xfa\x92\x82\xf5\x7d\x24\x8f\xad\x8d\xe5\xec\xf8\xec\x2b\x64\x05\xf4\x27\xaf\x93\x15\x68\xdf\xd0\x6a\xb9\x24\xf0\x73\xc9\x9e\xd6\xa3\x6b\xe7\xef\x21\xc0\x57\xc7\x83\x7e\xf9\xd3\x45\x8f\xac\xde\x2b\xd6\xed\xd2\x9d\x23\xb4\xa2\xa9\x96\x04\x4c\xd1\x55\x8e\x3f\xb0\x3c\x6f\xc9\xa1\xd4\xcc\x93\x54\x89\xa9\xb7\x99\x40\x97\x4a\x40\x6d\x7a\x11\x71\x6e\xef\x8a\xaf\x1d\x59\xf1\x62\xdc\xab\xe5\x5c\x44\xd0\x7a\x87\x92\x6a\x70\xfc\xe3\x3c\xda\x6b\x8b\xc4\xf5\xc5\x52\x2c\x0b\x93\x52\xb7\x62\x4e\x74\xd4\x33\x8b\x15\xa8\xea\x22\x61\x33\xda\xba\xac\xb9\xe2\x2c\x48\xd9\x96\x39\xe5\x31\x9d\x2d\x89\x11\x74\xe8\x46\xe9\x74\xa6\x53\x00\x1a\x7e\x06\x61\x71\xae\xe3\xb1\x7a\xa6\x58\xb5\xea\xfa\x6a\x1a\x5d\xad\xa6\x19\xb7\x8a\xa1\xe7\x57\x3e\x2f\xe2\x4e\x3d\x99\x81\x29\xce\x77\xf4\x8a\x03\x1e\xce\x4a\xd3\x95\x7b\x35\x17\xbc\x37\x76\xf5\xf3\x25\x15\x37\xbc\x4b\x81\x6b\xa6\x8c\x16\x8f\xb0\xd6\x94\xa9\x70\x9c\xd8\xa6\x8e\x21\x8e\x64\xdc\xc7\xf6\x96\xf3\x5e\x25\x56\xd6\x87\x54\x1c\x57\xe9\xd5\x37\xbb\x7a\x7b\xb5\xa3\x2d\x87\xee\x68\x4b\x6f\x2f\x29\x18\xb2\x32\x75\xdb\xcf\xb7\xf4\xd6\xd9\xa5\x82\x97\x97\x3d\x78\x3c\x18\x84\x8b\x30\xd4\x29\x6c\x82\xc7\xcf\xbb\xb4\xcf\xb7\x67\xa5\x8b\xc8\xf0\x62\xb9\x59\x5d\xff\xe2\x9d\x76\x79\xc2\xb2\x21\x66\x57\x14\xdd\x7c\xbd\x78\xf4\xd5\xe7\x3c\xbc\x43\x01\x43\xf1\xba\x3d\xe2\xb6\xf0\xd3\x56\xe3\x6d\xcf\xd5\xd3\x3b\x23\x92\x4a\xc2\x56\x5c\x6b\x9a\xe8\x43\x01\x42\x38\x14\xe7\x8c\xc9\x2f\x04\xbf\xcb\x19\x53\x92\x63\x48\x72\x2c\xde\x10\x7a\xdd\xde\x0a\xe3\x01\x28\xfb\x08\x20\xa8\x22\xb5\x61\xfe\x16\x79\xcb\xba\x42\xe2\x69\xd7\xa4\x05\xfe\xd6\x8e\x0e\x57\x17\xdb\x1a\xae\x03\x48\xb2\x1c\x6b\xbf\x0f\x00\xd0\xb0\xb7\x7b\x62\x74\x48\xf8\xa4\xf6\xa8\xe9\xfd\xd6\x9c\x77\xd7\x07\x48\x6e\x11\x51\xcb\xea\x0b\xef\xb3\xce\xb8\x46\x84\x9a\xe8\x3a\x07\x39\xa3\xf6\x6b\x3d\xf1\xf1\x0b\xdd\x60\x23\x83\xb9\xc4\x09\x50\x78\x01\x48\xc4\xeb\x6c\xe9\x6e\x81\x39\xef\x08\x4d\xd1\x10\x12\xf1\xc1\xe4\x3c\xac\xa0\xb2\xba\xea\x94\xb3\xc9\x54\x71\x8c\xe9\xfa\x7b\xb3\x68\xbc\x9f\x49\x41\x32\xfc\xa4\x9d\x64\xfa\x65\x23\x0a\xec\xf1\x41\x45\xf4\x57\x8c\xbf\xbc\xc1\x54\x86\x81\xcb\x63\x76\xc5\xb2\x39\x04\x46\xc7\x74\x3b\xfe\xb4\xaf\x0d\x0f\x09\xfd\xed\x76\x65\x15\x4a\x44\xa8\x08\xa8\x3d\xda\x11\xda\xdb\x13\xda\x06\xd4\x7e\x32\xe6\x8b\x0e\x62\x79\x6d\x68\x5e\x15\xdf\xc5\x92\xb2\xe6\x36\xae\x6f\xed\x18\x88\xcb\xcc\x80\xca\x38\x1b\x33\xb0\x65\xbc\x2a\xe2\x19\x9a\xa1\x7d\xc5\x78\x85\x1d\x56\x44\x54\x55\xda\x72\x8c\xb1\xea\xae\x8c\x56\x24\xca\x53\x8e\xe1\xa2\x98\x34\x2b\xf7\xa4\x8d\x8d\x8a\x05\xcb\x6f\xec\xad\x5f\x6e\xbe\x04\x61\xdd\x0e\x55\xcd\x36\x86\x61\xb1\x66\xea\x31\x2a\xb9\x3e\xb5\x29\x76\x3d\x31\xea\xfd\xde\x25\x34\xc3\x77\x1b\x5c\x07\xbd\x4e\x2c\x9f\x60\x5c\xd6\xef\x70\x6e\x31\x89\x56\xdd\xf0\x7c\xab\x54\x92\x25\x41\xfc\x9f\x4b\x80\x72\x27\x40\x0b\x2a\x15\x12\x14\x79\xa1\x80\xab\x0c\xa5\xca\x29\x43\xd5\xeb\x02\x97\x44\x67\x75\x05\xb0\x96\x78\x16\x64\x58\xa4\x60\x01\xab\x45\x8d\x6a\x5f\x2b\xba\xdd\xd3\x89\xac\x3f\xb2\x0b\xc6\xeb\xbb\xce\x85\x2e\xad\x73\x11\x98\xdb\x1a\xd4\x3a\x6b\x4e\x66\x6a\xaf\x7c\x23\x9f\x99\xad\xa1\x40\x5e\xe8\x62\x20\x84\x53\x8e\xf1\x64\x2a\x8b\x48\x44\xac\x4d\xad\xc7\x72\x6f\xea\xeb\xad\xf4\x2e\x80\xbc\x65\xfc\x7a\x25\x66\x96\xcd\xca\x0c\x09\x22\xb2\xd5\x44\x34\x24\xdc\xd3\xfb\x2d\x49\x5b\xce\x92\x6b\x40\x65\x26\xb6\xa2\x60\xf4\x1f\x18\xa5\x63\x6b\x15\xad\x3a\x64\xba\x0c\x00\x08\xdd\x0d\xfc\xc6\xdc\xd1\x29\x45\xcf\x88\x98\x10\xd1\x54\x23\xb5\xa0\xc0\x46\x1d\x36\x59\x0f\xa1\xe6\xd0\x77\x6a\xa5\x0c\x62\xc8\x22\xfd\x68\x8e\x3f\x56\x8e\x4d\x2a\xa3\xc6\x5c\xfb\xf3\x77\x57\xa1\x7e\x1b\x90\xc1\x51\x09\x9b\xf2\x18\xa4\xf5\x7a\xa9\xd1\x9c\x2d\xbd\xca\xb4\xad\xe2\x56\x91\xb2\x42\x62\x2a\x8d\xa2\xeb\x50\x75\x92\x0a\x5b\x45\xb7\xfc\xe2\x0b\x52\x7d\x02\x78\xfa\xbc\x72\x2a\x94\x7e\xfd\x13\xf7\xf6\x63\x5c\x9e\xab\xf7\x88\x60\x56\x9b\x62\x01\xf4\x3f\xe8\x73\x59\x15\x62\x02\xc5\x5f\x39\x96\xde\x72\x76\xea\x2f\x67\x47\x85\x85\x74\x54\xb5\x90\x62\xdf\x42\xb2\xdc\x70\x6f\x0f\x57\xbc\x60\xb3\x3c\xeb\xbc\x63\xb2\x73\x21\xd9\xb4\xf3\xdc\x3b\x00\xeb\x1f\xaf\x00\xff\xc5\x66\xbc\xf3\xfc\xc5\x9b\x8e\x16\x2c\x9d\x8c\x61\xd1\xa1\x4c\x76\x46\x1c\x51\xd9\x29\xf9\xa6\x93\x93\x21\x4e\xe7\x69\x8e\x3b\x53\xcc\x15\x53\x6a\x05\x18\x14\x61\x7d\xa7\xeb\x19\x4c\x31\x3c\x32\x06\x13\xe4\x58\x87\x8b\xfc\xb1\x46\xd5\x22\x5d\x0e\xac\x2d\x74\xe2\x0f\xd7\x61\x31\x5c\x87\x4f\x19\xae\x73\xd3\xc4\x97\x1f\xb1\x93\x75\x47\xec\xd0\x8e\x98\x53\x96\x8c\xcb\x54\x5c\xd7\x12\xc5\x4a\x9b\xd0\xc1\x9d\xef\xd3\x56\x53\xb0\xca\x60\x02\x50\x86\x0b\xed\x6a\xaa\xf9\x59\xac\x4f\xb2\xcc\x1d\xfb\x7d\x10\x43\xf1\xc8\x21\x43\x64\xf5\x92\x02\x3f\xa0\x7a\x11\x2e\x20\x1d\xd4\xb5\x13\xfe\x44\xed\x44\x61\xba\x5b\x18\x79\xed\x9b\x68\xeb\x43\xf9\x62\x76\x98\xac\x9f\x08\xfb\x1c\x8a\x59\x81\xf4\xef\xe6\x3b\xa8\x2b\x41\xf7\x9f\x47\xbb\x79\xb7\x44\xbb\xd1\xb1\x20\xb5\x4d\xc1\x8c\x70\x9d\xa2\x78\xfe\x92\x4a\x7d\x58\xce\x9e\x05\x7e\xd5\x12\xe3\x57\x94\x25\x4d\x65\x67\x48\x72\x89\xb9\x5a\xda\xeb\x00\x01\x04\xaf\xc5\x19\xe1\x85\xc3\xe0\x09\x35\xb5\x63\x4d\x21\xff\x77\x22\xc7\x6f\x30\x52\xfd\xb9\xc8\x91\x68\x5c\x70\x0b\x54\xa1\x65\x2b\xb7\xfa\xd6\x1e\xfe\xb7\x0b\xc2\x67\x38\x01\xfe\x7e\xde\xa2\xd0\xed\xce\xea\xf4\x69\x1c\x5e\xaa\x15\xb0\xd7\xc9\x78\x03\xd2\xb8\x0d\x61\x69\xc0\xa2\x57\x09\xca\x3e\xd0\x81\x81\xfd\x7e\x1f\x3f\x33\x43\x9a\xb8\xfb\x5f\xbc\x91\x28\x74\xaa\xf2\x6a\x30\x4d\xe6\xe2\xb5\xbe\xfb\x85\x16\x1d\x43\xb5\x4b\xbc\x2a\x68\x3d\x13\x11\xc7\x3a\x45\x76\x10\x26\x62\xbd\x3b\x0d\xd6\x9b\x53\x9f\x6e\xf1\x7c\xf9\xbd\x9c\xc6\x5c\x5c\x47\xdd\xe6\x8f\x69\xd9\xba\xbb\x0d\x9e\xb1\x85\xa3\x22\xcf\xd4\x07\x55\xca\x30\x4e\xf1\x29\x9b\x53\x34\x21\x69\xf9\xa5\xb1\x16\x78\xbb\x1b\xad\xf0\x40\xe8\x0e\xc4\xb5\xdd\x75\xa2\x54\xf0\x04\x47\x3a\x7f\x99\x46\x33\xc1\x91\xbe\xfc\x1a\x12\x71\x66\x1a\x4f\xb6\x7b\x8b\x85\xdb\xda\x6e\x69\xcf\x47\xf2\x73\x34\x17\x2f\x16\x61\x8b\x91\xb0\x99\x99\xb4\x91\x49\x61\xb5\x1d\xbd\xd4\xff\x5b\x39\xf3\x95\x33\xa3\x5d\x7c\x13\x6a\xd9\x3a\x9b\x00\x9e\x20\x2a\xc3\xb2\x57\x07\x01\xb1\x0c\x8b\xee\x90\xf1\xae\xa5\x45\xbd\x00\x65\xdd\x1c\xa3\x0c\x17\x05\xbe\x82\x0c\xd2\x9e\xad\xd1\xd2\x4d\xe3\x95\x09\xa7\xda\xf2\x31\x01\xf3\x17\x28\xc6\x1f\xb9\x10\x21\x33\xbf\xca\x9f\x17\xb2\x19\x25\x6a\x69\xb4\xc4\xee\xd7\x5f\x5d\x1a\x85\xc0\x4d\xda\x17\x8a\xc6\x6b\xc3\xaa\x9e\x58\x2e\x01\x87\x3a\x88\xfe\x20\xde\x6f\x87\xa4\x1b\x59\x75\xe9\x93\x57\xca\x5d\xce\x01\x0e\xe2\x7d\x50\x00\x3e\xf8\xbc\x80\x0f\x2c\xe0\xc3\x38\xfe\x9c\x80\x0f\xe3\xd8\x02\x7e\xc7\xde\x68\xc6\x7c\xca\x28\xb9\x14\x0d\x6c\x58\xe6\x3e\xd0\x47\x98\x38\xbb\x35\x7b\xff\x75\x67\x49\x13\x6a\xdd\xab\x6b\x32\xb1\x68\x66\xd5\x17\x03\xdf\x80\xf0\xd9\x72\x9f\x6e\x11\xcd\xa3\xe1\x2e\xc2\xa4\x12\x39\xf0\xf0\xb0\xbc\x62\xca\xa8\x60\x39\x8e\x6e\x11\xa7\x01\xf8\xe5\xdd\xf9\xcb\x17\xef\xff\xf6\xf2\xfc\xf9\x8f\x6f\x5e\x76\x5e\x9e\x9f\xbf\x3f\x4f\x00\xc4\x8e\x67\x16\x1b\x0a\x0e\xe3\xb1\xf8\x9a\xea\x3f\x11\xaf\x18\xbf\x22\x59\xb6\xf6\x5d\x10\x0d\xec\xed\xdf\x25\x92\x6f\x85\xb7\xb8\xf8\xa4\x33\x36\xfd\x4e\xc7\xc1\xeb\x04\x70\xb3\x1f\x7a\x27\xc3\x2b\x72\xac\xb8\xf8\x4b\xef\x8b\x99\x5b\x05\xbd\x7c\x5f\x36\xdf\x14\x80\x6b\x9b\x4e\x90\xd1\x7c\xfe\xc1\x78\x65\xb5\xe5\x0f\xa6\xe5\x03\x58\x40\xbf\xbd\x9e\xbe\xdb\x51\x29\xe5\xc9\x49\xad\x85\x09\xcb\xc8\x70\xfe\xda\xa8\xb9\x75\xc3\x2b\xb6\x28\xaa\xe2\x0d\x61\xd8\x98\xaa\x97\x40\x8c\x19\x97\xaf\x95\x1e\xac\x35\x20\x73\xf3\x52\x15\xcb\xed\x1e\xbc\x21\x82\x5c\xe5\xb8\xf4\xa1\x2c\xf3\xe4\xfa\xbe\x09\x73\x19\x63\x09\xc8\xbc\xa8\x41\x5f\x2a\x3f\x6a\xe5\x8c\xa7\xd3\x83\xe6\xfb\x00\xbd\x56\xed\x05\x91\x2b\xfd\xea\xcd\xde\x00\x57\x4b\x13\x6f\x1d\xef\xba\xb1\xd8\x96\x53\xa4\x52\x49\x43\xf5\x9d\xf2\x6b\x92\xd0\x78\xc1\x6f\x91\xb0\x94\xc0\xcb\x93\xf4\x35\x2b\x97\xc6\x6e\x05\x40\x69\x6e\xea\xbd\xc6\x65\x68\xe8\x84\x51\x05\x06\x4a\xd1\x5c\xc7\x0f\x6f\x2a\x79\xbe\x77\x5d\x31\x2c\x4d\xbd\xd2\xd4\xe5\x44\xbd\x5a\xd2\x78\x66\xbe\x6e\xb8\x0b\x60\x6b\xb5\xb9\xfe\x2b\xbe\x36\xcf\x47\xda\x88\xc6\x5c\xdb\xdf\x66\x42\x33\xf5\x4d\xe8\xc5\x88\xbe\xd2\x04\x5f\x92\x7c\xaf\xc1\xf7\x78\xcd\x40\xc5\xa6\xd4\x6d\xb1\x70\x73\x96\x21\x31\x8e\x74\xac\x5d\x19\xa9\xfd\x34\x51\xdc\xd0\x4d\xff\x35\xd5\xe9\xbf\x50\x4e\x7e\x6b\x0a\x6a\x88\xa0\xf8\x5c\xc2\x9a\x2d\x15\xd6\xa5\x88\xf6\xf6\xee\x2c\x3d\xca\xd2\x55\xed\xb4\x24\x5d\xb1\x41\xa0\xe6\x39\x6d\xd1\x12\xab\x76\xb6\x2e\x01\x42\x93\xae\x6e\x75\x51\x53\x04\xd4\xf4\xdf\xcf\xbe\x6e\xfc\x6b\x6a\x32\x31\x03\x1d\xf9\xa1\x9e\xcd\xd9\x9c\x62\x6f\xfb\x5f\xd3\x33\x24\x51\x8a\xd5\xe8\x27\x20\x4b\xbf\xd2\x5a\x42\xdc\x32\x62\x8e\xfa\x1a\x84\xf4\x9a\xe2\x7a\xe0\x21\x5f\xc7\x1b\x94\x57\x04\x9a\xc2\xda\x45\x9d\x61\xc7\x7b\xd9\xff\x72\x54\x0e\x03\x60\x41\x02\xef\x66\x41\x03\xf8\xb1\x6a\xba\x94\x5f\xcd\x43\xe2\xb1\xba\x65\x51\x10\x16\xd7\x1f\xb6\x67\xc9\xa6\x6d\x6a\xb7\x17\x1e\x4f\xff\x7f\xf6\xde\xbd\xbb\x6d\x5b\x59\x14\xff\x3f\x9f\x82\xe6\x5a\xd7\x47\x3c\x25\x61\xbe\x44\x3d\xba\xb5\x7d\xd3\xa4\x3d\x49\x4f\xd2\x9d\x15\xa7\x3e\xbf\x7d\x7c\xbd\xf6\x82\x45\xd8\x62\x42\x91\x2a\x49\xc9\x71\x6c\x7d\xf7\xdf\xc2\x00\x24\xc1\x37\xe5\xc8\xa9\xdd\x9d\xd5\x46\x96\x88\x07\x31\x83\xc1\x60\x5e\x18\xcc\x58\x02\xba\xcb\x28\x5c\x0e\x02\x72\x2d\x9d\x10\x7e\x1c\x90\xb5\x64\xa9\x85\xa0\x1b\x0e\x27\x64\x23\xe4\x99\x85\x9e\x15\x62\xe2\xfb\xe5\x8a\xe1\x51\xec\x29\xde\x54\x80\x35\x83\x54\x19\x14\x35\xa2\x40\x25\xa8\x38\x1f\x0a\x84\x8c\x06\x3c\x79\x6f\x93\xed\xe5\x13\xb9\x99\x12\x9e\xe1\x95\x5d\x6e\x9b\xe2\x89\xcd\x4e\x27\x19\x41\x0f\xb2\x17\x78\x09\x0c\x0c\x4c\x98\x3c\x61\xec\x6b\xf1\xe1\x56\x65\x35\x23\x82\xdd\x9b\xac\xca\x7b\xf8\x95\x96\xb1\x7b\xec\x78\xd1\x4b\x38\x22\xad\xa6\xfd\x13\xdf\xbb\xf2\x80\xdf\x65\xbd\x67\x8f\xb2\xf6\x11\xf6\x02\x71\x04\x2f\xd3\x07\xdb\xf3\x1c\x30\x81\x7e\x1e\x88\x0a\x84\xd5\xb4\x3f\x32\x10\x68\x79\x17\x5a\xc8\x9b\xdd\x9b\x20\x98\x64\x42\xdc\xdf\x6a\x35\xf6\x1c\x67\x72\x91\x00\xc5\x07\x27\x3c\xaa\xa7\x66\x58\x8d\x16\xef\x42\x67\xe9\xf9\x94\x62\x8f\x95\xbb\x36\xf3\x6e\x55\x3c\x4b\x04\x05\x59\x20\x20\x45\x8d\x0b\x45\x19\xd5\x28\x6a\x38\x4b\xd0\xb5\x97\x2c\xc2\x75\x52\x6c\x92\x3f\xcd\x6b\x17\xcc\xe5\x0c\x0b\x0c\x53\x35\x07\x45\x0f\x06\xe9\x9d\xf0\x87\x87\x07\x44\xb8\x07\x94\x1b\x4d\x45\xb6\x71\x78\x38\x38\x18\x84\x79\xf5\xb0\x52\x3d\x66\x9e\xf3\xb4\x6e\x90\xd7\x0d\x2a\x75\x8b\xb4\x78\x78\x38\x18\x1c\xe0\xbb\xbb\x03\x5e\xea\xc5\x3f\x67\x30\x2a\x87\x87\x07\x83\xf8\xf0\x30\x2f\xcb\x96\x8f\xa2\x00\xf1\xf4\x91\xd6\x0b\xc4\x72\x6f\x41\xbd\x8e\xd4\x1a\x44\x74\x51\x31\xae\x6f\x50\x11\x3c\x90\xd0\x06\x76\x96\xe4\x17\x3c\x27\x49\xbe\x79\xd4\xb9\x76\xe9\x32\x24\x95\x95\x97\x28\xe2\xcd\xb0\x54\x5c\xfd\xad\xf6\xd8\x50\x8d\xa0\xca\x87\x85\x52\xad\xbc\x22\x61\x86\x5d\x12\xe6\x65\x44\x08\x24\xc0\xaa\xf3\x9f\x64\x85\x0d\x4d\xbe\x99\xfb\xb5\x5b\x4b\xef\xef\xcc\x2c\xca\x49\x7d\x02\xb7\x74\x15\xd0\xf1\x4b\x0a\x77\x83\x49\x74\xb7\xe8\x3d\x96\xd6\xfe\x4f\xb3\x05\xed\x60\xdc\xfd\x18\x5e\x40\xe8\xf1\x0a\xcf\x09\x43\x11\x7c\x95\xb7\x6a\xd1\xa0\xa4\x16\x2b\xa6\xb7\x3c\xed\xe6\xe7\xa3\x68\xf9\xae\xee\x70\x75\xa7\x7d\x92\x28\xaa\xfa\x68\x42\x40\x69\x7d\x98\x5c\xb1\xc3\x12\x87\x7b\x68\x7d\xe7\xc3\xcd\x8a\x4c\xf9\xa5\x3a\x4c\x62\x5f\xc7\xd3\x74\x9b\xaa\xea\x3b\xea\x1f\xab\x77\x11\xb9\xf4\x3e\x83\x49\xed\xd2\xfb\xdc\xac\x01\x19\xfa\xb7\x51\x81\xa8\x7c\x78\xb9\xfe\xf2\xe5\xe6\x64\xa7\x0e\xea\xda\xfe\x1c\xf0\xb8\x7b\x3d\xc3\x8c\x88\x95\xaa\x1e\x95\x63\x43\xd0\xa9\xa0\x61\x97\x7e\x03\x29\x8e\x4a\x1a\xd5\xba\x5b\x13\xe3\x91\x77\x7b\xd0\xa9\xb2\x0e\x38\x04\x5d\x8d\x59\xb5\x5c\x19\xfb\x50\x73\x2b\x58\x93\x8e\x71\x01\x41\xc8\xa9\x68\xff\x13\xfc\x4a\x25\x7f\xc8\x98\x41\x12\x02\xc7\x8a\xb3\x3a\xef\x0a\x4f\xb3\xba\x24\xf2\x42\xd7\x9b\xe7\xd5\xd2\x07\x69\x0d\xbe\x4c\xb3\x0a\x27\xfc\x77\x56\x0e\x4b\x3b\x2f\x66\x3f\x45\x1d\x83\x4f\x44\x4f\xc8\x56\x69\xec\x47\x36\x20\xf6\x3b\xd3\x99\xd2\xa3\x90\xa9\xd6\xc4\x7f\x67\x7a\x0f\x64\xc6\x4a\x75\x1e\xfa\xa3\xa7\xbe\xc3\x4d\xab\xbf\x86\x17\xed\x5a\x4f\x41\xd5\x11\x1b\x55\x14\x9e\x18\xcc\x87\xee\x7a\x4e\x06\x45\xf1\x22\x73\xe6\xe6\x99\x7b\xd4\xb3\x73\x45\x51\x71\x41\xa7\xfa\xf6\xda\x12\x6e\xd3\x96\xf0\xbd\xd5\x67\xbe\x20\xee\x8b\xf1\x23\x74\xa6\xa1\x7f\x9d\x1f\xa5\x81\x3b\x35\x48\x67\xd6\xd2\x7a\x6c\x7b\x97\x83\x00\xbc\x66\x54\x40\x4d\xe3\x08\xd1\x12\x7c\xfd\x47\x03\xf4\xc3\xb1\xc2\xba\x57\xce\x8c\xf3\x67\xe4\x0c\x9f\xcf\xe8\xc7\x31\xfd\xf8\xc1\x98\x1a\xdb\xfc\xa8\xfd\x2d\x05\x29\x4d\x8b\xff\x89\xdc\xc4\x03\xdc\x88\x0d\xc6\xcc\xa7\x44\x9d\xc3\x45\x6c\xf8\x8c\x9c\x6f\xb7\x4a\x45\x2b\x22\x05\x6a\x58\x07\xc9\xdf\x0d\x48\x17\x1e\xa6\x90\xf1\x4d\xe1\xeb\x28\x80\xb3\x9a\x8e\xd9\x8f\xc4\xd9\x67\x4d\xd8\xcc\x87\x99\x55\x3a\x1d\x4d\x2b\x0d\x20\x56\x2b\xbb\x2b\x27\xbf\x89\x82\x17\xc8\xd2\x40\x48\x35\xc6\xe0\x56\x65\x45\x56\x18\xd5\x08\xf3\xdb\x60\x64\x07\x0d\x9b\x7d\x65\x76\xf6\x15\x8e\x40\x6f\x68\xc9\x7c\xc1\xef\x74\xca\xc4\xbe\x34\x43\x68\x29\xf3\x05\xaf\xc6\x4e\x7d\x67\x52\x20\x64\xc1\xb8\xbb\xcb\x64\xc1\x67\x55\xff\x45\x9e\x3a\xbb\x3c\xc7\x41\xa6\xf9\x92\xbb\xbb\x80\x6b\xb9\x85\x9e\x67\x33\x2a\x50\x36\x13\xc7\x01\xbf\xc4\x83\x81\x99\x86\xd0\xcb\x4a\xc1\x24\x51\x8b\xaf\xf2\x1a\x93\x0b\x9b\x6a\xd9\x2c\xb1\x8e\x9b\xec\x12\x72\x89\x30\x3a\x2d\x15\xb4\xfb\x5a\x43\xc5\x3a\xee\xb0\x54\x14\x8a\xd8\xdb\x0a\xe8\x16\x41\x2a\x63\x2c\x86\xe5\x5e\x6f\x5f\xe0\x13\xec\x7a\xf1\xca\xc7\x37\x4c\x5c\x48\x0f\xca\x1f\xf0\xfc\xe7\x59\xbb\xa4\xd2\x2e\x37\x34\x88\x4d\x04\x7b\x43\x5c\x36\x32\xa4\xa7\xd9\xeb\x56\xbb\x60\x9c\x20\xca\x56\xe8\x93\x49\xd7\x71\x4e\x25\xd9\xd2\x3f\x18\xe0\xfc\x65\xb8\xb1\xe7\x50\x8c\xd9\x24\x2c\x2e\x68\x17\x63\xc5\xaf\x4c\xca\xbe\x9f\xad\xa2\x86\x06\x1b\x4d\x15\x27\x8b\xf0\xda\x0b\xae\x5e\x92\x95\x1f\xde\x2c\x49\x90\xbc\x24\x09\xf6\x7c\xf0\xda\xee\xd7\x0c\xf1\x6b\x78\xd1\xcb\x0a\x41\xf5\x06\xf4\x31\xbc\x90\xd5\x74\xbd\xf9\xd8\x0b\x5e\xbb\xb2\xb2\xb3\x39\x02\xd4\xbf\x8f\xe1\x85\x18\xef\xb9\x8f\x60\x83\xba\xf4\xf4\xc9\x42\xcb\xd8\x89\x16\x91\x98\x24\x70\x95\x52\x55\xff\xdb\x97\xf6\x17\xef\x14\x99\x80\xbf\x51\x8c\x42\xa3\xde\x64\x0e\x77\xd3\x9b\x3e\x86\x17\x6d\xae\x33\x10\xf5\xbf\x22\x50\x81\x65\xf5\x80\x33\x5f\xbf\xa5\x2a\x13\xde\x39\x3c\xa1\xdb\xa7\x2c\x52\x1e\x04\x9d\xf6\xe1\x02\xf8\xcf\x88\x2c\x78\x20\x17\x77\x71\xc9\xc6\xbd\x97\x2c\xd4\xf2\x92\xe6\xc0\xc8\xdd\x56\xde\xfe\x4f\xd5\x37\xaf\xba\xdb\x0e\xda\x05\xee\xc6\xf1\xc0\x32\xa8\xb7\x55\x16\x10\x41\x19\xf6\xcf\x2e\x9c\xc5\x86\x9c\x37\xae\x57\xbd\x18\xe1\x63\x78\xc1\xef\xd2\x0b\xc8\xf5\x4b\x01\x89\xbf\x9e\xfc\xe3\x37\x14\x43\xcc\xa3\x77\x79\xc3\x6f\x22\xc9\xca\x21\xc6\x58\x35\x95\x62\x3a\x25\xfe\x32\x96\x16\xa9\xf6\x74\x7e\x7d\x6d\x03\x6a\x9f\xac\x2f\x96\xe2\x08\x5b\x4f\x25\x09\x6c\xbf\xc4\xa2\x0a\x86\xc0\xa4\x72\x49\x67\x2f\xdb\x28\x27\xa9\x74\x93\xeb\xd8\x05\x9e\x20\x4d\xc9\xf7\x30\x18\x03\x52\x08\x1d\x5d\x9f\xad\xb1\x11\x29\x2d\xbb\xe8\x63\x8c\xca\xbb\xf7\x49\xa5\xaf\xde\xb0\x04\x54\xb7\xae\x78\x71\x4a\x7a\xec\x16\xc5\xea\x69\x68\x56\xd7\xab\xc4\x2d\x63\xb7\x30\xa2\x8c\x74\x6a\x0c\xeb\x4f\x61\x25\xed\xe0\xac\xd8\xa7\x6f\xa8\x87\x40\xd3\xeb\xd8\x7f\xe5\xd8\x27\x4b\x63\xba\x8b\x68\x8d\xf2\xfc\xa8\x99\x94\xcd\xf6\x24\xc2\x33\xf0\xdd\x43\x58\x6f\xe3\xda\xa4\xac\x6f\xf3\xc0\xba\xdd\xd3\x54\x64\xc4\x27\x82\xf0\x5d\xa2\xff\x33\x24\xfa\x87\xf5\x84\xd4\x04\x16\x7f\x97\xcf\x1f\x91\x7c\xbe\x21\x51\xfc\x15\x42\xc3\x5f\x4c\x92\x8a\xd6\xc1\x9f\xe8\x7e\xff\x56\xa2\x76\xa7\xbf\x9d\xdf\x1f\xdc\x93\x23\xff\x89\x34\xf0\x27\x45\xf1\x7e\x35\xcf\x2d\xc7\xdf\x7a\x31\x3b\x5c\x55\xc7\x6f\x4b\xf1\x14\xdd\x5c\x2d\x05\x83\x33\xa8\x36\xc0\x1b\xa5\xc7\xce\xe5\xc2\x49\xa4\x2a\x3c\x7e\xeb\x90\x15\x36\x8e\x3e\x21\x0f\x29\x55\xf7\x89\x7a\xa8\x74\x5b\x0c\x7c\xb8\xd7\x72\x3a\x4a\xaf\xe3\xfe\xd3\x90\xc5\x1c\x31\x1f\xf0\xc5\x54\x4e\xf0\x55\x2c\x73\x12\xf9\x80\xaf\x9a\x53\x32\x5d\x35\xa6\x25\x2a\x24\x5e\xba\x82\x7d\xf7\x76\x9b\x7a\x17\x44\xc7\x1e\x29\xb9\xb8\x92\xe2\x09\xed\x44\x65\x20\xc1\x6d\xc0\xdb\xb6\x53\x1b\x31\x49\xe8\xe0\xeb\x4f\x56\x64\xc0\xd5\xec\x87\x3d\xa6\x08\xf6\xb3\xf8\x08\x8e\x19\xff\x99\x31\x58\xed\x29\x9b\x5b\x75\x9e\xd6\x54\xd0\x31\x99\x47\xa4\xc2\x33\x22\x82\xdd\x78\x20\xb3\x04\xea\xac\x8a\xcc\xd3\x46\xbf\x8e\x4f\xb1\xef\x41\x9a\x47\xfe\x9b\x5f\xca\x9d\x3d\x61\x79\xb0\xd8\x21\x5e\x10\x09\x4e\x60\x00\x15\xb3\x12\x7d\x8a\xd6\x81\x1f\x62\x97\xa7\xf0\xcb\x66\x74\xee\x13\x1c\x7d\xa0\x9d\xbd\xcb\xb2\xc2\x55\x3a\x48\x47\x97\xe4\x75\xe8\xc2\x07\x78\x18\x52\xb7\xb9\xbd\x4b\xac\xb3\x3b\x1c\x69\x47\x39\x38\x74\xb8\x1b\x12\x79\x97\x37\x30\xcc\xfa\x84\x7f\xb9\x73\x8e\x0e\x4a\x4d\xf7\xae\x2b\x92\xfc\xe3\x3a\xe0\x49\xa1\x15\xe4\x87\xe1\xa7\xf5\x6a\x20\x63\x17\x43\x3e\x36\x78\xb9\xac\x08\x49\x0a\x0b\xf3\xa0\x26\x8a\x1a\x80\x6b\xea\x84\xf8\x97\x83\x9a\xcb\x62\xd2\xc0\x48\x16\x56\xeb\xca\x94\xe4\xb9\xcf\x15\x00\x18\x50\xf2\x13\x41\xe1\x56\x17\xc2\xe7\x84\xf6\xcd\x80\xe7\xaf\x96\xd5\x00\xfa\x68\x43\xa3\xde\x81\x46\xbc\x55\xb6\x35\x8e\xf3\x22\x68\x6c\xda\x14\xb5\xe3\x5d\xd5\x29\xd3\x6b\xa6\xac\xa2\x7e\xd6\x2e\xf7\x34\x35\xa1\xc6\x13\x65\xd6\xc5\xb6\xf2\x22\x8d\xd5\xad\x36\xf9\x6a\x51\xa7\xb1\x41\xea\x0c\x57\x6f\x49\xb0\x5e\xb2\x9b\xed\x29\xb4\x57\xa4\xee\x12\xf8\x4c\x04\x62\x4e\xfe\x46\x58\x71\xe0\xd6\x81\x99\x44\xeb\x64\xa1\xa5\x95\xc4\xca\x8f\x11\xc0\xe6\x3e\x01\xbc\x9e\xfd\xe1\xc0\xed\x42\xd6\x6a\x45\xea\xf1\x05\x39\x81\x21\xeb\x6d\x15\x69\xac\xd1\x13\xc3\x1b\x87\xb4\x2f\xea\xa0\x7a\x17\xf6\xa2\x08\xdf\xec\x8a\x3c\x68\xf3\xc4\x70\xc7\xe0\xec\x8b\x3a\x5a\xbb\x03\x73\x73\xbc\x24\x10\x64\x5c\x87\x3c\xdf\xd3\x98\xb3\xa7\x82\xbc\xac\xd9\xd3\xc2\x5f\x0e\x6d\xcf\x4e\xd3\x06\x9d\x58\x0c\xe6\xc4\xd7\xb0\xef\x77\xe4\xe9\xae\x6b\xf1\x18\x51\xd8\x0e\xec\xca\x4b\xf0\xbd\x88\x26\x6b\xf8\x18\x61\x6e\x23\x9b\x1c\xe2\xde\x84\x93\x36\xe9\xc2\xe6\x62\x1d\x7c\xda\x91\x75\xb1\x36\x4f\x0c\x87\x0c\xce\xbe\xe8\xa3\xb5\xbb\x30\xe7\xe3\x38\xf6\x2e\xeb\xf9\x7e\x0b\x15\xa6\xcd\x9e\x18\xfe\x32\x68\xfb\xa2\x90\x37\xe8\xc2\x22\x8b\x76\xdc\x95\x02\x79\xab\xc7\x88\xc3\x2e\x68\xd7\x49\x3d\xe3\x6a\x87\x96\xb6\x7a\x8c\xd0\xb6\x50\x4c\x0a\x6b\x5f\x82\x61\xf5\x3b\x31\xc8\x32\xfc\xef\x8c\x42\xde\xec\xa9\xe1\x30\x85\xb6\x37\x12\x59\x83\x2e\x2c\xc6\xb1\xc6\x13\x29\x34\x19\x7b\xb2\xd4\x7b\x49\xe1\xac\x81\x58\xc5\xbb\x1c\xb0\x63\x06\x5e\x0c\x7f\x07\x24\xbb\x2f\x8a\x6c\x07\x44\xb9\xbb\xab\x04\xd0\x1f\x0c\x4e\x6e\x96\x17\xa1\x8f\xbc\x84\xa5\xf0\x93\xbc\xd4\x5e\x06\x0d\xe4\xb3\x10\x7e\x48\xcf\xa3\x2b\xb8\xfd\x21\x3e\x97\x67\xb3\x34\x54\x7e\x15\x85\x49\x98\xdc\xac\x48\x96\xfa\x0c\xcd\xb1\xef\xd3\xf7\xf2\x17\x73\xf3\xf9\xd9\xb9\x8a\x67\x07\xba\x1a\xcf\x0e\x0c\x35\x4c\xad\x4f\x49\x74\x03\x99\x01\x21\x33\xbe\xea\xcf\xc8\x59\x69\x30\xe7\x03\xe5\xc7\x83\x01\x9e\x0d\xa2\x19\xcb\x39\x3e\x50\x14\xe4\x86\x01\x51\x0e\x0f\x07\x01\x5a\xad\xe3\xc5\x20\x42\x40\x0c\x8a\x7a\x90\xdc\xdd\xa5\x51\xbb\x07\xb3\x59\xa2\xfc\x48\x5f\xa9\xfc\xb8\x65\xd9\xff\x3c\xe5\x36\xa6\x43\x08\x67\xde\xf6\xd2\x0b\xb0\xef\xdf\xdc\xd2\x01\xe0\xbb\x3b\xaa\xb9\xcf\x66\x3e\x62\x43\xbe\xbb\x4b\xbf\x0d\x94\xac\xa6\x77\x39\x88\x15\x96\xb7\x2b\xdc\xa6\x27\x07\x82\x2d\xe0\x51\x40\x6b\x9a\xdb\x2b\x20\xd7\xd2\x87\x9b\x15\x81\x7c\x62\x03\x99\x5b\x0c\x24\x9c\x24\x64\xb9\x4a\xa4\x24\x94\x5c\x12\x27\xd1\x7a\x9e\xac\x23\x22\x05\x61\xa0\x01\xc8\x17\x3e\xc9\xd2\x93\xc9\xca\x96\xbe\x3f\x9d\x75\x31\x12\x98\x52\x80\xa1\x9c\xe9\xe7\x28\x22\x2b\x1f\xcf\xc9\xe0\xe8\xff\x1d\x1d\x5d\xa9\xb2\x26\x2b\xc8\xc5\xf1\x02\x0e\x03\x0d\x94\xed\x3d\x0c\x84\xf3\x98\x25\x8f\x98\x05\xed\x61\x32\xaf\x80\x72\x11\x23\xe0\x41\x50\x8a\xf6\xa8\xa6\xea\x4a\x29\x3d\x1b\xde\x8e\xdb\x74\xde\xee\x69\x71\x0c\x01\xde\xbe\xbd\xa6\x2d\x3a\x78\x86\x4b\xe6\x3b\x32\x5d\xda\xe2\x89\x61\x8f\xc2\xd8\xbb\xbf\x79\x17\xc6\xa2\x70\xb5\x2b\xca\x68\x93\xc7\x88\xb3\x36\x38\x19\x54\xab\xf0\x9a\x44\x1a\x3b\x70\xa1\x79\x71\x5d\x60\x4b\xb5\x62\xaf\x3e\x1e\x23\x3e\x9a\xfb\x04\x48\xde\x51\x40\x4e\x00\x8e\xd7\xf1\x7f\x31\x4c\xf4\x7c\x47\x43\xfb\x7b\xcd\x01\xfb\x46\x6a\x0d\x7b\x3b\x4c\x43\xd6\xcd\x53\x9f\x89\x93\x0c\x1f\xf7\x9e\x8c\xb4\x8b\xae\xf9\xf8\xa3\xbf\xf1\x19\xae\xef\x7a\x6a\xb8\x85\x31\xf7\x46\x23\xad\xdd\x81\x31\x76\x6e\x48\xbb\xd8\xd5\x90\x9a\xb7\x7b\x8c\x18\xec\x86\xf8\x5e\xe0\x3e\x41\x58\x03\xf7\x3e\x73\xcb\x5a\x3d\x39\x68\x7d\x2a\x7a\x37\xdc\x9a\xd8\x0c\x2d\x6f\xf5\x18\xa1\x6d\xee\x33\x83\xb5\x67\x9f\xbc\x7e\x17\x06\xc3\x68\x89\x13\xed\xe2\x26\x21\xdf\x95\xd4\xef\x4a\x6a\x41\x49\xbd\x87\x9a\xc9\xc8\xe9\x27\x4a\x4d\x33\xdc\x14\x74\x77\x26\xff\xc4\xc8\x4d\xfe\x6f\xef\x27\x59\x95\xdf\x7a\x3f\xc9\xe7\xcf\x32\x1a\xc3\x94\x9c\xf8\xb1\xff\x54\x23\x7e\x86\xef\xee\x06\x78\xa6\x2b\xcf\xd2\x39\x8b\x67\xfa\x8f\xf8\xef\x33\x43\x37\xed\xc3\xc3\xf8\x6f\x29\xf2\x35\xe3\x47\x05\x1f\xc1\x63\x35\xfe\xe1\x07\x1e\x2a\x94\x9f\x69\x7f\x8b\x93\x05\xba\xf4\xc3\x30\x1a\x60\x45\x95\xa5\xfc\x5c\x7b\x70\x16\x9f\x2b\x5b\x31\xb8\xba\xa8\x0b\xe3\xce\xe0\xd7\xd2\x9a\x72\x71\xd9\x02\xb9\x0c\x6b\x3d\xfc\xa2\x31\xe0\xfb\xea\xfa\x77\x59\x5d\x75\xf4\x1e\x64\xf4\x5e\x77\x73\x00\x56\xf8\xfa\x1a\xc8\x6f\xdf\xbe\x7d\x2b\xbd\x54\xa5\x7f\xfe\xf3\x9f\xff\x94\xbf\x62\xa5\x7e\x68\x5c\xa6\xfb\x5a\x04\xeb\xa8\xfb\xca\x8a\x72\xdd\xef\x0b\xe4\xfb\x02\xb9\x17\x51\xf7\x36\x6c\x0a\xc4\x80\xd9\xe2\x8b\xf3\xc5\xa7\x86\x33\x8c\xd6\x81\x97\xc4\x6a\x34\xc3\xc8\x0f\x83\xab\x5f\xc2\x68\x59\xbb\x26\x63\x35\x54\xa3\x1e\xa7\xe2\x4a\xcb\x62\x19\x06\xc9\x42\x2b\x1f\x2e\xfd\xbe\x3f\x7c\x27\xff\xbd\xed\x0f\xd2\xcb\x97\xd2\xab\x57\xd3\xe5\x72\x1a\xc7\xd2\xff\xfe\xef\xd7\xec\x12\x6f\x29\xb5\x3e\xf8\x56\xb1\x22\xd1\x9c\x04\x09\x1c\x7f\xe8\xa3\x88\x30\xa4\x24\x2a\x9e\xe1\x94\x42\x39\x0d\xfc\xdd\x38\x3c\x64\xe3\x3b\x98\xe5\x85\x67\xc6\xf9\xb1\xf8\x63\x7a\xbb\x55\x61\xd5\x9f\xe9\xe7\x0a\xac\x79\x76\x99\x2b\x2d\x87\x85\x9f\x84\x09\xf6\xd3\x60\x73\xfd\x6f\x83\x84\x52\x63\xd6\x6f\x74\x1c\x0c\x22\x65\x9a\xfd\x0e\x8f\xe3\x1f\x82\x41\xa8\x4c\x63\xe5\x38\x3e\x8a\xa6\xba\x72\x78\x98\xfc\x0d\xe9\xc6\xb1\xfc\x37\xc9\xf8\x3f\xf2\x14\x44\xcf\x28\x5c\x07\xee\xc0\xd0\xf5\xff\x4c\x94\x1f\xe4\xff\x23\xd7\x7b\x82\xbc\xf8\x37\xfc\xdb\x80\x28\xc7\xfa\xf4\x07\x72\xff\x79\x7b\x97\x61\x74\x96\xec\xc2\x1d\x93\x5d\xd9\xd9\x77\x46\xf6\x9d\x91\x3d\x24\x23\x53\xa5\xff\xf8\xe7\x3f\xf7\xc5\xcd\x1e\x8e\x91\x81\x1b\x65\x77\xeb\x5b\xd6\xec\x31\x1a\xa4\x5a\xe1\xad\x8d\x27\xaa\x37\xbe\x5f\x3d\xce\x28\xa2\xe6\x3e\xaf\xfa\x77\x77\xd5\x8d\xa8\x5a\xbf\x78\x13\xa6\x9e\x9a\x33\xfc\x6a\x87\xf0\xa3\xab\xce\xd0\xa3\x05\x8e\x35\xca\x28\x77\x5c\x45\x59\xb3\xa7\x85\xbb\x05\x8e\x7f\x03\x60\x7b\xf6\xc9\xeb\xf7\xc0\xe1\x2a\x22\x1b\x2f\x5c\xef\x1a\xc2\x55\x68\xfa\xe4\x70\xf9\x2e\x03\xba\x3f\x3e\xd3\x36\x5d\x38\x4d\x96\xbe\x16\xe3\xcb\x5d\x43\x5c\xf2\x76\x4f\x0c\x9b\xc9\xd2\x3f\x01\x70\xfb\xa2\x92\x37\xe8\xc2\xe3\x7a\x89\x83\xdd\x23\x85\xb2\x66\x4f\x0c\x8b\x19\xb4\x7d\xb1\xc8\x1b\x74\x60\xd1\x0b\x76\x0d\x13\xa2\x2d\x9e\x16\xee\x00\xc6\x9e\xfd\x79\x41\x57\x98\x90\x17\xf8\x5e\x40\xb4\x78\x73\x55\x87\xb8\xbc\xb4\xb6\x41\xde\x5d\xbc\xb9\x2a\xf3\x45\x35\x10\x74\x1b\xfc\x5d\xb7\xf9\xf7\xd1\x6d\xf6\x9b\xcd\x87\xe9\x1d\x87\x87\x35\x5a\xc8\x71\x87\x15\x33\x66\x9a\x55\x38\xc3\x75\x9a\x15\xa3\xe4\x93\xcd\x95\x22\xdc\xf7\x10\xaa\xb1\x92\xdd\x52\xfb\x0a\x07\xae\x4f\x2e\x70\x14\xa3\x25\xfe\x44\x7e\x0a\xd7\x81\xfb\xaa\xce\x56\xda\xd5\x2b\x51\x31\xdd\x53\x17\x77\x77\xb7\xa5\x8b\x6a\x5b\x55\xa7\xec\x7e\x8d\x9d\x99\x5a\xda\xee\x31\xb2\xb6\x76\x88\x37\xe1\xa7\x5d\x8f\x28\xf0\x46\x8f\x11\xd6\x36\x36\xce\x20\xed\xcd\xc9\x69\xf5\x2e\xec\xc5\x1a\xbe\x6c\x88\xea\x61\xd6\xa7\x6a\xd5\xc7\x88\xb5\x2e\x18\x9b\x4e\xbc\xd6\xab\x8e\x59\x8b\xc7\x08\x6a\x0b\x81\xb0\xfd\xb0\x3f\x85\xb0\xfa\xdd\xe8\xbb\x20\x97\x61\x54\xbb\xc6\xaa\x34\xc2\xeb\x3e\x46\xcc\xb5\x05\xde\xc3\xc8\x93\x6b\x52\x1f\x05\x55\x07\x26\xab\xfc\x38\xe1\x6c\x9d\xcd\xb9\xef\xad\x2e\x42\x1c\xb9\x5a\xbc\x5e\xad\x58\x4a\xa1\x06\x1d\x22\xab\xda\xd5\xfe\x31\xa2\xa1\x6d\xa1\xbc\x48\x61\x38\xc9\x51\xd0\x7b\xd5\x54\x1b\x77\x23\x9d\x0a\x44\xbb\x71\x20\xd6\xe2\x31\x22\xb6\x0b\x54\x16\x6b\xbb\x0b\xa8\x4f\x30\xa2\xd8\x8b\x7f\xde\x29\xa6\x98\xd7\xef\x46\x1f\xd3\x44\xfa\xfa\xee\xb8\x1c\x99\xcc\xe4\xf4\xb9\x3c\x9b\x51\x5d\x25\xbc\x94\x98\x9a\x71\x78\x28\xc7\xf0\xa5\x5c\x90\xe9\x1f\xc7\x62\xf7\xe9\x80\x59\x4d\xb2\x9d\xd6\x14\x92\xc3\xc3\x96\xd7\xc1\xfd\x3e\x4c\xec\x0f\xa3\xd9\x6c\x96\x3d\x3f\x48\xbf\xe7\x1a\xd5\x71\x3a\xb6\x69\xf6\x42\x65\x40\x8a\x07\xbb\xbe\xab\x81\xff\x2e\x6a\x60\x1f\x17\xd7\x41\x71\xd2\xb1\x72\x78\x48\x21\x3a\x98\xcd\xf0\xe1\xa1\xcc\x17\xcf\x6c\x36\x4b\x06\xf8\x5e\x7a\xa5\x17\xb3\x46\x0f\xe5\xdc\xf2\x62\x2d\xc6\x4b\xa2\x85\xd1\x2e\x92\x77\xb1\xc9\x63\xe4\x94\x3d\x61\xde\x45\x94\x2c\xb5\x79\xa2\x50\xf7\x87\xf5\xc9\x41\xf8\x31\xf4\x76\x3d\x34\x00\x4d\x9e\x1a\x9c\x3e\xfe\x72\x43\xc5\xde\x79\x29\xf5\xc8\x47\x48\x3f\xfa\x3d\x3e\xe3\xfb\xe6\xd5\xb2\x79\x99\x8a\x1a\xcf\x30\x8f\x87\x3c\x33\xce\x7f\x2c\x06\x69\x84\x28\xc1\xd1\x15\x49\x14\xe4\xc5\x03\x19\xcb\xca\xdd\x5d\x3c\x08\xef\xb5\x75\x51\x32\x7d\x41\xa9\xf4\xa1\xf6\x2e\x3f\xbc\x26\xd1\x1c\xc7\xbb\xfa\x9c\xf2\x76\x8f\x71\xe5\x37\xf7\x29\xc0\xdb\xb3\xd7\xac\x45\x17\x47\xd9\x21\xe4\xc3\x7f\x9c\x46\xd9\x16\xb4\xf5\xef\xae\x9b\xf5\xee\x12\xf2\xe1\x3f\xb9\x90\x0f\x7f\x87\x90\x0f\xbf\x33\xe4\x63\x89\xef\x11\x36\xc5\x1b\x3d\x46\xbc\x75\xc0\xba\x3b\xa0\x4f\x0f\x4a\xe2\x7a\xb8\x0e\xce\x88\xc4\xab\x30\x88\xbd\x0d\x29\xd5\x7d\x8c\x10\x36\xf7\xc9\xe1\xeb\xd9\x23\xd4\xee\xc2\x18\x88\xd6\x1a\x76\x6b\x8d\x9a\x25\xc1\x5b\xa8\xfc\x18\xf1\xd6\x03\xce\x39\xf6\x49\xe0\xe2\x3e\x6a\x64\xb9\xc5\x13\x85\xd8\xf5\x2e\x2f\xfb\x43\x0b\xb5\x9f\x2a\xa4\xb5\x87\xbe\x5a\xa1\x6d\x3a\xfa\xf5\x44\x20\x66\x91\xc5\xfd\xe1\xe5\xf5\x9f\x2a\xb4\x51\xb8\xd4\x82\xf0\x7a\x07\x78\xd3\x16\x4f\x18\xe2\xdd\xa0\x7d\xaa\x90\xc6\xeb\x8b\x24\x6a\xc8\x14\x59\x0f\x6d\xd6\xe2\x89\x42\x9c\x84\x35\x47\xb5\xdb\x00\x4e\x1b\x3c\x5d\x78\x77\x5a\xbb\xbc\xfe\x93\x85\x76\x17\x48\x9f\x2a\x94\xeb\xc0\xfb\xdc\x03\x4e\xa8\xf6\x34\x41\xec\x3d\x8b\x4f\x0e\xbe\x7b\x9c\x75\x78\x82\xe7\x1c\x82\x5d\x0e\x39\x04\xe9\x09\x87\xe6\xb8\x97\x20\x4c\xb4\x5d\x92\x7f\xb1\xfa\x4f\xcf\x5d\x1f\x84\xc9\xcf\x7f\xf4\x47\x1c\xad\xdd\x45\x6f\xe1\x0e\x36\x3c\x5a\xf9\xc9\x21\x6c\x17\x74\x75\x22\xab\xcf\x4e\xf9\x14\xf7\x47\xe6\x74\xd1\xea\xb5\x96\x16\xde\x93\xb7\x7b\x8c\x10\x37\xf7\xc9\xc6\xfd\xbc\x7f\xa7\x69\x83\x2e\x3c\xae\x68\xc3\xfa\xc0\xa1\x36\x34\xa6\xcd\x9e\x18\x16\x33\x68\xfb\x62\x91\x37\xe8\xc2\x62\xad\x21\xa8\x9e\x27\x85\x8f\xd3\x04\xd4\x82\xb4\xa8\x3f\xba\xa2\x0e\x44\xad\xf0\x15\xd1\x12\x2f\xf1\x6b\x15\x96\xbc\xb4\xae\xc1\x43\xdd\xa2\x99\x61\xa1\xeb\x76\xc7\x6c\x4c\x24\xba\x0c\xa3\x5a\x8d\xba\xee\x16\x95\xb4\xfa\x63\x9c\xf5\x56\x30\xbd\x15\xd1\xd8\x3d\x74\x3b\x72\x07\xb1\xe5\x53\x84\xfa\x1e\xe0\x3e\x4a\x38\x9b\xfb\x64\x50\xf6\xec\x90\x56\xee\xc2\x9a\xbf\x8e\x70\xd3\x6d\x3b\x5e\x70\xe9\x93\x79\x52\xc3\xf8\xbe\x87\x6c\x7c\x0f\xd9\xa8\x09\xd9\x48\xb3\xd6\x18\xb3\x19\xc4\x6e\x1c\xc7\x53\x88\xde\xc8\xa8\x4c\x19\xc4\xf7\x0a\xd5\xc8\x3a\x60\xa1\x18\x0f\x15\xb0\x71\xcf\xb3\xeb\x4f\xf4\xdc\xfa\x6a\xd7\x43\xeb\xab\x7e\x27\xd6\xff\x58\x93\xf5\xae\xac\x98\xb5\x79\x5a\xf8\xe3\x70\xf6\xec\x11\x6a\x77\x60\x2e\xc2\xc1\xd5\xae\x98\x63\x6d\x9e\x16\xe6\x38\x9c\x3d\x7b\x84\xda\x5d\x98\x23\xee\x7a\xbe\x33\xea\x58\xa3\xc7\x88\xbb\x76\x58\x41\x15\xde\x39\x72\x25\x6f\xf7\xf4\x20\x5e\x91\x9d\x2d\x06\xbc\xd1\x63\x84\xb5\x65\x65\x70\x48\xfb\x2e\x0d\xa8\xde\x89\xbd\x0d\x89\x1a\x82\x10\xdb\xd0\xc7\x5a\x3d\x46\xfc\xb5\x41\x1b\x2f\xd6\x97\x97\xf5\x6a\x6a\x0b\xb4\x69\xab\xc7\x08\x6d\x73\x9f\x19\xac\x3d\xfb\xe4\xf5\xbb\x30\xe8\x05\x57\x6b\x1f\x37\x5d\xab\x94\x69\x05\x47\xbe\x77\x51\xdb\xe8\xd1\x28\xfc\xb1\xef\xed\xbc\x29\xb0\x36\x8f\x91\x0e\x5a\x21\x0d\xa3\x7b\xec\x08\x69\xab\xa7\x06\x6d\x82\x77\x4e\x61\x00\x4d\x9e\x1e\x9c\x71\xc3\xed\xad\x55\x6b\x15\xd4\x7d\x72\x00\x7a\x89\x4f\x76\x4f\xca\x94\x35\x7b\x8c\xf0\x36\xf7\x99\x43\xdb\xb3\xd3\xb4\x41\x17\x16\xc3\xab\x2b\xff\x9e\x26\xbf\x62\xdb\xc7\x88\xcf\x6e\xc8\xef\x05\xf2\xa3\x84\xb5\x85\x76\x38\xa4\x7d\x29\x07\xaa\x77\x61\x2f\xf2\xea\x8d\xe1\x2d\x2b\x8f\x36\x79\x62\x98\x03\x28\xfb\xe2\x2d\xf2\x96\x9d\x58\x5b\x07\xf3\x86\xc8\xad\x56\xcc\xf1\x66\x4f\x0d\x7b\x29\xb4\xbd\x31\xc8\x1a\x74\x60\x71\x1d\xb8\x24\x8a\xe7\x0d\x87\x5b\x5b\xf0\x28\x34\x7c\x5a\x98\x14\x21\xee\xd9\x6d\xde\xa4\x23\x2c\x65\x1d\xec\xce\xf9\x59\x9b\xc7\x88\xc3\x76\xba\xf9\xeb\x86\x9c\xad\x57\xab\x7b\x9d\x17\xcc\xdb\x3d\x46\x88\x5b\x56\x44\x0e\x6f\xdf\x05\x91\xb6\xe8\xc2\x64\x52\x9b\xa6\xb2\x4c\x24\xc9\x53\x4b\x4d\x09\x70\xf5\xc5\x55\xd2\x95\x9a\xb2\x36\xc6\xa8\x85\xce\x1e\x67\xb4\x51\x73\x9f\xd7\xbd\x7b\xbb\xee\xc2\x94\x97\x2c\xc2\xf5\xae\x16\xc8\xb4\xd5\x13\xc3\x5a\x0a\x6b\x5f\xdc\xb1\xfa\x1d\x18\xfc\xac\x79\xf3\xfa\x2d\x6a\xaf\x29\x50\xb3\x6b\x75\x08\x3b\x41\x7e\x86\x11\xdc\x84\xaf\xca\xec\xf5\xf0\x47\xf3\x62\x2d\xbb\x9a\x2d\x56\xce\xe1\x06\x0e\x3c\x4f\x06\x0a\xfa\x18\x7a\xc1\x40\x96\x64\xa5\x33\x8f\x65\xac\xde\x42\xcf\xd3\x70\x7b\x2f\x97\xe6\xe7\xd7\xf3\x30\x78\x28\x47\xe6\xe7\x5d\x02\x9b\x3e\x3f\xb9\xc8\xa6\xcf\x3b\x84\x36\x7d\x6e\x8c\x6d\xf2\x02\x2f\xf1\xc0\xab\x1c\xc5\x47\x78\xb5\xd2\x48\xb0\xe9\x95\x47\x8a\xd1\x18\x29\xdc\xf1\x72\x77\x97\xff\xd2\xcf\x9f\x11\xe4\x05\x10\xb7\x20\xcf\xc3\x20\x89\x42\xdf\x27\x91\xac\xd2\x1f\x97\x1e\x25\xea\x98\x44\x1b\x6f\x4e\xa6\xfc\x01\x64\xd2\xc9\x1a\x2c\x57\x61\x00\xb1\xe7\xcd\xf5\xef\x95\xaa\x27\x83\xb7\xe9\x5e\x96\x60\x76\x1b\xe0\x25\x99\xca\x14\x1b\xe9\xbb\xf3\x66\xd3\x64\xdb\x65\x79\xad\xe0\x34\x09\x3f\x15\x73\x04\x3e\x00\x56\xf9\x3b\x32\x24\xb1\xdf\x4d\x38\x6d\xa8\xfd\x0d\x30\xca\xdf\x7c\x7f\x84\x52\xa8\xb1\x17\x90\x48\x73\xc9\xc5\xfa\x4a\xc3\x2e\x5e\x35\xe4\x44\x8a\x48\x1c\xfa\x1b\x12\x1d\xa5\x5f\xe2\x23\x60\x57\xde\xbc\xb1\x97\x87\x32\xdb\x73\x0c\x34\x0e\x5e\xc0\x87\xb0\x80\x7b\x10\x43\x44\xae\xbc\x38\x21\xd1\xa0\xa9\xef\xe9\x12\x7b\x81\x2c\xa4\x0f\x51\x8b\x14\xd4\xdc\x44\xa6\x63\x8e\x57\x78\x4e\x64\x95\xce\x9d\xef\xcd\xe1\xa4\x28\x2b\x56\xb6\xbb\xcd\x5b\x2e\x59\x2d\xbd\xa8\xf5\xa6\xa9\xaf\xc7\x79\xfe\x80\xe3\xbd\xfa\xf2\x7a\x84\x6f\xb7\x7d\xe1\xc8\xad\xcf\x5d\xc6\xe9\x8e\xd6\x8f\x71\xd7\xe9\x89\x04\x17\x27\xb5\x89\x06\xe8\xf3\xa3\x98\x24\x6b\x60\xa0\x8c\xc2\x0a\x85\x35\x12\xcc\x7e\x16\x1a\x2e\x4e\x38\x1b\xa0\xc8\x6b\x32\x20\xbb\xae\xd9\xaa\x01\x37\xcf\x9f\xa0\x5d\x44\x04\x7f\x5a\x85\x5e\x50\xbe\x7e\xab\x92\x69\xa1\xd0\x4f\xfe\xfc\xcf\xf7\x0f\x16\x01\x04\x00\x34\x61\x91\x6b\x57\x7e\x78\x51\x0e\xad\xcf\x1a\xb3\x7d\xf1\x88\x04\x1b\x2f\x0a\x83\xae\x1b\xc7\x7a\x30\x32\xef\x72\x70\x60\x1c\xcc\xf2\xe1\x23\xf6\xd6\xe7\xf9\x88\xfe\x0b\x06\xc4\xfa\x0a\x68\x03\xb0\x26\x51\xa8\x5c\xf9\x20\x4d\x28\x79\xed\x05\x6e\x78\xad\x04\x33\xf6\xe5\x19\xf1\x63\x22\x35\xd4\x65\x10\x2a\xc1\x8c\x7d\x81\xba\xb7\xc5\xba\x59\xa2\xca\x98\xf8\x97\x69\x04\x65\x30\xa3\xbf\xe0\xbe\x62\xac\xc6\xdd\x43\x7e\x86\x67\x32\xd3\x26\x85\xfe\x8e\x63\x9e\xfe\x3d\x0d\xd3\x84\x8d\xe9\xf2\x66\x90\x77\xb7\x84\x59\x7f\x17\x91\x4b\xef\xb3\xa2\x06\x67\xf8\xfc\xee\x6e\x40\xff\xcc\x88\x4a\x19\x7f\xb8\x22\xc1\xe0\xf6\xda\xf3\xfd\x97\x24\x4e\xa2\xf0\x66\x5a\x08\x7b\xf4\x62\xf4\xaf\x78\x4d\x45\x67\x3a\xad\x37\x03\xfa\x44\xcd\x90\x4e\x29\xc2\x27\x09\x91\x68\x87\xdb\xad\xa2\x6c\xbf\x72\xf3\x0f\xba\x56\x64\x33\x89\x09\x0b\x34\xd8\x6d\x61\x5e\x46\xf8\x8a\x9d\x84\x26\x11\x7f\xd8\x40\xb1\x79\x85\xbc\x55\x6b\x48\xaf\x72\x2b\x6e\xae\x79\xf3\xa9\x96\x35\x17\x36\xd5\x07\x46\x5e\x2d\x9c\xf7\x47\xdb\x32\x74\x89\x9f\xc1\x51\xcb\xc2\x28\xeb\xd4\xca\xf5\xf6\xcf\xb4\x2a\x3b\x75\xfa\xb2\x0f\x11\x0e\x62\x76\x52\x81\xe5\x72\x6c\xe4\xe9\xa2\xe8\x90\x8b\x36\x49\xde\x5e\x8e\x13\x30\x38\x67\xd2\x2e\xfb\xad\x34\x6d\xf6\x2c\xdc\x57\xdb\x75\xc3\xcb\xeb\x6b\xf0\x02\x8d\xbf\xee\xa1\x65\xca\x5d\xb6\xba\x86\x9d\xa0\x0e\xe2\x05\xc1\xae\x76\x11\x85\xd7\x71\x71\x4d\x3d\xb8\xac\x56\x7c\xf1\x2e\x72\xda\xd2\xfb\xec\x05\xf1\x51\x4c\x70\x34\x5f\x50\x69\xa7\x38\x57\x97\xeb\x98\xa0\x8f\x55\x2a\x2e\xae\xfa\x9e\x61\xfc\x59\x9c\x7c\x32\xd3\xd5\x60\x16\x90\x6b\x89\x97\xf1\x88\x77\xe5\xc7\xe4\x6f\xe9\xf7\x1f\x93\x1f\x7e\x50\x82\xb3\xe4\x7c\x46\xce\x92\x2c\x42\x3c\xd8\x96\xcf\x00\xc0\xab\x1e\x28\xfe\x9f\xbf\x94\x01\x72\x19\x85\xcb\x01\x51\x4a\xef\xef\x1f\x2c\x1f\xaf\x22\x82\xdd\x6f\x77\x85\xf4\x5b\x3a\xb3\x68\x1e\x11\x9c\x90\xc1\x2d\x9b\xe0\x0f\x24\x5a\x4e\x65\x59\xf5\xbd\x38\xf9\x10\x9e\xc0\x33\xbe\xa7\x52\x55\x77\x9d\x10\x77\x50\x11\x73\xcf\xce\xb7\x8a\xca\xda\xd3\x41\xc5\xd3\x60\xed\xfb\x2a\xf9\x8c\xe7\xc9\x5b\x9c\xcc\x17\x27\x42\x51\xb1\x2f\x44\x21\x8e\xe9\x4e\x90\xd5\x90\x15\x35\x22\x57\xe4\xf3\xae\x8d\x2e\xd7\x5f\xbe\xdc\xec\xda\x28\x1f\xe3\xcf\x01\xc5\xb7\x4b\x45\x79\xa1\xa7\xec\xa9\xc1\x06\x25\xd4\x8a\x48\x4c\x92\x77\xf8\xca\x0b\x98\xfe\x26\x60\x85\xe5\x41\x06\x61\x81\x69\x24\xb4\x1e\x39\x3c\x84\x27\x31\xa1\x3a\x62\xfe\x58\x56\x0d\x65\xab\xd2\x65\x54\xc6\xb3\x2c\x4e\x02\x3a\x3b\x87\xd5\x56\x04\x12\x9e\x56\xd5\x0e\x4a\x6b\x19\xab\x02\x19\x05\x89\x7d\xa9\xb7\xf1\x22\x5c\xfb\xee\x49\x18\x25\x14\x94\x64\x11\x91\x78\x11\xfa\xee\x14\xd9\xaa\x1f\x72\x85\x54\x57\x5d\x8f\x11\xdf\xd4\xd0\x75\x15\x6c\x0c\x94\x63\x1c\xe8\xea\x92\x62\xec\xb9\xef\x7f\xa0\xcf\x62\xf6\xe4\xf3\x3b\x4a\xca\x51\xf0\x06\x16\xe7\xd4\x32\xd5\xa5\x17\x00\x6a\x5f\x2c\x70\xc4\x9f\x1a\xea\x27\x72\x13\x4f\x61\x44\x65\x58\xee\xee\xce\xce\xa9\x1a\xf5\x8b\x80\x4b\xf1\x0c\x10\xc3\xce\x15\x49\xe0\x29\x53\xa8\x28\x54\xac\x0b\xe2\x56\xd0\x97\x53\xb4\xac\xd6\xe0\xb2\x32\xf7\x45\xfc\xe6\x0f\xc5\x99\x2f\xb4\x2b\x4f\x44\xfd\xf4\xc8\x65\x72\x2e\x4f\x1a\x93\xe3\x39\x71\xa4\x43\x86\x80\x81\x81\x02\x32\x3c\xb9\xbb\x3b\xc8\x38\x60\xaa\x59\x96\x27\xf5\x19\xe3\x9b\x67\x19\x27\x84\x1a\x15\x20\x0f\x0f\x13\x38\x51\x94\xca\xaf\x6a\x30\x28\x6b\x8d\xde\xe5\xa0\xf2\x36\x74\xe9\xf9\x89\x78\x79\x52\x3e\x2f\x01\x8a\xc3\x25\xc9\x4b\x82\x9a\x19\xa3\xfd\xce\x66\x33\x42\x27\x0d\x8e\x13\x55\x48\xb2\x34\x5a\x01\x5d\x8a\xa2\xa8\x65\x82\x69\x06\x86\xd7\x8c\x09\xc7\x25\x9c\xd2\x62\xed\xc5\x79\xdc\x11\x0d\x70\x86\x8a\x9f\x4b\x22\xd7\xd2\x7b\x72\xf5\xf3\xe7\x15\x65\xbc\x5e\x66\xd0\xaf\xc1\x11\x69\xc4\x51\x8e\x3d\x8c\x12\x12\x27\x83\x22\x71\x2b\x80\x27\x76\xa2\x2b\x56\x6e\xb7\x19\x9b\x6d\xc1\x5d\x99\xca\x00\x6c\xb4\x0e\xbc\x3f\x06\xca\xb6\xc7\x8d\xfe\xe9\x3e\x1f\x46\x49\x79\x97\xdf\xb7\x74\xc2\x28\xb5\x76\x13\x0a\xa3\x24\xed\x92\xed\x22\xf4\xc9\x4b\x12\xcf\x49\xe0\x7a\xc1\x15\x65\x35\x1c\x74\xca\xbb\x7a\x6d\x4c\xc0\x23\xe0\x76\x90\x26\x06\x1b\x46\x09\x5b\xa9\xe2\xeb\xf9\xcf\xfc\xdd\x4d\x6b\x56\xe8\x24\x77\xf7\xd0\xa6\x3f\x31\xf5\x10\x89\xbd\x2a\x85\xd5\x59\x7c\xc1\x31\xd5\x8d\x20\x36\x7e\xa0\x4c\x49\x69\xce\x92\x96\x39\x63\x6a\xb9\x16\x91\xd8\xfb\x52\x95\xd0\x1a\x92\x63\xef\x4b\x60\xae\x9b\x46\x36\xa0\xf7\x74\x3c\x84\xdd\xc4\x16\x15\x04\x4d\x15\xec\x58\xff\x23\xd4\xe2\x53\x13\x06\x03\xd9\xf5\xdc\xd7\x41\x4c\xa2\xe4\x67\x76\x77\x7d\x03\xde\x9f\xb1\x16\xd1\x3a\x40\x31\x65\xff\x6b\x9f\xfc\x23\x98\x93\x81\x0c\xa9\xf9\xdf\x93\xc0\xa5\x92\x2e\xe8\xe7\x42\x7b\xc2\xf6\xdf\x7f\xd5\x8c\x50\x56\x09\xaa\x79\x8c\x2e\xbc\xc0\xa5\x5c\x44\x2d\xe6\x8b\xe6\x46\x11\x18\x32\x60\x9e\xd0\x0e\xea\x3a\x86\xe5\xa7\x46\x64\x19\x6e\x48\x03\xcc\x82\xbd\xa1\x0e\xea\x86\x37\x5f\x5e\xe6\xaf\x66\xa6\x89\xa6\xb7\x77\x69\x2b\x19\x21\x25\x0b\x2d\x73\x69\x68\x1b\x2f\xf6\x2e\x3c\xdf\x4b\x6e\x34\x97\x24\xa4\x12\x05\xfa\xed\xf8\x42\x3e\x92\x66\x72\x7a\x19\xce\x41\x76\x3f\xcd\xea\x0a\x08\xa6\x1a\x4f\x01\xa5\xac\x88\xf2\x5e\x2f\xb8\xba\xbb\x1b\xe4\xb2\xd9\xbf\x2a\x2f\xe3\xd8\xad\x3c\x67\xa4\x41\xcb\x14\x45\x75\xf9\xeb\x11\x76\xdd\x9f\x37\x24\x48\xde\x78\x71\x42\x02\x12\x0d\xe4\xbc\xe1\x7c\xc1\x0e\xa8\xb1\xd9\xaa\x74\xa8\xe4\x84\xf2\x55\xd0\x64\x63\x61\x7d\xdd\x7b\x38\x3b\xf1\xa0\x64\xa1\x5d\x86\xd1\x85\xe7\xba\x24\xd0\xe2\xa4\x14\xc8\xf8\x0d\xf7\x10\x4a\x0c\x2f\x32\x37\x5e\xc1\x94\x01\x80\x7a\xf1\x2f\xe9\x38\x0f\x0f\x85\x89\x17\x9e\xcb\x2a\x7b\x0d\x7d\x71\xb5\xec\x40\x4f\x45\x8a\x36\x5b\xe0\x96\xa9\x08\x0d\x23\xa9\xed\xd7\xe8\xd3\xed\x6e\x53\xc2\xac\x4d\x84\x2a\x9d\xda\x82\x4e\x2b\xec\x64\xb5\xd6\xbc\x75\xe2\xf9\x90\x21\xc9\xbb\xbc\x61\x2d\xbe\xe9\xa6\x01\x23\xad\xf3\xa1\x74\x61\x04\x31\x41\xa9\xc8\x24\xd9\xaa\xdc\xee\xc6\xfa\x32\xdf\x9c\x06\x53\x97\x94\x70\xf5\x0d\x69\xf8\x26\x4e\xc8\x92\xaf\x78\x66\x7d\x43\xdc\xf2\x35\x50\xd4\x8f\xe1\x45\x2c\x90\x55\xa1\x56\xee\xbf\x1e\xc8\xb4\x9e\xac\xa8\x2c\x04\x3f\x9e\xde\x5e\x85\x49\xf8\x6b\x78\x11\x57\x97\x04\xd0\x22\x7b\x29\xa2\xd5\x37\xe4\xb7\xdc\x4d\x09\x35\xa8\x68\x2a\x17\x5f\x8c\x3e\x86\x17\x79\xb5\x74\x49\xc4\x5d\x15\x55\xc2\x3a\xf3\xdc\xac\x0d\xd8\x15\x3d\x3a\xa2\x0f\xe1\xfb\x70\x9d\x90\x74\xec\xdb\x1d\xa9\x3d\xa2\x8d\xff\x4a\xfb\x16\x4c\x06\xb0\xd2\xbf\xca\xde\xe5\x92\x3e\x30\xfd\x59\x3b\xd8\x35\x65\x25\x24\x8a\x1b\x58\x64\x4f\x5a\xfb\x86\x6c\x33\x63\x79\xea\x6d\x3a\xf6\x7e\x6a\xd1\x1c\x07\x73\xe2\x3f\xf7\xfd\xff\x49\x9b\x95\x1d\x5d\x69\x7f\xe8\x32\x8c\x7e\xc6\xf3\xc5\xa0\xb8\x7f\x65\x1d\x80\x7e\xa9\xc6\x09\x8e\x92\xba\xbe\x38\x99\xd7\xed\x83\x45\x1e\x5f\xe8\xa1\xc1\xbf\xd6\x63\xd7\x6d\x5d\x73\x19\x5d\x2d\x60\xcf\x3d\x66\x46\xba\x32\x2a\x06\xca\xb4\x3a\x22\xb6\xcc\x72\xfe\xaa\x96\x7e\x33\xae\x06\xbb\x98\xac\x28\xdb\x9c\xed\x52\xe1\xfe\x43\xc6\xe1\x6a\xef\xf1\x43\x5e\x90\xd0\x51\xd1\x0d\xe8\xf0\xb0\xf0\x93\x0d\x22\xfe\x1f\x2f\x59\xb0\x11\x00\xdd\x51\x76\xaa\xdc\xdd\x35\x0d\x5f\x3d\xd0\xb7\x7d\xf6\x3e\x3a\xd8\xf8\x08\x5f\x35\x24\x24\x05\x17\x0c\x83\xa8\xf0\x08\x27\x49\x59\x36\xd8\x67\xb8\x81\xe8\xfc\x4d\x48\xe0\x76\xed\x87\xe0\xe2\x18\xe8\x6a\x90\x6f\xff\xa9\x6f\x58\x51\xb1\xeb\x46\x24\x8e\x1b\xcb\x63\x12\x5d\xbe\x0b\xa3\xa4\xb1\x42\xb4\x9a\xb7\x96\x27\xf8\xaa\xdc\xfb\x2d\xff\x76\x0a\xa0\x56\xc8\x9d\x79\x5a\xa8\x88\xbc\x6e\x1e\x17\x45\xf4\x9c\x04\x09\x89\x9a\x47\x46\xae\x28\x41\xb5\x0c\xfc\xb9\xeb\x46\x15\xab\x07\xc7\x88\xac\xca\x74\xb6\x9b\xcc\x1a\xbc\x96\x9a\xb0\x9f\x1c\x0b\xa9\xf9\x82\x1c\x1e\x26\x87\x87\x72\x16\xec\x4a\x54\x79\x2a\x2b\xe9\xaf\x84\xee\x05\x5e\xfc\x86\x60\x97\x54\xdf\xcf\xe5\x0c\x1f\x4a\x11\x1f\x65\x9d\x19\x3b\x17\x3c\xea\x9b\x28\xb3\x59\x36\x38\xfa\xa0\x6a\xe6\xaa\x1e\x6c\x49\x49\xde\x4f\xed\xdc\x3b\xd3\x7d\xe1\x49\x44\x7c\xe8\x25\x5e\x78\xab\x76\x3f\x2f\x34\xf6\x2e\xd6\x09\xa1\xf5\xfc\xd0\xc5\xf1\x02\x65\xd7\xbd\xc3\x40\xca\xa2\xf8\x8a\x2d\x21\x8f\xc4\x47\xf1\x22\x8c\x12\x6d\xbd\xf6\xca\x17\x64\xa8\x81\x8a\xd5\x58\x0d\xd5\x68\x5f\xeb\xcf\x9f\xdd\xae\xb8\xb5\xcd\x50\xa3\x75\x10\xd0\x6f\xa6\x4a\xe7\xcf\x27\x09\x99\x5a\xea\x25\xf6\x7c\xe2\x4e\x6d\xd5\x0f\xe3\x64\x3a\xdc\xaa\x5e\xcd\x92\x05\x7f\x41\xd3\x8a\x05\x70\x5e\xbb\x94\x74\x23\x81\x74\xa9\x48\x48\xa5\x5b\xfa\x1c\xa3\x0b\xe2\x87\xc1\x55\xfc\x21\x54\x40\x1c\x94\x15\x35\x08\x5d\x52\x2d\xa3\x4f\xe5\x0e\x2e\x90\xe0\xf8\xd3\x7f\x45\xe1\x7a\xf5\x5b\x5b\xad\x88\xc4\xe1\x3a\x9a\x13\x58\x95\x31\x4a\xe7\x4e\x01\x33\x0b\x2b\xa1\x1c\x85\xd1\x0e\x71\xdf\xf7\xaa\xfe\x31\xbc\x38\x25\x51\x5c\xb3\x52\x83\x35\xc5\x8e\xac\xa8\xcb\xd0\xf5\x2e\x6f\x5e\x07\x2e\xf9\xdc\x51\xe7\x83\x57\x1d\x3e\x24\x6f\x57\x54\x26\x10\xb4\x77\xc2\xea\xb4\x75\xe2\x7b\x24\x48\x4e\x3a\x58\x13\x89\xbd\x88\xb8\x1d\xb5\x18\x7f\x63\xe3\x29\xb3\x00\xf1\x35\x75\x2b\xdf\x3f\x63\x3b\x9b\x50\xed\xfc\xee\xce\xd0\x75\xe0\x2b\xef\x39\x51\x96\x3c\x7c\x90\x0e\xb9\xdc\xb7\xcc\x29\x58\x56\xd4\x34\xcb\xd4\xf3\x6c\xed\x57\x69\x49\xe4\x0b\xb7\x5e\x00\xd6\xd8\x29\x24\x7b\xce\x5b\xc9\x5b\x45\x2d\x3e\xe9\xdb\x4f\x75\x04\xb4\xaf\x55\x44\xc8\x72\x95\x10\x37\x7f\x1c\xb3\x1e\x17\x38\x7e\x8b\x83\x9b\xb6\xfe\x58\xcb\x9f\x6e\x1a\xba\x14\x0b\x76\x18\x65\x65\x3c\xb4\xd3\x6b\x1c\xbf\x4b\x8b\xca\xb3\x7e\x11\x86\x3e\xc1\x81\xac\xa8\x97\xa1\xef\x87\xd7\xbf\xaf\x7e\xa6\x7c\xa6\xe1\xbd\x24\x2b\xcb\xe8\xe4\x05\x1c\x79\xd8\x91\x4e\x32\x46\x25\x7b\xb1\xb6\x4a\xcd\xf4\x29\xcf\x82\x87\x91\xb7\xc4\xd1\x8d\x9c\xb3\x2f\xfa\x34\xfd\x21\xa7\xac\x8c\x3e\x64\x16\x0f\xc6\xd3\xe8\x6f\xdf\xbb\x5a\x24\xf2\xb6\x96\x12\x69\xb9\x8b\xa3\x4f\x14\x2d\x19\x6b\xa9\x8c\xbe\xc0\x74\x64\x95\x32\x31\x94\x3d\x6b\x73\x03\xa6\xca\xb6\x50\x3b\xf7\x33\x81\x80\x78\xe9\x05\xee\x4f\x37\x03\x88\x26\xe6\xda\x4f\xe1\x6d\x74\x03\x5e\x07\x0b\x82\xfd\x64\x71\xf3\x32\xf2\x36\x35\x7a\x41\x3e\x3e\xe4\xb2\x1a\xcc\x0b\x42\xf9\x29\x2a\x35\x06\xf5\xbd\x6b\xc4\x95\xfe\x28\xe3\x15\xca\x1b\x3b\x2e\x00\x97\x1c\x0f\x74\x35\xcc\x69\x8b\x6a\x50\x53\x16\x62\x90\xe0\xa4\xcc\x6c\x21\xf4\x42\x61\xef\xe6\x56\x47\xe0\xe3\xdc\x25\x00\x8a\x63\x43\x93\xbc\x96\x46\x68\x35\x59\x51\x17\x38\x7e\x5f\x6e\x5b\xc6\x5a\xb9\x73\xee\x23\x94\xd5\x32\x9b\x68\x95\x68\x9a\x7a\x51\xfe\xae\x73\xb1\xbe\xd8\xdb\x16\x06\x77\x92\x84\xab\x15\x6c\x3c\xac\x71\x95\x0b\x0e\x2a\xa3\x28\x33\xc4\xea\x02\x05\x25\xa6\xec\x73\x60\x23\x3e\x10\x66\xaf\xd0\x6f\xd6\x46\x39\x3c\x14\x2a\xb5\x74\xae\x1c\x1e\xca\x6c\xb9\xc9\xa9\xdc\x26\x8e\x0c\xe6\x37\x5c\x35\x2b\x87\x61\x44\x10\x8f\xa5\xff\x25\x8c\x0a\xcc\x4b\xa1\xc5\x2b\x66\xcd\x00\xb3\x2b\x55\x99\xea\x14\xad\x3e\x5d\xf1\xe6\x4c\xb1\x24\x25\x13\xa2\xd7\xa2\x46\xcd\xc3\x20\x5e\xfb\xda\x3c\x0c\x02\x52\x7f\xe1\x4c\xad\x5c\x98\x47\x3e\xf6\x94\x1e\xbf\xa9\xe2\xe5\xb9\x64\x8e\xa3\x13\x1e\xe4\x07\x5c\x5f\x90\x73\x78\x71\x16\x95\xd7\xc7\xcf\xcc\x90\xe5\x92\x95\x1f\xde\x34\xdd\x84\xf1\xf0\x02\x78\x2f\x51\xbb\xb5\xda\x7a\xa9\xe1\xab\xab\x88\x5c\xd5\xdd\xf4\xf5\x10\x62\x79\xcd\xec\xe4\x62\x74\xd8\x5b\x8c\x16\x76\xfa\x7c\x12\x60\x83\xff\x18\x5e\xfc\x12\x46\x6f\x28\x93\x4d\x3a\xdb\xfa\x50\xed\x65\x3e\x8d\x5b\x45\xdd\x30\x39\xf7\x37\x10\x37\x1b\x85\xd0\x88\xfc\xb1\xf6\x22\x12\xbf\x8b\xc2\x65\x08\x02\x42\xe3\xc6\x74\xb2\x5e\x2e\x71\xe4\x91\x18\xfd\x5f\x82\xe7\x0b\xb4\x82\x26\xc4\xad\xe1\x54\x99\xa0\x97\x32\x17\x26\x57\xf0\xa8\xab\x9a\x1e\x93\x90\xc5\x16\x2a\xa5\xd8\x0c\xd1\x2c\xc3\x59\x75\x69\xbc\xc0\xf3\x78\x61\x36\x22\xe6\xe5\xed\x50\xea\x59\xf1\x4b\x12\xcf\x23\x6f\x95\xb4\x29\xef\x5d\x52\x6e\x5c\x95\x6f\xab\x30\xb6\x6c\x95\x57\xb4\xa2\x96\x13\x80\x16\x43\xa3\x9b\x5c\xbf\x69\x17\x43\xe9\xde\xce\xa7\xbb\x32\x7d\x05\x32\xe0\x72\x0f\x7f\x16\xa7\xdb\x01\x9f\x50\x4e\x14\xd5\xe9\x1c\x14\x05\xa1\xb4\xb9\xac\xdc\xdd\x9d\x9d\x2b\xb9\xfc\xc3\xdb\x33\x23\xb7\xf8\x5e\x25\xa7\xc7\x93\xf5\xc5\xd2\x4b\x40\xeb\x29\x21\x13\xfb\x1e\x8e\xb3\x01\xa3\x38\xab\x48\xd5\x05\x1f\xcf\x89\xfb\x02\x07\x19\x2a\x45\x55\xb5\x8a\x6c\x59\x95\x8b\x4d\x72\x4d\x69\xa7\x4e\x4a\x6d\xf2\x5e\x3e\x84\x09\xf6\x77\xe9\x02\x1a\x64\x90\xc0\xde\xbd\x0b\x1c\xac\x01\x95\x8a\x98\xc0\xb6\x43\x07\x85\x16\xb2\x20\x8a\xee\xd0\x47\xa9\x4d\x87\xa6\x10\x37\xea\x08\xa2\x3a\x90\x2e\x16\x35\x5e\xcf\xe7\x24\x8e\x2f\xd7\x7e\x51\x4d\x58\xe1\x75\xcc\xf5\x01\x26\xff\xd7\x68\x08\xcc\xde\x9a\x3e\xcc\x7e\xa5\xaa\x42\x5c\xa7\x24\x70\x36\xd1\x5f\xba\x11\xf6\x47\x25\x65\x7b\x5c\xc0\x29\xec\xb1\x7e\xdb\x1e\x1b\x61\x2f\xd0\xe2\x24\xc2\x09\xb9\xaa\x3d\x52\x57\xbf\xa9\x36\x8b\x28\x0f\x27\x7a\x04\x95\xcd\xcd\x25\xd8\xf5\xbd\x80\x4c\x8b\x8e\xdd\x7c\x1f\xb9\x0c\xa3\x39\x79\xd9\x50\x8b\xdb\x33\xbc\xab\x20\x8c\xc8\x09\x98\x0f\xc1\xf5\x59\xaa\x96\xeb\xad\xe0\x89\x9f\x57\x82\xc4\x90\x9f\x80\xcf\x0a\x5e\x22\xab\x3a\x88\xe1\xbf\x85\xd9\x6b\xeb\xb9\xb3\xd8\xa0\xb7\x48\x24\x68\xc5\x8f\x57\x24\xaa\x17\x73\xf6\x45\x07\xd1\x8e\x42\xce\x2a\xf2\xc2\xc8\x4b\x6e\x1a\x65\x8d\xe4\x66\xd5\x62\x14\x8c\xbc\xab\x2b\x12\x11\xf7\xa7\x4a\x07\xa5\x1d\x7b\x0f\x1b\x3a\xe3\x23\x1f\xfe\x2b\xe7\x80\xd5\x9d\x19\xf8\x2e\xbb\x72\x13\x7b\xfe\x1a\x12\x3a\xb5\xbb\x12\xce\xce\xb7\x4c\x33\x7c\x97\x36\xfd\x85\xb5\xac\xc4\xbf\x53\x4a\x1f\xc8\xc5\x51\x64\x4a\xa7\xea\xc5\x3f\xf9\xe1\xfc\x53\x95\xfc\xcb\xe2\xc6\x05\xab\xd6\x6e\xa7\x7d\x3c\xf6\xcc\x6b\xec\x25\xbf\x07\x89\xe7\xd7\x97\x17\xd6\x66\xd4\xb2\x36\x3f\x86\x17\xda\xca\xc7\x5f\xb7\x32\xdb\x97\x5f\xe3\x0a\xae\x5b\x72\xfb\x5a\x70\x61\xcd\x82\x73\xbd\xcb\xcb\x12\xba\xea\xc8\x17\xef\x8d\x7c\xb9\xc1\x31\x15\x38\xe3\x7a\xbb\x67\x71\xb2\xc2\x8e\xc9\x4a\xc5\xd9\xc7\xc6\x49\x7b\x69\x8d\x0f\xc9\x4e\x5b\x96\xed\x3d\x14\x88\x5c\x6b\x80\x6b\x08\x04\x21\x33\xec\x92\xef\xc4\x06\x8c\x93\x46\x89\x17\x5c\xed\xd0\x43\xb1\x09\xd5\x2c\x99\x78\xb7\x43\x17\x85\x16\x94\xa1\x70\xcb\xf0\x0e\x5d\x14\x9b\x64\x9c\x7e\x87\x1e\xc4\x06\xb2\x02\x16\xe8\x1d\x5a\xe7\xd5\x53\xdd\x2d\x7e\xe3\xc5\xe5\xe0\x78\x34\x0f\x7d\x1f\x0e\x71\x16\xf0\x5e\x41\x62\x19\x25\x15\xf8\x4a\xc3\x2d\xbd\x3f\xa1\x2a\x07\x1f\x7c\x69\x00\xf1\x7a\xc9\xd7\x33\x8c\x8f\xee\xde\xcc\x62\xff\x62\xe1\xf9\x6e\x44\x9a\xdd\x63\x7c\x44\x9d\xf5\xa8\xd4\xd5\x59\x69\xce\x2b\xb4\xe2\xa8\x34\xb2\x1c\x2b\xc2\x13\xf1\x6d\x29\xe4\xd9\xdb\xeb\x60\x17\xdf\xbc\xe3\xd6\xc3\x15\xd4\x7d\x72\xb3\x2a\xe7\xd9\x17\xd7\x89\x77\xe3\x3a\x31\x9c\x37\x69\x76\x28\xe5\x4a\x79\xc3\x1e\x1f\xb4\x9b\x9b\xea\xb6\xb3\x6d\x67\xc2\xab\x1c\xf9\x7f\xc6\x16\x52\xbf\xe5\x67\x67\x6a\xc3\xef\x67\x6a\x1f\xd9\x99\xda\x68\x76\x96\x9e\x84\xa7\x42\x32\x4e\xe6\x0b\xca\x5b\x41\xef\x94\xcf\xd5\x3a\xe3\x6d\x47\xf4\x4e\x6b\x38\xc3\xca\xc7\x5e\xf0\xba\xe2\x85\xcd\x35\x9b\x36\xb5\xa7\x53\x69\xc2\xbe\xff\x3c\xf9\x47\x30\x6f\x5b\x94\xfb\x52\x8b\xfa\x48\xf9\x7d\xd4\x89\x15\x89\xbc\xd0\xf5\xe6\xcd\x43\x5e\xe1\x08\x2f\x49\x42\x22\xef\x4b\x9b\xff\xda\xf5\xe2\x15\xc4\xd1\xb5\xd4\x49\x5f\xf6\x92\x24\xd8\xf3\xcb\x68\x28\xbd\xaa\xa9\xd2\x02\xc7\x0d\xdb\x05\xdd\x7f\xd8\x0b\x64\x55\x2e\xf4\x45\xb7\x9d\x6c\x7c\x8d\x0e\xc6\xb4\x35\x77\x24\x16\x7a\x48\xbd\x75\x79\x37\x5b\x18\x2f\x09\xba\x4d\xfe\xe9\x06\x26\x6f\xf3\x6d\xb4\x6c\x21\x2e\x35\x61\x3d\x83\x9b\x3c\xf2\x96\x4b\xe2\x42\xfc\x4d\xc5\x65\xc9\xfc\xe3\xbc\x72\xab\xdf\x94\xd5\xc9\x9d\x8a\x2c\x82\x13\x02\x25\x23\x02\x0a\xc8\xe0\x08\xfd\x70\xfc\xff\x8e\x8e\x54\x59\xe6\x61\x9c\xb4\x74\xcb\x66\xd6\xc7\x37\x94\x61\x54\x3d\x0e\x37\x2b\x18\x41\x23\xde\x3b\x50\x7d\x9c\x37\x9d\x56\x91\x7e\x5c\xea\x8d\x55\xa1\xef\xa4\x88\x21\xcb\x95\x4f\xb5\xd8\x7b\x8d\x2b\x45\x48\xb1\x06\x3c\x69\x04\x40\xf0\xdb\xd3\xfe\x9f\x35\x21\x39\xeb\x53\xc9\xc1\xd3\x60\xe2\x39\x04\x85\xca\x85\xd7\x29\x25\x90\x0b\xcd\xee\x89\xb4\x08\x79\xc1\xdc\x5f\xbb\x24\x1e\x10\x3e\xef\xc0\xe7\x32\xc6\xbb\x15\xa3\x26\xab\x0b\x2e\x0f\xa6\xe8\x52\x6b\x7a\xea\xad\x5c\xf9\xa9\x5d\x37\x82\x66\xe4\xc5\xef\xa8\x88\x8d\xfd\x06\xdb\x8a\x10\x12\x92\x86\x12\xe8\xc2\x68\x5f\x84\xeb\xa0\x22\xa9\xd2\xed\xae\xa6\x5d\x9d\xe7\x2c\xb3\xf1\xd4\xa8\x77\xf5\xee\x10\x3e\xf4\x1a\xa7\x59\x59\xcf\x6b\x6f\xdf\xae\xe1\xb5\xb7\xed\xd0\xed\xda\x1b\x77\x68\x75\xed\x8d\xdb\xf5\xb9\xf6\xb6\xcd\x9a\x5c\x7b\xbb\xbe\x3a\x54\x79\x82\xf2\x9a\x35\xea\x54\x7b\xdb\xb2\x8a\x53\x55\xb3\x7a\xe1\x58\x68\x5f\x50\xbf\xda\x1b\xef\xa2\x3b\xd5\xc1\x2c\xb4\xdd\x74\xc4\x56\xa6\x9e\xc3\x9a\x8d\x4a\xcb\xbd\x8a\xfd\x9d\x9e\x82\xcf\xbc\x5c\x51\x74\xa7\x2b\x6a\x6e\xce\xaf\x54\x14\x8a\xb8\xa4\x07\x47\xa3\x6a\x42\x5b\xf3\xe3\x55\xaa\xdb\x15\xc5\x95\x3a\xc9\xd3\xe0\xab\xa6\x3d\x4b\x68\xb0\xc4\xab\x9f\x6e\x06\x72\x16\xae\x85\xd8\xcd\x85\x83\xda\x04\x1c\x44\xcc\x98\x40\xd4\x70\x90\x28\x8a\x4a\xb6\xea\xd9\xb9\x92\xe5\x19\xe8\x0e\x3a\x13\xb0\xc9\xc7\x5b\x6e\xd2\x90\xd4\x84\x45\xa5\x0b\xad\xf9\xe0\xcb\xcd\xf7\x01\xc5\x02\xa7\xf6\x70\x21\x8c\xb1\x0c\x89\x30\x8b\x1c\x92\xcc\x8a\xde\x38\x7e\xb1\x4d\xef\x00\x84\xbc\x5b\x16\x64\xd0\xc7\xdc\x8f\x03\x77\xc0\x63\x34\x78\x95\x9f\x05\xf7\x92\x5c\x07\x20\x65\x58\xd0\x60\x27\x98\x05\xe1\x9c\xaa\xb7\x42\xb9\x17\xbf\x6b\xcf\x9c\x20\x54\xe6\x32\xc8\x01\xb9\xbb\xcb\x80\x4e\x5b\x2b\xc7\xc1\xda\xf7\xa7\x24\x4d\xaa\x20\x8b\xaf\x54\x58\x6d\x1f\xc7\x09\xd3\xe4\x64\xc8\x0b\x53\x0f\xf8\xb7\x03\x87\xa7\x6d\xa9\xc2\x92\xaa\xb7\x14\x24\x7e\x70\x90\xf0\xc4\x21\x14\xb4\xba\xa9\x15\x52\x8c\x1c\x27\x7d\x91\x30\x65\xca\x29\x48\x29\x2b\x30\x5e\xbc\x14\x18\x57\x83\x20\xc2\x84\xcd\x2c\x98\x4b\x2d\xc7\xf8\x54\x19\x94\x18\xc6\x95\x4b\xfd\x62\x20\x11\x95\xca\xf8\x5e\x21\x74\x54\xc9\xc4\x51\x8e\x26\x52\x2b\x8f\x50\x16\x12\xd3\x98\x89\xa3\xd4\xe2\x19\xa4\x70\xe1\x33\x90\xb6\x15\x2e\x0b\x57\xd4\x4b\x92\xcc\x17\xef\xf1\xf5\x4b\xaa\xfd\x97\x8e\x67\x75\x79\xe8\xc1\x7a\x85\xaa\x3d\xa4\x61\x88\xe0\x9e\x7e\x97\xaa\xa5\xbb\x76\x2b\x36\x4e\x7b\xdc\x2d\x3e\x92\x75\x24\x06\x46\xae\x7c\xbc\x33\x7c\xb4\x4d\x16\x58\xb9\xde\xb9\x79\xb4\xce\x5a\xaf\x57\x2e\xde\x25\x02\x82\x75\xc0\x5a\x65\x10\x60\x4a\x5f\xe5\xd9\xe7\x41\xc6\x6a\xc0\xc8\xe0\x5f\x01\x11\xa6\xe3\x59\x9e\xba\xe7\xd7\x93\x7f\xfc\x86\xa0\x8b\x41\xa0\x3c\x13\x4e\xcd\x16\x1a\xd0\x5a\xb2\x8a\xf9\x59\x43\x2f\xfe\x8d\x5c\xe7\xa9\xbb\x5e\xbb\x3f\xdd\xbc\xc3\x37\x7e\x88\xdd\x01\x56\x54\xc2\x8f\x64\xbe\x3f\x39\x7d\x87\x78\x42\xec\x41\x20\xa4\xee\x49\xf3\x3a\x35\x61\x17\x06\x53\x33\x6a\x05\x25\x0b\x12\x14\xf6\x84\xa4\x79\xb0\x44\x51\x93\xf2\xe8\x08\xdd\x2b\x32\x52\x57\x8b\xa5\x85\xd8\xd8\x94\x0b\x65\x47\xb4\xef\xee\xf2\x34\xc7\x01\x2f\x10\xd0\xc5\x8d\x4f\xb2\x1a\x88\x47\xbe\xff\xe5\xb9\x3f\x41\x4e\xc9\x13\xbc\x81\x35\x0a\xd8\x66\x76\x1e\xef\xf2\x66\x70\x16\xa8\xc9\xb9\xa2\xa4\x91\xa6\x39\x56\x56\x84\x7c\x7a\x4f\xe6\x61\xe4\x8a\xf2\x8e\x9a\x28\xcf\xb0\x98\x32\x4d\x28\xc2\x69\x6e\x85\xd7\x6e\xe5\xd0\x6a\xcc\x8f\x96\x57\x5e\xcf\x14\x4c\x36\x74\xe1\x48\x7b\xd6\x2d\x58\x09\x64\x45\x80\xfd\x5c\x61\xc7\x5a\xef\x11\x73\xd4\xff\x5c\x02\x95\x84\xab\xc7\x0d\xea\x63\x88\xf8\xdc\x35\x1f\xcb\x99\x87\x2e\x71\xd3\x29\xae\xd8\x94\xd8\xf3\x3a\xd1\x84\xa5\x8d\x41\x38\x09\x2f\x06\x5c\x11\x87\xba\x77\x77\x32\x6c\xa7\x45\x9a\x6b\x1c\x40\x95\x34\x9b\xaa\xf6\x0e\x61\x12\x66\xfd\x11\x1f\x4f\x0d\xaa\x46\x2d\xc8\x37\xf8\x8f\xc0\xbf\xe1\x91\x2a\x0b\x1c\x2f\xda\x0e\x54\x75\x19\x4a\x7b\x47\x11\x05\x24\xb9\x0e\xa3\xda\xdb\x3d\x77\x8d\xf6\xba\xbf\xb7\x62\x7f\xae\xa4\xba\xb8\xb0\x34\x14\x3d\xa9\x35\x28\x7b\x6e\xd4\x58\xe8\xad\x1a\x8b\x96\xfc\x6c\x61\x7d\xe1\x85\x97\x54\x62\xc7\x72\xdb\x33\xc5\x32\x93\x8d\x30\xb3\x25\xf5\x77\x30\x05\xa1\x4b\x34\x31\x78\x60\x1f\xd3\x76\xe9\x57\xee\x27\xdf\xef\xac\xe0\x6c\x56\xd6\x01\x7d\x59\x42\x02\x35\xac\x99\x2b\x0a\xdd\xf3\x0c\xb8\x12\x02\x15\x35\x87\xfb\x24\x89\xd6\xf3\x64\x1d\xd5\x24\x69\x2b\xf6\xd1\x24\xfb\x15\x6b\x81\xe4\x97\xee\x6c\x1c\xe8\x4f\xe4\x26\x1e\x10\x96\x9a\x6d\x50\xd5\x11\x81\x45\xa4\x12\xc9\x59\x70\x3e\x23\x67\xc1\xb9\x9a\x6c\xd5\xdb\x6d\x26\x7f\xc7\x83\x44\xbd\x0d\x37\x24\xba\x8e\xbc\x84\x61\x68\x0b\x3a\xef\xa7\x20\xbc\x0e\xb2\xc4\x75\x25\x3f\x19\x53\x5c\x6b\x40\x55\xaa\x79\x12\x9b\xaa\x56\x0e\xa2\xb4\xc5\xbf\x00\x4d\x31\x9d\xfe\xeb\x4e\xa1\xec\x16\xc2\xf4\x6d\x3d\xca\xf9\x59\xe0\x74\x30\xff\xb8\x0e\x48\x54\x24\xab\x62\x05\x7e\x56\x58\x5c\x6e\x05\x1a\x5c\xd4\xe4\x14\x4c\x7d\x13\x79\xb5\xda\xf9\x69\x3d\x17\xd7\xd5\x36\xa3\x2f\x31\x0b\x24\x37\xca\xa0\xec\x88\x7d\xe6\xca\x80\x4c\x2b\xad\xee\x41\x96\x89\xa4\xd9\x83\x55\x32\x6f\x1f\x18\xdb\x2c\xc8\x7b\xf7\x26\x7d\xbc\x7c\x4c\x8a\x6f\xf1\xe1\xb3\xae\xea\xc5\x2c\x3e\xb2\x46\x9b\x0a\x2f\x3f\xce\x8e\x42\x4c\xd3\x73\x66\xdb\x1d\xf9\x30\x3b\x06\xf8\xef\xb8\x64\x96\x24\x8e\xf1\x55\x33\x45\xc5\xeb\x0b\x9e\x83\xa3\x85\xe6\x6a\xdd\x9c\x49\xf3\xa4\x33\x0a\x6f\xb0\xf7\xf2\xfe\xb8\x35\x53\xde\x6d\x26\x1f\x5d\xd8\x5f\xcb\x99\x32\x6f\xa5\xad\x70\x39\x2d\xd5\xb7\x3a\x41\xd6\xce\x46\xba\x53\x90\x50\x64\xb3\x55\xdb\x7c\x90\xe9\x65\x84\x3d\x50\x7c\x9a\xa3\x09\xb2\xd3\xac\x3f\xfb\xde\x55\x9a\x33\xea\xc1\x43\xb2\xdb\x22\xcb\xfb\xc4\x1c\x2c\x92\x64\x05\x19\x56\x1a\xc3\x30\xfc\x38\xcd\x18\xde\x08\x7b\x71\xb3\x8a\xdb\x37\xab\x25\x49\x70\x8f\x6a\xfd\xf2\x58\x50\x15\x3a\xda\xb0\xb1\x35\x56\x82\x33\x24\x27\xfc\x08\x49\xa5\x66\xe9\x84\x09\x9d\x6d\x36\x83\x7e\xd3\xc9\x88\xda\xa9\xa6\x6b\x8c\x37\x13\x32\xf6\x54\xf6\x01\x8e\xee\xba\xd3\x62\x85\xf3\x44\x6c\x57\xe0\xb5\x95\x34\x93\xcd\x96\x09\xea\x7b\xeb\x96\x76\xb6\x6d\xf6\xee\xb6\x76\x0c\xe6\x5f\x7e\x4e\x31\xad\xb6\xed\xed\x84\x12\x33\x53\x50\x66\xb7\xcd\x9d\x43\xb5\x8e\x6d\x51\x1e\x54\x54\xd2\x72\x24\x5e\xd8\x05\x73\x29\xa2\xc9\x93\x93\x26\x0d\xe0\x5e\x27\x5e\xbb\x71\x9b\x4e\xab\xe7\xc6\xee\xac\x49\x2f\xc7\x51\x69\x38\xfc\xb5\x5d\xc2\x41\xb9\x95\x60\x6a\x4f\x5b\x1e\x18\x35\xef\x07\x63\x58\x65\x0c\x15\x57\x15\x3f\xc5\x08\x32\x62\xc3\x08\x2a\x6d\xb8\xdf\x8a\xd9\x9b\xb6\xcc\x3b\x1d\xc6\x5e\x42\x78\x42\x95\x26\x33\x93\x9c\x2f\xae\xc6\x97\xe5\x55\x8e\x05\x43\xd2\x54\xf6\x82\x6c\x81\x6d\xfb\x5b\x5f\x6a\x02\xfa\x9f\xd6\x19\xb2\x74\x7b\xab\xb7\x14\x84\xd8\x27\xf1\x9c\xb8\x99\x0f\xad\x49\xc1\xa7\xcb\x22\xe6\x6e\x24\xc6\x2f\x5b\xaa\x7d\x5e\xe0\x75\xdc\x59\xed\xf9\x06\x7b\x7e\x1a\xf8\x5a\x50\x8a\xe1\xd2\xaa\x5f\x80\x4c\x2b\x9d\xd0\x41\x07\x94\xdd\x7a\x41\xd2\x5c\x85\x76\xd0\x34\x0c\x45\x75\xbd\x25\x09\x62\x2f\x0c\x9a\xab\xfc\xb1\x0e\x13\xdc\x5c\x0c\x17\xc7\x57\xb4\xf9\xde\x16\xaa\x55\xe8\x7b\xf5\x37\xfc\x3d\x2e\x83\xde\x57\x58\xeb\xd4\x68\xed\x93\x46\x11\xa5\x37\xa6\x2a\x19\x4a\xbe\xa1\x6a\xf2\x15\xe7\x01\x1f\xf2\x70\x12\x2e\xa5\x33\xaa\x68\x32\xd5\x1c\x4b\x2d\x71\xb2\x69\xe5\xdf\x42\x97\xb4\x85\xd3\xb6\xe8\x30\xc4\xc7\xcd\xa2\x6a\x75\x30\x27\xb9\xcc\x19\x0b\x2d\xea\x46\x5d\x1a\x5f\x47\x4b\xa1\xca\x0e\x47\xa5\x72\x51\xef\x2f\x6b\x2f\x9e\xaf\xd6\x8d\xac\x78\x49\x96\x21\x0b\xe0\xab\x2d\x76\xbd\xf8\x53\x63\xa1\x17\xae\x5a\x76\x0c\x66\x85\x6f\x38\x28\x97\xd9\xe8\xfb\x84\x19\xf6\x56\x7c\xb3\xf8\xf3\xbf\xea\x4c\xb6\xee\xe6\x14\xe0\x37\xf8\x82\xf8\x8d\x35\xd2\x44\x9d\xe5\xfd\x34\x20\xf3\xa4\x62\x28\x2c\x25\xf3\xd9\x61\x16\x78\x4a\x9c\x55\x14\x7e\xbe\xd1\xd6\xab\x38\x89\x08\x5e\xee\x83\x73\x7f\xcb\x0d\xd0\x85\x44\xcc\xc0\x88\x5a\x33\x26\x52\x6e\xe5\xff\xe4\x05\x6e\x5b\x8a\xd4\xde\xfb\x5d\x01\x77\x7f\x8d\x04\x4a\x29\x01\x70\x61\xa0\xcc\x09\x1a\xa8\x65\x77\x94\x75\x2c\xfe\xa7\x85\x34\xc0\xc6\xb4\x29\xd9\x14\xa3\x8e\xfe\x28\x82\xb8\xee\xbf\xb8\x69\x17\x32\xdf\x35\x48\x44\xad\x87\x81\x62\xef\x2a\xc0\x95\xd3\xf1\xd9\x3e\x46\x3e\x7b\xc9\x0b\x6e\x36\xae\x4f\xb0\xd0\x2c\x1a\xd1\xa2\xdf\x70\x10\x56\xe4\x60\x61\xfb\x6d\xb5\x3a\xf7\xe6\xb9\xed\x19\x8d\xfe\xb2\x93\xee\x96\x02\xf3\x2a\x33\xdf\x9e\x18\x7b\x9d\x84\xef\xc9\x86\x54\xf9\xb6\x70\xd0\x89\x67\xb7\x6a\xae\xd1\x95\xcc\x0b\x5d\x41\xfe\x94\x62\x4a\x23\x55\x2f\xa4\x57\xba\x29\x25\x3e\xed\x9f\x49\x9b\xe7\x0f\x28\x66\x6a\xaa\xf7\x27\x34\xbc\x2f\x3f\x1e\x51\x93\xab\xa9\xe1\x94\x71\x31\x1b\x53\xfd\x71\xb4\x52\xca\xa5\x7a\xfb\x71\x39\x27\x52\x6d\xad\x9a\xdc\x49\x6d\x69\xd5\xde\x45\xe1\x55\x44\xe2\xb8\x9a\xd3\xa4\x26\xe5\x45\xcf\x45\xf5\x97\x5f\x49\xd9\xf1\xe4\xdd\x96\x50\x39\xe7\x41\xed\xbc\x54\x13\x1b\xb4\x1d\x72\xef\xa8\x55\xcd\x4f\x50\x5b\xad\x9c\x82\xa0\xb6\x52\x31\xcf\x40\xd3\x49\xd0\x27\x93\x4e\xe0\x1e\x84\xfd\x68\xec\x29\x3d\xb2\x82\xec\xcf\xa8\x52\x77\xd0\xe0\xee\xee\xec\x7c\xab\xb6\xe6\x0b\xd9\x6d\x69\xcc\xe1\xd4\x5a\xa3\xd4\x80\xe3\x26\xdd\x98\x16\xb1\x6b\x19\xa8\x3c\xdb\x50\x29\x0f\x51\x6f\x3b\x15\x53\x3c\x10\xd3\x7a\x1e\xa6\x74\x14\x46\x16\xce\x82\x88\x4e\x99\xf2\x5b\x3e\x86\x17\xa8\x7a\xa0\x25\x3b\x60\x53\xf7\xca\xb0\x94\xd9\xb0\x70\xba\x48\x11\xfc\x13\xa5\xec\xd1\x79\xf8\xc7\x36\x77\xdd\xbd\x78\xf7\x7b\xd9\x1e\x04\xd0\xc0\xad\xb3\x59\x15\xc1\xd7\xf7\x36\x33\x78\xb4\xb5\x61\xb5\x84\x66\x2f\xb9\x21\xa4\xad\x11\xad\x23\x34\xf9\x79\xb5\x20\x4b\x12\x61\x3f\x6d\xdb\xbc\x4f\xb6\x9c\x63\x61\x38\x6a\x38\xce\x81\x4a\xd9\xac\x7a\x24\xd4\xee\xd7\x53\x77\xb2\xed\x74\x22\x18\xf7\xfb\x47\x74\xd2\x76\xb6\x31\x3f\xbc\x76\x2b\x72\xcb\xd2\xce\xb0\xed\xb8\x02\xa3\xf6\x50\xe5\x0f\xd5\x0a\xe5\x93\x93\xc2\x41\xd5\x3a\xdc\xd6\x9c\x18\xad\x3f\x7f\x55\x26\xdc\xba\xd3\xa1\x4a\x0b\xae\x7a\x27\x3c\x11\x52\x79\xff\x65\x05\x8e\x4e\x33\x76\x2b\x73\xcd\xb4\xbd\xa6\xd2\x28\x21\xee\xf3\x0a\xfb\xe5\x7a\xd9\xa5\x17\x78\xf1\xa2\xad\x02\x4b\x79\xd9\x28\xf3\x7b\xf1\x73\xb8\x23\xae\xbc\x25\x07\x21\x9d\xce\xbc\xfb\xb6\x34\xb6\x70\x3e\x2d\xed\x48\x56\x05\xff\xb6\x70\xce\x87\xb6\x7f\xc1\x2c\x70\xef\xc0\x24\x50\xc7\xe5\xd1\x27\x2f\xa8\xf3\x3a\x0f\x8a\x89\xe9\x59\x35\x05\x42\xda\xc5\x3b\x95\x64\x6e\xe2\x63\x66\x85\x29\xac\x17\x5a\xbf\x31\x10\x30\x1f\x68\x9e\xef\x9e\x6d\x21\x1d\xfc\xa7\xb9\x65\x7f\x7e\xd3\x1a\x32\x05\x60\x66\x7e\x7e\xf6\xa5\xc1\xa7\x2c\x56\x2d\xc0\x04\x39\xfa\xdd\xb6\x83\x98\x83\x5a\x88\xc4\x76\x95\x24\xbd\x39\x1c\xf9\x74\xa4\xe3\xe4\xdb\x59\x1e\xaf\x82\x9b\x42\x51\xf2\xc0\x85\x7a\xa9\x21\x0b\x5c\x80\xe5\xd1\x7c\x64\xa3\xce\x7b\xbe\xc3\x89\x8d\x94\xbe\xbb\x6e\x92\x10\x8e\x72\x90\xd2\x49\x8e\x4a\x86\xfa\xa6\x43\xae\x85\x64\xf4\x9c\x08\x54\x3f\xde\x21\xb5\xbd\x78\x2f\x02\xf2\xe3\x2c\xab\x3d\x20\xe9\xbe\xfd\xd0\xbf\xf5\xf9\xf1\xbb\xe4\xee\xbf\x54\x00\x01\x5f\x8c\x4d\xc5\x94\xe1\x34\x16\x56\x05\xb2\x5a\x3f\x52\x49\xd0\x6b\xad\xf3\xb2\xcd\x5b\xd5\x28\x96\xd5\xd5\xee\x6f\x5a\x0d\x3f\x91\x27\x9c\x95\x2c\x26\xf3\x88\x34\xdf\xec\xd6\xba\x07\x5f\xf9\xe1\x45\xd5\x00\x94\x6f\x92\x9d\xa9\x49\xdb\x73\x34\x85\xbe\x37\xf7\x48\x25\x0c\x8c\xc7\x4e\xf0\x0a\x37\x2c\x4a\xa9\x1c\x72\x8b\x21\xb7\x75\xd8\xb4\x4d\x78\x65\x07\x71\xdc\x70\x51\x9a\x77\xe9\x91\x28\x3e\x72\x3d\x57\xf3\xe0\x46\xf6\xe2\x4c\xff\x5f\x98\xc5\xa3\x08\xae\x5a\xd7\xf2\xfa\xb5\x2d\xbf\xfa\x4a\xcc\xc6\x06\x1c\x0a\x59\xbd\x25\xc1\x7a\xc9\x72\x7c\x4d\x0f\x74\xf5\x8a\xd4\x32\xd8\x14\x6a\xf0\xac\xd6\x12\xb6\x30\x78\x16\xb7\x7e\x1f\xb0\x79\xcb\xa7\x07\xf6\xb5\xe7\xfb\x9a\xcb\xee\xa2\xdf\x15\xf0\x42\xdb\xa7\x02\x3a\x3f\xb6\x5b\x7b\x54\x26\x2b\x7b\xa8\x1b\x5d\xb3\xc1\x75\x5d\xd5\x09\xb7\x7e\x46\x0d\xd7\xd2\xce\xc3\xe0\xd2\xbb\x3a\x22\xc1\xc6\x8b\xc2\xa0\x66\x93\xdc\xf7\x15\xb4\x70\x49\x73\x94\xf1\xd1\x4c\x97\xc9\x59\x6c\xfa\xe8\xc3\xcd\x8a\xa8\x51\x18\x26\xbf\xbf\x7f\x23\x14\xf3\x27\x5b\xe5\x59\x80\x96\x78\x35\x28\x1f\xe3\x8d\x84\x5b\xa0\xd5\x86\xc2\x68\x0d\xb9\x63\x8a\xd5\x65\xf5\x76\x85\x93\xc5\x54\x3e\x9a\x7e\x0c\x2f\xfe\x05\xa2\xe7\xb6\xa9\x87\x42\xc6\xa7\xb4\x19\x6b\x52\xec\xd8\xcd\x4e\xb5\x96\xde\x28\x64\x90\x29\xd6\x17\x33\xc1\x88\x25\xc5\xd4\x2f\x62\x49\xc1\x10\x04\xa4\x2a\x96\xb2\xab\x92\x9a\x91\xc1\xca\x45\x30\x42\x97\xfc\xcb\x63\x67\x60\x0a\x3d\x81\x1c\x10\x35\xf7\xc4\xca\x85\x9e\xe0\x7a\xd8\xda\xae\x0a\x41\xc9\x0d\xdd\x15\xee\x98\xcb\xba\xcc\x1e\x42\xbf\x6d\xf3\x53\x99\x99\xa6\xca\x7e\x78\x55\x46\xe9\x65\xac\x51\x42\xcb\xbb\xb8\x8c\xcb\x33\x7b\x19\x8b\xa5\x47\xff\x49\xbf\x02\xa0\x35\x78\x83\x0b\xe1\x9b\x21\x05\x61\x88\x19\x5c\x64\x97\x6c\x88\x1f\xae\x60\x29\xce\x66\xa2\xe8\x91\xaf\x51\x7e\xba\x3d\x1d\x48\x44\x48\x9c\xdc\x40\x04\xbc\xf8\x3c\x08\x13\xed\x32\x5c\x53\x15\x37\x1d\xe7\x7f\xb2\x18\x5e\x2e\xb3\x76\x89\x6a\xd0\x8f\x78\xe3\x69\xf3\xed\xa7\xcd\x16\xea\x6b\x9e\xd1\xb2\xe3\xd2\xec\x72\x0f\x41\x98\x78\x97\x37\xe9\xc5\x19\xe5\x52\x08\x54\x25\xf1\xd1\x1f\x6b\x12\xdd\x68\x90\xed\xad\xa6\x8f\x8b\x88\x60\x77\x1e\xad\x97\x17\x1a\x3c\x68\xcc\x99\x9d\xa5\x47\x8d\xbe\xa7\x47\x7d\x64\xe9\x51\x7d\x71\xdf\x48\xb7\x8d\x4c\x66\x55\x6f\x1b\x2e\x0f\x87\x9d\x2b\x39\x3c\x24\x2c\xad\x03\xa7\x33\x6e\x4a\x80\x5f\x68\x45\xa2\xcb\x30\x5a\x0e\x12\x45\xd9\xaa\x39\xa9\xc4\x35\x19\x2e\xc0\x7e\xfd\xc7\xea\xa7\xb5\xe7\xbb\x24\x52\xc0\xb5\x91\xe5\xbc\x98\x92\xdc\xb2\xd9\x92\x13\x22\x3b\x0b\x7c\x76\xeb\x43\xb0\x99\xfc\x2b\x6c\x51\x38\xba\x8a\xa7\x67\xb0\x5f\x21\x8f\x25\x0f\x4a\xce\xb7\xe7\xe9\xd9\xcd\x68\x00\x67\x8c\x3e\x86\x17\x2f\x60\x74\xca\x20\x7f\x9d\xac\x28\x8a\x9a\x76\x47\x4a\x37\x29\x82\xed\x5f\x29\x74\x9f\xda\x5e\xd3\x8d\x4b\x18\x78\x9a\x99\x43\x51\x1b\xfa\x49\xce\xb7\x6a\xf1\x4d\x71\x1a\x32\x9a\xbe\x43\x74\x67\x88\x7c\x82\x9c\x6f\xcf\x95\x2d\x1c\x93\xf7\x9b\x0c\x17\x6d\x17\xb3\x57\x13\x9a\x14\x93\x5c\xb1\x84\x28\xc5\x4a\x79\x1d\xca\xf0\x10\xcb\xaa\x02\x1a\x51\xa6\xed\x40\x62\x18\x65\xab\x02\x35\x30\x7d\x16\xbe\xb2\x8c\x22\xa5\x1b\x04\xd4\x86\x2b\xf2\x73\x6f\x26\xe3\x73\x3d\x4e\x48\xb4\x72\xd5\x23\x4e\x02\x39\x6f\x15\x79\xd6\xbe\x84\xb1\xa4\x6e\x51\xdd\x36\x5e\xb6\x0f\x8b\xc9\xbb\x1c\x24\x6c\x3d\x04\xb3\x1a\x34\xf3\x04\x2f\xfc\x96\x57\xba\xd2\x50\xed\x55\xb2\xca\xf6\x59\x43\x09\x9b\xc1\x40\x0d\xb2\xe4\x33\x9d\x94\xc1\x93\xb9\x34\x8e\x19\x18\x00\x4c\xcc\x6f\xe4\x73\x92\x5f\x77\x3f\x28\xd9\x9e\x92\xdd\xe7\xa9\x6c\x92\xfa\x86\xd3\x94\x84\x11\x69\xba\x1e\xbb\x89\x8f\xa5\xd3\x74\x5c\x62\x17\x41\x81\x4b\xd4\xaf\x60\xc4\x60\x25\x65\xcb\x2d\x65\x16\xe7\xdb\xf3\xe9\xd9\x79\x65\x71\x0b\xb9\x81\xe8\x1b\xd2\xfc\x4a\x50\xab\x74\x6f\x66\x81\x57\x28\xcf\xbc\xcb\x41\xa0\xdc\xa6\x46\x35\xc6\x68\xe0\xf2\x56\xb9\x62\x15\x86\xca\x07\x98\xd5\x8e\x61\x03\x66\x58\xe1\xbb\xd6\x07\x1c\x7f\x92\xf2\x43\xf0\xaa\x2c\x05\x61\x22\x81\x44\x24\x5d\x86\x91\x94\xbf\x57\xca\x2f\xa0\xe7\xef\xf4\x5c\xca\x5c\x9f\xc5\x68\x1e\xba\x64\x26\xdb\xba\xcd\xf7\x8e\x79\x46\x6b\x0c\x8e\xd5\xca\xf7\xf2\xbb\x44\x69\x53\x2e\xb2\xc4\x19\x19\xe3\xed\x5e\xa8\xed\x28\x93\x49\x6b\x05\xaf\x5e\x1d\x3c\xbc\x36\x9a\xdf\xe2\xce\x93\x13\x43\x10\xb0\xdc\x31\xac\x02\x7e\x9a\xb5\xd8\x4e\xf0\xda\x64\xd2\x82\x44\x59\xc6\x43\x26\x01\x16\x53\x3e\x76\xc9\x80\xd9\x26\x53\x12\xe3\x38\xc3\x3c\x78\x28\x51\x8e\xbf\x98\x23\xff\xec\x5c\xc5\xb3\x03\x5d\x8d\x67\x07\x86\x1a\xa6\x13\x93\x44\x37\x99\x88\x1a\xa9\xfe\x8c\x9c\x95\x06\x73\x3e\x50\x7e\x3c\x18\xe0\xd9\x20\x9a\xf9\x70\x67\xf0\x40\x51\x90\x1b\x06\x44\x39\x3c\x1c\x04\x90\xec\x72\x10\x21\x98\x7b\x45\x3d\x48\xee\xee\x02\x2e\xcc\x1e\xcc\x66\x89\xf2\x23\x7d\xa5\xf2\x23\x4f\x58\xe6\x29\xb7\x31\x1d\x42\x38\xf3\xb6\x97\x5e\x80\x7d\xff\xe6\x96\x0e\x00\xdf\xdd\xb1\x03\xab\x3e\x62\x43\xbe\xbb\x4b\xbf\x0d\x94\xac\xa6\x77\x39\x88\x15\x26\x79\x86\xdb\x6d\x26\x1c\x03\x1e\xef\x25\x9d\x82\x25\x89\x25\xc9\x78\x78\x11\x15\xd7\xb2\xe9\x7a\x8e\xc8\xf2\x97\xa9\xf1\x8c\x20\xaa\x92\xa9\xe1\x8c\xe5\xde\xfa\xfd\xfd\xeb\x17\xe1\x72\x15\x06\x24\x48\x06\xac\xef\xd9\x6c\x16\x1f\xcb\x47\xf2\x34\x56\xd4\xa8\x1f\xff\x44\x3c\x04\xc6\x9f\xc9\x19\xdf\x8b\x98\xf3\x27\xfd\x19\x16\x3c\x98\x47\xb2\x72\x2c\xcb\x53\xfa\x37\xab\x90\x79\x14\xa3\xdc\x9f\x7a\x2c\x24\xab\xa3\x24\x78\x16\x31\x4f\x8e\xaf\xa8\x51\xad\x43\x4f\x56\xce\x6b\xe4\x36\xce\xa8\x07\x44\x35\x94\x33\x3d\x53\x83\x62\xf4\x3a\x7e\xe9\x45\xe2\x4b\x16\x38\x5e\x0c\x98\xd6\x1a\x32\xa7\x6a\xa4\xba\x5e\x44\xe6\x49\x18\xdd\xfc\x1c\x24\x10\x67\x19\x21\x3f\x1e\xf8\x82\x74\x27\x78\x24\xb0\x02\x17\xf3\x79\x3e\xcb\x38\x32\x2d\xf5\x95\x16\xe9\xcc\x9b\x15\x6f\xb7\xf5\xdd\x30\x21\xb1\xd4\x7a\x0b\x49\xf1\x1a\x64\xa5\x74\xe7\xcb\xa4\x14\xbe\x68\xfe\x6e\x1c\x1e\xb2\x89\x3d\x98\xe5\x85\x67\xc6\xf9\xb1\xf8\x63\x7a\xbb\xa5\x9b\x25\x23\x0e\x3c\x4b\x60\x46\x55\xf0\x40\x94\xa0\x57\xc3\x59\x82\x18\x18\x10\x7d\x45\xe1\x78\xd6\x29\x31\xa9\x20\xa8\xbd\xcb\xd4\x73\x8e\xe3\x80\x41\x86\xab\x38\x8e\x53\x54\x85\x0c\x53\xd1\xb6\x24\x3b\xed\x6e\x39\x60\xdc\x1a\x8c\x2e\x7f\x8a\x00\x55\x51\x44\x04\x77\x7b\x1b\xee\x0a\x9e\xf6\x7a\xa2\x6f\xd3\x42\xfa\xcb\x00\x82\x4c\x51\x63\x46\xe7\xee\x30\xe6\x61\x3d\xaa\xdf\xce\x1e\xc0\x66\x9b\x9f\x8a\x03\x93\x71\x93\x00\xca\x73\xbd\x34\x95\xb6\xc9\xae\x60\xcc\x79\x07\xb6\x9c\x69\x7a\xc7\xc9\x6d\x44\x2e\x23\x12\x2f\xde\xc2\x9c\x1d\xe8\xdb\x5e\x22\xbf\x28\x87\xd1\xed\x87\x2a\xf8\x90\x61\xf2\x6d\x83\x98\x4a\x67\xba\x98\x4a\x29\x67\x75\x42\x9c\x14\xc0\x86\xd8\xd0\x32\x8b\xa1\x58\xc4\x91\xf8\x1e\x6a\xd4\xf0\xc0\x80\x89\x05\x49\xa1\x51\xbc\x08\xd7\xbe\x7b\xb2\x08\xaf\xdf\xa7\x3d\x67\xb9\x7e\xf9\x06\x43\x45\x00\x24\xe0\x87\x8f\x01\x18\x43\xe3\xfb\x79\x25\x59\x01\x56\x21\x56\xc3\x10\x3b\x93\x8e\xf2\xee\x2e\x85\x7d\x80\x0f\x0f\xf1\xc1\x6c\x16\xde\xdd\x1d\xe0\xc3\xc3\xf0\x60\x36\x8b\xa9\x30\x90\xa0\x0c\x74\x8a\x5a\xc8\x19\x0a\x7e\xfe\x75\xe0\x87\xd8\x05\x8d\x8a\x27\x12\xad\x7f\x87\x8a\xef\xee\x62\x45\x0d\xb6\x55\x3b\x80\xa8\xce\xb3\x01\xb7\x71\x57\x41\x36\x4b\xd2\xeb\xba\xbb\x11\x70\x78\xc8\x26\x35\x5a\x07\x4c\xd0\x11\x56\x28\xa7\x16\x5e\x95\x93\x0b\x9f\xda\x76\xdd\x13\xcf\x59\x68\xe7\xad\xeb\xb9\x1f\x22\x1c\xc4\x95\x34\xc0\xf9\xf0\xd8\xa2\x41\x5e\xfc\x81\xc4\x09\x45\x39\x4f\x9c\x19\xcf\x29\x88\x1f\xc2\x81\xae\xea\xca\x56\xbd\xf6\x7c\xbf\xa5\xab\xde\xca\x07\x27\x7a\xf8\x55\x40\x75\x2e\x01\x85\x97\x52\x82\x9e\x5f\x84\x51\x02\x62\x14\xbf\xf1\xa5\xf7\x1b\x88\x52\xd2\x6a\xda\xa4\xf6\xcc\x05\x51\x2b\x9e\x8b\x06\xe1\xcb\x30\xba\xf0\x5c\x97\x04\x69\x18\x5f\x83\x14\x9f\xd5\x7b\xc0\x98\x8e\x1a\xe6\x97\x88\x86\xc7\x16\x56\xd6\xce\x05\x45\x25\x3d\xb3\x06\xbe\x48\x71\xc4\x75\x71\x8e\x33\x6e\x13\x3c\xdf\x9e\xd7\xb3\xb0\xba\x78\x4f\xb6\x14\x7c\x82\x5d\x08\xc9\x68\xb4\xbc\x55\xe4\x2d\xc8\x2f\x31\x15\xe2\x78\xa8\xc6\x4d\x57\x37\xcb\x16\xa3\xa8\xe0\xd0\xa9\xaf\x01\x45\x72\xc1\xd8\x16\x54\x8c\x6d\xbd\x25\x07\x0e\xfd\x51\xea\x9c\xea\xab\xd7\x7d\xbd\x27\xe2\x21\xe3\x48\x6a\x28\x0a\xf7\xa4\xa8\xfb\x5b\x4f\x9b\xc5\xda\x66\xb3\x77\x93\xb9\xa8\x62\xf3\x4d\xa9\x34\x9d\x27\x92\x9b\x4f\x52\xd3\x10\xbe\x4c\x48\x54\xdd\x78\x2b\xc2\x54\x96\x0e\x49\x56\x8e\xe9\x56\x00\xb9\xa8\x3b\x8d\xbf\x25\xdf\xe7\xb4\x4e\x38\xa3\x25\x6a\x87\xa3\x60\x20\x7a\x0a\xde\xb2\xf0\xa3\x7a\x67\x81\x2a\xd6\x7c\x2e\xfa\x31\xf3\xfa\xe2\x31\x31\xa1\xa9\x68\x6d\x0e\x4a\xd6\x66\xbe\xc2\xca\xcd\x0b\x55\xf3\x78\xa7\xca\xe5\x22\x3d\xed\xd3\x6a\x75\xd8\x3d\x8e\xbf\x94\x16\x65\xc5\x46\xbd\xff\x55\xf7\xa0\x5c\xbc\x87\xfb\x28\x93\x0b\xda\x3c\x47\x75\xde\x83\xe7\xbe\x5f\x9a\xcc\x5d\x9d\x06\x6d\x6c\x31\x77\xf5\xfe\x29\x9a\x13\xe8\x1f\xbf\xa4\x63\x68\xdc\xde\xea\xf7\x29\xf1\xbe\x8b\x42\x3f\x99\x5e\x85\x48\x10\xaf\x23\xf2\xca\xff\x18\x57\x16\x7e\xdd\xa6\x05\xe2\xb9\xd8\xea\x0d\x0e\xae\xd6\xf8\x8a\x0c\xe4\x05\x0e\x5c\x9f\x5c\xe0\x08\xc2\x7f\xeb\xab\x24\x4b\x9f\x55\x38\x57\x76\x51\xcf\xfe\x44\x0f\x4d\x44\x98\x7e\x5e\x11\x0c\x93\x4c\x66\xfc\x10\xf2\xd8\x97\x1d\x20\x62\xb1\x32\x7f\x25\xd9\xec\xfe\x4a\x68\xad\x6c\xd6\xe4\xa9\xa5\x52\x59\x41\x6b\x2d\xf8\x85\x6b\x74\xd7\xfe\x5a\x68\x45\x9c\xcb\x5c\xcb\x71\xc5\xcc\x90\x39\x4c\x2a\x6a\x62\xd6\x28\xeb\xb6\x46\x47\xfb\x4d\xb8\x1f\x41\x70\x58\xd7\xab\x6b\x75\xd1\xde\x99\x0c\xc8\xa2\xa8\xd8\xd6\x0d\xd3\xd7\x26\x0b\xe6\xfa\x13\xc7\x13\xcc\x66\x85\xb4\x79\xe1\xa0\xac\x6f\xb4\xb1\x49\x3a\x45\xff\x56\xbb\x14\x4c\xd2\xff\x30\x18\x76\xda\xa8\xd8\x45\xca\x7b\xdf\xa7\x60\x02\x2a\x37\x20\xef\x24\xb8\x77\x06\xef\x3c\x28\xf2\xdb\x85\x71\x88\xd7\xea\xc3\x41\x82\x3c\x70\x43\x8d\x49\xe4\x61\xdf\xfb\x42\x6a\xc4\xe0\xdb\x34\xe2\x30\x15\xb4\xb3\x78\x8c\x6d\xd5\x60\xa2\x0a\x0e\xd2\xa6\xf5\xce\xd5\xf9\xaa\xd1\x27\x5b\xec\x08\x92\xd5\xc6\x33\x82\xd2\x77\xab\xe1\xac\x7c\xf5\x49\x5c\xe0\x08\xe7\xca\xb3\xfa\xc5\x9f\x5e\xc2\x02\x33\x1e\x16\x39\x40\x93\xfc\x5e\xdd\xc7\xab\x52\x7b\xaa\x4e\x14\x42\x1f\x2b\x46\xb5\xa6\x58\x8f\xaa\xbe\xb3\x33\xfd\x1e\x15\xe2\x14\xff\x0a\xac\xa4\xcd\xf8\x9d\xbb\x97\xd2\x70\x21\xb9\xd5\xe8\x5d\xdd\x89\x0a\x53\xd1\xa5\x72\xdd\x5f\x8f\xda\xd6\xaa\x49\xc9\xde\xd4\xa4\x66\xf5\xa8\x17\xd1\x08\x31\xbf\x8f\xce\xc1\x51\x3b\xc7\x70\xe7\x45\x26\x85\xd7\x5c\x4c\x56\x9e\xe7\x44\x64\x5c\x53\xa2\xe6\x10\x4f\x21\x58\xbe\xc3\x48\x2f\xc6\x12\x01\xff\x79\x16\x20\x5a\xf1\x02\xcf\x3f\xe5\x57\x71\x0c\x14\x35\x40\xfc\xb6\xa6\x41\xa6\x76\x7b\xf1\xcf\xae\x97\xc0\x21\xbb\x03\xa3\x2c\x14\x74\x49\xb9\x7c\x7a\xf2\x10\xeb\x7f\xf7\x35\xdd\xc0\x85\x4b\xf7\x91\xb2\x87\x79\xc4\x7a\x3b\x0b\xde\xc9\xd4\xf2\x52\x9c\x8c\x7c\xe1\x0b\x8f\x1b\x6d\x2f\xa7\xe9\x78\x84\x76\xe9\xb3\x3a\xab\xcb\xcb\xe2\xfd\xab\xf5\xec\xa2\x08\x79\xa1\xcf\xe6\x46\x42\x2c\x7f\x3f\x06\x53\x80\xba\x04\xcd\x3d\x18\x8e\xb8\x3f\xfe\xbb\x53\x74\x9d\xc8\xb0\xaf\x5d\xea\x67\x11\xcf\x39\xd1\x09\x8f\x6b\x76\xa9\x9f\x8b\xb7\xf9\xd6\x53\x50\xf1\x70\x47\x3f\x22\x12\x47\x73\x0f\xa2\xf9\x37\xd0\x8f\x6a\x83\xc0\x63\x39\xa5\xaf\x5a\xfb\x6e\x96\xf2\x22\x2f\x3d\xc9\x2e\xbe\xe6\x95\x0a\x69\x33\x64\xa5\x98\xe9\xa5\x4b\x7a\x29\x5c\xef\xdc\x45\x44\xd5\x8b\x54\xb3\x97\x57\xee\x66\x95\x15\x7e\x2e\x04\xfa\x7b\x53\xbe\x04\x55\xec\xd4\x8b\xb3\x8e\x16\x38\xce\xef\xc4\x16\x3b\x78\xee\xfb\xb9\x02\xb9\x6d\x0b\x94\x16\x94\xc8\xe7\xbe\xdf\xa6\x63\x9e\xe4\xf7\xde\xd7\x74\x22\xdc\x7c\xff\x55\xf2\xdd\x7d\x57\x5c\x19\x65\xcd\x8d\x2b\x97\xce\xde\xc3\x00\x9f\x7e\x3d\x49\x53\xa4\xd5\x48\xc2\x35\x6c\x47\xae\x1d\xea\x7d\x18\x40\x53\x36\xab\xbd\x9f\xe5\xe9\x77\x5a\xa7\x25\x3e\x73\xdf\x79\xac\xda\xb9\xc9\xd7\xc5\x50\x77\x9c\xb4\xc8\xc5\x29\xde\x0c\x0e\x25\x7c\xf5\xd9\x92\xfb\xc6\x61\x17\x95\x80\x80\x2b\x01\x59\x14\xb4\xe0\x92\x0b\x32\x97\xdc\xb4\xe6\xe6\x5a\xa5\xba\xc7\xb2\x2d\x3b\x28\x1d\x27\x69\x8c\xe3\xce\x02\x24\xeb\xe3\xb8\x01\x91\xc5\x68\xee\xcb\x30\x92\x3e\x86\x17\xd5\xe0\x6d\x8e\x59\x21\xde\x5b\x56\x94\x67\x2c\x76\x14\x8b\x11\xdd\x38\x8b\x35\x4d\x0f\xca\x97\xd5\xdb\x06\x37\x64\x93\xc9\x21\xae\x5a\x39\xdb\xf6\x26\x51\x0f\x4a\x04\x12\x79\x56\xdd\xb1\xa8\x9e\x95\xf3\xe6\x5f\xc3\x8b\x8c\x37\x07\x7d\xb6\xac\xe0\x2b\xb6\xac\x00\xdc\x23\x6a\xfa\xe2\x8e\x1d\xe0\xdb\xb0\xf8\x4e\x46\xfb\x6b\x78\xd1\x83\xc1\xf6\x48\x77\x5f\xe6\x9a\x99\xac\xff\x97\x90\x9c\xbe\x5e\xd0\xce\x75\x9f\x7d\x49\xd9\x45\x6f\x6b\x9d\x46\xb7\x7d\x30\xc5\xec\xbe\x5a\x58\xb4\xfe\x93\x6c\x3d\xfb\x0e\x43\x7a\x4f\x01\x11\xb7\x32\x0a\xd9\xf9\xf6\xbc\x8f\x1f\x88\x25\x2e\x29\x18\x83\x6f\xb3\x5d\x6b\xda\x65\x90\x86\xa3\xeb\x7d\xa2\x3b\x61\x24\xc8\x25\x3e\xc9\x5e\xb6\x83\xb3\x53\x38\x15\xfd\x88\x6c\x73\x95\x4d\xef\x1d\xbe\x22\xe2\xfe\xf5\x8c\xdc\xff\x28\x52\x39\xd5\x52\x1b\x7a\xb2\x33\xfe\x7f\x25\x77\xf0\x9e\xd7\xc8\x49\x8a\x23\xbe\x4e\x38\xce\xfe\xda\xa1\x7a\xd5\x3c\x3f\x45\x8a\x39\x4a\xb3\x3f\x74\x12\x0e\x4b\xcf\x05\xb4\xa9\x41\x9c\x86\x17\x5c\x7d\xcb\x08\xf6\xdc\x2f\xd4\x15\xbe\x9a\xb9\xec\xa2\xf8\x88\x21\xad\x1e\xba\x42\x3d\x31\x7a\xbf\x77\xc8\xfe\xc3\xde\x8a\x80\x93\x24\x8a\xa7\xb7\xc2\xad\x9c\xb2\x3b\x97\xb3\xeb\x12\x65\x76\xd7\x60\x4c\xa2\x4b\xb8\x8c\x43\xa6\x9f\xf2\x56\x0d\xc2\x68\x59\xf6\x58\xa6\x27\xdb\x12\x51\x5c\xcf\xa8\x67\x70\x76\x9b\xde\x1b\x47\xf9\xd4\xf6\x3c\x17\xbb\x79\xc6\xfe\x99\xfc\x9e\xfc\xb1\x26\x71\x42\x5c\xe9\x39\x45\xa9\x74\x8d\x63\xe1\x60\xa6\x17\x48\x31\x49\xa4\xf0\x52\xc2\xe9\x3d\x67\xac\x5e\x2c\x88\xeb\x09\x7a\xfd\x72\x96\x20\xba\x75\xa8\x09\x7a\x99\x81\x35\x4b\xd0\x07\x7c\x15\x1f\x1e\xb2\xbf\xc8\x9d\xab\x09\x62\xb1\xe0\xe5\x22\x1e\x40\x9f\xa0\xf7\xab\x39\x05\xb7\x5c\x4e\xe7\x58\x0c\x02\x07\xc8\x05\x94\xbc\x27\xf1\x2a\x0c\xe2\x22\x6a\xe8\x2c\xa6\x47\xee\x70\xe5\x04\x90\x1a\x0b\x49\x22\xf0\xdf\xad\x63\xac\x59\x53\x5d\x51\xc3\x99\xf5\x63\xf8\x37\xfc\x63\xf8\xc3\x0f\x4a\x7c\x16\x6a\xd6\xb9\x70\x3e\x28\x3c\x7f\xd6\x1e\xe9\x79\x06\xef\x45\x6f\x81\xd0\xe2\xbb\xbb\xb3\xf3\x2c\x77\x00\xe8\x1f\xd9\x88\x4f\xbc\xe0\xca\x6f\x1a\xb7\x8a\xf3\x91\xc7\xd5\x91\x87\xc2\xc8\xe3\xbf\xdb\xc7\xb1\x66\xd3\x91\x47\x33\xfb\xc7\xe8\x6f\xf1\x8f\xd1\x0f\x3f\x28\xe1\x59\xa4\xd9\xe2\xc8\xa3\x9e\x23\x4f\xb5\x41\x96\xac\x18\x2b\x2a\x3e\xcf\xcf\xa2\xf5\xf1\xd9\x16\x56\x5f\x57\x7e\x92\xa6\xa5\xfa\xed\x0e\xc6\xb6\x6f\x38\x7c\xa9\x16\xd2\x2f\x4c\x41\x05\xe6\x79\xa1\xd9\x69\x68\xf6\xe8\x84\x9d\x8c\x6e\x5e\xa9\xe9\x18\xf2\xca\x77\x77\xb7\xdb\x3c\x18\x28\x7f\x5e\xb8\xeb\x3e\x50\x8a\xa9\x95\x72\xdd\xfc\x8c\x9c\xd3\x1e\xd4\x78\x76\x0b\x23\x23\x59\x67\x62\x7b\xac\xa0\xcb\x30\xfa\x19\xcf\x17\x75\x9e\xff\xf8\x8c\x9c\xcf\xf0\x19\x39\xdf\x2a\x6a\x8c\xde\xa7\x79\x3a\xf9\x30\xb3\xdf\x6c\x29\x0a\x0f\xce\xc8\xb9\x1a\x6f\x15\x35\x41\xbf\x86\x17\x5c\x50\x9f\x05\x6b\xdf\x3f\x98\x89\x8f\x8e\xc5\x1f\x53\xe1\x86\x7c\x55\xa6\x6a\x33\x2f\x90\x69\x3f\xef\x7c\xec\x05\xbf\x86\x17\xaf\x5d\xd6\xc3\xeb\x97\x2a\xe3\x2a\x20\x90\xce\x84\xef\x77\x77\x95\x8e\x04\xc1\xb5\x67\xb4\x85\x60\xb1\x51\xf9\xfb\x2a\x11\x17\x35\xe3\x38\xa7\x43\x7d\x0b\xb7\x0a\x7f\x48\x2f\x46\x99\x89\x4f\xfe\x8f\x41\x9c\x42\x95\xd9\x5b\x9c\x2c\xd0\xa5\x1f\x86\xd1\x40\x7c\x7e\x64\x10\x87\x76\xf6\x22\xcb\x30\x98\x76\x96\x3f\xe1\x9d\xe5\x0f\x8a\x9d\xe5\xcf\xd3\xce\xde\x67\x57\x0d\xfe\x0c\x69\x56\x67\x03\xf1\xd9\x87\x08\xcf\x3f\x91\x88\x12\x8d\x82\x58\x05\x8a\xf8\xea\xa5\x75\x94\xa1\x57\x1f\x1f\xd7\x3d\x9c\xd2\x49\xa7\x18\x22\x9f\x93\x52\x0f\xc5\x47\xc7\xe5\x07\x69\xcb\x5f\x42\xdf\x0f\xaf\x7f\x5f\xe5\x96\x55\x68\xcd\x1e\xaf\xe1\xf1\xeb\x97\xc7\xe5\x07\x69\xeb\x77\x69\xfa\x0a\xf1\xe5\xf1\xac\xb6\x00\x38\xb2\xd8\x46\x4c\x79\x91\x02\x5d\x2d\x61\xc7\xa6\xd5\x04\xfd\x0f\x8e\xb3\x0a\xb3\x83\x83\xc6\x8e\xd4\x04\xf1\x9f\xc4\x15\x97\x54\xf5\x21\x5d\x57\xd5\xa7\xe8\x64\x81\x23\xe2\x56\xb7\xbc\xee\x43\x3e\x8d\xd2\x4f\x35\x2b\xde\x3c\x5c\xdd\x14\x93\x78\x8a\x8d\x3f\xc6\x20\x33\xb1\x52\x2f\xb8\xf4\xe1\x28\x6a\x55\xb1\x88\xc8\x32\xdc\x10\x2d\x02\xdd\xaf\xc1\x54\x9c\x1d\xe8\x0f\xbf\xa7\x74\x7a\x64\x29\x9d\xa2\x9a\x6c\xb9\x3c\x47\xf2\x7f\x93\x9b\xa9\xfc\xfa\xa5\xac\x7e\x22\x37\xbf\x84\x51\x16\x0b\x52\x7f\x5c\x70\x8e\x97\x84\x92\xce\x80\x2a\x32\x2b\x2f\xc1\xec\xc7\x96\xb7\x16\x6d\x41\xb5\xfb\x62\x7e\x48\x1e\x8c\xf0\xb1\x17\x5c\xad\x7d\x1c\x79\x5f\x88\x32\x20\x4a\x53\xf7\x2a\x1d\x60\x6a\x08\x93\xb9\xdd\x18\x52\xb5\x1d\x43\x37\x2b\x7f\x1d\x41\x55\x65\x10\x28\xd3\x60\xab\xae\xd6\xf1\xe2\x1d\xbe\x81\x90\xb8\xda\xed\x19\x0e\xec\xcc\x40\x3c\x9f\x9e\x9d\xab\x5e\x30\xf7\xd7\x2e\x71\xa7\x67\xe7\xdb\x67\xe2\xb6\x9a\xd4\x6c\xab\x31\xeb\x85\xe2\x14\xf4\x2a\xba\x6b\xfc\x12\x85\x4b\xfe\xc2\xff\x26\x37\x83\x58\x51\xfd\x19\x41\xf9\x4a\xfb\x25\x8c\x06\x91\xa2\x7a\x33\x92\xdb\xf8\x22\xe5\x19\xdb\xe1\x96\xf8\x13\x61\x44\x9f\x9c\xc5\xe7\xf5\x1b\x39\x2c\x11\x35\x98\xf9\x28\x13\x3c\x06\x9e\x4a\x54\xc8\x54\x10\x20\x0a\x88\xba\x9e\x05\x28\x85\xe4\xc7\x01\x86\x87\x3c\xa7\x84\xa2\xae\xe1\x54\xe9\x0c\x67\x35\x14\x28\x4a\xa5\x43\x35\x1c\xac\x15\x96\x47\x8f\xb0\x36\x58\x94\x64\x7f\x61\x8a\x6c\xad\x28\x2b\x22\xb5\xd7\x69\x6e\x66\x4a\x59\xfb\xfe\x09\x55\x92\x69\x17\x39\x22\x55\x06\x8b\xa2\x06\x5b\x35\xab\x52\x88\xc4\x54\x79\xfa\x99\xb0\x7a\xde\xdf\xaa\x3d\xef\x6f\x89\xe7\xfd\xad\xf3\xaa\xaa\x7f\xa0\x6f\xd5\x68\x06\x16\x4d\xca\x2d\x15\x10\xa6\xe0\x6a\x8f\xe6\x28\x4a\x2a\x78\x10\x35\x4f\xcf\xbb\x22\xe4\x13\xd5\xf4\x83\x1d\x9b\xa6\xb5\xc3\x9a\x69\xcf\x30\x1b\x81\xc4\xde\xab\xc7\xd9\x6c\x56\x10\x9b\xf8\x00\x83\xe3\x08\x31\x1e\xce\x79\x60\xa0\x94\xae\x08\x81\x9d\x27\x35\x87\x54\x49\xba\x86\x1d\xd4\xac\x60\xe4\xe2\x78\x41\x22\x58\xb4\xa5\x7d\xac\xf6\x12\x09\x71\x2b\xca\xc3\x80\x1e\xad\x1e\xc1\x35\x05\x6e\xe2\xfe\x0d\x12\x70\xc3\x51\x85\x54\xc2\x6d\x55\xe0\x4b\xca\x01\xf3\xcd\x81\x72\x20\x3c\xc8\xee\xe7\xe8\xa3\x1d\x24\xa0\x1d\x14\x4f\xd1\xe3\x38\xf6\xae\x82\x41\xaa\x2b\xc0\xac\x3e\x0e\xb9\x1b\xfe\xfe\x12\x46\xcc\x91\xde\x57\x10\xaf\xc9\x4c\xc6\x0d\x03\xe4\x73\x12\xe1\x79\x22\xee\x39\x65\x37\x87\xc0\x98\x2a\x59\xf2\x49\xce\x74\x94\xdc\x89\xc9\xc1\x54\x31\x3f\x36\xc5\xde\xf1\xda\x85\xfe\xea\x31\x2d\xba\xf5\x6e\x7d\x2f\xf8\x04\xe7\x2b\x7c\xb8\x7d\x5e\x3e\xca\x36\xbc\x40\x95\x05\x1a\x2f\x24\xea\xc8\xdd\xa9\x58\xd9\x6e\xb7\x15\x89\x70\x57\x91\xd0\x8d\xb0\x17\x68\x71\x12\xe1\x84\x5c\xdd\x3c\xda\xe5\xd4\xb4\x56\xf8\x3e\xaf\xeb\xba\xa1\xc1\xff\x1f\x74\x7d\x0a\xff\xff\x2f\xcb\xcf\xfa\x4b\x18\xcd\xc9\x4b\x82\x5d\xdf\x0b\x08\x24\x4b\x28\x3c\x01\x0d\x55\xf9\x5a\xb9\x3a\x8f\x56\x79\xb4\x08\x6c\xb7\x6b\x74\x59\x28\x7e\x29\x5c\xa3\x54\xb4\x52\x14\xcb\xfa\xf3\x22\xb1\x97\xc7\xce\x8f\x9e\xbc\x1d\xe0\xeb\xe8\x3b\xbf\x86\xe9\x91\x52\xf7\x6e\xe0\x7c\x0c\x2f\xb4\x95\x8f\x1f\xef\x62\xfd\x76\xcb\xb1\x75\xfd\xa5\xab\x94\x2f\x43\x66\xda\xe0\xe6\x94\x41\x61\xa5\x3d\x0f\x82\x30\xe1\x81\x29\x45\x33\x4b\x76\x69\x10\xbf\x87\x8f\x6a\x67\x3d\xd2\xb7\xec\x3e\xa1\xb5\x77\x99\x3e\x81\x39\x6d\xe0\x6f\xfd\x98\x4e\xe1\xf8\x97\x20\x3d\xbd\x7e\x99\x8d\x83\xc7\xd7\xec\x41\x78\x04\xd3\x32\x6e\x35\x2d\xd7\xe9\xc0\x39\x95\xe1\xb3\x5c\xa7\x27\xaa\x9c\xd2\xc7\xf9\x2c\x61\xe6\x66\x9c\x25\x3f\x2f\x10\x57\x1e\x00\x9b\xbe\x12\x1f\x1e\xf6\x37\x68\x27\xc5\xb7\xe6\xbd\x65\x66\xee\xaf\xe4\x8e\x94\xfa\xb8\x9c\xff\x68\xa9\x8f\xab\x23\x01\xd7\x43\x6a\x94\x10\xaa\xb6\xbf\x62\xe6\x92\x46\x2f\x94\x1a\xa7\xfa\x74\x80\xb2\xc8\x9f\x22\xc1\x08\x29\xa0\x8a\x4c\x65\xab\x12\xf5\xf6\xa5\x77\x79\x39\x0d\x10\xfd\x13\x1f\x1e\xf2\x2f\x67\xc9\xb9\xfa\xfa\xe5\x54\x98\x25\xf4\xfa\xa5\x2a\x6b\xb9\xa8\x4b\xd2\xb7\x29\x2a\x50\xf8\xb4\xbc\x34\xa0\x05\x69\x5a\x17\x27\xeb\x8b\xa5\x97\xc0\x95\x3d\xc2\x2e\x49\x50\xfe\x9c\xed\x92\xf9\x6f\x76\xbd\xb9\x58\x83\x6e\xb8\x90\x9d\xbf\x5e\xc7\x50\x43\x8e\x9f\xdd\x69\x67\x67\xaf\x35\x0b\xd4\xe5\x57\x0a\x55\x1d\xd5\x99\x6d\x15\x7f\x4f\x96\xfa\x3d\x59\xea\x1e\xae\xb4\x64\xac\x03\x02\xc3\x49\x02\x16\x1b\x77\x2a\xbf\x13\x7f\xfe\x1a\x5e\xb4\xd8\x33\x32\xd1\x24\x5b\x9e\x59\x7c\x00\xfc\x4a\x45\x7c\xd8\xff\x9a\x37\xbf\xe2\xce\xf7\xfa\x65\x79\xef\x7b\x87\x23\x12\x24\xe0\x18\x4a\xbf\xd6\xf4\x92\x16\xb5\xf4\x35\x15\x3a\xe0\x7e\x1e\xbe\x89\xf2\xbd\x95\xbe\x8c\x44\x5e\xe8\x7a\x73\x31\x61\x1b\x9b\x02\xd0\x31\xd3\xe2\x97\x24\xc1\x9e\x0f\xce\x27\xfe\x44\x68\x4b\x89\x8e\x8d\xbb\x80\xc9\xa6\x2e\xc5\x6a\x42\xbf\xa5\xd6\x35\x1d\xf2\xf7\xfc\x1a\x5e\x70\x30\xf8\x39\x12\x66\xe6\x10\xec\xdf\xc5\x18\x60\xf5\xb6\xf0\x73\x7a\x26\x76\x51\xbb\x6d\xee\x60\x66\x11\x91\x7f\x78\x98\x21\x9f\x2e\x47\xb1\xe8\xb8\xf0\x6b\xca\x28\x15\x8e\xc5\xe7\x56\xe0\x68\x86\x07\xf5\x66\x9b\x58\x41\x17\x6b\xcf\x77\x7f\x7f\xff\x66\x10\xab\x6c\xe6\x54\x39\x3f\x12\x2f\x2b\x28\x5e\xf9\x5e\x32\x90\x8f\x65\xa5\x98\xf4\xb6\xb0\x77\x75\xe7\x6d\x6d\x35\xec\x84\x03\x21\xdf\xaf\x2a\x1f\x15\x03\xa6\x85\x18\xcc\x00\x22\xb9\xd3\xa8\xd8\xce\x7e\x84\xf0\x59\xb1\x13\xd5\xa5\x9b\x2a\x2c\xf2\xed\x56\x15\x4e\x4c\x76\x76\x58\x3c\x5d\x59\x19\x58\xe5\xb0\x53\xff\xfe\xea\xba\x13\x0f\x5a\x75\xf5\x54\x3c\x0e\x54\xee\x8a\xe5\x07\x12\x7d\x8a\x6a\x1e\x00\x95\xf1\xb3\x9c\x0d\xe4\xd6\x39\x7c\x5c\x90\x0d\x8f\x45\xeb\xda\x94\x6c\x3b\x12\x6f\x89\x5b\x74\x6e\x10\x7c\xac\x22\xa0\xe8\xc4\xfb\x8d\xdd\x85\xb5\x8b\xa4\x12\x90\xe4\x3a\x8c\x3e\xed\x2c\xad\x78\xb1\xe6\xad\xfe\x8c\x78\xba\xb9\xe7\x46\x53\xf9\xc5\xeb\x97\xef\x65\xd5\x5b\x4d\xe5\xd7\xef\x64\x75\x79\xe1\x25\xf1\x54\x7e\xfb\x93\x97\x74\x05\xe6\xd0\x9e\x5f\xbf\x7b\x96\xd3\xcf\xc6\x19\x60\x96\x6e\xf5\xf5\xbb\x99\x7c\x96\xd1\x0d\x56\xe5\x73\x59\x51\xf8\xfe\xc9\xc2\x2b\xe0\x4a\xce\x77\x14\x49\x99\xf2\x5b\xa3\x9a\xdc\xf2\x9c\x22\x6f\xf0\x05\xf1\x55\x8a\xd3\x29\x41\xa7\x14\x62\x35\x09\xa7\x04\x7d\x08\x55\x2f\x7e\x79\x13\xe0\xa5\x37\x9f\x1e\x18\xdb\xad\xa2\x86\xf4\x05\xfc\xd1\x9e\xfb\xd7\xb7\x82\x74\x8b\xa0\xf3\x59\x9c\xc7\x7a\xa1\x38\x8c\x92\xec\x5c\xd0\xce\x3a\x7c\x67\x6c\x58\x10\xba\x44\x13\xee\xed\x7e\xac\xcb\xa8\x4b\xca\x29\x6c\x8a\xb7\xbf\x85\x2e\xc9\x73\x26\x4c\x93\x72\x2a\xb3\xee\x65\x47\xd1\xc2\x2e\x40\x7e\xac\x18\x49\x83\xe2\x3c\x88\x85\xf3\x96\x24\x4e\xf0\x72\x25\xdf\x03\xd0\x47\x0b\x62\x7b\x56\x6d\x8e\x00\x2f\x7e\x19\x61\x8f\x5d\x2c\x0d\xdf\x64\x75\x91\x24\xab\xe7\x2e\xe5\x43\xaf\x3e\x7c\x78\x07\x81\xbc\xdd\xe1\x80\x2f\xd9\x6d\xdb\x45\xb3\x1e\x7f\x78\x2f\x7b\x1e\xb3\xe4\xa9\xa9\xe1\x46\xf9\x3a\xd9\x4d\x94\xbd\x70\x83\xc3\x2c\x10\x24\xaf\x40\xad\x71\x8f\x95\x05\x31\x0e\x68\xbb\x83\x4c\x64\xb9\x45\x29\x6a\xbb\xed\x93\xef\x58\xa4\x23\x7e\xe1\xee\x63\x25\xb8\x4e\x5d\x4a\x08\xb1\xfe\x3a\xeb\x55\x94\x05\x03\x3e\x72\x36\xd3\x89\x12\xd1\x53\x22\x84\x38\xe6\xde\x92\xaa\x9f\xa4\x58\x2d\x75\xbc\xd4\xc4\x3f\xba\x3c\xfe\x11\x1e\x31\x1d\x33\xff\x25\x44\x1e\x42\x3b\xca\xf4\xb3\x16\xf0\x23\x6d\xc0\x7e\xf0\xfa\x5f\x3d\x6f\xfc\x06\xfd\xc7\x3a\x61\xa9\x1c\xb6\x5a\x4f\xe5\x17\xef\x7e\x97\xd5\x25\xbb\x13\x5d\x66\x77\xa3\xbf\xfd\x49\x56\x5d\x2f\xfe\x34\x95\x5f\x7a\xf1\x27\xfa\xcb\x0b\x57\xf1\x54\x7e\xfd\x8f\x77\x27\xbb\x6e\x1e\x9c\x17\x3f\x7a\x54\x84\x41\x40\xe6\xc9\x54\x7e\xc1\xbe\xf4\x31\x9a\x7c\xc0\x57\xf1\xdd\xdd\x80\x7d\x99\x9d\x9d\x7f\xb5\xb9\x1a\x4e\xbe\x3f\xee\xa5\xce\xd1\xc5\x0f\xa5\x00\x81\xac\x7c\x7c\xf3\x96\xfd\xee\x85\x35\x81\x17\xb4\x72\x80\xbd\xf9\x48\xf3\x84\x02\x5a\xae\xf7\x3e\x59\xaf\x54\xae\x07\xf8\x78\x4e\xdc\x17\x38\xc0\x91\x10\xd1\x0c\x96\xa7\xbc\xc4\x23\x2c\x90\x9a\x9d\xfa\x94\xca\x65\xfb\x43\x6d\x4b\xd4\xf2\x8e\x48\xdd\xa7\x0a\x5a\x0d\x98\xad\x45\x6b\x90\xa1\x35\x00\x3f\x5c\x5c\xeb\xb5\x22\xe8\xe7\xd5\x82\x2c\x49\x84\x7d\xca\x17\xc5\x58\xc3\xa0\x58\x44\xe5\xb8\x20\xd3\x36\x8b\xad\x4a\x55\xd1\x89\xf7\x85\xbc\xfd\x49\x0d\xd0\x09\xe3\x94\xf1\x2c\xff\xca\x62\xe0\x0b\x53\x14\xec\xaa\xbd\xc1\x14\xf1\x93\xa6\x4f\x92\xd4\xdb\x42\x88\xbc\xc0\x8b\x17\xc4\x7d\xce\x0c\xb1\xf9\xcf\xfd\x04\x0f\x95\xef\xaa\x7c\x12\x48\x4b\xeb\x67\x27\x14\xb2\x08\x7b\xc0\x51\x4a\x94\x6c\xa7\x9f\xc1\x01\x38\xd8\xf2\xd5\xbc\xec\xc5\xbb\xdf\x67\x01\x7a\xf1\xee\x77\xe1\x19\xa7\x5d\x26\x10\x08\xcf\x8b\xc4\x9d\xd4\x12\xf7\xd7\x4f\x44\xf8\x89\xb4\x9d\x8b\x78\x54\x1c\x46\xb4\xe6\x3d\x9f\xcf\x49\x1c\x87\xd1\xeb\x97\x72\xaa\x8b\xc6\x64\x1e\x91\x64\x2a\x9f\xc0\xdf\xd7\x2f\x9b\xf6\x4c\x91\x27\xbd\x03\x95\xe8\xf5\x4b\xca\x1b\xe0\x3b\x65\xdd\xe9\x63\x30\xc3\x17\x99\x51\x5a\xa7\x8c\xf8\xbe\xcc\x03\x98\xcf\x11\xfe\x88\x3f\xd7\x21\x9d\x3e\x2f\xd5\xfa\x6a\xb2\x6f\x6c\x90\x05\x7c\xdd\x92\x60\xbd\x64\x0e\xb6\xe9\x81\xae\x5e\x91\xa4\xee\x84\x78\x0a\xda\x16\x74\xe9\x66\xd8\x84\xf3\xe9\xcd\xf9\x0c\x32\xbb\x75\xf2\xfd\x2c\xcc\x23\x3b\x0b\x93\x1e\x50\xe7\x3b\x65\x9e\xe9\x3f\x5c\x27\x24\xea\x93\x95\xa0\x98\xce\x64\x20\xb3\x96\x68\xbe\x8e\x22\x12\x24\xbf\xbf\x7f\x23\xab\xa5\x67\x70\x18\x9e\x9d\xb6\xad\xe4\xa1\xc8\xc2\x62\xfe\x71\x1d\x90\x88\xe5\x02\x50\x83\xd9\x20\x8f\x6b\x6c\xea\x8b\x4e\x5d\xee\xee\x42\xb2\x82\xae\xbd\x64\x11\xae\x93\x01\x7d\x5c\x0e\xe1\x28\xb0\x85\xd8\xa7\x60\xe9\x6a\xf2\x83\xa1\xa0\x8f\xa1\x17\x40\xfb\xad\xa2\xe2\xd9\x59\x4e\x4c\x55\x59\x86\xe7\xc1\x8e\xd5\x70\x46\x90\x1f\x86\x9f\xd6\x2b\x3e\xbe\x69\x1e\xe8\xac\x28\xcf\x42\x96\x45\xf6\xa7\x1c\x6b\x87\x87\x03\xda\xb7\xc2\xcf\x23\x85\x48\xc0\x28\x15\x56\x9e\xc9\xe9\x4b\xe4\xd9\x8c\x92\x5b\x78\x29\x45\x87\x87\x83\x68\x16\x0d\xc2\xec\x46\x2f\x9e\x7d\x83\x59\xab\x64\x85\x85\xa1\xa9\x83\x78\x86\x0b\xc7\x59\x62\x35\x19\x44\x8a\xc2\xc2\x8f\x7a\x6d\x18\x6c\x6d\xcf\x43\x97\x68\x4b\x8f\xe5\xf0\x10\xd9\x97\xb7\xb9\xd1\x68\x21\x2b\xab\x6f\xf0\x38\x39\x59\x35\x89\x84\x30\xf8\xe0\xd2\xbb\x6a\x10\x53\x58\xe1\x11\x09\x36\x5e\x14\x06\xe0\xef\x7b\xd8\x84\x11\xe5\xf5\xb8\x0e\x3e\x05\xe1\x75\x90\xf6\x5b\x77\x1e\x4d\x88\x28\xcb\x52\x8f\x10\x65\xab\x7a\xf1\x4b\xb2\x29\x67\x1d\x22\x7f\xac\xb1\x3f\x90\x45\x80\x28\x66\x37\xc4\x0f\x57\xdc\x9d\xe9\xc5\xef\xa2\xd0\xed\xd5\x70\x15\x85\xee\x9a\x91\x2b\x6d\xf7\x81\xc4\x49\xaf\x76\x09\x5c\x46\xb7\x03\x49\xb2\x8d\xb3\xf6\x16\x9a\x74\x57\xcd\x0a\x9b\x5b\x7d\x3b\xe1\x92\xff\xfe\x40\x65\xb9\xa9\x1c\x87\xec\x6c\x90\xab\xf9\xde\xd5\x22\xe9\xe7\x9e\x64\x20\x2c\x08\x76\xe1\xc0\x6a\xad\xf4\xe6\x7b\x1a\xad\x50\x57\xfd\x71\xae\xc3\x16\x48\x97\xc4\xf5\x6a\xa1\x8c\x58\xcc\x9e\xb7\x21\xe5\xca\x0f\x3e\x9f\xbd\xa7\x69\x19\x56\x83\xc8\xd9\xe8\x59\x49\xb5\xe6\x0e\x3c\x66\xff\x09\x8b\xae\x48\xa2\xd6\x05\x44\xf1\xdf\xbf\x50\x79\x3a\x99\x62\x21\x61\x9b\xcc\xc6\x8d\xc2\x75\xb2\x5a\xf3\x0a\x7d\x6e\xf0\xca\xe0\x5e\xe1\x2b\xa2\x25\x5e\xe2\x13\xcd\xf7\xe2\x5a\x54\xe5\x55\x5a\x9a\xfd\x49\x78\xbb\xdd\xfe\x78\x26\xc7\x64\x85\x41\x74\x04\xd6\x47\x56\x24\x70\xa9\x90\x43\x56\x3e\x9e\x13\xf9\xbc\xd6\xe8\x91\xeb\x37\x14\x94\x0f\x14\x92\xc3\xc3\x9a\x87\x67\xe4\x9c\x0a\x07\x67\xd9\xf2\x4a\x05\x89\xfa\x13\xc8\x0b\x1c\x3d\x4f\x06\xba\x82\x92\xf0\xf7\xd5\x8a\x44\x2f\x70\x4c\x06\xca\x0f\x84\xcb\x34\x06\x48\xa0\xca\xf9\xac\xfe\x4d\xca\x56\x69\x0a\x8a\xc3\xfd\xa7\x34\x4e\x70\x12\x6b\x09\x4b\xb4\x10\x6b\x11\xb9\xf2\xe2\xa4\x6c\x11\xf4\xa3\xf5\xbf\x96\x78\xd5\x9c\x9c\x15\xdc\xc0\x85\xae\x9a\xeb\xe6\x9e\xb1\x52\x8b\x07\xbc\x3c\x51\x0d\x1b\xb6\xe6\xd6\xcb\x58\xbc\xc0\xab\xde\x96\xd5\x1a\x68\xc5\x92\xf4\x24\xe8\xcd\xfb\xdf\xdf\xe2\xd5\xc0\xd0\x21\x29\x1d\x43\xe9\x7b\x72\x59\x96\xb7\xab\x9c\x96\x4e\xd6\x15\x49\x78\xe2\x8b\xa6\x6b\x9e\xe0\xca\x05\x1e\xea\x0c\xc9\x14\xe7\x61\xc0\xc2\x30\xc3\xa8\x10\x7a\x96\xfb\x24\x43\x55\x9e\x8a\x11\xcb\xd9\x4d\x8b\x70\xe1\x3b\x78\xb7\x67\xb3\x59\x78\x9c\xd1\xda\x34\xbf\x5c\xd2\x13\x2b\xb0\xaf\x53\x59\x4c\x96\xb3\x9e\x31\xf9\x3e\x82\x6c\xac\x6b\xa5\xa2\x25\x0a\x36\x5b\xf6\xea\x44\x39\x3c\x3c\x48\xbf\x22\x2a\xe5\xc4\x49\x14\xde\x10\xb7\xf6\xb1\x17\x5c\x6d\x07\x6b\xd5\x53\xee\xee\xd6\x90\x9c\xce\x53\x89\xa2\xae\x61\x6e\xe7\x33\x9f\xe7\x0e\x6c\xd2\x11\x12\xaa\x24\x92\xe3\x26\x52\x4a\x52\xfa\x09\xd4\xe2\x5e\xc8\x78\xd3\x3a\xfb\x7d\x1d\x79\x09\xff\xbe\x55\xa6\x54\x57\x9d\x05\x2a\xd9\x0e\x6e\xe1\xce\x8b\x3a\xa9\x2e\x41\x40\x5f\x08\xaf\x93\x45\x08\xc2\x03\xcf\x5f\x45\xb5\xcb\xad\x4a\xa1\x50\xf2\x7b\xec\x29\x60\x91\x3a\x57\xd4\x79\xc9\x5b\x5c\x9b\x5a\x34\x5f\xc1\x70\x56\xac\x35\xa3\x68\xba\xf4\x56\x51\xb8\xf4\x62\xa2\x31\x25\xb9\xbb\x1e\xa6\xea\xb0\x58\x8d\xfb\xd0\xcb\x41\x54\xa5\x6e\x3e\xc6\x61\xa0\x41\xb6\xb6\x2c\x6a\xf5\x1b\x64\x64\xde\x69\x69\xb7\x66\xf5\x63\x19\xf5\x2a\xca\x71\xf1\x52\xea\x8a\xf6\x0b\xbc\x80\x1f\xd1\x85\x77\x3f\x2b\x4b\x4f\x29\x9d\xde\x72\xfc\x4e\xeb\x28\x43\x38\x67\x8b\xf3\xb4\xcd\xaa\x7c\xc4\x72\xa3\x1d\xa5\xe9\xfe\xda\x2e\x37\xa5\x13\x30\x50\x9a\xef\x4f\xba\x8d\x56\x73\x88\xfb\x20\xdb\x4a\x25\x71\xa5\xb2\x24\x8c\xe9\xcc\xbc\x58\xe0\xe0\x8a\x0c\x64\x36\x02\xc4\xfb\x90\x15\x35\xd9\x2a\xa9\x5c\x88\xb3\xfb\xb3\x5b\x78\x9d\x90\x26\xb6\x27\xa2\x88\x88\x28\x7c\xdd\x89\x2b\xc8\xb7\x77\xb4\x64\x69\xcd\x32\x5c\x15\xd3\x04\xdc\x6e\x9b\x71\x98\xde\x20\x4f\x10\x4b\xd7\xc8\x40\xda\x72\x38\xf9\x1d\xee\xf7\x80\x30\xd8\x1b\x84\xd9\x3d\xf2\xb5\xb0\x9d\x9d\xf3\x0c\x18\x22\xcd\x56\xad\x3d\xac\x0f\x74\x76\x2e\xab\xb7\x25\xc9\x5f\x80\x80\x57\x53\x93\x19\xbf\x77\x9c\x32\x7e\x48\x67\x81\xaf\x28\x8d\x2c\xb1\xfb\x5c\x78\x4d\x7e\x23\x27\xcf\xcf\x11\x0f\x12\xe5\x38\x81\xa8\x02\xb8\x9d\xbd\x9a\x4f\x80\xe7\xe1\xca\xec\xf6\x3f\xc8\x72\xda\x4b\xaf\x57\xce\x02\x35\xd8\xd6\xd5\x64\x89\x22\x5e\x27\x64\xc9\x39\xe7\xf3\xc2\xe5\xf5\xdb\xad\xa2\x56\x2e\xd0\x6f\x45\x53\x8d\x6e\x94\x1b\xb7\x78\x3d\x66\xd5\x94\x95\xbf\x1b\x59\xf7\xaf\x19\x26\x1a\xe6\xa1\xc8\x58\xe4\xc2\x32\x4a\xaf\xa1\x57\xe5\xea\x4d\xff\x4d\xa3\xa9\xd4\xe4\x11\xf5\xe2\x7b\x0e\xc4\xfb\xef\x6b\xdf\x08\xfe\xbb\xec\xde\xc8\xfe\xdc\xb0\x93\xd4\x6b\xf3\x8e\xe6\xe7\xa0\x5b\xf8\x1a\x7d\x3b\x9e\x27\x70\xa3\x84\x52\x98\xbb\xdf\x9a\x07\x9a\xc3\x50\x9e\x41\x81\xc6\x85\x4a\x49\xc8\x4c\xd5\x79\xba\x6a\x3e\xa3\x90\x68\x3a\x5c\x92\x9a\xb1\x89\x27\x04\x04\xd9\x4a\x58\x82\x79\x56\xfe\x8e\xf1\xd5\x2f\xc4\x8e\x65\x50\x77\xb2\x4c\x4d\x2a\xa0\xa5\xd9\x12\x3d\x57\x56\x49\x1e\x4d\x7b\x77\x37\xd8\x61\xf1\x08\x47\xd6\xd5\xb6\x17\xe4\x77\x81\x2a\x1d\xcb\x9e\xe3\x90\x1f\x19\xcb\x6c\xa6\xc9\x71\xed\xb0\xea\x86\x32\x4b\x5a\x87\x92\x28\xca\x74\x87\xbe\x0a\x17\x01\x24\xca\xb3\xfb\x21\x67\x0b\x3b\x45\x4c\xaa\x2a\x04\xa4\x57\xae\x5c\x9f\x0a\xde\xda\x5d\x04\xbf\x84\x7c\x4e\xb4\x25\xc1\xf1\x3a\x2a\xa7\xce\x65\xba\x78\xa1\x42\x53\xbb\x27\x67\x63\xaa\xf1\x83\x16\x8e\x1c\x56\xc4\x51\x10\xcf\x1f\xdc\x1c\x53\x16\x3f\x3b\xae\x11\x66\x0e\xd0\x12\x2f\x28\xaf\xfd\xae\x3d\xf0\x03\x45\x05\xf3\xa1\xd6\x2d\xb1\x94\x13\xc3\xb1\xc0\xe4\xb8\x17\x19\x0b\x5d\xca\xca\xb4\xcf\x9b\xe9\xda\xa3\xb4\x5e\x27\xbf\xd4\x28\xb0\x95\x54\x57\x46\x6d\xaa\x2b\x43\x4c\x75\x65\x9c\x4f\x6f\xe7\x11\x71\x49\x90\x78\xd8\x8f\xa7\x32\x97\x2c\x64\x38\xf0\xbd\x55\x63\x1e\xe7\x0b\xe3\xc9\x14\x2a\x66\x8a\xf9\xff\xb4\xdf\x80\x1c\x60\xc4\xf2\xf9\x2c\x86\x5b\x53\x84\x94\xd5\x44\x2d\x9e\xa6\x52\x6f\x17\x20\xe0\xc6\x53\xbc\x85\x9b\x86\xcb\x22\x7a\xc9\x41\xed\x5d\x0e\x2a\x89\x3b\x6a\x76\x7d\x59\xc9\x0e\x6e\xd4\xa7\xf9\x48\xab\x3d\xc3\x87\x87\x03\x32\x2b\xbe\xa4\x7c\x98\x24\x3f\x2d\x14\xb0\x7b\x58\x33\x59\x4b\x3e\x96\x95\x63\xf9\x50\x9e\xca\xc7\xa9\x10\x25\x1c\x22\x52\xf2\xf4\xbe\x42\xa2\x9e\x01\x51\x53\x89\x17\x60\x16\x85\x89\x5a\xb1\x74\x57\x2f\x3a\x5c\x8f\xd0\x68\x33\x84\x00\x86\x87\xb2\x03\x43\x52\x80\xfa\x25\x0a\x37\x59\x95\x5c\x1d\x11\xc1\xee\x3f\x02\xff\xa6\x6a\x9b\x11\x83\x0b\xd4\x03\x9d\x32\xa9\xdd\x0d\x44\x74\x3c\x5b\xca\x01\x5f\x07\x2e\xf9\xfc\x4b\x18\xd5\x99\x0d\x58\x36\x03\x03\x96\x74\x4d\x3d\x8a\x1d\x5a\x65\xf6\x43\xd2\x67\x0e\x36\x57\x2d\xde\xfd\xaf\xc7\x72\xfe\xe0\x56\xc6\x3e\x89\x12\x6d\xee\x45\x73\x9f\x68\x97\x9e\xef\xcb\xd3\xff\xf8\x5b\xbc\xb9\x92\x36\x1e\xb9\xfe\x29\xfc\x3c\x93\x75\x49\x97\x4c\x5b\x32\x6d\x59\xfa\xbc\xf4\x83\x78\x26\x2f\x92\x64\x35\x3d\x3a\xba\xbe\xbe\x46\xd7\x16\x0a\xa3\xab\x23\x53\xd7\x75\x3a\x6c\xf9\xef\x7f\x5b\xe1\x64\x21\xb9\x33\xf9\xad\x61\x4a\xe6\x0b\x07\xd9\x63\xc9\x94\x4c\x89\x7f\x31\xcc\xd8\xa6\xdf\x0c\x3d\xfb\x5f\xe3\x0f\x34\x43\x3f\x31\x46\x68\x68\x42\x35\xc9\xfc\xb2\x34\x24\x63\xb8\xd0\xcc\x8d\x66\x2e\xcc\x8d\xf9\x65\xa9\x6b\xf6\x42\x33\x4f\x47\x0b\x73\xe3\x7c\x91\x25\x3a\xda\x99\xcc\x1d\xd3\x2f\x42\x3f\x8c\xe4\xa3\xbf\xff\x8d\x0e\xe3\xef\xff\xa1\x16\x01\x0b\xd7\x89\xef\x05\x64\x7f\xb0\xc1\xd0\xcc\x8d\xc9\x86\x47\x87\x36\xa6\xa3\x82\xe1\x7d\x59\xa2\xc9\x44\x1b\x52\xd8\x47\x55\xd8\x47\x14\xea\x09\x9a\x4c\x24\x43\x7f\xc1\xe1\x85\xff\xb3\xef\x86\x99\xe3\xc1\xa0\x15\xcd\x2f\x80\x4c\x7d\x4e\x51\x65\x4a\xba\x36\xd6\x2c\x34\x1c\x6b\x63\x6d\x1c\xb3\x2f\x12\xfc\x93\xe8\x0f\x89\xfe\x60\x5f\xe8\xb3\x9e\x78\x4a\x22\x0f\x07\x57\xfe\x1e\x31\x24\x99\xc6\xc2\x34\xdf\x18\x00\x86\x64\x1a\x5f\x96\x86\xa9\x59\xd5\xe9\xdc\x68\xf6\xc2\xdc\xd8\xdd\xe3\x8c\xa2\xf0\x5a\x73\xc3\xeb\x60\x9f\xb3\x68\x6d\x0c\x1b\x99\xbe\x66\x21\x87\xfe\x7b\xe3\x48\xc6\xd0\x77\x24\x47\x72\x34\x47\x33\x90\x0d\xff\x2c\xe4\x48\x16\x72\x4e\xe9\xe8\x7b\x8e\xd3\x27\x97\xc9\xde\xc6\x69\x1a\x92\x61\xbc\x72\xd0\xd8\xf2\x61\xba\x2d\x34\x9c\xbc\x99\x48\x8e\xaf\xc1\x48\x25\x47\x32\x90\x6d\xd0\xa1\x1a\x6f\x68\x2d\xc9\xb0\x5e\x99\x46\xcf\x91\x46\xe0\x1a\xdd\xd7\x50\xe9\xbb\x17\x19\x4a\x29\xd6\xde\x18\x43\xc9\x18\xfb\x14\x9f\x1c\xa7\x74\xb4\x12\x2f\x7d\x65\x6d\xfa\xa2\x74\xbd\xda\xdf\xc4\x5b\x92\x69\x9c\x3a\x68\xec\x67\x83\x1c\x4b\x13\x9f\x0d\x91\xa1\x93\xfe\x7b\x63\x18\x92\x83\xc6\xa7\x94\x92\xbb\x06\x79\x11\x86\x09\x1f\xde\xb5\xe7\x26\x8b\x99\x6c\x8c\x1d\x59\x5a\x10\x8a\x5e\xfe\xa3\x30\x6e\x63\xec\x48\xf0\x74\xb7\x91\xeb\x3a\x9a\x8c\x2d\xc9\xb1\x90\x33\xf1\x2d\x64\xe9\x96\x34\x46\x8e\x3e\x94\x4c\x1d\x8d\x2c\x47\x1b\xa1\x89\x33\x37\x26\xc8\xd6\x46\xc8\xb6\x47\x92\x6d\x20\xdd\xa4\xd0\x98\xa6\x23\x0d\x75\x64\x18\xa6\x44\x8b\xed\x11\x36\x75\xa4\x8f\x0c\x89\xff\x81\x31\x49\xa6\x64\xa1\xf1\xc4\x1f\x21\xc3\x19\x4b\xc6\x18\x39\x23\x63\x6e\xa1\xc9\x90\x32\x68\x64\x19\xa6\x66\x20\x63\x42\xb1\x87\xc6\x63\xcd\x30\xd0\x90\xbe\x79\x88\xc6\xb6\xaf\x8d\x27\xc8\x31\x2d\xc9\xb2\x91\xad\x5b\xd0\xf9\x84\x75\x3e\xe1\x9d\x6b\x16\x1a\x8f\x27\x92\x81\x74\xc7\xf0\x35\x5a\xe2\x18\xd2\x08\x8d\x74\x03\x53\xae\xc5\xea\xd0\xd7\x58\x8e\x66\x23\x47\x37\xdf\xa0\xb1\x33\x92\xec\x21\x72\x6c\x27\xaf\x22\x41\x19\xab\x38\x7c\x33\x32\xd0\x68\x68\x49\x13\x5a\x55\xa8\xc3\x4a\x59\xd5\x37\x13\x13\x19\xb6\x64\xeb\xc8\x19\x9a\xd8\x44\xf6\x78\x2c\xb1\x4f\x5a\x57\xa7\x20\x19\x23\x34\x36\xe7\x9a\x85\x0c\x9b\x36\xd2\x47\x14\x36\x63\x44\x47\xa7\x99\x16\x9a\xd0\x61\xeb\x68\x38\xc1\x26\x1a\x4a\xf4\x9f\xce\xde\x83\xe8\x68\xc6\xa3\xf1\xdc\x30\xd1\x78\xa2\x99\x68\xa2\x3b\x14\x39\x43\xdd\xd1\x1c\x34\x9c\x8c\x29\x72\x26\x86\x4d\xbb\xb3\x8c\xb1\x3f\x44\xba\x61\x4b\x86\x85\x74\x87\x0e\x64\x42\x3b\xa3\x9f\xe9\x40\x74\x1b\x8d\x26\x6c\x1c\x76\x3e\x0e\x67\x9c\x0f\x64\xdc\x63\x20\xe6\x58\xa3\xc3\x31\xe9\x48\x6c\xd3\xa2\x23\x71\x4c\x98\xa6\x21\xed\xcf\x1c\x7e\x11\x08\x77\x8e\x7d\x12\xb8\x38\xda\xdb\xda\xa2\x7b\xd4\x84\xd2\x98\x61\x5b\x0b\x3a\x80\xf1\x86\xae\x7a\x73\xf2\x8a\x16\x59\x1b\xf8\xfe\x65\x49\x87\x38\x1c\x4b\xfa\x2b\xc3\xe2\xe5\x0b\xf6\xa7\x50\x61\x24\xe9\x0b\xf6\x94\xf7\x31\x46\x23\xc3\x6e\xaf\x42\xe1\x1c\xa5\x55\x0c\xf8\xcb\x2a\x16\x46\xc3\xde\x36\xae\xed\xea\x91\x8d\xf8\xd4\x30\x5b\x47\x7b\x6a\x98\x8d\x23\xcd\xda\x36\x8c\x92\xb6\x6d\x19\x21\x2d\x6e\x1a\xdd\x98\xbf\x9d\xcd\xb4\x30\xc0\x71\x65\x80\x50\x45\x18\xe3\xb8\x38\x46\xa1\x87\x49\x6d\x0f\x13\xde\x43\x3e\xd2\xf1\x97\xe5\x88\x3e\xd2\x86\xf4\x11\xaf\x94\x81\x0a\x6d\xbf\x2c\xb5\x31\x1a\x52\xd6\xc6\x47\x61\xbe\x1a\x21\x73\xec\xf0\xd2\xb7\x8c\x50\x4d\x9d\xd6\x59\x18\xd0\xcf\xe9\x88\x7e\xbe\xb2\xd9\x40\x78\x3d\x53\xa7\x2f\x92\x2c\x94\x8f\x91\x32\x94\xb9\x2e\x21\x5b\x43\x96\x61\xa3\x91\x31\xd4\x68\x43\xfa\x65\xc1\x06\x8e\xd1\x48\xa7\xbc\x6d\xc4\xf9\x1a\x2d\xa6\x1f\xc3\x53\xd6\x8f\xcd\x47\xd2\xd8\xcf\x2b\x07\x75\xf5\x42\xc7\x69\x3d\x37\x90\x6d\x49\xf0\xc1\x78\x81\x45\x39\x01\x9d\x30\x80\xe8\x05\x30\x6b\x6b\x38\xa2\xdb\x9c\x6d\x51\xf9\x92\xc3\x6d\x72\x98\xe7\x68\x34\x76\x80\x87\xd8\xe6\x58\x83\x4a\xec\x2b\xc3\x29\x74\x36\xd7\x35\x5a\x8b\x96\x9a\x5a\x5e\xca\x3f\xf9\xde\xa8\x45\x6b\x9f\xcc\x64\xb2\x21\x41\xe8\xba\x5d\x9b\xfa\x1c\x07\x73\xe2\x3f\xa8\xe6\x91\x49\xdf\xa3\xa2\xf4\x2d\x6a\x1e\x23\x41\xf3\xb0\x32\xcd\x63\x48\x79\xf4\x70\xf2\xc6\x18\xa2\xe1\x44\x32\x46\xf4\xb1\x61\x21\xdb\x90\xc6\xf4\x83\xee\x0c\x12\x2f\xd3\xe1\xd3\x94\x46\xac\x08\x3e\x58\x7d\x56\x02\xb5\x46\xb4\x09\x6b\x0a\xbd\xd0\x62\xde\x43\xa7\xf4\x53\x44\xd4\xde\x35\x19\x9b\x8e\x6f\xfc\x26\x1b\xf0\x04\xa0\x90\xc6\xec\x4b\x06\xde\x58\x62\x35\xd9\x53\x27\x47\x08\x7b\x4c\x9f\x38\xe9\xf7\x0c\x44\x87\x57\x67\xef\xf8\xb2\x87\x89\xa1\x72\x13\xa8\x41\x46\xaa\x06\x4d\x52\x35\x68\x22\xaa\x41\x93\x54\x0d\x9a\xf4\x54\x83\x38\x96\x57\x3e\xf6\xf6\xa8\x60\x4c\x28\x90\xc6\x1b\x0a\xc3\x44\x1a\xe6\x54\x41\x9f\x4a\x43\x69\xc8\xbe\x64\x48\x1e\x4a\xac\x26\x7b\x3a\x11\x90\x0c\x8f\x0d\xf6\xff\x48\x44\x72\x5f\xc0\xe2\x3f\xd6\x38\xda\xf7\x3a\x9b\x48\xd6\x9c\x8a\x1e\xba\x64\x4a\x68\x42\x27\x75\x03\xfc\xcc\x40\x86\x46\x7f\x6b\xa6\x64\xbe\x1a\xce\x35\xa8\xa3\x99\x1a\x9a\x68\xa6\x66\x9e\x0e\xe7\x20\x74\xd1\x5f\xb4\xce\xc2\xb0\x29\xbb\x97\x0c\x13\x96\x9c\xb0\x40\xd8\x8a\x49\x57\x50\x8a\x3c\xbe\xc4\xd2\xe2\x7c\x01\xb2\x9a\xe9\x0a\xcd\x91\x97\x2d\xe2\x1d\x97\x1c\xc7\xd9\xde\x97\xdc\x44\x1a\x6e\x0c\xfb\xd5\xf0\x74\x08\xa0\xeb\x9a\x88\x24\x89\xa1\x25\x43\x24\xc3\xab\x44\xb1\x94\xe2\x9a\xe3\x36\xc5\x23\x47\xab\x66\x7e\x59\xb2\x95\x31\xfc\x26\xab\xb9\x03\x89\x0c\x87\x25\x95\xc8\x16\x34\x22\xbb\xac\x10\xd9\x92\xb1\x3b\xf7\x02\xd5\xf7\x0d\x90\x8e\xa4\x4b\x23\x89\xcd\x35\xf0\x07\xb6\xa7\x19\x12\xa7\x1f\x9d\x11\x18\x7b\x66\xd8\x19\xfd\xb0\x87\x36\xfc\x6f\xe6\xf4\xf5\xa5\x48\x10\x11\x49\xf6\x6b\x7c\xa0\xfc\xcd\xa7\x2c\x60\xa8\x0d\x7b\x10\x24\x7d\xff\x1e\x35\xe0\x91\x64\xd8\xfe\x50\x83\xf7\x77\xbf\x7d\x41\xe6\x9f\x1e\xa9\x8d\x90\xf2\x8d\xa1\xaf\x51\x50\x72\x23\x08\x6d\x63\x23\x63\xe4\x53\x56\xa9\x8d\x80\xad\x4c\xa4\xb1\xaf\x4d\xa4\x1e\x8b\x5f\x84\x76\xef\x6b\xff\x6b\x01\x7e\x4b\xa9\x74\xae\xb3\x85\x9e\xef\x7a\x71\xed\xae\x27\xec\x90\x5f\x96\x96\xa4\xfb\x02\x8a\x40\x14\x31\x46\x3e\x5d\x1d\xda\x10\x50\x04\x36\x90\x91\x34\xd2\x6c\xad\xdb\x1e\xc7\xd0\xb4\xdf\xfd\x92\x72\x1e\x64\x8c\xde\xd8\x60\xc4\x32\x7d\x10\x2f\xd9\x0a\x87\xad\xcf\x34\xa4\x11\x3c\x64\x40\xf4\x19\xe3\x26\x0a\x83\x3d\x5b\x0d\x1d\xc6\x24\x28\xc6\x4c\x86\x44\x69\xc4\x44\x3f\xba\x75\xd3\x65\xcd\x0d\x88\xbd\xc7\xb7\x57\x6b\x21\x95\xea\x29\x1e\x27\xbe\x66\x23\xb0\xa4\x48\xfc\x6f\x66\xd0\x14\xcc\x86\xf4\x77\xef\x71\xee\xd7\x56\x38\x46\x96\x34\x42\x23\x5f\x18\x21\xfd\x9b\x5a\xdf\xa4\x92\xc9\xb0\xf7\x28\xf7\xc9\x26\xe9\xab\x1d\x5f\x1c\x1d\x1f\x21\xc3\x23\xb3\x17\xbe\x61\xd5\xba\x07\xe8\x87\xf3\x4f\x0f\xc2\x40\x87\x9c\x9d\x0c\x53\x6e\x32\x2c\x31\x93\xa1\xc0\x4b\x32\xde\x69\x23\x93\xf2\x49\x93\x31\x83\xd3\xd1\xc2\x40\xc3\xcd\x10\x99\xbe\x0d\xc6\xa5\x91\x86\xc6\x92\x81\xac\x9e\x70\xed\xdf\xc7\x02\xbe\x8f\x47\xe2\x46\x59\xa2\xa1\x66\x58\xaf\x0c\x63\xe3\xf8\x43\x64\x0e\x25\x0b\xd1\x85\x36\xd4\x0c\x64\x5a\x14\xc1\x9a\x89\x9c\xd1\xe9\xa8\x53\x2c\xa2\xb8\xe2\x28\xea\x46\x47\x2a\x38\x8d\x73\xb9\x69\x5c\x12\x9b\xc6\xd2\x58\xc4\x9a\x2d\xe9\x2f\x0c\xc4\xcd\xa0\xf0\xd7\x8e\xe9\x5f\x9b\xfd\xa7\xc1\x77\x0d\xfe\x52\x36\xaf\xd9\xa0\x53\xcd\x0d\xe4\x38\x60\x3b\x30\x90\x65\x4b\x96\x64\x9d\x0c\xe9\x93\x91\x44\xe5\x24\x2a\x42\x39\x8e\x64\x40\x57\x96\xad\x59\x92\xa5\x59\x5f\x96\x1a\xa5\xaa\x8d\x89\x4c\xd3\x47\x94\x6f\x5b\x68\x88\x86\xc8\xb2\x91\x35\x46\x23\x53\x83\x7f\xd6\x58\xa3\x2d\xf8\xbf\x53\x13\xe9\xe6\x42\x33\x0a\xf6\xc7\xd0\x25\x7b\xdb\x3f\x60\x1d\x22\x87\x6e\x20\x74\xff\xe0\xeb\xf6\xcd\xb8\xe4\x2b\x01\xa6\xb7\x1c\x22\x53\xd2\xd3\x3a\xe9\xbf\x37\x86\x23\x39\x3e\xb0\x6f\x29\x63\x98\xdd\x2b\x20\x5c\xdd\x68\x98\x9d\xc8\xdb\x9f\x93\x02\x8d\x4d\xc9\x7a\x41\x05\x70\x3a\x95\x20\x9e\x5a\x92\x21\xd1\xd5\x4a\xd5\x05\x8b\xaa\x0b\xc8\x46\x63\x5b\x33\x69\x55\xf3\x95\x5d\xd5\x22\x9c\x9d\xb5\x88\x85\x66\x23\x63\xfc\x85\x6e\xc6\xd6\x2b\x67\x63\x2e\x2c\xf0\x70\x6a\x96\xe4\x2c\x86\x1b\xcd\xa4\xcf\xbe\xbc\x75\xa4\xc9\xc6\x5c\x38\xa7\x93\x57\xce\x97\xe5\x50\x73\xe6\x68\x38\x04\xcb\x3b\xb2\x87\x74\x8c\xb1\x06\x5f\x34\x83\xfe\xa3\xdf\x35\xfa\x1d\xfe\xd2\x27\x5f\x96\x13\xa4\xeb\x96\x64\xe8\xaf\x4c\x0b\xdc\xa8\x68\x32\x19\x6d\xcc\x57\xc6\x78\x63\xbf\xb2\x4f\x87\x0b\x73\x63\x20\x5d\x1f\x2d\x0c\x1d\x7e\x0c\xd1\x64\x62\x2e\x4c\xda\xe8\xd4\xb0\x28\xd1\xea\xaf\x0c\xfa\x70\xa3\x59\xb0\x0f\xdb\xbe\x45\x17\xb9\xbd\xd1\xac\x85\x8d\x74\x03\x46\xdd\x6b\xde\xe2\x35\x64\x3b\xd8\xa7\x49\x85\x4d\x9c\x9d\x4d\x9c\xc5\x26\xce\x6c\x9a\xb8\x1a\xf5\xcf\x41\xba\x39\xbc\xf7\xe4\x19\xa6\x64\xed\x3c\x25\x5c\x96\xb6\x35\xbb\x24\x4b\x0f\xa9\xa0\x48\xc5\x1e\x70\x6a\x50\x41\xd1\xd0\xfd\x3e\x66\x15\xd7\x8b\xf1\x85\x4f\xdc\x47\x23\x3e\xe7\x06\xa4\xe2\x06\x00\xde\x97\xf1\x10\x39\x16\x7d\x44\x75\x09\x67\xa2\xd9\x68\xf2\x86\x0a\x52\x92\x31\x46\x96\xf1\x7c\x84\x26\xba\x29\xb1\x4f\xee\x65\xa2\xdb\xc9\x97\xa5\x83\x2c\x43\xb3\x90\xf1\x66\x84\x80\x55\x4e\xea\xab\xda\x73\xf6\x5a\x61\x87\x61\x4c\x7a\xa8\x21\xc7\xa2\xcf\xe8\x6e\xe2\x4c\x24\x1b\x75\x6a\x29\x6e\x38\x8f\xf7\x86\xd4\x31\x65\xe4\xc6\x2b\x53\xdf\x4c\x10\x25\x39\x66\xea\x1d\x81\x72\x4d\x87\x44\xd1\x31\x5c\x68\x86\x3d\xd7\x98\xad\x98\x3e\x63\xb6\x68\x5e\x61\xa3\x19\xa3\x17\x16\x95\x19\x0c\x5b\xb2\xe0\xd3\x94\x40\x8a\x78\x65\x58\x1b\x03\x0d\x5f\xd9\x68\xb8\x31\x46\x0b\xc3\x3e\x35\x8c\x2f\x54\xfd\x04\x4b\xfb\x82\xbb\x40\xc6\xaf\x46\xa9\x55\x5f\xe7\x9e\x8f\xc9\xa9\x01\x36\xee\xb4\x80\xb6\x31\x17\x99\xcb\x64\x74\x6a\xb0\x10\x02\x64\x8e\x9d\x53\x87\x7e\x2e\x86\x1b\xde\xd7\x97\xb7\xc6\x48\x32\xd1\xf0\xd4\x58\x38\x1b\x67\x41\x47\x78\x6a\xd1\x66\x94\x74\xa9\x06\xa1\x81\xee\x44\xa7\xfa\x95\xd1\xb9\x65\x53\xed\x01\x2e\xf3\xdc\x9f\xfd\x67\xb2\xd0\xec\x53\xeb\xd5\x64\xe3\xbc\x1a\xfa\x23\x89\xea\x5c\xa3\x2f\x6f\x87\x92\x31\xde\xd0\x55\x4e\xb9\xec\x10\xd6\xa3\xb9\x30\x37\x9a\xfd\xca\xda\xd8\x5f\x96\x86\x23\xe9\xf0\x73\xa1\xf5\x08\x98\x20\xae\x97\xec\x6b\xc4\x43\xca\x02\x46\x13\x67\x63\x21\x7d\x38\x5e\xc0\xa7\x3f\x46\xc6\xd0\xd2\xe8\xa7\xad\xd1\x27\x23\xf6\xf9\x26\xad\xfc\x65\x69\x20\x4a\xfe\x0b\x03\xe9\xc6\x98\x72\x73\x93\x7e\x05\xbe\x6e\x8c\x5f\x51\xfe\xb6\xd1\x4c\xa4\x5b\xe3\x2f\x4b\xc3\x44\x43\x70\x5e\xdb\xf6\x1b\x63\x84\x4c\x4b\x9a\x20\x67\xec\x43\x8f\x63\xd6\x2f\x95\x4c\x4c\x4a\x6c\x96\xe9\x60\xda\x05\xa5\x4a\xfa\xc9\xd7\x17\xb2\x2d\x47\x43\xba\x6e\x2c\x90\xae\x9b\xbe\x81\x1c\xaa\x39\x3a\xa6\x39\x47\xd6\x64\x94\xfe\xa3\x6d\x6c\x66\x18\xb2\x3a\x27\x9e\x7c\xde\x2b\x0a\x27\xa7\xc3\xc5\x10\x4d\x6c\x3a\xf3\x43\x4c\x59\x12\x73\xfb\x32\x6b\x5f\xfe\xa0\x9e\xd5\x6f\xb4\x21\x9a\x8c\x17\x9a\x79\x6a\x4c\x28\x71\x4c\x34\x03\x36\x67\x34\x9c\xf8\xda\x84\x2a\xcc\xf0\xc1\xac\x5b\xc0\xb8\x99\x1d\xf9\xd4\xd0\x17\xe6\xa9\xb5\xd0\x3a\xc1\x95\xc9\xe7\x15\x0e\x5c\xcd\xdf\xe7\x66\x38\x94\x0c\xcb\xa7\x72\x8b\x89\x2c\xf0\x4a\x4b\x26\x1a\x8f\xa4\x54\xb1\x37\xdf\x8c\x99\xb6\x3a\x02\xb1\x66\xb2\xd1\x1c\x0a\x9c\x61\x6b\xa6\xaf\xb1\x26\xb4\x29\xf8\xd6\xc7\x23\x58\xfb\xf0\xf1\xc6\x18\x82\xf6\x68\x49\x86\x25\x0d\x37\xce\xa2\x5b\xfb\xe2\xd0\x2d\xc3\x68\x9f\xde\x13\xc9\x6e\x85\x8e\xb2\x39\xaa\xe4\x4a\x26\xdd\x96\x4e\xed\x85\xe6\x7c\x59\x6a\xa0\x54\xb6\x82\xe7\x50\xc8\xe8\x87\x2d\x19\x76\x2f\xf0\x2e\xbd\xbd\x1b\xe7\xc0\xdb\x2a\x01\xa3\x7e\x03\xbe\xdb\xd4\x07\xaa\x6f\x8c\x11\x32\x6c\x08\xf4\x19\x0f\x99\xd3\x34\xf3\x93\x8e\x36\x54\x13\x18\x19\xd9\x46\x92\x7a\x14\x27\x8c\x75\xb3\xef\xb9\xef\x92\x39\x2f\x2d\xbe\x8e\x2d\xee\x90\x05\x07\x27\x6c\x29\x0e\xbc\x17\x7c\x97\xa9\xeb\x72\x61\xe8\xf4\x95\xfe\x50\x1a\x7e\x79\x0b\xee\xe9\x74\x3f\x31\x74\xbe\xa1\xb0\x51\x16\xb7\x14\x43\x67\x7b\x4a\x7d\x59\xee\xd3\xd7\xc5\xbd\x65\xc1\x1c\xc3\xb0\xc3\x08\xae\xf0\x6e\x8f\x12\x4c\xc8\xbe\x95\xe2\x3f\x07\xc7\x4b\xd6\x2b\xf8\xc6\x81\x10\x4e\xdb\x08\xa1\x03\x31\xec\xce\xe1\xbd\x11\x29\x15\xe8\x16\x74\xc7\x5c\x68\x36\x55\x4c\x2c\x89\xb2\x45\x63\x7c\xea\xbc\xb2\xbe\x2c\x2d\x69\xb4\x30\xcc\x54\x6b\xe9\x1a\x99\x8f\xaf\xf6\x19\x06\x23\x39\x6f\x28\x83\x78\x05\x92\x8f\xb9\xd1\x46\x8b\x21\x72\x7c\x64\x4b\xe6\x62\x74\xda\x63\x45\x87\xbe\x4b\xa2\x3d\xaf\x69\x5d\xb2\x73\x35\xd1\x40\x93\x09\x9a\x68\xcc\x3a\xf2\xc6\xa4\xa2\x71\x49\xe1\x70\xca\x0a\xc7\xb8\xa2\x70\x8c\x7d\xf0\x3d\xf5\x84\x66\xff\x0b\x42\x72\xd2\x31\xec\x15\x30\x50\x15\xcc\x57\xf6\xe9\x78\x61\x38\x1b\x43\xef\x04\xf0\xca\x4b\xb4\x8b\x08\x07\xf3\xc5\x3e\x4d\xcd\xe6\xd8\xa1\xb2\xd0\x64\x82\x0d\x34\x1c\x3a\x12\xfb\xe4\xb1\x72\x68\x68\x5b\xec\x73\xae\x6b\x68\x6c\x39\x68\xa4\x8f\xd8\x03\x49\x28\x44\x63\x0b\x14\x41\xf8\x3e\xd2\x47\x92\x50\x43\xd2\x25\x5a\xac\xa1\x91\x3e\x16\xdb\xb0\xef\x6f\xc7\x88\xf2\xd6\x09\x9a\x8c\xed\x86\x01\x98\xe2\x00\x86\xd9\x00\x4c\x29\x2f\x34\xe9\xd0\x1a\x06\x60\xb2\x01\x50\x7d\x23\x7d\x2e\x0e\x60\xa9\x6b\x54\xcb\x1f\x0e\xe7\x68\x6c\x4f\xee\xd7\x07\x1d\xb8\x03\xba\x8c\x63\x0b\x03\xef\x31\xee\xa5\xa1\xc3\x04\xd8\xc8\xa0\x02\x1a\x1a\x3a\x94\x59\xd2\x4f\x2e\xb9\x51\x2e\x0a\x9f\xe6\x73\x93\x05\xd9\xc1\x27\x0f\xca\x1b\x42\x18\xe2\xd0\xde\x20\x6b\xec\xcc\x35\xa4\x9b\x0e\x72\x9c\x89\x86\xcc\x09\xc5\xa3\xe9\x68\x68\x4c\x85\xb5\xd1\xc8\xd6\xd0\xd0\xb0\xd1\xd0\xa0\x02\xae\xa1\x3b\x68\x34\xa6\xdf\x46\x23\x1b\x8d\xe9\x68\x75\x67\x44\x5b\x53\x82\xd6\x2d\x64\xea\x0e\x7b\x29\x1a\x8e\x29\xcf\x1d\x5b\xcf\x2b\x63\x93\xc6\x68\xe8\x48\xf0\x68\x68\xf2\x4f\x56\xe0\x48\x43\x3a\x6c\x0c\x83\x97\xd8\x67\x1a\x45\x48\x81\x35\x91\x69\x98\x9b\x31\xb2\x2d\xfb\x85\x83\x86\x26\x88\x67\x8e\x33\x92\x1c\xba\xc9\xda\xe0\xe2\xa0\xa5\xf5\xef\xa4\x5d\x1a\x55\x54\xc1\x7b\x4c\x86\x30\x8a\x72\x67\x6c\x6a\xc8\x1c\x52\x9c\x9b\xb0\x7f\x8d\x29\xca\x47\xf6\x04\x19\x06\x15\xe3\x47\x23\xe4\x18\x63\x0d\x0d\x4d\x07\x8d\x86\x13\x0d\x39\xba\x8d\x2c\xd3\xd0\x90\x61\x9b\x60\x59\x34\x0d\xba\xcb\x99\xfa\x24\xfd\x4a\x89\x58\x77\x6c\xfa\x26\x7d\xa4\xa1\xe1\x08\xd4\x6c\x0b\x74\x6a\x20\x0b\x1d\x76\x47\x1d\x76\x47\x4a\x22\x26\x1a\xda\x74\x1e\x1c\x7d\x04\xa1\xa9\xd6\x42\x03\x9b\x0b\x1a\x8d\x6d\x0d\xd9\x0e\x18\x43\x0d\x83\x0d\x91\x7f\x37\x91\x49\x57\x71\x37\x27\x98\x87\xcb\xa5\xb7\x47\xa7\x0e\x58\xea\x27\x30\x6d\x63\x3a\x9f\x63\x6e\x58\x00\x0b\x12\x88\x8f\xe6\xf8\x79\xa9\x4c\x32\x4c\x69\x82\x2c\x20\xdd\x62\x01\x34\x62\x9f\x75\x8d\xe0\x55\x5f\x96\x36\x9a\x38\x96\x06\xc4\xff\x82\x0a\xa3\x63\x5b\x1a\x23\xc7\x86\xc8\x00\x8b\x87\x64\x8c\x62\xcd\x86\x12\x83\x96\x68\xd0\x44\xb2\xa8\x98\xf4\xca\xda\xc0\xa4\x2f\x6c\xa4\x5b\xa3\x17\x74\x42\x1d\xaa\x1a\x3a\x36\x65\x68\x10\xd3\x02\x78\x35\xf9\xb7\x18\xfa\xd1\xa0\x1f\x89\xbd\x9a\xf5\x63\x1a\x1b\x46\xee\x0b\x0d\xba\xea\xc5\x89\x57\x6b\xdf\xd7\x22\x76\xf6\x69\x8f\xee\x20\x6b\x32\x96\xc6\x48\x07\x4b\xc8\xc4\x84\x9d\xc6\xb6\x35\xe4\x38\xec\x0b\xfd\x90\x20\x56\x2e\x7d\x24\x65\xcf\xd1\x88\x99\x7b\x6c\x1b\x8c\xe9\x69\x99\x04\x22\x9c\x96\x3e\xcb\x1b\x2d\xd9\x37\x1d\x0d\x1d\x10\xf3\x26\x66\x4d\x25\x0d\x7a\x6d\x1c\x85\xd1\x3e\x0c\x16\x0d\xc1\x5f\x87\x26\x8e\x06\xae\x65\x03\x59\x96\x09\x4c\x67\xac\x99\xc8\x4e\xff\x61\x13\x59\x13\x4a\x3a\x16\x0f\xe8\xa6\x35\x41\x5c\x74\xec\xcd\x08\x8d\x81\x07\x5a\x13\xa8\xc0\x17\x3d\xc3\x17\xf0\x83\x62\x81\x81\x4c\x0d\x1a\x9e\x52\x44\x41\xd7\xc0\x79\xac\xb1\x23\xd4\x30\xe9\x7a\x5e\x8e\x10\x0b\x4e\xe9\xc6\xf9\x0e\xd0\xb6\x61\xdd\xd4\x2c\x34\xd4\xed\xd3\x09\x65\xd9\x74\x57\x99\xd0\x0f\x5b\x1f\x53\x0e\xe5\xd0\xba\x06\x44\x58\xdb\x23\xf3\xc4\x18\xa2\xa1\x65\x4b\x43\x64\x5b\x3c\x60\x66\x4c\x7f\x2c\x28\x6a\x4e\xad\xec\x10\x44\xfa\xef\x74\x84\xc6\x0b\x03\x99\x73\x64\x99\x36\xd2\x4d\x1b\x0d\x47\x0e\x32\x2c\x58\xbe\xc8\x1a\x99\x31\xb2\x1c\xfa\x72\xfa\x9d\x3e\xdb\x8c\xd0\xd0\x72\x00\x7f\xa6\xc4\x3e\x33\xfc\x30\xd4\x4b\x8d\xb8\xed\x5a\x26\x0b\xe2\xaf\x1e\x69\x54\x07\xe5\x0e\xe2\x51\x21\x13\xe9\x23\x6d\x84\x46\x43\x5f\x43\x13\x34\x31\xc1\x29\x32\x94\x0c\x13\x4d\x24\xc3\x82\x60\x4d\xf8\xcb\x8e\x8b\xa1\x34\xc0\xcc\x1e\x6a\x26\xa2\x3b\xac\x31\xa2\x1c\xd2\xf2\x0d\x64\xd2\xf9\x33\x9d\x39\xb2\x46\x1a\xe0\x7a\xa2\xa1\x31\xfc\x61\x41\x43\x05\x19\x30\xce\xec\xf1\xaf\xa8\x78\x48\x77\x46\xba\x5d\x4f\x34\x5b\xb2\x35\x3b\xb6\xe1\x87\x64\x4b\x10\xc3\x3b\x1e\xd3\x0e\x29\x1f\x1c\x53\x92\xa1\xfb\xe8\xf0\x5e\x91\xb1\xe2\xbc\x3c\xc4\xc1\xb5\xf1\x02\x10\xab\x01\x66\x0d\xcd\x70\xf6\x64\x51\xdf\x35\x24\x93\xca\x76\xf6\x9c\x61\x55\xd7\xec\x0c\xb3\x0b\xb3\x18\x1f\x18\xa7\xc1\x85\x73\x2a\xae\xd3\x5d\x79\x34\xd4\x2c\x69\x08\xf5\x4c\xf0\xc5\xd2\xfd\x41\xb2\xb4\xa1\xc4\x26\x49\x63\x5d\xf5\x89\x63\x59\x78\x71\x12\x46\x37\x0f\xe8\x91\xd5\x25\x7d\x63\x2f\xec\x53\xfd\x95\xfe\x65\x39\x94\xcc\x8d\xf5\xca\xdc\x18\x0b\xfb\x14\x6c\xbc\x26\x3c\xb0\xe1\x81\xfd\xaa\x18\x75\xe6\x05\x97\xe1\x83\x2d\xd0\xf9\x90\x8a\x9c\x12\x4c\x2f\x9d\x5b\x87\xcd\x73\xac\xa5\x3f\x34\xf8\x7d\xc2\x3c\xea\x36\x0f\xc1\x75\xa0\x30\x5b\xa6\xcc\xd6\xa0\x23\xdd\x60\xea\x01\x78\x0a\x86\xe9\x79\x16\x64\xdb\x96\x86\x26\xe3\xe1\x5c\x63\x52\x9e\x49\x05\x37\xca\x4b\xcd\x09\x7d\xee\x40\x0d\x1e\x53\x3f\xd7\x90\x35\x1e\x22\x1d\x62\xd0\xc7\x43\x64\x8c\x87\xd0\x96\x56\xc1\x74\x29\x83\x59\x6d\x38\x12\xfa\xa6\xc5\xe9\x09\x08\x07\x59\x73\x2a\xdb\xd1\x2d\x04\x19\x43\x30\x5d\xf1\x3a\xa0\x44\x21\x73\x3c\x44\x4e\xf6\xc4\xe6\x67\x53\x26\x73\xfa\x56\xba\x1b\x38\xf4\x7d\xb4\xe1\x84\x7e\xa1\xf5\xd2\x21\xb3\xe1\x3a\x29\x34\xce\x2b\x30\x22\x9d\x1a\xe6\x86\xc2\xfd\x85\xae\xa9\x11\x1a\xd1\x41\x5a\x94\x27\xc1\x27\x0f\xd7\xb7\x35\x90\x76\x6d\x64\xd0\x2e\x46\xb6\x45\x9f\x48\xc8\x1c\x19\x54\xfa\x1d\x03\x2e\xa0\x5e\x0c\x85\x86\x39\x06\x77\xdd\x9c\x8a\xc6\xb4\x16\xb2\xe9\x7b\xc1\x75\x67\x98\x13\x34\xb2\x4d\x68\x80\x2b\x36\x1d\x70\xe4\x99\xe3\x39\x2d\xd6\xe1\x4d\x14\x98\x11\xf8\xf9\x9a\x6c\x55\x75\xac\xa9\x81\xfa\x1e\x22\x0c\x6e\x1f\x04\x08\xee\x33\xaa\x5b\xb1\x36\xba\x36\xe6\x47\x35\x1c\x73\xcc\xbf\x8f\xa9\xf8\x2a\xa5\xaf\xb0\x90\x33\x1c\x49\x59\x49\xf6\xc9\xdb\xb3\x5f\x1a\x33\x85\xb1\xef\xac\x1c\x62\x68\x34\x68\x4d\x9f\x98\x13\x2d\x2b\x35\x27\x94\x0e\x86\xe9\x6a\xa0\x4f\xc6\xff\xd6\x8b\x61\xfc\x14\x17\x43\x4e\xf8\x3e\xc1\x51\xb0\x3f\x42\x47\xb6\x3e\x91\x86\xc8\x1c\x59\xfe\x18\x4d\x8c\xa1\x04\xc7\x29\xe7\xc8\x76\x90\xa9\xdb\xc8\x19\x39\xc8\xa1\x92\xeb\x88\x8a\x0e\x86\x4e\xc5\x55\x64\x9b\x23\xaa\xd5\x3a\x68\xa2\x53\x41\x37\x2d\xa2\xe2\xa4\x41\x77\x70\x64\x8d\x8d\x8d\x85\x46\xce\x88\x0a\x1e\x86\x4d\x35\x5f\xfa\x8a\x89\x86\x0c\x88\xbf\x81\xd9\x1b\x81\x4a\x6c\x5b\x36\x72\x2c\x8b\x21\x7c\x3c\xa4\x42\xca\x88\xa2\xd3\xd6\xd0\x78\x38\x44\x43\x9d\x8a\xfa\xd6\x04\x39\xa0\x7b\xe9\x23\x0b\x59\x0e\x15\x9b\x6c\x87\xea\x5c\x74\xc3\x9e\x38\x16\x7c\x33\x10\xdb\x5f\xc7\xa0\x72\x5b\x50\x62\x82\xa2\xad\x81\xf7\x0e\x19\xa0\xc4\xeb\x06\xd5\x9e\x0d\xe8\x55\x83\x6e\x91\x45\x67\xd8\x1c\x6a\x68\x48\xa9\x68\xa8\xc3\xf4\xc3\x00\xc6\x98\xea\xf9\xf4\x5f\x4a\x25\x06\x1d\xab\x35\x1e\x6e\x40\xa7\xb5\x7d\x50\xdb\xd1\xc4\x1e\xbe\x19\x22\x90\xf8\x86\xb0\x38\xd0\x90\xf6\x37\x06\x8f\x9e\x6d\x39\xa0\xd8\x83\xc5\xc1\x72\x30\x15\xd0\x4d\x89\x7d\x32\x9d\x16\xe9\x60\x01\x98\x18\xe6\x9c\xae\x55\x64\x8c\x47\x48\x37\x20\x3a\x49\xd7\x47\x68\xe8\x38\xd8\x42\x63\xa6\xb9\x3a\x29\x15\x21\xdd\x32\x91\x69\x8f\x16\x74\x1d\x52\x44\xeb\xba\x8d\x74\xdd\xa2\x3f\x91\x6e\x38\x48\x1f\xd9\xd0\x9b\x3e\x34\x91\x4e\xd5\xe4\x09\x18\x2e\x8c\x09\x2b\x32\x86\x0e\x32\xc6\x0e\xb2\x2c\x0b\x59\xe6\x08\xd9\x93\x11\xb2\x90\x35\xa4\xcc\x09\x0d\x2d\x0b\x4d\xe8\xe7\x1b\x76\x26\xd4\xd4\x29\x58\xb6\x03\x04\x6b\xd2\xb5\x36\x84\xc3\xb6\x54\xc3\x1b\x52\xa4\x8d\x41\x29\xe1\x67\x44\x87\x14\x60\x6b\x04\xdf\x7c\xaa\x9b\xd8\x74\x31\x8e\xa8\x54\x0b\x9a\x8d\x6e\x69\xc8\x74\x1c\x34\xa1\x10\x8e\x0d\x13\x19\x86\x49\x9f\x20\x63\x6c\x68\x68\x08\xb4\x37\xd2\xd0\x58\xa7\xc8\x72\x4c\x88\x77\x30\x33\x4e\xa5\x1b\x23\x0d\xd9\x60\xa3\xaa\x20\xd2\x02\x23\xca\x64\xe4\xcc\x29\xa9\xd1\x11\x8e\x2c\x34\x34\x41\x59\xb3\x0d\x34\xb1\xe9\x37\xc7\x19\xfb\x9a\x81\xc6\x06\x15\xae\xf5\xf1\x0b\x2a\x93\x39\x92\x41\xa5\x6f\x60\xe3\x3a\x1a\x39\x0e\xfb\x62\xd9\xc0\x13\xcc\x11\xad\xa2\x51\x82\xa7\xf4\xae\x31\x7a\x87\x05\xa3\xf1\x05\x63\x52\x62\x33\x0c\x07\x0d\x29\x3e\xe8\x97\x31\xa5\x9a\x2f\x4b\x4a\xe3\xa6\x64\xa1\x91\xfd\xff\xb3\xf7\xa6\x5b\x6e\xe3\x68\xa2\xe0\xff\x79\x0a\x0c\xeb\xf4\x64\xd5\x69\x91\x16\xa9\xdd\xdd\xd5\x7d\xbd\xa4\x33\x9c\x15\x76\xba\x1c\x4e\x67\x77\x39\x7d\x6e\x41\x24\x24\x22\x83\x22\x94\x24\xa8\x08\xb9\x4f\x9f\x73\xdf\x61\xde\x61\x1e\x62\x7e\xce\xa3\xdc\x27\x99\x83\x0f\xe0\xbe\x4a\xa2\x22\xc2\xae\xe8\x7b\x2b\x1d\xe2\x02\x02\x1f\x3e\x7c\xfb\x32\xf1\xf4\x09\x88\xa6\xc6\x6c\x2c\xa3\x73\xc7\x86\x65\xcd\xbc\xb9\x31\x03\x37\xf2\x7c\x0e\x89\x4e\x53\x43\x3c\x09\x17\x21\xdd\x19\x09\xf8\x18\x8b\xd1\xec\x12\xa8\xd7\xc4\x33\x16\xb3\x99\x31\x31\xe7\x60\x02\x59\x8c\xd1\xd8\x18\x4d\x2d\x4f\xb0\x00\x30\xf1\x0d\xad\x09\x36\x8d\xe1\x50\x80\x66\x18\x47\x78\xe8\x72\x3a\x97\x02\xb1\x20\xe0\x67\x66\x7a\x02\x94\x23\x95\x30\x38\xc5\xc6\x64\x32\x12\xff\x4b\x71\x72\x6e\x0c\xad\x99\xa0\xd4\x42\xbf\x59\x18\xe6\x70\x66\x58\xd6\xd8\x18\x4d\xe6\xc6\x58\xfc\x3d\x1e\x1b\xe6\x6c\x6e\x4c\x8d\x11\x18\x5e\x87\x93\x85\x31\x11\x3a\x8f\x39\x33\x46\xa6\xc0\x76\x73\x2a\xe6\x29\x16\x3f\x11\xc7\xd5\xb4\x42\xcb\x98\x0a\x72\x20\x2f\x8d\x74\x71\x4d\xd0\x1a\x1d\xb0\x71\x2e\xd0\x69\x34\x1a\xc3\x58\x73\xb8\x69\x58\x13\x71\xe8\xe6\x23\x48\xbb\x36\x46\x42\x0d\x15\xb7\xc6\xc3\x59\xc5\x84\x17\xba\x98\xf1\x4e\x17\x67\xa0\x29\xc8\x42\x08\xe5\x53\x63\x36\x41\xe6\x0c\x4d\xbd\xee\xa1\x16\x1e\xf5\xaf\x7b\x74\x95\x0d\x67\x63\x29\x9d\x4e\x3c\xa1\x17\x40\xba\xb5\xb5\x18\xe3\x91\x31\x84\xb3\x3e\x4c\xce\xba\x80\x83\xb1\xb0\xa6\xb6\xa4\x29\x42\xff\x98\x4e\x4d\x01\x8f\x11\xbc\x29\xce\xd7\x4c\x28\x9f\x33\x63\x31\xb3\x8d\xe9\x78\x26\x88\xaa\x21\xc9\xcf\x50\x1c\x08\xa1\x82\x0f\x81\x79\xce\xe7\x82\x82\x0d\xe1\x50\x09\x26\x69\xc2\x67\xc7\x30\x85\x99\xc0\x1f\x6b\x6e\xd9\xba\x31\x15\x67\x0e\xce\xb1\x3c\xa7\x72\x0a\x70\x60\xe7\x23\x39\x03\x41\xf9\x46\x43\x41\x8d\xad\x31\x0c\xe4\xc1\x55\xf1\x1f\xf3\xc5\xc8\x18\x49\xdb\x19\xd0\x2d\xf1\x87\x69\xce\x10\xb8\x8d\x2d\x79\xaa\xe6\x73\x31\x27\x71\x5e\xa7\x23\x4b\xac\x0e\xbe\xe1\x01\x24\xf4\x1a\x48\x80\xda\xaa\x03\x28\x24\x24\x10\x40\x42\x00\x42\x02\x4f\xc0\xc1\x58\xcc\x04\x28\xf0\xc8\x30\x87\x02\xd3\xcc\xf4\x10\x2c\x84\xa6\x3d\x1a\x4e\xe4\xf7\x47\x30\x7d\xf1\x7d\x38\xc9\x00\x06\x80\x82\x2e\xa1\x60\x08\x18\x4f\x2d\xb0\xae\x82\xa1\x65\x1e\x7f\x7f\x34\x97\x60\x00\xca\xb4\x00\x70\x8a\xb7\x01\x08\x71\x6c\x87\x69\x8b\x77\x8d\x29\x1c\x5e\x08\x55\x9e\xcc\xe2\x31\xc6\x72\x27\x2c\x01\xc0\x05\xec\x84\x05\xab\x82\xf1\x37\xfa\xc2\x18\x8f\x66\x68\x6c\xcc\x47\x9e\x0e\x7c\xd8\x32\xb1\x24\x28\x8a\xac\xc8\xd5\x58\xa3\x99\x61\xc1\x80\x70\xf0\xa7\xc9\x32\xad\xe1\xc2\x30\xa7\x53\x63\x3e\x1f\x8b\xff\xc5\x97\x05\x95\x36\x61\x77\xad\x05\xc8\x1e\x13\x90\x3d\x86\xc0\x7e\xc5\x66\x0a\x69\x65\x08\xf4\x76\x68\x25\x82\xd1\x68\x38\x17\x54\xde\x98\x2f\x04\x31\x52\x87\x4d\x30\x53\xc1\x2f\xa1\x54\x81\xa5\xfe\xab\xee\x8d\x87\x42\x94\x19\xcf\x3d\xa1\xeb\x8a\xe9\x3f\x33\x8d\x21\xc0\x64\x98\x78\x1f\xe6\xc0\x4d\xcc\x91\x60\x2b\x43\x13\xe6\x32\x31\x4c\x98\x87\x61\x2d\xe6\xf2\x40\xc0\x96\x2e\x4a\x73\x1a\xc2\x9c\x8c\xd9\x04\x1c\xcc\xd6\x7c\x26\x96\x60\x4c\x84\x68\x21\x2e\x8f\xc5\x0e\x80\xcd\x7d\x6a\x0a\xf1\x4c\xf0\x97\xc5\x02\x24\x06\x6b\x21\xee\xcf\xe1\x5f\x00\x01\x4a\x40\x10\x43\x40\x20\x00\x58\x16\x2d\xc1\xb0\xac\xa1\xa0\x56\xc3\xa9\x04\xc2\x78\x32\x8d\xa1\x01\x53\x16\x82\x83\x29\xd6\x08\x42\xc6\x48\x1c\xa7\xf9\x70\xb6\x99\x1b\xc3\xc9\x44\x9f\x19\x8b\xf1\x18\x4e\x84\x09\x38\x6e\x02\x18\x26\x73\x49\xdd\x62\x6b\xd8\xd4\x18\x59\x13\x34\x69\x02\xc3\x14\x30\x66\x3e\x6f\x81\xc3\x48\x30\x42\x53\x4c\x45\xcc\x44\x4c\xc4\x13\xb0\x17\xc2\x90\x2d\x94\x0c\xc1\x94\xe6\x86\xb9\x10\xcb\x5d\x08\xbc\x11\x42\xdc\x68\x8e\x0b\xc8\x83\xa4\xd3\xa2\x84\x3d\x48\x60\x0f\x08\x51\x76\x06\x74\x31\xe4\xc4\xd7\x2d\x21\xe4\x49\x50\xc5\x90\x32\x66\x13\x9c\xc5\x1b\x78\xbf\x1a\x6d\x74\x20\x54\x02\x6b\xc4\x8c\xc5\xcc\x6d\xc3\xb2\x0c\x6b\x24\x54\xaa\x89\x31\x9a\x8c\x8d\xd9\x62\x04\xff\x36\xec\xdc\x02\xf0\x66\xde\xb6\x71\xd6\x7c\xa6\xf0\x7e\x02\xa1\xdf\x70\xab\xcd\x22\xe9\x31\xec\x50\x7f\xdd\xdd\x16\x03\x8f\x3c\xbd\x15\x5c\xa3\xea\x41\x73\xb1\x58\x3c\x81\xbb\x5a\x25\x3b\x81\xda\xd9\x7f\xd6\x64\x19\xf6\x28\x20\x3a\xb5\x99\xaf\xab\x59\x68\xff\xf6\xaf\x0e\x59\x85\x8a\xa1\x84\x3c\x60\xd7\xa4\xa8\x40\xcb\xab\xba\x32\x09\x8d\xe2\xe5\xf9\xcc\x27\x1a\xa2\xce\x9f\x35\xac\xc5\xea\xee\xc4\x9b\xa2\xd1\x6e\xee\xe9\x53\x34\xd2\xa7\xfa\xe8\xe3\x5c\x9a\x7a\xe4\x37\xa2\x90\x20\x98\xe8\x53\x37\x20\xab\x3f\x6b\x7f\xc0\x2d\xb3\xd3\x97\x38\x24\x62\x80\xc3\xdf\xdc\x06\x6c\x1d\x90\x30\xcc\xea\xfa\x90\xc0\x61\x7b\x2c\x24\x4e\x8f\xe1\x43\x68\xee\xea\xe6\xc7\x29\x58\xe9\x66\x53\xc9\xc5\x26\xe2\xff\x5d\xcd\xd0\x48\x90\xe8\x19\x9a\xee\xac\x8b\x69\x39\xf8\x79\x58\x74\xd7\x5b\x45\x77\xbd\x78\xa4\x98\xfc\x3a\x32\xe6\xb3\x29\x9a\x08\xbd\xe8\x62\x61\x8c\x67\x10\x78\x66\x2e\x84\xc6\x05\x34\x7c\x34\xb2\x74\xf8\xfb\xcb\x1b\xa1\x03\xa0\xf9\xc5\xdc\x58\xc0\xfc\x4c\x63\x06\x6a\xd5\x42\x68\x58\x82\xa1\xc1\xbf\x70\x75\x88\xe4\x9f\xa3\x05\x52\xf7\x3a\x54\x2c\x02\x78\xc6\xc1\xcf\x7d\xd6\x81\xb2\x4c\x63\x36\xbf\x14\x52\x2d\x9a\xa0\x11\x9a\x1a\x96\xe5\x09\xc9\x5b\x48\xa5\xe3\x17\x10\x5f\x3c\x37\xa6\x68\x8c\x16\x42\x04\x13\xd2\x4f\x25\x30\x0d\x0b\x1c\xff\x4a\x71\x9c\x0a\xf1\xd0\xba\x34\x17\xc6\x6c\x8e\x04\x9f\x57\xdf\xf9\xf2\x66\x6e\x2c\xd0\x11\xf0\xb9\x58\x18\xd3\xe9\xa5\x35\x84\xc0\xe9\x71\x79\xaf\x6a\xd0\x42\xb7\x8c\xc9\x14\x4c\x2d\xe0\xae\x5f\x8c\xf4\xb1\x01\xd2\xf7\xf8\x52\x4c\x44\x08\xc4\x1d\xc2\x66\x64\x32\xd2\x96\xf4\x98\x89\xd1\x09\x93\x5d\xd3\x58\x1c\x01\xaa\xbe\xb0\x1f\xa2\x55\xa6\x1f\xcd\xa1\x6b\x8a\x21\xe2\xe3\xa0\x0b\x69\x70\xd4\x72\x1c\xda\x40\x0a\x6d\x7f\xf4\x2d\x8e\xc2\xc4\x04\x78\x0e\x4b\xb9\x89\xcc\xdd\xd4\xb5\x3e\x9a\x17\xe6\x97\xcd\x18\x0d\xd5\x8f\x5c\xb9\xa2\x78\x2e\x1e\xde\x9f\x7d\x2a\xde\x54\x07\x5a\x9d\xfd\xfe\x86\xf8\x51\x5f\x78\x35\x46\x26\x04\x17\xe9\xd6\xc5\x58\x16\xc4\x9b\xe4\x7f\xce\x76\x96\x6b\x4e\x3f\x4e\x2f\xda\x33\x90\x36\xd4\x8f\xc2\x07\xea\xcd\x83\xec\x82\xd9\x4e\xb7\x5c\x73\xd8\x81\x78\xe6\x96\xd2\xb7\xe5\x79\x86\x4c\x73\x07\x13\xd1\xad\x8b\xd9\x97\xcd\x44\x5f\xdc\x93\xfb\xab\x1b\x18\x7a\x2f\x48\x62\x8e\x2e\x26\x3b\x59\x74\xa3\xdb\x0c\xce\x55\x39\xa4\xb7\x9a\x17\x16\x32\x87\x87\xa0\x17\x0b\x88\x0e\xf5\x71\x99\xcf\x71\x7f\x6b\x9a\x22\x73\x58\x5c\x51\x18\xaf\x24\x59\x40\x66\xe2\xa6\x85\x0e\x7b\x41\x9f\x1e\xf6\x42\x27\x48\xec\x48\xc0\xa9\xdd\x23\x1c\x4c\x0b\xcd\x0b\xbb\x16\x26\x73\x4a\xe6\x8d\xe2\x79\x8b\x13\x64\x1d\x04\x86\x21\x2a\xf1\xcc\x53\xa0\xb0\xf5\x1e\x34\xe1\x74\xf5\xf1\x4e\xd5\x49\x95\x48\x3e\x86\x02\xb8\x63\x77\xdc\x01\xd7\xb3\x6b\xeb\xdd\x87\x37\x42\x10\xa3\x21\xa6\x65\xb9\x62\x92\x90\x9b\xa4\x42\xb1\x3f\xce\xbe\x6c\x74\x53\x56\xc1\x7d\x80\xc4\x15\x00\x73\x06\xda\xea\xea\x60\x0b\xb5\x20\x8f\x45\x40\x62\x0a\xd9\xab\x5d\x12\x38\x60\x4a\xe7\x23\xb6\x07\x27\x1c\xd5\x91\xda\x53\x10\xf2\xf7\x88\x44\xbd\x65\x7b\x9b\x0b\xb4\xb8\xb0\x04\x33\x9f\x7d\x5c\x80\xf4\x14\xff\x1a\x7f\x79\x63\x21\x73\xea\x42\x12\xf0\x85\x8c\x20\x1a\xa2\xf1\x4e\x9f\x7a\xba\x50\x9b\x26\xa8\xb5\xa8\x41\x40\x56\x01\x09\xdd\xde\xe6\x3a\x33\xa6\x13\x34\x35\x46\x93\x67\x33\x28\xa7\x2a\xff\xab\x6c\x54\x16\x1a\x27\x39\xa9\x33\x63\xb1\x80\xfc\x50\xf9\x17\xe0\xfa\x0c\xc1\x0b\x0b\x34\xb7\x47\xc6\x4c\xa8\x6e\x53\x99\x3c\x3c\x99\x40\xe8\x81\x2e\x50\xce\x18\xce\x9f\x4d\xc4\x43\xf0\x9f\x34\x96\x73\x6e\xeb\x23\x63\x24\x0e\x90\x50\x5c\xa6\x0b\x7d\xaa\x4f\x43\xf9\x07\x9a\xea\xd3\x24\xf5\xdf\x30\xc7\x32\xf9\x14\x5c\x3e\xb3\xf9\xa5\x39\x12\xe4\x67\xf6\x11\x2c\xd7\xa3\x89\xd0\x18\x5a\x6b\x05\x05\xd1\x69\xae\xd3\x1a\xdb\x45\x10\xf9\xda\xbf\xfd\xeb\x3a\x67\x5f\xa9\x88\x5e\xf8\xb7\x7f\x95\xb4\x0e\xd9\xb7\x7f\xd6\x4c\x4b\x43\xf6\x5e\xfe\x1b\x80\xc0\xdf\xc5\x88\x33\x16\x8b\xa9\x1f\x65\xd2\x6d\x14\xab\x61\x21\x39\x03\x4c\xfd\x97\xea\x8d\x65\xeb\x04\xda\x21\xc1\x81\xed\x16\xcb\x0e\x67\xab\x0e\x97\x8a\x0e\x23\x71\xed\x50\x17\xb6\xe4\x43\xc6\x6c\xe1\xe9\x86\x35\xd7\x0d\x6b\xf6\x6c\x6a\x8c\x67\x26\x92\xff\x55\x58\x3c\x82\x02\x24\xf1\xff\x04\xfa\x0d\xe1\x2f\x73\x24\x70\x4c\xaa\xbf\xc3\x85\x2e\x88\xf4\xd8\xb0\x20\x44\x7f\xe6\x19\xd6\xcc\xb0\xe6\x3b\x31\xf6\x04\x8d\x8d\xc5\xe2\x52\x06\x99\x9b\x53\x4f\x68\xff\x0b\x7d\x22\xe5\x9e\x17\x63\xf0\xab\x99\xc8\x42\x73\xc8\xea\x10\x43\x5f\xc1\xc5\xa4\xf0\x89\x89\xe2\x87\xc4\x05\x78\x4c\xfd\x6d\xe6\x4a\x4e\x84\x84\x73\xea\xaf\xfb\x4b\xa0\x5e\x40\x09\x4e\xcb\x58\xcc\x6d\x63\x38\xd6\x8d\x11\xc4\x2b\x1a\x53\xa8\xe0\x6b\x2c\xe6\x60\x48\x1e\xeb\xc6\x70\x04\x61\xab\xea\xaa\x67\x19\x10\x5d\x3e\x9d\xd8\x86\xb9\xd0\x0d\x73\x02\x6e\x9e\xb1\x65\x98\x96\x78\xd9\xd3\x85\x7e\x3e\x9e\xda\x3a\x5c\xb0\x2c\x1d\x3c\xea\x62\x0c\xf0\xa7\x8b\x63\x29\x20\x65\xeb\xc6\xc4\x82\xf0\x0a\x03\xcc\xac\x23\xc8\x22\x87\x2f\x40\x01\x0e\xcb\x98\x4e\x9e\x19\xe3\xf9\x3c\xad\x79\x8c\xcc\x31\x12\x5c\xda\xd6\x0d\x6b\x02\x01\x24\x53\xc3\x9c\xeb\xc6\x78\x61\x8c\x2d\x78\x0b\x89\xb7\xa4\x97\x0a\xb2\x6e\xa1\xea\x20\x0c\x6c\x48\xab\xf9\x78\xa1\x8b\x2f\x5b\x23\x1d\x36\x75\xbc\x10\xc3\x88\xa7\xc5\xbc\x50\x3c\xef\x11\x4c\x7b\x28\xb6\xd4\x30\x2d\xb1\x28\xb1\x68\x64\xca\xc1\x21\xa6\x1f\x6e\x4f\x27\xf0\xcf\x02\xc2\x1f\x46\x23\x63\x38\x32\xa6\x53\x79\x45\x7c\x2c\x7d\xc5\x5c\x18\xe6\x44\x37\x2c\x41\x2d\xf5\x78\x48\xf9\x39\xf1\xcb\xb2\x8c\xd1\xc2\x18\xa9\x89\xa8\x59\x1a\x13\x0b\x2a\x31\x0c\xe7\x82\x78\xc6\x6b\x48\x16\x29\x3e\x66\x8d\xe5\x90\x12\x02\x2e\x04\x9d\x80\x85\x0c\xc2\x1a\xc4\x30\x02\x30\x31\x34\xa5\xdf\x0a\x5c\x05\xe6\x4c\x97\x45\xe5\x14\xc4\xd5\x96\x18\x96\xc0\x75\x80\x0a\x8a\xb7\x4b\xed\xa6\xda\x4c\x40\x02\x31\x6e\xb2\xd9\x31\x36\x40\xf5\x06\x73\x62\x80\x7e\xb4\x18\xa1\xa1\x10\x6c\xe0\xb4\xe8\xca\x93\x1a\xc6\x3f\xe2\x2c\x76\x34\x92\x49\xfa\x33\x14\x5f\x8c\x7f\xc4\x77\x5b\xc5\x8f\x90\xe3\xbe\x73\xcd\x64\x64\xff\xec\xd2\x9c\x1b\xe6\x1c\x59\x26\xf8\x6a\xc6\xfa\xcc\x18\x8e\x2e\x2d\x0b\x2d\xc0\x29\x3a\x03\xdc\x9f\x9a\xb2\x53\xc0\xc2\x30\x17\x68\x6e\x4c\x47\x48\xdd\x9f\x18\x90\x0d\x30\x1b\x5d\x4e\x20\x4f\xa1\xbd\xe8\x17\x2c\xa4\xf7\x34\xb3\xc2\x74\xad\xae\xd3\x8d\xf3\x1b\x66\x28\x07\x85\x51\x0e\x0a\xf1\x8e\x8f\x3d\x7d\x64\xcc\xc0\x47\x39\x43\x26\xe4\x9f\x0a\xde\x6d\xe9\x96\x31\x9f\xa3\xb1\xac\xa6\xa3\x42\x18\x4c\x0f\x6c\x8a\x63\x63\x08\xf1\x09\x73\x71\x53\x3c\x8b\xe0\x59\x71\xc3\x92\x55\x5d\x27\x1d\xea\xd7\x84\xd1\x52\x3f\x43\xe3\x02\xd3\x44\x0b\x2f\x9b\xea\x3d\x1f\x21\x73\x7c\x61\xce\x3f\x0a\x65\x01\x2a\x4f\xcb\x9e\x06\x52\xe2\xb9\x14\xe4\xdd\x84\x32\xfc\x07\xcc\xb8\xdf\xa2\x64\x42\x8a\x9f\x78\x71\xf1\x9f\x34\xd9\xdc\x9c\x21\x73\x7a\x31\x96\x13\x1f\xba\x0b\xc3\x9c\x79\x52\x1f\x91\x33\x1f\x75\xa8\x2c\x18\xde\xe0\xed\x59\x2c\x0f\x92\xd3\x5d\x8e\xc4\xd4\x93\x2a\x38\x17\xb2\x8e\xc4\x54\xd6\xc8\xf9\xf2\xc6\x12\x9b\xa1\x8b\xdb\xfa\x78\x37\xba\x30\x87\x3b\xcb\x9d\x19\x43\x73\x37\xba\x14\xb7\xba\xcd\xbe\x7f\x6b\x01\x64\x95\x0d\xa1\x4c\x81\x6e\xed\xc4\x9f\xae\x3e\xba\x34\x27\x02\x13\xc6\x30\x5d\x57\xcc\x7e\x81\x46\x97\x42\xb0\x58\x2c\xdc\xd1\x47\x73\xec\x5a\x1f\xe5\xdf\x97\x8b\x76\x59\x5e\xe3\x94\x04\x3a\xf1\x39\x09\xb6\x01\x0d\x4f\xa4\x0a\x07\x78\x1d\x73\x2e\xc4\x18\xbb\x4c\x63\x36\xf9\x38\xf7\xf4\x99\x3e\xd6\x67\x68\xbc\x9b\x7b\x50\x65\x4b\x1f\xef\xc4\x81\x87\x64\x6b\x64\x4c\x66\xa6\x60\xa3\xa6\x61\x8e\x47\x1f\x17\x06\x54\x74\x9d\x41\x19\xd7\xc9\x6e\x64\x2c\xa4\x70\x20\xef\xce\x8d\x89\x37\xd5\x47\x10\x72\x83\xc4\x3f\xbb\x91\x31\xb7\x4c\x59\xec\xcc\x83\x5a\xb3\x43\x4f\x5f\xa0\x89\xbe\xd0\x27\x1f\x67\x1e\x88\x54\x42\x32\xb3\x26\xd0\x9b\x63\xb8\x13\x64\x07\xa2\xea\x2f\x17\x48\x20\xcd\xd8\x13\x22\xc4\x4c\x31\xa2\x19\x8c\x3e\x9b\xec\x20\x78\x44\x97\xdf\xd0\xe5\x17\x77\x10\x51\x02\x64\x66\xf6\x25\x76\x79\x3e\xf9\xb7\x7f\x15\xb4\x17\x07\x3f\x04\xd8\xa1\xc4\xe7\xe8\xd6\xfc\xb3\x36\x19\xfe\x93\x86\xf6\xe6\x9f\x35\xf1\xef\xad\x15\x5f\xb0\xfe\xac\x99\x43\xf1\x97\x78\x77\xa9\xfd\xdb\xbf\x86\x9c\x6d\x91\xf8\x8f\x6e\x8b\x6d\xfc\xb3\xf6\x87\x57\xaf\x5e\x69\xf2\x0a\xdb\x62\x9b\xf2\xfd\x9f\x35\xc3\x9a\x68\x88\xad\x56\x21\xe1\x30\xe0\x93\xae\xef\x65\x5e\x83\xcf\x0a\x24\xc9\x4f\x36\xf1\xc9\x76\xd0\x36\x36\x38\xbc\x86\x89\xdb\x31\x06\xfe\x61\xb5\x5a\x69\x95\x5e\x59\xf1\x25\xf1\xbc\xbc\x59\x15\x8e\x5d\x7e\x01\xf0\x46\x3e\x1a\x05\xde\x1f\xff\xb0\xfc\x93\x86\x72\x6b\x11\x03\xaa\x7b\xf6\x9f\x12\x5f\x73\x6e\xd7\xbf\x14\x74\x06\x79\x18\xd8\xa9\x25\x3e\x4e\x3a\x05\x8d\x88\x69\x5d\x4e\xd0\x3c\x3d\x15\xea\xa8\x7c\xd9\x18\x43\x21\xdb\x5f\x9a\x73\x34\x37\x26\xbb\xd9\xa5\x69\xc9\x2b\x90\x90\x3a\x31\x26\x3b\x3d\xb9\x36\x79\xc4\xc5\xaf\x02\x17\x79\x80\x7b\x34\xb1\x4c\xd1\x0c\xa4\x8a\x62\x01\xf2\x79\xa9\x00\xb9\x7c\xce\x9d\x7f\x9c\x7d\xd9\x8c\x74\xf3\x62\xf2\x71\xec\x8e\x8c\x89\x67\xea\xa6\x3b\xf1\x4c\x64\x5e\x98\x8b\x9d\xf5\x65\xa3\x03\xb9\x36\xe7\xf3\x8f\x33\xd7\xdc\x99\x43\xf1\xa7\xab\x9b\x50\x4b\xb7\x70\xa9\x85\x05\xf1\xc8\xef\xcd\xee\x35\x42\xe6\x6c\x67\xb9\xe0\x28\x1c\x7d\x79\x33\x42\x13\x70\x68\x7d\x9c\x5c\x8c\xbe\x6c\xcc\x21\x02\x17\xa2\x3b\x07\x3b\xec\x5c\x65\x7a\x4d\x5d\xeb\xcb\x9b\x19\x5a\xec\xac\x8b\x11\x58\x6b\x2d\xd7\xfa\xb8\xb8\x98\x7d\xd9\x98\x63\x04\x72\x82\x72\x8b\x09\x6d\x5b\x17\xec\x75\xe6\x8e\x3f\x4e\xa0\x4c\x15\xbc\xdf\xca\x63\x23\x7f\xc5\xbc\x9e\x8b\x07\x41\x59\x5d\x13\x4a\xed\x82\xec\x68\x0d\x65\x21\x72\x90\x23\x41\x26\xb3\x72\x35\x8d\xa1\x0c\xa0\x3e\x96\x16\x86\xc9\xe2\xcb\x66\x21\xb4\x5a\x73\x64\x98\x73\x25\xc3\x8d\x21\x67\xd9\x80\xda\xf2\xf3\x91\xa0\x30\xb2\x42\xb8\x2a\x71\x3e\xf4\xc4\x7b\x30\x42\xd7\x05\xf7\x5b\x4f\xc8\x42\x13\x63\x3e\x52\x93\x5d\xe4\xd7\x36\x92\x93\x9d\xc9\xf2\xc3\xf3\x11\x92\x3d\x03\x8c\xf9\x48\x7a\xff\x8d\xd1\x58\x89\xd8\x13\x59\x24\x39\xae\x8d\x0e\xa2\x54\xbc\xae\x58\x98\x95\xdd\x08\xe6\x46\x7b\x50\x6e\xb4\xed\xb3\xfa\x99\x90\x38\x5c\x28\x69\xb4\xd3\xa7\xae\xd0\xa8\xc4\xff\x43\x33\xb1\x86\xfe\xaa\x9f\x69\x51\x28\xb8\x5c\xb0\xc6\x3e\xfd\x82\xfb\xad\xcb\x69\xa1\xd9\x47\xc8\xe1\x9b\xbb\xd6\xf0\xe3\xec\xc2\x84\x72\x98\xe6\xe2\x62\x9c\x6d\x6d\x57\xfc\xf5\x71\x91\xfd\x31\x91\x3f\x04\x3a\x5e\xcc\x73\x0f\x16\x7e\x65\x5f\x9b\xc7\xaf\x89\x43\x1e\x1f\xee\x38\x97\x33\xfd\xf3\xe3\xc2\x9d\xcb\x08\x10\x4b\x9f\x43\x9a\xa7\xab\x9a\x14\xa2\x71\xe6\x67\x27\x08\xf6\xec\x22\xb1\x90\x69\xd9\x32\xe1\x13\x6a\xd1\xce\x16\x90\x48\x9b\xc9\xd7\xcc\xe4\x81\x26\xd9\xb5\x68\xac\x9c\x84\x96\x31\x9d\xa1\xa1\x0e\xa1\xbe\x63\x7d\x8e\xc6\x10\x1f\xb1\xd3\x65\x22\xe8\x74\xaa\x4f\x8c\xd1\x48\x1f\xeb\xf3\x0e\xf5\xcb\x61\x79\xe7\x70\xb7\x8c\xa0\xbb\xc3\xc1\xde\x95\xa2\x87\x06\xfc\xc3\xb2\x00\x28\x64\xb5\x8f\xc6\x68\xa4\x8f\xd0\x28\xd4\x47\xba\xac\xc2\xab\xcb\x6a\xbd\xb2\x1c\x6f\xa6\x74\x2f\xf0\x2d\xc8\x57\x46\x63\x08\x3e\x12\xb2\xba\x19\x42\x3a\x07\xa8\x08\xe6\xce\xbc\x98\xee\xda\x99\x56\x0e\x46\x5f\x55\x17\x0c\x34\x7b\x00\x80\xe3\x04\x6f\x7a\xad\x3a\x8f\x20\x10\x6c\x34\x87\x72\x2a\xe3\x05\x14\x22\x90\x7f\x59\xc6\xe4\xca\x9c\x19\xf3\x39\x82\x6a\x2d\x13\x34\x2b\x34\x88\x1b\xa2\x09\x54\xf4\x4d\x2a\x3d\x5b\xc6\x62\x21\x81\x03\x7f\x8d\xae\xcc\xa1\xb8\x31\x41\x0b\x34\x79\x31\x13\xd7\x85\x3a\x39\x15\x7f\x4c\xd1\x3c\x8c\x41\x24\x80\x34\x33\x26\x68\x24\x76\x0a\xd2\x14\x26\xc6\xc4\x58\x58\xe2\x1f\x64\x09\xcd\xd6\x5c\xb8\xa6\x29\xf5\x42\xd8\x98\x39\xa4\x53\xce\x74\x71\x53\x3c\x05\x7f\xc8\xea\xc2\xe2\x40\x8f\xc4\x18\x33\x69\x48\x05\x83\xa5\x18\x60\x96\xbc\x6f\xcc\xe1\x48\x5b\x72\xa2\xa3\x99\x3e\x32\xc6\xb3\x17\xe6\x10\xdc\x0a\x86\x89\x16\x50\xc1\x01\x58\x61\xbb\x19\x60\x47\x43\xba\xa4\x1e\xe5\x7b\xdd\xa5\x4e\xaf\x5c\x7b\x66\x5b\xc6\x4c\xc0\x55\xa6\x29\x40\x6f\x9f\x21\x02\xb3\xb6\x39\x52\xb5\x7e\xa0\x38\xc0\x7c\xe4\x59\x06\xd4\x72\x58\x88\xcd\x9c\x40\x79\x99\x29\x54\x5b\x87\xfa\x81\x23\x63\x3c\xd2\xc7\xb2\xb0\xf8\x4c\xfc\x35\x5a\xe8\x53\x7d\x66\x4c\x74\xd3\x94\xff\x40\x52\xa3\x65\xcc\xc6\x42\x0d\x1f\x19\x8b\xb9\x31\xf3\x2c\xc3\x9c\x42\x3a\x90\x00\xcd\x4c\x48\x35\xe0\xbc\x33\x46\x13\x55\xa5\xe5\xcb\x1b\x0b\x8d\x0d\x4b\x3c\x69\xc9\x68\x77\x63\x3c\x35\xc6\xd3\x67\xa6\x69\xcc\x87\x63\xa4\xfe\x19\x26\x7e\x43\x5b\x7c\x1e\x41\x9d\x97\xa9\x10\x39\x10\x64\x39\xcb\x94\x56\xe9\xc9\x19\xe9\xc6\x48\xd9\x24\xe7\x63\x0f\x6c\xe7\x32\x86\x14\x9a\x8c\x59\xa6\xec\x48\x89\x46\x86\x35\x43\xb2\xae\x9c\x35\xfb\xf2\x06\xba\x39\x2d\x8c\xb9\x67\x1a\x2a\x41\xd6\x96\xc9\x8b\xa6\x6e\x0c\xe7\x62\xf1\xe2\x9f\xe9\x44\x25\x9e\xa0\x14\xf1\x90\x01\x59\x68\x50\xfb\x63\x38\x92\x1e\x83\xfc\x30\xd3\x99\xc0\x15\x21\xf4\x18\x13\x48\xdb\x91\xff\x88\x7d\xd1\x27\x49\xd0\x26\x64\xd8\x2d\x0c\x28\xf1\x34\x52\x0f\x7e\xd9\x8c\x21\xd7\x60\x36\xf7\x46\x86\xa9\x8a\xbb\x0f\x2d\xdd\x30\x65\xf4\xab\x22\x24\x82\x74\xe8\x23\x4f\x37\xc0\x64\x75\x08\xbe\x85\x2e\xbb\xe9\x13\xdf\xc6\xc6\xe4\xc5\x0c\xa9\x3a\xfd\x42\x30\x9c\x9a\x4d\xdb\x16\x2e\x0c\x6b\x06\xd9\xa3\x48\xa2\x91\x5d\x83\x5e\xca\xe4\x63\x97\xc1\x16\xca\x3f\x90\x6c\x1a\x13\x23\xb9\x2e\xff\xd0\xa1\x4a\xe0\x50\x07\x55\x4b\xd0\x97\x0c\x89\xcd\xd0\x0e\x34\x4a\xe8\x71\x06\x9e\x6d\x70\xbc\xc1\x81\x7f\x50\x5a\xc0\xc1\xd1\x9e\x23\x63\xb8\x40\x43\x81\x88\x90\x7f\x69\x82\x13\xcf\x14\x57\x2f\x8d\xa1\x85\xa6\x06\x94\x82\xb1\x8c\xe1\x04\x50\xcf\x1c\xc9\x7f\x16\x3b\x63\x0e\x99\x21\xc3\x89\x31\x1c\x1b\xc3\x85\xfc\xff\xee\x54\x5c\x36\x64\x32\x18\xa4\xcc\x8d\xe5\x3f\x8b\x9d\x0e\x2f\xe8\x72\x20\x28\x66\x25\x9d\x82\xe6\xe2\x72\x6c\x0c\x4d\x63\xb8\x78\x06\x05\xae\xcc\x71\x2c\x3c\x8c\x04\x51\x1f\xba\xe2\x45\xa1\xea\x8d\x5c\x53\xa8\x70\x1f\x41\xe4\x17\x3f\xcc\x8b\xd1\xc7\x69\xc6\xb9\xf9\xdf\x55\x0d\xc5\x39\xd9\x6c\x3d\xcc\x49\xf8\x04\x7b\x1e\xb3\x41\x1e\x3e\x6b\x87\xf1\x1d\x0e\x10\x57\x2d\xdc\x2f\x3e\xbc\xb9\x7c\x8e\x83\xd0\x88\x67\xf1\xc7\xff\xa2\xce\x53\xed\x87\x1f\xdf\x7e\x78\x1b\xde\xfc\x4d\x1b\x2c\x65\x4b\x84\xff\xd2\xc2\xfd\x66\xc9\xbc\x50\x7b\xfa\xe9\x33\xb8\x71\x38\x81\x16\xec\xda\xd3\x4f\x9f\xc6\x03\x6d\x8b\xd7\x44\xf7\xf0\x9e\x45\x5c\x1b\xf8\x91\xe7\xc9\xff\xfc\x57\xe1\xc9\xe1\x40\x43\x48\xfb\x3c\xf8\x64\x0e\x3e\x59\xd6\x40\x13\x72\x0b\xe1\x62\x85\xd8\x0b\xc9\xe7\x81\x78\xe0\xd7\x5f\x7d\xed\xf3\x67\x31\x64\x80\x37\x84\x93\x00\xbe\xf9\xdf\x30\xa0\xb8\xee\xe2\xf0\xfb\x1d\xf6\xb4\xa7\xf0\xce\x7f\x7f\x37\xd8\x10\x8e\x9f\xfe\xd7\x06\x96\xfe\x16\x6f\xc8\xd3\x16\xd8\x1a\xee\x32\xd4\xf2\x9d\xde\x79\xe7\x8d\xc9\xfc\x7d\xcf\x7b\x64\x8e\xd7\xbf\x98\xef\x5e\x7e\xe9\xb6\x47\x1d\x00\x7e\x32\x60\x33\x7f\xf7\x05\xe3\x27\xd4\x77\xc8\xed\x3d\x43\xfa\xe7\xd5\xf4\xf9\xf7\xd6\xfa\x65\x25\xa4\x35\xae\x0d\xb4\x80\xdd\x68\x83\xcc\x5f\xd1\x36\xe4\x81\x90\x30\x07\x15\xb7\x2b\xf7\x66\xae\xce\x10\xa7\x5c\x4c\xf9\x93\xf6\x2c\x81\x01\xd2\x06\x9f\xac\xf1\xe0\x93\xb6\x61\x0e\xf1\xb4\x81\xe6\xe3\x0d\xd1\x3e\x7f\xfe\x2c\x8f\x44\x69\x2b\x07\x9f\x66\x03\x2d\x24\xb2\xe1\xc5\x80\x07\x91\xb8\x69\x0e\x07\x1a\x44\xbd\x68\xe9\xbd\xcf\x83\x4f\xf3\xdc\x7b\xe3\x81\x46\x57\xda\xe0\x93\xfc\x1c\x09\x02\x16\x24\xdf\xa9\x3e\xcb\xf2\x34\xcf\x06\x9a\x43\x77\x95\xdf\xf2\x19\xa7\x2b\xaa\x16\x42\x43\xdd\xc1\xfe\x9a\x04\xf9\x4f\x23\xd4\x61\x20\x9b\x79\xd1\xc6\x0f\xab\xde\xec\xf8\x6e\xf5\xab\xc9\xcb\xee\xa8\xf2\x5d\xd8\x10\x31\xf3\x71\xfc\xbe\x39\xc8\xc2\x47\x3d\x21\x4e\x50\xbc\x11\x8b\xfa\x8f\x6c\x93\x6f\x54\x8d\xe4\x90\xd0\x0e\xe8\x56\x6e\x4e\xd3\x78\x5a\xed\xd5\x56\x28\x88\xa5\xd8\xe0\x6e\x23\x8e\xf8\x7b\x43\x7d\xba\x89\x36\x2d\xc0\x59\x46\x9c\xd7\x60\x93\xbc\x95\xdf\x5b\xd3\x1c\x68\xcc\xb7\x3d\x6a\x5f\x6b\x12\xb9\x55\xff\x15\x81\x5b\xa3\xc1\x70\xf0\xe9\xf3\x67\xb5\x76\xe6\xbf\xa4\xe1\x86\x86\x61\x8a\xd1\xe9\x54\x7e\xba\xc6\xfb\xfa\xb5\x16\xaf\x96\xaf\xe5\xaf\xd4\xb3\x95\xf4\x9d\x18\x19\xcc\x06\x64\xb8\xa1\xdc\xd5\x5d\x82\x9d\x80\xb1\x0a\xc0\x65\x4f\x6e\x66\x93\x0b\xa7\xb7\x70\x6c\x33\xb0\x0e\xb7\x38\x03\x69\x33\xf9\xfa\x27\x6b\x31\xf8\xa4\x2d\xa3\xcd\x96\x04\x10\x0a\x80\x38\x5e\x97\x88\x83\x38\xa4\x51\xf8\x02\x5e\xf9\x2c\xfe\x2f\x8f\x6a\xf1\x63\xb6\x47\x89\xcf\xaf\xe0\xe1\x7a\x5c\xab\x9c\x51\x16\x1e\x78\x2d\x36\xde\x65\x9e\xc7\x6e\xc4\x5f\xe1\x06\x7b\x1e\xf2\x99\xce\xc9\x2d\xd7\x79\x80\xfd\x70\xc5\x82\x4a\xec\xaa\x82\x0d\x75\xaa\x21\x93\x3e\x3d\x57\x7d\x61\x62\x84\x04\xd2\xf4\xe9\x93\x58\xcf\x76\xc9\x70\xe0\x7c\x20\xb7\x82\xbf\x7d\xaa\x18\xf8\x73\x2d\xd4\x17\x0d\x64\x30\x19\x22\x7c\x1f\xf9\x42\xd6\x6d\x25\x89\xb9\xd9\xf2\x1b\xa6\x87\x9c\x6c\x4b\x33\xa6\x8e\x47\x60\xb2\x71\x4b\xd3\xf8\x07\xf3\x57\x34\xd8\xe4\x7f\x01\x3a\xbd\x21\x61\x88\xd7\x44\x1b\x68\xf8\x06\x53\x4e\xfd\xf5\x8b\xcc\x5d\x41\x3f\xe2\xa4\x46\x71\xfa\xd4\x3d\x31\x15\xed\x8a\xb3\xad\x36\xd0\x5e\xc0\x77\xb4\x81\xf6\x9f\x24\x1c\x20\x75\xf1\x59\x40\xd0\x9e\x45\x28\x8c\x02\xf2\xef\xe8\x83\x4b\x43\x74\x43\x3d\x0f\x05\x24\xb4\x5d\x22\x38\x28\xe2\x2e\x41\x29\x4f\x46\xcc\x47\x18\x39\x74\xb5\x22\x42\x23\x40\x12\x95\x8c\x18\x11\x43\xce\xb6\xcf\x32\x42\x52\x0e\x70\x12\x26\x82\xd8\x7d\xea\xf6\xb4\x78\x26\x20\x21\xc7\x01\xaf\x7d\x2c\x66\x84\x92\x8b\x92\x00\x30\xae\xe6\x03\x29\x91\x69\x47\xb4\x07\xb1\x75\xef\xe5\xe2\x4b\xbb\x97\x5e\x6f\xd8\x40\xf1\x44\x71\xf7\xa8\xaf\x6f\x3d\x6c\x93\x64\xc3\xda\xc0\x7b\xf7\x7b\x56\x7e\xb9\x61\xdb\x5a\xa8\x7a\xf1\x80\x67\xa9\x7c\x1d\xa7\x5c\xb2\x5b\xe2\xe8\x4a\x4c\x4a\xc8\x5a\x99\x88\x1d\x32\x8c\xbe\x64\xce\x1e\x51\xdf\xa3\x3e\xd1\x41\x5e\xa5\x52\xd3\xab\x17\x85\x6a\xc9\xae\x87\x97\x24\x3b\x9d\x0c\xc7\x79\x49\x38\xa6\x5e\x58\xc7\x1e\x9b\x46\xdd\x62\x1a\xa0\xdf\xd8\x52\x87\xc0\x00\x35\x7a\x23\xf5\x27\x39\xca\xfe\x23\x5b\xd6\xf3\xea\xf1\x40\x13\xc3\xea\x9c\xa5\xc7\xe8\xf7\x88\x04\x7b\x10\x8a\x23\x2e\x8e\x86\xa4\xb4\x40\xbb\xe7\xa0\x8e\xb8\xe9\xb3\xbf\xb1\xa5\x50\x41\xc2\x2d\xb6\x49\x99\xbc\xff\xc6\x96\x8a\xb3\xca\x07\x32\x04\x5f\xdc\x0b\x0d\x78\xa0\xfc\x0e\x3c\x51\xa4\xe2\x45\xa6\x94\x0e\x9e\x32\xa7\x76\x41\xa2\x49\x48\x69\xdd\x05\x9f\x39\xe4\xd8\x6d\x78\x01\xe4\xf8\xb0\x9d\x28\xed\x80\x92\x0f\x42\x43\xfe\x5b\xd2\x40\x98\x43\xba\x01\x0f\x9e\x1c\x68\xa1\xcb\x02\xfe\xda\x39\x1d\x80\xc5\x2b\x27\x1e\xee\x13\xcf\xb4\x10\x02\x53\x01\xa8\xea\x28\xbf\x27\x21\x8b\x02\x9b\xa0\x9f\x39\xf5\x94\xb7\xb3\x66\x29\x47\xd0\x93\x36\x15\xee\x18\xd9\xe5\x34\x4d\xec\x44\x5d\x2c\xc7\x7f\xb7\x01\xdd\xe0\x60\xaf\x6f\x08\x0f\xa8\x9d\xc1\x56\x05\x53\x81\xb0\xf2\x56\x81\x20\x08\xec\xb2\xb7\x91\x56\xc7\xe3\xeb\x55\xa8\x07\x33\xfd\x0d\xd9\xb0\x60\x7f\xc4\x0a\x3a\xa8\x3c\xc7\x6f\x3d\xd9\x6c\xb9\x58\x90\x14\x66\x8e\xd2\xa7\x73\x43\xc0\x01\x02\xcf\x65\x25\x33\xa3\xa1\xff\xeb\x77\x1c\x05\x31\xee\x76\x54\xad\xeb\x3f\x57\x38\x33\x3f\xf9\xde\x3e\x1e\x3d\x23\x22\x85\x28\x82\xc3\x4a\x50\xbc\x55\xa1\x71\x2c\xb0\x63\x21\xe4\x21\x52\xae\xaa\x0d\xfc\x80\xc3\xeb\xf0\x20\x02\x55\x52\x50\xcb\x52\x8f\xb2\x01\x64\x08\x53\xc8\x02\x4e\x1c\xa1\x7e\x12\x10\x68\x88\xbf\xe6\x2e\xc0\x8f\x86\xfa\x2a\xf2\x3c\x7d\xe9\x11\x22\x66\x98\x48\x7d\x8d\x84\xae\x6e\xbc\x1a\x62\x07\x3c\x30\xe4\x3a\x17\x32\x77\x7a\x32\x93\x73\x29\x86\x8b\xad\x89\xea\xe7\x4b\x12\xda\xc4\x87\xe2\x43\xf1\x82\x3f\x57\x7e\x3d\x11\x81\x73\x83\xe4\xae\x66\xc6\x52\x4b\x0e\x79\x40\xb7\x04\xf8\x63\xc5\x5c\x6d\xb6\xd9\x32\x5f\xf2\x61\x80\xa4\x8e\xc3\x90\x04\x5c\xa7\x9b\xad\x47\x6d\xd9\xd1\x42\x3e\xa1\xbb\xc4\xdb\x92\x40\xc7\xc1\x3a\xda\xc4\x6f\x8c\x06\xf3\xc1\x27\x4d\x6e\xf9\x67\x68\xb6\x46\x6c\x4e\x1c\xf4\x77\x6e\x88\x8b\x7f\x47\x9c\xa1\x25\x41\x18\xd9\xcc\x17\x8a\x7b\x84\x3d\x94\x8c\x88\x96\x11\x47\x2b\x16\xf9\x0e\xc2\x48\xcc\xd3\x5f\x1b\xe8\x25\x75\x40\xe7\xd8\x10\xec\xa3\xbf\xff\x31\x7d\x58\x8e\xf8\xa7\xbf\xff\x3b\xfa\xe3\xaf\xdf\x1d\x68\xe6\x35\xdc\x65\xf8\xeb\x77\xe8\x7f\xa0\xcb\x85\xf5\xf4\x85\x39\xfa\x13\x4a\xf6\xbf\x95\x67\x65\xb0\x93\xbb\x95\xf8\x4f\x43\xdd\x87\xa4\x84\x18\xed\xab\x68\x49\x22\x22\xf5\x03\x72\xb1\xd9\xfa\x72\x5f\x82\xba\xba\xde\x2f\xe0\xd5\xa0\x27\xc3\x7e\xfc\xf4\x85\x39\xc9\xc2\xfe\xd3\x27\x6d\x1b\xb0\x2d\xc8\x85\xb1\x18\x5c\xb1\x15\x6f\xd5\xad\x2e\x82\xdd\x23\xac\x25\xac\x27\x4d\xb0\x06\x08\xd7\x00\xfb\x2a\xbe\x77\x18\xb4\xf3\xc7\x43\x51\xd4\x4b\x1c\x72\xf4\xfd\xae\x56\x6b\x78\xdc\x2a\xb1\x55\xb3\xa6\xad\x22\x3b\xd0\x96\x3c\x1c\x72\xe5\x92\xe2\xb4\xf6\xa0\x7c\xa0\xc7\x1c\x94\xca\xad\x7b\xe6\x38\x01\x09\x43\x52\xa9\xf0\xb7\xbc\xfb\xe2\xdd\xcf\x47\xbc\xf5\x46\x09\xa6\x5d\x0d\xeb\xbd\x21\x8d\x94\xdd\x0a\x18\x23\x2e\xf6\x8b\x2e\x62\xc4\x53\x71\xc5\x1c\x1e\xcd\xbf\x62\xd3\x23\x0e\xaf\x75\x70\x1b\xc6\xb2\x89\xb8\x22\x8d\x83\xe0\x55\xf9\x2c\x01\xb3\xc8\x2a\x0d\x75\x8e\x16\x78\xf7\x45\xec\x8c\xc9\xbe\x34\xd0\x70\xd6\xc6\x36\x28\x0e\x79\x80\xd1\x6d\x91\x71\xd1\xe7\x6e\xcc\xeb\x6e\x3c\x78\x4d\xe4\x2d\x93\xe2\x70\xff\x8a\xc7\xb3\x8c\xae\x01\xb6\x5a\x9f\x71\xe4\xe2\x1d\x41\x62\xab\x42\x14\xf9\x9c\x7a\x88\xbb\x64\x8f\x70\x40\x10\xf5\x11\x4e\xf4\x14\x80\xd8\x5d\xe8\x23\x65\x29\xdb\x27\xfc\x86\x05\x02\x0d\xa5\x2f\xbe\x5d\xd0\xee\xe6\x24\x6e\x51\x6c\x7a\x52\x6d\x10\x7a\x27\x66\xdd\xc5\x3a\x77\x88\x45\xb7\xa0\xaf\x94\xd5\x94\x06\x4d\xe3\x73\x1d\x64\x2b\x6d\x6b\xbd\x90\xd2\xe9\xd7\xa5\x09\x98\xd6\xe4\x2c\xaa\x80\x95\x3d\xe7\x20\xb8\x76\xe7\x84\x85\xa1\xcc\xcc\x50\x2f\xf7\x3e\xde\x50\xfb\xdf\x8f\x60\xac\x17\x2c\xe4\x48\xf1\xf3\x63\xf8\x32\xde\x6e\x89\x03\x28\x7e\xc7\xcc\x79\xfa\x95\x31\xe7\x91\x79\x0a\x46\x05\x45\xc0\x17\x36\x28\x7d\xd2\x29\xc5\x7a\x8c\x06\xb3\x86\x40\x80\xea\x0d\x6f\x1a\x2f\xb5\xa9\xe4\x47\xa6\xa1\xc2\x43\xd8\x92\xff\x04\x93\xc8\x5b\xa6\x15\x03\x86\x0e\xfb\x60\xd5\x93\xc9\xb3\x38\x67\x0f\x72\x03\xb2\x8a\xcd\x41\x2a\x16\x34\xf6\x20\xa4\x84\x8e\x6e\x61\x76\x4f\xb5\x12\x60\xb6\x80\xc3\xd2\xe8\x23\xce\x1a\xc7\xc1\x9a\x70\x6d\xa0\xfd\xcf\xa5\x87\xa5\x4f\x44\x5c\x0e\x94\x83\x81\x6d\x89\x4f\x02\xe4\xb3\x80\xac\x48\x10\xa4\xd1\x45\x66\xcd\x37\x33\xa2\xcc\x53\xad\x72\x6b\xd4\x0c\x3a\x41\xea\xf0\x6d\xcb\x7f\x8b\xb3\xf6\x2f\xb5\x9d\xe8\x59\x9d\x8c\x35\x2d\xf8\x42\xab\x27\xdd\x9d\x60\xd4\xda\xdf\x48\xb0\xa3\x76\x27\xdb\xdb\xc3\x12\x09\xae\xd4\xc4\x1f\xa4\x54\x90\x40\xf5\x7c\xe2\xc0\xe8\x2b\x13\x07\x26\xa3\xaf\x49\x1c\x28\x73\xe3\x4e\x74\xf6\x03\x5e\x77\x10\x01\x4a\xaf\xbd\x60\xbe\x4f\x6c\xde\x41\xf8\x28\xbd\xfa\xb3\x0a\x58\x0d\xef\x58\x76\x18\x7d\x65\xb2\xc3\x74\x78\x7f\xb2\x43\x53\x10\xe1\x31\x4c\x68\x5c\x60\x78\x97\x32\xaa\xe4\x44\x81\xe4\x37\x46\x21\x32\x7e\x80\xb4\xd2\x57\x38\xe0\x75\x29\x70\xf9\x34\xc1\x27\x17\xd5\x28\x4f\x40\xff\x62\x8f\x22\xda\x04\xdb\x6e\xc3\x67\x07\x5a\x48\x1d\x62\xe3\x40\x71\x15\x01\xd8\x80\xdd\xee\x33\x11\xe1\x61\x27\x0f\x7c\x7e\x52\x72\xbb\x26\x83\x4f\x9a\x43\x42\x4e\x7d\x40\xcd\xb7\xe5\x30\xd2\xa7\xf9\x87\x05\x12\x7b\xcf\xa9\xef\xbc\x2b\x48\x33\x75\x67\x7b\x52\x21\x2c\x64\xe7\x71\x9c\x6c\x32\xae\x93\x4d\x46\x77\x24\x9b\xc4\xbb\xe4\xe2\xf0\x7d\x12\xd3\x08\xe6\xee\xf6\xcd\xb8\x73\x29\xa5\x39\x9a\x04\xe2\x49\xe2\xa8\x4c\xb9\x84\x7e\x05\x97\xea\x8f\x66\x0c\x93\x69\x54\xa8\x0e\x36\x6f\x9d\xd3\x0d\x01\xbb\x59\x22\xc5\x64\x4d\x8a\xc5\xc0\x86\xa6\xa8\xcb\x73\xed\xfb\x0d\x0e\xdf\x05\x84\x6c\xb6\x1c\x1c\xac\xfd\x6d\xb8\xd8\x2b\x95\xff\xd6\xb7\x84\x9a\x4c\x18\x3d\xaf\x0c\x80\x3f\x71\x63\xf3\xc0\x9a\x43\x9a\x46\x02\xb7\xad\xfa\x76\x90\x8d\xc8\x6f\xa7\x58\x7d\x18\x6c\xfb\x0d\x1e\x41\x6b\xe6\xb7\x4b\x72\x47\x98\x6f\x21\xc6\x36\x13\x52\xeb\xe2\x10\x2d\x09\xf1\xa1\x88\xd0\x96\x38\x08\xfb\x0e\x5a\xe3\x60\x89\xd7\x04\xd9\xcc\xf3\x40\xac\xa9\xb1\xd9\x9e\x1a\xb2\xd3\x5b\x34\xeb\x31\xc3\x1d\x12\xd5\x5a\x18\xbf\x31\x02\xb2\xe9\xfd\x8e\x89\x12\xd9\xe4\x88\x14\xa5\x6b\x13\x24\xaa\xbf\x94\x4f\x53\xc8\x0e\x53\x97\x40\x51\x3f\xe3\x13\x8c\x08\x7d\xc3\xaa\x26\x7a\xb4\x6a\x9d\x5d\x25\xcd\x43\x82\x4b\xb3\xc9\x98\xb9\x7c\xca\x32\xfd\xa9\x8f\x30\xcd\xed\xe9\x71\xe1\xa5\x7d\xed\xc0\x59\xa2\xa6\xdb\xc0\x7a\x7a\xf4\x74\x16\x82\x87\x44\x50\x17\xdf\xeb\xbc\x4d\xc7\x47\x52\xf7\xba\x53\xdb\x80\xb2\x80\xf2\xfd\x11\xbb\xf5\x2e\xf3\x6a\xf3\x96\x15\x07\xad\x3b\x5f\x12\x26\xe9\x94\x7a\x31\x3a\xde\x4f\x74\xf9\xe1\x84\xa0\x3a\xca\x3c\x47\x7e\x5a\x23\xcd\x4b\x4f\xdf\x3b\x39\x38\x02\xac\xef\x49\x48\x82\x1d\x71\x50\x63\x50\xc6\xa1\xb8\x95\x84\xaf\x6a\x71\x3c\x74\x96\x4d\xa1\x37\x17\x5f\xee\x82\x2f\x1d\x03\x86\xaa\x28\x93\xbe\x20\x91\x84\x56\xe7\x81\x41\x9f\x1f\x07\x8c\xe3\xa5\xba\x73\x2a\xbe\xf3\x81\x86\x7d\xa7\xa4\x0b\xc5\x30\x71\x9e\x65\x6b\x4d\x68\x34\x7c\x15\x79\x2b\xea\x79\x32\x04\xb5\xd3\x3b\x05\x3b\xff\x43\x53\xa4\x2b\x95\xa9\xec\x0a\xce\xa6\x55\x35\x46\x16\x17\x22\x87\x1b\x61\x2c\xb6\x3c\x1b\x95\x4e\x43\x9d\x86\xcc\xc3\xfc\x8c\x81\xc2\xe6\xd7\xe5\x0f\xb0\x46\x8b\x7b\x8d\x14\xae\x74\xc5\xbf\x7e\x79\x88\xfb\x20\xb1\xf9\x87\xd7\xe8\x87\x80\x45\xdb\x23\x5e\x7e\x11\x10\x89\x15\x87\x87\x0d\x30\x87\xae\xe8\x51\xaf\xc6\xba\xcf\xc1\x2f\x7e\x24\x41\xa8\x8e\xf9\x81\x6f\xbe\x05\x69\xe0\x5b\x8e\x74\x34\xbf\x2e\x87\x88\x35\x39\x3a\x98\x42\x19\x14\xd3\xb1\xf3\xf1\x8e\x59\xbd\x50\x53\xcb\xd5\x54\xd4\xa3\x95\x4b\x95\x52\x2a\x48\xab\x79\xdb\xaa\x33\x44\x9b\x3d\x1b\xa2\x0b\x4f\xf5\x59\x57\x27\x85\x7f\x2f\xd5\x75\x64\x50\xe9\xbd\x16\xd7\xe1\xe6\xd0\x09\x57\xd7\xf6\x83\x2c\x63\x04\x00\xea\x15\xda\x4f\x56\xf7\x5d\xdb\xeb\xd5\x3f\xff\xe5\x6f\xc4\x76\x36\xcd\xd5\x8c\x3a\x15\x29\x52\x72\x36\xe6\xee\x2f\x94\xbb\x97\x04\x7a\x98\x5f\x79\x38\x94\xa9\x5c\x48\x97\xf9\x64\x89\x19\x4e\xc5\x30\xc7\x06\x00\x28\x2d\x47\xc2\x7d\xc8\xc9\xa6\xe4\xa5\x4b\x45\xaa\x6c\x48\x74\x18\x2d\x7d\xbc\x2b\x44\x45\x27\xd2\x94\xfc\x55\x19\xae\x5c\x5d\x14\xa9\x68\x33\xcc\x18\x49\xa1\xe1\x7a\x50\x91\xba\x46\xc3\x57\x54\xd6\xfb\xd1\x20\xc4\x03\x0a\xda\x65\x44\xd7\x6e\x09\x6b\x0a\x14\x1d\x12\x73\xc7\xd5\x5f\xaf\x7f\x1a\x00\x25\x20\x5b\x43\x4c\xd5\xa7\xe5\x13\xf0\x7a\x59\x2e\x55\xcf\x14\xa3\xc3\x33\x40\x1e\xa4\x9b\x9f\x49\x6e\x13\x83\x01\x64\x42\x9d\xdc\x6e\x3d\x06\xd1\x58\x95\x49\x10\x15\xac\x60\x15\xea\xcb\x80\x60\xc7\x0e\xa2\xcd\x32\x2c\x85\xbe\xcb\x4f\x15\xf6\x3a\x3f\x8d\x43\xaa\x43\x1c\x62\x65\x6f\x51\x0c\x32\xab\x45\xad\x9a\x4c\x6f\xa1\x4b\x67\x87\x5d\xf6\x33\x4d\x15\x72\x1c\x1a\x10\x9b\xb3\x60\xff\xbd\xcf\x03\x4a\x1a\xbc\xaa\x67\xc9\xbb\x7c\x59\xfe\xfc\xa1\x19\x98\x6d\x11\x5c\x40\x10\xd8\x66\x8b\x65\x6c\xc1\x3f\xa4\xe6\xa5\xb8\x57\x46\xf6\x1b\x16\x33\xa2\xba\x85\x35\x68\x7d\xca\xca\x5f\x45\x2a\x59\x19\x74\x42\x6a\x9e\x55\x25\x93\x65\x70\x5c\x06\xa2\x81\x3a\xca\x6f\x98\xce\x5d\x1a\x38\x61\x6f\xb9\x97\x8f\xfb\x20\xf6\xc1\xea\xb2\x0f\x57\xf4\x0b\x91\xf1\x23\xb2\xac\x99\x6c\x6a\x56\xbd\x11\x82\x3b\x23\x78\xe1\x71\x37\x0e\xde\x8d\x51\x97\xdd\x78\xc3\x1c\x48\xa0\xec\xb8\x21\x90\xdc\x9a\x5a\x39\xda\xad\xa8\xff\xe0\x0a\x7e\x79\x57\x4a\x39\xca\xdd\xc9\x7c\x2a\x9c\x24\x32\x82\x4e\x7c\x1e\xec\x53\xde\x0f\xd2\x47\x22\x94\xca\x9b\x9f\xb3\xaa\x45\x95\xe4\x99\x37\x01\xf4\xa3\xfc\x9f\x33\xea\xa2\x21\xb6\xaa\xc3\x50\x1d\x43\x67\xfa\xc8\x77\x14\xe4\xab\xc1\xa4\x77\x4a\xd0\x4c\x85\x07\x27\x91\xdc\x10\x0d\x91\x2a\x30\xee\xed\x11\x0c\x63\xdc\xb3\x0b\xa6\xf2\xe9\xee\x38\x72\xea\x96\x9e\xb8\x95\xa0\x76\xd3\x10\xf2\x4a\xdf\xd7\x97\xcf\xe9\x65\x37\x5f\x60\x5f\x7c\x06\xdb\x36\x09\x43\xa9\xd2\x23\xb6\x42\x18\x72\x59\x11\x77\x31\x8f\x67\xa2\x52\x58\x8d\x93\xc2\xfe\xce\x6c\x60\xcb\xd0\xbf\xfe\x8c\x3e\x0f\xa1\x8a\x75\xf0\x97\xc9\x5f\xde\xbf\xfc\x8f\x69\xd7\x2a\xd6\xdd\xca\x54\xe7\xec\x3b\x9d\x0b\x54\x77\x37\xe9\x34\xd1\xf8\xc7\x42\xd7\x87\x55\x27\x6b\xa6\x29\x8f\x85\xae\x1f\x0b\x5d\xe7\x91\xa1\x0c\x2a\xad\x73\x3d\xeb\xf2\x29\x4b\x93\x53\x55\x9e\xd2\x3b\x48\x8d\x38\xa8\x98\x32\x64\x53\xe8\x1c\xaf\xb3\x85\x9f\x63\xc5\x20\x53\x19\xbb\x93\x3f\xa8\xe4\xf5\xa9\x0c\x6a\x29\x98\x88\x61\x1a\x91\x0f\x9d\x14\x5b\x57\x36\xc8\xcf\x49\x7d\x4e\xab\xad\xdb\x4d\x5a\xcb\x76\x27\x25\x81\xca\x47\xa6\x09\xe2\x5f\x6f\xe5\xea\x7e\xca\x1f\x83\x24\x52\x57\xf8\xf8\x43\xd9\x14\xdf\xe5\x81\xfa\xba\xc5\x1f\x94\x1b\xe2\xb1\x62\x71\x6d\xc5\x62\x10\x1b\x4e\xac\x55\xdc\xc8\x21\xbb\x46\x9c\x5d\x89\x0d\x23\x0e\x7a\xd6\x50\x31\x37\xd6\x62\x99\xc0\x57\x9d\x97\x0f\x7e\x28\x07\x79\xc6\x6b\x85\x9e\x6a\x0d\xa3\xee\xc0\x0a\x50\x87\x6e\x6e\xc0\x0e\xa5\x72\x8e\x0a\x12\x3f\x10\x5c\xaf\xd4\xcc\x6a\xe1\xd5\x11\x62\x15\x2b\xec\xea\x7d\x68\x25\xe3\x77\x88\x3d\x2f\x03\xba\x93\x82\x40\x3d\xe6\xe4\x13\x20\x81\x92\x38\xea\xb5\xe3\x72\xa1\x4e\xa6\x0f\x27\x92\x85\xc7\xa2\xc7\xb5\xc7\xe8\xbe\xab\x06\x3f\x16\x3d\x3e\x26\x83\xaa\x0f\xf3\x5b\x3f\xf6\x9a\x3b\x2c\x77\xac\x0a\x8d\xdd\x47\xa1\xe3\xf2\x91\xfd\xda\x0b\x8b\x25\x65\x18\x1f\x64\x19\x91\xbb\x2b\x2e\xf6\xd0\xab\x89\xa4\xc6\xb8\xd4\xbf\x31\x9f\x9d\x25\x82\xf8\xd4\xaa\x60\x3d\x16\x28\xc9\xd7\x0a\xed\x2e\x4f\xfd\x43\x54\xf8\xa8\x42\x89\xd3\xca\x4f\x9f\x52\xe5\xa3\xae\xb0\xc5\x59\x2a\x7a\xf5\x5d\x56\xa4\x31\x4d\xe7\xe4\x0a\x61\xc5\x72\x25\x7d\x54\x08\xab\x9e\x71\x5e\x76\xef\x56\x3d\xac\x62\x76\x67\x49\x09\x6e\x3b\xbd\x77\x5c\x6d\xe3\xce\x15\x8f\x6a\x75\xc3\x16\x04\x20\x57\x0f\xa3\x07\x3d\xe3\x34\xee\x9b\x0b\x56\x83\xc2\x19\x3b\x12\x84\xa4\xa4\xa5\x90\x7c\x21\x92\xbb\x69\x07\xf0\x55\xc4\x9a\x15\x6b\x2f\x99\xe3\xa7\x2f\x4c\xf3\x30\xaa\xdc\xca\x57\x47\x59\x21\x9c\xd6\xf3\xd5\x83\xf8\xfd\x87\xfd\xf6\x80\x81\x62\x21\x21\xeb\x13\x79\xcc\x39\x69\xc5\x86\xc5\xf1\xd8\xd0\xc6\xa1\x1b\xf9\x73\xde\xa8\x95\x8d\x44\x19\x68\xaa\xe8\x7b\x37\xb6\xdc\xc4\x94\x73\x83\x02\x36\x1d\x37\x5a\x95\x8d\x24\x3f\x7a\xa2\xd7\x1e\x50\x96\x4a\xab\x9c\x67\x3a\x52\x17\x7b\x77\xc7\xcf\xcc\x84\x4e\x5b\x4e\x03\x43\x19\x75\xbc\x7b\x84\x47\x33\x73\x6d\x1b\xeb\x80\xfc\xa1\x66\x15\xb8\xe2\x43\xfd\x87\x30\xf4\x9f\x28\xf4\xc4\x63\xeb\xfb\x4e\x5e\xf9\x0f\xfc\x6c\xc9\x7e\x79\xf7\x97\xee\xd9\x42\x07\x45\x2c\x0c\x34\x04\x8b\x7c\x28\x91\x0b\xa8\x32\xc3\x24\x47\xb5\x8a\x93\xf2\xd8\xba\x29\xef\xa3\x94\x79\x5c\x95\xe2\x51\x8c\xe3\xa8\x5c\xc1\xd9\x31\x58\xec\xc4\x11\x08\xbc\x15\x5c\xef\x21\x34\xe8\x67\xf6\xbb\xef\xd9\x97\xd5\x0f\x07\x65\xb6\x09\x71\x49\xf7\xf0\x9e\x45\x55\xe9\x6d\x83\x9a\x34\xac\x42\x73\x2d\x99\x51\x05\x75\x30\x22\xcf\xb9\x72\xd9\xcd\x7b\xb2\x8e\x53\xca\x55\x0f\x65\xdf\xc6\xbc\xfc\x06\xb6\x39\xdd\x11\xf9\x74\x9c\xc3\x95\xe7\xb0\x9f\x05\xf9\xdd\x48\x41\xfc\x93\x16\x12\x41\x09\x39\x03\x8d\x4a\x3e\x5c\x89\x2c\xe6\x64\xa0\x85\xbb\xb5\xbe\xc5\x9c\x93\xc0\x17\x64\xe4\x73\x91\x3d\x15\xbc\xea\x5d\xa2\x72\x62\x88\xb4\xa4\x04\x76\xe2\x3d\x6d\x56\x60\x31\x1d\x5d\xc8\x40\x98\xfa\x55\x1a\x64\xa7\xf7\x2b\xad\xc8\x65\x7b\x28\x0d\xdf\xb2\x4b\x82\x1d\xd2\x1e\x96\x94\xf9\x74\x63\xd3\x72\xa1\x55\x6c\xb1\x9d\x53\x64\xde\x32\xf4\xc2\x8b\x42\x4e\x02\x14\x7f\xad\x21\xdc\xa6\xda\xe2\x1c\x46\xcb\x9a\x60\x11\xf9\x7f\x1f\x5c\x82\x6c\xf5\x11\x17\x87\xc8\x67\xc8\x83\x6f\x19\x15\x96\x81\x61\x6c\x19\x00\xa3\x40\xf8\xf4\xc9\x93\x9b\x9b\x1b\x03\x4e\xf9\x36\x60\x70\x66\x29\x7b\xb2\x8e\xa8\x43\xc2\x27\x2c\xe2\x78\x4d\x0c\x97\x6f\xb2\x9e\x65\xf4\x9e\x60\x07\xe1\x25\x8b\x38\xfa\x09\x9e\x10\xfa\x21\xdb\x91\x60\x7f\xb4\x6d\xbb\x35\x27\x6f\x32\x1c\x9e\x75\xa3\xae\x48\xb0\x23\x01\xfa\x5e\x1e\x89\x3e\xf6\xe8\x19\x0a\xe5\x98\x80\x97\x68\x1b\x80\x1e\x4a\x1c\xe4\x60\x8e\xd1\x2a\x60\x1b\xb4\x24\xd0\x6e\x04\x04\x77\x06\x61\x14\x71\xa7\xef\xd3\x01\x36\x1e\x8e\xcf\x8c\xd9\x1c\xbd\x12\x6a\x49\x3f\xd0\xfa\xc5\xc5\x5c\xa8\x34\xbf\x7e\x17\x10\xe4\x31\x76\x2d\x20\xb3\x62\x01\xb2\x05\x81\x05\xaf\xcd\x92\x48\x3d\xc8\x40\xaf\x39\x22\x94\xbb\x24\x40\x0e\x23\xd2\xa5\x43\x6e\x69\xc8\x11\x0b\x40\x2d\xc2\x01\x81\x68\x58\x1c\x71\x97\x05\xf4\x0b\x71\x04\x7c\x43\x42\x10\xed\x09\xb6\xa3\xb3\xc3\xf6\x59\x32\xf7\xb2\x68\x5b\x48\x74\x65\xd7\xc4\x97\x12\x4d\x40\xba\xc5\x33\x1c\xbe\x3f\xff\xc9\xa2\x00\x69\x8d\x65\xa7\xa0\xa1\x1a\xe1\x9c\xfa\xeb\xd0\x80\x49\xd5\xe5\x52\x3d\x7b\x71\x89\xe4\xac\x5b\x62\x0d\xc4\xf6\xc2\x4e\x6e\x03\xb6\xa3\x8e\xec\x93\x1f\x90\xdf\x23\x1a\x10\x07\x6d\x49\xb0\xa1\x61\x08\x45\xee\xd0\x0b\xc1\x37\x6c\xc0\xa1\x00\x61\x67\x43\x7d\x1a\x72\x60\x9c\x88\xae\x10\x77\x69\x88\x68\x88\xb0\x2f\x8f\xe3\x31\x58\x70\x12\xfc\xde\xa9\x05\x60\xff\xee\xa1\x78\x43\xb9\x2b\xa1\x16\x52\x4e\xb2\x60\x13\xc7\x62\x47\xc9\x0d\xc0\xa7\x03\x4c\x8e\x73\xfb\x1e\x8c\xff\x3d\x52\xe1\x2b\xb6\x21\xdc\x15\xc4\xe4\x46\x90\xd9\x9b\x80\xf9\xeb\x4a\x2e\xd5\x71\xb9\x1d\x2f\x15\x0a\x45\x91\xdf\x93\xd3\x0a\x41\x7b\x6b\x48\xc4\xd9\xd1\x80\xf9\x60\x25\x12\x43\x38\x64\x47\x3c\xb6\x95\xbf\xbb\x5a\x5c\x62\x70\x04\xa4\x41\x24\x0a\x39\xb6\xaf\x75\x1e\xa8\xd2\x84\xaa\x62\x98\x0d\x95\xdc\x0a\x76\x11\x4b\xbd\x73\xc5\x03\x2d\x6f\x0f\x51\xf0\xea\x18\xe4\x79\x90\x61\x58\xce\x52\x9c\x87\xda\xc8\xb7\xaa\xf3\x12\xbf\x9e\x9e\x9b\x34\x7e\xf8\xc6\xa5\x50\x08\xef\x37\xb6\xac\x3b\x3e\x3f\x30\x81\xfd\x3f\xaa\x07\xba\xf6\x4a\x3f\x76\x22\xaa\x0e\x5f\xe3\x5c\x5e\xa4\xcf\xb4\x4f\xa7\xcd\x00\x52\x8d\xa7\x89\x0e\x29\xb6\xa1\xb3\x0a\x99\x2a\x7c\x87\x6b\x8b\xf1\xc2\xef\x57\x53\xfc\xf1\xfd\x5f\xaf\x6e\x7f\x5f\xec\xbb\x69\x8a\x63\xa5\xfe\x29\x2d\x51\x6e\x74\xef\x3a\x52\x6c\xe9\x3a\x4e\xaf\x8f\x0b\x3b\x1e\xbb\x21\x4f\x92\x8a\x90\xf7\xb9\x2f\x17\xb7\xaf\xbc\xf0\xd9\x3b\xbf\x3a\x65\x06\x67\x92\x65\x80\xe6\x1f\x98\x3a\x23\x0f\x54\x5c\x61\x84\x05\x25\xd7\x50\x6c\x94\x2a\x04\x9b\x26\xc5\x2d\x0b\x7a\x79\x3f\xe9\x31\x27\x64\x06\xb4\x96\x64\x86\xc2\xa3\xb2\xfe\xb2\xee\xd1\xb5\xcb\x4b\x76\x38\xf0\x15\x08\x39\x20\x29\xac\x9c\x84\xc2\x97\x89\xb6\x79\x2a\xe4\x2a\x3c\xb4\x95\xeb\xc8\x2e\x1f\xaf\xd3\xd8\xc7\x24\xd0\x1a\xf9\x4c\x66\x22\xf3\x00\xfb\x21\xc4\x84\xd7\xb0\x8a\x62\x44\x28\x75\x9a\xc2\x40\xcd\xd8\x5a\xb3\xdd\x97\xa2\xf0\x6d\x8f\x6e\x97\x0c\x07\xce\x87\xa4\x32\x56\x69\xe0\xea\x48\xba\x66\xe2\xfc\x2d\x86\x9b\xab\xa3\xf6\x40\x02\xce\x6b\xab\xe6\x75\x3a\x44\xea\xfc\x08\x74\x93\x95\x7c\xab\x32\x49\xa2\xd6\x2c\x92\x7c\xd5\xf2\xf6\x0c\xa3\x3b\x04\x51\x63\x13\xc4\xaa\x43\xe4\x72\xbe\x15\x2f\x75\x8f\xa8\xbe\xd3\x18\x71\x4c\xcb\xf1\x9c\x65\x45\x39\x13\xea\x93\xbc\x71\x88\xb2\x5c\x3b\x9f\x2c\xc2\xd0\x50\xa7\xfe\x8a\x65\xa6\x27\x5e\x38\x55\xdd\x04\x98\x1f\x55\xe4\xf6\x0e\xf7\xe1\x7b\x8f\xae\xe9\x92\x7a\xa5\xea\xdd\x4d\x5b\x21\x5f\x6a\x2a\xb8\x55\xda\x8a\xd2\x61\x93\xfd\x52\xa8\xbf\xce\xcd\xe0\x74\x27\xe9\x81\xfb\x5e\xe8\x54\x72\xf0\x34\x4f\xa9\x65\x7c\x97\xc7\x0d\x73\x2c\xd3\x3e\xbb\xd3\x0f\x27\xf3\xce\x83\xa4\x20\x74\x27\xe0\xdc\x11\x6b\x23\xdf\x25\xd8\xe3\xee\x3e\x7e\xaf\x73\x34\x75\x49\xf0\xb8\xd5\xa9\x2d\xfd\x68\x19\xec\xc9\xe6\x5c\xd2\x0a\xfc\x6a\x89\xde\x2f\x02\xbf\x69\xba\xb9\x0a\xdd\x6c\x55\xbd\x79\x84\x43\xc0\x4a\xdb\xeb\x99\x65\x6d\xbd\x28\xc0\x1e\x54\xf5\xf9\x14\x27\xe3\x74\x1f\xb5\x42\x78\x44\xc9\x22\x8e\x3a\xc9\xcf\x3c\x0f\x35\xbf\x7f\x48\xd4\x5e\xa7\x88\xfb\x64\x9d\x82\xd7\x5c\xf1\x00\x73\xb2\x6e\x4f\xc6\x3d\x4a\x2c\xac\x60\x3a\xa7\x84\xc4\x77\xec\x35\x73\xa8\x88\x08\x4c\x17\xa5\x90\xe8\x2c\x9f\x9d\x27\xd1\xee\x65\x26\x47\xa4\xcb\xa1\xcf\xef\x23\x54\x74\x67\x81\xdd\xa1\xe1\x55\xd7\xf9\x2d\xb1\xb3\x26\x95\x85\x0d\xe4\x87\x10\x00\xf0\x64\xf7\x45\xdd\x7a\x5c\x1c\xbe\x65\x29\x50\x3a\x2e\xea\x2d\x43\x8e\x7a\xe7\xc8\x38\x24\xad\x14\xf8\xe5\x44\x01\x4e\x52\xfc\x9b\xa6\xec\x14\x67\xdb\x44\x17\xbb\x1a\x6e\x0b\xd6\xd5\x63\x50\x63\x25\xf6\xeb\x40\x50\x9e\x82\xf9\x07\xe3\x7e\x8c\x50\x95\x47\xa0\x79\x73\x2a\x52\x4d\xbb\x2d\xbf\x29\x5a\xfb\x8f\x99\xef\x6c\x98\x00\x90\xbe\x0a\xd8\x46\xf7\xd9\xcd\x11\x5f\xfb\xf4\x49\xa3\x42\xd4\xd8\x61\x20\x3f\xe6\x70\x38\x2c\xb0\xcc\x3f\x1d\x14\x96\x56\xd9\xb4\xf1\x0e\x29\xd5\xeb\xb5\xcf\x02\x82\xae\x20\x84\x04\x2c\xd6\xb5\x79\x2e\x5a\x29\xcb\xa1\x91\x84\xc1\xc0\x72\xdc\xc4\x10\x5e\x9b\xfa\xd0\xe4\xd3\xaf\xbb\x76\x10\x68\xff\xb1\xd3\x6c\x73\xa8\x71\x3f\xa5\x6b\xce\x9f\x20\xdb\xc8\xf5\xef\x77\xe2\xad\xa9\xb1\xc7\x60\xfc\xc9\xa6\xbf\x1e\x50\xbc\x23\x9a\x55\xe4\x5c\xa6\xa1\x83\xe5\xcd\xaa\x28\xe3\x13\x30\xa8\x77\xad\xee\xd4\x49\x37\xd2\x23\xf6\xb9\x63\x65\x1f\x2d\x24\x5c\x75\x97\xa1\xcc\x7f\x45\x3d\xe8\x36\xa4\x36\xa8\x50\xe2\xa7\x55\x11\xc2\xd5\xed\x75\x8e\x2c\xca\xbc\x4d\xa6\x75\x94\x02\x78\x12\x0c\x53\x5d\xf1\x04\x28\xca\xcf\x36\x01\x31\x0f\xc6\x9a\x05\x77\xd2\x01\xd3\x77\xb5\xe6\xd1\xda\x05\xb9\xa3\x8a\x55\x54\x1d\x5c\x35\xcf\x90\xe0\xc0\x76\xf5\x25\xbb\xcd\xa4\x18\xc1\xb5\x0f\x82\x0f\x43\xbd\x1c\x57\x88\xe4\x82\xab\x7b\xd8\x26\x2e\xf3\x1c\xd5\xa1\x52\x25\xa7\xf8\xdb\x88\xbf\xc8\x25\x23\x6d\xa2\x4c\xec\x67\x3a\x58\xba\xbe\xe6\x52\x56\x01\x11\x3b\x86\xd7\xaa\x15\x75\x36\x79\xe9\x0a\x46\x43\xd9\x0e\x8f\x86\x21\x33\x64\xa4\xe6\x86\xb6\x91\xe7\xa9\x8a\xad\x70\x39\xad\xab\xdd\xc5\x57\x71\xc6\x3c\xae\x6d\xba\xa0\x8a\xca\xe4\xb2\x06\xf0\x56\x05\x6f\x66\xeb\x8f\x17\x5a\x36\xc5\x95\x4b\xd7\x24\x2e\x03\xac\x42\x2b\x64\x7d\xcb\x77\x2a\xd9\xa2\x32\xb3\xab\xaf\xe2\xe8\x32\x1f\x51\x8c\x76\x44\x31\xf4\x1b\xca\x5d\x7d\xc5\xd8\xf9\x4a\x9d\x4f\x1e\x4a\xfa\x59\xde\xdb\x9c\xc9\x2e\x1a\x9d\xd4\xe7\xff\xe4\xb6\x52\xbd\x41\xf9\x61\x15\x82\xae\x07\xb7\x55\xac\x31\x1c\x57\x7e\x86\x80\xb3\xb4\x9d\x63\xc5\x06\xbc\x7e\x79\x58\xa9\xed\x7f\x48\xf8\x8e\xea\xe0\x9b\x71\xe8\x0b\x41\x84\xae\xf6\xaf\x65\xad\x52\xd9\x19\x6c\x8f\xe4\xcf\x6a\xd0\x77\x2f\xab\xfd\x0f\xbf\x01\xe3\x2e\x1b\x60\x43\x1b\xb7\x78\x03\x64\x53\xb7\xc6\x0d\x48\xfa\xbe\x3d\xc2\xbf\x05\xfe\xa5\x22\xe6\x39\x02\x03\x9e\xb2\x26\x40\xa7\x7d\xbe\x1f\xe1\xdc\x08\xe7\x69\x13\x9c\x7f\x63\x4b\x23\x0e\xcd\xa9\x00\x32\xb4\xc2\x7e\x84\x70\x0b\x84\x67\x2d\x10\x4e\xba\x2b\x56\xc2\x38\x73\xf7\x30\x38\x7f\xed\x8d\x15\x27\x0f\x25\xc9\xbd\x76\x67\xc7\x77\xda\x4a\x11\x14\x47\xd0\xcb\x95\xc6\x30\xcd\xd9\x9b\x64\x27\xed\x5a\x8d\x7d\xcd\x38\x7b\x96\xeb\xdc\x9f\x1f\xe0\x80\xda\xa7\xd3\xba\xb4\xea\x49\x93\x65\xbb\x4e\xfd\x03\xe5\x49\x69\x2f\x8d\xe6\x6d\xc8\xdc\xad\xb4\x8c\xa7\x6a\xed\x91\xfd\x1a\xd2\x21\x74\x3f\xda\x2c\x95\xeb\xbe\xa9\x18\x50\x5a\x43\x06\x4a\x89\x86\xcf\x8a\xf5\x63\xfe\xf7\xff\xfa\xbf\xf3\xcf\x11\xdf\x29\x3f\x55\x74\x91\x97\xf5\xd3\x76\xbb\x12\x6a\xc8\x90\xef\x91\xe2\x2a\x1b\xcb\xae\x70\x1c\xb7\x86\xb8\xd8\xe7\x71\x94\x23\x1e\x71\x1c\x27\x55\x22\x5b\x1a\xf9\x90\xd9\x64\xf1\x01\xca\xa2\xba\xf0\x79\xf4\xaf\x95\xfe\xbd\x3b\x60\x6b\xb2\x7c\xd1\x2d\x2f\x01\x59\x5c\xec\x17\xc8\x62\xc4\x63\x80\x5c\x25\x97\x55\x02\x39\x5e\x47\x15\x80\xff\xed\x08\x00\xcf\x06\x5a\xe4\xb5\x1d\x5f\x69\x41\xa9\xd7\xd6\xeb\x1d\x06\x9d\x6a\x34\x0d\x3e\x75\x2d\x99\xf8\x20\xcc\xf2\x2a\x8a\xf6\x01\xd7\x59\x4a\x89\xde\xf7\xbb\x24\x59\xe5\x0e\xea\x29\x59\x0f\xde\xa0\x35\x3d\xa1\x5c\x4e\xa7\xa2\x84\x27\x15\x4f\xca\x0e\x74\x15\x2d\x93\x96\xb0\x87\x55\x50\x7a\xd3\xb5\x26\x4c\xaf\x82\xa5\xf5\xe0\x05\xcb\xd9\x09\x85\xb3\x7a\x2d\x95\x34\x3a\x47\xa9\xa4\xec\xa0\x61\x8a\x3b\x7d\xd6\x4b\x1a\x1d\x52\x2f\xa9\xee\xc5\xa4\xe8\x77\xf7\x3a\x4b\x07\x44\x65\x85\xc4\x66\xbe\x83\xa1\x95\x56\x3e\x1b\xa3\x0c\xa5\x72\xf9\xf1\x83\xe3\x4b\xb2\xf3\x2b\x7f\xe0\x5b\xaf\x04\x35\xaa\x53\x59\xac\xaf\x94\xb3\xcb\x28\x57\x24\xad\x5c\xe7\x0a\x21\xc9\xf2\x72\x6c\xdb\x2c\x70\xaa\x5d\x6d\xd7\x64\x5f\xe4\xe6\x49\x04\xf4\xe7\x34\xb7\xeb\x2e\x0b\x23\xe2\xde\x19\x39\x3e\x92\x91\x5b\xc3\x61\x91\x98\x7f\x8a\x33\x7a\x2f\x21\xa4\x15\xd2\x16\x6e\xb7\xd8\x77\x40\x5e\x12\x62\xb4\xa3\xf2\x9e\x06\xf1\x12\xa9\xac\xf6\x13\x07\x39\x57\xfb\x23\x5b\xbb\x1d\x16\x33\x93\x54\xf8\x4f\x45\x88\x6e\x9c\xe4\x98\x29\xf1\x53\x37\x11\x90\x07\x56\xd8\x01\x49\xd0\xaf\xe8\xa5\x5e\x41\x17\xda\x1b\x41\x99\x6d\x1a\x78\x91\xc8\xa6\x94\x33\x33\xcd\x6e\xe5\x71\x5b\x2d\x62\xed\xd3\xb5\x2a\x4f\x4e\xc2\x56\x6a\xb6\xf0\xa0\xfa\x7d\x55\x0b\xae\x02\x4e\x2d\x17\xaa\xd8\x7d\x16\xe8\xe1\x0d\xe6\xb6\x8b\x4a\xa8\x26\xc3\xdb\x4b\xfd\x8d\xea\x0a\xe0\xa2\xca\x68\xc1\x8a\x11\xa5\xd8\x75\xa1\xfe\x1e\x68\x3f\xfb\xc9\xf5\xd6\xb8\xce\x2e\xa4\xbe\x96\xfb\x9d\xb8\xcb\x87\xe2\x63\xf7\x60\xdb\x2e\x23\x94\x82\xcd\x63\x24\x6a\xda\x91\xa6\x63\x52\xb3\x47\xb9\x73\x7d\x54\xd5\xea\x96\x0a\xd4\xb5\x2b\xa4\xa1\xbe\x8d\x3c\x8f\x38\x71\x73\xe0\x53\xc0\xd5\x0e\xf0\x83\x41\x0e\x6d\x89\x7f\xde\x3a\xb8\x15\xec\x1d\x86\x66\xcc\xe3\x74\x1b\xc7\x5b\xe1\x80\x62\x5d\xa6\x37\x64\x7a\x96\x15\x65\xf1\xcc\x2e\x45\x30\x8d\x0f\x39\x81\xbc\x81\xe8\x66\xa7\xd5\x10\x15\xdd\xf4\x89\xf6\x18\xe8\x5a\x40\x34\xe3\xe7\xa9\x05\xb5\xeb\xae\xdf\x57\x0d\x5e\xdc\xbb\x16\x89\x8f\xd4\x22\x2d\xeb\x78\x0b\x42\x75\x3d\x9c\x42\x2d\xbc\x12\xb7\x95\x84\xfc\x65\xd7\x56\x91\xa7\x0a\xd2\xc7\x8c\xd2\xd0\x12\xa4\x7c\x48\x6c\xbc\xa5\x3c\x0e\x39\xac\x96\x2c\xaa\x52\xcb\x9e\x71\x1e\xd0\x65\xc4\x49\xd8\x88\xb9\x0d\x32\x02\x4e\x46\xc8\xfd\xb8\xe2\x41\x64\xf3\x28\x38\x48\x78\xe8\xd5\xba\xd7\x40\x51\xd2\x69\x16\xed\x7e\xb9\xd5\xe4\x62\xde\x2a\x97\x7c\xe5\xaa\x6a\xfc\xe5\x21\xdb\x48\x4e\x07\x12\xd0\x3f\xbc\x3a\x71\xaa\x93\x3b\x85\x67\xc6\x3a\xa1\x5b\xb8\x52\x1b\x53\x0c\xed\x8b\x40\x77\x51\xdf\xbb\x12\xe8\x53\xab\x35\x3f\x14\x1d\xbd\x44\x07\xce\x6c\x7a\xef\xe1\x48\xe6\xa2\xdb\x3b\x10\xa1\xce\x67\xf4\xc4\xa5\xd7\x81\xf8\x0d\xe1\xb8\x26\x35\xa8\x2e\xb9\x6e\x43\x38\x3e\x9e\xaa\x9e\x85\x9a\xf6\xb6\x65\xcd\x6b\x3b\x80\xa0\x9e\x42\x48\x7b\x22\xa0\x7d\x10\xce\xd3\x09\xa6\x40\xb0\x0e\xe4\xb2\x51\x6c\x6a\x6c\xf1\x06\xed\x6f\xa5\xe8\x86\xc4\x5f\x50\xce\x4f\x6c\x98\x2c\xb3\xe8\x33\x24\x36\x15\xa5\x3b\xd7\xa9\x26\xee\xa1\x24\xba\x7c\x78\x7a\x29\x16\x5e\x16\x4d\x8f\xab\x2d\xf6\x10\xba\xf1\xbf\xf9\xf1\xf9\x72\xbe\xb9\x31\xab\x4b\x8b\x1d\x5b\x4c\xac\xa9\x72\x7d\x3f\xbd\xf2\x21\xaf\x7c\x49\x1d\x87\xf8\x9d\xaa\x05\x98\x13\xc0\x12\x4e\xb1\x17\x3e\x59\xc5\xaf\x26\x27\x2d\x5f\x06\xbc\x3b\x5d\x68\x39\xce\x42\x23\x5e\xe2\x63\xba\xef\xab\x37\x75\xaa\x1c\x90\x4d\xb0\xf0\x99\x43\x4e\xa9\xae\x71\x6c\x6a\xcf\x9d\x65\xf1\xc4\x55\xfc\x0c\xe3\xb8\x86\xea\xf5\x74\xa4\xe3\x0e\x08\x76\x07\xf6\x1b\x1d\x7b\x74\xed\xab\x46\xfe\x6c\x49\x3d\xa2\xa7\xad\x11\x8e\xa2\xf8\xd2\x64\xae\xd7\x60\x49\x61\xa7\x36\x91\xc7\xa9\x1e\x12\x8f\xd8\x5c\x77\x02\xb6\x75\xd8\x4d\xc6\x75\xa1\x8c\x2d\x1a\x4b\x12\xc6\xe4\xa3\x32\xe2\x8e\xf9\x57\xf0\x0b\x4c\xf1\x2f\x62\x93\xa9\xd8\x01\xf5\x7c\x6c\x15\x8d\xa3\xb6\xe2\x77\x33\xd7\x9b\xf6\x31\x24\xfc\x15\xb6\x09\xff\x6b\x44\x82\xfd\x3b\xb1\x21\xb0\x35\xbf\x6f\xe3\x9c\xaf\x9a\x50\xbc\x33\xaf\xf4\x0a\x5a\xd5\xe7\x57\x7a\x15\xb7\xaf\x2f\xac\x34\x73\xfd\xa8\x95\xaa\xf7\xef\x69\xa5\x99\x92\x43\xf9\xe5\xbe\xcc\xd5\x15\x2a\xac\xb9\x78\xf3\xa8\x85\xe7\xaa\x1d\xb5\xac\xbe\x9d\xa7\x77\x11\x7c\xa5\x43\xee\x2d\x90\xbe\x26\x1f\xf8\x49\x29\x75\xf1\xf0\x0f\x24\x99\xce\x7c\xc8\xc9\x74\x0f\x2e\xf6\xa8\xd0\xa9\x6b\x3c\xff\xfa\x53\xe9\xac\x07\x9b\x1f\x50\x00\xf6\x64\xd8\x94\x1d\x40\x1f\x5c\x0e\xdd\xd7\x03\x58\xb3\x36\x50\x75\x90\x01\x70\xa8\x5b\xc3\xe1\xf6\x56\x88\x29\x3c\x88\x7c\x1b\x2b\xfa\x53\x1b\xb5\x90\xb4\xf3\x7d\x04\x7f\x23\xf8\x9b\x13\x44\x93\xec\xac\x9a\xd4\xad\x23\xe0\xdb\xbd\x85\xf2\x3f\xf8\xce\xd4\x66\x36\x42\xe4\x49\x4e\xc8\xa9\xd8\x9d\xbc\x14\xd4\xc3\x16\xfd\x41\x16\x06\xb9\xeb\x36\xd7\x0f\x2e\x0a\xb4\xb8\x4d\x47\x77\x39\x8f\xbd\x57\x30\xae\x0e\x15\x87\x73\xd9\x45\x32\x53\xa8\x98\x4d\x34\xca\x66\x13\x35\xa6\x11\xbd\x55\x99\x46\xf9\x77\x0e\x48\x20\x3a\x20\x1a\xaf\x8b\xfa\xf9\x15\x27\x10\x99\x1d\x13\x88\xcc\xc3\x12\x88\xde\x16\xed\x1c\xf7\x9b\x3a\x64\x3e\xb4\xd4\xa1\xc2\x51\x9b\x56\xe5\xc0\x7e\x5d\x89\x43\xe6\x43\x4b\x1c\x2a\x82\xb8\x2a\x09\xf6\x5b\x4f\x1b\x32\xeb\xe8\xdc\x09\xee\x93\x06\xbf\x87\xd6\xd0\x26\xa8\x64\xf9\x1c\x0c\x0f\x8f\x0a\x39\xc1\x8f\x92\x5a\xbb\x7b\xf6\x9f\x14\x76\x3c\xdb\xbc\x50\x99\x1c\xbc\x7d\xdc\xc6\x50\xb9\x59\x00\x16\xc6\xa1\xb1\x43\xf5\x59\x03\x79\x48\xaf\xa0\x1a\x56\x15\x0d\xbe\x5b\x88\xbf\xc1\xdc\x76\xcf\xe1\xb1\x2a\x40\xfc\x6d\x0c\xd7\x10\x6d\x20\x92\x14\x3a\xa6\x29\xd8\x23\x09\x0d\x94\xd8\xd0\x7a\x04\x7b\x8d\x11\xfd\xab\x85\x6b\x09\x90\xdc\x25\x88\x93\x60\x93\x84\x13\xf2\x80\xf9\xeb\xaa\x1e\x5b\x59\x30\x54\x75\xd9\xca\xd1\xac\xae\x61\x17\xad\x05\x6d\x3b\xb8\x17\x2b\x07\xa8\x73\x2d\x1e\xd2\x43\xaa\xc4\x66\x8e\x73\x2c\x7a\x0c\x4b\xf3\xe1\xbd\xba\x16\x9f\x7f\xdc\xed\xbe\xff\xdb\x4f\xd5\xae\xc5\x92\x37\xb1\x63\x23\x6a\x17\xcb\x4a\xef\xba\x54\xd6\xd2\xd8\x83\x9c\x83\x4f\x01\x40\x0f\xb7\xd4\xf7\xc1\x1c\xfe\xb9\xe7\x1d\x52\x5f\x38\x62\x8f\x62\x99\x23\xdb\x68\x5a\x6a\x32\xf7\xba\x5b\x3f\xbf\x1d\xbd\xfb\xcb\xf6\xc7\x67\x9d\x77\x2b\x93\xb1\xd6\x68\x12\xad\x33\xe0\xe7\xaa\x41\x1c\xdf\x2b\x40\xeb\x16\x94\x8c\x32\x48\xa3\xe5\xab\x48\x66\xc3\x96\x87\xf9\xb0\x65\x2d\xad\x59\x80\x1c\xb2\x15\xba\x0a\x62\x7e\x5a\x65\x1f\x39\x69\x4b\x84\x86\x88\xa5\x2e\xed\x0b\x9a\xdb\x16\x1c\x64\x45\xa8\x03\xb2\x90\x41\x9f\x65\xdb\xac\x3f\x10\xc8\xde\xe0\x10\x05\x44\x35\xfe\x68\x0d\xff\x4a\x81\xe9\xd2\x90\xab\x02\x2e\x05\x60\xaa\xbc\x9d\xf3\x81\xf2\x06\x87\xaa\x52\x68\x87\xf8\xaa\x3b\x05\xe4\x36\x9d\x56\x47\x30\x2e\x95\x8d\xe1\x2c\x30\x5c\x14\x63\x3f\x9a\x12\x5d\x5b\x7a\x46\x0e\x62\xab\x8c\x9c\xa0\xaa\x63\x9c\xaf\x58\x6b\xe0\x5c\x35\x98\xc2\xc6\x35\xe5\x97\x65\xed\x0d\xb9\xbd\xce\x94\xfd\xeb\x1e\x79\x50\xe7\xba\x2c\xb5\x39\xe5\xb1\x7a\xfb\x1b\x5b\x76\x31\x8a\x1d\x03\xc6\xdf\x23\x02\x70\xca\x81\x31\xad\xc2\xea\xe2\xd0\x4d\x1f\xfe\x8d\x2d\x05\xf7\x83\x76\xb3\xa9\x3f\x34\x07\x11\x31\x55\xe9\x4a\x90\x4f\x65\xba\xbc\x41\x2f\x51\xe3\x37\xb6\x34\x38\x0e\xaf\xf5\x75\xc0\xa2\x6d\x5c\xbf\x27\x08\xf0\xbe\xfa\x38\xfd\x26\x2b\x6e\x55\xdc\x11\xa3\xfc\x20\x06\x79\x8b\xf3\x69\x21\xcd\xaa\x66\xe5\x46\x16\xc7\x3a\x34\x90\xa4\x3b\xd6\xb7\x65\xa2\x6f\x98\xcf\xdd\x6c\x93\x80\x7c\x69\x24\xa8\xa6\xf7\xa1\x2d\x31\xbd\x09\x13\xfa\x4d\xd6\x69\x9e\xae\x2c\xd7\xd8\x9a\xb6\xa3\x35\xa7\xe9\x74\x1a\xb6\x44\x8a\x9a\x23\xfc\x8a\xf0\x29\xc8\x29\xcc\x27\x7a\x41\x13\xaa\x07\x5d\x6b\x9a\x61\x79\x1b\x41\x54\xac\x6d\x20\x59\x8f\xa7\x85\x17\x2b\x62\xe8\x1a\xa8\x8b\xea\x42\x59\x4f\x67\x92\x53\xa0\xe5\xc2\xb3\xba\x52\xa5\x23\x88\x53\xe5\x22\xf3\x15\xe2\xaa\xd2\x69\xaa\x07\xab\xef\x09\x9e\x65\x0f\x71\xc4\x58\xd2\xbe\xb5\x42\x1a\x62\x4e\x4d\xcc\x46\xe5\x7c\x95\x7b\xa1\xc4\x0c\xba\xb1\x80\x13\x2c\x2f\xd9\xdd\x90\x73\xee\x85\x49\x94\x30\xa6\x86\xca\xd3\xf0\x5d\x1a\x46\xd2\xf0\xd4\x7b\x12\x6b\x9d\x9f\xbb\x60\x8a\xf8\x3f\xc3\x30\x8e\x0a\xc3\xee\xcc\xe2\xce\xcb\xe1\x2a\xb1\x4a\x72\xb2\xae\x48\x95\x7e\xa6\x0b\x42\x55\x04\x2f\x36\xe5\x9d\xc6\xc9\xeb\xf1\xde\x3f\xe9\xc0\x19\x1b\x93\xcb\xbb\x87\x5a\x57\x61\x60\x61\x76\x49\x26\xfc\x51\xd4\xe1\x20\x7b\x4f\xdb\x4c\xea\x8d\x0a\x9d\x74\x57\x1a\xbe\x8f\xfc\xe6\x3e\x99\xb9\xf3\x86\x7d\x27\xfe\xd3\x67\x69\xe4\x6c\xdc\x12\x24\xa6\xc9\x60\x75\x25\xdc\x76\x05\x23\x08\x2b\xbf\xd3\xe7\x09\x2b\x58\x20\xc5\x37\xbf\x0f\x02\xd6\xa5\x50\xcc\x79\xf5\x9b\x17\x2c\xf2\x1c\xff\xd7\xef\x38\xb2\x99\xe7\x11\x9b\x23\x98\x5c\xb5\xe9\xb6\x57\xa5\xfb\xac\x09\x23\xaa\x38\x85\xed\xe2\x80\xa7\x2d\xea\x0a\x80\xa8\x00\x4f\xb5\xac\x16\x23\xd0\x40\x8b\x42\x95\x15\x83\x9e\x24\x62\x49\xa8\x30\x28\x20\x21\x09\x76\xc4\x81\x72\xa9\xe2\x91\x37\x17\x5f\xb4\x9a\x0c\xeb\xd8\xe2\x1b\xb0\x35\x84\x9a\x54\xba\x9a\xd4\xcd\xb8\xb3\x5e\xae\xe6\x8f\x98\x29\xd8\xa4\x2a\x26\xb9\x25\x81\xc0\x83\x58\x2a\x12\x63\x6e\xf0\xad\x36\xd0\x6a\xeb\x63\x64\x49\x57\x71\x8c\x13\xe3\x4c\xbb\x19\x78\x8f\x53\x71\x1f\x26\xa9\xc9\x34\xf1\xf9\x76\xa9\x4d\x7a\xa6\x1e\xc9\x4e\x0d\xd9\x39\x96\xda\xa4\x9a\xe1\x72\x0f\x99\x7b\x79\xbc\x4a\x88\x50\x92\xc7\xd1\x40\x8b\xe2\x22\xcc\x40\x8e\xe8\xf3\xbe\xc8\x91\xec\x0e\xd9\x81\x20\x25\x73\x3e\x8d\x26\x55\x0c\xf3\x80\xc8\xd2\xf1\xa9\x6e\x75\xde\x8a\xd3\x1c\x1f\xdb\xad\xbe\x0c\x08\x76\xec\x20\xda\x2c\xc3\x7b\xf6\x7c\x4c\xfe\xfa\x3b\x7d\xf2\xdb\x5b\xbf\x3a\x05\x2e\x9d\x27\x9c\x1e\x28\xcd\x5f\xf4\x86\x8c\x07\x1a\xc1\xb6\x9b\x9c\x83\xec\xda\x9a\x09\x9a\x42\x6b\x8f\xd6\x1a\x1a\xb2\x35\x6d\x52\xc5\x50\x5c\xf3\xed\x34\xe6\xaf\x48\xca\x73\xd0\x2d\xb7\x8d\x12\x44\x08\xdb\x9c\xee\x48\x4d\x71\x2b\xad\xaa\x8a\x43\x46\x13\xec\x48\xa4\x71\xee\x9c\xba\x01\x59\x69\x03\xed\x0f\x95\xf4\x36\xd1\x1e\x93\x69\xfc\xef\xff\xf5\xff\x1c\xe7\x49\x2f\x29\x87\xf0\x4e\x2e\x8b\x02\x07\xeb\xb0\xb5\xda\x98\x96\x0b\x54\x53\x8d\x7a\xbb\x5b\x0d\xbb\xe7\xa5\x96\x22\x6c\x06\x56\x66\x90\xd3\x4f\x6e\xfe\xb8\x9d\x76\x74\xd3\x5c\xeb\xc4\x5d\x7b\xaf\xa7\xf7\xe5\x2b\x62\x5f\xfc\xb6\x7d\x57\x7d\x7a\x15\xbd\x57\xb5\xfc\x1a\x8e\xed\x7c\xa0\xe9\xe2\x87\x4e\xd3\x86\xba\x99\xdc\xf4\x36\x19\x28\x27\x75\xd1\x50\x67\xb0\xf4\xf4\xf0\x74\x94\xa1\xb4\xd6\x6a\xa7\xad\x22\x66\x18\x2d\x5d\x92\x1c\x25\xb8\xc9\x3c\x29\x2c\x69\x56\xbd\xf4\x52\x6a\xda\xb7\xa2\xb7\xf5\xe7\xfc\x10\xcb\x83\x0a\xe6\x88\x87\xcc\x1e\x1f\x95\xf4\x5d\xcf\xc3\xe4\xe9\x03\xfa\xd6\xb1\x1d\x7e\xf5\x95\x72\x19\x82\x04\x79\x13\x1a\x21\xe7\x97\x2b\x10\xf1\x39\x4f\x7e\x73\x90\x51\xd1\xc8\xcc\xb7\x31\xaf\xb8\xab\x19\xda\xa0\x82\x36\x57\x5c\x90\xd8\x71\x52\x89\xd2\x63\xd0\xe6\xdb\x46\x83\xca\x83\x62\xc6\x3d\x8e\x62\xce\x9a\x01\x7e\xbe\xf4\x53\x6d\x81\xa7\x76\x86\x74\x76\x62\x5e\xc2\xe1\xbe\xe8\xb9\x4a\x11\xba\x57\x6a\xfe\x63\xf8\xb7\xb5\x35\xb3\x7e\xec\x1e\x85\x22\x27\x5d\x17\x40\x8f\xd2\xa2\xeb\x50\xb2\x84\xde\xca\x3f\x54\xb3\x47\xa9\x29\x04\xd7\xc4\x2f\xfb\xcb\x63\x04\x82\x9c\xc6\xea\x53\xd3\xfd\xdc\xd5\xa6\x0f\x32\x9f\xe8\xdc\xa5\x41\xf6\xf3\xd2\x3d\x59\x8f\xd2\xa5\x5c\x93\x8f\xc0\xe5\x0e\x6c\xb2\x9b\x8e\x07\x11\x7b\xf5\x2b\xec\x40\x3c\x8b\x34\xb3\xcc\x3d\x2b\x4e\x6e\xb3\xef\xae\xe7\xb3\x02\xd8\x70\xd2\x49\x29\x25\x9e\xdc\xeb\x41\x79\xfd\xfe\xc9\x87\x8f\x7f\x79\xb6\xb9\xb3\x70\x2d\xe5\xff\x7a\xa8\x81\x5a\xaa\x27\x84\x8b\xc3\x07\x1d\x9d\xd5\xe6\xbd\x3f\x21\x08\xa6\xda\xe5\xa9\xb6\x8d\xd6\xd4\x56\x36\xf3\x8f\x1d\xe9\xdd\x6c\x11\x49\x2b\x53\x51\x2b\x19\x72\x66\x2a\x71\x25\xc2\xcf\x05\x37\x51\xfe\xf6\x3d\x84\x45\x64\xc1\x95\x76\xe3\x53\x16\xae\x79\xd5\x99\xa1\xe1\xcb\x00\x53\x3f\x4e\xc5\x77\xe2\x1f\x60\x94\x45\xc9\xcf\xa2\xb5\xac\x66\xac\xef\x3d\xba\xa6\xb2\xca\xd5\x40\x23\xf1\x0f\x39\x56\xf2\xb3\x8b\x56\x5f\x37\xc3\x53\x0d\xb0\x12\x2a\x60\xe5\x8e\x1d\x03\x99\x13\x98\x59\xee\x49\x1e\xf2\xac\x3d\xbb\x0a\x36\x1d\x6d\xd6\x07\x2e\x26\x43\x21\xd4\x7a\xa8\x9f\x01\xfa\x49\x56\xdb\xe2\x59\xac\x89\xff\x38\xc4\x3a\x58\x63\x6f\x68\x3f\x2e\x85\xb9\xb8\x9c\x6f\x9f\x39\x4e\x6d\xaf\x86\x0e\x43\xe4\x33\x70\x0f\x3b\xb6\xb5\x78\x9b\x6f\x55\xdf\xdd\x40\x75\x78\xe4\x41\xc5\x06\x75\xeb\x93\x5f\xe3\x34\xef\x5b\xd4\x29\x48\x27\xa7\x49\x3a\x6c\xbb\xd7\xe3\xae\xfb\xf7\x2a\xe5\x30\xe2\xfc\x1c\xfd\x1c\x2c\xbb\x49\x39\x75\x11\x34\x61\x92\x79\x1f\x46\xb6\x4d\x32\xb5\x88\xda\x2d\xb3\xcd\x65\x9b\x04\x49\x58\xb2\xc0\x21\x81\xa7\xfc\x0e\xd2\xe5\x04\x5a\x07\xe6\xd4\x2e\x8b\x1e\x47\x88\x41\x08\x7b\x37\x78\x9f\xb1\xd8\x76\xf7\x61\x6d\x29\x71\xfe\xcf\xce\xf2\x0f\x6c\x7c\x01\x46\x1d\xaa\x5e\x9e\x4a\xca\x2b\xb7\x8a\x48\x77\xe0\x57\xb5\x51\x07\x6c\x0d\x78\x3b\x91\x00\x78\x9e\x9d\x34\x6f\x10\xf6\x48\xc0\x75\x1e\x50\xec\xaf\x53\x2e\x7f\xb6\x2d\xc2\x8e\xc3\x7c\x3d\x47\x0e\x8a\x42\xa9\xed\xd1\xed\x92\xe1\xc0\xf9\x20\x9b\x79\xc6\xd8\x93\x6e\xe0\xa7\xe6\x2d\x88\x05\xd5\xfc\x40\xb1\x7d\x6d\x4b\x82\x15\x0b\x36\x69\xd9\x3f\xdf\xa1\x36\xe6\xe4\x2a\x46\xd2\x0e\x35\xe6\x8a\x15\xea\x14\x8a\x25\xe2\x56\x1e\xd3\x5a\xe3\xc3\xcb\x27\x06\xc7\x15\x0b\xab\x76\xe3\xd4\xcc\xb4\x5e\x98\x43\xba\x83\xd5\x8c\xe1\xff\xe8\xc6\x18\x1c\x1a\x4a\x85\x9a\xaa\x8a\x75\xf7\xcb\x1d\xde\xdd\xbc\xb4\xfc\xb7\xff\x8c\xab\x4d\xff\x0e\xe6\xd1\x26\xf1\xd9\x0d\xb4\xff\x4b\x7d\xa0\xec\x07\x10\xa7\x7c\xb7\x6e\x52\x17\x1c\xb2\x0a\x9b\x6d\x40\x02\x7d\xdf\xe1\xb2\x69\xa6\x68\xbc\x09\xc0\x2d\x50\x55\x85\x1e\x87\xd7\x31\xa5\x10\xd3\x1d\xc6\x3f\xf6\xd9\x1f\xb2\xce\xe0\x40\x33\x87\xc3\x7f\x8a\xaf\xb9\x04\x3a\x4b\xe4\x2f\x06\x62\x0c\x6b\x7b\x9b\xfc\xde\xa7\xbf\xcb\xe9\xe0\x1d\x2d\x45\xeb\x9a\xde\x5f\xa9\x8a\xdd\x24\x65\xa6\x34\x7f\x32\x18\xb5\x92\x74\x73\x3c\x18\x55\x46\x6f\x0a\x41\x52\x93\x47\x7d\x47\x5e\xc2\x26\x27\x36\xa7\xff\x09\x37\xd3\x40\xd5\xec\x33\x9f\x95\x32\x79\xa8\x78\x5e\xc5\x5f\x4a\xc1\xe0\x2e\x16\x74\x59\x71\x84\xb2\xf2\x46\xc3\x67\x8a\x77\x7f\x8e\x67\x0e\x98\x59\xe1\x83\x15\x63\x87\x7c\x2f\x95\x62\x2b\x61\x22\x57\x70\xa9\x3a\xaa\x7e\x36\xd0\x98\x57\x2f\x36\xe7\x5c\xd3\x31\x84\xda\xb3\x8a\x8f\x75\x4d\x17\xbc\xa5\xe5\x9d\x18\x24\x37\x13\x12\xdc\xe8\x8b\xce\x07\x5c\xb4\x06\xe6\xc3\xe0\x85\x3d\x28\xce\x4e\xba\x05\x33\xc9\xeb\x60\xa7\x80\x3c\xe6\xee\xdd\x9e\x0e\xcc\x0f\x28\xb6\xa6\x81\xa7\xe3\x4c\x94\x9a\x8b\x59\x0f\x93\x26\xc7\xd2\xcb\x7e\xa5\xe2\x8c\xeb\xeb\x9e\xb4\x7a\xb3\xf3\x8f\x37\x64\x82\xd7\x8a\x45\xbb\xd8\x16\x9d\xef\xa5\x91\x40\xbc\xbe\x71\xc6\x01\x5e\xf1\xc1\xa7\x4e\x25\xf3\xeb\xd4\xe4\x93\x19\x6a\x91\x11\x9e\xa4\x6e\xad\x02\x42\xe0\xc4\x3f\x09\xd7\xd9\x86\x74\xf7\xca\x5b\xf7\xaf\x9e\xff\xed\xea\x5d\xf0\xd7\x6a\xde\x0a\x04\x18\x88\x70\xa5\x57\x3d\x59\x91\x1e\xa9\xea\xca\x5a\xba\x2e\x30\xae\x4a\xb3\x9f\x10\x0e\x9f\xa5\x37\xea\xab\x67\x76\x6e\xd3\xb7\x0d\x98\x13\xd9\xfc\x0e\x3a\xf4\x8d\x6a\x3a\xf4\xd9\xfd\xb7\xe8\xb3\xdb\x0a\x5e\xb6\xe1\x52\x5a\xb0\x66\xf4\xf4\xc5\xac\xa1\x67\x5f\xb6\x49\x5f\x5b\x8a\x5d\x6b\x6b\xb1\xaa\x06\x7c\xf5\x01\x08\x87\xb5\xcf\x4b\x7b\x7d\x76\x6e\x89\x77\xf8\x47\x0e\x25\x7d\xcb\x68\x23\x10\xc5\x23\x2b\x8e\x92\x86\xa8\x5e\xb6\xed\x57\x69\xda\x1e\x96\x46\xe1\xae\x54\xb1\x1b\xa5\xec\xb9\xa6\xdc\xa8\xa6\x27\x94\xdd\x7f\x53\x28\xbb\xad\xaa\x5c\x77\x54\x37\xcd\x02\xae\x77\x32\x04\xbb\x66\xb5\xb2\x2f\xe8\x95\xd8\xce\xf1\xd1\x18\xa8\x15\x4b\xa8\x54\x8e\xe2\x90\xd0\x3e\x78\x94\x7c\xa4\x9d\x19\x47\xda\x25\x51\x0e\x59\x84\xa3\xfe\x75\xd6\xad\x32\x1c\x68\x97\x04\x07\x3e\xda\xb0\x80\x40\x81\xf5\x62\x89\x95\xee\x0a\x6c\x6d\x01\xbc\x62\x0a\x93\x12\x4c\x9b\xd8\x84\x1e\x52\x65\xe2\xa8\xe6\x16\x03\xf4\x93\x4f\xd0\x6b\xd5\x62\xf9\x24\xbe\x31\x1f\x68\x1c\x5f\x8b\xcf\xc7\x06\xde\x0c\x17\x49\xe4\xc3\xb3\x32\x93\x9a\xda\xc9\xf7\xd0\xee\xb5\xfb\xf9\xb2\x8a\xe7\xeb\xeb\xe6\x25\xd6\xd7\xc9\x4b\xac\xaf\x8c\x97\xd4\xd4\x27\xbd\x87\xfe\x82\x07\x60\xfa\xe2\x0e\x38\xc9\x01\xf8\xd7\xc0\x49\xac\x13\x39\xc9\x34\x13\x69\xf7\xe9\x93\x69\x95\x58\x89\x55\xc5\x4a\xc4\xb3\x9f\xe1\x9d\x0a\xa0\x14\xd8\x4b\x17\x6f\x58\x27\x6e\x63\xf5\xc9\x6d\x7c\xc6\x75\x92\x6b\x56\x5d\xc3\x75\xde\x32\x8e\xb2\x5d\xad\xbf\x2a\x9d\xe5\xe1\x74\x15\x3f\x40\x63\x29\x1e\xbe\x83\xda\x8c\x17\x0d\x3f\x05\x52\xa9\xad\x99\xfc\xb3\x5b\x55\x91\x07\xc0\xa6\x0e\xea\x02\xfe\x70\xd8\x54\x05\xec\x1f\x34\x9b\x7a\x38\x6d\x70\xbb\x9f\x94\xf1\xec\x0e\xd8\xd4\x01\xf8\xd7\xc0\xa6\xcc\x5e\xd8\x94\x59\xcf\xa6\xcc\x07\xc3\xa6\x9a\xaa\xe5\xf6\x16\x14\x5e\x8f\x1a\x3d\x59\x25\x3d\x12\xf0\xfb\xce\xd3\x73\xaf\xdf\x5e\x4e\xe9\xba\x3a\x4f\xaf\xab\x19\x12\x1c\xe8\x21\x17\xec\x42\xc6\x5c\xe7\xf8\xbc\xb8\x5b\xab\xac\xb4\x50\x53\x9f\x71\xba\xa2\xaa\x12\x5b\x39\xee\x2d\xef\xaf\xa9\xa9\xd4\x5a\x3e\x75\x71\x2f\x45\x1a\x22\xec\x23\x2c\x27\x58\xd3\x74\x74\x5b\x6a\x13\x01\xdb\x86\x70\x40\x50\x14\x12\x07\xad\x58\x80\x96\x8c\xbb\x28\xa4\x3c\x82\x89\x62\x0f\x61\xdf\x41\x01\x91\x3e\x6c\x1c\xec\x91\x98\x77\xb0\x81\xbb\xa5\xa6\x8c\x07\x51\xe1\x14\xfc\xd8\xf7\x19\xcf\xb6\x5f\x6a\x8d\xe6\xa8\x5b\x4a\x14\x12\xf4\x3c\xf2\x36\xf8\xd7\xef\x42\x94\x83\x78\x82\xba\x46\xf7\x49\xb6\xca\x87\x80\x2d\xe0\xc9\x09\x2b\x71\x05\xc5\xf7\x1e\x51\xa6\x1b\xca\xe4\x9c\xea\x1d\xa1\x92\x06\x24\x3d\x02\x26\x07\x98\x72\x30\xea\x23\x60\xfc\x34\xf9\xff\xdb\x86\xcb\x3d\x10\x5f\xb1\x14\x19\x8a\x88\xb6\x98\x26\xcd\x7c\xb1\x8f\xc8\x86\x71\xba\x23\x92\x1c\x1a\xe8\xf5\x0a\x71\x97\x04\x02\x98\xc8\x67\xc9\x5d\x1c\x86\xcc\xa6\xaa\x54\xa9\x78\x93\xbb\x44\x8a\xd0\x3e\x47\x0c\xde\x91\x40\x1e\x88\x3f\xfd\x04\xe6\x62\x18\x71\xef\x26\x60\xfe\x3a\x23\x68\x73\x26\x20\xdb\x3b\xbd\x77\x68\xb8\xa1\x61\x88\xbd\x6a\x92\x9f\xb9\x7d\x07\x54\xbf\x45\xdf\xac\xd2\xdb\x3a\xbd\xd9\xa8\x95\xf6\x7b\x40\xee\xf4\x90\x34\xe9\x8f\x9d\x54\xe1\xb8\x2e\x0f\x74\x78\xa5\x3e\xdd\x44\x9b\x46\x58\xc5\x81\x91\x8d\xa1\xa7\x85\x2d\xfe\xe9\x1a\xef\xbb\x4d\xfc\xee\xb9\xe9\x23\xc2\x7d\x0b\x08\x57\xde\xe5\xfb\xc4\xb9\x36\x41\xe5\x11\xe7\xbe\x05\x9c\x2b\xef\xf2\x7d\xe2\x5c\x8b\x0c\xf8\x88\x72\xdf\x02\xca\x95\x36\xb9\x2f\x8c\x6b\xb4\xef\xf5\x6c\xae\x83\xad\xea\xcf\x56\xb7\x64\xb7\xc4\x79\x20\xc5\x79\x7e\x7b\x7f\x7d\xf5\x97\xe5\xec\x43\x75\x14\xa1\x2a\xac\x27\x4b\x1b\xee\x70\x40\xb1\xcf\x25\xce\xdc\xc5\xe5\x66\x8b\x61\xf6\xfd\x24\xf2\x5c\xae\xff\x2f\xd2\x79\xa7\xbd\x15\x87\xa5\x52\x0b\xe8\xc7\x05\x21\xc3\x66\xe5\xcc\xf3\x6e\x88\x74\x72\x86\x7a\xa0\x4f\x97\x44\x79\xf4\xc3\xdd\x13\x39\x24\xcc\x78\xd2\x9f\xbe\x28\x76\xcb\xbb\xee\x02\xcd\x0a\x5d\x2d\xf7\x05\xdd\x87\xb7\xd5\x3f\x45\xbd\x4d\x0e\x8d\x9e\x8b\x37\xd0\x55\xbc\xfd\xc7\xfb\xfa\xf2\x27\xec\x18\xf7\x5e\x7e\xf2\xd2\x25\x5b\xed\x80\xab\x9a\x7b\x8b\xab\xec\xc0\xaf\x37\xf5\x41\x6b\x19\x68\xc3\xec\x6b\x5d\x29\xf0\x75\x43\x74\x1b\x84\x6e\x32\x7d\xff\xea\xe3\xd7\xdb\xe7\xb2\xdd\x9f\x7f\x94\x7a\xa0\x1f\xeb\xb5\x3c\xb7\x37\xf3\x1b\x24\x25\xe6\xbc\x9e\x96\xbc\x06\x75\xfb\x24\x4a\x12\x6b\xec\x59\x3a\x22\x86\x3d\x13\x15\xa9\xb7\x03\x3d\x52\x93\x47\x6a\xf2\x48\x4d\xce\x4d\x4d\x46\xe3\x7a\x6a\xf2\x4b\x52\xfb\xe7\x14\x82\x92\xab\x2d\x94\xd2\x14\x35\xf8\x19\xc9\x4a\xad\xf1\xe5\x91\xb2\x3c\x52\x96\x47\xca\x72\x6e\xca\x32\x19\xd6\x53\x96\x97\xca\x7c\x71\x12\x61\x49\x6d\x20\x59\xba\x22\x87\x3e\x23\x59\xa9\xb3\xaf\x3d\x52\x95\x47\xaa\xd2\x13\x55\x29\x85\xd2\x99\xad\xae\xdc\x53\xcd\x36\xb9\x5c\x79\x45\x0a\x1a\x6a\xb8\xf7\x42\xf5\x16\xdf\x1e\xd1\x9b\x0d\xcb\x41\xdb\x49\xcc\xfb\x68\x60\x0e\x07\xea\x77\x55\xc8\x75\x17\xda\x17\xd0\xb5\xcb\x75\x17\xfb\x4e\xb5\xcd\xa7\x58\x9c\x59\x7d\x53\xdd\xff\x3c\xa8\xb4\x09\xa1\x5f\x28\x77\xd1\x7b\x31\x34\xba\xc0\xbe\x83\x5e\xc6\xe9\x4b\xed\xe1\xe1\xd5\x67\xab\x58\x14\x20\x4f\x45\x65\x26\x3f\x4c\x2c\xf4\xa2\x75\x21\x2d\xef\x10\x52\xd4\x9d\xa2\xa2\x6e\x4b\xae\xa6\x1b\xb5\x61\xe0\xdb\xc8\xf3\xe4\x9e\x68\x99\x38\x5f\xa8\xd2\x77\x93\x1e\x44\xea\x73\x12\xec\xe4\x5e\x99\xc3\xe1\xf0\x73\x63\x14\x78\x1d\xa5\xe9\x91\xc0\xf7\x44\xe2\x7b\x23\xf2\x7d\x91\xf9\x3e\xd9\xc5\xb1\x2c\xa0\x07\x72\x3f\xac\xbb\xb3\xf8\x26\xf9\xc0\xec\xdb\xe3\x03\x0b\xab\x91\x0f\xcc\x4f\x65\x03\x1e\x59\x71\x1d\xf2\x4e\xba\xb2\x81\x79\x8e\x0b\x54\x0a\x98\x92\x26\x7e\x00\xa7\xec\x4b\x62\xb3\x00\x67\xcb\x7b\x9d\x87\x09\xcc\xef\x9d\x07\x14\xd7\x7b\x20\x07\x48\x92\x7f\x6e\x5c\xca\xb3\x1d\x75\x67\x87\x11\x91\x47\xea\xfe\x0f\x42\xdd\xe7\x75\x37\x66\xdf\x24\x71\x9f\x7c\x7b\xc4\xdd\x34\xc7\x8d\xd4\x7d\x7a\x2a\x75\xbf\xa1\xdc\xd5\x57\x8c\xf1\xae\xc4\x7d\x9a\x27\xee\x15\x54\xee\x15\x63\xfc\xbc\x94\x7c\x7a\xef\x94\xfc\x12\x07\x6b\x82\x2e\x08\x76\x48\x70\x1e\x8a\x8b\x92\x9d\x79\xa4\xbd\x77\x41\x7b\x0f\xdc\xa2\x4e\x1b\x93\xe3\xe4\x49\x25\x98\x15\xd7\xb1\x47\xd7\x3e\x71\xd0\x86\x84\xa1\x82\x6b\xa3\x31\xa9\xb9\xc7\x5b\xbd\x86\x38\x1c\x68\x1f\xd8\x7a\xed\x11\xc4\x02\xc4\xb8\x4b\x02\x94\x14\x52\xbd\x47\xbe\x34\xad\xbb\x31\xf9\x26\xf9\xd2\xe8\x1b\xe4\x4b\x55\x25\x03\x32\x7c\x69\xdc\x0b\x5f\xf2\x04\x95\x05\xe2\x5c\x32\xbe\x97\x19\xd3\xb8\x95\x31\x65\x89\xf6\x79\x19\xd4\xf8\x6e\x19\xd4\x41\x43\x95\xfa\xd0\xe4\x69\xef\x21\xcc\xae\x8e\xd4\xd5\x2b\x2d\x32\x6e\x7e\x29\xd4\xa0\x4c\x59\x83\xcc\x7c\xae\x54\x47\x86\x43\x89\x7a\xbf\x40\x68\x5b\x14\xc7\x6b\xb1\x12\x16\x71\x8f\xe6\xdb\x5a\x3d\x43\xe2\x1e\x77\x31\x47\x6b\x46\x42\xc4\x7c\x71\x52\x89\xcd\x7c\x07\x89\x67\xd1\x92\xd8\x38\x0a\x09\xa2\xfc\xd7\xef\x42\x14\x60\x20\xca\x1e\x2b\x36\xeb\xb8\x33\x46\xf6\xa8\xdd\x7d\xad\xda\xdd\xb8\xb5\x46\xdc\x37\xc5\x45\xbf\x41\xbf\xb5\x39\x9d\x36\x72\x51\xab\x17\x2e\xea\xe0\xe0\x3a\x39\xe6\x8d\x2c\xd4\x6a\x65\xa1\x2f\x71\x70\x8d\x9e\xcb\xb1\xce\xc8\x3f\xad\x7b\x57\xf0\x92\x85\x9e\x49\xbb\x53\x4d\x11\x1f\x29\xef\xd7\x48\x79\x6b\xcb\xa2\x99\x67\xcb\x60\x29\x51\x90\x9e\x12\x59\x1e\x4c\x87\xf8\xf9\x6b\xf2\xb7\xfd\x85\x3f\x3e\xa5\xf2\x4c\x66\x35\xb5\xf5\x67\xae\xd4\x75\xf4\x3c\xd7\x40\xfe\xb8\x2c\x73\xbc\x5b\xe2\x00\x64\x5a\x90\xf0\x70\x50\x21\x4a\x75\x1a\x43\x87\x42\x4a\x95\x28\xaf\xde\xf7\x71\x0d\x6d\x49\x96\x01\x65\xc1\x84\xa8\x5e\x45\x0f\xd4\x28\x99\x4e\x03\xb5\x21\x45\xf5\xc6\x86\xc4\xa4\xb0\x95\xcd\x7c\x0e\x48\x5e\xeb\xe5\xc3\x57\xd1\x52\xe7\xa7\x7d\x3c\x0b\xba\x6c\x83\xfe\x13\x66\x25\xdb\x4e\xa0\x03\xa0\x52\xbc\xd2\x95\x3e\x1d\x5f\x75\x22\x83\xec\x90\xb0\xc8\x7c\x6f\x8f\xc8\x8e\x04\x32\x75\x91\xfa\x50\xfc\x21\xc1\x62\xe4\xe3\x5d\x5c\x2d\x42\x75\xbf\x44\x52\x0d\xaf\xed\xe9\xd6\xb1\xfc\x43\xee\x88\x56\x96\x1f\xbe\x82\xab\x99\x19\x3f\x9e\xce\x73\x9d\xce\xfb\xc7\xc3\x35\xdd\x11\xa1\x21\x7b\x0c\xaa\x93\x90\xcd\xd6\xc5\x21\x64\xe4\x3a\x88\xad\x38\xf1\x91\xc3\xa2\xa5\x47\x10\x0e\x11\x46\x5b\xbc\x26\x08\x30\xc5\x40\x57\xd4\xb7\x89\x40\xd0\xbd\xaa\x99\x12\x32\xb4\xf6\xd8\x12\x7b\x08\xbe\x3b\x48\xef\xd1\x8d\xe0\x6a\xd8\xe7\x90\xa2\x2b\xb4\x0b\xea\xaf\x11\x16\xa8\x1f\xa0\x6b\x42\xb6\xe2\x51\x1a\xa0\x25\xc1\x42\x17\x08\x9b\x71\xbc\x7f\xd6\x9e\xc2\xa4\x47\xc6\x0e\xf9\xbb\xf7\xcd\xd4\xdf\x59\x5f\xfe\x73\x38\xba\xba\x69\xcd\x4d\x3d\x39\x51\x34\x65\xf7\x67\xac\xeb\xfa\xd5\xaa\x9f\x12\x19\x3a\xe5\x88\xb6\x00\xb2\x8a\xa4\xcb\xd1\x3b\x48\x5c\x0a\x27\x4f\x09\x91\x16\x68\x74\x00\xbb\xce\xa7\xb3\x67\x5e\x7c\x9e\x5c\xa8\x0d\x6e\x6e\x1a\xa9\x2a\x0a\xe3\x97\xf8\xf7\xd1\x23\x7a\x05\xdf\xcd\x65\xfc\xfb\xe8\x11\x0b\x3a\xe6\x4b\xf5\xf3\xe8\xf1\x96\x1e\xce\xc1\xff\x79\xfc\xfb\x84\x35\xfb\xd7\xb9\x25\xfb\x95\xe3\x35\x48\x77\xe7\xc1\x15\x94\x69\xfc\x9d\x8e\xf1\x2e\xbd\x72\xf4\x8a\x0b\x39\x88\xaf\xd5\xcf\xa3\xc7\x2b\xd7\xa1\xb9\x4a\xaf\x1c\x8f\xdd\xa5\x94\xa6\x5f\xd2\x2b\x27\xe0\x63\x21\xa3\xe1\x65\x72\xe1\xa1\xe6\xcb\x7c\x53\x74\xdf\xac\x27\xfc\xca\x99\x51\x49\x9e\x9b\x09\x7f\xfa\x66\x9e\xf0\xff\x24\xaf\xdf\x3f\xdd\xaf\xf1\xd5\xfc\x94\xb9\x74\x34\x46\xc7\xea\x51\xf5\x27\xfa\xa2\x17\x35\xc3\xf7\x45\x3b\x6a\x86\xef\x91\x8e\xd4\x7c\xa1\x3f\x9a\x92\xfd\x00\x40\x2d\x16\xfa\x1f\x89\xcd\x3d\x11\x9b\xd1\xa8\x9e\xd8\xb8\xcc\xf3\xd8\xcd\xe1\xa4\x26\x7e\x2f\x4f\x68\x2e\xe0\x6a\xaf\x74\x46\x5c\x54\x2d\x42\xb5\x25\xb6\xaf\xd7\x81\x80\xe5\xd3\x3f\x58\x93\xe7\xcf\xe6\xe6\xbf\xa0\x2d\x76\x1c\xea\xaf\x9f\x8e\x86\x69\xbf\xd7\x53\xe9\x07\xf5\x77\x24\xe0\x12\x7d\xcf\x4c\x4b\x5a\x3e\xd5\x27\x5d\x69\xf9\x54\xcf\x34\xa6\xe5\x6b\xfd\xd2\x9b\x96\x8f\x3d\x92\x9b\xbb\x24\x37\xe3\x86\xf2\x02\x21\xfd\x72\x58\x75\x81\x58\xa5\x55\xef\xe5\xc9\x8d\xa4\x33\xe8\x8a\x7e\xa9\x96\x96\xee\x4e\xa8\x91\xdd\xdd\x33\x87\x29\xfe\x7d\x14\x72\x67\x06\x7a\x9b\x04\x03\x1f\x7d\x4c\x36\xc4\xa1\xb9\xfa\x73\x6f\x92\x0b\xc7\x2b\x8b\x05\x03\xea\x65\xfc\xfb\xec\x69\xb1\xe7\xb3\xfe\xa5\x78\xdc\x8f\xe5\x4f\x95\xcb\xbf\x67\x6f\x1e\xa1\x8e\x4f\xf6\x3f\x9f\xe2\xcd\x4b\x7a\x02\xb4\x34\x31\x97\x59\x90\xe9\x00\x5b\xec\x11\xce\x49\x6a\x2a\x84\x81\xde\xc5\x57\xd5\x41\x96\x5d\x51\x02\xba\x8d\xc3\x61\x65\x30\x0b\x00\xfa\x83\x4b\x36\x71\x0a\xeb\x06\x3b\x48\xfe\x1e\x68\xcf\x6c\x1b\xfa\xc9\xf8\x0e\xf2\x49\xc4\x03\xec\x85\x86\xf6\xb9\xd4\xe0\x39\xb1\xa5\xf7\x3b\x35\xd5\xc3\xea\x45\xd2\x0e\x41\x7b\x27\xaf\x20\x75\x69\xa0\xc9\x3f\xd0\x2a\x60\x1b\x15\xee\x7b\x81\x43\x97\xbe\x60\xc1\x16\xc5\x2d\xb0\x0c\xf4\x13\x18\xd6\x97\x2c\x08\xd8\x8d\xaa\x5b\x89\x3d\x4e\x02\x1f\xcb\x12\xe2\xb0\x4a\x69\x83\x87\xf9\xa1\xd0\x16\x00\xb8\xcb\xb5\xaa\x72\xe6\x99\xb5\x7e\xaf\x0a\x9c\x17\xd7\x1a\xfb\xaf\x6c\xe6\xff\xa6\xb0\x3c\x5f\x32\x1d\xca\x70\x06\x24\xdc\x32\x1f\x0a\x99\x97\x96\x70\x87\xa6\x7e\x89\xd2\x7d\x9e\xf5\xed\x5e\x8f\xab\x78\xde\xeb\x81\x67\xfe\x9b\x77\x6f\x9f\xdd\xbe\x39\xed\xc0\xa7\xab\x29\xb0\xdc\x17\x6c\xbb\x47\xb1\xcd\xb6\xd9\x1d\xd8\x16\xb4\x29\x55\x88\x84\x7b\x22\x9f\xe9\x42\x9c\xd1\x79\x80\xfd\x70\xc5\x82\x8a\x92\xa9\x64\x6e\xcf\x17\x73\x3c\xd4\x67\x8b\xf1\x52\x5f\x0c\xa7\x23\x7d\x86\x67\x2b\x7d\xb9\x1a\xda\x63\x3c\x1e\x4e\x56\xf3\x51\xc6\xa5\x66\xc6\x5d\xe5\x33\x9b\x93\x1c\x02\x8f\x6e\x97\x0c\x07\xce\x07\x72\x0b\xaa\xa9\xd6\x65\xf0\x0a\xac\x3d\x88\xc7\xf5\x8d\xc5\xc9\xc2\xfa\x43\x65\x87\xae\x56\xfa\x8e\x92\x1b\x12\xdc\x33\x2a\xff\xf3\xf8\xe3\xd5\x7f\x44\xe6\xdb\x53\x50\x39\xb3\x1a\x9d\xfa\x42\x2a\x8f\xdb\xd4\xe5\x0a\xc8\xd0\xd5\x0a\x7d\x84\xa7\x24\xcd\x7a\x9d\x79\xf4\x38\xa7\x77\x4b\xdd\xcc\x43\xde\x6e\x0d\x54\xcb\xe0\xfa\x6f\x6c\x09\x3b\x98\xf1\xcf\x89\x5f\x09\x3d\x4f\x61\xf0\x93\xef\xed\x55\x58\x5f\x11\xa1\x7b\x73\x48\x57\x6e\x83\x43\x3c\xc2\x2b\x9a\xe3\x97\x36\xe1\xa5\x7a\xf0\x5b\xdb\x83\x18\x00\xf7\xb7\x05\x29\x16\xe8\x3b\x12\x2c\x59\x58\x0a\xfe\x28\x6d\xc6\xf7\x0e\xe5\xdf\xda\x46\x10\xb1\xa6\x33\x6d\x42\x4d\xfc\xcd\x01\x21\x1a\x52\x3a\xe4\x74\x43\x42\x84\x91\x98\x39\xba\xa1\x9e\x27\x43\x86\x5c\xbc\x93\x26\x80\x68\xeb\x11\x48\x68\x08\x0d\xf4\x86\xfa\x2c\x40\xfc\x86\xe0\xeb\x10\x71\x86\x30\xfa\x8d\x2d\x51\xb8\x25\xb6\x90\xbb\x22\x8f\x0b\xf9\x4c\x32\x5b\x31\x5c\x4b\x7c\x45\x7b\x0c\x51\x16\xa5\x12\x8d\xb0\x11\x8b\xde\x60\x7f\x8f\x5e\xb8\xd8\x5f\x37\x68\xec\x5f\x27\x32\x01\x00\x5e\xc2\xa5\x9e\x91\xa9\x77\xb9\x21\xb3\x6f\x7d\xca\x0d\x21\x0f\xe8\x32\x92\x70\xc5\x81\xfe\x5b\xb4\x59\xb2\x7b\x16\x21\xf6\xcf\xd9\x5f\x5f\xbe\x7e\xbd\xaf\x89\x7b\x71\x71\xc0\x85\xe6\x83\x79\xb4\xd1\x06\x1a\xf5\x1d\x72\xdb\x12\x02\x93\x20\x3f\x2c\xaf\xb4\xea\x3a\x2d\x79\x2c\x30\xb2\xf0\x68\x8a\x48\x98\x63\x2d\x46\xd1\x94\x4d\x64\x9e\x7f\x8e\x83\x97\xe2\x21\x81\x0b\xe1\xd6\xa3\x1c\xb6\xaf\xc1\xe6\xa5\x4e\x01\xf3\x2a\x0f\x81\x47\xd6\xc4\x2f\xc4\xe1\xab\x63\x9e\x64\x94\x48\xab\xa4\x23\xbf\xda\xd6\x5f\xb5\x32\xc2\xb3\x90\x60\x10\xe7\x13\xc0\xb5\xb7\xaa\x9f\xaa\x86\x54\xe7\x62\xba\x8a\xad\xa7\x49\x0f\x63\x68\xbf\x2d\xb7\xe4\x73\xd2\x49\x55\x06\x8a\xbe\xcc\xef\x98\x9a\xdf\xe7\x7c\x28\xa9\xba\xd4\xf2\x05\xc0\x30\xf1\x85\x61\x76\x10\xb2\xd9\xf2\x4c\x6e\x45\x73\xea\x43\x5e\xd3\x29\xe6\x55\x80\xae\xa9\x87\x37\x98\xdb\x6e\x61\x2e\x15\x00\xa9\xb9\x98\xcd\x10\xd1\xe4\x58\xba\x4c\xd1\x18\x0d\x3e\x25\xeb\x2f\xce\xb7\x21\x45\xa2\x56\x3b\x53\xf0\x48\x2b\x5b\x15\xc0\xd4\x56\xc4\xaa\x69\x6c\x0f\xba\x58\x37\xa6\x5a\xa4\x5f\x54\x0f\x57\x51\xd2\x2a\xdb\x62\xf5\xd5\x32\x55\xb5\x06\xf9\xb4\xac\x2e\xef\xb4\xf6\xb5\x3d\xb9\x0d\xdd\x81\xa6\xe9\x67\x08\xec\xf5\x60\x64\x51\xe1\xc1\x2f\x33\xe4\x02\x3d\xc7\x41\xc6\x27\xb0\x62\x01\xba\x71\x89\x8c\x2d\xce\x92\x15\x24\xe3\x72\x65\x6f\x3a\xe2\xf3\x20\xe7\x4a\x88\xe3\x8e\xf1\x9a\x18\xe8\x35\xa4\x49\x62\x04\x6c\x2e\x40\xb2\x79\x8a\xcc\xaf\x0c\xc8\xef\x11\x0d\x08\xb4\xbf\x83\xb2\x67\x32\xb5\x5d\x48\x20\x21\x21\xf2\xa3\x98\x8b\x57\x97\xc4\x93\xe6\x2c\xc0\x26\x90\x3f\xaa\xd9\xe2\x03\x64\xff\x21\xf3\x13\xb5\x38\x26\xdc\xe2\x62\x1b\xc1\x7e\xf0\xb2\x40\x15\xdb\x3e\x9f\x58\x70\xcf\x02\xc1\xef\x4f\xc2\x0f\x3f\xfe\xc7\xe5\xab\xbe\x03\x61\x1f\xd3\x2d\xbb\x6c\xfe\x99\x02\x5f\x4b\x38\x9c\x89\x80\xed\xd4\x17\xfe\xa0\x28\x04\x97\xd0\xb5\xcb\x9f\x4e\x86\xdb\xdb\x7f\x41\x37\xd4\xe1\xee\x53\x6b\x28\x7e\xd4\x7b\x10\x15\x0d\x69\x91\x00\x8f\x22\x24\x77\x91\x2c\x70\x9a\x0b\xf5\x43\x15\xd3\x01\xd1\x1b\x6d\x03\x26\x28\x01\xb8\x06\xbc\x3d\x0a\x5d\x76\x23\x59\x05\x85\x6c\x7d\x99\x80\x22\xf0\x06\xbd\x16\xba\xab\xed\x45\x0e\x28\xc3\x9c\x31\x8f\xd3\x2d\x62\x51\xc2\xa5\x96\xec\x76\x80\x70\x18\x46\x42\x5d\x86\x1c\x1a\xfa\x85\xc4\x37\xc5\x69\xc0\xd4\x27\x01\x22\x1e\xac\x6d\x00\x5c\x88\x86\xc8\x21\xa1\xac\x00\x23\x0f\x0e\x80\x46\xb5\x7a\x7d\x71\x75\x65\x9c\x14\xf6\xda\x73\xe7\x9c\x2e\xe9\xaa\xe7\x63\x58\x4d\x40\x78\x8c\xa0\x38\x13\x95\x34\x17\xf5\x64\x12\x70\x14\x30\xe5\x90\x50\xd1\x12\xa9\x84\xcc\xf4\x64\x98\x6f\x85\x5c\xfe\x42\xb9\xfb\x22\x81\xcd\xd7\x4a\x39\x5f\xaf\x10\x46\x60\x9c\x10\x94\x72\x47\x25\xf1\x53\xe3\xd9\xcc\x21\xc5\x2c\xb5\x8c\xd2\x98\xac\x0c\x88\xac\x10\xa5\x06\x88\x72\x69\x41\x5c\x42\x7b\xea\x84\xee\x49\x0a\x19\x48\xd7\xac\x43\xfd\x75\xd3\x27\x02\x62\x67\x33\x21\x32\x04\xd5\xf3\xd8\x8d\x78\x59\x68\x1b\x76\x14\x72\xb6\x91\x5e\x6b\xfa\x45\x76\x59\xfc\x87\xa3\xa5\xdd\x90\xf0\x91\xac\xde\x39\x59\x1d\x4d\xeb\xc9\xea\xca\x23\xb7\x74\x49\x3d\xca\xf7\xa7\x08\xa0\x10\xaf\xa6\x9b\xe7\xa4\xa8\x66\x86\xa2\x4e\xbf\x42\x01\xb4\x15\x7a\xd6\x39\xa1\x27\x79\x90\x02\xdf\xe8\xeb\x83\xde\x1d\x31\xa1\x97\x45\xc1\x3d\x2b\x62\x3b\x74\x43\xfc\x90\x32\x3f\x2c\x09\xda\x75\xd4\xfe\x91\x92\xf5\x4a\xc9\x26\x0d\xa1\xfd\x1e\xdd\x11\x14\x6d\x1d\xcc\x0f\x0a\xb9\x2d\x9d\xc6\x74\x88\xbb\x91\x0e\xcf\x4f\xcb\xde\xc3\xc9\xf1\xd7\xdf\xd0\xa9\xf4\xe9\x46\xa0\x90\xd4\x5c\x41\x85\xb6\xa5\x97\xf5\x1f\x4f\xec\xea\xb0\xbb\x8f\x32\xd7\x9d\x53\xaa\x59\x43\x6b\xb0\xd4\xd0\x73\x92\xc8\xa5\x8a\x98\x7c\x1b\x44\x2a\xda\xf4\x40\x9d\xee\x3f\xaa\xbe\x0a\x21\x7a\x72\x2c\x04\x6c\xeb\xb0\x9b\xfb\x8e\xb7\xfd\xc1\xbd\xfc\xed\x62\xbe\x7f\x5f\xed\x50\x60\x32\x9c\x7a\x50\xfa\xa3\x6b\xf8\x62\xbc\xc8\x52\x6d\x9e\xcd\xd6\x23\xe8\x65\x72\xbb\xf2\xd8\x6c\xd9\x0d\x09\xf4\x90\x88\x63\x9d\x62\x9e\x9c\x81\x40\x76\x79\x87\x38\xf0\x27\x0e\x6c\xf7\x15\x25\x5e\xfa\xeb\x7b\x1f\x2f\x3d\xb8\xcb\x7c\x19\xb3\x93\x22\x6c\x3c\x08\x38\xa7\xa1\xca\xae\x1a\xeb\x27\xb5\xbe\xcf\x03\xcd\xc7\x1b\xa2\xfc\xdd\x6b\xae\x15\xdf\x1c\x68\x1e\xf1\xd7\xdc\x15\x8f\x9a\x89\xef\x1d\x9e\x56\xa5\xb1\x25\x39\x1c\x0e\x3e\xc5\x1e\xf0\x4d\x94\x0e\x53\xfa\x5e\xd1\x05\xde\x14\x19\x61\xc6\x9e\x73\x39\xc7\x0e\x91\xe8\xa3\x76\xe2\x7f\x7a\xc4\xd7\x3b\xb1\x5f\xe8\x0a\x56\x86\xec\x28\x08\x88\xcf\xbd\x3d\x5a\x45\xde\x8a\x7a\x5e\x88\xb0\xe7\x09\x41\x1b\x72\x21\x7e\xfd\x2e\x44\x31\x76\x20\x9f\x10\x27\x2c\x58\xc3\x4f\x0e\xee\x52\x83\x0b\x6d\x8c\x94\x6a\x89\xc4\x98\x87\xde\x13\x75\xff\xb8\x60\x2e\x9b\x79\xd1\xc6\x0f\x0f\xf6\xe3\xca\xf7\x84\x2c\x31\xaa\x0c\x63\xb9\x3f\xd4\xb7\xee\x1a\xf7\xad\x03\x90\x1f\x95\xa2\x2c\xba\x1e\x00\xab\x25\x68\xe2\x6e\x63\x23\x63\xf4\x0b\x55\xcd\xa9\x1b\xbc\x0f\x91\x39\x1c\xfe\x93\x60\xcf\xc4\x40\x1f\x18\x08\x44\x01\xf3\xe0\x38\x00\xcf\x16\x67\x03\x27\x67\x66\x80\xb0\xf3\x5b\x14\xf2\x0a\x45\x96\xf2\x30\xa3\xc8\xa2\x9f\x7c\x82\x6e\xf0\x1e\x02\x2a\x6d\x97\x92\x1d\x41\xdc\xa5\x21\xa2\x21\x8a\x84\xd0\x81\x14\x0e\xf7\x77\xe0\x00\x05\x6b\x4f\x1c\x88\xf8\x57\xea\x99\x7f\x98\x53\xb7\xc1\xfe\xfe\xa7\xe6\x93\x37\x6a\x38\x79\xd9\xd7\x7b\x3d\x7d\xa3\xa3\x4f\x9f\x79\xc0\xe9\x33\x1f\xd4\xe9\xfb\xc5\x25\x90\xd3\xc6\x02\xe4\x33\x75\x82\x62\xec\x74\xa1\x40\x9c\xdc\x4f\xc1\x86\xc4\x31\xb1\x99\xbf\xa2\xeb\x28\x10\xbb\x6b\xa0\x0f\xfb\x2d\xb5\xc1\xdf\x0b\x2f\x4a\x89\x0b\xa2\x90\x98\xf4\x00\x27\xaf\x33\xdf\x26\x99\x23\x0b\x63\x6f\x58\x20\xce\x1f\xf6\x91\x39\x44\x0a\xb3\xee\xb8\x4e\x5c\x3c\x9f\xfe\x64\xd9\x15\xf3\x79\x9c\xe3\x7c\xbf\xe2\xec\xea\xcb\xd6\xfa\xf9\xf2\xe6\x3f\x4e\xc9\xb9\xc9\xae\xa6\x2d\x69\xf4\x70\xeb\x87\x7a\xcb\x35\xab\x73\xcb\x62\x7a\x99\x4d\x4c\x96\xfd\xde\xca\x2a\xbf\x1a\x6a\x5b\xf4\x71\x5d\xb1\x0d\x41\xdb\x80\x85\x44\xe0\xe4\x4a\xe6\xa9\x09\x64\x85\xe0\xb7\xb8\xf0\xe1\x5b\xc6\x91\x4f\x6c\x12\x86\x38\xa0\xde\x1e\x14\x6a\x19\x6b\x17\x10\xec\x08\x5d\xbb\xf9\x8c\x9e\x0a\x00\xab\x1e\x00\x82\x42\x8f\xb5\x62\xc6\xf7\xb7\x09\x86\x51\x33\x18\x26\x5a\x21\x2b\xff\x61\x42\xe1\x0e\xc9\x57\xe6\x78\xf6\x4d\xc1\x38\xb6\xaf\xef\x3b\xe3\xdd\x5d\xee\x26\xcf\x3e\x0c\xab\x13\x60\x4f\x2b\x75\x49\x7d\x8f\xfa\x80\x3a\x80\x22\x8f\x05\x2e\x9b\xd0\xa0\x53\xac\x9f\x8e\xb7\x5b\x8f\xe8\xe1\x3e\x84\xc2\xbe\x5d\x8d\x7f\xf0\x99\xfc\xab\x79\x61\xb9\x75\xdc\x9c\x3d\xb0\x94\x32\xcf\xf7\x5b\xb2\xc2\x76\x26\x67\x5e\x7c\xf1\x15\xde\x50\xaf\x7a\xde\x07\xa5\xb2\x3f\x1a\x8f\x0f\x40\x9e\x59\x3d\xf2\x3c\xf7\xa8\x7f\xfd\x06\xdb\x57\xb0\x0b\xaf\x98\x5c\xf2\x01\x18\xb4\x14\x03\xe8\x1b\x6c\xd7\x60\x51\xb7\x0f\x9c\x88\x4a\x95\x1f\x79\xc4\xa7\x73\xe1\x93\xd9\x40\x8d\xae\xc8\x9a\x11\xf4\xf3\xeb\x03\xd1\x28\x14\xaf\xe9\x11\x2d\x19\x69\x1b\x86\x3b\x11\x69\x32\x43\x3f\xa2\xca\xd9\x50\xa5\x81\xf6\xbc\x67\x4b\xc6\xd9\x81\x88\x12\xa8\x97\xf2\x68\x52\x3f\xd4\x89\x48\x92\x0c\xfc\x88\x22\x67\x13\x6d\x1a\xa8\xc9\x4f\xb7\xfb\x35\xf1\xd1\x15\xae\x2e\x60\xd0\x80\x27\x0c\xde\xd4\x43\x5c\xae\x54\xd1\x32\xe8\x89\x18\x23\x47\xd7\xd5\xe8\x8f\x68\x73\x36\xb4\x69\xa0\x2c\x3f\x2f\x23\x9f\x47\x07\x62\x4c\xa4\x5e\xca\x23\x4b\xfd\x50\x27\xe2\x49\x32\xf0\x23\x8a\x9c\x0b\x45\x46\x0d\x94\xe5\x05\xf6\x39\x0e\x88\x57\xd7\x15\xb0\x0e\x4b\xec\xf4\xbd\x42\x55\xa7\xa6\x01\x4f\xc4\x95\xec\xd8\x8f\xe8\x72\x36\x74\x69\xa0\x28\x17\xc4\xdb\x11\x4e\x6d\x8c\xde\x12\x99\xc3\x7d\x00\xce\xb8\xf1\xcb\xba\x4f\xa2\x52\x81\x8f\xf6\xa1\x4f\xc4\x9e\xd2\x07\x1e\x51\xe8\x5c\x28\x34\x6e\xca\xc9\xc4\x7e\xa8\x87\x24\xa0\xab\x43\x75\xa3\xcc\x8b\x79\xd4\x69\x1e\xf2\x44\xb4\xc9\x0d\xfe\x88\x32\x67\x43\x99\x06\xaa\xb3\x61\x3e\x0b\xb7\x62\x93\x0e\xc3\x98\xcc\x7b\x79\x84\x69\x1c\xf0\x44\x7c\xc9\x8e\x7d\x3a\xba\xdc\x5d\x78\x5d\x61\x57\xfa\xb1\xe5\xaf\x23\xce\x49\xa0\x6f\x88\x1f\xdd\x77\x05\xc0\x2f\x1f\x56\x3f\x0f\xdd\xcb\x6a\x5b\x3e\x34\x83\x1b\x14\xfe\x39\x2c\xbe\x4e\x2d\xd5\xc7\xbb\x22\xb6\xfd\x00\x77\xd0\x1b\x01\x84\x7b\x8b\xb2\x18\x57\x05\x98\xb6\xbc\x2d\x97\xd4\x18\xac\x8d\x43\x9a\x49\xec\xcb\x75\x7d\x85\xe5\x36\x16\xbb\xd9\xd6\xbe\xa8\x17\xcb\xbb\xbc\xf3\xb0\x4d\x6a\x7b\xc8\xab\xf1\xa2\xea\x12\x45\x72\x40\x1a\x36\x34\xd5\xd5\x2a\x9b\xf5\x35\xb6\xe6\x6b\xeb\x3a\x09\x33\x46\x3f\xf9\x89\x7f\xb0\xb1\xc5\xfd\x21\x5f\xce\x7d\xe0\xc3\x0d\x6b\xfa\x40\x1e\x62\x27\x6e\xc2\x2b\x82\x79\x14\x3c\xac\x6d\xc8\x4f\xed\x9c\xf0\x8e\x3f\x71\x10\xc4\x9b\xae\x56\x3b\x8e\x2b\x5d\xc9\xcd\xe7\xfb\x88\xa3\xdd\xde\x6b\xba\xcb\x00\x3b\xbc\x8e\x6a\xbb\x4c\xb7\x2f\xef\xe4\x40\xa3\x0a\xe2\xab\x07\xd4\x76\x53\xf1\xa9\x64\xf5\x52\xc4\xf8\x2d\xde\xd1\xb5\x2c\x7a\x04\x41\x70\xef\xa9\xed\xa2\x17\x99\xb7\x1e\xe9\xf4\xd7\x43\xa7\xcb\xcf\xb5\xa3\xaf\xf8\x56\xb6\x05\x6c\x87\xe0\xc3\x4c\xc8\x61\x1a\x87\x98\x0f\x2f\x9c\x0f\x34\x16\x14\xc2\xfb\xe2\x18\x76\x49\x9a\xb2\x11\x82\x41\x80\xf7\x02\x7b\xc5\x9d\x81\x26\xe8\xca\x40\xfb\xe0\x06\xa4\xf8\x5c\xe7\x48\xc2\xc3\xc2\xd7\xcb\x00\x93\xd1\x84\x63\xf8\x44\x9b\xe4\x3a\x2e\xc5\x11\xb6\xd1\xc0\xf6\x3b\x8f\x2c\xf8\x91\x05\x3f\xb2\xe0\x87\xc9\x82\x8f\x8d\xf0\x7d\xed\x23\x16\x38\x24\x40\x9c\x25\x8d\x99\x91\xe4\x58\xc8\x4f\xb9\x70\xc8\x03\x82\x37\xb2\xd5\x1b\xf6\x1d\x44\x70\x08\x71\xf2\xe9\x23\x03\x24\x58\x7b\x6a\xb8\x08\x51\xe8\xb2\xc8\x73\xc0\xb4\x21\x14\x41\xe2\xc8\xd2\x84\x5b\x16\x86\x14\xe2\x83\x7f\x11\x3f\x7d\xc6\x93\x4b\xaa\x83\x74\xfa\xe2\x35\xd9\x72\xe4\x13\xa1\x3f\xba\x04\x71\xb6\x3d\x35\xf4\x3e\x23\x89\x6c\xb0\xbf\x07\x1e\x53\x12\x42\x2e\xf6\x5b\xc6\x5d\x30\x46\x7a\xa8\x46\x22\x81\xfa\xc6\xaf\xe5\xdb\x8f\xc2\xc8\x43\x11\x46\xb4\x42\x69\xdb\x02\x1b\x47\x59\x26\x3e\xd0\x5e\xb1\x28\x10\xff\x08\xb6\x34\xd0\xae\xe8\xad\xf8\x2f\xd9\x11\x5f\xcb\xf1\xe8\x76\x06\x7d\x2a\x8b\xd2\xb2\x99\x6a\x85\xca\xab\x4d\xc7\xbf\x5c\xdf\xf4\x6b\xe1\x69\x5f\xdd\x46\xc5\xbc\x4d\xcb\xe6\x54\x1d\xb0\x55\xe5\xac\xaa\x33\x6c\xd5\x4f\xdc\xad\xee\x7e\x77\xf4\x3e\x9d\x08\xbc\x36\x11\xf0\x83\x4b\x10\xf3\x89\xac\x2e\xeb\x50\xc7\xff\xf5\x3b\x8e\x56\x94\x23\xea\xdf\x99\xcc\xf6\xc1\xa5\xfe\xfa\x1f\x1c\xbb\x01\x06\xf9\x8c\xa5\x03\x70\xbb\x9c\xb3\x54\xb5\x4d\x4d\x57\x1f\x05\xbd\xb3\x0b\x7a\x1f\x5c\x12\x90\x4c\x5f\x09\xb2\x23\x81\x10\xb1\xc4\xf1\x53\xf2\x9e\xc0\x66\x44\x65\xf1\x68\xd9\x86\xed\xe7\xd7\x03\x70\x40\x51\x8e\x5c\xe2\x6d\x21\x73\x8b\x6e\xf0\x9a\xfa\x04\xca\x76\xf2\x48\x89\x44\x30\x38\x87\xff\xe2\x80\x20\x21\x5b\x65\xc5\x47\x10\xb3\xe2\xa1\xe5\xd7\x7a\x94\xe4\xa8\xcd\xfc\xe3\x25\xb9\xd7\x36\xf3\x1f\x25\xb9\x87\x26\xc9\xf5\x40\xd7\x94\x73\xf0\x16\xf0\x03\xba\x9d\xa9\xfc\x22\x89\x61\x19\x0b\x0a\x3a\x9f\x29\xa2\x91\x03\x96\x66\xe8\xd2\x90\xb3\x60\xdf\x30\xc7\x47\x6b\x46\x05\xd8\x6e\x92\x1e\xc3\x65\xb0\x9d\xdb\xee\x51\x9a\xcc\x86\x38\x14\xeb\x5b\x1c\x85\xa4\x71\x42\x8f\x56\x92\xaf\x87\x79\xbe\x96\x9c\x6b\x15\x89\x9d\x1b\x64\x6d\x24\xc0\x33\x37\x58\xf5\x69\x12\x38\x70\x72\x79\x80\x0c\x67\x5b\x7b\x6c\x89\x4b\x41\x7c\x3f\xc0\xd5\x32\x3f\x7b\x30\xfc\x4b\xad\x2d\x17\x5e\x50\x0b\xe1\x46\x40\xdd\xcf\x76\x97\x48\x65\x9c\x21\x4a\x7d\x3b\x16\x73\x3a\x4b\x52\x42\x86\xa2\x1c\x6d\xf0\x35\x09\x51\x48\x7c\x99\x5e\x4a\x6e\xb7\x01\x09\x65\x75\x45\x78\x5a\x66\xd3\x43\x69\x2b\xce\xfc\xd4\x8e\x66\xa0\x0f\xaa\x06\xc5\x8d\x1b\xf7\xe1\xa8\x78\x0c\x79\x8c\x5d\x87\xc8\xa3\xd7\xc4\xa8\x60\x02\x95\x2b\x9a\x0d\xb4\x90\x07\xcc\x5f\x17\xd7\xf9\x96\x71\xf2\x34\x33\x0a\x92\xcd\xa9\x55\x22\x7f\x6e\x8d\x21\x0a\x88\xef\x90\x40\xd5\x52\x87\x72\xee\x5b\xbc\x26\xc8\xc3\x7b\x16\xf1\xb8\xfa\xfa\x8a\xde\x12\x07\x6d\x59\x48\x21\x38\x09\x4a\xc5\x2b\xb4\x83\x52\x00\xbe\x84\x16\x0d\x11\xb9\xc5\x50\xf1\x48\x88\x91\x00\x5e\x10\x39\xa9\xd8\x24\xf8\x3a\xb6\x21\x40\x4a\x16\xfa\x10\x9f\x84\xaf\x6c\xb7\xde\x1e\x4a\x12\xe7\xbe\x53\xce\xc6\xbd\xc3\xec\xdb\x0c\xf6\xf7\x17\xb1\xe3\x12\xec\xdc\x7b\xbb\xce\x37\xc3\xdb\xe7\x6b\x7c\x73\x71\x4a\xe9\x00\xb5\x90\x6a\xca\x76\xa1\x6e\x36\x93\x33\x1f\x57\x93\x25\x1f\xef\x64\xb7\x1b\x7d\x1b\xd0\x0d\x06\x71\xea\x30\xc2\x26\x47\xd0\x97\x01\x2e\xf6\xce\xca\xf1\xb4\xda\xee\x47\x6a\xeb\x39\x5b\xcb\x42\x75\x70\x13\x07\x14\x2b\x11\xab\x49\xfe\x86\xc7\x27\x80\xa4\x9c\x62\x2f\x7c\xe2\xe2\xcd\x32\x0a\xd6\x69\x9c\xd6\xe7\x56\x06\xd9\x3e\x43\xb5\x42\xa1\x34\x41\x97\x77\xb6\x66\x1d\xa7\x23\x91\x15\x5e\xe8\x32\x95\x83\x45\x11\x35\xb3\x52\xd7\xb2\xdc\xba\xaa\xbb\xd6\x67\x16\x95\x79\xf7\x8a\xd8\xcc\x77\x14\x1a\xd4\xc0\xe9\x90\xf1\x2e\xa9\x7f\x5d\x29\x12\x1f\x31\xd6\x05\x09\x6a\x0a\x14\x9c\x5a\x40\x40\x4c\xe1\x54\x0a\x26\xcf\x68\x7f\xc4\x4b\x66\xd5\xeb\xf0\x26\x55\x1e\xfa\xfb\xed\x99\xbf\x7f\x63\xde\x58\xb8\xba\x47\x50\x47\x42\x56\xb1\xa8\x02\x51\x7b\x0d\x4f\xa0\x97\xd9\x27\x7a\x68\x88\x99\xf4\xd3\x3e\x98\xbc\x55\x95\x6a\xad\x5c\xc5\xa1\x74\xaf\xa8\x40\x42\x45\x8d\xcb\xf8\xe2\xa1\x34\x6a\x8b\x69\xb3\x79\xa3\xbe\xef\x38\xc9\xf5\x14\xff\x40\x82\x0d\x2a\x34\x4b\x68\x19\x2d\xfb\xe6\xc7\xb8\x4f\x5e\xbb\x66\x72\x87\x8b\x7a\x1f\xf9\x42\xbe\xf9\xf7\x83\xd7\xf4\x9f\xd5\x0a\xfd\xbd\x2e\xe6\x12\x87\x1c\xfd\xbc\x75\x30\x97\x05\x08\xbb\x2f\x28\x8e\x00\x87\x2e\x75\x3a\x0f\x63\x7b\xbb\xcf\x6e\x32\x62\xfe\xe7\xa2\x22\xfe\x10\x95\xcc\x67\x71\xf1\x39\x4e\xd7\x2e\xf7\xf6\xc8\xa1\xe1\xd6\xc3\x7b\x74\x4d\xf6\x4f\x80\xd2\x21\xea\xcb\x85\x4a\x19\x3a\x29\xaf\x15\x12\xe2\x23\xcc\x63\x27\x39\x62\x2b\x90\xc1\x4f\xd6\x44\xcb\x54\x41\x57\x69\x05\x1d\x88\x1c\xfa\x98\x3c\xda\x27\xb5\x83\x3f\x22\xdb\x26\xe1\xe1\x0a\xeb\xdd\x11\x3e\x39\xc1\x47\xda\xf7\x48\x2e\x32\xbf\x8f\xc2\xf5\xd4\xb6\xf9\x40\x71\xfd\x17\x39\xc1\x47\x5c\x7f\xc4\xf5\x53\x71\xdd\xc1\xfe\xba\xca\xa5\xf5\x50\x50\xfd\x25\xcc\xef\x11\xd3\x1f\x31\xfd\x54\x4c\x17\x82\xdc\xc3\xc5\xf3\xd7\xfe\x8a\x3d\x62\xf9\x23\x96\x9f\xd1\x9f\x06\xda\x42\x06\x6d\x65\xd8\x08\xd4\xd2\xe4\x0c\x09\x68\xa3\x1b\xe2\x79\x32\x44\x83\x6c\x18\xa7\x3b\x22\xbb\x0c\xa6\x0d\xd1\xef\xba\x1c\x70\xf9\xb0\xf5\x67\x1b\xcb\x75\xc0\xb9\x57\xa3\xd8\xe4\x2f\xab\x17\x6b\xf6\x57\x72\x8a\x51\x2c\xbb\x9a\x82\xa2\xf8\xe3\xd5\x4f\x6f\xd1\x47\x75\xab\x07\xc5\xb0\x17\x2a\xda\x57\x63\x78\xf1\xeb\x4a\xda\xe4\x7a\x6e\x07\xdf\xae\xac\x67\xa6\xa7\xaf\xa2\x72\xe9\x97\x0c\xe0\xa1\x5c\xed\xab\xc8\xf3\xd0\x4b\x66\xcb\xba\x05\xdf\xe4\x56\x40\x4d\xe8\x87\xdf\x99\x3f\xb3\x9a\xfe\x08\x0a\x90\x2a\x68\xbe\x7d\xcf\xf4\xe4\xb7\x0f\x3f\xdd\xac\x57\x3f\x4f\x4f\xa1\x27\xe9\x62\xb2\x1d\xdf\xf3\x35\x18\x1b\x9a\xc9\x1f\x54\x84\xdc\xac\x6a\xc0\x99\x69\x08\x85\xc6\x35\x1d\xa1\x32\xf8\x99\x05\xbe\x9f\xed\x03\x35\xd0\x6e\x05\x9c\xb5\x81\xb6\x57\xff\xc2\x53\xd0\x3c\x36\xc5\x5d\xf1\xfa\x0b\x71\x5d\x75\x94\x1c\x68\x7b\x82\x03\x6d\xa0\xc1\x56\xc8\x48\xb2\xc4\xb7\x59\x81\xdb\x87\x8a\xa9\x0f\x71\xe9\x6f\xa8\xe7\xd4\x2c\x5d\x0a\xcf\xad\xeb\x3e\x85\x98\x66\x10\x6e\x45\x3d\x4f\x87\xf5\x17\x51\xee\x95\x17\x51\x07\xa9\x5b\xfd\x63\x9d\x35\x79\x08\x78\x16\xeb\xe4\xe7\x45\xb3\x3b\x5c\x6b\x03\x62\x25\xb6\xb6\x93\x70\xab\xef\xa8\xa3\x67\x08\x84\x65\x58\x94\x0c\x3b\x92\xad\x59\xf3\x0d\x6f\x0a\xbd\x6c\x64\xd0\x90\x6f\x7b\x91\x53\xdb\xc3\x15\xdf\x92\x70\x80\x6e\x5c\x6a\xbb\x20\x7e\xdb\xd8\xb3\x23\x41\xb8\x1d\xb4\xc4\x21\x71\x10\xf3\x51\x40\xb0\x87\x5e\xfe\xf4\x46\xc8\xe6\x61\x14\xc8\x29\xab\xe1\x03\xf2\x7b\x44\x03\x68\x55\xce\x6f\x98\xbe\xc5\x61\x1c\x0d\xf4\x14\xad\x68\xa0\x5a\xee\x88\xaf\xc0\xf0\x5b\x0f\xdb\x2a\x4c\x48\xdc\xa0\x81\x1c\xdc\x61\x1b\x4c\xfd\x10\xfd\x91\x66\x52\x11\x6d\xbc\x85\x20\x49\xb9\x3c\xec\x3b\x48\x22\x0a\x4c\x9d\xda\xd7\x08\x54\xd6\xf0\x4f\x03\x14\x82\x7b\x3f\xff\x25\xd9\xf0\x47\xf6\x3c\xdf\xe0\x6b\x82\xc4\xcc\xd1\x92\xc9\x0f\xa3\x5b\x18\x70\x9f\x3e\xaf\x22\x97\xc4\x3d\xf5\x19\xf1\x80\xfc\xf6\x92\x45\xbe\x53\xd1\xf6\xf6\x2c\xb4\xc6\xa3\x3b\xa2\x27\x0d\x03\x33\xa4\xe6\x52\xa8\x3f\x8e\x3a\xa5\x67\x21\x34\x7d\x9d\x3d\x4e\x37\x24\x24\x01\x25\x61\xfe\x20\x0e\xb4\xdb\x57\xa0\xb9\x56\x1c\xc9\x4b\x88\x89\xfe\x3c\xd0\x84\x52\x2b\x0e\xa4\x5c\x42\x8e\xcf\x25\x8d\x80\xc4\x76\x87\xf1\x50\x95\xa2\xdd\x59\xb6\x46\xe0\x88\xbe\xc6\xdb\x92\xe7\x4b\xd0\x4e\x89\xd4\xf2\xee\x03\xdf\x9f\x46\xda\xf8\x03\xde\xf6\x22\x72\xdc\xa1\xf0\x9c\x2e\xbd\x47\xd9\x99\xad\x75\x99\xf1\x7c\xcf\xb2\xf3\x90\x3f\xe1\x2f\x28\x3e\x4d\x76\x4e\x17\x53\x24\x2a\x6c\x8d\xae\xd4\x9d\xfb\x57\xff\x5c\x82\x3b\x07\xdb\xd5\x5a\xe1\x96\x11\xe7\x2c\x63\x87\x33\x93\xaf\x7d\xb2\x16\x83\x4f\xea\x3e\x52\x6d\xc3\xe8\x2a\xb6\xa1\x91\xdf\xd3\x06\x62\xcc\x21\x26\x20\x70\xc8\x1d\x16\xf1\x24\x88\x3f\x15\x3d\xe3\xd2\x1d\xea\x0b\xcc\xb7\x3d\x6a\x5f\x6b\xdd\xeb\x81\xc4\xdf\x48\x86\xce\x7f\x2a\x5d\x61\x72\xbd\xde\x4e\xd8\xf7\x92\x49\x10\xe4\x96\x9c\x38\x65\xce\xb1\xe8\xcc\xc7\x72\x8b\x96\xd7\xfb\xb1\xdc\x46\x9e\xa7\x07\x82\x90\x36\xda\x6f\x8b\x60\xcc\xe2\xa9\x84\xa0\x10\x10\x5d\xca\xb3\xf9\xab\x17\x0a\x67\x3b\x6f\x4e\xa7\x51\x3f\x60\x5a\x69\x78\x3f\x72\xd4\xf2\x6e\xa9\xc0\xd4\xc1\x27\x8d\x86\xef\x3c\xbc\xa7\xfe\xda\xd4\x06\xc9\xd6\x95\x36\xa4\x94\x98\x52\x4c\x7a\xc9\xa2\xd6\x38\x3f\xac\xc0\x2a\x95\x12\xe3\xe1\xbd\x36\xa8\xca\x8f\x01\xba\x64\xc7\x3c\x49\x20\x1d\x27\xb7\x55\xdd\x31\xb2\x73\x38\x43\x1a\x4c\xbd\x3d\x4a\xfc\xbb\x12\x88\xb4\xf4\x08\x69\x22\x53\xdb\xa0\x3a\xe1\xce\xf6\xa8\x7e\x43\x7d\x87\xdd\x68\x69\xf4\xbd\xcd\x32\xe9\x79\x19\x13\xff\x61\x74\x49\x09\x46\x10\x36\xff\x53\xc4\xb7\x11\xcf\xf4\x4d\x84\xab\xdf\x07\x01\x0b\x32\x27\xaf\x22\xb1\xf7\x41\x19\xc4\x52\x96\xd5\x1f\x4f\xdf\x10\x1e\x50\xfb\xbe\x23\x4e\xff\xe3\xaf\xaf\xff\xf3\xc5\xf7\x2f\xbd\x53\x18\x7a\xbc\x92\x02\x37\x7f\x13\x5f\x3e\x8e\x95\xcb\x51\xf5\x75\xc0\xa2\xed\xc1\x9c\x5c\xbe\xdc\x70\x2c\x6a\x9a\xb7\x15\x1d\x8f\x6d\x3e\xc7\xea\xe4\xc5\x5d\xec\xe8\x53\xa3\x98\xd6\x43\xf0\x71\xd5\xa9\xf3\x6a\x9f\xa4\xa2\x1a\x87\xfc\x41\x3b\xcc\x50\xf6\xfa\x86\xe5\x84\xe8\x8f\x6b\xe2\x93\x00\xe2\xfb\xfc\x48\xe0\x54\xf8\x27\x43\x3a\x65\xe5\xbb\xe0\x4b\x16\xda\xb2\x8b\xfd\xf8\x09\xf0\x9d\x45\x1c\x91\xcd\xd6\xc5\x21\x0d\x85\x06\x0f\xba\x3f\xe6\xb8\x47\x8d\x35\x8b\x2b\x35\x78\x88\x7e\x50\x37\x1f\xb1\x11\x3d\x41\x1d\x10\xf2\xce\x56\xf5\x16\x50\xe5\xf4\x65\x0d\x46\xc3\xe1\x03\x5a\x96\xd0\x5b\x6d\xe2\xf3\x1e\x96\xe6\xd8\xe6\xa1\x04\xa4\x8b\xfd\xf3\x41\xe0\xf4\x07\xe6\xe0\xa6\x4c\x98\x6e\x10\x9a\x9b\xff\xdf\xff\xfb\x80\xf6\xfe\x03\xdb\xb0\x20\x90\xa2\xd5\x49\xeb\x9a\x8d\xba\xac\xeb\xfe\x78\xc7\x7b\x22\xcd\xb3\x4a\x04\xc8\x54\x4a\xf3\xa2\xcd\x16\x0c\x9e\x6b\xd9\xb1\x99\xfa\xea\x21\x24\xa9\xb4\x81\x9e\x79\x5e\xf2\x1e\x24\x2b\xcb\xb2\xf3\x90\xb1\x99\x7d\xd4\x40\xcf\xf7\x82\x89\x70\xea\xaf\xd1\x26\xf2\x38\x15\x4c\x29\x7e\x13\x1e\x97\xf9\xa7\xf2\x71\x55\xb3\x0d\xec\xd2\x4b\x82\x76\x34\x8c\x80\x67\x15\x26\xd4\x3f\xf7\x81\x60\x90\x3a\xee\xf3\x42\xdd\xbc\x37\xee\x53\x1f\xe4\x75\x28\x72\xbf\x56\xa3\x9c\x46\xad\x7b\x3b\xad\x8d\xf1\xf7\x87\xae\xed\x2a\x1d\xe8\xa4\xe5\xf5\xc7\x5f\x1b\x43\xae\x0f\x5d\xde\x2f\xe9\x40\x27\x2d\x6f\xd4\xeb\xf2\xea\xa2\x6c\x0f\xe7\xb8\xf1\x38\x27\x2d\x6e\xfc\x40\x79\x6d\x95\x65\xe6\x58\x3c\x88\x87\x39\x09\x50\x93\x5e\xb1\xc0\xab\xb3\x88\x1d\x28\x23\xc7\xc3\x9c\xb4\xb4\x69\xaf\x4b\xab\x4d\xfb\x3e\x74\x71\xef\xd2\x81\x4e\x13\x2b\x7a\x3e\xbf\xf5\xf1\x51\x87\x9c\x5e\x39\xca\x69\x72\x60\xaf\x0b\x5b\x7a\xb8\xaa\xff\xfb\xa1\x2b\x7b\x1e\x0f\x73\xd2\xd2\x16\x0f\x59\x0e\x14\xb2\x1c\xc8\x3f\xfa\x86\x39\x74\x45\x85\xea\x7f\xc3\x82\x6b\x08\xec\x53\xa2\x9a\xac\xdc\x16\xb2\x0d\x91\xb7\x96\x04\xca\x76\x80\xb9\x80\x09\x91\x2c\xac\xec\x54\x5f\xf5\xb9\xef\xb3\xf1\xb7\xea\x4b\x10\x9d\x8b\x7d\x47\xba\xf6\x23\x08\xdb\x8d\x42\x22\x6b\xfc\xe2\xed\xd6\xa3\x36\x86\x2a\xbf\x50\x94\x32\x7e\x15\x04\xcf\x1b\x16\x84\x04\x85\xd1\x76\xcb\x02\xe9\x6a\xf7\x48\x18\xa2\x88\x53\x8f\xf2\x7d\xff\x92\x22\x00\xb6\x4e\x52\xbc\x52\x37\xef\x55\x52\x54\x14\x0b\xac\xcc\xd8\x69\x34\x30\x77\x3c\x04\x99\x72\x57\x47\x1f\x81\x67\x0f\x93\x2a\x67\x0a\x67\x1d\xbd\xb4\xe7\xe7\x58\x5a\x8f\xdb\x17\xf7\x19\x38\x6d\x95\x2f\x1e\xb0\x68\x25\xa5\xd0\x6f\x1a\xe3\x7b\x5f\xe2\xc3\xc3\xfc\xbe\x74\x89\x7b\xc2\xf7\xfb\xb0\xfb\x03\x0b\xc4\xc8\xa1\xa1\xe0\x8f\x0e\x82\x21\xd2\x2a\x5f\x51\x18\x17\xca\x4f\xcc\x32\x34\x44\x3e\xf3\x75\x72\x4b\x43\x4e\x7c\x8e\x58\x80\x68\x10\x10\x8f\xec\xb0\xcf\x0d\xf4\x9a\xff\xfa\x5d\x88\x7e\x8b\x42\x8e\x70\x88\xe8\x46\x70\x55\x95\x47\x03\x6e\x05\xee\x12\x24\x44\x22\xc4\x56\xd2\xb7\x00\x8f\x71\x31\x6c\xfc\x08\x96\x37\x06\x28\x64\xd2\x0b\xb1\x87\xba\xfc\x32\x98\x8f\xfa\xeb\x86\xef\x27\x96\xa1\x9b\xd8\x14\x05\xec\xfd\xfe\xea\x6e\xa9\xf9\xf4\xe8\x39\x8c\x3c\x4e\x55\xbb\x19\xdd\x09\xd8\xd6\x61\x37\xfe\x3d\xfb\x11\x57\x93\xd5\xfb\xd9\xf7\xcf\xad\x93\xfc\x88\x95\xeb\x2a\x4a\x49\x99\x87\x50\xfa\x50\x83\xb4\x64\xc6\x91\x1f\x95\x50\x8b\xa3\xd3\xe2\x42\x58\x69\xab\x9e\xb4\x47\xce\x40\x63\xfe\x95\xec\xee\x23\xa6\xf0\xbd\xaa\x08\xf7\x32\x05\x3d\xf8\xb6\xd5\xab\x66\xc6\xdb\x1d\x0f\xa1\xae\x1d\xda\x9d\xc7\xac\x68\xcf\xd3\xbd\x49\xe4\x49\x95\x3f\x02\xbc\xdd\x92\x00\xe1\x00\x5a\x7d\x2e\x71\x48\xed\x04\x6a\x20\xd5\xdb\x01\xc1\x60\x92\xc5\xc8\xa3\x21\x04\xc2\xda\x2e\xb1\xaf\x97\x0c\xa2\x58\x7d\x07\xf1\x00\xdb\xd7\xe2\x09\x71\xe0\xc3\xb8\x60\x5e\x40\xd8\xea\xd4\x3a\x20\xb9\xbd\x84\x50\x1a\x1d\x7b\x74\xed\x93\x52\x16\x46\x25\xba\xa0\xc2\x2b\x87\x89\xda\x71\x30\xa4\xaa\x86\xf2\x74\xe5\x91\xdb\x7f\x01\x72\x47\x57\xfb\xb8\xf6\x28\x5c\xad\x2e\x1a\x76\x56\x9c\xcc\xad\xec\x81\x60\xe8\x21\x4c\xee\xa0\x9d\x8f\x21\xa6\x6f\xa4\x0b\xa9\x7d\xe3\x21\x2c\x16\x8a\x81\xc7\x30\xbd\x53\xca\x71\xc9\x38\x44\x6e\xab\x47\x11\xf5\x91\x38\x10\x85\xed\x79\x83\xfd\x7d\xc5\x0e\xa5\x97\x0f\xdd\x24\xf5\xe6\xfd\x50\x92\x90\x07\xc4\x5f\xcb\x9c\x00\x28\x2e\x5a\x05\x4d\xc1\xfb\x29\x0f\xe3\x88\x83\x6d\x40\x42\xe2\x73\x55\x57\xe8\x35\x88\x06\xbf\x47\xd4\xbe\x06\x01\x41\xee\x69\x0c\x43\x28\xe8\x99\x7f\x22\x20\x1b\xb6\x23\xf1\x13\x06\xa0\xe0\x05\xbb\x21\x3b\x12\x0c\x64\x51\xcf\x64\x52\x4b\x62\xb3\x0d\x64\x0c\xdc\x10\x7c\xed\x0b\xb5\x1f\x64\x9d\xb4\x74\x3c\x67\x2c\x87\x31\x06\x4a\xaa\xae\xa2\x04\xc2\x88\x86\xd0\x2a\x62\x4b\x7d\x71\xee\xa8\x8f\xc4\x1b\x37\x78\x3f\x90\x93\x91\x74\x32\x79\x1c\x66\x64\x63\x5f\x7d\x1e\x61\x1f\x61\x67\x47\x7c\x48\x31\x60\x2b\x14\xda\x01\xf3\x3c\xf1\x52\xb4\x85\x05\x0a\x18\x19\xe8\x99\x07\xe2\x50\xcb\xd7\xd5\x12\x33\x4d\x98\x31\xdc\x8d\xed\x1b\x21\xc1\x81\xed\x0e\xd4\x40\xf2\x97\x14\x96\x60\x5a\xc4\xe7\x34\x20\xde\x1e\x6d\x70\x78\x9d\xff\x4e\xaf\x64\x3b\x39\xbc\x4b\x5c\xca\xc9\xad\x3e\xbc\xf0\xe0\x91\x71\xc1\x10\x85\x18\x7f\xea\x0e\xe8\x71\xc6\xfb\x9f\x3f\xdc\xd9\xb0\x80\xd2\x11\x2f\xde\x3c\xf4\xa0\xe7\xde\x6f\x27\xcb\x67\x5a\xfb\x87\xfd\xb6\x48\xd2\xe0\x52\x79\xbd\xe9\xe5\x43\x57\xaa\xde\xbc\xb7\x35\x5e\x71\xcc\xa3\xb0\xb0\x4a\x75\xb1\xbc\xce\xec\x8d\x43\x57\x9a\xbc\xdb\x27\x9b\x3d\x96\x9c\xc7\xa4\x4f\xaa\x86\x18\xd9\x2c\x20\x19\x4a\x23\xe4\xc2\x15\xb6\x09\x17\x6a\xa4\x22\x33\xe5\x52\xd3\x36\xf3\x43\x1e\x44\x36\x07\xba\x17\x04\x42\x65\xdf\x80\x1e\xb7\xca\x71\x87\xe4\xe4\x2b\x12\xfe\x92\xc9\x2f\x2f\xf7\x52\x3c\x05\xa2\xea\x79\x40\xa3\x32\x1c\x15\xc7\xc4\xa0\x14\xcd\x3a\x1c\x68\x46\x9e\x12\xc4\xc1\xa6\x69\x1a\xd5\x1d\xeb\x86\x55\x08\xd9\x9f\xa6\xb8\xc5\x6b\xa2\x73\xbc\xbc\xef\x28\xd3\xf7\xd7\x1f\x5f\xde\xfe\x1e\x9e\x94\x36\x92\xae\xa5\xc0\x2c\xde\xe1\x35\x41\x1f\xe0\xc6\x71\xcc\x21\x1e\xb4\xd2\x70\x98\x69\x26\x51\x63\x51\x3a\xa2\xbd\xd1\x4f\x3b\x12\xec\x28\x49\xe2\x83\x6a\x8c\x4c\x7d\x76\xb6\x4a\x0b\x21\xf6\xf8\x51\x35\xf6\x47\x12\x84\x71\xa9\x9f\x7e\x47\x7e\x49\xb6\x1e\xdb\x6f\xe2\xce\xcc\xe5\xc1\x8f\x37\xa7\xb5\x09\x2b\x09\xbe\xe9\x32\xba\xa8\x88\x76\x57\x32\xe6\x28\xc6\xbe\xaf\x00\xf9\xda\x50\xa4\x19\x2b\x8f\x85\x74\xef\x34\x33\xd9\x98\xbe\xe9\x24\x6c\xed\xfd\x12\xca\xdd\xbb\x1f\xbd\xe8\xa7\xe0\xaf\xa7\x13\xca\x18\x4f\xcb\x94\x52\xfe\x3c\xd2\xbd\xc8\xec\x6b\x3d\xdc\x62\xbb\xa9\x02\xa4\x6b\x56\x63\x7a\x3c\x8f\xc4\xc4\x2e\xa5\x08\xc1\xbe\xb3\x33\x7b\x28\xf6\xf1\xd7\x7e\x46\x25\x0d\x41\xb8\xd9\x0c\xe2\x6e\x12\xb0\x18\x31\x7b\x69\xe6\xf6\xd1\x85\xd9\xa3\x9f\x38\xdd\x42\x1d\xaf\x38\x09\x74\xe2\x91\x4d\x55\x7b\xfa\x14\x6e\xd2\xb4\xf1\x4c\x3c\x8d\xbe\x4f\x9e\xbe\xff\x5d\x4e\x08\x56\xf5\x76\x17\xe9\x59\x6d\xd6\xdc\x32\xda\x6c\x49\xa0\x7b\x64\xc5\x11\xc7\x6b\x44\x43\x3d\x90\x15\xa7\x33\x1f\x7b\x9f\x5e\x39\x34\x2b\x4f\x8d\xe9\x32\xcf\x63\x37\x69\x69\x3c\x9f\x41\xea\x97\xce\x03\xec\x87\x02\x03\x32\x5f\xb3\x46\x33\x4c\x1c\x7b\x39\x5f\xcc\xad\x15\x19\x2e\x96\x36\x21\xc3\xf9\x6c\x86\x6d\xe2\x54\x64\xe1\x3d\x20\xcc\x06\x73\x89\xcd\x36\x1b\xe6\xc7\x19\x1a\x2e\x5d\xbb\x3a\xdd\x6c\xb1\x0d\xf0\x95\x76\x95\x25\x76\xd6\x04\xbc\x32\x62\xd7\x82\xb4\xe0\x01\xf7\x08\x14\x5d\x20\x42\xa2\x17\x4f\xab\xc0\xdf\xb4\xff\x0c\xde\x6e\x09\x0e\xe2\x7c\x0f\x69\x96\x74\xc5\x98\x21\x75\x48\x6c\x0b\x82\x81\x06\xd2\x58\x9c\x6f\xb4\xec\x51\xa8\x97\x40\x7d\xe4\x90\xd0\x26\xbe\x23\x84\xfd\x1b\x48\x3f\x17\x1f\x16\x9f\x04\x84\xc7\x68\x89\xed\xeb\xb5\xb4\x52\xe3\x80\x20\x97\xe0\x1d\x8d\xc3\x4a\x60\x6a\xd0\xa1\x06\x6e\xc1\xde\x1a\xe8\x92\x81\x1b\x54\xa5\xb5\x94\x5e\x0a\x5d\x16\xf0\xe4\xfe\x79\x4e\x35\x24\xef\x87\xa0\xd9\xa5\x81\x6f\x4d\x07\x5b\x6a\x81\x48\x45\xb7\x3d\xa0\x63\xdd\x76\xae\x7c\xe6\x90\xdc\x4a\x11\x88\xa1\xd8\xa3\x5f\x32\xd3\x28\x9e\xd6\x47\x62\xf1\x60\x88\xc5\xb3\xd8\x28\x2b\x8b\x1d\xb2\x00\x6d\x31\xe7\x24\x00\x9b\xed\x0a\x87\x5c\x16\x48\x09\x6d\x71\xde\xc4\xf9\xc1\x8a\x39\x8a\x53\x2d\x2e\xb2\x15\x27\x3e\x0a\xf1\x1e\x6d\x18\x34\xe5\xc4\x3e\xba\x61\x81\x13\x8a\xbb\x06\x7a\x05\x23\x02\x99\x11\x07\x55\x7a\xa3\xfd\x8c\xdb\x58\x22\x4f\xc6\xca\x20\xc9\xd1\x06\xfd\x91\x18\x6b\x63\x80\x6c\x8f\x8a\xab\x0e\xe1\x98\x7a\x30\xd4\x9f\x04\x9b\x56\xaf\x49\x9c\x93\xb6\x56\xd5\xd9\x49\x91\x33\xc0\x8e\x2c\x21\x8a\xbb\x86\x26\x65\xec\xc9\x9e\x84\x71\x22\xc1\x9a\xfa\xc9\x32\xa5\x0c\x70\x46\xca\x20\x0d\x44\xed\xdc\xde\x3e\xa9\x7b\xc7\x23\x3d\xf8\x7a\xe8\x41\x32\x87\x6e\xa9\xf6\xaa\x04\x7a\xbe\xc2\xaf\x47\xfd\xec\x96\xbd\x5e\xa1\x3d\x8b\xd0\x0d\x0d\xdd\x53\xbf\x97\x06\x16\xb1\x88\x8b\xcf\x38\xf0\xc5\xe4\x08\x37\xce\xe3\x2d\x43\xef\xc9\x3a\x20\xbc\x22\xed\xe2\xe1\x90\xc1\x5f\x20\x02\xc6\x56\x3e\xa7\xed\x56\x36\x82\x13\xf8\x28\x1d\x26\x60\x42\x24\xb7\x40\x51\x24\x7d\x18\xc4\x04\xea\x37\xb6\x4c\xde\x54\xf2\x90\xb8\x94\x27\x58\x12\x98\x21\x98\x50\x39\xc8\x55\xf1\x2b\x6b\x16\x77\xee\x4b\x35\x0f\x03\x3d\x57\xcf\x43\xd6\xae\x77\x83\xf7\x61\x5c\xcf\x4a\x7d\x62\x85\x03\x25\xb1\x11\xdf\x49\x67\x15\xbf\xff\x96\xa1\x58\xa9\x00\xea\xb8\x66\x65\x31\x0f\xa6\xa1\x26\x76\x7f\xf1\x33\x29\x71\xec\x51\xe1\x0f\xd8\x3a\x20\x61\x08\x76\xe0\xfb\x55\xf9\x6f\xbf\xff\xf1\xc9\x5f\x76\xf6\xeb\x93\x54\xfe\xec\x72\x8a\x4c\x43\xdd\x43\xcf\x8f\x77\x9f\xa9\x42\xc3\xb2\xe2\x1b\x67\xcc\xe3\x74\x1b\x5b\x94\x02\x06\xd1\x10\x85\xab\xb9\xe6\x72\x13\xf4\x04\x99\x93\x5a\x16\x13\xcf\xbe\xba\x5a\x4a\x3c\xfd\x7c\x58\x6b\xd2\x68\x4a\x3c\x1b\x97\x84\x1a\x1a\xa3\x51\x7c\x6d\x83\x6f\x35\x95\x66\x56\x64\x51\xe2\xb1\xf3\x9b\x0f\x33\x5b\x52\x93\x1a\x98\xdd\x99\x13\x13\x04\x4f\xeb\x98\xda\xc0\xc7\xef\x18\x23\x8e\xc1\x0a\xea\xaf\xd8\xa9\x28\x51\x40\x8b\xea\x20\xd4\xba\xc0\xd4\x83\x42\x55\xbf\x05\x88\xab\x74\xcb\x47\xa0\xdf\x25\xd0\x8b\x32\xdd\x23\xd0\xef\x00\xe8\xa9\x60\xfb\x20\x60\x7e\x26\xf6\xe4\x29\x3f\x50\x2d\x73\x82\x6a\x9f\xb2\x47\xc4\x3d\xb1\x28\xd0\x2d\x7c\xa2\x73\x97\x06\x4d\x89\x0b\x3d\xe1\x94\x99\xc7\x29\x28\x5c\xf7\xc9\xb2\x06\x9a\x1f\x6d\x48\x80\x39\x13\x62\x96\x86\x9e\x40\x15\x3b\x6b\xa0\x39\xc4\x67\x1b\xea\xcb\x1b\x9f\xab\x2b\x95\xf5\x22\xed\x98\x09\xf2\xa5\x73\xda\x92\xc0\x26\x3e\xc7\xaa\xb4\x7c\x27\x74\xd4\x54\x50\x4c\xe1\xf5\x5e\xcb\x9b\xdd\x99\xb2\xf6\xf5\x35\x03\x10\x27\xee\x25\xe8\x7f\xe1\xc3\x6f\x07\x90\xa5\x15\xbd\xaa\x60\xb7\x7b\x9d\xe3\xf5\x3d\xeb\x5f\x21\xbb\xb8\xba\x7d\xf2\x43\x78\xa2\xfe\xa5\xd6\x52\xa6\xa2\xb7\x7b\xf4\x41\xdc\x68\x89\x33\xb6\x06\xb9\x51\xba\x46\xe6\x9e\x63\xb3\xe5\x24\xfa\xdb\x69\x19\x09\xa6\x2f\xd9\xed\x3d\x6f\xb5\xeb\xbe\xdd\xcd\x16\x3f\xd2\x53\xb6\x3a\xb3\x98\x62\x40\x88\x8c\xa4\x7d\x2e\xee\xb4\x07\x95\x67\x81\x12\xd3\x08\x79\xed\x03\x09\x36\x82\x15\x78\xd8\x26\x2e\xf3\xe2\xae\xf4\xe5\x00\xc1\xf8\xe1\x5c\x0d\x53\x35\x0b\xee\x52\x7f\x1d\x1a\x86\x51\x51\xb4\xf2\x2e\xcd\x66\x1f\xdc\x24\xc4\x78\xc9\x6e\x33\x46\x7c\x08\x1f\x84\x2a\xe7\x85\x54\x13\x1c\xfb\x1b\xa8\xbf\x8d\xb8\x81\x9e\x79\xdc\x65\xd1\xda\x55\xa1\xc8\xf1\xa2\xd1\x16\x87\xa1\xac\xa8\x4e\xd5\x68\x9b\x88\xe3\xa5\x47\x50\x40\x56\x24\x20\xbe\x4d\x06\x88\xfa\x9c\x04\xbe\xea\x49\x2b\x01\x23\xde\xa5\x21\x72\xc8\x92\x45\xbe\x4d\x9c\x34\xd3\x8d\x33\xb4\x0d\xc8\x4e\xcc\x6e\xcb\x38\xf1\x39\x95\x5e\x80\xdb\x2d\xf1\x43\x99\x6e\xee\x10\xe9\xa5\x70\xc8\x96\x40\x15\x76\x3f\x3b\xa5\x55\xc0\x36\x28\x20\x62\x91\x91\xac\x56\x84\xfd\x3d\x82\x02\xe4\x08\x8b\x19\x46\x21\x09\x10\xdf\x6f\x4b\x6e\xc5\x46\x00\x06\x44\x66\xdc\x41\x04\x42\xec\xb1\xa8\x04\xaa\x9a\xdb\x8a\x04\x21\x8a\x84\xb8\x96\x64\xdf\xa4\x93\x4c\xa0\x83\x22\x9f\x53\x19\x3d\x09\xf3\xda\x60\x5f\x56\x4a\x82\xca\xac\x62\xba\xbf\xfe\xaa\xd0\xe9\xd7\x5f\x35\x65\x07\x54\xd0\x52\xfe\x14\x6c\xbb\x94\xec\x88\x83\x96\x7b\xb0\x3e\xca\x30\x77\x65\x17\xf6\xc9\x6d\xec\xab\x49\x66\x8b\x83\xcc\x6c\xb1\xef\xa0\x28\x04\x9d\x46\x36\xd9\x22\x01\xac\x30\x8e\x1c\x85\x72\x01\xf2\xc5\xd4\x31\x8c\x23\xce\x36\x98\x53\x1b\xe2\xf4\xc1\xd5\xbc\x65\x61\x48\x97\x5e\x9f\x0e\x99\xf4\x74\xea\x62\xbe\xd8\x2e\x39\x68\xd3\xd3\x8e\x5e\xc4\x4f\xf4\x7c\xea\x85\xd4\xba\x8d\xb2\xb5\xd1\x6b\x49\x80\xd5\x48\x02\x20\xdc\x2b\x59\xc7\xbd\xd2\x83\xab\x14\x6d\xb7\x01\xdb\x51\x07\x72\xc5\x50\xba\x50\x71\x19\x88\xbf\x8a\x14\xe6\x01\x93\x38\x4a\x7d\x1f\xca\x88\x01\x51\x88\x8f\xac\x4f\x6d\x22\xa3\x8e\x29\x2f\x20\x3b\x7c\x83\xfa\x9c\x25\x85\x29\xc3\x2d\xb6\x49\x38\x40\x61\x64\xbb\xe2\x3c\xe6\xbb\x21\xba\x04\x3b\xf7\x68\xe5\x4e\x31\xa3\x47\xc6\xcb\x31\x0f\x75\x41\x7f\xf4\xb8\x03\xc2\xbd\xf2\xdf\x77\xd1\x8f\xd1\xc7\xdf\x7f\x38\xa9\xd8\x6c\x69\x4d\x4d\x0d\x98\x78\x88\x3e\xd0\x0d\x41\x57\x72\xf5\x0f\xa1\x13\x53\xc5\x9e\x14\x1a\x24\x54\x35\x44\x10\x6f\x51\x3b\x53\x51\xb7\xaf\xf6\x07\x1d\x48\x61\x09\xe0\x40\x49\x02\x1a\x2b\x34\x4d\x20\x47\x17\x74\xed\x3e\xb9\x64\x37\x92\x48\xaa\x97\xee\xd6\x80\x00\xdb\x87\x52\x6b\x54\xc5\x2e\x5a\xd9\x5d\x84\x4d\x6c\x51\xf1\x8e\xdb\x45\x95\x09\x2e\x60\x12\xef\x61\x6d\xeb\xa8\x23\x0c\x6e\x0f\x6e\xa1\x97\xec\xe6\x88\x75\xde\x99\xd9\xa0\xc4\x9c\x2e\x93\xb6\x46\x61\x12\x94\x16\x90\x15\x0b\x64\xfa\x72\x08\xa2\x1c\x92\x70\x48\x9e\x8b\x42\x02\x89\x30\x7e\x08\xae\x6e\x8f\xfa\x04\x07\x68\x1d\x60\x07\xc2\x52\x54\x94\x9a\x6a\xe3\x43\x7e\x8f\xb0\x17\x0b\x45\x36\xf6\x77\x38\xee\x5d\x24\x73\x64\x64\x4b\x1f\x8f\x05\x20\xb9\xfa\x21\xe5\xfb\x58\xe0\x4b\x46\xc4\x3c\x0e\x5d\x13\x1f\x55\x25\x10\xb0\x1d\xb0\x30\x9e\x94\x60\x6e\x1e\x13\xb2\x98\x18\x91\x85\xf1\xa2\x54\x99\x4d\xc1\x22\xf1\x86\xa0\xbd\x8e\x6f\x85\x24\x0c\xfd\x8e\x0e\x10\x48\x33\x75\x21\x38\x43\xeb\x80\x60\x8e\xc8\x6a\x45\x6c\xb5\x5a\x09\x2b\xf5\xc9\x24\x5d\x71\x0f\xb9\x3a\xaa\xd8\x44\xee\xd3\x62\x85\x43\xdd\x1c\x0e\xff\xe9\x1e\xd9\x6f\x11\xcf\xfb\xe3\xc2\xa0\x94\xe8\x36\xf3\x57\x74\x1d\x05\x0a\x43\xef\xb7\x8b\xcb\xc7\xbf\xbc\xbc\xb9\xfe\xe7\xf5\x29\x7c\xb8\x6a\x55\x05\x6e\xf0\x41\x3c\x32\x40\x2f\xf2\xcf\xb4\x0b\xc9\x98\xf3\x80\x2e\x23\x4e\x42\x09\xbb\x94\xe4\xa4\x77\xb4\x41\xda\x9f\x41\xd2\x9c\xcc\x3d\x81\x1e\xa5\x41\x0e\x91\x7b\x7b\x47\xaf\x0a\x68\xf5\x8c\x60\xf7\x8c\x52\x5f\xf6\xd3\x5b\xba\xbc\xfc\xe7\x4a\x94\xd2\xa0\x0f\x97\x36\xd0\x02\x76\xd3\xfa\xd7\x21\xcf\xc6\x7f\x1d\x84\xb3\xd2\xbc\x50\x89\xac\x55\xd8\x39\x1e\x68\x1e\x0d\x79\x11\x15\x43\x16\x05\x36\xc9\x48\x68\x2e\x0b\xf8\x25\x0d\x65\x0f\xb0\xaa\x51\x92\xed\x8b\x7b\x69\xe8\x38\x0c\x49\xc0\x75\x31\x1f\x6a\x53\xae\x27\x4f\xe8\x2e\xf1\xb6\x24\xd0\x71\xb0\x96\xdd\x70\x65\xaa\xa8\xb9\x18\x7c\xd2\x64\x5b\xa2\xcf\x03\xb1\xdb\xc4\xe6\xc4\x41\x7f\xe7\x86\xb8\xf8\x77\x55\x40\x19\xc7\xa1\x48\x82\xd5\xa4\xda\xb6\xd0\xa6\x57\xb1\x85\x85\x07\xd4\x5f\x1b\xe8\x25\x75\x20\x06\x6c\x43\xb0\x8f\xfe\xfe\xc7\x8c\x21\x01\x46\xfc\xd3\xdf\xff\x1d\xfd\xf1\xd7\xef\x0e\x45\x45\x81\xd9\xbf\x7e\x87\xfe\x07\xba\x1c\x3d\x7d\x31\xfb\x13\xd2\x72\x99\xab\xd5\xc7\x3f\x23\xde\x70\xb7\xc8\x72\xea\x5a\xae\xd7\xbe\x70\x89\xfd\x75\x24\x1d\x1a\xdd\x5f\x7a\x49\x42\x3b\xa0\xdb\x6c\x8a\x5c\x27\x11\xa4\xa7\x7d\x5d\x32\x67\x5f\xda\x57\x71\xb1\xdf\x7d\x15\x23\x9e\xbc\xaf\xf3\xc2\xbe\x7e\xfa\xa4\x5d\x13\x28\xc1\x01\x5d\x61\x3c\xc3\x87\x1d\xab\x21\xf5\xd9\x5d\x08\x6a\x13\xdc\xd2\x67\x9c\xdc\x33\x26\xf4\x05\xb2\x86\xf1\xb7\xb4\x81\x16\x7f\xad\xae\xc3\xfc\x01\x43\x79\x18\xda\x6d\xf6\x31\x94\x43\x42\xbb\x69\xa8\x36\x24\xb3\x86\x19\x76\x94\xbb\x63\x2e\xea\xee\x9c\xd1\x90\x2b\x30\x20\x2e\x16\x46\x83\x3d\x72\x48\x48\xd7\x7e\x92\x86\xb1\xa1\x3e\xdd\x60\x0f\xe1\x0d\x8b\x64\x2a\xf7\x12\x9a\x67\xa6\xf2\xed\x2d\xdd\xd0\x2f\x52\xc6\xa5\xc1\x19\x8a\x6b\x2a\xea\x0e\x76\x94\x4a\xea\x8e\xae\xd4\xbd\x87\xdb\x5b\x4e\xce\x53\xd0\xbb\x4a\x65\xec\x30\xeb\x61\xea\xfb\xee\x68\x45\x2c\x1b\x11\x13\xeb\xa1\xf4\x9f\xa3\x4c\xef\xb2\x16\xa3\x62\x77\x0d\xb6\xd4\x1f\xae\xec\x77\xcd\xf7\x8a\x13\x93\x5e\x51\x8f\x93\x80\x38\x57\x09\xdb\x1d\x68\x1e\x94\x74\x89\x35\xce\x5c\x77\xac\xb4\x55\xdc\xbc\x88\x49\x5d\x07\xad\xe1\x5e\x1d\xc5\x83\xf2\xd0\x67\x14\x13\x66\x5f\x9b\x98\x30\x7e\xfa\xc2\x1c\x75\x17\x14\x8e\x14\x17\x4e\x10\x1a\x1e\xae\xe8\x30\xfb\xca\x44\x87\xd1\xa2\xb8\xd7\x87\x0b\x0f\xdd\x45\x88\x76\x96\x6d\xce\x0f\x12\x24\x0e\x1c\xb0\x5d\x9c\x38\x70\xc0\x36\xa1\xa2\x9b\x68\x61\xce\x6b\x45\x8b\x59\x83\x68\xd1\xb0\x21\x2d\xdc\x8f\x6c\xb6\x7c\xaf\x6f\x48\x18\xaa\x03\x56\x17\x93\x54\x5f\xa1\x35\x37\x04\x30\xd0\x72\x1e\xc9\x1b\xcc\x6d\x97\x54\xb6\xef\x40\x6d\xb5\x5b\xf3\xe3\xcb\x23\x95\x1d\x7b\x1b\x30\x27\xb2\xb9\x90\x64\xb8\xed\x8a\x33\x12\xa0\xdf\x23\x12\x14\x45\x98\xae\x7b\xf0\xf9\xbf\xe5\xcd\x2a\x46\x79\x7f\x26\x50\x25\xe6\xc1\x61\x0e\x55\x9a\x59\xde\x4f\x06\x79\xc1\xb9\x2b\xea\x61\x25\x0a\xa6\xde\xb7\xfe\x65\x3b\x16\xc4\x86\x94\xc4\x15\x50\x21\xe5\xa9\xa7\xd0\x8b\xf8\xa9\x43\x95\xfa\x81\x26\xbe\x14\x9b\x4a\xd4\xcf\x97\x49\x1e\x72\x46\xe9\x67\x01\xcf\xf3\xf4\x41\x7a\x23\x79\x3f\x77\x35\x3b\xcc\xf9\x24\x80\xc9\x57\x26\x01\x4c\x27\x07\x5b\x0a\xfa\x03\x94\xd8\x16\x7d\x59\xe6\xa0\xea\x7a\xbf\xe0\x52\x83\x9e\x0e\xb1\xe9\xd3\x17\x8b\x02\x1b\xdd\x06\x0c\xc2\x57\xb5\x06\x0e\xfa\x56\xdd\x6a\x3e\x89\x8f\x60\x8e\xc1\x3c\xab\x01\x73\xc6\xfe\x2c\xb9\x3c\x28\x1d\x56\x0d\xd4\x53\xd9\xb2\x3b\xe4\x1f\x9a\xa4\x39\xf9\xca\x24\xcd\xd9\xf0\xde\xad\x54\xe6\xb4\x37\x2b\x55\x6e\xa8\xd3\xac\x54\xb9\xa1\x4e\xb5\x52\x99\xd3\x5a\x51\x72\x72\x0f\x56\x2a\x57\x96\x0e\x91\xb8\x90\x41\xc0\x34\xd8\x28\x7e\xb7\xaa\x3a\x60\x42\xa2\xf2\x95\x01\x4b\xe8\xbc\x62\x01\x5a\x46\xd4\x83\xaa\x24\x0d\xe3\x79\xd4\xbf\xd6\x39\xcb\x8f\x17\x23\xaf\x14\x97\xb8\x4b\x10\xde\x0a\x92\x12\x50\xcc\x89\x14\x29\x11\x80\xeb\x90\x20\x41\x1a\x22\x8f\xe0\x5d\xe2\x42\x8e\x67\x0a\xb0\xf3\x48\x18\x0e\x50\x40\xbc\xbd\x98\x2f\xf3\xa1\xfd\xae\x3a\xb0\x2a\x8c\x12\x0a\xac\x42\x79\x16\x55\x6b\x25\xce\x3e\x5e\x62\xfb\x1a\x45\x5b\xb4\xa3\x58\x66\x07\xb3\x88\x93\x00\xfd\x51\xfc\x56\xcb\xfb\x53\xef\x82\x9e\x2c\x8b\xa8\x1a\x68\x96\x25\xbc\x37\xe9\xed\xbe\x45\xbb\x92\x5b\xf1\x54\x11\x0f\xd8\x82\x20\x79\xdb\xea\x4a\xe3\xfd\xd0\xe6\xd1\x57\x26\xef\x2d\x8a\xb4\xf9\xae\xe4\xbd\xd1\xd7\x2a\x88\x2c\xcc\xff\x9f\xbd\x37\x5f\x6e\x1b\xc9\xf2\x85\xff\xef\xa7\x40\x63\xe2\xeb\x6b\x47\x03\x34\x17\xad\x9e\xeb\xe9\x51\x49\x5e\xcb\x8b\xca\x92\x5d\x5d\xe5\xeb\x98\x49\x02\x49\x12\x16\x88\x44\x25\x12\xa2\xe8\xea\x8a\xb8\xef\x70\xff\xf8\x1e\xe8\x7b\x93\xfb\x24\x5f\xe4\x02\x20\x01\x64\x62\x23\x24\xca\x65\xf6\xc4\xb8\x28\x12\xc8\xe5\x9c\xcc\x93\x27\xcf\xf2\x3b\xdf\x92\xbe\xf7\xed\x92\x79\x5c\x41\xe6\xe4\xd8\xdd\x48\xc1\xbb\x7d\x45\x6d\xf2\x8d\x29\x6a\xc7\x7b\xdb\x57\xd4\xf6\xfa\x53\xd4\xf6\x5a\x28\x6a\x55\x0e\xea\x76\x73\x61\xa6\x2c\xe4\x73\x88\x1a\x5e\x7f\x56\x33\xa6\x8d\x35\xbe\x3d\xad\xc6\x37\xd9\x82\xc6\xf7\x42\xa3\xf1\x01\x42\x17\x22\x89\x92\xf5\x1e\x19\x33\x1f\xde\x78\xf4\x21\x10\x65\x39\x03\x0c\x7f\x8a\xc1\x4a\x63\x08\x22\x14\x58\x55\xfa\x1c\x5f\xf0\xb2\x3a\xe7\x22\x18\xb1\xd2\x44\x42\xc1\xe4\x68\x52\x1c\x41\xaa\xb2\xa5\x1c\xfc\xb4\x40\x62\x49\x4a\x27\x45\x68\x09\x79\xd6\x88\x0b\x23\x0f\xf3\x38\x3b\xe6\x79\x4d\xcb\x5f\xa7\xd8\x2d\x21\xc4\x2c\xe5\x04\xbb\xbd\x6b\x61\x21\x98\x7b\x81\x3e\xb2\xcb\x38\x97\x7e\xd7\xeb\x61\x52\x2b\x0a\x65\xcc\xfb\x4a\xff\x13\x0a\xab\xb0\x48\x8e\x44\xc1\x3c\xd1\xb5\xf6\x85\x5e\xe5\xc4\x18\xc3\x80\x9c\xa7\x49\xae\x6d\xd5\x3e\x49\xad\x9b\x58\xa3\x21\xcb\xc1\xe4\x5d\x98\x0c\x72\x6b\x86\x90\x32\x83\xa3\x1f\x91\x3c\xfa\xc6\xf4\xb3\xd1\xa8\x78\x0e\xd6\x79\xe4\xca\x16\x8b\x02\xdc\xb0\x9c\x8a\xfc\x1e\x04\xca\x82\xa8\x15\x86\x8f\x53\x8f\x28\xeb\xde\x56\xbc\xc2\x2a\x69\xb6\x7c\xe7\x1c\x85\xb1\x0f\xca\xe6\x95\xda\x17\x9f\x63\xb4\x22\x8b\xbb\xb6\xc9\x8c\xbe\xb1\xa3\x7e\x34\x3a\x2e\xeb\x57\xf9\xb3\x1e\xb3\xb5\x51\xe9\xfd\x6b\xe6\xf9\xab\x3c\xa4\xc7\xd2\x81\x98\xf4\x58\xe5\x53\x6b\xdc\x98\xe3\xf1\xeb\x60\x2f\x8d\x45\x7c\x05\xf7\xd4\x5a\x28\xad\xed\xae\x4d\x1e\x59\xe6\x0c\xe1\x25\x20\xb6\x04\x1b\x20\x16\xa3\xdc\xd7\x5c\x6c\x07\xce\x61\x82\x08\xe0\xf8\x05\x9f\x6b\xf5\xaa\x4a\xd5\x63\xac\x55\x3d\x46\xb9\xd3\xcd\xa8\x77\x49\xf2\x33\x8e\x8b\x7d\x2d\x9c\x44\x00\xd4\x2f\xe7\x8f\x46\xad\x7e\xd6\x04\x90\x50\x6a\xe0\xc3\xe0\x62\x60\x50\x41\x67\x64\xac\x62\x46\x19\x4e\x4d\x9e\x5f\x3a\x1e\x0e\x87\xf6\x78\x38\x52\xd4\xe0\x6f\x30\xeb\x6c\xe0\x76\x10\x2f\xa7\x10\x2b\xf2\x69\xb2\x86\xc4\x22\x1a\xf2\x34\x20\x4c\xa2\x13\x62\xe6\x23\x7d\xfe\xef\xff\xfe\x3f\x85\x07\x61\xe0\x96\x1f\x33\xd0\x2c\x6d\x30\x77\xc4\xcb\x51\x3b\xcd\xb1\x27\x8c\x5e\x2f\xab\x43\x96\xc1\x0f\xaf\x0b\x42\x34\x1c\xd0\x2f\xfb\x14\xa2\xbc\xc5\xcd\x85\xe8\x64\x5f\x11\x43\x91\xb9\x23\x24\x1e\xd3\xfe\x3c\x14\x6b\x53\xdf\xfe\xa7\xd1\xd4\x36\xd0\x3f\xc9\x03\x78\x43\x4a\x24\xa7\x5f\xf6\x4b\x72\xda\x62\x0f\x24\x3f\x68\x4a\xf2\x64\x5a\x2a\x72\xff\x47\x6b\x72\xe7\x8b\x40\x68\x76\x32\xd7\x64\xd5\xc8\xa9\xea\x18\xbc\x4a\x21\xab\x8d\x3b\xbd\xbd\x5b\x5c\x76\x95\x60\xc5\xdc\x23\xc3\xf7\xae\xa0\x11\x21\x4c\xbc\x60\xfe\x58\x64\x89\xb7\x32\xb4\xf3\x5a\xb2\x90\x18\x40\x36\xa9\x37\xb6\xa8\x67\x03\xb2\xf8\x58\x44\x32\x0b\x07\x1a\x10\xb1\xae\x3c\x04\x76\x60\xbc\x0b\xfc\xb5\x01\x78\xc2\x3b\x15\xd7\xc9\xae\x4b\x32\xe1\x19\x46\xe7\x35\xf0\x7c\x5e\x80\xfe\x72\x01\x0d\x71\x9f\xe1\x98\x9d\x09\xbe\x27\x1d\x2e\x9a\x09\x34\x64\x2f\xe2\x05\x34\x79\x76\x7d\xb4\x40\x2b\x06\x81\xbe\xf0\x9c\x85\x11\xf9\x9e\xc3\x40\xd4\x3d\x02\x97\xec\x51\xd1\x9e\xcf\x9f\x6c\x93\xcd\xc5\x60\x45\x13\xe2\x67\x1b\x07\xde\xf0\x98\x8e\x99\x87\x23\x51\x13\x1f\x44\x44\x76\x5f\x3c\x98\x21\x6c\x7c\x89\x97\xac\x0e\x93\x48\x69\x63\x38\xc9\x0c\xa6\x8c\xbe\x91\x02\x8f\xd2\x05\xfa\x90\x5e\xbb\x79\x91\xfe\x88\x4d\xf1\xb5\x17\x5c\x71\xbc\xd3\x39\x0c\x20\xe6\x60\x05\x3e\xfb\x52\x40\x41\x10\x99\x50\xfd\x22\x2e\xf3\xd3\x1f\xa3\x95\xcd\x7a\x54\x5f\x70\xdf\xa3\x95\xf1\x9a\xff\x7c\xaf\xf3\x42\x8e\xbe\xb5\xdb\xe5\x7e\x7b\xf3\xff\x77\x99\x18\x72\xf4\xad\x5d\xef\xf6\x8b\x71\x3c\x7d\x98\x72\x0b\x86\x04\x86\xe9\x52\x2a\x5e\x54\x6b\x9d\x6d\x53\x1a\x29\xcd\xac\x97\xef\x52\xc7\x35\x26\xe2\x76\x66\xe2\xe3\xde\xdc\xf9\xc7\x3d\xda\x76\xb5\x89\x25\xda\x80\xd1\x3b\xaa\x52\xc2\x60\xb1\x79\x6c\x22\x41\x06\x70\x58\x69\x79\x2a\x7f\x59\x3d\x5d\x26\xc3\xad\x7c\x41\x00\xfe\x33\x4b\x3a\x06\xbe\x8f\x1c\x36\x98\xc8\x32\x20\x70\x16\x06\x46\x2b\x71\xd4\x88\x83\x2b\x7b\x44\xe0\x72\x3f\xe4\xe7\x34\xdf\x97\x06\x5b\x1b\x55\x0a\x48\x79\x5d\x26\xb6\x5d\x01\xc7\xdd\xd8\x16\x2c\x12\xc1\x39\x92\x11\x5a\xa5\xf5\xf9\x43\xc4\x3a\xa0\x07\x62\x84\x70\xeb\xd1\x49\x4b\xba\xf9\xc8\x80\xc2\x48\xcd\x4b\x2c\xa6\xe3\x93\x12\xd7\x29\x41\x8d\x29\xf2\x5d\x1e\x23\xca\x4a\xfc\x7b\x41\x44\x20\x60\x6a\xc0\xd4\x8f\x61\x29\xd9\x9d\xbd\xc3\x10\x3c\x0c\x14\x13\x83\x47\x2a\x64\x25\x6e\x05\xb6\x3a\x66\xa8\xfa\x06\x8f\x38\x68\xac\xdb\x9c\x18\x33\xb8\x32\x70\x4c\x17\x0d\x5d\x3f\x5c\x8b\xcc\x46\xce\x16\xc0\x63\x4d\x6b\x48\x57\x7a\xcd\x54\x16\x5e\x13\xaa\x54\x6b\x1e\x38\x54\x21\x12\xe8\x46\x02\xc6\x7d\xca\xa7\xce\x15\x2f\xfa\xbb\x5a\x85\xbf\xd5\x31\x88\x7a\x98\x82\xe2\xc9\x26\x71\x61\x44\x12\x4d\x51\xa8\xac\x09\x24\x15\x08\xda\xae\xa3\x1c\xee\x56\x52\x9b\x18\x85\x30\x48\x6a\xca\x07\x57\x7c\xa9\x05\x70\x45\x99\xa6\x08\xb3\xae\x24\xc3\x2c\xf6\x7d\xc6\x66\x31\x33\x56\x84\x81\x15\x40\x54\x4d\x87\xea\xbe\xbe\xe7\x5c\xe5\x46\xe5\x2d\x43\x8c\x04\x62\x42\x1c\x81\x29\xcb\x58\xe3\x1a\x2d\x5f\x45\xd3\x75\xae\x0c\x3e\xc0\x73\xb6\x1b\x3d\xe7\x8a\xea\xfc\x40\xb9\x52\xfb\xd4\x5f\x29\xe7\xaa\x14\xd8\x53\xca\xd9\x6f\x41\x83\x3d\xf8\xd6\x34\xd8\xc3\x83\x9d\x06\xdb\x94\xb1\xdf\x94\x06\x7b\x34\xda\x62\x30\x42\x5e\x47\x1d\x25\x3a\x2a\x25\xe4\xa1\xac\x2f\x7a\xcc\x61\x91\xd3\x02\x0f\x7b\xd5\x4e\x0f\x7b\xd3\x4e\x0f\x7b\xd4\x4e\xb5\xb9\x49\xda\x18\xd4\x5b\xc5\x0a\xba\x62\xe5\xa6\x45\xdc\x01\xf4\x7d\x5e\x8c\x85\x15\x84\x64\x32\xb9\x77\x73\x05\x13\xf7\x2e\x74\x10\x47\x10\xa9\x12\xfa\x67\xf2\x53\xf7\x5a\xf4\xef\x7d\x6b\xa2\xff\x78\x27\xfa\x1b\x33\xf6\x5b\x12\xfd\xe3\xe1\x3d\x15\xfd\xfb\x35\xa2\x7f\xbf\x07\xd1\x9f\x2f\xd1\xb6\xc2\x20\xac\xf2\x0b\x96\x5c\x9b\xc5\x1c\x7e\x86\x61\x66\x47\x2b\x40\x9c\x45\x31\x37\x35\x97\xcb\x7f\x64\x99\xf0\x37\xb1\x60\xf6\x15\x87\x8e\x89\x63\x16\x8f\x2f\x50\x09\x78\x8b\xf6\x41\xf6\xcd\x66\xad\xcf\x11\xff\x58\x68\x7f\xbf\x04\x19\xa0\xf3\x40\x96\x39\x50\x3c\x2e\x9b\x78\x33\xab\x0e\xd0\xfd\x1e\x0f\x50\x6d\x46\x86\x36\xa4\xef\x16\x91\x60\x79\x41\x38\x87\x15\x31\xa3\x1b\xdd\x71\x98\xd5\x06\xcd\x04\x02\xde\x12\x5c\xc1\xc4\xe6\x03\x41\xe4\x65\x75\x26\x6f\xe7\x60\x65\x43\xa9\x38\x52\x5f\x3a\x35\x87\xe9\xbd\x8c\x74\xbb\xdb\x40\xb7\xf1\x37\x76\x98\x8f\xc7\xbd\xc7\xb9\x05\x00\x8b\xc4\x15\xb5\xdc\xa8\x6d\x60\x17\x28\xd7\xbf\x2e\x32\xfe\xd6\x74\x91\xc9\x70\x8b\x71\x72\x95\x2b\x5a\x05\x9e\x73\x64\x99\x7e\x42\xea\x89\x2a\x0a\xcc\x1a\xb6\x82\x76\xc9\xa1\x1e\xdd\x30\xc9\x4c\x85\xb5\x28\x81\x65\x16\x82\x2f\xb2\xe2\x58\x2d\xc1\xcd\x73\xbd\x56\xc5\x19\xe9\xce\xe6\x49\x8f\x51\x84\x93\x1e\x83\x08\x27\x7d\xc6\x10\x4e\xee\x2e\x84\x50\xb9\x76\x7a\x8d\x20\xd4\x66\x28\x8c\xbf\xbb\xf8\x41\xf6\xa8\x97\xc0\x76\x04\x70\x0e\x88\x77\x0d\x93\x67\x5d\x18\x20\x02\x8b\x49\x05\x85\xf1\xf5\x1a\x65\xd8\x34\xc8\xf0\x9b\x8c\x31\xfc\xc6\x42\x0c\xc7\xfb\xa3\x6f\x3d\xc4\xf0\x1b\x8b\x30\x1c\xef\x8f\xbf\x9f\x08\xc3\xba\xdb\xe6\xed\xe0\x2f\xab\x11\x97\xff\xd2\x05\x71\xd9\x5b\x42\x86\x3e\xb5\x5d\xd0\xe5\xe3\x60\x14\x7f\x7c\x39\x1b\x6d\x84\xe3\x9d\x4c\xa5\x58\xca\x81\x17\x61\xba\x4c\x7f\xae\x06\xcd\x44\xea\x25\x24\xb7\x5e\xe7\x46\x57\xbd\x67\xd3\x43\x48\x77\xbe\xe6\x95\x09\x97\xaa\x39\xc9\xc5\x7a\x0d\x23\x02\xb1\x0b\xd6\x12\xa4\x65\x0b\x7c\xca\xba\x51\x21\xc6\xdd\x8a\x73\xbf\x23\x86\x68\xdb\x16\x18\x0c\x9a\xe1\x45\xb6\xcf\x20\x39\x35\x67\x2c\x5f\x8b\x06\x3f\x89\x0d\x14\xc0\x9a\x93\xaf\x6e\x43\x7f\x27\x84\x22\x2b\x74\x77\x84\xea\xb8\xce\x09\xda\xad\x71\x15\xeb\x16\x18\x6e\xbe\xca\x37\xb6\x32\xf6\x91\xde\x2c\xd8\xc1\x7d\x8b\x54\x5f\x59\x4e\xd3\x98\x95\x99\xc1\x99\xc4\x0d\xa8\x74\x09\x45\x03\x41\x09\x15\x84\x9f\x21\x28\xca\x62\x5b\x58\xdc\x0a\xa4\xea\x4d\xec\x90\x18\x17\x63\xab\xeb\x47\xc4\xfb\x93\x2a\xb3\xb1\x82\x20\x51\x08\xa8\xbe\xe4\xaf\x59\x79\x36\x29\xcd\xfa\x65\xc0\xb3\xac\xe1\x0d\x60\x07\x0b\x49\xea\xda\x01\xd6\x10\xcb\x63\x76\xc1\xda\xc0\x80\xfe\x62\x90\x05\x08\xe4\x9f\xf8\x44\xfb\x34\xfc\x26\xeb\xdc\x0b\x08\xf6\x1c\x61\x00\x93\x4f\x40\x5e\x9f\x15\xba\xdf\xea\x19\xb8\x93\x0d\xf9\x16\xb5\x97\x69\x02\x58\x55\x75\x1c\x07\x89\x75\x29\xb1\xbe\x66\xdf\x54\x98\x38\x9a\x5c\xd2\x8d\x10\x78\xac\x8c\xf8\x0c\xb8\x50\x89\xfc\xdd\x70\xa8\x0c\xa5\x5b\x36\xdc\x4e\xfd\x7a\xc0\x62\xfd\x08\x81\x3b\x87\x29\xfd\x4a\xe3\xd3\x45\xf3\x4d\x8e\x0e\xe1\x78\x2f\x4d\x40\xd4\xd1\xe6\x9e\xd2\x2c\x9e\x2e\x3d\x42\x78\x8b\xdd\xc8\x56\x5f\x29\x3c\xdb\x92\x4b\x14\x90\x85\x4d\xa2\xe4\x22\x1b\xa0\x95\x74\x18\x7c\x2e\xfa\x19\xc5\x7e\x5e\x22\x2a\x61\xec\x19\x46\x4b\x9b\xbd\x51\xf5\x72\xad\x1d\xae\xce\x4c\xd6\xbb\x36\xf3\xa7\x94\x0f\xf4\x40\xf5\x61\x4e\x14\x9f\x4a\x5f\xdd\xcf\xd5\xfe\xf4\x26\xf4\xf0\x26\x6b\xbd\x9b\x88\x98\x4e\xc6\xe3\x21\x9c\x4d\xbf\x2b\x11\x51\x36\x70\xe7\x36\x7f\xdd\xbd\xf4\xde\xec\xde\xdd\x9d\xfb\xce\x64\x0a\xc4\x18\x61\xa9\x8d\x67\x4c\xe3\xbc\xbf\x3b\xe3\x3d\xbc\x86\x78\xa3\xb3\xb3\x9b\x3c\x99\x41\xe7\x78\x3c\x3a\x82\x3b\x79\x72\x7f\xe4\xc9\x2d\xdc\xc5\x08\x9a\xcf\x7d\x58\x0e\xc2\xa1\x5f\x7b\xc1\x3c\xbd\x89\x25\x97\xdc\xdd\x8d\xec\x4f\x2d\x1d\x77\x37\xb2\xbb\xbb\x91\x71\xa8\x02\x0d\xd5\x18\x8a\x81\x3c\x28\x87\xd7\x7d\x92\xeb\x41\x89\xcb\x10\x0a\x58\xfe\x93\x88\xc3\xe4\x28\xc2\xc2\x25\x37\xb4\x3e\x31\x9c\xdc\x42\xfd\x29\xbe\xe9\x47\xd2\xbe\x10\x77\x9d\x8a\x47\x32\x1f\x99\x9e\x6b\xa3\x52\xd1\xa8\xac\x19\xcb\x3c\xf5\x51\x04\x4d\xcb\x7c\x17\xc2\xc0\xd4\x6f\xc8\xe6\x62\xd3\x2c\x95\x93\x2a\x8e\xba\x3a\xea\xa5\xd5\x2e\x2b\x94\x27\x51\x2f\xb2\x72\xc8\x25\x5a\x42\x91\xde\xca\x33\x22\x19\x58\x61\x22\x53\x95\x26\x36\x1d\x0d\x1a\x85\xd5\xec\x74\xd2\x6f\x51\xea\xee\xee\xb9\x77\x7a\xcf\xdd\xb6\xe0\x1d\xd7\x0b\xde\x71\x3f\x82\x77\x7c\xb7\x82\x77\xbc\x13\xbc\x77\xaa\xbc\xc3\x65\xb8\x00\x91\x57\xd2\xde\x9f\xf2\xef\xbf\xf2\x24\xe9\x82\x0a\xbf\xd3\xe0\xff\x9c\x67\xc9\x4e\xbb\x6e\x38\xa2\xfb\x6a\x7c\xe8\xea\xef\xd8\x79\x3a\xb6\xb7\x6b\x75\x6b\xe6\x1c\xac\x19\x1c\x7a\xc0\xc2\x06\x16\x10\xd7\xc5\x46\xf4\x78\x28\x6e\x47\x50\x7c\xbb\xea\xe0\xb7\x27\x29\xca\x66\xca\x7b\x62\xa0\xdc\x5d\x2e\xff\xf4\x0a\xc1\xce\x1f\xb1\xdb\xe8\x6d\x2e\x33\x5d\xc3\xf3\x7e\x58\x0b\xf4\x30\xc0\x71\xa5\xf2\x05\x70\xe9\x8d\x0e\x04\x86\xb8\x00\x7d\x85\x6e\xf1\x6e\x67\xb1\x0b\x1f\xff\x6c\x10\x06\x7e\x16\x87\xc6\x12\x61\x68\x44\x21\x70\x20\x4f\xd2\x81\x24\xe2\xdf\x5d\x7b\x51\x0c\x7c\x63\x05\xe9\x92\x1c\x18\x2f\x89\x01\xfc\x08\x19\xc0\xa5\x47\x37\x8b\xde\x83\x37\x5e\xc4\x50\xa7\x42\x7a\xae\xe3\x20\x1a\x54\x4e\xbc\xff\x78\x7a\x31\x3f\x75\x48\xbd\xd5\x25\xa4\x7e\x85\xec\x88\xc0\xd0\x4e\xec\x21\x5b\x8d\xac\x8f\x3f\x3c\x7b\x75\x36\x7e\xb1\x59\x64\x7d\x61\x46\x45\xa7\xd6\x0a\x19\x17\x04\x86\xc6\x0f\xe2\xe7\xf2\x45\xb8\x42\x42\x2f\x91\x73\x65\xd3\xb5\x93\xf7\x8f\xa4\xdb\x41\xec\xd3\x12\x55\x93\x6c\x71\xcf\xf5\xe1\x25\xbc\x21\xa6\x65\x3a\x20\x70\xa0\x9f\xfc\x81\x82\x99\x87\x97\xf9\xbf\xd8\x1e\x79\x93\x15\xef\x36\x2f\x1c\x80\xd7\xc6\x89\xb0\x31\x99\x6f\xaf\x97\xa6\x65\xfe\x02\x43\xd3\x32\x7f\x06\x1e\xb1\x0c\x0c\x81\xef\xaf\xff\x61\xbc\xf6\xae\xe0\x60\x30\x88\x20\xf6\x50\x1c\xf9\xeb\x7f\x28\x33\x34\x7b\x33\x45\xe4\x67\x6b\xa7\xc4\xae\xa0\xbb\xe1\x05\xc6\x25\xff\xb1\x57\x06\x1c\x5a\xe6\x62\xa4\x39\xe0\xc5\x50\xe4\x57\x12\xd4\x39\xc0\x80\x8e\x0d\xf6\xcc\xb7\xc8\x4c\x95\x71\xee\x76\x98\xeb\x23\x90\x16\xe3\xae\x60\xef\x6b\xfe\x98\x71\x91\xa4\xc1\x56\x59\x9b\xba\x30\xbb\x13\xbb\x2b\x18\x7e\xdb\x2c\xb7\x4c\xb0\x02\x1e\x3d\x3c\x4e\xa5\x5f\xb3\x44\xe1\xcd\x56\x04\xa3\x80\x65\x86\x18\x2d\x43\xa2\x5c\x1f\xdb\x38\xbe\x13\x6d\x86\x60\x14\xcc\x8b\xba\xdc\x5b\x44\xa0\x8c\x02\x5a\x07\x8a\x1a\x15\xd0\x12\x8c\x50\x1c\x42\x94\x9d\x0c\xa3\x35\x00\x3e\x2f\xbc\xca\xce\x75\x14\xf8\x6b\x1e\x1c\xcf\x42\xde\x09\x32\xa6\xeb\x10\x44\x1c\xff\x94\xf2\x51\x3c\x4b\xb5\x08\x17\x2e\x51\x10\x11\x8e\xdc\x65\x84\x31\x66\x20\xec\x77\x7d\xb8\xe7\x17\xdd\x66\x67\x7c\x64\x4f\x31\x04\xae\x83\xe3\xe5\x34\xda\xf2\xa9\xfe\xf7\xd9\xdb\xf7\x2f\x5e\xc5\xaf\x95\xa7\xba\x99\x8d\xd3\x2c\x9d\xf0\xf9\x24\x49\x85\xac\x97\x2f\x73\x32\x18\x52\xde\x0f\x22\x93\x82\xf2\x8d\xe3\x2b\xa4\x98\xc1\x65\xd7\x8a\x10\x87\x49\x79\x83\x74\xfb\xf3\x57\x4e\x85\x88\x61\x35\x79\x99\x98\x72\xa1\x9f\x62\x22\x88\x66\x2d\x53\x82\x3f\x1e\x64\x9f\x07\x04\x44\x57\x83\x59\x64\x63\xc4\x1c\x3e\xcc\x6b\x84\x31\x58\x67\xc6\x6e\x10\x5d\xe5\x5e\xcf\xca\xdc\xb2\x9f\x32\xa7\x50\x0d\x22\xd6\xc8\xca\x35\x58\xc4\xa8\x6a\xe8\xd8\x28\x1f\x2c\x7b\x96\x09\x81\xb3\xd0\x90\xb7\xda\xf7\xd3\x98\x6f\x3c\x95\xd8\x8b\x5e\x03\x81\xa2\xb3\x75\x8e\x75\x64\x56\x9a\x3d\x1f\x02\x81\xab\x50\xcb\xbc\x8c\x7d\x22\xa1\xba\x1b\xe7\xea\x45\xbc\x54\xbd\xe9\xb8\x1f\x81\x96\x93\x3b\x9b\x8a\x30\xd7\xc3\xd0\x21\x08\xaf\x6d\x18\x10\xbc\xde\xb2\x18\x7b\x89\xf6\xd0\xe9\xc5\x18\x35\xbb\x9c\xe8\x01\x60\x4c\x25\x44\xc7\x37\xb0\x8c\xf7\xc4\x22\xbe\x44\x4f\x19\x3b\xaa\xd6\x72\xde\x33\x2c\xd8\x67\xbe\x8c\xce\x3c\xdc\xc8\x3f\x2c\x29\x63\x19\x10\xcd\x0c\xf9\x2e\xc4\x36\x8a\x89\x70\x42\xaa\x8c\x7f\xca\x6d\xd1\xba\x27\xcf\x87\x1d\xfa\x51\x1b\x0c\xb5\xf6\xa1\x40\x40\x51\x1e\x49\xc2\x3a\x21\xd5\x5b\x6d\x35\xdc\x96\x12\x5b\xb5\xe0\xe4\x41\x2c\x40\x64\x13\x78\x43\xb2\xb0\x86\x23\xbe\x08\xe3\xc0\x87\x51\xd4\x96\x87\x79\x4b\xd5\x74\x4d\x60\xb9\x89\x0b\xef\x2b\x2c\xd9\xab\xf4\x93\xda\x64\x2e\xf4\x74\xe1\x57\x01\x9d\x05\x2d\x19\xd4\x1b\xe4\x5e\x7a\x4b\x28\xc7\x5c\x68\x1c\x66\x95\xaf\xd2\x4b\x02\x55\x46\xaf\x05\x6e\xce\x70\x38\x54\x43\xe7\x28\x64\x73\x1f\xe2\xb7\x20\x33\x37\x12\xc1\x73\x1f\x4d\x81\xcf\x0c\xd1\x10\x6f\x59\xfa\xc2\x9f\x0f\x3f\x7e\x04\x1f\xd7\x6a\x25\xf2\x6f\xa2\x41\xa5\x0a\xa9\x43\x03\x0a\xc0\xf5\x14\x30\x3b\x6f\xa1\xf0\x48\x61\xb1\xe9\xae\xa7\xfc\x7d\x7b\x8a\x41\xa0\x30\x12\xd7\x6d\xfe\x79\x4c\x08\xc4\x22\xf6\xda\x14\x3f\xca\x3e\x5e\x73\x09\x83\xd8\x6c\x1e\x66\x44\x57\x24\x0a\x5e\x80\xe5\x34\xc6\x73\x88\x4f\xd9\xf3\xc5\xd5\x5c\xf2\xb3\xec\xb3\x6d\x47\x3c\xe0\x47\x8f\x16\xc9\xbb\x36\xeb\x9a\xb7\xab\xbb\x40\xea\x8e\x2a\x27\x77\x48\xf1\x32\xf9\x8c\x4e\x1e\x81\x4b\x66\xf1\x47\x73\x64\x5a\xe6\x17\x34\xd5\x07\x92\x2b\x87\xc7\x17\x2b\x7f\x5d\x1a\x5a\x57\x79\x58\xc3\x56\x58\x64\xaa\x59\xc4\x5e\x13\x18\xa7\x0c\x3d\x92\xde\xe9\xe7\xa6\x65\xc2\xe0\xda\xc3\x28\x60\x88\x38\x74\x5c\x2e\xbc\x86\x3e\x0a\xf9\xdf\xcd\x91\x8b\x5b\x13\xd6\x94\xae\xe8\x1a\xaa\x5e\xd0\xdf\xe6\xb1\xe7\x6e\x58\x2d\x3f\xaf\xc9\x2b\x8b\xfb\x2c\x08\x09\xa3\xc7\x8f\x38\xc7\x42\x8c\x98\x7c\xf0\xd0\x23\x17\x39\x91\xa9\x26\x37\x9b\x44\x46\xef\x33\xe4\x30\x58\x21\x0d\xd4\x61\x57\x1a\x45\x90\x10\x2f\x98\x47\x03\x82\xae\xa0\x1a\x56\x74\x68\x99\x27\xa7\xaf\x8d\xcb\xf4\x81\x3a\x54\x9f\x6a\xcb\x5b\x83\xa5\x46\x37\x45\x04\x1d\x14\xb8\x9d\x65\x50\xb2\xb7\xb8\x50\x51\x0b\x23\x71\x90\x61\x38\xf7\x50\x60\x47\x2b\x8f\x38\x0b\x2a\xd6\x13\xda\x65\x08\xe7\x89\x46\x29\x14\x20\xb7\x81\xc1\x31\x1d\xa8\x4e\xd8\x66\xd7\x02\x26\x03\x00\x9e\xeb\xa3\xc8\x34\x77\xfe\x74\x22\x7b\xd6\xa8\x95\x65\x4b\x7f\xd0\xd2\x5e\x3a\x9c\xb3\xb9\x83\x71\xb3\x23\x96\x9f\x02\x42\xde\x6e\x15\xd5\xe8\xe6\xc7\x8b\xaf\xcf\x7e\x7c\xae\x3e\x60\xa9\xaa\xca\x7c\x66\xa6\x55\x7d\xd8\xe6\x16\x6a\x11\x9f\x3a\x04\x73\x68\x3b\xc8\x8f\x97\x3c\xbc\x16\xce\x88\x51\x36\xd7\x78\x11\x0f\x52\xe5\x97\x7e\x24\x05\xac\x7e\x2e\x1e\x63\xaa\xdd\x51\xec\x94\x93\x78\xb3\x7e\x32\x6b\xb3\xd0\x85\x74\x9d\x39\xc8\xf7\x41\x18\x41\x97\xb1\x74\xd3\x4e\xbf\x05\x2d\xa2\xbd\x1e\xa1\xf7\x37\x57\xcd\x94\x9e\xfb\xb6\x28\x90\xa4\x12\x71\x6d\x54\x86\xa6\x1e\xee\xec\x94\x8b\x3c\xc9\x22\x9d\xf3\x51\x08\xf2\xea\xf4\x04\x56\xcf\x61\x1d\x89\xe3\x87\xa1\xb6\x5c\x2c\xd0\xea\x3d\x93\xc2\xf5\xf6\x32\xa3\x3e\x6a\x24\x5b\x72\x28\xf0\xeb\x02\xc2\x42\xed\x24\xc4\x82\xd1\x06\x3b\xf0\x11\xb7\x09\xb5\xd0\xe0\xdb\xf1\xce\x24\x64\x3b\x6d\x18\x44\xb9\xc2\x54\xe1\xb9\x7a\x0f\x12\xed\x2b\x39\x1c\x57\x4c\xf5\xd1\xb7\x95\x1d\x93\xe3\xf2\x31\xa9\x0f\x96\xaf\xa2\x44\x35\x8d\xea\x43\xec\x1b\x06\x9d\x77\x66\xec\xcf\x08\x5f\xf9\x08\xb8\x4d\x76\x66\x3b\x76\x36\xda\x05\x6f\x93\x53\xa5\xd9\x46\x68\xbe\x30\x36\x5b\x16\x62\xec\x21\x5a\x41\x6c\x47\xd0\x87\x0e\xc9\xd4\x24\x14\xf2\xf2\x2e\x54\x99\xf4\x19\xbc\x25\xfb\x08\xb0\xb3\x78\xe6\x41\x3f\xfb\xeb\x69\x00\xa6\x3e\xfb\x15\x05\xa7\x0b\x10\x30\x27\x20\x01\x73\x66\xd9\x49\xc6\x92\xd5\x7c\x41\x98\x40\x37\x47\x10\xab\x40\x37\x6e\xe0\x4b\x1f\x61\xab\x83\x99\x90\xb8\x38\x9f\x67\xf9\x23\xa5\xc6\x64\x2c\xd6\xd1\x30\x97\x77\xa2\x3d\x05\xe6\x88\xa0\x57\x68\x1a\x3d\x43\x58\xee\x33\x2d\xda\xc0\x88\x9b\x29\x06\xd2\x56\xa9\x32\x07\xca\xb5\x21\x64\xdb\xb6\x99\x29\x15\xad\x10\xab\xe9\xff\xce\xf8\xab\x46\x3a\xcc\x0e\x66\xc0\xb2\x10\x68\x6b\x7b\xaf\xb2\xae\x17\x3a\x6a\x26\x14\x1a\x62\x68\xab\xf7\x44\x53\x2b\x72\xd1\x78\x5c\x71\x2d\x7f\x25\x7e\x6a\x62\xa7\xab\x91\x25\xdd\xa4\xd5\xa9\x1f\x47\x04\xe2\xfe\x85\xd5\xed\x90\x52\x14\x44\xd5\x50\xf3\x34\xfb\xb5\x29\x41\xfb\x1e\x60\x04\xf1\x35\x03\x89\x56\xdb\x0b\xb2\x5f\xbb\x73\xbc\xdd\xd5\xac\x52\x68\x17\x2e\x0f\x58\x15\x16\x2b\xae\x87\xe3\x16\x3d\xa8\xaf\x0b\xf6\x14\x38\x57\x2e\x46\x61\x7b\x15\xbe\x4f\x45\xbb\xef\x7b\x6b\x76\xdb\xdc\xe8\xd6\xea\x2d\x29\x2f\x66\x9e\xbf\x6d\x28\xde\xd9\x55\xb4\xbf\x04\x97\x3f\x36\xf6\xc9\xa9\x8b\x3d\x8d\x2d\x33\xc2\xac\xc4\x0f\x5b\x71\x04\xe0\x39\x24\xa6\x65\xfe\xd7\xd4\x17\x95\x40\xe8\xd7\x98\x97\x7a\x42\x94\xe3\x10\x1b\x01\xc2\x70\x06\x31\xe6\x97\x11\x79\xa5\x66\xe4\xb1\xd9\x47\x8d\x4d\xc7\x5b\xce\x73\xa3\xa1\x43\x28\x0c\x66\x64\x99\xc0\x4f\xc2\x04\x10\x4e\x97\x20\xfd\x32\x5d\x45\xb4\x23\xe1\x2e\xca\x56\x4f\xce\xf1\x31\xb6\xe4\x87\x92\x25\x4a\x15\xbf\xba\x15\x1a\x87\x2e\x20\xf0\x25\x9d\xc5\x1b\x48\x40\xe5\x02\x55\xec\xb4\x99\x37\x77\x00\xaf\x82\xa6\xda\xd2\x12\xa1\x92\xc7\xd4\xa4\xd2\xde\x0a\xcb\x2d\xe8\x8c\xf9\x55\xe1\x48\xa3\x22\x8d\x34\xfe\x9a\x9c\x1a\x03\x02\x37\xe5\xc7\xca\x73\xb9\x72\xc5\xff\x5c\x40\x2e\x9c\x3e\xb7\x2b\x56\x57\x0a\xfb\x1e\x5a\xe6\x03\xe9\x4e\x22\x7a\x91\x75\x91\xf0\xc6\xf8\xff\xfe\x5f\xf9\xde\x92\x74\x9d\x7f\x48\xa1\x8d\xcb\x3e\x38\xd5\xc8\x2c\x45\x1e\x46\xde\x9d\x17\xb5\x73\xe3\x0d\x2d\xf3\x61\x4b\x05\x47\x75\x5a\xf4\xe1\x27\xcb\x56\xcd\x46\x62\xf0\x0b\x9a\xda\x2e\x0c\x7d\xb4\x66\xbe\x41\x91\x69\xbc\x65\x91\x78\xe8\x1f\x1d\x90\xdf\xfc\xb0\xad\xa3\x6c\xb4\x47\xf5\x5d\xc6\xed\x05\x88\x16\x99\x26\xb1\x84\x04\x7b\x0e\x47\x2a\x88\xae\x9e\x63\x14\x87\x51\x3e\xca\x80\xdf\x62\x8e\xf2\xf5\x03\xcc\x3c\x75\x1e\x49\x84\x4a\x5a\xfc\xcc\xcd\xce\xc9\xf7\xd9\x65\x48\xfe\x8e\x1f\xaa\x75\xad\xd3\xa1\xd9\x73\x3e\xb6\x1e\x9b\x95\x06\x5d\x9c\x6f\xa3\x1e\x44\x37\x7d\xfa\x78\xd5\x8b\xae\xc7\x75\xbc\xe5\xf5\x3b\x0c\x67\xbf\x1e\xf8\xe0\x27\xf5\xfa\x75\xeb\x8d\xce\xcd\x12\xaa\x0c\x2f\x60\xe9\x5e\x6c\x32\x5e\xca\xd6\xba\xb3\x47\x0e\xd5\x90\x49\xc6\x6b\xb6\xbe\x74\x75\xf5\x79\x94\xe7\x58\x51\xf5\x94\x53\x90\x08\x98\x33\xd5\xb3\xdc\x11\x01\x24\x8e\xb8\x62\xff\x39\x9f\xd7\xab\x79\x56\x17\x46\x52\x3c\x12\x72\xaf\x62\xf8\x5b\xec\x61\x18\x9d\x63\xb4\x44\x22\x22\xa8\x51\x68\x5f\xa3\x04\xab\x34\xfd\x4b\x54\x90\xa2\x1f\x17\xc8\xf7\x73\xf5\xae\xde\x8b\x21\x18\xd2\x18\x5a\x1f\x1f\x95\xc9\x71\x39\x34\x8f\x76\xee\xfb\xda\x14\xb1\xba\x06\x0a\xc9\x61\x1f\x21\x8e\x34\x55\xdd\xea\x5a\x5a\x80\x28\x87\x02\x21\x5a\xfc\x37\x53\xb7\x2c\xae\x45\x5f\x96\xc9\x81\xdb\xeb\x6a\x5b\x6a\x54\x93\x7f\x95\x2f\xa6\x7d\xe6\xb2\x57\x0c\x3b\x62\x99\x74\x85\x70\x1d\x1d\x3a\x8a\x59\x9d\xf5\xde\xb2\x9b\x16\xa5\x8c\x5a\xf8\x17\x92\x3c\x83\xa4\xf1\xd1\xb8\x03\x1c\xcd\x44\x8f\x3f\x23\xfc\x43\xd9\xe5\xd5\x4a\x1f\xc8\x62\xf8\x12\xea\x25\x7a\x4c\x7e\xb0\x75\x37\xf7\x3d\xf5\x1d\xb9\x4a\x66\xd4\x5c\xf8\xeb\xb2\xdd\x45\xaf\x3a\x2d\x2c\xf3\x6b\xd7\x9e\xd3\xf5\x71\xd4\xdc\x18\x98\x2a\x2e\xea\x65\x90\x7f\x58\xd2\x96\x1a\x3d\x9f\x53\x30\xea\x0d\x8e\x45\xeb\x62\x53\xd9\xd8\xbf\x0e\xd2\xa3\xee\xa1\x53\xb8\xb6\xab\x92\x4c\x0e\x57\xaf\x8e\x83\x97\x5f\xd4\x2a\x09\x3b\x2d\xd9\xc1\xd5\x51\x31\xd1\xe8\x1d\x9b\x00\x50\x9c\x64\xb4\xab\x0a\xd6\x68\xbe\xf3\xd8\x51\x47\xa5\xcd\xd4\x87\xc5\xf3\xce\x4c\x4c\x90\xcd\xaa\xe3\x96\x04\x6e\x61\xe1\x17\xff\xbe\x95\x8a\xb9\xa3\x7b\x58\x31\xb7\xd1\x56\xc8\x4a\x97\x1d\x6f\xbf\x84\xae\x58\x03\x2f\xcf\xf4\xde\x4c\xe5\x0b\x97\x20\xba\x32\x98\x6c\x6c\xf9\xe2\x29\x2b\x9f\xa2\x49\xa0\xd7\xbe\xf5\x06\xb9\xde\xcc\x6b\xfd\xda\x85\xd0\x9e\x5b\xbd\x54\xa1\xc7\x55\xbc\xf5\x16\xb9\x6d\x2b\x01\x9f\x9e\x7f\x68\x4b\x06\xb8\x44\x78\xdd\x5c\x87\xee\x6d\xa3\xdd\xb7\x12\xc0\x2d\x37\xda\x78\xd4\x61\xa7\x09\x8d\x33\x6b\xd0\xc6\x29\xb6\xd2\x27\xf9\xb0\xe7\xf9\xa2\x84\x15\x17\xcc\xaa\x26\xf3\x72\xac\x94\x66\x5f\xd0\xb4\x51\x7d\xdd\xb1\xae\xba\x5f\x9d\xa2\xd0\x7f\x18\x7a\x63\xfa\xde\x82\xd6\x90\x5a\xab\xb6\xaa\x31\xfc\xfc\xe1\xf9\xfe\xf0\x60\xfc\xb5\xb1\x5f\xa2\x22\xb8\x27\x5e\x06\x91\xa1\xb6\x9e\xb5\xd0\x1a\x84\xe3\x2c\x40\x2b\x0c\x42\xed\x75\x57\x1f\x30\x41\xfb\xe4\x06\xb6\x8a\xcb\x6e\xa5\x63\x8d\xb7\x51\xf0\xa7\xe5\xc3\xa8\x73\x6a\x41\xe8\x03\x07\xba\xa7\x20\x00\xd8\x93\xe3\x21\x72\x0f\xb9\x30\xf2\x70\xee\xa9\x34\x3e\x21\x17\xd7\x2f\xbe\x6b\xde\x7b\xb9\xe1\xb4\x98\x36\x6b\x3a\xb9\xf7\x57\xdd\x3d\x05\x55\x16\x13\x75\x40\x5b\xc1\xd1\x9d\x75\x55\x21\xd5\xd5\x8e\x73\xb6\x5a\xcd\x2a\x4b\x50\x99\x98\x72\x09\xdf\x47\x86\xd6\x56\xa0\xa0\x43\x95\xa9\xa0\xea\xbe\x7b\x7b\x4b\xad\xf4\x7a\xa5\x7b\xbf\x21\x3f\xce\x19\xc9\x6e\x91\x1b\x4c\x49\x6f\x49\xd1\x3b\x9c\xff\x19\xe7\xfc\xad\x10\x40\xac\xaa\x4b\x5e\x5e\xfc\x3e\x2e\xa9\xa6\xd2\x4b\x8a\xba\xca\xcd\x70\x01\x81\x4f\x16\xeb\x8c\xc7\x43\x95\x60\xba\x25\x51\xf2\x82\x77\x7e\x2b\xac\x2b\x4d\xec\xcf\xc7\xbb\x38\xa8\xe6\x9e\x0b\x82\x39\xc4\xb7\xc5\xbc\x0f\x49\xef\xb7\xc2\x3e\xc5\xdc\xba\x32\xb0\xb5\x59\x81\xeb\x20\xcd\x94\x8f\x22\x0f\x03\x44\xbc\x99\xc7\x75\xc7\x56\x8e\x11\x95\xc1\x4d\xf3\xee\x19\x8c\x1c\xec\x85\x49\xfe\x73\x7b\x08\x95\xbb\x54\xa5\x85\x1a\xd8\xa7\x1a\x2d\x3b\x51\xb7\xab\x3f\x5f\x3a\x8f\x86\x97\x31\xb9\xf8\x76\x2c\x6e\x99\x49\xe3\x1b\xb0\xb8\xa5\xa6\xe9\x8b\x78\xb9\x4c\xf5\x3a\x33\xe7\x44\xff\x7e\x0d\x6f\x12\x19\xfa\xb4\xb6\x25\xa6\x1e\x91\xf4\xdf\xc6\x3a\x04\xa1\x2b\x79\x41\xff\xd1\xf2\xf5\x93\x98\x20\x83\x43\x76\xb6\x7d\xb5\xd1\x9d\x44\xd1\xa3\x38\x5b\x5a\xbd\x24\x94\x16\xa3\xd3\xcb\xe9\xa1\xd9\xed\xf5\x73\x8c\xe6\x18\x46\x91\x71\x06\x81\x9b\x20\xdc\xef\xac\x64\xb5\xbb\x62\xd4\x75\x5b\xa8\xa1\x51\x8a\x4f\xb9\xa5\xb8\x0b\xd9\x3a\x56\x86\x34\xaa\x48\x46\xaa\x82\x5b\x49\x21\x87\xe4\xb6\xdb\x07\x40\xe4\xfb\x1c\x15\xe0\x8c\xe4\xb6\x43\xd6\x26\xe4\x42\xf0\x2d\x62\x30\x6f\x51\x4f\x78\x26\xfc\x7f\x6f\x1f\x9d\x54\x62\x94\xe4\xc7\xda\x9c\x6e\x55\xb3\x02\x31\x41\x5c\xcc\xb0\x7e\x7f\x61\x79\x27\x6f\x51\x69\x5e\xad\x7b\x13\x81\xaf\x05\x1a\x96\x2c\x1a\x43\x05\x01\x25\xd3\x46\xfe\xf5\x16\x76\x8d\x36\x2b\x52\x77\xb3\x6f\x30\x94\xda\xcb\x70\x9b\x71\x34\x56\xf2\xdb\x34\xda\xe2\xee\x50\xb7\xf3\x8a\xbb\xa5\x12\x26\x27\x67\xb3\x54\x42\x21\x2b\xb7\x6e\x22\xd4\x7f\xe8\x13\x1c\xf9\x96\x0c\xef\xb7\x75\x61\x28\x48\xed\x9e\x6e\x0a\x91\x1d\x11\x0c\xc1\x72\xcb\xb7\x84\x67\x61\xe8\xbd\xf3\x5f\xbe\x54\xdf\x12\x30\x74\x10\x56\xc4\x0b\x16\xe1\xeb\x04\xa0\x25\x74\xcf\xb2\xf9\x25\x50\x3e\x57\x90\xdd\xc2\x25\xed\x79\xe0\xb9\xd5\x09\x6e\x69\xa4\x08\xe0\x51\x81\xab\x33\x8e\x80\xda\x1a\x17\xaf\x19\x64\x7e\xf1\x08\x1b\xb5\x0a\x67\x6a\xe8\xc5\x2a\xc2\xf0\xb7\xed\x66\xd3\x33\xed\x43\x70\x15\xa0\x55\xc0\xf0\xbd\x6b\x8f\xb5\xe6\xaa\x9b\x1c\x84\xd4\xb5\x2c\x80\x44\xa5\x62\x18\xad\x2e\x00\xa9\x44\x3d\x6e\xad\xa8\x43\xf4\xd5\x8a\x97\xfe\xc5\x46\xb2\xbf\x37\x17\x19\xde\x6c\x66\xcf\x3c\xe8\xbb\x91\x0d\x02\x57\x50\x71\xdb\xd6\x85\xe8\x3a\x3c\xfd\xed\xf8\xd1\x81\x5a\x6e\x08\x4e\x5b\x26\x1b\x77\x2b\x23\x03\x9b\x6e\x72\x89\x4f\x8b\x26\x95\x36\x6b\x4e\xfc\x70\xea\x34\x15\x10\x95\x36\xb2\x72\xf7\x36\x46\xab\xc4\xee\xe9\xa0\xc0\x01\x2c\xba\x3b\xf7\x1c\x33\x3f\x1a\x5e\x64\x8b\xc7\x7c\xb4\x82\xd8\x01\x11\x94\x0e\xd6\xcb\x75\x08\xcb\xc5\xe8\xba\xe0\x55\x28\x86\xe8\x40\x5f\x93\xef\xa9\x6c\xac\x64\xdc\x05\xf8\x2a\x83\xf7\xc8\x26\xb9\xf9\x8c\x4c\x0d\xe0\x53\xa3\x26\x2d\x13\xb8\xb2\x65\xb8\xd1\xcd\xe1\xef\x4d\x65\xe3\x06\xc3\x72\xa1\x0f\x49\xdb\x81\xd9\x77\x30\x30\xe8\x7a\xad\xc7\xf5\xf7\x47\x76\x41\x83\xab\x08\x7b\xac\xcb\xd7\x2e\xde\x8d\xf4\xea\x60\xa6\x1a\x17\x61\x1a\x87\x96\xf9\x58\x63\x40\xbf\xdb\xe5\xd4\x71\x23\x1a\xb9\xef\x1d\x0e\x5b\x20\xef\x0a\xb3\x30\x7f\xb8\x2a\x99\xca\xcd\x06\x27\xf0\x36\x17\xf4\x1d\x91\xe6\x9d\xef\x6e\x9b\x34\x6d\xb7\xd4\x36\x29\x63\x3c\xf9\x0f\xe3\xd6\x96\xd7\xe6\x73\xdc\x70\x13\xe8\xc5\x53\x5b\xc9\xd4\xf8\x3a\x5a\xba\x5e\x96\x75\x0f\x94\xd6\xf3\x6f\x1b\xa6\x5f\x38\x85\x37\x51\x30\x46\x2d\x14\x8c\x5b\xd2\x08\x9a\x0e\xa1\x85\x08\x2f\x37\xd9\x5a\x84\xf7\xad\x0d\xa8\x86\xd4\x5a\x78\xf6\xad\x09\xa8\x06\xd5\x56\x6c\xc9\x5a\x40\x6f\x1a\x80\xda\xfb\x9d\xa5\x6b\x28\x4e\x7e\xe3\xf7\xa6\x51\x3a\xe5\x0d\xa2\xd7\x80\xe5\xdb\xa5\xee\x3a\x95\x5c\x35\xc5\x65\xc2\xca\x76\x76\x46\xe5\x67\xc9\x45\x23\x9d\xc2\xbb\x6c\xfb\x57\x64\xa8\xe4\x89\xf0\xc7\x96\xee\xa6\xea\x99\xf7\x72\x41\xdd\xf2\x6d\xf4\xcb\xb3\xd9\x73\x3c\xfb\x59\x93\x5d\xc2\x03\x5f\xac\x14\xa1\x5d\xaa\xbe\x62\x7a\x81\x0b\x6f\x58\x5c\x45\xcc\x63\x3b\x18\x58\x03\xdf\x4d\x2d\xa1\x19\x8b\x18\x27\x9c\x2e\xc9\xce\xdc\xe0\x02\x59\x6e\xac\x58\xd2\xbc\x12\xd9\xb1\x5f\x49\x5f\x3b\x98\x8e\xe2\x5e\xdb\x6e\x4b\x99\xdf\xaf\xc4\xaf\x18\x55\x4b\xb1\xdf\xaf\xd0\xaf\x18\x57\x3b\xc9\x9f\xc9\xfd\x9e\xa4\xbe\x26\x68\xa3\x99\xae\x38\x45\xbe\x1c\xa6\xf1\x0a\x4d\x1f\xcb\x0a\xad\x34\xeb\x97\x67\xf5\x4a\xad\x5a\x7b\xcb\x88\x2b\x81\xc1\x5c\x43\x3c\x45\x51\xb6\x4f\x7b\xa2\xfb\x26\xa9\x9b\x4d\xce\xb7\x7e\xce\x36\x69\x52\xf2\x01\x27\x7d\x5d\x7d\xca\xb5\xb2\x16\x6b\xd4\xe8\x84\xa8\x72\xc2\x67\x1f\x0a\x75\xce\xa8\xbf\xb9\x28\xae\xd2\x73\x77\x1a\xf7\x4e\xe3\xbe\x9f\x1a\x77\x57\xf9\x9b\x05\xe4\x3d\xce\xdb\x15\x34\xca\xbb\x52\x06\x17\x3d\x6b\x1f\x98\x86\xd5\x04\xad\xf4\x41\x51\x50\x1c\x59\xa6\x4d\xff\xb0\xbd\xa0\xa2\xc1\x8a\x76\xdb\x1a\xc6\x53\xa1\xca\xd5\x42\x9b\x69\x89\xe9\x1e\x8d\x22\x3b\x79\x9a\x8e\xe5\x20\x07\x05\x90\x8b\x00\xd8\x67\x30\x02\xf2\x35\x27\xa3\xe5\x41\xee\xb7\x7a\x73\xc7\xbe\x75\x90\x07\x84\x6a\x23\x73\x4b\x87\xdf\x86\xcb\xdc\x2a\x1e\x9f\xed\xd0\xba\xfe\x5c\x77\xbb\xf6\x27\x9f\x20\x31\x88\xae\x9a\xec\x87\xd6\x67\xde\xb8\xa7\x33\x4f\xef\xed\x69\xeb\xc6\xfa\xf3\x7a\x9e\xee\xa9\xdf\xe9\x7e\x7a\x9d\xf2\x3e\xa7\x1e\x3d\x4e\x2a\x8b\x31\xdd\x5e\x8f\x15\x76\x71\xe5\xf9\xa5\x89\x68\x3c\x49\x6d\x06\x4d\x61\xb6\x4b\x87\x57\xbb\x86\x9a\xc4\x77\x29\x0d\xc8\x85\x43\x69\xa2\x3f\x94\x26\x95\x07\x4f\xd6\x6f\xbe\x8e\x99\x0c\x3e\xbd\x97\xa1\xe3\xb8\xd0\xd1\xcc\x52\xc2\xcd\x6e\x7a\x37\xb2\x9a\xd4\x8c\xd1\xaf\x9e\x89\xb5\xd7\xea\x84\xdc\xf4\x52\xd8\x7c\x57\x34\x06\x68\xef\xe3\x50\x1b\x97\x0e\xb5\x71\xcd\xa1\xd6\x18\x2c\xbf\xa1\xf3\xa4\x11\xa8\xce\xad\xd8\x39\x37\x36\x6a\x52\xee\xa1\x6d\x17\x6c\x8b\x7f\x7c\x3f\x7a\xf9\xfc\xd1\xac\x3a\x85\x47\x44\xcc\xd2\xc5\xf4\x0c\x78\x7e\x8c\x15\xa6\xcb\x3c\xb2\x54\x08\x70\x04\x9f\x62\x8c\xea\x0a\x49\xd6\xa8\x69\xb9\x84\xb2\x2c\xa9\x4f\x5b\xf8\x45\x9d\xbc\xc7\x20\x76\xe9\xeb\x7b\xd2\x9b\xe7\x74\x88\x86\x18\xa3\xe6\x4e\x13\xaa\x00\x68\xe5\xb9\x69\x61\x04\x1b\xa7\x25\xc8\x44\xf3\x41\x70\xcf\x69\xe6\x83\xa0\x13\xc9\xb2\x99\xf5\x4a\x31\x1c\xdf\x73\x82\xbd\x8f\x3b\xd1\x2b\x9b\xd7\x86\xe4\xaa\xd6\x54\x19\x3e\x30\x61\xd8\xd7\xe2\x38\x61\x5d\x56\x9d\x23\x5a\x70\xe5\x68\x81\x56\x4f\x59\x0b\x49\x31\xfd\xc2\xa1\x26\x2a\xf0\x71\x0c\x95\xcf\x96\x19\xc0\x55\xab\xa3\xab\x25\x13\xbd\x60\x86\x54\x57\xba\x9a\x66\x04\x94\x47\x65\xa8\x5b\xdb\xcc\xd9\xdc\xcb\x6d\x57\x0f\x30\x5e\xa1\xa9\x3a\xc8\x49\xb3\x86\x98\x6c\x8b\x08\x34\x10\x36\x40\x4c\x16\x08\x1b\x2f\x4e\x5f\xd3\xbf\x5e\x5d\xbc\x7b\x6b\x10\x64\xf0\xe0\x5f\xfa\x69\x8d\x62\x6c\x38\xbc\x62\xc3\xc0\x38\x31\xe8\x46\x35\x56\x9e\xef\x1b\x53\x68\x60\xf8\x5b\x0c\x23\x02\x5d\x63\x0a\x67\x08\x43\x56\x94\xff\x0b\x9a\x1a\x5e\x24\x9a\x20\xd0\x1d\xe8\x03\xb0\xb4\xa9\x5d\x35\xf0\x27\x5e\x64\x3b\x30\x20\x10\x43\x86\x04\xbb\xf4\x02\x6f\x19\x2f\x6b\xe8\x9a\x80\x33\x2a\x31\x4d\x13\x6c\xc6\x64\x51\x94\xd1\xff\x39\xf6\xa2\x9d\x42\x33\x2a\xd6\x73\x19\x8d\x31\x1d\xd0\xbb\x2b\x50\x91\x08\xde\x36\x65\xbb\x69\x34\x74\xa7\x2c\xda\x5e\xf2\x68\x0d\xba\x28\x8d\xb3\x14\x95\x57\x89\x2e\xe9\x80\xc0\x81\x3e\x8f\xaf\x6d\x1e\xd6\xd4\x88\x8f\x35\x18\x9b\xad\x8a\x3b\x9c\xb2\x61\xaa\xaa\xa7\x25\xbf\xb4\x2c\xf7\xa2\x15\xf5\xfd\xa4\x15\x97\x54\x78\xef\x7a\x6d\x3b\xc8\x85\x4b\x8f\x1d\x19\xa9\xd6\xce\x61\x06\x04\xdc\x00\x37\x61\xb2\x3a\x47\x61\x1e\x0e\x5c\xba\x8e\x7c\x41\x53\xd3\x32\xff\x2b\x80\xab\x8c\xb5\x99\xa7\xe6\x0b\x9a\x5e\x84\xd0\x91\x6e\x20\x7a\xd2\x1e\x59\xe6\x32\x26\x75\x0d\xe7\xc5\xbf\xa5\x82\x35\x47\x2e\x2b\xc8\xb4\x80\x4b\x5e\x98\x69\xca\xca\x52\xb3\x52\x2a\xf0\x2d\xc3\xc5\xe5\xa5\xd5\xbf\x80\x6b\xc0\x71\x01\x38\xd6\xee\xc2\x33\xad\x31\x27\xb6\xce\xb8\xa6\xf2\x23\xb6\xc2\x49\x08\x08\x0c\xd8\x2a\x04\x51\x84\x1c\x0f\xb0\x82\x2d\xba\xed\x56\x5c\xd7\x65\x58\xe9\x64\x71\x0b\xd8\x11\x45\x4d\x13\x2a\x9d\x19\xa0\xc5\xfb\x38\x08\xbc\x60\x9e\x54\x37\xf1\x11\x70\xd9\x9f\xd2\x2d\xbc\xbc\x07\x42\x88\x67\x08\x2f\xf3\xad\x15\xab\x51\xb8\x5e\x24\x0a\x62\x15\x17\x87\xaa\x73\xf6\x4c\x80\x5a\x32\x5a\x10\x92\xd0\xeb\x6c\x4a\x98\xbc\x92\x59\xcd\x9b\xbe\x34\x1e\x4e\x81\x86\xfa\x4e\xa2\xe4\xd0\xe1\x65\x2a\xce\x4e\x67\x29\xe8\x2c\xf4\x60\x50\x71\xb0\x4e\x65\xb9\x5c\x78\x11\x55\x2c\xa8\x8e\xe1\x71\xa1\x8e\xf9\x42\x33\x08\xfd\x89\xea\x1d\x4c\x31\x59\x80\x6b\x68\xa0\x20\xaf\xba\xfc\x89\x95\x10\x79\xbd\xed\x54\x90\xaa\x05\xd6\xe9\x98\x75\x01\xbe\xaa\x39\x60\xb3\x10\xb4\xe4\x58\x12\xb1\x04\xa9\xf9\x4e\x96\x91\xef\x62\x12\xc6\x44\xb8\x98\x32\xf3\x6f\x6f\x47\x50\xe9\xe0\x90\xa7\xa5\x39\x34\xd2\x31\xcd\x80\xe7\x43\xf7\xf2\x79\x96\x1b\x6c\x66\xf8\xfe\xa6\x0a\x8e\x4f\x1f\x6d\xd0\x89\x7b\x17\xce\x02\xba\xb1\x0f\xb1\xe1\xe2\xb5\x8d\xe3\x3e\xd8\x68\x56\xb8\x65\xea\x29\xa0\x17\xfc\xb9\xf0\x91\x4e\x8d\xe8\xac\xae\xa9\x39\xcd\x9e\x09\x7b\x5a\x66\x6b\x95\x9b\x4e\x0c\xad\xdc\xc6\xde\xc0\x9a\x3a\xd1\xfb\x35\xaa\x06\x77\xe2\xfb\x06\x01\xd1\x15\xbd\xd7\x39\x0e\x8c\x22\xaa\x7c\xae\x0d\x01\x04\x0a\xdd\x41\xcb\x7c\xce\xda\xac\x1a\xd9\x72\x90\xa3\x6c\x88\x21\x5c\xa6\xc5\x3b\xbd\xe8\x59\xec\xcf\x3c\xdf\xe7\x28\x0c\xb5\xcf\xab\xfd\x00\x1d\x4f\xe7\xfc\xc6\x92\xb6\x49\xfb\x13\xba\xd9\x9d\xca\x30\xce\xb3\xd9\x18\x0f\xbc\x19\x43\x07\x71\x16\x08\x45\x90\x5e\xd6\x71\x1c\xa4\x67\xa1\x45\x0f\xca\x08\x1a\x12\x56\x6b\x7a\x6f\x8f\x08\x0a\x43\xe8\x3e\xac\x90\xf6\x7d\xed\xb2\x36\xe0\x46\x5a\xbe\x15\xe0\xc4\xd9\x19\x19\x21\x1f\x08\xec\x8d\xef\x0a\xe1\x88\x1b\xe1\x24\xec\x96\xe1\xf0\xf1\xe9\x68\xd2\x06\xbd\xc5\x50\x62\xe8\xb4\x84\x11\x57\x37\x52\x03\x25\x5e\xf9\x52\x1d\x9c\x78\xe5\xcb\x95\x90\xe2\x95\x6f\x56\xc3\x8a\x57\xbe\x5a\x05\x2d\x5e\xf9\x62\x25\xbc\x78\xe5\x9b\x7a\x88\xf1\x6a\xf2\xe8\x60\xc6\xab\x49\xb3\x83\x1a\xaf\xd8\x78\xa3\x71\xd7\x8d\x77\x7f\x51\xc5\xd5\x87\x41\xbf\xaa\xff\x16\xec\x22\xdc\x18\xdd\x9f\x65\x44\xb4\x57\x65\x1b\xd1\x76\x5b\x63\xdc\x78\x5f\xa1\xf1\x36\x37\x7d\xb6\x34\x72\x62\x18\xc1\xc2\x74\x2a\x86\xa8\x32\x7b\x36\x5f\x24\x7d\xf9\xd8\xb3\xfd\xb8\x91\x97\x3d\x04\x73\xf8\x68\x0a\x08\xd3\xe4\xb7\x9a\x40\x74\xf0\xe2\xe5\xd7\xb3\x9f\xde\x35\x03\x9b\x17\x15\x93\xd8\xe8\x43\x80\x49\xf4\x88\xc9\xcc\x54\x86\x7c\xe1\x3e\xa1\xcc\xe8\xa6\x2f\x90\x54\xb8\xc8\x4a\x4d\xc2\xbc\xbd\x98\xfd\x99\x5a\x1a\x4c\x14\x9c\x79\xd1\xd2\x93\x35\xb8\xdc\x13\x9f\xf5\xf6\x5f\xd3\xf1\x21\xc0\x4f\x73\x4f\x67\x1b\x30\x2f\xcd\xd2\xc5\xa5\x1e\xa3\xa8\x8e\x2b\xcf\x9b\x2e\xb0\xc0\xf5\x53\x17\x7c\x8e\x0a\xfa\x31\xe5\x5f\xaa\x1b\x4d\xe3\x7b\x01\x1d\x2f\xa5\xba\xc2\xfc\xb6\xa1\x8a\x9d\x3b\xbd\x4b\xa5\xdd\xd4\x35\x72\x87\x3c\x6b\xe4\xb1\xb4\x5b\x53\xe2\x66\xf6\x59\x22\x22\x36\xe5\x70\xe1\x7f\x55\xdd\x12\x9a\xf7\x7e\x8e\x3d\x84\x3d\xb2\xae\x19\x41\x28\x1e\x2b\x8e\xa2\xc5\xb5\x91\x37\x14\x80\x25\x8c\x42\xe0\xc0\xec\x7e\x18\xad\x23\x02\x97\x1c\xd7\x29\xf6\xdd\x8b\x05\x5a\xbd\x4d\x9e\x6a\x14\xc3\x5d\x50\x9c\x54\x55\xf5\x04\xb9\xb4\x64\x48\x3b\xac\xa1\x43\x36\xfc\x2a\x9c\xc4\x0e\x4e\x27\xb3\x8c\xe2\xad\xdf\x64\x11\x03\x98\xad\x13\x2f\x2d\x77\x6e\xc9\xc6\x11\xf5\xdb\x7e\x0e\x07\x39\x2f\x1f\x22\x84\x49\x22\xc7\xc5\x9f\x67\x30\x72\x60\xe0\x72\x2b\xd7\x1c\x11\x94\xe6\x01\x29\x24\x08\x5b\x45\x72\x1b\xb9\x6f\xa5\xa6\xd2\xef\x0b\x2d\xb6\x9f\x0d\x86\x4e\xa9\x9c\x5a\x2b\x6a\xdd\xfe\x89\x9c\x1d\xa5\xfd\x9c\xca\xe9\x60\xbd\xaf\xd0\xb5\x9d\x85\xe7\xbb\x5b\x3e\xa3\x9f\xdf\x7c\x09\x86\xcf\x23\xb2\x3b\xa3\x37\x3f\xa3\xc5\x97\x35\x67\xb5\x74\x26\x61\x6f\xb9\x84\x6e\x5a\xfd\x7e\x77\x8c\xff\x69\x8e\xf1\xda\xd3\x54\x91\x34\xa5\x1e\x15\xc0\x30\x20\x8f\x95\x4a\x82\xef\x05\x57\x36\x41\xd9\x32\xfc\x2d\x86\xac\x76\x07\x46\x31\xa1\x0b\x51\x5c\xab\x2d\x55\xf5\xf4\x2f\x68\xfa\x36\x53\x24\xf2\x1a\x46\xc8\x3a\x55\x9f\xd5\x9f\xc5\x2d\x3d\x1a\xb0\x67\x15\xaf\x55\x17\x2e\x95\x2d\x06\x9a\x1e\xcb\x35\x0e\x3a\xc5\x50\xef\x14\xa9\x9d\x22\xb5\x53\xa4\x5a\x51\x6b\x3b\xee\xed\x73\xb0\xf6\x11\x50\x98\xab\x5b\x1f\x43\x6a\xef\xb6\xc2\x3d\xca\x7b\x7c\x75\xf1\xee\x6d\x5b\xc8\xd9\x2f\x11\x0a\xec\x6b\x0f\xae\xa0\xa4\xa3\xd0\x2f\x25\xaf\x4f\xbe\xf5\x66\xd2\xac\x5e\x96\x84\x18\xaa\xad\x8f\xbe\x67\xaf\xbc\xc0\x45\x2b\x3a\x7d\xe8\x83\x88\x64\x85\xb6\x0e\x2d\xd3\x61\x01\x65\xaa\xa0\xfe\x84\xec\xb2\xd4\x10\x1c\xd8\xcc\xf5\x79\x27\x7a\xb9\x42\x99\xbe\x05\x2d\x7d\xcb\xfa\xf9\xfe\xc7\x0f\x18\x3c\x7b\x33\xd9\xe9\xe7\x25\x91\x65\x66\x65\xd6\xef\xce\x7a\x56\xe3\x58\xd7\x22\x02\x10\x30\xa7\xbb\x73\x81\x7c\x3f\xf3\x41\x72\xfd\x4e\x5a\x6b\x2d\x43\xfe\xbe\x75\x85\x5f\x38\x0d\x6b\xf4\x9c\x04\xc1\xfb\x1b\x50\xfb\x77\x4a\xe7\x7d\x56\x3a\xab\x5a\x64\xc7\x07\x86\x41\x5b\x75\xd0\x89\x31\xbd\xb9\x9c\x73\xe1\x47\x55\xb9\x57\xe5\xa1\x74\x52\x0b\xe5\x96\x73\xba\xe2\xab\xed\x9a\xc3\x72\xa7\x63\x6f\x07\x6e\x7a\x54\x6d\xf5\xb4\xc5\xc3\x1f\x1e\xbd\xdd\xfb\xb8\x54\xe7\x86\xfe\x4d\x34\x58\xce\x04\x1d\xed\xf3\x3b\x31\x9d\xd2\xa3\x28\x9e\x06\xe0\xda\xe4\xce\xc8\x4c\x2e\xd0\xad\x27\xb4\x67\x95\x88\xad\xa8\x00\x37\xda\xb3\x46\xb9\xa6\x0a\x1b\x2d\xe5\x2d\x6d\x76\x43\xd6\x0a\x3e\xf4\xc9\xd7\x6c\x6b\x6d\x57\x93\x3a\x1b\x81\xf1\x2b\xff\xef\x6a\xde\x32\x28\xc3\x4d\xcb\xf7\x29\xc3\xdc\x5e\xa1\xa9\xf1\x1a\xc4\x81\xb3\x80\x91\x82\x7f\x2d\xa3\x5d\xf9\x35\x47\x11\x0f\x80\x30\x81\xee\x69\x4a\xea\x2c\x2e\x90\x57\x03\x95\x33\x6b\xea\x91\x3d\x14\x2d\x56\x45\x8d\xb2\x90\xb8\x10\xcc\xbd\x40\xc4\x78\x94\xe2\xe2\x22\x9e\xc2\x12\x72\x9d\x4e\xd7\x43\x12\xed\x08\xe6\x90\xe5\xbc\x68\x64\xa1\x3a\x40\xae\x32\x2e\xaf\x56\x8c\x67\x71\x7b\x3c\x5e\x87\xb6\xd6\x5e\x72\x9b\x2b\x8f\x2c\xec\x19\x42\xe4\xd6\xa2\xf8\xc6\xf7\x34\x8a\x4f\xb1\xe1\xa5\xc8\xa2\xfd\xc7\xa7\xa3\x51\xbb\xc0\x22\xb3\xaf\xf0\xab\xb1\x60\x95\x3d\x2d\x47\x60\x89\xef\xfb\xa5\x9b\x68\xb4\x27\xd2\x1d\x14\x63\xb2\x3e\x7d\x32\x43\x8c\x98\xed\x29\x55\xc1\x14\x94\x4c\xdc\x0a\xcd\x21\x3f\x76\xf4\xa6\xf4\x3e\xac\xa2\x77\x24\xe2\x23\x95\x14\xbf\x48\x7f\xdc\xd1\xbc\x1d\xcd\x8f\xaa\x68\x9e\xf8\x7c\x14\x14\x4f\x70\xb8\x76\xf4\x6e\x47\xef\xe3\x2a\x7a\xcb\x57\x5d\x05\xcd\xcf\xa5\x9f\xdb\xd0\x5d\x19\x8f\x9b\xc0\x92\x56\x17\xea\xd3\x86\x74\x4f\x24\x65\xeb\x42\xdc\x09\xef\x36\xb6\x77\x7c\x4f\x63\x7b\x2b\xf9\x3f\x9e\x14\x8f\x63\xa9\xa4\x1c\x73\x1a\x6a\xaa\xc9\x55\x41\x2a\xe5\x02\x7e\xf9\xe5\x19\x05\xa7\x2c\x56\x33\x4b\xe9\xc9\x22\x7d\xab\xc3\x37\xb3\x7b\xae\x55\x7c\x53\x6b\x12\x6c\x91\x1a\x54\x84\x53\x6a\x60\x02\xe3\x15\x37\xb8\x6a\x57\xe1\xc5\x65\x37\x3f\xc5\xeb\x92\x76\x5c\x9d\x4f\xa9\xeb\x3f\x6b\xc0\x0e\xb2\x24\x70\x7d\xe1\xca\x0c\x53\x34\x22\x74\x19\x9c\x90\x82\xe9\xea\xff\xfe\xef\xff\x93\x7f\x0e\x06\x6e\xf9\x29\x03\xcd\x72\x56\xa0\x8a\x7b\x86\x0a\xcb\x51\x65\xe9\xe9\x5d\x18\x8f\x98\xd0\x82\xd7\x85\x3d\x18\x0e\xe8\x97\x7d\xee\x41\xde\x62\x3f\x7b\x70\x52\x8a\xb5\xff\xf4\x29\xbb\x86\xc8\xec\xa6\x7d\x7a\x48\xab\x75\x18\xff\xb3\x02\xeb\xef\x96\xa9\x1e\x24\xc8\x36\x32\xd5\xe9\x97\xfd\x52\x9d\xb6\xd8\x13\xd5\x27\x4d\xa9\x9e\x4c\x4d\x45\xf1\xff\x68\x4d\xf1\x43\xcb\x8c\xfd\xba\x7d\xcd\xef\x9c\xba\xf4\x24\x9d\xb5\xbb\x29\x0c\x5c\x43\x87\x63\x8d\x18\x82\xcb\x90\xac\xed\x65\xea\x9e\xd1\x39\x01\x34\xf9\xf3\xb9\xd7\x99\xb9\x24\x29\x6a\x9e\x66\x03\xe5\x0c\x26\x15\x26\xfe\xb0\x41\x07\x05\x4f\xc5\x5b\x64\x60\xb8\x04\x1e\x4b\xb1\xf7\xbd\x6b\xfa\x9f\x2f\x68\x6a\xf8\xa2\x37\x45\x4e\x7d\xbd\x3a\x51\x61\x8f\xeb\xc3\xd6\x5a\x58\xc6\x7d\x19\xe5\x84\x13\x6f\xab\x16\x39\x6f\x75\x70\xe5\x3f\x72\x9c\xc6\xbe\x4d\xc9\x3a\x55\xf0\x29\xde\x1d\x14\x5a\x07\x44\x8a\x46\x6f\x56\x6a\x15\x8d\xd1\x28\x92\x63\xba\xe0\x94\xe5\x4e\xd1\x4a\x60\xd2\xd2\xae\xaa\x68\xce\x85\x1c\x77\xa6\xe0\x95\xab\x47\x5c\xb8\x0d\x24\x0a\xb3\x45\x26\x51\xc6\xdb\x56\x78\x49\xa9\x47\xbb\x39\x06\x45\x9d\x24\xd9\x5e\xcc\x44\xb2\xf9\xfb\x94\x26\xec\x77\x92\x2b\x32\xbc\x5d\xc9\x32\xbf\x9e\xbc\x71\x6e\x7e\x51\xdb\xfa\xd5\xb5\xb7\x25\xe1\xc2\x6f\x2f\x7c\x52\x67\xb9\x72\xc8\x2d\xc5\x4c\x5b\xe0\x0a\x4d\xc7\x8a\x2c\x3f\x81\xa8\x72\x1b\x78\x15\xdd\xf2\xe5\x71\x2e\xac\xa1\xb0\x3f\x47\x5d\x67\x7a\xe2\xb0\x4c\x4a\xcb\x7c\xcd\x9e\x4c\x11\xf2\xe5\x1b\x4a\xf6\xba\x22\xa8\xb6\x12\x28\x7d\x0a\xdc\x39\x93\x9f\xab\x85\x47\xe0\x46\xfc\x88\xe2\x29\x13\xb1\x62\x7c\xa6\x31\x8d\x97\x54\x69\xf6\xe1\x8c\x2f\x9c\x9c\x3c\xd5\xb6\x1b\x2d\x10\x26\x2f\x5d\x9d\x57\xbd\xe8\xa3\xd1\xb6\xd3\xb9\xb8\x7a\x7d\x24\x4b\x86\x3b\x27\x10\x11\x6d\xe2\x2d\xa1\x41\x10\xf2\x89\x17\x26\xb2\x15\x60\x0f\x88\x22\x03\x12\x90\xb6\xa8\xd7\x4e\xa2\x0d\x67\xa0\x06\xc7\x2f\xad\xb7\x25\xe2\x31\xa4\x18\x2d\xed\x00\xad\x36\xed\xb4\xe1\x0d\xb7\x43\xb0\x72\xdf\xfb\xad\x76\xe5\x8b\x70\x24\x14\x13\xaa\x7f\xbb\x86\x59\xbb\x30\x99\x6d\xfb\x94\xdf\x94\xf4\xe4\x2f\x07\x8c\x68\xdb\xd2\x9b\x0c\xaa\x62\x6a\x2a\x1b\xc6\xf0\xb7\xd8\xc3\x30\x3a\xc7\x68\x89\x72\x38\x6c\x8d\x96\x7c\xf3\xbc\x6c\x01\x8b\x42\x3f\x46\x4b\xe0\xfb\x12\x18\xa3\x0a\x8e\x88\x0d\x07\xb6\x49\xd6\x2e\xe6\x5d\xab\x9b\x68\x86\x79\x27\x5e\x6d\x9a\x0b\xcd\x89\x07\x8d\x53\x10\xb4\x32\xa7\x36\xce\xb6\x6f\xbd\xd4\x99\xcb\x5b\xf2\xac\x2a\xfc\xd6\x0c\xaf\x2a\x5d\x0a\xb6\x0b\x09\xf0\x7c\x29\x0c\x5a\xd2\x4c\x3e\xd7\x9f\xf2\x95\x86\xcf\xbc\xd1\x6c\x09\x09\xf6\x1c\xc5\x62\x2e\x2f\x5b\x2f\xba\x58\xa0\x95\x17\xcc\xb3\xce\xce\xc4\x38\xdb\xa1\x29\xf1\x9e\x89\x5c\xd5\xab\x52\x34\x65\xef\xc8\x21\xe2\xed\xe2\x87\x6a\x30\x16\x36\xe4\xb0\xce\xac\x2a\x1a\x01\x66\x3a\xd4\xd1\x58\x75\x12\xd1\xe7\x26\x7a\x5c\x4e\x0e\x32\x67\x56\xf3\xa0\x0c\x34\xd7\x42\x9d\xa9\xe4\xad\x65\xbe\xf0\x18\xa6\x27\x7d\x46\xa9\xc2\x64\xcb\x93\x61\x52\x19\x3c\x35\xc1\x00\x81\x2b\xa3\x1d\x7d\x1b\x97\x8b\xd2\x5d\xa0\xcf\x8b\x86\x2a\x31\x64\xbb\x37\x8d\xb7\xeb\xe7\x27\xe3\xe9\xbe\xa6\x9a\x80\x94\x28\xd2\xe0\xc6\xb1\x00\xd1\x79\xa1\xea\x40\x97\x92\x7d\x55\x80\x5e\x1d\xad\x1b\xcd\x2e\x0c\xe9\xe0\x8d\x64\xf4\xfd\x1d\x00\x4a\xb1\x9f\x83\xab\x13\x19\x82\x4d\x8b\x1d\x96\xb6\x73\x05\x42\x1d\xc9\x27\xfc\x30\x61\xda\x2c\x04\xb3\x5e\x54\x6e\x71\xab\x96\x77\x53\x9f\x7b\x55\x95\x96\xb4\xd5\xbd\xfa\x81\x90\x5f\xdf\xee\x7f\x79\x56\x5d\xf9\xa3\x73\xf4\x9f\x2a\x74\x73\xc3\x2d\xf5\x9e\x91\xd0\x38\x29\x9c\x01\xaa\x25\xd4\x4b\x14\x21\xdf\x42\x39\x8e\x6d\x1e\x48\x58\xd9\x68\x4d\x50\x61\x0f\xf1\x7c\x99\xd7\xf2\x24\xaf\xfd\xdc\xbb\xd0\xbe\xfb\x0a\xd0\x57\xb9\xa7\xa5\xa8\x92\x71\xb7\x20\xbf\x0d\x41\xfb\xb4\xb1\x25\x7a\xc8\x3e\xed\x2b\xf5\x80\x7d\xda\x57\x6b\xe0\xfa\xb4\xef\xd5\x81\xf5\x69\x5f\xac\x86\xea\xd3\xbe\x56\x03\xd4\xa7\x9f\x9f\xef\x89\xdb\x53\xbb\xd7\xf4\x30\x7d\x7a\x92\xec\x40\xfa\x5a\x6f\xbe\xf1\x5e\xb7\xcd\xd7\x05\xb8\xaf\x14\xd8\x53\x86\xf0\xd3\x67\xd5\xcd\x11\x41\x27\x52\xab\xc5\xf7\x5b\x84\xf7\xd4\x63\x00\xb6\xc9\xb3\xdd\xd4\xf1\xdd\x87\xeb\x3b\x77\x42\x35\xf2\xd2\xb5\xf1\x7d\xcb\x80\xb3\x0c\x52\x7e\x0a\x61\x60\x30\x25\x50\x5d\xd3\xa6\x91\xf3\x5b\x59\x8f\xae\x0f\x1d\xa0\x03\x64\x71\x9d\x21\x41\x4d\xb7\xbc\x1d\xe1\x48\x03\xae\x51\x02\xd5\x48\x51\x30\x06\x79\x15\xb7\x36\xb9\x56\xe2\xe7\x47\x0f\xae\x28\x5f\x14\x86\x53\x9d\x16\xa6\x2a\x78\xcc\x6e\x2f\x31\x06\x3e\x4b\xb3\xc8\x6f\xdb\xc6\x0c\xd0\x55\xe3\xd5\x0b\xde\xae\x98\x9a\xb7\x1c\x2f\xa1\x96\x93\x7d\x5d\x6b\xd2\xdc\xc3\xad\xde\x65\xae\x7f\xbe\x58\x4d\x97\x3f\x7b\xea\xbb\x0c\xa0\xd2\x7a\x01\x30\xc3\xe4\x07\x24\x5e\x52\x65\x2a\x70\xe1\x8d\xd2\x0e\xc1\x34\x6d\xe0\x38\x08\xbb\xea\xec\x9d\x2b\xb8\xe6\x66\x7b\x4c\x9e\xde\x84\x20\x70\x79\x55\x9d\xe0\x92\xdb\xd5\x12\x80\x19\x80\x31\x58\x9b\x85\x2c\xcc\xc4\x21\xe6\xa5\xb6\x6c\x2f\x4a\x1b\xa9\x8d\x03\x0d\xa9\xb6\x12\xc9\x40\x9e\x77\xab\x7b\x83\xde\x75\x6f\xd0\x59\xf7\x16\x0b\x4f\x3a\xf3\x1f\x9f\xee\x17\x42\xd9\xb8\x35\xff\x75\x52\xdc\x3b\x5f\xb9\x7a\xc4\x88\xff\x2e\xe4\xb9\x56\xa6\x83\x7c\x1f\x84\x11\x65\x30\x64\x0c\x69\x9c\xe5\x7e\x5b\x31\x30\x52\xac\x87\x11\xa0\x15\x06\xa1\xd2\xea\x93\x9f\x10\x4f\x9d\x5e\x80\xa8\x3e\x55\x2d\xa7\xfd\x24\x8f\x1b\x5c\x91\x56\xa9\xa6\x4d\xbc\xc7\xf9\x4b\x74\x89\xc8\x89\x73\x99\xdf\x66\x12\x24\xdb\xa6\x3e\xcc\xdc\x14\x53\xc1\x63\x12\x44\x80\x2f\xe7\xcd\x6d\xe0\x98\xac\xa4\x51\xa6\x8f\x7c\xab\x54\xca\xaa\x7e\x74\xa7\x91\xde\xb9\xa5\x4a\xf9\x4f\x6a\x43\x15\x26\xd9\x36\x89\x7f\xa3\xea\x45\xba\x97\xbd\x80\xea\x9c\x36\x3b\x1a\xf2\x11\x0a\x7d\x6e\xb3\x1c\x39\xe6\xa4\xdc\x4a\x69\xfd\x0e\x5b\x01\x8e\x17\xee\x2e\x49\x78\xa4\xcd\xfd\xca\xf6\x14\xe0\x62\x22\x82\x17\xbd\x4d\xed\x08\xb9\xb1\x7c\xfe\x9c\x14\x4c\xdb\x10\xa3\xa7\xc0\x00\x3a\x4d\xb5\x41\x63\x06\xdc\x5c\x79\xbb\xb7\xc8\xc8\x28\x51\xbb\x12\xbb\x0c\x4a\x7d\xcd\x53\x11\x2b\xfb\xf9\x14\x05\x04\x78\x01\xc4\xbd\x11\x4f\xde\x44\xe5\x8d\xd4\x42\x60\x55\x59\xd3\xb7\x65\x25\x00\xbd\x5b\x09\x40\x67\x2b\x41\x49\x4d\x98\xec\x17\xf4\x04\xdd\xa6\x2d\x91\xa7\x5e\x02\x68\x76\x9f\x66\xa1\xc9\x9a\x8a\x7a\xad\xf1\xed\x5a\xca\xc6\x2e\xc8\x76\x91\x15\xa4\xfe\xc5\x8c\x42\xdf\x23\x0c\xa2\xab\x22\x85\x49\xec\x53\xa4\x0e\xca\xf7\xe1\x1c\x06\x6e\xb5\xcb\x89\x9b\x2d\x5c\x40\x40\x9b\x5a\x9f\xbe\xa7\x3d\x2a\x93\x44\x27\xf6\x5d\x9a\xbd\x5b\x38\x3a\xb3\xba\x7e\xfc\x61\x1e\x62\x25\x95\xa2\x07\x2c\x62\xee\x4c\x28\xfd\xc9\xcf\x99\x1a\x1e\xd9\xfc\x09\x29\x54\xad\xba\x07\x5e\x53\x53\x12\xd2\xac\x11\x66\x6b\xa8\x3d\xa3\x1b\x69\x08\x0e\xf2\x11\xb6\xa3\x15\x20\xce\xa2\xa4\x28\x94\x08\xa2\xf9\xf2\x88\x99\xa7\x1c\xc0\x22\x4f\x79\x5b\x36\x37\x2e\xed\xe5\x6a\xc7\xe5\xc7\x5b\x61\x96\xd4\xc6\xbf\x09\x7a\x64\x01\x7d\x05\x32\xe9\x43\xac\xeb\xdb\xf6\x13\xc5\xbd\x4e\xe1\xc9\xb1\xbe\x5d\xe2\x55\x9d\xc4\x9c\x58\x7b\xad\xa5\xac\xd6\x12\xd7\x2c\x82\xe4\xb6\x0c\x01\x92\x28\xec\xeb\xf6\x9f\x43\x8e\xdc\xaa\x05\x00\x7e\x38\x7f\xf3\x73\xf4\x01\x7c\x3b\xde\xcc\xcc\xbb\xd2\xdc\x8d\xd9\xb9\x66\xb0\xd9\xa0\x5a\x57\xb5\x17\xb1\xe0\x3d\xbc\xcc\xc5\x5b\xb5\x72\x1e\x7e\xc7\x0e\x43\x69\xbf\xc8\x15\xbe\x1e\x9f\x1e\xb7\xf1\x55\x98\x7d\xea\x6f\xdf\x4a\xde\xbe\x9a\x74\x23\x45\xea\x76\xff\x70\x20\x3b\x82\xeb\xbd\xda\x32\xc1\x1d\x14\x07\xba\x34\xd1\xd3\xe4\xb7\x1d\xc9\x5b\x92\x5c\x05\x4f\xc0\x48\x2e\x5d\x0d\xcc\xdf\x62\x18\x43\xf7\x1d\xbe\x20\x00\x13\x2f\x98\x0b\x4b\x4f\x82\x0b\xa1\x64\x49\xc9\x9e\xb5\x63\x4f\x07\xf6\x94\x5c\xcd\xf2\x8e\xc0\x30\x82\xf8\x1a\xba\xcc\xf1\xaf\x64\xc2\x7b\xf1\x84\x21\x1e\xd9\xd1\xbf\x25\xfd\x4b\x60\x5a\x2a\xfa\x27\x41\x14\xd5\x2c\xc8\x9e\xda\x71\xa1\x25\x17\x0e\x9a\x70\xe1\x69\xb8\x80\x4b\x88\x81\x7f\xe6\x45\x57\x75\xcc\x48\x9e\xa9\xab\xf3\xbf\x8b\x84\x51\x73\xe4\xa8\x83\x56\x29\x0c\xa3\x59\x83\xf9\xf8\x97\x2c\xf0\xb7\x3a\xe8\xa5\x1e\xcd\x46\x46\xf8\xbf\xdd\xa0\x17\x6d\x48\xc6\x2d\xbb\xdd\x0b\x4c\xe9\xed\xc6\xcd\x01\xbd\xb7\x7a\xd7\x5e\x8e\x26\x63\xe7\xf8\xc7\xe3\xb6\xb8\xb0\x87\x96\xb9\x18\xe9\x53\xf7\x55\x77\x6c\xb1\x20\x19\x38\x03\x5f\x3d\x69\xf2\x7e\x11\x87\xb9\x22\x72\xa3\x99\x6b\x2e\x73\x00\x19\x04\xcc\x0b\x49\x80\x9a\x8c\xbf\x91\xe2\x21\x9d\xd9\xcb\x54\x81\xd7\x2a\x9d\x65\x99\xd1\x51\xd5\xb6\xe9\x72\x7b\x42\xce\x86\x57\x1b\x34\x94\x6c\xed\x15\xb2\x23\x02\x43\x3b\x49\xef\x4b\xf6\xb6\xe7\xfa\xf0\x92\xc7\xb3\x39\xac\xfe\x67\xf2\x07\x0a\x66\x1e\x5e\xe6\xff\x62\x4a\x63\x86\x80\x00\x56\xc0\xa3\x4a\xe7\xa9\xf4\x2b\x17\x11\xfc\x0b\x76\x08\x5c\x10\xa6\xb2\x8a\xe2\xa2\x96\xf9\x0b\x8c\x2c\x43\x7c\x79\x82\x21\x13\x8a\x51\x2c\x3e\xac\x00\x95\x88\x88\x55\x32\x4f\x4b\x9e\xff\x23\xad\xbb\x4a\x50\xf8\x4a\xb8\xb2\xa4\x14\x42\x75\x29\x57\xf1\x6c\x2b\xb1\x52\x0d\x08\x73\x0f\x48\xc9\x83\x59\x8a\xb4\xe4\xdf\x56\x10\x13\x60\xa2\xa2\x26\xc0\xa4\x39\x39\xc5\xc3\x2d\xe9\x79\x07\x02\x97\x0a\x86\x9e\x44\x2d\xc4\x1e\x72\x3d\xe7\x5e\xd4\xa4\xfb\xf8\xfe\xdc\xf9\x32\x74\xd4\x48\xcd\xdf\x77\xcd\x8b\xaa\x31\xee\x6a\xd2\xed\x6a\xd2\xed\x6a\xd2\xed\x6a\xd2\xed\xca\x83\xec\x6a\xd2\x7d\xfb\x35\xe9\xee\x2a\x11\x36\xa7\xf8\xf4\xab\x4c\x6d\x59\x8d\x0a\xdf\x0e\x5f\xae\xce\x9f\x47\x3b\x35\x6a\x93\xd2\x61\x77\xaa\x40\xf5\x5d\x5d\x2c\x5d\x89\xba\xfc\xfb\x46\xa8\x79\x25\xb4\x1b\x86\x3f\x96\x64\x2f\x35\x42\xd2\x33\x67\x08\x3b\x90\xa3\x7a\x9a\x25\x10\xbd\x67\xf4\x47\x23\xfd\x75\x57\x03\x6d\x57\x03\xed\xbb\x50\x72\x36\x1a\xed\x29\x56\xac\x1a\x5d\xb9\x4f\x89\x89\x42\x24\xa4\xb0\x37\xe6\x45\x08\x9d\xe2\x14\xda\xa0\xcb\xec\x6a\xb5\xdd\xdf\x5a\x6d\x82\xd9\x6a\xbd\xe6\x2f\x2d\xf5\x9a\x08\xe2\x6b\xcf\xd9\xb6\x2d\xfe\xc3\xc7\xbd\xe7\xef\x86\x07\x68\xa7\xd6\x6c\x6e\x1d\xea\xaf\x2e\xea\xce\xf4\xb3\x3b\x93\xff\x14\x67\xf2\xf7\x67\x78\x50\x80\x37\xdf\xb9\x94\xd8\x99\x44\xee\x8f\x49\x44\x1c\xf3\xfd\xd8\x42\x12\x19\xb2\x55\x95\xe1\x5d\x84\xae\x7e\xfc\xf1\xa7\x78\xa7\x32\xec\x54\x86\x9d\xca\xb0\x53\x19\x76\x2a\xc3\xce\x57\xf1\x2d\x1e\xcc\x6c\x73\x6d\x7c\x2e\xb3\x00\xc7\xad\x9e\xc7\xc1\xf9\x33\xf7\xfd\x4f\x3f\x1c\x36\x3b\x8f\x0f\x2d\x93\xb8\xb9\x4d\xae\xf2\x33\x27\x92\xbd\x0c\xd3\xe4\x45\x76\x88\x3d\x01\x0a\xa1\xf1\x12\xfb\xc0\x0b\x58\xd9\x05\xc5\x49\x5e\x96\x1a\x99\xa4\x68\x86\x71\x64\x29\xe6\xd0\x2a\x52\xef\x16\xa2\xf3\xca\xd2\xbe\x3c\xc6\x7c\x6b\xae\x17\x85\x3e\x58\x5f\x16\x0e\xb0\x76\x8d\xa8\x0e\x9f\x66\xa4\x32\x35\xa0\x62\x69\x88\x6e\x92\x6f\xd3\x2c\x32\xb0\xa2\x81\x0d\x82\xe5\x6c\xbb\x59\x34\x58\x83\x15\xd1\x04\xc3\xc3\x6c\x44\xa1\xce\xa0\x1d\x12\x8d\xba\x23\x76\x98\x1b\x20\x75\x48\x27\x43\x3f\x30\x1d\xe6\xfd\x81\xe7\x30\x7b\x85\xe5\xe8\x44\xa9\x44\x85\x29\xcb\x82\xdb\x88\x5c\xc4\x68\xb5\xf1\xd9\x95\x16\x68\xd9\xea\xf9\xf5\xe3\xcd\xc7\xd9\xf1\xec\xc5\x9b\xc6\xe7\x57\xf3\xac\x69\x23\xc1\x3f\x32\xc4\x3e\x67\x33\xf1\x52\x48\x48\x59\x50\x08\xd7\xa1\xf1\x6f\xb2\x4c\xcb\x4a\xd8\xf0\x32\xb1\x2a\x80\x80\x3a\x77\xb2\x1c\x18\x1e\x02\x0f\x1b\x8a\x8d\x91\xbf\x67\xe9\x3d\xd3\x10\xcb\x75\xdb\x2e\x78\x2a\xb6\xce\x1d\xad\x1f\x51\x52\xa9\x49\xd0\xa6\x30\x9e\x2a\xb7\x97\x54\xd3\x47\x74\xae\x77\x75\xa9\x34\xf9\xca\x5a\x48\xfd\x12\x87\xd5\x1c\x52\x82\x08\xd7\xb5\x24\x2a\x31\xb9\x80\xe4\xa0\x29\x94\x25\x97\x1a\x16\x39\xaa\xc2\xa8\x2f\x9e\x33\x59\x93\xae\x37\x9b\x35\x85\xf4\x4c\x82\x0f\x54\xb5\x3d\xb2\xe8\x83\x94\xe3\x54\x14\x00\x87\x18\x4d\xca\x7e\x88\x92\x1f\x67\x7c\x34\x19\x41\xc6\x0c\x17\x31\x98\x43\x71\xd6\x37\x42\xd3\x3c\x65\x6f\x24\xfa\x57\xee\xfd\x0a\xaa\xb5\x8d\xb1\x6f\x56\x73\xab\x78\x34\xd1\xb1\x44\x0d\x4e\xa6\x6a\xfe\x15\x50\xca\x36\x2f\x35\x91\xc2\x33\xb8\x00\x5f\xa9\x37\x86\x74\x17\x63\x8b\x26\x3d\xee\xf8\x5f\x74\x4d\x4d\x51\x24\xc5\x81\x96\x16\x59\xb6\xc1\xf9\x83\x5a\x37\xf2\x5d\x96\x57\x10\xa3\xec\xeb\xa4\x8b\xec\x88\x60\x08\xb6\x6d\x41\xbd\x7a\xff\xf5\xd9\x59\x7c\xf3\x55\x9d\x00\x85\xa1\x83\xb0\xba\xaa\x62\xae\x42\x07\x08\x02\x44\x1f\x70\xc5\xc9\xc5\x2d\x42\x52\xed\xf9\x84\x78\xea\xea\xf3\x45\x4c\x3a\xca\x1e\x6e\x6a\x5a\x9d\x01\x52\x5f\xdf\xce\x2c\x43\x30\xe5\x32\xb2\x96\x90\x9d\xb8\x01\x22\xda\xca\xc6\x79\xa1\xca\xc4\x6d\x36\x9e\xd6\xd5\xe3\x9a\xae\x4d\x2b\xb7\x01\xeb\xc6\x8f\xd8\x82\xa8\xdd\x74\xe9\x68\x93\x7d\x97\x0d\x3f\xb7\xf5\xf2\x73\xeb\x69\xd7\x8d\x6e\x69\xdb\x25\xdb\x65\xb3\xed\x17\xa1\x80\xe1\x87\xc1\x6d\x57\x48\x5e\xff\x18\xef\x2f\x7e\x79\x0d\x9b\x29\x9a\x49\x59\xaa\xeb\xb5\x4d\xb5\xa1\xa5\x97\xf7\x31\x70\x84\x2a\xcb\x44\x61\xaa\x4d\x8a\x7b\x43\x84\x82\x0b\x82\x53\x0b\x7e\x3e\x28\x7f\xc9\x14\x2b\x93\x2c\xe0\x92\xfd\x17\x4c\x2f\xd8\xb9\x68\xd2\xc5\xf6\x96\xe9\x98\xcc\xee\x02\x81\xfb\x2e\xf0\xf9\x3e\xfe\x02\xae\x01\x2f\x11\xcc\xaf\x9f\x0b\xcf\xa6\xbf\xdb\x88\x3e\x60\x8d\xd9\xf2\x4d\xee\x29\x9a\xab\xca\xe6\xab\x22\xe3\xe2\x46\xab\x41\xba\x6d\x6f\x77\x31\x7c\x3d\x7c\xf6\x32\x3c\x5b\xfc\xb3\xf1\xad\x23\xba\x9e\xe7\x24\x05\x46\x2c\x92\xd5\x5b\x32\x6c\xa3\x7c\x95\x4e\x1f\xba\xd3\xb5\x5c\xaa\x33\x43\x53\x63\x6e\x20\x3b\x51\x7f\xa0\xcf\xfa\xe0\xc6\xb2\x22\x84\x5c\xf6\x92\x0b\x23\xa7\xea\x9d\x12\x64\x5c\x62\x13\xe1\x3e\x27\xc9\x10\xc6\x81\xa3\x3b\x0c\xeb\x73\x41\xf1\x4b\x52\x6e\x75\x0a\xee\x61\xbe\xb0\x75\x93\x31\xb4\x9c\x65\x59\xf1\xca\x57\xd2\xae\x33\xa6\x98\xd9\x64\x72\x2f\x6e\x64\x14\xf9\xa7\x0d\x6e\xbc\xc8\x60\x8b\x33\x32\x30\x55\x28\x8d\x19\x46\xcb\x9c\xa5\xec\xe6\x3d\x57\x81\xcd\x99\x87\x23\xf2\x4e\x9c\x30\x79\xf5\x99\x20\xf5\x2b\x3e\xd0\xbc\x61\xa5\x47\x2b\x08\x5c\xe3\x97\x26\xe3\x58\xb7\x1f\xc7\xba\x76\x1c\x83\x56\xe6\x11\x69\xb1\xcc\x22\x4d\x0a\x55\x7a\x52\x07\x10\xe0\xe7\x18\xb8\xac\x76\x8a\xbc\x17\x6f\x46\xa6\x65\x0e\xcd\xe4\xaf\xb1\xfc\xd7\x3a\xf7\xdb\x9a\xfe\x36\x32\x95\x80\x91\x63\x01\xf3\x9e\xd9\x81\x4b\xeb\x75\x4c\x69\xe5\xfb\x89\x71\x5b\xeb\xe3\x64\x69\xc9\xaa\x9b\x25\x11\x76\x46\xfa\x25\x9a\xcd\x22\x48\x65\xfa\xf0\xff\x31\x35\x10\x8a\x75\xed\x09\x5c\xcd\x5c\x6b\xa3\xa1\xae\x3d\xed\x4d\xd8\xf1\xbd\xf0\x1c\xc8\x75\x83\x4a\xd3\x5e\x82\xe8\xaa\x6e\xda\x21\xd0\x94\x1e\xa2\x34\x4b\x68\x9e\x6b\x15\x60\x08\x4c\x1d\x82\x64\xb5\x27\x30\xed\x75\xae\xec\x72\x6d\xcf\xb1\xc7\x8a\x82\x44\x46\xfa\x29\x19\x03\xc1\x20\x88\x44\x5e\x32\x77\x09\xd0\x2f\xd8\xe1\x60\x72\x89\xb0\x3e\xb9\xf1\xa2\x77\x9c\xa4\x9f\x2d\xd3\x32\x86\x0f\x4d\xe5\x30\xcb\x83\x28\x21\x72\x82\xe0\x1a\x44\x86\x69\xa9\x57\x98\x72\xad\x6b\x29\x29\xe7\x09\xe4\x28\xc9\x7f\xa8\xa0\xe4\x21\xd5\x2a\x1c\xa2\x6c\x95\xb3\x41\xec\x9e\xdc\x76\x49\xff\x18\x59\xe6\xca\x73\xe9\xa8\xb2\x3e\x73\x44\x4a\xb7\xcb\x02\xb2\xab\xb5\xf4\xdc\x8d\xf2\x39\xb6\x28\x04\x8d\x62\xec\x3f\xf8\x37\x41\xa1\x64\x83\x59\xe6\xc3\xac\x2a\x2f\x5d\xa1\x36\xa7\x4a\xf9\x8d\x64\x6d\xa6\x6f\xb4\xa7\xc0\x02\x5d\x43\x6c\x13\x80\xe7\x90\xdc\x29\x25\x54\xeb\xa9\x76\x91\x33\x4d\x63\xe1\xb9\x2e\x0c\x58\x92\x0c\x87\x50\x95\xe7\x73\xc3\xe5\x3f\xfd\xa7\xc1\xa2\x1f\x5a\xc9\xf2\xbc\xc9\xaf\xfb\xc6\x8b\xbe\xd1\xa0\xd6\xad\x06\xd5\x6e\x27\x2a\x3d\x70\x95\x35\xfc\xd8\x4e\xb4\x45\xa5\x75\x96\x8e\x13\x80\x30\x54\x15\xf2\xf3\x22\x51\x39\x9f\x1e\x6b\x20\x29\xa2\xef\x05\x79\xec\xdf\x94\xed\x11\x59\x33\x8c\x15\xa6\x26\xf1\xe6\x2f\xd8\x57\x1a\x2d\x2d\xac\x3e\xf7\xda\xe3\xdb\x36\xf2\x82\x96\x80\x82\x75\xc2\x49\x75\x26\x09\xbd\x49\x82\x47\x4e\xaa\x64\xd4\xdd\xcb\x9b\x4c\xac\x04\x0a\x9c\xef\xea\xa3\xf8\xb9\x99\x6d\xb5\x6f\xe7\x4b\x76\x83\xd9\xf0\x22\x94\x2f\x13\xb3\xd5\xcb\xd0\x8b\x93\x59\x40\x96\x50\x1d\x42\x90\xa0\x82\xeb\x81\x79\x8a\x96\x29\x17\x3a\x08\x03\x02\xdd\x0b\x8e\x0d\x5b\x6f\x09\x1d\xed\x59\x63\x65\x12\x3b\x03\x64\xb5\x38\x82\x96\x95\x8c\x24\x31\xb0\xa6\x37\x88\x0c\xa4\xab\x50\x7e\xe7\x51\xfa\x29\x45\xd1\x4d\xed\xb3\x96\x89\x82\xf4\xc3\xa9\x5f\x30\xd1\x64\xf5\x34\xf4\x68\x54\x47\x16\xc7\x4d\x4c\x83\xba\x34\x0f\x2d\xe3\xaa\x22\x16\x62\x07\x08\xdb\x54\x25\xf4\x55\x56\x24\xa8\x80\xd9\x2e\xff\xad\xac\x91\xf1\xb9\xbe\x83\x9e\x66\x23\x76\xe5\xdd\x4c\xe7\x73\x06\x57\xde\x64\x0d\x24\xa1\x89\x9f\x72\x4b\xa8\xd8\x51\xa3\xd1\xf0\xc7\xee\xc4\x22\x97\x9f\x4e\x8f\x52\xa7\x48\x99\xed\x0a\x21\xe7\xad\xfb\xe5\xef\xab\x5f\xce\xda\xc2\x82\xf5\xef\x7c\x29\x2f\x18\x85\xed\x57\x46\xe2\xba\x5b\xc7\x48\x25\x13\x6f\x67\x79\x70\x31\xbc\xd5\xe5\x11\xcd\x8e\xc0\xeb\xf3\x9f\xd5\x06\xbb\x6a\xd4\xb8\x7a\x3e\xd3\xf9\xd9\x0c\x83\x31\x28\xd9\xfa\x4b\xdc\x56\xaa\x9a\xc5\xdc\xef\x32\x3c\x5c\x03\x17\xac\x91\x8d\x88\xbb\x5c\x13\x65\x34\x0e\x7c\x18\x45\xd2\x22\xe7\x45\xdf\x12\x0f\xbc\xc9\x72\xc8\xaf\xbd\xc8\xe3\xf1\x00\x79\x7d\xb4\x36\x9f\xbc\xac\xef\x66\x67\x1f\x97\xd3\xe2\x78\xcc\xbe\x28\x08\x7d\xf1\x1e\x97\x96\xa5\x8c\xf4\x5c\xc4\xe8\xd8\x2a\xd4\x55\x2b\x9a\xdb\x6e\x43\x65\xab\x58\xd6\x9b\x6f\x98\x10\xcc\xbd\x20\xa9\x0f\xb9\xcd\x2d\xf2\xfc\xb7\x93\xc3\x97\x60\x38\xdb\x4c\x82\xa6\x80\xfe\x8d\x4a\x8a\x26\xbb\x43\xa9\xbd\x31\xbb\x22\x8b\x53\x84\xd7\xa6\x65\x06\x1c\xb9\xce\x07\xfc\x4b\x30\x87\xaf\xbd\xe0\x2a\x2a\x25\x13\xb3\xf8\x38\xfa\x39\x35\x99\x45\x27\x84\x5b\xbb\xf8\x07\x9f\x55\x31\xd4\xaa\x7f\x19\x43\x52\x06\x41\x9e\x5f\x61\x12\x98\xf6\x4d\x2f\x1a\xe9\x8e\x49\xc7\x2a\xdc\x3e\x6a\x28\xc5\x50\xa4\x8b\x8c\x1a\x6b\x21\x9d\x86\xc2\xc9\xc5\x5a\x74\xa1\x53\xec\x3d\xa7\x5b\x6d\x75\x9c\x9c\x9f\x5c\x7a\x04\x9b\x8c\x93\xff\x45\xd7\xc5\x79\xee\xdd\x5b\x1a\x37\x5f\x80\xa5\x4e\x7b\x1b\x69\xf2\x02\x5f\xdd\xb9\xaf\x94\x6d\xc8\x40\x8a\x74\x81\xa7\xdf\x88\x05\x9f\xbd\x23\xaa\x77\x56\x2b\x9f\xbd\xeb\x1a\x19\x91\xfb\x14\x96\x32\xc3\xb6\x2b\x37\x4f\xd1\xeb\xf0\xc5\xe5\xf0\xb4\x46\x6e\x5a\xe6\x7f\x26\x80\xf9\x95\x02\x34\x5d\x6a\x15\xd1\xc1\xda\x88\x7b\x8e\xf0\x96\xa1\x22\xab\xdd\xc8\x39\x88\x84\xe2\xbe\xab\x82\x67\x53\x28\x33\x4d\xab\x0c\xdd\xe2\xb2\x92\x96\xc2\xe6\x2b\x4c\xd4\xa7\xd9\xea\x8a\xfa\x01\x84\xcf\x5e\xbd\xfa\x72\xd1\xf6\x24\xd6\x9e\xa4\x79\x3b\x48\x8a\xf5\xae\x3d\x02\x19\x11\x1e\xb1\x7f\x13\xcb\x87\x24\x8d\xab\x9f\xcf\x6e\xc9\x18\xad\xa4\xc8\x06\x85\x59\x47\x2f\x98\x79\x83\xf2\x40\xd3\x45\xcb\x6b\x4f\x54\xd5\x07\x6a\x54\x05\x48\x21\x06\xfb\x59\x97\x6c\xe8\x3d\xad\xc3\x94\x02\x5b\x2e\x70\xfd\xe2\xf5\x0f\xfb\x07\x8f\xde\x77\xd0\x0c\x35\x18\x94\x6a\xcc\xc9\x86\x35\xa0\x38\xb2\x7f\xca\x5b\x9e\xdd\xa8\xe4\x70\xb5\xd2\x79\x97\x87\x60\x8e\x9d\x7d\xad\x0e\x69\xc3\x6d\x77\x81\x1c\xbe\x79\x75\x1c\x8e\xe1\x44\x13\x92\x88\x56\xad\x0c\xc0\x5c\x6e\xe4\xa2\x11\xf9\x0f\xec\x8f\x3a\xb6\x8e\x53\xa3\xdc\x5d\x1b\xd9\x8a\x4c\xe9\x97\xcd\xf7\xc0\x88\xe2\x9c\x06\x67\x07\xe8\xe8\x63\x07\x23\x0a\xc1\xda\xfc\xaa\x4a\xeb\xc8\xad\x30\x67\xe3\x8b\xfb\x32\xf6\x89\x67\x47\xd0\x87\x0e\xb1\x5d\x8c\x42\x17\xad\xb6\x7d\x7d\xff\xf8\xeb\x99\xb7\xff\xdb\x07\x35\x16\x93\xe9\xba\x69\xb4\x61\x99\x3f\xfb\x96\x39\x05\x91\xe7\xc8\x53\x61\xbb\xef\x3f\x17\x08\x7b\x5f\x51\x40\x2f\xd4\x28\xf2\x04\x1c\xfc\x7f\xa6\x9e\x8f\xff\x94\x5c\x1f\x26\x2b\x5e\xdd\xa3\x87\x40\x61\x8f\x6d\xe3\xed\x70\x40\x48\x62\xac\xb8\x64\x35\x71\x65\x54\x8e\x41\xf6\x51\xa8\x85\x51\xba\xb6\x0f\x52\xdb\xff\x25\xf6\xe6\x73\x9e\x02\xf4\x29\x97\x5d\x91\xd0\xdc\x26\xc9\x13\x2c\x91\x82\x9b\x83\xae\xe0\x5a\xf0\x43\x07\xe7\x80\x42\x18\xbc\x0b\x4e\x30\x46\xab\x33\xf1\x64\x22\xfc\xa4\x4b\x25\x65\x67\xc5\x50\x6b\x6d\xda\xc5\x41\xda\x95\xde\x63\x61\xa8\xf3\xb5\x26\xba\x82\xc9\x88\xed\x23\xbe\xb6\x1a\x59\x8d\x2a\xfc\xd4\x65\x20\x4e\xbf\x90\xaa\x51\x2a\xcb\x9a\x04\xa7\x29\x87\xa1\x29\xe8\xda\x32\x5a\xbc\x8b\x1b\xbb\x44\x72\xcf\x41\x81\x01\xa9\x08\xb0\x43\xb4\x82\x38\x91\x3f\x22\x4d\x91\xfe\xac\x0a\xdc\xd2\x47\xd3\x29\x56\xe9\x69\x62\xc4\xd6\xae\xd2\x34\x62\xb9\xc5\xaa\x8a\x7d\x55\xec\x2b\x15\xcb\x53\x74\x63\x56\x56\x76\x66\xf6\xe2\xb4\xcb\x5c\x82\x02\xd7\x06\x5a\xd6\x79\x56\x11\x38\x15\x8b\xec\x67\x02\xa6\x5e\xe0\xc2\x1b\x39\xd2\x0f\x05\xf5\x1b\x91\x60\x70\x0d\x71\x04\x5f\x7b\xdc\x3c\x24\xee\xdf\x6a\x73\x76\x71\x84\x6c\xa7\xe8\x21\xe0\xa5\x47\xbd\x20\x8c\xf3\x41\x48\xd2\x80\xed\x2c\x36\x71\x01\x9d\x2b\xe8\x66\xb1\xc0\x04\x78\x41\x24\x15\xcb\x16\xd4\x2b\x2e\x7d\x79\xc0\xc2\xfa\x9f\x66\x5c\xe9\x26\xce\xbd\xb0\xaa\x29\xb3\xe1\xad\x43\xca\x6d\x36\x20\x89\xdd\xaa\x92\xcc\xd9\x7e\xe4\x63\xbc\xa5\xaa\xca\xe3\x4d\xf2\x92\xd3\x55\x93\x54\xdd\x56\xb2\xeb\x2d\x32\xc4\xaa\x6d\x25\x34\xaa\x70\x4c\x2a\x76\xb1\x52\xb9\xed\x45\x75\x52\x2a\x3a\x1b\xa9\x4e\x21\x98\x43\xdb\x07\x6b\x14\x6f\x3b\x86\xff\x17\x74\x32\x7d\xf3\xcb\xc1\x87\x0e\xb7\xda\xb9\x8f\xa6\xc0\x67\x7a\x24\xc4\x65\x2b\x1c\x0a\x5e\x80\xe5\x34\xc6\x73\x88\xd3\x32\x65\xcc\xbe\x96\xbe\xd1\x42\xf9\x78\x1e\x13\x02\xb1\x5e\x0d\xaa\xc3\xbb\x1a\x5b\x26\x08\x43\x7b\x8a\x21\x70\x1d\x1c\x2f\xa7\x51\xb3\x20\xf5\x20\x2d\x63\x37\x67\x23\xb0\x97\x30\x88\xcb\x73\x95\xc2\x61\x74\x93\x16\x17\x54\xd5\x7c\x36\x26\x44\xbd\x2e\x76\xe7\xf7\x7d\x69\x85\x6f\xb6\x53\x8a\xc0\x41\x5b\xde\x2f\x7f\xf7\xbc\xb3\xa5\xb3\xd4\xb8\xd0\x33\x70\x23\x33\x72\x10\x4e\x81\x9c\xa8\x4e\xb9\x84\x81\xc8\x66\xfb\x2d\x46\x2c\x4f\x90\xd7\xea\xcd\xff\x96\x7c\x97\xac\xac\xf4\x6f\x14\x44\x04\x03\x4f\xfc\x91\x7f\x08\x5c\x03\xcf\xe7\x26\x5b\xd3\x05\x04\x38\x30\x20\x4c\x87\xae\xb4\xb1\xa7\xa4\x7d\x96\x8c\xba\xca\xda\xbe\xf2\xc8\xa2\xcb\xab\xf9\x54\xc7\xc5\x44\x5f\x7c\x8e\xea\xa9\xfb\x55\xda\xb4\xba\x67\x5d\x39\x94\x66\xfa\x71\x3e\x8f\xdf\xcc\xa7\xaa\x27\x1e\x39\xae\x16\x3a\x08\xf8\x30\x72\xa0\x5b\x9a\x74\x3e\xdd\x23\x0e\xd8\x20\x35\x49\xf3\x4a\xfd\xb7\xa0\x1b\xa6\xa9\x0e\xde\x32\xf4\xa1\x9d\xb8\x6a\x75\x79\x3b\x99\x9b\x8d\x0f\x34\x40\x2e\x64\xdb\x37\x06\x2c\x77\xbf\x2d\x38\x4a\x5e\x5b\xcc\x92\xbb\x59\xbb\xc6\x0a\x62\x68\x40\xdf\x9b\x7b\x53\x1f\x1a\x33\x84\x0d\xc8\xbb\x12\xea\x63\xb3\x1b\x81\xac\xde\x1e\x59\xa6\x4d\xff\xb0\xbd\xa0\x38\x8b\x93\x74\x65\xd7\x41\xb5\x69\xc8\xb1\xc7\x04\x69\xf3\xf9\x37\xa1\x00\xc0\xd0\x48\xb7\x9c\xe1\x05\x46\xb6\xe7\x24\xdd\x6d\xb4\xcf\xba\x6e\x03\xe0\x56\x52\x60\xf6\xac\xd1\x7e\x1b\x9a\xb1\x85\xf3\xcc\xf3\x09\xc4\xd0\xed\x80\x6e\x57\x9e\x34\x8b\x64\x96\x67\x35\xc9\xcd\x8a\x36\x31\x13\xfd\xc9\x4f\x8d\x4b\x4f\x99\x1a\x2c\x83\x80\x65\x73\x66\x2f\xb5\xc1\x2f\x18\x8d\xad\xd1\xa4\x15\x7d\x52\x29\xda\x2f\x91\xd2\x66\xd3\x6c\x20\x15\xf8\xc7\xc4\x1a\x8d\x54\x6b\x42\x49\xc1\x61\x17\x0a\x0e\x5b\x53\x70\x68\x8d\x46\x39\x0a\xe6\x12\xda\xb9\x24\xb9\x59\x80\x38\x22\x12\xad\x3a\x11\xe9\x3d\xe4\x51\x31\x91\x01\x93\x06\x0d\x14\xc8\x53\x56\x75\xd8\x96\x02\xfa\x41\xb7\xc5\x52\x6c\xb8\xdb\x14\x1d\xf5\xb8\xdd\x8e\x4b\xab\x40\x43\xbc\xa3\x0e\xcb\xe5\xa8\xed\x6a\x39\xb2\x8e\xdb\xd0\x27\xd5\x6b\xfa\xa5\xd1\x59\xd2\xac\x34\xfd\xc3\xa6\x74\x3a\xe8\x40\xa7\x83\xb6\x74\x3a\xb0\x0e\xdb\xd0\x89\xe9\x83\xfd\xd2\xe8\x27\xda\xa4\xe1\x7b\x4b\x8f\x18\x0b\x8f\x48\x04\xd8\x6b\x7c\x2a\xed\x59\xad\xce\x1e\xa6\xf0\x76\x81\x54\x2d\x8f\xfe\x82\x36\x25\x8d\xb9\x7c\xe6\x3c\xc9\x1b\x49\x1a\xce\x68\x6c\x4d\x6a\x6c\x92\xd5\x1e\xb2\xdb\xbb\x2d\x15\x6f\x39\x9b\xdd\x99\x38\xb8\xa4\xbd\x84\x04\x6f\xbd\xe8\xd7\x2f\x63\xf2\xe3\x59\xf8\x65\xd4\x18\x24\x60\xb1\xd7\xf0\x8a\x20\xee\xf5\x7c\x96\xc5\x48\xd8\xea\x3c\x36\x19\xc9\x48\x10\x6b\x8e\x41\xb8\xe0\x85\xa9\x34\x15\xb0\x19\xb0\xb3\x4d\xbc\x25\xb4\x23\x88\x3d\x19\xc2\x96\x2a\x80\x66\x3e\xf7\x2b\x8d\xf8\xa0\x3f\x65\xfe\x98\x7c\x76\x58\x5d\xe4\x6e\xe5\xc8\x1d\xe4\xc7\xcb\x20\x32\x22\xe8\xa0\xc0\xad\x99\x43\x6d\x3b\xea\x10\xfd\x4e\xb0\x8f\xb9\xdd\x1d\x62\x34\xc7\x2c\xf0\x5a\x17\xd6\x9d\x3c\xa1\xca\xa0\xb3\xcc\xb4\xc8\x57\x96\xc8\x2a\x70\x43\x44\x4a\x68\x4a\xe4\x5c\x42\x3d\xab\x2b\xe4\x24\x95\x36\xc5\xd0\x97\x20\x35\x68\xab\x2b\x8c\x26\xb7\xcc\xea\xf6\xb4\x17\xcd\x4e\xb9\xd7\xd5\x6c\xa1\xd3\x5f\x7a\x81\xb7\x8c\x97\x5a\x0e\x69\x2f\xb7\x01\x5a\x61\x10\x9a\x4a\xfc\x35\x31\x1d\x16\xd9\xd9\x8c\x8a\x2c\x20\x14\x11\xc0\xd3\xd0\x3f\x57\x94\x58\x6f\x93\x52\x2a\xe7\x12\x70\x34\x26\x0f\x05\xcd\x6e\xbb\x7b\x1c\x72\x89\xca\x38\x86\x33\x1f\xc6\x66\xe3\x5a\xec\x6a\xb0\xee\x2a\xfe\xc7\x51\x59\x21\x7d\xb3\xf8\x2a\xcd\xd0\x78\x24\xdb\x1b\x31\x8c\x20\xbe\x86\xee\xc9\x52\x81\xec\xf6\x66\xf1\xd5\x48\x1e\x68\x0a\x90\xd1\x80\x04\x4b\xb8\x44\x2c\xb0\x68\x63\x2a\x64\x0b\x65\xba\x26\x30\xaa\x5c\x23\x82\x32\x1a\x0d\xa9\x0d\x55\xbc\x1f\x5a\x53\xa5\x57\x9e\xb6\x1f\xb2\x34\x5c\x8d\x7f\xe2\x4e\x0a\xb1\xe7\x8f\xfc\x0d\xb5\x07\x74\xb3\xb6\x09\x98\x6f\xbb\xac\xd6\x87\x29\xfc\xe7\x7b\x1c\x36\x47\x17\x6a\x88\xd5\x29\xf2\xc9\xcd\xbc\x23\xb6\xf0\x6d\x06\x44\x64\xf2\xfb\x7d\xec\x1b\xa7\x28\x08\xa0\x43\x0c\x46\x21\x83\x80\xa8\x04\x24\x78\x4e\x7f\x49\xc5\x5e\x3f\x8c\x15\xdc\xd8\x88\xa7\x18\xce\x19\x96\xef\xca\x23\xce\x62\xeb\xb1\xe2\x47\x3f\xbb\x1f\xe2\xa3\xe7\x40\x87\xdd\x37\x57\xc6\xe7\x14\xc2\x25\xca\x75\x1d\xde\xb3\x17\xab\xad\xd8\x72\xcc\x40\xa6\xbe\x11\x30\x7f\xcb\xcd\xf4\x22\xcc\xe0\x34\xf1\x61\x09\xa7\xbb\x25\x9c\xc3\xd0\x65\x1f\x01\x76\x16\x4f\x03\x30\xf5\xd9\xdf\x28\x10\x78\x9c\x9f\xd9\x9d\xf7\x3a\xf1\xf2\x88\x58\xdf\x1c\x48\x5d\x84\x30\x81\x6e\x36\xd2\x62\x95\x0a\x9e\xa2\xff\x5e\x90\x40\x88\x9a\x9a\x18\x9f\x39\x22\x28\x7d\x63\xe3\xca\xad\x8a\xd8\x8a\x10\xc3\x99\x27\x87\x28\xf0\xde\x1e\xa7\x67\xfd\x28\x8b\xb7\xa9\x75\xaa\xdd\xc9\x7d\xaa\xb0\xde\x37\xdc\x3b\x91\xb3\x80\xb4\x67\x1b\x5e\xd3\x2b\xda\x3d\x28\x57\x40\xe6\xfb\x57\x67\x93\xd7\x8d\x45\x63\x7b\x84\xc9\x72\x80\x52\x12\x87\xb0\x89\x56\xa1\x88\x87\x6a\x09\x37\xa9\x05\x11\x26\x55\xd8\x96\x4a\x35\xb4\x1b\x6c\x65\x8d\x0e\x9b\x03\x9d\x55\x92\xb4\x90\x87\xea\x7b\xc1\xd5\x25\x3a\x49\x11\xd5\x1b\xa2\xae\xb5\xc2\xf0\x56\x5f\x78\x2e\x17\x5e\x64\x64\x1d\x6b\x6e\x32\x0d\xc3\xba\x5a\xe2\xf0\xd6\x42\x89\x37\x68\x57\xdc\x7f\xf5\xb7\xb9\x46\x97\x2b\xee\xb7\x81\x6e\xe5\x45\xab\xc2\x97\x58\x55\x19\x23\xc3\xc9\xd7\x17\xc8\xd0\x87\xff\x94\x5a\x70\x7c\x0f\x06\xe4\xa2\x54\x43\xa3\x4b\x40\x50\x2b\x3a\xd5\x10\xa4\x19\xe3\x71\xae\x10\xb8\x3a\xae\xab\x12\xd7\x5c\xff\x76\x6b\x60\x73\x79\xbb\x55\x03\x51\x37\xdf\x9e\xaa\x3c\x8f\x72\xed\x17\xa9\xa6\xcf\x40\x66\xae\x82\xdd\x9e\xa6\xfc\x4b\xce\x5b\x59\x20\x80\x16\x74\x3e\xbf\x14\x17\x08\x73\x58\xc8\x8d\xdc\x93\xd5\x11\x64\x77\x33\xb2\x4c\x0a\x55\xaf\xf3\x2d\x2c\xb2\x53\xb6\x5d\xf5\xc3\x51\x37\x58\x3a\x2f\x1a\x2c\x2a\x2e\x18\xa2\x01\xff\xaf\x72\x31\x71\x6f\xc6\x2d\xae\x29\xb9\x83\xae\xc5\xc7\x9b\xb1\x50\xf5\x4b\x73\x91\xd7\xd6\x4e\xa7\x38\x0d\x7b\x50\x4f\xcb\x2a\x65\xbf\x3a\x6a\xa2\xc4\x6c\x59\x51\xdd\x5f\x7f\x78\x79\x72\x0d\x22\xf5\x4d\x8f\x0d\x55\x99\x28\x83\xd4\xf1\x30\xe9\xac\x6a\x54\xd5\xfc\xc2\x84\x37\xa4\x85\x7a\x25\x29\x99\x6a\xcd\x3f\xd9\x86\x89\x71\x20\xd7\x19\xd7\x42\xad\x4f\xe6\x5b\x78\x43\x24\xe5\x4a\xbd\x27\x8b\x23\x6b\xf0\x10\xdb\xf6\xde\x6c\x9d\x40\xb9\xb7\x28\xfd\x56\x49\xa5\x05\x88\x2e\x08\x0a\x43\x7a\x39\x15\xb3\x16\x29\x84\x4d\xd4\xfd\x1e\x10\xec\x6f\x78\xec\xbe\xf5\xc9\x5c\x01\x1c\x24\xa9\x8e\x66\x92\x2d\xce\xaa\xa6\x89\x5f\xa8\xaa\x46\xe0\x0d\x37\x4a\xcb\xc6\xb8\xb7\x74\x93\x18\x0b\x10\x19\x11\x9f\x8b\x01\x08\x5d\x90\x84\xbe\x44\x90\x91\x31\xd4\x20\x54\xf9\xcd\x28\x30\x68\x0d\x80\xaf\x2d\x45\x99\x23\xeb\x0c\xf9\x3e\x5a\x7d\x08\x9f\x66\x21\x52\x96\xb9\x02\x1e\xf9\x10\x10\xcf\x2f\x01\x26\x34\x5d\xbc\xcd\x7c\xac\xb7\xc1\x1c\x87\xee\x63\x05\x6b\xbc\x60\x86\x6a\xf8\xb2\xf2\x7c\x3f\x61\x48\x9e\x1b\x8d\xa3\xf5\x64\x23\xdd\x28\x6f\xa4\xcb\xd0\xb0\xcb\x77\xc3\x76\x2c\xd1\x01\x82\x97\xa8\xb2\x44\xdc\x65\x8b\xd1\xd2\x0e\x98\x51\xa0\x5b\x77\x9f\x3e\x99\x1e\xbd\x84\x5c\x0b\xd7\xca\x70\x38\x54\x95\x30\x68\x72\x7a\xb5\xb9\x43\x57\x8b\xb7\xdc\x24\x4a\x5a\x70\x26\xe9\x4a\x53\x96\xac\x56\x25\x62\xd4\xc8\x2e\x45\xea\x0b\x1b\x27\x4b\x29\x51\x93\x37\x9b\xc4\xd3\x6b\xb6\xfc\x1b\xc6\x1f\x74\xa0\xc3\x4b\x37\x37\x6d\x1e\xf5\x10\x62\x78\xed\xa1\x38\x3a\x91\x1f\x93\xd0\xee\x48\x73\x39\x3d\x52\xd7\x6a\xbc\x15\x85\x23\xd9\xfc\x1b\x69\x1d\xdc\x10\x6a\x4f\xd1\xcd\x96\xd5\x8c\x37\x67\x3f\xbd\xb9\x18\xbe\x51\x17\x83\x69\x83\x66\xe6\xa0\x80\x60\x54\x4a\xe9\xab\xbd\x38\x30\x03\x69\x2e\xf9\xac\x24\x38\x39\xb1\xcc\xba\xa2\x56\xe5\xe4\xa6\xa2\x81\x81\xfd\x9c\xf8\xca\xd9\x1f\x45\xb0\x75\x16\x4d\xb2\x40\xbe\x48\xb2\x18\xe7\xbf\x29\x79\xd1\xc7\x96\xf9\x5f\x7c\x74\x97\xec\x02\x93\x26\x3d\x89\x81\x68\x73\x9e\x22\x48\x2e\xa4\xf7\x72\x09\x4f\x11\x2f\xc9\x31\x32\xf3\x09\x50\xfc\x78\xd0\xa2\x21\x17\x11\xe0\x72\x05\xc5\x66\x32\x8d\x1b\x81\xb2\xf1\xd2\xe3\x66\x3e\xfb\xac\x7c\xa4\x81\xc0\x61\x17\x29\x7d\x80\x57\xff\x3b\x32\xdb\x3b\x1b\x6e\x41\x7c\x0d\xb1\x0d\xe6\xf7\xc3\x30\xfd\xf3\xd5\xc7\xe7\xd3\x17\xce\xb3\x2d\xd4\xd1\xe5\x94\x88\x06\xfc\xbf\xa9\xbe\x3d\x67\x17\x62\xed\xbd\x77\x54\x78\xae\xaf\x62\xba\xc5\x76\xeb\x0a\xdf\xaa\x5b\xc8\x43\x0a\xa6\x73\x89\x5e\xf3\x04\x2a\x3a\xbe\x4b\xcc\x4a\xe8\x3c\xa3\xad\xd6\x2c\xe1\xfa\x51\x02\xd7\x65\xa1\x3a\x1d\x8a\xe9\xa6\x13\x85\x78\x76\x8e\x30\xd9\xa4\x0d\x39\x85\x45\x6b\x4b\xe8\x61\x07\xe6\xb7\xce\x66\xfb\xb0\x1c\x1b\xb6\xd5\x8d\xf8\xea\xf5\x2f\xc7\xde\x97\x1f\xd5\x20\x15\x65\xc8\xa4\x7d\x09\x7e\xa8\x50\x60\x48\x07\x0f\x44\xf9\xd7\x85\xea\x45\x42\x6d\x48\x76\x0c\xc1\xd2\x0b\xe6\xf6\xcc\xdb\x3a\x60\xd5\xd7\xd5\xe2\x78\xe5\x91\x71\x63\xe1\xa7\x35\xac\xf9\x88\x61\x20\x58\x26\x8a\x09\x3d\x82\x73\xbb\xa0\x97\xb5\x9f\xa3\xdb\x46\x2c\x60\x95\xf7\xef\x01\xf5\x9f\x62\xe0\x5c\x3f\x5f\x05\x9b\x01\x77\x06\x48\x04\x79\xd4\x9b\x8a\x6a\x9c\x1f\x01\x22\xde\xcc\xe3\x57\x02\x7a\x31\x86\xac\xf6\x99\x2e\x84\xaf\x2e\x2f\x6e\x4f\xb6\x2b\xb3\x38\x39\x63\x06\x89\xb3\x30\x18\xe5\x75\x69\x65\xa5\xaa\x08\x97\x0b\xc8\xde\x88\x58\xde\x16\xb3\x81\x50\xfe\xb1\x8c\x26\x2f\x00\x8e\x03\x23\x86\xbb\x37\x30\x4e\x17\xd0\xb9\x32\xc8\x02\x1a\x0e\x0a\x5c\xe6\xa3\x33\xd0\x8c\x7f\xc1\xac\xcc\xec\x63\x76\x39\x32\xbc\xc8\x40\xc1\xa0\xce\x96\xaa\x3f\x51\x37\x72\x68\x9a\xc5\xe4\xd6\x06\x3a\xbb\xaa\x82\x69\xee\x0e\x9a\x99\x77\x64\xf3\x0c\x25\xdf\xe5\x3a\x84\x2f\xa3\x0f\xc1\x55\x80\x56\x25\xa3\x4c\xad\xdf\x16\x68\x4a\x1c\x27\xe0\xc6\xab\x85\x47\xa0\x04\x6e\x9c\xa8\xbb\x0b\x0c\x67\xb9\x42\x4b\x80\x7c\xc0\xbe\x99\x85\xb7\x8a\xd2\x2b\x96\xf9\x5f\x53\x1f\x04\x57\x69\x80\x13\x33\x53\x06\x08\x85\x30\x80\xd8\x08\x10\x86\x33\x88\x31\x94\x57\xe3\x47\x0f\xae\x8c\xf7\x60\x65\x3c\x2b\xad\xa7\x4e\x46\x30\x2f\x7a\x4d\x07\x93\xd9\x34\xbd\xe8\x82\xc9\x9c\x46\xb9\x7c\x45\x8a\x55\x5c\x0b\xea\xc9\x56\x7f\x4b\x98\x23\x82\x5e\x48\x00\x7f\x19\x59\xc4\xb7\xba\x9a\x52\x77\x30\xae\x4b\xe0\xf9\xe5\x71\x89\x6f\x5b\x73\x49\xcb\x89\x6d\xb3\x80\xc3\x67\xf0\x81\x95\xa7\xab\x36\xbf\xa5\x37\xb8\xa2\xa2\x9c\x1e\x9f\xc9\x54\xb9\x25\xdb\x32\x97\xd0\xf5\x80\x1d\x82\x38\x62\x17\x09\xfe\x97\x0f\xa4\x80\xd9\xa2\x59\x53\x65\xce\xec\x1a\x28\x51\xed\x57\xaa\x2f\xb6\xa3\x88\xa3\xc8\xd7\xd9\xc9\x87\x05\x53\x41\x75\x9a\x62\x4a\xb2\xfb\x7a\x8e\xbc\x0c\xf1\xdc\x05\xf8\x8a\xd5\x0b\xa7\xd2\x70\xea\x43\xe8\x9a\x4d\x2a\x05\xb6\xeb\xa9\xb1\x25\xae\xa8\xce\xa5\xae\x96\x84\xa1\xa2\xf4\x67\x8e\xaf\x05\xae\xa7\x12\x87\x3d\x5b\x92\x3f\x29\x2e\x62\x97\x12\x85\xcd\x09\xe0\x2d\x39\xac\x6c\xbb\xf9\xb3\xb7\x0a\x73\x8f\xb0\xc3\x9c\x4c\xec\x72\xe5\x7d\x95\x6c\xae\xa9\xfc\xcf\xb0\x8f\xe9\x43\x6f\xc5\x15\x36\xf7\x25\xab\x90\xda\x79\xde\xcd\xe2\x7c\x18\x16\x8c\xbd\x84\x51\x04\x78\xb8\xed\x82\x99\xbe\x2b\x22\x7b\x34\x5a\x4f\xae\x21\x76\xde\x17\x9c\x7e\x1f\x82\x28\x0e\x43\x16\x4a\xc9\x0e\x2c\x83\x1e\xc8\x15\x72\x5a\x53\xf8\x2f\xd7\x0d\xdb\x4f\xe2\x0f\x33\xaf\x31\x71\xf7\xc5\x87\x97\x86\x83\x62\xdf\x35\xa8\xf2\x85\x61\xe0\x42\xa1\x41\x51\x7e\x59\xc6\x34\x26\xc6\x1a\xc5\x86\x03\x02\x23\x22\x9e\xef\x1b\xd7\xf4\x4c\x25\x42\xe3\x32\x5c\x0f\x43\x87\xf8\xeb\x92\x8a\xd4\x61\x9c\x95\x21\x4f\x75\xea\x45\x0a\x74\xb0\x45\x9d\xa2\xb9\x2b\x7e\x5b\x01\xf5\xe9\xb5\x66\xf3\xcb\xd1\x1c\xa3\x38\xbc\x07\xc6\xb9\xf5\x6f\x6f\xf6\x5e\xfc\xbc\x77\xd4\xd5\x38\x57\x1d\x95\xa2\x34\xd3\x45\x65\x3b\xdd\x17\x34\x8d\x06\x5f\xd0\x74\x90\xd1\x26\xd1\x0b\x30\x06\xeb\x2c\x9e\x13\x44\x57\xcf\xf9\xaf\xf4\x9d\x4c\xa2\x65\x3f\x34\x8c\x76\x1e\x95\x5e\xd4\x41\x86\x54\x1d\xe1\x4d\x8d\x58\x72\x2f\x1c\xa7\xa5\x85\x25\xac\x61\x90\xa9\x2a\xf5\x4e\x1c\x21\xd9\x8d\x2c\x81\xc4\x9b\x02\xac\xf2\x66\x9d\x72\x34\x34\xa1\x27\xbd\x05\x58\xc4\xe7\x95\x67\x11\xc5\x4b\xc6\xbb\xcf\x9f\x93\x0a\xd9\x0d\x6c\xe4\x4d\x49\x94\xe4\xcf\x9c\x9e\x7f\x28\x25\x57\xbd\xf8\xba\x69\xab\x6f\x44\x3e\x54\x29\xcd\x68\xd3\x86\x9f\x86\x0b\xb8\x84\x18\xf8\x67\x5e\x74\xd5\xa0\xfd\xde\x44\x52\x2a\x4c\xd4\x72\xe9\x2f\x2d\xe4\x92\x8f\xb6\x9d\xe2\x73\x7a\xf3\xec\x04\x3d\x9b\xc4\xcd\x24\xd2\x37\x6e\xa9\xf1\xd1\x3c\x6a\x67\xa9\xa1\x6f\x6c\x62\xa8\x09\x90\x0b\xef\x9d\x99\x46\x1f\xef\xa8\xb8\x6d\x26\xbb\x4a\x02\xe1\xcc\x95\x82\xaa\xba\xff\x24\xfa\xbf\x19\x11\x17\xc5\x24\x77\xed\xf1\x82\x19\xca\x5d\x74\x26\x5a\x0f\xe7\x1b\x7e\xe5\x48\x1a\xc9\x46\x9c\x36\xab\xe6\x68\xdf\x53\x80\x18\x17\x6e\x6e\x01\xc7\xc9\x6d\x37\x09\xd6\x4c\x6e\x12\xbc\xe1\x26\x99\xca\xad\x6d\x69\x9d\xec\x07\xb7\x67\xb7\xb9\xe5\xa1\x34\x35\xd5\xdc\xf2\x50\x1a\x9a\x52\xee\x8f\x21\xa5\x4e\x18\xb5\xc8\x20\x57\xa5\x9a\x68\x8c\x1c\x7a\x94\x87\x1e\x6d\x10\xbc\xb1\x37\x2d\x2d\x11\xb7\xa4\x3a\xf8\x68\xb3\x24\x52\xd6\xc8\xf6\xaf\x31\xf8\xa7\x5f\x3f\xb8\xe8\x86\xa8\x1d\x3d\x01\x24\x2b\x84\xaf\xa8\x50\x62\x5e\xe8\xea\x6b\x4d\x4e\xa9\x8e\xec\x20\xd5\x82\x2b\x0c\x5f\xb2\x33\x80\xe5\x00\x5b\xa6\x8b\xbd\x6b\x88\x45\x62\x8e\x65\x2e\x20\xf0\xc9\x62\xdd\x26\x14\xad\x41\xd0\xa3\x41\xb7\x90\x9d\x42\x3b\xea\x02\x20\x4b\xc3\x62\x2b\x88\x9e\xfb\x71\x20\x0f\xac\xa7\x58\xdc\x46\x7b\xba\xeb\xbd\x4a\x8f\x65\xd1\xcf\x5d\x54\x9d\x8c\x33\xe0\xe4\xd3\xdc\x49\xf3\x11\xdf\xb9\x5b\x69\x97\x0b\x69\xc5\x5d\xb4\x68\xb8\x17\x8f\x7b\x91\x50\x7c\x59\xb2\x79\x43\x0b\x7e\x02\x70\x95\xe5\xf6\xe7\x69\xf5\x99\x29\x24\xcb\x10\x62\x9b\x55\x30\x68\x13\x57\xde\xcf\x9d\x59\x04\xc9\xc0\xf6\xd7\x65\x2d\xa5\x20\x8f\x08\x2d\x60\x3e\xa4\x36\xbe\x86\x76\xd9\x16\x0d\x6e\x6e\x5b\x95\xf0\xb6\x33\xd4\x49\xc9\x2a\x59\x9b\x0c\xd5\x30\xac\x48\x91\x3f\x5b\x35\x45\x4d\x72\x6d\x4b\x73\x46\xac\x42\x77\x17\xdc\xcb\xc1\xcb\x8a\xb1\xe0\x04\x31\x90\x05\xc2\x33\xb9\x4e\x3f\xb2\x2a\x93\x62\x68\x55\xd9\x78\x69\x0c\xb1\x88\xd4\xe5\x07\xd6\x26\xb8\x64\xca\x6c\x50\x75\xa6\x33\xc7\x6e\x57\x6c\xed\xc7\x2a\x4b\xa8\xda\x7c\x9b\xb7\xcf\x9a\x0b\x42\xc2\xc7\x8f\x1e\x65\x40\x87\x1e\x2b\x00\x65\x3e\x4e\x51\xe7\xc5\x99\xb7\xb9\xf5\x76\x54\xe8\xa3\x38\xfe\x51\xb1\x47\x65\x3c\x6b\x33\x2f\xd9\x58\x8b\x7e\xda\xde\x7f\xa6\x3f\xda\x47\xc6\x02\x70\x2d\x34\xcd\xf8\xad\x3a\xe7\x73\xf2\xf6\x7d\x1c\x04\x95\xc9\x30\x4a\x37\x78\x41\x55\x60\xe8\x44\x85\x62\xbf\xcc\x30\x40\xd5\x86\x48\xd9\x4f\xed\x52\x1d\x0c\x06\xed\x5d\x57\x89\x57\x28\x7a\xca\xed\x1c\x4d\x3d\xc0\xad\xf5\x93\xa6\xd8\x2a\xb1\xef\x06\xff\xeb\x7f\x10\xc3\x41\xbe\x0f\x1d\x62\xb0\xc1\xe9\x5d\x1c\xbd\xe9\x28\x8d\xb4\x94\xae\x49\xf8\xb2\x89\x36\x85\x30\x6b\x00\x3d\xa3\x57\xea\xe8\x02\xca\x10\x8b\x18\x46\x91\x74\x3a\x25\xab\xa8\x60\x4f\x15\x56\x54\xbd\x2f\x5d\x89\xd0\x96\x0b\x6d\x17\xe0\x6c\x52\x8e\x8f\x80\x63\xd3\x81\xb1\xf1\x81\xb6\x85\x5f\xcb\x1f\xb8\xc5\x36\x1a\x55\xa0\xd1\x7b\x95\x9a\x79\x91\x36\x57\x52\xef\x83\xa0\x49\x30\xc0\xfe\xd4\xb2\x26\xdb\x51\x3b\xa1\xa3\x11\x3a\x5d\x65\x8d\x0e\xf9\x4d\xac\xab\x12\xdc\x5b\x9d\x24\xca\x7c\x30\xc2\x33\xd2\x8f\x30\xe2\xf6\xcf\x06\xe2\x28\x1d\xf7\x66\x12\x49\xd1\xcc\x3d\x12\x4a\xbd\x19\x89\x36\x0d\x84\x67\x8d\x44\xf1\x34\x00\xd7\x5b\xb6\x13\xbd\xfd\xfb\xf1\x87\x17\xee\x2f\xc3\x8d\x93\xc2\x08\x98\xb2\x15\x27\x66\xd5\xe2\x6e\xa3\xbf\x4c\xa8\xac\x16\x1c\xfb\xeb\xb4\xd2\x76\xc1\x9f\xa9\x36\x5d\x0c\x44\x21\xac\xfe\x0d\x18\xef\xae\x21\xbe\xf6\xe0\xaa\x99\x3d\x67\x4b\xb3\x67\x7e\xb6\x5b\x98\xfc\x6b\xe6\xbf\xeb\x7f\xe2\x7a\x63\x55\xd1\x1c\xcf\x22\xb7\x5f\x7b\xc1\xd5\x09\xa7\xc3\x67\xee\x09\x12\x54\x49\xe5\x71\x15\x71\x66\x91\x8d\x11\x22\xb7\x41\x9f\x67\x74\x74\x4d\x09\x54\x7d\x97\xeb\x4d\x9a\xf1\x2d\xbb\x99\x40\x5b\x21\x3b\x22\x30\xb4\x13\x5f\xcd\x56\x85\xda\xe5\xf0\xec\xf5\xc9\xde\xbe\x1a\x50\xa3\xc6\x63\xee\x45\x2f\xdd\xda\x90\xdf\x36\x8e\xa9\xec\x08\x46\x31\xa1\x9a\x07\x03\xd1\xf2\x96\x94\x3a\x20\x20\xa5\xb3\xd9\xf5\x22\x81\x99\xc8\x62\xcd\xd2\x3f\x3f\x37\xf6\x6d\x85\x18\x2d\x43\xf2\x0c\xe1\x53\x14\xcc\x3c\xaa\xa4\x70\x08\xa7\xa0\x5c\x6a\x4f\xcc\x40\x29\x8f\x05\x14\x9d\xe7\xfa\xf0\x92\x27\xa4\x16\x4f\xf2\x0e\x4a\x5a\x91\xd8\xe7\xbc\x0a\x77\x7e\xa4\x4d\x68\xaf\x55\x7e\x1d\xa9\x29\x5b\xce\xa4\x15\xf3\x91\x7f\x7f\x93\xda\x0c\x2b\x32\x8d\x1b\x72\x99\x7b\xcf\x64\x1e\x57\xb1\x15\xac\x80\x47\xca\x13\x6f\xc8\xe2\x46\x15\x72\xcd\x08\x92\x4b\xc4\x57\x73\x7a\xc9\xa9\x82\xc8\x44\xc1\xa9\x48\xf2\x55\xd7\xc1\x6d\xbd\x74\x78\xce\x70\xa3\xc5\xa3\xa5\x76\x29\xbe\x5b\xb1\xb1\xf8\x25\xc7\x2c\xe7\x82\x6a\x88\x4c\xcf\x03\x1f\x01\x51\x2a\x3e\x0b\x0d\xe8\x9d\x4f\xc9\x62\xd3\x7a\x98\xcd\xd2\xba\xec\xbe\xd5\x34\x6e\x86\x7e\xce\x89\xbc\x7c\x6f\x7f\x56\xcc\x30\x84\x11\x59\x6f\x3d\x01\xee\xcb\x87\xeb\xc5\xfa\xe7\x63\x75\xfa\xa1\x19\xa5\x55\x7d\xcb\x9f\x9a\x28\xc3\x1e\x43\xbe\xa5\xd3\x9c\xc7\x9e\xab\x46\x60\x4a\x29\x61\xf3\x67\x32\x7c\x5d\x8f\xb0\xcb\x67\x14\x4f\xf9\x47\x86\x90\x24\xa2\xaa\x4d\xcb\xbc\xa0\x2f\x45\x06\x08\x5c\xe3\x1c\x10\x02\x31\xc7\xc6\x55\x48\xd8\xac\x8b\x74\x1a\x49\x27\xdc\xd6\x6e\x7d\x32\x2f\x17\x90\x5b\xdd\x15\xef\xa7\x8c\x4f\x0b\x99\x80\x28\x82\x98\xd0\x53\xcb\xf7\x1c\x8f\xd8\xe9\x13\xf6\x02\xfa\x21\xc4\x36\xc0\xf3\x78\x99\xbc\xc1\x6a\x91\xd0\x79\xa4\xb4\xfb\x6c\x51\xa6\x33\x6c\x60\xe3\xbf\xc5\xb7\x83\xec\x81\xff\x36\x08\x32\xa6\xd0\x00\x86\x83\x02\x2a\xb3\x63\xe0\x1b\x69\x1f\x2c\x6a\x7c\x86\xe2\xc0\x35\x80\x11\x11\xec\x05\xf3\x81\x71\xe6\xb9\x2c\x92\x7c\x09\x41\x60\xfc\xf7\x83\xec\xe1\x72\xeb\x0f\xff\xfb\x1f\xc6\x83\xff\xf5\x3f\xaa\x56\x25\x5d\xd0\xff\xeb\x7f\x18\xff\x69\xbc\xde\x7b\x7c\x7a\xfc\xd0\xc8\x85\x68\xa4\x34\x7b\x86\x02\x62\x5c\x10\xe0\x5c\x29\x29\x5f\x70\x8e\x88\x7d\x9d\xf6\xf1\x28\x9a\xdb\x33\x14\xb0\x2a\xcc\xac\x85\x16\x71\xb5\xb9\x15\xf4\x3d\xb3\xe7\xa8\x82\x3d\x54\x74\x1a\x17\xde\x57\x11\x7f\xd3\x99\x3d\xa2\x85\x1d\x7b\xda\xb3\x67\x34\xae\xe0\xcf\x29\xf2\x11\xee\xba\x73\x1c\xf1\x72\x67\x87\xfb\x44\xc3\xae\x26\xc2\x32\x4d\x5b\xd2\x49\xdc\xcd\x79\x3e\xfe\x76\x79\x5e\xb5\x27\x4f\x1c\x07\x61\x57\xcc\xa8\x03\xdb\x41\xf6\xfe\xf6\xf6\xe3\xb7\xcb\x9b\x71\xd5\x7e\x3c\xf1\x21\x56\xaf\xe8\x26\x8c\x11\x2f\xef\xb8\xd2\x81\x2b\x07\x15\x5c\xf9\x01\xdd\x40\xd7\x90\x66\xd5\x81\x39\x45\x7c\xf5\x1d\x8f\x5a\xf3\x68\x32\xac\xe2\x91\x5c\x21\xbd\x1b\x87\x3a\xd6\x58\xdf\xf1\x27\xe1\x4f\x95\xa2\xfe\x03\xbb\xa5\x76\xe6\x4d\xf2\xf6\x8e\x2f\x1d\xf8\x52\xa5\x0d\x9c\xa2\x70\x6d\xfc\x20\x0c\x47\x1d\xd5\xc0\x70\x6d\xa7\xa6\xa7\x1d\x7f\xda\xdf\x6f\xab\x34\x82\x33\x6f\x36\x33\x3e\x7a\x70\xc5\x03\xa2\x3b\xf0\xc7\xf5\x66\x33\xfb\x5a\xb4\xb0\xe3\x4f\x07\xfe\x54\xe9\x06\x67\x18\x85\x2e\x47\xd3\xe9\xc4\x9c\xf4\xf5\x1d\x67\xda\x73\x66\xbf\x4a\x23\x78\x1e\x13\x02\xb1\xb1\x84\x41\xdc\x91\x39\x73\xd6\x82\xcd\x5b\xd8\xf1\xa7\x03\x7f\xaa\x34\x82\x17\x29\x18\x64\x07\xd6\x2c\xc4\xcb\x3b\xae\x74\xe0\x4a\x95\x3e\xf0\x92\x85\x62\x19\xb9\x0a\x47\x9d\x38\xa4\x2c\x95\xb4\xe3\x56\x6b\x6e\x1d\x54\x69\x07\xaf\x2e\xde\xbd\xdd\x4c\x3b\xf8\x12\xa1\x60\xa7\x1d\x6c\xc2\x9f\x2a\xed\xe0\x35\x9a\x1b\x49\x46\x6b\x27\xf6\xf8\x68\x6e\xa7\xa0\x54\x3b\xee\xb4\xe6\xce\x61\x95\x86\xf0\x86\x15\x9d\xed\x2a\xe0\x96\xc9\xdb\x3b\xbe\x74\xe0\x4b\x95\x66\xf0\x26\xf6\x89\x27\x8a\x78\x1a\xee\x66\x0a\xf6\x52\x6a\x6b\xa7\x6d\x6f\xc6\xb3\x2a\xbd\xe1\x1c\xcc\xa1\x41\x40\x67\xeb\x5b\x08\xe6\xd0\xe6\xef\xef\x78\xd3\xc1\x09\x5b\xa5\x25\x70\xde\xf0\x00\x86\x0d\x98\x23\x22\x20\x76\xdc\x69\xcf\x9d\x2a\x1d\x81\xa5\x43\x1b\x97\xa0\xab\x87\x3c\xcb\x8d\xde\xf1\xa6\x03\x6f\x8e\xab\x34\x04\x5e\x26\xc4\x98\xa2\x9b\x8e\xcc\x91\x4a\xcd\xec\xb8\xd3\x85\x3b\x55\x7a\xc2\xa5\x80\x02\x6e\xc2\x98\xa3\x02\x63\x08\x7b\x37\x43\x2b\x45\x98\x24\x01\x6e\xa6\xc5\xfe\x3c\x83\x91\xc3\x43\x61\x4d\xcb\x74\x62\x8c\x61\x40\xce\x45\x3a\x7b\x56\x14\x3d\x7d\x29\x57\x2a\x5d\x7a\x37\xfd\x3e\xd7\x44\xcb\x02\x78\xbb\xf5\x90\x44\x36\x0c\x47\x75\x0b\xc2\x32\x58\x64\xe8\x3c\xce\x6a\xd8\x77\xd8\xb8\x6c\x7d\xd8\x4e\xbe\xa5\x1d\xc7\xba\x70\x6c\xbf\x8a\x63\x69\x65\xcc\x6e\x5c\xca\x0a\x6b\xee\x58\xd3\x81\x35\xc7\x55\xac\x11\x01\xc6\x9b\x79\x07\x8b\x69\x28\xdd\xa3\xc5\xc6\x9b\x44\x8b\x2d\x80\x26\xae\xa6\x97\x25\x30\xfa\x76\x97\xc0\xa8\x6a\x77\x9e\x79\xb4\xff\x69\x4c\x9b\x35\x7e\x00\xdd\x3d\x90\x59\x33\x0c\xd6\x75\x8b\xbb\xf5\x5b\x66\x55\xd5\x6e\x7d\x15\x2f\xa7\xc8\xb8\x25\x86\xd9\x5f\x68\xeb\x3b\xb6\x75\x62\xdb\x78\x52\x65\x20\xf6\x02\x68\x9c\x72\x3c\xe4\x6e\x06\x62\x19\x50\x79\xc7\x9e\x0e\xec\x39\xac\xbe\x9b\xf3\xc4\xfd\xee\x7b\x29\xc9\xfd\xdf\x09\xbe\xce\x2c\x9a\x54\xe9\xfc\x0c\xb6\xc1\xa0\x7a\xa4\x71\xc1\x2b\xd8\x75\xbc\xa9\x97\x2a\xe1\x75\x57\x55\x46\x6d\x20\xe6\x36\xcb\x1c\xce\xd1\xab\x5d\x02\x18\x43\x3a\xde\x6e\xee\xd7\xeb\x2f\x7b\xe0\x23\xf8\xa7\xdb\x1c\xda\x9f\x67\x64\x29\xb0\xf8\x78\x79\xcd\xe4\x89\xbe\xeb\x2f\x52\x5a\xb5\xa7\x70\x02\x68\xb0\xd5\xd2\xa6\xcf\xde\x5e\x4e\xc0\xf9\xab\x46\x24\xee\x4c\x1f\x36\xd3\xf6\x04\xfa\x82\xa6\xdb\xae\x38\xf9\x3c\x7c\xb3\xd8\x7b\x35\x7b\xd9\x38\x33\x9d\x19\xc3\x7d\xb0\x46\x31\x11\x37\x8d\xea\xcc\x68\x21\x6c\x50\x4c\x7c\xd8\xe6\x90\xee\xcc\x0b\x56\xa9\xa2\x13\x2b\xee\xc5\x82\x7d\xfb\xf2\x74\x78\x38\x02\x4b\x75\x3e\x68\x48\xb7\x38\x43\x9d\x58\x95\xf3\x3f\x13\xb4\xd0\xcc\x5d\x41\x35\x63\xc4\x9c\x4a\x79\x04\xc8\x1c\x28\x56\x7a\x6f\x54\x95\x6f\x4e\x23\xf6\x2b\xa1\xb0\xbc\xe8\x19\xc2\x53\xcf\x75\x61\x5d\xb2\xbc\x58\x14\xfb\x8c\xeb\xc4\x03\x7e\xf4\x68\x96\xbc\x9a\x14\xcb\x29\x97\x2f\xed\xa7\xd2\x11\x41\xc8\xe7\x6a\x88\xae\xb2\x51\xcd\x9b\xb6\x47\xe0\xb2\x8e\x16\xd7\x1e\x83\xf8\x67\x74\xb7\x4c\x1f\x06\x73\xb2\x68\x84\x5f\x99\xc7\xb3\x96\x8a\xb4\xa7\x56\xda\xac\x6a\xb7\x65\xa2\xe0\x74\x01\x02\x4a\xac\x7c\x99\x70\xa1\x20\x2d\xe3\x0c\x5a\x2c\x57\x25\xbc\x59\xe6\x3d\x86\x11\x24\xe7\x60\xee\x05\x79\x04\x84\xcf\x56\xe2\x14\x60\xdb\x6c\x30\x68\x05\x39\x6b\x7d\xca\x41\x62\x1d\x6b\xa8\x78\x24\xb0\xc9\x4d\xb6\xb2\xde\xa0\xa9\xe7\x37\x2c\xca\xd5\x92\x95\x86\x17\x71\xfc\x7b\x1b\xf8\xde\x3c\x28\x03\x8c\xcb\x6d\xd6\x83\xc0\x7c\xce\xa1\x01\x14\x6a\xe7\xe0\x58\x67\x43\x7a\x1f\x07\xc6\x2b\x5e\x2a\xa7\x5a\x19\x96\x47\xd3\xa2\x80\xdd\xa6\x44\xa1\x5f\x2c\x19\x13\x38\x14\xfb\xca\x73\xe9\x8a\xae\x40\x03\xd3\xe2\xbc\x33\xe2\xd8\x9a\x3d\x58\xd8\x01\xea\xd0\x85\x94\xf4\x09\x26\x1c\x0a\x79\x74\x1d\xdd\x32\x7e\x22\xc9\x4c\x14\x5c\xb0\xbf\xb8\x29\x8f\xe1\x43\x08\x48\x09\xfe\x38\xaf\x3c\x96\xfa\x2c\x92\x37\xb3\xaf\xab\x36\x47\x04\xc9\x33\xe0\x40\xf2\x53\x0c\xf1\xfa\x9c\x52\x9e\xf1\xe0\xb7\x50\xd4\x33\x4b\xf1\x1b\xd4\x40\x63\xb7\x34\xcb\x04\xc7\x3c\x37\xcf\x8b\xb4\x80\x79\x61\xa6\xf2\x0f\x9d\xe6\x9a\x34\xb0\xa5\xd9\x9e\x65\xc5\xc6\xf3\x33\x3e\xcb\x55\x21\x2f\xcc\xba\xf8\x63\xa7\x99\xcb\x8d\x6c\x69\xf6\xe7\x18\xce\xbc\x9b\xc2\xcc\xc5\x97\xe5\x59\xcb\x3f\x74\x9a\x71\xd2\x40\xdd\x6c\xcd\x5a\x08\xbd\x92\xa0\x4f\x20\x30\xeb\x65\xfe\x4e\xf4\x77\x11\xfd\x55\xe4\x4f\xdc\xb5\xd0\xe5\x4a\x62\x05\x7c\xa9\xef\x45\xc4\x0e\x33\x7d\x40\xf2\x1c\xc7\xd8\x81\x49\x91\x4b\xae\x7c\xe6\x5d\xc4\x69\xeb\x62\x95\xd1\x27\x44\x5d\x4b\x8d\x6b\x58\x3b\x80\x92\xd7\x3a\xe9\xbb\xce\x7d\x9d\x00\x7d\x26\x96\x20\xda\x5a\xde\x65\xdd\xc4\x91\xcd\xd0\xce\xed\x19\x42\x4a\x6b\x65\x6f\xde\x34\x5e\x82\x29\x67\xa0\x22\x03\xfa\x65\x9f\x46\x29\xde\xa2\xde\x10\x95\xdd\x87\xa4\x58\xdf\xfd\xc7\xa7\xa3\x89\x6c\x89\xaa\x57\x69\xd3\x0d\xd4\x93\xa7\x11\x61\x62\x4f\xd7\x25\xf2\x88\xef\xfb\xa5\x90\x68\xb4\x25\x91\x0e\x1e\x9f\x8e\xf6\x0b\xe6\xba\x10\x23\x86\xdd\x9a\x22\xcb\x2b\x68\x96\x14\x80\x6d\x26\x08\xbe\x47\xca\x1e\x56\x51\x36\x4a\x15\x1a\x05\x6d\x33\x6d\x67\x47\x5d\x1d\x75\x8f\xaa\xa8\x4b\x84\x62\xac\xa0\x6d\xa2\x33\xef\x28\xab\xa3\xec\x71\x15\x65\x43\xec\x21\xec\xf1\x83\x47\x41\xdd\x73\xe9\xe7\x76\x14\x3e\xb4\x4c\xb2\x28\xa2\xdb\xb2\x82\x98\x8a\x7a\x86\xfa\x17\x0b\x38\xe9\x13\x49\x4f\xba\x48\x2a\x8c\xb6\xa8\x68\xdf\x0f\xd3\x79\x35\xe5\x02\xc7\xe9\x97\xfd\xb2\x9b\xb6\xd8\x8e\xd7\x87\x93\xe2\x11\xf9\xe9\x93\x79\x05\x19\x8d\xb8\x8d\x7e\xe0\xb9\x35\x2e\x9a\xc2\xad\xe1\x0b\x9a\xf2\xf2\x5d\x89\xda\xf3\x05\x4d\xb9\xfd\x87\x41\xfd\x7d\xce\x10\x9a\xb8\x0f\xa0\x42\xcd\x67\xf5\xee\xa8\xbe\x69\x15\x5f\xd1\xaa\xf6\x65\x76\x4e\x9a\x45\xa8\x34\xd5\xc9\x59\xa0\x19\xd7\xa9\x2a\x0b\xb6\x30\x64\x6a\x15\xb8\xb8\x64\xa4\x52\x37\x50\x3b\x86\xac\x09\x3b\x88\x97\x53\x88\x35\x88\xf2\x79\xd6\x08\x9f\x22\x01\x98\x44\x27\x45\x5c\xf1\xff\xfb\xbf\xff\x4f\xfe\x39\x18\xb8\xe5\xa7\x0c\x34\xcb\x81\x95\x4b\xea\xb2\x64\x39\xac\xad\x30\xa5\xb0\xef\xd5\xad\x2f\xa3\xaa\x76\xd1\x03\x69\xf5\xb9\xd0\x51\xdd\x15\xe4\xe1\xa5\x28\xc7\xac\x6a\x82\xda\xee\x99\x9f\xf6\x82\x99\x7b\x8d\xe9\xda\xe0\x43\x37\x08\xc4\xcb\x87\x1d\xcc\x5a\xaa\x4b\xd1\xad\x9c\x34\xac\x12\x11\x86\xd7\x05\xa1\x13\x0e\xe8\x97\x7d\x0a\x1d\xde\x62\x3b\xa1\x73\xb4\xaf\x38\x60\xb2\xe2\x06\xd2\xf2\xa6\x6d\x7b\x48\xab\x26\x19\xff\x53\x89\x6f\x7f\x07\x27\x39\xa5\x6f\xc0\x6b\x4d\xe6\xe9\x4b\xbf\xec\x97\xbe\xb4\xc5\x96\xf4\x55\xa9\xf4\x4a\xfa\x26\x53\x50\xd1\xf6\x3f\x3a\xd0\x36\x8f\x50\xaf\x91\x59\xfc\x32\xcb\x77\xaf\xae\x42\x55\xfb\xfa\x4e\x55\x4e\xfc\xae\x85\x2e\xe0\x32\x24\x6b\x5b\xaa\x8b\x56\x51\xaf\x51\xaa\xa7\xab\xf1\xa8\x58\xc3\x16\xf7\x50\xb3\xb2\x0c\x74\x6e\x60\x2c\xbb\x5e\x84\xd5\x4a\xe5\xdc\x84\x23\xad\xaa\x08\x58\xd8\xa0\x71\xae\xba\xe8\x8e\x97\xcb\x05\x34\x1c\x3f\x8e\x08\xc3\x11\x36\x84\x65\xc4\x5f\x1b\xac\x91\x41\x05\x5f\x1b\xf9\xc9\x74\x14\xd6\x09\xef\x3b\x26\xf1\x1b\x40\x9c\x05\xbc\x7d\x2a\xbf\x45\xcc\x7d\x65\x2c\x69\x7f\x54\x4e\xe0\x84\xd2\x06\xa7\x84\x91\xda\x4e\x7b\x24\x79\xa7\xa3\xfa\x1e\x13\x35\x4f\x45\xb2\x80\xec\x18\x4f\xe1\xd0\xd5\x05\xf6\xc6\x56\x8e\x06\xb9\x30\x15\x95\x90\x6a\x07\x2b\x5d\x2e\xac\xa8\x75\x38\x36\x6d\x40\x17\x3f\x43\xe7\xd5\x26\x24\x61\x93\x18\x91\x47\x4c\xe5\xdf\x6a\x58\xc2\x7a\xea\xcf\x5e\x04\xee\xdb\x66\x71\x22\x0d\x82\x3e\xba\x07\x77\xd0\x7f\xba\xd3\xf1\x91\x54\x67\x63\xcb\x34\x0d\x9f\xad\x5f\xfd\x33\xf6\x7e\xea\x31\xd4\x23\x2d\xe9\xc4\x2f\x89\x89\xb9\xd1\x34\xe4\x59\xeb\xa3\x41\x46\xfb\xdc\x65\xc1\x08\x95\x96\x03\xfa\x7c\x0b\x11\x23\x39\x2e\x34\x8d\x92\xa8\x51\x2f\x98\x76\x18\x28\x2f\x92\x8a\x37\x2b\x2b\x86\xdd\xfb\xf0\x0b\xb9\x5a\x8c\x32\x0a\x43\xa7\xfb\x35\x73\x08\x9d\xc8\xcb\xa5\x37\xbf\x50\xce\x13\xa3\xeb\xac\xa1\x9b\x28\x57\x30\x47\xe3\x8f\xd9\x39\x8d\xb6\xe0\x34\x2a\xc8\x58\x09\x64\xb6\xb3\xfb\xa8\xd2\x22\x99\xaf\xfe\x7e\xcb\x76\x80\x7b\x6a\x71\xd6\xd3\xbc\xda\x67\xb2\x40\x98\xbc\xd4\xd9\x23\x5f\x9e\xed\xcc\xfa\xcd\x88\x5c\xed\x3a\x01\xd1\x15\x33\xbb\xbf\xd5\xfb\xfe\x2e\x41\x74\x65\xb0\x87\x76\x24\x6f\x46\x72\xad\x4f\x25\x0d\x81\xa7\x27\x06\x86\x80\xc0\x97\x3c\xaa\xd7\x3c\x65\x7f\x19\xfc\x4f\x35\x1f\xf8\x23\xee\x8e\x09\x8d\x98\x30\x19\x36\x61\xc2\x12\xb9\xde\x6c\x9d\x30\xe1\x0d\xfb\xab\x92\x09\xec\x11\x6f\xc7\x85\xa6\x5c\x18\xd5\xbb\xc5\xab\xc8\xbd\xf3\x8d\xb7\x21\xf6\xb8\x8a\xd8\x5f\xd0\xf4\x23\xc4\x91\x1e\x76\x41\xfa\x75\x47\xec\x7a\x62\x4f\x2a\x43\x69\x90\x0b\x07\xd5\x1a\xcc\xa9\xef\x89\x92\xbf\x3d\xb8\xce\x59\x69\xf6\xe6\x7e\x73\xf1\x56\x52\x46\xf9\x3b\x76\x91\xeb\xf9\x7b\xd8\xf5\x42\x20\x6e\xe9\x59\xab\x79\x0f\xb9\x54\x0b\x55\x58\x05\x6e\x48\x8d\xcb\x9c\x1b\x4c\x2a\x1d\xe7\x27\x52\xab\x3b\xff\xf9\xfd\xf5\x9f\x9f\xa8\x4d\x4b\xda\x08\xed\xef\xd0\x81\xac\xdd\x92\xfb\x2a\x95\x6e\xe7\x4a\xee\xee\x4a\xd6\x53\x5a\xa5\xb6\xed\x9c\xca\xed\x9d\xca\xb9\xd2\x42\x15\x8e\xbf\xee\xbe\xe9\x12\xf9\xee\xa9\x37\x4e\x5a\x67\xb7\xeb\x94\xab\xcf\xf2\x68\xe4\x5d\xeb\x68\xe6\x6f\xc6\xf0\xcd\xd9\xbd\x39\xb3\x73\x86\x6d\x1d\x29\x7b\x61\xf7\x02\x5c\x43\x63\x0a\x61\x60\x30\x6f\x84\x3b\xa8\x67\x52\x43\xb6\xf5\xe8\x01\x55\xc8\xc2\x8e\x3e\xbc\x0c\x56\x7f\xcb\x2e\xbc\xd1\xbb\x57\xe1\xd1\x24\xbe\x6e\xee\x16\x6d\xe5\xb5\x93\xe6\xb9\x35\xa7\x5d\x1c\xf8\x90\x55\xbb\x4e\x52\xbd\x9f\xba\xac\x00\xf5\xa6\xde\xba\x62\x49\xb8\xb6\x3b\x38\x2f\x06\xb8\xff\x43\xb5\x8d\x29\x7d\xcf\x52\x3a\x96\x37\x5f\xa3\x6a\xea\xbe\x37\x5f\xb0\xca\xf8\xf4\xf8\x07\x0e\x31\xc2\xd8\xf7\x79\x02\x99\xd9\xbc\x46\x3a\xa5\x1f\x74\x3d\x22\xd7\x33\xaf\xac\x60\xfe\x94\x3d\xdc\x64\x27\x77\x90\x9a\x74\x3a\x2c\xa1\x77\xea\x43\x5d\xfe\x9b\x74\xd9\x92\x4b\x25\x64\xb1\xc8\x11\x1f\x2f\x9f\x9b\xbc\x5c\xb5\x69\x82\x5d\xa4\x50\x25\x96\x40\x16\x26\x4d\x69\x8b\x70\x31\x52\x9a\x17\x7d\xe7\x5e\xc0\xfc\x6d\x90\x17\x97\x67\xb9\x95\xf1\x74\xc9\x49\x9d\x6d\xc4\xcf\x9f\x19\x1d\x2d\xce\xb2\xd6\xa5\xea\x6b\x5f\x48\xfa\x6c\x73\x79\xec\x5f\x20\x67\x3c\xdb\x48\x1e\x87\x3e\x5a\x73\xee\x6c\x57\x20\x4f\x3f\x4c\xc6\x47\x37\x58\x0d\x9f\xd1\x87\x40\xce\x26\x7a\xf7\x12\xb9\xb4\xe0\xa5\xe1\x24\x75\x32\xd2\xc5\x9f\x1f\xea\xa7\x3c\x4c\x50\xee\x47\xe5\xca\xeb\x7d\x99\xa5\x1d\x6e\xb0\xce\x20\x5d\x1d\xf7\x22\x76\xe7\x62\xf5\xe1\xc7\xf0\xd5\xbb\x1f\xd4\xb1\x3b\xfd\xc5\xed\xc8\x33\xbe\x0f\x71\x3b\xdc\xc4\xf2\x54\xe6\x43\x6d\xf4\xce\x66\x91\x18\x9f\xf5\x5d\xb7\x0d\xc6\xb8\x4d\x00\xd4\xfb\x15\x80\x21\x2d\x1b\x09\x4d\xbc\x80\x23\xd7\x30\x9d\xbe\x6c\xd4\x7e\x79\xa6\xbf\xce\xf4\x87\xd6\x77\x3f\x3d\x15\x4a\xca\x8e\x46\x8f\x4f\x47\xa3\x3b\x4b\xf1\xfb\x7e\xe9\x3c\xae\xa2\x33\x77\xf7\x5f\x7a\xda\x30\x8b\xd6\xee\xfd\xef\x97\xd0\x93\x2a\x42\x13\xec\xcd\xe7\x10\x43\xf7\x07\xdd\x9a\xbe\x4c\x9e\x30\x7e\xd8\xad\xeb\x06\xe4\xde\xab\x22\x77\xaf\xa9\xed\xdf\x2f\x8d\xf7\xab\x68\xbc\x00\xd1\xb9\x0f\x1c\x46\xda\x67\xc0\xf3\x63\xac\x85\x52\x4d\x9f\x33\xe4\x07\xeb\x70\x6c\x6f\xd9\xe5\x3b\xba\x77\x2e\x5f\x35\x13\x8a\x70\xc3\x4d\x75\x10\x5c\x11\xb7\x9d\x3d\xe5\x96\x4c\xdb\xdc\x19\x9e\x5c\x7b\xa4\x70\x81\x32\x3e\x6a\xfb\xe6\xe4\x83\xbd\x5b\x7b\x47\x96\x39\x43\x78\x09\x88\xbd\x44\x01\x59\xd8\x24\x92\x5c\xf8\x49\x37\xb9\x73\xad\x78\x09\xd8\x64\xfc\x05\x39\xde\x47\x93\x99\xac\x6a\xdf\x5a\x75\x26\xa0\xae\x1f\x93\x5d\xc0\x98\x01\xab\x45\x14\x81\x61\xbc\x7d\x74\x62\xd8\xc6\xcb\xc0\x48\x50\xae\xdb\x67\x74\xe5\x87\xa4\x11\x21\x4d\xc7\x73\x89\x63\xd8\xd2\xfc\x95\xfd\xef\x19\x25\x76\xc9\xd7\xd7\x3a\x49\x4a\x6d\x9f\x2b\x7f\x5b\x6e\x7a\xdc\x05\x0c\xba\x9b\xe1\xb8\xd6\x75\xb3\xb9\xe3\x26\x77\xc9\xd4\x9a\x5a\x3b\xb8\x6d\x2e\x17\x5e\x64\x78\x91\xb1\x44\x11\x31\x7c\xef\x0a\xfa\x6b\xc3\x8d\x21\x95\xcf\x73\x80\xa7\x60\x0e\x0d\x07\xf9\x49\xee\xe1\x7d\x70\xd8\x14\xc4\x78\x47\xc3\xcd\x7d\x40\xd6\xfd\xed\xe9\xd3\xb7\x3f\x44\xf0\xac\x27\xd3\x60\xb2\xed\x85\xad\xa6\xc2\x38\xc3\x5b\x2a\x9d\xf1\x0e\x0a\x1c\x40\xff\x62\xa6\x3c\xda\xd1\xa3\x62\xdb\xc9\x04\x04\xc6\x8e\xac\xb9\x70\x43\x51\x9b\xc2\x5d\x12\xfc\x07\xfb\x74\x99\x04\xa6\x17\xcd\x83\xad\x73\x5c\x94\xf9\x39\xb5\x20\x24\x75\x76\xf2\xd2\x20\xab\xac\xe4\x9b\xa5\x13\x6e\x9a\x9c\xf9\xc8\x47\x80\x53\x7c\xab\x2b\xfc\xa7\x7f\xa2\x78\x11\xbd\xfb\xda\x70\x85\xf7\x66\x34\x34\x16\x20\xb2\xa9\x5e\x69\x73\x5c\xcc\xcc\x9b\x94\x03\x7a\x16\x44\xb2\xa3\xd0\x0b\x02\x06\xdc\xf9\xb9\x6f\x69\x25\xba\xd8\x80\x93\x29\x21\xb6\xc9\x48\x82\xc9\xf9\xe8\xad\x1f\x36\x2e\x0c\x50\x11\x1e\x48\xcf\x1b\x5b\xcc\x4a\xe1\x4d\xc8\x47\x03\x1d\x95\x4e\x9b\x43\xcb\xf4\xbd\xdc\xef\x2a\x34\x4c\xba\x7d\xaf\xe1\x69\x0e\x13\xd3\x4a\xc4\x09\xf3\x1a\xdb\xfc\x91\x04\x13\xf3\x0b\x9a\x0e\x92\x43\x41\xf2\xb8\xa9\x6f\x5c\xef\xae\x21\xbe\xf6\xe0\xaa\xea\x16\x55\x3e\x27\x6f\x71\xe4\xb9\xf8\x83\xda\xe1\x9f\xc9\x6e\xd1\xfb\x31\x81\x6b\x1e\x88\x1e\x35\x19\xfe\xc7\xe4\xd9\x46\x83\x2f\xbb\x0c\xc4\x49\x15\x87\x6c\x3b\x9d\xe5\x3d\x4f\x35\xca\xf1\xad\xf3\x51\xf6\x5b\x36\x60\xa4\x3c\xf6\x46\xc4\x68\x04\xd0\x7a\x8b\x33\xcc\x67\xbb\xd7\xce\xb0\x90\x8a\x7b\x2f\xd6\x6a\xde\xe9\x57\x3b\x85\x82\x83\xa8\xc9\x14\x8a\x5a\x75\x4f\x55\x53\x0a\x67\xca\x06\x87\x12\x01\xd1\x95\x3d\x67\x6a\xd0\x76\x0f\xa6\x5f\xd0\xcb\xe0\xd5\xf0\xe7\x9f\xeb\x21\x0b\x2c\x93\x97\xe5\xb2\x4c\x17\x90\x78\x69\x5a\x26\x17\xf7\xcd\x14\x6d\x96\x10\xc9\x26\xac\xd3\xb7\x2d\xd3\xb0\x0d\x95\x3e\x9e\xf3\xa0\x56\x16\xbe\xb8\xc7\x87\x66\xa4\xdf\x0e\xb9\xb5\xc0\x54\x67\x8c\xc1\xda\x2c\x7a\xf8\x45\x04\x4b\x5e\xaf\x4f\x75\xe8\x3e\x4e\xd9\xea\x5d\xb3\x49\x84\x03\xbd\xbc\x8f\xd4\xac\x49\xd2\x0a\xcb\x34\x2f\x56\x42\x4a\xd6\x49\x31\x06\xc9\x2c\x96\x9f\x6a\x17\x3a\xc5\x16\xc6\x12\xf8\xbe\x7a\x14\x2d\x23\xb0\x02\x56\xc0\x2e\x53\x27\x94\x99\x13\x09\x31\x43\xa0\xa6\x24\x07\x8e\x97\x8c\x0c\x69\x36\xb1\x71\x06\x09\xf0\xfc\x48\x31\xe7\x26\x0d\x87\xc0\x4b\x2b\x35\x54\x3d\x47\x78\xd8\x70\xd2\xff\xbf\x19\x74\x04\x72\xa7\x4a\x06\x11\xf6\x90\x2a\x43\x43\x63\x6f\xe9\x7b\x9c\xef\x61\x04\xf1\x35\x74\x8d\x7c\x6a\x97\x72\xb0\x58\x3c\xcb\x1e\xcd\x27\xa1\xbc\x79\xf1\xb5\xc2\x48\x74\x6b\x83\x2e\x65\x96\x55\x8e\x3b\x79\xba\x30\x74\xef\x87\x6d\x0c\xfd\xcc\x8b\xae\x9a\x0e\xfc\x69\xb8\x80\x4b\x88\x81\xcf\x5f\x6a\x30\xfe\xe2\x37\x1b\x6e\xf8\x0d\xf7\xb9\x2e\x30\x55\xd1\x88\x78\x24\xd3\xc1\x0c\xee\xdc\xab\xe5\xc7\x14\xb8\x73\x48\x05\xd3\x6a\xe1\x91\x54\x3c\x26\x14\xd5\x40\xed\x54\x44\xf9\xab\x69\xba\x41\x48\xbe\xb8\x14\x48\xf9\x7a\xdc\x7e\xcf\x4a\xc1\x28\xd2\xf6\x4e\x51\x40\x80\xc7\x6c\x04\x45\xc8\x98\xd4\x01\x90\x80\x0f\x53\x85\x22\xf4\x3d\x62\x27\x67\x57\xbd\x37\x09\xa9\xd3\x5f\x7c\x38\x87\x81\xab\x1c\x39\x04\xce\x42\x18\xa7\x58\xa0\x2b\x20\xa0\xb1\x69\xbf\xac\x10\x8c\x46\x69\xa7\x9f\xc6\xc7\xbc\xd9\x7d\x4b\xa4\xff\xa4\x38\xf0\x86\x38\xdf\x15\x9e\x10\xfa\xb0\x90\xfa\x9f\xad\x64\x50\x5c\x55\x38\x13\xda\x56\xf2\x73\x0a\x1c\x94\x29\x13\xe9\x57\x35\x3d\x30\x5d\x51\x46\x01\x64\x8d\x30\xfb\xb6\x6c\x8d\xab\xcc\xf4\x2b\x2d\xdb\xc2\xd4\x4d\x07\xf9\x08\xdb\xd1\x8a\xe5\xab\xe4\xc7\xa3\x20\x8a\xe6\xcb\x9c\x35\x95\xb7\x65\xf3\x24\xcd\x03\xeb\xd3\xe7\xcf\x85\x3a\x22\x9f\x2b\xb1\x62\xea\xc5\x9f\xa0\x8b\xec\x02\xcb\x91\xab\xca\xf3\xd5\xe5\x3c\x2f\x35\x20\x27\x51\xe6\x96\x82\x3e\xc5\xb1\x2e\xc9\xb1\xea\xce\xba\x6f\x1d\x68\x53\x53\xab\xde\xdb\xab\xa9\x46\x72\x5f\x45\xb3\x74\x09\xce\x89\xeb\xa6\xd8\x60\x32\x20\x58\x0e\x29\x2c\x45\x2d\x0a\xc2\x98\x9c\x66\x72\xad\x09\x60\x98\x06\xf8\xab\x3b\x90\x98\x17\xd9\x5c\xfd\x94\x73\x19\xd8\xd7\x22\xc7\x41\x03\x2a\xd6\xc3\xe1\x50\x95\x79\x50\xb6\x1f\xed\x10\xc9\x76\x88\x64\x1b\x07\xc4\x66\xb7\xe6\xaa\x52\x2d\xcd\x3c\xf5\x66\x1f\x90\x64\xdf\x07\xae\x87\x92\xec\x47\x8f\x4f\x47\x87\x77\x83\x49\xf6\x1d\x53\xf9\x58\x47\xe5\xbb\x47\xc8\xfa\x7e\xb9\x70\x38\x6c\xc2\x85\x3b\x82\xc8\xfa\x8e\xd9\x30\xaa\x14\x39\xb7\x82\x91\xf5\x1d\x53\x7b\x5c\x45\xed\xdb\x01\xc9\xfa\x8e\xa9\x3d\xa9\xa2\xf6\x2d\xa1\x64\x75\xc5\xc9\xda\x21\x65\x75\x62\x71\x09\xc5\xb5\xb9\xa2\x7a\x0b\x50\x59\x29\xa2\xe9\xbd\x04\xcc\xea\x01\x32\xab\x17\xd0\xac\x9e\x61\xb3\xee\x25\x70\x56\x95\x55\xe9\x4f\x0d\x9e\xa5\xda\xa5\xac\x4c\x50\x51\x10\xdf\x09\x76\xd6\x9f\x1a\x3d\x4b\x49\xea\xc3\xa6\xa4\xee\x13\x3c\xab\x47\xf8\x2c\xfd\xc6\xa9\x3b\x00\xdb\xc4\xd3\xf7\x50\x72\xa1\x91\x24\x6b\x0a\xc1\xd5\xa0\xa9\x46\x30\x5c\xc6\x5d\x40\x71\x19\xdf\x08\x1c\xd7\x26\x8b\xa9\x2e\xb5\xe4\x4f\xc9\xf7\x5a\x54\xae\x9e\x79\xdf\x08\x9b\x6b\x53\x3e\x56\x26\xf6\x54\xbb\x5d\x14\x8d\x6f\x18\xef\x96\x17\xd9\x1d\x63\xde\xa4\x10\xd5\x6d\x46\xbc\xad\x9c\x00\x3e\xbd\xfa\xe9\xe9\x2d\x01\xca\xa4\xb3\xbc\x07\x68\x32\xc9\x58\x4a\x50\x32\x19\x2b\xe8\xc7\x29\x8a\x60\xd9\x1f\x7f\x2d\x45\x09\xb3\x11\xdc\x3e\xa6\x4c\xd2\x65\xc7\x45\x76\x3f\x72\x36\x5e\xed\xc7\xb3\xfd\x6b\xb2\xdf\x38\xd4\xff\x9b\xc9\xc7\xd8\x2c\x17\x03\xc7\xdb\xc6\xf6\x3b\xfd\x29\x3a\x09\x9d\xab\xc3\x0d\x76\xfe\xfb\x38\x30\x80\xf1\x45\x4a\x76\x52\x06\xa2\x6e\xbe\x75\x35\xc8\x67\xd2\x7d\xbe\x88\x70\x96\x5d\xe7\x03\xb8\xaa\x47\x37\x6b\x02\x56\xd6\xe7\x31\x82\xe3\x0e\x78\x64\xf7\x63\x47\x83\xb7\x17\xfe\x9b\xe7\xcf\x48\xb3\x75\xb3\x27\xd6\x8c\x0f\xd6\x28\x26\x82\x83\x7a\x8d\xbc\xf9\x8a\xe9\x53\x08\xe8\x4a\x30\x76\x12\x0e\x9d\xe5\x42\x3a\xe6\x19\xc2\x53\x56\x42\x3a\x55\x18\xb7\x9c\x77\xb7\x7a\xf5\xf2\xa7\x17\x8b\xbd\x8d\xd3\xb5\x2a\xb5\xe0\x8d\x35\x5f\x62\x9c\xc4\x64\x81\xb0\xf7\x95\xaf\x85\xa2\x4a\xd8\xb9\xb6\x6a\x39\x66\x83\xa0\x2b\x18\xf0\xb5\x88\x21\x69\x70\xcb\xfc\x05\xc5\x38\xb1\x62\x94\x02\xe5\x79\x68\x3c\x73\xd5\x40\x42\xbc\x60\x1e\x0d\x58\x07\x3a\x03\xca\xc9\xe9\x6b\x83\x8f\xa0\x26\xff\xc6\x45\x30\x32\x02\x44\x8c\x10\xa3\x6b\xcf\x85\xec\x86\x86\xe1\x6f\xb1\x87\xa1\x6b\x84\x10\x2f\xbd\x88\xab\x18\x06\x0b\x49\x74\x08\xaf\x16\x0b\xdc\xa5\x17\x78\x11\xc1\x80\x20\x6c\x78\x33\x83\x88\xbc\x6e\x10\x18\x10\x63\x84\x07\xad\xaf\x5b\xe7\x62\x04\x20\xb8\x7b\x32\xac\x3c\xb2\xe0\xd3\x8e\x3c\x02\xe5\x79\x1b\x04\x19\xd7\x1e\x5c\xb1\x09\xea\x26\x95\x5c\x34\x6e\xe9\x5a\xa1\xdf\xf6\x1b\x88\x90\x05\x58\x4e\x63\x3c\x87\xd8\x5e\xc2\x20\xde\xb2\xfc\xf8\xf8\xfa\xd7\x7d\xef\xd9\x12\x35\xd7\x01\xaf\xe7\xca\x8d\x5a\x98\x95\xf8\x95\x32\xf0\x07\x74\x63\x5a\xe6\xd0\x18\x1a\xa3\x21\xfb\xff\xe4\xc7\x9b\xa5\xcf\x14\xfb\x05\x21\xe1\xe3\x47\x8f\x56\xab\xd5\x60\x35\x19\x20\x3c\x7f\x34\x1e\x0e\x87\x8f\x58\x4f\xba\x1f\xd9\xbb\x8f\x34\x72\x0a\x43\x87\xe4\x06\xc9\x06\x90\x74\xbb\x96\xff\x58\x79\x2e\x59\x98\x96\x29\x0d\x6b\x01\x45\x3c\xda\xe8\x40\x65\x47\x6b\xdc\xc7\xde\xf8\x0e\x3a\x39\xda\xeb\xda\x49\xff\x9b\x24\xbf\x04\x36\xd8\x21\x65\xc5\x60\x9b\x5b\xe4\xe5\xa9\xbb\x7a\x7d\xf9\xa2\xe1\x35\xbc\xe2\x88\x2d\x4e\x4b\xbd\x78\x1b\xbe\x6d\x47\xbf\xc5\x00\x43\x43\xfd\xf5\xa8\x62\x51\xf5\xd2\xc1\xf8\xb6\x3b\x98\xdc\x76\x07\x7b\xb7\xdd\xc1\xfe\x6d\x77\x50\x25\x39\x7a\xe9\xe0\xf0\xb6\x3b\x38\xba\xed\x0e\x8e\xef\x42\xee\x15\xba\xde\x40\xf0\xf1\xdf\x7c\x34\x47\xdb\x36\x40\xfc\x73\xf2\x1a\x41\xd4\x5c\xe6\xe9\xd4\x02\x69\x46\xbd\x9e\xfa\x65\xe5\x62\x3c\x3c\x18\x4c\x46\xc6\xc1\x70\x30\x3c\xd4\x88\xd6\x79\x75\xde\xac\xee\xe7\xec\x8a\x02\x0a\x81\xb7\xae\x69\x99\x6f\x0e\x8f\x06\x7b\xc7\xd6\x78\x34\x38\x9a\x7c\xdc\x3b\x18\x0c\x0f\x17\xf6\xfe\xe0\xf8\xda\x9e\x8c\x17\x47\x83\xe1\xc1\xeb\xe3\xf1\xe0\xf0\xd8\x9a\x1c\x0d\x26\xc7\x1f\x47\x7b\x83\xd1\x82\xfe\x3a\x19\xbf\x38\x1e\x0e\x0e\x26\xbf\xea\x5c\x75\x95\x5d\x8e\x46\x93\xc1\xf0\xd8\xda\x3b\x18\xec\xef\x3b\xf6\x91\x35\xb4\x47\xc3\xc1\xe8\xc8\xde\x1b\xec\x8d\xc5\xc7\xe3\xc1\x78\xfc\x71\x32\x1a\xec\x4d\x9c\xa1\xbd\x37\x38\xb2\xc6\x83\xd1\x01\xfb\xd6\xca\x1e\x88\xd8\x47\x8b\xbe\xc6\xbf\xb5\xe8\xb7\xd7\xfb\x83\xe3\xd1\xe9\x68\x3c\x19\x8c\x0f\xad\xbd\xf1\x60\x34\xb1\x46\xe3\xd1\x60\x34\xe2\x1d\x5a\x72\xef\xbf\x2e\x87\xf6\xe8\x78\x30\xd9\x77\xec\xc9\x60\x34\xb6\x68\x5f\x93\xb1\x35\x1a\x4c\x8e\xf9\xa7\xbd\xeb\x83\xc1\xf8\xd8\x19\x5a\xe3\xc1\xc1\x9e\x35\x1a\x8c\xad\x3d\x8b\xff\x10\xd1\xff\xd8\xf4\x49\xf6\x85\xbd\x47\x87\x3b\xde\x3b\x1d\x8d\x0e\x07\x7b\x23\x6b\x7c\x34\x38\xb0\x46\xa3\x83\xc1\x78\x64\x8d\x0f\x07\xe3\xa4\x5b\xfa\xb9\x23\xd5\xf6\x46\x83\xe1\x91\xc5\x78\xf4\x71\x7c\x3c\x38\xdc\x77\x86\xf6\x68\x30\xde\xb7\x07\xfb\x13\x7b\x34\x38\x3a\xcc\xfe\x01\xa3\x83\xc1\xe8\xc0\xe2\xff\x0e\xe9\xff\xd9\x07\x83\x91\x35\xce\x38\x7c\x74\xf0\x71\x3c\x1e\x1c\x1c\x2f\xf6\x06\x7b\x07\xfe\x60\xff\xc8\x1a\x83\xf1\x64\xb0\x37\xb1\xf8\xbf\xf4\xa5\x91\x75\x3c\x98\x1c\xd8\xe3\xc1\xde\x3e\x25\xf2\x1e\xff\x87\xff\xc2\x88\x3e\x1e\xec\x5b\x63\xfa\x46\xfa\xf8\xde\xc8\x1e\x0f\xf6\x9d\xc9\xe0\xe8\xd8\x1a\x5a\xfb\x83\x31\xe5\xdc\xe1\x1e\xff\x74\x30\x38\x1e\xf1\x11\xbc\x18\xed\xef\x0d\x8e\xeb\x67\xb1\x3f\xd8\xb7\xd8\x3f\xa5\x39\x74\xa4\xe1\xd1\x78\x70\x24\x68\xb8\xa0\xeb\xca\xb7\x07\x7b\xb4\xdb\xfd\x23\x30\x62\x0b\x9d\xff\xcb\xa6\x63\x1f\x5a\xe3\xc1\xf0\xc0\xb1\xf7\xe8\x4a\x62\xbd\xdb\xe3\xc1\xf1\x84\x7d\x38\x64\x6b\xe5\x70\x9f\x3d\x62\x1f\x50\x02\x1e\x0c\x8e\xc6\xec\xd3\x8b\xd1\xe1\xe1\xc7\xc9\x70\xb0\x7f\xe0\x0c\x29\x39\x8e\xed\xc1\xe1\xd8\x9e\x0c\xf6\xe9\x0a\x3f\xa0\x1f\xc0\x64\x3c\x38\x1c\x59\xfc\xdf\x64\x6e\x7b\x47\x83\xc3\xb1\xcf\x9e\xa5\xcf\x01\xda\xc2\xd8\xe2\xff\x72\xfa\x1e\xd9\xa3\xc1\xc8\x39\x1c\x4c\x28\x17\x8e\x29\xf1\x07\xfb\xc7\xec\xc3\xd1\x60\x6f\xff\xd7\x37\xa3\xc3\x43\x6b\x72\x38\x18\xef\x2d\xd8\xea\x75\xec\xd1\xe0\x98\x2e\x6a\xca\x41\x4a\x5e\xc6\xc9\xf1\x60\x12\x0d\xf6\x27\xf4\xbf\xfb\xd9\x3f\xe0\x78\x30\xa6\xdb\x87\x8f\xc6\xe2\x5b\xb1\xf3\x52\x3d\xa2\xb3\xa1\x43\xdf\x3b\x74\x86\xf6\x3e\xdd\x9a\xe3\xc1\xc4\x3e\x1a\x8c\x0f\xac\xc3\xc1\x21\xff\x44\x89\x30\x1e\x5b\xfc\x5f\x3e\xc1\x83\xc1\x78\x6f\x70\x70\xf8\x71\x34\x19\x8c\xf6\x7c\xba\x4a\xed\xc1\x51\xba\x6a\xf7\x06\x07\x07\xbe\x3d\xd8\x3f\xb2\xc7\x94\x5b\x93\x91\xc5\xff\x15\xdc\xa2\x5b\x91\xce\x90\x32\x8c\xb2\xe7\x70\x30\xb6\x29\x37\xd9\x87\xa3\xc1\x68\xf4\xeb\x72\xb4\x67\xd3\x8d\x0c\xc6\x07\xd6\x38\xd9\x18\x74\x74\xf6\xe0\x60\xec\xd8\x63\x2a\x24\x86\x8c\xc7\x16\x67\xb5\x45\xa5\xc2\x35\x1d\xac\x33\xb4\x28\x31\x07\x87\x63\x8b\x92\xee\xe8\xc8\x9a\x80\x23\xba\xa8\xd9\x3f\x9c\x68\xfb\x83\xf1\x84\x35\x52\x4b\x35\xe4\xaf\xe7\x1a\x23\xe4\x0c\xb8\xdc\xc8\x44\xbf\x0c\x91\xc7\x10\x56\xcc\xc9\xd1\x60\x38\x36\xc6\x93\xc1\x68\x62\xf0\xcf\x93\xc9\x60\x78\x64\x4c\x46\x83\xe1\xb1\x31\x39\xa4\xff\x8e\x0f\x06\xe3\x7d\x63\xb2\x97\x7d\xa6\xa7\xc9\x01\xfd\x3c\x39\xe2\x27\x8b\xb1\x3f\x1e\xec\x1d\x1b\x7b\xfb\xd9\xe7\xd1\xfe\x60\x34\xa2\x9f\x87\x23\xf1\x59\xea\xab\xc3\x3c\xd2\x21\x8f\x0f\x06\xc3\x89\xc1\x7a\x1d\x8a\x96\x47\x87\x83\xfd\x03\x63\xbc\x3f\xd8\x9b\x18\x4c\x24\x1b\x4c\x4a\x1b\x4c\x0e\x18\xe3\x23\x3a\x23\xfe\x79\xc4\x3e\xf3\x91\xd0\xc5\x90\x1b\x55\x71\xe4\xfc\xf3\xf0\xd0\xc8\xba\xdc\x68\xe0\x63\x3a\x82\xc9\x98\xd1\x91\x7d\xde\x1b\xd3\xd1\x8c\xf6\x06\x47\x87\xc6\xde\x61\xf6\x79\xcc\x3f\x1f\x0e\x8e\xd8\xac\xc6\xfb\xc6\x70\x30\xda\x17\x03\x1b\xa6\xff\xdd\x4b\x06\x27\xb3\x24\x63\x55\xd6\x9d\x7a\xd4\x77\xe4\x84\x56\xa8\x71\xed\x75\x41\x96\x7a\x8e\xb7\xed\x7a\x7e\xf9\x74\x8d\x9f\x87\x8b\xa8\x1e\x6c\xe5\xee\xbc\x0a\x75\x86\x5f\x2f\x7a\x96\x58\xe9\x1a\xc2\x3b\xe5\xbc\x11\x2a\xcb\xfe\xe7\x76\x01\x2c\xad\x73\x00\x8b\xb9\x7f\xf3\x04\xdf\xa9\x59\xda\xdf\x2e\xd1\xef\x3e\x24\xfa\x89\x1d\x5b\x80\xfb\xee\x54\x5c\xf8\x4f\x9a\x44\x50\xa6\x50\x29\xfd\x31\x97\x38\x00\xb4\x65\x14\x52\x84\x82\x5d\x09\x73\x15\x59\x4b\xc1\xfa\xb7\x86\xe5\xff\xdd\x91\xf6\xa8\x8a\xb4\x5e\xf4\x1a\x02\x17\x62\x0d\x71\xb3\x1f\x77\xc4\x55\x12\xf7\xb8\x8a\xb8\xc0\x75\x31\x8c\xb4\x9e\xc6\xec\xd7\x1d\x71\x55\xc4\x1d\xab\xea\x6a\x67\x42\x01\xe2\xd9\x39\xc2\xba\x40\xf5\x50\xfc\xb4\x23\xad\x92\xb4\xaa\x42\xda\x29\x69\x5d\x40\x00\x8f\x7f\xd1\x10\xf7\x2c\xf7\xc0\x96\xab\x78\xdc\x9b\x74\xb4\x32\x95\x27\x5d\xd5\xa9\x14\x35\x85\xb6\x68\x03\xaa\x5d\x17\x52\xd0\xe6\x2c\xfd\xb0\x9c\x69\x76\x0b\xc9\x61\x35\x6e\x8d\xfa\xd4\x30\x73\xf3\xc4\xb0\x9a\x31\xb4\x4b\x0b\x33\x6f\x3d\x29\x8c\x5f\x87\x9a\xe5\x83\x55\x47\xb6\xff\xb9\x72\xc1\x4a\x5b\x64\x32\x6e\x5a\xd1\xbf\xef\xfc\xaf\x5e\x89\x7b\x2f\xb2\xbf\xca\xc4\x9d\x34\x25\x6e\x9f\x19\x5f\x66\x5f\xf9\x5e\xea\x8d\xa1\x30\x7a\xa9\x73\xbd\xac\x82\xc9\x84\x27\x09\xa1\x98\xf8\x90\x98\x0d\xab\x06\x2b\x43\xb4\xfa\x8e\xed\x94\xf8\xd6\xc9\xe2\x76\x2f\x0a\x85\x1c\xbf\x9b\xde\x9c\x45\xa8\x21\xfa\xbe\x32\xf0\xfb\x42\x18\x10\xf3\x61\xdf\x9d\x8d\x9a\x39\xea\x74\x27\xee\xfd\x88\x8f\x5e\xbf\xfa\xf2\xe1\x0d\x3c\x5e\x34\x23\xef\x16\xa3\x9e\x37\xd9\x01\xdd\xa3\x9c\x93\x06\xf8\x7f\xb7\xcd\xab\xe1\x62\xfc\xf6\xed\xb9\x3a\x04\xc1\x24\x60\xde\x10\xcf\x9b\xef\x87\xf6\xb5\x73\x2a\xf4\x24\x07\xf9\xf1\xb2\x0c\x98\xdc\xe8\x2d\xc3\x8b\xec\x05\xf0\x67\x65\xcd\xaa\xe6\xf5\xfa\xaa\x53\x35\x6f\xb2\xc8\xec\x72\xd8\x19\xff\xdf\x25\x98\xe7\x11\x07\x35\x7e\x1f\x61\x57\xd6\x29\xb0\x86\xd0\xb5\x09\x98\x6b\x74\xc7\xa4\x1d\x66\xba\x6d\x52\x58\xaf\xba\xfc\x5e\xf6\x5c\xa9\x35\x6e\x2b\xac\xd2\x0a\x95\xaf\x7d\x4c\x20\x36\xbb\x1e\xa6\xc5\x1e\xd8\xad\x4a\x5b\x6c\x2e\x85\x77\xcd\xf4\xde\x4b\x46\xbc\x76\x10\xaf\xb5\x64\xd2\xcd\x38\xd3\xcc\x8b\xa8\xe5\x75\x30\x2a\xba\x76\x1a\x82\x91\x76\xd1\x40\xf4\x4b\x73\x2b\x0e\xbf\xbc\xbc\x54\xcb\xdb\xbf\x54\xca\x5b\x1e\x4b\xbf\xed\x3c\xd3\x57\x2f\x83\xf7\x8f\x2e\x3e\xde\x5a\xd6\x50\x7b\xa5\xb1\xac\x0a\xb6\x64\x8c\x48\x52\xe8\x70\x04\xf2\x37\x1f\x89\xf4\x86\xed\x72\x66\xfe\x7c\xe1\xff\xf2\x6a\xfc\x5a\xe3\x86\x45\xbe\xe7\xac\x9b\x96\xb5\x10\xe9\x1a\xb7\x90\x0c\xd8\xbc\x66\xc2\x89\xe3\xc0\x28\x62\x09\x2d\x18\xf9\x46\x3a\xa6\x36\xf1\x9f\x9a\xc3\xb7\xc5\xf1\x4b\x56\xc8\x26\x0b\x0f\xbb\x55\x25\x0f\xd4\xe9\x48\xe5\x43\xf8\xd4\x8f\x23\xba\x6c\x0d\xb2\x00\xc4\x88\x23\x68\x14\x26\xf9\xda\x8b\x48\x94\x64\xf6\xf0\xa4\x18\x96\xdb\x12\x42\x3c\x43\x78\x69\x38\x10\x13\xe0\x05\x06\xab\x49\x30\x30\x7e\x58\x8b\x8c\x20\x2f\x98\x1b\x80\x3f\x5f\x01\xda\x30\xb4\xcc\x0b\x96\xe8\x64\xe4\x2a\xe3\x5b\x06\x3d\x57\x8c\x59\x4c\x62\xcc\xd3\x8a\x60\x44\x8c\x95\xe7\xfb\xec\x1a\x1d\x93\x05\x0c\x88\xe7\x00\x02\x5d\xcb\x08\x11\xa1\x7f\x01\xdf\x5f\xb3\x9f\x10\xf6\xbe\xd2\xde\x31\x04\xae\x01\xf8\x6c\x08\x32\x80\xeb\xb2\x42\x11\xc0\x37\xbc\x80\x97\x8e\xf5\x50\xd0\x65\xc4\x9c\x42\x08\x17\xc7\x4c\x16\xd0\x60\x8b\xda\x83\x91\x01\x02\xd7\xc0\xb1\x0f\x23\x63\x86\x30\xc7\xaf\x60\x2d\x27\x93\xa0\xf7\xde\x12\xa2\x41\x53\x95\x28\x40\xc4\x9b\x79\x02\xea\x9e\xc1\x11\xcf\x50\xa5\xbe\xd2\x7a\x35\xb6\x78\xbb\xd6\x5e\xa7\xc9\xbb\x63\xbb\x8b\x8e\x7e\x4f\x6a\x81\xed\x29\xe3\x82\x20\x2c\xd6\x69\xa5\xfa\x13\x16\x59\xc3\xb7\xa4\x01\x30\x34\x22\x82\x30\x74\x0d\x87\x61\xb4\xd9\x91\xe7\x42\xc3\x4b\x19\x0b\x72\x23\x5a\x60\x38\x13\x51\xbb\xd1\xe3\x47\x8f\x5c\x78\x0d\x7d\x2a\x11\x07\x4b\xf4\xd5\xf3\x7d\xc0\x22\x78\x61\x60\x7f\xb8\x78\xe4\x22\x27\x7a\xf4\x33\x9c\x3e\x3a\x39\x7f\xf9\xe8\x67\x2f\x70\xd1\xea\x91\x8f\x1c\xe0\x4b\x43\x16\x63\x61\x5f\xb3\x61\xe4\xa7\x32\x30\x58\x2d\x53\xb6\x10\x42\x88\x23\x2f\x12\xb9\x71\x7c\x81\x00\x07\xa3\x28\x32\x22\x98\xe4\xcf\xfd\x82\x62\xc3\x01\x81\xb1\x04\x41\xcc\x16\xb9\xe3\x43\x80\xe5\x57\x16\x10\x43\x2d\x36\x46\xd5\xf7\x8d\xe4\x4d\x72\x1d\xa4\x9f\x97\x5e\xe0\x2d\xe3\x65\x2d\xcb\xa7\x31\x21\x54\x12\x27\x72\x7a\x34\x96\xb0\x4f\xd8\x6f\xf2\xb2\x9d\xa8\x91\xd0\xd8\x3c\x19\x47\xc5\x01\xe5\xf1\x82\xe1\x99\xec\xa2\x74\xb8\xe4\x79\x7a\x9b\x2a\xbc\xa5\x8d\x68\x16\xab\x29\x07\x88\xe4\xb3\x34\x5f\x46\x1f\x81\xef\xb9\x66\x01\x26\xbf\x41\x19\x05\x1d\xd1\x67\x1e\xf4\x95\xc0\xea\xd2\xbb\x1c\xb2\xbe\x09\xfa\xbd\x4a\xb2\xb6\x5b\x02\xec\x08\xa8\x65\x36\x03\x65\x57\x23\x3a\xb3\x5f\x92\xf8\xba\x1c\xb8\xfb\x3f\xc5\xff\x6c\xc5\x3f\xc9\xff\x4c\x51\xf6\x80\xab\xe4\x96\x36\x41\x96\x3d\x84\x02\x31\x0e\x7d\x42\x7e\x09\x2d\x3e\x97\x62\xcb\x2d\xa3\x69\x89\x02\x93\x00\x3c\x87\x64\x90\xdc\x07\x3e\x8b\x69\x90\x75\x08\x59\x85\x96\x9b\x0e\x76\xcb\x9a\xf3\x79\x01\xfd\x30\xc7\xc0\x80\xf0\x14\x53\x78\x0d\xf1\x3a\x3d\x08\x09\x32\x5c\xaa\x6c\x2e\xbd\x00\xa6\x47\x5e\xea\x3b\xa9\x5b\xef\xe5\xd3\x41\x3d\x18\x66\xab\x0e\xd2\x49\x36\xde\xd5\x21\xf6\x78\x7d\x11\xed\xc6\xbe\x86\xd8\x9b\xad\x2f\x93\x04\xdb\x6c\xba\x24\xbf\x9b\x1b\x97\x03\xd4\x67\x52\x17\xf7\xe8\x06\x9b\xb3\x78\xe8\x46\x31\xd3\x03\x36\x3a\x3b\x2b\x3c\x54\x1b\x9e\xbd\x1b\x9c\xbe\x27\xb2\x7e\xf5\x57\xfd\x21\xac\x3f\x86\x7f\xc9\xce\x26\x2f\x32\xae\x29\x07\x98\x42\x04\xd2\x2c\xfa\x54\x2b\x9a\x21\xdf\x47\x2b\xaa\x7b\x25\xaa\xd3\xc6\x28\x4f\xea\x6f\x37\x58\x42\x2f\x83\xeb\xdb\x5a\x44\x2e\x08\xe6\x3a\xa3\xd6\xb7\xbc\x86\x9e\x01\xcf\x87\x2e\x95\x54\xf2\x6a\xea\xb2\x96\x2e\x53\xd5\x99\xcb\x6b\xe6\x16\x63\xc8\x60\x02\x7a\xc0\xcd\xc0\x08\x38\x58\x1c\x08\x0c\x78\xe3\x45\xf4\x22\xcc\xdf\xbc\x6f\x2b\xea\x3d\x74\x10\x6e\xb5\x9c\x5a\x33\xe0\x71\xce\x21\x2d\xf7\x5a\xae\xef\xa7\xb5\xfd\x55\x29\x06\xd2\xc9\xd0\x60\xd5\x16\x6e\x4e\x2f\xcf\x1e\x27\x4f\x39\xc8\x85\x25\x4b\x5c\x79\xcc\x40\xbc\x59\x5d\x7e\xab\xae\x7f\xae\x11\xb5\xef\x3d\xd5\x14\x6a\xfa\xae\xb4\xa4\xb6\xe1\xe1\xb9\x90\x85\x65\xcb\xdf\x9e\xa2\xe8\x54\x79\xc0\x84\x97\xbd\xb7\xcc\x25\x08\xc0\x9c\xad\xac\x36\xf1\x27\x35\xfc\xaf\x29\x25\xd4\xa5\x15\x5e\xdd\x66\x01\xb2\xeb\x86\x2d\x6b\x58\x2a\x81\x41\x05\x43\x36\xbd\xe4\x2a\x04\x22\x03\xf0\x8b\x55\x82\xc4\x71\x7b\x88\x8f\x45\xfb\x77\x9e\x07\x61\xca\xc3\x76\xb6\xf0\x0d\xa9\xde\x92\xee\xba\x52\x4e\xf9\xe6\xf4\x66\x76\xdd\x00\x6a\xc4\x7c\x1f\xc0\x98\x46\x4b\x0d\x56\xb5\x89\xf8\xa4\x5c\x18\x39\xd8\x0b\x73\x85\x9e\xea\x41\xc2\x55\xe4\xc9\xb7\xd4\xc4\x54\xdc\xa2\x9b\x43\xcb\x84\xcb\x92\x9f\x88\x5e\x06\xa4\x4e\x6b\xf1\x2e\x2d\x55\x17\x55\x2c\xcb\xa8\x8c\xf3\xc2\x52\x27\x40\x39\x29\x98\xf5\x4b\x23\x33\x9b\x76\x5e\x37\x9d\x0a\x4c\xdf\x66\x05\xc4\x9b\xba\x59\x36\xf5\xb4\xe4\xcc\xf2\x1d\xec\xfa\xd7\x73\x3b\x04\x84\x40\xbc\x75\xa3\xfe\xaf\xfe\x7c\x39\xde\xc7\x3f\x6e\x9c\x5b\x2f\xcd\xc9\x2c\x22\xbe\x94\x00\x6e\x7a\x46\xdd\x61\xf9\xf7\xa2\x5a\x86\x65\x8e\x06\xa3\x82\x94\x49\xa4\x14\x9c\x45\x0a\xc7\xa4\x58\x1d\x49\x01\x56\x9e\x06\xcb\xe6\x21\xcf\xd3\xa3\x87\x80\xeb\x81\x39\x0a\x80\x6f\x47\x04\x7b\x21\xb4\x27\xa9\x35\x84\xbf\xf1\x21\xf0\x58\x8c\x60\x1c\x41\x7c\x11\x02\x07\xbe\x0b\x3e\x70\x90\xd0\x3c\x28\x4e\x89\x42\xfc\x2b\x85\x2f\xc3\x5b\xb2\xe4\x2f\x19\x75\xc7\xf7\x82\xab\xc7\xc2\xc8\xe9\x02\x02\x1e\xb3\x67\x28\xad\xfe\x7e\xb3\xf4\xff\x7d\x0a\x22\x78\xb0\x67\x9d\xbf\x78\x3b\xfe\x75\xfd\xc3\xde\xf4\xe7\x9b\xd8\xf9\x3a\x0c\xc0\x8b\xf7\x43\xe7\x0c\x5d\xbf\x9e\xb8\x13\x77\xbd\x3f\x79\xb3\xde\xbf\x76\x96\xce\xf5\x9b\x2f\x27\xab\x37\xa7\xc7\x5f\xdd\xa5\x13\xbc\x7c\xe1\x86\xbf\xbe\x78\x8f\xce\x2f\x9c\x9b\x37\xa7\xce\x1c\x3c\xff\x18\xfe\x3a\x5e\x0c\xc5\xdf\x7f\x3f\xf5\x4e\xe6\xe7\x2f\x5e\xf9\xbf\x4c\x7e\x9a\xbb\x63\xff\xca\x7d\x3e\x3f\x7e\xf5\xf5\xe9\xea\xd5\xfa\x07\xf4\xeb\xcf\x7e\x00\x5e\xfc\x94\xfc\xbd\x04\x3f\xdf\x44\xe7\x17\xee\x04\x3c\xf7\x87\xbf\x5e\x38\xd7\xe7\x73\x34\x7f\x79\x76\xb3\xfa\xe5\x9f\xef\xd1\xcb\xe7\x3f\x1d\xbf\x1a\x0e\xc9\x9b\x8b\xd5\xcd\xcb\xe7\xab\xf5\xeb\xd3\xe1\x9a\xb6\xfd\xf2\x34\xfb\xff\xcb\xcb\x93\xe8\xcd\xe5\xc9\x7c\x7a\xf6\x74\xf5\xfa\x74\x78\xf3\xe6\x04\xe5\x7e\x7f\xf9\x74\xb8\xff\xfa\xec\x69\xfa\xfe\xab\xf5\x0f\x5f\xdd\x17\xaf\xae\xc1\xf8\xc3\xf1\xab\xf1\xab\xe8\x97\x9f\xdf\x62\xe9\x3b\x92\x8d\xf7\x4d\xf0\xfa\xeb\xde\x8f\xe7\x7c\xce\x7f\x57\xae\xaf\xd1\xf1\xf1\xf1\x23\x46\x68\xb3\x05\x68\x53\x05\x57\x8f\xf3\x8b\x31\x6f\xbe\xa9\x92\x54\x9b\x88\x29\x49\xca\x34\x96\x51\x18\x04\xd1\x0c\xe1\x65\xf4\x28\x29\xa7\x9e\x4a\x27\x7a\x5c\x4d\x21\xb6\xe9\x9a\xb3\x59\xe4\x8a\x3d\xc3\x60\xce\x84\x43\xf9\x45\x59\x96\x59\xa4\x2f\x69\x16\x3c\x21\xc9\xd7\xd2\x54\x82\x9a\xa9\x24\xc3\xb4\x3b\xcf\xa9\xd0\xc2\x7d\x9c\xdc\x26\xd3\xda\xfe\x84\x62\xe2\xf9\xd1\x23\xe0\xba\x36\x41\x36\x87\x21\xb8\x85\x73\x51\x6e\x86\x1f\x8e\x49\xe0\x6f\x34\xe0\x71\xdd\xff\x31\xfa\xdb\xdf\xf8\x0c\xfe\xfa\x24\xfb\xf1\xd3\xe8\xf3\x3f\xe4\x3f\x1e\x9b\xa6\x15\x3c\x79\x80\x9f\xc0\x01\xab\xb9\xfc\xc0\xfc\x87\xf9\xd0\xf2\x9f\x8c\x73\x03\xf5\x66\x0f\x4e\xe8\x72\x19\x78\x11\xfb\xef\x03\xf8\xf0\x21\x86\x24\xc6\x81\x01\xff\x78\x80\x1f\xfe\xeb\x5f\x79\xa2\x7b\xb3\x07\x17\xec\xec\x1d\x78\x04\x0a\x48\xc5\xc0\xe0\xd3\x7d\x00\x1f\xfe\xeb\x5f\xe6\x27\xc4\xfe\x30\x4e\x92\xb1\x7c\x36\x9f\x3c\x79\x22\x08\x12\x62\x44\x10\xbd\x2a\x0e\x08\xba\xe0\x81\xc7\x0e\xf0\x7d\xda\xeb\xef\x9c\x1b\x9f\x3e\x5b\xe0\xc9\x5f\x87\x56\xf4\xe4\xaf\x23\x0b\x25\x9c\x22\x78\xfd\xfb\x0c\xe1\x07\xf4\x19\x6c\xf9\x4f\xe0\xa7\xc2\x28\x3e\x3f\x78\xf8\xef\x7f\x7d\x00\xe8\x7c\x7d\x16\xaf\xfc\xe0\xe1\xc3\x81\x8b\x02\xf8\xf0\x6f\x7f\x7b\x10\x0c\xc2\x38\x5a\x3c\xc0\xdc\xb2\xfe\xd0\xfa\x2b\xf9\xd7\xbf\x02\x41\xcc\xbf\x3e\x79\x42\x1e\xfe\x3b\xed\xf2\xe1\xbf\xff\xe1\x00\xe2\x2c\x1e\x78\x0f\x7f\x8f\xe8\x10\xd0\x13\xef\x8f\x99\x17\x00\xdf\x5f\xff\x4e\x07\x00\xfe\xf5\x2f\xaa\xce\x3d\x79\xe2\x0f\x38\x89\xfe\xf5\xaf\xe4\xd3\x83\x87\xe9\x93\xde\xec\x41\xf4\x90\x2c\x30\x5a\x19\xe8\x8f\x3f\x04\x2d\x83\x3f\xfe\x78\x80\x2d\x5f\x26\xe7\xc3\xdf\xf9\x43\x01\x5c\x19\x97\xeb\x10\x3e\xc5\x18\xe1\x07\xa6\xb0\xfc\x19\x54\x28\x2e\x43\x61\x79\x8f\x08\x8e\x1d\xe6\x99\x0e\x50\x60\xb3\x39\x4f\xe9\x15\x3e\x88\x08\x08\x1c\x68\x3e\xfc\xe3\xc1\xc3\x87\x16\x78\x12\x7c\x1a\x7e\xb6\xa2\x27\xc1\xa7\xd1\x67\x0b\x3d\x31\xcd\x01\xaf\xb4\xfc\x00\x3c\x4c\x3e\x91\x87\x7f\x11\x34\xfc\x4b\xf4\xb7\xbf\x3d\x40\x7f\x7f\x62\xfe\x23\x7d\x2c\x7a\xf8\xf0\x2f\x62\xc0\xe8\x0f\xfd\x0e\x98\x62\x08\x5c\x07\xc7\xcb\xa9\xcd\xbe\xc8\xef\xea\xc2\xc3\x4c\xf7\x82\xd1\xa3\x10\xa3\xa5\x17\x41\x9b\xaf\x0e\xfd\x73\xbf\xc5\x10\xaf\x6d\xa6\x46\x47\x85\x2d\x6f\x05\x9d\x36\xd6\x17\x34\x3d\xa5\x83\x8d\x9e\x64\x9f\x65\x09\x00\x72\x5b\x8e\xcf\xff\x77\xe6\xd9\x7a\x0c\x07\x73\x48\x1e\x98\x04\x7b\xcb\x25\x74\x59\x7c\xdc\x43\x0b\xe0\x79\xf4\x98\xc1\x36\x47\xb4\xbd\x81\x08\x83\x16\xcf\x86\x3e\xf0\x82\x97\xae\xf9\xd0\x7a\x30\xb4\x82\xc1\x6f\xe1\x0f\xb1\xe7\xbb\x10\x3f\x7c\xf0\xfb\x17\x34\xa5\x4d\x44\x54\xe9\x4a\x9a\x0e\x92\x2f\x06\xec\x9a\x4b\x37\x90\x10\x04\xe6\x1f\x0f\x3f\xff\xf1\xc7\x5f\xa4\x31\x83\xbf\xc8\x93\x29\x0f\xda\x80\xff\x48\x06\x01\x30\x0c\xc8\x20\xb9\x8d\x3e\xfc\xc7\xa7\x54\xc8\x0d\x78\x19\xc9\x07\xbf\x0b\x86\x3c\xce\xbd\x62\x3e\x1c\x90\x05\x0c\x1e\x28\x1a\x07\x0f\xe0\xc3\x3f\x1e\xfe\xf1\xd0\xa2\x1f\x3e\x3f\xfe\x24\xfe\xf3\xb9\x62\xa1\x38\xc0\x77\x62\x7a\xd0\xdb\x21\x8a\x3c\xe1\x95\x29\x1d\x00\x53\x10\x79\x8e\xed\x62\x14\xba\x68\x15\xe8\x5f\xdd\x58\xfe\x6b\x5f\x48\x28\x6e\xfd\x0e\x83\x78\xc9\x37\xd7\xe3\xbf\x0e\xad\x39\x24\x8f\xa5\xfd\x2a\x08\x91\x92\xf2\x0f\x46\x0e\xdd\xdc\xc5\x7a\x06\xd3\x88\x60\xe0\x10\xdb\x47\xf3\x79\x3e\x46\x38\x21\x00\xba\x86\x18\x7b\x2e\xcb\x67\x72\xd0\x32\x8c\x09\xa4\x8a\x3c\xdf\x09\x3c\x3d\xa3\x9f\x9d\xa0\x38\xfe\x80\xb8\x7a\xbd\xf1\x6e\xbc\x20\x5d\x1b\x31\xf6\xe9\xf1\xc1\x77\xe1\xe3\x07\x43\x8b\xae\x25\x3e\xb0\x87\x0f\x4a\x14\xf9\x9d\x2e\x01\x1f\xcd\x9f\x41\xe2\x2c\x64\x82\xfd\x61\xc1\xc0\x7d\x37\x9b\x45\x90\x3c\x66\x06\x0e\xc4\x3e\x9f\xf3\x66\x79\xc7\x49\xbb\x0f\xcc\xf4\x59\xd3\x92\xda\xa0\x83\x84\x4f\x18\xa4\x6d\xfa\xc0\x5f\xd2\xf5\xfe\x3b\xc2\xde\xdc\x0b\x1e\xf3\x6c\x2a\x53\x74\xf0\x18\xfe\xf1\x38\xfd\x05\x06\x6e\xfa\xfd\x3e\xdc\xa3\x63\xcd\x02\x73\xce\x5b\xcc\x70\x16\xfb\xfe\x07\xec\x97\xc6\x1d\x63\xdf\x14\x17\x7f\xca\x53\x79\x8e\xa6\x65\x16\xfb\x52\x4c\x2e\x48\xf7\x26\x67\xb6\x37\x5b\x3f\xe0\x9d\x80\x28\xf2\xe6\xc1\x83\xdf\xff\xb0\x18\x01\x78\x1f\xfc\xb3\xdc\x0d\xff\xa6\xd8\x53\x2a\xcc\xb3\x73\x80\x3d\x17\x63\xdf\xa2\xba\x40\xf2\x25\xdf\xd6\x92\xf2\x03\x5a\xac\x6a\x7a\xf7\x8e\x6c\xfa\xf9\x4a\xbd\xb8\x69\x27\x0c\x83\xc3\x59\x97\x85\xfe\x97\x08\x05\x36\x43\xbe\x48\xb6\xe0\x56\xd6\xf9\x34\x9e\xcd\x20\xbe\xf0\xbe\xc2\xc7\xfb\xc3\xa1\xb5\x04\x37\xcf\x30\x58\xc2\x37\x1e\x9d\xeb\xe3\x7d\x6b\x56\x5e\xd8\x20\x0c\x61\xe0\xe6\xbf\x0b\x41\x1c\xc1\xfc\x57\x33\xa9\x9d\xa1\xb5\x00\x81\xeb\xc3\xf7\x30\x0a\x51\x20\x3f\xf9\xff\xb3\xf7\xb5\xdb\x6d\xe3\xd6\xa2\xff\xf5\x14\x32\xd7\xad\x42\xd4\x30\x2d\xc5\x9e\x34\xa3\x94\xe3\xa6\x9e\xcc\x9d\xde\x35\x93\x49\x1d\x4f\xfb\x43\xd1\xca\x82\x49\x48\xc2\x35\x04\xa8\x04\x18\xc7\xc7\xe6\x63\x9d\x17\x38\x4f\x76\x16\x36\x00\x12\x94\x28\x45\xc9\xd8\x39\x6d\xd7\x99\x1f\x19\x8b\xf8\xda\xd8\xd8\xd8\xdf\x00\xac\x1e\x46\x13\xb8\x8e\xda\xab\x5f\xb0\x56\x4c\x64\x05\xb8\x36\xea\x89\x47\x41\x97\x11\xc2\x66\x8a\x76\x59\x83\xef\xdf\xd9\xfd\xd2\x9e\xc7\x60\x10\x3b\x22\x2a\x15\x8d\x91\xa5\x19\x65\x58\x7f\xd8\x23\x1e\x22\x84\x7a\x5b\xcb\x1c\xa5\xc1\xe4\x0d\xe1\xe0\x95\xe4\xdc\x6e\x1f\x4d\xd4\x35\x8a\x0b\x3a\xa7\xc2\xaa\x64\x17\xa5\xd0\x6c\x49\x93\x25\x29\xae\xeb\x2d\xd5\xa7\x8e\xec\x09\x56\x00\xa5\xdf\xcb\x1d\x0d\x6f\x0a\xb2\x6a\x49\x22\xa3\x01\xbe\x78\x81\xd4\x0d\x33\x6a\x1a\x85\x43\x7f\x29\xb5\xc7\xd3\xee\x32\xa2\x68\x7f\x38\x0e\xb1\x67\x36\x8f\xd9\x0d\xa5\xa2\x49\x66\x14\x25\xfe\x92\xf3\xd8\x50\x08\xb4\x1c\x61\x92\xd6\x3b\xc2\x76\x93\x3e\xb3\x33\x84\x15\x37\x6a\x13\x48\x43\x90\xe4\x8e\xa8\x50\x7c\x07\xcb\x04\xb4\xb6\x5d\x5a\xaa\xa4\xbd\xd8\xb0\xcb\x7a\x00\xe3\xb3\xb1\x1b\x6b\x34\xea\x19\x55\xea\xda\x7e\x7e\x3e\xb6\xfa\xa0\x03\xee\x39\xa6\x89\x1e\xa6\x06\x70\x03\xca\x08\x61\xa3\x28\x5a\x25\xd1\x94\xb8\xce\x46\x23\x3f\x63\xdf\xe9\x09\xb6\xcb\xc1\x96\x54\x96\x1a\x39\x4e\xa2\x29\x44\x27\xcf\x86\xe3\xa7\xf4\xc4\xb7\x3d\x19\x9b\xff\x03\x87\x6c\x7a\x51\x5a\xae\x62\x54\x55\x98\x02\x2a\xf0\x64\x32\xc2\xcf\xa7\x53\x64\x66\x6b\x84\x74\x8c\x70\x80\xd7\xcf\x5e\xfb\xc7\x59\x6e\x37\xf9\xa7\x7b\xcf\xfd\xe9\x38\xdc\x0c\xf6\xdb\x3e\xe8\x08\xd0\xf0\xd9\x3c\xb3\x79\xd6\x73\x07\xd7\xdc\xd2\xb8\x90\x9c\x33\x31\xf7\xde\x81\xcf\xe4\xcb\x0f\xc2\x55\xa1\xcb\xb4\xad\x83\x39\x34\xad\x89\x44\x8a\x37\xb5\x26\x59\x33\x5d\xcb\x4d\xb5\x35\xfc\x00\xa7\xb8\x41\x8d\x5d\x16\xa3\x91\x5a\xb1\x54\x6d\x63\xe7\x9d\x70\xd0\xc1\x40\x9f\xd1\x63\x3d\x1e\x56\xb8\x4b\x43\xbe\x33\x94\xa1\x34\x59\xae\xc6\x14\x97\x8a\xe6\x56\x2d\x59\xd1\x22\xa3\xc2\xea\x28\x55\x85\xa5\x93\x15\x0e\x47\xf4\xa3\x36\xdc\xae\xe6\x00\xf8\x2e\x00\x17\xda\x97\x1d\x5a\x41\xf8\x58\xeb\x06\x36\xa2\xe3\x0f\xa3\x63\x9b\x27\x1a\x90\xc5\x71\x5b\x4e\x83\x5a\xde\x94\x26\xcc\x18\x15\xd1\x31\x2c\x43\x04\x8a\xf8\x9a\x0c\xaa\x1d\x06\x86\x53\x7c\x6f\x70\xfd\x33\xd1\x8b\x64\xc6\x25\xf0\x8c\x4b\x3f\xf7\xe3\x11\x7d\x86\x10\x16\x69\xab\xf8\x82\xda\x3b\xaf\x7e\x85\xdb\xfa\xcf\x57\xe5\x5b\x33\x50\x72\x29\x35\xe1\x97\x2c\xbb\x56\xe8\xfe\x7e\x68\x25\x43\xb6\x2a\xc1\xa2\x76\x66\x7f\x80\x55\xed\xb0\x5a\xa3\x94\xc4\xc2\x72\xd4\x82\xc2\xa1\x8f\xfc\xfc\xcd\xaf\x66\xe7\x18\x40\x8d\x41\xd6\x1e\xd5\xbe\x2b\x6c\x07\xbe\x78\xfb\xb6\xe7\x4d\x7e\xd9\x67\x8e\xa5\x2f\xa1\xc6\xee\xd1\x55\x30\xba\x3a\x1e\x0d\x9f\x9e\xc2\x3f\x6d\x38\xec\x50\x08\x28\xfb\x92\xa8\x6b\x65\x91\x57\xa4\xee\xe7\x44\x4e\x31\xb7\xe2\xc1\x26\x9a\xcf\x98\xc8\xff\x7c\x1b\xc3\x8b\xba\x11\x96\xa8\xc7\x66\x31\xb7\x8d\x58\x27\xc6\x8b\x0d\x8c\x97\x69\xab\x78\x3f\x8c\xf3\x1d\xe8\x66\x76\xc2\x65\x30\xe1\x12\xf3\x2e\x5c\x67\xe9\xfa\x78\xeb\xb8\xe6\xbb\x71\xeb\x86\xca\x82\xa1\xb2\x00\xb7\x7c\x13\xb1\x55\xd5\xa1\x12\x39\x8d\xd7\xa1\xab\xb7\x65\x4d\x55\x4c\x91\xd3\x35\xd6\x26\x1f\x94\xb8\x65\x91\xc5\x2b\x92\x2d\x1a\xc1\xa1\xd1\x9d\xde\xde\x65\x67\x7f\x86\xcd\x04\x38\x5b\xdb\xcb\x09\xe1\x8c\xa8\xd6\x56\xac\x5f\x55\x0e\x51\x1d\x21\xdc\xc6\xc1\x97\xf4\xe3\x5e\xd6\x46\x38\x5b\x95\x9f\xc7\x53\x40\xf2\xd5\x4a\x0a\x60\xa8\xd1\x6b\x0d\x9d\x2f\xbb\x80\xfa\xad\x9d\xc2\x22\xec\xdb\x67\x60\xcb\x35\xbd\x38\x05\xb0\x9b\xe7\x35\x08\x82\x81\x22\x74\x7f\x3f\x99\xa2\x64\x19\x6a\x0a\xa2\xe1\xee\x44\x5d\x3b\x58\x4c\x47\xc2\x25\x1e\xa1\x8e\xc5\x75\xe5\x7b\x2c\xdf\x5a\xcd\xd6\x02\xb5\xd1\x43\x6b\x1c\xaf\x7f\x07\x4f\x41\x85\x70\x91\xca\x40\x67\x28\x3e\xad\x33\x70\x39\xff\x52\x8f\xc1\x5e\x06\x98\x1f\xc7\xbe\x22\x58\xfb\x28\xb6\x3a\xf1\x24\xe7\x5b\x2b\xb9\x3e\xc0\x62\x00\xcb\x57\xa8\x0e\xd5\x03\x13\xac\xb0\xc4\x05\xe6\x5f\xa4\x84\xd8\xc1\xd3\x75\x75\x66\x9b\x1e\xa2\x3b\x34\x91\xb2\xd6\x44\x6a\x9f\x85\x08\x95\x11\xe7\xf5\xa8\xe9\x51\x23\x10\xf0\x3b\x14\x13\x6a\xed\x85\x1f\x08\xe3\x65\x41\x43\x3d\x85\x75\xb9\xe9\x36\x41\xca\xa4\x50\x92\xd3\xe4\x86\x14\x22\x8e\x7e\xfa\xe5\xff\xf6\x7f\x78\x75\x79\xfe\xe3\xb8\x7f\x2e\x4b\x9e\x8b\x27\xda\xd4\x10\x34\x03\x77\x70\xd4\x18\xee\x08\x1c\x84\xad\xc1\x19\x8c\x5b\x76\xaa\x30\xf6\xdb\xab\x0f\x54\x68\x9a\xe3\x2f\xf1\xf2\x80\x77\xf3\x92\x7e\xd4\xe3\x83\xd1\x16\x97\x0f\x53\x6f\x81\x10\x98\x98\x6f\x61\x80\x5c\xce\x6d\x15\x5a\x24\x86\xa2\x12\xa6\x2e\x4a\x21\x0c\xd1\x82\x1f\xe9\x8d\x64\x42\xd3\xc2\xea\x56\x41\x65\xfb\x61\x41\x49\x6e\xc0\xd6\x84\x01\xf8\xb2\xd4\xab\x52\x6f\xb0\xa0\xa6\x1f\xc8\x72\x27\x90\xa3\x46\x18\xef\x60\x48\xb6\x38\x4d\x2d\x67\x6a\x1a\x9e\xc1\x6f\x18\xcf\x09\x1c\xc6\x7b\x34\xa5\x49\x41\xe1\x64\x41\x7c\xfc\xc7\xe3\x39\x8e\x06\x5c\xbf\x88\x50\xf3\xf1\x3b\xf8\x38\x37\x1f\x5d\x76\x03\xaf\x1d\x3c\x44\x28\x76\x29\x7f\xd4\x4b\x1e\xd3\xda\xd7\x6e\x41\x77\xe1\x90\x85\x5e\xf2\xb7\x64\x46\x63\x6d\x18\x06\x13\x4c\x6f\x8a\x4f\xb0\x9b\x01\xa4\xf7\xaa\x5c\xd1\x22\xf6\x03\x79\x1a\x6d\x4e\xaf\x6c\xb8\xa7\xfc\xa2\x45\xa8\xa7\x93\x9b\x82\x69\x9a\x86\xa2\xd3\x06\x61\x28\xcc\xf5\x50\xf7\x7c\x94\xe4\xbb\x6f\xe8\xe9\x60\x10\x8b\x54\x24\xaa\x34\x36\x46\xec\x4b\x8e\xbe\xa1\xa7\x08\xcc\x03\xf0\x94\x03\x86\x85\xf9\xad\x0b\x66\xb6\x6a\x1c\x69\x96\x5d\x47\x58\xa3\x0a\xab\x1a\x0f\x4c\xbd\x2d\x57\x2b\x38\xbc\x7d\xd6\x38\x1b\x82\xb5\x8e\x82\xca\x6e\xbb\x6a\x84\xc6\x5b\xea\xca\x8e\xba\x15\x86\xb8\x89\xbc\x1d\xb7\x42\x2e\xa6\x3d\x98\x74\xb8\x85\xc0\x0a\xcf\xa5\x96\x3f\x9a\xb5\x8e\x87\x98\x7c\xae\x37\x43\x3b\xb6\xc6\x1f\xcb\x9d\x51\xd3\x26\x2c\x1e\x26\x7b\x38\x0d\xbb\x5d\xa3\xc3\x96\x2f\x11\x21\xac\xd2\x4f\xf8\x07\x89\xf7\x15\x59\xb4\x35\x8e\x92\x58\x6d\xf7\x7f\xd0\x44\x43\x10\xae\xc2\x0c\xc2\x4a\xce\xf3\x21\x53\x43\x28\x42\xe3\xd8\xe9\xd6\x35\x43\x39\x93\x06\xf1\x45\x92\xd3\x4c\xe6\x14\xc5\x12\x25\xee\xec\x28\x1a\x0c\x78\x9b\x0c\x79\xca\x3d\x19\x0e\xb1\xa1\x3f\xcc\x0f\xd3\x27\xef\xc4\x3b\x71\x54\xff\xd7\xbf\xbc\xf8\xf5\xf5\xf9\xcb\xcb\x57\xdf\x8f\xfb\xe7\x9c\x65\xd7\x7d\x4b\x9c\xc1\x2b\x69\xb4\x7f\x25\xb5\x96\xcb\xbe\x9c\xc1\x2f\x2e\xe7\xfd\xa6\x83\x27\xa1\x8b\xcc\x32\x10\x1e\x7e\xda\x64\x30\x8d\x4b\x66\x3f\x3f\x02\x90\xdc\xa5\x61\x63\xff\x6e\x24\xb7\xee\x73\xff\xa7\x20\xb9\xfd\x29\x2e\x58\x65\xcb\xd0\xb6\x2f\x3c\x94\xfb\x85\x1f\xee\xbb\xf0\xb0\x25\x1b\x31\xd9\x11\x63\xda\x35\x1a\xf6\x0b\x53\x4b\x51\xe8\xcf\xcc\xdc\x0c\xb6\xc1\xef\xda\x35\x2d\x34\x08\x67\x69\x19\xe8\xa2\xd9\xa7\x75\x51\x21\x73\xfa\xbf\x9e\xab\x35\xcf\x95\x41\xca\xbf\x84\xcf\x0a\x00\xdd\xea\xad\x12\x90\x54\xbb\xd3\x4f\x05\x48\x3c\x33\x15\xdf\xb3\x3c\xed\x70\x55\x99\x22\x70\x52\x3d\xbc\x6f\xea\xfc\xcd\xaf\xe0\x10\x39\x97\x42\x95\x4b\x9a\x3f\x8a\x2b\xca\x5a\x76\xc9\xaf\x8a\xe6\xdb\xfc\x12\xbf\xd5\xd7\xf4\x58\x0e\x91\x7d\xdc\x17\xb0\x3c\x85\x73\x01\x41\x37\xfb\x3a\x2c\xd6\x5a\x2e\x77\xb9\x28\xb6\x10\xd2\x97\x3a\x27\xbe\xb0\xbb\x2f\x31\xb5\x5b\xb6\xed\x67\xc6\x31\xd7\x4d\xdf\x7d\x73\x01\x76\x99\xfd\x5d\x86\xf3\x43\x45\x43\xbb\xb9\x05\x69\xb8\x05\x08\x9c\x0f\x84\x8f\x47\xf4\xc4\x4a\xab\x6d\x42\x0a\x0c\x38\xce\xc4\x35\xcd\x63\x94\xb8\x3b\x3a\xba\x44\xd1\x46\xa3\x20\x22\xf7\x9b\xe2\x88\xe0\x4c\xc0\x0c\x97\x38\xc3\xf9\x43\x2b\x43\x2e\x42\xe8\xf1\x81\x65\x5b\x2b\x72\x82\xdf\x4b\xfb\xc2\x96\xba\x4c\x01\xaf\xb7\x7c\x83\x65\x5c\xec\xd0\x5b\x2a\x1c\x0f\xb1\x6a\x99\xf1\x28\x2e\xbc\x06\xf3\xcd\x98\xcd\x62\xee\x94\x18\x74\xe7\xfa\x7c\x6e\x43\x87\x55\xad\x66\x90\xab\xa2\x5c\xe9\x38\x72\x8c\x1b\xf9\xa0\xe2\x5a\x74\x70\x88\xb9\x53\x93\x6a\x9d\xc5\x6d\x29\xe6\x87\x18\x0c\xe2\x32\x75\x21\x4f\xab\x19\x31\xd0\x16\x5c\xca\x01\x8e\xf3\xb4\x0c\x74\xf3\xb8\xd1\x55\x82\x0c\x8e\xcc\x71\x2b\xb0\x30\xe3\x1c\xa1\x5a\x8b\x1b\x9d\xae\x05\xe9\x88\x07\xe5\xb4\x0e\x8c\x86\x71\xd1\xd1\xb3\x3d\xb5\xaa\x56\x3c\x4e\xee\xb1\xe1\x5d\x46\xda\x46\xc2\xed\x63\x1e\x71\x80\x24\xcb\x37\x85\xfc\x78\xdb\x76\xca\xbc\xb1\xc0\x40\x09\xe4\x28\x7c\x32\x0d\x7a\x77\x7a\xdd\xd7\x99\x8d\xed\xed\x11\xa6\xd3\xca\x02\x7c\x8c\xc9\xd0\x26\x33\x6f\xfb\xc4\xfc\x9c\xee\x98\xfa\xab\x01\xc8\x65\x0b\x1d\x0c\x31\xf4\xa9\xac\xf2\x65\xa6\xd6\x74\xd6\xb1\xc1\x9b\x9c\x3b\xd7\x8c\x56\xa8\xf2\xc9\xc7\xfb\x25\x1d\x6f\x51\xa6\xb7\x21\xa6\xe6\x92\x3a\xa6\x56\x6e\x78\x27\x7b\x1a\x70\x64\x36\x8b\xa3\x52\xd8\x11\xf3\x28\x4d\xf5\xed\x8a\xca\x59\xff\x82\xce\x38\xcd\xf4\xfd\xfd\x81\xfb\xcb\xa8\x7a\x36\x03\xd5\xe5\xa6\x1c\x8c\x7a\x6c\x16\x6f\x94\x26\x6a\x41\x96\xad\x2a\x91\x1f\xad\xe9\x1d\x48\xc2\x57\xb2\x89\xbd\x0e\x4d\x46\xff\xd9\x9a\x20\xbc\x31\x58\x6c\xaa\xe3\xc9\x34\x54\x0e\x8c\x69\x75\x30\x74\x59\xbc\x35\xfe\x0f\x46\x55\x15\xa3\xb3\x8d\x1e\xc6\x2d\xf9\x4a\xac\x38\x51\xe9\x04\x8e\x6c\xf5\x14\x28\x59\x09\x59\xad\xf8\x6d\xac\xb0\xcb\x9b\x95\x46\x53\x8b\x7f\x70\x0d\x93\x2b\x26\x72\x57\x85\xe2\x20\x7b\x96\x0c\x06\x22\x96\x98\x34\xd3\x41\x58\x56\xc8\x55\x05\x2d\xbc\x4e\xd5\x46\x55\xbd\x5a\x2d\xc3\x20\x16\x3e\x69\x5a\x81\x43\xcf\xf6\xf3\xcb\x6c\x3d\x23\xbb\x66\x89\xef\xdf\xc3\x68\xef\xdf\xa7\x1a\xd3\x0a\x41\x69\xf5\x40\x89\xe8\x3e\x10\x2b\x36\x92\xd1\x31\x01\xe5\xd5\x26\x8f\x8b\xef\x46\x67\xe2\x68\x34\x1e\x22\xcc\xd3\xd1\x0b\xfe\x47\xf1\x82\x1f\x1e\x22\x32\xe1\x47\xa3\x69\x90\xaa\xce\xa7\xce\x3b\xae\x6d\xf6\x39\x26\x35\xea\x58\xb2\x24\x1f\x7f\x82\xae\x53\x8a\x59\xf2\x9e\xb3\x25\x6b\x91\x6d\x10\x45\x72\x2e\x48\x9f\xed\x64\x9b\xf5\xe8\x77\xc3\xc1\xc0\x4a\xa5\x15\x67\x19\x8d\x87\x98\xa2\x0a\x33\x58\xd1\xb0\x27\x3f\x2b\xba\x39\x2b\x1d\xcc\x8a\x1a\x7b\x64\xf8\x42\xfc\x91\xbe\x10\x87\x87\x48\x4f\x44\x38\x17\x31\xed\xd5\x39\x3f\x76\x7d\x21\x6d\x46\x7b\x07\x23\xc0\xef\xdd\x8d\xb6\x77\x03\x8b\x05\xed\x31\xa0\xb1\xb6\xa6\x6c\x03\xd3\x0b\xd5\xaf\x1a\x26\x62\x20\x61\x42\xd1\x42\xbf\xd4\x8f\x07\x4b\xb1\x0f\x2c\x36\xb3\xcc\x74\x7b\x6e\xd3\x96\xbf\x67\xf9\xf9\x82\x88\x39\xf5\x80\x96\x42\x2d\xd8\xac\x05\x67\x93\x42\xef\xd2\xe7\xcf\x89\x10\x52\xf7\x5d\xd5\xbe\x14\x5a\xf6\x49\xff\xc2\xb2\x4d\x00\x3a\x32\xa4\x50\x39\xc8\xec\xd9\x87\x7a\x97\x62\x95\x12\xa0\x12\x2c\x53\xe2\x96\x08\x17\xeb\xb5\x6a\x8c\x7d\x9a\x5f\xaf\xc5\xd5\x3e\xd3\xac\xf0\xbd\xc0\x1d\xc9\x56\x19\xdb\x23\xee\xf6\x58\xc6\x07\x96\x81\x60\x29\x5a\xcc\x67\xff\x13\x25\xb4\xeb\x44\xc9\xc1\x63\x9d\x29\x71\x03\xf7\xfe\xbd\x8f\x96\x00\x1e\x1f\xf1\x64\xc9\x6f\x11\x22\x81\x6e\xe5\x6c\xb4\x4e\x0d\x4b\x35\xa6\x67\x01\x97\x2e\x5b\x57\xd5\x46\xa2\xf6\x9a\x7f\x60\x33\x48\x69\x2f\xf7\x31\x50\x54\x68\x0f\xc3\x75\x87\xbd\x1a\x88\x19\x0b\x52\xaf\x71\xd8\xf9\x74\x52\xcf\xb6\x1e\xd0\x9e\xd5\x58\x35\xd6\xec\xa3\x66\xc8\xb6\x6d\x55\xb5\xe6\xee\xe7\x66\x93\xb0\x34\x8a\x70\x09\x0c\xbf\x71\x25\x3a\x23\xed\x0f\x58\xc5\x7a\x97\x37\xfe\x4a\xe6\xb7\xc9\x9c\xea\x0b\xc0\x9e\x41\x4a\x3c\xc4\x72\xcd\xcc\xd5\xde\xcc\xfd\x83\x31\x73\xb3\x75\x33\x77\x34\xdc\xcf\xce\x1d\x0d\x83\xd0\xa0\x5d\x2e\x63\x83\xd6\x01\x19\x9b\xab\xe5\x3b\x7d\xb6\xde\xa9\x37\x4c\x33\x58\xea\xb8\x63\x56\xd6\x38\xa0\x76\x9b\x63\x91\x52\xe0\x00\x90\x03\x96\x0a\x7c\x34\x3a\x48\xd3\x98\x1d\xa6\xa5\xb3\x99\x63\x8d\xef\x2c\x5f\x76\x79\xc2\x70\x48\xe8\x97\x59\x1c\x55\x11\xf2\x9a\x66\x11\x1b\x65\xc7\x2c\xd4\x71\x9c\xfc\xfe\x5d\x85\xe2\xe4\xf7\xe8\xff\x1c\x23\x7c\x82\xb0\x4c\xd5\x64\x34\xc5\x59\xaa\x26\x4f\xa7\x3d\x96\x66\xb0\x85\x96\x29\x44\x8a\x9a\x88\x05\x5e\xa5\x4b\x6f\x97\xcf\xd2\xa5\x37\xcb\x7b\xb3\xc1\x20\xce\x37\x8c\xf2\x15\xc2\xb9\xb3\xc8\x67\x08\x55\xd5\xa6\xe1\xfd\xa5\x96\x77\x52\x50\xb9\xa2\xe2\xdc\x88\x10\x63\x2e\xd5\xd1\xdd\xf1\x41\x7c\x70\x03\x97\x56\x26\x86\x0e\x0c\x73\xb1\xb1\x88\xfb\xfb\x98\xa7\xc7\xb5\x32\x2e\x8b\x63\x06\x89\xba\xb1\xab\xfd\xe3\xe5\xcf\x3f\xbd\xe2\x90\xfb\x8e\x70\x99\xfa\x4e\x14\x99\x91\x82\xdd\xdf\xd7\xe7\x1f\x5b\xdf\x07\x83\xd6\x4f\xe0\xcd\xaf\x83\xfb\xaf\x0c\x41\x7b\x59\xf2\x16\xaa\x5c\xd0\xa5\xd4\x34\xac\x03\xa2\xa5\xac\x65\x49\x8c\x30\xbf\xbf\x67\x6b\xee\x85\x3d\xc2\x25\x6d\xa1\xfd\xd8\xf6\xb8\x9b\xf7\x25\xfd\xa8\xbf\xb7\x63\xae\x09\x04\xa6\x1c\xd9\x74\xea\xf5\x3a\x85\xd3\xa2\x27\x46\x95\x4b\xae\x6e\x35\xb5\xaa\xb4\xd5\xea\x0e\x53\x27\x56\x67\x85\x5c\x9e\x2f\x48\x71\x6e\x28\x9c\x4e\xc4\xb4\x51\xe5\x20\x11\xe5\x33\x0c\xfc\x8f\x8b\xe2\xc8\xdd\xab\xb8\x97\x11\xab\x43\x1b\xc4\x68\x9c\xda\x09\x59\x00\xd1\x7a\x02\x53\xa3\x7f\xf6\x48\xd2\x1c\xe2\x4a\xc3\x1f\xf7\xf7\x07\x23\x4c\x8c\xfd\x37\x63\xf3\xd2\x96\x1f\x0c\xfd\x5d\x8f\x0c\xac\xb6\x98\xc0\xfe\x70\x65\xdb\x8f\x8c\x91\xe4\x9a\x1a\xab\xa5\x7a\x20\xd9\x28\x5a\xca\x77\x28\x13\xe2\x0e\x6d\xa9\x91\xcf\x72\xd6\xd7\x08\x75\x8a\x7b\xa7\x09\x1b\x55\xa8\x4f\xfa\x80\xf7\x3e\x51\x7d\x52\x2b\x6b\x11\xaa\xac\xef\xdc\x58\x47\x00\x84\xd1\xf2\xfc\x8a\x8a\x94\xe2\x98\xa4\x93\xbb\x6b\x7a\x3b\x8e\x32\xb2\x32\x4a\x42\x64\x1d\x1f\xad\xb0\x8e\xd5\xe2\x3f\x2e\x8a\x94\x56\x15\xb6\xd5\xc9\x95\x2c\xf4\x46\xe5\xa0\xae\xb3\xcf\xcc\x9f\x09\x54\x36\x1c\x65\x8a\x06\x03\x6d\x34\xaa\x5a\x1d\x27\x08\x2b\xf8\x86\x15\xc2\xb4\x8a\xd1\x9e\xde\x12\x99\x53\x75\x34\x93\xc5\x11\x1c\xd5\xf8\x4a\xc7\xb4\x27\x34\x31\x03\x4f\x7b\xee\x20\x8f\x32\x7a\x82\xfd\x6b\x33\x4b\xd5\x20\xce\xaa\x8e\x36\x3c\x59\x1a\x46\xda\x6b\x1c\x46\x72\xb9\x22\x99\x8e\x51\x52\x0a\xf6\x8f\x78\x2d\xe3\xb1\x96\xb2\x51\x74\x48\x2b\xb4\xe3\x04\x26\x08\xdb\xb6\xdd\xe1\x3e\x35\x35\xed\x86\x38\xa6\xe2\x03\x2b\xa4\xe8\x38\x6a\xff\x90\xa7\xb0\xa2\x55\x21\xf3\xd2\xd2\xdf\x41\x1a\xa4\x14\x04\xc3\x0f\x06\xf5\xe7\x89\x37\x93\x38\x3b\x5a\x32\x7b\xad\xf1\x60\x70\x30\x0a\x9b\x76\xd5\x49\xa8\x30\x7b\x38\xc7\x2a\x6d\x9d\x01\xb9\xbf\x27\x67\x75\xe4\x68\xec\x98\x26\x60\xe4\xfe\xbe\xeb\x1e\x00\xb5\x03\xb5\x70\xa1\xf7\x51\x5e\x16\x2e\xd1\x35\x44\xf2\x52\xda\xeb\x0e\x1c\x68\x4c\x80\xef\x49\x3e\x50\x3c\x7b\x83\x06\xbd\xb6\xba\x71\x53\xc0\xb0\xf3\xa6\x80\x61\x78\x53\xc0\x70\x3a\x1e\xe2\x4d\xbf\xce\xbe\x97\x0c\x08\x15\x19\x63\x79\xbd\xf5\xd3\xce\xd6\x4f\xa7\x83\x41\xf8\x0b\x17\xe9\x5d\xd5\x33\x7d\xa4\x69\x2a\xce\xe2\x22\x11\x44\x48\x45\x33\x29\x72\x95\xd2\xdf\x8d\xe8\x09\x2e\x92\x25\xcb\x8a\xfa\x63\x18\x17\xfe\xdd\x88\x3e\x3b\x1e\xd1\x13\x84\x69\xeb\xbb\x0d\x22\x8f\xa3\xe5\xd2\x76\x3c\x18\xc4\x6b\xbd\xd8\xae\x37\x5a\x9d\x20\xeb\xe6\xe3\xa9\x00\xa8\x0e\xa0\x31\xf4\x63\xfe\x04\x9d\x25\x5a\x2a\x97\xd8\xc7\x9a\xab\x23\x12\x4f\x06\x31\xc5\x1c\xf5\x48\x32\x63\x5c\xd3\xe2\xcf\xb7\x71\xc4\xc4\xcf\x96\x18\x60\x13\x9b\x2f\x36\x29\xb9\x93\x27\x14\x13\x3a\x4d\xd9\x84\x4e\x63\x1f\x99\x2e\x53\x92\x14\x34\x2f\x33\xba\x29\x09\x8a\x89\x86\x63\xe3\x53\x9f\xb7\x57\x7f\xe8\x51\xcb\x5c\x54\x2c\xb0\xc6\x12\xa1\xaa\x09\x36\x4d\xa6\x70\x76\xa1\x74\x4b\x85\xea\xb4\xd8\xff\x2f\x99\x88\xa3\x7e\x54\xf3\x21\x05\xda\xa6\x3f\xf8\xa0\xca\xd9\x8c\x7d\x84\xec\x3e\x89\xbc\x03\x65\x72\x27\xe0\x6e\x97\x5b\x4a\x0a\x15\x61\x5b\xc7\xfe\x8c\xb0\x9f\xfa\xf8\x60\x88\x57\xbc\x2c\x08\x67\xff\xe1\xce\x56\x57\xd8\x35\x5c\x4a\xa1\x17\x41\x4b\xf8\xbd\x5f\xd3\x9c\xdc\x06\x0d\x73\x72\xbb\x5f\xb3\x85\x2c\x43\x50\x17\x11\xe6\x52\xcc\xdf\xfa\x9f\xb2\xdc\x09\xf9\xa8\x81\x9c\x89\x52\xd3\x10\xf4\x76\x4f\xb6\x7c\xbf\xbe\x1c\x5d\x36\x7d\xa9\x76\x5f\xb6\x7c\x5f\xb8\x38\x67\x1b\x1d\x2e\xd5\xbe\xad\x9b\x6d\xd2\xb4\xfe\xaf\xff\x6c\x35\x1f\x6d\x6d\x1e\xec\xdf\xa6\xb5\xf8\x44\xe3\x29\x6e\x67\xe7\xd4\xce\xf8\x9e\x4a\xc9\x60\xa0\x93\x06\x15\x67\xa3\x34\x4d\xe9\x59\xf8\x69\x0c\xb1\x4a\xdf\xa7\xb1\x29\x83\x42\x34\x36\xb2\x82\x9a\x4e\xc2\x51\xcf\x36\xdb\x28\x57\xdf\xff\xe5\xfc\xfd\xed\x76\xf7\xf7\x6b\xf0\x6c\x1c\xb1\xa6\x75\x12\x9b\x3c\x8b\xfa\xd1\x38\x6a\xb2\xda\xd4\x2e\x49\xcd\x56\x47\x2b\x02\xc2\xe3\xab\x28\x2b\xf4\xac\xbe\x16\x66\x1c\xa1\xf1\xa4\x76\x62\x0f\xd3\x34\xf5\xba\xf5\xd9\x9d\x7b\x4a\x7a\x4c\xb1\x81\x68\x6c\x59\x7a\x35\x7e\xda\x59\x49\x4f\x86\x53\x5b\x4f\x4f\x46\xd3\x6a\x4c\x6d\x5e\x9a\xfa\x3b\xd3\x8b\x38\x9a\x44\x28\xa8\x9a\x28\xe7\x99\xf7\xdd\x1c\x8d\x90\x63\x40\xe3\x08\xf9\x5e\x9a\xc2\x69\x35\xde\x02\xcc\x0e\x9c\x6e\x1e\x2f\xef\xf4\xc0\xae\x1e\xef\xb2\xa4\x5d\xd9\xff\xcd\xb1\x05\x91\xc8\xeb\x33\x91\x18\x70\x63\xe4\x13\xf1\x57\xb7\x28\xa6\xf8\x60\x88\x5a\xa6\xd5\x0e\xad\xd7\xbf\x5a\x66\xac\xb4\x23\x92\x93\x95\xa6\x5f\x4b\x01\x6e\x4e\xaf\xab\xda\xd7\xeb\x55\x5f\x27\xf4\x72\x6a\x93\x17\xdd\x22\xbf\x13\xef\x8c\x01\xb2\x7d\x36\x42\x1e\x71\xf0\xe3\x6c\x4e\x01\x47\x7f\x6a\xae\x8e\x3a\x76\x33\x3d\xb6\xd5\x1e\x70\x21\x69\xf2\xfa\x97\xf7\x3f\xbd\x7a\xf9\xfd\xab\x0b\xbf\xa8\xe1\xa7\xe8\xb5\xec\x67\xf6\x2d\x9b\xbe\x85\x34\x5a\xbf\x50\xaa\x8e\x1f\xbb\xa5\x19\x77\xb4\xa9\xf6\xb4\x69\xe0\x1a\xef\xdb\xaf\xb4\x9e\xeb\xa4\x0a\x0e\x39\xf7\x38\x03\xa7\xc5\x0f\xc6\xbe\x24\xab\x15\x77\x2e\x93\x08\x39\x57\x93\x05\x4e\x23\xb3\x29\x37\xdf\xf1\x6a\x4d\x64\x26\x8b\x2b\x96\xe7\x54\xec\x4e\x22\x5d\xb3\xe4\x1e\x70\x79\x3f\xb1\x35\xc1\xd0\x6e\xa5\x99\x09\x94\x30\x91\xf1\x32\xa7\x2a\x8e\x4e\x87\x27\x51\x6d\x78\xf7\xdc\xe9\x07\xa6\x7e\x68\x66\x05\x3b\x77\xfb\x7a\xae\xea\x23\x1a\xf6\x35\x97\x23\xff\x6c\xcb\xe3\xae\xed\xf6\xd4\xd7\xbb\xb5\xdb\x6e\x2c\x2d\x3b\x13\x29\x7c\x70\x26\x99\x53\xfd\x17\x4d\x97\xc1\x09\x16\x71\xf6\xff\xde\xfe\xf2\x3a\x59\x91\x42\xd1\x58\xa0\xb1\xae\xb0\x0a\x7b\x0b\xcf\x68\x75\xf5\xa8\x7c\x8f\x18\xfa\x69\xd2\xcb\x05\x42\x58\x54\x3b\x4d\xdc\x00\x91\x6a\x21\x0b\x7d\x54\x96\x2c\xff\x5a\x3b\x64\x8f\xf4\xe1\x20\x39\xd8\x4b\xdc\xa3\x08\x4d\x86\xd3\xbd\x67\xa5\x6f\x39\xad\x4f\xf5\xfd\xcf\xcf\xab\x7d\xd4\xc8\xc6\x80\xa3\xa8\xf6\x5d\xc0\x31\x21\x07\xcd\x35\xbd\x85\x20\xc1\xa6\x01\x23\x5a\x3e\xbb\x5a\x66\x80\xd1\x22\x0e\xa3\x71\x74\x18\x47\xf6\x49\xf5\x26\x75\x84\x9c\x91\x44\xcb\x1f\xd8\x47\x9a\xc7\x4f\xd1\x61\xb4\xfa\x18\x8d\x09\x42\xd8\xda\x34\x4e\xb0\xbc\x88\x0c\xc9\x34\xc7\xa8\xd0\xde\x68\x2e\x97\x47\x64\x3e\x2f\xe8\x7c\xc3\x9e\xff\xaa\xfb\x30\x50\x25\x71\x94\xfc\x89\x92\x6c\x91\x44\xc1\xfd\x6d\x9f\x20\x31\x2b\x6e\x3b\x71\x1e\x24\x8b\x1c\xea\x0a\x0f\xf7\x46\xcd\x0d\xd9\xf0\x22\xed\x11\xbd\xbe\x21\x6c\xc7\x3d\x6f\x81\x03\xf8\xb3\x5c\x51\x36\x9d\xa9\x76\x91\xca\x86\x68\x63\x99\x76\xe4\x1b\xd9\x60\xee\x60\xe0\xae\x0c\x5e\x2f\xa8\xa3\xbc\x67\x5d\x89\x5b\xb6\x26\xad\xc6\x5d\x01\xae\xc1\x60\xc7\x70\x34\x09\x42\x1b\x69\x9a\xd6\xdf\x0f\xfc\xdf\x8d\x9b\xf3\xcc\xc3\x36\xae\x07\x84\x43\xc3\x5f\x40\x68\xb0\x52\xf6\x3e\xf8\x8e\x6d\xfd\x39\xf1\x48\x63\xae\xdc\xd5\x61\xdb\xc6\x87\xb3\x77\x34\x52\xaf\x47\x23\xb5\x8d\x46\xea\x76\x34\x92\xa7\x65\x97\xc7\xa9\x9c\x8c\xa6\x67\xe6\x9f\xf1\x53\x7a\x82\xed\x05\x0b\x4d\x7e\x72\xe4\xd2\x1c\xd3\x34\x95\xb1\x42\x83\x41\xec\xfd\x7c\x66\x17\x28\xb8\x09\x19\xd5\xb7\xba\x18\x51\x5e\xdc\xdf\xb7\x1c\x81\xe8\x4e\xbb\x90\xd7\xb7\xed\x60\xa0\x83\xf2\x14\x6b\x1f\xe6\xb4\xed\x2e\xde\xfe\xed\x4d\x42\x38\x8f\x27\xfe\x64\x52\x41\xc1\x35\x62\xb1\x1d\x53\xac\xf0\x5d\x41\xb9\x24\xb9\x31\xaf\x9d\x56\xfa\x0b\x5c\x91\xae\xc6\x77\xb0\x30\x50\x70\x25\x0b\x6d\x1f\xcc\x60\x66\xf7\xb5\xef\x16\xe2\x68\x5a\xc7\x43\x3d\x80\xa7\x61\x4c\xee\xdb\x71\x1b\xce\x6f\xcd\x8a\x0e\x53\xed\xae\x09\x3a\x45\x1e\xee\xd1\x09\x94\xd4\x37\xfd\xd4\xcd\x7c\x00\x15\x3a\x8d\xf0\xe8\xdb\x26\x0a\xd8\xee\x7a\x74\x8a\x99\x77\xce\x63\x6d\xe6\xca\xd4\x22\x1e\x9d\xfa\xfa\x35\x84\x27\xad\xa0\xe1\xb7\x9b\x41\x43\xdd\x04\x0d\xb5\xbf\x54\xe8\x14\x7f\x8b\x47\xa7\x78\xf4\x87\xd6\xd5\x42\x55\x43\xc3\x1c\xd8\xb0\x5a\xb0\xd5\x43\x51\xb2\xc4\x1c\xb3\xc7\xa3\x64\x99\xb2\x2e\x4a\x66\x86\x92\x99\xa7\x64\xde\xa6\x64\x7f\x19\xd1\x6e\x12\x7d\xde\x49\xa2\x27\x7e\xa9\x9f\xed\x22\x51\x47\x88\x46\x65\x57\x21\x4f\x4a\xe0\xca\xdd\xd7\x64\x49\x8d\xa8\x30\x64\x1b\xa2\x3c\x56\x98\xe2\x4e\xa2\xe5\x1b\x34\x2b\x6b\x9a\x7d\x56\xd3\xec\x49\xfb\x66\xab\x36\xe0\xcf\xdb\x34\x7b\xd2\xd0\xec\xd3\x90\x66\x9f\x6e\xa7\xd9\xe7\x68\x93\xae\x2d\xcd\x9e\x60\xde\x41\xb3\xf5\x8d\x57\x35\x84\x4f\x5b\x34\xfb\x7c\x3f\x9a\x3d\xc1\xcf\xf1\xe8\x04\x8f\x9e\x75\xd3\xec\x4b\xce\x7f\x33\xa9\x3a\xc7\x17\x96\x98\x3f\x1e\xa5\xaa\x94\x77\x05\x08\xf8\x64\x38\x3d\x33\xff\x00\xa5\xca\xaf\x4d\xa9\x86\x99\xbe\xe4\x3c\xa6\x9f\xcb\x47\xe5\x26\x1f\x55\xff\x5c\x34\x29\xbf\x3a\x4d\xda\x5b\x7e\x53\x88\x94\x35\x27\xe9\x5f\xbe\x79\x93\xc0\x1b\x0a\x4c\xcc\xff\x5a\xd2\x82\xd1\x1d\x01\xae\x7f\xac\x8e\x14\x2d\x18\x38\x48\x1f\x58\x1b\xae\xfb\xcd\x9b\xbc\xfa\xb4\x55\x00\x89\x40\xfe\xef\xda\xfb\xd2\x7c\xea\xcc\x38\x72\x0e\xc9\x35\x1b\x92\xa2\x71\x14\x55\x2e\x4f\xa2\x15\x80\x6d\x72\xcf\x03\xf3\x15\x1c\xb8\x3e\xfa\x7a\xc3\xf4\x42\x96\x3a\x8e\x22\xe4\x32\xf8\x6a\x25\x7a\x32\x75\x8e\xb9\x06\x28\xdd\xdb\x3a\xb9\x2f\xb4\x1d\xe3\x40\xb5\xdf\xad\xae\x17\x74\x29\x3f\xd0\xa3\xc2\xbd\x05\xf4\xe8\xc6\x8b\x4f\xa9\xec\xe9\xc4\x98\x28\x2d\xe1\xb1\x59\x93\xa4\x3a\xb9\x66\x22\xef\xb9\x7c\x49\x48\x13\xa0\xd8\x7c\x1a\x93\xca\xde\xc2\x65\x0b\xe0\xb5\x88\x3b\x96\x8f\xb5\x3d\x55\x0a\xb7\x9e\x19\xbd\x78\xac\xbb\xc5\x17\x2e\x82\xa1\xd5\x58\xec\x36\x7c\x26\x60\x94\x4e\x53\x3b\x4e\xb4\x20\xea\x67\x22\x6e\xe1\xf2\x0f\x00\xf0\x6c\x32\xb5\xa7\x3a\x8c\x55\x79\x67\x31\x4e\x93\x52\x58\x01\x09\x9a\x9e\xde\xb5\x0c\x6b\xc9\xb8\x0f\xba\x0c\x1b\xd9\x3b\x3e\x29\xad\xbe\x7a\xe4\x5d\xf5\xee\xee\x78\x8e\xa3\xea\x9d\xb8\x8b\x6a\x77\xc3\x3b\x11\xb5\x28\x79\x4b\x32\x41\x7b\x13\x54\xc8\xc5\x30\xbb\x93\xfb\xbe\x27\x9a\x54\x10\x47\xd4\x6b\x71\x44\xdd\x1d\xd8\x0c\x1b\x7a\xaf\x12\xd1\xf2\x2a\xb6\x9f\x0c\x09\xdc\xb9\x1b\x03\x5a\x7e\xff\xc4\x26\xaf\x61\xef\x42\xd5\xde\xa1\x6c\x5a\xd5\xee\xe4\x08\x55\xbd\xfa\x9a\x9a\x5d\xab\x73\xcb\xe9\xbc\x64\x39\x3d\x76\x79\x08\x47\x4b\xaa\x89\xa1\x85\xc7\x4c\xd1\x6a\x3e\xf8\x70\xe9\x6b\x03\x57\x84\x39\x11\xf3\x71\x34\x97\xe6\xff\x11\xce\xa9\xca\x5c\x51\x9f\x41\xa6\x0e\xa7\x1f\xd9\x15\xa7\xb8\x0f\x2f\x94\xad\x0a\xa6\xe8\xd1\xbc\x20\x39\xad\xbd\xc8\x2a\x5b\x50\x03\x41\xd1\xcf\xa9\x62\x73\x61\x5f\x40\xa4\x44\x31\x7e\xdb\x67\x42\xd3\x79\x41\x34\x35\x7f\xc9\xe6\x89\xc2\x1b\x59\x5c\xcf\xb8\xbc\x51\x49\xdf\x8e\x96\x11\xd1\x2f\x4a\xd1\x27\xfd\x9c\x7d\xa0\x85\xa2\x50\xc5\xd0\x7c\x5f\xce\xfa\x10\x12\x34\xb2\xe0\x03\xcb\x28\xee\x5f\x19\x3e\x88\xfb\x99\x14\x9a\x30\x41\xed\xe3\x9a\x44\xe4\x90\x41\xbc\xf6\xb5\xf1\x11\xab\x24\xc2\xf0\x2a\x4c\xfd\xe8\xf5\xcd\xcd\x4d\x02\xeb\xb3\x2a\x24\x60\x98\xc9\xe3\xa8\x0e\x24\x5e\xd2\xa2\x20\x33\x59\x2c\xbb\xb1\x54\x17\x5b\x4c\x69\x29\x39\x3c\xf0\x79\x55\x32\x9e\x33\x31\xc7\xfd\x6c\x41\xc4\x1c\xfe\x32\xb0\x65\x72\x79\xc5\x84\x99\x3c\x13\xb3\x82\x34\x69\xcf\x8a\xcc\x28\xbf\x85\x3a\x74\x36\x63\x19\xa3\x42\xf3\xdb\x4e\x60\xb5\x1f\xb3\x0d\xe9\xdf\x6c\x64\xa9\x0b\xca\x97\x0d\x60\xf6\x41\x3f\x15\xbc\x1f\x67\x56\x35\x2b\x6e\x41\xb3\xb1\x99\x59\x35\x8a\x0d\x34\xab\x82\x7d\x60\x9c\xce\x69\xfd\xa4\x7c\xf0\xb2\x5e\x07\x74\x1f\x0c\x18\x9d\xa8\x84\x53\xf3\xbc\x1b\x42\x5b\x66\x91\x98\x33\x23\x34\xaf\x4a\x78\xe3\x7e\xc1\xe6\x0b\x83\x97\x0f\x84\x71\x02\x34\x68\x80\x32\x3b\xa5\x6f\xdf\xcb\xeb\x93\x1b\x78\xf4\x5c\xf2\xd2\xea\xae\xb2\xbe\xa4\xca\x22\xdc\xa6\xd9\xd1\x16\x11\xf8\xb7\xc6\xf3\x5b\x41\x96\x2c\xc3\xe1\x98\x6b\x2b\xd3\xb9\x04\x19\x80\xbb\x8e\xff\x79\x41\x44\xbd\x02\x45\x79\x75\xeb\x67\xe7\x8a\xb6\xd0\x88\x9d\x91\x07\xc0\x7c\x70\xef\xb0\xc3\xeb\x7e\x81\x13\xaa\x9b\x76\x3f\xd8\xce\xcb\x95\x91\xe1\x01\x3c\x6f\xdc\xdd\x18\x5d\xe8\xb6\x65\x6b\xf0\xc0\xe9\x40\x20\xcd\xdc\x3e\x5b\xca\xfb\x4b\x92\x2d\x98\xa0\x7d\x78\x36\xc9\x3e\xe8\xbf\x2c\xb9\x66\x2b\x4e\xfb\x2b\x4e\x34\x3c\x8d\xd2\x9f\x15\x72\x69\xc8\x86\x89\x39\x37\x2b\x51\x16\x19\xad\x11\x6f\x2f\xd0\xeb\x02\x7c\x05\x40\x58\x24\x4e\xb7\x33\x4b\x77\x40\xf7\x6b\xb9\x9c\xe1\x10\x4f\x63\x1d\xb8\x13\xa4\x71\x3b\x86\xa0\xa8\xbe\xb4\x60\x85\xb9\xff\x22\x8e\xdc\x57\xc3\xae\x42\xff\xe9\x52\xf5\xe9\xc7\x8c\xd2\x9c\xc2\xbd\x14\x98\xee\x56\xa2\xe0\x65\xcc\x35\x75\x17\x07\xe9\x65\x56\xa9\x3c\x5a\x50\xbe\xa2\x85\x5a\x6f\xf4\xaf\xf5\x40\x81\x75\xcf\xfe\x93\xac\xed\xb6\x95\xd5\x71\xf4\x77\xc2\x0c\x73\x68\xaf\xea\xee\xc5\xec\x70\x23\xaf\x9d\x14\x35\xaa\xbf\xbb\xfc\x6d\x67\x2b\x9d\xe6\x32\x03\x23\x3c\x81\x23\xc9\x6f\xa9\xcd\xe3\x8b\x9f\x18\xbd\x61\x62\x36\x7c\x1a\x3d\x39\xa4\x87\x4f\xa2\xe9\x13\x64\x34\xd6\x97\xda\xf1\xb3\xb8\x7e\x0c\x12\x61\x91\xde\xf9\x9c\xc3\x40\xc9\xb2\x1a\xdd\xaf\x17\x7f\x39\x97\xcb\x95\x14\x54\x68\xb8\xb7\xcc\x5b\xfb\xdd\x4b\x20\xb6\x2f\x81\x70\x26\x0a\xd9\x3c\x17\xf7\x04\x2e\x12\x84\x17\x8b\x0b\x4a\x3c\x77\xb6\x0c\xc4\xcc\xa4\xaf\xc9\xdc\xbe\xfb\x6e\xa6\xd4\x77\x53\x4a\x9e\x00\x7e\x0b\x7b\x39\xdf\x25\x55\x5a\xdd\xdf\x17\xf4\x1f\x25\x2b\x42\x74\x93\xd5\x2a\x42\x1b\xef\x8b\xac\xd9\x99\x86\x5c\x6d\x76\xe6\xdb\x8c\x0a\x52\x30\x39\x8e\xd4\x92\x70\x7e\x6e\x35\x99\xc8\x95\xfe\x9d\xe9\x45\xfd\x4a\x4a\xd0\xca\x7c\x07\x73\x7f\xed\xdb\x05\x9d\x83\x67\xc0\x60\xa0\xf7\xdf\x01\x00\x00\xff\xff\xf4\xea\xeb\x4d\xb7\xbf\x0a\x00")
-func distAssetsNomadUiB1d9a065040a9f727f900c02bfb30b88JsBytes() ([]byte, error) {
+func distAssetsNomadUi3f5aade8a94ca946d42dfb0ab70ffee0JsBytes() ([]byte, error) {
return bindataRead(
- _distAssetsNomadUiB1d9a065040a9f727f900c02bfb30b88Js,
- "dist/assets/nomad-ui-b1d9a065040a9f727f900c02bfb30b88.js",
+ _distAssetsNomadUi3f5aade8a94ca946d42dfb0ab70ffee0Js,
+ "dist/assets/nomad-ui-3f5aade8a94ca946d42dfb0ab70ffee0.js",
)
}
-func distAssetsNomadUiB1d9a065040a9f727f900c02bfb30b88Js() (*asset, error) {
- bytes, err := distAssetsNomadUiB1d9a065040a9f727f900c02bfb30b88JsBytes()
+func distAssetsNomadUi3f5aade8a94ca946d42dfb0ab70ffee0Js() (*asset, error) {
+ bytes, err := distAssetsNomadUi3f5aade8a94ca946d42dfb0ab70ffee0JsBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "dist/assets/nomad-ui-b1d9a065040a9f727f900c02bfb30b88.js", size: 614830, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
+ info := bindataFileInfo{name: "dist/assets/nomad-ui-3f5aade8a94ca946d42dfb0ab70ffee0.js", size: 704439, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
-var _distAssetsVendor1192528ac070501feaf347024c2cae41Js = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xfd\xfd\x7b\xd3\xb8\xd2\x30\x8e\xff\xde\xbf\x22\xf5\x77\xc9\x91\x88\x92\xda\xce\x5b\x6b\xaa\xcd\x97\xa5\xe5\x65\x0f\x01\x96\x96\x65\x21\xcd\xe9\xed\x26\x4a\xeb\x25\x91\x8b\xad\x50\x4a\x9d\xfb\x6f\xff\x5c\x1a\x49\xb6\x9c\x38\x05\xce\xb9\x9f\xfb\x79\xe0\xba\x1a\xeb\x6d\x34\x7a\x1b\x8d\x46\x33\xa3\x9b\x88\x4f\xe3\x9b\xd6\xf1\xe2\x82\x25\xc7\xaf\xfe\xa4\x77\x4f\x8f\x1f\x9f\xbe\x7b\x7b\x7c\x12\xdc\x39\x4c\x46\x36\x93\x78\x29\x22\x7e\x09\xbf\x2c\x69\xa6\x2c\xf9\x12\x4d\x98\x13\xec\xba\x2b\x72\xfc\xd7\xe9\xf1\xab\xa3\xf3\x37\x6f\x5f\x9f\xbe\x3e\xfd\xf0\x46\x96\x3a\x0a\x05\x0b\x76\xbd\x15\x39\xff\xfd\x8f\x77\xc7\x6f\x3f\x9c\xbf\x78\x75\x7a\xfc\xec\xed\xe3\xd3\x17\xaf\x5f\xc9\x32\x3b\x5f\xc2\xa4\x36\x8f\xc3\x29\x4b\xc8\x94\xcd\x22\xce\x48\xc2\x3e\x2f\xa3\x84\x0d\xe3\xe9\x72\x9e\x87\xcc\xef\xdf\x29\x49\x96\x9c\x47\xfc\xf2\x94\xa5\x22\xa5\xbb\xde\x4e\x34\x43\xb3\x25\x9f\x88\x28\xe6\x88\xe1\x3b\x67\x99\xb2\x5a\x2a\x92\x68\x22\x9c\x1d\x93\x50\x13\x08\xdf\xc9\xaa\x18\x7d\x7d\xf1\x37\x9b\x88\xd6\x24\x61\xa1\x60\x88\x2f\xe7\x73\xbc\x93\x30\xb1\x4c\x78\x8d\xb5\xce\xcf\xe9\x97\x38\x9a\xd6\x5c\x32\x65\x73\x26\x18\x44\x11\xb6\x92\x45\x39\xbd\x53\x88\x06\x25\x7c\x83\x2a\xb4\x83\xca\x46\x04\x1b\x8d\x09\xf2\xaf\xd5\x4e\xfe\x49\xf5\x17\x2d\x01\xa1\x76\x23\x67\x71\x82\x24\x4e\x82\x8e\xc6\x84\xd3\x39\x62\xc4\x41\x3a\x3b\x76\x88\xc0\x24\xa1\xa2\x35\x67\xfc\x52\x5c\x35\xbd\x47\xc9\xaf\xd4\x7d\x94\x34\x9b\x58\x8c\x92\x71\x8b\x7d\xbd\x8e\x13\x91\xa2\xbc\xdd\xbc\xb5\x80\x2a\x4c\xca\x8a\xa8\x16\xd2\x3b\x1e\x3f\x89\xf9\x6c\x1e\x4d\x44\x90\x57\x2f\x54\x4f\x26\x24\xda\x91\x68\x24\xb5\x88\xd7\x04\x16\xad\xab\x30\x7d\x7d\xc3\xdf\x24\xf1\x35\x4b\xc4\x2d\x4a\x70\xbd\xce\xab\x22\x51\x44\x25\x1a\x84\x8d\xa2\x31\x65\xea\x2b\x19\x53\x3e\x4a\xc6\x78\x45\x16\xe1\x27\x76\xc4\x66\xe1\x72\x2e\x8e\x01\x9b\x7c\x96\x24\x54\x20\x4c\x22\x8a\xe4\x8f\x8b\x21\x2e\xa6\x23\x47\x37\xdb\x21\x8e\x46\xdf\x21\x8e\x6a\x8f\x33\x2e\x26\x40\x88\x18\x11\x84\x93\x04\xdf\x89\xab\x28\x6d\x2d\x97\xd1\x94\x46\x8d\x06\x81\x50\x34\xa5\x4c\x7d\x4d\xd9\x75\x4a\x77\x4d\xdf\xc9\x26\xa8\xaf\x41\x1c\x08\x95\x43\xc1\xa6\x77\xba\xb6\xe0\x6e\xb5\x52\x09\x93\x70\x3e\xbf\x08\x27\x9f\x28\x57\xe1\xab\x30\x55\x4d\x48\x1f\xa7\x47\xec\x9a\xee\x7a\xba\xb2\xf4\xf1\x3c\x0a\x53\x9a\xa8\x60\xc2\xa2\x59\xc4\xa6\x94\xb3\x9b\xda\xe3\x24\x09\x6f\x91\xa9\x1d\xab\x0c\xa9\x08\x05\xa3\x0e\x67\x37\xce\x2a\x6f\x4f\x8a\xf0\x5d\x11\x5a\xca\x49\x91\xb7\xa4\x88\x9f\xab\x56\x17\x13\x26\xa2\xc9\x88\x8d\xb3\x2c\x19\xb1\x86\xb3\x17\xf1\x29\xfb\xea\x8c\x1f\x45\xf5\x7a\x64\xd0\x7a\x84\x65\x9e\xa8\x15\x4d\x21\x9b\xfc\x28\x72\x9a\x19\x13\x65\x59\x31\x1d\x89\x90\x75\x27\xf1\x4d\x4d\x36\xe1\x38\x49\xe2\x04\x39\x4f\xe2\xe5\x7c\x5a\xe3\xb1\xa8\xcd\x22\x3e\xad\xa9\x4e\xab\xfd\x97\xd3\x60\x0d\xe7\xbf\x6a\xd1\x42\xf6\x0b\x9b\xd6\x66\x49\xbc\x90\xb1\xa2\xe1\xfc\x97\x83\x57\x00\x8c\xf0\x7a\xdd\xb9\x66\x7c\x1a\xf1\x4b\x67\x97\xd2\x48\xf5\x40\xbd\xee\xcc\x22\x1e\xce\xa3\x6f\x6c\x5a\x8a\x46\x51\x4b\xd6\x71\xc4\xae\x53\xc4\x31\xe1\xad\xeb\x65\x7a\x85\x22\x8c\x49\x54\xf4\xc4\x44\xe1\x19\xcd\x90\xd3\x92\xa5\x59\x6b\x72\x15\x26\x8f\x05\x72\x31\x36\xcb\x7f\xc7\xf4\x12\xa7\xac\x95\x5e\xcf\x23\x81\x9c\x3d\x47\xad\xa5\x22\xd8\x4a\xe7\xd1\x84\x21\x97\x34\x3d\x39\x1d\x5d\x12\x53\x33\x49\x1e\x45\x87\xf1\xa3\xa8\xd1\x50\x2b\x24\xa4\x7c\x14\x8d\x77\xa0\xca\x96\x43\x29\x0d\xa1\x7e\x97\x52\x9a\x98\x11\xde\xec\xb7\x90\xcb\x4e\x0b\x27\x13\x96\xa6\xb5\xeb\x30\x61\x5c\x98\xde\x8b\x67\xb5\x24\x8e\x85\x83\x77\x92\xd6\x75\x7c\x8d\xf0\x8a\xcd\x53\xa6\xdb\x04\xf0\x27\x31\x17\x11\x5f\x32\x99\x41\x76\x42\x88\x57\x2b\xdd\xba\xa4\xf5\x77\x1c\x71\x68\x41\xd1\x2b\x33\x39\x6f\x54\x86\x5d\xb4\x2b\xa7\x46\xbd\xbe\x5b\x9a\x1b\x78\x15\xb6\xae\x93\x58\xc4\xe2\xf6\x9a\xb5\x36\x56\x67\x41\x95\x0c\x7d\xb5\xd6\x88\xa1\x27\x3b\x92\xca\x52\x4a\x59\x96\x39\x31\x90\x5f\x67\x97\x4a\x78\xf1\xac\x06\xc3\xaa\x61\x58\xb1\x59\xa6\xe8\x30\x8c\xd4\x54\xd5\x98\x65\xbb\x9a\x78\x47\xe9\xf1\x57\xc1\x78\x1a\x5d\xcc\x19\x62\x38\xcb\x50\x9e\x89\x32\xbc\x22\x36\xca\x1a\x07\x1b\x51\xd9\x61\xc5\x54\xa2\x94\x16\xcb\x2c\xcb\x1c\xb9\x1e\x6f\xe5\xd4\x2b\x25\x98\x49\x52\xd5\x3c\x45\x2d\x5b\x37\x49\x78\xad\x68\x75\x5a\xaf\xa3\x32\x49\xd8\xcc\x82\xf4\x72\x2d\xd3\x0e\x8c\x0b\xa2\x70\x8b\x14\x91\xd3\x7d\x6a\xb2\xb4\xc2\xeb\xeb\xf9\x2d\x14\x2f\x11\x90\x9c\x9c\xdb\x91\x7a\x9e\x51\xb7\x44\x4a\x8a\xc6\x57\x52\xaa\x7a\x5d\x75\xbe\x1a\x32\x54\xd1\x64\xca\xb0\xde\x23\x36\xa7\x44\xbd\xae\x0a\xac\xc7\x23\x4c\x2a\x20\x95\x07\x6b\xc9\x53\xc6\xec\xa1\x5a\x27\x80\x5b\x49\x70\x19\x0e\x74\xdf\xfa\x90\xeb\x2e\x91\xab\xdf\x1a\xd7\x52\x15\xf9\xd8\xef\x88\xe4\xf6\xae\x44\x9e\x21\x70\xae\xc7\x85\xac\x17\x92\x70\x57\xd0\xad\xf3\xdb\xbb\x2d\x53\xc8\x4c\x0a\x5d\x8c\xc9\x05\xcf\xa6\x0e\x5e\x47\xfe\x7c\x03\x7b\x43\x97\xf4\x4c\x30\x63\xab\x08\x11\x26\x82\xba\x8f\xc4\x21\x33\x44\x48\x18\x02\xc4\x29\x1b\x89\xf1\x8e\xfc\x43\xb9\xe9\xf0\x41\xfe\x15\xac\xef\xfb\x08\x1b\x62\xc1\xca\x18\x19\xf2\x5a\xe2\x41\x64\x97\xca\x21\xa1\xdb\xbb\xd3\x10\xf1\x9d\x82\x5f\xc9\x37\x59\xc2\xa9\xfb\x88\x1f\x9a\xbd\xee\x11\x37\x58\x27\x54\x8c\xf8\x98\x44\xa5\xb6\x8e\xf8\xb8\x18\x6e\xcd\xa2\x29\xe4\x75\x68\xb5\x93\x6f\xff\x92\xbe\x0e\x50\xf5\x16\xec\x92\x28\x9f\xc3\x15\xb3\x11\x07\x39\x3b\x01\x50\xd6\x33\x87\x9f\xd8\x5b\x95\x8e\x70\x60\xb8\x8c\xca\x9c\x0a\xb7\xc8\x4c\xd5\x39\x9a\xa0\xc4\xf0\x1a\xd8\x7c\x10\xb6\x31\xf8\x56\x15\x5b\x68\xab\x24\x19\xd4\xe6\xc6\x0c\x81\xd7\x88\x4d\x90\x20\x0c\xe3\x55\x4e\x0e\x72\xd2\x28\x88\xd0\xf8\xbc\x00\x7e\x47\x76\x4f\x15\xa4\x59\x0e\x83\x88\x15\x41\x8a\xc1\xa5\xf6\x86\x2f\x59\x8a\x82\x9d\xd8\x89\xea\x75\x98\x0a\xc5\xae\x9c\x65\x28\x4c\x2e\x97\x0b\xc6\x45\xaa\x47\xf8\xd0\xaf\xd7\xed\xf9\xb3\xb1\xf5\x85\xbc\xb6\xe4\xe9\xf2\x5a\xb3\x06\x7a\xd3\xbb\x09\xd3\x9a\xc2\x60\x4a\x6a\xec\xeb\x35\x9b\xc8\xc4\xff\x52\x51\x28\x9a\x92\x1a\xcc\x26\x9d\x1d\xff\x57\x2d\xe2\xa9\x60\xe1\xb4\x76\x19\x8b\x20\x67\x38\x72\x64\x6a\x22\xd6\xe0\x80\xdf\x58\x47\x12\x13\x60\xc1\x24\x33\xa4\x58\x31\xb9\xb9\x70\xd9\x73\x74\x34\xc6\x44\xb6\x96\x72\xa8\x22\xe4\x13\xb9\x53\x2d\x07\xb2\x05\x21\xe2\x30\x2e\x84\x93\x5d\x17\x07\x2a\x4a\x31\x9c\xbb\x1e\xc6\x2b\xbc\xb9\x0d\x01\x3b\xa2\x56\xa9\xea\xc3\x19\xda\xe5\x59\x66\x96\x14\x2f\x6d\x3b\x88\x53\x03\x73\x34\x26\x29\x81\x63\x0b\x5e\x27\xca\x82\xf0\x0a\x0a\xaf\x70\x26\x7c\xa5\x0f\x2c\xad\x10\xb8\xcf\x32\x22\x7a\xe4\x7d\xc9\x45\xac\x75\xc9\x40\x77\xb5\x20\x12\x05\xc9\x69\xaa\x06\xca\xaf\x55\x71\x94\x69\x31\x2e\x92\x88\xe5\xa7\x97\xbf\xd3\xd6\x39\x0b\x3f\x9d\xa7\x8c\x71\x9a\x58\xf9\x60\xd2\x59\xe1\x35\x9a\xcf\xf0\x9d\x3a\xce\x40\x3c\x76\x64\x07\xaa\x3c\xa8\x54\xdd\x64\xce\xc2\xc4\x5e\x22\x3f\x88\x09\x9c\x22\x84\x84\xa5\xdb\xe5\xcc\xe2\xd8\x21\x16\xa0\x15\xb6\x93\xf6\x2e\xc2\xc4\x91\xbd\xbe\x3d\x47\x98\x4e\x67\x0e\x19\x19\x7a\x60\x1f\x44\x0c\x35\xb1\x8a\xeb\xe5\x03\x67\xa3\xa2\x06\x79\x5a\xb2\x42\x1b\x38\x7c\x03\x1c\xec\x11\x54\x88\xe3\x72\xc6\xcf\xcb\x6f\xce\x7d\xb9\xec\x48\xa2\x4b\x7c\x75\xaa\x1a\xac\xb3\xb4\x14\x48\xa7\xa5\x70\x70\x5a\xba\xb5\x10\x91\xc8\xdf\xd6\x9e\xcc\x79\x5f\xff\x2c\xc2\x88\x6b\x88\x50\xa8\x3a\x6f\xbe\x0b\x41\xbe\xbc\x0b\x65\x06\x43\xda\x4a\x29\x6b\xd1\x50\x49\x1e\xa7\x67\x4c\xd1\xa1\xeb\x33\x07\x61\x62\x78\x51\x9a\x73\x9d\x0a\x72\xbd\xbe\x91\xa2\x46\xb6\x5e\x2f\x2f\xb8\x7a\x1d\xad\xad\xc0\xbb\xf5\x93\x7e\x49\x46\xb0\xc2\x2b\xd8\x96\x30\x71\x96\x5c\xd3\xb4\xa2\x8e\xa7\x61\x2a\x7e\x8b\x63\x61\x53\x49\xb9\x34\xef\x41\xb3\x80\xb2\x5b\xc6\x74\xb0\x4e\x19\xe4\x76\x95\xb3\xd9\x39\x24\x55\xba\x5e\x37\x73\x63\x31\xcd\x17\x3b\x0e\x58\x6b\x11\x4b\x3a\x20\x0b\x2b\xbc\xed\x61\x2b\x89\x59\x60\x77\x22\xa2\x38\x6d\xab\xf5\xa8\x85\x2a\x8a\x5f\x95\x24\x8b\xe4\xb4\xc5\x3a\x83\x24\xc5\x19\xa4\xc6\x6c\xd2\x0a\x14\x38\xcb\x9c\x91\xea\x00\x15\x1e\x4b\xe2\xa8\x8f\x01\xc5\xae\x29\xe2\x13\x91\x44\xfc\x12\x98\x64\x49\x97\x72\xe8\x91\x05\x5d\xa2\xb0\x4b\xe5\x89\xc3\x80\x54\x80\x7e\x16\x66\x6c\xc1\x2c\x38\xe5\x95\x2d\x6b\x30\xe9\x0e\x5f\x2e\x2e\x58\x62\x0d\x9e\xd5\xa0\x57\x90\xf6\xb3\xb5\xa7\xdb\xfa\xeb\x48\x9d\x5f\x0c\x74\x19\xfc\x59\xd8\x4b\x6b\x5b\x22\x09\x1d\x8d\x81\x73\x53\x9c\x5a\xce\x5f\x36\x1a\x1c\xeb\xf3\xa5\x40\x4c\xf2\x6a\x1c\xe7\x87\x8f\x64\x4d\xf8\x90\xa3\xba\x81\x45\x59\x34\xa4\x71\x21\x02\x6f\x9c\xd9\xf3\x53\xb9\x92\x34\xcd\xe5\x4e\x84\xeb\x75\xa8\x1a\x78\xc5\xbc\x72\x99\xe4\x98\xd6\x39\x90\x27\x6f\x2c\x15\xf9\x27\x26\x90\xf1\x4b\x38\x5f\xb2\xd7\x33\x9d\x4f\x87\xa8\x30\x5f\x98\xb0\xd2\x41\xd9\x88\x8f\x74\x5d\x8f\x85\x89\x92\x5b\x7e\x6b\x29\x26\xc8\x42\xfd\x6a\x6d\xda\xc9\x63\xec\xf9\xf5\x0c\x6a\x3a\xbf\x9e\xd1\x3b\xb6\xb8\x16\xb7\xc1\xae\x47\x96\x7c\x99\xb2\xe9\x69\xfc\x89\xf1\x34\x18\x8d\x75\xf8\x05\xbf\x5e\x0a\x19\x8c\xbf\xb0\x64\x36\x8f\x6f\x82\xa6\x4f\x26\x57\x61\x92\xbe\x64\x33\xf1\xfa\x0b\x4b\x02\x17\xb8\x00\x95\x71\xd7\x23\x11\xff\x12\xce\xa3\xe9\x30\xe6\xe2\x2a\x80\xc5\xa6\x63\x9e\xc6\xc9\x22\x84\x2c\xcb\x94\x25\x2f\x54\x64\x28\xd8\x14\x4a\xa5\xb1\xfc\xb9\x0e\x93\x94\x4d\xe5\x8c\x79\x13\x4a\x0e\x7b\x34\x26\x0b\x96\x44\xd3\x88\x2d\x14\xac\x64\x36\xf1\xf7\x7d\x5f\xe6\xbd\x61\xec\xd3\x34\xbc\x1d\x46\xe9\x22\x14\x93\xab\x60\xd7\x5b\x61\x02\xad\x2a\x9a\x7f\xad\x0f\x08\x79\xd3\xa3\xf4\x4f\x59\xad\xe1\x78\x64\xf7\x80\x58\x05\x46\x9d\xb7\xd6\xea\x27\x36\x37\x50\x5e\xbc\x2b\x4c\x22\xba\x1b\xa5\xaf\xc2\x57\xb2\x2b\xa7\xad\x4b\x26\x4e\xa3\x05\x43\x18\xe4\x8d\xa6\xbb\x0e\xdd\x7a\x7d\x97\xb7\xa0\x97\xe1\xcb\xee\x1e\x3b\xe2\xbd\x6a\x0d\x44\xad\xb5\x0c\xe2\xf2\x3e\xb6\x0b\xa9\x2e\x85\x98\xb5\x3e\xad\xd7\xd1\x2e\x6f\x99\xbe\xcb\xb2\xe2\xbb\x5e\x4f\xb0\x64\xf2\x58\xeb\x5c\x91\x4d\x90\x84\x46\xf5\xba\x0b\xdc\x5e\x69\x6c\x4d\xa4\x3d\x37\x72\x89\x64\x4e\x71\x78\xeb\x22\xba\x7c\x1e\x2f\x13\x4c\x54\xe7\xe4\xd2\x91\xa7\x49\xfc\x8d\xf1\x7a\x7d\x2d\x42\xb2\x6e\x46\x80\xb7\x53\x0c\x0a\x8d\x56\x85\x00\x5c\xc7\x15\x43\x39\x95\x63\xa0\xce\x6e\x33\xf4\x2a\x7c\x55\x48\x8d\xd5\x80\x0c\x26\xe8\x0a\x09\x4c\x18\x0e\xe4\xef\x7a\x87\xc8\x23\x97\x58\x09\xaa\xd8\xea\x62\xf5\xa7\xf1\x82\x0d\xaa\x22\x83\x6a\x39\xb7\x6a\x8a\xde\x3e\x79\x2e\xdc\xfe\xf5\xd7\x5f\x5d\x92\x50\xf7\x51\x72\xc8\x1f\x25\x8d\x06\x8e\x66\x5a\x22\x5d\xaf\x33\x35\xbb\x94\xa0\x64\x94\x8c\x49\x42\x84\xe9\x80\x5d\x57\x37\x63\xd7\x53\xd2\xe5\x05\xe5\x7a\xbf\xd3\x14\x49\x32\x90\x23\x4b\x80\x7c\x5b\x22\x8d\x24\x92\x63\x19\x23\x21\x7b\xec\xf1\x10\x0a\x2a\x14\x95\x34\x6a\x3d\x96\x56\x64\x24\xaa\xb8\x29\x00\x59\x74\xe4\x4c\x47\x4a\x72\x74\x3e\xd3\x91\x73\x1d\x39\xa7\x10\x50\x91\x6a\x2e\xe9\x14\x15\xa0\x45\xb4\xca\x23\xbe\x2d\x74\x06\xf1\x6d\x41\x75\x84\xae\x3d\x7d\x77\xfa\x24\x47\xf9\xdd\xe9\x13\x9a\x47\xaa\x0c\xf1\x6c\x96\x32\x03\x5f\x05\x68\x11\xad\xf2\x5c\x1b\x74\xaf\x67\x54\xce\x01\x83\x6f\x3c\x09\xe7\xcc\x20\x0d\x01\x5a\x44\x13\xf7\x70\x61\x0e\x5d\xc5\x26\xb3\xb0\xc5\x01\xb1\xba\x2a\xa0\x8b\x11\x1f\x8f\x01\xce\x28\x19\xd3\xa8\xb8\xaf\x81\x7b\x99\x2f\x74\xd7\x2b\x86\xe9\x52\x4e\x1b\x2d\x1d\x63\xfa\xa0\x7d\xae\x84\xeb\x47\xe6\xc2\x67\x57\x52\xa4\xe9\xa0\x4c\x3e\x02\x39\xb7\x8d\x80\x1e\xd6\x00\xc2\x46\xf8\x65\x03\x90\xd9\x30\xd9\xf5\x28\xa5\x5f\xea\x75\xf4\x45\x4e\x70\xde\x5a\x5e\xcb\xd9\xfe\x1a\x7a\x45\x4f\x52\x89\x97\xb5\x23\x5c\x6c\xdb\xb6\x2f\xb3\x2c\x67\x4c\x72\xec\xd6\xe6\x4a\x01\xe6\xdc\x06\x73\xe8\x0e\x86\xa1\xb8\x6a\x4d\x58\x34\x07\x39\xa8\x1b\x40\x78\x36\x8f\xe3\xa4\xb4\xb1\xdf\x14\xab\xb8\xc1\x08\xa7\x66\xfa\x83\x84\x55\xd4\xeb\x51\xfa\x34\xe2\x91\x90\x8c\x5f\xbd\x8e\x38\x3d\x87\x61\xe4\x05\x80\x63\xfb\xd8\x9f\x90\x88\x42\x45\x8b\x88\x23\xc3\x17\x90\xe2\xda\x22\x56\xa9\xe1\x45\x9a\xa7\x36\x8b\xd4\x90\xba\xea\xe6\x08\x96\x6d\x04\xcb\x16\xf1\x7a\x5d\x8e\xae\xc4\x66\x94\x8c\xb3\x6c\x97\xd7\xeb\x37\x30\xe0\x78\x97\xd2\x1b\x24\x63\x25\x89\x0f\x1b\x0d\x83\x7a\xd8\x88\x0b\xfc\xbe\xca\x06\xc2\xa8\xf0\x56\xba\xbc\xbe\x4e\x58\x9a\x1e\xb1\xeb\x84\x4d\x42\x99\xfe\x3e\x4c\x78\xc4\x2f\xb7\x30\xcd\x93\x98\xa7\xb1\xe4\xef\xf5\x47\xeb\x26\x4c\x78\x39\x84\x1c\x0b\x5a\xed\x46\x81\x0b\x6a\x4e\xc3\xee\xe5\x93\x82\x46\x24\x34\x27\x31\xb5\x09\x2a\x4b\x22\xd5\x28\xf3\xd6\xb4\x80\xf8\x3c\xe4\xd3\xb9\x24\xfc\x55\xb1\x8a\x77\x96\x3b\xa6\x75\x91\x43\x62\x3a\x1a\xcb\xbe\x7c\x14\x1e\xae\x1f\xd9\x1f\x85\x8d\x06\xd4\x14\x51\xc7\xd9\x3c\xe7\xe4\xd9\x47\xe1\xb8\x80\x98\x4a\xb2\x19\x35\xa8\x73\xc6\x47\x4e\x23\x6c\x38\xe3\x9a\x53\x30\xec\x23\x77\x8c\xa3\x06\x4d\x1b\x8e\x6c\xb4\x1d\x3d\x4a\xc7\x0d\x87\xd4\x9c\x9d\x88\x46\xc5\xdd\x88\xaf\x2e\x27\x6a\x11\xb5\x6b\xdb\x89\xcd\xe5\xcc\xea\x2b\x62\x0d\xe7\x8c\x3f\x36\xa9\x12\xec\xc6\x7e\x20\xa1\x29\x2a\x1e\x63\x7d\x7f\xe1\x60\x59\xcc\x69\xa0\x5c\x72\x84\x5b\xa9\x08\x27\x9f\x24\x43\xb1\xeb\xad\x72\xa9\x97\x25\x26\xb7\x8e\x1d\x92\xc1\x94\xad\x7d\x4d\x1e\xd3\xbb\x55\x41\x37\x3e\xa9\xa1\xfb\xe9\xa1\x81\x0b\xab\xc7\x70\xa7\x86\xbe\x22\xfd\x4d\x77\x5d\x6b\x56\x0c\xb7\xad\xfc\xa7\x3a\x87\xc5\xb4\x9b\xa8\x9f\x65\xdc\x4f\xcb\x8c\xfb\x04\xdd\xad\x08\xc3\x8a\x7b\x5f\x63\x9b\x23\x60\x9c\x71\xbd\x1e\x21\x60\x9e\x07\x28\x01\xe9\xea\x8a\x4c\xe0\x8b\x40\xb2\x09\x40\x16\x1c\xa8\x7e\x91\x81\x41\x62\xd8\xee\x40\xdf\x91\x27\xc0\x82\xe7\x55\x31\x2c\xf9\x78\x59\xd5\xae\xa9\x33\xaf\x52\x55\x05\xd8\x41\xa9\xaa\x63\xc3\x13\xd9\x5d\x39\x45\x54\xe2\x64\x26\x64\x6b\xef\x5d\xd9\x74\xd7\x23\x55\x23\x44\x61\xf1\xbc\x36\x9d\xf9\x89\xdd\xa6\x03\xeb\xbb\xc4\x6e\x00\x81\x24\xdc\x9c\x7b\x44\xd1\x1c\x01\xdc\xa5\x3a\xf3\x14\x1c\x90\x62\x1d\xde\x96\x26\xd2\x1b\x5b\xb2\x27\x87\xec\x65\x7c\xc3\x92\x27\x61\xca\x10\xde\x79\x2b\x9b\xff\x76\xc4\x1b\x4e\xea\xc8\x0f\x31\xb6\xcf\x8d\xaf\xac\x73\x63\xaa\xce\x30\xc5\xb9\x71\xf0\x16\x26\xd9\xdb\xd1\x1a\xcc\xb1\x11\x80\xe7\x60\xfe\xb6\x9a\x42\x12\x40\x6e\x73\x6c\x90\xa0\xaf\x10\xc7\x6a\x4c\x24\x1a\xf6\x39\x2a\x81\x25\xf2\xa2\xd4\xae\x23\xd5\xae\x17\x72\x7a\x5b\xfb\xd1\xcb\xd2\xbe\x40\x1d\xa7\x51\x90\x7e\xc9\xaa\x8b\xa6\xb9\xeb\xd4\xc0\x91\x7b\x48\xd9\x80\x0f\x9c\x86\x13\x38\x4e\xe0\x34\x1d\xac\x8a\x5c\xc7\x37\xc8\x73\x89\xda\x57\xc2\xaf\xc8\x25\x11\xc6\xf9\x94\x47\xb8\x95\x2e\x2f\x52\x91\x20\x0f\x37\x14\x7e\x4f\xe9\x1e\x3a\x1b\x8d\xfe\x75\x36\x1a\x3f\x3c\x1b\xe3\x0c\x9d\x9d\xe1\x01\x1a\x3d\xbf\x1a\x2f\x16\x28\x4d\xf1\x20\x1b\xc6\xd9\x70\x38\x90\xff\xb3\xa3\x38\x3b\x3a\x82\x3f\x03\xf9\x3f\x9b\x4e\xa7\x83\xe9\x20\x9b\xc6\x83\xec\x66\x14\x67\x37\xe3\x41\xf6\x7e\x14\x67\xef\xc7\x83\xec\x8f\x78\x90\x7d\x80\x7f\x59\xf1\x37\xfb\xf0\x21\xbb\xbc\x44\x97\x97\x97\x03\x3c\xc8\x9e\x3d\x43\xcf\x9e\x3d\x93\x5f\x2c\x3b\xce\xc2\xec\x71\x76\x75\x35\xc8\x9e\x3f\x1f\x64\x9f\x3e\x0d\xb2\xc5\x62\x90\xa5\xe9\x20\x3b\xb9\xf3\xc8\xc1\x2a\xfb\x9a\xfd\x95\x7d\xfb\x36\xc8\x3e\x7e\x1c\x64\x2d\xbc\x77\x49\xbe\x55\x22\xfe\xf2\xf4\x24\x7b\x79\x9a\xbd\x7c\x39\x90\xff\xb3\xf9\x9d\x47\x3a\x2b\x99\xfd\xb9\x5c\x9b\xbf\x95\x06\xe3\x5d\x71\x1c\xd5\x62\xf8\x9d\x8d\x19\x93\xc0\x01\xa3\x24\x20\xcd\xaf\x07\x47\xc9\x18\x61\x79\x6c\xab\xd7\xd1\x6f\x72\x44\x23\x4c\x04\x7c\x8b\x91\x3b\x1e\x57\x94\x7a\x89\xa2\x6a\x8a\x4a\xc4\xc8\x93\x64\xc2\x1f\x4b\x80\x1c\x80\xf0\x2a\x08\xb0\x92\x15\xf3\x77\x14\x8a\x10\xe1\x56\x9c\x4c\x23\x1e\xce\xb7\x42\x66\x78\x65\x91\xb8\xcf\x25\x71\x02\x2b\xb8\xb4\x01\x12\xf4\x3d\x12\x84\x95\xa0\x63\xf2\x5c\xce\x6b\xf9\xc7\x56\x56\xb0\x56\x06\x89\x28\x6b\xc1\x49\x0f\x3d\x55\xf4\x4b\x50\x97\x70\x1a\xe5\x17\x69\x87\x1c\x2e\xd3\x7e\x1b\x45\x23\x31\x1e\x0f\xe4\x5f\xaa\x03\x01\x04\x50\x42\xe5\x2f\xd6\x60\xf6\xce\x46\xa3\xb3\xf4\xec\x64\xbc\x87\x07\x49\x2b\x61\xd7\xf3\x70\xc2\xd0\xde\xbf\xce\x46\xd9\xd9\xf8\x97\xbd\x4b\xe2\x38\x38\xb0\x12\xce\xce\x54\x9c\x59\x77\x9b\x3a\x36\x31\x75\x1c\x8b\x59\x52\x67\x9c\xb8\x41\x87\x28\x92\x0c\xd1\x40\xfe\xd5\xc7\x1c\x79\x02\x93\x41\x03\x2c\x5e\xad\xe4\x7e\x24\x3b\x00\x64\xf6\xe5\xee\x31\x47\x59\xe0\x69\xad\x5e\x7e\x6f\x93\xaf\xee\x4e\xa5\x94\x4e\xb4\xe6\x31\xbf\x94\x25\xd5\x41\x18\x58\x4f\xb6\x92\x68\x7e\x6b\xcd\xc3\x54\xbc\xe0\x53\xf6\x95\xba\x8f\xdc\x43\xca\xeb\xf5\x6f\x2d\xc1\x52\x99\xe9\x11\x66\x94\xe5\xad\xff\x46\x12\x4c\x4a\xf9\x09\x6f\x52\xaf\xcc\xdc\xff\x49\xf7\xce\xa6\x7b\xe4\x83\xfc\x91\x1f\xcf\xe4\xc7\x5d\x7b\xb5\x47\xfe\x09\x5f\x9d\xd5\x1e\xf9\x85\xee\x8d\x1a\xcd\xf1\xe0\x6c\x7a\xd7\x5b\xed\x91\x3f\x54\xde\xc1\x1e\xf9\x4b\x7d\xe9\xd0\xc7\x22\xa4\x63\x7e\x07\x10\x1e\x91\xe0\x18\xd3\x01\x09\x51\xb0\x02\xa4\x47\x24\x50\x0e\xc9\x8d\x3d\x92\x14\x49\x8d\x3d\x12\x31\xba\xf7\x31\x93\x61\x09\x32\x18\x00\x92\x97\x11\x89\x4b\xf1\x68\x10\xa8\x24\x3c\x90\x89\xa1\x04\xe1\x36\x0f\xc6\x77\x2e\xf1\xbb\xbd\xd5\xe8\x1f\x61\xf3\xdb\xd9\xd2\x75\x1f\xbb\xcd\xb3\xa5\xdb\x7d\xfa\xf4\x6c\xe9\xf6\x5d\x19\x38\xea\xcb\xc0\xd3\x03\x08\x3c\x3d\x7a\x22\x03\x47\x4f\x21\xf0\xd4\xed\xcb\xbf\x9e\x0a\x1c\x3f\x1d\xdf\x79\x00\x2d\x1b\x9d\x2d\xdd\x1e\x14\x70\x7b\x4f\x9f\x9e\xed\x99\x04\x74\x96\x3e\x1c\x94\x13\x4d\x12\x96\xbf\xab\xbd\x88\xa4\xac\x44\x66\x96\xcc\x50\xf7\x94\x49\x2a\x31\x44\x02\x0f\x2c\x55\x30\x66\xc9\xc3\xe4\xe9\x65\xc0\x03\xb1\xb2\x04\x80\xac\xb4\x64\xe7\x28\x65\x84\xe1\x01\xc0\x2a\xce\xae\xa4\x38\x13\xc2\xbd\xd2\x5b\x76\x79\xfc\xf5\x1a\x4d\x18\x2a\xe6\x8a\x73\x76\xe6\xc8\x85\x62\x2f\x1d\x74\x36\xc2\x99\xfc\x19\xe3\xec\x6c\x84\x46\xff\x3a\x1b\x4b\x82\x8a\xcf\xc6\x32\x16\x08\x6d\xf9\xce\x45\xae\xf8\x62\x0e\x67\x19\xcf\xb2\x24\xcb\xa2\x15\xc6\xb6\xcc\x91\xd9\xdc\x5a\x51\xdf\xa8\x79\xb6\x77\x76\xf6\xaf\x5f\x1e\x36\x06\x2d\x84\xb3\xd1\xd9\xf8\x6e\x35\x96\xab\xf7\xec\xec\x97\xba\xa3\x78\xca\x59\xb9\xf7\xae\x58\x99\x29\x13\xb0\x90\x37\x77\xf6\x7a\x1d\x31\x3a\x62\x63\x4c\x42\x75\xfc\x4a\xec\xcb\x39\x8e\xef\xb8\x24\x35\xf2\x04\x27\x09\x6c\x59\x16\x2b\x8f\xc9\x33\x36\x92\xbb\xf7\x98\x5a\x4c\xd4\xb5\xae\x1b\x70\xb0\xa1\xe9\x4e\x68\x9d\xdf\x50\xf9\x27\xcb\xee\x56\x44\xc8\x81\x6c\x9d\xdf\x40\xda\x4a\xb5\x65\xca\xa8\x4b\x16\x8c\x7a\xe4\x96\x51\x9f\x7c\x61\xb4\x4d\x2e\x19\xed\x90\x0b\x46\xbb\xe4\x9c\xd1\x1e\xb9\x61\xb4\x4f\x8e\x19\xdd\x2f\x9a\xfc\xd5\xee\xbd\x13\x19\x18\xb4\x7b\xbd\xa0\xdd\xeb\x5a\x87\xa4\x52\x0f\x3f\xe8\x50\xea\xd6\xeb\xec\x81\xe7\xba\xbb\xd4\xcd\x32\xf6\xa0\xe3\xba\x94\xba\xab\x77\xc8\xf9\xe0\x10\x97\xb8\xa4\xfa\x1e\xfc\x16\x6e\x71\x72\x72\x71\x48\x0f\x0e\x0e\x0e\x06\x8e\xd3\x60\x81\xd3\x70\x1a\x6c\x85\xc9\x3b\xe4\x92\x91\xf3\xe1\x83\x43\xfc\x71\x19\x8e\xbd\x27\x29\x40\x12\x01\xab\x88\x2c\xd4\x91\x85\x1c\x99\xec\xd8\x09\x1f\x1c\xd2\xdd\x92\xf2\xc1\x21\x3d\xb2\xeb\xda\xa9\x6f\x90\xfa\x22\xce\xad\x83\xc9\x91\x09\x79\x98\x2c\x19\xb4\x30\x61\xfa\xf3\x83\x43\xfe\x20\x1f\x4c\x40\x06\x19\x23\xff\x2c\xc2\x1f\x1c\x22\x18\xf9\xc5\x8a\xc8\x63\xae\x18\xca\x71\x33\x49\x63\x32\x65\x90\xa2\x81\xad\x29\xec\x8d\xa6\x6c\x4c\x7d\x4a\xa9\x99\x4b\x03\x2d\x86\x3d\xbd\x89\x8f\xa2\xcb\x48\x7c\x90\xdd\xc2\x70\xa0\x27\xde\x95\x46\xb1\x0a\x4c\x75\x49\x53\xa8\xba\x0c\x94\x78\xc1\xe5\xdc\xf3\x5c\x98\xd9\x9b\x40\x68\x85\x1c\x58\xa2\xd3\x40\xbd\xfd\x43\xf9\x31\xf0\x0e\x5c\x37\xf0\x59\x1b\x2b\x56\xfc\x35\x23\x8f\x19\xfd\xc4\x90\xf3\x74\x39\x9f\x7f\x80\x9e\xde\x75\xb1\x75\xcc\x2b\x93\xa4\x1c\x7e\xb2\x26\x67\x4e\x06\xe8\x94\x69\x29\x92\xdc\xa7\x2a\x24\x3c\xf2\xe0\x07\x92\x9e\x60\x68\x72\x62\x8b\xf8\x0d\xd9\x56\x7e\x85\xb5\xce\xa7\x23\xe7\x92\x09\xa7\x91\xcb\xdd\x06\xce\xbb\xd3\x27\x92\x23\xc6\x0d\x31\x56\xd2\x28\xeb\x74\x97\xd3\x61\x0b\x4c\xbd\xae\xc5\xe0\xc0\xce\x17\x0d\xa6\x20\xd0\x91\xab\x4c\xcf\x6c\x5c\xaf\x7b\x30\xce\x8b\x98\x8b\x2b\x59\xd0\x3f\x80\xf0\x14\xf6\x7e\x8d\x4e\x7a\x0f\x3a\x9c\xe4\x85\xc9\x13\x66\x07\x81\xaf\xf8\x6e\x71\x9b\xc0\x3e\x61\xb9\x26\xa6\x96\xe2\xe3\x2c\x53\x5f\xb9\x74\xb6\xf6\x2a\x7c\xb5\xa3\x58\x10\x24\x1e\x78\x7e\xc3\xf3\xf1\x03\xcf\xcf\xd7\x7a\x83\x22\xd1\xe4\x78\xcf\xf3\x09\x48\x7c\x06\x8a\xd4\xf8\x07\x81\xbf\x1f\xb4\xbd\x26\x7f\xd0\x7f\xe0\xaf\x5e\xb3\x0d\xa9\x33\x28\x35\xbe\x9e\x6d\x08\x9e\x75\xfc\xe6\x61\xd0\xb0\x85\x8f\xc4\xa1\xe2\x5f\xcd\x15\x98\xc0\xd1\x0c\x46\x5d\xd2\x66\x4a\x0b\xfd\x40\x8d\x64\xd3\x5b\x91\x77\xc8\x19\x3a\x64\xe4\x0c\x87\x40\x80\x9c\x61\x59\xcf\xa0\xac\x51\x08\xdd\xd9\xf0\x80\x04\x39\x43\x59\xa4\x44\xfa\xd8\x3d\x7c\x34\x14\x4e\x4f\xae\xe2\x44\xe4\x13\xd1\x80\xf9\x79\x38\x16\x88\x37\xc8\x81\x38\x87\x38\x43\x45\xbc\x74\x70\x5f\x11\xa1\xa1\x43\xfe\xd0\x5f\x43\x8b\x78\x41\xad\x95\xfa\x25\xc2\xc6\xf5\x2d\xbb\x64\x5f\x15\x9d\xd0\xa5\xbe\x57\xcc\x2a\x01\x14\x6f\x28\x11\x1b\xae\x29\x57\x48\x02\xb3\x60\x6a\xc3\x6c\x7a\x79\xd6\xa1\xca\xbc\x91\xdd\x3e\x45\x71\xc3\x89\xe8\xfa\xde\x48\x82\x24\x37\x47\xc2\x73\x91\xfa\x8e\x22\x10\xd1\x40\xd5\x12\x05\x57\x88\xe3\xd2\xf5\x12\x65\x2b\xa5\xb8\xf9\x96\xd1\xbd\xa3\x51\x7c\x34\x1e\xe8\xe3\xde\xd9\x58\x1e\xf8\xb2\xb3\x14\x37\x24\x26\x83\x3d\xf2\x86\x51\xe7\xf7\x90\x2f\xc3\xe4\xf6\xfc\x29\xbb\x48\xe0\x63\x18\x26\x93\xab\xf3\xc7\xd7\x49\x34\x3f\x1f\x86\xb7\xe7\xbf\x2f\x39\x3b\xff\x7d\x39\xbf\x3d\x7f\xbc\xbc\x5c\xa6\xe2\xfc\x84\x5d\x0b\x30\xc7\x38\x7f\x3d\x11\xb1\xfc\x7d\x15\x7f\x51\x11\x47\x6c\x02\x1f\x8e\xd1\x58\x3e\x77\x30\x79\xa5\x6a\x91\x35\x48\xe0\x12\xb4\x01\x2c\xe1\x4a\xb0\x12\xa6\x84\x26\x21\x49\x20\x76\xf9\x82\x7c\xfe\x6d\xb3\x34\xa0\xb2\x64\x11\xa4\x42\x8f\x3a\x9a\x6d\xb2\x39\xb0\x60\xf6\xfe\x75\x36\x6d\xfc\xb2\xa7\x0e\x04\x02\x63\x41\x6f\x90\xc0\x3b\x4a\x52\x38\x43\xbb\x21\x12\x94\x55\x4d\x4a\x35\x12\x02\x5b\x95\x18\x7a\x6d\x4b\xa2\x15\x45\x93\x34\xca\x10\x3f\x22\x30\xdc\x4e\xde\x47\xa2\x1c\x18\x36\x67\x0c\xd2\x2a\xfb\xd6\xf7\x05\xdb\xbc\x80\x1c\xa0\xbf\x73\x72\x5f\xb9\x2d\xec\xba\xeb\xfb\x82\x86\xaf\x18\xab\x23\x46\x43\x46\x5e\xca\xbf\x45\xbf\x3e\x65\x08\xdf\xe5\x21\xb6\x36\xf9\xb5\x04\xdd\x6c\xd4\xab\x42\xb6\x33\x1a\x93\x48\xfe\x89\x73\x91\x15\x90\x2a\xcf\x87\x73\x2b\xa7\x33\x34\xf2\x59\x9b\x88\x31\x26\xe6\xc6\x3e\xa7\x36\x9a\x60\x70\xc9\x57\x63\x12\x6d\x24\x9b\x94\xf8\x27\x52\x6c\x90\xea\xd8\xda\x4a\x65\x0c\x93\x15\x98\xaf\x38\xff\x2a\x61\x0b\x62\xa8\x09\x03\x71\x14\x26\x91\x0e\xc1\xf1\xda\x6a\x9a\xdf\x81\xcc\xb1\x4e\x8e\x21\x59\x5d\xd2\x58\x34\x82\x5a\x07\x09\xe7\x5f\xc8\x69\xc4\x5a\x7a\x9c\xc9\xe1\xc6\x0e\x71\x22\xc7\x5c\x0e\xad\x53\x24\xba\x01\xad\x9c\x11\xc8\x40\x75\x2d\xd1\x0f\xd5\x72\x1f\x84\xa4\x02\x42\x31\x1f\xbf\xb1\x62\x63\x8a\x66\x88\x1d\x7a\xae\x5b\xaf\xbb\x87\x94\x99\x13\xfb\x3d\x12\xf4\x42\xb0\xb2\xc3\x47\xee\x98\xb2\x46\xc7\x75\x89\x28\x6e\xb6\xe4\x9f\xd6\xbb\xd3\x27\xb6\xc2\x0e\x97\x53\x23\xbf\x1b\x6a\x5d\x32\xf1\xee\xf4\x89\x61\x35\x80\xb5\x10\xad\xb4\x1c\xc9\xb4\xe4\xff\x3b\x90\x0b\x74\x0a\xc5\xf5\xa2\xa5\xcf\x59\x59\xae\xd8\x6f\x88\x26\x37\x5b\x2b\xea\x37\x64\x4f\x10\x97\x24\x58\xa3\x74\x14\xde\x22\xdc\x14\xf8\x41\xbf\x91\x34\xbd\x02\xce\x6f\xcc\x3e\xfb\x81\xc9\x10\x09\x49\x4a\xbd\x46\xff\x21\x12\x4d\x0f\x37\x50\xbf\xc1\x9b\x89\x2c\xf8\x5c\x91\xfa\xe2\x7e\x31\xa4\xe9\x21\x75\x07\x5f\x19\x8a\x29\x93\x79\xd3\x20\xfd\x15\x8e\x38\x03\x19\xd3\xf0\x48\xda\x84\x20\x0e\x64\x98\xa4\x98\xdc\x49\xaa\x13\xc4\x64\x1a\xde\xbe\x9e\xc9\xee\x08\x42\x8b\x27\x7c\xc7\xd6\x6e\xd1\x48\x4c\x9f\xdb\xb4\x4a\xd2\x9f\x90\x5a\x77\x78\x40\xd3\x34\x28\x84\x9b\x71\xd3\xc3\x7b\x7d\xdc\xc8\xa5\x24\xe1\xa1\x37\x48\x68\xd8\xf8\xcc\x50\x44\x0d\x9c\xa6\x07\x90\x82\xf0\xd7\xcf\x6b\xc0\x07\x28\xa1\x61\x73\x3d\x96\x14\x45\x1b\x1e\x0e\x2c\x48\x24\xa1\x21\x26\x77\x37\x8c\x7d\x0a\x12\x02\x6d\x8b\xac\xf6\x7c\x5e\x1b\xa5\x7c\xd4\x48\x04\xdf\x0d\x85\x88\x91\xfc\x42\x5f\x35\x93\x46\x84\xf7\xfa\x96\xc4\x69\x9d\x51\x56\x77\x48\x82\xf4\x71\x6b\x12\xf3\x49\x28\x10\xcb\xef\x95\x04\xc6\xf2\x60\x78\x23\xd9\xaa\x9b\x1b\xc5\x56\xdd\xc4\x0e\x71\x24\x8a\x70\x16\x73\xde\xcb\xb4\xf7\xef\x55\xda\x7b\x99\x16\xa5\xf1\x7b\x95\xfc\x06\xa9\x8c\xc4\xb9\x51\x21\x93\x44\x9c\xf7\x8a\xc1\x51\xc9\x5d\xf8\xce\x13\xbb\x8a\x43\xb9\xc9\xd9\x1d\x59\x75\xce\xee\xbc\xcf\xa3\x65\xad\x10\x7d\x2d\x59\x8e\x1b\x59\xcd\x0d\x80\x26\x32\xa9\x8a\xef\x10\xa3\xc4\xc8\xb5\x5d\xe2\xe1\xfc\x98\xff\x0e\x39\x53\xc9\xb9\x39\x53\xd9\x80\x69\x78\xab\xda\x36\x9d\xfe\x04\x3b\xa7\xd5\x59\xd2\x61\xc4\xcb\x6c\xe1\xf4\xdf\x02\x53\xc1\x5f\x4e\xff\x3d\x48\x65\x20\x4c\x41\x70\x74\xaa\x6a\xe8\xb1\x8e\xd4\x43\xa0\xe2\xdf\x20\xe8\x09\xe2\x4c\x8b\xa1\x54\x11\xac\x34\x9a\x2a\xee\x58\x0d\x28\x04\x3c\x2f\x1f\x5c\x3b\x6c\xe7\xf7\xf4\x89\x7c\x9a\x8f\x26\xcb\xbf\x8e\xf3\x2f\xd9\xde\x2d\x2c\xaa\xd5\xdd\x6b\x9c\xed\xf4\x07\x4a\x55\x71\xc4\xd3\x1f\x29\x68\x95\x81\x59\x27\x8b\xa8\x1a\x55\xf9\x1f\xe1\x76\x0d\xac\xfb\xf9\xdd\xd6\x74\x8d\xdb\xd5\x7d\x07\x4a\x59\xaa\x6e\x18\x0a\xd9\xf5\x5b\xe6\xba\x99\xdf\xc0\x1e\xff\xc9\xa8\x73\xb2\xe4\xd3\xf0\xf6\x7c\x18\xc3\xcf\xe9\x92\xa5\xf2\xf7\x3d\x9b\x72\xf5\x75\x7a\xb5\x4c\xe0\xe3\x69\x12\xc9\x9f\x93\x50\x2c\x13\x39\x5e\x36\x7b\xfb\x41\x01\x92\x50\x24\x08\x59\x5c\x16\x94\x65\x64\x81\x52\xde\x67\x90\xf7\x7c\x18\x9f\x9f\x2e\xcf\xdf\xb3\xf3\xd3\xab\xf3\xa7\xc9\xf9\x49\x58\xca\xf4\x4f\xe0\xd1\x7e\x81\xbf\x7f\x94\x39\xb5\xbf\xfe\x3d\x4e\x4d\x92\x7a\x12\x4a\x56\x2d\x95\x7f\x96\xf2\xcf\xbc\xcc\xb4\xf5\xcb\x3c\x9b\x37\xc6\x92\xf4\x23\x65\xcb\x2b\xd7\x92\xbd\x9e\x81\xc5\x32\x36\x32\xe5\x15\xaa\x92\xe2\x72\x92\x8e\x0d\x15\xc7\x96\x60\x92\x9a\x8b\x78\xb2\x54\x5f\x31\x26\xf3\x3c\x75\x9e\xa7\xce\x4d\x2a\x60\x1a\xe6\xac\x5b\x9a\x7f\x2d\xf3\xaf\xf9\x1a\x63\xa7\x5a\x94\x6a\x56\x2d\x05\xbe\x6e\xa9\x43\x4b\x08\xcd\x75\x68\x6e\xb1\x71\xa5\x89\xbd\xc1\x20\xcd\xb7\xb3\x58\x9b\x4b\x89\x56\x40\x5c\xcb\x6c\x56\xeb\x0f\x64\xbd\x8f\x6f\x5b\xfe\x20\x5a\xf7\xc1\x48\xbf\x0f\x63\x18\xf1\xfb\x20\x84\xf7\x72\x8f\x1f\xd9\x9a\xd0\xe1\x2a\x5e\x26\x29\xc2\x0f\x3c\x3f\xcb\x3c\xbf\xc8\xf8\xbb\x9e\xd6\xef\x80\xc7\xda\x2a\x37\x2d\x1f\xd3\xb4\x9a\x23\xb2\x21\x6b\x6b\xbd\x88\x2f\x05\x83\x60\xe9\x42\x8f\x89\xb5\xd5\x73\x6e\x80\x00\x1d\x92\xfb\xfc\x73\xb9\x97\x3f\x7f\xae\xe5\xb7\x8e\x04\xab\xf6\x87\x2b\x99\x70\x75\xa5\x13\x3e\x32\x88\xfc\x24\x23\x3f\x7d\xba\x5f\xda\xab\x51\xcb\x32\xbf\xa3\xf6\x9f\xab\xc5\x62\x43\xcc\xac\x2f\xe1\x9d\xc6\x47\x66\xdd\x4d\xe2\xc6\x4b\xb4\xd6\x22\x1f\xe7\x40\xd2\xf4\x3f\x01\x63\xe2\x52\x36\x89\xf9\xd4\x06\xfd\xfc\x3e\xfc\xec\x26\x6d\xc7\xee\xf9\xfd\xd8\x7d\x0f\xc8\x16\xdc\x7e\x67\xc8\x09\x41\xbe\x0a\x9f\x8f\xc1\x54\x47\x6e\xc3\x30\x4c\xc4\xb9\x52\x1b\xb0\x0a\x79\x6d\xb5\xa7\x85\x0e\x61\x42\x7d\x3e\x2e\x3e\x9f\xe7\x1b\xec\x55\xfe\xf5\x29\xff\x92\x13\x20\xe7\xb6\xe4\xa0\xe7\x01\x39\xd8\x45\x8a\xec\xa8\xbf\xf2\x6f\xd9\xe2\x8f\x1a\x80\x95\xf2\x3c\x4f\x01\xb9\xd0\x73\x87\x48\xf8\x63\xf2\x85\xe9\x18\xc9\x0c\x7e\xfa\x54\x61\xb1\xa3\x78\x5c\xb9\x81\xed\x88\xd1\x17\x36\xa6\x7e\x07\x4c\xff\xdc\x20\x31\x52\xa6\xd0\x21\xce\xe3\x4a\x63\x9f\xf3\x28\x7d\xb3\xb0\xb6\xdc\x28\x7d\x33\x44\x20\x41\xc8\x67\x3d\xec\xa3\x00\xe6\x4a\xf6\xde\x55\x05\x1c\x55\xaf\x44\x81\xc0\x46\xac\x15\x80\xe9\xae\xab\x85\xed\xd0\x07\xd5\x88\xe7\x9a\x78\xfe\x4e\x0e\xa6\xe0\x3d\x13\x8c\x89\x18\x5d\x96\xa3\x65\xe4\xd6\x7a\x64\x2f\x7e\xa7\xa6\x0e\x9c\x2c\x7e\xbe\x5a\xe2\x43\xf4\x45\x39\x3a\xda\x8a\xcd\xf3\xff\xe9\x56\x17\x70\xff\x6f\xb4\x52\xf3\x47\x42\x10\x2e\xe0\x32\x43\xb6\x36\x55\x2b\x2d\x11\xf4\x4e\x4e\x20\x3e\x0d\x93\xe0\x2e\x0d\x17\xec\x28\xbc\x0d\x9c\xd1\x69\x3c\x0d\x6f\x6b\xa1\x18\xd7\x5e\x9e\x3a\x84\xb3\xaf\xc2\xc4\x2f\xe2\x24\x89\x6f\x4a\x49\x92\x71\x0b\x80\x3d\xac\x8d\x4c\xfc\x3c\x4c\x75\x91\x0f\x2c\x15\x2c\xb1\xc1\xc9\x34\x55\x66\xf4\x32\x4c\xc5\xb8\x56\x2e\x2a\xb1\x38\x9e\xa7\x2c\x70\x5e\x3a\x2b\x52\xd6\x0d\x08\xee\x5e\x9e\x9e\x04\xce\x55\xb0\x58\x04\x69\x5a\x7b\xec\x90\x97\xa7\x2a\x08\xdf\x81\x33\x1c\xee\x1d\x1d\xed\xa9\x2b\xaa\x97\x10\x1e\x0e\x6b\x47\xa4\x66\x62\xd6\xa2\x6a\x79\x51\x48\x92\x88\x90\x5a\x55\x86\x15\xb1\x34\x1c\x02\x47\xab\xa4\xd7\xa6\xa1\x60\x0e\xd1\x9a\x27\x81\xf3\x60\xea\xa8\xb3\x3a\x88\xe8\x5e\xab\x68\xd8\x7e\x02\xa5\x0e\xe0\xaf\xf6\x48\xc2\xe6\xa1\x88\xbe\xb0\xd3\x68\xc1\x82\xbb\xd9\x52\x2c\x13\x16\x38\x11\xaf\x3d\x48\x1d\x72\x1d\xa6\x22\x70\x1e\xa4\xb5\xf0\x32\x76\x48\x1a\x38\x61\x6d\xc6\x6e\x6a\x9a\x56\x3a\x24\x4d\x65\x2d\x45\x78\x21\x73\x28\xea\xea\x90\xc5\x02\x12\x35\xb1\x75\xc8\x55\xe0\x84\xbc\xa6\x28\xe6\xd5\x15\xa4\x5d\xa9\xb1\x9f\xca\x62\x70\x50\x99\x4e\x21\x5e\xb2\x03\x0e\x19\x02\x34\x25\x94\x1f\x0e\x15\x30\x90\x34\x39\xe4\x56\x26\xa9\xcb\xc6\xdb\x5b\x48\x91\x81\xd4\x59\x11\x95\x23\x78\xc3\x88\x25\x95\x0a\x5e\x31\x30\xed\x08\xee\xa6\xf1\x4d\xe0\x92\x69\x7c\x1b\xf4\x56\xc6\xda\x23\x0d\xfe\x64\xc4\xe2\x42\x82\x67\x45\x50\x15\xff\xc0\x48\x69\xfb\x0e\xf6\x46\xe1\xf5\xf8\xac\x35\x58\x0c\xce\x5a\x83\xbd\x68\x45\x22\x41\xef\x56\x24\x16\xa5\x4b\x72\xd0\x1e\xc9\xcf\xfe\x83\x35\xe5\xb6\x42\x01\xe0\xdc\x21\x4e\xd3\xc1\x81\x25\x9d\x05\x9d\x12\xad\xd4\x2c\x0f\x29\x20\x8f\x8e\x04\x38\xb1\xd8\x6e\x1a\x67\x8c\xf8\xd6\x8d\xf9\x30\x58\xfc\x53\x21\x5a\xe7\xe1\xc5\x45\x52\x18\x17\xb6\xf6\x14\xc9\xde\x73\x1a\x92\xdb\x15\x48\xe0\xd5\x04\xd4\x7d\x18\xbe\x33\xea\xa6\x50\xad\x65\x47\x25\x6c\x39\x79\xa1\x21\x81\x10\xa7\x31\x12\x78\x30\x91\xb8\x07\x73\x95\x0d\x0f\x84\xa0\x3c\xf8\xb7\x35\x93\x5f\x02\x7e\x35\x30\x75\x56\x2e\x57\xe2\x25\x9f\xb6\x6a\x47\xd1\xb4\x76\x1b\x2f\x6b\xb3\x38\xb9\x64\xa2\x26\x62\xf0\xb4\x54\x8b\xc4\xc0\x91\x94\x47\xb7\xd4\xd2\xd7\x10\xf9\xd5\x9c\xf6\xd8\x21\x8c\xb8\x5d\xab\x7a\x42\x33\xc1\xda\x64\xc7\x68\x35\x24\x20\x8a\x14\x2d\x09\x8a\x32\x6d\x89\x02\xf9\xf0\x27\xe4\xa8\x06\x29\x04\x5f\x7f\x61\x49\x12\x4d\xe5\x01\x71\x99\xb2\x9a\xb2\xb6\xd0\x02\x74\x95\x03\xa9\x9e\x7e\x15\x2e\x18\x91\x4d\x9f\x45\x97\x58\xa2\x3d\xb9\x0a\xf9\x25\xab\x85\xbc\xc6\xbe\x46\xa9\x88\xf8\x65\x4d\x6f\xa3\x06\x8a\x5d\x4f\x25\x94\xf4\x0a\x1c\xd2\xc4\x7c\x7e\x5b\xbb\x60\xb5\x65\xca\xa6\xb2\x5f\x6a\xe0\x07\x4a\x02\x0c\xc1\x14\x5d\x15\xad\x9d\x30\x56\xbb\x12\xe2\x3a\xd8\xdb\x53\x15\xfc\x9d\xb6\x26\xf1\x62\xef\x72\x19\x4d\x59\xba\xf7\xff\xdb\xd3\x0a\xe0\xe9\x9e\xaa\xb8\xa9\xa7\x08\x80\x5c\xc4\x09\xab\x45\x7c\x16\xb7\xc0\x77\x0c\xf4\x45\xeb\x5c\x21\x92\x5f\x75\x68\x85\xda\x96\xf2\xf0\xa2\x10\xc7\x79\x7c\x24\x46\xe5\xa4\x31\x4e\x2a\x22\x4b\x50\x8b\x61\x43\x9c\xa6\x02\xad\xc1\xce\x6f\x4e\xe2\x0d\x30\x59\x86\x36\x23\xc1\xde\x7d\x33\x5a\x1d\x07\xef\x78\xb8\x60\x01\x23\xaa\xfa\x40\xac\x94\x09\xd2\x4e\x22\x39\x1c\x15\x59\x5a\x19\x70\x52\x79\x82\x4e\x11\x98\xe0\x48\xb0\x72\x91\xc2\x4f\x6b\x16\x27\xc7\xe1\xe4\xaa\xe4\xc4\x4b\xce\xc4\x96\xac\x83\xb0\x96\x1e\xc1\x15\xac\x3d\x86\xc9\xda\x52\x9b\x88\xb2\x4c\xbc\x5e\xcf\xad\x4d\xac\x4f\x35\xd5\x41\xd3\x66\x2d\x0e\x93\xdd\xe2\xf2\x16\x40\xec\x26\x88\x61\x58\x05\x82\x02\x8d\x29\xee\x76\x41\x4f\x67\xb5\xae\x3c\x60\x1b\x2a\x99\xc3\x3e\x75\x1f\xc5\x85\x9a\x8e\xca\x20\x28\x8a\xa8\x24\x78\xa3\x78\x8c\x8d\xbc\xa1\xe9\x60\x6c\x2c\x28\xb8\x1c\x3a\x95\xa1\xe1\x8d\x31\x1e\x70\x2b\x17\xe8\x60\x3f\x72\x0f\xc5\x23\xc0\x2d\x91\xb8\x45\x96\x60\x54\x9f\xfd\x24\x3c\x83\x70\x22\x9b\xc3\x0b\x27\x56\xbf\x52\x51\xaf\x1f\xa3\x48\xb9\x29\xf8\x95\x8a\xa6\x87\x2f\x12\x16\x7e\xda\x11\xcd\xe6\x2a\x6e\x34\x72\xed\x79\xb1\x2a\xa9\x97\xcf\x84\xad\x1e\x2d\x7b\x2e\xbf\x7e\xab\xd7\x9b\x3e\xa5\x60\xd1\x97\x5b\xdf\x81\x7a\x31\x1f\x2d\xd8\xf8\xd0\xcd\x32\xcf\x3b\x84\xef\xc1\x82\x05\x7c\x74\xcb\xc6\x87\x5e\x96\xc1\xc7\xaf\x4f\x18\xe2\xa3\xa9\x24\x29\x32\x03\x1e\xdc\xca\x1c\x5f\x54\x31\xbf\x73\x08\xdf\xf2\x8b\x52\x0a\xdf\xf5\x3a\x72\x77\xe5\xf7\xa5\x8c\x57\x9f\x17\xc5\xe7\xb9\x84\xf1\x45\xc2\xb8\x54\x30\xba\x07\x87\xf0\x3d\xb8\x94\x91\x17\x56\xe4\x05\x1b\x0f\x2e\x64\xe4\xb9\x8a\x3c\x38\x90\xb1\xe7\x6c\x3c\x38\x67\x41\xd3\x23\xd0\x9e\x73\xd3\xa0\x23\x23\x83\x97\x2d\x3b\x9c\xb2\x2c\xbb\x65\x87\x42\xa9\x51\xdf\x02\x33\x6e\xe7\x96\xac\x52\x5a\xaf\x37\x3d\xa5\x8a\x81\x04\xbd\xa9\xcc\x03\x76\x87\x56\xae\x63\x93\xcb\x64\xa2\xa2\x74\x1d\x79\x25\x0c\x07\xba\x76\x25\xc9\x8c\x7e\xfe\x40\x04\x96\xcd\xce\xb5\x35\x6a\x5a\x02\x05\xe2\x27\x7d\x71\x7b\xae\xcd\x31\x97\x64\x0e\xc2\x9d\x25\x65\x64\x6e\x59\x4a\xb5\x78\x7c\x83\x30\x26\x11\x5d\xb6\xce\x97\x29\x7b\x77\xfa\x64\x30\x9a\x6f\xdc\x01\x11\x13\x35\xd4\x1a\x22\xf3\xfc\x4e\x46\x80\x7e\xba\x2a\xb3\x5e\xa0\x94\x5b\x67\x25\xac\x75\x7e\xa3\xac\xa0\xc0\x6a\x34\x94\x93\xa4\x14\x5e\xc8\xf0\x16\x6d\x5e\xd5\x3e\xb2\xdc\xc9\xc9\x28\xdc\x26\x9f\xdf\xe0\xd6\xb3\x67\xc6\xc8\x4a\xb4\xde\x17\x9f\xc7\x38\xa6\x1e\x09\x69\x87\x70\x7a\x25\x29\xe6\xb3\x67\x04\xaa\x91\x53\xf2\x1d\x43\x9f\x04\xc2\xc4\x23\x1d\x0c\xd7\x21\x92\x98\x43\xae\xf7\xc4\xc3\x04\xa1\x48\x85\x8e\x89\x87\xb1\x9c\xd2\xfd\xc3\x48\xce\x88\x25\xdd\x75\xd5\x95\xf6\x5d\x6c\x13\x1b\xc9\x2e\xb5\xa6\xf1\x0d\x09\x2b\x62\x6f\x95\x23\x44\x6a\x2a\x8d\x49\x88\x77\x34\x52\x97\x97\x05\x52\xf3\x32\x26\x37\x64\x0e\x22\x3e\x63\x01\x2a\x5a\xd3\x81\x44\x4c\xb4\xa6\x58\xce\xea\x9e\x85\x92\x99\x23\x2d\x36\x80\x1c\xac\x11\x13\x24\x5a\x4c\xe5\x13\x2d\x96\xe7\xc4\x41\x44\xe3\x55\x22\xdb\x94\xfc\xfa\x99\x21\x0e\xe8\x0c\x2a\x26\x39\xdd\x75\x35\xd8\x65\x45\xf2\x34\xbc\x95\x19\x50\x4a\x7f\x93\x40\xf4\x10\xe1\xbc\x35\x54\xe9\xde\xc1\xf5\xbc\x59\x60\x34\x2d\x2e\xbc\xf0\x0a\x4e\xc8\xb9\xc5\x9e\xb5\x08\x43\xd9\xfe\xbc\x57\x22\xf9\x17\x13\x64\x67\xfa\xf5\x2b\x43\x21\xce\x32\xb0\xcd\xb7\xe2\x65\x2b\xb7\x2c\x6e\x0a\x07\x2c\xfa\x8d\xa1\x90\xb8\x25\xac\x34\xce\x0b\x36\xa6\xc9\xda\x6c\x37\xd3\x34\x4f\x50\x73\xd9\xc8\x40\xdb\xa5\xe9\x2b\xc6\xa0\x3a\xa4\xbf\x29\x88\x46\xa3\x91\x50\x62\xe0\x5c\x62\x5a\x4a\x2e\x95\x1e\x48\x52\x2b\x06\x5e\xe0\x06\x3a\x66\x07\x88\x23\x04\x80\x3e\xba\x26\x74\x59\x0a\x5d\x94\x42\xe7\x40\x49\x59\xeb\x5c\x9f\x13\xe9\xae\x4b\x0c\x08\xea\x2a\x7d\x09\x2a\xd3\xf5\xaa\xff\x66\x5b\xe5\x12\x6b\xb9\xa9\xf5\x97\x16\x4a\x98\xf9\x85\xf4\x00\xa5\x05\x29\xd1\x57\xcd\x56\xb9\xe2\x52\x39\x2d\x13\x07\x5c\xaf\x83\xbd\x8f\x75\x9d\x8c\x03\x1b\x54\x19\x4c\xba\xc2\xf6\xa5\x72\x8a\x09\xac\x39\x8d\xb7\xb1\xf0\x34\x17\xc4\x81\x89\x80\x50\x31\xb3\xc4\xb7\x05\xf0\x0a\x53\x7d\x97\x3d\xd4\xc2\x2f\xab\xbc\x89\xc2\x4d\xa6\xed\x67\x8b\xee\x53\x7d\x19\x6a\x99\x10\xd6\x54\xcc\x72\x60\x77\x7e\xd3\x9a\x42\x05\x37\xad\xe9\x2e\xa5\xb1\x99\x82\x6b\x06\xe7\x60\x36\xa6\xb4\x6f\x05\xdd\xfb\xd7\x59\xfa\x10\xa1\x41\xa0\xb4\xc8\xef\x7a\xab\x0c\xf4\xdd\x71\x13\x0d\x82\xb3\xe9\xd9\xb4\x29\xff\x64\xef\xf5\xa7\xfa\xc8\x94\x6e\x3b\xfc\x60\x8c\x06\x01\x3a\xcd\x6a\x18\x19\x25\xf4\xb5\xdf\x51\x8b\x8c\xcf\xa6\x0d\x3c\x80\xff\x68\x74\xd6\x38\xdb\x50\x58\xcf\xce\xd2\x87\x1f\x65\xfa\x2f\x7b\x64\x71\x0f\x56\x1a\xa9\x02\xa7\x1f\x43\xa9\xfc\xf3\xb3\x08\xdd\x8a\x6d\x6a\xf6\xe4\x8b\xa0\x23\xa3\x94\xdb\x1c\x0e\x9b\x47\x47\x0e\xd9\xcb\x91\x6e\xe6\x1d\xb8\x37\xd6\xba\xbb\x79\x26\x68\xcf\x5a\x86\x67\xcf\x9e\x3d\x6b\x8e\xde\x8f\xdf\xbf\x6f\x1e\xe7\x59\x4c\xd7\xaf\xe5\x28\xa7\xef\x91\x5d\x2f\xaf\xe2\xa8\x54\xc1\x5d\x7b\x65\xd7\x5e\xaa\xda\x2e\xf6\xe1\xc3\x70\x68\xa3\xef\xb9\x45\x39\x9d\x72\x36\xbd\xdb\x5f\xe5\x78\x00\x1a\x39\x9e\xef\x8b\x9a\xf2\x44\x3b\xcd\x5f\xd9\x95\xe5\x28\xf6\x57\x7b\xe3\x31\xb9\x84\x6e\x7c\xfe\x5c\x89\x6f\x5a\x27\x27\x27\x27\x90\x7c\x36\x0d\xf2\x3f\x67\xad\xb3\x69\x03\xe0\x9b\x7c\xa4\x32\x1f\x59\xcf\xb6\x91\xa3\x48\xb5\x93\x74\xec\x62\x51\x46\x20\xff\x6f\x55\x2f\xf3\x90\x8a\x3c\xa4\x9c\x65\x2d\x35\x4f\xb1\xe2\x75\x9c\x8e\x91\x5d\x71\x01\xb3\x7f\x6f\x20\xc9\xd0\x19\x42\x67\xcd\x81\x9c\xaa\x7b\x51\x21\xcb\x38\x17\x95\x1c\x09\xd8\x73\x93\x25\x9d\x8a\x16\xfb\xca\x26\x28\xc5\x59\xb6\xc8\xbf\x25\xb7\xb2\x54\xe7\x03\xa0\x09\x51\x1a\x83\xcf\x04\x30\x45\xfa\x22\xd6\x6d\x91\xa2\x19\xfa\x22\x46\x62\x3c\xf2\xc6\x0a\xc2\x72\x24\x4f\x0a\x77\x11\x55\xd1\xee\x18\xcc\x60\x77\xa9\x0e\xfb\xe3\x1d\xe0\xf0\x57\xf9\xe9\x30\xc2\x96\xeb\x1a\x64\xb9\x81\xd8\xf5\x14\x32\xa3\xf6\xd8\x9c\x57\x24\x0e\x97\x55\x38\x5c\xae\xe1\xd0\x96\x38\xc4\x14\x2d\x47\xfe\x38\xcb\x9c\x9a\x83\x1b\x97\x1a\x9f\xf5\xfa\xe3\x7b\xea\x5f\xc1\xf1\xcb\xd8\xc1\xdf\x97\x53\x61\xda\x19\xc3\x59\x68\xf7\x56\x18\x44\x3a\x63\x7c\x5f\xa9\x90\x3a\x1f\x9d\x15\x78\x56\x88\x1a\x28\xce\x32\xc7\xc1\x0d\x14\xc2\x2f\x39\x11\xb9\xf2\x52\xa9\x18\x90\xe4\x1b\x39\xfc\x92\x7c\x0d\x63\x9e\x9d\x2e\x59\xf6\x9e\x4d\xb3\xd3\xab\x65\xf6\x34\x89\xb2\x93\x50\x64\x27\x4b\x8e\xc9\xe0\x2c\xc5\x03\xa4\x25\x87\xf8\x2c\x45\xbf\x87\x3c\x7b\xca\x2e\xb2\x61\x98\x64\x8f\xaf\x93\x6c\x18\xde\x66\xbf\x2f\x79\xf6\xfb\x72\x9e\x3d\x5e\x5e\x66\x27\xec\x3a\x7b\x3d\x11\xd9\xab\xf8\x4b\x76\xc4\x26\xb2\x88\x5c\x93\xa4\xb3\x52\x9f\x67\x53\x1c\xa8\x1f\x49\xde\xd4\x17\x1e\x9c\xa5\x12\x93\x77\xa7\xd9\xb3\xe1\x69\x36\x3a\x7e\x32\x7c\x33\x1e\x9d\x1c\x8d\x4f\x71\x86\x46\x1f\xbf\x8d\xe5\x8f\xa2\x15\x9d\x15\xc6\xbf\xec\x01\x73\x79\x2c\xe8\xdd\xbb\xd3\xc0\x25\xcf\x86\xf2\xef\xf1\xd1\x69\xd0\xf4\x3b\x2e\x39\x3e\x39\x0d\x9a\x6d\xd7\x25\x4f\x8e\xcc\x07\xc4\xf4\x5c\x32\x3c\x32\x1f\x32\xa6\xe3\xbb\xe4\xcd\x91\xf9\x80\x98\x7d\xd7\x12\xe5\x7d\x5d\x9f\xfe\xf4\x46\x0f\x8b\xec\x4d\xcb\x74\x07\x8d\xfe\x85\xc7\x0f\xcf\x70\x36\x3a\xe3\x67\x02\xac\x68\x6a\xb6\x6d\x0f\x3a\x4b\xcf\xd2\x06\xde\x88\xff\x97\x8c\x7f\xb8\xb7\x66\x08\x24\xe3\x7e\xd9\x53\x2a\x87\xd1\x0c\x19\x35\x2f\x5a\xc5\xb1\x18\xc7\xbc\xa3\x8d\x23\xc4\x9a\x3d\x42\xae\x92\x76\x48\x3b\x07\x03\x9f\xb5\x1b\x22\x10\x60\x62\x02\x26\x07\x32\x04\xcc\xe9\xab\x5c\x77\x1c\x09\x4c\x72\x18\x5c\xc2\x28\x82\x49\x39\x18\xc9\x60\x61\xa7\x57\xaf\xeb\x6b\xf9\x3c\x43\x2c\x33\x60\x12\xae\x50\x34\xea\x48\xf6\xb6\x2d\xff\xf8\xf2\x4f\x57\xfe\xe9\xc9\x3f\xfd\x31\xb4\x97\xd3\x98\x24\x94\x11\x24\x68\x24\x49\x41\xbd\xfe\xc1\xc6\x49\x9e\x8b\xf3\x13\x9d\xa4\x0e\x7c\xe4\xc9\x3f\xfe\x18\xe7\x8c\x10\xb0\x23\x49\x15\x3b\x42\x76\x51\x52\x5a\x40\x66\x71\xed\x48\x86\x87\xc6\x44\xfb\x14\x59\xbf\x21\x89\x66\x28\x17\xaa\x1c\x0b\xed\xde\x30\x17\x26\xba\xda\x9f\xf7\x5a\x77\x45\x34\x79\xe0\xb9\xc6\x6b\x02\x4a\x9a\x11\xde\xf3\x5c\xf7\x61\xcf\x6d\x44\xb2\x27\xf6\x65\xab\x0f\xe4\x1f\xcf\x1d\x6b\x26\xf5\x5b\xc9\xbd\x98\x44\x4a\x25\xfc\x0c\x23\x07\x64\x57\x3b\x38\xa2\xbb\x6e\x15\x01\x28\x8c\x97\x84\xf6\x6c\x24\x49\x88\xec\xdb\xd6\x8b\x93\xd7\xe7\xfb\x3d\xd7\xc3\x76\xe4\xdb\xa7\x4f\xce\x25\x38\x7c\x07\xfd\x34\x1a\xab\x4a\xc0\x1d\x11\xdd\x55\xed\x17\xf6\x99\x95\x4c\xc8\x8c\x3a\x4e\x03\xb6\x8a\x6b\x3a\x33\x12\xa1\xa9\xf6\x95\x11\xd1\xf7\x00\x9d\xe4\x47\x47\x9c\x9b\xae\x66\xd9\x68\xac\x4f\x1b\x91\xed\x03\x36\x86\xa3\x05\x41\x09\x45\x33\x9d\x79\xce\x50\x4c\x18\x86\x22\x78\xe4\x82\x49\xbe\x7b\x88\x42\x3a\x2b\x2e\xab\x66\xf9\xec\x49\x70\x2e\x9a\xaa\xd7\xa1\x01\x96\x73\x2a\xe3\x60\x9a\xcc\x64\x61\x90\x42\xd9\x25\x1b\xb9\x8b\x6b\x32\x6d\x14\xfe\xae\xc9\x6f\xa3\x78\x3c\x40\xc9\xc0\xee\x0f\x2f\xb0\x80\x6b\x6f\x47\x46\x27\x25\xa5\x31\x99\xe4\x72\x65\xb4\xa4\xf2\x00\x37\x47\x33\x46\x52\x5c\xaf\xcf\xd8\x28\x1d\xa3\x25\x99\xb4\xce\x43\x32\x21\xa9\x32\x47\x31\xfe\x95\xe4\x4e\xb2\x15\xf2\x0e\xa4\x94\xdc\x2e\xd1\xeb\xe6\x94\xb8\x87\xb3\xef\xb4\x79\x86\xf3\xc3\xd2\x21\xf5\xfc\x7a\x7d\xd7\x35\x02\x30\x7d\x33\x29\x8f\x40\xc5\x91\x0c\xd9\x49\xfa\x7d\x01\x3d\xeb\xd6\xfc\x5e\xc1\xe9\xcc\x88\xf4\x74\x96\xe2\x76\xb8\xb8\x29\x2e\x0e\x6b\x95\x57\x93\x3b\x25\xc7\x63\x7c\x20\x02\x73\xd2\x31\x00\x24\x26\x83\x72\x10\x94\xdf\x83\xdc\x3f\x4e\x94\xbe\x19\xd6\xeb\x08\x25\xfa\x5b\xf9\x0a\x10\x87\xb2\xbd\x48\x34\xa8\xe7\x63\x92\x64\x99\xe7\xef\x52\x2a\xb2\x4c\xf2\x0a\x18\x14\x3c\x0a\x67\x3f\x39\x96\xc4\x42\x1d\x13\x90\x4a\x91\x59\xb1\xd7\xc2\xbe\xa1\x04\xe3\xc0\x41\x15\xab\xed\xb5\xb5\xa3\xcc\xc9\x8c\x2c\xc8\x17\xc5\x4c\x9d\xcb\x9f\x99\xf5\x6e\x83\x76\x2f\x94\x7f\x65\xd9\x04\xe4\x03\x73\x75\xca\xa3\x94\x7e\x31\x2e\xc5\x29\xa5\xe7\xf5\xba\xe3\xc8\xb8\xc1\x14\xdd\x59\x5e\xd4\xdc\x15\x0e\x36\x2d\x17\xbe\xa8\xf3\x5d\x44\xbf\x58\x82\x9b\xeb\x84\xc1\xe0\xa1\x2f\x18\x93\x0b\xf4\x05\x83\x1f\xd8\x4b\x34\x13\x32\x26\x40\xa9\x8c\x02\x12\xf5\x25\x48\xd0\x39\x1e\x6c\x15\x5a\xed\x68\x9f\xf0\xb2\x45\x66\x99\xe8\x86\x29\x86\xd0\xf6\x39\xa6\x4f\xea\x6b\xfe\x88\x34\x89\x70\x1f\x45\x87\x16\x14\xf0\x44\x1f\x53\xc9\x4b\xde\x2a\x7f\x20\xc5\x89\x57\x1d\x90\xe5\x50\x9a\xef\x22\x16\x13\x21\xf9\x23\x09\x69\x14\x8d\x25\x57\x24\xb7\x36\x65\x9a\x1a\x37\xc0\xc3\x53\x79\xdd\x90\xb8\x41\x3d\xf7\xa1\x72\xff\xb5\xe9\xb2\x8c\x40\x42\x3a\x89\x13\x46\x63\xa2\xb9\xc0\x24\xcb\xe2\xc3\x44\x59\xbb\xc6\x84\x53\x81\xf1\xce\x04\x31\xc2\xb3\x0c\x26\x11\x0e\xce\x07\x40\x6c\x83\x18\xcd\x41\x90\x87\x5b\xe7\x11\x1e\x88\xb2\x37\x27\x2d\xa3\x0c\x52\x34\x5f\x4f\x9b\x1b\x47\x7e\x32\x7d\x63\x50\xe7\x03\x34\xa3\xc2\x4c\x0e\xb4\xa0\x17\x9a\x57\x99\xc9\x6a\xf0\x00\x9d\x0b\xb9\xd0\xc1\xa3\xd0\x2c\xdf\x0b\xea\x75\xa4\x6f\xc2\x8a\x38\xf2\xf5\x87\x73\x72\xfd\xec\xc8\xd3\x24\x5e\xc0\x94\x7b\xaa\x7d\xba\xa3\x19\xc6\x18\x07\xb3\x52\x03\x1a\x0b\x60\xed\x83\x44\xb6\x4d\x0e\x54\x48\x97\x68\x5e\x90\x87\x0a\x9d\xdb\x0d\xa3\xca\x6b\x30\xb3\x09\x22\x09\xc2\xce\x5f\x96\x00\x0b\xfa\x37\xcc\x70\xac\xb6\xf5\x25\x1a\x09\x25\x99\xd3\x86\x57\x44\xb4\xa6\xe1\x6d\x96\x09\x30\xb0\x21\x02\x94\x85\x64\x22\xec\xa5\x44\x68\xcd\x20\x88\x99\xcf\x23\x15\x1a\x57\x21\xc8\xea\xf5\x2a\x1c\x19\x06\x67\x05\x41\x58\x31\x8c\x38\xd8\xde\x6d\x30\x31\x8d\x8b\xb1\x29\xc8\xca\x30\x38\xae\xce\x49\x48\xee\xa6\xb1\x90\x56\x91\x25\xbd\x33\xde\xb1\x77\xe1\xe2\xa0\x5e\x87\x13\x13\xcf\x32\x14\x53\x2e\xcf\x5d\x9a\x48\xa3\x08\x31\x5c\x16\x38\x47\x33\xa4\xdd\xc7\x5c\x32\x61\x39\xb0\x7c\x15\x2e\x58\x9a\x73\x38\x85\xf7\x9e\x8a\x5c\x72\x55\x6b\x9f\x28\x96\x91\xa1\xf2\xcf\x02\x5c\xc4\xda\xab\x29\x85\xd7\x3a\x2f\x47\x7b\x05\xcd\x4e\x00\x3d\xd7\xb2\xe2\x05\x67\x96\x39\xfe\xcb\x4d\x47\x74\xbb\x2e\xc9\xc5\xf9\x74\x69\xbc\xbe\x85\x32\x72\x4e\x39\x94\xa0\x4c\xfe\xc8\xe5\xb1\xcc\x7d\xca\xc5\x44\x0b\xf4\x80\xc4\xbd\x16\x68\x29\x67\xac\x2d\x02\x4b\x5b\xe1\x74\x8a\x3c\xa5\x9d\x9d\x16\xb2\x45\x83\x4b\x5a\x0c\xca\x27\x71\xaf\x3b\x4d\x0f\xaf\xb6\x0e\x39\x3d\x41\xca\x71\x67\xed\x3a\x89\xbf\x44\x53\x36\xad\x45\x29\x5c\x7a\x47\xbc\x16\xd6\x12\x36\x89\x2f\x79\xf4\x8d\x4d\x6b\x6f\x9f\x3e\x91\x2c\x58\x2d\x4e\x6a\x2f\x4e\x5e\xd7\x66\x40\x3f\xcd\x85\x31\x5c\xac\x8b\x64\xa9\xaf\xb7\xc2\xf9\x3c\xad\x49\xf0\x35\x11\xd7\xfe\x4e\xd5\xcc\xc3\xa4\x76\x73\x15\x4d\xae\x4c\x05\x09\x9b\x47\xe1\xc5\x9c\xd5\xc2\x49\x12\xa7\x69\x2d\x9c\xcf\x6b\x17\x49\x7c\x93\xb2\x24\xad\x85\x7c\x5a\xfb\xc2\x92\x34\x8a\x79\xda\xaa\xbd\x8a\xb9\xa9\x7f\x4f\x56\x2e\x97\x8d\xc6\x20\xad\x85\x09\xab\x4d\xa3\x74\x12\x2f\x93\xf0\x92\x4d\xa1\xe8\x4d\x24\x81\xb1\x5a\xc2\x16\xf1\x17\xd9\x26\x5e\x0b\x79\x6d\x79\x3d\x89\x17\x11\xbf\xac\x2d\xc2\xbf\xe3\x44\x22\xc0\xc2\x94\xb5\x6a\x6f\xe0\xb7\x96\xb0\x19\x4b\x24\xc6\x3f\x76\x55\xfd\x77\xda\x94\x78\x6c\x5c\x52\x97\xd6\x69\x79\x73\x91\x44\xa1\x61\x09\x82\x9d\x9a\x31\x9a\x53\x16\xdb\x86\xf9\xb5\xdd\xbd\xac\x48\xc1\xff\x96\xe2\x61\xb2\x0f\x85\x1c\x41\x85\x29\xc2\x92\x82\xc8\xee\x35\x6e\x9b\xd8\x94\xd4\x2c\xdd\x80\x45\xf8\xd5\xb8\x73\x6f\xfd\x60\x23\x17\x11\x6f\x2e\xc2\xaf\x7b\xce\xa6\xd7\x80\x4f\xa2\xda\xfe\xa8\xf4\x6e\x86\x65\x5e\x5d\x32\xd9\x06\xf3\xdf\x81\xfc\x13\xb0\x60\x0a\xce\x73\x4e\xd7\x9a\x22\x91\xdd\xde\x94\x88\xff\x3f\xd2\x14\x99\x76\xc8\x4a\x4d\x29\xce\xf0\x4f\x6c\xc5\x15\xe5\xe4\x12\xee\x27\x73\x96\x38\x41\x42\x9f\x1b\x04\x85\x2f\x92\x3f\x96\x64\x88\xdf\x27\x81\xb4\x3b\x30\xc8\x41\x22\xea\x3d\x8a\x8a\x87\x1e\x1a\x8d\x08\x8b\x51\x34\x2e\x59\xb2\xcb\x88\x11\x1b\x23\xae\xfd\xed\x8f\xa2\xb1\xe5\x66\x0b\x8c\x69\x05\x1d\x19\x4f\x0a\x9f\x97\x61\x22\x58\x02\x0f\x3d\x29\xf3\x64\x6d\xd5\xa3\x2c\x3f\xb4\xfe\xa9\x51\xb2\x72\xd4\x7e\x04\x31\xf9\xee\x64\xbf\x0d\xf5\xc6\x52\x24\xfa\x1b\xae\x9c\xa8\xda\xff\xb2\xcc\x05\x2f\xb5\xba\x3e\x19\x8c\xa8\xde\x13\x65\x20\xa6\xca\x0e\x43\xee\x8c\xda\x96\x44\x46\x87\x54\xef\x97\x2e\x49\xa9\xda\x2c\xe5\xf7\x92\x9a\x1d\x53\x86\xe6\xd4\x6c\x9b\x32\x34\xa1\xa5\xbd\x33\xcb\x5c\xad\x0d\x6f\x0e\xa1\x95\xca\x06\xf9\x96\x01\x97\xc8\xaf\xb5\xa1\xdf\x5b\x41\x04\xce\x9d\x4a\x8e\xc4\xb8\x5e\xd7\x96\xf6\x23\x31\xb6\xb6\x92\xe2\xb5\xa3\x5d\x4f\xfb\x50\x7d\x6b\x8d\x52\x02\x7b\xd1\xe8\xad\x18\x25\x63\x25\x66\xe3\x45\x59\xd8\xc4\x9f\xce\x63\x50\x56\xd0\x59\xc0\x4f\x63\x1e\x02\x37\x92\xbb\xae\x79\x52\x44\xee\x58\x22\x37\x86\x2c\x5a\x9a\xd2\xc6\xa4\xe1\xb1\xf6\xc3\x79\xa3\xc7\x3a\x0f\x97\xf0\x9d\x3e\xec\xc9\x63\xbf\xf1\xde\x19\xde\xa6\xb4\x11\x36\xfa\x0f\xe3\x92\x31\x25\x6d\x44\x8d\xf6\xc3\xa4\xe1\xf9\x0f\x79\x9e\x55\x84\xf4\x4e\xbf\xc7\x65\x0e\x05\x93\xfc\xe9\x99\xf3\x8b\xe5\xc5\xc5\xbc\xe4\xef\xe8\x95\xd8\xe6\x9d\xef\x8d\x65\x8e\xf8\xb7\x58\x73\xbb\xd9\xf4\x1e\x82\x95\x5e\x12\x2f\xf9\x14\x35\xbd\x87\x0c\x07\x56\x84\x7d\x88\x79\x21\xb6\x6a\xd3\x5b\xde\x4c\x96\x62\xa2\x8d\x88\xe5\xf4\x73\x1a\x4e\x71\xa7\xe6\xc2\x96\xde\x64\x32\xbe\xe9\x60\xc2\x1b\x2f\xd1\x7f\xff\x37\x62\x7b\x3d\x17\xb4\xb3\x05\x84\xd9\x83\x9e\x0b\x7a\xd9\xab\x17\x02\x39\x1f\x1d\xe2\x04\x0e\x26\xf0\xfd\x11\x7c\xe7\x80\xf6\xf3\x47\x87\xc4\xda\xdf\xc8\x47\xfd\x0d\x1a\xc7\x32\xcb\xc7\x8f\xd5\x9a\xcb\x9a\x57\x00\x3f\xa7\x20\xed\x79\x29\x50\xcc\x48\x6e\xc7\x73\x24\xe8\x9e\xbe\xab\x51\xb7\x3c\x7b\x97\x96\x50\xfc\xa5\x4d\x51\x28\x12\x20\x6a\xd5\xe2\x08\x86\x77\x0a\x5d\x33\x33\xbb\x6a\xb9\x7a\x59\x42\x11\xe2\x23\x9e\xbf\x63\x37\x06\xb1\x45\xa3\x28\x7f\x24\xe7\xf9\xc8\x69\x82\x6a\xbb\x24\x34\x3d\xf7\x61\x32\xf2\xc6\x8d\x1b\x94\x8c\xfc\x82\x82\x48\x06\x29\x1a\xb8\x81\xd3\x80\xc7\x5a\x46\xee\x78\x10\x05\x4d\xeb\x75\xb0\xa7\x16\x92\x09\x89\x8a\xa7\x53\xb4\xad\x38\x02\x5f\xd5\xf3\x98\x33\xf5\x04\xdd\x05\x70\x5f\x92\x91\x1b\xb0\xe2\x98\x11\x48\xbe\x06\x5b\xc7\x8e\x66\x52\x04\x48\xa2\xc5\x52\xe0\x6e\x16\x02\x79\x5a\x23\xda\x30\x25\x07\x36\x88\x24\x06\x26\x4c\x65\x7b\xde\x7e\xb3\x67\xa4\xd7\x7d\xd8\xb4\x67\x9f\xe5\xd8\xf6\x5b\xcc\x0d\x48\xbc\xe7\x75\x2d\x08\xcf\x45\x6e\x03\xb0\xbb\xbb\xbe\x61\x18\xe2\x03\x87\x44\xd7\x3c\xf1\xa3\xdd\xfe\xae\xca\xb8\x6e\x6e\xf2\xbf\x81\xac\xfc\xac\x99\x9d\x35\xf0\x00\x0d\x02\x74\x36\x7d\x88\x47\xad\xda\x18\x64\xe3\x0d\x7c\x16\xc0\x0f\x1a\x04\xe6\xeb\xac\x25\xb3\xa8\x5b\xbd\x77\x50\x5a\x15\x7e\x23\x4b\x8f\x9a\x8d\xf1\x60\xe4\x36\x0f\x48\x6b\xfc\x10\x7f\x50\x20\xcb\x91\xc3\xaa\xc8\xf7\x55\x91\x47\x10\x79\xba\x99\xf0\xfc\x87\xe1\x9e\x28\x44\x8b\x39\xfe\x59\xac\x39\x87\x26\x60\x0e\xac\xb4\x52\x8d\x4b\x13\x39\x60\x83\x98\xde\x2d\xd2\x80\x95\x49\x20\x99\x06\x4a\xd9\x20\x25\x43\x48\x03\xf2\xb6\x0a\x42\x6d\x69\x2c\x09\xda\x00\x2c\xde\x59\x10\xb7\x4a\xc4\x93\x61\x50\xaf\x30\x72\x76\x79\x70\x05\x2a\x41\x29\x4d\x47\xde\x78\xd0\xf4\x02\x8f\xc4\xf4\xee\x36\x70\xc9\x34\xb8\x41\xe9\xe8\x96\x8d\xf1\x43\x4e\xae\x20\xf0\x45\x05\x16\x10\xb8\x54\x81\x14\x02\x17\x3a\x45\x86\xfe\x16\x08\xa8\x32\xe8\x57\xe1\x87\x7c\x05\x95\xbe\xfb\x81\x4a\xdf\x0b\x94\x8e\xfc\x31\xe1\x98\x0c\x55\xa0\x0d\x81\x1b\x15\xe8\x40\x60\xaa\x02\x5d\x08\x5c\xa9\x40\x0f\x02\x0b\x15\xe8\x43\x20\x55\x81\x7d\x19\x58\x29\x6d\x16\x4a\x63\xd9\xa3\xab\x60\xc3\xc5\x6d\x5c\xaf\x23\x67\x96\xc4\x0b\x27\xe2\xb5\x38\xcb\x1c\x11\xc3\x17\x2e\x3b\x45\xac\x50\xd2\x2d\xad\x82\xb2\x93\xc1\xa7\x02\xbc\xec\x11\x99\xe7\x37\x36\x8b\x13\x86\x04\x1e\x70\xfa\xa7\x1a\xfe\x00\x21\xf8\x86\xa7\x93\xca\xc3\xd4\xe4\xa5\x30\xe1\xda\x5f\x02\x24\xc0\x17\x26\x1c\x07\x77\x76\xa6\xc0\x35\x8a\xda\xee\x6a\x85\x3e\x09\x14\xb7\x64\x83\x30\x81\x4f\x11\x63\x4c\x60\x6e\xe0\xd6\x22\xa5\x51\x19\x7e\xdc\x1a\xca\x28\x0d\x39\x01\x86\xfe\x8d\x40\x31\x26\x30\x0d\xeb\x75\x78\x62\x47\x6f\x90\xf0\x00\x42\xb2\x29\x43\xc3\xc4\xd2\x0d\x7e\x5f\x22\xe3\xe6\x18\xaf\x39\x80\x42\x4d\x9b\x38\xc4\x69\x39\xb9\x49\x3f\x32\x1e\x8a\x06\x6e\xc0\xf1\x43\x6b\x47\xfd\xb3\x04\x2f\x3f\x8f\xd7\xf2\x9e\x11\xc6\x27\x4e\x93\x15\xde\x71\xfc\x87\x48\x18\x23\xf7\xdc\xbd\x11\x61\x86\x34\xc3\x09\xd4\x40\x00\x9f\x35\xad\x28\x7d\x3c\x13\x2c\x01\xe9\x55\x33\xef\x6d\x52\x1e\x0f\xda\x10\xcd\xc6\x3d\x50\x6c\x47\xd8\x1f\x44\xb5\x07\xa9\xc2\xb0\xb6\x2c\x7e\xa5\x89\x71\x6f\xd4\x48\x24\x73\xfb\x09\x09\x52\x1c\x1a\xe0\xe5\x4b\x74\xcd\x92\x28\x9e\x92\x9a\x7a\x2c\x04\x97\x8f\x11\xf9\x71\xaf\x38\x4d\xe4\x05\x55\x01\x52\x53\x00\x70\xeb\x27\x14\x97\xc3\xe9\xb4\x19\xf1\x2f\x2c\x11\x6c\xda\xbc\x0e\x93\x70\x51\xa1\xbd\x1c\x81\x34\x24\x21\x09\x8d\x30\x79\xa6\xad\xbf\x3f\x0b\xb9\xdc\xd7\x05\x6a\x7c\xd0\xe0\x81\xec\x04\xe3\x76\xdd\xf2\x13\xf0\x4c\x1d\xee\x0b\x1f\x0c\x54\xac\x51\xc0\x90\xfe\x2d\x90\x50\x44\x10\x93\x54\x87\xf4\x04\xde\x29\x2d\x4a\x14\x69\x9d\xa8\x28\xcb\x22\x92\xd6\xeb\xe0\x94\x06\xdc\x6d\x19\x47\x2b\x8d\xf4\x61\x82\x49\x58\xaf\x83\xe3\x2c\xe7\x08\x6c\x3e\x86\xc5\x37\x6e\x84\x32\x43\x5c\x28\xfd\xc0\xa6\xcc\xca\x9b\x72\x2c\xf3\x44\xf5\xfa\xda\xce\xcc\x48\x98\x65\x29\xc6\xab\xcf\xa2\x35\xe3\xf4\x8d\xe5\xa0\x99\x7c\x16\x46\x5c\x5b\xe1\x00\xf5\xb3\x00\x61\xad\xda\x22\xff\x29\xe8\x07\x81\x3c\xe2\x84\xd3\xa9\x83\xc9\x2f\x10\x6c\x7a\xc4\x49\x97\x17\x22\x09\x27\xc2\x76\xbb\xf3\x47\x69\xb1\x54\xaf\x82\x06\xaa\x58\x31\x72\xed\xaf\xcd\x6b\x7d\x66\x4a\x73\xaf\xa3\x4d\xc4\x1b\x48\x34\x93\x43\x77\x20\x7f\xf0\x1e\x4a\x9a\x6b\x65\x24\x5e\xa6\x14\x0e\x74\xae\xb5\x3c\x0d\x2b\x4f\x33\xc1\x18\x67\x99\xe5\x93\xf8\x2f\x4b\x4b\xdb\xba\x9e\x57\x2f\xe7\x0c\x6c\x76\x5d\x69\x65\x07\x85\x06\x27\x28\x78\x63\xf3\x78\x62\xfe\x90\x80\x76\xb2\xb3\xe2\xe6\x79\x3b\x2d\x20\xb7\x94\x79\x4e\x8d\xa2\xc9\x47\x87\xac\x65\x7b\x27\x26\x95\x39\x47\x1f\xc7\xea\x39\xa3\x8f\xe5\xc3\xfd\x3c\xe4\x97\x68\x63\x61\xbe\x50\x07\x7a\x52\x5e\x9a\xb6\x5d\x6c\x4d\xc4\x35\xb0\xbd\xb8\x62\x35\x09\x63\x19\x5e\x32\x6d\x93\xb0\x4c\xc0\x4d\x75\xab\xf6\x6e\xb3\x30\xb2\xcd\x1e\x4c\xb9\x74\x4d\x54\xb3\xa5\x1f\xed\xea\x03\x2b\x46\x19\xde\x17\x46\xbe\x62\xcd\x30\x56\xf7\x2c\x1c\xb6\x99\x9c\x65\x3d\xdf\xef\xef\xbb\xfb\xcc\xf2\x02\x2b\x4a\x5e\x08\x10\x7b\x20\x1a\x02\x3f\xb0\xc8\x3a\xe7\x6b\x2a\xca\xb6\x4a\xe0\xa6\x3e\x20\x6e\x32\x1e\x94\x75\xfb\x2c\xfe\xd9\x7a\x23\xea\x3e\xb0\xc6\xbb\xcc\x1a\xd8\x22\x1a\xa2\xac\xe7\x9b\xb8\x39\x90\xb9\x64\xc4\x88\x91\x9c\x8e\x89\x5b\x7a\x7d\x28\xe4\x1b\xae\x63\xca\x94\x9d\x0d\xde\x69\x07\x4f\x32\x07\xac\xc3\x00\xa1\x98\x7e\x36\x7e\x64\xf0\xa1\xd2\xeb\x8e\x71\xa5\x27\x52\x45\x09\x4b\x1e\x6a\x48\x48\xbf\x31\x14\x2b\xe1\xbb\x4b\x62\x4b\x17\x76\x67\xc3\x65\x65\xb8\xe9\x8e\x87\x58\xce\xe4\xc2\xb2\xa2\xaa\x4e\x03\x0f\x59\xe1\xba\xaa\xaa\x24\xd7\xd6\x6b\x29\x05\x42\x78\xa5\xbc\x5b\x5e\x5e\xde\x6f\x55\x7d\xc3\xd8\xa7\x0f\x9b\x7e\x34\x9f\x3d\xbb\xbf\x98\x16\x9a\x94\x4a\xc6\x1c\x39\x97\x97\xb2\x42\xc7\x40\x75\x8a\xd8\x8a\xe8\x67\xcf\x64\x35\x8e\x05\xcb\x4a\xd8\x4c\xd1\x8e\x43\x94\x73\x48\xd9\x30\xdb\x75\x88\x8e\x7d\xf6\xac\xf0\x06\xf3\xc1\xf8\xeb\x3c\x5a\xcb\xa5\x1d\x86\x3c\x2b\x5c\x78\x5e\x16\x9f\xb2\xe2\xdc\x32\x59\x62\x9d\x07\x14\x52\x85\x6b\x4f\xd5\xa8\x22\xac\xb1\x2e\x5c\x7d\xea\x66\xab\x08\xf0\xb3\xa1\xfb\xc1\xf4\x87\x6e\xa6\x2a\xf8\x5d\x2f\x33\x7e\xe1\x65\x46\x03\x53\x0d\x5e\x2b\x08\x53\x54\x8c\xa2\x7b\xbc\x7b\xbe\x43\xce\x1f\xe0\xa4\xe6\x8f\xd8\x12\xca\x41\x77\x16\x12\xba\x3f\x54\x4f\xe6\x11\x7d\xd5\xa8\x3f\x1c\xf2\xa7\x32\xb2\xfd\x63\xd3\x3f\xe8\x82\x8d\x69\xfb\x21\x52\x1e\xfc\x74\x4d\x47\x0e\x19\x39\x47\x47\xca\xad\xcf\x91\xf2\x8a\x23\x98\xf1\x0a\x03\x72\xbe\x23\xe3\xf1\x45\x86\x0e\x54\x3d\x47\xb9\x15\xb9\x2c\x9b\x0f\xc2\x51\xbc\xc5\xb1\x0a\x1b\x08\xad\xf7\xbd\x61\x11\x9a\x65\xa2\x75\x1e\xdb\x26\xa2\x5b\xb3\xbe\x64\x3c\x62\x5c\x18\x7b\xee\x23\x89\xdc\x91\x33\x26\xb7\xda\x23\xeb\x66\xf5\x02\x74\xc8\x6f\x90\xf1\x48\xfe\x07\xa8\x67\x68\x09\x4b\xca\xc1\x0c\x58\xf1\x31\xbb\x2e\xde\x91\xfd\x71\xa4\x7b\x44\xfe\xb6\x65\x9f\x1c\xe9\x5e\xd1\x14\x23\x77\x98\xa3\x83\x90\x23\xf7\x89\x63\x22\x3b\xa6\x73\x8e\x1c\xf2\x7b\xfe\x7d\xe4\x90\x67\x06\xf7\x23\x85\x3d\xe0\x5f\x21\x1d\x2a\x34\xf7\x0b\xd7\x45\x0b\x78\x0d\x73\x61\xdc\x36\x68\x41\xac\xf2\x27\x69\x84\xb2\x0b\xed\x50\x52\x87\x3d\x8d\xc8\x22\x1f\x2f\x59\x1e\xc6\x0b\xd0\x58\xc8\x22\x0b\x67\x4c\x2e\x99\xea\x93\xa5\xea\x93\xa1\x31\x9d\xdd\xf5\xa0\x5b\x52\x59\x75\x9a\x9a\xaa\xb5\xb0\x17\xaa\xce\xc5\xc0\xa9\xaa\xda\x84\x3d\xed\xde\x29\xcd\xab\x96\xe5\x8b\xaa\x53\x59\x24\x75\xc6\xe4\x42\x57\x3d\xe7\x64\xa2\x6a\x3f\x31\x56\xbd\xb2\xf6\x59\x9c\xa0\x77\xc8\x39\xd9\xe2\x68\xe1\xbf\xff\xdb\x78\x56\xc8\xf9\x5e\x04\x0a\x4e\x38\x27\x97\x27\x27\xdb\xc8\xe5\xb6\xc2\x76\xd9\x13\x98\x07\x6e\x59\xcc\x6d\x25\x9f\x68\x8f\xc6\x9b\xb4\xd8\x73\x1f\x6e\x42\xb7\x21\xcb\xb2\xdd\x6d\x65\xbf\x5f\xf8\xc4\x21\xbd\x2d\xa5\x59\xfb\xfb\xa5\x4f\x1c\xd2\xdf\x56\xbc\xf3\x03\xc5\x4f\x1c\xb2\xbf\xad\x7c\xf7\x47\xca\x9f\x38\xe4\x60\x1b\x80\x5e\x35\x00\x98\xea\xc5\x30\x10\x67\x91\x9a\x09\x6f\xc5\x7a\x3d\x35\xe1\x4e\x1c\xf2\xbb\xa4\x87\xf0\x0d\x81\x0f\x26\x00\xa1\x67\x98\xcc\x39\x55\x83\xf8\x68\x6e\x24\xa2\x87\xf4\xe0\xd1\x9c\x37\xa8\x73\xe2\xe0\x25\x43\x73\x4e\x38\xb3\x38\xbc\x59\x4e\x5a\xce\x81\xb4\xc8\xbe\x46\x8e\xdb\x72\x1a\x70\x43\x1e\x27\x08\x60\x6e\x01\x78\x05\x00\x67\x5c\x4d\xf9\x2b\xb3\xda\x8a\x33\x5b\xbe\xe4\xbe\x69\x5f\x5d\xdf\x62\xce\x1e\x5f\x5c\x68\x0f\x2d\xdf\xec\xe8\x57\xe1\x82\x39\x0a\xd2\x35\xa7\x97\xc5\x89\xa9\xc0\x76\x5a\x52\x13\x58\x5d\x73\x79\xac\xa0\xff\x14\xe4\x9a\xb7\x8c\xc3\x83\x0a\xc1\x4d\x42\x59\x96\x81\xc9\x54\x44\x9f\x0a\xfd\xc6\x36\xbc\x08\x94\x88\xd7\x33\xa4\x5d\xa7\xc5\xb4\x00\xa2\xdf\x2c\x00\x46\x27\xc2\x59\xe6\x18\xf7\x05\x0e\x09\xc1\x10\x6f\x88\xc4\x28\x1e\xe3\x81\xfc\x6b\x31\x45\x09\x0e\x20\xbe\xc4\x88\xa9\x3b\x5d\x14\x66\xd9\xa6\x4b\x1c\x53\x21\x52\xd7\x16\xe4\x93\x00\x8d\xba\x15\xb4\x48\x1e\x9d\x2a\xce\x88\xea\x86\x5d\x9d\x6c\x64\xbe\x69\x34\x9b\x55\x2b\x79\x19\xd5\xa1\x35\xd1\xad\xed\x41\x59\xa6\xa2\x84\x2a\xe1\xb6\x04\x89\xab\xf3\xa5\x37\x91\xdc\x72\x22\xda\x63\x9d\x87\x28\xb1\xef\x22\x9a\xeb\x97\x13\x98\x08\x0a\x9e\x9a\xef\x26\x61\xca\xd4\x85\x5c\x10\xd3\x3f\x84\xe9\xa4\x3d\xcf\x57\x1a\xdf\x3b\x90\x41\x5d\xd0\x95\x72\xd8\xc9\x86\x2d\x28\x83\x68\xdb\x59\xf4\x5a\x09\x62\x0a\xe9\xf2\xec\xe9\xb1\x52\x0e\xbd\x87\xd8\x39\x7a\xac\x63\xe7\x80\x1b\x41\x3b\xbd\xdd\x63\x5d\x3b\x83\x9c\x26\x45\x7a\x33\xc2\x7b\xfb\xbd\x4e\x39\x0b\x5c\x31\x96\xf3\xf4\xdc\xce\x7e\x9e\x49\x9f\x2f\x03\xe5\x79\xab\x99\x18\x5b\x5a\x3e\x88\x83\x73\x14\xab\xf1\x64\x7c\xfa\x7a\x46\x37\x74\xc1\xe4\x50\xe5\xe7\x38\xc4\xe8\x2b\x04\x4a\x9a\x25\x62\x21\x4f\x78\x59\xb6\x65\xb8\x65\xac\xbe\x33\xb1\x44\xf7\x83\x84\x07\x9c\x9b\xf1\x65\xa5\x31\x13\x34\x41\x96\xfb\xfb\x86\x47\x5c\xe2\xe1\xa6\x57\x39\x3a\x6b\x99\xed\x63\x86\x9e\x22\x3a\xf0\xa0\xdd\x68\x6f\x80\xd1\x73\xe0\x3e\x20\x0d\x6f\xa3\x94\xea\xef\xfb\x0a\x59\x27\x1a\x8d\x85\xd6\x60\x46\xb8\xd1\x5f\x83\x66\x7c\x39\xfe\x38\x40\x64\x9f\x50\x00\x68\xd3\xdb\x84\x0b\x13\x47\x7f\xc9\x39\xf8\xa3\xe0\x1b\xeb\xcd\x55\x53\x54\xe8\xe1\xb3\xe4\x50\x44\x34\xa8\x9c\xae\x4d\xc1\x91\x68\x20\x7b\x78\xdd\xa0\x67\x36\xc0\xd2\x12\x95\xd9\xd7\xc7\x40\xaf\x91\x2d\x15\xf4\x58\x07\xe0\x93\x1e\xeb\xac\x95\x34\xeb\x6f\x4b\x49\x8f\xb5\x55\x49\x8f\xb5\x71\xb3\x78\x7f\x4d\xe7\x35\xb2\x35\x71\xbf\xb3\x64\x58\x1c\x8a\x98\x96\x56\x07\xcb\x32\xa4\x6f\x48\xa3\xf4\x9d\x98\x20\x3c\xd8\x94\xe4\x04\x6b\x51\xda\x7d\x0e\xfd\x6c\x1c\x4d\xee\x6c\x75\x5b\x76\x1d\xa7\x42\xd3\x70\xa1\x56\xe8\x2c\x89\x17\xd5\x8f\xe3\xaf\xdf\x91\xc1\x2d\x60\x49\xb7\x02\x76\x22\x66\x53\xd9\xc1\x67\x81\xee\x44\x0c\x72\x18\x22\x41\x07\x6c\x95\x0b\x79\x6c\xe1\x0c\xc6\xad\xab\xe5\x22\xe4\xd1\x37\x86\x76\x45\x49\x70\x53\xf9\x60\x8f\x41\xf5\x55\x7c\x53\xf5\x4a\x82\xda\x9c\x92\x78\xa1\xcc\x89\x99\x2a\x20\xe2\xff\xe1\x96\x41\x8b\xa0\x6d\x22\xfe\x9f\x6c\x99\x88\xef\x6b\x97\x88\x4b\xad\xba\x64\xa2\x2a\xeb\x50\xb9\xe7\x57\xc4\x74\xac\xf4\x5e\x46\x6c\xac\x85\x62\x50\x52\x57\xfc\x58\x54\xec\xc4\xca\xaf\x75\x61\x8b\xaf\x0a\xa8\xdb\x84\xaa\x0b\x24\x7a\x01\xb7\xc1\xea\xbe\xd6\xa8\xe9\xad\xef\xce\x59\xb6\xcb\xad\x3e\xac\xd7\xd1\x3a\x89\x47\x6a\x7b\x5d\xa3\xfd\x0a\xfb\x62\xe1\xfd\xca\xad\x5b\x67\xeb\x5b\x3d\x52\x60\xe4\xb2\x86\x09\x12\xf6\x9d\xb4\x6e\x87\xba\xbf\xfa\xbf\xde\x90\x43\xbb\x21\x25\xe4\x61\xa7\x2c\xa1\x6e\xe7\x2d\x9a\x21\x6e\x18\xe3\x1b\xc6\x3e\xc6\xc7\xa9\xdd\x16\x12\xd3\x0b\xf5\x80\xd1\x27\x51\xbc\xe2\xb7\xbb\x8b\xd6\xa7\x7f\x64\x07\xe2\xb5\x66\x22\x68\x5c\x42\x93\x2c\x73\x10\x76\xe4\x31\x7d\xa0\x01\xa8\x9b\xa6\x88\x70\x1c\x98\xee\xd2\xd7\x84\x32\x0e\x4a\x63\xa5\x80\xe0\xe5\x65\x74\x86\xd8\x2e\xa4\xe0\xc8\x28\xd3\xcc\x93\x70\x51\x39\x56\x24\xf9\xd1\xd1\x4a\xfe\x27\x46\x4b\xe2\x6e\x8d\x17\xe2\x76\x90\x7c\x77\xee\xc1\x6b\x60\xfc\x90\x7e\x67\x9c\x4b\xad\x7e\x9d\x54\xad\xb8\x32\xdd\x92\xf9\x20\x5e\x73\xe1\xa6\x07\xe1\x35\x79\x1b\x54\xe5\xa4\xff\x1e\x2c\x3d\x42\x16\xb0\x3f\xb7\x5c\xf0\x5c\x5b\x8c\xfb\x3c\xe4\x97\xf4\x23\x9c\x5e\xf4\x8d\xc5\x5f\x56\x40\x12\x3e\xfa\x3b\x44\x2c\xc2\xaf\xf4\x54\x7d\x45\x9c\x0e\xe1\xeb\x3a\x4c\xd2\x88\x5f\x3e\x9d\x87\x97\x69\x45\x3d\xf0\x7e\xa6\xa6\x4f\xaa\xb6\x92\x16\x86\xf1\xe1\xb4\x71\x29\xce\x70\xa1\xf2\xb5\x69\x00\xa7\x9d\xd1\xe6\x2f\xed\x33\xac\xed\x5d\xee\x96\x3c\x12\x01\x27\xd7\x49\x14\x27\x91\xb8\x0d\x5e\x8c\xf8\x78\x55\x6c\xaa\xca\xeb\x6b\xb5\x34\xad\x65\x0a\x35\x45\xfe\xb9\xc2\x44\xac\x10\x03\x55\x3b\x6c\x1e\xef\x36\x7a\x67\x49\xa3\x81\x81\x52\xf3\x51\x32\x6e\xc9\x9a\xc7\x88\x59\x81\xe2\xb1\x88\x35\xfa\x6e\x73\xc2\xf0\xbe\x58\x69\xd7\x57\xbd\xa4\xe6\xe4\xff\x8b\xec\x37\x30\xdf\xff\x29\xeb\xbd\x06\xe2\x07\xd8\xee\xb5\x12\xff\x11\xcb\x8d\xff\x0f\xb0\xdb\xf8\x7f\x82\xd5\xc6\x3f\xc8\x66\x37\xe9\x4f\x72\xd8\x3f\xcc\x5f\x2b\xc8\xc0\x5b\xff\x30\x67\xad\xcb\x48\xae\xfa\x3f\xe1\xa9\xcd\x75\x32\xfd\x45\x28\xc6\x0a\x5e\x88\xa0\x95\x4a\x88\x7a\xc1\x8c\x72\xef\xff\xc5\xab\x4f\xf9\xd3\x2a\x0c\xd4\x59\x55\x1a\x34\x19\x3e\x8d\xe0\x0b\x62\x2d\x41\xd8\x58\x73\x73\xda\xf6\xe0\xbe\x5a\xe1\xe5\x84\x34\xc8\xeb\xd6\xba\x2f\x05\x0a\x12\x81\x20\xc7\x03\xdc\x22\x06\x2c\xf7\x34\xac\x5d\x28\x06\xcc\xf2\x5c\x6b\x14\x69\x98\xe5\xb9\xb6\xa4\x61\x53\xc2\x36\x45\x78\xa5\xd1\x95\x9c\xe8\x16\xe1\x0c\x30\xa9\xe5\x5d\xd1\xb0\xac\x2f\x4e\x5e\xab\xb7\x6a\xe9\xba\xa5\x4d\x35\xd1\xc8\xf5\x1c\x05\x05\x33\x14\x46\x38\x15\x83\xd2\xe6\xb8\x94\x27\x9e\xc0\xea\xa5\x1a\xd7\xfd\xa3\x7d\x56\x1d\x1c\x9a\x88\xc1\x67\xc4\x89\x18\x94\x5c\x5e\x8c\x4e\xc7\xb6\xeb\x86\xd1\xc7\xb1\x13\xdc\x97\xe1\xa3\x83\x83\xa1\x7a\xad\xc3\x7e\x74\x3a\x6f\x18\x1e\x68\xfc\x54\x17\x21\x6c\x27\x22\x1c\x6c\xe9\xa0\x46\xcf\xdd\x58\x42\x0f\xe5\xc4\x2e\x17\x2f\xb4\x88\x3e\x3a\x44\xb6\xc6\xf9\xe8\x60\x1c\x58\xed\xfa\x4e\xab\xb6\xb5\x49\xf3\xfa\xe9\xf5\xda\x1c\xdc\x3a\x34\xfa\xde\xdf\x9c\x0f\xd0\xde\xc3\x9a\xf6\x92\x7c\x1e\x35\x9c\xda\xc3\x3d\xac\x94\x04\x18\xd5\x39\x1d\x22\xa8\xe3\xec\x68\x60\x2f\x95\xb2\x26\x1c\x5d\x73\xdd\x49\xab\xed\x03\x03\x7f\x29\x26\x4e\x60\x02\x70\xc9\xf6\x31\xe6\x0c\x80\x7d\xd4\xe2\x52\x4e\x9d\x91\xd3\x60\x8d\x7f\x20\x67\xfc\x0f\xb9\x59\x1e\xda\xaf\x1f\x6a\x45\x4d\x3d\x25\xf4\x0b\x88\xe0\x39\x35\xc8\x5f\x08\x8c\xa8\x68\xfc\x63\xe4\xe0\xf1\x3f\xaa\x24\x97\xbc\x91\x34\x9c\xca\x8e\x73\x1a\x91\x99\xd9\xbf\x9f\xbc\x7e\xb5\xed\x45\xdf\xb2\x61\xc1\xfa\x84\x58\xce\xe7\x1a\xc6\xfa\xd2\x28\x43\x31\x13\x5e\x9f\x19\x1d\xc6\x1d\x6c\x50\x74\xa6\xd3\x69\x0d\x3c\xbc\x1e\x29\x0f\xaf\x06\xcb\xda\xe8\xd9\xf0\x74\xfc\xd1\x8c\xf0\x92\x47\x5f\x2b\xe0\x5b\xaf\xa9\x94\xa7\xe5\x1e\xd0\x56\x59\x52\x47\x6d\x43\xce\x26\xcc\x4d\x90\x91\x0a\x4b\x1b\x36\xcb\x5c\x2d\xd3\x05\x57\x92\x31\x07\xe6\x6e\x03\xd4\x5d\x04\x36\xa6\x7a\x16\x11\xd5\x36\x1d\x9c\x11\xd5\x6e\x1d\xd4\xe6\xb3\xb0\x03\x05\xd6\x6e\x44\x94\x2d\x96\x8e\x52\x01\x45\xb2\xe4\x04\xa0\x8f\x99\x62\x4f\x5f\xb2\xf0\xba\xfc\x7a\xa2\xfd\x24\xa7\x35\x61\x14\xda\xe6\x8e\xbb\xea\x0c\x1d\xf2\xb2\x56\x80\xd9\xf0\xcd\x06\x9b\x6f\xfe\x64\xf3\x54\x5f\x38\x3c\xdb\x9e\x76\x6b\x58\xea\xfc\x5a\xfd\x47\xb1\xd0\x45\x4c\xcd\x36\xdf\x00\x1e\xdb\x00\xae\x66\xa2\x68\xf1\x99\x56\xc1\x37\xea\x1c\x30\x53\x26\x2c\x9a\x23\x54\x96\x4d\xe2\xbd\xb6\x3e\x9d\xaa\xa8\xf6\x43\x04\xef\x01\x95\xd9\x2f\x55\x27\x04\xe9\x0b\x18\x8b\x69\x78\x9b\xbe\xe0\xea\x51\xb8\xcd\xc1\x78\xc2\xb6\xb2\x2f\xc5\xc8\x50\xfd\x9b\x56\x70\xec\x9b\xfd\x0a\x63\x03\xe7\x82\x75\x55\x15\x3d\x6b\xc2\xe9\x14\xf5\x25\xf6\x02\x83\xa1\x9e\xdd\xfd\xb4\xf8\xac\xaa\xcd\x28\xbb\x80\x3f\x3c\x59\xd1\xcf\x54\x01\x4d\x78\xc1\xd7\xa7\xa5\x65\x00\xb1\x39\x3f\x0c\xfc\xcf\xe5\x7e\x62\x30\xa7\xd8\xc6\xec\xa9\x00\x5f\x0d\x20\x9f\x1e\x92\x95\xa0\x29\xd7\x23\x45\xf5\x80\xfd\xc4\xee\xbd\xab\x75\xae\x02\xf3\x5e\xa5\x7a\x95\xcd\x66\x20\x0d\x01\xb1\xbd\x90\x59\x71\x10\xb1\xb3\x06\x12\x09\xc5\x0b\xac\x77\x0b\x61\xb9\xda\x65\xee\x20\x58\x0c\x44\x60\x5e\xcf\x1c\x38\x4a\x1f\x34\x3f\xf1\x21\x41\xf9\xda\xe3\x2e\xe0\x6d\x18\xe8\x72\x90\x1b\xe2\x0a\x70\xbf\x91\x0f\x1e\x6b\x26\x30\x70\x38\x48\xf2\xb1\x9b\xda\x3c\xe3\xbf\xd1\x2f\xea\xd6\xa4\xa5\x65\xf3\xcd\x7b\xa8\x05\x7e\xd0\xbf\x67\x62\xb1\xa6\xd8\x98\xb7\xff\x01\x6e\xb9\xf5\x09\xb3\x4f\x72\x0a\xcd\x2c\xeb\x5b\x63\xba\x75\x4c\x36\x1f\x3a\x1c\x6c\xf6\xf9\x83\x7e\x96\xf5\x8b\x71\x82\xee\x2f\x1f\x50\xd5\x5b\x2f\x79\xe5\x0f\xfa\x83\x24\x48\x9a\x7d\x33\x51\x8d\x8e\xc5\xe6\xb2\xb4\xec\x3e\x50\xa5\x04\x46\x5d\x81\x36\xab\xd3\xd4\x23\xc5\xfa\xb6\xcb\x7a\x57\xec\x7b\x5d\x2f\xd9\x6e\xaa\x7f\x53\xca\x8d\xfc\x62\x29\x18\xcd\xbf\x52\xba\xe4\x4a\x38\x21\xd9\x6b\x9a\x7f\xa5\x74\xc2\x55\xfe\x9c\xf7\xa6\xd7\x6b\x0a\xd9\x57\x90\x23\xe7\x99\xca\xf2\x3d\x23\xdd\x33\x8f\xdc\x14\x1b\xf1\x3d\x17\xa2\x3f\x3a\xf6\x7a\xdd\xc6\xc1\x37\xa1\x29\x69\xd5\x6b\x96\xcc\xf6\x92\x8d\x58\x6e\x12\x55\x92\x08\x28\xf7\x16\x30\x40\xe1\x45\x8a\x18\x3e\xf4\x7a\xca\x2b\x09\x62\x0f\x69\x2f\xf7\x32\xb4\x6b\x55\x5c\xaf\x0b\x50\x71\x36\xb5\x1b\xcb\x35\xd5\x44\xaa\x77\x3f\x6d\xb5\xbd\xeb\x1a\x7f\xdb\x9a\x11\x94\xe3\x14\x29\xdd\x9a\x58\x9e\x28\xea\x75\xb4\x2b\xb4\x24\xeb\x5c\xa9\x93\xbe\xe0\x6f\x92\xf8\x32\x61\x69\x3a\xb0\x14\xba\x59\x33\x56\xc5\x3c\xb2\xeb\x19\x0a\xb5\x5e\x20\xcb\x50\x75\x82\xb2\x0d\xdb\x7e\x12\xad\x28\x01\xa6\xfa\xd6\x39\x75\x29\x26\x5b\xe5\xfd\x05\xeb\xec\x1a\x99\x3f\x2c\xc1\xad\x05\x4c\x57\xa2\x8a\xe2\xe5\x0e\xf4\x08\xd3\x5d\x67\x0e\xca\xc8\xf4\x3c\xf4\x87\x85\x61\xce\x9f\xaf\x1d\x21\xb4\x5b\x55\x80\x2a\xbe\x2d\xf0\x5a\x9d\x79\x02\xd9\xf5\x88\xf1\x0c\x5b\xab\x7c\x21\x55\x21\x66\x76\xc5\x97\x02\x45\xf9\x70\x9b\x67\xb8\xb4\x8e\x6f\x01\x9e\xe9\xc1\xb2\x1b\x59\x58\x5d\x16\xb2\xaf\xab\x30\x7d\x3c\x8f\x2e\x39\x9b\x3e\x8f\x97\xc9\xc6\xaa\xda\x6e\x09\x86\x18\x65\x03\x75\xf9\x63\x1d\x61\x02\x97\xac\x77\x2e\x6e\x32\xfc\xa0\xe7\x52\xea\x1a\xea\x7c\x74\x72\xba\x8d\xa5\xb6\x8a\xfd\x5a\xa2\x4c\x8a\x01\x72\x4b\x95\xe9\x09\xfc\x9d\x32\xdd\x52\x19\x8d\xc2\xcb\xf2\x3c\xd9\xde\x4c\x7b\x0d\xea\xb2\xef\x36\xa9\xcf\x0f\x19\xcc\x15\xc5\xe9\x73\xa1\xbf\x4f\x9f\xe8\x6f\xa3\x24\xb3\xf5\xac\x51\x7e\x9c\x76\x65\xca\xbc\x2a\xdd\x00\x54\x97\x79\x12\x2b\xed\x44\xc1\xa6\xb5\x77\x3c\xfa\xc2\x92\x34\x9c\xd7\x4e\xa3\x05\xcb\x41\xc9\x15\x9a\xd2\x13\xa5\x24\x99\xd6\xc2\xc9\x84\xa5\x69\x9c\xac\x2b\xb6\xbf\x4b\x99\xf2\x59\x60\x4c\xd6\x1d\x92\x72\x9c\xb3\xb7\xa9\xd2\x8d\x97\x5f\xf7\x82\x80\x2c\x06\x86\x43\x5e\x30\x6c\x0e\x2b\x00\x01\x3e\xee\x05\x20\x73\x14\xe5\x1f\xab\xf2\xb2\x3b\x4a\xca\xf9\x32\x62\xbb\xe9\x3d\xb2\xe6\xc5\xcf\x9a\xe0\x4b\xc8\x7b\x5b\x34\x45\x73\x6e\x6d\x83\x27\x63\xda\x60\x57\xd3\x1a\x6b\xb1\x16\x6f\xc6\x6f\x28\xd6\xac\x70\xbe\x68\x4e\xae\xa2\x99\x60\x53\xd9\x46\x3b\xbc\xde\x41\x3f\xf1\x48\x41\x2a\x9a\xa9\x02\xb2\x66\xe4\x23\x0f\xa1\x51\xcc\x4b\x2e\x06\xe4\x1e\x1a\xe7\x52\xd0\xa2\x7e\xbc\xbe\x4f\x16\x49\x5a\x1a\x72\xb7\x92\x9b\xe5\xad\x51\x37\x22\x88\x51\x70\xe1\x84\x5b\xe7\xa1\xe1\x57\xf2\xf7\x97\xc1\x5d\x5a\xa8\x0c\x5c\xe5\xc7\xce\x26\x58\xba\xbe\xca\xdc\xc3\x63\xc8\x4c\x84\x91\x64\xca\xb3\x92\x7a\x6e\x76\xb3\x74\xee\x2e\xa5\x22\x51\x6b\xd6\x2e\x38\x7d\x52\xa5\x8d\x76\xbb\x71\x93\x08\x56\xe4\x31\x9d\x49\xee\x09\xec\x73\x0b\xfe\x2d\x1a\xf1\x31\xf8\x55\x2b\x8c\x07\xbe\xd8\xae\xf0\x42\xb8\x4d\x07\x0e\xb2\x70\xcd\xc2\x28\xcb\x32\xc7\x31\x8e\xbb\x4d\xdf\xe6\x15\x6b\xf1\xbd\x42\x33\x81\x67\x9e\xd5\x8b\xca\x70\x5f\xe2\xf9\x70\x53\x12\x8d\x92\x31\x85\x22\x89\x5d\xc4\xe0\x55\xe0\x73\x69\xb5\xc7\xb9\x88\xe3\x39\x0b\xb9\xc5\xcd\x0c\x42\xe5\xde\x89\x53\x41\x84\x41\x31\xd0\x18\xef\x7a\x24\x94\x29\x1b\x19\x30\x11\x14\xec\xb9\x77\x0c\x3b\x06\x9d\x94\x52\x36\x88\x0b\x86\x3e\x70\x0b\x87\xec\xdc\x6a\xa6\x20\x88\x37\x52\xfc\xa0\x4f\x12\xfd\xc2\xa9\xd2\xeb\x35\x0d\x55\xfe\xac\xfa\xe0\xc5\x6a\x39\x8a\xa0\x9d\x82\xa0\x68\xad\x8c\x06\xb8\x5c\x2d\xb6\xe8\x09\x16\x2f\x36\x69\x56\x44\x67\x1a\xb1\x71\xce\x19\xe9\xa8\x96\x51\x05\xdc\xc9\x75\x08\x12\x3c\x48\xb4\xf4\x81\x70\x38\x11\x2d\x24\xf7\x61\x3f\x71\xb4\xed\x64\x7e\x5e\xce\x06\x2f\xa7\x6c\x49\x69\x89\xf8\xdd\xf5\xb5\x79\xf5\x26\x77\x0d\x29\xb2\x6c\x97\x0f\x44\x80\xb6\xc0\xa3\xbc\xf0\x83\x39\x1c\x0e\x87\xd9\x70\x98\x1d\x1d\x65\xd3\xe9\x74\xba\x77\x59\xe9\x7e\x49\x7b\x8f\x02\xa5\xfa\x2d\x40\x31\x34\xd1\xd2\xc9\xd8\xbe\xed\x14\x79\xa0\x8c\xd6\x8d\xdf\xce\x96\xe9\x0c\x85\xa0\xf7\xc1\xd4\x01\x8e\x6e\xc1\x73\x87\x6a\x74\xca\x21\x98\x2b\xe6\xe8\x08\xfb\x11\xa6\xad\xd7\xfd\xaa\x1a\x3b\xeb\x88\x8f\x8b\xc1\x8c\xf0\x20\xca\x8b\x04\x96\x4b\xd2\x07\xd3\xbd\x28\x47\x24\x4c\xc5\x53\x78\xe3\xa9\x52\x3b\xa2\xa2\x0a\xf7\x90\x0d\x1c\xf5\x2c\x94\x13\x38\xb2\xbc\x63\x55\xca\xf1\x80\x23\x81\x03\x6b\xac\x1e\xa4\x7b\x11\x5c\x27\x2f\xd6\xaf\x6e\x73\xdf\x70\xca\x81\x8a\xba\x87\x1d\xca\x85\x38\xe2\x46\x87\x85\x8f\xa9\x3a\x96\x8d\x9c\x73\xa7\x21\x43\x9a\x74\x2a\xbb\xb2\xfc\x8c\x70\xaf\x69\x82\xfd\x76\x24\xba\x2f\x7f\x2b\x8d\x97\xc9\x84\x99\xa5\x12\x6f\x26\xe1\x86\x93\x39\x8d\xfc\xb9\x2c\x13\x0b\xad\xd3\xec\xc2\x16\x53\x0b\x2d\x91\x35\x76\x9e\x03\x3b\x34\xca\x6f\x7e\xc6\x41\x29\xbe\x54\xa6\x15\xa5\x6a\xe2\x66\xd9\x5b\x86\x5b\x82\xa5\x02\x04\x21\x6a\xea\x38\x81\x93\x8a\x90\x4f\x43\xc9\x28\x3a\x63\x1b\xe4\x7d\x55\x97\xea\x6b\x15\x10\xac\x16\xc1\x9b\x57\x3f\xd6\x2c\xc8\x5a\xae\x00\xa2\xb6\x35\x50\x25\xbe\x65\xff\x76\x63\xb6\x55\xb8\x59\x4b\x75\xdb\x60\x6c\xef\x57\x3a\xb6\x21\x41\xf6\xe3\xaf\xe1\x24\xdf\xc3\xb6\x16\x85\xa7\x2f\x44\xac\x9e\x12\xb2\x9e\xf9\x2a\x8e\xed\x36\x4c\xd0\x56\xd8\x88\xa5\xa3\xb1\x45\xb9\x86\x55\x09\xa9\x6c\xdb\x5a\x4a\xbe\x6d\x36\x1a\x09\x8e\xcd\x23\xbb\xc9\x18\x6f\x29\x23\x37\xd6\x42\x22\xab\x9f\xd6\x8d\xc1\xf5\x70\x45\x03\xaa\x31\x5a\x83\xb1\xbd\x78\x2e\x75\x19\x38\xc3\xe1\xd0\x81\x37\x1e\x9a\xde\x2e\xa5\x28\xca\xbd\xfa\x54\xa3\x49\x42\x8c\x07\x91\x92\xe7\x55\x97\x58\xc3\xc9\x2e\xf0\x6f\x56\xf6\xd3\xf5\xfc\x4c\x81\x9f\x6e\xf6\x86\xdd\xa2\x32\xc4\xd9\x98\x37\xb9\xf0\xe2\x3f\x9e\x4b\x98\x94\x78\x30\xc9\xe1\x45\xf6\x84\xe2\xf9\x69\x72\x73\x3e\x58\x66\xcc\x1b\x53\xa5\xf4\x9a\xaf\xd3\xb0\x67\x4e\x54\xf2\x79\xed\xb4\xc0\xa1\x4f\xc3\xf9\xa5\xf4\x48\x70\xd5\x14\xde\x0e\x53\xcd\xe8\xfb\x01\x63\x70\xc7\xb9\xde\x6b\xa3\x04\x5e\x0c\xa3\x95\x48\x36\x9c\x6c\x6b\x3d\xa4\x0a\x94\x8d\x62\xbc\x8e\x89\xc1\xa2\x5e\x87\x47\x20\x1d\xf5\x54\xd2\xb6\x1e\x54\x14\x93\x6d\x3c\x7f\xe5\xac\x17\xad\xe8\xa9\xca\xb2\xbb\xdc\x94\x58\xdc\x9f\x79\x65\x91\x4f\xf5\x34\xf3\x56\x1e\x68\x9d\x68\x0e\x90\x9e\xbc\xce\xb9\x55\xde\xc1\x59\xf6\xd4\x5a\x02\x98\xb0\x32\x41\x2f\x5e\x81\x2e\x91\x75\x88\xc1\xc1\x56\x98\x68\x23\x33\x7d\xc9\xca\x03\x63\x81\xae\xd7\x7f\xa6\xd6\xf5\xed\xf1\x7f\xa7\x23\xd6\x5e\xd5\xde\xdc\xe4\xb6\x74\x49\x91\xb6\xd1\x2f\x16\xf6\x47\xeb\x9d\xb3\x56\xdd\x46\x0f\xfd\x20\x3a\xd0\x57\x70\xbf\x57\xd1\x3f\xef\x18\x62\xd6\xc3\xdf\xc5\x1d\x6a\x71\x6d\x0a\x65\x01\xc8\x2c\x4a\xe0\xe1\xd6\xf5\x0b\x82\xb5\xde\x36\x25\xd7\xca\xbc\x2f\xa1\x50\x5d\xe6\x26\x47\x76\xed\x7a\xac\x60\x8a\x0d\xbd\x35\x99\x0c\xf7\x91\xbf\x1e\x5a\x0e\x8e\x58\xbd\xae\x54\x5e\xcc\xfa\x32\x29\x39\x3f\xf7\x1d\xee\x27\xf7\x83\x0a\x7e\x0f\xde\x33\xc4\xd7\x3a\x0c\x07\x6c\xc0\x47\x4c\xdd\xa6\x8c\x03\x5e\x6a\xc3\x30\xe2\x55\xb2\xcf\x1c\x58\x19\xa7\x61\x54\x05\x7c\x23\x4f\x51\xd9\x46\x52\xa9\xf2\x75\xd6\xf1\x7b\xd5\x43\xfe\xef\x22\x60\x58\xca\x4a\x14\x20\xb1\x84\xc4\x0f\xf3\x78\xa5\x02\xff\x63\x5c\x5e\x09\xaa\xc5\xe7\x95\xd1\x2b\x6f\xc2\xef\xab\xd3\x16\x11\xdf\x48\x51\xfb\x73\xbf\xcc\xeb\x79\x63\x0c\xbd\x93\xe0\x2d\x25\x73\x76\xcd\x1a\xb9\xef\xb2\x7c\x9b\xa8\x6d\x80\xf9\x31\xde\xf1\xe6\x5e\x18\x3f\xc4\x3b\xca\x73\xff\x7d\xfc\x5c\xa9\x8a\x12\x23\xf8\x9d\x82\x9b\x8d\xfc\x3e\x7b\xb7\xde\xbb\xeb\xf5\xfd\x34\xa6\x3f\x89\xda\xbf\x87\xd5\xbf\xd5\x0b\xff\x69\x1b\xee\x43\xea\xa7\x4a\xfc\x1f\xeb\xcc\xef\x32\xda\xa5\x3a\xf2\xed\x74\xcb\x72\xae\x5a\xb2\xdf\x5f\xe8\xb3\xe5\x7c\xbe\x9e\x84\xf3\xa5\xbe\xc1\x89\x5b\xcb\xbd\x60\xc8\x37\x60\xd8\x2c\x79\x55\x62\x25\x03\x9d\x2f\xca\x0a\xee\xf9\xec\xac\x35\xd8\xc2\x9a\xff\x14\xec\xad\xec\x79\x75\x05\x55\xb4\xec\x3e\xf0\x92\xb4\x7d\x1f\xf8\x36\xda\x54\x66\xff\xcb\xdd\x61\x1d\x00\x2a\xda\x52\x91\x9a\xa3\xb2\x8d\x10\xfe\xe0\x01\x21\xa7\x29\x86\xa7\xa8\x1a\xcf\xad\x47\x84\xf5\xc2\x95\x23\x76\x4f\xe9\x52\xe1\x8a\xd1\xf8\xce\xf9\x62\xbd\xd1\x5b\x4e\x18\x26\xdb\x77\x58\xeb\xcd\x4d\xdb\x62\xae\x4b\x30\x24\xef\xfb\x57\x25\x7b\x9d\x0f\xde\x06\x33\x5b\x02\x60\x33\xd6\x1b\x90\x51\x45\x01\xfa\x4f\xb6\x3e\xd2\x95\xfc\xf4\x8f\xd6\xbf\xc9\x5b\xfd\x6f\x76\x4e\x35\xbb\xbf\x89\x4e\x55\x37\x55\x9e\x40\x2a\x5a\xf2\xcb\x66\x87\x6d\x3d\x85\xfc\x3c\x62\xeb\x8c\xf1\xff\x62\xef\x0d\x23\xbe\x1d\x45\x83\x4a\x55\xcf\x99\xb4\x8a\x7e\xcb\x5b\xf0\xc7\x46\xaf\x95\xab\xdb\xec\xb3\x1f\x43\x47\xdd\x8e\xa4\x6f\x86\x15\x7d\xe4\x5c\x83\x2d\x1d\x6b\x18\x5e\x2d\xe7\xd2\xe0\xc1\x94\xc7\x02\xb9\xfa\x94\x6c\x1e\xf5\x59\x67\xa2\x8d\x5b\x11\xef\x90\x0d\xf8\xc0\xb9\x5e\x38\x81\xf3\x66\xe8\x04\x7c\xe0\x84\xf2\xfb\xf1\xd0\x59\x91\xa5\x00\x05\x69\x72\x57\x2d\xb1\x0f\x8c\x28\x1e\x89\xab\x2c\x15\x19\x9f\x66\xc9\x14\xef\x11\x2d\xba\x0f\x36\xaf\xab\xd8\x03\xcf\xcd\x1d\xa0\x36\xc0\xe3\xfb\x0d\x92\x91\xee\x9e\xe7\xe2\x81\x23\xae\x9c\x00\xdc\xc0\x0f\x9c\x54\x38\x81\x7a\x84\xd6\xe1\x53\x27\x68\xab\xcf\x64\xea\x04\x32\x17\x5e\xc1\xb3\x00\x60\xfc\x96\xdf\xd0\x43\xb0\x5a\x3d\x40\x25\xab\x37\xf7\x0b\x55\x83\xa5\x30\x40\x40\x95\xba\x0c\x48\x46\x7d\x17\x98\xca\x94\x03\x9c\x68\x93\xf0\x0b\x4e\x8d\x36\x96\xf5\x6a\xe3\xc6\x2d\xd2\x67\x01\x97\x7d\xd6\xf3\x42\xb6\x6e\x5a\x83\x26\x0f\xa3\x35\xf7\x95\xda\x7d\xaf\x4e\x02\x4f\xbe\xb9\x1f\x5f\x93\x5f\xb9\x13\x65\x55\x4e\xc8\x6f\xf8\x9a\x7b\x71\x4b\x67\xdd\x38\x16\x07\xbd\x64\xfb\x8a\xf9\xd8\x2e\xd4\xd9\x77\xdd\x87\x6c\xcf\xeb\xf4\xdc\x83\x7e\x91\xe7\xab\x9d\x47\x25\x3e\x64\x7b\x32\xb3\xf5\xa4\x99\x9d\x67\x8b\x28\x20\x4c\xe1\x89\x16\xd9\x3d\xaf\x39\x3d\xe1\x48\xb9\xb3\x79\xac\xbe\xe5\xe7\x27\x1d\xed\x60\x32\x54\x9f\x57\x0e\x26\xa7\xea\x73\xea\x60\xf2\x44\x7d\xde\x38\x98\xbc\x55\x9f\x43\x07\x93\x37\xea\xf3\x0f\x07\x93\x57\xea\xf3\xd6\x76\x7c\xf9\xf7\x0f\xe0\xb6\x66\x80\x00\x3e\xe0\x47\x6c\x1c\xbc\x0a\x5f\x29\x8c\x5f\x70\xfa\x37\x2f\x59\xbc\x82\x2b\x1e\x15\x5b\x44\xbc\x34\xd9\x94\x43\x29\x4c\x9e\xaa\x08\x50\x71\x74\x30\xf9\xa6\x82\x72\x70\x1d\x4c\x9e\xeb\xdc\xda\xe3\x25\xf9\x4d\x85\x41\xa5\xc5\xc1\xe4\x1d\xb7\x14\x33\xc9\x67\x4e\xef\xd2\x34\xe8\x74\x48\x1a\x74\xba\x64\x21\xff\x5c\x05\xbe\x4f\xa6\x81\xdf\x23\xc3\xc0\xf3\x56\xe4\x7d\xd5\xdc\xfc\xd3\x6a\x3f\x72\x0f\x19\x6e\x22\x76\xe8\xe2\x2c\x6b\x58\xcf\xc2\x7f\xb8\xd7\x96\xa5\xc2\xe9\x41\xc9\xde\x5e\xa9\x6e\xc8\x05\x40\xdf\xf3\xfc\x78\x51\x74\x15\x98\x49\x90\xa4\x48\x54\x2e\x5a\x23\x2b\xb7\xf6\xd2\x2a\xe8\x39\x42\x8c\x9e\x23\xbe\xd7\x73\x31\x06\xf7\xf4\xfc\x01\xed\xb9\x84\xc9\xbf\x3b\xca\xdf\xe1\x39\x8a\xf6\x3c\x1f\x93\x90\x46\x0f\xa8\xe7\x93\x94\x26\x64\x49\x05\x99\x53\x46\x26\x94\x0f\x78\x4b\xc4\x4f\xa3\xaf\x6c\x8a\xda\xf6\x2b\x8f\xad\x81\xdb\x50\xaf\x3c\x06\x8e\x43\x66\x54\x4f\xcb\x13\x63\xba\x05\xec\xd4\xcc\xd8\xef\xbc\x71\x8f\x94\x52\xc2\x15\x9d\x1d\xba\x03\xa7\xe9\xc8\x52\xd7\xf4\xcf\x35\x9c\x77\xa9\x8c\x9a\x61\x93\x63\x5a\xe4\x80\x66\xae\xa7\x2f\x2c\x08\x76\x1f\xad\xe5\x33\x94\xe3\xaa\xe1\xbc\x71\x1a\x28\x1e\x5c\x37\xe2\x86\xf3\x01\x1e\x4e\x69\xa0\x70\x70\xdd\x08\x1b\xce\x50\x07\xd3\xc1\xb4\x91\x36\x9c\x23\x1d\x5c\x66\xd9\x3c\xcb\x26\x03\xe7\xd4\x44\x0c\x16\x8d\x65\xc3\x79\xae\x83\xf3\xc1\xa2\x31\x2f\x4a\x4f\x06\x8b\xc6\xa4\xe1\x9c\x40\x10\xa6\xfb\xb3\xb2\x4f\x5a\x83\xcb\xb3\xfb\x2c\x97\x55\x93\x74\xfa\x8a\x3c\xe3\x72\x1a\x6e\x51\xd4\x87\x05\x56\x56\xac\x29\xa9\xee\x5e\x54\xf6\x90\xfd\x96\xc3\x45\x79\x2a\xd9\x23\x62\x95\x56\x23\x54\xb6\x28\x84\xf4\x72\x4c\x61\x7e\xa8\x13\xad\x78\xa3\x87\xac\x0b\x41\xc0\x98\x30\xea\x58\xf8\xcc\x2d\x1d\x4d\xd6\xbc\x6e\xa5\xab\x06\x91\xf0\x69\xf4\x41\x9f\x29\xf7\x54\x95\x17\xc0\xe7\xbc\x38\x24\x7b\x18\xf2\xe6\x56\x98\xdf\x2d\xd0\xd4\x25\xc2\x1f\xb5\x43\xa8\x32\x3d\xb0\xfb\x07\xd4\x97\x95\x62\x50\xd9\xb8\xd9\x58\x18\x2b\xc3\x66\xa5\x09\x2e\xbf\xb1\xb6\x57\xce\xad\x52\xe5\xc6\x96\x28\x0d\xf1\x5c\x81\x45\x6f\x6d\xc7\x1c\x09\x4c\x8c\x65\xb3\x36\x38\x36\x02\xa9\x35\x43\x66\x13\xbd\xd7\xde\xb1\xec\xa0\xf3\x58\xcf\x57\x7a\x5c\x55\xb5\x5b\x3a\xee\x5f\xd7\xe6\x47\x51\xbb\x32\x5e\x36\xf3\x72\xaf\xdf\x48\x8c\x7f\xa6\xc2\x7a\xd8\xa4\x9a\xf6\xd8\x36\xc1\x3a\xcd\xef\x3c\x94\xc9\xe0\x20\xaa\x64\xd9\x9b\xef\xa2\x1d\x17\x72\xf4\x58\xa7\x6c\xc6\xab\x33\xec\xf7\x3a\xae\xca\xe1\xb1\xb6\x01\x51\xd8\x91\x07\x9b\x66\x69\x80\xca\x43\x81\x1b\x49\xee\x44\x4a\x5c\x25\xf1\x0d\x18\x9c\x1e\x27\x49\x9c\x20\xe7\x1d\xff\xc4\xe3\x1b\x5e\x5b\xf2\x48\xd4\x9c\x86\xdc\x8d\xd5\x34\xb1\x5d\xb2\xd1\xd7\x5c\x45\x6a\xb2\x48\x1f\x73\x93\x49\x2d\x84\x4f\x3a\xfc\x1c\x16\xc0\x50\x87\x8e\xe4\xa2\x3c\xd5\x01\x65\xfe\xf3\xc4\x14\x54\xab\xe2\xad\x0e\xfe\x61\xac\xa8\xde\xe8\x88\x0f\xb0\x3e\x5e\x41\xe8\x3b\x56\x74\xeb\xfb\x74\x89\xa7\xd2\x5d\x50\x0c\xb9\x3d\xc8\x0f\x3c\xff\xa1\xdf\x3d\xf0\x59\xaf\xd1\xf6\xba\xed\x1e\xeb\x3d\xbc\x29\xcd\x02\xb9\xa1\xc0\x7e\x2f\xd1\xd0\xfc\xd5\x06\xf5\x2a\x5e\x01\xae\x58\x25\x24\xb4\xe6\x1b\x49\x4b\xb3\x5c\x6e\x4f\x1b\x84\xcf\x3d\xa4\x31\xf8\x1f\x0e\xe1\x6f\x9a\x65\xf1\x21\x75\xeb\xf5\x10\xfe\xa6\x87\xd4\xcd\x32\x14\x37\xa8\x6a\xd8\x0d\x97\x13\x37\xc5\x8d\x10\x93\x94\x86\x14\x9e\x66\x2b\xd1\xb5\xf8\x81\xdc\x66\xe5\xee\x19\x83\x5d\x22\x59\xe6\x54\x0d\x5e\x76\x91\x9b\xab\x7a\xf1\x65\x99\x93\x35\x21\x13\x38\x3d\x47\x42\x27\x68\x6b\x8c\x07\x7e\x87\xa4\x0d\x1a\xd1\x73\x74\xcc\x51\xd8\x80\x2d\xd9\xef\x60\x8c\x49\xd8\xa4\x0a\x97\x08\x5c\x2f\x9c\x23\xe8\x3b\x92\xc2\x56\xbc\x54\xf6\x4f\xa1\xac\x42\x8d\x7b\x4a\x96\x9a\x04\x26\x05\xe1\xdb\xe6\xbb\xee\xb3\x30\xfe\x2f\x9e\x6d\x75\xca\xa3\xc8\x0f\xa9\x98\x10\x23\xd6\x70\x52\x67\x8c\x8a\x81\x2c\xf5\xcf\x0b\x98\x62\x26\x74\xc4\x55\x06\xd5\x0f\x2f\x21\xa4\x1a\xff\x14\xbe\xa1\x1d\xdf\xe0\x73\xcd\x78\xae\x20\xba\xb9\xb5\x4d\x8a\xf0\x5e\x5f\x61\xad\x9b\xfd\x1c\x4a\xaa\x86\xff\xa6\x80\x6b\x0f\x46\x3f\x48\x94\x7f\x84\xe7\x2a\xbd\x11\x4f\x96\x64\x0e\x6f\x00\x6f\x94\x24\x57\x14\x09\xba\xcb\x08\xa7\x33\x92\x50\xd3\xc9\x60\x51\x22\xd9\xb0\x77\x1c\x25\x92\x3f\x97\x5c\x38\x26\x71\x11\x06\xeb\x85\xb0\x08\x5f\xc9\x70\x5a\x84\xa7\x32\xbc\x2c\xc2\x43\x19\x9e\x17\xe1\x5b\x19\x46\x13\x1a\x1d\xd2\xcf\xbc\x95\xa6\xf5\x3a\xb8\x42\x8d\xc6\x59\x16\x1d\xca\x18\x88\xd0\x31\xf1\x21\xf5\x64\x78\xe1\x40\xe0\x33\x6f\x2d\x20\xb8\x70\x48\x3c\xce\xb2\x50\x27\x5f\x39\x10\xf8\xcc\x5b\x57\x10\xbc\x72\x48\x38\xce\xb2\x54\x27\x4f\x1d\x08\x7c\xe6\xad\x29\x04\xa7\x0e\x49\xc7\x59\xb6\xd4\xc9\x43\x07\x02\x9f\x79\x6b\x08\xc1\xa1\x43\x96\xe3\x2c\x9b\xeb\xe4\x5b\x99\x3c\x72\x6e\x6f\x1d\x32\x1f\xe3\x91\x3f\xa6\x82\x4c\x46\xed\x31\x75\x0f\x81\x9c\x90\xc9\xa8\x33\xa6\xbc\xd2\x17\xb7\xd1\x98\x2d\xa9\x19\x22\x91\x65\x1e\xd9\xdd\xe5\x84\x91\x04\xaf\xec\x27\xd7\x26\xb8\x38\x1e\xd6\xeb\xe8\x8a\xce\x2c\xbd\x41\xa4\xaa\xbb\xc2\x98\xcc\x6c\x0f\x63\x57\x6a\x92\xd9\x9e\x02\x3e\x70\x15\xb3\x16\x04\x83\x6b\x15\x28\xbc\xc7\x3c\x5b\xf7\x1e\xa3\x60\xa5\xa6\xf0\x09\x72\xac\xe0\xa6\xb7\x7a\xeb\x19\x89\x92\x95\xb6\x39\x28\xd7\x10\x8f\x45\x34\x61\xe0\xac\x7e\x12\x5e\x47\x22\x9c\xa7\xd8\x21\x1f\x38\x86\xba\xb5\x47\x9b\x77\xc8\xf9\x4b\xbb\xf6\x5c\xf2\xe8\xab\xf2\xf6\xf9\x55\xc7\xe8\x3d\x40\xbf\x36\xf5\xb5\xf0\x87\xfd\x97\x43\xf6\x46\x8d\xe6\x78\x70\x36\x6d\xc0\x6b\x3f\x77\x1e\x69\xaf\xf0\x60\x4f\x39\x44\xfe\xcb\xa9\xf4\x2d\x5c\xbc\x44\xe8\xb1\xf6\x43\xfb\xc9\x11\x78\x21\x5d\xf9\x57\x96\xd5\xdc\x5f\xf8\x46\xb2\x3c\x20\x99\xd0\x4f\x34\x52\xc7\x6f\xf9\x9d\x96\xeb\x10\x46\x3f\x09\xc2\x5b\x33\x4e\xaf\x39\x51\x3e\x78\x2a\x2c\x75\x05\x72\x8c\x23\x20\x87\x8c\xc6\x4a\x8b\x56\x89\xb6\xf2\xc7\xf7\x88\x44\x88\x28\x87\x3e\xdb\x40\x80\x5f\xa2\xef\x42\xe0\xb6\xef\xb3\x1c\x02\xb8\x65\xe0\xf1\xcd\xc0\x7c\x20\x1c\x34\x4c\x13\x65\x31\x30\xa1\x22\xeb\x76\xf0\x05\xed\xfd\xa4\x9e\xf1\x61\x0a\xcb\x7b\x14\x33\xb5\xf2\x7a\x7e\xb8\x95\xf9\xa3\x14\x54\x81\x53\x92\xcf\xc8\xa5\xec\x37\xf3\xda\xc5\x94\xf0\xd6\x54\xbf\x68\x40\x3f\x43\x4a\xaa\x9e\x1d\xa5\x17\x64\x8b\xf2\x80\x25\xef\xca\xd5\xd3\x1d\x93\x53\xd5\x5a\x69\x73\x95\x37\xa7\xfa\x0d\xc4\xa2\x10\x02\x18\xd6\x9a\x99\x28\xc4\x8e\x0c\xa2\xaf\x04\xf9\x01\x85\xce\x72\x77\x40\x46\x85\x5d\xb5\x3a\xc1\x77\x1a\x36\x8c\xb8\x2a\x3d\x65\xb3\x88\x33\x75\x9f\x4b\xe7\x22\x37\xa0\xd3\x31\x1b\xee\x9c\x8c\xa1\x40\xf1\xca\x14\x4d\x84\x36\x0b\x43\x09\x4d\xcd\x33\x19\x11\x4d\x8c\x2a\x30\x26\x88\xc3\x2a\x78\x82\x04\x3d\x45\x11\x11\x18\x43\xff\x30\x2e\x74\x35\x11\xe8\xa5\x47\x4a\x9b\x9c\x2c\x8b\x57\xb9\xb5\x61\xa1\x4c\xa8\xd7\x91\x15\x2a\x95\x1f\xa8\x92\x9b\x09\x41\xa9\xbc\x7e\x0a\x19\x42\x85\x79\x82\x0c\x15\x23\x54\xb5\x49\xbf\x46\x91\x28\x75\xf5\xe6\x30\xdd\xdb\xd9\xd6\x60\x71\x49\x83\xe7\xd1\x37\xf6\x8e\x47\x22\xa5\xaf\x48\x59\xa5\xfc\xad\x3c\x5d\xac\xfb\x6e\x31\x13\xa0\x78\x61\xe3\x1d\x0f\x1c\x93\xc3\xb2\x9f\xa8\xd7\xd1\x3b\x4e\x19\x58\xde\xad\x01\x3e\xbd\x4a\x58\x7a\x15\xcf\xb7\x1c\x16\x15\xec\x5d\x4a\x3f\x73\xd5\xd3\x79\x65\x62\x00\x51\x01\x82\x1f\x2a\x88\x93\xc2\xf9\xac\x5e\x47\xb0\x1f\x53\xd1\xf4\xb0\xac\x11\xaa\x2c\x7b\x37\xae\x54\xd2\x61\xe0\x4d\x18\x09\xa2\x64\x58\x60\x8c\x68\x8e\x5f\x87\xcd\xde\xa0\x70\x84\x1c\xf0\xc3\xa6\x37\x70\xe6\x61\x2a\x94\x17\x27\x7e\xe8\xaa\xe0\x91\x3c\x45\xf1\x43\x4f\x65\xd6\x21\x7f\xe0\xe8\xc7\x7e\x65\xa8\xaf\x42\xaa\x60\x01\x13\x96\xb3\x11\x4a\x28\x62\xfb\xfc\x74\xf8\xb2\x7b\xfe\x74\x78\x4a\xef\x8e\x1e\x9f\x1e\x9f\xbe\x18\x1e\x9f\xbf\x7c\xfd\xe4\xf1\xcb\x60\xe3\x69\x16\x87\x94\x73\x9c\x9f\x1c\x3f\x79\xfd\xea\xe8\x64\x33\x67\x20\x59\x92\xb5\xcc\xc3\xea\x7c\xe0\xe5\x04\xf2\xda\xc9\x0e\x91\x25\x03\x47\xd7\x0b\x60\xf2\xda\x8a\x2a\x20\x7e\x68\x45\x29\x68\xef\x8f\x8f\xff\x19\xc0\x53\x0c\xcd\xd1\xfb\xf1\xfb\xf7\x0e\x19\xbe\x7e\x75\xfa\x3c\xaf\x40\xf6\xc3\x0a\x57\x78\x12\xcf\xc5\x79\x0c\x69\x61\x74\x1e\x13\xa1\x90\xa4\x8a\xdd\xe4\xa3\x70\xac\x19\x4f\xf8\x52\x16\x33\x15\x53\x32\x61\x9f\x97\x51\xc2\xea\x75\xfd\x01\xf2\xb1\xb4\x5e\x5f\x1a\x16\x75\x89\x42\x98\x01\xd1\x0c\xc5\x26\x2e\xd6\x71\xe0\xe4\x9e\x5a\xa7\xcf\x27\x21\xe7\xb1\xa8\xcd\x22\x3e\xad\x2d\xe2\xe9\x72\xce\x6a\xff\x70\x1a\x61\xc3\xf9\x87\x83\x77\xd4\x59\x75\xde\x9a\xc4\x53\x46\x9d\xe1\xeb\xa3\x77\x2f\x8f\xcf\x5f\xbd\x3e\x3d\x7f\xfa\xfa\xdd\xab\x23\x87\xcc\x41\x2c\x35\xa1\x12\x77\x7a\xc7\xbe\x5e\xc7\x89\x48\x83\xbb\xd5\x6a\x47\xb6\x61\xe4\x6a\x27\xdb\x93\x96\x4e\x22\xeb\x17\x14\x9c\x42\x46\x6f\x3c\x62\xb9\x5d\x45\x84\x78\x96\xc9\xad\x6c\x42\x8a\x82\x46\x8e\x9f\xbb\x5e\x1e\x85\x63\x93\xb8\x32\xce\xed\xe2\x1f\xe9\x2e\x12\x52\xf7\x51\x78\x98\x18\xb7\x74\x61\xa3\x81\x23\x94\xc8\x3e\x2f\xac\xab\x56\x08\xa3\x3b\x2f\x18\xad\x93\xa3\xc2\x17\x9e\xc0\x77\x8e\xe4\xb7\x94\xaf\x16\x67\x87\x21\x1f\x13\x86\x3a\xf2\x4f\x5b\xfe\xf1\x5c\xf9\xf7\x00\x3e\x21\xc9\xf3\xe0\x2f\x24\xf6\xe4\x9f\xbe\xfc\xd3\x95\x7f\xf6\xe5\x1f\x7f\xbf\xaf\x7e\xf6\xe1\x99\xfe\x8b\xf0\x82\xcd\xdf\xc4\xf3\xdb\x59\x34\x9f\xd7\xeb\xce\x92\xab\x6d\x65\x5a\x58\x23\x4e\x62\x9e\xc6\x73\x56\xaf\xeb\x8f\xd6\x4d\x98\xf0\x72\x08\x39\xff\x7f\x00\xb4\x77\xad\x21\x49\xd6\x71\x1e\x87\x53\x36\x55\xa6\x82\xe2\x2a\xe4\xb5\x98\x4f\x58\x2d\x56\x87\x9b\xda\x75\x78\xc9\x5a\xb5\x53\xf9\x29\x43\x49\x7c\x11\x5e\xcc\x6f\xe1\x9d\xec\x29\x4b\xa3\x24\xbc\x98\xb3\xbd\x88\x0b\xc6\xa7\xfa\x89\xeb\x45\x78\x5b\xbb\x0a\xbf\xc0\xf3\x47\x29\xfb\xbc\x64\x7c\xc2\xd2\x5a\x34\xab\x49\xaa\xc4\xe4\xce\x91\x3f\xa0\x5d\x03\x6b\x68\x56\x33\xe8\xa8\x37\xb3\xe5\x6e\x1f\xb1\x69\x4d\x15\x16\x51\x38\x9f\xdf\xb6\x6a\x2f\x66\xb5\xdb\x78\x59\x9b\xc6\x35\xce\xd8\xb4\x26\x62\x40\xbc\x54\x7c\xad\x0d\xca\x38\x74\xad\xc5\x7b\x3c\x7e\x12\xf3\xd9\x3c\x9a\xe4\x46\xa2\x12\xd6\xc5\xed\x75\x98\xa6\x00\x4d\x5b\x53\xb6\x9c\xcd\x8e\xa7\xbb\xee\x0a\x5b\xea\x31\x55\xc3\x70\x39\x8f\x2f\xc2\xf9\x40\xfd\x04\x55\x39\x52\x36\x9f\x0d\xe4\x9f\xca\xd4\x9b\x88\x4f\xe3\x9b\x81\xfa\x09\xee\x56\x78\x45\xee\x3c\x37\xf0\x5c\xe2\x79\x81\xe7\x11\xcf\x0f\x3c\x9f\x78\xed\xc0\x6b\x13\x3f\xf0\x89\xbf\xdf\x0f\xfc\xfd\x3e\xf1\xf7\xf7\x03\x7f\x7f\x9f\xb4\x83\x36\xe9\x04\x1d\xd2\x0d\xba\xa4\x17\xf4\x48\x3f\xe8\x93\xfd\x60\x9f\x1c\x04\x07\xab\x31\xf1\x37\x67\x31\x43\x7e\x57\x4d\xcc\x83\xae\xfa\xe9\xab\x9f\x9e\xfa\x81\x34\xdf\xf5\xd4\x4f\x4f\xfd\xb8\x2a\x4d\x4d\x55\x57\xff\xa8\x19\xeb\xb6\xd5\x4f\x47\xfd\xa8\xd9\x7e\xa0\x43\x5d\xf5\xa3\x60\xaa\x45\xe1\xf5\xd4\x52\xe8\xa9\x85\xd2\xf3\x55\x9a\xfe\x51\x69\xfb\x1a\x8a\xfe\x51\x39\xf7\xf5\x4f\x47\xfd\x28\xe4\xf7\x7b\x78\x47\xfe\xa8\x36\xec\xef\xab\x1f\xdd\x3e\x8d\xb5\xae\x4f\x15\xe8\xa9\x66\xf6\x54\x81\x9e\x2a\xd0\x53\x05\xfa\xaa\x40\x5f\x15\xe8\xab\xda\xfb\xaa\xda\xbe\xaa\xb6\xaf\xa0\xf4\x15\x94\xbe\x82\xd2\x57\x50\xfa\x0a\xca\xbe\x82\xb2\xaf\x7a\xb0\xa3\x7a\xb0\xab\x42\x5d\xd5\x75\x1d\xd5\x21\x1d\x9d\x45\xb5\xbd\xa3\xfa\xb3\xeb\xcb\x16\xf9\x5d\xd5\x83\x6d\x15\xd9\x56\xe5\xda\xba\x9c\xab\x7e\x54\xcf\x77\x54\xce\x8e\xea\xeb\x8e\xca\xd9\x55\x59\xba\x2a\x4b\x57\xa5\x75\x35\x2e\x0a\x6b\x15\xf2\x14\x4a\x9e\x8e\xec\x29\xe4\xf5\x0c\x51\xa0\x3d\x85\xa0\xd7\xd1\x91\xba\x9c\x8a\xec\xea\x2c\xaa\xcf\x54\xed\x5e\x5b\xc3\x54\x5d\xd7\x56\x63\xa4\xba\xc0\x53\x98\x79\x0a\x79\x4f\x35\xda\x6b\xab\x6e\x55\xad\xf5\x54\xfb\x3c\xd5\x5a\x4f\x21\xef\xe9\xf6\xf9\xaa\x7d\xbe\xea\x09\x55\xce\x6f\xab\xd6\xb6\x55\x7f\xb6\x55\x7f\xb6\x55\xdb\xdb\xaa\x7b\x3c\x3d\xdd\x74\xb7\xaa\x9e\x50\x23\xed\xab\x91\xf6\x55\xdb\x7d\x35\x3f\x7d\x35\x51\x7c\x35\x35\xfc\xbe\x4e\x53\xc5\x7b\x7d\x18\x23\x35\xa5\x7c\x35\x89\x7c\x3d\x93\xd5\xbc\xf6\x3d\x5d\xad\xca\xe2\x29\x60\x9e\x1a\x4d\x4f\xb7\x41\x55\xe4\xa9\x1a\x7c\x55\x83\xaf\xa0\xf8\x0a\x8a\xaf\xa0\xf8\xba\xed\xaa\xb8\xdf\x93\xa4\x4a\xef\x7f\x94\xa1\x76\x1b\x88\x46\xbb\x1b\x78\xed\x2e\xf1\xda\xbd\xc0\x6b\xf7\x88\xd7\xee\x07\x5e\xbb\x4f\xbc\xf6\x7e\xe0\xb5\xf7\x89\xd7\x3e\x08\xbc\xf6\x01\xf1\x3a\x6e\xe0\x75\x5c\xe2\x75\xbc\xc0\xeb\x78\xc4\xeb\xf8\x81\xd7\xf1\x89\xd7\x69\x07\x5e\xa7\x4d\xbc\x4e\x27\xf0\x3a\x1d\xe2\x75\xba\x81\xd7\xe9\x12\xaf\xd3\x0b\xbc\x4e\x8f\x78\x9d\x7e\xe0\x75\xfa\xc4\xeb\xec\x07\x5e\x67\x9f\x78\x9d\x83\xc0\xeb\x1c\x10\xaf\xeb\x06\x5e\xd7\x25\x5e\xd7\x0b\xbc\xae\x47\xbc\xae\x1f\x78\x5d\x9f\x78\xdd\x76\xe0\x75\xdb\xc4\xeb\x76\x02\xaf\xdb\x21\x5e\xb7\x1b\x78\xdd\x2e\xf1\xba\xbd\xc0\xeb\xf6\x88\xd7\xed\x07\x5e\xb7\x4f\xbc\xee\x7e\xe0\x75\xf7\x89\xd7\x3d\x08\xbc\xee\x01\xf1\x7a\x6e\xe0\xf5\x5c\xe2\xf5\xbc\xc0\xeb\x79\xc4\xeb\xf9\x81\xd7\xf3\x89\xd7\x6b\x07\x5e\xaf\x4d\xbc\x5e\x27\xf0\x7a\x1d\xe2\xf5\xba\x81\xd7\xeb\x12\xaf\xd7\x0b\xbc\x5e\x8f\x78\xbd\x7e\xe0\xf5\xfa\xc4\xeb\xed\x07\x5e\x6f\x9f\x78\xbd\x83\xc0\xeb\x1d\x10\xaf\xef\x06\x5e\xdf\x25\x5e\xdf\x0b\xbc\xbe\x47\xbc\xbe\x1f\x78\x7d\x9f\x78\xfd\x76\xe0\xf5\xdb\xc4\xeb\x77\x02\xaf\xdf\x21\x5e\xbf\x1b\x78\xfd\x2e\xf1\xfa\xbd\xc0\xeb\xf7\x88\xd7\xef\x07\x5e\xbf\x4f\xbc\xfe\x7e\xe0\xf5\xf7\x89\xd7\x3f\x08\xbc\xfe\x01\xf1\xf6\xdd\xc0\xdb\x77\x89\xb7\xef\x05\xde\xbe\x47\xbc\x7d\x3f\xf0\xf6\x7d\xe2\xed\xb7\x03\x6f\xbf\x4d\xbc\xfd\x4e\xe0\xed\x77\x88\xb7\xdf\x0d\xbc\xfd\x2e\xf1\xf6\x7b\x81\xb7\xdf\x23\xde\x7e\x3f\xf0\xf6\xfb\xc4\xdb\xdf\x0f\xbc\xfd\x7d\xe2\xed\x1f\x04\xde\xfe\x01\xf1\x0e\xdc\xc0\x3b\x70\x89\x77\xe0\x05\xde\x81\x47\xbc\x03\x3f\xf0\x0e\x7c\xe2\x1d\xb4\x03\xef\xa0\x4d\xbc\x83\x4e\xe0\x1d\x74\x88\x77\xd0\x0d\xbc\x83\x2e\xf1\x0e\x7a\x81\x77\xd0\x23\xde\x41\x3f\xf0\x0e\xfa\xc4\x3b\xd8\x0f\xbc\x83\x7d\xe2\x1d\x1c\x04\xde\xc1\x01\xf1\x5d\x37\xf0\x5d\x97\xf8\xae\x17\xf8\xae\x47\x7c\xd7\x0f\x7c\xd7\x27\xbe\xdb\x0e\x7c\xb7\x4d\x7c\xb7\x13\xf8\x6e\x87\xf8\x6e\x37\xf0\xdd\x2e\xf1\xdd\x5e\xe0\xbb\x3d\xe2\xbb\xfd\xc0\x77\xfb\xc4\x77\xf7\x03\xdf\xdd\x27\xbe\x7b\x10\xf8\xee\x01\xf1\x3d\x37\xf0\x3d\x97\xf8\x9e\x17\xf8\x9e\x47\x7c\xcf\x0f\x7c\xcf\x27\xbe\xd7\x0e\x7c\xb9\x29\x79\x9d\xc0\xf7\x3a\xc4\xf7\xba\x81\xef\x75\x89\xef\xf5\x02\xdf\xeb\x11\xdf\xeb\x07\xbe\xd7\x27\xbe\xb7\x1f\xf8\xde\x3e\xf1\xbd\x83\xc0\xf7\x0e\x88\xef\xbb\x81\xef\xbb\xc4\xf7\xbd\xc0\xf7\x3d\xe2\xfb\x7e\xe0\xfb\x3e\xf1\xfd\x76\xe0\xfb\x6d\xe2\xfb\x9d\xc0\xf7\x3b\xc4\xf7\xbb\x81\xef\x77\x89\xef\xf7\x02\xdf\xef\x11\xdf\xef\x07\xbe\xdf\x27\xbe\xbf\x1f\xf8\xfe\x3e\xf1\xfd\x83\xc0\xf7\x0f\x88\xdf\x76\x03\xbf\xed\x12\xbf\xed\x05\x7e\xdb\x23\x7e\xdb\x0f\xfc\xb6\x4f\xfc\x76\x3b\xf0\xdb\x6d\xe2\xb7\x3b\x81\xdf\xee\x10\xbf\xdd\x0d\xfc\x76\x97\xf8\xed\x5e\xe0\xb7\x7b\xc4\x6f\xf7\x03\xbf\xdd\x27\x7e\x7b\x3f\xf0\xdb\xfb\xc4\x6f\x1f\x04\x7e\xfb\x80\xf8\x1d\x37\xf0\x3b\x2e\xf1\x3b\x5e\xe0\x77\x3c\xe2\x77\xfc\xc0\xef\xf8\xc4\xef\xb4\x03\xbf\xd3\x26\x7e\xa7\x13\xf8\x9d\x0e\xf1\x3b\xdd\xc0\xef\x74\x89\xdf\xe9\x05\x7e\xa7\x47\xfc\x4e\x3f\xf0\x3b\x7d\xe2\x77\xf6\x03\xbf\xb3\x4f\xfc\xce\x41\xe0\x77\x0e\x88\xdf\x75\x03\xbf\xeb\x12\xbf\xeb\x05\x7e\xd7\x23\x7e\xd7\x0f\xfc\xae\x4f\xfc\x6e\x3b\xf0\xbb\x6d\xe2\x77\x3b\x81\xdf\xed\x10\xbf\xdb\x0d\xfc\x6e\x97\xf8\xdd\x5e\xe0\x77\x7b\xc4\xef\xf6\x03\xbf\xdb\x27\x7e\x77\x3f\xf0\xbb\xfb\xc4\xef\x1e\x04\x7e\xf7\x80\xf8\x3d\x37\xf0\x7b\x2e\xf1\x7b\xff\x1f\x6d\x7f\xb6\xdd\xb8\xb1\x26\x0a\xc2\xf7\x7a\x0a\x11\x67\x17\x2a\x22\xf9\x11\x02\xc0\x39\xa8\x10\x4f\x3a\xad\xf4\xce\xda\xce\xa1\x9c\x69\xbb\x76\xd1\x2c\x2d\x88\x0c\x8a\x70\x92\x00\x37\x06\x4a\xb2\xc0\x5a\x3e\xff\xdf\xa7\xc7\xb5\xfa\x01\xfa\xa6\xcf\x6d\x5f\xf5\x3b\xd4\x9b\x1c\xf7\x8b\xf4\x8a\x09\x03\x09\x32\x65\x57\xb5\xbd\x56\x0a\x0c\x04\x62\x8e\x6f\x1e\x1c\xe2\xf6\x1c\x70\x7b\x2e\x71\x7b\x2e\xb8\xbd\x36\x71\x7b\x6d\x70\x7b\x1d\xe2\xf6\x3a\xe0\xf6\xba\xc4\xed\x75\xc1\xed\xf5\x88\xdb\xeb\x81\xdb\xeb\x13\xb7\xd7\x07\xb7\x37\x20\x6e\x6f\x00\x6e\x6f\x48\xdc\xde\x10\xdc\xbe\x4d\xdc\xbe\x0d\x6e\xdf\x21\x6e\xdf\x01\xb7\xef\x12\xb7\xef\x42\xbb\x4d\xda\xed\xdd\x14\xda\xb5\x24\x04\xc7\x8a\x7b\x30\xc8\x12\x81\x1b\xac\xc5\xca\x4b\xde\x7a\x9b\x1d\x3c\xb9\xfd\x36\x71\xfb\xed\xbc\xa5\x4e\x7d\x4b\x9d\x63\x2d\xf9\xc1\x6c\x95\xce\x59\x2c\x9a\xea\x10\xb7\xdf\xc9\x9b\xea\xd6\x37\xd5\x3d\x6c\x4a\x86\xa8\xb5\x58\x90\x44\xbe\x6a\xaa\x4b\xdc\x7e\x37\x6f\xaa\x57\xdf\xd4\x21\x8c\xd5\x4d\xdd\xb1\xe4\xfd\x7d\xf0\x21\x0a\x37\x2c\x4a\x1e\xbf\x66\xf1\x2c\xf2\x37\x49\x18\xc9\xc6\x7b\xc4\xed\xf7\xf2\xc6\xfb\xf5\x8d\xf7\x8f\x36\x2e\x04\xad\xb2\xa5\x3e\x71\xfb\xfd\xbc\xa5\xc1\x61\x4b\xfb\x2c\x88\x44\x71\x6e\x7f\x70\xd8\xfa\x87\x28\x5c\xfb\x31\xb3\x16\x7e\xc0\xc9\x6b\xde\xbe\xbe\xbe\xfd\x01\x71\xfb\x83\xbc\x9f\x61\xfd\x88\x87\x87\x6d\x4a\x39\xb3\xb5\xf1\xe6\xd7\xc1\x5c\x8c\x78\x48\xdc\xfe\x30\x6f\xc9\xb1\x6b\x9b\xe2\xe4\xd1\xf1\xa6\x3e\x26\x5e\x94\xf0\xc6\x06\x36\x71\x07\x76\xd1\x58\x0d\x3f\xc6\x1b\x73\x8f\x36\x96\x44\xfe\xfa\x3b\xff\x6e\x29\x5b\x73\x89\x3b\x28\xce\xb4\x53\x4f\x17\x73\x92\xed\x44\x6b\xdf\xb2\x85\x6c\xcc\x21\xee\xc0\x29\x1a\xab\xbf\x21\x83\xbd\x1b\xe2\xb4\x5d\x6c\x2d\x90\xe1\xc5\x8f\xc1\xec\x4d\xc2\x22\x2f\x09\x23\x43\x62\x6e\x97\x38\x1c\x62\x0d\xda\xc4\x1d\x88\x26\x6b\xae\x4a\xd1\xd6\x9e\xae\xaa\x60\x7b\x8b\x48\x35\x58\x32\xef\x9f\x1e\x37\x4c\xb2\xfa\xac\x69\x70\x86\x8e\xf3\x71\x5e\x2e\x93\x68\x14\x71\x36\xd8\x6e\x07\x4f\xbc\xe7\x9a\x9b\xa5\xf2\x71\x21\x77\x88\xcf\xea\x46\xa1\xe3\xd2\xab\x28\x85\xe5\x78\x39\xc6\x3b\x5d\x16\x21\x86\x0f\x46\x95\xc7\x5a\x69\x8a\xfe\x39\x44\xe7\x5c\x8b\x53\x73\x27\xf5\x20\x9c\x76\x1b\x23\x23\x0d\xe2\x59\xb8\xe1\xcc\x68\x2c\xd2\x59\x4b\x80\x51\x18\xc7\xa8\x4c\xd2\xc2\x0d\x80\xa1\x6e\x1b\x23\x1f\x22\x78\xda\x95\xb7\xa4\xb2\x8c\x93\x68\x3a\x61\x53\xce\xf0\x89\x0d\xe1\xec\x56\x1b\xba\x6d\xd2\x15\xdb\x51\x73\x8d\x2b\x97\x2f\x1f\x9c\x63\x63\xd4\xb0\x8f\x2d\x53\x49\xa6\x99\x34\x51\x30\x96\xa9\x0c\x94\x2c\x82\x38\x58\xf4\xcd\x99\x3f\xc7\xe6\xbd\xd6\x5c\xf9\x63\xed\x42\x24\xa5\x47\x48\xda\x5b\x7a\xc1\x4c\x44\x1e\xc3\x59\x96\x0b\x22\x23\xd3\x8c\x54\xfc\xff\xbd\x5d\x08\x9a\x06\x39\xf7\x83\x59\x18\x45\x4c\xb0\xc9\xdb\x70\xe6\x1d\x3b\x1f\x35\xf0\x41\xcf\xbe\xe7\xd6\x4f\x5c\x0e\xad\xf6\x00\x94\x8f\x65\x70\x2e\x13\x1b\xec\xf7\xda\x73\x49\xcf\xe5\xbc\x6c\x0d\x3c\xa9\xdf\x05\x4e\x3c\xfb\x62\x3b\x06\x18\x42\x51\x52\x19\xda\x64\x6a\xcd\xc2\xcd\xe3\x8f\x7e\xb2\xf4\x83\x2c\x3b\xee\xf9\x88\xc1\xa3\x21\xd2\x49\x0c\x30\xc4\xd4\x47\x0c\x3c\x0c\x29\xf5\x51\xc2\x1f\x56\x34\xd7\x50\xa8\x5a\x57\xee\x38\x2f\x9a\xb8\x53\x22\x37\x00\x66\xd2\x0c\x70\xed\x07\xa8\x90\x05\xaf\xc6\x1e\xf1\xd1\x0a\x3c\x8c\x5b\x29\x78\xad\x18\xc3\x82\x3a\xc2\xff\x26\xbd\x8c\x4d\x33\xbe\x4c\x9b\x33\xd3\x44\x0b\xda\x72\x20\x6d\xd2\x59\xcb\x81\x58\xfc\xc1\xa3\x59\xab\x75\x7e\x65\x8f\x70\xca\x37\x35\x18\x07\x93\x78\x4a\x83\x49\x3a\x25\x4a\x28\xcf\x0b\x78\xe5\x05\xff\x70\x91\x4b\x84\xe5\x19\x1b\x10\xc7\x19\x80\xe3\xba\xc4\x71\x5d\x70\xdc\x36\x71\x5c\x7e\xd2\xdd\x1a\x30\xfb\xc7\xd6\xb8\xbc\xfd\x5a\x44\x97\xe4\xcb\x1a\xd0\x10\x25\xf9\xb2\x7a\x07\x8b\x28\x56\xda\xbb\x72\x4a\x4b\xe9\xe4\x4b\x19\xf0\xf5\xf7\x8e\xac\xf3\x8a\xe6\xab\x9b\x8e\x03\xe2\xa3\x14\x02\x3c\x5a\x5d\xc5\x23\x9c\x4c\xe2\x66\x73\x4a\x73\xd3\xb9\xe4\x0b\x6b\x51\x83\x24\x8a\xe9\x3b\x6a\xfa\x9c\x5f\x0b\xd5\x3a\x1c\x99\xfe\xbe\x9d\x2b\xbf\xaf\x2a\x6e\x56\x0c\x29\x5f\x13\x7e\x8e\x7c\x94\xe6\x0b\x32\xa3\x21\xf2\x60\x25\xa4\xb8\xcc\x34\x83\x06\x0d\xe4\x2a\x8e\x56\x57\xb3\x11\xf6\x17\x08\xc5\x34\x9d\xcc\x9a\xcd\x29\x6e\xd0\x18\x6b\x4f\x53\xa9\xe2\xc9\x2b\xce\x9a\x4d\x51\x97\x65\xd9\x8c\x9f\x92\x14\x9b\x66\x3a\x99\x4d\x29\x2d\x22\x36\xf1\x77\x59\xa6\xcd\xc4\x1b\xcc\x34\x5b\xce\xae\xba\x30\x0e\x71\x5c\x47\x2f\x10\x5f\x98\x1a\x84\xa7\x17\x86\x33\xe4\x7c\x5d\xba\xf9\xa9\x68\xf3\xfd\x55\x0b\xc5\xf1\xa0\xdb\x3b\x8e\x45\x54\x22\x7c\x4a\x19\xa4\xd4\xe5\x7f\x56\xb4\x4d\x85\x05\x69\x87\xff\x59\xd0\x1e\xff\xb3\xa4\x5d\x61\xdc\xb6\x80\x0d\x4d\xb2\x2c\x0f\xa2\x5f\x5a\xe1\x18\xe6\xc5\xb9\x5b\xc3\x23\x6c\xf9\x89\xc3\x70\x47\x7d\xb4\xc5\x70\x4b\x23\x14\xc3\x1c\xda\x18\x6e\xa8\x87\xee\xf2\x95\xbf\xa7\x36\x5c\xd3\x60\xbc\x41\x09\xdc\x60\x92\x8a\x07\x1b\xab\xd3\x35\xba\xb9\xba\x1f\xdd\xab\x55\x5d\x66\xd9\x3d\x5f\xd5\x3b\x6c\x9a\xe8\x91\xde\xa2\x35\xbd\x9b\xdc\x4f\xe1\x1e\xb6\x18\x18\xe6\x75\x02\x7c\x3d\xb9\x9f\xd2\xc7\x3c\x38\xe4\x23\xae\x66\x0d\x39\x6f\x13\xbd\x77\xc2\xa4\xec\xbc\xab\xed\xc8\xd6\xf2\x77\x4f\xff\xbe\x97\xbf\x5d\x72\x2d\xb3\xb7\xac\x95\x3e\xcf\x5f\xa0\x99\xde\xff\x3c\x2e\xda\x62\xdc\x72\x88\x30\x37\x9d\x91\x6b\xb9\x9b\xd5\xe3\x0d\x9c\xa9\xea\x41\xbb\x4b\xda\x5d\xe8\x0e\x48\x77\xc0\xf7\xb5\x86\xea\xc8\x0f\x7c\x47\x9f\xf7\xb6\xdc\x58\xbe\xc1\xde\xa9\x6b\x2f\xd0\x52\x0c\x29\x7e\x12\x78\x5e\xea\x1e\x7c\xc4\xe4\xe9\x5e\x71\x48\xe7\xa1\x55\xbe\xf0\x4b\x9a\x8e\x17\x2d\x87\xd8\xb0\xa1\x29\x1f\xbe\x23\x9c\xb0\x2e\x5d\xe1\x46\x3c\x1a\x09\x24\xb2\xe4\xeb\x3d\xc3\x4f\x31\x9d\x4d\x96\x53\x58\x36\xe9\x46\x26\xde\xd8\xf1\x97\x4d\xba\x81\x74\xbc\xbc\xb4\xc9\xe2\x92\x2e\x0f\x70\x8d\xf1\x1d\x9b\xa7\x33\x76\xce\x29\x93\xf5\x26\x79\x3c\xf7\x38\xd1\x70\x7e\xef\x27\xcb\xf3\x20\x3c\xf7\x03\x3f\xf1\xbd\xd5\xb9\xa0\xc0\x0d\x99\x48\x75\x94\x8e\x97\x57\xd4\x26\x8b\xab\xe5\x88\x37\x8f\xe5\x00\x4c\x13\xc5\x34\x41\x31\xc8\x51\xc0\xaa\xb0\x1a\x89\xeb\x16\xdb\xe9\x10\xa7\x53\x2c\xf3\x09\x12\xab\xe7\xca\x65\xee\xd9\xea\xfa\x08\x6a\x27\xde\xb0\x99\xcf\x29\x9d\x23\x00\x46\x26\xbb\xc9\x35\x28\x22\x2a\xdd\x21\x55\x88\x12\xca\xac\x59\x18\xc4\x49\x94\xce\x92\x30\xc2\x59\x96\x34\xa8\x24\x9d\x4c\xb3\xe1\xa3\x92\x75\xb1\x70\xc0\xc9\x63\xda\x45\x22\x8a\x9c\x8e\x8a\x9b\x50\x91\x2f\x55\x44\xbe\xcb\x23\xc6\x95\xd4\x9b\xa2\x41\x92\x94\x09\xa9\x9e\x4d\x7a\x36\xe4\x88\xfc\x04\x79\xe7\x76\x8f\x43\x07\x8d\xc2\xd8\x3d\x12\xc4\x04\x4a\x04\xc5\xe4\x72\xbe\x99\x37\xfb\x6c\x2a\x4d\x9d\xe5\x9e\x02\xdd\xdd\x3e\x3f\xca\xda\x78\x03\x62\xfa\xb4\x2b\x8d\xe1\xb5\x6a\xd2\xba\xf5\x83\x79\x99\x58\xd0\x5e\x36\x05\x4e\xf3\xf6\x0d\x3f\x1c\x8e\xa9\xf6\x0c\x16\x23\x1a\xf0\x5d\x98\x79\x09\xda\xaf\x8f\x2b\xa1\xa3\xcb\x94\x5c\x3a\xde\x9f\x99\xa0\xf6\x38\xb1\x76\x1e\xe3\x02\xd2\x45\x74\x32\x05\x19\x61\x2f\x11\x11\xf6\xa2\x89\x3f\xa5\x86\x37\x31\x9a\x7e\xd3\x98\x1a\x67\xf1\x24\x99\xe6\x53\x42\xc6\x6b\xf0\x0c\x30\x8a\x85\x3d\x7f\x8d\x8c\x66\x64\xfd\x1c\xfa\x01\x32\xc0\xc0\x4d\x03\x1b\xb9\xda\x8d\x7f\x8b\x18\x04\x78\x87\x12\xd0\x2a\x34\x88\x30\x09\xf9\x6f\x60\x78\x57\x9c\xc1\xf2\x59\x32\x4d\x94\x96\x74\xc4\xe5\x57\x90\x8a\x63\x22\xef\x47\x9f\x74\xfb\xc5\x21\xa9\xa1\x7e\x4b\x8c\x88\x04\x46\xe2\x76\x68\x2b\xab\x4f\xde\x9d\x48\x09\x6c\xbc\xd4\xeb\x69\x50\x1a\xa1\x43\x95\x6c\xbe\xde\x3b\x84\x4f\x5e\x29\x8e\xa7\xcf\x0e\x8d\x05\x8c\xef\x73\x35\x0e\x51\x97\x82\x8d\x8d\x77\xe9\x6a\x25\xa2\x59\x54\xa2\xff\xa2\x60\xef\x10\x27\xd1\x63\x6e\x34\x39\x49\xa6\xbb\x99\x48\x0b\x1f\xe0\xa7\xdd\x0e\x25\x54\x4a\x01\x38\x90\xf4\x31\x1e\x07\x24\x1c\xf3\xbb\x47\x8c\xf7\x3a\xe5\x17\xf2\x04\xbd\x80\x4d\xb3\x46\xdb\x99\x88\xf3\xc4\xd8\xb8\xb4\x04\xc4\x2b\x5f\x44\xcd\x61\xb9\x47\xc9\xf8\xa7\x5d\x6e\xb6\x76\x9a\x9c\x51\xe1\x13\x19\x56\xb1\x07\x07\xc2\xc6\x5d\x72\x09\xed\xe7\x92\xea\x03\x1b\x5b\x0b\xb1\x97\xfd\xa1\xbc\x8c\x43\x85\x57\x38\x21\x21\xd8\xe6\x01\xbf\x43\x0c\x75\x86\x9c\x48\x62\xa8\xd7\xe3\x08\x84\xa1\xde\x80\x63\x10\x86\x1c\xbb\xc3\x91\x07\x43\xed\x21\x86\x0d\x6f\xa8\x8b\xad\x85\x17\x27\x7f\x61\x8f\x30\x17\x87\xc4\xc6\xb0\xa6\xcb\xb1\x71\x13\xf3\xfd\xf1\x7f\x61\x06\x3c\x1e\xc9\xba\xb7\xe1\xa8\x8a\xf3\xb2\xaf\x0d\xce\x32\xe1\xc2\x55\x8c\x73\x88\x32\x78\x1f\x65\xd6\xcd\x62\x14\x8c\x02\x1a\x58\x81\xc0\xf2\xd6\x67\x5a\x44\xfa\x0c\xca\xc0\xe3\xe9\x8e\x25\xaf\x0a\x90\x4b\xf6\xd0\xe3\x4a\xf6\xcc\xe7\x53\x7a\x13\xe1\xa7\x18\x31\x98\x41\x02\xc6\x8d\x6f\x60\x60\xd6\x4d\x42\x13\xfe\xc7\xa7\xbe\xb0\xd9\x11\x65\x0b\x05\x7e\xf9\xf3\x2a\x7f\x9e\xac\xa7\x54\xc7\x0f\x8f\x4c\x33\x45\x11\x04\xc0\x26\xab\x29\xbf\xa0\x39\x80\x09\xd1\xac\xb8\x86\xf0\x34\x5b\x31\xaf\x34\xba\x02\xa0\x30\x3a\x97\xba\xcf\x84\x03\x38\x3e\x02\x88\xe4\x02\x44\xa3\x88\x46\x56\x80\x23\x2b\xa2\x0d\x1b\x22\x6b\x63\x9a\x28\xb2\x36\x34\xb2\x36\x56\x90\xe3\x8e\x9c\x1b\x89\x2c\x7f\x7a\x26\x46\x7d\x38\xdc\x9d\xaa\x76\xe0\xc3\x18\x94\xba\x8f\xe8\x23\x0a\x80\x89\xfd\xc9\x7d\xfa\x22\x2b\x80\x90\x77\x79\xa6\x3b\x12\x5b\x65\xf9\x53\x50\x03\x0b\x4d\x13\x85\x56\x40\x7d\x0c\xbe\x69\x22\xdf\xda\xd0\x10\x43\xc0\x07\xc2\xd7\x07\x89\x27\x5f\x94\xac\xf2\x92\x95\xa8\x33\x59\x4f\x5b\x2d\x05\xfd\x1a\x8d\x68\x07\x8b\x30\xba\xf6\x66\xcb\xca\x30\xf3\x01\x16\x69\xf6\x20\xa2\x1e\xe7\x13\xf7\x39\xc3\x7a\x76\xa6\x8d\xf9\x51\x1a\x07\x56\xa0\xd3\xc6\x8c\x04\xcd\x13\xa1\xc0\xda\x42\x60\x7d\x96\x51\x77\x47\x81\x69\x06\x56\x34\xc2\xfc\xdc\x6d\x76\xb0\xf4\x62\x52\x13\x6d\xa6\xf1\x88\x8a\x25\x63\xc2\x71\x73\x69\x9a\x51\x65\xbb\xd5\x25\xe0\x87\x93\x1c\x82\xc7\xfc\xf3\xc9\x7a\xca\x3f\x9f\xf1\xdd\x59\x90\xa3\x71\x61\xa8\x08\x0c\x5c\x9c\xac\x71\x68\x6d\x69\x40\x90\xd8\xe6\x90\x3e\xf9\xc4\xe7\xf7\x4a\x44\x8d\xff\x4c\x12\xd8\x92\x00\x36\x44\x9c\xa2\x15\x04\x7a\x15\x22\xd2\x70\x76\xe2\x54\x67\x19\x12\xc7\x24\xc4\x10\x89\x23\x15\xf0\x47\x7e\x50\x9a\x4d\x90\x17\x93\x6f\xa4\xb8\x93\xfe\x94\x86\x18\x03\xdb\xc1\x1d\x4b\xae\x83\x24\x7a\x24\x8f\x10\xb3\xe4\x63\x12\x85\xc1\xdd\xc1\x98\x57\xe2\xa1\x54\x1a\xe0\x27\xb9\xe6\x09\x9d\x17\x61\x9c\xad\x9b\xcf\x54\xc7\x06\xd2\x27\x75\x07\xb5\xb7\x43\x55\x87\x3c\x36\xec\x28\x31\xcd\x84\x6f\x53\xc2\x11\x5d\xd5\x9f\x2a\x29\xc2\xc4\xd1\x84\x26\xe3\x24\xdf\xf2\xc4\xba\x59\xe0\xf1\x0c\xd9\x60\x7c\x66\x8f\x1c\x71\xb1\x71\x62\x7d\x26\xd2\xf0\x56\xff\xde\x92\x49\xc2\x8f\x83\xb5\x9d\x62\x1d\x3c\x56\xd3\x60\x30\x43\x8e\x30\x19\x1b\x1b\x4a\xd6\x6d\xe4\x5f\x43\x23\x10\xab\xbf\x10\x14\x93\x30\x30\xe8\x10\xc7\xee\x80\xd3\xb6\x89\xd3\xb6\x81\xb3\x7a\x03\xc5\x0d\xb4\x87\xa4\x3d\x84\xce\x90\x74\x86\xd0\xeb\x91\x5e\x0f\x7a\x03\xd2\x1b\x40\xbf\x4b\xfa\x5d\xe8\x0f\x49\x7f\x08\x03\x9b\x0c\x6c\x18\x0e\xc8\x90\x13\xb4\xed\xe7\x0a\x0d\x38\x6c\xf7\x15\x88\xbe\x63\xc9\x8f\xcc\xfb\x2c\xa9\xdc\xa1\x84\xf9\x3d\xb7\x1e\xe6\x73\x9e\x83\xc3\xc8\xae\xab\x60\x3e\x07\xe9\x4b\xba\x42\x5d\x0e\xf2\x57\xa8\x87\x61\x4e\x6d\x58\xd7\x7a\x26\x58\x37\x2b\x79\xa2\xa4\xe5\xd3\x23\xde\x41\x25\x4f\x9e\xf4\x38\xa4\x93\xe9\x0e\xb6\xf5\x04\xe7\x12\x31\xcb\xab\x0d\xbb\x3b\xb1\x39\x2f\x9d\xec\xf0\xee\xac\x24\x7d\xa4\xd5\x8b\x95\x13\x8a\x5b\xe5\x0e\x26\x20\x58\x8e\x2f\x92\x89\x33\x3d\x7e\x9b\xf3\x6f\x76\xfc\x58\x93\x3a\x76\xb9\x68\x36\x18\x07\x13\x47\x47\x91\xb5\x3c\xc9\x28\x4e\x18\x24\x53\x7c\x14\xc2\x26\x54\xa6\x37\x2d\xcf\xb0\x94\x3d\x55\xce\x90\xe5\x88\xe3\x5f\x75\x30\x0c\xcf\x8a\x37\x02\xef\x27\x9c\xca\x6d\x34\xfe\x95\x13\xfc\xcf\x46\x7c\xa1\xec\x7c\x55\x8b\xf8\x56\xb5\x88\x6f\xde\x6c\x56\x10\xdd\x01\x86\x0b\xab\x18\x2e\x42\xab\x32\x86\xab\x99\x3e\x27\xa1\xbd\x22\x18\x47\xc3\x51\x99\xd9\xfc\x52\xca\x5d\x4e\xf1\x05\xe3\x35\x5a\x68\xa0\x88\x2d\xd9\x12\x62\x98\x04\xa6\x39\xcb\x23\x94\xf9\x38\xb7\x87\x0d\x26\xaa\xa8\x66\x63\xff\x60\xa7\x4b\xe1\xaa\xbd\xdf\x23\x07\xcf\xab\x13\xe0\x99\xfa\x48\x48\x3d\x0a\x93\x50\xd1\x76\x34\x5e\x0b\xba\x8d\x25\x2a\xfa\xf5\x84\xaf\xf0\x94\x06\x1c\x90\xa6\x8b\x38\x09\x23\x46\xd6\x92\x6e\x2c\x03\x08\x67\x48\x9c\x21\xb8\x6d\xe2\xb6\x15\x80\xe8\xba\xa4\xeb\x4a\x9a\x5d\x01\x88\x1c\x28\xd4\x48\xcf\x6a\x81\x42\x57\x49\xd2\x3a\x4a\xb0\x30\x54\xc0\x80\x03\x8b\x58\x02\x8b\x0a\x30\xe0\xc0\x61\xa6\x80\x05\x07\x06\x9d\xae\xa4\xff\x7a\x7d\x49\xff\x39\x76\x17\x0b\xc2\xaf\x7b\x54\xd0\x04\x01\x08\x91\x90\x5c\xa5\x3b\x1a\x4d\xd8\x14\x6e\xe9\x1d\xdc\xd0\xc7\xb1\x11\xb3\xc4\x20\x86\x37\x9f\x1b\x70\x4f\x6f\x4d\xf3\xb6\x74\x8c\xae\xe9\xd3\x0e\x1e\x6a\x22\x83\xdf\x4f\xd8\xf4\x2c\x44\xf7\xc0\xc0\x90\xa7\x40\xc0\xec\x9a\x2b\x8d\xb6\xa6\xd9\x98\x49\xa3\xee\xa4\x64\x5c\x26\x79\x0b\x9b\x30\xbc\x23\xc6\xd2\x8b\xff\x5d\xdf\xdf\xb1\xe4\xc8\xf7\xe7\xfa\xf3\xb1\xbc\x47\xe4\x68\x1b\x9e\x88\x7e\x53\xdb\x46\xfd\x37\xd2\x95\x8c\x54\xd1\xeb\xa9\x2f\x20\x50\xdf\x60\x91\x60\xa0\x86\xa3\xb9\x35\x4d\xb4\xcd\xb2\x7b\x4b\x51\x5e\xa6\xd9\x58\x94\x39\x3a\xc4\x41\xfa\x2d\xd6\xea\x5d\x84\xad\x80\x3d\x88\xac\x0b\x58\xee\xcc\x47\x01\xf4\x6f\xe1\x3d\xfd\x38\xb9\x99\xa2\xed\xf8\x69\x47\x5a\x36\x38\xb8\x41\x3f\xc2\x4b\x5a\x69\xec\xa3\xb8\x65\x22\x86\xfa\x67\xba\x44\xe5\x79\x8b\x46\x10\x07\x2f\xf0\x96\x36\xb6\xa6\x59\xf9\xb0\x20\x07\x64\x67\x09\xed\x8e\x92\x56\x6b\x84\x19\xef\x33\x29\x88\xa3\x06\x13\x5d\xb4\x6c\x0e\xa7\x3e\x67\x19\x42\xb7\xb4\x94\x62\x59\xd1\x28\x09\xdc\x72\x68\x2e\x2f\xc8\x5c\x4c\xf1\x0e\x12\xb8\xdd\x4b\x28\x16\x70\xd0\x17\xc0\x23\x44\x93\x9b\x29\x44\x18\xa2\x1d\xc6\x25\x2c\x74\x0f\xf7\x65\x71\x0f\xbd\xc5\x80\x5e\x66\xd9\x5b\xce\x8f\x3f\x20\x7d\x4a\x31\x3c\x20\x71\xdc\x30\x3c\x9a\xe6\x03\x12\x47\x07\x63\x40\x6f\xb3\xec\x3d\xe6\x25\x37\x18\xb6\xa6\x79\x6f\x09\x1e\x21\x87\x71\xea\xb7\x14\x42\xde\xd2\xb5\x55\x05\xf8\x28\x01\x06\x8f\x70\x83\xc1\x43\xe5\x0b\x14\x60\x88\xad\x77\xd7\xd7\x5f\xd3\x46\x1e\x9a\x64\x83\xf8\x7c\xe1\x7a\xc2\xa6\xf4\x16\x7c\xe4\x5b\xdf\x34\x7d\xeb\xc7\xa6\x6f\xbd\x7e\x81\x6e\x1b\xf4\x0e\xc3\x35\x86\x6d\x96\xad\xad\x9c\xb4\xe3\x9f\xc0\x23\x86\x5b\x49\xce\x74\x89\x63\x77\x15\x94\xea\xb4\x49\xa7\x0d\x9d\x2e\xe9\x74\x35\x94\x72\x48\xd7\x81\x6e\x8f\x74\x7b\x0a\x56\xf5\xfa\xa4\xd7\x2f\x43\x2c\x18\x0e\xc9\x90\x73\xc6\xed\xa3\xc2\xed\x12\x72\x53\x06\xad\xc4\x70\xad\x9e\xd5\x35\x76\x67\xfb\x19\xda\xce\x6f\x6e\x98\x69\xa2\x9b\x1b\x46\x23\xac\x78\xe2\x1a\xe9\xea\x31\x9e\x58\x00\xc4\x61\xff\x94\x1e\x51\x88\x7e\xd8\x38\xb2\x16\xa2\xc4\x47\x36\x04\x18\x13\x36\x49\xa6\x54\x28\x79\x14\x8d\xd6\x27\xc3\x3e\xef\xfd\x84\xd0\xd1\xe9\x9c\xea\x88\x73\x5b\x88\x95\x25\x7c\x39\x57\xac\x53\x60\x07\x4a\x98\xed\x90\x7d\x41\x7c\x50\xa2\xc3\xf2\x6c\x0b\x3b\x2d\xca\x3e\xa8\xcd\x29\x80\x83\xfa\x10\xe9\x2f\xda\x75\x5f\x94\xdc\xfc\xca\xdf\x00\xc7\x8e\x47\x23\x8c\x30\xe5\x63\x94\x94\x1c\x8c\x76\xb9\x28\x8a\xaf\x57\x8d\x8c\xb2\x76\xb7\x3a\x42\xe1\xb1\x97\x5b\xf7\x4e\x66\x72\x86\x70\xff\x45\xc9\x41\x0f\xbc\x5a\x72\xf5\x6a\x38\x66\xc4\xb0\x8d\x26\x2b\xcb\x11\x6a\xc4\x58\x86\xdd\x1e\x74\x5b\x76\xbf\xe5\x76\x3f\xd9\x7d\x62\xf7\x48\x7b\x68\x0d\x87\xc3\x7f\x36\x1a\x34\x94\x0b\x91\x3b\xca\xb5\xba\xcc\x69\xb7\x38\x7f\x80\xb3\xac\x51\x69\x6c\xbf\xea\x3b\xef\x1d\xaf\x36\x2e\x55\xe1\x24\x8b\x1f\xbf\xf6\x03\x3f\x61\xc8\x2f\x45\x7e\xd2\xfa\xdc\xef\xbc\xe0\x4e\x0b\xd9\xdf\x48\xcf\xb1\xf3\xc4\x5f\x33\x2d\x4b\x3f\x2b\x78\x25\x48\x28\x53\x49\x13\x5f\xa7\xab\xd5\x5f\x65\xea\xc6\x20\x2f\x7c\x5b\x49\xdc\x0c\x11\x4d\x54\x9c\x8f\xe4\x4a\x66\xc1\x6d\x96\x03\x71\x44\x4d\x64\xd8\xfc\x3f\xa3\x99\xa7\x63\xe3\xd4\x92\x94\x48\x45\xe3\x56\x8f\xb4\x3a\xb8\x69\xb4\x8c\xa6\x87\xf2\x2e\xf2\xf4\x9f\x7b\x2f\xa4\x13\x2f\x6e\x1a\x9f\xca\xa5\x7f\x96\x99\xa8\x31\xef\xb8\xdc\x8a\x4e\x47\xbd\xff\x22\x0f\x5d\x82\x9b\x86\x65\x34\x51\x70\x35\x1c\x8e\x03\xb1\xa5\x1e\x0a\x78\xe9\x3f\x1b\x3b\x12\xee\xe0\x49\x80\x28\x7e\xd6\x9e\x2d\xb8\xd6\x72\x4f\xf7\xc8\x8d\x95\x76\x18\x79\xde\x22\xca\x4c\xb3\xb0\xca\x10\xbf\x54\x20\x02\xf1\xf3\x50\x43\xf2\x26\x37\x02\x58\xfa\x41\x52\xca\x38\x83\xb4\x90\xbb\x68\x8e\x49\x73\x05\xb7\x43\x1c\xb7\x23\x49\x43\x3e\x97\x67\x1a\x2d\x94\xf2\xec\xd5\x8c\xe3\x95\x17\xfc\x7d\x72\xce\x0f\xda\xf9\x9a\x25\xcb\x70\x7e\x1e\x06\xe7\x22\x3c\xc2\xbe\x3d\x42\xbb\x46\x90\x59\xf4\xd7\x10\xf7\xb3\x46\x04\xdc\x6f\x28\x51\xab\x72\xd7\xd3\xd6\x5c\xe8\x69\x07\x86\x77\x54\x34\xd2\xdf\xed\xb0\xe5\x09\x1b\x7d\xbd\x79\x9d\x1a\x51\xe7\xbe\x36\xa7\xeb\x60\x6b\x1e\xce\x04\x9c\x81\x90\x46\x88\xf3\x0a\x11\xbf\x4a\x11\xf3\x12\x76\xbd\x62\xfc\xcd\x17\xd4\xc7\xe1\x78\xaf\x3e\xe7\x07\x9e\x04\xd0\x92\xf8\x4d\x4b\xce\x3b\x35\xec\x78\xd1\xb2\x51\x22\x09\x38\x73\x52\x32\x65\x03\x3f\xfe\xa0\x21\xd5\xfb\x05\x6c\x54\xf1\x9b\xf8\x3a\x48\xd7\x4c\xb8\x7e\x80\x8e\x54\xab\x60\x98\x16\x15\x83\x76\x10\x16\x5c\x61\x22\x74\x07\x72\x83\x3a\x27\xb4\xe8\x03\x25\x0f\x18\x74\x25\xe9\x3f\x38\x62\x60\x54\x68\x5a\x18\x87\x15\xbe\xb5\x10\xba\x41\xac\xe9\x2e\x0f\x62\xca\xab\x41\x4a\x43\x6b\x01\x2b\x6a\x8f\x72\x99\xdb\x6a\x84\x53\x25\xa9\x06\x8f\xc6\x93\x55\xb3\x39\x15\x94\xb3\x60\x8e\x3d\x5c\x31\x06\x18\x74\xc9\xa0\x0b\x83\x01\x19\x0c\x60\x30\x24\x03\x7e\xa2\x3b\x27\xb4\xdd\x9a\x77\x69\x6b\xa5\xa8\x52\x76\x73\x1e\x26\x56\x42\xec\xb4\x36\x1c\xb3\x88\x0a\x00\x4b\xce\xb1\x98\xa9\xf5\x9a\x33\x2c\x66\x6a\x7d\x03\x6b\xf1\xf7\x23\x3c\x8a\xbf\x1f\x60\x2b\xfe\x7e\x05\x77\x74\x3e\x8e\xc8\x7a\x1c\x4d\x92\x69\x96\x21\xfe\x87\x3e\xed\x30\x41\xb2\xe0\x69\x57\xa2\xfc\xe0\x96\xce\xc7\x3e\xf1\x65\x55\x5f\x55\x85\x1b\x5a\x22\xc4\xb2\xac\x4c\x96\xf1\xf7\x42\x7c\xb9\xe2\x54\xc5\x5c\x26\x84\xc2\x10\xe0\x05\x45\x68\x46\x1b\x1b\xd3\xbc\x33\xcd\xdc\x94\xe8\x6e\xb2\x9a\xe2\xf1\x1d\x09\xf0\x64\x35\x85\x25\xdd\x9a\xe6\x6c\x1c\xa3\x05\x44\x98\x3c\xd6\x6a\x26\x16\xe3\x18\xe5\x8a\x34\xbe\x1b\xb0\xc0\x64\x01\x77\xa6\xe9\xa1\x3b\x58\xc1\x02\xf8\x34\xbf\xc7\x70\x3b\x59\x4d\x1b\x74\x61\x9a\x21\xba\x85\x15\x2c\x05\x55\x7a\xa3\x0b\x11\x7f\xa2\x0b\xbc\x3b\x8b\xac\x59\x18\x31\xea\x43\x6a\xbd\xa6\x0e\xa4\xd6\x37\xd4\x85\xd4\xfa\x48\x3b\x90\x5a\x1f\xe8\x00\x52\xeb\x2b\xea\xf4\x20\xb5\x7e\xa4\x6d\xfe\xe6\x7b\xda\xe3\xaf\xbe\xa3\x8e\x3b\x28\xc9\x29\xd2\x1d\x3c\x09\x43\x3e\xad\x0b\x97\xa4\x62\x9b\x74\xdb\x39\x49\xd8\x39\xa5\x17\x17\x2a\xa8\xb5\x97\xcc\x96\xa7\xd5\xb3\xf4\xc2\xba\x38\x4b\xa2\xc7\x27\xe3\xc2\xba\x30\x26\x6c\x8a\x12\x5c\x28\x7f\x4a\x5a\xa1\x64\x12\x4d\x69\xc3\x81\xc6\x61\x45\x1f\x3f\x69\x9a\xa6\x62\xa8\xc6\xc7\x58\x43\xdf\xd5\x8f\xa6\xe8\xaa\xd1\x60\x48\x37\x9d\x14\xe1\xca\x77\x0a\xb4\x76\xbe\x44\x02\x49\x37\x8c\x42\xba\xa7\xb0\x53\x57\x5d\x06\x4e\x19\x09\x4d\x8e\x62\xe4\xf9\x52\x09\x4e\xde\xb1\x1d\xce\xca\xc7\x25\xc5\x36\xcc\x68\x23\x44\x7b\x9a\x52\x26\xd6\x2c\xa7\xd8\xd8\x03\x9b\x1d\xc6\xae\x9a\x4c\x8b\x1a\x77\x51\x98\x6e\x62\xfa\xe4\x11\xa3\x6f\xec\x80\xed\xc0\xe8\x73\x4c\x67\x18\x79\xc4\x31\x06\xc6\x9f\x2e\xbd\x2b\x83\x73\x72\x8b\xc3\xd6\x2e\xd0\x98\xe0\x0b\x41\xa4\xf0\xee\xce\x0e\x7b\xcd\xf9\x59\x45\x40\x72\x9a\xa6\x44\x43\xea\xe4\xfe\xde\xad\x06\x85\x05\xce\x72\x29\xa5\xda\x96\xcc\x34\x0d\xcf\xe0\xbf\x27\xf6\xd4\x34\x8d\x5b\xf9\xec\x4c\x77\xe8\x14\x2d\x2e\x43\x9f\xc5\x1c\xd4\x6d\x6a\x16\x2c\xa1\x4f\xb9\x0a\x36\x99\x2c\xa7\x35\xe3\xee\xef\xa0\xdf\xa0\x86\x3e\x57\x18\xe6\x74\x33\xae\x6b\xa9\xe1\x40\x40\x2f\xbc\x7c\xfd\x83\xa3\x2b\xa1\xd3\xd5\xee\xc0\x10\x33\xd6\xde\xcc\x41\x85\xfb\x7c\x12\xde\xcc\x45\x81\xb8\xc8\x07\x8d\x05\x3b\x0c\xc1\x64\x39\x45\x86\x81\xa1\x91\xec\xb4\xe1\x8d\x70\x73\xdd\x64\x59\x63\x9e\x65\x86\xda\x4b\xd5\x4f\x63\x96\x65\x95\x8e\x1b\x0b\x39\x87\x35\x3f\x3e\x93\xe5\x14\x1e\x69\x80\x3c\x58\x82\x98\xf5\xa9\x30\x21\x89\x9c\x23\xa5\xe9\x78\x63\x9a\x0d\x7f\xfc\x34\x0f\x03\x46\x1a\xb6\x44\x6f\x64\x5d\xe1\x49\xc8\xde\x5b\xc5\x7d\x04\x22\x93\x71\xfe\xd6\xd9\xed\x30\x6c\xe9\xe3\xc4\x9e\xc2\x1d\x7d\x9c\x38\xd3\xb3\x08\x69\x7b\xe7\x1c\x62\x33\xd8\x62\xf0\x91\x0c\x87\x5c\x2a\x5f\x82\x4b\x69\x32\xae\x15\x4b\xdf\x69\xb4\xa6\x84\x84\xbb\x1a\x01\x72\xb5\x12\xde\x69\xf1\xbf\x43\x1c\xdb\x81\x5c\x2b\xac\x5c\x29\xda\x03\xd2\x1e\x28\xce\x79\x0f\x04\xfe\x0e\x12\xb5\xee\xfc\xea\xfb\xa5\xc9\xc8\x84\x16\x44\x3c\xb3\xa4\xf3\xa4\x69\xa2\xa4\x49\x8d\x3b\x21\xf7\xf5\xef\x82\x30\x62\xaf\xbc\x98\xa9\x62\x29\x0e\x5e\xa7\xab\xc4\x5f\xf9\x81\x2e\x5d\x8b\xd2\x34\xf0\x67\xe1\x5c\x97\xa5\xa2\x2c\x4e\xfc\xd9\xe7\x47\x55\xf4\x68\x60\x90\x06\x29\x8a\x4c\xed\x7c\xc9\x9c\x3e\x27\xe1\xec\xaa\xad\x88\x30\x63\xab\xe8\xa7\x05\x02\xf0\xe3\x57\xc2\xa4\xe3\xe3\x26\x62\xde\x9c\x53\x4a\xb5\xd8\x40\x39\x81\xab\xa0\x40\x1c\xfd\x17\xc2\xa3\x39\xac\xe1\x91\xce\x60\x4b\x6d\xb8\xa3\x8d\xc6\x92\xe3\xc6\x25\x6c\xa0\x8d\x47\xdb\xcb\x95\x34\x80\xda\x4a\x33\x3e\xfe\x38\xa7\x77\xe3\x3b\x94\x4e\xb6\x53\xd8\x42\x80\x89\x78\x5a\xf3\x7b\xeb\xa3\x39\x36\x4d\xb4\xa6\x39\xc2\x46\x6b\x3a\x9f\xc4\x53\x3c\x6e\x34\xd6\x24\x42\x73\x8c\x61\x6d\x9a\x8b\x2b\x1b\x3f\x52\x39\xa4\x39\x84\x68\x9e\x1b\x63\x3d\xc2\xa2\xe5\xe0\x96\x23\xec\xd6\x78\x67\x8f\x57\x74\x68\xdb\x7d\x67\x38\x74\xbb\x9d\x7e\xc7\x1e\x0e\x9d\x03\xaa\x1d\x9f\x25\x93\xc7\x29\x9d\xef\x1e\x9b\xcd\xdd\xb6\xd9\xd4\xdc\xf7\x63\xc5\x24\x4a\x1d\x39\x89\x6d\xab\x76\x41\x9d\x13\xb6\xc5\xda\xae\xb0\xd7\x51\x94\x96\x92\x12\x3b\x8a\xd2\x12\xfb\x22\x90\x4b\xbb\xc3\x91\xcb\xd3\x0e\x66\xf4\x69\x37\xe2\x84\xcc\x31\x19\xf0\x02\x96\xb2\x83\x0d\xcc\xa5\x40\x98\x2e\xc7\x35\xb2\x82\x1d\x49\x39\xc4\xbd\xa3\x11\xe2\x1f\x25\x63\x97\x38\x18\x6e\xa9\x7d\x56\x6f\x7d\xbf\x3d\x65\xe6\xec\x27\x92\x92\x6e\x18\xd2\x47\x1f\x6d\x95\xf9\xce\x86\xc3\x75\xbd\x03\xa3\xcd\xd5\xed\xe8\x56\x19\x1a\x3e\xd2\x64\x7c\x87\x3c\x34\xa7\x6c\x72\x3b\xc5\x1c\x92\xcc\x27\xce\x14\x93\x3b\x24\x0a\x30\xa5\x74\x95\x65\x8f\x94\xd2\x59\x9e\x88\xb3\x30\x05\x5d\xd3\xad\x36\xd5\x18\x35\xd0\x9c\xae\x95\x8c\x94\xf3\x24\x01\x1b\xa9\x2e\x7c\xb4\x86\x3b\x98\x4b\x07\x14\x48\x8e\x34\x8a\xad\xaf\xbe\xbb\x7e\xf9\x17\xba\x82\xc0\xfa\xee\xfa\xd3\xf7\xdf\xbd\xa3\xb3\xca\xee\x76\x88\xd3\x56\xdc\xa0\xa6\xa8\x86\xa4\x3b\x84\x5e\x87\xf4\x3a\xbb\x29\x74\x6b\xd8\xa5\x8a\x97\x84\xdd\xc7\xc8\x08\x44\x98\x8d\x96\xae\xd8\x4a\xc2\x96\x62\x6a\x21\xa7\x22\x35\xeb\x21\x1d\xa6\xfb\xc4\xb1\xfb\xbc\xfd\x1a\xe6\x67\x5f\x7c\x77\xdc\x0d\xdb\x34\xe5\x5f\xeb\xad\x97\x2c\xa9\xb0\xd8\xd6\x9e\xd9\xc7\x3c\xbb\x4d\x93\xff\x5b\xfe\x40\xb8\x7a\x17\x26\x56\x25\x0d\xb0\x81\x11\xae\x13\x15\xde\x09\x51\xe1\x5d\x2e\x2a\xec\x1e\xe5\x99\x9e\x76\x56\x95\x67\xfb\x92\xb1\x5c\x94\xc3\x7f\x6d\x9b\xd3\x3d\xc1\xcf\xd4\x8b\x1e\x85\x6d\xcd\x81\x01\x5a\xde\x81\x16\x40\x3a\x10\xe0\x0a\x12\xaa\xd4\x93\x82\x49\x10\x7c\xbb\x54\x31\x57\x05\x94\xdd\x13\x44\x76\x99\x7f\x2e\x0b\xc5\x4c\x33\xca\xcb\x15\x53\xac\xb9\x61\xde\xe2\x49\x92\xb8\x21\x66\x65\x9a\xbf\x5f\x44\xc0\x50\xc7\xc6\xc8\x98\xfb\x5b\x03\x3f\x53\x58\xa0\x74\xea\x36\xe9\xd8\xa0\x05\x07\xdd\x13\x56\x90\x5a\x70\xe0\xd8\x6d\xa1\xa6\xfb\x02\x49\x18\x82\x47\x93\x32\x71\xa5\x51\xab\xd7\xa0\x34\xa8\x65\xc8\x3c\xd3\x44\x21\xf5\x4a\xa6\x78\xbc\x6a\xf1\xd3\x34\x23\x14\x62\xd3\xf4\x4d\xd3\x47\x0c\x42\x2c\x77\xce\xb1\xdb\xc4\xb1\xdb\x39\xc8\xee\xd6\xd0\x05\xa7\xc7\x1a\x15\xf6\xf9\x81\x96\x1f\xe7\x9e\x00\x52\x8c\x6c\x6b\x31\x6f\x34\x66\x08\xe7\x74\x15\x3e\xab\x0a\x99\xf9\xdb\x64\x62\x4f\x71\x89\xf2\xe2\x3f\xf7\xa4\xcb\xba\x1a\x24\x02\x66\x56\xea\xca\xb2\x3d\xe1\x72\xe5\x03\x48\x26\x6e\xed\x57\xf2\x85\xfc\xb4\x73\xfc\x53\x48\x26\xed\xe3\xdf\xcb\xb7\xbb\x3d\xa1\x74\x50\xba\xac\xa7\xad\x20\x4b\xe7\x42\x59\x0e\x1a\xbf\x18\x42\x12\x70\x20\xb9\x41\x36\x1e\xcb\x3a\x35\x64\xa2\xf1\x51\x5b\x2d\x46\x88\xe1\x31\xd3\x52\x1c\x03\x93\xdc\x22\xb1\xec\xa0\xd5\x3d\xe5\x05\x54\x31\xce\xf4\x73\x47\x37\x08\x0f\xbc\xb4\x4e\xca\xbb\x72\xe2\x85\x09\x23\x20\xf1\xad\x8c\x69\x1b\x4e\x7c\x61\x94\x80\x2b\x26\xc6\x43\xd2\xe3\x43\xeb\x9d\x90\xc7\x55\x57\x4c\x39\x99\xc6\xe2\x6f\xd5\xb0\x57\xad\x8a\x78\xa3\x16\xa5\x3c\xfd\xde\x51\x24\xa3\xaf\x6e\x11\x05\xf6\xe4\x24\x85\x53\x94\x69\xe6\xc2\x75\xf1\x03\x31\x2c\x4c\x2e\x4a\xae\x4f\xbd\x1a\x84\x70\xaa\x5d\x23\xd4\xf6\xa2\x79\x26\x70\xa9\x33\xa4\xac\x36\xce\x95\x3a\x6d\xbd\x13\xa8\x41\x83\x24\x77\x58\xb6\x4c\x7f\x86\xe0\xa3\xb0\xc7\x10\x96\xc0\x05\x4d\x9a\x50\x36\x09\x05\x4d\x9a\x10\x43\x72\x3e\x06\x15\x76\x10\xf8\xc0\x64\x35\x07\x38\xbd\x53\xb2\x98\xa3\xfe\x89\x10\x70\x2e\xaf\x24\x64\xf1\xc7\x09\x8a\x50\x20\x68\xa9\x40\xc0\x85\x04\x05\x5a\x16\xa2\x7c\x73\x42\xca\x2c\x59\x5d\x85\x42\xca\x87\x1e\x0a\xe8\xa8\x89\x2a\x0c\xde\xae\xcc\x5b\xf4\x6a\xf0\x4e\x2d\x6f\xd1\x1f\xe6\xd8\x56\x2e\xa9\x2d\x24\x26\x4f\xbb\x33\xe9\xb2\xe8\x41\xcd\x2d\xaa\x61\xc0\x85\x06\xbd\xd6\xb1\x51\x39\xa3\x96\x04\x7d\x11\xf2\xe0\x89\xd3\x7f\x44\x22\xec\x1d\x86\x90\xd7\x6b\x1a\xe7\x25\x9f\xd4\xb2\x4e\xb5\xec\x0b\xa9\xcc\xbf\x34\xce\xee\x3d\x57\x49\xd6\xb7\xeb\x6d\x3c\xba\x6d\x49\xbd\x73\x98\xc1\x89\xf7\x5e\x57\xd9\x78\xf0\x95\x98\x71\x82\xa4\xa7\x2d\xbe\xf6\x96\x61\x49\x1b\x68\x32\xb5\x3e\xb3\xc7\xd8\x34\x45\x60\x32\xc3\x0f\x54\x01\xc2\x18\x36\x47\xc2\x15\xef\x8e\x9f\x90\xb9\x36\x0a\x49\x05\x0f\x3f\x97\x92\xad\x3b\xb8\x85\x1b\xb8\x3f\x70\x67\x5c\x9a\x26\xe3\xcc\xd8\x7b\x4d\x1c\xbf\x9f\xb0\xe9\x59\xd5\xbb\x47\xda\xf2\x11\xf1\xa8\x4c\xf1\x0e\x34\x98\x65\xb7\x86\xf3\x20\xb7\xf6\x3a\xae\xba\xdc\xab\x07\xd7\xb4\xb2\x79\xf0\x40\x0b\xa3\xc1\x35\x7c\xe4\x0c\xe1\x7b\x5a\x3a\x02\xf0\x92\xbe\x9f\x2c\xa6\x59\xf6\x7e\x62\xfc\xe7\xff\x9c\x2f\xe9\x34\xcb\xd6\xa6\xf9\x7e\xb2\x9e\xc2\x67\xfa\x32\xcb\xee\xd1\x1a\xc3\x5b\xba\x1e\x3f\x8c\xef\x51\x6e\x52\x88\xc9\x67\x6d\xb0\xf9\x89\xe6\xf0\x31\x31\xcd\xf7\xda\x04\x23\xcb\x5e\x72\xbe\xe6\x13\x27\x69\xe9\x0c\x7d\x2a\xd4\x8b\x0c\x63\x4e\x64\x28\xa2\xaa\x44\x69\xdc\x08\x86\xc4\x34\xd1\x0a\xdd\xc0\xb5\xb0\x54\x8c\xb2\xac\x06\x4e\xdd\x88\x71\x7b\xe8\x06\x16\xb0\xc1\x18\x1e\x4c\xf3\xa5\x69\xea\xe9\x36\x28\x7d\x69\x05\xde\x9a\xe3\x8b\x8f\xb4\x61\x43\x5d\x06\xcc\x97\x25\xf5\xe5\x4e\x18\x98\x36\xb6\x59\xc6\x77\xb3\xf1\x91\x4f\x5f\x76\xf0\x1e\x16\xf0\x19\x83\x70\x96\xf8\x0c\xf1\xe4\x7a\x4a\x37\xb0\xe6\x9c\xd2\x1d\x7d\x92\xdd\x91\x87\xf1\x67\x72\x8f\x74\xe7\x18\xf8\x5e\x93\x47\x59\x28\xf6\x1d\x83\x5a\x12\xf2\x76\x07\x5b\xa1\xac\xb8\x95\xfe\x62\xe2\xcf\xfb\x2c\x0b\xd1\x7b\xb8\x85\x3b\xce\xc3\x29\x0f\x31\xe4\x5b\x1f\xa4\xdd\xc3\x32\xcb\x3e\x62\x48\xe0\x2e\x17\x1f\xde\xd5\x5d\x4b\x69\xec\x20\x2f\x67\xaf\x4b\x7a\x5d\x89\x08\xa1\x6f\x93\xbe\x0d\x83\x1e\x19\xf4\x72\x21\x4e\xaf\x86\x58\xab\xca\xb1\x4b\x17\xcc\xa7\x0d\x47\xc8\xab\x25\x28\x9c\xf4\xa7\x93\x68\x8a\xf0\x59\xa8\x60\x62\x79\x6d\x7d\xda\xb0\x77\xa0\xc2\x3f\x44\xe1\x1a\x85\x50\x31\xb0\xe4\xc0\xd3\xdd\x95\xc0\xeb\xee\x84\x1b\x79\x23\x31\xcd\x86\xbf\x6f\x1e\xb7\x3f\x18\x88\x69\x28\x07\x14\x8b\xd3\x73\xb8\xd5\x52\xfe\x16\x48\x97\x6e\x5e\xb7\xe6\x34\xc4\x3b\x60\x28\x2c\x0f\xac\xe2\x26\x9b\x4b\xd7\x7b\xcf\x76\xc5\xce\x7b\x97\x32\xc1\x04\xa4\x14\xb0\xc1\xb4\x54\xbd\x77\x52\x61\xf9\xa4\x6a\xf5\x4f\xb2\xc9\x0d\x47\xd5\x3a\x4a\x87\x08\xfa\x83\x3d\x6c\xd6\x4e\x09\xde\x35\xa2\x2c\x8b\x90\x63\xe3\x2b\xd7\xb5\xdd\xae\xd5\xe9\x75\xfb\xc3\xce\xc0\xee\xf5\x9d\x81\x7a\x73\x59\xf7\xa6\xe5\xb2\x96\xd3\x6f\xd0\x08\xc9\x27\x5c\x67\x12\x66\x8b\x24\x04\x4d\x4e\x3d\x12\x76\xd5\x72\x58\xab\x67\x9a\xec\x92\xff\x1d\xb3\x26\x7b\xc1\x2e\x5c\xa2\x47\x85\x18\x6e\x39\x3b\x12\xa9\x59\x9c\xd0\x10\xf6\x3b\x39\x35\xb5\x09\xef\x21\xa4\x3e\x72\xa1\xd5\x95\x79\x46\xf8\xa3\xdb\x96\x5e\xd9\x2e\x38\x6e\x1f\xbf\x40\x6e\x4b\x79\x67\xbb\xd0\x72\xaa\xae\xa6\x92\x26\x13\xe9\x06\x6a\xdc\xb8\x38\x89\x90\x67\x6a\x41\x8c\xe3\xa1\xa8\x24\xbb\xf7\x2f\xd3\xf1\xea\x05\xf2\x2f\xd2\x0b\xaf\xe9\x5c\x84\x2d\xe7\x22\xc4\x2f\xd2\x17\x1e\x41\x01\x27\x65\x90\xd3\xf4\x78\x89\x8f\x5b\x28\x69\xf9\x18\x5f\xc5\x59\x16\x34\x68\xc0\xbf\x72\x2e\x6c\x4c\x56\x2f\xc4\xa1\xea\x77\x48\xbf\xc3\x67\x5d\x43\x6b\xed\x8d\x75\x15\xde\x39\x9b\x3a\xc2\x54\x2e\xb4\x58\xe4\x81\x5a\xe4\xc1\x98\xb5\x4a\x8b\xbc\x0a\xef\x90\x23\xb3\x09\x88\x25\x3e\x19\x4f\x42\x7c\x11\xfb\x77\x41\x5d\x5f\xc5\xc6\x66\x19\x6b\x50\xc6\xb7\xf7\xd2\x16\x0e\x9a\xba\xf1\x53\xa6\x45\xee\x80\x53\x89\x2c\xf1\x8c\x3d\x9f\x3b\x25\x46\x95\x0e\x40\x31\xb5\x21\xd5\x98\xc1\x8f\xaf\x1f\x12\x16\xc4\xfe\xed\x8a\x95\x46\x54\x52\x50\xc1\xea\xb8\x66\x3f\x45\x39\x82\x61\x5b\x16\x24\xaa\xad\x30\x88\xd1\xd3\x4e\x44\x8b\x9e\x55\x70\xb9\x87\x18\x44\xa0\xae\xeb\x93\x4f\x8c\xf7\x46\xf3\xbc\xd9\x8c\xe1\x5e\x28\xd7\xf1\x0e\x16\x65\xcb\xaf\xbf\x5c\xff\x95\x44\xf0\xee\xfa\xfa\x6b\xd2\x70\x40\xf9\x19\x91\x43\x20\xe6\x17\x26\xbe\x46\xfc\xb8\xbe\x0d\x57\x65\x62\x9c\x11\xb4\xef\x28\x76\xce\xc6\x22\xdb\xcb\x07\x03\x37\x65\x54\xcf\x50\x58\x44\xcb\xe6\xd2\x52\x73\xaf\x0d\x99\x71\x57\xff\xbe\x36\xce\x66\x9c\x41\xc9\x05\x2d\xd1\xd4\xf2\x85\x43\xc4\x8f\xcc\xfb\x5c\x33\xb6\x23\x0d\x37\xec\x4a\xbb\x0d\xe7\xb0\xd9\xfb\x1d\x84\xc1\xeb\x88\xb1\x5f\x58\x9d\xb2\x61\x65\x9a\x0b\x61\xdc\x67\x9a\xa9\xa0\xf6\x55\x57\xa6\xc9\x5b\x02\xa6\x3c\x91\x07\xc4\x71\x73\x35\x43\xc9\x80\x58\x08\x84\xf8\x81\x3a\x21\x19\xd1\x1a\x77\xc7\xe9\x0b\xc9\x88\x70\xfe\x79\x9b\x26\x22\x5e\xc5\xfb\xdb\x98\x45\x5b\xc6\xc1\x9c\xf5\x23\xbb\xfd\x8b\x9f\xec\xbf\x01\x8f\x46\x9c\xf4\x98\xb1\x38\x86\x98\x46\x3a\x30\x0e\xa4\xd4\x50\xc5\x06\x95\x5c\x0e\xf2\x4e\x69\x32\xa4\xfb\xd6\x81\x6f\x27\xf8\x32\x78\x03\x67\x59\xa9\x67\xcd\xc3\xb5\xe7\x07\xd8\x34\x23\x8b\x3d\xf8\x09\xc2\x23\x36\xe2\xe8\x92\x59\x8b\x00\x18\x65\x02\x75\x09\xc4\xe6\xe7\x9a\xd8\x50\x63\x4c\x36\x0e\x10\x26\xb9\x7f\x47\xb8\xdb\xe5\xcf\x42\xf2\xc5\x82\x84\x45\x48\x9a\xce\xa6\xb8\x82\x90\x3d\xd1\xf0\x27\x7f\xf6\x19\xad\xf0\x2e\xf7\x3e\x6f\x84\x7c\x65\x02\x6f\xeb\xdf\x71\x2c\xcf\x1b\xc9\x7f\x58\x45\x1a\x6e\x4e\xe7\xc4\xa6\x19\x5b\x11\x8b\xc3\xd5\x96\x69\x27\xb5\xbc\x40\x31\x71\xf8\xac\xd2\xe9\xcc\x4a\x96\x2c\xe0\x1d\xaa\x48\xd3\x15\x12\x41\xd2\x5d\x11\xe8\xf1\x88\x36\x17\x9c\x4c\x5b\x52\x2d\xc3\x53\xf6\x2d\x9f\xd8\x43\xf2\x2e\x9c\x33\x64\x18\xf8\x8c\x53\x8e\x21\x5a\x61\x2b\x94\x5b\x88\x96\xf0\x34\x5b\x7a\x91\x37\x4b\x58\xf4\xb5\x97\x78\xa4\x61\xef\x30\x54\x3a\x5b\x5a\x73\x2f\xf1\xe8\x82\x36\x16\x87\x84\x74\xee\x3a\xf6\xb4\x08\x48\x04\x82\x17\x52\x2e\x3e\x67\xc2\x41\x47\xd2\x13\x3e\x06\x96\x65\x88\x51\x1f\x02\xce\x50\x24\xd4\x57\x61\x11\xfa\xc4\x71\xfa\x8a\x2d\xd5\xb2\xc6\xfe\xef\xf0\x3d\x2e\xd2\x80\xf9\x25\xec\x73\x26\x6c\xfa\x37\xf2\x38\x0a\x3b\xe2\x7d\xd7\x08\x7f\x51\x30\xcf\x49\x29\xb0\x4b\x70\x68\x3f\xf5\x95\x37\x3f\x57\x27\xfb\xbc\x24\x16\xe4\x8c\x3a\x65\x10\xd0\x68\xa7\x1c\x9d\xd4\x86\xca\x18\x14\xaa\x84\x43\x4f\xca\x99\xe3\x82\x4a\xb3\x16\x75\x12\x1a\x3e\x48\x5f\x89\x46\xb4\xdd\x64\xff\xb9\x8a\xb5\x1a\xdb\x1f\x15\x4f\x40\xf1\x84\x5d\xe1\x04\xa4\x80\xb9\x17\x73\xfc\x54\xa6\x65\xd2\x2c\x3b\x40\x01\x52\xc7\xf8\xb4\x83\x44\xa8\x9b\xe9\x47\x01\x78\x85\x19\xa1\xe1\xdd\xce\xe6\x6c\x71\xb7\xf4\x7f\xfe\xbc\x5a\x07\xe1\xe6\x6f\x51\x9c\x14\x2a\xc8\x49\x30\xa5\x7d\x88\x0a\xb9\x97\x36\x38\xaf\x58\x81\x8b\x98\xe8\x6c\x87\xa1\xdf\xa0\x29\x7a\xda\x01\xc3\x93\x80\x73\x52\x72\x90\x82\xf7\x14\xe5\x09\xc6\xca\x87\xda\xc0\x0d\xbe\xda\x7b\x1a\xdc\xdc\x53\x90\x7a\xd2\x6c\xe9\x20\xfe\xc9\x8a\x3a\x30\xa3\xbe\xb5\x80\x05\x0d\xad\xc5\x28\xbd\x5a\x8d\x72\x7b\xa7\x25\x6c\x68\x5c\xb8\x8d\x4b\x9b\x26\x98\xd3\xd9\x38\x42\x1b\xac\xbd\xcb\x67\x68\x83\x31\xe1\x25\xb0\xa6\x5a\xb7\x07\x8f\xd4\x1e\xad\xaf\x1e\x47\x78\x21\x6f\xe4\x86\xdf\xbf\xc9\xa3\xb4\x8a\x42\xc1\x64\x39\xa5\x9b\xc9\xb2\x08\x87\x1c\xec\x48\x2a\xa0\xb6\x0c\x65\xa0\xa0\xf6\x80\x74\x07\x50\x67\x2d\xd5\x3f\x21\x19\xd4\xe6\x8b\x03\x47\x19\x88\x38\x6a\xcb\xed\x1e\x46\xc6\x9b\xeb\x9b\x0f\xdf\xbd\xff\xf4\xde\xe0\xdb\x5f\xda\xd4\xdd\xa1\x0b\x7d\x02\x01\x55\x52\x78\x7f\x11\x79\x6b\x66\xf0\x2d\x0e\xd5\x14\xa5\x97\xae\x15\x27\x8f\x2b\x66\xcd\xfd\x78\xb3\xf2\x1e\xa9\x11\x84\x01\x33\x80\xa1\x6e\x07\x5b\xde\x66\xc3\x82\xf9\xab\xa5\xbf\x9a\xa3\x00\x43\x60\xc5\xd1\x8c\x1a\x3f\x7b\x5b\x4f\xc6\x72\x23\x06\xa0\x44\xba\xe9\x27\x2c\x48\x7e\x94\x3a\x21\x0d\xa5\xb0\x15\x6e\x58\x80\x30\x24\xd6\x7d\xe4\x27\x0c\x19\x97\xf2\xb3\xab\x1c\x8e\xbd\x56\xe7\xf6\xf2\xa7\x0b\xf5\x4a\x44\x17\x9e\xad\x42\x91\x19\x3e\xa5\x89\xf5\x7a\x14\xb5\x5a\x23\xac\xac\xe9\x4b\xfe\xf1\x13\xce\xab\xe4\x46\x2d\x29\x07\xf0\xfb\x52\x5e\x05\x27\x6b\x23\x17\x55\x7d\x04\x28\x1b\xa3\xb8\x22\xfe\x11\x16\x74\xfc\xe6\xc6\x50\x7e\x21\x92\x2d\x88\x48\xde\x0c\x93\x80\xa6\xa8\x12\xd2\x21\x20\x7e\x2e\x95\x76\xec\x1e\x71\xec\x9e\xd2\xf1\x29\x9d\x86\x43\x3a\x0e\x74\x3b\xa4\xdb\x81\x81\x43\x06\x1c\x24\x0e\x4e\x08\x62\xf5\x49\xe8\x76\xb5\x56\xbd\xc3\x8f\x42\xad\xbe\xe5\x2c\xb0\x16\x4a\x05\x55\xfb\xfe\x40\xe1\xa4\x0d\xd6\x13\x1a\x2a\xaf\x53\x0e\xcc\xc0\xc7\x25\xf9\x9f\xa7\x2a\x2b\x9c\x1b\xe3\xa7\x9d\xbf\x90\xbe\x0f\x7e\x70\x1e\x64\x99\xf0\x02\xe2\x8f\x87\xc0\xf5\xe5\x8c\x93\x09\x61\x24\xf5\xb9\x71\xba\xe1\x5b\xc3\xe6\x45\xd8\x2a\x29\x13\x10\x5f\x9b\x26\x92\x8a\x2f\xa9\x57\xd5\x5a\x94\xb2\xd1\xac\x72\xb8\xec\x76\x49\xb7\xcb\x97\xed\x84\x6c\x59\xab\xe7\x1c\x25\x83\x1d\x0c\x0e\xd5\x74\x75\x6b\xe4\xb3\x78\x9f\x0c\xe4\xac\x4d\xe1\xaf\xec\xc9\xe0\x38\x31\xf5\x34\x98\x48\xa9\x3d\x8a\xaf\xd2\x11\x96\xfa\xbd\x80\x7a\x93\xb4\xd9\x9c\x42\x32\x09\xa6\x55\x23\xdc\xf2\x24\xa4\x4a\x4f\x40\x04\x3e\x95\x53\xa6\x9f\xfb\xb2\x4f\x57\x03\x03\x7e\x14\x62\xc5\x21\xa4\xea\x8c\xac\xe8\x17\x62\x2f\x96\x0e\xc9\xea\x90\xe2\x65\x34\x94\x07\xc2\x53\x07\x22\x2d\x9f\x05\xa5\x1d\x2d\x02\x31\x70\xf2\x47\x94\xe1\xdc\xfc\xb9\x11\x59\x8b\x42\x93\x0a\x7c\x4f\x95\xf9\xb3\x0e\x8e\x24\x77\x54\xed\xa5\x20\x6a\xc5\x8e\x4a\xc0\x98\x4b\x4c\x07\x27\x24\xec\x79\x4c\xa9\x41\x87\xf3\x44\x61\x39\x14\x03\x78\xf4\x40\xa6\x5f\x55\x59\x9b\x66\xed\x12\xbd\xf3\xd6\x2c\x1e\x1f\x7f\x85\xe4\xd7\x98\x4c\xa6\x67\x5f\x40\xf7\x9e\x69\x1a\x13\x39\x88\x73\x09\x12\xa7\x06\xa5\xb9\x18\x7c\x5c\x6f\x64\x28\x29\x84\x3d\x23\xc3\x73\x4f\x99\xe8\xe3\xdd\x0e\x31\x4c\x7c\x19\xd0\xa5\xbc\xa2\x83\x0e\x19\x70\x82\x62\x70\x42\xe0\x3f\xe8\x2b\xb1\xb2\x93\x23\x3d\x43\x9e\x5f\x03\x8c\x1c\xb6\x71\x22\xd2\x5a\xd4\x9f\x20\xb1\x06\xb5\x6c\x6f\x84\x98\x70\x21\x81\x27\x09\xdc\x06\x7d\x32\x10\x3b\x58\xc3\xed\x1e\x6d\x5e\x12\x20\xb1\xe4\x93\x07\xa7\xd8\x1a\x77\x2f\xbc\xd2\x01\x4e\xf4\x0e\x04\xa7\x87\x68\xe1\x8e\x25\x25\x03\xee\xda\x69\x31\x19\x82\x29\x12\x3a\xdd\x31\x9b\x84\xd3\x5a\x85\x50\x59\x99\x2c\x05\xdd\x79\x28\x9a\xca\xbb\x71\xe5\x57\x31\x36\x52\xf9\x44\x0e\x6f\xec\x89\x68\x29\x15\x1c\xa2\xa8\x0a\x71\x61\xf8\x12\x9d\x90\x50\x16\x4b\xa4\xc8\x07\xd7\xc5\xa8\x71\x84\x84\x38\x1d\x61\x4c\xc6\xf1\xe3\xe0\xc5\x86\x15\x9d\xa8\xb8\x1e\x32\x96\x4e\xd0\xa0\x9e\x69\x46\x28\x06\xce\xb7\xad\xa4\x99\x78\x20\x81\xe5\x48\x2b\xaa\x05\x60\xe4\x55\x68\x22\xc0\x22\x27\x9d\xfe\x35\x44\x2b\x08\x70\x96\xe5\xdf\xe4\x70\x72\x6f\xce\xf2\x80\x8b\xb0\xc7\xc5\xcc\x4f\x28\x7a\x4b\xc7\xfc\x70\xcf\x39\xd1\xf9\xfb\x0e\x70\x0d\x85\xc6\x0f\xf0\xd3\xae\x56\x6f\x2c\xcf\xee\xf0\x04\x32\xef\xb4\xab\x46\xf0\x9d\x13\x21\x9c\x24\xd1\x8b\x7c\x15\xee\x56\x18\xae\x4f\x58\x4e\x42\x4f\xd8\x54\x2a\xc0\x3c\x91\x1a\x87\xa3\xed\x08\x45\xd6\xc7\x66\x64\xbd\x7e\x51\x31\x52\x0d\xa4\x9f\xa6\x0e\x8c\x03\x9e\x98\xa9\xb4\xe4\x2e\x39\x00\xf2\xa1\x9f\x42\xa8\x83\xbd\x33\x35\x18\x62\x6b\xf1\xdc\x30\x7e\x25\x3a\x5e\x88\x23\x05\x06\x8d\x90\x10\x40\x96\x08\x79\x1b\x66\x74\x32\x95\x14\xbc\x82\x96\x1e\x04\x85\x2b\xc2\x4c\x9e\x17\x36\x9e\x04\xe0\x4d\x82\xe9\x94\x78\x65\x24\x3b\xdb\x55\xc0\x62\x85\xda\x1e\x9e\xc2\xb0\x9d\x2a\x83\xa5\x83\x2c\x74\x1d\x6c\x7d\xc7\x16\x2b\x36\x2b\x9b\x95\x78\xa6\xe9\x59\xe1\x7d\xf0\x97\x83\xe3\xa4\x5c\x2f\xac\x05\x0a\x85\xb2\x53\xfa\x5f\x68\x2a\x73\x9c\x68\xc8\xcb\x2b\x63\x52\x58\x59\x2a\x53\x7a\x01\xc7\x25\xab\xc0\x07\x7c\xda\x99\xc2\x2a\x52\xc1\x29\x29\x4f\x17\x8b\xd0\xbb\xa5\x91\x3a\x17\x11\xe2\x6f\x7a\xb8\x69\xb4\x6c\xce\x5f\xb5\x9c\x0b\x7b\x7c\x38\x64\x5f\x99\xd9\xf2\x9b\xde\xe6\xe3\x2e\xc5\x9b\x95\xf6\x27\xa6\x69\xb4\x38\xd0\x2b\xb2\xf8\x8f\x5b\x36\x09\xa4\x64\xda\x71\xba\xc4\x71\xba\xe0\x38\x3d\xe2\x38\xbd\x9c\xd5\x1f\x7e\xc1\x50\x49\x4c\xe1\x4d\xb0\x37\x01\x15\x23\xb2\xc7\xf7\xe0\xe2\x5f\x26\xad\xe6\x74\x6c\x4f\x1e\xfe\x69\x7a\x51\x9a\xd9\xa0\x41\x69\x84\xc2\xa6\x61\x0f\x0c\x9c\x65\xae\x9b\xff\x7e\x70\x7a\xc6\x3e\x0f\xa9\xc3\x06\x94\x27\x59\xe8\xda\x03\x48\xae\xae\xae\xec\x2c\x43\x9e\x95\xb0\x98\x5f\xa5\x31\x9f\x88\x8d\xf1\x17\xa6\xf7\x07\x1c\x09\x9e\x18\x69\x38\xb0\x25\x02\x9f\xef\xa1\xfa\x27\x69\x21\xcd\x0f\x86\x92\x17\x0f\x4f\x45\xf7\x1d\x56\xc5\xc4\xfd\xa3\x3e\xb0\x05\x9d\xef\x8b\xe8\x74\x15\xfb\x27\x61\x1d\xa2\xb5\xbe\x4a\x83\x14\x72\x42\x56\xaf\x10\xb2\x45\x3a\x2f\x29\xde\xe2\x17\x37\xd0\xa2\x97\xe2\xfc\xaa\xa8\x06\x7d\xd2\xe7\x60\x73\xf8\x6c\x4b\xa7\x62\xe6\x39\x10\x25\x0d\xe4\x98\x0c\x83\x4c\xdf\x96\xea\x32\x97\x97\x71\x1e\x52\xfd\xee\xf0\xdf\x4a\x71\x94\xaf\xd6\x09\xc4\x30\x3c\x61\xf0\x50\x00\x27\x9f\x23\xb6\x04\x0b\x7c\x00\xc9\xc4\x9f\x42\x50\xa5\xe0\xb5\x7e\x70\x78\x82\x77\xd7\x72\x57\xed\xdc\xa1\xe5\xf7\x52\xc0\x1f\x47\x33\x43\x51\xed\x9c\xba\xa6\xc8\x30\x9a\x31\xd6\xd2\x14\x4d\xc4\x1a\xf8\x4c\xc6\xd4\xf6\x83\x78\xc3\x66\xc9\xc7\x30\x8d\x66\xac\x0e\xc6\xc6\x9a\xa8\xdc\x01\x3a\x1e\x5b\x52\xc7\x10\xa9\x21\x60\x82\xb3\x95\x69\xa2\x10\x05\x60\x04\x42\x3e\x90\x65\x7e\xfe\x83\x53\xf6\x82\x84\x97\xd6\x71\x48\x57\xf5\x54\x2d\x4f\xbc\x1c\x1b\x46\x93\xff\x25\xa9\x14\xe5\xa8\x7b\x96\x60\xcc\xbf\x16\x51\x34\x24\x6b\x47\x62\xf1\xa0\x7f\xf9\x6a\xe9\x08\x52\xbc\x3d\x2f\x07\x5d\x8a\xf1\x0e\x17\x9e\x50\xa5\x90\x4c\xf9\x22\x1d\x5a\x78\xd4\x45\x7a\x5b\xfa\xb1\x0c\xc4\x32\x11\x89\x56\x2b\x5a\xed\x92\x90\x5d\x22\xc4\xae\x4d\xba\xb6\x76\x6d\x92\xbc\x89\x8e\x6c\x6d\x3f\x37\x52\x9b\x2b\x50\xe5\xbe\x83\x82\xf4\x92\x39\x8d\xed\x55\xa5\xfa\x00\x0f\xda\x82\x91\x06\x05\x7b\x25\xaa\x2a\x6e\x27\xb7\xb5\x0d\x71\x91\x3b\xbb\x12\xd3\x93\x0f\xe8\x9c\xf7\xa0\x5d\x45\xe5\xa2\xb1\xf9\x79\x1c\xf2\x12\x3f\xb8\x3b\x0f\x93\x25\x8b\x64\xa6\x28\x2f\x50\xe4\xe8\x79\x18\x09\x21\x49\xe1\xe5\x1a\x0a\x19\x80\xb2\x44\x6a\xd0\x72\xc8\xf2\xda\x5e\xff\x93\xe8\x55\x84\xdc\x13\x0e\xaa\x7e\x30\x0b\xd7\x1b\x2f\xf1\x6f\x57\xec\x3c\x62\x33\xe6\x6f\x59\x54\x72\xa2\xad\x9a\xe2\xba\x03\xe2\x0e\xc4\x16\x3c\x2b\x7c\x92\x88\xb4\xc5\x50\x47\xc4\xaa\xac\xdd\x06\x88\xe9\xbe\x5f\x89\x76\x7b\x82\x94\x7a\xb0\xa2\x28\xa2\x17\xde\x05\xf8\xf4\xe2\xf6\xc5\xc5\x1d\x78\x5a\x26\x6f\x78\x9c\xc1\x90\xbf\x7c\xf9\x4b\x44\x0c\xb7\x56\x5e\x9c\xbc\x09\xe6\xec\x21\xcb\x78\x81\x5f\x14\x60\x98\x15\xee\x05\x17\x08\x8f\xc7\x17\x62\x10\xc8\x30\xf0\xc4\x99\x8e\xd0\x2a\xcb\x66\x22\xf2\x63\x6d\x58\x45\x3e\x1d\x99\x7e\x3b\x27\x73\x84\xd3\x21\x5f\x67\x39\x39\x64\xfc\x8b\xd1\x4c\xad\x58\xc0\x88\xa6\xf1\x27\x34\x6e\xfc\xf4\x53\x8c\x0d\x50\x24\x54\xca\xaf\xa1\xf0\x19\xa1\x69\x79\x58\x91\x8e\xc2\x99\x02\x13\x15\x22\x11\x7e\x32\xaf\x41\x53\xe5\x6e\x32\x8e\x2c\x9f\x17\x34\xa3\x89\x3d\xd5\x31\xd8\x13\x0c\x33\xf1\x49\x94\xc7\x6c\x33\x4d\x75\xbb\x22\x61\x2c\xb6\x1f\x06\xcc\xa7\xce\xc8\xbf\xdc\x97\xdf\xb6\x5c\x11\x7d\x33\x17\xa1\x15\xb2\x5a\x7f\x6a\x9a\x48\x44\xe5\x54\x4a\x94\x9d\x08\xdc\xb1\xe7\x92\xd8\xe9\x93\x4e\x5f\x1c\x8e\x93\x96\x7f\xb9\xc6\x74\x5f\x14\x98\x73\x7b\x94\x26\x63\x61\x44\x99\x65\xce\x05\xa3\xd4\xb9\x48\x08\x6b\x50\x66\x9a\x49\x83\x26\x3a\xa8\xbb\xfd\x0c\xc3\x3f\x29\x74\x3a\x40\xc1\x82\x91\x6a\x14\x11\x62\x1b\x94\x26\x87\x71\xfe\x9b\x06\x39\x9f\x09\xa7\xee\x98\x25\xe7\x9e\xc8\x2c\x27\x8f\x68\xc3\xa8\x08\x38\x9f\x62\x96\x28\x9b\x53\x2b\xde\x63\x67\x91\x71\x73\x23\xbe\xbb\xb9\x31\xfc\xe0\x69\x57\x10\x44\x2a\x02\x3e\xa7\x48\x90\xf2\x16\xd9\x73\x37\x65\x68\x20\xd2\x2f\xec\x33\xd1\x50\x6a\x53\x2a\x14\x5d\x8c\x51\x02\x93\x29\xa7\x18\x65\x84\xd5\x9c\x8f\x15\x16\x2e\x25\x67\x4c\x61\x5c\xb2\xcf\x16\x94\xd7\x3f\x94\xe2\xa2\x60\xcc\xac\xbc\x1b\x9a\x90\x48\x49\x91\x76\x3b\xf4\xb4\x83\x86\xa3\xbd\xdc\x30\xcc\x96\x6c\xf6\x99\x84\x25\xb9\x9a\xf4\x93\x91\xfa\x51\x97\x0c\x5c\xb1\x5d\xcf\x0d\x25\xa2\xb1\xf6\x40\x85\x13\x6e\x6b\x25\xcb\xf3\xc3\x0a\x8b\xe0\x48\x67\xa1\x69\x26\xa6\x29\x92\x53\x9a\xa6\x6f\x2d\x50\x02\x1e\x3c\x55\xc9\x19\x1b\xea\xed\xe0\x85\xd9\xdd\xae\x62\xd3\xa9\xc4\x64\x92\x41\x50\x5a\x5f\xc7\x3e\x61\x47\x50\xc4\x09\xed\xba\x65\xfb\xd3\x4a\xec\xd7\x13\xb4\x10\x13\x01\x8e\x19\x0d\xc6\x8c\x94\x6d\xe1\x42\xe1\x88\xcf\x20\x3c\x9c\x8c\xa6\xc3\x2a\x03\x97\xd8\xb3\x18\xf2\x29\x52\x56\x78\xb2\x28\x4b\x30\x5f\x91\x4a\x5f\x08\xa9\x2a\x58\x61\x14\x89\xd4\xbb\xb9\x40\x4c\xfa\xb6\x80\x42\xe9\xa2\xdb\x13\x62\x92\x76\x3b\x8f\x39\x00\x21\xf5\x27\xc6\xcd\xcd\x2c\x8c\x58\xeb\xe7\xf8\x26\x5e\x7a\x11\x9b\xdf\xdc\x18\xd2\x2d\xbc\xf6\x0d\x7d\xda\xe1\xd1\x11\x9a\xab\x38\xd6\x72\x9c\xfc\x4f\x81\x04\x92\x71\x22\xd2\x17\x62\x64\xe8\x7c\x8f\x06\xbf\x46\x92\xbb\xcd\x43\xe6\x44\x3a\x57\x37\xac\xc3\x39\x23\xc2\x36\x74\x6c\x6c\xd2\x88\x19\xc4\x90\x90\xd9\x80\x59\xb8\x79\x8c\xfc\xbb\x65\x42\x8c\x7f\xfb\xbf\xce\x5d\xdb\x19\x9e\x7f\xcd\x02\x3f\x3e\xff\x90\xc6\xcb\xcf\x5e\xc4\xb6\xe7\xe8\x97\x55\xe8\x47\xe1\xec\xb3\x15\xa5\xd8\x90\x5e\x16\x92\xd8\x11\xa7\x4a\xd8\xbf\x89\xb5\x3a\x41\x3f\xe7\xf1\x34\x3a\xcf\x8f\xb6\x5d\x08\x91\x3c\x41\x20\xd4\xb9\x5d\x14\x60\x3f\xcb\x64\x8c\x0b\x14\x08\xc1\x80\xb0\x77\x4e\x88\x8f\x82\xca\xa9\x92\xf1\x8f\xb5\xfd\xb0\x63\xd7\xd0\xe1\xc7\x62\xcf\x7c\xc1\xff\xa7\xd1\x10\x9e\x1c\x65\x6b\xbc\xb1\xf6\x45\x48\x57\x2b\xa8\xe8\xd9\x9c\xc2\x4f\x21\x5d\xad\xb0\x3c\xf9\x5a\x8c\xe2\xd4\xa5\xf3\x29\x44\xd7\x4a\x33\xd1\xfe\x3d\x49\x10\x72\xe7\x95\x9c\x72\x41\x9c\x97\xc3\x22\x27\x42\x20\x5c\xc4\xb5\x4a\x4f\x6b\xc3\x2e\xed\x2c\x4b\xaf\xe8\x6a\xcc\xc6\x86\xa1\xa0\x26\x41\x21\x8d\x05\x0b\xff\x2a\x9c\xb3\x97\x09\x27\x0d\x2e\xbb\x5d\x77\xd8\xcb\xb2\xf0\xaa\xdb\x6b\x3b\xc3\x2c\x4b\x9b\x8e\x74\x68\x43\xde\x5e\xe5\xa6\xc3\xab\xf7\xda\xae\x9d\x65\xde\x55\xb7\xdf\xee\xb4\xc7\x6c\x1c\x6b\x99\x40\x8a\x49\x48\xf8\x6f\x29\xb0\x4e\x21\x6d\xba\x98\x78\x2d\xf1\x45\x13\x85\x2d\xd1\xd3\xe5\xa5\x63\xe3\x66\xaf\xdb\x6d\xf7\x94\xb8\xc6\x26\x8e\x6b\x4b\x8f\x5a\xb1\x7a\xa7\x5c\x06\xda\xa7\x17\xaf\xa4\xd6\x4a\x0e\x53\xa8\x28\xdf\x8d\xff\x64\x34\x83\xa6\x71\x3e\x0f\x59\xcc\xd1\xac\x37\x9b\xb1\x4d\x72\x1e\xb1\x3b\xf6\x50\x4a\xa8\x92\x2f\xb3\x02\x2e\xd2\xe3\xb7\xd7\x26\x3d\x99\x64\xe9\x84\x3c\x49\x8b\xf9\x3a\x4a\x9e\xd4\x16\x81\x9a\x2f\x8c\x8b\x3b\xa8\xcb\x46\x23\x6d\x2c\x54\x7f\x52\x72\x14\x53\xe3\xd2\x68\x6a\x87\x00\xc3\x50\xec\x57\xdc\xa4\xc6\x39\x1f\xfd\xdf\x53\xe3\xef\x9b\xea\x8b\x08\xe7\x2e\xfb\x1e\x18\xe6\xdf\xd2\x30\x19\x19\xb8\xf9\xf7\xc6\xdf\x63\x88\x9b\xc6\x95\x88\x67\x7e\x79\x61\x34\x13\xfe\xe3\x98\x55\xb7\x66\x41\x9e\x76\x67\x32\xd9\x36\x8a\xa5\x44\xf1\x83\x90\x28\xfa\x87\x6e\xef\xd2\x33\x9e\x77\x93\x3b\xd2\x73\xd8\x66\x25\xe1\xb7\xe1\x3d\x8b\x5e\x79\x31\x43\x38\xcb\x12\xc5\xdb\xf2\x8a\x9a\x52\x6c\xef\x30\x68\x47\x1a\x08\x4a\xcb\x5b\x95\x47\x3a\x75\xf9\xa2\x8a\x8b\xa4\xa9\x2d\x0d\x93\x4e\x1d\x8a\x3c\x8b\x48\x75\x9d\x2b\xd2\xc7\xc2\xdb\x6a\x6c\x9c\x1b\x44\x55\x0c\x38\xfd\x1e\xa9\x60\xd7\xb3\x4b\x9a\x66\x99\x61\x50\xba\xd2\x42\x93\xf8\x4c\x9a\xe7\xcc\x5a\x29\x2c\xa9\xe2\x5c\x56\x20\x2c\x05\x67\xcc\x5f\xa1\xc5\x45\x9e\xba\x21\x5f\xa9\xa5\x5e\x89\x85\x69\xa2\x25\x5d\xaa\x2b\x63\xc3\x02\x63\xf0\xc6\xcb\x66\x4c\xe2\xe6\x52\x1a\xd1\x74\x88\xc3\x41\x9e\xf2\x1b\x2d\xae\xc9\x73\x29\x9b\x67\x40\x1c\xb9\xa1\x05\x60\x11\x11\xab\x20\xa0\x86\x21\x62\xf0\xc8\x30\xac\x21\x87\x28\x21\xa7\x8b\xed\x9a\x60\x56\xaf\xc2\x34\x48\x14\xe1\x7a\xcb\xce\x03\x76\x27\x1c\x53\x0d\xa5\x0e\x08\xaf\xec\x11\x0a\xaf\xae\xae\xa8\x83\xa5\xa7\x79\x82\xb1\x63\x86\x9c\x95\xe1\xcf\xd5\xa4\x3b\x07\x20\xe1\x04\xbd\xd3\x29\x40\x42\x25\x96\x86\x90\x20\xc6\xd4\x98\x88\x2c\xdd\x53\x03\x52\x5a\x62\x97\xe2\x66\xdc\x34\x5e\x18\x1c\x72\xaa\x52\x59\xf2\x27\xa3\x6a\xf5\x58\xf4\xe5\xd3\xa7\x1d\xc4\x34\x3c\x34\xa4\x6c\x34\x3c\x7e\x13\x70\x96\x19\xbf\xfd\xfa\xbf\xfd\xdb\x7f\x35\x1a\x54\x3d\x88\xe2\x9d\xb0\xb2\xe5\x77\x2a\x1e\x27\x68\x81\x09\xaf\x7d\xc6\xaf\xb3\x3f\x09\xa6\x34\x2d\x5f\xb3\xb8\xb8\x16\xbe\xb0\xa7\x9c\x09\x91\x68\x3d\x6d\xc1\x68\x19\x46\x81\xc3\xe9\x4e\xc4\x68\xce\xca\xa2\x14\x0c\x03\x63\x70\x0f\x5e\xac\xe4\x8b\x4a\xdc\x34\xe1\x9c\xac\x24\x9c\xf5\x97\xb1\x86\x82\x2b\x79\x0a\xff\x94\xfc\x14\xfc\xb4\xfd\x69\xf1\x53\x74\xfe\x6f\xff\xed\xbf\xff\x1f\xbf\xfe\xf7\xff\xf6\xbf\xff\xf6\xeb\xaf\xbf\xfd\xfa\x5f\x7e\xfb\xf5\xff\xf7\xdb\xaf\xff\xff\xdf\x7e\xfd\x1f\x7e\xfb\xf5\xbf\xfe\xf6\xeb\xff\xf8\xdb\xaf\xff\xd3\x6f\xbf\xfe\xcf\xbf\xfd\xfa\xbf\xfc\xf6\xeb\xff\xfa\xdb\xaf\xff\xf7\x6f\xff\xe5\xff\xfc\x7f\x7e\xfd\xf5\xa7\xd4\xb5\xdd\x81\xf8\x77\xf8\x53\xba\x60\x8b\x85\xa1\xf8\xad\xba\x84\x62\x39\x97\x5f\x09\x2f\xd0\xed\x2b\x2d\x78\x47\x7a\xc6\x74\x6c\x15\x0a\xd9\xc1\x62\x21\xb5\x2d\xe3\x92\xce\x38\xf7\xf2\x66\xbd\x66\x73\xdf\x4b\x18\x6c\xe8\x4c\x46\x68\x2c\x8a\xe6\x74\x66\xbd\x65\x71\xec\xdd\xb1\x57\x4b\x2f\x08\xd8\x0a\xd6\x74\x66\x7d\xed\xc7\x1b\xce\xd1\xc0\x23\xb5\x61\xcb\x0f\xc4\xdd\x61\xe0\x86\xa6\xe0\xd5\xfd\x05\xda\xee\x39\x20\xf3\x5d\xd2\xf1\x8d\xf9\x11\x50\x42\x2f\xfe\x0c\x09\xe2\x50\xf0\xb6\x72\x2b\x75\x40\x0a\x61\xa2\x87\x77\x67\x4b\xd3\xdc\x64\x19\x5a\x1e\x49\x18\x35\x99\x42\x40\x9d\xd1\x41\x28\xf5\x60\x84\x75\x08\xa7\x9c\xb5\x0e\x9a\xcd\x42\x6d\xb2\x9d\x34\x9b\x8f\x15\x9b\xff\xb8\x4e\xfe\xc4\xc6\xac\xf0\xd5\x66\x18\x12\xbc\x83\x08\x3d\x62\x78\xdc\x95\x7d\x88\x18\x7e\x2a\x4d\x6c\x07\x07\xc6\xa2\x0b\x3c\x8e\xaa\x53\x28\x4c\x30\x3d\x74\x07\x0c\x1c\x8c\x77\x64\x6d\x9a\x6b\x2b\x08\xef\xf7\x2a\x8b\xb2\x72\xbd\xf9\x18\x85\x14\xf9\x42\x1e\x32\xc7\x16\x3f\x8d\x2e\xf8\xe2\xaf\x63\x85\xc1\x5a\xee\x22\xbd\x15\x91\xe6\x43\x6b\x13\xc6\x89\xda\x59\x08\x79\x0b\x64\x66\x79\xf3\xf9\xf5\x96\x05\xc9\xb7\x7e\x9c\xb0\x80\x45\xb5\x6e\xc0\xa5\x0f\x4d\xb3\x31\xb3\xfc\x35\xef\xe2\xa3\xb0\xaa\x88\xc7\xa8\x3a\xca\x59\xb9\x1f\xc4\x9a\x86\x01\x1c\xda\xec\xe0\xb0\x33\x64\xa8\x21\x1a\x70\xcb\x19\x5c\x4c\x22\x6a\x84\x41\xc4\xbc\xf9\x63\x9c\x78\x09\x9b\x2d\x39\x98\x35\xfc\xe0\x7c\x85\x0c\x69\xc5\x61\x54\x4d\x08\xd2\x8a\x99\x56\xa9\x16\xb6\x0e\x1b\x2a\xef\x73\x6a\x45\x6c\x1d\x6e\x99\xfc\x50\xc6\x1b\xb9\xcb\x05\xca\xd5\x28\x29\xb1\x0c\xd4\x18\xa6\x49\xbe\xfa\x20\x44\x32\x7b\x12\x89\x25\xc8\x0c\x09\x9b\xdc\x0d\x54\x71\xe6\xd2\xfe\x49\x89\x56\x85\xfd\x93\x48\x63\x22\x2e\xf9\x29\xce\x43\xa2\x2f\x99\x12\xce\x7b\x80\x30\xcf\x0e\xf7\x05\x82\x1e\x49\x1b\x2e\x7c\x69\x8f\x7d\xc4\x9a\x22\x37\x55\x98\xcb\x14\x15\x8e\x11\xbd\x9f\x32\xc4\xd3\xc8\xf3\x44\xce\xb6\xdc\xda\xb4\xac\x4b\xb1\xcf\xaa\x81\xd8\x14\x01\x91\x94\xac\x50\xcb\xe8\xf3\xc7\x28\x0c\xee\xce\xe5\x8d\x2d\x11\xa1\x15\x74\x58\xa4\x15\x73\xea\x12\xfc\x95\xdc\x59\x38\xdd\xf1\x7c\xd7\xda\x73\x3f\x7e\xe7\xbd\x53\x2e\x29\x36\x41\xec\xca\x1e\xfb\x24\xc2\x28\x77\x8a\x70\xea\x92\xdd\xe5\x92\x93\xc1\x33\x19\x9a\x68\x9f\x98\xd6\x69\x9e\x9c\xd3\xf9\xe3\x4a\xfb\x7f\x64\xd3\x4b\x31\x41\xf9\x66\x8b\x35\x3f\x08\xc2\x42\xec\xbd\x7d\x3f\x99\x9c\xed\x4b\x93\x51\xce\xde\x51\x65\x46\xa2\xd5\x13\x4a\xcf\x63\x69\x1f\xb5\xbb\x41\x54\xb8\x18\x9c\x33\xa9\x8c\x03\x5f\x1c\x9b\x3a\x90\x24\xf2\xab\xe4\xb1\x3d\x4c\xb3\x11\x71\x30\x98\xfb\xda\xe6\x26\x59\xf5\xfa\x04\xf1\xb5\x8a\x45\xf8\x85\x8f\x1b\xff\xbe\xee\x8f\xc5\xac\x0c\x83\x2d\x8b\x12\x95\xca\xf2\x3c\x09\xcf\x37\x91\xbf\xf6\x39\xd5\x98\x67\x16\x2b\x39\x76\x3b\x75\xc9\xc0\x2a\x04\xaf\xbf\x40\x42\x6e\x57\xf2\x89\xb2\xcb\x12\x9e\x82\x36\xec\xb4\x75\x28\x1c\x45\x33\x38\x6e\x4f\x12\x0d\x6d\xe5\x4d\xeb\xa8\x9c\x39\xc3\xbe\x0c\x99\xde\x6d\xcb\x90\xe9\xc3\x81\x8c\x98\x2e\x4e\xe5\x5a\xb3\x21\x8f\x82\xde\x1c\x62\xd8\xea\x34\x8f\x77\xda\x3e\xef\x56\x09\xe2\x6e\x94\x62\xe8\x5e\xc9\x89\xaf\xb5\x09\xd3\x83\x0a\xd1\xf3\x51\xb9\x39\xbf\x57\xbe\xbc\x2f\x73\xf3\xb6\xcf\x3a\x56\xcf\x5b\x25\x1a\x83\x4f\x3a\x46\xdc\x2b\x95\xf2\xe1\x3b\x69\xe4\x03\x1f\x84\x34\x6d\x80\xe1\x9d\x90\xd5\x74\x31\xfc\xac\x7c\x86\xdf\xa8\xb8\xef\x5f\xeb\x44\x40\xdf\xf2\x4f\x1c\x0c\xaf\xf9\x5f\x1b\xc3\x2f\x4a\xf8\xf9\x67\x2a\x04\xc0\xf0\x15\xfd\xc5\x5a\xc0\xf7\xf4\xcf\xd6\x02\xfe\x46\x7d\xab\x80\x56\xf0\x23\xf5\xad\x7c\x3b\xe1\x07\xea\x5b\xdf\xfb\x41\x32\x10\x32\x5f\xf8\xeb\x7e\xec\x02\xf8\x86\xa6\x32\x26\xc1\x57\xe9\x62\xc1\x22\xf8\x0b\x4d\xad\xaf\xbd\xc4\xfb\xc1\x67\xf7\xf0\x27\xfa\x0a\xd9\x18\xfe\x91\xbe\x42\x2e\x86\x7f\xa2\xaf\x50\x1b\xc3\x3f\xd3\x57\xa8\x83\xe1\x1f\xe8\x2b\xd4\xc5\xc0\x18\x7d\x85\x7a\x18\x12\x46\xbf\x43\x0d\x1b\x43\x20\x1e\x1c\x0c\x11\xa3\xef\x54\x1e\x68\xf0\xf9\xf3\x67\xf6\x18\x43\xc8\x9f\x94\x43\x29\x78\x8c\xfe\xb5\x50\x69\xbc\x5f\x40\xcc\x0b\x22\x91\xdf\x0e\xd2\xe2\x59\xe4\x3f\x86\x15\x2f\xf8\x39\xf4\x03\x98\xf1\xa7\x38\x8c\x12\x58\x88\x27\x91\xef\x6c\xc9\x1f\x73\x43\xc3\x8d\xfc\x55\x89\xf2\x39\x67\xf4\x53\xc5\x39\x74\x2d\x0a\xaa\x89\xb7\x1e\x19\x7d\x8b\x0c\xbe\x36\xf3\x9b\x8a\xcf\x01\x6c\xc5\x9b\x39\x5b\xec\x95\xdf\x31\x1a\x5b\xaf\xde\xbf\xfb\xf8\xe9\x3b\xb8\xe5\xcf\x9f\xfe\xfa\xe1\xfa\x6b\xb8\xe1\x8f\x3f\xbc\xb9\xfe\x11\xee\xf9\x1a\x39\x50\xcb\x27\xbc\x64\xe8\x03\x62\xc0\x26\x5b\x36\x15\x64\x1b\x86\x6b\x56\xc7\xc8\x9c\x3b\x9c\xf9\x65\xf7\xe7\x3f\x08\x2f\x64\xbe\xa9\x4e\x4f\xec\x1c\x9a\x38\x53\x6c\xdd\x8a\xfd\xc3\x13\x7b\xba\xc3\xf0\xc0\x68\xa3\xf1\x83\x69\x36\x1a\x3f\x94\xb4\x68\x31\x4b\x4c\xb3\x6a\x7e\x24\xda\x73\x64\x0e\x05\x21\xf5\x84\x8f\xac\x56\xf4\x30\x57\x8c\x66\xc0\x19\xcd\xe0\xef\xb4\x6e\xe4\x6f\x1a\x3b\x86\x8b\x45\xcc\x92\x0a\x76\x84\xf7\x6c\x1f\x15\xdf\x0b\x77\xaa\x5b\x26\x13\xf8\xe6\xc0\x54\xb6\xf5\x63\x35\xbb\xb3\xd8\x02\x99\xdc\xb0\xc1\xa9\xb3\x97\xfb\x03\x13\xa9\xe3\x64\x8b\x8f\xaa\x45\xac\x5b\x32\xde\x24\xb5\x2d\x95\xdd\x48\xca\x83\x15\x7e\x2a\x9c\x68\xfe\xbc\xdf\x8b\xaa\xf1\x76\x7f\x9f\xe0\xed\x7e\xcd\xc2\x1b\xc2\x86\x88\x6a\x1b\x3b\xf0\xe9\x4b\x26\x3c\x5f\x46\x11\x27\xf7\x05\x5f\x99\x08\x22\x3f\xd7\xa8\xee\xe0\x13\x3b\xe0\x6b\xbf\x12\x0f\x47\x82\xf2\xc8\xcc\x19\xf3\x49\x30\x15\xbe\x7d\xaf\xd8\x51\xf5\xa4\x94\x4b\x5e\x1f\xf1\xcf\x98\xd1\xf4\x48\x3a\xa7\x45\x21\x12\x9f\xc1\x92\x7e\x46\xb1\xdc\x7f\xa1\x1b\x5b\x9a\x66\xe3\x01\x2d\x55\xc8\x2f\x8f\x2e\x25\x66\x89\x31\x88\xcc\x7d\x09\xb5\x47\x0d\x11\x97\xa7\x12\xa2\x2b\x69\x36\x71\x24\xb9\x9d\x50\x19\x92\x9f\xc5\x34\x12\x29\x2a\x17\xa6\x99\x5e\xb9\xa6\x89\x66\x74\x85\x66\x50\x4e\x89\x0b\xae\xf0\x5b\xb2\x21\xa0\x6b\x14\xe7\xc1\xdd\xc4\xba\x8a\xf8\x01\x01\x1e\x05\x57\x89\x68\x5e\x44\x89\x5d\x8c\x67\x28\x9e\x24\x53\x48\x30\xe1\x7f\x4b\xeb\xfc\x5d\x85\xc4\x2e\x12\x1e\xd8\x90\x1c\x2e\x4e\x90\xf7\x90\xe0\x51\x72\xc5\x46\x58\x48\xdf\x8a\xb1\xb1\xd2\x26\x06\x3b\xf8\xa0\x6e\x5d\xe5\x8a\x6d\x58\x11\x3a\xe0\x07\x91\xdb\x08\xc3\x3b\x56\xe3\xc4\xbd\xd1\x71\x73\x3e\xb0\xf1\x42\x7d\xf4\x9e\x29\x79\x0f\xd1\x4f\xe5\x20\x9d\xf0\x33\xa3\x4f\x45\x06\x68\x52\x7b\x70\x5f\x57\x5b\x02\x7e\xa8\x9e\x97\xeb\x19\xef\x80\x6d\x59\xf4\x58\xe7\x22\xf9\xcf\xe5\x06\x9f\x97\x20\x0c\xef\x60\xe1\xaf\x56\x75\xad\x7d\xab\x66\x5e\x3b\xc9\x85\xbf\x4a\x58\x54\xf7\xd9\x67\xb5\x3b\xff\xf8\x07\x06\x23\x1a\x0e\xe6\x75\xcd\xfe\xc3\x1f\x9c\x5b\x30\x17\x68\xac\xae\x49\xc6\xfe\x58\x9b\x35\x79\xda\xfe\xf4\x87\x5a\xf2\x25\x82\xad\x1b\x5b\xf0\xc7\xc6\xe6\x07\xb3\x55\x3a\x67\x75\xe9\x9e\xce\x93\x3f\xd6\x24\xc7\xed\xb5\xfe\xb8\xec\xd4\xf9\x28\xd1\x0f\x75\x1f\x7b\x27\x3f\x5e\x7b\x9b\xba\x8f\xee\xff\xd8\x04\x24\xb5\x52\xd7\x60\x7c\x72\x14\x25\x2a\xa7\xee\xe3\xf4\x0b\x1f\x6f\x59\x14\xb3\xda\xac\x87\x90\x50\xfd\x4d\x01\xd4\x0a\xce\x13\x25\x17\x2e\x07\xd9\xf6\x28\xba\x0c\x46\x58\xa6\x36\x98\x44\x53\x90\x7f\x9b\xcd\xa9\x2c\x69\xb5\x12\x55\x96\x94\xf3\x8e\x2f\xfd\x78\x07\x71\xb8\xae\x9d\xf1\x3f\xfd\xa1\x15\xe4\x44\x5d\x5d\x6b\x33\xb6\x0f\xc6\x78\xe5\xf4\x56\x20\xf5\xda\x74\x62\x79\xcd\x28\x0f\x56\x0c\x3e\xdd\x0a\x4c\x5c\x42\xfb\xe8\x03\x0a\x20\x10\x58\x1d\xa3\x40\x51\x51\x10\x58\xb7\x8f\x09\x7b\x2f\x68\x9a\xa6\xff\x22\xb0\xbe\xfa\xeb\xa7\xeb\x8f\x37\x1f\xae\xbf\xbb\xb9\xfe\xf6\xfa\xed\xf5\xbb\x4f\xb0\x2e\xe5\xbf\x4f\xc6\x11\xd9\xa2\x04\x22\x8c\x5b\xbe\x60\x39\xdf\x1c\x21\x23\x34\xc8\xda\x07\xf0\x20\xfc\x74\x76\xf0\x75\x15\x91\xeb\xd7\x4a\x5e\xf1\x91\xa1\xf2\xb2\x81\x83\x21\x90\x09\xfb\x74\x12\x5b\x89\xe8\x7d\xba\x46\x51\x8e\x28\x43\x19\xe1\xd3\x6f\x26\x57\xc1\x3e\xd9\x56\x08\x35\xa4\x26\xe0\xd2\x1f\x61\xb9\xd1\xcd\x70\x4a\xa3\x49\xd8\x6c\x4e\x77\xf0\x2d\xa3\x4f\x3a\x08\xcc\x21\xe2\x0a\xf7\x91\xd5\x4e\x06\x91\x39\xac\xe9\x1f\xd6\x54\x51\x68\x0e\xeb\x46\x07\x75\x77\xf0\xfa\xc8\xaa\x4a\x22\x90\x4d\x6e\xd9\xd4\x34\x75\x9c\x82\xdc\xe4\x2e\x31\x4d\x99\x65\xc6\x34\x95\x4c\xbe\x99\x60\x4a\x73\x43\xc8\x1d\xfc\x72\xa4\xdd\xd7\x9c\x70\x4b\xe8\x9d\x74\xb7\xc2\xe3\x05\x72\xa5\xcf\x14\xf9\x5e\xca\xaa\xe0\xcf\x87\x74\x9b\xd2\x3b\xa0\xbd\x8f\x4d\xf3\x1e\x05\x9c\xf8\x45\x01\x28\xcf\x3a\x8c\xb3\x4c\xfc\x14\xb9\x8a\xd4\x73\x2c\x9f\x85\xd7\x66\x6e\xc8\xa1\xde\x69\x1b\x5b\x83\x73\xf4\x81\xa5\x7f\xaa\xb7\x85\x9d\xae\x7a\x5f\x14\x8c\xbf\xca\xad\x39\xcb\x7e\x7c\x22\xd7\xf1\x1d\xcb\x32\xf4\x67\x6b\x41\x7f\x61\xf0\x8b\xb5\xa0\x7f\x66\x18\x3c\xe4\x59\x1f\x9b\x9e\xf5\xfa\x45\xe3\x8e\x15\xde\x09\x4f\xc7\xfc\xd6\xc8\x2f\x0c\xf6\xdc\x19\xff\xcc\x44\x4c\xae\xd2\xc6\x2e\xd5\x8e\x0a\x3e\xc3\x34\xd1\x92\xd1\x4d\x1d\x21\xb4\x62\x15\x33\x50\x71\xf6\xbf\x62\x74\x83\x9e\x38\xc5\x83\xcf\x36\xe8\x2b\x06\xdf\x32\x0c\x4b\xfe\x30\xe7\xcf\x8a\xcf\xc4\x20\xde\x3d\x09\x86\x90\xbc\x61\x22\xd7\xe0\xd7\x0c\x66\x75\x19\xfc\xf0\xd3\x2e\xcf\xfb\x40\x96\xfb\x29\x21\xc8\x3b\x3e\xfe\x4f\x8c\xb7\x67\x48\xa8\x60\x80\x71\x6b\x14\x65\x39\x80\x30\xc0\x08\xab\xe5\xdf\x6a\xe7\xad\x55\x51\x9e\x3b\x74\x31\x03\xc3\x57\xbc\x68\xcd\x4e\x51\xf7\xfc\x30\xef\x4e\xc4\x43\x83\x34\xcf\x3d\xd8\x44\x28\xa5\x8d\x46\x8a\xc7\xc6\xab\x95\xb7\xde\xb0\xb9\x41\x0c\x03\x37\x55\x60\x2b\x58\x50\x71\xc2\x9a\x0c\x36\x54\x9c\xaf\x26\x83\x39\xf5\x27\xab\x29\x6c\xe9\x3c\xcb\x84\xaa\x64\x6e\x9a\xef\xd1\x1c\xc3\x2d\x6d\xcc\xb3\xac\x11\x5b\x2f\xbf\xfa\x41\xe7\x89\x9b\x9b\xe6\xbc\x24\x33\xf8\x5c\x1e\x8a\xe2\x54\x82\x63\x73\xa9\x56\x55\xc2\x1f\xeb\x66\x9e\xdb\xf8\x5b\xdb\xc9\x62\x8a\x82\x17\x49\x33\xb2\x42\xb8\x66\x78\xa7\xa9\xfa\xfd\x5c\x91\xb5\x6d\x16\x4a\x7a\xd1\xaa\x0c\x59\x81\x94\xac\x55\x44\xc9\x41\x91\x90\x33\xdb\x24\xba\x72\xbb\xdd\xb1\xdb\xed\x12\xb7\xdb\x35\x23\x0c\xbe\xb5\x9d\x6c\x64\xdf\xbe\x15\x42\x54\xee\x5d\x60\x98\xb2\xe9\xbb\xbd\xc3\xbb\xb3\xdb\x31\x9a\xd3\x00\x55\x07\x00\x3e\x7e\x9a\x21\x06\x73\x58\x81\x71\x33\x57\x89\x82\x04\xe3\x05\x29\x2c\xa8\x0d\x1b\x09\x82\x39\x04\x50\x7c\x6b\x50\x36\xc8\xfb\x26\xcb\x8c\x92\x10\xc6\xa0\x14\xa5\xf4\x86\x57\xce\x32\xe3\xa3\x30\x6a\xaa\xbe\x4e\x73\x09\x9e\xe4\xa5\x83\xf1\x5b\x86\xe6\xfc\x7e\xbf\x52\x97\x87\xff\x38\x0b\x69\x00\x1b\x8e\x35\x22\x48\xe4\xa0\xb6\x54\xa2\x36\x79\x42\xcf\xca\xd2\x71\x5f\x0a\xcb\x0f\x59\xfb\x02\x47\xf8\x0b\x84\x3c\xba\x6d\x6d\xf0\xa5\x7d\xb4\xd6\x4e\x87\xe9\x40\x1e\x5d\x23\x1f\xbf\x48\x70\x73\x73\xb5\x3d\xde\x6a\x4c\xbd\x8b\x44\x7e\x15\xd3\x47\x14\x70\x8c\xc5\xb9\xa5\x6f\x90\x47\xe3\x17\x2a\x21\xf1\x12\x31\xb1\xb6\xf0\x74\x4b\x42\x08\xc9\x06\x56\xc4\x03\x46\x62\xd8\x12\x5e\xf9\x2f\x28\xc4\x3b\x3c\x5a\x5c\xc6\x23\xfc\x19\x31\x58\x34\x9b\x9c\xd3\x7a\xa0\xa5\x83\x4b\x3f\xa2\xaf\x04\xd8\x78\x80\x72\xfa\x18\x03\xe6\x18\x93\x0a\xa8\x9a\x0b\xb7\xac\x1a\x61\xc9\x1c\xb5\xe4\x9b\x37\x07\x79\xf5\xe6\x20\x2b\xc8\xbc\xd6\xf2\xd9\xb1\xba\xfa\x91\x1f\xa7\x86\x8d\xb3\xec\xc8\x01\x12\x47\x26\xb7\x22\x96\xa7\x09\x03\x3f\x31\xe3\x2f\x9d\x95\xf0\xe4\x59\x09\xc7\x39\x23\xef\x8f\xf9\x58\xb6\x28\x00\x75\x26\xc0\xd7\x36\x9b\x0d\x4a\xa3\xfd\xb7\x98\xa8\x02\x4c\x4e\x1d\x33\x55\x8b\xef\x1c\x5f\xf2\x3f\xa1\xbb\x06\xa5\x87\xbe\x01\xe3\x97\x68\x9b\xfb\xb7\xbe\x44\x77\x18\x13\x5e\x52\x49\x48\x2b\x7a\x99\x67\xd9\x12\xcd\x81\xc1\x76\xc2\xa6\x22\xb7\x43\x69\x0b\x1f\x20\xca\x32\xf4\x50\xf1\x92\x99\x63\x79\xb8\xdf\xd2\x87\xc9\x9c\x4d\xe1\x13\x6d\x34\xde\x9a\x26\x2a\x02\x08\xbe\x15\x01\xf5\xb4\x15\x9b\xfc\x85\xe1\x15\xcd\x31\xc7\x19\xef\xf1\x91\x09\xaf\x6a\x7e\x3e\x6e\x19\x5f\x7d\xfe\x74\x53\x14\x6e\x19\xcc\x31\xa0\x74\xac\x36\x17\x4f\xd6\x6c\x4a\xe9\x8a\xac\xc5\xb8\x1f\x70\x96\x7d\x85\x1e\x4e\xc0\xf5\x15\x07\xe8\xd7\x93\xd5\x94\xce\x05\x8a\xfd\xa6\xe9\x59\x3f\x0a\x34\x8b\xe6\x0d\xba\x15\xf9\x01\x05\xea\x85\x15\x3c\x1d\x90\x9c\x24\xd9\x95\x31\x73\x35\xd9\x85\x15\x2e\xf4\x8e\x08\x8f\xc2\x15\x3c\x2d\xa2\x70\x4d\x5e\x31\x08\x17\xe4\x3b\x8e\xcc\x8c\x83\x16\x0d\x3e\x6a\xbe\xda\x0f\x75\x2f\xf9\xf9\xe0\xdd\x7d\x80\x15\xc7\xbb\xf0\x35\x5a\xa9\x02\xd1\xff\x03\xe3\x9d\x48\x0c\xbb\x2b\xbf\x68\x7c\x82\x95\xc0\xcf\x51\x96\x3d\xe4\x12\x59\x4a\x97\x4c\xec\x5c\x5e\xb0\x64\xe5\xaf\x6a\xae\x9a\x83\x73\xf7\x6a\x31\x21\x8d\xd6\x2b\xbd\xa1\x1a\x59\xe9\xc4\x01\x77\xba\x27\xfd\x45\xb8\x21\xd5\xd0\x48\xbc\xc5\x07\xaf\x45\x4e\xb9\x4a\x63\x0f\x7b\x75\xe4\x02\xcb\xcf\x77\x58\x0c\xa9\x8e\x68\xf8\x99\x6f\xf0\xa7\xf1\x5b\xf2\x8a\xaf\xc0\x27\xb9\xbe\x73\x06\xaf\x74\x44\xa1\xda\x70\x4c\x95\x7c\xd6\xf6\x80\x38\xf6\x40\xe8\x5e\x1d\x67\x20\xb4\xa0\x8e\x33\x84\x3d\x65\x63\xee\x77\x9c\x07\x62\x70\x7b\xc4\x71\x7b\xe0\xb8\x7d\xe2\xb8\xb9\xad\x6d\x1e\x65\x31\x8f\x6b\xdf\xe9\x12\xa7\xa3\x13\x4d\xba\x36\x71\x6d\x70\x1d\x92\x7b\xf3\xca\xd4\xb8\xc2\xb3\xa3\x9a\x4d\xbb\x94\x92\xf2\xc0\x0d\x47\x47\xc8\x2f\x25\xa6\x2c\xc7\x70\x2c\x67\xdc\x16\x16\xe0\xda\xa5\x52\xc6\x76\xec\x93\x61\x3f\x4f\xba\xcb\xe7\xf1\xfb\x2c\xc3\xdb\x2a\x94\x44\xdf\xd6\xfe\x5c\x7d\x65\x78\xa2\x92\xf5\x0c\x07\xca\xf0\x64\x4f\x87\x24\x74\x45\x4b\xad\x2b\xda\x68\x5d\xd1\x3c\x57\xf0\xac\x73\xb3\xed\x47\xa5\x94\xd9\xea\xc8\xae\x77\xb4\xe4\x9d\x0f\xb7\x54\x61\x36\x21\x6b\x69\x18\x70\x43\xa3\x8a\x6a\xe5\x9e\x46\x85\x6a\xe5\x9a\x46\x22\xd8\x3e\x3c\xd0\xa8\xac\xbe\xf9\x48\x23\xeb\x4d\xb0\xf0\x03\x3f\x79\x84\xf7\xf4\x06\x5e\xd2\x6b\xcb\xbb\x8d\xe1\x33\xbd\x16\xb1\x03\xdf\xd2\x6b\xc9\xbc\xc3\x27\x7a\x6d\xad\xc2\x3b\x78\x45\xaf\xad\x6f\xdf\xb9\xf0\x1d\xf5\xc7\xc6\xcd\xad\x41\x72\x7a\xf5\x83\x28\x59\xf1\x92\x12\x55\xfa\x4e\x94\x86\xaa\x54\xd1\xb0\x45\x34\xa7\x9f\xeb\x2c\x79\xf8\xcd\x91\xca\x86\x80\xaf\xeb\xe0\x45\xd0\x4a\x5a\x0e\xa4\x14\x39\x97\x97\x31\x6e\x39\xb0\xa2\xe9\xd5\x95\x03\x33\xea\xb6\x05\x47\xfc\x59\x84\x35\xec\xe0\x96\x78\xe8\xf7\x31\xb1\x05\x29\xb4\xa4\xec\xd2\xce\x32\x5b\x26\xb9\x71\x2e\xd8\xa5\x3d\x76\x88\x2d\x90\x3c\x62\xf4\x25\x62\x18\x37\x28\xcb\x32\x46\x29\xfd\x38\x46\x3e\x15\xe1\xfa\x1c\x62\x43\x44\x53\x4c\x38\x69\x87\x3e\x21\x86\x2f\x5e\x61\x60\x2f\x50\x48\x45\x07\x9c\xc6\x73\x38\xed\xd7\x6a\x41\xf8\x82\xba\x18\x10\x6b\xd2\xa8\xb9\xba\xa2\xce\x78\x76\x11\x92\xd9\x0b\x5e\xcf\x69\xad\x30\x7e\x11\x5e\x51\x97\xd7\x6d\x36\x21\xbc\xe0\x75\x45\xbd\x94\x77\xa6\x7a\x51\x1f\x22\x9f\x22\xf6\x22\x6c\x39\x58\x7c\x9d\xf0\x9a\x74\x85\x09\x1f\x95\x28\x59\x95\x5f\x51\x1b\xe3\x51\x72\x45\x07\x23\x6f\xb2\x68\x36\xa7\x94\x93\x99\x3e\xf8\x17\xd4\xed\xf6\x20\x69\xd1\x01\x1e\xf1\x69\x46\x34\xba\xbc\x4c\x32\x1f\xe2\x26\x4d\x46\xf1\x95\x5d\xae\x1f\x41\x24\xeb\xc7\xa2\xbe\x96\x62\x4d\x5a\xad\xc5\x34\xa3\x8e\x3b\x78\xb1\x04\x6f\x97\xef\xd6\x9b\xbd\xdd\xca\xb7\x26\x14\x5b\xe3\xf3\xad\xf1\x68\xc8\xb7\x26\xa6\x7e\xab\x0f\x29\x0d\xc4\x6e\xb1\x49\xda\x6a\x4d\x61\x46\x1d\xb7\x6f\xae\x64\xd6\xb4\xab\x2b\xda\x17\xe3\x99\xf1\x11\xbc\x98\x35\xd9\x24\x9d\x42\xda\x6a\xa9\xc1\xc8\xc1\xcf\x4c\xde\x72\x4b\xec\xfa\xec\xea\x8a\xb6\xe2\x62\x22\x91\xf8\x30\xda\xff\xd0\x5f\x20\x5b\x64\xe0\x98\x51\xa7\xe5\xe5\xe9\x58\x66\x94\xd2\x50\x53\xb2\xd1\xf8\x9d\xf7\x8e\xac\xc6\xad\x8f\xe4\xe3\x59\xd4\xa4\x6a\x55\x67\x2d\xea\x29\xe7\x14\xb4\x12\xf1\x1a\xf1\x8b\x48\x2c\xf9\xac\x95\xe0\x62\x21\xbe\xae\x24\xb4\x6f\x4f\x2f\x2f\xdd\x4e\xc6\x26\xee\xf4\xf2\xd2\xe9\x65\x6c\xe2\x4c\x2f\x2f\x07\x19\x9b\xd8\xd3\xe2\x9b\x6f\x8b\x6f\x26\x7c\xed\x59\xe9\xdd\xeb\xfd\x77\xc0\xae\xae\x06\xa6\xdb\xed\x96\x2a\xfd\x72\xb4\x12\x7f\x70\x7a\xfa\xc9\xed\xec\x7d\xf8\xe7\xd2\x68\xf9\x85\xeb\xba\x30\x28\x4d\xe6\xab\xbd\xd7\x6e\x1b\x3a\xa5\xd7\xdf\xeb\x4d\x5f\x23\x36\xb9\x9b\x9e\x56\x13\x29\x1d\x51\xfe\xf1\xdf\xf6\x8d\x9b\x37\xa8\x19\x60\x2d\x21\x62\x93\x0f\x53\x45\xaa\x3f\xa0\x5b\xc5\xc9\x50\x36\xf9\x6e\x6a\xdd\xdc\x82\x47\xfd\x26\x9b\xbc\x13\x61\x6b\x15\x6e\xf6\xc0\x6b\x16\x26\xa2\xd1\x38\x26\xb1\xa5\x44\x92\xa8\xd4\xeb\x8f\x28\xcf\x53\xa5\xb3\xe6\x7b\x45\xcf\x5e\x4d\xcf\x5a\x88\x19\xe7\xbd\xa7\xd4\x93\xbd\xaf\x68\x84\x9a\x3e\x07\xe4\xf6\x68\x76\x99\x8c\x66\xcd\x26\x8e\x27\x69\x73\x36\xa5\xab\x49\x38\x9e\x91\xa4\x35\x6b\x39\xd3\x1d\x6f\x99\xf3\xb1\x92\xe7\x5a\x95\x71\xfb\x8d\xa0\xf0\xb3\xac\x5a\xca\xc1\xdc\x8d\x24\xf1\xb3\x6c\x55\xa3\x84\x15\x15\x40\x56\xcb\x89\xfb\x1b\x91\x6d\x16\x2a\x64\x79\x83\xde\x08\x2a\x73\x87\x0b\x71\xec\x0f\xf0\x57\x8a\x6e\xea\x0c\x56\x66\x92\xe9\xbc\x91\xed\xbd\x47\x1b\x61\xb9\x82\x27\x77\x53\xfa\x9e\x6f\xf0\x37\x74\x8e\xde\x63\xf8\x0b\xb5\x47\xdf\x68\x11\xea\x5f\x46\x18\xfd\x40\xbf\x99\xfc\xa5\xd9\x9c\x62\x3f\x38\xbf\xc9\xb2\x18\xdd\xc0\x0f\xf0\x7e\xf2\xc3\x14\x9f\x85\x59\x86\xfe\x5a\x21\x93\x6f\xf0\x8e\x8f\xe2\x4f\x02\x98\xdf\x23\x39\x72\x17\x63\xf8\x47\x7a\x3f\xb9\x9b\x0a\xbb\xcb\x20\x19\x9c\xfd\x49\x3f\x21\x4e\x15\x74\xfa\x9d\x41\xbb\xd7\x19\x60\x28\xca\x9d\xa2\x7c\x88\xa1\xf1\x27\xeb\x4e\x7f\x80\x4d\xb3\xf8\xe5\xe0\x2c\x4b\x11\x6f\x5b\xd0\x89\xbc\x6c\x4f\x54\xfb\x8f\xa5\x74\xea\x0c\x12\x7e\x67\xf9\x65\x91\x9c\xbf\xb0\x5b\x78\xee\x07\x82\xb9\x92\xe4\x55\x75\x85\xf5\xd2\x56\xb7\x47\x4b\x54\xf9\x42\xcb\x90\x85\x37\xb7\xf4\xb1\xd0\xd4\x49\x5c\x97\x60\xb0\x65\x3c\xc1\xc9\x87\x29\x4d\x76\x95\xf8\xe9\xf2\x06\xaa\xe6\xef\xc1\xd0\xa8\xdd\xc0\xc0\xd9\xb7\x9b\x72\x89\xa6\x57\x26\x1f\xa6\xe0\xd3\x85\xb2\x37\xf3\x39\x22\xf4\xaf\xa2\xfc\xd4\x1f\xe8\xd2\xc5\xa5\x44\x41\xd9\xfa\x3d\x6a\xf9\x44\x44\x65\x39\xfc\xae\x60\xa9\xc5\x90\xbf\x9b\x52\x99\x2f\x6d\xf2\x6e\x4a\xfd\x7c\x1a\xc1\x0e\x7c\xd3\x44\xdf\xa3\x9b\x3d\x61\xd5\xcd\xca\xc0\xf0\x3d\xba\x2f\xc9\xbb\x6e\x6e\xf3\xa2\x23\x35\xcb\x52\xb0\x9b\xd0\xc0\x18\xf4\x8e\xdf\x1d\xec\x78\x7e\xdc\xff\x26\x17\xcd\x01\x86\x27\xf6\x54\x6f\xa2\x88\xf5\xba\xbf\xe9\x47\xbe\x11\x75\xdf\x04\x89\xd3\x23\x87\xb6\xf2\xaa\xaa\x5b\x56\x3c\x88\x04\x29\x0a\x8d\x24\x0a\x19\x88\x34\x2b\x1c\x3d\x70\x50\x9d\xf7\xfe\x47\x9a\x3c\x2f\x37\xa9\xc7\xd6\x76\xeb\xe6\xf1\x35\x52\x6d\x75\xf6\xdb\xc2\xf9\x10\x7e\xf7\x97\x57\x57\x57\xb6\xf8\x5a\xc4\x1c\xa9\xff\xfc\xcd\xd1\xcf\x15\x7a\xc9\xbf\xef\x75\x4e\x7e\x3f\x38\xf8\x5e\x62\x2f\xa8\xbf\xe3\x3f\xe6\x1b\x07\xdf\x0a\x99\xf9\x91\xab\x5d\x57\x6f\x7f\x87\x4b\xf5\xf8\x56\xbc\x2e\xeb\xb2\x27\x9c\x2b\xd3\x8d\xff\xfe\xaf\xf6\x37\xac\xf4\x11\x5f\xb0\x5f\x8e\x76\xf5\xfb\xbf\x3a\xdc\xa4\xbd\xcf\xbe\x3a\xfe\x59\x65\x6f\x4a\x9f\xf1\x4d\xf9\xf3\xc1\x67\x3b\x7c\xb6\x45\xfb\xa0\x0f\xb6\xa8\x0a\xae\x62\x79\x63\x3d\x69\xad\x24\x8c\xb8\xca\x8c\x0b\xbd\x81\x20\x67\x5c\xe8\x7d\x39\x7a\xff\x51\xbe\x54\xf1\x9f\x92\xbf\x14\x9c\xa5\xe2\x20\xcb\xbc\xa3\x4c\xc5\x21\x23\xfc\x4b\xbe\x50\x70\x84\x05\x17\x58\xe3\x5e\xa0\x71\x69\x54\xb1\x1d\xd4\x09\x8b\x85\x01\x5e\x4c\x3d\x6d\xc0\x25\xd4\x83\x86\xb0\x7c\x41\xc6\x56\xce\x76\x45\x1b\xa8\xe1\x97\x27\x98\x65\x0d\x3f\x9f\x20\xa7\x2a\x56\x8a\x53\x31\xde\xe4\x96\x73\x25\x23\x3a\xf1\xa8\x04\xed\xb2\xe4\x4d\x6e\x8b\x05\x25\xbb\x2c\x10\x47\xaa\x28\xd6\xcf\x6a\xfb\x4b\x3f\x7a\x1d\x29\xa9\x2f\x65\x9d\x1e\x2d\x2e\x87\x23\x8c\x22\xea\x4f\x96\x82\x39\x98\xe2\x31\x0a\x51\x29\x36\x19\xc4\x62\xab\xaa\x65\xa9\xd0\x35\x91\x99\x48\x34\x50\xd8\x7e\xbf\xfc\xea\x07\xb2\x02\x69\xa3\x46\x66\x20\x0c\xd4\x48\x0c\x7c\xbf\x49\x5a\x8e\x66\x5d\xda\x19\xb1\x03\x47\x6d\xbf\x6d\x6d\xf6\x1b\x79\xc1\x3c\x5c\x1f\x49\xf7\x5a\x24\x66\x92\x21\x6c\x0d\x2d\xff\x2b\x6c\xb2\xc7\x86\x41\x18\x18\xf8\xc6\x00\xd4\x6c\x46\x4d\x1f\xe7\x12\x22\xd4\xee\xe1\xc2\xca\xf9\x74\x54\x97\x22\x02\xf4\x7e\x66\xb5\x34\x66\xd1\xcb\x3b\x16\x24\x59\x66\x18\xa5\xbc\x6a\x4e\xfb\x74\xca\xf3\x2f\x1a\x03\x67\x19\xb3\x6e\x92\xda\x40\x01\x22\x03\xfd\x41\x0c\x0d\x38\x17\x7e\x7e\xe7\x11\xfb\x5b\xea\x47\xe5\x50\x9b\xe7\x95\x34\x49\x4e\xfb\x94\x45\xf7\x5e\xae\xee\x5c\xe2\xd1\x76\xa5\xc4\x43\x08\x2b\x4e\xfa\x92\xf9\x96\xdc\x8e\x2c\x43\xfa\x91\x86\xe3\xa7\x1d\x89\xf2\x17\x4f\x3b\x7c\x66\xdc\x18\x94\xb2\x22\xa8\x54\x96\x09\x31\x67\xc2\xe9\xcc\x04\x98\x0e\x36\xef\x89\x80\x44\xda\xbf\xdc\x25\x4e\xdb\x85\x03\x17\xe6\xc2\xd7\xbc\x5d\x63\x4e\x2e\xa3\x5e\x3a\xed\x36\xae\xa4\xab\xe0\x4f\x5f\xf0\x4b\xbf\xff\x5c\x76\x4b\x97\xb0\xc0\xc1\x6a\x1a\xe0\xd5\xc5\xd4\x09\xeb\xfd\xc2\x6b\xbd\xd7\x3d\xd3\x54\x4e\xe2\xde\x38\x24\x3e\x46\xea\x20\x5b\x46\x53\x10\xe8\x56\x9c\x84\x11\xa3\xd1\xa1\x7f\x3b\x14\xc7\xec\x84\xcd\xb9\x3b\x38\x9a\x64\x4c\x58\x06\x57\xc3\xa2\xb6\xb1\x20\xad\x55\xad\xb7\x22\x4c\xcc\xbe\x85\xa5\xb4\xcf\x2b\x6c\x2b\x27\xfe\x34\xcb\xd8\x7e\x8a\x9c\x70\xc2\x0f\xf0\xb4\x92\x9f\x4a\x4a\xfb\xc4\xc6\xe9\x24\x64\x4e\xfb\xb4\x6f\xdf\x99\x70\x8e\x03\xad\x67\x2c\xdb\xa2\x09\xbb\xe5\x1d\x06\x86\x9c\x1e\x46\x46\xf1\x46\x24\xd4\x77\x7a\xc4\xe9\x29\xc1\xa3\x10\x2a\x8a\xce\x9e\x2b\xf4\xd3\x5e\x85\x6e\x1b\xa3\x8e\x1a\x84\xf0\xd0\x6b\xf0\x63\x31\xc4\x68\x32\xb5\x84\xe5\x9a\x00\x90\xf9\xe8\x8e\x1a\xb3\xf9\x9a\x9f\xa8\x50\x35\x3b\x19\x81\xc8\x1e\x12\xc7\x1e\x2a\x91\x68\x31\xd6\x13\xa1\x0b\x6a\x16\x46\x18\xbe\x09\xe9\x61\xb1\x24\xbc\xac\xbc\x18\x02\x4b\x16\x1d\x3c\x37\x00\x79\x79\x31\xdc\x23\x8b\x21\x4d\xe8\xaa\xab\x71\xdc\xac\xee\x8f\x2c\xc7\xb3\x5d\xfd\x4b\xa3\xed\xf1\x63\x6e\xe4\x76\x73\x06\x78\xb4\x61\x9f\x85\xe7\x7e\x30\x99\x9a\xa6\xe4\xc0\x1c\x3c\x09\xa7\x65\x3e\xdc\xa3\x0d\x67\x57\xf6\xca\xf4\xca\x53\x3a\x61\x82\x77\x38\xab\x2f\xd8\x22\xe5\x3b\x15\x96\x36\xa9\x3a\xed\xce\x73\xa3\x4e\x95\xa7\x2d\xfc\xce\x1b\xf6\x99\x98\xb9\x51\x9d\xac\xc5\xcb\xca\xd3\x0d\xf7\xa7\x1b\x56\xa7\xfb\x1f\x3b\x53\x39\xa4\xe3\xd3\x7d\x56\x84\xa7\xbd\xe9\xda\x3a\x10\xac\x3a\x8a\xd2\xa4\x91\x9f\xc5\xf2\x59\x2d\x4f\xab\xc6\xe8\xf1\x8f\x9f\xcc\x4e\x0d\xba\xa9\x1d\xb3\xce\xcc\xac\x73\xbb\x09\xff\x0f\x4f\xa5\x6a\x8e\x95\x1f\x48\xaa\x15\x05\xc2\x1d\xa5\xa3\x54\x09\xed\x0e\x3e\xf3\x39\x2a\x15\x29\xaf\x1a\xc2\x97\xa3\xa2\x1e\x2e\xa5\x94\x62\x22\xdc\x67\x3e\xd7\x28\x5c\x1f\x72\x9b\x10\x80\x0f\x0b\x58\xca\x70\xcf\x9b\x3a\x24\xc6\xd7\x61\xcc\xff\x21\x92\x8c\x9c\x1f\x5a\x2f\xaf\xe9\xfc\x88\x69\xf7\x63\x61\xda\xbd\x56\x79\xba\x67\x68\x29\xa4\x0d\x8f\x22\xe1\x76\x84\xd6\x30\xaf\x37\x0a\x16\xc6\xd8\x52\x8d\x7a\x97\x65\x1b\x2a\x1d\x4a\x4c\x33\x46\x77\x58\x04\xf6\x97\xc1\xaf\x36\x28\xa1\x29\x5a\xe6\xbe\xf5\xa3\xe4\x6a\x3b\xda\x36\x9b\x78\x85\x02\xd8\xc2\xe3\x78\x8d\x96\x22\xe5\x37\x26\xfc\xaf\xca\x1b\x26\x0c\xc1\xa9\xd2\xb3\x2d\x75\x84\xf7\xcd\xa8\x81\x7c\xba\xa8\xda\x92\x97\xdb\xf2\xd0\x02\xd6\x30\xf1\x95\x51\xd3\x76\xca\x4f\x17\xf1\xb5\x89\xb9\x16\xdd\xa9\xc1\xd0\x2d\x04\xea\xc8\xec\xab\xd1\x94\x7a\xac\xdd\x21\xfc\x5f\xe9\x18\x29\x13\x93\x15\xc9\x9f\xa5\x6a\x4b\x1c\xad\x1a\xea\xe4\xf4\x75\x50\x91\x7e\x43\x3a\x99\x5a\xca\x22\x97\x03\xbd\x46\x68\x9a\xce\xc5\xc4\xc9\x0b\x91\x03\x2d\x1b\x5f\xda\xa5\x1b\x82\xbc\x2c\xd3\x10\x3d\xc4\xa5\x23\x74\xc2\xb2\xd7\x1b\x87\xca\x70\x54\x5c\x9b\xc2\x68\x34\xcb\x6c\xf2\xac\xbb\x24\xb4\x81\xc5\x5d\x3a\x41\xc9\x68\xa4\xf7\xb1\x34\x32\x99\x92\x94\x88\xec\xf3\xa2\x5d\xb9\x98\x22\x5b\xba\x68\xef\xb9\x19\x26\x9d\x9e\x0a\xa7\x39\xc8\x29\x23\xc5\xee\x39\x55\x12\xa9\xd7\xc3\x48\x5e\x88\xdc\xf6\xa9\x42\xba\x4b\x49\x5f\x22\xd3\x55\xc8\x1f\x3e\xb5\xd5\xd3\x67\x9a\xec\xca\x91\x64\xa4\x67\x80\xfa\x04\x12\xf5\xf4\x59\x9b\x5c\xde\xf8\xcd\xa6\x3a\x5b\x0d\x96\x65\xc1\x15\xd5\x69\xcf\xc7\x48\xf7\xa3\xee\x8c\x8f\x1c\x8c\x89\x8f\x6c\x90\x81\x94\x64\x2e\x82\xc2\x3c\x21\x19\xb3\x49\x30\x25\x93\x00\xf8\x5f\xce\xee\x17\xf9\xf8\x42\xeb\xa5\xde\x20\x1a\x4a\xae\x15\xa2\x3c\x20\x53\x54\xca\xdc\x17\x95\xf2\x1b\x96\x63\xba\x0b\x50\xde\xeb\x91\x5e\x0f\x7a\x03\xd2\x1b\x14\xe4\x5d\xe7\xf7\x52\x5c\x2a\xc0\xf0\x64\x2a\xfc\xb0\xca\xc7\x53\xb8\x9a\xea\x54\xd3\x47\x8e\xea\x31\xfb\x6e\x15\x0a\x4f\xc5\xb6\x80\x32\x6f\x08\x06\x61\x7b\x87\x52\xcf\x4b\xdd\x4c\xed\xa6\xda\x79\x6e\xea\x9a\xbd\xb9\x28\x15\xb0\xa7\x21\x7b\xcc\x67\x57\xf6\x49\x4b\x69\xa3\x11\xeb\x0b\x5a\x7a\x51\x77\x49\xd3\x62\xe6\x71\x79\xe6\xc7\x6c\xd4\x45\xca\xa3\x3c\x58\xe8\xb1\xbb\x7a\xa6\x03\x01\xcb\xf5\x09\xa8\x57\xa4\x9a\x86\x88\x06\x2d\x47\x28\x4b\x0e\xd1\xbd\xb0\x85\xd3\xce\xb9\x28\x82\x10\x55\xc5\x86\x18\xa2\x4b\x5b\x54\x0a\x9a\xc2\x3f\x89\xda\xa3\xa8\xd5\xc2\xfe\x02\x45\x82\xd5\x33\xcd\x64\x12\x4d\xcb\xae\xd3\x11\x1f\x8f\x7c\x6e\x39\xfb\x1b\xa3\xa5\x40\x3a\x99\x80\x04\xaf\x05\xfc\xf8\x23\x34\xad\x73\x84\xa6\x5d\x7b\x9b\x2a\x41\x7b\xc4\x94\xff\x8f\xd0\x0c\xbf\x97\x9a\x6d\x2b\x2e\x44\x06\xf8\x3e\xc8\xe7\x93\x2b\xc1\x18\xca\x53\x33\x36\x24\x9c\xca\xcd\x76\x18\x2e\xc7\xa6\xaf\x10\x09\xe1\xa2\xd6\xb6\xff\x98\xcf\x52\xc0\xee\xeb\x22\x44\xec\x51\x0c\x18\x69\x9f\x26\x1f\x05\x95\xd5\x61\xe5\xf0\x13\x39\xd2\x4c\x34\xd2\x94\xc8\x71\x2f\xfc\x48\xf7\x77\x13\xc2\xc7\xf8\xb6\xb2\xc3\x67\x65\x7b\xbf\xe0\x23\x71\x94\xe8\xad\xec\xbb\x50\x12\x55\xb7\xbe\x43\xdc\x4e\xb1\xf5\xdd\xdf\x4d\xe2\x9e\x9e\x48\xdd\x1c\xfe\x3d\xc3\x77\xbe\x30\xfc\xe7\x52\xbb\x7a\xf8\x5d\x15\x9e\xc9\xd5\x18\xd5\x19\x68\xef\x6b\x91\xb7\x64\x32\x95\x6a\xde\xd2\x1c\x0f\x8e\xb7\x6f\x9a\xa9\x82\xe0\x95\x73\x2b\xcd\xb5\xea\x7c\x33\x62\x54\x72\x5a\x10\x39\x8f\x94\x9b\x83\xbf\x40\x09\xad\x24\xec\x49\xa0\x48\x5f\xae\x61\x50\x5a\x55\x02\x16\xaa\x62\x9f\x23\x76\x10\x21\xd7\x3c\x11\x99\x0d\x66\x34\x46\xab\x96\x8f\x61\x51\x32\x61\x99\x61\x58\x52\x7b\xb4\xbc\x9c\x8d\x96\xcd\x26\x5e\x4c\x96\x53\x5a\x4a\x1d\x2f\x6e\x89\x16\x7b\xf9\xcd\x25\x26\x42\x75\xe6\x37\x97\xb9\xb3\xdf\x42\xed\x82\xb6\xcf\x52\x90\x4e\x46\xd4\xa8\x58\x49\x75\x48\xb7\x23\x76\xe6\x77\x13\x8b\x6d\x8c\xda\x47\xce\x56\x1c\xae\xf7\x4e\xd6\x31\x2f\x9c\x3f\x00\xfd\xba\xcf\x8d\x5d\x95\x23\xd2\xce\x1e\xc7\xd4\xe9\x2a\x34\x2a\x5c\xb4\x53\x3a\x71\xc0\x85\xf6\xb4\x42\xcd\x96\x0f\x50\x2a\x2a\xa2\x3c\x90\x6c\x96\x35\xea\xde\xab\x68\x7e\x47\x50\xec\x31\xcf\xa1\x12\x35\xa1\x02\xe0\x86\xda\xa7\xb2\xfa\x1b\x54\x00\x8c\x2a\x4a\x53\x9c\x81\x88\x6c\xb8\x0f\xf4\x6a\xc8\x57\xe9\xbf\x8f\xd4\xa8\x70\x61\xd3\x27\x3e\x38\x11\x66\xb3\x44\x3f\x7f\xed\x25\xcc\x80\xa7\x20\xbc\x3f\xb4\xe8\x10\xca\x69\x5e\x41\x88\x02\x3f\xf9\x6b\x11\xab\x3e\xa7\xad\x45\x2f\xa7\x45\x53\x12\x61\xf5\xca\x27\x0b\xf1\x06\x4b\x7e\xe2\x49\xf8\xe6\xe3\x7b\x79\x1f\x1a\x94\xfa\x38\x1f\x52\xe9\x05\xf1\x25\x36\xe8\x91\x76\xaf\x74\x76\x7e\x2f\x86\x2f\x12\xc5\x54\x01\xe9\xb1\xb4\xa8\x2a\x34\xaf\x5e\x05\x61\x78\x61\x25\xe1\x3f\x7c\x7c\xff\x0e\xe1\x2c\x73\x1a\x94\x1e\x4c\x86\xbf\x54\x9e\x27\xe5\x09\x1c\x36\x2e\xe8\x99\xf2\x6c\xf9\x97\x35\xca\xe0\x82\x10\x0b\x8b\x54\x0c\x46\x90\xae\x6f\x85\xe1\x87\x0e\x09\x9e\x65\x7e\xfc\xda\x0f\xfc\x84\xa1\x00\x8f\x93\xf2\xb2\x22\xac\x72\xc8\xe0\x52\x4e\x3a\x6d\xc5\xb9\x7f\xcc\x4e\x45\xc0\x51\xd1\x63\x3f\xe8\xe0\x1c\x42\x18\x5e\x5d\x81\x33\x41\xca\xf9\x59\x26\xb3\xf1\xfb\x10\x01\x43\xed\x3e\xc6\xe5\x40\xb6\x7d\xd2\xee\x17\x6a\x9f\xde\x51\xcd\x48\xb5\x69\xf0\x69\x54\x84\x5c\x08\x69\xa4\x0f\xe5\x59\x65\x83\x9a\x86\xd1\xa0\xc6\x9b\x60\xeb\xad\xfc\xb9\x28\x36\x4c\x53\x84\xfd\x47\xd1\x91\x88\xf1\x92\xc2\x09\x4b\x8e\x40\x67\x45\x2c\x68\x36\xf6\x4b\x2f\x48\xb5\x65\xb1\xa4\x3a\x15\x80\xd3\x3b\xa1\x49\x29\xc9\x69\xb5\xb5\xba\x01\x4f\xb7\x7e\x30\x27\x0c\xb9\x7d\xc9\xb2\xba\x7d\xe2\xf6\x8b\x03\xde\x7b\x2e\x82\xd5\xe1\xa6\x07\xbd\x72\x4c\xd6\xa5\x17\xbf\x51\x64\x9e\xc8\x85\x74\x68\x25\x2f\xe4\x9f\xe7\x1e\xdf\x2d\xa1\xc8\x41\x1e\x84\x5a\xd3\xb2\xc7\x39\x14\x44\x5e\xa3\x4c\xe4\x65\x59\x39\x54\x4d\xc3\x39\x93\xfa\x2a\x9d\x97\x53\x76\x53\x44\xb2\x29\xfb\x16\x88\xe0\x68\xc2\x11\x50\xe6\x57\x1a\x71\x4e\xa0\xfa\x61\x89\x17\x68\x68\x46\xa0\xa1\x19\x01\x75\x9a\x4a\x69\x70\xa5\x79\xaf\x58\xb9\x13\xba\x1c\x1d\x16\xb9\x26\xa1\x40\x48\x2f\xfe\xe5\xa7\xf8\x45\x4e\x42\xa3\xc9\xbf\x9c\xa3\xe9\x0b\x7c\x71\x26\x93\x20\xe8\xa3\xdd\x1e\x8a\x10\xc8\xbe\xce\x8d\xf0\xa5\xa0\xce\x45\xd6\x0f\x64\x18\x4d\xe9\x21\xbb\x56\x89\x6b\x27\xce\x54\x05\xc7\x2e\x14\x98\xc6\x4e\x91\xbf\x45\x82\x38\x31\xab\xe7\x22\xcb\xb6\x0e\x55\xd5\xb6\xf7\xb4\x3a\x2e\x46\xc6\x5b\x6f\x63\x40\x0d\xf2\x3a\x84\x51\x6c\x8f\x3f\xd4\xbc\x9e\x5d\x12\xd6\xd9\x25\xd1\xee\x9e\x65\x60\x29\x11\xce\x1d\x4b\xae\x83\x24\x7a\x54\x7c\x37\x88\x41\x60\x28\x04\x66\x9c\xfb\xb3\xb6\xfb\x4e\x58\x25\xf7\xc8\xc8\x9a\xb3\xc5\xde\xe7\x12\xd3\xda\x44\x85\xf2\x12\x4a\x07\x71\x34\x6c\xe2\xb4\x6d\x68\xdb\x84\xff\xeb\x92\xb6\x50\x74\xf6\x9e\x11\x3b\xb2\x2f\x30\x84\x4c\xee\xfd\xb7\x28\x01\x4f\xa5\x37\x9f\x85\xf1\xb2\xc4\x75\x35\x90\x67\x9a\x7d\xc7\xa6\x65\xff\x66\x0f\xbd\x13\x50\xd9\x7a\xfb\xf2\x9f\x6e\x7e\x78\xf9\xed\xf7\xd7\x18\x9b\xa6\x27\x32\x99\xcb\x60\x99\x7c\xdc\xc9\xd2\x80\x27\xd1\x5e\x0d\x01\x21\x43\x6f\x5d\x3a\xc2\x3a\x95\x5d\x0d\x3b\x43\xbb\xe7\xf6\xba\x56\xcf\xed\xb8\x5d\xa7\xdb\x1b\xe7\x89\xca\x19\x6e\x8a\xe7\x6f\xdf\xb9\xc4\x47\xac\xe5\x34\x43\xfe\x2f\x7e\x11\x22\xd6\x74\x70\x19\x4f\x43\xbf\x4d\xfa\x12\xa0\x9c\xa6\x09\xf2\x64\xee\xb1\x1f\x54\x67\xeb\x9b\xa6\x73\xe1\x23\x1b\x5f\x95\x27\xc1\xab\x91\x12\xbf\x99\x94\xe2\x88\x29\x5c\x94\xd0\x66\x82\x4d\xd3\x6e\xd0\x64\x9c\x5c\xda\xe3\x16\x43\xad\x04\x17\xf9\xd6\x93\x66\xbe\xd6\x28\x79\x91\xf0\x91\x93\x64\x8f\xc6\xe8\x7d\x91\xc6\x90\xa3\x4e\xbc\xfa\x51\x0b\xc1\x49\x69\xd8\xbc\x5e\x1d\xf1\x56\xce\xc6\x9f\x0f\x50\x64\x84\xbf\x40\x4e\x8b\x61\x7c\xe1\xee\x8f\xec\x44\xb4\xba\xfc\x44\x75\x72\x5a\x4b\x0d\x60\x76\x5b\x4f\x3c\xfa\xb2\xf7\x17\x3a\x73\x3f\x2a\x67\xd6\x77\x2e\xda\xd5\x3d\x55\x29\xf1\x9d\xde\x09\x8c\x5d\xa2\xf3\x74\xdf\xab\x5f\x6a\x0d\xb6\x10\xbb\xba\xba\xa2\x36\x1e\xb7\x9d\x56\xe9\x48\x17\xc7\xad\x69\x75\xd5\xc8\xbe\x7d\xff\x8d\x7b\x8d\xf9\x9d\xaa\x2e\x46\xff\x8b\xe9\xce\xc4\xe7\xec\x61\xb3\x3f\xa6\x23\x77\x41\xad\x47\xd3\x47\xb5\x8b\xdf\x3f\x8d\x6d\xe5\xe2\x3b\x65\x59\x09\xf2\x1b\xf9\x18\xd6\x4e\x71\x22\xc4\x4f\x45\x63\xaa\xd5\x75\x48\x5f\xe8\xd3\xfb\xa7\x83\x3b\xef\xcd\x64\x21\x5c\x40\x09\x43\x7d\xb7\x2c\x83\xee\xbb\xa4\x2f\x20\x50\xff\x04\x5a\x2a\x9f\xe4\xdb\x78\xaf\xe1\xe5\xe3\x26\xdc\x87\x8b\x45\x1e\xb5\x08\x42\x6a\x83\x47\x6d\x88\x0f\x65\x34\x29\xb5\x47\xde\x65\x3c\xc2\xe9\x25\x0a\xa8\x5f\x12\xca\x79\xcd\xe6\x14\xe3\x31\x0a\x69\xf8\x02\x45\x34\xbd\x08\xf0\x8b\xa8\xe9\x40\x4a\x03\x4c\xc2\x26\x0d\xae\xec\x31\x8a\x68\x70\x91\xe2\x17\x11\xc9\x93\xe4\xa6\x54\x00\xb3\xb1\x73\x61\x93\xf4\x45\x71\x7d\xc3\x7d\xde\xa0\x7f\x5a\x82\xaf\x67\xeb\xaf\xd3\xd5\x29\x81\x96\x92\xff\x75\x1b\xd4\x47\x1d\x77\xd8\x19\xf6\xfa\xee\xb0\x0b\x5d\x9c\x65\x6e\x83\xfa\x6a\x9e\xbb\x62\x3b\x79\x83\xb5\x92\x80\x26\x83\x88\x36\x13\xf0\x69\xaf\xdb\x6d\x77\xcd\x00\x42\xf5\x94\x47\xa1\xb7\x33\xff\x45\xd8\x44\x48\x55\xb8\xba\xba\x72\x7a\xf8\x45\xd8\xf4\x5f\xa8\xa2\x48\x16\x49\x43\xce\x2b\xbb\x72\x27\x73\x2a\xba\xff\x0c\x4b\x86\x62\x73\x57\xe1\x9d\x63\xd7\x01\x84\x12\xb0\xcf\xaf\x9e\x63\x5f\xef\x2f\xf3\xf3\x18\xbd\x52\x67\x1b\x22\x10\x5d\x1d\x86\xa8\xcb\xc9\x7e\xb2\xb1\x5a\xeb\xcf\xd2\xc0\x2f\x34\x96\xda\x1f\xf5\x69\xd0\xb9\xd7\x51\xec\xdf\x05\x44\xc0\xd2\x3a\x10\x78\x2a\x7f\x76\x09\x12\x68\xc4\x9e\x43\xa0\x93\xe7\xcd\x65\x2d\xa7\xdf\xa0\x0d\x79\xc0\xfd\x60\x89\x64\x11\x2e\x9d\xb4\x0a\x02\xdc\x9f\xbf\x00\xdc\x0a\x9d\x8b\x78\x97\x2d\x0d\xc8\x08\x92\xb8\xba\x15\xa2\x16\xff\x8b\x5f\x48\x40\x7b\x7d\xe1\x1e\x9e\xa7\x02\x16\x9d\x4a\x0e\x7d\x6a\x9a\xf9\x70\x0f\x10\x9f\xe6\x30\xc5\x30\x45\x6c\xd2\x56\x89\x22\x53\xd7\x9c\x04\xf2\xa1\xe5\x10\x94\xb4\x02\x7c\x21\x22\xa6\x37\x43\x31\x99\x5d\x1d\xd0\x3c\x95\x8e\xf9\x70\x6f\x93\x28\x0d\x66\xf5\x28\xc9\x1e\x17\xb8\x88\xe4\xf1\x4c\x65\x38\xd2\xca\x69\xaa\xcb\x9a\x7c\xd2\x85\x4f\x67\x44\xd1\xa2\xc8\x6e\x4f\x4b\x22\x3b\x52\xf1\xde\xe9\x4a\xbd\xbb\xf4\xcb\x9b\x51\x95\x0b\x47\xb8\xf1\x49\x0e\x62\x59\x49\x55\xb8\xa1\x91\x25\xc9\x3f\x98\xd3\x0d\xac\x69\x29\xd3\x14\x3c\x52\x43\xbe\x33\x28\x0d\x91\x88\xee\x88\xd6\x18\xc3\x96\x1a\xfc\x63\xce\x57\xec\x67\xa1\x2a\xc7\x93\xce\x77\x2a\x46\x0c\x1a\x8e\xcc\xf5\x15\x6b\x11\x62\x29\xf0\x48\x1e\x61\x4b\xa7\xdb\x90\x19\xb0\x50\x42\xb7\xe3\x44\x8c\x13\x61\xb2\x44\x09\xb4\x31\x2e\xe7\x73\xb0\x45\x93\x9d\x36\xa5\x34\xcc\xb2\x4e\x57\x78\x4a\x71\xae\x6f\x30\xa0\x22\x0f\x47\x52\xae\xed\x62\x9c\x65\x8e\x2b\x3c\x04\x34\x67\xf7\xce\x7b\x97\xbb\xe2\x77\x06\xf2\xfb\xf8\xde\x17\x59\x0d\xcb\xdf\x3a\x18\x3f\xcd\xbc\x98\x9d\xf7\x7a\x44\xfc\x1d\x0e\x48\x44\x5d\xf0\x69\x67\x78\x76\x1b\x31\xef\xf3\x99\x28\xee\x0f\xe5\x6b\xc7\x71\x48\x44\x07\xe0\xd3\x6e\x57\xbd\x9f\xb3\x85\x97\xae\x12\x22\x7b\x6e\x26\x3b\x8d\x08\x3d\x91\x23\x5e\x3a\x0a\x09\xab\x09\x1b\x66\x34\x55\x6b\x32\x5a\x5d\xce\x46\xab\x66\x13\xcb\x58\x01\x69\x79\x50\x2b\x8c\x2f\x3b\x83\x2c\xf3\xae\xfc\xd2\x7c\xf4\x3d\xd0\xb9\x29\x51\x0a\x11\xde\xed\xf2\x6e\x05\xab\xbb\x41\xc6\xb9\x1d\x3a\x06\xce\x32\xfe\x6c\xdf\x8a\xc7\x0d\x32\x9a\xf6\x83\x63\x60\xfc\xb4\xa9\xd9\xc6\x7d\x1c\x7d\xe9\x08\x1e\x26\xa8\xe4\xf6\xaa\xf8\xe1\x6f\x4c\x13\x3d\x8e\xd3\x32\x98\x5a\xeb\x90\xad\xca\x8f\x04\xef\x30\xd1\xa7\xac\x41\x43\x14\x60\x3c\xf6\x90\x74\x42\x16\x19\xf8\x20\x80\x0d\x26\x22\x06\x4d\x2e\xc3\xbe\x15\xd1\x48\x45\x06\x70\x34\xc7\xc4\xc8\x39\x17\x78\xfb\xe6\x9d\x7a\x7a\xe7\xbd\x83\x77\xd7\xdf\xbc\xfc\xf4\xe6\x87\xeb\x9b\x37\xef\x5e\xbf\x79\xf7\xe6\xd3\x5f\xe1\xc3\xfb\x8f\x6f\xaa\x25\xd7\x1f\x3e\xbe\xf9\xf6\xfd\x3b\xd0\xb4\x3f\xf8\xf1\x9b\x20\x61\x77\x2c\x02\x11\x56\x18\xfc\xf8\xa3\xb7\x60\xba\x8c\x77\xf5\xf1\xe5\x6b\xde\xc0\xa7\xeb\x6f\xae\xbf\x13\x3d\x56\x0a\x4a\x79\x4d\x8b\xfc\xa0\xba\xcd\xb2\xf9\x32\xdc\x53\x7b\x74\xa3\x0f\xff\xfd\xe8\x9e\x6f\x33\x9a\xc3\x2d\xbd\x99\xdc\x4f\xb1\x48\x63\xb4\x81\x5b\x6c\x9a\x0b\xfe\x17\x66\xfc\x1d\xc6\x67\xa5\x2b\x4a\xd7\xb0\xae\xf8\x2f\x6d\x20\x97\x19\xa9\x45\x85\x8d\xb4\x3a\xd5\x39\x40\x95\x00\x4d\x05\xb6\x3e\x34\x38\x97\xce\xca\x3d\xd2\xed\x1d\x75\x47\xce\x25\x47\xa7\x52\x9c\x97\x20\xa6\x1e\xc9\x93\x5a\x6b\x92\xb3\x0a\x2e\xb4\xba\x65\x9a\x53\x34\xfa\x45\xfa\x4b\xda\xaf\xea\x0d\x3b\xe8\x45\xbf\xa8\x01\xce\x5a\x00\x59\xc4\x84\x37\x4d\xbf\x0a\x97\x0b\xa3\xd4\xba\xf4\xdf\xa7\x66\x97\x6f\x32\x61\xa8\xe7\x54\xac\x39\x1c\xd2\x93\x4d\x3e\x8f\xe8\x29\x35\xc9\x39\xea\x1a\x54\xcd\x1a\x94\xed\x23\x93\x67\xc8\xb4\x7b\x05\x9e\x2d\x51\xeb\xa5\xee\x4a\x47\xfd\x08\xaf\x27\x22\x7e\x30\x7c\x49\xf7\xe3\x53\xef\x6a\x27\xfc\x3c\x7a\x29\x1f\xc1\xfe\xf5\x22\x07\xbd\x54\xe7\xfc\x3c\x2e\xb2\x68\x7e\xef\xb2\x92\xd6\xe9\xf6\x9f\x93\x0b\x7b\xd8\xae\x30\x6b\x4a\x98\x52\x40\x81\x86\xd0\x0e\xe4\x43\x28\x5e\x54\x58\xb7\x61\x9b\x0c\x65\x97\xcf\xe0\x0f\x87\x9d\xa3\x5d\xbe\x09\x6a\x3b\x7c\x13\xec\x75\xd7\x21\x43\x41\x84\xd6\xa5\x95\xfe\x82\x36\x42\x5b\x2b\xe6\x79\x4a\x84\xf1\x9f\x63\x59\x49\xf8\xda\x7f\x60\x73\x48\x4b\xe2\x25\x58\xd1\x89\x0d\xf9\xff\x53\x98\x69\xa2\x42\x57\x27\x22\x99\x66\x14\xb1\x59\x72\xee\x07\xdb\x70\xe6\xf1\xb1\x34\x0c\x58\x1c\x8d\x1d\xdb\x72\x20\xa2\xc9\xa8\xd9\x0c\x2e\x7b\x23\x1c\x35\x29\x7b\xb1\x9a\x04\x53\xe0\xff\xd0\xe8\xef\x1c\xd6\x87\x88\xa6\x28\xba\x70\x58\x1f\xef\xe0\x58\xc2\x89\x1e\x04\xd4\x1e\xb5\x5a\xc9\x15\xb5\x47\x38\x68\xd2\xd5\x24\xe1\x8d\x24\x53\x9a\xa2\xe0\x42\xd0\x96\xc1\xdf\xb1\x17\x0e\xeb\x57\x32\x44\x94\x0d\x0c\x7a\x90\x50\xc3\x18\xb5\x5a\x4c\x34\xc2\x49\x1c\xa3\x41\x69\xa2\xbc\xf7\x65\x32\xcd\xd5\x84\x4d\x35\x37\xa7\x94\x1b\xa2\xe8\x8c\x7f\xab\x95\xb8\x4d\x95\xcc\xd2\xb0\x0d\xe8\xb7\xb4\x51\x01\x6e\x06\x3a\xed\x60\xb2\x83\xf9\x91\x48\x6a\x85\x2a\xf8\xef\x5c\x4a\x9d\xf1\x9c\xbf\x6e\x39\x10\xbc\x60\x98\xcc\x11\x7b\xc1\x20\xb9\x70\x21\xc0\xbb\xb2\x4a\x4b\xd8\xec\x20\xc3\xb6\x6c\xdb\xe6\x83\x1e\xb0\x56\x57\xef\x0a\x6a\xe3\x2c\x33\x1c\x5e\x6c\x0d\xf3\x42\x5b\x14\x5a\x6e\x97\x97\xf3\xbf\x45\x7d\x57\xbc\xb2\xab\xff\x39\xee\x80\xd7\x44\xf6\xc3\x9c\xd9\xb7\xbd\xdb\xb6\xd7\xef\x75\x6c\x9b\x53\xa2\x45\x93\x52\x5b\xb9\xc7\xce\xc4\xa5\x38\x68\xe5\xd3\xac\x0f\x4d\x9d\x41\x68\x04\x31\xa4\x4a\x4f\x0e\x33\x4e\x4a\x89\x8c\x95\x6b\x6a\x18\x9c\x96\xb5\x45\x84\xf5\xd5\xa5\x9d\x65\xab\x2b\xb7\x26\x07\xd0\x4c\xd0\x93\x69\x83\x6a\x7b\x23\xe3\x9d\xf7\x4e\x7c\x94\x5e\xd2\x96\xc3\x5c\x47\x64\x24\xe3\x0f\x9a\xe0\x52\xbb\x99\xca\x2f\x85\xa1\xd0\x9a\x1a\x2d\x03\x52\xda\x4a\x31\xa4\x57\x0e\x6b\xb9\x0e\x3f\x16\x01\xa7\x67\xeb\xcf\xa1\x0d\x01\x65\xa3\xe0\x8a\x76\xec\x61\x6f\x84\x93\x26\x75\x5c\x08\x2e\xc4\x4f\xa9\x6a\x08\xae\xa8\x2b\x5f\xf0\x72\x37\xe7\x75\x76\x28\x7d\x31\x47\x2e\xf4\x86\xe0\x60\xdc\xea\x0d\xf1\xa5\x3d\x96\x45\xad\x04\x1c\x4c\xd2\x0b\xfe\x9c\x88\x28\x88\x2f\x68\xa7\x6b\xb7\xbb\xc3\x61\xcf\xed\xb7\xfb\x76\x67\xd8\x03\x94\xd0\xae\xdb\x4a\xf0\x95\x2d\xc7\xb3\x40\x36\x04\x18\x22\xba\x1a\x45\x57\xb4\x3f\xc2\x0b\xc4\x2f\x93\x8d\x21\x6a\xd1\xfe\x99\xac\x32\x47\x8e\x0d\x91\x4c\x9f\xc1\xef\x61\xcb\xe1\x95\xdd\xf6\x08\x2f\x91\x73\x79\xe9\xb6\x45\x6d\xb7\x7d\x26\x7e\x46\x18\x16\xc8\xe1\xb5\x97\x48\x44\x9a\xdf\x20\xe5\x83\xac\x3a\x5b\x88\x48\x09\x09\x6f\x4c\xbc\x2c\xdf\x83\x55\xce\xd6\x3d\xd2\xd5\x95\x3d\x5e\x37\x11\x8a\xe9\xa3\xbe\x1b\x97\x74\x35\x36\x6c\xcb\xa8\x7c\xd2\x8a\x71\xf3\x91\x3c\xe6\x19\xa9\xe2\xd6\x0a\x37\x0d\xcb\x68\xea\x22\x5e\x80\xc9\xba\xf9\xa8\x0d\x14\x74\x82\x2a\x65\x9a\xd5\x25\x4e\x77\x5f\xc1\x58\x97\xcc\xfe\x24\x98\xd4\xa9\xd3\x24\x94\x14\xc0\xf1\x43\xc4\x66\x7e\xec\x87\x15\x9b\x40\xff\x90\x87\x97\xb7\x4e\x4d\xc9\x81\xb2\xca\xbf\x52\xdb\x3b\x7a\x45\xf2\x9e\x6a\xd8\x66\x75\x3d\x54\xf5\xff\x54\xae\x7c\x04\x10\xe3\x83\x5c\x87\x6c\xac\xfa\x4e\x30\xd1\x4f\x90\xdb\x20\xd6\xae\xdf\x73\xcc\x62\xf9\x8a\x94\x02\x29\x7a\xb1\x96\x9f\x0c\x2a\xf2\x93\x01\xe9\x0b\x6b\xc6\xe1\xf3\xe8\xb3\xbc\xbd\x59\xc4\xbc\x44\xa4\xa1\x1c\x56\xda\xe3\x54\xae\x68\xef\x39\xc4\x99\x36\x33\x69\x0f\x71\xa9\xe9\x4a\x5c\x47\x9f\xc5\x84\xa1\x81\xa2\x00\xcb\x51\x81\x06\x0e\x19\x08\xb2\xa8\x2e\xc3\xfc\x1f\xe9\xea\x91\x28\xb6\xfe\xb0\x2b\xad\x7d\x3b\x95\x54\x5e\x2b\x60\xfb\x5d\x6c\x85\xc1\xeb\x88\xb1\x5f\xd8\x19\x43\x43\x1b\x23\x63\x21\x7e\x9d\xd6\xb8\x95\x52\x79\x99\x66\x84\x12\x3c\x66\x32\xad\xa3\x56\x86\xa8\xbc\xfa\x5d\xd2\xef\xc2\xd0\x26\x43\x39\xa2\x93\xe9\x6a\x74\x1a\x5b\x17\x5b\x0b\x3d\x96\x63\x21\x35\x6b\x12\xa8\xd7\x27\xe7\x55\x29\x55\x12\x7d\x44\x95\xf5\xa5\x64\x6a\xf4\xc0\xdc\xba\x04\xe9\xb5\x23\x78\xe7\xad\x59\x5c\xd7\x39\x43\x83\xb6\xde\x8d\x41\x9b\x0c\xda\xa5\xc6\x4f\xd0\x75\xc2\xc2\x43\x69\xc2\x4b\x73\x2e\x65\x44\x3e\x3d\xd3\xbd\x79\xe2\xaa\xcd\x84\x8a\x1e\x95\x0f\xe4\x84\x6e\xa0\xe7\xe6\xfd\xfb\xf1\xf5\x43\xc2\x82\xd8\xbf\x5d\x3d\xf7\x14\x34\x54\x6e\x68\xd4\x60\x59\xc6\xf8\x39\x28\x9f\x82\x62\x00\xa7\x33\x50\x17\x03\x78\x1d\x85\xbf\xb0\xe0\xb9\x9d\xf3\xbe\xb3\x4c\x64\x41\x15\x69\x0a\x6a\xbb\xfe\x42\x6e\x9b\xbc\xeb\x8f\xcc\x5b\xb1\xf9\x7f\x68\xd7\xbf\x13\x5a\xf9\x1c\x88\x38\xb6\xe2\x8e\x1d\xdb\x25\x8e\x5d\xd8\x09\xbb\x27\xd3\x11\xe7\xc7\x69\x90\x4f\x49\xd8\xc2\xff\x7b\x0e\xd1\x80\x0c\x06\xa5\xd9\x9c\x00\x60\xa7\xa0\xca\x26\x62\x5b\x16\x24\xea\x68\x89\xbc\xc1\xff\xe1\x00\xc6\x3d\x95\x07\xf8\xd4\xe0\x62\xe6\xad\xfe\x3f\x19\xcf\xf3\xb8\xd4\x7c\xeb\xab\xc9\xd0\xc5\x31\x68\x8b\xf4\x23\xea\x28\xb4\x89\x63\x17\xc6\x88\x6e\x5d\xb6\xde\x5a\xda\x44\x7a\xd2\x3e\xed\xce\xfc\x49\x6d\x52\xed\x29\x35\x7e\x31\xc0\x97\xa6\x48\x13\x95\xd6\xe8\x97\x69\x6e\x88\x74\x98\x50\xbd\xd6\x2e\x49\x51\x31\xba\x01\xa3\x29\x0d\x6b\x70\xd3\x98\x1a\xbb\xdc\xd6\xa1\xec\x51\xab\x05\x4a\xee\xa9\xd4\xb9\xfb\xfc\xf6\x37\x92\x80\xda\x63\xb4\xbf\xc4\x5f\xbb\xcf\xc9\x7b\xab\xf9\xeb\x72\x17\x9a\xb1\x3e\xcd\x4f\xbb\x75\x19\x5f\x0f\x37\x23\xcf\x39\x22\x7d\xd3\x53\x25\xe2\x2f\x27\x70\x72\x55\xf0\x3d\x3e\xa6\xa5\x3a\xb8\x1b\x65\x49\x3a\x57\xc1\xf9\xd6\xfc\xfd\x50\xa5\x6f\xb2\x07\x3a\x7d\x53\x5f\x66\xb7\xbf\xe3\xad\xf7\x30\x92\x39\x9c\xfa\x7d\x99\xc3\x69\xd8\x95\x39\x9c\x1c\x77\x28\x93\x38\x0d\x7b\x18\x1e\x68\x5a\x4a\x88\xf4\x91\xa6\x79\xb2\xc9\xf7\xf4\xa3\x69\x7e\xd4\x89\xbc\x63\x78\x49\xdf\x9b\xe6\x7b\x6b\x3b\xc8\x32\xc3\x80\xcf\x34\xb5\x3e\x44\xe1\xda\x8f\x19\xbc\xa5\xa5\x4c\x89\x33\xf4\x11\xc3\xa7\x4a\xec\x46\x78\x45\x7d\x7a\x6b\x2d\xe0\x3b\xda\x68\xec\x59\x19\x49\xd2\xf4\xb3\x15\xb1\x38\x5c\x6d\x19\x12\x41\xdb\x51\x52\x11\x6d\x3e\xed\xf0\xe4\x20\x6f\xf7\xb4\xc2\x52\x31\xf4\x09\x3e\x71\x1e\x57\x6a\x62\xde\x66\x59\x8d\x91\xbf\x1a\xef\x77\x8c\x9f\x4e\x3f\x0c\x44\x32\x43\x6c\x9a\x89\x95\x2c\x59\x80\x3e\x95\x9d\x0c\x02\x61\x03\x42\x5f\xe6\x4e\x67\x46\xcf\xea\x19\xd8\x34\x5b\x0e\xa5\xf4\xbe\x28\x7e\xb5\x8c\xc2\x35\xbb\xe8\xf5\x0c\xac\xcc\xa2\x22\xfc\xb4\xdb\x21\x0c\x1f\x0e\x25\xe9\xda\x24\x0c\x35\x96\x22\x44\xc2\xa1\x91\x1a\x4a\x28\x13\xc3\xc1\x7c\x60\x3b\x78\x57\x13\x5e\x81\x59\x37\x9c\x3e\xb1\x6e\x02\xda\x90\xee\x2f\x01\x65\xd6\xcd\xec\xec\x0e\xd5\x48\x2a\x44\x40\xe9\x2d\xf8\xd4\xa1\xfc\x29\x56\xba\xf7\x32\x64\x93\xba\x17\x79\x2e\xfd\x71\x62\x85\x9f\x49\x62\x2d\x3c\x7f\x25\x14\x14\x6a\x6b\x60\x25\x9e\xf9\xda\xc1\x8c\x26\xd6\x3c\x5c\x7b\x7e\x70\xc6\x37\x31\x1e\x23\x3f\xcb\x90\x2b\x3a\x58\x9a\xe6\xd7\x9c\xe4\xe2\x8f\xd4\xc1\xd0\xe0\x7c\x43\x3c\x0e\x68\x44\xd0\xcc\x34\x67\x16\x0b\x12\x16\x21\xbe\xcf\x31\x8a\x30\xcc\x4c\x13\xcd\x2c\xf6\xe0\x27\x08\x0b\x27\x67\x91\xbf\x97\x52\x01\x6e\xf8\x7e\x8d\x57\xe8\x01\x19\x6a\xf3\x5a\xb3\xa5\xe7\x07\xe7\xb3\xc7\xd9\x8a\x19\x18\x13\x14\xd2\x0f\x42\x75\xa0\xac\x21\x03\x48\x61\x85\x49\xca\xcb\xc8\x0a\x45\x7a\x53\x16\xf8\x69\x66\x9a\x0d\x4f\x0c\x40\xf6\xb5\x42\x0b\xbc\xdb\x8d\xb4\xbc\xe5\x2a\x1c\x61\x0f\x05\x22\xa8\x3f\x3e\xe3\xeb\x49\x27\x53\x90\xab\xec\x40\x62\x9a\x0d\x39\xb9\x9f\x75\x3c\x87\x9f\xab\xfb\x2b\xfb\x4f\xf7\xed\x34\x55\x58\x37\xb9\x09\x21\x7d\xa3\x53\x12\x9b\x26\x4a\xe8\x4d\x79\xc3\xde\x8e\x3f\x5a\x6c\xed\x27\xc8\x48\x83\xa5\x17\xcc\x57\x6c\x9e\x1f\x55\x03\x7c\x60\x98\xa0\x80\xa6\x56\x18\xe4\xef\x23\xfd\x1e\x8f\x03\xf4\xa4\xd6\x8b\x30\x88\x98\x17\x87\x01\x87\x53\x04\x45\x34\x15\xb7\x29\x5c\x31\x6c\x9a\x91\xc5\xf8\x4d\xcf\x1f\x90\xf1\xbd\x6e\xec\x5c\x7d\x7f\x1e\x95\x7a\x15\x2e\xf9\x7c\x27\xdf\x66\x19\x1f\xfb\xd8\x25\x8e\x28\xf1\xb4\xfb\x5e\xc8\x2f\x10\x53\x32\x95\xc4\xda\x72\xd8\xf8\xa6\x2e\x74\x84\xd3\xd0\xe7\x83\x9f\x08\xc4\xdb\x10\x41\x42\x66\x3a\xfb\xc6\x0e\xbe\x7e\xde\x92\x9e\x15\x4b\x95\x8f\xf5\xcf\x72\x12\x86\x58\xa6\x44\x2c\x53\xfe\x4e\x4d\x90\xdf\xa8\x9a\x55\xe2\x3b\xb3\x13\xc4\xd6\xb7\x35\xba\x2f\xa1\xe2\x4a\xac\x9b\x79\x96\x21\xfe\x87\x36\x6c\x40\x09\x4d\xac\x9b\xfb\x2c\x4b\xfe\x5f\xe6\xde\x7d\xbb\x6d\x23\xe9\x17\xfd\x5f\x4f\x21\x62\xbc\x91\x6e\xb3\x44\x11\x92\xaf\x90\x5a\xdc\x8e\x2f\x89\x67\xec\x38\x63\x39\xc9\xcc\x40\xb0\x36\x44\x36\x45\xc4\x20\xc0\x00\xa0\x2e\x11\x30\x6f\x76\xd6\x79\xa4\xf3\x0a\x67\x75\xf5\x05\x0d\x10\xf4\xe5\xfb\xe6\xac\xef\xac\x95\x58\x44\xa3\xd1\xf7\xae\xaa\xae\xae\xfa\x15\x1d\x9d\x5f\x31\x0e\xe5\xe8\xbc\x60\x07\xe2\x4f\x24\xb3\x45\x22\xc3\x54\x03\xf4\x52\xf8\x49\xc5\x39\xa8\xe1\x55\x5f\x2c\x2a\xa6\x03\xef\x0e\xd2\xd1\xf9\x8c\xde\xa5\xaa\xa2\x94\xa5\x58\x8f\xdc\x66\xa8\x4b\x62\x8c\x37\xc8\x66\x6a\x53\x34\xc1\xab\xd5\x5e\x9d\xed\xc6\x65\xc1\x93\xb9\x43\x8f\x48\xc9\x7e\x16\x42\xdd\xe4\xb2\x1b\x07\x3d\x67\x77\xe7\xd7\x7e\x0a\xe7\x33\x7f\xe0\xd5\x58\x43\xa9\xdc\xad\x20\x21\xaf\xa4\xa2\x27\x21\x6f\xf0\x87\xde\x47\x31\xbd\x7b\x23\x33\xe5\x62\x71\x88\x05\x96\xca\x31\x48\xc5\x18\x78\xf0\x13\x49\x31\x16\x6c\x43\x0c\x55\x7e\xbb\x32\xbc\x98\xac\x77\xde\x57\x15\xf9\xd4\x8e\xbf\x2b\x75\x14\x9f\x40\x77\xcd\x01\xe7\x7c\xe1\x50\x58\x09\x92\x92\xdb\x16\xcf\xa2\xbd\x9c\x88\x86\x4a\x64\x2c\xd9\x56\xf5\x5b\x57\x5f\x9a\xea\x55\xa4\xaa\xba\x86\x4e\xc0\x5b\xe9\x8d\x8a\x9b\x5d\xfe\x34\x2b\x5b\x3e\x16\xc6\x05\x76\x86\x84\x00\x7f\x5e\xb5\xf3\x2c\x4c\x9e\x14\x21\x09\xac\x7b\x3a\x04\xd7\x25\x9f\x2c\xd9\xe9\x4e\x90\xf7\x5e\x7b\x9f\xe7\x44\x39\x38\x7e\xa2\x96\x8f\x59\xf6\x89\xf5\x18\x33\x8b\x83\x16\xa4\x48\xa5\x7b\x5d\xe0\x5d\xb7\x84\x54\x11\x69\x26\xf6\x8b\xfc\xe9\xb7\xda\x3d\x95\xf1\xc6\x52\xed\xee\x1b\xb9\xae\xfa\xd1\x79\x51\xb8\xee\x4f\xb2\x69\x03\xc1\xa1\x35\x69\xae\x01\x87\xb9\x37\xca\x91\xf8\x0e\xf9\xaa\xaa\x11\xb5\x44\x90\x6d\x46\x9d\x4e\xf9\xf5\x6e\xbe\xa3\x0d\xa9\x45\xb1\x0a\x99\x4f\x73\x1e\x26\x26\x19\xa3\xf6\xaa\x54\xb1\xad\x99\x98\x6d\x91\x58\xc3\xc5\x68\xce\x9e\xf7\xc6\x54\x65\x8c\x7d\x92\x58\xb9\x11\xc2\x92\x67\x84\x53\x3f\x96\x30\x03\x73\x32\x1f\xfd\x30\x9c\x8f\x7e\x1b\xce\x47\xaf\xee\x0f\xde\xc3\x9d\x5a\x72\xfe\x27\x09\xf9\x30\x7e\x48\x89\xb5\x10\x65\xda\x03\x4a\xac\x94\x48\x01\xcf\x68\x49\x48\x94\x79\xaa\xcb\x6b\x96\xf0\x9d\x6c\x72\x8f\x4e\xee\x79\xcb\x7c\x9f\x8c\x41\xb3\x58\x8a\x5a\x0b\x33\xce\xaa\xbd\xb2\x6c\x52\x54\xd5\xe0\x3d\x6d\x57\x80\x23\xd5\x37\x11\x2f\x49\x21\x67\x15\x47\xe1\x93\x2f\x5d\x9e\x68\xbb\xc8\x01\x79\x2f\x64\xfd\x2e\x34\xc3\xa7\x91\xf4\xbe\x1c\xc9\xdd\xf4\x41\xea\x1b\x9b\x6a\xa3\x4e\xc4\xb2\x86\x64\x82\x58\xcd\xa5\x8c\x2f\xa4\x05\x88\x18\x7f\xa3\x00\x91\xb5\x59\x9f\x5c\xfe\x41\xa8\x64\x13\x6f\x67\x89\x86\x23\xd0\x2d\xbb\x60\xd9\x70\x08\x6b\x36\xf0\x76\x52\xb9\x42\x95\x8e\x14\xa2\xe1\x10\x8c\xa8\x22\x5a\x8c\x4b\xcf\xfe\x7e\x5d\x55\x64\x8d\x44\x35\x28\x42\xc6\x61\x6f\x2f\xaa\xaa\x1c\x61\xf9\x25\x9b\x33\x09\xb5\xd9\x7c\xd9\x08\xaf\x89\xb3\xd1\x55\x6b\xd1\xe7\x51\xc7\x4f\x71\x5b\xbf\xb1\xaf\x71\xbb\xaf\x3d\x5d\xdb\x6c\x78\x33\x68\xb9\xe0\x4c\xa6\x41\xf1\x08\x8f\x9f\x71\xbb\x41\x35\x6d\xc1\xa3\x2b\xf8\x39\x03\x93\xfe\xd8\xf7\xbc\xc7\x88\x11\xe6\x1d\x3c\x6d\xe0\xce\xd1\x6b\x4b\x81\xd0\x59\xf0\x46\x36\xb2\xc3\x83\xa7\xfe\x83\xa7\xca\x3e\xc0\x86\x2e\x57\xa0\xe5\x8f\xfc\xc7\x8f\xe0\xf1\x63\xff\xf1\x63\x78\xfa\xd0\x7f\xfa\x10\x9e\x3e\xf2\x9f\x3e\x32\x10\x75\x07\xde\x57\x5c\xe8\x1b\xff\x38\x34\x6c\x22\xf2\x86\xff\x3d\x9f\x27\xe8\x29\x7f\x57\x53\xe9\xf8\x0d\x45\xe3\xff\x80\x09\x6d\x4d\x69\xe7\x0e\xa9\xe5\x20\x27\xdd\x96\x54\x91\x62\xd1\x8a\xcf\xfd\xfe\x76\xc5\x32\x12\x64\x46\x52\x33\xe4\xd1\x24\x22\x39\x94\xb0\x36\x2e\x71\xf2\x49\x8d\xba\x1c\xc5\xa7\xbe\xd7\x03\x00\x8f\x63\xf0\x35\x46\xfc\x0a\x9f\x5d\x8c\x45\xa4\xc6\xa2\x50\x27\x3f\xdb\xb6\xeb\xe0\xb1\x38\x21\xf6\x8d\x91\x39\x2e\xc1\x9c\xad\xbf\xec\x5d\x3d\x6d\x8d\x0f\x08\x39\x77\xc3\xc3\x7a\xc1\x06\xad\x92\xa6\xdd\x31\xb5\x2f\xa2\xe7\x55\xb5\x68\x0d\xb2\x69\x50\x87\xd1\x21\x68\x4b\x44\x54\xc0\x95\x74\xd3\xb4\xe8\x70\xc2\x7d\xdb\x13\xff\x20\x44\x79\x79\xe1\xba\x83\x39\xb5\x02\x80\x88\x81\xc4\xb8\xc9\x8c\xa5\x96\xe9\x96\xba\x1f\x92\x36\x5b\x63\xdf\x02\x26\xe6\xd2\x50\xcb\x6b\xa5\x11\x44\x39\x95\x6f\x0e\x36\xdf\x40\x89\x30\xa6\xf8\xfa\x70\xcb\x6b\x28\xb1\x8d\x98\xe7\xc1\xe7\xf2\x40\x19\x1c\x86\x12\x65\x38\x67\x41\xba\x4e\x92\xb0\x09\xf3\x23\x88\x99\x82\x38\xc0\xd0\x23\x29\xbf\x26\x89\x4a\x10\x44\x40\x7e\xb7\x66\xb6\xf7\xcf\x8a\xc5\xa4\x20\x6b\x3a\x59\xfb\x5d\x05\x0d\x85\x59\x67\xbf\x68\xc9\x6e\x05\x0d\x1e\x75\x41\x66\x74\x32\xf3\x57\x9b\x4b\xd9\x72\xec\x6a\x19\x09\x29\x2d\x97\xba\x38\x39\xf0\x3e\xa3\x8b\x7c\x32\xee\x40\x06\x19\x58\x92\x16\x20\xd0\xc6\xde\x55\x6b\x68\xd4\xbe\xee\x20\xf9\x68\x4e\xee\x6a\xf0\xb4\xbb\x97\x57\xd3\xe6\xe1\xa0\xbb\xc7\x3b\x77\x25\xdd\x36\xe2\x2a\x2c\xd1\x0d\x5a\xa2\x44\xa6\x52\x9e\x34\xd3\x31\x57\x39\x61\x30\x6e\x04\xdf\xc6\x9f\x4b\x29\x48\x55\x5c\x89\x8d\xcd\xaf\xaf\x60\x0e\xbc\xaf\xb0\xcc\x91\x66\x9a\x6a\x84\xb4\x46\xd0\xee\x49\xc2\xcb\xfe\x9e\x68\xbe\x19\x13\xd9\x1f\x6a\xd4\x0b\x29\x46\x38\xb3\x9d\xbc\xa8\xeb\xca\x92\x76\x79\x50\x86\xaa\x03\x56\xc3\xf1\x42\x04\x9b\xfc\xcd\x4e\xaa\x4f\x5b\x52\x1d\x6f\x70\x64\xe2\x16\x8e\xcc\x8e\x7d\xd6\x19\x9d\x7f\x62\x41\x88\xd7\xca\x32\xfa\x1c\x55\xfc\xbc\xa4\xf5\x0e\x27\x8f\x1e\x52\x92\x35\x7a\xd1\xae\xc8\xd8\xc0\xcd\xec\xcc\xb2\x3b\xed\x85\x77\x1e\x9f\x98\xb8\xc2\x8a\x52\xa8\xe5\xa1\x24\xd0\x59\x96\x62\xa4\xaa\xfa\x7a\x11\x27\x9c\x0c\x08\xe1\xac\x0c\x0c\x5c\x0d\xe2\x84\xab\xb6\x1b\xf9\x5b\x95\xc0\xd5\xc7\x5e\xad\xf0\xc6\x5a\x73\xa4\x02\x61\xf5\x1a\x9e\xed\x6a\xb9\x73\x73\xcc\x1f\x3d\xf4\x1f\x3d\xc4\x31\xff\x8c\x9a\xf8\xc9\xc1\xc6\x36\x92\xbb\xc7\x6e\xc0\xd6\xc8\x73\xbd\x77\x62\x62\x79\x67\xad\x5b\xb1\xbe\x85\x70\xf0\x15\x16\x50\xc6\x7f\xb3\x6f\xe5\xb6\xef\xb1\xfa\x8d\xca\x32\xeb\xbe\xc1\x6e\x84\xf2\x8b\x3c\x38\xf8\x8c\x5a\xf8\x49\xc7\x89\xf4\xe1\x41\x3b\x44\xbe\xe6\x9e\xa2\x71\x32\x6e\x50\xbb\x71\x2d\x4f\x30\x5d\x70\x04\x09\x4c\xfb\xb8\x52\xe9\xdb\x3c\xc9\xf8\x96\x90\x92\x32\xc6\xa6\x93\x32\x48\x43\x9f\x44\x4c\x8c\xad\x28\x8c\x4e\x32\x12\x99\x50\x86\x93\x68\x64\xaf\x44\xbc\xe4\xbf\xe4\xe5\x04\xff\x95\x94\x79\xaa\x63\x4d\xf9\x05\x49\x18\x5e\x2d\x4c\x38\x49\x20\x05\xf3\x66\x73\x9c\xa4\xcd\xa6\xf2\x28\x95\x76\x9a\x66\xe4\xbe\xce\x11\xa8\x19\x91\x45\x54\xf4\x2f\x17\xb9\x41\xdb\x36\x87\x07\x07\x5f\xf4\x0c\xd2\x94\x41\xb1\x26\xfb\x56\x71\xb3\x72\xfb\xed\x36\xf3\x43\x18\x64\x55\xd5\xbb\x93\xb0\x41\x5f\x07\xbf\xd5\x54\x99\x5d\xa7\x7f\xe3\xb7\x85\xcf\xc9\xd3\x96\xf3\xd3\xd3\x03\xff\xa9\xdc\x00\x5f\x21\xb9\xb5\xba\xb8\x71\xc5\xb5\x59\xe9\x46\x96\xb6\xdb\x32\xe2\xed\x37\x7c\x28\x93\x16\x97\x0d\x13\x2a\x37\x99\x50\x67\x14\xbe\xe8\x30\x29\xef\x94\x76\x62\x71\x8c\xe8\x34\xae\xd8\xb6\x61\x51\xf1\x3c\x9a\x2e\xf8\xf4\x13\x3e\xd8\x6d\x8c\x31\x3a\xbe\x48\x6d\x9a\x99\x6e\x36\xb3\x7b\x75\xd5\x87\x5e\xdd\x95\x1c\x9e\x28\x9f\x07\xb1\xc1\x23\xb5\xc1\x0b\xd5\x11\x8c\x5a\xf4\x58\x8a\xc5\x62\x12\xa6\xea\x1e\xb7\x20\xc5\x46\xa7\x3a\x1b\x1d\x0a\x59\xd5\x1c\x16\xb0\xda\xdc\xea\x0f\x5a\x5b\xfd\x30\x84\x19\x8b\x47\x73\x92\x88\x53\x9d\x14\x39\x07\x33\xd4\xc3\x4f\xc9\x02\x21\x0e\x1a\x6f\x71\xb2\x10\xa5\xc3\x8a\xee\xcc\xd8\x9a\x8c\x29\x86\xd8\x20\xb3\x26\xa2\x29\xaa\xef\x3d\xc6\xd8\xcc\x0a\x4f\x3a\x98\x92\x55\xdb\x21\x7d\x8e\x35\xae\x40\xc5\x43\x9c\x0b\x2a\x51\x55\x73\x31\xd2\x55\x85\xdf\xcf\xcd\xf7\xcd\x87\x73\x49\x63\x58\x01\xb9\xfc\x1a\xe6\xca\xde\x4a\x3f\xaf\xc9\x18\x0a\xc3\xda\x06\xe3\xba\x65\xde\x33\x10\xcd\x2a\x78\xe9\xba\x04\xff\x4a\xba\xb4\x82\x82\x5a\xc0\x40\xdb\x88\x8f\x6d\x2a\xde\xc4\xac\xc2\x99\xfe\xcc\x9d\xac\xf1\x6e\x51\x24\x5c\x3a\xaa\x44\xc6\x8d\x05\xc9\xb8\x9a\xed\x07\x38\xdb\xf9\xe8\x3d\xbf\x7c\x79\xb3\x52\x38\xe4\x89\x25\x0e\x2f\xd8\x7e\xb4\x7f\x09\x2b\xf9\x67\x86\x7a\xa5\x84\x2c\xe8\x80\x31\x8c\xe5\xa8\xdc\xe0\xc9\x60\x56\x55\xdb\x10\x34\x56\xe6\xa2\x09\xdd\xdd\x1d\x1a\xb2\x81\x07\xb2\x94\x45\x55\x25\x64\x45\x19\x5b\x55\x95\xb3\x1f\xed\xc7\xce\x80\x25\x64\x01\x4e\xec\xd0\x9a\x52\x7a\x97\xb0\x3e\xe9\x4c\x48\x14\xb6\x6b\x44\x02\x39\x43\x0f\xd9\xcc\xc2\xf2\xd1\x53\x92\xba\x6e\xee\xba\xbc\x75\xfd\xc5\x58\xe2\xba\xd9\x84\xfb\x31\x99\xa1\x16\x6b\x4a\x72\xd7\x1d\x64\x13\x3e\x2a\xb2\x75\x3e\xe5\xe8\x4e\xee\x4f\x09\xc9\x59\x0b\xb0\x20\xa1\x76\x96\x5c\x14\xb2\xd6\x78\x5a\xbe\x58\xcd\x12\xf1\x6a\x0e\x89\xe5\x61\xb1\x6c\xdf\xab\x09\xda\x9f\x08\xb2\x9b\x00\xff\x22\x6c\x80\x3e\x9e\x05\x3c\xec\x38\xc6\x97\xf4\x4e\xa4\x32\x79\x59\x7e\xcb\x22\x32\xa5\x70\xc5\xc6\x47\xda\xa2\xef\xe4\xea\x88\x2e\xc9\x6d\x70\x85\xb7\x2f\xf3\xd6\x00\x24\x60\x4d\x33\x9b\x37\x8e\x0e\x72\x29\x38\xa2\xfd\x5a\x37\xa7\x92\x5a\x0a\x11\x0d\xe3\x61\xb9\x3c\x3c\x78\xec\x3f\x78\xac\x1d\x1f\xd0\xe5\xe1\xd1\xa1\xff\xe8\xb0\x8d\xb4\xaf\xef\xa6\xfb\xc0\xd5\xfb\x91\x18\xc7\x1e\xdd\x41\xfa\x44\xee\xca\x28\x17\xa3\x63\xda\x88\x1d\x10\x63\x36\xcf\xf2\x29\x9f\xf9\xf9\x80\xb1\xfd\xd1\xfe\x88\xdf\xf0\x69\x0d\x77\xe2\x8f\x9f\x2b\x5a\xe9\xf9\xde\xb8\x41\x3b\x3e\xe8\x83\x62\x57\x8b\xd9\xb9\x74\x06\xa2\x98\xcb\xd1\x3c\x89\x2e\x0b\xd7\xd5\xc0\x18\xb2\x5a\xfb\xc6\x1e\x33\x6c\x81\x7e\xc0\xdd\x65\x5b\x92\xe1\xf0\x98\x63\x4c\x1f\xe2\x7a\xff\x00\x3c\xd5\xa6\xe2\x8a\x74\x7b\x8f\xd5\xa1\x6f\x3c\xc6\x91\x79\x64\x76\x16\x78\xd0\x2e\x52\x90\x65\xb9\x80\x9a\xba\x2c\x52\xa1\x50\x88\x98\x44\x57\x4d\x55\xd8\x4e\x3f\x0d\xca\x70\xa7\x4b\xc6\x62\x0d\x81\x92\x42\x2e\x03\x70\xca\xe1\x20\x29\x0d\xca\x90\x28\xd3\x5d\x71\xa8\xde\xd0\x30\x96\xac\x40\xc4\xb7\x06\x71\x0b\x11\x55\x35\x89\x2f\x25\x8d\xdd\x91\x87\x71\x34\x2d\x4b\x4c\xac\x6c\xfd\xc9\x60\x3d\xba\x4c\xb2\x8b\x28\xd1\x5f\x45\x64\x0d\x89\xd4\x78\x4c\xd9\x7a\xb4\x4e\xe3\x69\x36\xe3\x3b\xeb\x06\x30\x91\x8d\xcd\x06\x9c\xc3\x82\x05\x21\xac\xd8\xf8\x48\xe1\xf9\x90\x39\x93\x25\xd0\x23\xd9\xc8\x99\xae\x72\x8e\xda\x8b\x45\xb0\x0a\xd9\x0c\xd0\xa0\x7c\xe6\xba\xc4\x2e\x57\x6c\xdc\xd8\x4e\xa1\x30\xa5\x14\x56\xc3\x61\x6d\x19\x90\xaf\x26\xa2\x2a\x7f\x51\x87\x6a\x05\x8e\x7d\x6f\x6c\x45\xac\x78\xec\x7b\x8f\xf5\x39\xf7\x91\xff\x00\x05\xcc\x3e\xa8\xfa\x2f\x2c\x0a\x83\x66\x74\xa0\x55\x01\x63\xe5\xc5\xf8\x58\x89\xea\xe3\xb1\x18\x50\x09\xca\x18\xdd\xc0\xd4\xe0\x33\xc2\xdc\x76\x2d\x58\xb0\xfd\xb3\x7b\x24\xb8\xe7\xfe\x9f\xef\xc2\xea\x6c\x76\x36\x9b\x54\xc7\xc1\xc7\x93\xf0\xfe\x09\x95\x1c\xa0\xf3\x96\xee\x5f\xea\xd5\x97\xf3\x55\x12\x4d\xb9\x03\x07\xdd\xf5\x37\xdb\x5c\x7f\x4d\xec\x59\xb3\x02\x23\xb5\x02\x73\xbd\x02\xf3\xbe\x15\x18\x69\x3b\xd9\x1c\x32\x88\xa9\x9f\xca\x27\x35\x6d\x19\xc5\xa8\xb6\x35\x6c\xf2\x8b\x98\xcd\xcc\xfa\x03\x15\x08\xa9\xb5\x02\x63\x6b\x05\xce\xe5\x0a\x5c\xb4\x56\xe0\x16\x48\xe4\x9d\x55\x55\x91\xb2\x89\xeb\x2e\x97\xe3\x2d\x9b\xab\xb5\x8a\xf8\xc6\xb2\x0d\x57\x6c\x6e\xd6\xe8\xdc\x5e\xa3\xc6\x73\xf1\x92\x05\xe1\x91\x5a\x8c\x17\x6c\x4d\xe6\x20\x01\x92\xe5\xd0\xb0\x0b\x2a\x3d\x1f\xe3\x39\xb9\x94\xc7\xfa\x0b\x0a\x83\x5b\x95\x8a\xeb\x54\xb5\xe3\x42\x2c\x60\xd7\x25\x76\x35\x05\x59\x40\x66\xa7\x50\xb8\xa2\xd4\xd4\x7d\x0e\xd7\xcc\x71\xe0\x25\x1b\xc3\x0d\x1b\x1f\xdd\x1c\x5f\x6a\x8f\xc9\x9b\xe1\x90\xde\x5d\xb0\xcb\xe0\x26\x34\xbb\xe9\xb4\x55\x13\xbc\x63\x09\x99\x92\x88\x5c\x48\x03\x0e\x0a\x06\x84\x19\xc6\x14\x9e\x89\x8d\xf7\x89\x79\x47\x9f\x8e\x2f\x74\xa1\x9f\x86\x43\xfa\xcc\xbe\x6b\x60\x8c\x91\x73\x76\x11\x7c\x0a\xe9\xe4\xdc\x57\xa5\x9f\x9b\x20\xbb\x17\xa3\xcb\x3c\x5b\xaf\xf0\x36\x77\x25\x47\xe8\x03\x0b\x4e\x43\x13\xdb\x17\xde\x89\xc1\x32\x2b\xe5\xad\xeb\x7e\x90\xc5\xbf\x95\x45\x3c\x37\x73\xa4\xd4\x7f\x4a\x7b\xf1\x81\x2a\x69\xee\x39\x5b\x92\x53\x58\xc0\x3b\x78\x06\x6f\xc5\x1a\x79\x77\xc2\x5e\xba\x2e\xb9\x1e\xb2\x85\xba\x71\x7e\x09\xef\xe8\xf0\x39\xbc\x64\xef\x86\xa7\xba\x83\x7a\xbf\x5f\x0f\x4d\x2e\x5a\x87\x4d\x64\xcb\x25\x6e\x83\x5c\x9a\x81\xc8\x86\xaf\x59\x3e\xd4\xb0\xbd\x90\xb0\x4c\xff\x9c\xb2\xd5\xe6\x8a\x77\x5d\x12\xb1\x98\x44\x42\x16\x5f\x50\x50\x2b\xbe\x80\x69\xb3\xca\x53\xbd\x9d\x8a\x1d\xa5\xb0\x8d\x9b\x00\x1a\x52\x67\xeb\xdc\x73\x94\x0e\xd5\xb9\xe7\xa0\x52\xd5\x71\x75\x8a\x52\xe1\x3a\xff\xc7\x24\x94\xc6\xd6\x3f\x97\x1a\x58\xe7\xbb\x8d\x77\x6b\xf5\xe6\xd8\xf1\x0b\x16\x05\xb1\x4a\xf6\x60\xcf\xa3\x61\xc7\x45\x57\x52\xe8\x61\xbc\x63\x42\x32\x6a\x25\x8e\x48\x99\x9e\x24\xb2\xf9\x0b\x36\x27\xd3\x7d\x6f\x6c\x14\xa9\x22\xef\x62\x92\xfa\x8b\x63\x96\x4c\xcc\x32\xc9\x82\xc5\x9e\x17\x4e\x4c\x1f\x3d\xea\xcb\xa4\xa1\x9d\x94\xd6\x05\xcb\x02\x8c\xc8\xd7\xb5\xb6\x2f\x26\x8e\xe3\x17\xb5\x81\xdd\xd3\x54\x79\x4b\x9c\xdb\x5e\x2a\xfd\xb5\xee\x0b\x86\x4a\x8f\x35\xeb\xb6\x58\x76\xc1\xa3\xbc\x97\x67\x47\xff\xff\xe0\xd9\xd1\xd7\xf2\xec\x42\x52\xcc\x75\x9b\x62\x26\xac\x68\xa8\xcd\x4e\x4c\x12\xc0\x50\xe4\x85\x4d\xfb\x34\xfb\xce\x48\x01\xeb\xe6\x3e\xce\xce\x04\x49\xf7\xab\x44\xa3\xc1\xb3\xe9\x64\xcf\xf3\xa7\x92\xea\x74\xb9\xac\xb2\xf0\xed\xce\xdc\xd7\x82\x67\x3d\x6a\xe9\x22\x94\x3d\x60\xa4\xb8\xaa\x85\x56\x6a\xd8\xab\x14\x54\xf1\xc8\xfc\xe0\x21\xd5\x9c\x55\x30\x59\x21\x79\x20\x31\x82\x15\x1b\x4c\xdb\x5a\x79\x9c\x0c\x0b\xcf\xc4\xb9\x15\xc7\x1e\xb3\x42\x56\x49\x5c\xf6\x30\xd5\xa9\x92\x58\xf4\x80\xcd\x98\x33\x75\x18\x73\xa2\x8b\x8b\xa9\x76\x89\xde\x27\x17\xf4\xfe\x3e\x0d\xbc\xb0\xaa\x1e\x0c\x98\x53\xf2\xa2\x6c\xde\x4d\x7c\xba\x2f\xf6\xaa\x22\x3e\x08\xa2\xe2\x44\x17\x76\x86\x08\xbf\x37\x19\x44\x19\xa3\xe6\xfd\x68\x42\xc5\xff\x56\x06\xfb\x2d\x25\xcd\x9b\x13\xaf\xaa\x1c\xf3\x6a\x34\x31\x2f\x26\x7d\x8c\xba\x2b\xf6\x35\x4e\x32\xd2\xc2\xa9\x54\x0b\x30\x08\x77\x74\x50\x24\x43\x4e\x14\x22\x6c\x1b\xa0\x15\x29\x2f\xc2\xca\xe2\x2d\xdf\x28\xbe\x4c\xb3\x9c\x3f\x8f\x0a\x3e\x71\x62\xc7\x77\x1c\x3a\x24\x7c\xb4\x5c\x27\x65\x9c\xc4\x29\x9f\x38\x4b\x93\xa8\xd8\xf5\xc4\x59\x9b\xa4\xa2\x8c\xa7\x9f\x6e\x27\xce\x2d\xa6\x60\xcc\xae\x95\x8d\x1e\xdb\x4c\xa5\x5f\x9e\x9c\x9c\x8c\xd5\x89\x59\x4d\xb4\x3e\x38\xc2\x74\xe8\x5c\x3a\xf4\x88\x64\x2c\xd1\x21\xd4\x63\x4a\x5d\x77\x40\x48\xc4\x66\x16\x93\x3e\x99\xa3\xe8\x89\xac\x4c\x13\xd9\x39\x64\x8a\xd1\x52\xc8\x2c\xe0\x6d\x95\x7a\xac\xc1\x70\x5c\x57\x5f\x7e\xad\x41\x87\x4e\xf5\xa8\x58\xbd\x59\x30\x0e\x35\xdb\x99\xb3\x08\x34\x3c\xc2\x09\x5b\x09\x71\xd8\x6a\x80\x20\xb8\xb2\x58\xd7\xb5\x92\x0d\x0c\xfd\xee\x9c\x31\x83\xbe\x33\x19\x14\x22\x97\x58\x69\xc4\x71\x68\x55\xa9\x86\x3b\x0e\xf5\xbb\x7d\xa0\xb4\xa9\x75\x35\x59\x1b\x96\xb3\xa2\xfe\xba\xf6\x9d\xb1\x5e\x30\x8a\x4f\x8f\xb7\x2c\x9a\x0d\x57\x2a\xb5\x4a\x26\x41\xa8\xc5\x43\x83\xd9\x5b\xfb\x29\x58\x14\xb5\x89\x46\xab\x69\x6a\xf6\x55\x34\x35\x6b\xac\x22\x63\x41\x55\x67\x2d\x29\x34\xa6\x18\xe7\xb6\x4f\x0a\xcd\xd9\x94\xcc\x8c\x14\x0a\xb3\x01\x63\x52\xf5\x95\xb7\x28\x6b\x6e\x51\x56\xe5\x72\xd9\x91\x45\x97\x78\x00\x91\x6b\x8a\xc2\x2d\x4b\xf4\x4a\x85\x2b\x46\x92\xde\x15\x9e\xf4\xad\xf0\x64\x73\x85\xaf\xe4\xd2\xbe\x74\x28\x5c\xe2\xca\x5d\x92\xd5\x24\xf1\x9d\x8f\x64\xe2\x3b\xc3\x44\xad\xdf\xa1\x43\x1d\xb8\xa2\x70\xf1\xb9\xa5\xaf\xd9\xfd\x45\x6b\xc7\x22\x53\x6f\xdf\x27\xed\x2a\x6a\xbe\x26\x97\xb0\xa0\x93\x60\x11\xfa\x41\x23\x6b\x9e\xb3\x31\x5c\xb3\x31\xbc\x14\xd2\xf1\xf5\xb1\xfe\xf6\x88\xde\x5d\x5a\xcb\x74\x35\xb9\xf6\xe5\x65\xd8\x0d\x9c\x62\x49\xab\xc9\xc2\xd7\x32\xd9\x35\xb5\x05\xe9\xd3\xaa\x22\x37\x6c\x4e\x0a\x62\x95\x20\xba\x3e\xf6\xaf\xa9\x25\xbc\x52\xc6\xd8\x39\xbd\x66\x11\x59\xc0\x35\xdc\x52\x13\x43\xfa\xa5\x5c\xcb\xba\xf4\x73\x10\x9f\xbd\xd4\xb0\xe5\x4d\x8f\x77\x5f\x9a\x5e\xbc\x63\xde\xd1\xbb\x63\xa6\xe5\xc6\x3d\xef\xe8\x9d\x44\x21\x51\x65\x9d\x06\xef\xc2\x6d\x65\x5c\xb3\x73\x76\xa3\x21\x47\x76\xbb\x95\x8b\xaa\x37\x78\x9f\xd4\x75\x18\x63\x95\xbe\x13\xa7\xd4\xd8\x08\xbe\x28\xb5\x34\xc8\x1d\xbf\x14\x1d\x83\x93\x83\xc3\x31\xdd\x10\x6f\x1e\x3c\x96\x4c\xf2\x10\x6f\xa3\xf7\x47\xfb\x0d\x42\x6b\xd1\xb2\x89\x96\x4a\xa6\x4d\x35\x4a\xe3\xf8\x80\x77\xc7\xf5\xce\x16\x55\xa2\xb3\x1f\xed\x5f\x38\x03\xed\xcd\x79\xa7\xf4\x70\x4e\xe4\x00\x6a\x62\x7c\xe7\xc2\xa9\x69\x4d\x27\x45\xd7\x10\x8a\xb3\xbc\x65\x15\xe6\xec\x9b\xc0\x80\x86\x2a\x3b\xfb\x8e\xd6\xe8\xc4\xe9\x2e\x9f\x70\xa9\xff\xf1\x07\x99\xeb\xb6\x74\x80\xb2\x03\x5a\xb6\xe2\xd4\x60\x5f\x52\xbf\xe9\x8a\x68\x65\x1a\x2d\xb9\xeb\x16\x3d\x3a\xd1\xc8\xb2\xba\xb4\x94\xc0\x07\x87\x63\xff\xe0\x70\xdc\xa3\x56\x33\x8a\xb3\xaf\x8e\x59\xf6\x79\xfc\xcf\x53\x5e\xfe\x7f\x86\xff\x19\xcd\x7a\xa3\x44\xb5\xc1\x3b\x45\x03\x28\x70\xd6\xc0\x77\x72\x84\xef\xdc\x8e\xdd\x79\xd0\x17\x02\xad\xb3\x3e\x3d\x4f\x74\x2e\x4a\xa7\x8b\x96\x3f\xe3\xe7\x9d\x8f\x54\x8b\x22\x47\x43\xb9\x9a\x3b\x5c\xef\xc0\xf7\x3c\x59\xf7\x97\xae\xf0\x75\xdd\x17\xf1\xe5\xb7\x0d\xac\xfc\xc2\x11\xff\xf5\x54\xfb\x25\x35\xa9\xa9\x36\x89\xd3\x4f\xdf\x5a\xb1\xfc\x66\x4b\xd5\x5f\x0c\x35\x66\xaa\xce\x92\x2f\xf8\xf6\x6d\xd6\xbc\xbd\xd6\x6f\x0d\x87\xe0\x79\x63\x8c\x71\xa4\x81\x95\x35\x25\xb9\x13\x9c\xed\xe7\x2c\x4e\xcb\x67\x9f\x0d\xdf\x60\x9a\x30\xf6\x3d\xaf\x89\x0d\x78\xf0\xd5\x61\xbc\x1a\x28\x0f\x7d\xc8\xf3\x3c\x41\x07\x1d\x67\xc4\xd3\x59\xf1\x5b\x5c\x2e\xda\x30\xe3\x0f\x28\x71\xf4\x1b\x87\x5a\x2d\xd6\x89\xdb\xfd\xcc\x39\xd8\x5f\x6e\x5a\x7a\x6d\x09\xbf\x95\xb3\xd8\x8a\xdf\x52\xb4\x82\x7b\xfb\x26\x5a\x4b\x4c\x52\x0a\xb9\x75\x90\xe3\xb6\xbd\x9e\x76\x4c\x5f\x43\x41\xfd\xd2\x38\xff\x6b\x29\x0e\x0a\xc1\x2f\xd7\x7a\x30\x3d\xdf\xf3\x3a\xf1\x58\xe0\xc1\x03\xff\x01\x7a\x75\x7d\x31\x8c\x95\x5e\x59\xf3\xf8\xe6\x4b\x6e\xa3\x1b\x4b\xab\x2c\xb7\xaf\xad\x2f\x9d\xfe\x4c\xbd\x59\x5a\x4e\xb3\xe4\xdb\x49\x88\xf8\xd0\x01\x47\x7d\xdb\x43\x46\xbe\x18\x80\xca\x6e\x42\x11\x7f\x83\xcb\x78\xbb\x05\xf2\xd3\xbe\x06\x7c\xcd\x65\xb6\x87\x51\xaf\x14\x1a\xdd\x3c\xcf\x96\xcf\x15\x4e\x1a\x44\xad\x54\xbd\xc3\x6c\xab\xc5\xc1\x20\x72\x5d\x4f\x70\x3f\xbd\xde\x9a\x05\xde\xfa\xa8\xb5\xca\x0d\x7c\x07\xa0\xc9\x72\xbe\x09\x61\x1a\xb1\xf1\x51\x7e\x12\x1d\xe1\xed\x6d\xc9\x86\x6d\x08\x53\x88\x49\x09\x9e\xe7\x3d\x10\x9b\xcf\x0a\x90\x6b\xe1\x91\x94\x43\x67\x37\x2e\x76\xd3\xac\xdc\x8d\x76\x25\x7c\xbb\x20\x11\xbb\x2b\xd1\x18\x87\x6a\xe3\xe7\xf2\xf8\xd1\xc3\x87\x87\x8f\x26\x19\x29\xa9\x9f\x91\x87\x0f\x0f\x9e\x3e\x1a\x12\x52\xee\x21\x4a\xe8\x23\x7a\x72\xe2\x8d\x29\x94\xff\xcb\x1b\x1f\x3c\x18\x3e\x7c\x74\x78\x30\xa6\x46\x0d\x98\x62\x90\x2a\x62\xad\x3d\x19\xad\xa3\x21\x2a\xdf\x1c\x32\xca\xf3\xe8\x26\xf5\x88\xd3\x69\xb2\x9e\x61\x08\xae\x66\x70\x75\x62\x0f\xb1\x1b\x0c\xfe\x6d\xc2\x72\x58\x1f\x1b\x87\xbb\x6f\x09\xdc\x68\x6d\xef\xee\xb6\xfe\x5a\x16\x19\x97\x51\x12\x4f\xbf\xe0\xac\xbc\xb1\xb2\xe3\xed\xfb\xfa\xab\xef\x12\x91\x57\xa0\x0a\xee\xd1\x23\xaa\xce\x6c\xcd\x10\xf6\xd9\xdb\x19\x52\xd8\x18\xdd\x6d\x86\x6c\x33\xb6\x73\x8d\x29\x5e\x6c\x7c\x4d\x1a\x03\xba\x49\xbf\xe9\x9c\x4f\x50\x3a\x05\xe3\x18\x12\x0f\x4d\x60\x37\xd8\xb0\x95\xa3\x2d\x76\x85\x41\xd6\xc4\x18\x7c\x31\x1e\x92\x1e\xfc\x2f\xcb\x09\xfd\x92\xd1\x22\xe7\xf3\x5e\x8a\xd2\x17\xc0\x68\x93\x37\x7a\xcd\x35\x95\xb6\xe0\x31\x2b\x37\x8f\xae\xfb\x89\x81\x38\xfe\x8e\xf2\xe8\x5a\x05\xbe\xb0\xc2\xf7\xf4\x90\x87\x20\x84\x82\x8d\x8f\xd2\x93\xe2\x88\x2a\x57\x1b\x7d\x6c\x0e\x0a\x44\x39\x86\xe2\x38\x77\xdd\xf6\xbb\x66\x95\x17\x61\xe3\x20\x14\x75\x37\xf2\x96\x00\x63\x07\x7d\xe1\x8f\xba\x16\x52\xb6\x50\x92\xf3\x15\x8f\x4a\x5f\xe2\x7c\xb5\x00\x73\x9a\x22\xbf\x96\x3b\x16\xcb\x28\xf9\x82\x87\xfd\xc6\x4c\xaa\x6f\xb6\x6c\xa4\x6f\x0f\xc4\xb3\x29\xf3\x14\x65\x94\x97\x5b\xa4\x9e\xe6\x5d\x8b\x72\x35\xc9\x9f\x95\x7c\x5a\x5f\xa7\x2c\x26\x46\x72\xf9\x4a\x31\xc8\x2c\x20\xb1\x82\x3e\x27\xe3\xe4\x90\x36\x32\x4e\x0a\xe9\x30\xd7\x5f\x32\xc6\xf2\xaf\x92\x71\xfa\x42\xf5\xf4\xcf\x62\x99\xc7\x9f\xbe\xc0\xe6\x37\xa7\x51\x7d\xb4\x6d\x1e\xbf\x74\x46\x34\x95\xaf\x2f\xbe\xb5\xe6\xf5\x76\xd9\xbd\x2f\x0e\xd0\x96\x6a\xbf\x31\xf8\x84\xfc\x62\x5b\xb5\x5f\xc3\x77\x1e\x52\x22\x61\x76\xbf\xa9\xde\x43\x53\x1b\xe2\x7d\x62\x6d\x5f\xcb\x6c\xba\x28\xc3\x87\x4f\xdb\xa6\xb4\x4f\x55\x74\xdf\xc7\x0f\xe9\xe8\x6f\x2f\xff\x89\x77\x08\x0f\x14\x5c\x81\x37\x7e\x2c\xf1\x0a\xbc\xf1\x43\x09\x58\x80\xc1\xe6\x57\x2a\xac\x8b\x84\x2c\x38\x3c\x90\x98\x05\xde\xa1\x27\x41\x0b\x1e\x1c\x48\xcc\x82\x47\x63\x8a\x70\x05\xde\x53\x09\x56\xf0\xe8\x40\x82\x15\x20\x15\xbe\xd6\x00\xc7\x2f\x95\xb5\xdf\x8d\x72\x96\x39\x65\x88\xb7\x03\xef\x94\x95\xe0\x33\x65\x35\xf8\x49\x42\x9f\xc0\x5b\xf6\x6e\x34\x87\x0f\xec\xd9\x68\x0e\xcf\xd9\x29\x42\x0f\xe8\xf0\xfd\xf0\x33\xcb\x47\x7f\x3d\x7d\xf7\x13\xfc\xc4\x7e\x76\xdd\x9f\x47\x12\x98\x38\x9e\xdf\xc2\xef\x6c\x45\x9c\xf3\x45\x3c\x9b\xf1\xd4\xa1\xf0\x5a\x3c\xb6\xc3\x07\xbd\x60\x77\xf5\x68\xa5\xec\xac\x5f\x17\x2f\xa5\xe1\xf7\x45\xc2\xe1\x0d\x9b\x12\xa7\xc0\x1a\xf6\x72\x7e\x19\x17\x65\x7e\xeb\x50\x78\xd5\x24\x0b\x11\xe8\x4f\xf1\x98\xad\xf6\x9a\x94\x1f\xd9\x06\xb8\xc6\xf7\x7d\x17\xf8\xef\xe1\x17\x96\x8f\xfe\x2e\x33\xc3\x1f\x6c\xf0\x4b\x55\x0d\x7e\x69\xbe\x6a\x3f\x61\xa8\xec\xe7\x8b\x38\x99\xc1\x6f\x2c\x73\xdd\xa4\x47\xaf\xf3\x78\xc0\x6e\xc8\x07\x72\x57\x23\xd3\xbc\xeb\xb7\xe5\xfa\xd0\xb0\x55\xc5\xde\x1f\xd7\x74\x14\xd5\x35\x15\xff\xd2\x49\x3f\x43\x79\x4b\x7e\x44\x77\x04\xe3\x74\xf0\x63\x50\x86\xf0\x41\x3b\x55\xe4\xae\xcb\x07\x8c\xfd\xe8\xba\x1f\x44\x46\xc8\x69\xed\x7f\x80\x5f\x7b\xbc\xaf\x5f\x05\x3c\x64\x37\xe4\xbd\xe5\xd9\x62\x20\xf0\x46\xe7\x9f\x18\x87\xb2\x86\x7f\xb2\xef\x5d\x57\x0d\xb2\x35\x60\x23\x1d\xd3\x7f\xb2\xb9\x8d\x36\x72\xf3\xba\x17\x6c\xb5\xa5\x4a\xab\xe1\x87\x6d\x28\x8c\x9c\x61\x77\x7e\x20\x7f\xca\x1e\x4a\x29\x8c\x5d\x2b\x07\x93\x4b\x71\x5c\x8d\xc9\x2b\x28\xe9\x84\xa4\x23\x6e\x96\x0d\x02\xad\xc3\xef\xd4\x75\x79\xf0\x7b\x18\x94\xa1\xeb\x12\xf5\x8b\xa1\xa7\x2d\xbb\x21\xa9\x71\x30\xb8\x48\xb8\xff\x92\x8c\x31\xd0\x21\xa5\xbe\xfa\xb6\xaa\xc4\xc0\xfe\x0e\x2f\x89\x07\x77\x35\xa5\x60\x0a\x18\x53\xf8\x4d\x35\x94\xfa\x7a\xf4\x6b\xf8\x5b\xc7\x4e\x11\x39\x8b\x15\x9d\x81\xdd\x22\x34\x41\x49\x05\x51\x18\x63\xe4\x2a\xa5\xc9\xce\x4e\xe2\x23\xfa\x03\xe1\x90\xb2\x3c\x88\xc5\x59\xa6\x0c\xd2\x26\x1e\x26\xaf\xe1\x5e\xcf\x24\xbe\xb0\x6f\x37\xd8\x35\xc1\xe8\x7c\x8d\xb3\x8a\xf2\x4d\xfd\xd1\x75\xc5\x08\x71\x09\x7f\xfc\x27\x70\x8a\xc6\x9a\xa4\x44\xf4\x3b\xa5\x00\xc1\xdf\xaf\xf0\x87\x4a\x13\x63\x87\x11\x08\x7f\x0f\x03\x1e\xd2\xaa\x2a\x69\x0d\x7f\xdf\x44\xcd\xe0\xec\xbc\x3d\x27\xb8\x02\x55\x79\x25\x96\xf7\x27\x94\x54\x5b\x6d\xbe\x95\x86\xce\xda\x2c\xb3\x95\xaf\x35\x61\x55\xd5\x9a\x50\x1c\xf4\xb4\xae\xe1\x1f\xfd\x90\x8f\xe8\x1f\x2a\x5a\x22\xf8\xba\x74\x78\x6d\x21\x50\x60\x2d\x4c\xa1\x50\x54\x55\xc9\xd8\xef\xf8\xef\xba\xaa\x72\xed\x21\x63\xbc\xc6\x6a\xf8\xd7\xd6\x5a\x70\x45\x42\xce\x9e\x93\x74\xf2\xa7\x2f\x6b\xcc\x44\x8d\x78\x38\xd5\x35\x46\x47\x54\x76\x8c\xe5\x32\xbc\x46\x55\xa5\x38\xfe\x3f\x62\x5f\x33\x59\xe5\xab\xa0\x6c\x26\x39\xab\x77\xbe\xaf\x2a\x52\x10\xf2\xde\xf6\xe5\x56\x5e\x38\xad\x0d\xa3\x0e\xb6\x06\x5f\x86\x38\x92\x04\x37\x67\x5b\xcb\xcc\x73\xe0\x48\x6d\x3d\x67\x8b\x4d\x21\xa9\x5f\x81\x0b\x16\xae\x66\x2a\xcf\x41\x72\x21\x29\xdb\xe5\x3f\x01\xb7\x9d\x59\x27\xf2\x67\xf0\x7b\x88\xab\x8c\x34\xcb\x06\xf7\xda\x6f\x5a\x7a\x13\x1b\x29\xa5\x06\x4d\x66\x37\x73\xdd\x3f\x5c\xf7\x37\xf2\x63\x9f\x09\x6c\xc1\x4b\xbf\xac\x29\xfc\x8a\x5e\xe5\x5f\x09\x91\xa4\xdc\x8c\x3e\xd5\x14\xde\x8d\xe6\xec\xef\xf0\x6c\x34\x67\x3f\x80\x32\x7b\x16\x0c\x8b\xfd\x43\x3c\x3d\x15\x4f\xf7\xc4\xaf\x87\xe2\xd7\xbf\x20\x73\xdd\x01\x22\x07\xb9\x6e\x41\x7e\x04\xa7\x8f\x15\x39\x70\x0f\x17\xf8\x6c\x34\xef\x73\x8a\xff\x95\xac\xd0\xe9\x86\x42\x44\xa2\xd1\x0f\xc3\x68\xf4\xdb\x30\x1a\xbd\xba\x3f\xf8\x1e\xee\xe4\xf4\xf8\xef\xeb\x86\x1e\xfc\x95\xd9\x71\xd9\x20\x2e\x9e\xe3\x55\xc4\xe9\x2a\xe7\xd1\x0c\x39\x9f\x26\xb3\x80\x86\x9d\xa0\x0c\xec\x40\xda\x8c\x80\x02\xec\x01\xbc\x23\x05\x8b\x9b\x82\x85\x40\x05\xeb\xb4\x98\x66\x2b\x51\x5c\xd1\x02\x4a\xe7\x9c\x8d\x8f\xfe\xaa\x57\x01\xe7\x47\x74\x45\xfe\x1a\x70\x19\x85\xd7\x2c\x77\xce\x3e\x91\xd5\xa8\x28\xb3\x9c\x53\x48\xc5\x27\xa5\x3e\x94\x9e\xa4\xfc\x88\x2e\x49\xc9\x83\x54\x7e\x84\x9e\x40\xba\xc3\x6a\x3d\x3a\x20\xb6\x4e\xbf\xe6\xf5\x0d\xf0\x21\x73\x1c\x3a\x79\x13\xf0\xd0\x17\xff\xb0\xf7\x62\xaa\xe1\x13\xbf\x7d\xd5\xf9\x28\x9e\x93\xc1\x3f\xc5\xe0\x76\xd7\x3d\xb7\xf5\x39\x92\xf5\x88\xe5\x6e\x3a\xb0\x1b\xa7\xbb\x6f\x68\x3c\x27\x6f\x04\xdd\xb6\x02\x4a\x97\x35\xac\x0b\x7e\xca\xcb\xd2\x86\xe5\xa6\x77\x7f\xb0\xc1\x58\xbe\x8a\x97\x2b\xdb\x65\x06\x5f\xa1\x97\x5a\xbb\xa3\x5d\x2c\xcc\xcf\xdf\x4d\x97\x93\x1b\xc2\xa9\xff\x37\x72\xa3\xdc\xc4\xa0\xe3\x50\xf9\x03\x6c\x00\x5f\xfe\x0d\xb6\x7a\xa1\xfd\x1d\x7a\x50\x14\xfd\x7f\x74\x52\xe5\x5c\x14\xfe\xbf\x6a\x0a\x3f\xbb\x6e\xd3\x7e\x32\xf8\xbe\xaa\x92\xcd\x6b\xb2\xf7\xc4\x5c\x91\x49\x77\x5a\x67\xc0\x7e\x22\x92\x0b\x38\x77\x35\x3e\xdd\x45\x3e\xaf\xad\x67\x39\x0e\x72\x03\x50\x70\x84\x1c\x88\xa7\x3a\x25\x02\x6e\x53\xf4\x09\x62\xcd\x43\x88\x99\x77\xb4\x41\x9b\xe2\x23\xaa\x48\x73\x43\xa3\xd0\x9d\x10\x2f\x72\x99\x20\xad\x5e\x08\xe4\x02\xa1\x02\xcd\xdd\x3c\xf2\xb9\x7f\x5a\x36\x21\x57\xf8\xbe\x05\x15\xac\x58\x57\x8f\x34\x98\x22\x7c\x50\xd7\x6c\x80\xc2\xe0\x9f\x82\x6d\x9b\xc5\x43\x41\xd4\xcd\x4a\xf8\x49\x99\x57\xfc\x8c\xc8\x2b\x14\x2c\x81\x2a\x78\x1d\xea\xe8\x97\x56\x2a\xbc\xb6\xf3\xe8\xd0\x0d\x14\xe6\xe4\xbd\xd9\x35\xe2\x49\x9c\x6b\x75\x64\x14\x41\x74\xe6\x44\x09\xd7\x6a\x68\x15\xe8\x9b\xc1\x24\x78\xec\x7b\xe3\xc7\x56\x10\x74\xe5\x42\x7b\xf0\xc4\xf7\x0e\x9e\x80\x77\xe8\xf9\xde\xa1\x07\xde\xe1\x81\xef\x1d\x1e\x34\x58\x05\x78\xe3\xa8\x6e\x1a\x0f\xfc\x07\x07\x3d\xae\xc9\x2a\x7e\xc1\xa1\xff\xf0\x10\x1e\x8d\xfd\x47\x63\xed\xac\x2c\xb1\x0a\x10\x98\xaf\x27\xae\x01\x62\x75\x4a\x83\xff\x27\x0f\xfd\x27\x0f\x15\xde\xe1\x93\xa7\xfe\x93\xa7\xd2\x89\xa5\xb9\xcf\xec\x8b\xfc\xf9\x05\x9d\xc3\x63\xad\x4b\x7a\xd4\x76\xed\x47\xbd\xf5\x5a\xab\x25\x12\x75\xf2\x99\xaa\x08\x07\x18\x20\xf7\xfb\xf5\x7c\xce\x73\x75\xb4\x7a\x22\x8e\x56\x59\xeb\xc5\x8a\x65\xa3\x17\x51\x19\xfd\x1a\xf3\x6b\x74\x52\x7a\xf6\xfd\xaf\xae\x3b\x1d\xc5\x05\xa6\x2c\xd9\xc2\x9a\x40\xd4\x0f\xc0\x2d\x8b\x47\xbf\xbe\x7e\xf9\x9b\xc1\xb8\xfb\x4d\x2a\xc2\xa7\x03\xc6\x16\x14\xee\xac\xe2\xfd\x85\xf6\x74\x95\x18\x0b\xf1\xe8\xf9\xbb\x9f\x4e\x3f\xbc\x57\x31\x85\x65\x26\xf4\xdc\x13\xb5\xf5\xd1\xce\x99\xeb\xce\x10\xe5\x2c\xc1\xd8\x01\xb7\xda\x8d\x10\xb4\xae\xe5\x97\xcf\xc5\x33\x1a\xa4\xfc\x7a\x77\x41\x0e\xa8\xb1\xd7\x54\x4c\x7f\x74\x71\x5b\xf2\x37\x26\x86\x56\xbb\x35\x7d\x51\xb5\x8d\x69\xd6\x80\xb1\xa5\xeb\x36\x44\x4e\xef\x93\xa5\xdc\x46\x91\xb2\x59\xb1\x85\x61\xa6\x12\xad\x4a\xa5\xfb\x0e\x4a\x16\xac\x20\x9d\x70\xdc\x29\x9a\xe6\xf0\x6b\x22\xa5\x21\x58\x50\x4a\xd6\x24\xde\xcb\xa9\x98\x64\xd1\xa5\x95\xaa\x65\xaa\x9e\x32\x71\x42\x1e\x1f\xe5\xc7\xf1\x11\x9d\x8e\x0a\x5e\xfe\x12\xa7\xe5\x13\x32\x1b\x0e\x21\x19\x5d\xea\xc7\x7c\x38\xa4\x96\x04\x56\x37\x60\x34\x76\xff\xdb\x30\x20\x1a\xfe\xa3\x1d\x85\xdb\x3b\x78\xe4\x7b\x07\x8f\xc0\x3b\x78\xec\x7b\x07\x8f\xb7\x41\x57\xc8\xcd\x83\x8b\xfe\x2b\x82\x23\x35\x4b\x69\x20\x17\xbd\x58\x8b\x70\xa7\x57\xa7\x2f\x37\x80\x59\xad\x4a\x4f\xd9\x6e\x88\x51\x2a\xf6\x45\x91\x15\x05\x3c\xa4\xc4\x41\x78\xc7\xc3\x03\x07\x1e\x7c\x5e\x2d\x8c\x96\x4d\x1d\x05\x89\x4c\xd4\x4a\xd2\x87\xbe\x77\x80\x4a\x92\xbe\xd0\xab\xad\xea\x1e\x3d\x70\xe0\xc9\x7f\xae\xba\x1e\xbd\xa5\xae\xee\x75\x5a\x7a\x8f\xda\x46\x94\xff\xcd\xca\xfa\x83\x70\xeb\xca\xfe\xc3\x03\xd9\xa3\xc9\xb3\x2a\x7b\xd2\x36\x1f\xfe\x6f\xd6\xd5\xa3\xbe\xd3\x75\x89\x1d\xf3\x1f\x1e\xc6\x1e\xad\x9d\x5d\xdb\x7f\x78\x1c\x7b\xb4\x76\x76\x6d\xff\xd1\x81\xec\x0b\x82\xf9\x9f\xab\x4c\xb3\x7f\xab\xbe\xaf\xb2\x99\xd0\xa1\x7e\x64\xc8\xb3\x43\x4a\xc6\x92\x7b\x3e\x55\xdc\xf3\xf1\x43\xa5\x8f\x7c\xa2\xa0\x53\x3d\xe3\x01\x2c\xf9\xe5\xe1\x58\xa9\x22\xc5\x8f\x15\x1b\xc4\xa3\x67\x53\x71\xe8\xf8\x87\x94\xff\x5c\xd7\x69\x3d\x63\xa0\x64\x98\xb1\x42\x50\xdc\xdf\x78\xf4\x09\x96\x7d\x7e\xeb\xd2\x80\x71\x8e\x07\x0d\xb8\xea\x3b\x5c\xfd\x07\x4c\x92\x2e\xd9\x46\x50\x62\x74\x36\xe6\x54\xeb\x53\x66\xcd\x4d\xc0\x40\xb2\x9e\x5b\xcd\x6f\x1c\xd1\x78\x8c\x35\x8c\x21\xf0\xd1\xd1\x73\x62\x30\x2e\x42\x03\x24\xb0\x3d\x6c\x71\x82\x96\x4f\x1b\xc5\x81\x0a\x59\x7c\xc1\x36\xcc\xb3\x74\x1e\xb8\x82\x4b\x48\x60\x30\x16\xb3\xbe\xb3\x70\xdd\x95\xeb\x92\x35\x21\x39\x43\x46\xf6\xbc\x39\xea\x93\xab\x56\x43\xad\x18\x72\x14\x8a\xd1\x4f\x2f\x5f\xbe\x60\x83\x31\x64\x24\x70\xa4\xfa\xd0\x01\x71\x06\x75\xc0\xb9\xe4\x68\x30\xc0\x4b\x27\xec\xf1\x02\xb8\xb0\x4a\x4a\x59\x19\xf0\x70\x27\x22\x25\x70\xb0\x16\x6b\xac\x46\xb3\x14\xe2\xf7\x52\x08\xcb\xea\xfa\x74\x2e\x64\x6f\xf9\x4b\x22\xd2\x49\x6d\x44\xa6\xee\x48\xe7\x01\x0f\xf1\x73\x7d\xe2\x10\x8d\x60\x8c\x4b\x17\xda\xac\x6e\x1b\x76\xab\x4d\x10\x23\x76\x97\x6d\x25\x76\x70\xe8\x1f\x1c\xc2\xa1\xe7\x1f\x7a\xd2\x56\xac\x8d\xab\x23\x85\xd4\x27\xfe\x63\x0b\x19\xb9\x2f\xa2\x6b\xbf\x11\x9d\x67\x19\xd1\x59\x73\xf3\x3f\x6e\x3e\xa7\x1b\x21\x16\x11\x7a\x92\x43\x0e\x03\xaf\x1b\xfb\xba\x19\x13\xec\xf5\x37\x87\xdd\x78\xa2\x25\xed\x43\xed\x5c\xa8\xe0\x02\x3c\x15\x21\xf1\xe0\x91\xb9\xe3\x44\xa1\x49\x9c\xfa\x93\xa8\x7c\x1b\xad\xfa\x63\xca\xa8\xeb\x3c\x0b\x2d\x49\x81\x06\x99\x1b\x36\x48\xd9\x9a\xe4\x30\xa6\x10\x93\x14\x72\xc8\xa1\x84\x31\x78\x60\xd9\x28\x04\x5e\x88\xfa\x40\x14\xd8\x1e\x51\xe2\xa8\x2a\xa5\xac\xd6\xf5\xe0\x91\x08\x4c\x8f\x7c\xef\x11\x1c\x3c\xf2\x0f\x1e\x69\xb9\xec\x89\xff\x00\x01\xd5\xfa\x22\xd4\x7e\x76\x54\x0e\x0e\xa4\x11\x41\xa7\xdf\x9f\xb1\xbf\x30\xc6\x66\xdf\x60\x67\xa1\xfb\xd6\x98\x6b\x88\xce\xc9\x6e\x1c\xf8\xf6\x1d\xf4\x17\x02\xcd\x4a\x0c\x6e\xaf\x69\xb3\x0d\x8e\xce\xd3\x32\x8f\xb7\xb5\xb9\x1d\xc9\xed\xa9\xe7\x3f\x45\xf4\xb5\x2f\xc4\x9a\x95\xf5\xe9\x7b\xe1\x03\x4f\xae\x9c\x27\x6a\xe1\x1c\x3e\xd8\x6c\xc4\x36\x1d\x47\xf1\x19\xcd\x41\x26\x5d\x8e\xa2\xd1\x1c\x03\x13\xe5\x82\x57\xdd\xd5\x30\x67\xe3\xa3\x44\x8f\xed\xfc\x88\x9a\x43\x0a\x91\xcb\xaa\x64\x49\x30\x47\x63\x00\xd7\x2d\xc8\x54\x22\x9e\xa9\x0e\x4f\xdb\x77\xfd\x87\x0f\xfc\xc3\x07\x36\x80\x4f\x83\x62\xf2\x85\x00\xb9\xcd\x88\x7b\x9b\x9d\xc5\x53\xff\x37\x0e\xf8\xb7\xc2\x47\x1d\x2a\xa7\xe0\x87\x9e\xf6\x14\x7f\xa2\xee\x1c\x1f\x35\xd6\x44\x2d\x30\xcd\x79\x9c\x46\x49\x72\xdb\x73\xff\x2e\x0f\x6b\x10\x6b\x3c\xce\xaa\xca\xf4\x4f\xb1\x57\x7b\xf4\x28\x7c\xc7\x56\xc8\x4a\xe8\xc5\x89\xad\x53\x36\x7b\xbf\x04\x4e\x68\x17\x56\xb2\x01\x79\xaa\x69\xed\x73\xf8\xb6\x6f\xa5\x96\x50\x7e\x6a\x7c\xfc\xe4\xa9\x4d\x42\x31\x5a\x61\x09\x25\xb4\x22\x8e\xf0\xd7\x5e\xea\x36\x76\x59\xc6\xef\x5a\x1a\xbd\xff\x2a\x21\xdd\xcf\xf6\xbd\xf1\xd9\xe8\x6c\x36\x24\xf8\x2f\x9d\x90\xdd\xb7\xd9\x45\x9c\xf0\xb3\xfd\xb3\xeb\x21\x9d\xec\x9e\x46\xf3\x28\x8f\xcf\xf6\xf7\xa5\x9f\x4c\x66\x5b\x77\x45\x96\x4d\xc4\x2a\x9a\xbd\x4c\x7b\xf9\xc0\x37\xd2\x12\xbc\xd8\x52\x97\xd8\x87\xbe\xe7\x1d\x1a\xd0\x4a\x43\x40\xfa\x62\x0a\xff\x8f\xf7\xfe\xb4\x8c\xb6\x45\xc8\xff\xc6\xfe\x8f\xbf\xd8\xff\x2f\xc9\xcf\xb6\x01\xc1\x1b\x3e\xff\x46\xd6\x2f\xc6\x1f\xf0\x5b\xec\x93\xd3\x31\x28\xf8\x62\xd8\x62\xbb\xf6\xf7\xf1\xe5\xe2\x1b\xab\x3f\x30\xd5\xbf\x4c\x67\x1b\x95\xf7\x1f\xd4\x0f\x3d\x4a\x9c\xa8\xb8\x4d\xa7\xaf\xd5\x45\x84\xfc\x50\xaa\x12\xf1\xc3\x1e\xae\x69\xa1\xe3\x13\xef\xc1\x43\x13\x35\x05\x97\xca\x53\x1d\x64\xd9\x93\xa4\xe8\xa1\x82\xa0\x79\xf4\x54\xb9\x4f\x0a\xa2\x35\x65\x09\x71\x62\x53\x25\xcc\xc5\x73\x2b\xaa\x06\x2c\xd8\x5a\x6a\xec\x60\xc5\xee\x9e\x9f\x9e\xbe\x5f\x27\xfc\x4d\x5c\x94\xfe\x60\x0c\xcf\x4f\x4f\x4f\xcb\xdb\x84\xbf\xe0\xd3\x24\xca\x31\xe0\x96\x3f\xf0\x44\xf2\xaf\x82\xea\xca\x6c\x1e\x3c\x4f\x62\x9e\x96\xef\xf9\xb4\xd4\x29\x2f\xde\xbd\xed\x3c\xca\x2a\xad\x84\x0f\xd9\x27\x9e\xea\x8a\x5e\x44\x65\xf4\x21\x8f\xd2\x62\xce\xf3\xd7\x25\x5f\xea\x7c\xaf\xe2\xc4\xd4\xf2\xe3\x87\xb7\x6f\x9e\x25\xc9\xf3\x2c\x49\x24\x62\xba\x4e\xdc\x4c\x79\x95\xe5\xcb\x97\x09\x17\x2b\x57\x27\x9d\x72\x91\xc7\x4a\x7c\xcb\x67\x71\xa4\xeb\x7f\x1b\x2f\xf9\x87\xdb\x15\xc7\x81\x10\x6f\x7f\x8a\x96\x7c\xf6\x53\x36\xe3\x42\xf2\x12\xcf\xd9\xcc\x8c\xca\xcf\x51\x2c\x7a\xfb\xc7\x9a\x17\xa6\x87\x3f\x27\xeb\xcb\x38\x6d\x7e\x99\x82\x4e\x7f\xfd\x41\xaa\xe4\x74\xce\xd3\x5f\x7f\x90\xc1\xcd\xac\x84\x9f\xa3\x72\x71\xca\x2f\xed\x94\x2c\x4e\x4b\xeb\xb9\x3d\x7c\xa7\xbf\xfe\x20\x47\x2b\xcb\xcd\x50\x9d\xa2\xd3\x8d\x54\xb2\x99\x34\x31\x79\xa7\x0b\xce\x4b\xdd\xf6\x0f\xfc\xa6\xfc\x90\x47\xd3\x4f\xcf\x9b\xe9\x33\x69\x26\x21\x5b\x4f\x75\x7b\x6b\x98\xb1\x98\xac\x28\x2c\xd9\xf8\x68\x79\x3c\xd3\xb7\xec\xcb\xe1\x50\x72\xb4\x5b\xb8\x62\xb3\x60\x19\xc2\x25\x5b\x05\x57\x21\x5c\xb0\x48\xfc\x39\x67\x17\xae\x6b\x1d\x76\x76\xe2\x39\x39\x77\x5d\x72\x1e\x4c\xc3\xaa\x2a\xc8\x39\x4c\x61\x41\xe1\x3c\x98\xab\xc7\x39\x5c\x51\x58\x07\x57\x21\x5b\xc0\x25\xa5\x62\xed\xa3\x36\x36\xa7\xe7\xc1\x6d\x58\x55\x19\x39\x87\x5b\xc8\x83\xdb\x50\xc9\xe7\x77\x0d\x48\xf0\x43\xdf\x6b\x54\xec\x52\xb9\xfe\xd4\x7f\xf4\x54\x87\x05\xd2\xa7\x94\x2f\x84\xcc\x55\xa4\xf8\x71\xa3\x2e\xfc\x1e\xa1\xb9\x5e\x2f\x97\x62\xad\x94\xdc\x47\x1c\x31\x98\x26\x3c\xca\xed\x44\x4c\x50\x24\x51\xe2\x18\x37\xa4\xf0\x33\xb2\x9d\x36\x68\x7a\xd0\x26\xfe\x41\xa8\x14\xe1\x05\xdb\x7f\x7b\xfa\xfa\xe5\xee\xe8\x6c\x64\xe8\x3b\xac\x3f\x7b\xa2\xb7\xca\xdf\xa0\xe6\x07\x10\xb3\xc1\x00\x0d\x36\xa5\x2a\x59\x67\x80\x83\xc6\x38\x82\x58\x86\x28\xf4\xae\xef\x56\xa7\x9c\x94\xfe\xab\xc6\xb4\x55\x41\x1f\x2b\xa1\x86\xd6\xa8\x5f\xae\x6b\x84\x7f\xfc\x61\x18\x8f\xbe\x47\x00\xd5\x02\x07\xf2\x43\xbc\xe4\xd9\xba\xf4\xd7\x24\x1f\x35\x8f\x54\x9c\xf3\x5f\xa7\x25\xcf\xaf\xa2\x44\xbf\xd3\xcf\xca\xa6\xd3\xe6\x30\x0d\x6c\x71\x5f\x4c\x61\x4e\x0e\x9e\x3c\x12\xc2\xfe\xc1\x93\x87\xf2\xcf\x03\x0a\x2d\x75\xc0\xa1\x28\x51\xd0\xdb\x83\x27\x0f\x70\x4d\x1c\x3c\x79\x88\x13\x75\xf0\xe4\x91\x94\x69\xb0\xec\xad\x88\x60\xf6\xf8\x6f\x70\xf5\x12\xd2\x4d\x5b\xa9\x9c\xa5\xa3\x45\x54\x58\x32\x39\xc4\x7d\x82\x9e\xbc\xb2\x9a\xa8\x0b\xee\xbb\x1a\x32\x16\x1b\x03\xa1\xaa\x72\xfe\xf7\xff\x36\xa4\x1c\x22\x16\x8f\x5a\x0c\x05\xdf\xb7\x59\x0c\x14\x2c\x1e\x59\xd4\x1e\xb3\xd8\xd4\xbf\x01\xd6\x58\x2b\x57\x78\xe3\xc4\x8b\x91\xef\x4d\x17\x6c\x8b\x89\xe5\xa4\xf4\x97\x0d\xa0\xa0\xbc\xab\x25\xb1\x8d\xeb\x1b\xa1\x76\xe2\x13\xc9\xab\x2a\xb0\x8c\x32\x46\xe7\x71\x7a\x95\x7d\xe2\x1b\x06\x4a\xca\x9d\x77\xa7\xbb\x9c\x63\x90\x11\xf3\x73\xc6\xd8\x42\x5d\x58\x8b\x92\x95\xa1\xc6\x0f\x3c\x95\x3d\xdd\x8d\x8b\xdd\x28\xc9\x79\x34\xbb\xdd\xcd\xd7\x69\x2a\x84\x1e\xe9\x0a\xcc\x18\x5b\xc9\xfb\x49\xfc\xda\x61\x8c\xc5\xaa\xa0\x6c\xc7\x98\x8f\x49\xe0\x96\x74\xb4\xe4\xe5\x22\x9b\xb1\x18\xd2\x51\x94\x5f\xb2\x4c\xc3\xc7\x44\x2c\x1d\xcd\x78\xc2\x2f\xa3\x12\x09\x59\xa4\x91\xde\x4f\x49\xa4\xf0\xf6\x0a\xac\xa5\x60\x8c\xcd\xe8\x34\x4b\xcb\x38\x5d\x1b\xb9\xbd\xa8\x6b\xd1\x82\x94\xdf\x94\xa2\x01\xba\x1e\x9a\x8e\x0a\x9e\x96\x2c\x1d\x9d\xab\xbf\x51\x7e\xb9\xa3\x03\xfe\x37\x0d\x36\xf9\xf5\x50\x4c\x55\x0f\x72\xb6\x92\x2d\xdd\x49\x47\xb3\xb8\x58\x45\xe5\x74\xf1\xf2\x66\xca\x57\x52\xb8\x17\x6f\x24\x1c\x8b\xa3\xf4\x41\x56\x61\xae\x9b\x8e\xa2\x8b\x7c\xbd\xc2\xf8\x24\xf8\x56\x96\x45\x77\x72\xb6\x50\xd8\x51\x89\x85\x61\xed\xa4\x59\xbe\x8c\x12\x51\xc6\x7a\x84\xd3\x2c\x9b\x93\xa2\xb7\xf5\x64\xe5\xcf\x61\x8d\xa3\xd6\x33\x02\xca\x2a\x0f\xdf\x4b\xc3\x7b\xf9\x55\x5d\x37\xbd\x94\x85\xba\x2e\x91\xbd\x52\x53\xa1\xde\xab\x09\x59\xcb\x2e\xd5\x35\xe1\x88\xeb\x01\x59\x6d\x56\xb0\x6e\xeb\x5d\x83\xfb\x78\x27\x4a\xf4\x75\xc3\x85\x7c\xeb\x73\x6d\x92\x2c\x88\x94\x89\xfe\xd1\xca\xae\x6a\x14\xb9\xf3\xba\xae\xf9\xe8\x3a\x8f\x56\x6c\xad\xa0\x35\x9c\x62\x5d\xac\x78\x3a\xe3\x52\xa0\x76\x60\x6e\x25\xfd\x33\xe6\xc9\xcc\x81\x05\x73\xf8\x0d\x9f\xae\x4b\x14\xbe\x57\xcc\x99\x66\xcb\x55\xc2\x4b\x3e\x73\x60\xc6\xee\x6a\x1b\xcf\x86\xde\x35\x5d\xb8\x6d\x3d\x5d\x89\x27\x09\x64\x74\x57\xef\x5c\x06\x59\xc8\xfa\x6d\x74\xea\x1d\x09\x71\xa4\x36\x64\x1b\xd2\x56\x31\x62\x72\x41\xde\x92\x20\xa4\x94\xee\x9c\xbb\xee\xf9\x80\xb1\xd4\x75\x55\xa8\x92\x73\xc8\xa8\xeb\x92\x4b\x76\x2e\xd5\x89\xd7\xec\xca\x8e\xe1\x6f\xfd\x6e\x6f\xf9\x4b\xda\x74\xe4\xa5\xa0\x86\x81\x5c\xe2\xa0\x87\x50\x2f\xac\x70\x34\xcf\xf2\x97\xd1\x74\xd1\x1c\x2c\x4b\x7a\xc7\x83\x32\xec\x63\x66\x4a\x0f\x8c\x94\xc2\x04\x6e\x35\x15\xdd\x34\x71\xaa\xec\x8c\x96\x8d\x15\xc4\x16\xa2\x7c\x46\x5a\x18\xc7\xea\xa0\x6d\xb5\x43\x50\x18\xf3\xb8\x5b\x22\x0a\x41\x06\x66\x83\x27\x84\x07\x69\x08\x1c\x62\xb9\x09\x64\xcf\x06\x8c\x15\x6a\x0f\xc8\x8d\x52\xe0\xca\x9e\xb2\xb5\x02\x1b\xd0\x1a\x10\xd7\x75\x64\x9c\xb9\x86\xc8\x4f\xcd\xb8\x4f\xc1\x39\x3f\x8f\xae\xa3\xb8\x74\xe8\x44\xb5\xcc\x04\x59\x98\x8e\xd4\xbb\x9e\x28\x11\xa5\xa2\x25\xc0\xb1\xa9\x6d\xb0\x99\x52\x37\x52\xbf\xa5\xfe\x46\xd9\x7d\x91\x27\x14\x30\x27\x87\x8c\xac\x3b\x45\xea\x89\xd9\x28\xb9\x8e\x48\x21\xb7\x24\xc5\x81\x13\xa3\x59\x1b\xef\xad\x92\x95\x13\x15\xb6\x2c\x83\x8c\xfa\x19\xa1\x75\x33\x91\xa7\x78\x3f\xad\x85\x21\xc3\xe6\x02\xbd\xf5\x43\x4d\xbf\xe5\xed\x78\x43\x80\x11\x55\x02\xb6\x90\xc7\xa6\xa0\x91\x6c\x85\xeb\x36\x74\xbd\x4d\xe8\x58\x09\xb2\x0d\x7d\x65\xe9\x6b\xf7\xd9\xce\x16\x52\x24\x56\x93\x65\x33\xf8\x61\xc1\x77\x75\xcd\xbb\xb3\x8c\x4b\x3b\xaa\x55\x9e\x5d\xc5\x33\xbe\x1b\xed\x7e\x87\x1f\x7f\xb7\x2b\xcb\x72\xcc\x18\xcd\x6a\xc9\x6e\x13\x92\x43\xd3\x76\x4d\x89\xdb\x7c\x4b\xae\x38\xa3\xc4\xef\x6d\x56\x8c\x0b\xb1\x3b\x58\x33\x75\x4d\x80\x6f\x0d\x3b\x9e\x64\x92\x74\x93\x34\xc0\xb5\xb1\x4e\x4a\x71\xec\x09\x59\x26\xd7\x02\xa4\x23\xb1\xcc\x18\xc7\x3f\x6f\xb2\xa9\xd9\xd0\x03\x9b\x8f\x58\xe3\x2b\x57\xa5\x1a\x5d\xba\xd9\x0c\xea\x67\x3e\xf9\xba\x01\x35\x83\x29\x1b\x66\x2c\xd3\xd2\x5d\xb5\xa1\xfa\x8a\x6f\x56\xd7\xbb\x46\xe1\x26\x18\xc2\x9b\x6c\xea\xf3\x60\x1c\xd6\x3b\x1e\x5a\x78\xb8\x2e\x29\x65\xbc\x98\x37\xd9\x94\x71\x54\x80\x1f\x34\x6f\x94\xf6\x4e\xbe\x3b\x08\xa1\x1c\x45\xf3\x92\xe7\xf2\xf9\x30\x54\x7e\x65\x65\x7e\xfb\x52\xaa\x7b\x0d\x2c\xbc\xa9\xff\x59\x53\x3f\x1f\x29\xf2\x1f\x67\x69\x55\xdd\xd5\x3b\x25\x4e\x24\x33\x7c\x49\x99\x9f\x97\x38\x75\x76\x6e\x56\x36\x05\x7e\x32\x4e\x74\x4d\xb5\x2c\xd0\x7d\x73\xf2\x2c\x2b\x9d\x3a\x04\x6e\x48\xed\x3b\x09\x35\x65\x82\x14\xf1\x92\x88\x73\x93\x29\xf0\xad\xba\xb4\xe3\xda\x9a\x98\x07\x19\xee\xb9\xb4\x03\x00\x24\x63\xc1\xf5\xe9\x25\x71\x5d\x18\x60\x61\x04\x10\x8a\x8b\x9f\xa2\x9f\x08\x37\x8e\x41\x4a\x9a\xdc\xf3\xac\x68\x7e\xbb\x3a\xf2\xdf\xd1\x70\x18\x1f\x73\x83\x40\x82\xd0\x2d\x2a\x02\x44\x6c\xc1\x10\x29\xc2\x14\xc4\x21\x48\xb1\x81\x0d\x3c\x48\x77\x3a\xef\x4b\xf3\x72\x0c\x69\xdd\x38\x9e\xe1\x12\x8e\x34\xde\xc7\x9d\x78\xf4\x3f\x58\x74\xe8\x83\xe1\x10\x4a\x4a\x29\x1b\x0c\x7e\x55\xc8\xad\xc5\x02\xaf\x5b\xa8\xaf\x57\x70\xd5\x7a\xbe\x85\xab\xa0\x08\xd9\x2d\x8a\x63\x49\x84\x46\x84\xac\x91\x53\xf5\xb9\xc9\x11\x7b\xbd\xd8\x48\xee\x31\x4b\xef\x1b\xf6\x0e\xf6\xae\xbe\x65\x1d\x94\x68\x6f\xc7\xd8\x6d\x55\xf5\x54\xc9\x18\x23\xa5\xdd\xae\xaa\x2a\x11\x50\x83\xd2\x1a\xf8\x68\x19\xe5\x9f\xfa\xb8\xb1\x62\xf9\x6d\xd8\xed\x49\x6f\x2a\xe1\x70\x45\x7d\xc2\x47\xe7\xe7\x38\x5e\xe7\xe7\xec\x0a\x0a\xdc\x55\x55\x45\xb8\x18\x98\x9e\x76\x51\x0a\x7c\xab\x88\x71\x4d\x81\x8b\xd6\x45\x28\x83\x6d\x36\xef\x4e\x31\x49\x9f\xd7\x35\xbc\x24\x37\xf6\x21\xc4\x7a\x08\xa2\xad\xb2\x13\xf0\xd1\x33\xfb\xd0\xc4\x6e\x44\x75\x22\x85\xb5\xcd\x07\x1a\x94\x4d\x41\xa9\x6e\xc8\xda\x24\x37\xa7\xe7\xbe\x49\x25\x29\x9d\x64\x7e\x86\xeb\x90\xf4\x30\x5e\xf3\x2d\xd2\x62\x65\xc5\x68\xf2\x8b\xe3\xef\x4b\x31\x0c\xd7\xed\xe1\x73\xe0\xfa\x33\x02\x21\x5c\x9b\x63\xdf\x66\x16\x13\xfa\xd6\x14\x16\x3a\x62\x18\x3e\xf1\xdb\xa2\x67\x05\x5a\xd8\x41\xa9\x8c\x82\x51\xea\xb8\x6b\x8d\x97\x4b\xce\xaf\x78\x5e\x70\x42\x61\x73\x93\x97\x0d\xc4\x90\x64\xf6\xe5\x68\x95\xad\x88\x3c\x9f\xc9\x12\x3b\x5b\x39\xb7\xf7\x79\x73\x6b\xdd\xec\x6e\xd1\x5c\x79\xef\xc3\xde\x82\x15\xb6\x8e\xdd\x59\xfb\xc2\xff\x04\x48\xf6\xba\x56\x0a\x2a\x88\x1b\xbf\xd2\xf1\xf0\x90\x42\xa8\xdf\x78\x10\x53\xe1\xe4\xf0\xa7\x4c\xd6\xad\x91\x0f\x2d\xae\x83\x49\x6d\x06\x88\x49\x52\xc2\xe8\x32\x0a\x4d\x9d\x9f\x51\x18\x70\xda\x1a\x58\x24\xd7\x8e\x3a\x21\x1a\xc4\x49\x23\x2d\xca\xc0\x5d\xe8\x78\x82\x34\x76\x98\x36\x18\x64\xda\x4f\x20\x0d\x59\x49\x6b\x28\xca\x6c\xe5\xb7\xee\x70\x4c\x17\xc6\xca\x7d\xa1\xd3\xae\x60\x1c\x5a\x7c\xa7\x2d\x77\x70\x29\x77\xc8\x23\x27\xb7\x25\x08\xc9\x5a\xae\xa2\xa4\x86\x8d\xe3\x67\xef\xa8\x23\x2e\x97\x2a\x68\xa7\x41\x1e\x6f\x8e\x11\xb1\x44\xb3\xd5\xe7\x66\xc5\x28\x95\x9c\x20\xc7\xd4\x88\x25\x39\xc4\x9f\x13\x3e\x06\x83\xd8\xc0\xb1\x66\xdd\xfe\x36\xb8\x51\xd9\x09\x1b\x1f\xed\xed\x65\xfa\xa0\xdf\x1d\x98\x2c\x84\x82\x45\xdd\xc1\x41\x76\xcb\x18\x8b\x46\x92\x01\x1b\xe0\x5b\x44\x22\x91\xba\x07\xfd\xee\x98\x99\x15\x67\x10\x4b\x95\x06\x0e\x1c\x2d\x83\x38\x12\x37\x5e\x27\x37\x02\x88\x2c\x6b\xed\xba\x49\x7b\xf1\x1e\x47\x46\x7e\x69\x2a\x6f\xd2\xd0\xbc\xa5\x93\xbf\x29\xd4\xfe\xc2\x4a\xad\xb5\xee\x61\xfd\xcd\x75\xd5\x1a\xcc\x6b\x90\x6c\xea\x69\xca\xfc\x76\xb7\x28\xa3\x12\x75\xef\xbb\xd7\x71\xb9\xc8\xd6\xe5\x2e\x7e\xbe\x9b\xe5\xbb\xaa\x05\xce\x7f\xa1\xc1\x75\x5d\x83\xd4\x62\x74\x0c\x85\x1a\xe3\xd8\xad\x33\x9f\xca\x99\x4f\x8d\xc6\xab\x33\xf3\x69\x28\x81\x8d\x37\x66\xd1\x6c\xc9\xb8\x3d\x51\x2a\x2e\x25\x36\x3e\xb6\x9b\xa9\xf8\x46\x2c\x81\x5c\xeb\x3a\x73\x5d\xe2\xe0\x6f\xdc\x5f\x55\xe5\x68\x7d\x09\x3e\x53\xd7\xcd\x9a\x5a\x5d\xb7\x3c\x66\x99\x55\x9c\xeb\x12\x89\xac\x27\x4f\xeb\x91\x44\xd0\x33\xeb\xd3\xbf\xb3\x84\x1f\x19\xdd\x13\x22\x45\x8d\xb2\x09\xd9\x46\xae\x70\x4b\xd9\xd5\x08\x69\x1d\xdf\x68\xe5\x05\x11\x27\x4d\xfd\xb0\x69\xbe\xfc\x15\x04\xc3\xea\xf3\x48\xba\x83\xb6\x3b\x8e\x89\x93\xa6\x39\xf8\xad\x6f\x29\xaf\x54\x0e\x62\x08\x0f\x33\xa4\x16\xf3\xb6\x89\xb1\x3e\xed\x35\x05\xca\xcd\xe9\x5b\xaa\x2c\xae\xb4\x4e\xa5\x22\xa1\x32\x5f\x49\x61\x56\xc3\x3c\x4e\xe3\x62\xb1\x05\x49\x61\xeb\xb2\x2a\xe5\xb2\x6a\x85\x56\xb0\x97\x55\x29\x85\x6c\xfb\x8c\x61\xfb\xd2\xb4\x46\x3c\xb5\xe6\x55\x50\x36\x75\x08\xa1\xf0\x8c\xa4\xa2\x89\x7d\xa1\x4d\xff\x83\x4d\x94\x6b\x10\x9b\xa7\x58\x77\xba\x95\x4b\xe4\x96\x3e\x24\x66\x39\xce\xba\x68\xa5\x66\xdf\x71\x5d\x6f\xd0\x85\x38\x11\x8c\x34\x51\x94\x20\x2a\x4b\xbe\x5c\xe1\x75\xae\xe6\xb0\xa8\x4f\xb3\x97\x9a\x6d\xc6\xd9\xe6\xc5\x77\xfa\xc0\xe8\xbf\xc5\x28\xbc\xe6\x38\xeb\xa7\xa0\x8e\xaf\x7e\x5e\x83\x51\xc2\x5a\x2b\x45\x4f\xbd\x62\x1c\x62\x58\x79\x4d\x36\x14\x37\xe5\xc4\x5c\x23\xf8\x77\xb5\x8e\x2f\x73\xa9\x85\xa8\xf7\xeb\xb4\x8c\x97\x9c\xe5\x4d\x2c\x36\x23\x02\x3a\x39\x2a\xc3\xba\x79\x77\xd9\x6e\xee\x50\x82\x46\xa8\x77\x75\x28\xfe\x01\x3c\x8a\xb6\x37\x57\xeb\x92\x61\xa3\x59\xcb\x6c\xb6\x4e\x78\x8f\xa2\x49\xbe\xd0\x4d\x9e\xb4\x1f\x99\x90\x37\xa7\x78\xff\x33\x29\xa5\xb3\xeb\x86\x97\x58\x93\x65\x93\xa4\xff\xfe\xf7\x35\xcf\x6f\x77\x73\xfe\xc7\x3a\xce\x79\xb1\x1b\xed\x5e\xc7\xe9\x2c\xbb\x46\xea\xbe\x1b\xed\xea\x2f\x9d\x46\x48\x24\x9c\xd6\x3e\xfe\x4b\x9c\x75\x2a\x5d\xb3\x66\x4d\xac\x60\xf9\xfd\x44\xfe\x91\x01\x60\x3f\x33\x0c\x57\x3a\x18\x6b\x6e\xf5\x04\xe2\x2d\x3a\xd0\x8c\x29\x61\x09\x22\x5c\xc2\xe9\x34\x2a\xa1\x60\x12\xa1\x08\xd6\x2c\xd5\xc8\x3d\x90\xb0\xbb\x1a\xa6\x2c\x69\x10\x17\xe7\x2c\xe9\x5e\xde\x2c\xd8\xbc\x79\xbf\x62\x0b\xc9\x0d\x64\xd5\x14\x35\xbc\xb0\xec\x39\xac\xf4\x9f\xe5\x9c\x14\x6f\x83\xad\xa0\xc9\xa3\x34\x9b\xe1\x6d\x74\x0d\xb7\x7d\x47\x32\x19\x71\x41\x1c\x03\x91\x80\xc9\x11\xab\xe1\x8a\x49\x05\xf6\x60\x0c\x45\x3e\x15\x7f\xd2\xec\x2d\x4e\xba\x38\xcb\x36\x32\xd6\xa5\x7d\xeb\x12\x43\xc6\x48\xc9\xca\xaa\xca\xa9\x3a\x74\xa9\x3b\x72\xe2\x48\xb3\x31\xc9\x96\xb3\x51\x89\x14\x19\x52\x14\x5a\x63\x21\xb0\x5e\xd1\x34\x88\x43\xc1\x8e\x82\x38\x64\xe2\x37\xdd\x29\x47\x0b\x1e\xcd\x46\xd1\x6a\xc5\x95\x6f\x3f\xc9\xe8\x68\x15\xe5\x3c\x2d\x7f\xca\x66\x7c\x94\xf3\x65\x76\xc5\xf5\x9b\xe6\x18\x7e\xd1\xe9\x20\x63\x7c\xc2\x87\x8e\xe3\x6f\xac\x6b\xc1\x36\x7a\x46\x72\x92\x04\x53\xad\xb0\x08\xab\x4a\x7f\xe6\x1b\xdf\x79\x89\x7e\xda\x6b\x4f\x2c\x16\xf6\xf9\x68\x2e\x96\x41\x2c\xe3\x44\xd5\x70\xcd\xf6\x3f\x06\x67\xc5\xd9\xfa\xd5\xcb\x57\xaf\xce\x6e\x9e\x8d\xc3\x61\xd5\x79\xbe\xb7\x7f\xd9\xd1\x80\x4b\xc2\x3b\x18\x88\x79\x95\xe4\xd6\x91\x4a\x25\x83\x3f\x94\xb2\x0b\xcb\x32\x7a\x89\x5e\x47\x83\x5b\xfc\x43\x9c\x08\x4d\x1f\xc5\x01\xa0\xaa\xd0\x68\xba\xaa\xf4\xf2\x68\x05\xcd\x3e\x19\xbb\x6e\xb9\x27\x55\x59\xb4\x16\x2d\x67\xe7\xf6\x29\xe8\xf7\x3f\xc4\xee\xf4\x9d\xc3\xd1\xe1\xc8\x73\xc0\x3e\x14\x9d\x83\x6c\x88\x3f\x86\x32\x93\x56\x0a\x9b\x87\xc8\xcc\x46\xd3\x84\xae\xa5\x77\x67\x96\xec\xcc\x3e\x3f\x1e\x23\x03\x0f\xf8\x10\x69\xaa\xac\x2c\xf4\x65\x5a\x58\x83\xd8\x71\xa7\x65\x34\xfd\xd4\x63\x1a\x77\x3e\x5a\xf2\xfc\x52\x9a\xd9\xd8\x1a\x0e\x82\xfe\x4e\xe6\xb0\x29\x04\x2c\xb9\xd9\x64\x34\xe3\xb2\x06\x1e\xf5\x07\xf8\x3e\x1f\x89\x37\x06\x99\x10\x96\x1d\x3b\x5a\x9b\x95\x98\x96\x91\xf3\xd1\x32\x92\x2e\x50\xd0\xbe\x59\x37\x67\x75\x7d\x89\x24\x56\x0a\x15\x27\xae\xb6\x4b\xd7\xb6\x82\x33\xfb\xb2\xdc\xdc\xbf\x23\x5c\x7c\x9c\x17\x7d\xd0\x16\x58\x00\xff\x83\x8c\x69\x0d\x49\xf4\xd9\x2c\x7b\x1e\xad\x81\xff\xb1\x25\xe6\x73\xb3\xfe\x86\x7c\x48\x70\x9a\xfc\x26\x36\x40\xa7\x9d\x42\x34\x76\xdd\xf4\xb8\x9c\x04\xea\x5c\x19\xfa\x41\x28\x8a\xb7\x4d\xe8\x3a\xbd\x34\xb3\x52\x55\x9b\x13\x28\x27\xde\x2f\xa0\xc8\xf2\xd2\x4f\x47\xe2\x0f\xba\x5b\x4f\xb9\x78\xc2\x1f\x35\x9c\x8f\xf8\x4d\xc9\xd3\x19\xc3\xcd\xa8\x7e\x5b\xf5\x29\x70\x30\xa9\x77\x81\x0c\x22\x66\xdb\x7c\x57\xd5\x5d\x0d\x05\xf3\x60\xbd\x09\x67\x95\xb0\x81\x87\x7a\x0c\xe7\x22\xcb\x12\x1e\x59\x94\x23\x72\x5d\x92\xb0\xa8\x55\x58\xa1\x0a\x1b\x0e\x29\x6c\x10\xa0\xa8\xaa\x96\x24\xa2\x55\x45\x22\x76\x57\x53\x28\x18\x63\x6b\x8c\x2c\x81\xf3\x5a\xec\xed\xd1\xa3\xe2\x78\x7d\x54\x48\x48\x62\x49\xae\x09\x67\x6d\x68\x2c\x3b\xac\x28\x8b\x82\x32\x84\x68\xc0\x18\xc9\x19\x0f\x4a\x0c\x37\x92\x60\x98\x2d\x72\x3e\x8a\x8b\x9f\x93\x28\x4e\x95\x57\x70\x2e\x2a\x8e\x19\x6e\xdd\x51\x5c\xe0\x5f\x92\x53\x4a\x27\x24\x9e\x90\x98\x0d\x3c\xc1\xee\x5c\xb7\x9d\x21\xa5\x93\x54\x4c\xa1\x8f\xef\xba\x65\xe2\xdb\xbb\x1a\x44\x33\x98\x9e\x04\x92\x40\x06\x39\xa5\x4d\x3c\x48\xd1\x1c\xcc\x92\x5b\xc8\x5e\xcd\xac\x91\x3b\x7e\xb3\x8a\xd2\x59\xe6\x2b\xf1\xc0\x19\x12\x45\x82\x86\x08\x2d\x95\x8b\x97\x4b\x42\xe9\x48\xf9\xdf\x93\xfd\xb3\x17\xfb\x97\xe0\x38\x14\xe2\xe2\x3d\x8f\x66\xb7\x82\x6d\x71\x21\x62\xb4\x96\x71\x57\xfc\x10\x5b\x39\xcd\xda\x4a\x8e\x1a\x5a\x7d\xea\x33\x97\x37\x68\x1e\x03\xc1\x43\xb4\x1a\x4c\xe6\x0f\x9d\x01\x63\x86\x81\x28\x54\x0f\x84\x0b\xa7\x7d\xfc\x86\xa4\x6c\xae\xa9\x80\x63\xad\x74\x3c\x05\xda\x4b\x9f\xba\xae\x92\x0f\x52\x8a\xc6\x08\xa2\x9d\x2f\x97\xab\xf2\x76\x5b\x3b\xed\x80\xb3\xaa\xc1\x5e\x13\x0d\x0f\x64\x24\x9c\x97\x57\x51\x3b\xaa\xfd\x25\x0e\x4a\x87\x0e\x9a\x00\x6f\x90\x33\x04\x10\x17\x4c\x0a\x57\x5e\x6a\x10\xf1\x8e\xf2\xe3\xd4\x75\x07\xde\x80\x31\x85\x48\xc1\x83\x3c\x84\x1c\xc4\x1f\x7a\x94\x0f\x87\xf4\x08\xf5\x02\xe2\x33\xa5\xaf\xd3\x11\x02\x7b\x3e\x50\xf1\x73\x34\xa5\xac\xa1\xcc\xe3\xe5\xe7\xd8\x87\xe3\xf8\x44\x30\xfa\x66\x51\x5c\x23\x2a\x15\x2c\xa3\x4f\xbc\xc3\xa0\xec\x88\x75\x55\x15\x18\x30\x79\x23\x11\x91\x97\x96\xf3\xfc\x44\xf3\x93\x54\x02\x7c\xa5\x97\xb6\xb8\x10\xf0\xd0\xe7\x26\x5c\x7a\x0a\x9c\x52\x48\x6b\xd0\xa6\x7b\x5d\x13\x95\x56\xab\xcb\xc9\x9e\xe7\xaf\xf5\xfc\x73\x04\xac\xc1\xaa\xb6\x6a\x21\x86\x5a\x0b\x2a\x66\x02\xe2\xd6\xe8\xe3\x18\x73\x74\xc7\x67\x65\x90\x87\x8d\x3a\x59\xc1\x97\xc7\xc0\x6b\xb8\xcc\xf9\x6a\xa3\x55\x8d\x85\x68\x10\x2a\x1c\x1c\xde\x20\xf8\x0d\xd2\xa3\xf8\x38\x3b\x8a\x87\x43\x3a\x28\x09\x5e\xa0\xc4\x54\x86\xc1\x51\x60\x00\x1c\x85\x36\xed\x10\xd3\xe5\x8f\x96\x71\x8e\x20\xb7\x6c\x0c\x05\x93\xb0\xf3\x66\x1d\xe5\x4d\x4f\xb2\xe3\xfc\x28\x1b\x0e\xa9\xa2\x77\x31\x13\x55\x66\x21\x64\x90\xa2\x77\x80\x8a\x58\x20\x71\xdf\x71\x35\x65\x8a\xfc\x7d\xe9\x03\xa3\xce\x90\xdc\x33\x08\x01\xc5\x92\x75\x3c\xf3\x3d\x28\xd6\x2b\x71\xa2\xf1\x67\x35\x85\xad\x36\x55\x48\x47\xe7\x69\x20\x9f\xcc\x3d\xab\x90\x5a\xbb\x49\x14\x94\xd0\xe0\x7c\x2f\x39\xc5\xae\x34\xd7\xdc\x95\xf2\xfe\xee\x2b\x73\xc5\x27\xd6\xc9\xee\x8b\xa8\xe4\x0a\xc0\x5c\x51\x12\x49\xa3\x54\xc5\x06\x28\x64\xd7\xe9\x1e\xeb\x92\xc0\x90\x20\x67\x58\x0e\x9d\xd0\x09\x59\x39\x2a\xb3\x37\xd9\x35\xcf\x9f\x47\x05\x27\xb4\x96\x2a\x9e\x9b\x4d\xb5\x7c\xc3\x02\xa1\x80\x35\x24\x30\x05\x0c\x15\x0a\x33\x58\xc2\x2d\x7a\xb9\x5d\xc0\x39\x73\x8a\xf8\xcf\x3f\x13\xee\x0c\xbd\xfb\x82\x7a\x8a\xc6\xc2\xb5\x7d\x62\x52\x11\xaa\xe0\x94\x45\x9c\x50\x78\x27\xff\x3c\x93\x7f\x3e\xf5\x4b\xcb\xe2\xd8\x51\xba\x2e\x99\x23\x8e\xd0\xb8\x86\xb7\xec\xae\xee\x9e\x91\x3e\x88\x15\xf9\x9c\x7d\x18\xad\xb2\x15\xbc\x67\x32\x7c\x14\xfc\xac\x7f\xfc\xc4\x3e\xa8\x13\xd9\xef\x6c\xdb\x9e\x19\x83\xb5\xba\xd2\xe3\xfc\x28\x95\x0c\x95\x07\x69\x68\xbb\xc6\x6b\xba\xbe\xe7\xd5\xf0\x9a\x39\x18\x02\x96\xcf\xaa\x02\x2d\x7e\xf9\xac\xc2\xdb\x9c\x2a\x5a\x97\xd9\x3c\x9b\xae\x0b\xfc\xb5\x4a\xa2\xdb\x6a\x9a\xa5\x65\x9e\x25\x45\x35\xe3\x73\x9e\x57\xb3\xb8\x88\x2e\x12\x3e\xab\x24\xb8\x5a\x15\x17\xcb\x68\x55\x25\x59\xb6\xaa\x30\xda\xc3\x2a\xe1\x55\xb6\xe2\x69\x95\xf3\x68\x96\xa5\xc9\x6d\xa5\x8e\xbf\xb3\xaa\x98\x66\x2b\x3e\x73\xe0\x05\x73\x82\xb3\xb3\x9b\x83\xf1\xd9\x59\x79\x76\x96\x9f\x9d\xa5\x67\x67\xf3\xd0\x81\x37\xcc\x21\x13\xff\xec\xec\xec\x6c\x54\x05\x67\x67\xd7\x7b\x61\x15\x7c\x3c\x1b\xef\x9d\x9d\xdd\x44\xe3\x90\x0e\x1d\x78\xc5\x9c\xb3\xb3\xc0\x19\xbe\x18\x3a\xf7\x89\x33\x7c\x33\x74\x28\xc6\x88\xc0\xe7\xe0\xfe\xc7\x7b\xd5\xe0\xdf\xe1\x84\x51\x95\x32\xf1\xbf\x23\x4d\x89\x1f\xc5\xdf\xef\x42\x7a\x9f\x7e\x57\x9d\x39\xdd\x17\x67\x8e\x78\x73\xe6\x54\xaa\x5c\x5a\xa9\x52\xce\xce\x42\x07\xfe\x64\x8e\xdf\x54\x78\x76\x46\x08\xf9\xf6\xa2\x69\xd5\x7d\x43\x68\x70\x76\x16\x86\x95\x33\x7c\x35\x74\xe8\x7d\x5a\x8d\xee\xd3\xb3\x33\x51\x35\xfc\x68\xc7\x70\x79\x31\x74\x86\x0e\x60\x84\x8c\xef\xed\x74\xe7\x23\xb6\x71\x88\x05\x7f\x54\x85\x86\x54\xd7\x42\xef\xcb\x3e\x0c\xef\xa9\x8f\x7f\xe9\xf9\xf8\x3e\xc8\x3f\x0e\x85\x3f\xfa\x5e\x93\xe0\x64\xf8\x6f\xd1\xc4\x17\x43\x87\x9a\xac\xbf\xb5\xb2\x32\x9d\xf5\xe3\xd9\x59\xf8\xdd\x99\x13\xde\x9f\xd8\xa3\x87\x75\xff\x6a\x7f\xf1\x27\x85\x7f\x76\x2b\x7b\x33\x74\xee\x39\x14\x7e\x60\x77\xaf\x5f\xf8\xad\x77\x7f\x51\x43\xef\x50\x78\xfe\xe6\xd9\xe9\x69\xfb\xed\xd9\xd9\xa8\x79\xff\xe1\xd9\x0f\xed\xb7\xf2\x55\x15\xdc\x0f\xc5\xeb\x67\x1f\x3e\xbc\xf7\x3b\xf5\xbe\xa2\xf0\xf3\xe9\xcb\x5f\x5e\xbc\xeb\xbe\xf8\x93\xc2\xf3\x1f\x5f\xbf\xe9\x34\xc6\x27\xb8\xaa\xf1\x2c\x52\x89\xd3\x46\x95\x96\x0b\xf1\xff\x9e\x78\xa0\x7b\x64\x2a\x8e\xed\x55\x36\xdf\x43\x5d\x9f\x5c\x2e\x6a\x7c\xf8\x15\x4f\xab\x6c\x36\xab\x08\x09\x86\x7b\x61\x45\xc9\xd9\xd9\xec\x3e\x4d\xab\x66\xc5\xaa\x17\xea\xf9\xec\x6c\x36\xa4\x15\x35\x83\x89\x4b\xc3\x89\x1d\x0a\x42\x42\xef\xf4\x54\xec\x84\xd7\x43\x87\xde\x53\x59\x52\xce\x67\xc5\xf3\x2c\x2d\xf9\x4d\xd9\xed\x9b\x28\x4e\x4e\xac\xdf\xb4\x8a\xff\x51\x5d\x96\x55\x22\x7b\xd4\x74\xb0\xdd\x07\x32\xf1\xf7\xce\xce\x66\x74\x82\x4d\xb7\x1a\x46\x26\x2c\xf8\xb8\x17\x56\xf7\x54\x13\x6b\xf8\x1b\xdb\x17\xad\x8a\xd3\xd5\xba\x54\x94\xa6\x12\x8d\x89\x72\x1e\x55\x17\xeb\xb2\xcc\x52\x7a\x6f\x3f\x86\x7b\x6c\xff\xe3\xe2\x6c\x26\x7e\xfe\x9d\xed\x7f\x0c\x3e\xde\x85\xc3\xb3\xbb\xb3\xe2\xfe\x59\x90\x46\x65\x7c\xc5\x77\xcf\xae\xf7\xe1\x1f\xb2\xb4\xbf\x90\x40\x90\x86\x21\xad\xc8\xd9\xf5\x90\x56\x67\x23\x9d\x40\xef\xed\xc3\xbf\xd8\x7e\x30\xfc\x77\xb8\x0f\x7f\x6d\x2d\x2f\xdc\x6c\xc1\xd9\xd9\x2c\xda\x9b\x87\x77\x1e\x3c\xaa\xb1\xe1\x93\x4a\xf6\x8a\x56\x23\x6c\xf4\xa5\x04\xaa\xea\xb7\xbc\x75\xc6\x37\xce\xb0\xdc\x43\x40\x6e\x23\x0d\x0c\x58\x5e\x55\xe9\xa4\xf4\xf3\xe3\xf1\xa4\x07\xbb\x9c\xe4\x43\x89\xe0\xed\xf7\xbe\x3c\x39\xf1\xc6\x15\xa2\x7d\x83\x37\x3e\x38\x74\xf3\x4a\x82\x7b\xd7\x50\x72\xb6\x4f\x02\x41\xfd\x6e\xbc\xf9\xd9\xcd\xe3\x79\x58\x7d\xdc\x9b\x9c\xcd\x68\xf5\x71\xef\x9e\xa2\x8b\xea\xcd\xde\xd9\xfa\xd5\xab\x57\xaf\xc4\x20\xec\x5f\x42\xca\xfb\x19\x52\x39\x71\xce\xc6\xa8\xcd\x9f\x38\xff\xcf\xff\xfd\x7f\x39\x3e\x37\xf1\x8f\xf6\x3c\x3a\x74\xce\xce\x9c\x21\xc7\x2b\x55\xd1\xb4\x67\xa5\xb1\x4f\xd9\xf3\xa8\x51\xe4\x11\xef\x11\x1d\x3a\xbb\x8e\x2f\xb3\xd7\x90\x73\xfb\xe8\xb9\x10\x67\xd8\x98\xb3\x4b\xde\x73\x7b\x8f\x1e\xee\x7c\xa4\x19\x88\xeb\x12\x67\x9e\xe5\x4b\x47\x9a\x3e\x38\x49\x74\xc1\x13\x47\x2a\x6b\xe0\x6e\x16\xe7\xbe\xd3\x68\xc4\x1c\x54\x4f\xfb\x4e\xc2\x2f\x79\x3a\x73\x94\x62\xf9\x67\x25\xeb\x7c\x60\x3f\x49\x31\xf3\x7a\x84\x9b\x4f\x7c\x51\x50\x68\x3f\x7d\x08\xec\x67\xad\x73\x69\xd4\x88\x52\x21\x7d\xc3\xe9\xdd\xcf\xec\x0e\xcb\xf5\x3f\xf4\xc7\x7f\x7a\xaf\xaa\xe5\xa0\xaa\x2d\x29\xad\xb7\x0a\xb5\xdc\x92\x69\x8f\x78\x90\x2a\x01\x76\x38\x0c\x8f\xe8\x91\x91\x5e\x05\x5f\xb6\xec\x6d\x32\xae\x62\x38\x6a\x7b\x0a\x28\x94\xf8\x32\x13\x62\x8b\x34\x3c\xcf\xae\x53\x9e\xbf\x68\x84\x94\x72\x52\x9a\xee\xf8\x4f\xa5\x65\x20\x1a\x97\x1b\xc9\x7e\x60\xa9\x07\xc5\xf1\x4e\x9c\x67\x5e\xba\xee\x53\xf9\xc7\xc3\x47\x13\x12\x4a\x9a\x2a\xb9\x2e\x21\xa2\xe0\x56\x65\x55\x55\xfa\xd7\x42\x48\x5e\xb9\xee\x82\x94\x14\x50\x39\xba\x82\xa5\x0c\x73\xee\xa9\x72\xc9\x9c\xfd\x03\xc3\x22\x0b\x41\x58\x08\x25\x19\x9b\x07\x5e\x88\x79\x9e\x32\x51\x17\xaa\xd0\x49\xc2\x50\x19\xad\x74\xaa\xdf\xdf\xbe\x9e\x91\xac\x09\xc6\x8e\x0d\x49\x46\xf1\x8c\x31\x96\x35\x01\xab\x50\xee\x4d\x28\xe4\xe6\x42\xf6\x12\x75\x14\x97\x3d\x45\xb9\xee\x05\x29\x21\xa1\xae\xfb\xa5\x72\x30\x4a\x7b\x70\x10\xea\xf7\x7a\x89\xe5\x60\x37\xb1\xf8\xfe\xf6\x43\x74\xf9\x53\xb4\xe4\x12\xff\x51\xb4\x10\x3b\x77\x18\x52\xd7\x4d\xdb\x39\x9f\x27\x51\x51\xfc\x84\x41\x79\xca\x2d\x6f\xbe\x58\x9b\xc9\x29\x7a\x03\x79\x8d\x37\x4f\x7f\x14\x91\xeb\x0e\x9e\x05\x5c\xec\xc8\x50\x1c\xc6\x6f\xab\x6a\x70\x2b\xbd\x60\xc4\x88\xe3\x5c\xe0\x9c\x5e\xb2\x12\xae\x18\x6f\xec\xe6\x95\xba\x06\xcf\xb3\x62\xcd\x88\xb2\xdb\x62\xb5\x5c\xc3\x64\x2a\xe7\xe6\x59\x59\xe6\xf1\xc5\xba\xe4\xc4\x89\x67\x0e\xa5\x93\x29\x9b\x9a\xb3\x68\xc9\x21\xe5\x88\x5d\xdd\xcd\x08\x53\x76\x4e\xa1\x60\x64\xc6\x22\xd1\x24\x2d\xa8\x16\x7b\x7b\x47\x74\x86\xd6\x3a\x7f\x71\x86\x53\xd1\x81\xe1\x15\x27\x22\x85\xee\x5c\xb1\x99\x42\x42\x07\x0c\x09\xf6\x2f\xdd\x23\xd7\x5d\x72\x52\x5a\x8a\x72\x5a\x55\xa5\x18\x8b\x2b\xda\xd8\xb3\x5b\x83\x78\x39\x42\x15\xaf\xf4\x6a\xcb\xf2\x67\x49\x42\xae\x70\xf8\xd4\x5e\xa7\x77\xb5\xba\x60\xbc\x9b\x32\xc6\xce\xc5\x04\x49\xd5\x7b\xa7\xbb\xb5\xb1\x72\x5b\x13\x6e\xba\xfd\x3d\x38\xf7\x3c\x87\xaa\x7d\xda\x6c\x5e\x71\x2c\x50\xc0\x76\xcd\xe9\xbb\x6d\x3d\x6d\x69\x49\xa5\x99\x90\x18\x01\x7a\x92\x8f\xa6\xd1\x74\xa1\xe0\xa9\x0c\xe4\x6e\x19\xf0\x51\xb1\x88\xe7\x25\xa1\x08\xd3\x8a\xd3\xcd\x62\x8b\x5c\x14\xdc\x36\x92\x0a\xce\x43\x36\x18\x03\x6f\xde\xaf\x79\xa3\xe7\x5c\x75\x6f\x30\xe6\x31\x4f\x66\x05\x2f\x1d\x7d\x5b\x27\x0d\xe5\x38\x29\xa9\x45\x14\xb5\x92\xc5\x8c\x98\x3d\x0f\xe8\x06\xd3\x7f\x7d\x81\xc4\x41\x1c\x5e\xad\xe6\x26\x7c\x93\x48\xaa\x13\x60\xe5\x60\x98\x51\xbd\x4e\x62\xb1\x4e\xf2\x51\x54\x96\xf9\x8f\x51\x3a\x4b\x78\x90\x06\x71\x18\xda\x36\x9f\x53\xde\xd2\x78\xb8\x2e\xba\x12\xb9\xae\x87\xdc\x46\xd3\x43\xf9\x5c\x5a\xcf\x3a\x02\x17\x46\x62\xdb\x2b\xed\x27\x24\x9d\x2d\xf2\x23\x2f\x74\x8e\x52\x26\xcd\x6a\x4e\xe3\x8b\x24\x4e\x2f\xd1\x1a\x33\xb5\x4e\x59\x7b\x9e\x51\x4b\x4c\x3c\x7f\xcf\x6b\x5a\x39\xe7\x9f\x0d\x7a\xe0\xa0\x8c\xe4\xb0\xed\xdb\x51\x0c\x31\xde\x5b\x30\xc6\xad\xa1\x5c\x6c\x2b\x57\x0d\xc7\x96\xd2\x54\x33\x49\x53\x6f\x5a\x55\x8e\x14\xc9\xf0\x69\x5b\x7d\xab\x2f\xf4\x43\x73\x74\xc1\x32\xec\xf5\xa1\x34\x61\x9a\xf9\x4f\x1a\x76\x5f\xda\xbf\xad\x6f\x5a\x05\x98\x0f\x45\x73\xfc\xb2\xfb\x18\x17\x2f\xac\x84\xaa\xb2\x53\x06\x8c\x0d\xb8\xeb\xc6\x62\x3d\xf7\x7d\x6d\xd5\x2e\xfa\x6c\xbf\xb3\xfa\x3d\xb3\xfb\xdd\xf2\x8d\x68\x04\x2c\x36\x2c\xc1\x7e\x85\xf7\xf0\x7a\x8d\xc7\xe8\xbd\x18\x84\xa0\xd7\x36\x94\x14\x22\x13\x89\xf9\x28\x12\x2b\x3d\x0d\x62\x96\x05\x51\x28\x88\xb9\x58\xe8\x6c\x40\x72\x73\x6d\x88\x10\x34\x4d\x8b\x96\xad\x3d\xaf\xd1\xf0\x06\x62\xd1\xf7\x31\x2a\xd7\xe5\xb5\xd1\x99\xa6\x2c\xe3\x23\xa5\x13\x62\xe8\x42\x97\xf1\x51\x5c\xfc\xe3\xed\x9b\x1e\xdb\x46\xee\xba\x84\x77\xf9\x3f\xa7\x46\x3d\xa2\xaa\xb2\x2d\x6c\x9d\x1f\x3f\xbc\x7d\xd3\x66\x2e\x35\x2c\xb0\x52\x5e\xea\x42\x7a\xf4\x35\x31\x44\x8c\x4f\x36\x2b\xf3\xaf\x8d\x7a\x4b\x0a\x1d\x4f\xd1\xac\xac\xd9\xcc\x51\xb7\x35\x13\x32\x63\x64\xc5\xa2\x8d\x66\xc2\x92\x0d\x32\xb2\xa2\x70\x2d\x4b\x22\x31\x5b\x8d\x54\xd4\xe8\x5f\x63\x7e\x4d\x5d\x37\x1e\x95\xd9\x6a\xc0\x98\x90\x7d\xe2\x51\x34\x9b\xbd\xbc\xe2\xd2\xcf\x98\xa7\x3c\x9f\x6c\x26\x11\x67\x9d\x26\x59\x34\x73\x20\xe7\x30\xf0\xa8\x1f\x0b\x8a\x15\x4d\x17\x98\x4b\x14\x68\x3d\x12\x27\x4b\x9b\xec\x94\x42\x8a\xe4\x0d\xb9\x4d\xc1\xd6\x7d\x92\xf3\x2e\x1f\x4d\xb5\x00\xc0\x9c\xd8\x81\x01\xef\xf0\x64\xf3\xda\xa1\xb5\x28\xb1\x6f\x05\x6c\x2d\xdb\xbe\x87\xd6\xdc\xe1\x79\xb6\x94\xdc\xc1\xa1\x54\x55\xb7\x29\xfb\x38\xf7\x1d\xcd\xd1\x37\x6b\x35\x22\x0b\xfb\xbb\xe4\xdf\xab\x6d\xc2\x8f\xfc\x52\xc8\x6a\x5b\x9a\xd8\xbe\x2a\xe7\x54\xc8\x70\xe7\x30\xe8\x14\x28\xcd\xb5\xfb\x52\xc9\x79\xb7\x99\xa2\xb2\x09\xc9\x47\xf3\x38\x29\x79\x3e\x7a\xfd\xa2\x6f\xdd\x1b\x46\xff\x57\xe0\xcd\xd5\x6a\xef\x10\x6e\x4a\x48\x82\xdc\xd5\x35\xe4\x88\xdf\xdf\xae\xa0\x0b\x65\xd9\x15\x7e\x5d\x77\xd9\xd0\xef\x8e\x30\xdb\xb4\x23\x9d\x04\x69\xe8\x07\x61\x5d\x53\xff\xbf\xdf\x13\x59\x5d\x9b\x86\x98\x1e\x49\x12\xbe\x99\x26\x7b\x6a\x1a\x24\x24\x5f\x69\x9b\xfc\x9f\xe8\xbb\x54\xdd\xf6\x8e\x80\x38\x49\x60\x31\x24\x65\xd9\x96\x56\x51\xbb\x35\x5a\xc0\x0e\x32\x69\xa7\x1d\xb3\xb2\x67\x95\x70\x8a\x67\xb4\x8c\xc5\xea\x78\xf6\x5f\xab\x41\x89\x8a\x38\x33\x7a\x0c\x3e\x3c\xfb\x81\xf5\xef\xca\xcf\xc5\x16\xee\x8c\x8f\xf5\xd1\xd6\xc3\x88\x8f\xc7\x82\x49\xb9\x29\xf9\x9a\x88\xa1\xdd\xa3\xaa\xbe\xfb\x32\x97\x23\x5b\x0b\x47\x63\xb6\xfb\xd2\xfc\xf2\x4e\x09\x44\x19\x5e\xc9\x1c\x51\x0f\x2d\xb2\x1b\x8a\x9c\x77\xed\xdf\x73\x2d\x42\x67\x66\x65\xa0\x32\xaf\x3b\x2e\xd6\x71\xe9\xeb\x96\x4d\xfb\x9b\x65\x13\x2c\x7e\xcb\x09\x8a\xd3\x1a\xae\x44\x6f\x6f\xc5\x3f\xf2\x1c\xd5\xd0\xa8\xee\xb8\xe1\x2d\x67\x87\x2c\x6d\xd2\xa3\x34\xe5\xb9\xe0\x79\xcc\x39\x8e\x76\xe3\x19\xfb\xce\x19\x9e\x0f\x9d\xef\x4e\x8e\xf7\xa3\x93\x63\xa9\xf9\x6a\x92\xf7\xce\xf2\xb3\xb3\xef\x76\x97\x45\x94\x24\xd9\xf5\x34\x5a\x95\xeb\x9c\xb3\xef\xbe\x3b\x39\xce\x56\x4a\x9c\x97\x4a\x79\x4c\xdb\x97\x89\x27\xc7\xfb\x32\xf9\xc4\x01\xbe\x39\xbb\x4e\xd0\x2e\xee\x23\xfb\xee\xbb\xd0\x50\x67\xd7\xbd\x55\x51\xb1\x83\xfb\x1f\xef\x85\xac\xd1\x8f\x7f\x57\x9d\x39\x67\xa8\x39\xed\x2d\x54\xb7\xa4\x29\xaa\xaa\x74\x51\x8d\x26\x7e\xe2\xe3\x36\xa8\xa4\xfa\x71\x5b\x59\xf1\xec\xdf\x4c\xf6\xbf\xaf\xb4\x7f\xb3\x2d\xdf\xf9\xea\xaa\xa2\xe7\x9b\xe6\x55\xef\x97\xd1\x5f\xb0\xba\xe1\xfd\x9e\x4f\x47\x7f\x19\x0d\x83\xe1\xbf\x43\xe4\x97\x9d\xe9\xe5\x9d\xf9\x5c\xe4\x7c\xce\xbe\xfb\x6e\xd7\x88\x86\xdf\xe9\x5f\xed\x09\xee\x7d\x2f\x67\x6f\xdf\x9a\xbe\x9d\x2d\xe7\x30\x29\x8a\xd3\x9d\xee\x31\x5a\x48\xe1\x0e\x38\x26\x98\x4d\x9b\x61\x97\xb4\x93\x5d\x06\x93\x75\x5e\x6c\x9b\x06\xf1\x9e\xcd\xfa\xd6\x06\x7e\x29\x35\xc3\xe6\x2a\xc5\xa1\x70\x80\xfc\xa0\x67\x62\x78\x8a\x9d\xec\x29\xc9\xbc\x02\xc7\xd7\x63\xe1\x50\xd8\xd8\x37\x66\xc4\x06\xe3\xed\xd5\x34\x05\x7c\x6d\x3d\x7d\xc5\xdc\x07\xff\xc6\xa1\xa0\xbf\x84\xd1\x7d\xdf\x41\xe4\x78\x92\x8e\x30\xdc\x01\x2f\x74\x7e\x4d\x0c\x2e\xd9\x4c\xbf\xaa\xaa\xd9\xe8\x9a\x5f\x7c\x8a\xcb\xb7\xed\xbc\xe2\xc5\x32\xfb\xb3\x27\x35\xeb\xcb\x59\x74\x12\x05\x75\xe9\xac\x3e\x44\x29\x98\x66\x69\x8a\x1b\x0f\xf3\xb3\x4b\xed\xf1\x87\x77\x2f\xcd\x53\x50\x0c\xc4\x3e\xc7\x9e\x5d\xa9\x9e\x0d\x98\x03\x7f\x8a\x55\x7d\xcb\x6e\xcd\x80\x59\xba\xf0\x5b\xa5\x5b\xa9\x84\x64\x77\xc5\xae\xfa\xf2\x5c\xd9\x79\x4a\x3d\x1e\x33\xb4\x6b\x8e\x72\xae\x25\xf3\x9f\xb3\x22\x16\xcd\xa6\x70\xc1\xca\xaa\xb2\xb2\xa5\x65\x14\xa7\x05\x9d\xf4\x19\x25\x3c\x6d\x1d\xcc\x27\xbc\x2b\xa1\xfb\xe2\x00\x5f\xb6\x55\x0a\x3b\xd6\xad\x6a\x5e\x55\x03\x32\xc8\xa5\xf6\x32\x37\x05\x89\xd4\xd4\x54\x3d\x69\x7e\x92\x9c\xfa\x7c\x5b\xd3\x5d\xd7\x7b\xe4\x6e\x7d\x8b\x26\x43\x5d\x7e\x19\xcf\x49\x29\xd5\x01\x25\xb3\xdb\x88\xf2\x42\x69\xc9\x02\x83\xf1\x8e\xd1\x9a\xc0\x27\x56\x4e\x36\xca\xe1\xf6\x0d\xed\x5c\xec\x82\xb1\x82\x3d\x1b\x6c\x6d\xd3\xde\xa0\xdc\xf6\xca\xb0\xda\xaa\x22\x9e\x4b\x72\xd6\x77\x6e\x93\x2e\x8e\x5d\x75\x2e\x9d\x6c\x1f\x84\x92\xfa\x1e\xad\xaa\x81\x34\x48\x7b\xc1\xc5\x51\x86\xcf\xa4\x09\x4f\xff\x17\x58\x4b\x3e\x11\xdd\x5b\x55\x55\xa7\x11\x8c\xb1\x6b\xd7\xbd\x20\xd7\xc0\xe9\x64\xcf\xf3\x4b\x99\xab\xdc\x96\xab\xa4\x13\xcf\x9f\x4e\x7e\x27\x53\xe0\x74\x4f\xfc\x29\xa9\x3f\xf6\x1f\xb8\xb9\xf8\xda\xeb\x9b\x9f\x6d\xe3\x9a\x1a\xc3\x92\x66\xda\x50\xe0\xb1\x1e\x23\x8c\x0f\x51\x30\x65\xe0\x3f\x88\xab\x6a\x60\xd4\xc5\xd8\x23\xd3\xe8\x89\xe7\xc7\xe2\x21\xeb\x6b\x20\xfa\xc5\xd8\xaa\x66\xa5\xa8\xda\x51\x96\x45\xa8\x4c\xb2\x57\x4f\x34\x5a\xa7\x52\xcd\x97\xea\x4c\xe5\x46\xa6\xa2\x9b\xe9\x28\x0a\xf2\x90\x31\x56\x04\x79\x78\x44\xf3\xe1\xd0\x2c\x82\xc9\x94\x13\xf1\x12\xc4\x2b\xea\xab\x7c\xd7\xa2\xc1\x85\xfe\xed\xf9\xe3\x1a\x56\xd4\x5f\xd5\x90\x71\x4d\xec\xfa\xef\x8f\xf0\x4a\x02\x9d\xf9\xa4\x47\x1f\xb5\x3f\x31\xa4\x73\x63\x2a\xfa\x96\xa0\xbe\x38\x40\x14\xd6\xd2\x1c\x4e\x7e\x03\x87\x7d\x77\xcf\x13\x72\x0b\x6c\x10\x65\xd7\x5d\xa2\xb2\xbb\x34\xca\xee\xab\xaa\x1a\x5c\x49\x92\x53\x4a\x5b\x34\x4b\xfd\x5d\x52\x8a\x3a\x61\xb9\x9b\x0c\xc5\x2c\xa5\x43\x65\x55\xf5\x50\x59\xb1\x50\x35\x29\x52\x97\x21\x4d\x82\x21\x33\x46\x2d\x68\xe9\x46\xeb\x66\x88\x4a\x58\xc9\xf1\x09\x78\x48\x0d\xea\x2e\x0e\x95\xa6\x47\xbd\xc3\xfb\x85\x61\xba\x50\xf6\xd6\x19\x47\x65\x41\xa7\x88\xcf\x7f\xbc\x63\xbc\x4d\x1a\x2d\x6a\xc7\x84\x26\x84\x8c\xc5\xae\xfb\x56\x0e\x93\x9d\x13\x3a\x39\xe9\x24\xc6\x9b\xa9\xc1\x52\x1f\x27\x76\xba\x47\x96\x6c\x92\xf9\xb6\x4e\xa3\xaa\x06\xcb\x49\xe7\x88\x5c\x52\x9f\x64\x3d\xa7\x4c\x39\x93\xd9\x08\x63\x0d\xcd\x63\x3e\x9b\x28\x98\x05\x1f\x55\xc8\xa2\xff\xbc\x98\x46\x2b\xde\x63\xf2\xdf\x31\x90\x93\x97\x12\xf2\x93\x3c\xcf\xda\x90\x54\x1b\xae\x1a\xa7\xb7\x69\x19\xdd\xec\x62\x4e\xd8\x5d\xa7\x39\x9f\x66\x97\x69\xfc\x27\x9f\xed\xf2\x9b\x55\xce\x8b\x22\xce\x52\x7f\xd7\x19\xaa\x22\xd7\x69\xfc\xc7\x9a\x9f\x66\x79\x9f\x1a\xcb\x3a\x4b\x21\x19\x98\xb3\x41\x3a\x9a\xf1\x92\x4f\xcb\x17\xeb\x55\x12\x4f\xa3\x92\x17\x30\x65\x8a\xa2\x9e\x96\x42\x70\x41\x8d\xb4\xbc\x90\x15\x12\x8c\x78\x41\x3e\x51\x98\x6b\x07\x61\xc6\x31\x94\xd8\x11\x45\x16\x13\x64\x21\xea\xae\xd4\x31\x2b\xa3\x8a\x1a\xa0\xc2\x9c\x2b\x5b\x61\x54\x1e\x82\x67\xdc\x8b\xa6\xd2\x19\x97\xd7\x10\xb3\x0c\x07\xff\x03\xbf\xe9\xeb\x40\xca\x1c\x07\x49\x65\x66\x71\xea\xe6\xd8\x2d\xce\x7a\x59\x55\x3d\x95\x7f\x3c\x7c\x94\xee\x6d\x1b\x16\x84\xe8\x11\x81\x36\x08\x69\x03\x82\x60\x27\x62\xb3\x39\xe3\x23\xb4\x37\x40\xc9\xf0\x88\x1f\x71\x85\xa7\xa1\x14\xed\x34\x1d\xa2\x95\xa9\xb9\xea\x3b\x94\x55\x3f\xb0\xe9\xab\x6c\x29\x62\x2e\xd6\xc6\x7a\x0e\xc7\x4d\x9e\xe6\xb1\x8c\x26\xe6\x5a\x5a\x03\xc9\xa5\x4a\x52\x52\x98\x82\xdd\x59\xb7\x2f\xfe\xc3\x31\x48\x01\xfd\xe7\x82\xaf\x67\x99\x5f\x70\x19\x16\xcb\xff\x01\x9a\xed\xe1\xdf\xa1\x07\xdc\x4c\xfc\xcd\x79\x82\xc6\x0a\xfe\x9d\x73\xe2\xf8\x9b\x37\xd8\xd2\x7a\x7d\x30\xae\xc1\xd9\xed\x79\x5f\x83\x33\x34\xc9\x39\xbf\x8a\xb3\x75\xa1\xba\xdf\xfa\xf6\xdf\xdb\x32\xd5\x35\xac\x72\xfe\x0a\xf5\x40\xfe\x1d\x5a\xba\xf4\xe9\xaa\x02\x2f\x44\x2c\x8f\xb6\x4e\x08\x78\x70\x18\x32\x22\xfe\xad\x2a\x1e\x3c\xc0\x7f\x1f\x86\x55\x65\x6f\x29\x99\x53\x1c\xd5\x70\x09\x1e\xc8\x18\x87\x87\x21\x73\xc4\xc6\x08\x0e\x43\xbc\xc5\x82\xc6\xb0\xe0\x01\xad\x95\x09\xcd\x67\x5b\xd2\xa2\x30\xe0\xa4\xe5\x42\x56\xe0\x85\xa6\xa4\x43\x3a\x51\x8d\xd3\xfb\x99\xf0\x60\x1c\x8a\x76\x3f\x08\xd9\x90\x88\x3f\x13\xd1\x62\xf1\xf3\x51\x58\x55\x1e\xf5\x0f\xee\x13\x87\x5f\x71\xe9\x14\x89\xdf\x3a\xd9\x6c\xa6\x9f\x30\xbc\xe2\x43\xf9\xed\xe3\x70\xc8\x83\x27\x1b\x19\x7c\xf1\xc7\x75\xbb\x35\xd6\xda\x5e\xa8\x6f\xe3\x0c\x44\xf5\xae\x2b\x46\x47\xaf\xb4\x1f\x46\x38\x06\xea\x16\x53\x94\x31\x11\xfb\xd0\xc7\x0e\x4d\x44\x4e\xd6\x1e\x71\x3f\x75\xdd\x5f\x65\xf6\x14\xdd\xd6\x59\x44\x52\x0c\xb5\xa8\x82\x45\xe9\x10\xea\x0e\x75\xcc\x7d\xc2\x5e\x49\xf7\xf4\x6f\x8a\x13\x33\x16\xe5\x8e\x9b\x31\x2c\x45\x8f\x0f\x42\xed\xe6\x85\x29\xf6\x6c\x1d\x52\x5a\x8b\xe5\x2c\x17\xd0\x87\x67\x3f\xf4\x78\x49\x74\x54\x89\xbd\xb7\x4a\x4a\x45\x34\xd9\xf0\x81\x18\x8c\xfb\x63\x73\x9a\x4b\x02\x41\x03\xfb\x2f\xac\x94\x4a\x51\x9a\x7f\x6d\x36\xeb\x54\x5d\x82\x1b\x57\x0d\x8c\xbf\x65\x5b\x00\x91\x8f\xc6\x84\x8d\x0f\x1d\x69\xf6\x53\xdd\xa3\xa8\xc6\x3b\x25\xbc\x17\xca\x49\x4e\x41\x0f\x51\x9b\x36\xfa\x26\xeb\xc1\x8e\x09\xd6\xe2\x6c\x5d\xdd\xa9\xd2\xd7\x3b\x14\xb7\x57\x4d\x6b\xe8\xec\xd6\x96\x35\xb5\x49\x36\xb0\x83\x4a\x0a\x20\xb9\xe5\xf1\x23\x6d\xae\xe3\x89\x38\xff\x89\xc1\xf2\x07\x62\x0c\xe2\xa1\xa0\xe4\x8e\x4c\x9a\x08\x71\x34\xf5\x75\x8e\x49\x3c\xc0\xc7\x8f\xea\x31\x75\xdd\x31\x22\x28\xe9\xd5\x95\x52\xdf\xb9\xdf\xbc\xb4\x5f\x9c\xec\x79\xbe\x73\xcf\x7e\x27\x17\x51\xb3\x02\x65\x55\xff\x56\x59\x88\xa0\x10\xb1\x59\x3b\x3f\x0a\x12\x88\x86\x44\xb4\x5b\x68\x25\xbf\x40\xe6\x86\xb7\x92\xb1\x59\x9f\xba\xec\xa1\x87\xa5\x0f\x9d\x3d\x07\x57\x6c\x97\xc2\x40\x07\x8a\x04\x09\x0a\x4e\x4a\xb3\xd2\x21\x62\x4e\x12\x15\xa5\x9d\xbe\xf7\x80\x42\xc1\x1c\x65\xb9\x87\xcd\xd0\xa3\x2b\x58\x5c\xae\xc6\xa7\x27\x08\xed\x60\x60\x9f\x28\xac\x45\x2e\x5a\xb2\x96\xed\x68\x59\x1f\xb3\x6c\xc0\x58\x34\x71\x2c\x1e\xe7\xf4\x90\xfd\xdb\xf6\xd1\xe4\x8a\x15\xe2\xd4\xd5\xbf\x43\xe0\x92\x0d\xd6\xae\x3b\x28\xe0\x82\x0d\x3c\xc1\xac\x6f\x91\x27\x67\x4a\x80\x58\x1e\xc9\x1f\x0b\x56\x1e\x2d\xd8\x22\x58\x4a\x05\x77\x31\x59\x6c\xdf\x72\x57\xbe\xe8\xf8\xa2\x2b\xfc\x0e\xbc\x9d\x19\x5b\x32\x27\x4b\x13\x74\xc4\xe3\xae\x3b\x98\xb9\x6e\xab\x37\xb5\xd9\xf2\xf1\x9c\xcc\x58\x10\x4d\x6e\x2d\x16\xef\xdf\x8e\xc4\xe8\xe3\xef\x10\x22\xd7\xbd\x94\x8d\xbb\x60\x64\xc5\x48\xc2\xc8\x94\x91\x39\x23\x0b\x76\x4b\x83\xf3\xb0\xaa\xc8\x22\x38\x0f\xd9\x5d\x4d\x69\xb0\x50\xb2\xd7\xeb\x17\x22\x7d\x6e\x3f\xcb\x0c\x3c\x44\x40\x4d\x41\xfe\xd0\x0a\x29\x09\xbc\x90\x8a\x3f\x07\x21\x2c\x84\x50\x7c\x6b\xd9\x81\x05\xab\xf0\x68\xc1\x86\x43\x21\x2b\xbb\xae\x18\x95\xaa\x22\x17\x6c\xc5\xc6\xb4\xaa\x66\x12\x83\x05\xc7\xa9\x3d\x10\xae\x3b\x1c\x5e\xb8\xee\x42\x22\xaf\x4d\x03\x1e\xb2\xe0\x25\xac\xe0\x22\xd4\xf0\x05\xb6\x51\x92\x28\xcf\xee\x54\xf9\x1f\xea\x14\xe0\xad\xfa\x85\x54\x46\x90\x2f\x75\x43\x30\x85\xcf\x4c\xf7\x00\xa7\x7b\xd0\x9a\xee\xaa\x1a\x0c\x87\x17\x55\x85\xbd\x90\xcd\x5f\xfc\x17\x9a\x2e\xc6\xe6\x22\xa4\xb0\x18\x88\xe1\xa2\x47\xf4\x48\x49\xec\x17\x7b\x2c\xa6\x52\xa5\x73\xf1\xbf\x72\xc6\xc6\xae\x7b\xb1\x9f\x9f\xb0\x71\x5d\xf7\x30\xd9\xe6\xb2\x02\xe5\x5e\x14\xcb\x0a\x1c\x19\x44\xc3\x95\x92\x4f\x11\x74\xfa\x65\x8b\x0c\xce\x3a\x55\xb7\xde\x7c\xb6\x2b\x0b\x90\x32\xbd\xde\xe7\x71\x70\x1e\x4e\x84\x94\xe8\xc7\x0d\xbe\x3b\x49\x59\xc0\x81\x83\xe3\x40\x19\x82\x5d\x57\xc7\x9e\x9f\x74\x4d\xa8\x26\xb6\x39\x00\x6f\xf9\xa2\x88\x13\x17\x76\x69\xc3\x08\x80\x07\x39\xfb\x9d\x70\xc8\x82\x28\xa4\x21\x1b\x90\x54\x9c\xd6\xf1\xa9\xa6\x5b\x42\x38\xc0\x18\x52\xf1\x36\x16\x42\xa0\x1c\x18\xff\x2e\xcd\x4a\xbf\x68\x2b\x17\x35\x5a\x11\x28\xb7\xf0\x62\xd3\x9c\xa9\xb9\xb0\x11\x63\xd1\xee\x80\x20\x67\x71\xd3\x89\x0c\x22\x96\x6b\xad\x40\x0c\x41\x88\x20\xeb\x2d\x1b\x2f\x92\xb1\x28\x28\x42\x29\x90\x14\xa2\x37\xa5\xf8\x93\xd1\x76\x5f\x00\x41\x6c\x35\xdf\x45\xc9\x05\x72\x41\x3d\x45\xc9\x19\xa4\x14\x30\x11\x1f\x07\xa9\x5c\xcf\x75\x4d\x61\x11\x15\xdd\x2e\x6e\xb5\x4d\x51\x46\x95\xd6\xa9\xbc\xa6\xa0\x0f\xe5\x5b\x4a\xe1\x5d\x81\x07\x36\xcb\x25\xa5\x7d\x9e\x41\xe3\x93\x34\xe5\xb9\x38\x5a\x61\x6c\x6b\xda\xf0\x38\x2e\x78\x9c\xa8\x36\x89\xd2\xcb\x2d\x55\xfe\x53\xc9\x89\x28\x1b\x6c\x5b\xbb\xf8\x3d\xae\x5c\xd8\x68\x62\x87\x2d\x6c\x18\x05\xed\xcc\x32\xc4\x8a\x64\xcb\x49\x39\xc2\x82\xba\x16\x7e\x37\xcb\xc4\x17\x2f\x44\xfd\xdd\x77\x32\x5d\x31\x02\x92\xb2\xb4\xb3\xe4\xa5\x01\xce\x18\x6f\x03\x4d\xb7\x91\x55\xd7\xd7\x8b\x38\xe1\x84\xb4\xb5\xa6\xb4\x6b\x99\x45\x1b\xa5\x69\x4d\xa1\x8c\xf2\x96\x67\xb5\xd1\x22\xf3\x51\x92\x4d\x23\xa9\xc2\x6d\x7e\x8b\x0d\xb9\x68\x5d\x48\x6b\xf8\x27\xac\x23\x9e\xd5\x90\x67\x59\xaf\xa7\x36\x67\x8c\xcd\x6a\x40\xef\x97\x6d\xef\x57\xa3\x08\x83\x8d\x29\x4d\xb5\xeb\x92\xc1\x4a\x54\xf9\x0a\x5d\x66\xaa\xe6\x37\x52\xdb\xc1\x80\x68\x08\x17\x3e\x5a\xe4\x7c\x5e\x55\xff\xe6\xa3\x32\xba\x40\x23\x33\x74\x14\xc6\x1b\x0b\x7f\xc5\xc9\xc0\xa3\xa0\x6f\x30\xf0\x79\x4c\x41\xdd\x6e\xf5\x4a\xe1\x9f\x35\xeb\xb2\xac\xc9\x44\x2b\xf8\x48\x7b\xfb\x54\x8e\xbc\x8e\xb2\x5e\xe9\x1b\xbe\x1a\xf4\xaf\x7e\x11\xdd\x36\xe6\xb2\x9f\x4c\x01\xd8\x29\x50\x46\xde\x4d\xa9\x7c\xb9\x2a\x37\x83\xf1\x7e\xf1\xc0\x8f\x28\xa5\x7a\x49\x1c\x3f\xea\xf3\xf1\x94\x6d\xe8\x69\xed\xc0\x30\x87\x11\xd6\x8e\x37\xbe\x0b\x1e\xcd\x78\x6f\x64\xe8\x7b\x6a\xc3\x99\x31\xa5\x35\xe0\x00\xf6\x65\xfe\x5b\x4f\x66\x69\x36\xf7\xdf\x9c\x26\xcb\xf8\xce\xe0\xfe\x34\x49\x65\x0d\xe8\xc5\xb1\xe9\x07\xdb\x2d\x6a\x5b\x9d\xae\xeb\x94\x0a\xd5\x45\xc3\xf9\x10\x79\x66\x20\x25\xeb\x1e\x4f\x50\xfe\x45\x9f\x5e\xfd\x4d\x57\x0d\xa8\x9d\xf1\x67\x7c\x33\x86\x4e\x30\x0e\x91\xc4\x75\x5e\x5b\xda\xce\xa0\xdc\xf3\x44\x1e\xfe\x47\x37\x47\x73\xee\x09\xd2\xe3\xf1\x24\x1d\x96\x7e\x8a\x39\xaf\x78\xba\x59\x9a\xe5\x06\x77\x94\x1e\x97\x47\xe9\x90\x1d\x50\xde\xb5\x3c\xe0\x35\x85\x6c\x36\xfb\xdc\xe7\xde\x17\x3e\x4f\x36\xba\xd2\x76\x2c\x35\x6d\x3d\xda\xdb\x13\xf2\xcb\x91\x2e\x26\x6f\x15\x73\xf9\xd5\xc5\x0c\x87\xf9\x71\xd9\x5f\x4a\x5d\x53\xb3\xbe\xd3\x72\xc1\xac\xd5\xfe\x07\xdc\xe5\xd1\x2c\xce\xfc\xc1\x58\x52\x8f\x8b\xec\x46\xfc\x9e\xc7\x32\xc4\xfd\x2a\x2a\x8a\xeb\x2c\x9f\x89\xdf\xf1\x32\xba\x44\xd0\x13\xda\xc8\x52\x65\xc8\xe6\x9c\xa8\x3b\x8a\x72\x37\x4e\xef\x8a\xf5\xc5\x32\xc6\xa0\x18\x12\x26\x70\x23\xff\x42\xe6\xd7\x56\x89\xb7\xbc\x0d\xcf\xcd\xdb\x68\x4b\x63\x68\x39\x44\x38\xce\x51\x79\x9c\x1e\x95\xc3\x21\xcd\x87\xe8\xd3\xdf\x86\x86\xce\x9b\x92\x2e\x79\xdb\x1b\xa7\x1c\xcd\xe2\x1c\x62\xc1\x38\xf8\x4d\x29\xa4\xa9\xaa\xca\x21\x62\xa9\xeb\xda\x5a\x35\xc6\x58\x06\x05\xbb\x69\xee\x45\x4a\x49\x78\x26\xad\x33\x5a\x6c\xb4\xac\x25\xde\xa3\x28\x81\xbf\xb4\x6e\x17\x23\xa3\x67\x54\x5f\x34\x7c\xea\x73\xe7\x3d\x21\xfb\x16\x78\x93\xb4\xde\xac\xa3\xa7\x12\xd7\xe5\xaa\x14\x73\x8b\xd8\xd2\x66\x7e\xa6\x7d\xf1\x5c\x8a\xe8\xa5\x14\xd1\x4b\x23\xa2\x97\x1d\x11\xbd\x6c\x8b\xe8\x10\xbb\x6e\xfc\x19\xd3\x63\x2a\x6b\xad\xaa\x72\x47\xbb\x48\x90\x84\x4d\x83\x4c\x1e\xab\xec\x23\x09\x63\xac\xd0\xe3\xb4\x08\x0e\x42\x26\x4e\x5d\xa2\xf3\x22\x37\x5b\x00\xa6\x6d\x76\xb0\xe1\xf8\x66\xbe\x2f\x5a\xe6\xad\x8d\x30\xde\x1a\x6a\xdb\xbe\xb6\x11\x3c\x51\x07\x8e\xd8\x4c\x41\x1c\xaa\x7c\x3d\x0c\x44\x62\x1d\x9b\x0a\xcf\xb9\xad\x39\xb0\x45\xdc\x20\x84\x82\x8d\x61\xdd\xac\xdc\x84\x49\x77\xec\xd2\x40\x58\x90\x8c\x71\x25\xe7\xa6\xae\x3b\x48\x49\x86\xe5\x54\x15\x89\xb4\x86\x1e\x12\xbc\xd3\x16\x0f\x05\xb5\xb1\x21\x4c\x13\xae\xad\x26\x58\xf2\x70\xee\xba\x03\x21\x8c\x23\xec\xff\x35\x27\x39\xc5\x29\x1b\xc4\x32\x2d\x16\x69\x22\x3f\x6d\x59\x1f\x2b\xaf\xe7\xce\x62\x0c\x61\x25\xfe\x99\xb1\x48\xf7\x65\xc9\xb2\xaa\xda\x4e\x92\xc6\xb8\xc7\x8c\x1f\x7e\x8c\x7e\xf8\x52\x92\x0e\xf2\xd0\x0a\x64\x97\xd6\xa4\xac\x2a\xe7\xbe\x03\x45\x73\xb9\x1f\x14\xa1\x5f\xe0\xc1\xe0\x96\x0d\x78\x55\x0d\x32\xd7\x2d\x27\x4b\xff\x9c\x93\x25\x2c\x80\x63\x0b\xe1\x8a\xa5\x93\xb8\xaa\x48\x36\xe1\xfe\xac\xaa\x72\x3a\x09\x42\x3f\xf2\x6f\xd1\xf2\xde\x75\x53\x72\x0b\x57\x32\x67\x8e\x67\xdd\x84\x9d\x73\x72\x05\x2b\x0a\x39\x49\x40\x4c\x8f\x78\x37\x65\x3a\x06\xdf\xd1\x14\x8f\x1e\x73\x96\x04\x53\x9c\x92\xab\x60\x15\x4c\x43\x71\xfa\xb8\x55\xbf\xe6\xd4\x32\x23\x8c\xab\x4a\xa2\x79\xa9\x89\x4f\xc4\x10\x4d\x8d\x69\x84\x29\xee\x4a\x16\x97\xc8\x49\xbc\x0d\xa6\xa2\x9c\x9d\x18\xf9\xa8\x34\x29\x4b\x60\x2d\xc3\x64\x6c\xff\x9a\x24\x2c\x9e\xfc\x4e\x32\x98\x53\x7f\x21\x92\x4e\xf6\x3c\x84\x87\x4a\x44\xfb\x22\xf1\x67\x4e\xa9\x52\x20\x5c\x61\x4f\x19\x63\xd1\xe4\x4a\x5f\xea\xcc\x40\x17\x4d\xfd\x2b\x0a\xf1\x44\x35\x20\x82\x2b\x58\x53\x5f\xbb\xbf\x44\x70\xd5\xb2\x17\x7f\xc9\xbb\xf1\x0c\xe3\x36\x10\x42\x3e\xd2\x37\x18\x01\xaa\x8d\x85\x10\x80\xb8\x9e\xe2\x7c\x6d\x5e\x39\xbb\x4e\x08\x6b\x16\x4d\x3c\x7f\x0c\xd3\x7e\x4f\x3f\xe9\xfc\x5e\x43\x01\x42\x8c\x9d\x6f\xc9\xf4\x3b\xc6\x2d\x10\x07\x22\x95\x71\xc1\xec\x60\x32\x56\x98\x95\x41\x24\x96\x7e\x55\xa5\x03\xc6\x12\xb1\xa7\x48\xc9\x52\xda\xac\xb2\xa9\xca\xee\xcf\xd5\x8f\x06\xb2\x47\x1e\x19\xe3\x3a\x3c\x5a\x1f\x67\x47\x6b\x05\x36\xd3\xee\xeb\x5a\xf5\x95\x2e\x58\x70\xc9\xc9\x05\x27\x0b\x0a\x29\x0d\x1b\x6a\x27\x3e\x90\x7a\x71\x2b\xbb\x1a\x67\x79\xa5\x26\x52\xd5\x8d\x35\xa5\xc1\x79\x28\x47\x3a\x66\xc3\xe1\xfa\x28\x3e\xce\xc4\x0e\xb6\xab\x8c\x55\x19\x08\x3b\xa1\xb4\x21\x62\xfb\xaf\x4f\x3c\xd7\x95\x0d\xc0\x9f\x82\x7f\x1a\xad\xe5\x7a\xcf\xa3\x0a\x97\x8d\x28\x18\x6e\x67\x57\xde\x56\xac\xf7\x0e\x64\x89\x13\xe7\xbe\xe3\x3b\x4e\x6d\xc1\xc7\x68\x37\xa5\x14\xd6\xc7\xb1\xeb\xbe\x6c\x8a\x5c\x43\x2c\x48\x89\x68\x9e\x48\x35\x8a\x50\x93\x8a\xec\x9b\xd6\x0b\x2d\x12\xe9\x8b\x44\x6c\xa1\x01\xfe\xb6\x91\xa9\xf5\x38\x15\x8d\x58\xd2\xd2\x98\xa0\x4e\xfe\x96\x43\xc4\x32\xc1\x65\x3e\xf1\x34\xfe\xb3\xeb\xb0\xaa\x74\x3c\x36\x6e\x03\x7b\xa7\x15\xfc\x82\x97\x18\x13\xcf\xc9\xd8\x9f\x9a\x4b\x53\x14\x5a\x0a\xc6\x61\x8d\x3b\x51\x34\x40\x5f\x87\x1d\x15\x4a\xf9\x19\xa1\xf7\x83\xeb\x0e\x48\xcc\x7e\x91\xae\x89\x05\x45\xac\x20\xd7\x25\x05\x2b\xf4\x00\x88\xf5\xaf\xf6\x58\x55\x15\x14\xd6\x8a\x88\xb3\x20\xa4\x14\x52\x36\xf0\x80\xc4\xec\x0f\x53\x82\x20\xfb\x2c\xd6\x5e\x5a\x90\xc9\xec\x6a\x92\x52\x40\xc8\x39\x2c\xd4\x9a\x94\x5d\xb4\x3d\x6c\x2a\x35\xaa\x73\x69\x35\x2c\xda\x4d\x45\x3b\x7f\x08\xa2\xd0\x6a\x6a\x12\x44\xa1\xec\x80\xf8\x25\xe6\xaa\xaa\xbe\x5c\x79\x04\x6a\x75\xfa\xf1\x96\x4a\xd1\xd8\x25\x95\xc8\x34\x26\x38\xc5\x44\x3b\xca\xfa\xc5\xa4\xb9\x06\xa3\xfe\x3b\xc2\x61\x4d\xcd\xd0\xd7\x50\xb0\x4c\x1a\x10\xc5\xc9\x96\xe9\x14\x93\x92\x49\x5e\xfa\xcc\x9a\xcc\x41\x21\x67\x46\xde\xd8\xa0\x93\x20\xa4\x0d\xc7\x49\x91\x78\x16\xec\x25\x27\x65\x90\x86\xb8\xb7\x26\xb1\xe6\xa2\x7e\xa6\x7f\x1d\x91\x82\x3d\x6b\x5d\xe3\x58\x3e\x61\x46\xe3\x63\x61\xca\x9c\x8c\x21\x63\x5d\x66\x09\x0a\x86\x76\x0e\x33\xb8\x85\x2b\x36\x86\x4b\xe6\x8c\x1d\xb8\x60\x99\xeb\x06\x21\x9c\x8b\xf6\x5f\xb3\x04\x6e\x04\xd3\x8c\x5d\xb7\x31\xef\x26\x82\xf3\x4d\x29\x9c\xb2\x97\x43\x26\x0f\x56\xd7\x13\xcf\x6f\x41\x3a\x55\xd5\xc8\x83\x77\xec\x46\x35\x01\x17\xec\x54\x02\x6b\x49\x1b\xa8\xa8\xaa\xa6\xf4\xe8\x72\xc0\xd8\x3b\xd7\x55\x88\x2f\x73\x76\x13\x5c\x86\xf4\xe8\x72\x38\x94\x3c\xca\x75\x95\x4d\xc0\x8c\x8d\x21\xaa\xaa\xf9\x86\xe1\xd4\xaa\xaa\xc8\x82\xcc\xc5\x3c\x0f\x96\xf4\xe8\x96\xf1\x60\xa6\x0d\xda\x6f\xc9\x5c\x7c\xb4\x82\x82\xd2\x3b\xb5\xac\xe7\x54\x69\xad\x45\x63\x5e\xb2\x53\x5a\xa7\xae\x4b\xc8\x9c\x0d\x6e\x45\x65\xae\x7b\xb5\xb7\x07\x19\x46\xaa\x93\xd9\x29\x3a\x5d\x0e\xd9\x25\xa4\xae\x2b\x9a\x7b\x65\x5a\x74\x74\xcb\x4a\x55\xdb\x2d\xb9\x80\x73\x31\xb0\x16\xab\xbd\x3a\x19\x4b\x75\xf5\xa5\x98\xd8\x8b\xe0\x32\xac\xaa\x73\xfc\x97\x88\x3f\xec\xb9\x34\x41\x59\x53\xba\x73\x2e\x78\xdf\x39\xad\x35\x43\x5b\xc3\x39\x85\xa9\xeb\x0a\x19\xe2\xdc\xcc\xa2\xeb\x5e\x19\xd8\x20\x41\x31\x5b\xb6\x19\x64\xdd\xd8\x3e\xc8\xae\x41\xc2\xae\x29\x5c\xd4\x8d\x17\x45\xc1\x49\x46\xfd\xac\x26\x99\xa0\x86\xd4\x98\x03\x30\xae\x3f\x2d\x6a\x58\x37\x86\x02\x6c\x53\x1f\x2a\x05\x45\x03\x30\xb3\x2d\x1e\x01\x86\xaf\x77\xdd\x88\x70\xb6\x30\xd5\x08\xd1\x03\xe5\x1c\x96\xa2\xab\xb6\x87\x6a\x26\xb5\x29\x91\xf9\xac\xd9\x4a\xc8\xd8\x2b\xeb\x2a\xd7\x38\xd2\x9e\x1c\xb8\xae\xf3\xfa\x05\xc6\x2d\x48\xd8\x3a\x18\x87\x54\x1d\xee\x9f\x76\xdc\x1d\x97\x62\xb1\x1a\x0e\xb4\xc6\x6b\x77\x64\x7a\xd2\x05\xbb\x64\xc4\xb8\x6b\x90\x44\xb3\x32\x9b\x62\x49\xf5\x67\x49\xf5\x3d\x44\x13\x7b\x62\x67\x81\xd7\xd2\x2d\xad\x1e\x34\xdc\x64\xad\x29\x93\x3c\xdb\xe9\xbe\xa1\x98\x94\xb1\x1f\x46\x36\x4c\x85\xf6\xf4\x9d\x8c\xfd\xb5\x81\x4c\xda\xdb\xc3\x3d\xb2\x0e\xb2\x10\x6c\x36\x8a\x08\xa4\xd8\x07\x79\x98\x9a\x33\xd9\x05\x25\x67\xc5\x6c\xfe\xb9\x9e\x28\xaf\xe2\xb5\x16\x75\xfa\xbd\x8b\x95\x17\xf5\x5a\x0b\x5f\x19\x78\x14\x06\x84\xb3\xd8\xd8\xcd\x5e\x71\xb1\x5c\xbb\x2e\xdc\x62\x61\x40\xaa\x6f\x83\x94\xba\x74\x51\x55\x05\xe1\xb0\xa2\x94\xc4\x68\x44\x05\x29\x0c\xca\xaa\xfa\xbc\x87\x33\x42\x6e\xd9\xa6\x42\xec\x5c\xbb\xcb\x3a\x54\x1b\x0a\x29\x8b\x5d\x74\x3c\x3a\x87\x4d\x73\x23\x36\x18\xcc\x61\x41\x28\xb4\xad\x38\xb7\x78\x5c\x79\x9f\xb1\x89\xfd\x8c\x03\x71\x8f\x31\xbd\x39\xc1\xf5\xd9\xd4\xff\x45\x1a\xd0\x3b\xe0\xfc\x45\x2a\xa6\x1a\x9d\x60\x47\x23\x25\xf2\x0b\x7e\x59\x55\x89\xd2\x4f\x55\xa8\x51\x5d\xf0\xf8\x72\x51\x56\xd7\xf1\xac\x5c\x38\xd0\x3d\xc6\x48\x96\xd6\xef\xa5\x55\x82\x63\xae\x79\xdb\xe7\xdd\x89\xe7\x1f\x48\x37\xba\xc6\x88\x6d\xc3\x4c\xbb\xb7\x5f\xa8\x85\xdb\x47\x0f\x0d\xab\x27\x6d\xfb\x7c\xdc\x04\x0e\xc2\xf9\x39\x5f\xe8\xb4\xcc\x6a\x7a\xad\xbe\xec\xed\xa4\xeb\x7e\x59\x05\xd8\x0c\x84\xf6\x77\x44\x5b\xa9\x6d\x53\xa6\xb0\xe7\x3a\x6d\x6a\xcc\xec\x55\xb3\x5e\x6f\x34\x08\x0f\x8e\x3b\xf6\xd8\x4b\xad\x70\x50\x86\x93\xce\x50\xfb\x88\x8d\xd6\x6f\x05\x98\x5b\x56\x80\xb9\x6d\x05\x48\x21\xe3\x35\xe1\x74\xe7\x1c\xb7\x3b\xbb\x41\x70\xc5\x55\xce\x6e\x1a\x5b\x2e\x95\x14\x38\xbe\x23\xc1\x1a\x57\x8d\x3c\x7a\x6e\x5b\xef\xe9\x07\x76\x63\xa5\xc2\xb9\x44\xf2\xbd\xd1\x36\x72\x70\x2e\xdd\x63\x5f\x64\x53\x76\x23\x7f\xc2\x79\x63\xd1\x79\x63\x7e\x8a\x7a\xd1\x40\xd1\x58\xc4\xde\xa8\x04\x34\xc3\x3c\xdd\xc0\x96\xe9\x80\xd3\x19\x0b\x92\xf4\x48\x08\xe4\x12\xe5\xf2\xe9\xc0\xb6\x98\x37\xda\x9f\x26\x49\x0b\x06\xe7\xe8\x8c\x54\x90\xd4\x20\x0c\x2a\x04\x3b\xc3\x06\xf3\x1a\xde\x6d\xc5\x12\x0b\xc2\x1e\x4d\x7c\xd7\x8f\x9e\x0f\x50\x5f\x9d\xea\x92\x2d\x7b\xba\x67\x7a\xa4\x91\xe8\xb6\x08\x7b\xa3\x21\xfc\xd4\x86\x49\xfb\x4a\xdb\x9f\x0e\xe4\x9b\x68\xef\x5b\xb6\xff\xf1\x98\x04\xd1\xde\x9f\x61\xf0\xf1\x6c\xff\x6c\x7c\xe2\x23\xa8\x58\x79\x96\x9f\xa5\x67\xf3\xf0\x3e\x0d\xda\xcf\x67\xfb\x93\x13\x32\xf1\x8f\xcf\xf6\xcf\xbc\x93\x8a\xde\xdb\x8f\x9b\x56\x7d\xe8\x18\xdd\x2c\x49\x49\x27\xe7\xa3\xcb\x9c\xaf\xda\x52\x65\xde\xd8\x7c\x68\x60\x47\xc8\x01\xed\x6d\xd3\x9a\xfa\x0d\xcb\xed\xfb\xba\x7d\x40\x56\x9f\x6c\x80\xb3\x94\x9f\xfd\xb4\x41\x54\x14\x67\x67\x55\xc6\xb9\x3a\x30\x68\xa0\x45\xfd\xbc\x05\xca\xa8\x0c\xc6\xa1\x75\x4b\x46\x38\x73\xfc\x34\x2b\x09\xda\x46\x51\x87\x82\x54\x2e\x6a\x0e\x87\xd6\x2f\x76\xc7\x50\x50\xe8\x18\x68\xa3\x35\xd2\x24\xc8\x43\x3f\x08\xfd\x76\x16\xc2\x41\xf5\xa8\xec\xeb\x51\x7b\x85\x21\x54\xb0\x05\x6d\x4b\xee\xd0\xc0\xb2\xc7\xd6\x0e\xf2\x16\x68\xaf\x0c\x4e\xb1\x63\x99\xa1\x36\x70\x37\xad\xc8\x01\x16\x86\xb1\xd8\x2f\x6a\xe4\xac\x6b\x0c\x3c\x8f\xb0\xf1\x51\x79\x9c\xa3\x6e\x3a\x9e\x93\x66\xb3\x93\x38\x28\x43\x19\x36\xac\x51\x60\x52\x63\xb1\xdf\xae\x20\x08\x29\xd8\x25\xc9\x71\x21\x1c\xb0\x10\xcb\x39\xf2\xc4\x9b\xd8\x64\x89\xa4\xd4\x4f\x8d\x2d\x5e\x9f\x6d\x5a\xbb\x9e\x0f\x0a\xbd\x19\x45\xc8\x81\x47\x11\xfa\xb5\xf7\x02\xeb\xb3\x1f\x8e\x29\x22\xaf\xf6\xdd\xa9\x0d\x54\xce\x4d\x6b\x38\xd7\x7d\x66\xc4\x36\x31\xa0\xbe\x69\x85\x76\xba\x56\x08\x8d\xcf\xe1\xbd\x84\xf0\x3a\x2b\xee\x93\xe3\xe0\xec\xfa\xec\xb7\x70\x78\x42\x83\x8f\x27\xe1\xfd\xea\x2f\x16\x8a\xd7\x11\x31\x38\xe3\xbd\x0b\x38\x86\x0c\xd9\x4b\x6b\x5a\x8d\x10\xfd\xbc\xa7\x8d\x4a\xca\x8d\x99\x73\x2c\x15\x26\xe3\xd0\x75\x9d\x13\xf9\xbb\x01\xba\x0a\x1b\x0c\xf2\x13\x76\x38\x09\xa4\x6e\x07\xad\x10\x42\xff\xbd\x81\x32\xaa\xaa\x41\x1c\x88\xcc\xda\xa4\x79\x80\xd7\xfe\x12\x50\x7c\x22\x8e\xb2\x29\x55\x13\x6d\xc2\x83\x34\x30\xcf\xa5\x79\x87\x2e\x22\x1a\x10\xa9\x64\xa5\x1d\x40\xf8\x7c\x22\x36\xa9\x2f\x38\x4f\x83\xf7\x0d\xe7\x42\x34\x2c\xb8\x10\x37\xf0\x4b\x28\xb5\x41\x18\xee\xcc\x1e\x98\xa6\x1c\x67\x15\xde\xca\x29\x8a\xa5\x2d\x54\x17\xda\xb8\xa4\x0d\x60\x7d\x49\x97\x32\x4e\x52\x1c\xd2\x89\xfa\x41\x4a\xf1\x24\xbb\x82\x96\x87\x31\x94\x36\x28\x2a\xc6\xd3\x52\x32\x6e\xc6\xf2\xae\xcb\x76\x1c\x1c\x84\x4d\xfc\xa5\x71\xc8\x32\xb0\x36\x2e\xf3\x64\xfc\xbd\xba\xc5\x12\x3e\x98\x18\x26\xd2\x1a\xa4\xf5\x81\xdc\x7e\xfe\x52\x2c\xb9\x86\x63\x8e\x30\xb6\xf1\x44\xfd\xc5\x95\x48\xce\x05\x6d\x34\x20\xb9\x44\x96\x43\x6b\x6a\xa9\xac\xc4\x5a\x83\xe7\xec\x9c\xe4\x72\x99\xfe\x2c\x17\xa9\x94\xc1\x8b\x6a\x95\xf3\x2b\x32\xf1\x7f\x49\xcb\x38\xa9\xd0\x21\x78\x1f\x7e\x62\x77\x68\x42\x96\xf3\x14\xaf\xda\xa4\xe9\x47\x81\xe1\x04\xf8\x0d\x5e\x97\x89\xcf\xda\x21\x05\x7e\x6f\xd8\xad\xc5\xdb\xbd\x0e\x6f\x3f\x32\x17\x7d\x2d\x1a\xb8\x88\x8a\x3e\x2c\x78\xdd\x21\x4b\x65\xd2\x42\x2b\xef\xa7\x6d\x12\x9b\x68\x7c\xc4\x8f\xd3\x23\xbe\x41\xdf\x24\x5c\x7c\xc0\x43\x9b\xbe\xd5\x30\x4d\xb2\x82\x17\xdd\x10\x42\xb6\x57\x95\x4d\x8c\x51\xd3\x13\xb1\x4d\x4a\x2c\x85\x14\xdc\xbe\x86\x6c\x48\x8d\x80\xbe\x5c\x68\x08\x69\x90\x87\x47\xa9\xeb\xa6\x42\xe2\xe8\x78\x42\xa1\x1a\xb7\x31\x10\xf0\x3c\xd7\x25\xd1\x24\x92\x26\x27\xca\x96\xb4\xeb\x92\xbe\x85\x6f\x21\xaa\x31\xbd\xcb\xcc\xbd\x6f\x5b\x05\xd6\x05\xa7\x37\x37\x51\x2d\x7a\x9d\x51\x3f\x43\xbb\x81\x19\xbf\xe9\x35\xa0\x98\xf4\xa0\x2b\x2b\x56\x7e\x8e\x8e\x50\x72\xa5\x53\x83\x98\x8c\x64\x59\xd3\x14\x41\xb0\x7c\x45\x4c\x90\x76\xa9\x1f\x2d\xbc\x1c\x39\xe1\x79\x21\x8e\xda\x62\xf9\x3d\x4b\x12\xa2\x69\xb0\xbf\xe7\xd5\x10\xcd\x66\x7e\xaf\x6f\xd7\x06\xb4\xbf\xd5\xb3\x56\xbc\x81\x4b\x5e\x12\x0a\xb8\xec\x28\x15\xcc\x22\x9a\xcd\xbe\xef\xc6\x29\xb0\x0b\x8d\x66\x33\xa2\x41\xac\x3b\x08\xf8\x7e\xe7\x59\x2f\x56\x4e\xd1\xb4\x4b\x01\x0c\xdf\xf5\x98\x79\x68\xeb\x8a\x4d\xff\x50\xed\xb8\x65\xd3\x44\xe5\x3a\xa4\xf6\x73\x5f\x4b\x4f\x09\x07\xfb\xd2\x98\x9a\xdc\xb8\xeb\xb7\x19\x66\x77\x3f\x43\x84\xeb\xb4\x6b\xa6\x61\x6e\x3b\x38\xb4\x0c\x64\x69\x2d\x69\xc4\xb6\xbc\x5d\x63\x60\x55\xf6\xb3\x24\xd9\xda\x85\x9e\xe2\x3f\x97\x7d\x4b\x0d\x5f\xee\xb3\x5d\x0f\x76\x5a\x94\xf4\x15\x43\xd5\x35\x6f\x16\x9f\x16\xf2\xa1\x77\x5e\xde\x11\x62\x4f\x72\x55\xdd\xd5\xd4\x3a\x2d\x63\xb0\x0a\x43\x87\x7b\xbf\xb7\x0f\xd7\x18\x98\x4b\x11\xea\x9e\xcc\xe2\x5c\xe2\xc4\xf3\x1c\x41\x74\x26\xd2\x5d\x8f\xa7\x06\xad\xc8\x27\x98\xa1\xe4\xcb\x55\x12\x95\xdc\x41\x8b\x46\x66\xb2\x55\x15\xa7\x86\x55\x07\x21\x70\x1b\x7b\x12\xdd\x2a\x5a\xfb\x0e\x71\xb6\x79\x68\x07\xe4\x36\xb7\x5d\x56\x60\x8d\xb2\x11\x11\x1d\x1c\xdf\x96\xb9\xfa\x43\x8a\x37\xc2\x29\x85\xdc\x75\x37\xc8\x4b\x8e\x2a\x30\x73\x30\xc0\x18\x9c\x36\x17\x3d\x11\x24\xf3\x27\x34\x9f\x6d\xed\xf7\x98\xc2\xcf\x8d\x3a\x2a\x6e\xa2\x56\xaa\xaf\x1b\x32\x11\x53\x2d\xd9\xbd\x66\xfb\xc1\xc7\xd6\x61\x6b\x68\x47\x7d\x79\x61\x13\xc2\xe6\x46\xf2\x4d\xe3\x89\x67\xa5\xbe\xd2\x77\xe0\x6a\x3c\x10\x94\x8e\xbb\xee\x92\xa0\xdf\xae\x8c\xd2\x4d\x27\xb1\x8e\x42\x80\xf1\x12\x51\xa8\x8a\xe2\x44\xc8\xcd\x26\x6f\xb9\xe0\x69\x93\x11\x07\xd3\x2f\x95\x7a\x4e\x4a\x0d\x10\x70\xad\x53\xcd\xa9\x46\xbb\x43\x1f\xfc\x6e\x2e\x5a\xd7\xe7\xa3\xe7\x51\x92\x5c\x44\xd3\x4f\xed\x08\xa0\x9c\xf5\x90\xf6\x4d\x72\xd5\x44\x9c\x53\x94\x4d\x39\xcf\x92\xd7\xa8\x52\x85\xb6\x9d\x70\x19\xa4\x21\x13\x8c\x17\xca\x5a\x48\x32\x4d\xf8\x88\x1a\x94\x4b\xa7\x31\x14\x90\xac\x16\x6f\x56\xf6\x3c\x58\xb3\x0e\xb7\x8f\x59\x8c\x3e\xd8\xe9\x14\x1d\xeb\xd9\x60\x7c\x14\x19\x1b\x5d\xb6\xe7\x29\x86\x1b\x69\x35\xed\xd1\x70\x58\x1c\x1b\x93\x64\x8a\x36\xe6\x59\x50\x98\xfb\xce\x60\x1c\x42\x2a\xe5\x48\x3e\x2a\xca\x6c\xf5\x2e\x7d\x15\x25\x05\xc7\x1b\xb4\xac\x09\xa1\x32\xf0\xe8\x0e\x1f\x2d\xf9\x32\xcb\x6f\xf1\x8a\x6a\x20\x04\x3d\x36\xf0\x30\x24\x65\xc6\xd2\x49\x10\xfa\x18\xc4\x20\x61\x77\x2d\xd6\xd4\x58\xec\x2a\x73\x8a\xb2\x55\xf6\x9e\x07\x91\x66\xd6\x56\x2c\x55\x71\x68\xba\x53\x63\x9b\x42\x7b\x67\x2d\x49\x2e\xf6\xb4\x5c\xe6\xae\x8b\xc1\xaa\x30\x48\x48\xa6\x0d\xac\xfc\xdc\x75\x73\x73\xe2\x6d\xe4\x16\x76\x41\x72\xea\xba\x25\xc9\x69\x4d\x6b\xd2\xc4\xa3\x01\xd5\xb0\xb5\xde\x19\x35\x48\xdc\xc3\x9e\x7e\xa8\x56\x99\x8f\x61\x8b\x06\xe6\x88\xa4\xec\x7c\xa4\xa2\x2b\x90\x52\x82\xfc\x9f\xec\x79\x47\x34\xd3\x0a\xe8\x14\x3c\x0a\xe9\x31\x2b\x5c\xb7\xd8\xdb\xab\x75\xd5\x5d\xf9\xd0\x88\x1d\x4d\x71\x1c\x32\x14\x8b\x32\xcb\x2d\xb9\x63\x9d\xd9\x1a\x78\xbc\xec\x54\xc5\x2b\xad\x5f\x4f\xce\x98\x45\xf2\x66\x0f\x7d\x46\x5b\xb9\x7b\x66\x74\x90\xd5\x90\x64\xb6\xbc\xd0\x2d\x28\xad\xaa\xb2\xaa\x88\x2c\x4f\x57\x2f\x3e\xe9\x2d\x6e\x10\xa3\x21\x22\xff\x2d\x2e\x5b\x21\x3d\x1a\xce\x13\xe3\xd2\x0b\x38\xe8\x1b\x16\x75\x6b\x39\xd1\xa6\xc1\xd4\x4f\xc3\x66\x3d\x41\x59\x55\xd6\x8c\x8a\xb2\x7b\xda\x9a\x8c\x74\xa5\xdd\x28\x45\xd6\x77\xbd\xed\xcd\x6b\x43\x06\x12\x3b\x28\xcc\x0b\x3e\xe7\x79\xeb\x1b\x73\x7d\x19\x04\x4e\x9a\x95\xf1\xfc\xd6\x11\x2c\x34\xbb\xcc\x79\x51\x38\x60\x51\x23\xe2\xc8\x4d\xe6\xd0\x2d\xa9\x07\x21\x04\x4e\xce\x8b\x2c\xb9\xe2\x0e\x38\x82\x60\x76\x0a\x10\xc4\x61\xb7\xbf\x94\xf6\xab\x31\xe8\x82\x66\x8e\x2c\x15\x71\x64\xc1\x11\xd4\xf7\xbf\x5a\xa8\x07\xaa\x1c\x51\x68\x08\x39\x73\x56\x3c\x9d\xa1\x88\x10\xb3\x3b\x0c\x8a\xda\x33\x09\x79\x0d\x51\x72\x1d\xdd\x16\xbd\xb1\xb9\x90\x2b\x34\xf3\x22\xb9\xc3\xc6\x3c\x6d\x46\x86\xd4\xcb\x46\xc6\xa0\x96\x0a\x00\x21\xe1\xc4\xab\x56\x1b\xe4\x11\xca\x94\xd7\x90\x76\x3d\x91\x2d\x84\xc8\x2d\x54\x49\xf2\xfb\x25\xe1\x41\x1e\x3c\x08\x91\xa0\xca\x5f\x3b\x59\x90\x07\x5e\x18\x92\x8d\x1a\x63\x44\x13\xec\x8b\x8f\xb5\x83\x7c\xcf\xe2\x90\xe6\x27\x1e\x07\xe4\xba\x21\x42\x30\x16\x6b\x49\xb3\xcd\x91\x9a\x4d\x35\x40\xe2\x19\x03\xf4\xf9\x65\x90\x07\xe3\x70\xe8\x88\x45\xee\x84\xb2\xb2\x18\xe3\xc1\x34\x55\xd6\xb4\xa6\x20\x23\x3c\xcb\x13\xb5\xac\xad\x06\x31\x76\xb6\x51\xa4\xe5\x8c\x37\x6e\xc4\x82\xa8\x89\x19\xde\x75\xda\x90\xb9\x0b\x19\x2b\xca\x8a\x54\x05\xc9\x66\xa4\xab\x64\x47\xde\x60\x1e\x67\x54\x21\x4e\xb0\x5c\x0d\x51\x01\x6b\xf4\x48\x48\x9b\xc6\x59\x51\x1a\xc5\xf1\x40\xb9\xff\x7f\x58\x48\x5b\xfc\xdd\x82\x27\xf3\x3d\x1c\x93\x35\x5e\xe0\xd2\x9d\x04\x01\x30\xbf\x36\xc0\x1e\x32\x45\xd1\x7d\x58\x92\x84\x4e\xe2\x49\xa2\xc5\x8f\x88\x64\x90\xc2\x0b\x88\xa9\xfa\xf9\x46\x48\x64\x3e\xc9\x86\x43\xf8\x7c\x26\x93\x9a\xaa\xc9\x13\x73\x42\xc5\xb7\xf9\x80\xb1\x17\xc8\x1b\x95\xa4\xb2\x66\x42\x56\x01\x12\x57\x55\xaa\xa7\x16\x73\xcb\xa1\xa8\x6b\x98\xb2\x78\x92\xb4\xe2\x5e\xe7\xb7\x77\x09\xb1\x84\x9f\x66\x0d\x8f\xb8\x0e\x54\xfd\x63\x96\x7d\x12\x07\xe8\xfe\x37\x84\xc3\x74\x54\x08\x99\xf0\x43\x1e\x4d\xc5\x61\x76\xe8\x9d\x30\xc1\x43\x44\x03\xdf\xf4\x34\x30\x55\xeb\x0c\x49\xa8\x6a\xda\x4e\x39\x99\x12\xea\x13\xab\x96\x4b\x5e\xa2\xa8\x29\xab\x27\x76\x25\x6c\x4b\x36\x22\x5d\x9a\x79\xf9\x21\x5e\xf2\x6c\x5d\x92\xa9\x28\xfb\x33\xdb\x53\x88\x7b\xc1\x38\x0c\x0e\x43\x3c\xac\x46\x64\x0c\x1c\x96\x24\xa6\x93\xd8\x7f\x01\xbc\x35\xe4\x28\xf7\x74\x73\x96\x74\x52\xfa\x2f\xf0\xe5\xc1\xc6\xcb\x9c\x4e\x72\xff\x0d\xa5\xed\xfd\xa1\x7e\x6e\x8b\xf8\x34\x60\x82\x6f\x2b\xd6\xc0\x21\x96\x7e\x5d\xd9\xa6\x08\x99\xf6\xd8\xbb\x44\xac\x0c\x0e\x84\x2c\x58\x06\x0f\xc3\x9d\x38\x28\x05\x21\x61\x91\x68\x15\x14\xae\x8b\x3f\x5a\x36\xfb\xac\xa8\x21\x0d\x0e\xf7\x78\x18\x1c\x84\x1a\x92\x4b\xa7\x1c\xda\x29\x63\xcc\x21\x98\x31\xe8\x21\x13\x0f\x14\x64\xa1\xa5\x48\x10\x9c\x8f\x42\x16\x94\xc1\x38\xec\x0b\xbd\x2f\xdf\xb4\xe8\x8a\x90\x2f\x95\x1a\xcf\xef\x67\xa7\xed\x8f\x58\x64\xd8\x6f\x4d\x21\x36\x03\x9b\x51\xa9\x0e\xc5\xbd\x94\x41\x46\x21\xab\xe1\x7a\xc1\xfb\x5c\x33\x36\x62\xdf\xa5\xac\x84\x9c\xe9\x38\x70\x10\x33\x15\xb1\xd1\x6a\x4b\x64\xad\x39\x42\xa1\xe8\x0b\x3b\xda\x10\x78\x7a\x97\x8b\x13\x9e\x24\x9c\xe2\x57\xb7\xca\x13\x6f\xb2\x51\x87\x9f\xc2\xde\x5e\x59\x55\x91\xbd\x79\xf1\xec\x56\xd7\x18\xf8\xfb\x98\x89\x63\x9b\x38\x23\x45\x92\x82\xe3\x65\x9f\xce\x0d\x91\xda\x57\x30\x28\x29\x18\x2e\x8a\x60\xb9\xc8\x46\x09\xad\xaa\x25\x89\x83\x34\x74\x5d\xf1\xaf\x3c\x23\x99\x9b\xe1\x48\x72\x3d\x85\x25\x82\xb6\x57\xaf\x30\x37\x88\x6a\x4c\xe9\x56\xb0\xa9\x66\x51\xab\xa3\xe0\x9f\x6c\xff\x23\x79\x79\x15\x25\xd5\xeb\xb4\xe4\x79\x1a\x25\xd5\xfb\x28\xbd\xe4\xd5\x7b\x31\x72\x3c\x9d\xf2\x4a\x62\xad\x54\x68\xb6\xfe\xcb\xfb\xd7\x14\x69\xf0\xbd\xfd\x9d\x6d\xe4\x85\xd9\x36\xdf\xf4\x0e\xcf\xdc\x45\x26\x11\x53\xd4\xcf\xd1\x75\x94\xa7\x18\xa0\xfa\x4f\x85\xff\x33\x4a\xa3\xa5\xa4\xc6\x76\x16\x1d\x93\xd7\xd4\xb4\x6b\x6a\xf2\x77\x9d\x61\x39\x5a\xf2\xa2\x88\x2e\x39\x94\x92\xd4\xa0\x8a\xe2\x5c\x2a\x94\x4d\xd4\x7e\x66\xb3\xf6\x16\xad\xb1\xc9\x2a\xb2\x99\xb2\xa6\x35\x0e\xcb\x8f\xad\xb5\xd3\xf0\xc0\xef\xc5\xce\x50\x80\xe9\x1d\x4c\xe1\x17\xef\xde\x2a\x9f\xc2\x37\x59\x34\xe3\x33\x07\xbe\x17\xa4\xad\x37\xaf\x84\x13\xfe\x9e\xea\xb6\x12\x19\xf0\x54\x3e\xf4\xad\xd3\x1f\xe5\x4c\x73\x2a\x03\xd4\xb7\xc8\x61\xb7\xbf\x84\x53\x73\xce\x68\x24\x56\x13\x8b\xd0\x03\xcc\xfe\x5b\x14\x97\xbe\xfa\xdd\xda\x70\x44\xde\xfe\x4f\xf6\xf6\x54\xc1\x98\xf3\x7c\xa4\x0a\xa0\x55\x45\xcc\x03\x1b\x8c\x61\x80\x00\x0a\xae\xdb\xca\x7f\x32\xae\xaa\x1f\x3b\x9b\x22\x38\x0f\xb5\xaa\x10\xf3\x61\x97\x98\xec\x19\x38\x3a\x3e\xb8\x8c\xbb\x8d\x19\x4e\xc5\x16\xa8\x2a\x1c\x2d\x75\xba\xb3\xdf\xa0\x91\x6e\x07\x8c\x6e\x34\xcb\x4e\xa7\x79\x96\x24\x93\xd6\x44\xab\x1a\x11\x79\x77\x13\x0d\x7a\xcb\xcc\x6d\x66\xd4\xd3\x26\xb7\xce\x2f\x5d\xd3\x32\x15\xbc\x4c\x0b\x43\x3d\x2e\x08\x8c\xc9\x08\xe3\x46\x3a\x61\x17\x82\x1e\xa0\x25\xec\x6e\x2c\x0e\x55\x83\x31\xa4\xf4\x17\x2c\xb0\x80\x34\x28\x42\x18\x8c\xb1\x50\x13\x0b\xa2\x15\xb9\x12\x3f\x58\xca\xf8\x99\x11\x86\x2e\x4b\x50\xb3\x4e\x9a\xcb\x6e\x0d\xe8\x4f\x7d\x92\xb0\x12\x36\xaf\xe8\xcc\x21\xa9\xd1\x6e\xa7\x08\xb5\xa8\xae\x99\x8c\xd3\x44\x89\x3e\xc1\x90\x42\x34\xc9\xfd\x5c\x87\x49\x2c\x42\x28\x40\xbf\xb2\x1c\x25\xe2\x09\xf7\x93\x89\x6e\x07\xf5\xd7\x13\x89\xa6\x02\x29\xf5\xb3\x1a\xfe\x60\xfb\x1f\xf7\x96\xc5\xde\x3e\xfc\xc6\xf6\xf7\xa4\x5d\x00\xb5\xb5\x50\xbf\xb6\x55\xde\xa3\x32\xfb\x65\xb5\x32\x16\x05\x26\xdb\x3f\x5b\xd6\x3d\xda\x66\xec\x0f\x70\x96\xc5\x9e\x85\x85\xf3\x1b\xfc\x2a\xcd\x10\x7e\xe8\xdb\x5e\xed\x2b\x6d\x09\x95\x64\x3f\x0f\x86\xd6\x85\x77\xd3\xc4\xbf\x21\xe1\x88\x8b\x91\x8a\x11\x2a\xed\x29\xc4\xaf\xe1\xdf\x46\xeb\x78\x36\x1c\xd6\xf8\x97\x79\xf0\x37\x3b\x94\x31\xe2\x16\xf5\xa9\xc8\x03\xbb\xb4\x0e\x3a\xca\x5d\x0d\x3f\xc8\x90\xca\x36\x1a\x63\xfb\x0b\x56\xfa\x4a\x39\x2f\x43\x91\x37\x9e\xee\x60\xe7\x03\x65\x6c\x5c\xc2\x34\x4b\xe7\xf1\xe5\x3a\x47\x6d\x01\x5e\x8c\x53\x28\x6b\x28\x78\xb9\x2d\x64\xa2\xbc\x36\xc2\x1e\x68\x88\xe1\xae\x3a\xad\xa4\x71\xf0\x4f\x52\xd2\x90\xa5\x3b\xed\x28\x9b\xf2\x4d\x4e\xdb\x31\x21\xe3\x6e\x38\xe6\x0d\x64\x65\x04\x25\x69\x55\xec\x77\x7a\x2e\xce\x62\xad\x04\xd9\x82\x1a\xa2\xe9\x94\x17\xc5\xff\xcb\xdb\xbb\x77\xb9\x6d\x23\xfb\xa2\xff\xf7\xa7\x68\xe1\x78\x78\x00\x0b\xcd\x56\x3b\xb3\xf7\x3a\x9b\x6d\x44\xd7\xf1\x23\xf1\x8c\x5f\x71\x3b\x33\xc9\xc8\x1a\x6d\xb6\x04\xb5\x18\x53\xa4\x42\x82\xfd\x98\xa6\xbe\xfb\x5d\xa8\x02\x40\xf0\xa1\x8e\x33\xfb\x9e\xeb\xb5\xdc\x22\x41\x00\x04\xf1\x28\x54\x15\xaa\x7e\x75\x48\xd1\xdd\x54\x5f\xd7\x6a\x40\x2b\xab\x2c\x50\xbf\x96\x4a\xa6\xee\x4c\x45\xb7\x30\xc2\x23\x96\x12\x6f\x79\xc6\x78\x73\xb4\x39\xcd\x22\xc5\xfa\x0a\xa6\xd6\x11\x5c\x77\xb0\x5b\x4b\xbb\x03\x9f\xcc\xee\x33\x41\x55\x27\x3e\xae\x66\x64\x41\xf7\xfc\x8b\x6e\x8b\xd0\xdf\xcb\x92\xec\xb8\x98\xce\xd4\x3c\x52\x2d\x6d\x25\xf3\x4d\x98\x91\x51\x30\xc1\x4a\x8a\x99\x9a\x65\xf3\xf9\x9e\xfa\x3d\xa1\xe9\xbb\x17\xce\x95\x02\xee\xe9\x43\xd3\xce\x70\x83\xa6\xce\xce\x53\x2d\xc6\x6c\xe2\xf2\x45\xac\xe2\xaf\x9f\xf3\xcd\xb7\x07\xc1\xa8\xdb\x1e\xa5\xd9\x2b\x5d\xfc\x11\xf8\x27\xfc\x95\xff\x68\x7e\x4d\xcc\xb1\xcf\xf7\x68\xad\xf0\xf8\xf3\xbe\xfe\x3c\xb3\xd7\x73\x1b\x70\xec\xd9\xc9\x3f\xe6\x3e\xa5\xf9\x4b\xcf\x12\xae\x19\xf3\x6e\x60\x12\x06\x61\x9a\xc8\x2a\x56\xf1\x89\x66\x40\x2c\x7d\xf9\x07\x27\x27\x8f\x02\xd2\xf5\xe6\xef\x4e\x28\x88\x51\xdb\xb2\xd0\x2b\x18\x43\xa1\x2e\x1b\x8a\xae\xaf\x8a\x0a\x76\x44\x10\x5f\xe3\xb4\x94\x04\x37\x5b\x4a\x34\x49\x47\xdc\x26\x00\xa7\x92\x42\x88\xb1\x1c\x13\x32\x1d\xcb\xe8\x67\x67\xe0\xf1\x97\x8b\xf7\xef\xd0\x06\x01\xd6\x0c\xdb\xd3\xcc\x8a\x8e\x09\xbb\xdf\xff\xe8\x4d\x5f\xf4\x60\xb2\xa0\xf2\x8d\x99\xd8\xc2\x3f\xd4\xee\x0d\xa2\xc9\xf6\x63\x68\x1e\x52\xc9\xea\xfa\x91\x77\xb7\xe7\xab\x76\x99\xd6\xfa\xfb\x31\xc4\xf5\x69\xdb\x60\x96\xcc\x8b\x6e\x11\x76\xff\xa3\xe1\xa4\x0c\xb2\xe2\xe2\xa1\x5a\x1f\x75\x6b\x5d\x1c\xac\xf6\x51\xab\x5a\x60\x4e\xbc\x63\xfc\xde\x4b\x3a\x60\xf7\x78\xaa\xcb\x63\x2d\x3c\xe7\x9e\xf9\x69\x6b\x0e\xa1\x35\x8b\x77\x94\x03\xfb\xf6\x8f\x40\x48\x72\xb4\xdd\xca\xbd\x63\xef\xd1\x23\x7c\xc2\x89\xe9\x44\x3d\x57\x4a\xc2\x4c\x84\xa7\xcc\xb9\x02\xe2\x3a\x8e\x41\x38\xd0\xef\xa1\x85\xd0\x37\xc8\x49\x37\x98\x63\x38\x55\xf1\xec\xe9\x17\x5a\x18\x35\xea\x7f\x30\xc6\xff\x82\x5e\x8f\x10\xe1\xf8\xe8\x11\x4c\x85\xee\x5b\xf9\x68\xe2\x6c\x11\x13\x73\xd1\xd7\xad\x20\x61\x04\x11\xd7\x63\xa9\x71\x72\xd9\x30\xf5\x2c\xfa\xa9\x1b\x7d\xde\x02\x5c\x24\x6b\x9a\x7b\x74\xd6\x01\x0f\x3a\x1a\x40\x33\xdb\x5d\x5c\x32\x36\xcd\x22\xff\xc9\x5f\x3a\xa9\x47\xbf\xdb\x18\x08\x70\xbf\x37\xb8\xa8\xbc\x2f\xe7\xe1\x13\xfd\xe5\xc3\xd3\xb1\x13\xa5\xbe\xf7\x26\x33\xa3\xdc\x97\x9b\xe3\x71\x33\xa7\x7e\xab\x64\x25\x87\x77\x57\xdd\x13\x8d\x91\x94\x00\x07\xcd\xf5\x2d\x61\x63\x02\x85\x08\x2f\xc4\x23\xb7\xff\xf0\x2c\x08\x00\x57\xb9\x17\x14\x5d\xe7\xf2\x16\x80\x6f\x50\x93\x31\x16\x15\xcd\x61\x0c\x84\x9b\xdb\xf3\x95\xec\x37\x8a\xdd\x43\x90\x38\xfd\x7e\xc4\xe2\x15\x8b\x10\x72\xe1\xcb\x0b\x17\xf4\x09\xe2\x3f\x39\x67\x26\xb1\x08\x17\x90\x4d\x4b\x82\x25\x42\xb8\x92\x24\x73\x8a\x70\x61\xe2\xb4\x78\x65\x8a\x93\x13\x70\x90\xa5\xfa\x5d\xc2\x58\xab\x5a\xd8\x5c\xbf\x2c\xe3\x66\x83\xc9\xe1\x1c\x8b\xbb\xa3\x42\xaf\xf7\x17\xa1\xf9\x18\x8b\xc0\xca\x18\x1f\x15\x41\x00\x0b\x14\x8e\x4f\x40\x19\x41\x35\x51\x68\xda\x39\x1c\x8d\xdb\x74\x3b\xe4\x20\x47\x8e\xb6\xe0\x00\x64\x40\xe7\x5c\x37\x67\xfc\x1e\x0f\x67\x0e\xeb\xcd\xbb\x9a\x1c\x8f\xf4\xcc\x94\x1b\xe2\x6c\x8e\x81\x83\xba\xa4\x68\x68\x84\xb0\x9d\x4f\xec\x91\xf3\x80\xf1\x0e\x55\x42\x72\x29\x74\xcf\xf2\x4c\xf7\x73\x77\xb6\x3f\xcd\xa6\x76\x5c\x2d\x35\x73\x91\x27\x1c\xd7\x15\x0d\x4e\xf4\xf6\xac\x70\x4b\xeb\xa8\x3d\x03\xcc\x2a\xe0\x66\x70\x25\x5a\xbe\xdb\x21\xd5\xcc\x12\x18\xc8\x34\xe3\xd6\x2c\x9b\x81\x79\xf9\xf0\xd2\x1b\xac\x64\x99\xca\xb8\xf8\xf1\xc1\x7a\xcc\x84\xc1\xd9\xce\x67\xf3\x41\x95\x9f\xcf\xbb\x9d\xf1\xa4\xad\x5c\xc2\xbd\x80\xc7\x2d\xa3\xaa\xd2\xd7\xa7\x9d\x9c\x14\x75\x9d\xb4\x44\xe2\x9c\xcf\x34\x77\x04\x4c\xd9\x03\x83\x87\x83\x01\x2e\x3a\xd8\x42\xc4\x9d\xa2\x99\x21\x06\xf9\x2c\x9e\x73\xd9\x9a\xac\x18\xec\x04\x26\xa4\xa6\xfb\xe3\x31\x37\x77\x30\x07\xcb\x46\x48\x2b\xa9\xaf\x91\x53\x4e\x2d\x24\xa5\x38\x9d\x8d\x4f\xe6\x53\xcd\x4d\xad\x1e\x7f\x0e\x6b\xf6\x79\x35\xa6\xd3\x68\x26\x5f\xce\xe1\xc1\xe7\xd5\xb8\x66\xa7\x26\x0c\x1b\x57\x52\x74\x83\xdb\x42\x64\x5c\x26\x6a\x46\xc9\x58\xca\x31\x61\x20\xe3\xfd\x69\xfe\xd8\x0b\x78\x2b\x66\xe4\x53\xbe\x23\x9c\x7c\x4c\xae\x36\x8a\x70\xf2\x5d\xae\x54\xbe\x25\x9c\xbc\x91\x6b\x45\xe6\xad\x78\xa5\x9e\x58\x40\xb2\x3c\x03\xbe\x88\x4a\x81\xd1\xad\x4a\x75\x97\x42\xd8\x31\x08\x82\x5d\x1b\x57\x8d\x56\xaa\x9e\x64\xce\x6a\xae\x03\xc1\xcc\xb5\x60\xe5\x6a\x5d\x84\x4b\x58\xd4\xc4\x94\x24\x18\x26\xb5\x2b\xee\x3b\xeb\x56\x1e\x8b\x7b\x1c\xc6\x1c\xa5\x9c\x78\x96\xcf\xed\xeb\x67\xf9\x9c\x37\x97\x42\xd9\xa0\x36\x39\x0a\xfc\x99\x8b\x4e\x0a\xc4\x58\x4b\xdd\x5e\x6e\x5d\x51\x23\x26\x35\x2c\x6b\x2e\x87\x1a\xf1\x64\xc2\x4b\x51\xf4\x81\x3c\x8f\x8b\x70\x59\x15\xd4\x87\x5e\xf7\xce\xba\x97\x66\x9f\x80\xb3\xfd\x4a\xe8\x29\x91\x6a\xc6\x37\x03\x0c\x56\x0a\x19\x30\x5c\xfc\x4c\xcd\xa7\x84\x44\x64\x77\x4b\x18\x5f\x8a\xce\xa3\xba\xd6\x0f\x46\x42\xa4\x41\x30\xae\x58\x10\x28\x89\x26\xb8\xee\x15\xe8\xb5\xba\x0c\x82\xe5\xec\x9b\x39\x38\x87\x03\x4b\x53\x9d\x8a\x27\x3c\x15\x69\x5d\xeb\x74\xbe\x14\xe3\xaa\xae\xcf\x70\x96\x2f\xb0\x2f\xa0\x81\xcb\x71\xca\x38\x3d\x3b\xc9\xd9\x63\x7a\x76\x42\x73\xdd\xd4\xd3\xaa\xae\xc3\xff\x60\xec\xa9\x98\x04\x01\x8d\xc5\x84\xf1\xe5\xa9\xc8\x8f\x96\x8f\xc5\x13\xde\x2b\x6c\xce\x94\xf7\x9e\x2d\xfd\x52\x8c\x97\x75\xad\xdf\x38\xd1\x3b\xd9\xec\x6c\x3e\x5d\x8e\xa9\xfe\x1d\x9f\xb1\xc7\xd9\xec\xc9\x3c\x1a\xeb\xbf\xbc\xd0\x2b\x29\xac\xb2\x44\x89\x94\x17\x61\xa9\xe2\x42\x89\x25\x2f\x42\x99\xad\x04\xb8\x60\x83\x7e\x21\x96\x30\x17\xec\x40\x95\xd2\x47\x9b\xed\xce\xba\xc2\x73\xfe\xe1\x89\x88\xa5\x2f\x15\x23\x26\x6a\x78\x99\xaf\xee\x5a\x81\x38\xb2\x8e\x43\x17\xe0\x4b\x98\x39\xab\xbc\x39\xcb\x1f\x0a\xf2\xe8\xe6\x3a\xee\xc6\xe4\x32\xcd\x97\x5f\x08\xe3\xd0\x04\x91\xb4\x02\x64\x56\xdd\xf8\x8f\x9a\x6b\x44\x2b\x82\x09\x8f\x1b\x20\x8f\xfc\x69\x7c\x9e\x8f\xc7\x8c\x16\x00\x78\x6d\x16\x25\xf8\x5a\x17\xed\xa5\xc8\xd5\x94\xba\x16\xe8\x51\x48\xf4\x64\x47\x72\x56\x78\x9f\x50\xd7\x88\x07\x30\xcb\xf5\x4c\xec\x54\x22\x20\xd8\x19\x41\x85\x61\x67\xa5\x17\x12\xcc\x40\xb0\xde\x12\xa5\xac\x08\xdf\x38\xf2\xde\x88\x29\x1c\x79\x5f\xef\xc5\xa8\xc8\x42\x8f\xc7\x89\xfb\x2e\x3c\xeb\x49\x10\xcb\x5b\x7f\x61\xa7\x3d\xfa\x89\x87\xfc\xd3\xda\xbe\xcb\x4d\x7e\x33\xb0\xfa\xec\x56\x05\xcc\xe6\x26\x59\x0d\x1d\x9c\x9b\x3c\x6c\xcf\x55\x7e\x75\x95\x0e\x6d\x63\xe4\x32\xcf\x53\x19\xfb\x27\x9b\x53\xc3\x95\xeb\x17\x53\x63\x0b\xae\x5f\x60\xaf\xbb\x7b\x67\x61\xde\x32\x5d\xe0\xaf\x2d\x68\x6f\xb1\xec\xde\xed\x10\xa9\x44\x59\xdb\xe2\x16\xd5\x80\x64\x04\xf1\xc1\x97\x52\x9c\xb6\x3d\x7d\xda\xb6\x66\xec\x34\xe1\x6b\x5d\xfc\x51\xfd\xcf\x6d\xbe\xaa\x52\xf9\xa8\xfe\x7c\x4a\xa7\xd1\xaf\xf1\x75\x5c\xcb\xe5\x36\x66\xe5\xb2\x48\x76\xea\x34\xe1\x1b\x29\xee\x11\x04\x2d\x9a\x9d\x71\x62\x63\xf7\x6c\xab\x54\x25\xbb\x54\x8a\xff\x6d\xaf\xfe\xf7\xb7\x84\x93\x26\x6a\xcf\x9c\xab\x8d\x8c\x57\x58\x08\xbc\x30\xf1\xb9\xb9\x9c\xf3\x65\x9e\x46\xb3\x27\xee\xe1\xd3\x65\x9e\x5e\x15\x79\xb5\xc3\x6c\xee\xce\x2b\xa1\x8a\x56\x01\xa5\x17\xa6\xa9\x14\x2e\xfd\xac\xab\x68\xf6\x4d\x37\xeb\x53\x55\x98\xec\xc5\xb7\x03\x65\x16\xc6\xcb\x2f\x9a\x4d\x38\x21\x9c\x90\xb9\x47\x46\x76\x7e\xd4\x54\x27\x9b\x8b\xdf\x09\x22\x39\x3d\x10\x08\x10\x81\x5f\x58\xe4\x15\xef\x46\xe0\x99\x0e\x04\xe5\xb1\xc5\x66\x73\xde\xd1\x9b\xa1\x93\xd8\xd4\x19\x54\x4a\xd0\xf2\x66\xed\x78\x9c\x1d\x04\x30\x20\x7e\x56\x92\x7d\x5a\x9c\x67\xe3\x31\xc3\x85\x28\x67\xd9\x9c\x93\xab\x34\xbf\x8c\xd3\x97\xd7\x71\x4a\xc0\xe9\x16\xa9\x83\xea\x3e\x63\x6c\xbf\x91\x61\xbe\x53\x30\x5e\x02\xaf\x93\x3c\xe3\x1b\x19\x42\x1f\xeb\x24\xb5\xce\x73\xa5\x2f\xec\xb8\xc2\x75\x8c\xc7\x43\x1b\xb0\x00\x88\x57\x50\x62\x03\xb7\x2b\x98\xe2\x5b\xc9\xef\x24\xbf\xd6\xb3\xb9\x0e\xfe\xd7\xf4\xf3\xcd\xf8\xfc\xb4\x19\x92\xab\x43\x00\x44\x16\x04\x83\xaf\x85\x32\xa4\xda\x12\xfc\x57\x45\x7c\x05\x34\x9b\x59\x70\x9f\x09\x5f\x35\xdd\xb0\x7b\xba\x3a\xdf\xa1\x81\x3f\x00\x14\xed\xe6\x0c\xb1\x19\x73\xd6\x3d\x35\xc8\x19\xb3\xbd\xbd\xe1\xb9\x87\xe0\x93\xcf\xa3\xdc\x3b\x2c\x90\xa8\x0a\xca\x8d\xf6\x20\x16\x80\x40\xd0\x8a\x48\xd5\xf5\x0f\x5e\x25\xd7\x9a\xb0\x96\x82\x2e\xcd\x06\x9e\xb3\xba\x9e\xe1\x9c\x64\x7d\x00\xf8\x4a\x6c\xe4\xac\x9c\xd7\xf5\x46\x86\x76\x12\xf3\xd8\x73\xb4\xad\xf4\x66\xba\x08\x37\x6a\x9b\x7e\x28\xa4\x31\x70\xcd\xd9\xb8\xd2\xdb\xea\x12\xdc\xe0\x11\x75\x27\x16\x71\x83\x33\x7c\xd4\x7c\x5f\xdc\x8a\x0c\x4f\x63\xb1\xf6\xed\x84\x7d\x38\x4f\x41\x08\xea\xb1\x0c\x06\x8a\xfd\xb8\x4f\xf2\x16\xb6\x41\x17\x79\x61\xdd\x29\xa5\x87\xe2\x3c\x17\x9b\xd9\xce\x22\x2f\x14\xe0\x77\x63\x8c\xf1\x72\x5e\xb0\x6f\x4f\xce\x18\xd8\xf3\x18\x80\x28\xd7\xc9\xa9\xf0\x18\xcb\xbc\xb3\xc5\xe7\x8c\xc7\x62\x27\x69\xbb\xd3\x73\xc6\x09\xd2\x38\x02\x47\x36\x2b\x49\x63\xc6\x31\x6c\xf1\x12\x5a\x12\xcf\x96\xd0\x92\xb5\x1d\x41\x8b\x32\x48\x98\xf3\xe6\xcc\x9b\xd8\x90\xfb\xad\x14\xc5\xc1\xd9\xd6\x7a\x77\x71\x60\xc0\xe9\x5d\x53\x45\x37\xca\x59\x37\x6a\x99\x09\x72\x06\x34\x9f\x30\x7e\x27\x3b\xcf\x6d\xa4\x37\x4e\x9a\x98\x6f\xbd\x4c\x26\xf4\x99\xee\x82\x6d\x3b\x4a\xda\x9d\x64\x7c\x85\x30\x98\xcf\xd3\x3c\x93\x62\x2b\xc3\xa5\xbe\x80\x31\x1c\x4d\x58\xe7\xce\x4d\x1a\x0b\x9d\xa9\x2b\xf4\x3d\xbd\xf5\x60\xc7\x85\x8c\xbf\xbd\x7d\x7a\xea\xae\x09\x5f\x85\x59\x0e\x2f\x78\x8e\xc5\xc4\x68\xd4\x7b\x53\x53\xb7\xef\x86\x0d\x04\xe2\x52\x77\x58\x37\x60\xed\x42\xef\x6c\x5f\xe4\xdd\x29\xbf\x31\x5b\xe4\x36\xaf\x4a\x59\xef\xf2\x24\x53\xb2\xa8\x97\xe8\x61\xbb\x95\x59\x55\xaf\x8a\xf8\xaa\x5e\x15\xf9\x8e\xd5\xcb\x34\x59\x7e\x39\xe5\x2f\xa1\xcc\xec\x9f\xe1\xfc\x31\xd3\xb2\x57\x48\xc3\x31\xab\x99\x47\x77\x6e\xa5\x0f\xd0\xef\x92\x2f\xbc\x64\x2f\x90\xf5\x7b\x69\x6c\x86\x9c\x24\xd0\x82\x44\x6d\xcc\x88\x3c\x2c\xb7\x67\x1d\x5c\x33\x60\x6b\x79\xd9\x3e\xb9\x74\x67\x3d\xf7\xf6\xf4\xb2\x27\xc2\x66\xa0\x73\x2c\xea\x3a\xe3\x99\x93\x62\x15\x83\xea\x4b\xa8\x5e\xcd\xca\x39\xcf\x3d\x9e\x29\x59\x1b\xf7\x93\x02\x01\x55\x84\x48\xa6\x34\x11\x5a\xe6\x76\x55\x44\xe6\x41\x10\xf4\x8f\x9e\x32\x9d\xbb\xe0\x85\xcb\x6b\x6e\xbd\x16\x18\x18\xee\x84\x25\xe2\xa2\x89\xb0\x3f\x4a\x9c\xbb\xbd\x0f\x22\x9f\x83\x50\x91\x70\x9a\x0c\x1d\x1b\x2e\x28\x0b\xf3\xf5\x9a\x4a\x30\xa9\x19\xb2\xf2\xdb\xb3\xf0\xaa\x4a\x56\x22\x86\x1f\x80\x97\x83\xfb\x05\xfc\x8c\xc7\x60\xfd\xd4\x57\x63\xc8\x6b\x99\x29\x34\xd2\x41\xbf\x82\x84\x17\x70\x28\xbb\x37\xcf\xc4\x3d\x6e\x81\xd1\x7d\xdf\x4d\xa8\x85\xa6\xef\x6f\x47\x16\xcd\x9e\xdf\x59\x35\x22\x43\xdc\x79\xd0\x2b\x87\x1b\x08\x91\x52\x00\xbf\x4e\x73\x91\x31\x9b\x02\xd6\x35\xd6\x55\x1f\x54\x75\x07\x5c\xb3\x2e\x25\xa0\x68\xd8\x6f\xcd\x3a\xdf\xca\x69\x25\xee\xb0\xfd\x25\xab\x6b\xef\x0e\x60\x0d\x69\x2c\xee\xcc\x2b\xf1\x38\xdb\xde\xb5\x0c\x38\xba\xba\xe1\x85\x6e\x0d\xf6\x97\x2a\x92\xab\x2b\x59\x40\x0c\x71\x8c\x86\x3e\xb5\x8f\x34\x8b\x0e\x4e\xee\x56\xd8\xf6\x6c\x78\x4c\x98\x55\x2d\xf5\x52\xa3\x74\x25\xcc\x3f\x3e\xd3\xdb\x9e\xdd\xa2\x53\xbd\x4f\xed\xc4\x56\x00\xc8\x11\x6e\x8f\x6a\x96\xce\x0d\xce\xca\xd9\x9c\xaf\x04\x2d\x67\x4f\x4c\x28\x16\x83\xfb\x11\x5a\xe0\x0f\xc6\x77\x41\x40\xd7\xc2\xb6\x0b\x20\x13\xe2\x74\xb6\x9b\xd7\xf5\xfd\x9e\xef\x04\x4d\xa6\xeb\x70\x25\x53\x79\xa5\x77\xad\xbb\x9d\x8c\xd6\xe1\x65\x92\xad\x0c\xbe\xfb\x8e\x1f\x2c\xbb\x14\x8d\x8e\x19\x30\xa4\x76\x3c\x2f\x92\x2b\xa8\x63\x8b\x87\x30\x05\x37\x23\x1a\x65\x5c\x8f\x49\x84\x23\xc4\xed\xd8\x46\x09\xf7\x41\x00\x22\x18\xe9\x03\x08\x01\xc6\x41\x95\x71\x4d\xc5\xcb\x5d\xbc\x94\xd1\xca\x80\x9a\x84\x04\x14\xaf\x9c\x6e\x44\x85\x3c\x0c\x35\x97\x62\x36\x67\xee\xeb\x9e\xe7\x55\xa6\xc4\x84\xaf\xf5\xb6\x50\xed\x82\x60\x74\x36\x12\xc2\xdc\x35\xbe\xfa\x2b\x1e\xb3\xba\xee\x9b\x63\x04\xc1\x80\x89\xc6\x8e\xc7\x8c\xf1\xb5\x7e\xa0\xfb\x59\xff\xda\x9a\x96\x8c\x2f\xed\x8c\xb6\x33\xb4\x9d\x20\xb0\x3b\xb4\x38\x3d\xdd\x58\x03\xfe\x4d\xbb\xbd\xe3\x31\x9f\xf0\x25\x8b\x0c\x7f\xb1\x04\xcd\x3e\x0c\x07\x2e\x48\xfd\x91\xde\xc9\xc1\xbf\xb1\x30\x9b\xa3\xb3\x20\x68\x2d\xd3\x20\xf0\xd7\x8f\x85\x3e\xfc\xca\x29\x9b\xac\xe9\xff\x68\xd6\xe2\xeb\x0e\x4e\x3e\x18\x5e\x41\x8b\x87\x27\x2f\x04\x45\xe0\xa5\x28\x21\x16\x51\x27\xdc\xcb\xe7\xcf\x21\x23\x63\x3b\x87\x3e\x7f\x0e\xe9\x34\x0a\x1f\x7f\xfe\x1c\xd6\x8c\xb0\x31\xa1\xfa\xea\x11\x23\x00\xc0\x2f\x36\x1e\xda\xd0\x39\x5b\x8a\x0d\x80\x0d\x25\x41\xb0\x1d\x09\xb1\x0c\xed\xc4\xaf\x6b\x00\x15\xd7\xa3\x0a\xe9\x38\xec\x65\x10\x8c\x4a\x9c\xbf\xcb\xd0\x4d\x5f\x56\xd7\x45\x10\x14\x90\xaf\x74\x51\xec\x28\x79\xfc\x18\x0c\x8f\xea\x7a\xd4\xa4\xeb\x29\xbd\x69\x61\x0c\xf9\x65\x3a\x53\xe6\xe4\x84\xaf\x8d\xfa\x25\x08\xec\x55\x33\x2b\xd9\x51\x1c\x04\xa3\x4d\x73\x36\xa8\x59\xd3\xb8\x58\xe5\x37\x99\x5b\x12\x36\xc1\x96\x5a\x71\x8f\x52\x2e\x7c\x1b\x33\x2a\xf9\xae\x79\x68\x0f\x4c\x60\x19\x36\xb8\xb4\xbb\xe3\x24\x3b\xae\x98\x1d\x4b\x77\x0c\xb1\x1b\xeb\x49\x01\xd3\x74\x34\x61\x47\xdd\x63\xf7\x0a\x66\xa4\xcb\x4d\xf0\x25\xc7\x38\x21\x09\xdb\x83\x27\xc9\xae\x67\xa2\xdf\x72\x7e\xd2\xd3\xde\x4d\xa2\x75\x72\xab\xf7\xce\x0a\x74\xc7\xc8\x68\x77\xcf\x27\x80\x2a\x1b\xd1\x0f\xf0\x0c\xec\xdb\xc0\xbb\x70\x56\x22\xa2\x14\xcc\xab\x65\x6f\x72\xba\xa7\x46\x3b\xab\x25\x0d\x51\x72\x25\xce\xce\xd5\xd3\xee\x9b\x00\xf0\xa1\x9a\x29\xcf\xf2\xd3\xc4\x94\x2c\x9b\x39\x0d\xf0\xf6\xa8\xeb\x1f\x2d\xc3\x5d\x21\x5f\x98\x2f\xae\x6b\x18\xaa\x56\x9a\xe7\x19\x5c\x3a\xf9\xcb\xb6\xd1\x10\x9e\xd2\xcf\xc4\x53\x84\x9f\xa0\x89\x88\x67\x6a\x3c\x9e\x33\x98\xa9\x49\xf9\xa1\xc8\x77\xf1\x15\x40\xe6\x5f\xa8\x7c\xb7\x93\x2b\xca\xce\xd1\x6c\x2c\x5c\x56\x45\x21\x33\x65\x9a\x96\x84\x32\x95\x5b\x9e\xe9\x5a\x72\x91\xb8\xd7\xcc\x32\xaf\xba\xd7\xdb\xad\x5c\x25\xb1\x92\xc3\xf5\x96\x61\xe1\x56\x05\x94\x68\x6e\xad\x2c\xe2\xaf\x1a\x5a\x9a\xb7\xbc\xbf\xfc\x55\xe4\xbc\x0c\xf5\x5e\x23\x72\xf8\x69\x6c\x62\x68\x21\x28\xed\x0e\x50\xee\x56\xea\x1c\xbd\x45\xb1\xa2\xba\xce\x6d\xc3\x99\xd9\xb1\xcd\x77\x55\x00\xd4\xaf\x39\x33\x5a\x86\x85\x2c\xab\x54\x09\x50\xf4\xa1\x67\xb2\xcc\xd4\x0b\x64\xd2\x29\xe3\x25\x9c\x12\x7a\x9f\x48\x3d\xeb\xb4\x65\xb8\xcb\x4b\x65\x47\x2a\x08\xda\xf7\xad\x91\xe3\xf6\x4d\x60\xc7\x82\xdd\x79\xd8\x28\x00\x26\xf8\x6c\xce\x2b\xa1\xda\x64\x80\xa7\x42\x86\x18\x1f\x01\xe0\xa5\x83\x20\xf5\x4f\xfd\x29\x01\x09\xc0\x07\x7c\x97\x21\x22\xca\x7f\x2b\xce\x8c\x25\x5e\xaa\x39\x9b\x4d\x52\x9e\xa7\x22\x6d\x79\xda\x82\x8e\xce\xe0\x0c\xf9\xd5\xda\x5a\x47\x0d\x4c\x3d\xd8\x6b\xa6\x2e\x96\xb3\x99\x98\xc6\x2b\xf1\x7e\xcf\x11\x9c\xbd\x02\x7d\x8c\x53\xf3\xc4\xb3\x44\x8f\x20\x60\x3a\x3a\x4a\x67\x43\x7b\xc6\xb3\x64\x2e\x8a\x16\x77\x30\x5d\xd0\x04\xa1\x0e\x8c\x8b\x7f\x0a\xbe\x6c\x06\x4f\x05\x1f\x99\xc0\x9b\xa9\xdb\xa9\x18\xd7\x35\x05\x81\x73\xf2\x3b\xca\x1d\x55\x2c\x0d\x4a\xa6\x9e\x05\x51\xda\x8c\x43\xbe\x77\xf6\x09\xa9\x71\x3f\x79\xaa\x7e\xb7\x94\xb2\x58\x77\x00\xe9\x09\x2c\xb4\x9e\x27\x9d\x51\x1d\x36\xa5\x5b\x84\x40\x68\x1b\x7b\x3e\x2e\xf9\xbd\xcc\xaa\xad\xb4\x56\x74\x5d\xab\x3a\xb0\x6e\x03\xc7\x03\x8f\xc9\xb7\x26\x21\x7a\x01\x24\x59\x9c\x42\xa5\xee\xec\x7f\xe8\x59\xeb\xf4\xe6\xe1\xe2\xbd\x27\x33\x39\xef\x58\xf5\x1d\xfc\x3e\x73\x90\xfb\x3b\x9f\x74\x53\x24\xca\x5e\x1b\x63\x42\xd0\x0d\xef\xf9\x3a\x19\x46\x54\x98\x39\xe3\xc8\xf9\x54\x46\x9a\xe2\x9b\x9e\x04\x23\x21\x43\x11\xa2\xfb\x34\x8f\x57\xd1\x7d\x96\x7f\x57\x5d\x1a\x9b\x44\x13\xe3\xe3\xde\xb0\xf7\x03\xbd\x30\x12\xe2\x3d\xc4\x4c\x40\x4c\x05\x9d\xbd\xd5\x15\x6b\x8c\xf1\xc1\x47\x67\x7b\xde\x62\x4f\x08\x3c\x49\x32\xb2\xe7\x97\x69\x55\x3c\xf4\x0e\xd1\x7a\x87\xce\xdd\x7a\x85\x4e\x38\xfc\x86\xbc\x52\x64\xcf\x61\x29\x1e\x7a\x07\xb1\x8a\x74\x30\x81\xd0\x55\x22\x11\x40\xab\x47\x5d\x32\x08\xbe\x98\x3d\xd0\x2a\x65\xfc\x06\x40\x16\xd3\x02\xa7\x4a\x1e\xf6\x9b\x37\x54\x88\x93\x18\x36\xed\x4b\xb9\xce\x0b\x59\x65\xd8\xf3\x3e\x19\x6c\x6f\xe3\x8d\xb2\x18\xc9\xa1\x26\x50\xad\x49\x06\x36\x82\xad\x94\x10\x5f\x0a\x1a\x13\x57\x8e\xed\xf7\x7b\xb4\xd2\x77\x5c\x4b\xcf\x26\x79\xd0\x6e\x5e\xbf\x70\xc8\x9c\xde\xd8\x78\x85\xfd\xaa\x2c\x5a\xe6\x26\x29\x5b\x60\x3d\x98\xb5\x81\xc4\xf4\x27\x23\x57\xe0\x9b\x87\xe4\x72\x3a\xb0\xca\x2c\xba\x0d\xd8\xf2\x62\x36\x4c\x48\x4a\xb3\xf9\x7c\xc0\xad\x48\xae\x84\xc3\xee\x73\x49\x36\xea\x20\xd0\xf9\xee\x43\xb3\xb7\x49\xbf\xdf\xa6\xb7\x32\xba\xb0\xaf\xc4\x4d\xde\x8e\x60\x10\x7c\x83\xdb\x05\xdc\xf9\x31\xda\x4d\x4a\xb3\x45\x44\x6e\xd4\x71\xb6\xb4\x98\x06\xd9\xbe\xc7\x2c\x80\xdb\x29\x57\x2e\x4b\xeb\xde\x1c\x22\x61\x17\x70\x85\x72\x22\xc8\x9e\xa8\xb0\x30\xe0\x03\x2a\xd9\xca\x0b\x15\x6f\x77\x02\x7b\xd4\xde\xd6\xf5\x8b\x58\xc9\x30\xcb\x6f\xa8\x81\x52\x69\x88\x83\xd0\x4b\xbe\x47\x64\xc5\xbd\x87\xc9\x14\x99\xc7\xbc\xdf\xe3\xba\xab\x86\xf8\x25\x4c\x7f\x80\xf1\xc1\x0c\x17\xc9\xb6\x82\xcf\x8c\x46\x67\xbc\xcd\x51\xf4\xdd\x49\xfb\x53\xe3\xe8\xd0\x3c\xb8\x95\x5c\x6f\xf2\xe6\xb1\x7b\x0b\xc4\xe6\xe9\xf0\x2d\x7b\xde\x61\x5b\xfe\xc8\x8b\xfb\xdf\xf5\xd0\xab\x7b\xfc\x11\xbe\x7b\xa8\x97\xfe\x48\x23\x1e\xe8\xe5\xdf\x6b\xcd\x50\x51\x33\x45\x06\x5a\xbb\x77\xa8\x33\x71\xaa\xfe\x2a\xef\xf4\x66\x74\x09\xfb\x06\x60\x3b\x2d\xf5\x72\x4f\xdd\x0e\xb6\x89\xb3\x2b\xb9\xfa\x94\x57\x80\xab\xad\x53\x54\x91\x9a\x52\x2b\xa9\xe2\x24\xd5\x57\x30\x18\x1f\x36\x71\x09\x85\xb6\x52\xc5\x26\xcb\x2e\xbe\x92\x3f\xdb\x8b\x5f\xf4\x05\x58\xa8\x99\xa7\xd7\x89\xbc\x31\x6f\x29\xec\xef\x73\xbd\xee\x46\x13\xfe\x05\xb3\x7c\x91\x77\x36\xc5\x84\x20\x72\x57\xd8\x9c\x34\x91\x99\xfa\xb9\xb9\x84\x97\xe4\xeb\x75\x29\x31\x15\x2f\x21\xd5\x28\x93\x5f\xaf\xbc\x1b\xd8\x6f\x74\xb3\x96\x85\x94\xd9\xcf\xcd\x25\x94\xc0\xd5\xef\x7d\xbd\xca\x8d\x0e\x18\x6f\x5c\xfa\xcd\x26\x19\x12\xe0\x84\xe5\x46\x8f\x3a\x78\xa3\x90\x3f\x08\x16\xd2\x86\x5a\x02\x74\xde\xa9\x71\x8c\x0c\x6d\x47\x4c\x9b\xcb\x48\x86\xae\x2f\x5c\x79\xdf\xe0\xfb\xa6\x53\xd7\x59\xa0\xa6\x67\xd1\x93\x40\x4d\xbf\x89\xfe\x1c\xa8\xe9\x93\x68\x12\x99\x82\x38\x07\xac\xba\x54\x4f\x8f\x06\x8a\x08\xf4\xee\x7a\xfd\x15\x11\x81\xeb\xfc\x5a\x16\x84\xc3\x65\x2a\xe3\x6b\x69\x93\x2b\x45\x6c\x27\x9a\xec\xe6\x0e\x0b\x98\x1b\x53\xc4\x3e\x82\x2d\xbd\xbd\xd9\x74\xc5\x1b\x39\x17\xf7\x2d\x6e\x40\x71\xab\x0e\x89\x94\xe1\x46\x7b\x3d\x0d\xbe\x01\x6d\x6a\x0b\x38\xe8\x4e\xc6\x72\x20\x84\xa0\x5e\x47\x66\xa1\xae\xbb\x88\x60\x05\x00\xcd\x63\x0f\x8a\xc4\xc9\x59\x3c\x6b\x84\xc2\x61\x95\x35\x37\x65\x00\xc7\xb8\x67\x86\xd8\x0a\x9c\x65\x2d\x90\x4c\x83\x9e\x35\x56\x80\x90\xbe\xe7\x79\xd6\xd7\x80\x1d\xca\xce\xcf\x74\x81\xf5\xfa\x90\xe3\x09\x18\xc7\xf6\x09\xa6\x4e\x71\x5d\xe3\xa2\xfd\xfb\xfd\xc5\x17\x54\x76\x24\x78\x54\xdb\x17\x8d\x18\x3b\x2d\x5c\x0f\x8d\x49\x48\xc6\xde\xa3\xa8\x79\x04\xa1\x11\x50\xf6\xe1\x85\x93\x50\x81\x3a\x0d\x1e\x8e\x98\x00\x1e\x80\xd3\x27\x19\x12\xcc\xf5\x1a\xb0\xa4\xe5\x01\x3c\x3e\xd0\x22\xa8\x20\x68\x9c\xd5\x1b\x9c\x51\x80\xc6\x50\x5c\xb9\xb3\x14\x60\x16\x32\x50\xd8\x5f\x18\x4c\xb2\x83\x87\x09\x2d\xa3\x64\x9e\xa1\x0d\xb4\xb1\xe5\xf8\x02\x06\x1b\xd3\x51\x5c\xc8\xb8\xbe\x2c\xea\x65\x9e\xd6\x72\x7b\x29\x57\xf5\xa6\xa8\x93\xed\x55\x0d\x0c\x67\x9d\x26\xd9\x97\x5a\x53\xc4\x7a\x17\x17\xf1\x96\xd1\xc3\x36\x1e\x8f\x11\x26\x92\x7d\x3e\xfd\xf6\xf4\x2a\xe1\x6f\xf5\x0b\xf0\xbc\xb3\x7e\x0a\x46\x33\xf5\x53\x5d\xdb\x69\xc2\x3f\x49\x71\x6a\x0e\xed\x3e\x97\x8f\xe9\x34\x9a\xfd\x53\xcc\x6b\xf1\xb9\x7c\x6c\xcf\xf2\x42\x76\x9a\xf0\xe7\x52\x9c\xfe\xf3\x73\xf9\xf8\xe9\x88\x4e\xa3\xcf\xb3\xe7\x2f\x9e\x7d\x7a\xf6\x79\x56\x9f\x9c\xb0\x5a\x27\xcc\x3f\xcf\xf5\xf5\xb7\x9f\xcb\xc7\x8f\x7c\xd7\x8e\x8f\xb2\xe5\x4d\x84\x98\x50\x7a\x47\x20\x4c\xb3\xd3\x7d\xf0\x31\xe5\x03\x56\x11\x55\xe8\x7c\x00\x3b\x6a\x81\xab\x28\x01\xab\x02\xc2\x66\x93\x79\x5d\x7b\x40\x48\x1f\xda\x11\x90\x60\x0d\x51\xa4\x82\x87\x02\xb6\x8d\xc9\x29\x19\x1b\x0e\xd2\xab\xe9\x9d\xec\x78\x80\x9c\xa2\xa9\x63\x73\x02\xec\x62\x8c\xfc\x07\x9b\x4a\x9f\x11\x75\xd6\xfd\x91\x65\x95\x7b\x6f\xf5\xdf\xf4\xab\x1c\xd4\x5f\xf0\x0a\x51\x1a\x3a\x91\x1e\x35\x33\xdd\xd6\x4f\xd3\xdc\x33\x35\x67\x3c\x16\x68\xc0\x01\xa7\xde\xa9\xc8\x9d\xae\xda\xad\x02\xa3\x8f\x8c\xcd\xe2\xe1\x71\x73\x00\xc4\x53\x83\x6c\x34\xe1\x85\x48\x67\xc9\xbc\x6b\x1c\xd2\x3a\x16\xe3\x09\xd7\x79\x66\xd9\x9c\x1d\xfd\xd8\x6e\x53\x29\x7e\xf4\xda\x54\x09\x1f\x8b\xa9\x64\xdc\x78\x02\x20\x88\x81\xeb\x89\xd7\x9e\x41\xa5\x12\xf6\x34\x6f\x36\xd7\xd2\x80\x35\xb0\x6c\xec\x3a\x26\x7c\xd3\xb8\x76\xee\xc4\xe6\xe4\x8c\xdf\x01\x4a\x2f\xbf\x16\x5b\x7a\x07\xfa\xfa\xeb\xba\x06\xd0\xae\xde\x19\xe5\x5d\x10\x8c\xfc\xc3\xed\x20\xf8\x64\xf6\xbb\x3b\x0f\xf3\xbb\xbd\x8e\x1d\x1e\x87\x0c\xe5\x6f\x34\x61\x47\xd7\x41\x40\x21\xc6\xea\x9d\xa7\xab\x4a\x78\x0e\x56\x16\x94\x31\xc6\x5f\x4b\x9a\x5b\x42\x0c\x0d\xda\xc0\x78\xd1\x44\x5c\x49\xaa\x09\xd0\x64\xde\x31\x55\x18\x9d\x71\xa9\xf7\x0d\x7f\x09\xc0\x51\xa9\x67\x7e\xe1\xbb\xb0\xe4\x8c\xe7\x75\x5d\x18\x0d\x52\x25\x68\x69\xc0\xd0\x76\x92\x26\x9e\x7d\xc3\x07\xe9\x02\x20\x9c\xaf\x9f\x6e\xce\xd7\xe3\x31\x4b\x45\xc2\xd7\x23\x21\x76\x10\x2b\x60\x81\x67\xee\x34\xe5\xe0\x50\xcc\x78\xa5\x25\x0a\x34\xff\x28\xf9\x4e\x3f\x70\xd5\x31\xc6\xad\x1e\x7c\xb6\x9e\xf3\x94\xaf\x19\x86\x6b\x43\xdb\x89\x72\x56\x36\xf8\xb0\x9d\x0f\xc4\xd6\x95\xfc\x9d\x64\x7a\x10\xcf\xd7\x4f\x2b\xd3\x98\x52\x57\x65\x4d\x2d\x52\xdf\xd4\x62\xe4\x26\x78\xda\xb6\x3b\x6a\x99\x13\x2f\x79\x0a\xb1\xa2\xc2\xb2\x58\x06\x01\x41\xab\x36\x32\x12\xc2\xaf\xac\x03\x5b\xbf\x08\x17\xf2\x3a\x4e\x7f\x2a\x52\x5d\x95\xbd\xc6\x3a\x58\x74\xa5\x4b\x36\x26\x2a\xce\xd1\xec\xb9\x04\x2c\x7a\xfd\x42\xa7\xf9\xf2\x56\xf4\x0b\xd9\x43\x2a\xe7\x89\x50\x53\x1f\x71\x9a\x45\x92\xe7\x62\x72\x6e\x22\x96\x14\x68\xb8\x88\x26\x8e\x75\x7d\x36\xf2\xd1\xa3\x81\xb1\x48\x65\x9c\xc1\xfa\xda\x61\x34\xb3\xa2\x15\x5e\x94\x66\xad\xae\x28\xba\x36\xae\x0c\xcc\x5b\x74\x51\x6f\x10\x5b\x75\xb4\x8c\x53\xbd\x70\x50\xd2\x77\x3e\xf3\xad\x87\x86\x63\x9e\xda\x2e\xfa\x22\x39\x79\xfa\xe8\xec\xdb\xa7\xa7\x8f\x9e\x7c\x4b\x10\x0b\xb5\xc7\x88\x38\xbe\xa2\x15\xb7\xa8\x63\xfc\x01\xa7\xad\x0f\xd8\x8c\x23\x94\x4d\xd7\x8a\x04\xfb\xd0\x07\x61\x3f\x6b\x27\xa0\x87\x25\xe2\xd3\x53\xc9\x90\x3e\x82\x95\xd0\x92\x19\x70\x56\x9a\xeb\x5b\x6f\xe1\x58\xb8\xd5\x52\xe4\xb3\x02\x42\x7a\xe9\x9f\xd4\x02\xb5\x34\xe1\x04\x68\x2a\xaa\x43\x11\x05\x82\x20\x35\x73\xbc\x34\xac\x75\x65\x77\x59\x51\xda\xab\xc8\xd4\x85\x96\xdc\xc4\x9a\xcb\xc0\x7d\x5d\xd3\xaa\x65\x07\x23\xca\xd6\x2d\xf4\x88\x02\xb4\x57\x86\x6a\xe5\xbc\xae\xe1\x43\x38\x98\x9e\xf9\x9f\x98\x77\x3f\xed\x57\x49\xe1\xdb\xf4\x97\x19\xeb\x2a\xd8\xa0\x96\x76\x42\x98\x3e\xf2\xa6\x91\x17\x57\x66\x25\x69\xcc\x47\xeb\x20\x00\x5b\x49\x6f\xa6\x2d\xd1\x07\x24\xeb\x79\x71\xf9\xc1\xd5\x0a\x30\xa1\x6e\xb1\xef\xb0\x46\x7c\x4f\x33\xe9\x96\x49\xb2\xa6\xdf\xd3\x8c\x19\x20\xe8\x6c\xf6\xa8\x71\x76\x85\x24\xbb\xf1\x35\x8e\xcf\x36\x25\x99\x15\xf3\x69\x87\x27\x83\x58\x68\xed\x53\x3c\x30\x8e\xb1\xa7\x78\x47\xfe\x0b\xcc\x80\xef\xb3\xd9\x8f\x9e\xf3\x33\xf5\x6f\x2d\x7f\xd8\xe7\xde\x57\x10\x46\x64\x68\xf5\xbc\x70\xac\xe1\xf0\xe9\x75\x3f\x23\x1b\x88\x71\x6b\xf2\x74\x3d\xfd\x64\xdf\xdf\x5a\x4e\x31\x66\x03\x5a\x17\x1b\x93\x64\x88\xfe\xcb\x7a\x2c\xec\x99\x39\xf5\xe8\x2e\xa8\x4e\xda\x7f\x75\x93\xea\x1a\xb5\x77\xbe\xa5\x9f\x6c\x5c\xff\x64\xcf\x19\x8a\xed\x39\x5a\xa1\x0d\x58\x61\xbf\x96\x1d\x41\xa9\xf5\x79\xff\x7e\x13\x3f\xba\xfe\x6c\x59\xc0\x61\x3b\x77\x85\xfc\xb7\x9a\x63\x79\xb7\xf6\xab\xce\x06\xd2\xfe\xab\x9b\x64\xc5\xfd\xa6\x5d\x47\x2a\x4c\xb2\x52\x16\xea\x3b\x50\x14\x6b\xf2\xd9\x82\x69\xd5\x0d\x45\x1d\xf2\x1f\x6e\x27\xbc\xd9\xdf\x4b\x3a\x09\xbd\x17\x23\x1a\xf8\x9e\xc7\x6b\xd5\xd6\xa0\xff\x5f\x7b\x5d\x2b\xb8\x86\x7e\x75\x0f\x83\xd1\x41\x74\xc3\xd9\xad\xd9\x54\x51\x3f\x36\x53\x73\x06\xe7\xca\xdd\xa8\x1c\xb4\xb3\xab\x4a\x88\x02\xa0\x45\xef\x96\x55\x6a\x5b\x42\x1c\xd8\xc7\xbc\x08\x15\x46\xe1\x12\x04\xd2\x00\x7e\x08\xa1\xa6\x32\x32\xda\x5c\xcd\xf8\x0c\x3a\xff\x00\xdf\xd5\xf2\x8b\xd5\x3b\xed\x57\xae\x6a\x9c\x2a\xc6\x71\x10\x0c\x41\x90\x7d\xf7\xbc\xe0\xda\xae\xd0\xbd\xe8\xf1\x0e\xde\xc3\x59\x6b\x0e\x42\x4a\xc8\x20\x18\xbd\x95\x0d\xce\xed\x68\x23\x67\xce\x3c\x59\x3e\x64\x9e\x3c\x67\xf7\x52\x74\x8d\x8f\xf5\xa4\x2e\xee\x10\xdb\xdd\x8a\x17\x70\xa8\x6c\x3e\x26\x33\xc7\xd1\x87\x07\x4c\xe1\x80\x79\xed\x16\xba\x52\x31\xf1\xbc\xeb\xf7\xca\xcc\x30\x4b\xd8\x70\x81\xc3\x79\xd7\x61\x0a\x64\xb8\x98\x36\x44\xa6\x55\xba\xce\x9c\x7b\xd0\x03\x33\xbd\xf1\x60\x6d\x4f\xef\x23\x0f\xab\x14\x97\xf6\xd3\xc9\xc0\x97\x41\xa8\x0c\x0e\x86\x33\xa6\x2d\xc6\x50\xdc\x44\xd1\xd8\x6b\xda\xef\x21\x7e\xe3\x57\x7d\xca\x23\x82\x57\xc4\x92\x2d\x9d\x64\x2e\x09\xf7\x97\x56\x44\x90\x5e\xd8\xd4\x67\xb0\x9a\x09\x2c\x6a\x62\x3b\xe0\x59\x9a\x46\xc4\xeb\x8c\x01\x6d\x5b\x07\x94\x59\xb6\x5c\x94\x30\x40\x0f\xc0\xd9\xe4\x2e\xfc\xd7\xc9\x19\x8f\xc5\xe4\x3c\x7e\x2a\xf2\xf3\x58\xf3\xbb\x10\xca\x2f\xf7\xbc\x5c\x71\x41\x68\xde\x6f\x41\x93\x59\x3c\x67\x33\x35\xa7\x19\xe3\xa5\x11\x09\x0b\x9e\x21\xac\x7a\x6b\x6d\x7a\x30\xcb\x85\x53\xab\xbc\xe9\x3a\x45\x5a\x47\xc8\xe9\x68\x77\xcb\xd0\x1b\x72\x6c\x9d\x21\x5f\xb5\xcd\x1c\x6d\x28\xc4\x16\xc7\xe9\x58\xad\x44\xde\x78\xf1\x60\xb2\x30\xdf\xc9\x4c\x16\xa0\x1f\x92\x0c\x1b\xf8\x3c\xdf\xee\x2a\x25\x57\x17\xe0\x01\xa7\xd8\x9e\xff\xab\xd5\x9c\x4c\x1a\x4b\xab\x9a\x30\x68\x41\xa3\x34\xf9\x41\x0e\xb2\xc8\xd6\xa1\xd1\x32\x63\xe0\x4c\xf7\x0a\x98\xd4\x20\xa0\x04\xa4\x9d\x58\xc0\xcb\xed\x61\x32\xf0\x84\x54\xb1\xba\xce\x34\x29\x6c\x69\x29\xfb\xdc\x34\x18\x7d\x7a\x3e\x7b\x8c\xf1\xd1\x2a\xdc\x25\xb7\x32\xfd\x2e\xbf\x85\x0f\x29\x29\x0b\x82\x37\x86\x10\xc4\x2c\x08\xfe\x65\xae\x15\x02\x1c\x94\x21\x84\x16\xe3\x89\x28\xc3\x6d\x92\xfd\x1d\x6e\x72\x7d\x13\xdf\xe2\x4d\x93\xee\xa5\xda\x72\x22\xe6\xfa\x0b\x6e\x4c\x4e\x4c\x2b\xfc\x32\x09\xf7\x4a\xe5\xcc\x03\x7d\x89\xa7\xf1\x98\x90\xc8\x8b\x0f\xfd\x5d\x4b\xf9\x74\xdf\xc2\xb8\xc1\x93\xc9\x26\xca\x97\xc3\xeb\x17\x8a\x1d\x00\x0c\x35\xba\x13\x9b\x71\xbf\xdf\xb7\x02\x45\xd8\xb7\x2a\xac\x7b\xc9\xee\x53\xe3\x9f\xb6\x2c\xcb\x4f\xf2\x56\x09\xb2\x33\x31\xe1\xa2\xf8\x12\x10\x33\xe5\x79\x2a\xd7\x2a\x3a\x39\xd3\xff\x76\xb7\xe7\xf0\xbd\xd1\x7f\x4e\x76\xb7\xe7\xdb\xb8\xb8\x4a\xb2\x13\x95\xef\x22\xfd\x64\x17\xaf\x56\x49\x76\x15\x4d\xce\x2f\xf3\x62\x25\x8b\x68\x42\x00\x43\x72\xb8\x7a\x1b\xf2\xef\xdc\x78\xc6\x45\xe0\x5d\x78\x7e\x99\xdf\x9e\x94\xc9\xbf\x74\x3d\x58\xcb\xc9\x65\x7e\x7b\x9e\x5f\xcb\x62\x9d\xe6\x37\x51\x09\xc0\x5d\xe6\xcd\x51\x5c\xa9\xdc\xbe\xcc\x6f\x81\xdf\xce\x3f\x9d\x43\xfb\xfe\x44\xf8\x65\xdb\x7f\x20\x6d\x33\x53\x4b\x83\xc0\x8d\x7a\xb8\xf6\xca\x58\xb2\xa3\x44\x90\xb3\x3f\x11\x34\x1a\xce\x77\xbc\x12\x67\x4f\x84\x10\x19\x55\x21\xb6\xe5\x8d\x5c\x2b\xe6\x3e\xb7\x48\xae\x36\x4a\x90\xff\x9c\xfc\x89\xf0\x52\x7c\xf3\x9f\x26\x2b\x24\x6b\x52\xe3\x52\xa0\x95\x4d\x39\xdb\x3b\x82\xd8\xde\x27\x3c\xc6\xdc\xcb\x10\x8f\x76\x60\x56\xd5\xb5\x97\xe1\xb2\x2d\x1b\xa7\x8c\x2f\x11\xbf\xb5\x99\x65\xfe\x16\x8d\xe1\x4b\xf3\x2a\x5b\x51\x00\x7d\x79\x95\xe6\x31\x44\xec\xd8\x3b\x27\x61\x14\x75\xfb\x8e\x1e\xe0\x04\xc2\x97\x07\x1e\x1c\x2d\x9d\x33\xa7\xfd\x9e\xcb\x78\xf9\xe5\x0a\xde\xf5\x3c\x4d\x76\x82\x18\x64\x7d\x3d\xa6\x7a\x6e\xb4\x9d\x28\x86\x8b\x10\xbe\x82\xbd\xa7\x00\xe9\x19\xc6\xa3\x5d\x0f\xf4\xcd\x50\xd9\x06\x4f\x63\xc5\xef\x2f\xf3\xdb\x0b\x98\x56\x1f\x65\x9a\x1c\xc0\xbd\x06\x70\x8a\x3d\x6f\x13\x93\x03\xf9\x4a\x93\xcf\x86\x50\x3c\x90\x2d\xd1\x7b\x35\xbe\xf0\xad\x9b\x27\x07\xf2\x56\x7b\x8e\xd3\x1b\xdb\x7a\xa8\x85\xf1\x7e\xcf\xd8\x9e\x51\x03\x30\x07\xbe\x20\x59\x9e\xc9\x1a\x74\xd6\x74\x3a\x3a\x59\xce\x64\x3c\x67\xe1\x98\x9d\xf2\xdf\xf4\xe3\x93\x93\x53\xfe\x77\x29\xee\xdd\xda\xf3\x26\xcf\x75\x52\x26\x97\x49\x9a\xa8\xbb\x88\x6c\x92\xd5\x4a\x66\x84\xdb\x15\x69\x1c\x7e\xf7\xfc\x6f\x52\xdc\xa7\x52\x29\x59\x5c\xec\xe2\xa5\x5e\x61\x64\x42\xf8\x3a\xcf\xd4\xdf\x21\x56\x63\x44\xfe\x3c\x99\x90\x3d\xff\x45\x8a\x19\xf9\xbb\xbc\xfc\x92\x28\xc2\xc9\xdb\xfc\x5f\x84\x93\x6d\x49\xe6\xfc\xfb\x01\xaf\x21\x98\x33\x66\xb7\x68\xd0\xd2\xa4\x17\x09\x47\x53\x0d\xbd\x4b\x94\x33\xd9\xc1\x39\x6b\x3d\x12\x1d\xa9\x46\x6a\x61\xfa\x7b\xd9\xf8\x6a\x38\x19\x5e\x60\x10\x74\x1f\x24\x6e\x6c\xd5\xe1\x67\x8c\x67\xe2\x17\xd9\xc2\xcd\x41\xe4\xe1\x5f\xe4\x2c\x9b\x8f\x15\x6b\xd7\xba\x07\x96\x52\x32\xae\x9a\x65\xf6\x48\x76\x62\xb2\x59\x33\xea\x26\x28\xd8\x14\x96\xdf\x36\xbe\xa5\x13\x5e\xcc\x9e\xcc\x4f\x68\x56\xd7\x13\xc6\xc6\xb4\x00\x57\x7a\xf0\x9b\x8f\xbc\x3a\x7f\x1c\x72\xb4\x11\x04\xa3\x63\x02\xfa\xc6\x59\x34\xe1\x88\x24\x38\xc1\x80\x59\x42\xd0\x62\x4a\x90\x2e\x92\xc8\x2e\x96\xc6\x16\x68\x82\x10\x5f\xf1\xd3\x3f\x9f\xc7\x63\xf1\x84\x11\x24\x61\xd6\xcf\xba\x1a\x3b\x70\x83\x6c\x9c\xc9\x59\x0c\xf8\x82\x09\x63\xbc\x98\x52\x57\x9b\xcd\x7c\xd2\x20\x21\x18\xf2\x4b\xda\x85\x6c\xed\xa3\x7e\x01\xd3\x44\xcc\x3f\x26\x7f\xc7\x88\x9f\x58\x8e\x45\x7e\x43\x06\xeb\x6e\x52\x01\x4f\xcd\xcf\xfe\x40\xcd\x51\xf9\x75\xf9\xec\x98\x01\x32\xcc\xb7\x00\x1d\x50\x8d\x85\x37\x7c\x70\xb9\x94\x49\x4a\xe5\x8c\x20\x71\x26\x63\xd5\x9f\x61\xca\xcd\xb0\xf9\x49\x7e\x52\x9d\x94\x27\xe1\x7f\x30\xa6\xd7\xbb\x1b\xe4\x9f\x3b\x13\x07\x38\x26\x9e\x08\xc3\x65\x15\x7a\xcf\x20\xcd\x7e\xd8\xc2\x9f\x70\x94\x8d\xf0\xd1\x99\xce\x1a\x0b\x08\xa5\x66\x39\xa0\x84\x75\x82\xa6\x26\x7a\x33\xd3\x5b\x27\xb1\xba\xe1\x58\xc4\x41\x40\x57\x61\x8f\x48\x52\x56\xd7\x49\x83\x92\xa1\xf9\x33\x4e\xb1\xac\x10\x22\xa9\xeb\x91\xb7\x85\x24\x0c\x70\x5b\xd2\xe4\x00\x40\x06\x36\x0f\xc3\xf8\x7e\x75\x8f\x71\x44\xac\xa4\x89\x68\xbd\x49\xaf\x99\xb1\x5d\x1a\x75\x4d\xf3\xa1\xf9\xce\x63\xf0\xa5\x18\xeb\x35\xd5\xf4\xf5\x3f\x5a\x3e\xb9\x9e\x75\xd7\x3f\xbc\xa0\xf7\x10\xa8\xce\xcb\xe7\x29\x99\x97\x65\x89\x78\x40\xf7\xb9\x26\x86\xea\x2e\xba\xef\x23\x13\x82\x86\xd3\x30\xe8\x30\x88\xc4\x64\x76\xe2\x3a\x60\x12\x64\x53\x72\x46\xa2\x0c\x8c\xdd\x1c\x4c\x46\x74\x1f\x67\xc9\x16\xec\x57\x5e\x2b\x59\xc0\x05\x58\x07\xa3\x8d\x65\x5a\x6d\x9b\xdb\x75\x92\xa6\xef\x4d\x33\xf4\x6d\x2a\x6f\xbf\x2f\xf2\x1b\x7b\x7d\xb1\x29\x92\xec\x0b\xdc\x35\xc4\x7a\x34\xe1\x7a\x8c\x7e\x70\x77\x79\x53\x01\xf2\x52\x70\xb1\xdb\xc4\x68\x73\x72\x93\xac\xf2\x1b\xb8\xfa\xd7\x6b\x88\x85\xa5\xaf\xf2\x7c\x0b\x76\x97\x96\x0e\x47\xf7\x7b\x0e\x73\x64\xe0\x2c\x1f\x0f\xe5\xbf\xe9\xe8\xbb\xff\x4f\xe7\xde\xcc\x31\x0f\xab\x84\x97\x00\x58\xc8\x2b\xf1\x9b\xe3\xe0\xc1\x42\x1a\x37\x8d\x64\x4d\x2b\xd8\x0d\xfe\x2a\xa9\x96\x46\x63\x9c\x72\x30\x38\x00\x35\xe2\xdd\x96\x9e\x3b\xba\x5b\x08\x71\x10\x90\x2b\xa9\x48\x02\x97\x8d\x16\x37\x11\xb1\x01\x70\xc2\x19\x3b\x4d\xa2\x74\xa6\xe6\x47\x8d\xc6\x41\xd0\xdc\x79\x13\xe2\x84\xb6\xa4\x3e\xd3\x13\x1c\x23\x09\xd2\x4c\x18\x08\x96\x04\xd6\x6f\x06\xa3\x4b\x18\x47\x2d\x8c\x16\xca\x90\x24\xda\x27\xc6\x97\x30\x1b\x43\x48\x80\x3e\xb2\x4a\xd9\x20\xab\xb0\x3e\x57\x54\xd7\x20\x5e\xe9\xed\x04\xd8\x54\x07\xee\xd6\x70\x45\x44\x8b\x4f\xfa\x53\x04\x49\xb2\x8d\x2c\x12\x58\x24\x41\x40\xca\x4e\x2f\x08\xd0\x65\xc7\x06\xf9\x2f\x33\x86\x22\xd5\x34\xd5\x29\x8d\x15\x30\xcf\x18\xf4\x8c\xc8\x10\x87\xbe\x87\xa1\xd9\x82\x9e\x31\xc3\x69\xb7\xc2\x66\x4c\xfd\x41\xa4\x0f\x8f\x22\x6b\x0d\x99\x3f\x52\x13\x9e\x39\x49\xcb\x41\x96\x38\xfa\x09\x60\x26\xc5\x36\x4e\x0d\x9c\x89\xd2\x3c\xc2\xdf\x24\x64\xfa\x1b\xd2\x35\x5c\x90\x75\x9d\x4d\x69\xde\x26\x36\x1c\xd0\x8e\xb3\xba\x4e\xca\x57\x9a\x2e\x48\x9a\xb3\x69\x5e\xd7\x93\x08\x61\xdc\x9d\x9a\x63\x46\x30\x76\x35\xe1\x66\x7f\x9e\xf7\xd4\x11\xde\xa7\x89\x2e\xdd\xb0\x8b\xc5\x85\x58\xfe\xc9\x74\x51\x1f\x6b\x08\xbc\xdd\xb4\x9c\x02\x46\x60\x1f\xe5\x52\x95\x2e\x2e\x9c\x5e\x4a\x57\x52\x7d\xa7\x47\x3c\xc9\xae\x9a\x2c\x94\xa1\xbc\x31\xfd\xd9\x76\x4b\x94\xe8\xab\xbf\xb7\xd0\xd1\xcc\xf0\xb8\x3c\x7b\xd6\xc3\x7a\xf5\xc7\xd5\xec\x55\xf1\x57\xee\x4f\x39\xe3\xa5\x28\x82\xc0\xd0\xee\x82\xc7\x9e\x6f\x6f\x1c\x04\xab\xb0\xc5\x03\x43\xa4\xe0\xdc\xc9\x45\x41\x40\xcb\x13\xf1\xef\x6c\xbc\xde\x80\xe6\x7a\xb8\x4f\x4c\x03\xec\xb6\x81\x6d\x83\x9d\x99\x97\xfd\x15\x6d\x50\x8b\x68\xd2\x30\x69\x60\xc9\x6c\xb7\x45\x70\x1e\xf6\x30\x8c\xf8\x23\x49\x27\x3c\xe3\xa5\x3d\x60\xb1\xe3\xee\x89\x8b\xe2\x3b\x49\x57\x61\x5f\x3c\xe0\x03\x5b\x89\x51\x00\x78\x5f\x81\xbb\x4a\x53\x5b\x33\x27\x06\x07\x5e\x0b\xf1\x27\x30\xda\xf7\x4d\x99\x68\xb2\x1f\x18\xf9\x87\x2b\xd9\x33\xb3\xa1\x7a\x36\x74\x28\x8d\x13\xc2\xad\x00\x4e\x08\x37\x62\xb9\x61\xa9\xfa\x7a\x39\xb7\x10\xe4\x58\x2f\x05\x3c\x97\x6a\x26\x59\x2b\x8c\xf6\x84\x27\xe2\x7e\xaf\x69\x68\xdf\x97\x3b\xb3\x9e\x88\xc7\x84\x45\xb3\x6c\x7e\x5e\x3c\xfd\x33\x9c\x14\x26\x33\xa9\xd9\xba\x62\xae\xeb\xcf\x67\xc5\xbc\xae\xf3\x59\x71\xf2\x04\x7e\x27\x1e\x62\xd6\xde\x67\x51\x8d\x1a\xd7\x6f\x9c\xa6\x79\xe2\x11\x00\xa6\xb7\x0e\xca\xba\xe4\xee\xb0\x12\xbc\xa3\x28\xd3\xdf\x12\x23\xb3\xde\x45\xeb\xc5\xaf\x6e\x18\x40\xeb\xa6\x72\x1e\x3f\x4d\x40\x19\x99\xcf\xd4\x2c\x9e\xcf\x9b\xb9\x06\xdc\xb0\xde\xa6\xec\x07\xe5\xfb\xae\xfb\x73\x36\xf5\x41\xae\x32\x16\x35\x13\x75\x0f\x96\x75\x7d\x78\x4b\xa3\xbc\xfd\x74\x23\x65\x26\xfe\x21\xb9\xcf\x1b\xb5\xcd\xac\xff\x21\xb9\xa6\x89\x03\x4e\xac\x5a\x5a\x41\xd5\x76\x2a\xb7\xd6\x20\x7e\x57\xe4\x3b\x91\x59\x33\xb4\x32\xc9\xae\x34\x1b\xb9\x30\xd7\x0d\x36\x08\x1a\xc2\x01\xf8\x4a\x29\x94\x35\xee\x8d\x0b\x65\x4f\xa2\x6e\x84\x35\x52\xb7\xb6\xbf\x32\x5b\x89\x02\x2f\x01\x81\x2b\xef\x6c\x9f\x59\xb3\x7d\xee\xf9\xb2\x2a\xfa\x9a\x73\xfc\xca\x9d\x21\xd0\xb6\xb9\x6e\xaa\x48\x43\x59\x11\x32\xc7\x9c\x4a\xfa\x65\x5c\xf3\x9b\xe7\x7b\x5e\x54\x03\xc1\x2a\x78\xf6\x7b\x2f\xf3\x3b\x20\x5c\x55\xc8\x06\x9a\x78\x9b\x79\x29\xb4\x0c\x8c\x7d\x36\xf3\xfa\x72\x6e\x0f\xa4\xba\x05\x1f\x4b\x3e\xe1\x67\xc3\xcf\xcc\xc9\x2a\xd6\x6a\x0f\xb4\xf2\x1b\x41\x6d\xaf\x9e\x34\xbd\xcf\x1e\xab\x71\x73\xd7\xae\xaf\x54\x72\x67\x0e\x33\xfc\xa4\xc6\xf6\x08\xdd\xf3\x6c\xfd\x36\xca\x6d\x10\x64\x7a\x85\x4d\x33\x87\xbe\x7a\xa8\x53\xdd\x73\x0c\x5c\xb0\xe7\x3d\x8e\xdd\x9b\xa4\xfe\x33\xee\xd7\x27\xee\x9d\xeb\x4b\x67\x03\x36\x63\xe3\xb0\x1d\x80\x41\xd5\x6d\xf6\xce\x42\xad\xc9\xb2\x4e\x9e\x61\xad\x73\x0b\x43\x61\x32\xe3\x9e\x60\x9e\x4d\xdb\x59\x23\xab\xbc\xa0\x98\xce\x31\x9d\x13\x80\x63\x44\xc9\x6a\x04\x90\x9a\x9a\x36\x97\x9d\xe6\x2d\xc2\xf5\x2d\xf4\xa9\xab\xbd\x97\x42\x25\x8b\x0e\x36\xbc\xd3\x44\x5f\x8b\x82\xa5\xe7\x00\xa4\xdd\x50\xbf\xc1\x6f\x00\xae\xfd\x26\x72\x34\xa5\xf5\x21\xf0\x6c\x0c\x61\xf9\xc0\x89\xa7\xd5\xf5\x66\x6f\xff\x94\xef\xc4\x40\x32\xec\x89\xf7\xdd\x6f\xee\x7c\x88\x5e\x82\x90\xd0\xb2\x2e\x1a\x6a\xa0\x35\xfd\x07\x1a\x73\xaf\x25\x9e\x78\xd8\x26\x68\xcf\xcb\x1b\xbd\x69\xf5\x9f\x85\xff\x71\x82\xbc\x46\x5e\x52\xf9\x18\x2e\x3f\xbc\x66\xa7\x4f\x3c\xef\x29\x02\x65\x09\x84\xb7\xbf\x15\xbd\x09\xc9\xdd\x00\x89\x7b\x84\x23\xff\x8b\xe4\x52\x71\xa5\x10\xf6\x05\xd1\xda\xea\x72\x93\xdf\xd4\x9b\x64\x25\xd9\xa3\x53\x9e\x29\x71\xda\xe0\x74\x3e\xf2\x60\x5d\x0a\x45\xd9\xbd\x54\x41\x40\x47\x18\xbf\x1f\x35\x76\xe8\xf3\xf4\x5b\x25\x4b\xf5\xcc\x4a\x8e\xaf\x0a\xc4\xf6\x1a\x4c\xa7\x85\x62\x51\x2b\xf8\x45\x61\x5a\x0a\x66\xeb\xd7\x71\xca\xf0\x56\x81\xbf\x98\x07\xf3\x97\x28\x9f\x4f\x18\x0e\x93\xf2\x17\x0b\x47\xba\x67\xfc\x2f\x52\x34\x5e\x3c\x4d\x35\xb9\xea\x87\x9a\xbe\x47\xde\x39\x92\xe8\x87\xad\x50\xb3\x65\xb6\x73\xf1\xe4\x44\xb1\x64\x66\x37\xea\x31\xcd\x04\xec\xed\x6c\x2e\x92\x99\xa7\x1c\x9a\x0b\x3f\x6e\x30\x4d\x42\x23\xdb\x8a\xc4\x1c\xd4\xe8\x5d\xb5\x69\x47\xac\x86\x2c\xe1\x68\xa9\x42\xa5\x77\x3e\x59\xa0\x08\x32\x9b\xb3\x70\x99\x67\xcb\x58\xb5\x1e\x91\xc7\x64\xce\x0c\xc0\x61\xd2\x05\x38\x04\x0c\xf8\x64\x96\xcf\x91\xfe\x65\x5c\x71\xe9\x34\x70\x45\xd3\x84\x52\xf5\xf9\x03\x5d\x61\xa9\x89\x99\x39\x8b\xf6\xd0\x62\x7d\x44\xd9\x10\x63\xe5\xf9\x7d\x6f\x7d\xf9\x61\x3d\xec\x59\x3b\x72\x68\xb2\xa6\x16\xc1\x66\x74\xe6\x69\x45\xff\x22\xeb\x5a\x0f\x2c\xcf\x7c\xf5\x56\x8a\x34\x5e\x0f\xf0\x38\x75\x9b\xc5\x09\xe0\x3a\x9f\x9d\xd0\xec\xb4\x49\xac\xeb\x89\xed\x87\x14\xbb\xa7\xec\x76\x87\x4d\xd7\x1d\x52\x54\x19\x6d\xf8\x95\xd2\x0b\xc7\x45\x25\x9f\xa5\xbc\xe0\xd9\x9c\xf1\xe2\xe9\x59\x10\xc4\xd3\x2c\xa2\x71\x5d\xf7\x33\x9d\xf1\xc9\xdc\xb8\x5d\x3b\xb0\x5c\x09\x9e\xc2\x7c\x74\x06\x01\x48\x4b\x87\x59\x8b\xbe\xbd\x92\xef\x40\x53\xe1\xdb\xfa\x2a\xc6\xf3\x9d\xf2\xd2\x46\x13\x7e\x6f\x6c\xbb\x5e\x02\xe9\x88\xee\xf7\x1c\x89\x48\xd4\xe3\x52\xf6\x3c\x63\xdc\xba\x37\x19\xb1\x38\x91\x65\xa4\x5c\xe2\x7b\xdc\x08\xa3\x8c\xbb\xce\x8c\x5c\x77\xdb\xee\x8b\x32\xd7\x93\x1c\x7b\x29\x9a\xcd\xb9\x01\x25\xd3\xf7\x7e\xdc\x3d\xa7\x23\x34\xdc\x19\x95\x3c\xd5\xfb\x2d\x44\x16\x36\x97\x61\xeb\x0b\x60\x0a\x9b\x07\xf8\x01\xae\xef\xdd\x68\x19\x67\x6a\x5e\xa0\x77\xd7\x40\xc8\x4a\x30\xd9\x98\x76\x86\x37\x02\x26\x36\xf1\x9d\x4c\x8f\x30\x3e\xed\x68\xe2\x8c\x26\xdc\xd0\x67\x38\xf4\x67\xcd\xa9\xf8\x94\x7e\xfd\xc0\x72\x35\x67\x2c\x2a\xfd\x28\x73\x36\xd9\xf0\x03\x8c\x2f\x45\x0a\x5b\x00\xb6\xe2\x01\xff\x7b\x78\x9e\xa1\xcf\x85\xfe\x02\xa1\x66\x85\xf8\x85\x66\x6c\xce\x73\x01\xd8\x82\x6d\xce\x3c\x47\x2d\x4f\x3e\x3b\xb3\x19\x84\x16\x22\x18\xcf\x4c\x90\x1d\x80\x44\xcd\xb9\x8b\x6e\xa1\x67\x70\x5b\x97\x51\x80\xf2\x02\xe5\x1c\xd0\x5f\x30\xd7\x86\x5c\xc4\xc6\x30\x8f\xe6\xac\xa9\xa3\x98\xf3\x9c\x61\x23\xeb\x9a\x9a\x97\x66\x73\x0e\x81\x84\x13\x63\xfd\xa8\x00\x8b\x75\x4f\x97\x83\x63\xcf\xda\xf4\xa8\x45\x54\x1c\x6d\x4a\xb9\xe4\xb6\xb8\x23\x51\x5b\x80\x52\xcd\x77\x0c\x04\x22\x1f\xad\x3b\xc5\x0d\xdf\xbc\x0e\x1e\x30\xc8\x2a\xb0\x04\xc0\xb9\xa0\x0d\x70\x13\xdb\x6e\x1b\xef\xe8\x92\xc7\x8a\xa7\x8c\x6f\xa9\x6d\x2a\xb0\x94\x41\xe0\xdf\x5a\xf8\x92\x94\xf1\xb4\x89\x71\x69\x72\xd8\x7b\x13\xea\xd2\xa4\xea\x6b\xdb\x1c\x1b\x22\xca\x04\xbf\x34\xa9\xfa\xda\x91\x4b\x93\x86\x77\x6e\xa3\xdb\xca\x82\x3a\x2a\x50\x71\x4b\x32\xe2\x2c\xd9\x46\x29\x47\x8c\x71\xff\x93\xf7\x8c\xf1\x74\xbf\x08\xdd\xce\xda\xf8\x10\x94\x8a\xdf\xdb\x4d\x22\xba\x27\x8f\x49\x34\x1b\x98\x8a\x46\x7e\x69\x56\x39\xba\x15\x5b\x29\x4e\xd2\xcc\x30\x56\xbc\x39\x46\xd2\xf4\x26\xdb\xcf\xf7\xdc\x54\xdf\x91\x3f\xb7\x54\xb2\xa9\x41\x04\xc7\xdd\x29\x92\xa2\x89\x49\x7d\xe4\x5b\xbe\x4c\xc0\x61\xac\x63\x5d\x9b\x09\x98\x75\xfe\x26\x97\xcd\x45\xfb\x16\xf1\x79\x5a\x49\x0e\x89\x5f\xa1\x3d\xa2\x99\x60\xed\xcf\x3e\x60\x4e\xcd\xd7\xf6\x30\x2b\x81\xd3\x3d\xab\x42\xd3\x77\x7c\x83\x70\x0d\x9a\x79\x02\x0c\x4c\xe0\x38\xf9\xb6\xa5\x37\x2e\x40\x54\x76\x70\x65\x9c\xac\x6f\x35\x3b\x45\xf0\x73\xc1\xb2\x36\xc3\x21\xab\x6b\x03\x1c\x07\x0b\xb3\x1d\x82\x00\x62\x28\xb0\xb0\xca\x20\x75\x15\x04\x34\x76\x37\x62\xc2\x4b\xbd\x42\x5d\x64\x00\xee\xdf\xf8\x3b\x6c\x53\xa6\xae\x4b\xca\xf6\x8c\x37\x29\xe3\x31\xdf\x0c\xec\xd8\x43\x69\x4d\xa1\x93\x13\xde\x84\x54\x80\x36\x9a\x21\xab\xeb\xb8\x1d\xaa\xc0\x44\xe3\xb2\xc4\x6c\xce\x95\x6a\x9d\xff\x58\xcb\x10\xa0\x2a\x5a\x36\x26\xc8\x7b\x82\x42\x94\x27\x42\x08\xba\x9d\x12\xcd\x83\x92\x88\x60\x07\x22\xe6\x00\x5c\x8f\xf0\xb4\xe7\xce\xf3\x4c\xbf\xd3\x14\x6d\x99\x67\x2a\xc9\x2a\x79\xb4\x15\xa3\xc9\x7e\xa7\x69\xd1\x5d\x10\xdc\x81\xb6\xa5\x51\x3a\x14\x6c\x9f\xac\x29\xad\xc4\x40\x94\x1e\x56\xd7\xbd\xd4\x1d\x6b\xac\xa2\xd7\xdd\xe8\x3a\x41\x40\xb3\xd0\x1a\x84\x88\xd9\xca\x5d\xf3\xe6\xf2\x67\xef\xfa\x97\x39\x37\xa3\x9e\x42\xdb\x2c\x14\x33\xf8\x62\x34\xb3\xa6\x51\xad\x36\xb8\xd7\x74\x39\x00\xf3\x0e\xe5\xa6\x4b\x91\x46\xb4\x42\x18\x5b\x08\xa9\xd6\x45\x92\xaf\xeb\x94\x0f\x15\xe7\x58\x88\x31\xc6\xa9\x77\x5a\xb6\xac\x6b\x73\x77\x82\xa7\xee\x3a\x0d\x05\xcb\x91\x48\x07\x81\xe7\xd7\x69\x1e\x2b\xd0\x43\x56\x00\x35\x05\x24\xd1\xe7\x05\x1d\xe8\x74\xba\x67\xa6\x0f\x52\x40\x33\x77\x4f\x78\x2a\x5c\xbd\xcb\x29\x21\xd1\x12\x4e\x16\x1c\x78\x76\xab\x45\xe0\x54\x63\x7b\x15\xce\x0b\xdd\x28\x38\xd3\x81\xa1\xd9\xec\xe5\x6b\xca\xcf\x26\x73\x7f\xbc\xfc\x27\x67\xfe\x93\x5f\xfc\x27\x4f\xe6\x7a\x92\x57\x62\x74\xc6\x77\x4c\x7f\xf4\xdd\xd4\xbe\x39\xc9\x8e\xef\x82\x80\x6e\xc5\x9d\x11\x8a\x58\x74\xe7\x87\x38\xb1\x54\x81\xdf\x5b\xeb\x06\xdd\x29\x79\x10\x50\x5b\x40\x8c\xb6\x8c\x6f\x83\xc0\x1b\xd4\x7e\x9f\xba\x69\xb9\xad\x6b\x33\x90\xdc\x87\xbb\xb2\xb4\x87\xef\x3c\x54\xfa\x82\xeb\x85\xc1\xb0\xed\xb1\xa2\xdb\xa9\x5e\x20\xd1\x84\x17\x7c\xc3\x38\x54\x77\xa7\x3f\x46\xaf\x9e\xca\x68\x56\xb6\x7a\x58\x41\xa5\x65\x53\xcc\xaf\x98\x30\xb6\x9f\x37\x54\xb6\x1b\x90\x65\xda\x16\x1c\x2c\x65\x96\x2c\x6a\x3f\x00\x8e\xcf\x1a\x69\x96\x3b\x29\x57\x3d\x80\x0d\xe4\x33\x65\x10\x0c\x44\xf3\xf1\x99\x68\xc9\xa2\x7b\xbb\xef\x46\x59\x5d\x8f\xb2\x20\x50\x75\xbd\x05\x2b\x5c\xd9\xb0\xb9\xd2\x32\xd2\xf8\x5c\x05\xc1\x68\x0b\x46\x79\xca\x0b\x82\xbb\xbe\x0d\xf3\xf5\x7a\x5a\x38\x96\x58\x4c\x22\x7b\x40\xe6\xdc\x5c\x9b\xa7\x00\xb8\x6f\x6f\x74\x4f\xa2\xc0\xad\xbf\xa7\xf4\x2b\xf1\x92\x67\x4d\xf2\x3c\x1a\xce\xe2\x38\x7c\x7b\x58\x57\x20\x11\x0e\x02\x40\x46\x2a\xdc\x7e\x62\xae\x20\x78\x0a\xe3\x45\x98\xa7\x2b\x51\x38\x26\x84\x37\x97\xfe\x2e\xa1\x59\xab\x3c\x5d\xb1\x20\x80\xdf\x46\x41\xa6\x6b\x30\xef\xe9\x84\x29\x31\xe9\x6c\xaf\x39\xf4\x96\x16\x7a\x1d\xaf\xe4\xa7\xfc\xb0\x07\x35\x82\xdb\xa0\x49\x73\x21\x19\x10\x0f\x77\x18\xcd\x27\x16\xc3\x5d\x4f\x35\x2d\x51\x02\x37\x23\xa9\x3b\xdb\x56\x7b\x2e\x8d\xa3\xb6\x79\x76\xe8\x88\x4f\x74\xa9\xb8\xc4\x50\x3f\xd0\xa3\x18\x16\x9c\xf1\xb8\x1b\xeb\x5b\x89\xd2\xa0\xb6\xb5\x67\x14\xcf\xd9\x39\x4d\x1c\xa2\x37\x40\xda\xac\x93\x2c\x29\x37\x40\x81\x15\x70\x9a\x74\x34\x61\xfb\x26\x70\x2d\x3e\x17\x31\xd7\x5b\x15\x86\xcc\x82\x5e\xf3\x42\x4f\xc5\x46\xd9\x89\x5d\x6b\x9e\xf3\x98\x75\xc5\x9e\xd6\x0a\x18\xc2\x39\xd0\xd9\xad\xb5\x25\xde\x71\x45\x33\xd7\x9a\xc1\x50\x2d\xe8\x98\xed\x87\x6b\x51\x06\xbd\xcf\xba\x19\xf4\x82\xcc\x0c\xfb\x6b\x63\x23\x46\x10\x8c\xc2\x59\xf4\xb7\x82\xbb\x40\xcf\x03\x53\x5b\x82\xc7\xad\xd3\x47\xa3\xbc\x86\x18\x5a\xfa\x2f\x34\x3d\x08\x0a\x00\xe8\x62\x4d\x28\x46\xf0\xc4\x8d\xfb\x19\x33\xc7\x55\x34\x85\x50\xe2\x73\xae\x5a\xc9\xc9\xc9\x39\xcb\x75\x11\xcd\xbf\x8e\x2c\xf8\x80\x6b\x29\x3c\x82\xb6\x8e\x20\x68\x1d\x85\x04\x3d\xbb\x70\x50\x33\xc6\x95\x26\xf1\xb9\x05\x4f\x4c\xf8\x19\x63\x47\x23\x15\x04\x99\xe6\x2a\x06\xe2\xf7\xe0\xc8\x0f\x68\xf0\x6c\xef\x52\x17\x18\xe7\xa1\x2e\xe5\x99\xdf\x55\xbc\x10\xd9\xcc\x76\x2b\x99\x43\xe4\x8f\x76\x2f\xcf\xdb\xdd\x5c\x4c\x8b\x46\x2e\x46\xbc\x5c\x33\x25\x47\x13\xde\x89\x81\xa4\xc7\x16\x80\xc2\xb1\x5b\xf1\xd7\x73\xd3\xd5\xdb\x8f\x6a\xfa\x54\x61\x9f\x2a\xec\x53\xe3\x8f\xa3\xbb\x52\x99\xae\x44\xc7\x09\x38\xdb\xf4\xba\x52\xd7\xe2\xba\x51\x41\x37\xa2\x6e\x6d\x72\xae\x9e\xc6\xe0\x75\x52\xcc\xd4\x3c\x08\xf4\x5f\xd3\xd8\xd6\x8d\x47\x9b\xec\x6c\xb7\x1f\xb5\x67\xad\x93\x6f\xc3\x4d\x72\xe4\x17\x39\x72\x92\xdd\xf3\x6f\x1b\x0e\x6a\x9d\xcd\xd4\xfc\xc8\xfc\xfa\xfb\x4e\xcb\x26\x07\x35\xd6\x75\x3d\x14\xb9\x22\x1b\x36\x80\xc6\xd5\x6d\xa9\x58\xae\xa8\x82\x9e\xc4\x8a\x7d\x87\x84\x32\x4d\x56\xf2\x45\x7e\x93\x45\xb9\x32\x3c\x2e\xe3\x90\xf8\xd3\x0e\x92\xa0\xfd\x26\xe9\x13\xc6\xd4\xd0\xc9\xe6\x33\x19\xd7\x74\xf7\x75\xd6\x18\x01\x61\x1d\x7b\x48\x7f\x5f\x29\xef\x01\xd4\x84\x0f\x4c\x45\xcd\x33\x53\xdd\xfe\xf7\xfd\x16\xfa\x44\xdd\x7e\xa5\xb2\x14\x1a\x3e\x0f\x67\xa3\x98\xcd\x1b\x0d\x6e\x97\xe6\x82\x13\x12\x9c\x57\x63\x66\x98\x13\x2d\x4d\xed\xb9\x7a\x9a\xf9\x90\x97\x54\x0a\x30\xce\xa7\xc6\x4a\x1f\x17\x6e\xe6\x66\xd6\xc9\x09\x3f\x63\x47\x99\x93\x4d\x8c\xd6\x3b\xdf\x51\x50\x01\x1b\x75\xb0\x27\x6a\x8b\xf6\xb1\x06\xb6\xc3\xf2\x24\x56\x69\x1e\x17\x00\x75\xd4\x52\x4c\x8b\xb3\x6f\xbc\xc7\xfe\x97\x49\x55\xd7\x54\x02\x59\xd4\xe5\x6c\x41\x50\x4c\xb4\xb2\xa1\x71\x34\xf7\xb6\x7b\x71\x5f\xa6\xf9\x4d\xf4\x9f\x93\x09\x5f\xc7\xa5\x8a\x9e\x4c\x26\x8d\x86\xff\xcf\x93\x89\xd9\x72\x57\x52\x33\xc5\x6d\x5d\x9c\x0b\xc4\xa7\xab\x03\xd0\x6b\xc7\x66\xa8\x79\x5d\x2b\x0c\x27\x04\xe4\xdc\xa3\xf0\x5e\x90\x7f\x6f\x03\x6d\x29\xd4\x33\x50\x06\xf4\x9b\x8f\x66\x3f\x36\x57\x62\xf0\xf4\xba\x27\x99\x87\x30\xfa\xb9\xea\x3f\x42\xb8\x12\xf2\x3b\x01\x00\xf0\x48\x8f\x30\x76\x64\xc0\x24\x1a\x30\x3a\x0b\xc3\xff\x3e\x13\x04\x51\x24\x01\xed\x4f\x73\xf1\x3b\x85\xc0\xdf\x72\x25\x94\xc1\x45\x91\x2b\x4e\x1f\x0a\x22\x00\x65\x05\x51\xc4\x82\xcc\x98\x08\x02\x7c\x15\xc2\xc5\xdf\xec\x73\xe1\xde\xb4\x37\xc6\xd0\x95\xe2\xa9\x12\x06\x8e\x3a\x56\xaa\xf8\x01\x9c\x63\x8f\x5a\x0c\x93\x4e\x7f\xf0\xdc\x7e\x01\x45\x0f\x1e\x8c\xf3\x06\x33\xe3\x0f\x04\x9d\x6b\x0a\x1d\x8a\xf9\xd8\x6b\x57\xfb\x4c\xa0\x11\x80\xf5\x16\xfe\xcd\x08\x6c\xc5\xfe\x0f\xfe\x3c\xd1\x3f\xac\xe7\x3e\xdb\x02\x14\x99\x2e\x40\x33\x6a\x4d\x00\xa8\x41\xae\x6f\x39\x99\xd7\x35\xd5\x6c\x1c\xf4\x1c\x1e\x4b\x77\xfc\xe4\xe0\x44\xdd\x03\xfb\xd6\x84\xd9\x5a\x71\x4d\x2b\x15\x39\xf8\x7c\x3f\xcc\x31\x90\x71\x91\x4d\x21\xad\xd5\x13\x10\x22\x39\x69\xec\xcf\x12\xdf\x0a\xaf\x10\x89\xb3\x3f\x53\x8c\x4d\x8b\x88\x76\x82\x43\x28\x9e\x8d\x09\x61\xfa\x73\x92\xc6\x2e\x2c\xb1\x52\x33\x56\x61\x43\x61\xea\x0a\x8c\x1e\xa0\x10\x06\x9b\x3e\xb6\x8d\x60\x53\x13\x9d\x18\xf8\x5c\xfb\xf9\x11\x62\xa4\xdf\x77\x23\x5d\xa3\x3d\xad\x3f\x1d\x83\xc0\x4c\x52\x0c\x4d\x09\x10\x32\x76\x42\x9b\x4d\xcf\x4c\xd5\x23\xff\xf0\xac\x17\x2c\xc3\x44\xec\x34\x79\x85\xe6\x84\xc0\x36\x74\x70\xca\x75\x0f\xd0\x94\x66\x8b\x9d\xae\x4f\xf3\x79\xbd\xc0\xc4\xe8\xcc\x28\x92\x59\x01\x71\x43\xfa\xf8\x2f\x19\x4c\xca\xaa\x77\x0e\xeb\x87\xce\x05\xd6\x5a\x4d\x3b\x23\x99\x99\x13\x45\xaf\x2e\xd4\x56\x3a\x00\xb6\xfe\xcc\xc1\xc0\x80\xa6\xcd\xa7\x9f\x6f\xc6\xa7\x57\x6c\x90\x63\x48\x95\x31\x05\x74\xc3\x76\x04\x49\x6d\x91\xb5\x15\xe7\xae\x33\x75\x9d\x01\xbe\xe6\x37\x75\x7d\xf1\x9c\xc3\x5f\x50\x7e\x19\x8b\x4c\x53\xcb\x34\x86\x99\x62\x9e\xe7\x8c\x27\xd6\x5b\x6f\x69\x8e\x6d\x11\xeb\x08\xe9\x59\x6d\xc1\x0f\x6a\xc4\x3e\x83\xf0\x56\x6b\x93\x31\xae\xf5\x13\x9d\xd4\x9c\xe2\x6e\x54\x43\x2e\xa8\xec\xc4\xe0\x46\x7f\xbb\x63\xe2\x1d\x96\xee\x54\x0b\xc1\xc2\x5f\xd4\xc6\x20\xc5\x0f\xaa\x92\xc6\x25\x20\x5f\x13\xcf\xe4\x79\xe5\xd7\xd0\x3e\xd8\x90\x6c\x2a\xa3\x21\x57\xda\x76\xc3\xda\x81\xca\x76\x7d\x1c\xdc\x2e\x09\x45\x63\x80\x87\x49\x68\x07\x4e\xf7\x61\x12\xea\x79\xb6\xcd\xb0\xfa\x57\xc9\xed\x4c\xce\xeb\x5a\xce\xbb\xa4\xb4\xd7\xbe\x7f\x93\x94\x1e\xa0\x91\x7a\x8b\xb1\x0d\xc0\x4d\x3e\x31\x29\xd6\xb4\xb3\x45\x00\xbf\x9e\xc0\xa1\x25\xe1\x57\x12\x33\x9d\x19\x62\x90\xee\x2c\xb1\x8a\x2f\xd1\x3e\x7b\xd8\xac\xa5\x43\xf4\x88\x8a\x2f\xc1\x44\xd8\x73\x20\x9f\x82\x7d\xe1\xeb\x4c\xb3\xcd\x67\x13\x16\x2d\x95\xc5\xd8\xb3\x58\x21\xac\xae\xd7\xfd\x44\xc0\x57\x2b\xe4\x7a\x3a\x89\x4e\xce\x34\xbd\x32\xbd\x13\xdd\xaf\xf3\x22\x22\x1b\xb5\x4d\x5f\xe5\x05\xe1\x30\x39\x23\x9c\xa3\xba\x20\xd1\xc3\xd6\xe2\x12\x60\x83\xf1\x0c\x43\x2c\xf3\x70\xe0\x93\xa4\xef\xb9\xdc\x9c\xfb\xab\xb6\x03\xbf\xef\xbd\x6f\x6b\x84\x9e\xe2\xc8\x09\x76\x4d\x4e\x06\xea\x56\x41\x40\x55\xa7\xf0\xd7\xbe\xa5\x23\x27\x99\x51\x22\x9c\x14\x32\x5e\xbd\xcf\xd2\x3b\xc2\xc9\x36\xbe\x7d\x03\xcb\x83\x70\xb2\x94\x69\x6a\xfc\xac\xcc\xdd\x07\x63\xdf\xc0\x49\x91\xdf\x5c\xec\xe2\x4c\xa7\xe7\xa9\xb9\xaa\x4a\xf9\x36\xde\x11\x4e\xd6\x45\xbc\x95\xdf\x19\x7b\x56\xeb\x06\xf1\x72\x85\x20\xcc\xbe\x2c\xa6\x19\x12\x37\x81\x01\xfd\xa2\xb5\xcb\x83\x70\xd9\xb5\x76\x8c\x57\xab\xe7\x30\x7c\x03\xb6\x6c\x3e\x2a\x18\xda\x35\x6e\xa9\x6c\x43\x0f\xb7\x97\xb3\x96\x70\x4c\xcc\x40\x5b\x2f\x95\x9e\xf4\xab\xf8\xce\x08\xe1\xcc\x00\x53\x51\x25\x80\x8a\x39\x1c\x70\xb3\x95\x01\x3d\xa8\x6c\x3c\xae\x44\xec\x14\xcd\xc0\x42\x41\xb3\x1c\xde\x99\x01\x39\x26\xe3\x8d\xe6\x97\xc7\x9a\xb8\x1a\x9c\xfd\xc9\x79\x2e\xd4\x2c\x86\xd2\x45\x63\x30\x7f\x4c\xc6\x39\x64\x03\xd7\xf7\x62\x2c\xf0\xee\x28\xd1\xcb\xb0\x14\x1b\x08\xa7\x69\xcc\xd6\x7a\xa4\x97\x97\x0e\x72\x09\x01\x19\x8c\x6f\xe6\xff\x8d\xbe\xf3\xaa\xfe\x9d\xee\x1b\xf5\x40\x04\x5a\x92\xa4\x26\x09\xb6\xfd\x84\xfc\xff\xd3\xe1\x50\xdf\x50\xaf\x7f\x7b\x72\x76\xce\x0a\x51\x38\xac\x26\xf7\x88\xff\x0f\x86\x01\x25\xed\xee\x30\x78\xa7\xb1\x66\xe7\xe3\x85\x67\x65\xac\x65\xb7\xee\x7e\x79\x74\x28\x9c\xa6\x0a\x82\x62\x8a\xc1\xb0\xbd\x59\x6d\x54\x12\xad\xa1\x62\x11\x9c\xd4\x0e\x0c\x6e\xd6\x0c\xae\xd7\xe0\xd6\xe0\x66\x6e\x70\x01\x42\x99\xed\x0f\x04\xeb\xc4\xf9\x85\xd6\x0e\xc9\x9a\x16\x08\xb0\x27\x26\x3c\x17\xe6\x15\x3c\xc6\x21\x3e\x57\x22\x9e\x25\x30\x28\x79\xb8\x89\x4b\x7c\xa7\x62\xd3\xbc\xd5\x6c\xc5\xa2\xbc\xf9\x30\x65\x94\x85\x0d\xe4\x77\x10\xb8\x3e\x41\x3f\x14\x3d\x87\xdc\x44\x0c\x82\x47\x4d\x78\x7d\xb2\x58\xb8\x4d\x60\xb1\x20\x0e\x0b\xba\x6c\xf1\x36\xbd\x24\x37\xb8\xca\x28\x78\xe5\x94\x90\xc8\x57\x11\xb7\xeb\x05\x36\x88\x21\x60\x89\xf9\xac\xe1\x25\x28\x26\x46\x2f\xa6\xa7\x9a\xd4\x53\xcd\xce\xf4\xc2\xce\xf4\xee\xfc\xa6\x66\x82\xc3\xfc\xc7\x49\xee\xe6\xb2\x82\x38\x80\x36\xfe\xda\x91\x8b\xb8\x66\xb8\xc8\xad\x12\xa7\x9f\x8b\xd3\xab\xb6\x5c\x7a\x1d\xa7\x87\xe8\x83\x45\x4f\x71\xaa\xee\xce\x62\x9e\xd2\x42\xe8\x19\x35\xa4\xda\x34\x9c\x4f\x72\xd4\x03\xf6\x09\x02\x7b\x1c\x9e\x88\x62\xda\x9e\x62\x76\x12\x5e\xc7\x29\x65\x2c\x92\x6c\x9a\x08\x42\xa2\xc6\x53\xc9\xcc\xf9\x64\x9a\x8c\xf5\x83\xf6\x22\x49\xd0\x5a\x06\xad\x3e\x92\x21\x8c\x27\xa3\xdb\xd3\xc3\x27\xc7\x84\xec\x19\xe3\xc0\x56\x5d\xc7\xa9\x67\x10\x6d\x22\xb3\x74\x93\x87\x81\xcb\xc0\xbc\xc6\xf0\x59\xca\xc7\x0a\x6e\xa6\x5d\xc2\x09\x08\x56\xe0\x07\x05\x55\xa1\x9c\x95\xe8\x39\xc2\xa2\x64\xda\x6e\x43\x32\xd0\x80\xe4\xa1\xb7\x5f\xf5\xdf\x4e\x33\x81\xd6\xe0\xcd\xbb\xd9\x34\xeb\x71\xdc\x34\x13\x09\x36\x86\x4d\x1d\xa4\x0a\xdd\x42\xc0\x6d\x23\xb6\x66\xba\xb3\x32\x1b\x89\xac\xc5\xef\xda\xd6\x45\x36\x0c\xee\xd7\x71\x80\xa6\x3d\x3e\x58\xf3\x08\x4c\x8f\x37\x8a\x1a\xe4\x2d\x09\x8e\x5d\xc8\xce\x1c\xa8\xd5\x4c\x51\x1b\x53\xb5\x04\x06\xbb\xcd\x29\xc5\xc2\x28\x99\x4e\xcc\x59\xb3\xc1\x33\x2d\x45\x0c\xea\x81\x08\x62\xa1\xc4\xd3\x7c\x7c\x16\x59\x43\x4a\xb4\xde\x10\xf9\xd3\xc9\xb4\x8a\xe2\x69\x0e\xa6\xa0\x15\x7a\x76\xac\x29\xa5\x20\xc5\xba\x40\x23\x9a\x73\x2c\x20\x08\x6a\x10\x8c\x32\x17\xb8\x24\x08\xe8\x28\xf3\x19\x33\xfb\xa0\xae\x47\x5f\xa8\xff\x84\x13\x1b\x1e\x96\x30\x8b\xd9\xb6\xa0\x99\x59\x01\x3c\x76\xfb\xe5\x91\x51\x53\x2a\xb7\xbf\x94\x3d\xff\xa8\x5e\x1c\x6c\xbf\x73\xf4\xaa\xf8\x22\xad\xc3\x87\x6f\x3a\x8a\x21\xfb\xc1\x6c\x34\xf6\xbe\x4c\x34\x90\x3c\xcd\x44\x34\x15\x62\x34\x6c\xc6\x73\xa0\x38\x70\xc6\x34\x9a\x34\x23\x0a\xe8\xce\xad\xb1\x10\x27\x67\x8c\xe7\xfb\x7d\x8b\x27\x35\x0a\xb6\x46\xa3\xd7\xe1\x15\x5b\xcb\x6f\xde\xd7\x0d\x40\x7f\xf5\x5c\x59\x9c\xc4\x6a\xd1\x03\xbd\xef\xa0\xd2\xf6\x2c\xd0\xca\xfd\xbe\xd1\x21\x82\x08\xd0\x7e\x23\x60\x9e\x1c\xa4\x22\x3d\xe4\x5c\x33\xaf\xa7\x24\xcf\x48\x64\x55\x84\x0c\x44\x0d\x13\xcb\x43\x90\x3c\xb3\x61\x3d\x92\xec\x18\x23\x75\xde\x19\x99\xdd\x3c\x80\x9f\xda\x86\xe6\x80\x60\x1e\x8f\x4e\xf9\x75\xbb\x21\x43\xf8\xf8\x47\x6e\x61\x1a\x0c\x3f\xde\x0f\xe7\xa1\x57\x8d\x1f\x37\xd3\xd8\x42\x61\x8c\xb7\x6b\x31\x4b\xea\xba\x98\xf3\x2b\xb1\x36\x54\x99\x1b\x60\xde\x29\xc6\x2c\x8c\x14\xbf\xf4\x9e\x39\x1c\x6a\xc8\xd0\x04\x62\x6a\x62\xb4\x45\x33\x8c\x52\x25\x56\xa2\x12\x89\xd0\xd5\x73\x2d\xf8\x26\x1d\x87\x5c\xff\x7e\x74\x67\x24\xbd\xab\x71\x2f\x7a\xa2\x9e\x6a\x57\x0d\xef\x16\x02\xd7\x16\x04\xf4\x52\x5c\x79\x6f\xe5\x57\xe2\x32\x44\xfb\x03\xc6\x2f\x4d\x9c\x38\xc6\x97\xc2\x2b\x1a\x21\x9b\xad\xc7\x6a\x7c\xa5\x37\x01\xe5\x07\x81\x51\xad\x20\x30\x57\xbc\x1f\x5b\x34\x08\x14\x63\x61\x52\x7e\xc2\xa6\x89\x7c\xfa\x24\xfa\x86\x7b\xbd\x20\x2e\x9b\x90\x83\x5c\x79\x71\xaa\x84\x97\x69\x3a\x18\x68\xee\xf2\x77\x03\xcd\xa1\xa2\x48\xd9\x30\x53\x06\x68\x53\x99\x38\x1a\x7a\x97\xb1\xf1\x38\x12\xc6\x33\x61\x29\xf9\x4c\xcd\x23\x9f\x0e\x64\x1c\x94\x06\xbb\x5e\x74\xb2\x2b\x44\x4c\xcb\xeb\x7a\xb4\xb3\xbd\x6f\xc2\x88\xb9\x7b\x1b\xfd\x0a\x02\xd2\x83\x6a\x32\x0f\x82\xd1\x2e\xb4\xf1\x71\xf4\x48\x82\x15\x18\x06\x03\xdc\xb5\xa2\xef\xd5\xf5\x15\xb7\xe3\x9c\x8e\xaf\x20\x54\x97\xf0\x01\xc1\xd8\x79\x79\xde\x49\xb9\x46\x0a\x58\x32\x5e\x89\xf2\xa8\x12\x9a\x83\x68\x03\x35\xd5\x75\xc1\x82\xc0\xe4\xab\x7c\x48\xaa\xba\xae\x4c\x55\x7f\x4f\xb2\x55\x7e\x53\xd7\x92\xed\xad\x70\x40\x4b\x71\x0d\xd2\x81\xa6\xe2\xea\x60\x4c\xb3\x95\x28\x39\xae\x03\x11\x7f\x7b\x36\x4d\xa3\x9d\x8b\x20\xa8\x3f\x87\x6e\x6c\x34\xb8\x5e\x28\x38\x2c\x35\xb7\x41\x13\x4b\x1b\x9f\x0e\x6c\x0a\x6c\xe0\xcf\x92\x67\x10\x97\x72\x19\x04\xe5\x6c\x39\x6f\x9e\x04\xc1\xf7\xb4\x64\xa0\x09\x30\xe3\xdd\x2a\x82\x7a\x51\x17\xf8\x46\xf5\xa2\x76\x34\x8a\x16\x6c\xfc\x95\x1e\x57\x35\x10\x0a\x84\xb2\xba\xde\x39\x1b\x14\x63\x23\xd0\x24\x98\x97\x5e\x87\x3b\x38\x60\xcb\x58\x5d\x8f\xbe\x07\x50\x84\x65\x10\x6c\x69\x32\xbb\x82\x0e\x34\x7c\x18\xad\x44\x82\x9f\x41\xf5\x2f\xcc\xc1\x26\x22\xa5\x5b\xd1\xe2\x8a\x1f\xea\xf1\x20\x58\xf5\xa3\x68\x5e\xf1\x6b\xc5\xb8\x7e\x17\x65\x0f\x96\x1c\x8a\xc6\x83\x85\xfb\x6d\x30\xeb\xa7\xb2\x6d\xad\x00\x3e\xcf\x45\x56\x2b\x4d\x28\x90\x03\x76\x1a\x8e\xee\x7a\x34\x83\x67\x1c\xb5\xf8\x9d\xc8\x2d\x93\x3d\x3b\xea\xbc\x9f\x16\x88\xb8\xa7\x58\x0f\x13\xb5\x47\xbf\x7d\x9d\xe7\x81\x13\x9f\x76\xdd\xba\xa1\xca\x22\x53\x9a\xc4\x1f\x4c\xa0\xd5\x43\xc6\xc1\x9a\xe3\xf7\xdc\xc1\x8f\x87\xea\xcc\x00\x8b\xd5\xdf\xdb\xd0\x9b\x72\xb9\xa1\xf7\x18\x13\xcb\xc5\xaf\xc2\xf0\x55\x7e\xb0\xa9\xa1\x17\xb7\x0f\x66\x0d\x35\x32\xfd\x46\x15\x77\x21\x82\xda\xf1\x19\x71\xd7\x6b\x91\x2e\x85\x8c\x42\xb5\xeb\xfa\x59\x1a\xe8\xc7\x0e\xc1\x40\x06\xbd\x31\xd9\x2b\xb8\x62\x47\x7a\x9f\xea\x4f\x3d\x89\x5f\xcd\xfd\xbc\x9c\x26\x80\x09\x72\x06\x90\xb3\x18\x09\xf3\xdf\x7f\xf1\xc9\xd9\x51\x32\x6d\x55\x9f\xb0\x88\x16\x83\x73\xb9\x69\x8d\x31\x03\xd4\x15\x80\xdb\x37\x70\x15\x57\x4a\xc8\x30\xcd\x97\xe8\xde\x71\xa9\xbc\x53\x76\xbe\xd0\x82\xe0\xf4\xf4\x68\x11\x82\xe2\xf5\xe7\xb7\x6f\xfa\xf8\x7e\xa0\xbd\x51\x75\xdd\xb3\x28\x72\x91\xdc\xf4\xa4\x05\xa8\xca\x4c\xc0\xcc\x97\xe1\x8b\xf7\x6f\x3f\xe8\x0a\x0b\x86\x15\xbf\x2a\xf2\xed\x05\x14\x07\x4e\x42\xde\xaa\xd3\xdb\x6d\x4a\x98\xc1\xa1\x2c\xd8\xbd\x8d\x7c\xbd\x6f\x10\x03\x47\xc0\x5c\x9a\xf3\xd9\xf2\xbb\xbb\x4f\xf1\x95\x16\x7b\x28\x81\x2a\x0b\x59\x14\x79\xe1\x99\x23\x2f\x42\x48\xa1\xe4\x75\x76\x1d\xa7\xc9\xea\xf8\xe7\xb7\x6f\xa2\x63\x32\x86\x10\x21\xd0\x13\x37\xfa\x6b\x67\x9f\xe7\x8f\x4e\xf9\x4b\x90\x80\xa7\x9f\xb3\xd3\x2b\x7e\x6b\xd8\xae\xb2\xba\xdc\x26\xca\x1c\xa2\xd4\xc9\x36\xbe\x92\x75\x21\x4b\xa9\xea\x75\x92\x4a\x38\x55\xb9\x78\xf0\xf8\xe5\x8b\xbc\xbb\x92\x19\xf3\x8f\x5a\xde\xab\x8e\x91\xda\xa0\xcf\xb5\x59\x2f\x9e\xe3\xbd\x1e\xef\xfb\xac\xae\x6f\xac\xae\x9b\x4d\xf5\x40\x27\x2c\xd2\x35\x8e\xc9\x8c\x8c\xfb\x91\x3c\x9c\xae\x3e\x99\xaa\x88\x68\x36\x61\x4e\x78\x62\xc1\xf5\x6d\x10\xf1\xac\xae\x6d\xc9\x91\x10\x97\xc0\x28\x9b\x80\x62\x2d\xdb\x2b\xc5\xdc\xab\x12\xa8\x49\xcd\x92\x39\x56\x06\xd3\x25\xde\x8a\xe1\xa3\x40\x80\xb4\x1c\x5a\xd9\x10\x5d\x50\x51\x16\xa9\xa3\x62\x66\x2d\x95\xe6\x42\x66\xcb\x7c\x25\x7f\xfa\xf8\xfa\x79\xbe\xdd\xe5\x19\x06\xdb\x1b\x13\x41\xc6\x03\x4f\x7c\x51\x94\xed\xfb\xbd\x09\x98\x58\xe1\xaf\xbf\x55\xb2\xb8\x03\x5f\xd2\xa4\xfc\x90\xc6\x49\xe6\x4c\x02\x6d\x67\xb7\x20\x27\x12\x14\xc6\x35\x37\xc6\x1b\xb1\xdc\xf5\x9a\xe7\xab\xf3\x5e\xd1\x8c\x83\x7f\x8e\x1e\x22\x77\xa8\x67\xf8\xb4\x80\xb0\x8e\x75\x64\x29\x8b\x24\x4e\x87\xc1\xd4\x4c\x37\x52\xa3\x66\x32\x19\xf1\x3b\x18\x80\x5e\xf8\x49\x43\x68\x6c\x03\xa0\xb9\x68\x7e\x61\xce\xda\x51\x27\x25\xcd\x12\x6a\x24\x6d\x39\xf5\x99\x3f\xa3\x22\xdc\x33\x6b\xa6\xd9\xab\xce\x29\x43\x5a\xce\xe1\xba\xbb\x74\x1f\x1b\x55\x4d\x52\x52\x12\x59\xf9\x96\xb0\x20\xb8\x30\x93\xb7\xa5\x33\xd1\x8c\xc1\xad\x6a\x40\x72\xf1\xe9\xd2\x82\xd2\x8f\x52\x07\xa0\xcb\xf6\xac\xfd\x71\xbe\x05\x97\xaf\x1e\x6a\x07\x7b\xc2\x03\xff\x8e\x42\x28\x63\x53\x54\x06\x65\x03\xca\xa0\x7b\xfd\x21\x11\x32\xe3\x26\x4e\x64\x83\xd3\xff\x52\x71\xf2\xb9\xf8\x9c\x11\xbd\xc9\x45\x03\x59\xb3\xe1\xac\x88\xbf\x6a\x89\xf0\x33\x25\x4e\xff\xf4\x64\x72\x7a\xc5\xbf\x28\x71\xfa\xbf\xc2\xc7\x8f\x4e\xf9\x5b\x25\x4e\xe9\x6c\x1a\xcc\xd9\x42\xcc\xfe\x19\xcc\x1f\x9f\xf2\x4f\x40\x5f\xc2\xc7\x53\x16\xcd\x8e\x3f\xab\xf9\x63\x3a\xfb\xa7\xae\x71\xfe\x98\x3d\x3a\xbd\xda\xf2\xe7\x86\xfe\x7c\xff\xf2\x53\xfd\xc3\xcb\x67\x2f\xb4\x40\xf8\x51\xa7\x7d\x3e\xfd\x7c\x7a\xca\x3f\x28\x71\xbf\xe7\xef\xe0\xef\xaf\x4a\x90\xc7\xa7\xc4\xba\x8d\x92\xc7\x84\xf1\xd7\x03\xc6\x37\xb1\x0f\xaa\xfa\xc2\x3f\xa7\x6d\xdb\x19\xf5\xc9\xbf\x33\x28\xd5\x75\x1f\x59\xdf\xd5\x09\xcf\xbb\x47\xdf\xad\x83\x5c\x3c\x60\xc8\x4c\xac\xd8\x42\xe4\x46\xf1\x4b\xc6\x44\x08\x51\xcc\x26\xf3\x29\x2d\x44\xe1\x90\x53\xea\x9a\x3c\x26\x1c\xdd\xdb\x24\xb8\x75\xcc\xe6\xcc\x59\x95\x67\x8c\x45\xdd\x67\xc0\xf3\x67\x7e\xdc\x94\x37\x5d\x2a\x8c\x60\x1e\x52\x08\xf1\x4e\x35\x5f\x1f\xd3\x12\x9f\x57\x0e\x9b\x63\x56\xce\xd1\x76\x12\x69\xc6\xac\x44\xef\x23\x6f\x4a\x9a\x22\xa9\x28\x8d\x89\xf1\x21\x03\xdc\xb4\xae\xf3\xba\x4e\x66\xe9\x7c\x9a\x4f\x47\xb4\x12\xa9\x8d\xea\x1f\x51\x05\x71\x88\xb5\xfc\xd0\x18\xcc\xa7\x8c\xc7\xfa\xcf\xe8\x8c\xed\x19\xaf\x1c\x54\x9a\x9f\x79\x36\x99\x6b\xde\x3b\x01\x5f\xab\x20\x88\x61\x98\x9b\xef\x7e\xa5\x3a\x9e\x87\x62\x11\xc6\xbf\xc6\xb7\x17\x52\xa9\x24\xbb\x2a\xc3\x75\x1a\x2b\xe3\x21\xea\xe2\x4f\x67\x48\xfc\x1b\xf5\xe5\x2c\x9b\x6b\x2e\x3e\x99\x65\xf3\xa9\x8c\x8a\xba\xa6\x85\xb8\xdf\x33\x36\xcb\xe6\x18\x6b\xd7\x8b\xf5\xe5\xbb\xb1\x4a\x5e\x30\x2e\xf7\xaf\x15\x1c\xcd\x8a\x2b\xfc\xf5\x0d\x8e\x96\x2a\xb9\x96\xd1\x84\xa7\x71\xa9\xde\xe6\xab\x64\x9d\xc8\x15\xb8\xbb\xaa\x18\xdc\x5e\xfd\xb6\x46\xf7\x55\x91\x46\xb6\x12\xe0\xa8\xc9\xf7\x2f\x3f\x11\x9e\x94\x6f\xf2\x65\x9c\x46\x68\xee\x70\x99\x57\xaa\x8e\x77\x3b\xfd\xff\xa4\x54\x79\xa1\x77\xf1\x70\x7c\x02\xef\x2c\x93\x3c\x83\xcd\x5c\xef\xeb\xf5\x4d\xb2\x82\x20\x91\x8f\x4e\x8d\x96\xc1\xa0\x37\x2c\xf3\x94\x71\x0c\xa2\x02\x81\xeb\x8a\x5c\x33\x61\x10\x98\x61\x34\xe1\x71\x79\x97\x2d\x4d\xb0\x59\x25\x33\x85\x01\x54\xb5\x40\x94\x20\x8b\x75\x7a\x7b\x72\x73\x73\x73\xb2\xce\x8b\xed\x49\x55\xa4\xb8\x87\xad\xce\x8f\x97\x1b\xcd\xb6\x28\xf1\xd3\xa7\x57\x27\xff\x87\x70\xcd\xda\xed\x94\x71\xcf\xfb\x55\x61\x98\x02\x64\x8d\x76\x7a\xc3\x22\x08\x71\x8e\x29\xfa\x92\xf0\x5b\x7d\xdf\x7a\xd3\x36\xe5\xc7\x8e\x9b\xe2\xbf\x96\x00\xad\xe9\x65\xd0\x29\x26\xc7\xaf\xf1\x75\x6c\xc2\x4d\xec\x6d\xdb\xcb\xe8\x5e\xd7\x79\xfa\xf9\xf2\x76\x9b\x7e\xbe\x3c\xc5\x57\x9e\x7e\xbe\xd4\xbf\xa7\x58\xdf\xe9\xe7\x4b\xfd\xfb\xf9\xf2\x74\xcf\x0b\x59\xee\xf2\xac\x94\xaf\x12\x99\xae\x4c\x61\x62\x13\x7f\x7e\xfb\x86\x98\xaf\xb0\x49\x9f\xe4\xad\xb2\xcd\xb2\x69\x7f\xb9\x78\xff\x0e\x5b\x70\x2d\x0b\x65\x1c\x14\xa1\x89\x24\x42\x16\x11\x19\xc4\x63\xf8\x66\xdd\xd1\x78\xab\x6b\x21\x91\x2e\x8d\x2c\xa5\x49\xd6\x1f\x1e\x35\xec\xeb\x9e\x7b\x53\x1a\xa7\x8c\x1d\xaa\x5b\xa5\x85\x2e\x37\xa9\xaa\x03\x06\x24\x6a\xfa\x4a\x51\x58\x38\xed\xb5\xc2\xb8\x62\xd1\x2b\x45\xdb\xa9\x10\x61\x42\x27\x34\x51\x5f\x5e\x28\xfa\x41\x31\x48\xfc\x54\xc4\x59\xb9\xcb\x0b\xa5\x13\xdf\x99\xc4\x8e\x2f\xf5\x90\x42\xa9\x13\x41\x0d\x2c\x38\x0d\x7a\x43\xc7\x75\x11\x15\x76\xcd\xb2\xae\x76\xf4\x1e\x9c\xc2\xb7\x62\x15\x9a\xcf\xae\xeb\x15\xbf\x6b\x6e\x83\x80\xfa\xb0\x1c\x5b\xc3\x2c\xb1\xe9\x82\x6e\x59\x64\x35\x86\xd7\x2d\x47\x7f\x7e\x25\x16\xe1\xf3\x38\x4d\x2f\xe3\xe5\x97\x92\x92\x3c\x5b\xca\xe3\xad\xdc\xe6\xc5\x1d\x61\xfc\x52\xac\xc2\x52\xc5\xaa\x2a\x9f\x43\x9c\xef\xfb\x3d\xbf\xd1\x14\xf6\xa5\xfe\x73\x2b\x08\x86\xb8\x94\x2b\xc2\x2f\xc4\x7d\x21\xe3\xd5\xdd\x85\xd2\x42\x34\xc4\x9c\xfe\x68\xe6\xc5\x0f\x32\x5e\x75\x62\xe6\x20\x18\x0a\xc2\x44\x6b\x21\x04\x43\x95\x94\xe2\x7e\x7f\xae\xc4\x27\x85\x3e\xa9\x31\x3b\x67\xe5\x4c\xf5\x21\xf5\x85\x9a\x3d\x99\x1f\x29\x51\xce\xba\x27\x25\xfb\x16\xbf\xa0\x90\x5f\x50\x7b\xdd\x9a\x67\x69\xda\x6e\xd0\x10\xfc\xee\xd2\xd8\x67\x81\xda\xfd\x23\xe2\x5b\xf4\x9a\xef\x4d\x29\x7c\xcf\x12\x9c\x00\x5e\xf6\x5a\x33\x90\x54\xd7\x92\xdf\xcc\xe4\x5c\x98\x63\xc9\x3d\xcf\xaf\x65\x51\x24\x2b\xf9\x36\xd9\x62\x90\xc6\x83\xca\xe8\x25\x38\xc6\x6d\x4d\x3e\x21\x6d\x0d\xcd\x00\x0d\xf7\x31\xb8\xa1\x2f\xd9\x85\xf5\x9f\x93\xb3\x0b\x33\xa8\xbe\x57\x86\x42\x2e\xf8\x52\x0b\xd7\x33\xfd\x97\xcb\x99\x9a\xcf\xdb\x11\x20\xe2\x4b\x3d\xe5\x07\x0c\x5a\xea\xfa\xd6\xed\xac\x41\x90\x84\x90\x91\x2a\xc6\xdf\xd3\x89\x3d\x82\xdd\x03\x53\x7f\xed\xa0\x13\x2e\x18\x5f\x85\x55\x91\x0a\x4a\xf5\x4c\xd6\x97\x75\x6d\xb6\x01\x36\x26\x84\x39\xf6\xeb\xa3\xe2\x1e\x09\x1f\x93\xd3\x53\xa2\xcb\x82\xa6\x2b\x0b\xb7\x52\x6d\xf2\x55\x5d\x67\x26\xd4\xd5\xca\xa5\x60\x16\xbe\x6a\xb6\x55\x41\x9b\x1b\xe0\x3f\xd8\x61\x86\x86\x10\xeb\xde\xb9\x0a\x97\x45\x5e\x96\x2f\xf2\x6d\x9c\x64\xec\x7e\x00\xbe\x5a\xf3\x5a\x5a\x4e\x4e\x71\x47\x84\x8f\xe1\xe6\x06\x7f\x78\xab\x12\xf1\xba\xf3\x3d\x63\xbd\x99\xe6\xa5\x1a\x21\xcc\x80\xf7\x20\x85\x74\x23\x4f\x3f\x63\xf7\xed\x7a\x34\xe1\x4b\xd6\xe6\xab\x82\x60\x15\x7a\x9b\x5a\x13\xfc\xcd\xb1\x2a\x36\x9f\x29\x20\xac\xa0\x82\xb7\xba\x4f\x8b\x78\x05\x78\x78\x71\xca\x18\x7f\xa3\x29\x1e\x5f\xf1\x8c\x5f\x30\xbe\xb4\x5a\x81\x0b\xe0\x26\x36\xc7\x49\x46\xd7\x56\xad\xac\x5f\x8d\x3b\x2b\x0b\x82\x89\xd0\x74\x0b\x78\x80\xf1\x18\x58\x87\x96\x72\x89\x00\x49\x53\x71\xa1\x9a\x61\xc4\x9f\x36\xca\x1e\x5f\x81\xc9\x80\x09\x47\x32\x7a\x6e\x64\x0b\xcc\xca\x78\x8e\xdd\xdc\xc4\xdd\x82\x23\xcd\x56\xa1\xe9\x81\x7e\x01\x14\x4a\x43\x37\x71\xa3\xc7\x08\x69\xee\xe8\xe0\x77\x77\x7d\x70\x8e\x35\x9d\x88\x3f\xae\x1d\xcf\x14\x27\x63\xa2\xd9\xd7\x9d\x69\x21\x72\xbc\xd6\xe3\x86\x71\x6f\x14\xbc\x66\x35\x8a\x18\xd1\x1e\x2e\x88\x74\x38\x16\x74\x61\x3a\x20\x67\x53\x12\x90\x88\x4c\x09\x1b\xdb\x81\x43\x13\x46\x93\x1f\xf5\xc5\xab\x70\x19\x2f\x37\xe0\xba\x23\x72\xd7\xba\xb7\x8a\x93\x47\x67\x84\xf1\xdd\x70\x85\x64\x21\xc8\xf8\x52\x8d\xc7\xe3\x9d\x5d\x9f\x39\x5e\x26\x6b\xcb\xc9\x01\x6e\x83\xcf\xda\xcd\xf2\x79\x10\x5c\x84\x5d\xa2\x49\xc9\xeb\xf5\x89\xcd\x73\x72\x91\x64\x4b\x49\x78\xaf\x24\x68\x6b\x55\x7c\xf5\x50\x25\xef\xf2\x4c\x9e\xbc\xd5\x4b\x80\x34\xb9\x19\xe3\xde\xc4\x6f\x46\xdd\x68\xb5\x3b\xe3\x9b\xf9\xb7\x6c\xf8\x4d\xa6\x82\x93\x4f\x60\x32\xdd\xaa\x80\xf1\xa1\x02\xcf\x80\xd7\x23\x3e\x89\x99\x4d\xe6\xa0\xd5\x46\x2e\x70\xd6\x7e\x32\x9f\x1e\x7c\x32\xd6\x2c\x3e\x34\xdb\x4f\x9e\x12\x7e\x4c\xc6\xbf\xaa\x31\x39\x3f\xfe\x4d\x4c\xc2\xc9\x19\x89\x08\x61\x51\x53\x0d\x42\x05\xad\xc2\x0d\xee\x6a\x6c\xa0\x99\x9b\xe6\xf1\x6c\x33\x07\x1b\xac\x55\x88\x31\x50\x2e\x64\xb6\xb2\xa0\x4f\x7e\x1a\x1e\x00\x6e\xf9\x05\x5f\xb1\xba\x5e\xba\x23\xd7\x0b\x43\xda\xa1\x92\x5b\x41\xe0\x8e\xf0\x2b\x08\x8b\xb9\x6a\x30\x32\xf8\x05\x3a\x38\xaf\xc2\xb2\x02\x55\xa7\x4e\x01\xdc\x8c\x15\x6a\xf3\x18\x4f\xc4\x1b\xcd\x3b\x19\xf2\x02\x8c\xc0\x45\xd8\x30\x11\xe2\x8c\xaf\x83\xe0\xae\x43\x35\x20\x98\xcb\xec\x82\xaf\xe6\x2d\x82\xb4\x0a\x81\x7b\xd7\x1d\xaf\xd0\x7f\xe5\x5b\x40\xd5\x16\x87\x90\xa4\xec\x77\x10\x93\x9d\xb0\x3d\x77\x65\x19\x12\xf3\xa5\x18\x9d\xf1\x24\x2c\xb5\x48\x73\xc3\xdf\xb3\x86\x06\xc3\x86\xaa\x36\x45\x7e\x73\xfc\xec\xe8\x3d\x3d\x39\xe3\xcf\xd8\x7e\x0f\x7b\x29\xdc\x91\x77\xf9\xb1\x63\x11\x7d\x31\xfc\x3d\x8a\x92\x4e\xb6\x04\x2e\xef\x86\xbf\xe4\xb7\x22\x3b\x5a\xd6\x35\x5d\x6a\xa1\xb4\x0a\x82\x8e\x33\x4e\xa5\xbb\xcb\x1c\x61\xc4\xa2\xd4\xd4\x8a\xb7\x3a\x4b\x7d\x3b\x99\xfe\x59\x0b\x5c\x42\x7d\x2b\x9e\x4c\x26\x41\xa0\x9e\x7e\x33\x99\xd4\xf5\x37\x93\x3f\x0b\x21\x14\x2f\x82\x80\xde\xf4\xfc\xb0\x3d\x6c\x2a\x17\x65\xc5\x8a\x10\x5c\xf7\x9e\x9b\x8b\xe7\xe4\xb1\x16\xe3\xab\xd9\x64\x7e\xce\x2a\x77\xf4\xea\x5c\x42\x30\x1c\xb4\x74\xfc\x49\x5d\x83\x71\x4a\x9b\xe7\xea\xac\x30\xc6\x3c\xf3\x31\xcd\x7f\x94\x9a\x55\x29\xc1\x31\x54\xff\x45\xea\x54\x30\x76\x5f\x39\xe1\x39\x61\x47\x97\x85\x8c\xbf\xe8\x5d\x4f\x37\x26\xc9\x8e\x33\x96\x43\xbb\x80\x99\x69\x42\x1e\x67\xc8\x5b\x56\x18\x29\x37\x6c\xe4\x92\x59\x32\x26\xc7\x64\xac\x1f\xcc\xd9\x7d\x2e\x12\x53\x63\x0c\x11\x60\x12\xb6\x07\x10\x8b\x58\xbf\xc1\xd9\x6b\xe7\x23\xfc\xf6\x20\x68\x9a\x92\x33\x9e\xcd\xf2\xf9\x9e\xae\xf8\x05\x00\x01\x77\xfb\xb7\x83\x51\x0c\x91\x2f\xee\xf7\x10\xe7\xb1\xd1\x0a\xe0\xe6\x00\x3d\xb1\x9c\x9d\xcd\x31\x18\x23\x30\x63\x5e\x93\x59\x3a\x8b\xbb\xdc\x65\xeb\x93\xe2\xf9\x11\x06\x3c\x5c\xda\xa1\x39\xcf\xc1\xb8\x4c\x86\x6d\xd9\x6e\x66\xe2\xf5\x0d\xa4\x03\x57\x3a\xaa\x82\xa0\xd0\xf3\x4f\xb7\xf0\x15\x08\x3e\x41\x40\x95\xf0\x13\xe0\xb0\xc6\x7e\x01\x40\x0f\xe4\xdc\x7b\xb3\x7e\x2d\xce\x96\x5c\x8f\x8c\xd3\x4f\x23\x7d\xab\x82\xa0\x02\x4b\x78\x18\x1d\x1a\x8b\x74\x56\xc1\x78\xe4\xf3\xba\x4e\x67\xe4\x31\x5c\x7a\x41\x7b\x53\xb0\xca\x29\x45\xe2\xc1\xb1\xb2\xd9\xd9\xdc\x60\x5a\x37\x15\x00\x19\x75\x75\xc0\x1d\x63\xf7\x80\xb0\x1c\x4f\x63\x08\xea\x1b\x81\x93\x7d\x0a\x33\x8c\xe6\x42\xe7\xe1\x4b\x37\xa0\xa5\xee\x7f\x6f\x7e\x41\xe6\x58\xbf\x3e\xd6\x3d\x02\x0b\xbe\x64\x4a\xc4\xce\x44\x51\x93\x09\xbc\x6f\x88\x83\x51\x3d\x96\x20\x09\xb5\x8e\x34\x38\xfc\x44\xf1\xf4\x59\xa4\x29\x04\x0e\x5f\xa9\xe9\xc2\xba\xc8\xb7\x7a\x4a\x8e\xc9\xb1\xca\x75\x07\xec\xf7\xfb\x76\x3d\x86\x8c\x12\xae\xfb\x3d\x52\x7b\x3d\xeb\x6e\xf8\x05\x80\x19\x4d\x69\x67\x77\xa6\x2f\xc5\xc5\xd0\xea\x7b\x13\x97\xca\x6d\xc8\x88\x37\xd2\xdb\x8e\xc5\x4b\xc6\x0f\x95\xd7\x1b\xaf\x2d\x66\x36\x61\xf1\x92\x31\xfe\x04\x89\x4c\x5d\x93\x1f\x5e\x3e\x7b\x41\x60\x2f\xd1\x2c\xcc\xf4\x56\x90\x2c\xb7\xa8\xf9\x91\xa1\x45\x98\xaa\xb6\xb6\x1d\x11\xbd\x15\x37\x20\x92\x48\xbe\x11\x37\xc8\xd1\xa4\x62\x44\x77\xe2\xc6\x6c\x16\xc8\x4d\xdd\xf2\x91\x0a\x82\xdb\xba\xd6\x3b\x8f\xe9\x52\x05\x96\xd4\x80\x5d\x01\x5b\x34\x08\x36\x42\xb9\x4b\x88\x0d\x44\xb3\xba\xbe\xd5\x32\x05\x4f\xa7\xd7\x2d\xf8\xaf\x2d\x9f\x6d\xf8\x2d\xbf\x98\xb3\xe8\xda\xc7\xff\xda\xea\x4d\xe6\x96\xef\xe6\x4d\xa5\x5a\xc2\xa2\x97\x5a\x28\x36\x84\xb8\xb5\x3d\xa5\x53\xdc\xa0\xcc\x30\x45\x70\xf7\x12\xdb\xa8\xf7\x2b\x9e\x4e\x37\x91\xae\xee\x0a\x60\x75\xbc\x97\xcc\x99\xae\x89\x76\x76\xba\xe7\x66\x27\x75\xbb\xdd\xc9\x89\xe5\xa9\xe1\x44\x6c\x88\xa3\xce\xc1\xc2\xcc\x0a\xc1\x17\x20\xf7\xfe\xe5\xe2\xfd\xbb\x03\xde\x56\xc7\x0b\xeb\xf5\xc1\x33\x4e\x40\x0d\xc3\xa0\xcc\x05\x68\x93\x86\x45\x5e\x5b\xc6\xda\xa3\x34\xa1\x4e\x5b\x76\x5f\x57\x52\x11\x4e\x76\x79\xa9\xfa\x48\xe5\x1d\xef\xaa\x76\xb8\x84\x2d\x35\xb0\xf7\x60\x48\x54\x00\xfa\xb5\x55\x97\xa0\x32\xa4\xc1\xd2\x02\x2d\x90\xe4\xc6\x6c\xc9\x12\xa4\x28\xc1\x35\x92\x71\xb3\x66\x22\x00\xb6\xe8\x1e\x17\x05\x01\x58\x20\xea\x5a\x6d\xf0\xe3\x21\x43\x30\xf3\x4e\xff\x55\xa8\x9d\x74\xaf\xb3\x1d\xc0\x81\xdd\xf6\x34\x89\x67\x4e\xd7\x78\xc6\x91\x76\x80\x71\x40\xe7\x1c\xe9\xa6\x88\x77\xcf\xd2\x01\x03\x5d\x5f\xf4\x86\x9d\x87\x22\xec\x09\x95\xc2\xb3\xa8\x9d\x4d\x34\x1f\xac\xc4\xc2\xe0\xf3\xf6\xe2\x6a\xb3\x50\xfe\x46\x27\xcc\x8b\x2c\x67\xb3\xb5\x7d\x4c\x5a\xc1\x27\x6d\xcd\x5c\x75\x4f\xa1\x5c\xb8\x49\x38\x3a\x3a\x97\x18\x8b\xd3\x08\xc2\xe0\xe0\x7b\xce\x74\x03\x7b\xc9\x4d\x54\x65\x17\x89\x10\xcd\xb7\x8d\x1a\x43\xf7\xc3\xeb\x2c\x1b\x8e\xae\x7c\xc8\xa8\xdd\xf3\x58\x70\xe5\xdb\xfe\x0a\xec\x61\x2b\x76\x67\xb0\x9e\x09\xe5\x38\x1f\xda\x38\x9c\x4f\xb3\xd0\x0c\x10\x1c\xa6\x79\x31\x14\x19\x36\x79\x40\x1b\xb2\x6d\x4c\xf9\x87\x2c\x38\xb2\x76\x9b\x75\xd5\xaa\x6d\x23\xcd\x22\xac\xbf\xca\x7a\x6f\x68\x05\xfd\x83\xf1\xa3\x92\x85\x59\xae\x28\xb9\xcc\x57\x77\xa4\x1f\xbe\xb6\xf1\xe8\x70\xb1\x0c\xed\xc9\x9c\x8d\xaa\xce\xf6\x0d\xce\xa1\x71\xa5\xdc\x95\xb2\x5a\xe5\xa5\x05\x30\x1a\x80\xbf\xe8\x64\x84\x68\x4f\xa9\x84\xe8\x92\xc3\x8f\x86\x2a\x19\x51\xd9\x0e\x3e\x66\x6f\x31\x84\xc8\x03\xa1\x08\xe0\x35\xad\x23\x8f\xdb\x4d\xe1\xbb\xb3\xeb\xad\xd9\x0b\xc1\x22\xc3\x9f\xdf\xbe\xf9\x41\xa9\x9d\x11\x8d\xcc\x7e\xad\xd8\xfd\x1e\xf5\xaf\xff\x52\xe2\x7e\x02\xfe\xf9\x67\x4f\x9e\x7c\x13\x3d\x99\xfc\x79\xcf\x7f\x50\xdd\x73\x95\xdb\x4d\x41\xd9\x91\x16\x74\x8a\x52\x8c\x46\x3f\xa8\x20\x20\x37\x89\xda\x3c\x2f\xe4\x4a\x66\x2a\x89\xd3\x92\x24\xd9\xf1\x0f\x8a\xaf\xa0\xa0\xf8\x41\x41\x36\xd3\x58\x27\x14\xd0\x9e\x35\x06\x2f\x50\x2e\xd3\x35\xd7\xb5\xae\x78\xa4\x5a\x7a\x27\xcb\x0f\xb4\x22\xf2\xfa\x96\x9e\x42\x99\xe6\x69\x26\x1a\x82\x32\x52\x34\x07\xe3\x0a\xf4\x51\x0a\x85\x24\x7d\x57\xca\x02\x8f\xc4\xc3\x5d\x5c\x96\x37\x79\xb1\xd2\x4b\xfd\x76\x53\x20\x33\xd8\x30\xa1\x7e\xa2\xe6\x32\x85\x97\x60\x99\x4e\x93\xd1\x72\xfe\x41\x50\x86\x5d\xad\xe6\x50\x1a\x6d\x8a\xe8\x97\x7b\x9f\x5a\xd7\xc9\x8c\xfc\x7c\x62\x46\x4a\xae\x4e\x20\x00\xe7\xbc\xae\xe9\x60\xba\x20\xed\xa1\x25\x8c\x27\xac\xec\x8b\xc1\x31\x07\xeb\xe7\xa3\xa1\xe9\x7c\xec\xcd\x9c\x0c\xf4\xf4\x85\x28\xc3\x3c\x4b\xf3\x78\x05\x17\xc0\x6e\xc0\x15\x08\x8e\x70\x65\xc4\x45\xb8\x06\x59\x0c\x78\x98\xe5\x26\xce\xae\x30\x20\x2e\x37\xf2\x31\xf8\x93\x94\x56\x74\x8e\x0c\xef\x82\x5e\x26\x5d\x00\xaa\xd2\xb0\x1b\xd3\x9c\x4e\xb8\xc9\xc9\xa2\x9c\xda\x74\x5e\x7a\x9c\x8d\x7e\xf0\x2f\x35\xb3\x49\xf3\xba\x1e\xcc\x86\x47\x2a\x10\x66\xa2\x74\x7c\xbf\x51\x7b\xc1\x13\x36\x60\x05\xe4\xe5\x94\xb7\x6a\x7a\x7f\x99\x64\x71\x71\x17\x35\xc9\xfb\xe8\x1e\x0e\x5f\xda\x19\xf7\x1c\xe2\x43\xf6\xf5\xed\x94\xa1\xc5\xbf\xed\xd5\x8c\x32\x5e\x74\xfa\xd6\xf6\x68\x46\xed\x97\x37\xee\xae\xae\xef\xa7\xcd\x28\x14\xd1\x60\xdf\x7b\x83\xa9\x39\xce\xd2\x93\x94\x21\x1a\xd0\xa0\x4a\x20\x0b\x82\x82\x62\x7c\x6e\xfd\x7e\x1c\x39\xd4\x04\x94\xa8\x04\x50\x2d\x25\x13\x9e\xd6\x22\xfa\x90\x65\xff\x2b\x13\x65\x05\x75\x03\xd5\xbe\xa7\x32\x87\xd7\x64\xd4\xc6\xee\x68\x1d\x30\xd1\xb6\xf9\xb7\xb7\x20\xc0\x71\xdf\xee\x4e\x21\xf2\x1b\x02\x8f\x8f\x5b\x07\x44\xee\xe8\x11\xb3\x98\x33\xc6\xe6\x80\x90\x1f\xb7\xce\x10\x0f\xa4\xcb\xe5\x76\x30\xfd\xf6\xa4\x79\xd2\x3a\x6a\x34\x6f\x3b\xfd\x7c\x49\xa7\x91\xae\xb5\xd6\x19\x19\x26\xc3\xf9\x62\xeb\x50\x10\x8e\xf7\x4c\x35\x43\x9b\xdb\xc2\x68\x92\x5f\x5e\xc7\x7a\xd7\xe5\x72\xb0\xb3\x1c\xdb\xd5\xda\x80\x1b\x84\x0a\xab\xfc\x34\x57\xba\xbb\x78\xbf\x53\x11\x06\x44\x33\x74\x4d\x67\x36\x44\x7a\xf8\x1d\xe8\x9a\x02\x47\x2b\x5f\x49\xa0\x35\x9b\x41\x9e\x62\x65\xdf\x12\x86\x26\x3c\xf7\xe6\xdc\x38\x92\x66\x44\x9f\xe3\x3d\x2f\x8b\x65\x24\x35\xc5\xde\xb3\x30\xcf\x28\xd1\xab\xe5\xd8\x88\x3b\x6d\xda\xe5\x62\xf8\x5b\x0b\x70\x2e\x83\x20\xa7\x1e\x7d\x41\x31\xec\xcf\x93\x3f\xc3\xce\x86\xb7\xfa\x4b\x0b\x50\x08\xb6\x70\x59\x94\x66\xf8\x1e\x9c\xb0\xb0\x4f\x7e\xa7\xf8\x4f\x4a\xcc\xe6\xfc\x37\x25\x4e\xa9\x60\x9f\xa7\x74\x2a\x82\xfa\x11\xab\x3f\x4f\xd1\xe2\xd0\x9b\x90\x5a\xa8\xd8\x45\x64\x69\x0e\x18\xf1\xc8\x78\x67\xcf\x1b\xfb\x61\x32\x7e\x52\x68\x79\x0c\x22\x0e\x5a\xea\x8f\xc9\x02\x15\xd2\x2d\x7e\x58\x82\xf5\x86\x1c\x9c\x18\xfa\x1d\x70\xaa\xbc\x23\xbc\xe5\x16\xd1\x09\x19\x05\x5a\x62\x15\x42\xce\x20\xa0\xbf\x59\xa3\x26\xdd\xf5\x6c\x4a\xaa\x22\x25\x7d\xfc\x02\x65\x14\xce\x70\x84\xa0\xfe\xa7\x47\x08\xcd\x3b\x8d\xa2\x9f\xe8\x5f\x74\x93\x2d\xeb\x9a\xe0\x57\x80\xf1\x77\xcb\x34\xc4\x9e\xb5\xd9\xe6\xdb\x1e\x15\x5b\xda\x49\x61\xd3\x4e\x02\xd5\x6c\x6c\x2b\x85\x97\x53\x35\x2b\xe7\x42\xff\x71\xe7\x04\xbf\xe1\x39\xc1\x38\x61\x51\xa7\x9f\xa0\x7f\xbc\xe3\x08\xdb\x5f\xf6\x04\xc1\xe4\x04\x3b\xbf\x04\x76\xf6\x46\x4d\x65\x16\x14\x9e\xf9\xcf\x45\xff\x04\x36\x6e\xcc\x3d\x93\x31\x39\xbe\x89\xcb\xe3\x2c\x57\xc7\x7a\x02\xe9\x1e\xe3\xf1\x6c\x32\xdf\xf3\x76\x6f\x08\x94\x5d\x01\x3d\x3b\x99\x73\xfd\xa7\x85\x9c\x2b\x9c\x53\xe3\x9e\x17\x03\x28\xa2\x8e\x68\xe4\x53\xf0\x1e\x6a\x20\x24\x68\xc2\x22\xa8\x2e\x07\x1b\x49\xf8\xf8\x76\x7f\x67\x9d\xae\xd4\x13\xb8\x2a\x37\x34\x61\x10\xfe\x6c\x0b\xf0\xde\x39\x8d\x41\x98\x8a\x45\xde\xc4\x2f\xb0\xb4\x05\x0c\xac\xf1\x38\xf1\x87\x4f\x00\x05\x01\x6d\x15\x94\x7e\xa7\x44\x11\x26\xdb\x1d\x0a\x51\x30\x93\x06\x32\x52\x3d\xeb\x34\xef\xcf\xbc\x60\xf0\xe4\xa9\x9e\x6c\xdf\x3e\x3d\xc5\x1f\xff\x86\xf0\x27\x42\x88\xef\x94\xc7\xff\xbb\x83\x29\x63\x6e\x01\x55\x0c\xeb\x0c\xfa\xe8\x83\xd3\xd9\x3c\xa2\x83\x2e\xcb\xc6\xd8\x41\x13\x5e\x55\xd7\x74\xe8\x2b\xa7\x94\x26\x82\x7e\xf5\x77\xb2\xee\xb9\xeb\x65\x5c\x4a\x9d\x0c\x07\xad\x85\x33\x86\x36\xa6\x44\x7d\x1a\x97\x30\x16\x29\x01\x68\x91\xa3\x2c\x08\x66\x73\x4e\x73\xf1\xd6\xc6\xf1\x67\xd3\x99\xea\xbc\x21\x9f\x9d\xcd\xd9\x3c\xa2\xb9\xb8\x42\xf0\x56\xc5\x63\x18\xd9\xd8\x85\x44\x5b\xd0\x98\x35\x74\x78\x11\x6e\x65\xa1\xf3\xce\x79\xee\x8b\x58\x8c\x35\x56\x1e\x46\x03\x00\x5c\xd0\x41\x2c\x11\x1e\x23\x42\x75\x29\xa4\xef\xc9\xde\x04\x37\x40\xb7\xa8\x42\x6c\x14\xb5\x91\x66\xb5\x34\xad\x85\x6f\xbc\x9b\x70\x7d\x0f\xb6\xb9\x6d\xbb\x93\x48\x0d\x00\xaf\x42\x50\x0b\x41\x3e\xbc\xbf\xf8\xa4\xd7\x99\xc5\x54\x99\x04\xc1\x80\x0a\x24\xa9\xeb\xae\x16\x04\x2d\x99\x8c\x76\x92\x75\xe0\x6d\x25\xbb\xcf\x9b\x65\xc8\xe3\x50\xe7\xa6\xc5\x54\x6f\x8b\xab\xe4\xfa\x5b\x07\x11\x46\xbd\x29\x08\x10\x01\x6b\x44\x7c\x07\x89\xd8\xae\xdd\x2c\x08\xda\x2a\xa5\xb8\x27\xf5\xb6\x40\xfc\xf2\xba\xf6\xf4\xdd\xc0\x10\x2b\x2e\xe7\x80\x6c\x6d\xb4\x0f\x4e\x71\xd5\x9c\x4d\xf3\x46\xab\xc6\x3b\x2a\x39\x5f\xb9\xd7\x52\xfb\xf1\xe6\x94\xaa\x1f\xa0\xaf\x0b\x49\xd8\x96\xe6\x61\x8f\x92\x6c\x40\x06\x37\x68\x7c\xab\x61\xf5\xd4\x55\x21\x77\xd4\x41\x45\xfa\x62\xa5\x55\xb8\xc0\xf6\x81\x51\x3b\xcc\xa8\xea\xef\x45\x39\x1b\x1c\x29\xde\xc3\xe5\x61\x58\x1b\x77\x78\xd1\xc4\xcc\x35\x51\xf3\x20\x66\xb7\x26\x9a\x7c\x2d\xee\xf7\x47\x44\x33\xe1\xc9\x52\x6f\x58\x69\x13\xc4\xce\x8b\x3d\x6e\x43\xb3\x13\xc6\x4b\x17\x77\x9c\x22\x9a\xab\xa9\x1a\xb4\x98\xbc\x6a\x12\x52\x08\x41\xc7\x69\x13\x5a\x5a\x57\x5f\xd7\x64\x9d\xdc\xca\x15\xdc\xe0\x09\x79\xe5\xef\xbe\x95\xca\xc1\x73\x70\x4a\x63\x41\x0b\xb1\x74\x8d\xa0\x8c\x41\x9c\xf5\x44\xd3\x0b\xb9\x56\x2c\xa2\xb1\x1f\x94\x31\x67\x75\x3d\xe1\xad\xa0\xb0\x15\x04\x85\xe5\x88\x28\x4c\x95\x70\x91\x04\xb2\x16\xb4\xac\x5e\xe4\x06\xd4\x17\x42\xb9\x07\x01\x5d\xeb\x5f\xbc\x3b\x29\xf5\xdf\x71\xdc\x64\xd1\x6f\x87\x3c\xfa\xc2\xdc\x9f\x94\xf0\xa3\x37\x4e\x52\x95\x9a\xd2\x6a\xd9\x7a\xaa\x45\xf6\x24\xbb\xb2\xef\x5d\xb3\x68\x09\xdd\xb3\xc6\x50\x44\x9e\x3a\x31\xef\x8e\x25\x48\x24\x87\x30\x3a\x1a\x7e\x19\xb4\x6b\x43\x8a\x32\x98\xba\x58\x6b\xe8\xe6\x8a\xc5\x1a\x55\xcc\x70\x85\x88\x75\xd0\x01\x13\x28\xa6\xc5\x21\xf5\xcd\x14\x88\xfe\x81\x68\x80\x3c\x13\x45\x5b\x89\xe9\xfb\xf9\xf1\x7b\x95\xef\x22\xe8\xd3\x71\x16\xee\xe2\x2b\xf9\x0b\x36\x8a\xeb\x9e\x8b\xb0\x1f\xcd\x93\x9f\xf1\xc9\x9e\x45\x50\x68\x82\x59\x26\x7b\xeb\xeb\xce\x77\x03\x41\xd6\x93\xb5\xd3\x7f\x5a\x50\x4b\xff\xeb\x78\x22\xda\x95\x69\x66\xad\x99\x8c\x38\x6f\x0b\x7f\x8d\xb0\x07\xbe\xb5\x39\xb4\x34\xf1\xe7\xdc\x9a\xe8\x75\x02\x97\x3a\x05\x1e\x7f\x00\xd5\x5f\x5d\x67\xe1\xca\x3c\x34\x1b\xd6\x39\x22\xd2\x0a\x91\x01\x4f\x50\xd7\x78\xdd\xc9\x05\x78\x06\x6e\xa9\x0e\xac\x6a\xd4\xe1\x7a\x28\x45\x5a\x6e\xc6\x78\x24\x3d\xc8\x7c\x9a\x00\x05\x70\x0d\x87\xe5\xd5\x0b\x84\xfd\x29\xdf\xb9\x10\xd8\x8c\x27\x38\x48\xdd\x4c\x6f\xe4\x5a\x35\xb9\xec\x49\x46\x33\xde\x27\x09\xfc\x75\x5d\x8c\x31\x9b\x3e\x69\x0a\x0d\x48\xf9\xcd\xf8\x9f\xe0\x1b\xba\x59\x21\x9c\x25\xfa\xb5\xed\xb9\xdf\x95\x5f\xe9\x83\xd1\xd6\x7e\xb7\x06\x43\xf7\xfc\xd7\x74\xaa\x5f\xc6\xe9\xc4\xeb\xfa\x52\xee\xdb\x28\xb2\x2e\x70\x59\x44\xbc\x99\x4c\xb8\x0b\x74\x86\xe9\x66\xee\x1f\x70\xb9\x6b\x65\xd1\xfb\xc0\x51\x0f\xfe\xb5\x78\x20\xb8\x24\x1c\xcc\xe8\x9a\x20\xec\x37\x40\xba\xe5\x42\x46\xff\xd5\x9d\x02\xb9\x90\xfe\x0a\xf5\x83\xe5\xba\x03\xf4\x69\x3e\x53\xf3\x48\xce\x8a\xf9\x51\x3e\xcd\x5d\xbc\x36\x9a\x4d\x73\x7f\xa9\x46\x09\xcf\xa6\x49\x94\xfb\x0b\x9b\x41\x31\x91\xec\x01\x6d\xb7\x47\xcb\x3a\x60\xc1\x7a\xbb\x86\x3d\xe3\xe1\x10\xb9\x10\x22\x75\x97\xdc\xca\xf4\x83\x19\x21\x3f\x7b\xd6\x0a\x97\x6b\x43\x6d\x2b\xc6\x6d\xec\xf3\x8c\xa1\xb0\xd0\x6c\x2b\x33\x35\x87\xf0\xa5\x51\xb6\x67\xde\x40\x9a\x60\xd8\x2e\x7e\x2f\xcc\xef\xc8\x04\x26\xe9\x83\xf3\x62\x21\x17\xed\x14\x58\x7a\x32\x96\x56\xdb\x12\x29\x4e\x48\x44\xf2\x4a\x41\xf2\xbe\x83\xf6\x0a\xa3\x5b\x78\xa3\xeb\x05\xf6\xef\xf6\x9b\x66\xd0\x3d\x04\x64\xc7\xd1\x27\x7a\x6f\xce\xea\x9a\xc2\xc9\x79\x52\xd7\x23\x94\x8d\x6c\x84\xb4\xc8\x06\xb6\x75\xac\x68\x77\xe2\x00\x04\x81\x9d\x38\x26\xcf\x9d\x66\x43\xc1\x50\xa4\xd9\xa4\xf1\x2b\xd8\x54\xcd\xdc\x77\xce\x23\xe5\x88\x55\x97\x6a\xcd\xc8\x12\x08\x27\x64\xfb\x2f\xe0\x6a\xec\x1c\x9c\xd2\x5c\xf4\xf2\x73\x17\x72\x4c\x01\x31\x04\xe9\x33\x4f\x53\x5d\x9e\xe7\xad\x3b\x9b\xc1\x86\xfc\xc5\x0c\xed\xbb\xe6\xe5\xcc\xfa\x77\xe8\xfe\x99\xe2\x4a\x57\x10\x92\xd7\x85\x2e\x44\x14\x86\x92\xed\xb5\xc0\x30\x4d\x22\x6b\xbb\x03\xa0\xba\x6e\x72\x90\xcb\xb4\x2a\x8e\xc1\x6d\xf6\xd8\xf8\xd2\x1e\x5b\x27\xda\xe3\x42\x96\xc9\xbf\xe4\x31\xb6\xf2\x78\x99\x26\xcb\x2f\xc7\xab\xcb\x14\x2f\xb6\x79\x55\xca\x55\x7e\x93\xe1\x55\xb5\xc3\x5f\x2d\x84\xe0\x55\x7e\x2d\x0b\x73\x55\x29\xbc\x90\x99\xb2\x69\xa9\x8c\xaf\xe5\x31\x6a\x4b\x8f\xd1\xdb\xf1\x18\xbd\x24\x8f\xbf\xc8\x3b\xa8\xf7\x8b\xbc\xdb\x15\xb2\x2c\xf5\x45\xb5\x3b\x36\x36\xe6\x5b\x99\x55\xc4\x33\xc4\xf8\x5d\x26\xd7\x3b\x6e\xee\xe1\x35\x4e\xa6\x0d\xe7\x8b\xda\x2b\x6e\x43\x86\xda\x93\xed\x01\x8f\xe9\x8d\xfe\xb4\x07\xfc\xa5\x9b\x6f\xd5\xeb\xb3\xf9\x5c\xaa\x00\x11\xa0\x5b\xdd\x65\xe2\xab\xeb\xda\x07\xe4\xb6\x79\xd2\xb8\x6f\xf3\x0c\x4e\xe5\x7a\x45\x3a\x05\xd6\x6b\x57\x82\xed\xb9\xc5\x44\xf8\x9d\x40\x0a\xc8\xff\x9b\x80\x08\x55\x76\xa0\x94\x2b\xa3\xb7\xe1\x1e\x58\x93\xf7\x7a\xf2\xf8\x31\x31\x7d\xa9\x13\x14\x07\x7b\xe7\xc7\x84\x67\xa6\x0b\x76\x45\x7e\x7b\x37\xec\xe8\xc9\xc1\x99\xb5\xaf\xfa\x02\x91\x5e\xce\xd4\xdc\xc4\x1a\xc8\x34\x4f\xec\x85\x1e\x14\x39\x32\xa8\x8d\xa0\xf7\x84\x71\x9a\x0c\xa8\x79\xa4\x15\xcf\x8c\x93\x74\x61\xbd\xd9\xba\x35\x00\xcc\x5c\x78\x55\x25\x2b\x21\xfd\x9f\xba\x5e\xc0\xef\x78\xcc\x13\xcd\x01\x6f\xf2\x74\xf5\x51\xc6\xab\xbb\x36\x86\x0a\x40\xc9\xc6\xab\xbb\xbf\xc7\x89\x1a\x8f\x23\x73\x07\xc1\x1d\xc0\x24\x00\x7c\x08\x45\xcb\xa3\xd0\x2a\x41\xfe\x72\xf1\xfe\x9d\xf0\xbc\x52\x16\xce\xd1\x51\x7c\x81\xb2\xaf\xcc\x8b\xc4\x16\x6e\x11\x74\x42\xe8\xf2\xcb\x78\x2b\xd3\xe7\x71\x29\xc5\x2f\x7c\x81\x2a\xe6\x4b\x28\x7f\xe3\x5c\xb4\xa1\xc8\xbb\x6a\x2b\x8b\x64\x39\x10\x05\x02\x4b\x35\xe7\xc8\x7e\x20\x7f\xe5\x1b\x0a\x0b\xcd\xcb\x8d\x92\xf2\x5d\xfc\x8e\x4a\x3f\x14\xb9\x64\x6c\xcf\x89\xad\xd9\x33\x29\x96\xeb\x24\x93\x41\x80\xbf\x61\xbc\x5d\xd9\x6b\x4a\xd0\x5f\x84\xf0\xd9\x7c\x20\x76\xf7\xc2\x70\xfa\x7f\x57\x42\x86\xbf\xfe\xa8\x73\xf2\xbf\xe9\xeb\x47\x4d\x84\x95\x2c\x7f\x9e\x67\xeb\x34\x59\x2a\x31\x24\x88\x86\x8f\x34\x63\x04\x82\xe1\x23\xf1\x37\x05\x41\x2a\x6c\x5d\xee\x89\xb9\xfd\xbb\x62\x7c\xb1\x07\xc5\x91\x4b\xd3\xc5\x16\x3a\x99\xf5\x60\xc9\xf5\xda\x38\xda\xc6\x49\xf6\x1c\xe9\x94\x68\xef\x48\xec\xde\x99\x60\x22\xa2\xb0\xd9\x13\x25\x2f\x01\x12\xe9\xa8\x04\x74\x92\x64\x16\x8f\x05\x39\x45\xf0\xd2\xb9\x41\xfe\x16\xb9\xce\x90\xac\xa9\x3b\x89\xaa\xec\x8c\xaf\x8e\xf0\xa9\xd0\xd2\x5f\x5d\xb7\x17\x13\x9e\x01\x29\xc0\x7f\x79\x89\x0e\xec\xcf\xf3\x2a\x5d\x81\x42\x73\x9d\x64\xab\xe3\x6d\xbe\xaa\x52\x69\x70\xe1\x0a\xf9\x5b\x95\x14\x72\x75\x7c\x79\x87\xce\xed\xd1\xd7\x14\x64\x7b\xf8\x1c\x17\x7f\x2d\x15\x65\xb8\x92\xbb\x92\x2f\x45\x19\x5a\xb5\x3b\x5f\x0b\x5d\x17\x3a\xcc\xa6\x4e\xdb\xb7\x11\x93\xf3\xcd\x53\x7b\x7f\xbe\x19\x8f\x19\x91\xb7\xbb\xbc\x50\x25\x48\xd5\xb3\xcd\x7c\xba\x9e\x6d\xe6\xa2\x8a\x88\x69\x5d\x3b\x5d\x45\xf0\x53\x50\x9d\xc4\x63\xc7\x0f\x2c\x7d\xe5\xcb\x9a\xf1\x6a\xaf\xc9\x89\xa6\x69\x7a\x9e\xad\x9a\xc9\x78\x03\x6b\x26\x08\xbc\x67\x8e\x0d\x31\x96\xf1\x41\x40\x66\xa8\xaa\xb2\x29\x73\xdd\x88\xfb\x7d\xa8\x72\xf4\x2a\x43\x8a\x61\x1e\xb2\xba\xa6\x26\xfe\xdd\x4b\xbd\x60\xbc\x4b\xc0\x69\x69\x38\x53\x3c\xe5\x6d\x27\x85\x8b\x45\x9a\xc7\x2b\xd9\xf6\x26\xbd\xdf\x1f\xc9\x03\x11\x8c\xee\xf7\x47\xd9\x94\x16\xd0\xe5\x42\x69\x32\xe6\x14\xc3\x80\xea\x00\xe9\xb3\xb9\xff\x00\xa0\x4d\xe4\x5c\x14\x7b\x4e\x07\xa1\xa7\x0a\xb3\x79\x68\xc2\x67\x98\x6a\xa1\x38\x9c\x3d\x0e\x9a\x50\x24\x00\x55\x0c\xbf\x63\x37\x77\xf7\x5c\x85\x0b\x19\x7f\x59\xe8\xad\x50\x24\xbc\xf9\x34\x71\x8f\x5d\x1d\x49\x6e\x06\x35\x52\xbc\x90\x57\x49\xa9\x8a\xbb\x28\x31\x66\xcc\xd2\xeb\x8c\x10\x0b\x70\xe5\xa7\x99\xb2\x7b\xca\xb8\xa4\xe4\xff\x91\xba\x87\x4f\xfd\x33\x0f\x3c\xc3\x2b\x4f\x8c\xb5\x5d\x41\xf8\xcc\xcd\x2e\x4e\x20\xff\xc9\x65\x7c\x29\x53\x77\x57\xa9\x24\x6d\x9e\x6d\xa5\x8a\xf5\x33\x53\xf5\x4a\x5e\x56\x57\xcd\xad\x21\x80\x36\x73\x51\xc1\xd1\x71\xf3\xdc\x6f\x49\x9a\x5c\x9e\x02\x70\x44\xac\xe4\x09\xa2\xa1\x9b\x62\x57\x69\xb2\xdd\xca\xa2\x23\x29\xb4\x91\x53\xd9\x3d\xa9\x4a\x79\xac\x5f\xb8\x54\xe4\x08\x17\x99\x3f\x0e\x8e\xb2\x24\x8e\x58\xd2\x09\x57\x5a\x32\x00\xbb\x97\xe7\x4d\x48\xfb\x8f\xf0\x94\x19\xed\xc9\x70\x9c\x11\x2b\xf5\x42\x1d\x49\xb6\x91\x45\xa2\x4a\x46\x13\x2e\xb5\xd8\x8c\xda\xe9\x61\xea\x8a\xcf\x5a\xc6\x4f\x7b\x9e\x74\xc2\x46\xb7\x4c\x64\xf4\xda\x58\xc0\xa6\xa1\xf7\xb5\xe7\x70\x4e\x4a\x27\x3c\x0b\x57\x09\xe4\x89\x8b\x3b\x46\x71\x2e\xb6\x2a\xca\xf2\x62\x0b\xf8\x05\xc3\x01\x8c\x90\x3b\x8c\x08\x58\x55\xcd\x26\x73\x5e\x08\x35\x3b\xb3\x6a\x21\xa2\xe4\x76\x97\xc6\x4a\x12\x04\xf1\x1f\x93\x88\x8c\x1b\x48\xd6\x53\xfa\x39\xac\x17\xf5\x09\x0b\x4f\xaf\x86\xf0\x1d\x65\xb8\xdc\xc4\xc5\x33\x45\xcf\x58\xdb\x5d\x68\xcf\x22\xd9\x6e\xa6\x99\x7a\x03\x8d\xb4\xf6\x53\xf8\xe1\x54\xa2\xfd\x97\xc9\xff\x16\xdc\xc7\xf4\x03\x5e\x18\x95\x79\xeb\xec\x11\xbc\xa6\x8d\x3a\x28\x9b\x53\xc5\x18\xa7\x85\x28\x90\x95\xb1\x95\xbc\x57\x1b\x60\x5f\x59\x10\xd0\x09\x2f\xed\x4a\x66\x80\xe1\xc2\x8b\x76\x43\x5d\x4b\x0e\x6a\x87\x3b\xa3\x04\x4b\x9e\x1e\x78\x22\x3a\xe9\xc8\x0b\xf8\xef\x5b\x0c\xbf\xd0\x2a\xf2\x92\xf6\x20\xc6\x22\xd1\x83\xa8\xb7\xc7\xb3\x39\xaf\x44\xc9\x53\x3d\x4b\x40\xa5\x65\xe6\xb2\x8f\x13\xc7\x97\xa2\x02\xa3\xe2\xd7\x56\xce\x3b\xd5\x72\x82\x38\x39\x1b\x09\xb1\x9c\x56\xee\x74\x62\x89\x18\x67\x47\xad\x09\x11\x07\x01\x66\x04\x4d\x6b\x65\xdb\x71\x0a\x3a\x61\x35\x53\x66\xb7\x3a\x39\x9b\xf3\x4c\xb7\x42\x33\x8c\xbb\x44\xc1\x6c\x64\x54\xb9\xca\x4f\xce\x58\x03\xce\xc6\x6c\x8b\xf5\xee\xf9\xce\x36\x95\xd1\xcc\x9c\xca\x6c\x04\xd1\xbc\x83\xde\x58\xca\x29\x79\xab\x2f\x23\xac\x3b\x8d\xcb\x32\x59\xdf\x31\x1a\x23\xd8\x71\x55\xd7\xa3\xd8\x98\x77\xe8\x3d\x55\x0b\x9f\x2f\xdb\xe8\x34\xeb\x2a\x4d\xf5\x3b\xa2\xe3\xff\x86\x9d\xfd\xbf\xf9\xf1\xb6\x2a\xd5\xf1\xa5\x3c\xd6\x4c\xf4\x06\xfc\x2d\xb7\xc7\xff\x0d\x07\x29\xba\xdf\xfe\xbb\x39\xd5\xb9\x77\x85\xcd\x41\x4b\xcc\x6d\xca\xdf\x13\xb5\xc9\x2b\xf4\x4a\x2f\xf9\x2a\x01\x03\xae\x68\xcd\xe1\xa7\xe2\x45\x9e\xab\x28\xe5\xbd\x29\x0c\xfe\xd9\x3a\x89\x8c\x37\xfb\xf6\x2c\x48\xf3\xfc\x4b\xb5\x7b\x21\xf1\x20\x52\x73\xb2\x5f\xb7\x50\x5a\x4b\xa2\x19\x3c\x10\xc8\xc1\xdc\xc0\xa5\x1d\xc7\x4a\xb3\x32\xe1\xc0\x37\x34\xeb\xfd\xb3\x5e\xe8\x7a\x80\x23\x40\x34\xd5\x1f\x32\x26\x21\x19\x77\x06\x00\xa1\x39\x58\xb7\x1c\x61\x9c\x6c\xf3\x95\x4c\xc9\xc8\xbe\x5f\x6f\xec\x63\xd1\x2b\xae\xd0\x59\x21\xeb\xac\x85\x6d\xfc\x45\x7e\x32\xac\xc4\xd0\xf2\x93\x8e\xd1\xa0\x9d\x92\x55\x29\x3f\x82\x0a\xe3\x5d\xbc\xed\x16\x26\x97\x71\x89\x8a\x40\x09\xed\x9e\xe2\x8f\x20\x24\x32\x57\xf8\xd3\xfd\x9c\x05\x61\x83\x34\xec\x93\xe9\xd1\x41\x82\xfb\x75\xdd\x7b\xe4\xf6\x95\x4a\xaf\x5c\x5b\x23\xa3\x4a\x33\x4d\xbd\x54\xe8\xbf\x95\x04\x59\x06\xd7\x56\x97\x8a\x98\xa6\xfd\x2d\x91\x37\x07\xe9\x56\xa7\x8f\x1c\x92\x70\x8b\x4a\xca\xe1\x8a\x35\x2b\x5f\xe4\x69\xda\x89\xe9\xf4\xff\x55\xf5\x50\xf0\xff\x4a\xcd\x6f\xf5\x7c\x1c\x18\xa9\xce\x94\xc4\x19\xe0\x8d\x8b\xa1\xa8\x12\xd6\x40\x6f\xf7\x36\x95\xff\x20\xd3\xdd\x03\x3d\xf2\x35\xed\x83\x87\x5f\xdd\xbe\xee\x42\x34\x46\x44\x7f\xb0\xd9\x9a\xa8\x7e\xcd\x2b\xff\x50\xdd\x5f\xb2\xfc\x26\x7b\x95\x17\xe0\x10\xdf\xdf\xc9\x12\x1e\x3f\xb8\x51\x95\xbd\xd7\xeb\x4d\xc6\xc3\xeb\x2c\xc7\xe4\x11\x31\x9b\xc7\x00\x53\xc4\x97\x02\xdd\x09\xc2\x2f\xf2\xae\xd4\x5b\x44\x13\x02\x6f\xe9\x07\x39\x4b\xc4\x72\xa6\xe6\xbc\x6a\x02\x1c\xd2\xd4\xe0\x50\x17\x71\x56\xea\x05\xf7\x49\x8b\xce\x2a\x4e\x32\x59\xbc\xaa\xd2\x34\x03\x6a\xcb\x13\x36\xf7\x51\x77\xd3\xf6\xe7\x3f\x54\x78\x10\xa7\xab\xff\xb9\x85\xf0\xb7\xcc\xc7\xd6\xec\xbd\xc1\x93\x02\xee\x0c\x69\x41\x5c\x6a\x66\x54\x93\x82\x42\x8f\xc3\x9e\xc6\x21\x7e\x3e\x3b\x72\xea\x7f\x08\x08\x3c\x2c\x10\xa0\x64\x32\x20\x05\xc0\x21\xd7\x61\xd6\x3d\x8d\xff\x75\x07\x52\xc7\xe1\x2c\xde\xfd\x00\x2f\xdf\xe1\xe0\xcd\x90\xa1\x50\xf3\xa1\xc8\x77\xb2\x50\x77\x54\x72\x72\x25\xd5\x7b\x6c\xca\xbd\xcc\xaa\xad\x2c\xe2\xcb\x14\xfc\x39\x5a\xe0\xd4\xcd\x72\x0b\x6d\x81\xfd\x9e\xf1\x83\xb5\x96\x7f\xb4\xd6\xf2\x6b\x6a\xcd\xb3\x37\xd0\x23\x5f\x55\x67\x16\x62\xf6\x07\x6b\x2c\x2a\xc8\x63\x82\x7c\x7e\x65\xbd\x7e\xa1\x07\x6b\x47\xb1\xf1\xeb\x1b\x6c\xf2\x3f\x58\xa7\x99\x72\x5f\x59\x67\x61\xa7\x28\x6a\xe0\x0f\xcd\xd1\x52\xc5\xe0\xa6\xee\x4f\x53\x93\x71\x97\xa7\x77\xeb\x24\x1d\x90\x51\x8d\x34\x5b\xe4\x37\xa5\x2c\x4e\x64\x76\x9d\x14\x79\xa6\xc5\x39\xf7\xec\x3a\x91\x37\x5e\x55\x32\xbb\x4a\x32\xe9\xbd\xee\x2b\x05\xd2\x01\x61\xb4\x14\xb9\xfd\xb2\x06\x7f\xa9\xf9\x24\x84\x11\x5e\x56\xa5\xca\xb7\x80\x2e\x59\x62\x8a\xa6\xa7\xe6\x9c\x04\x13\xb4\x70\x18\xf5\x84\xc3\xb2\xda\x39\x18\xe0\x8e\xa0\x8a\xfb\xa1\xf7\xaa\x70\x71\x13\xab\xe5\xe6\xb5\xf9\x28\x1b\x49\x02\x77\xa5\xab\xa4\x04\xe3\xcc\x13\xaf\xc0\x89\xfd\xfe\x08\xb8\x6f\xc8\xca\xef\x31\x51\x25\xb1\x92\xd1\xe8\x0c\xfc\xa5\x2e\xf3\x5c\x5d\xdc\x65\xcb\x87\x9d\xa4\x42\xc8\x27\x57\x68\xca\x40\x25\x50\xf2\xca\xed\xdc\x80\x18\xfa\xd1\x28\x3a\xc0\xae\x38\xf4\x3a\x01\x75\xe7\x5e\x82\x68\x3d\x8e\x7a\x8f\x7b\x5f\xef\x3d\xe4\x0d\x2e\x27\x88\x31\xb0\x7d\x78\x9b\x50\x61\x4e\xbe\x38\x3c\x28\xe1\x01\x27\xb6\x08\xf1\x8a\xb3\x81\x6e\x2e\xaa\xcc\xf6\xf1\xeb\x2c\x51\x88\x24\x58\x94\xa6\xbf\x65\x98\x94\xaf\x33\x25\x0b\x74\x16\x6c\x62\x5d\x54\x3b\x18\xff\x17\x49\xb9\xd3\xc3\x24\x0b\x6a\xea\x36\xdd\x26\x46\x13\x83\x23\xcb\x5b\x5d\xd5\xea\x74\xf4\x1c\x6a\x34\x1a\x9d\x5e\xc5\xfa\x16\x56\x9d\xb4\x58\x00\x8c\x12\x7e\x6e\x04\x1f\xbb\xcc\xb7\xbb\x4a\xc9\x15\xa3\x07\x4e\xdc\x51\x2a\xa1\xa6\x8f\x70\x66\xb0\x3d\x0b\x6d\x48\x23\xca\xf8\x2a\x59\x3d\x07\x5d\xc7\xc7\x3c\x87\x03\xe7\xa8\x6d\x39\x8f\xa6\x64\x9f\x72\xda\x1d\x34\x08\xc6\x1c\x17\x4a\x73\x76\x49\x76\xe5\x4f\xf7\x43\x43\x14\xfa\x05\x5c\x8f\xad\x92\x15\x58\x38\x23\x8b\x28\x46\x13\xdb\x67\xd8\xe8\xde\x32\x6a\xe7\x77\xa2\x7b\xaf\x1a\x7e\xb8\x19\x4d\x3e\x80\x90\x44\x74\xe9\x9f\x3e\xbe\x19\x70\x40\x3b\x54\x49\x6b\xb1\xb4\x2a\x04\xf5\xa2\xa9\x10\xb8\xc6\xa1\xf9\xd2\x37\xd7\x6e\x0d\x18\xb8\xa4\x2e\x56\x4d\x76\x1c\x3a\x5e\x74\xda\xe3\xcf\x65\x4e\x7c\xca\x44\x18\x4f\x7a\x8d\xef\x64\xc8\x05\x28\xc6\x34\x0b\x73\x95\x31\x7a\xbf\x07\x23\x85\x56\xec\xc3\x6a\x47\x73\xde\x1b\x7a\x2e\xc1\xb7\xb5\xd5\x63\x9e\xbe\x6e\xa0\xc3\xc2\xaa\x48\xb5\x38\x76\x9d\x94\xc9\x10\xea\x91\xce\x7b\xd4\xef\xcb\x23\x0f\x10\x78\xb1\x58\x5a\xc6\x6c\xb1\x70\x3d\xe5\xef\x10\xb6\x97\xfa\x1f\xee\x88\x44\x3e\x70\x80\x56\xd8\xb0\x0f\x61\xb9\xc9\xab\x74\xf5\x51\x66\x2b\x59\x4c\xe9\x84\xc7\x61\x01\xd7\x17\x52\xa9\x54\xaf\x33\x16\xaa\x8d\xcc\x86\x96\xdb\x9e\x45\x6a\xcf\xdb\x5a\x65\xf0\x6a\x40\xa7\x6b\xd4\x72\x98\x3b\x38\x11\x04\xcf\x08\x30\x77\x78\x76\x99\x17\x0a\x0d\x9e\xa4\x81\x0b\x4d\xc2\x05\x36\xf9\x6d\xb2\x2c\xf2\x34\xb9\x34\xee\xca\x4d\x21\x67\xb6\xfe\xbb\x39\xb1\xc9\x39\x2f\xd9\x11\xb4\xe2\xa1\x37\x7b\x07\x2c\x32\xdc\xca\xb2\x8c\xaf\x24\xa8\x02\x2b\xaf\x4b\x13\x8f\xbc\xba\xd9\x52\xe9\x81\xc3\x19\xcf\x13\x6f\x01\x80\x24\xac\x2f\x18\x6b\x1a\xb2\xe7\x37\x49\x9a\xbe\x90\xa5\x2a\xf2\xbb\xff\xe9\x46\x59\x65\x03\x5b\xe5\x7e\xcf\x8e\xf4\x56\x99\xef\x64\x86\x91\x90\xee\x0f\x13\x62\x9c\x82\xfd\x10\x88\x5e\x80\x18\xf7\x70\x76\x36\x9f\xfa\x37\xd1\xfd\xfe\x48\x85\x2a\x7f\xd9\x4c\x43\x88\x3d\x88\xfb\xa5\x62\xb0\x35\x36\x3b\x76\x6f\xb6\xf2\x4e\x61\xca\xfa\xbb\x76\xab\x8a\x52\x16\xd7\xc9\x52\x46\x27\xd6\x42\x43\x57\x61\xaf\x07\xca\x7a\x5d\x0a\xe2\x8b\xf5\x3d\xa9\xc4\xd0\x89\x9e\x74\xf4\xa8\x6f\x61\x30\xd8\x1d\x13\xbf\x3b\x26\xd8\x1d\xfa\x8d\xe6\x98\x31\xb1\xc7\x9b\x90\xd8\xda\x4d\x45\x11\x6e\xe2\xf2\xc5\xfb\xb7\xa6\x89\xb8\xd4\xb4\xbc\x2f\xa4\x7f\xd7\x78\xad\xe9\xed\xf8\x3b\x64\x0c\xa7\xa6\x3e\x73\x2b\x46\x23\xef\x61\xd4\x79\xd8\x7e\x91\x4b\xb7\x5b\x87\x69\x2a\x1a\x19\xf4\x9b\x09\x1e\xe7\x40\x9b\x71\xc6\x09\x92\xe5\x99\xf4\xbd\xe9\x64\x9b\x70\x20\x19\xf3\x52\xa0\x75\x7e\x42\x34\x90\x65\xc2\x7b\x89\x5f\xdd\x40\x3d\x43\xec\x14\xc0\xd7\xdb\x3b\xd1\x3c\x88\xda\x0f\x86\xce\x09\x5d\x1d\xae\x0c\x9a\x92\xf8\xc4\xdf\x82\x11\x1f\x64\xef\x5a\x1d\xe3\xb3\x6e\xad\x4e\xf4\xd8\x32\x3f\x3f\x7e\xaa\xcd\xed\xce\xaa\xf1\x82\xb5\xa7\x42\x8b\x33\xa3\x43\x1d\x33\xea\x64\x73\x78\x0e\xd2\x97\xfc\xfd\xe5\xd7\x0b\xc2\xde\xdf\x22\xbd\x0d\x12\xa7\x95\x68\x4f\xab\x2e\xd7\x28\xfa\x2d\xe3\xad\x09\x2e\xba\xf3\x9f\xbb\x40\x44\x78\xf4\x2e\xf7\x1c\x82\x67\x37\x9a\x81\xf2\xa0\xd4\xd5\x15\xe1\xff\xe0\x49\xe1\x90\xbc\x35\x2c\x8b\x0d\x9f\x25\x16\x55\x96\xe6\x60\x36\x38\x78\xf2\xf8\x90\x3e\xa2\x7b\xfa\xd8\x16\xf6\xcc\x53\xe4\x1d\x87\x2b\xf4\x24\xc0\x96\x68\x68\xa2\x6c\x02\xe7\xf0\x87\x8e\x2b\x7d\xf4\x50\xbe\x1d\x90\x17\xef\x70\x76\xa8\xf8\xea\x4a\xae\xac\xba\xf7\x4d\xa2\xc7\x39\x7d\x93\xe7\xa5\x64\x74\x46\x4e\x2e\xab\xe5\x17\xa9\x4e\x10\xd2\x02\x88\xfe\x9c\x0f\x27\x33\x7e\xad\xc9\xcd\x15\x44\x7f\x69\x8b\xa1\xbe\xfc\x84\xf0\x04\x5c\x76\x58\xca\x03\xd2\x69\x5c\xa9\x5c\x4b\x25\x5a\x9c\x5f\x98\x93\x64\x3d\xcb\xe0\xde\xeb\x3f\xbb\x81\x96\xff\x23\x19\xf6\x91\x25\x5a\x8f\xc4\xb2\x59\xb6\x75\x4d\xaf\x35\x89\x4b\xcc\x92\x09\x82\x91\x7d\xfa\xc2\x05\x01\x2b\xc3\x34\xb9\x2c\xe2\x22\x91\x8d\x90\xfb\x3c\x2f\xe4\x1b\x48\xbd\xa3\x04\x0b\x10\xcd\xd8\xbb\xba\x29\xb3\xd0\xac\xcc\xed\x23\xf1\x2a\xc9\x64\x59\x22\x32\x6b\x9c\x96\xe2\xac\x23\x9c\xd9\xfb\xa1\xaf\x87\x9d\xfb\x42\x2a\xc3\x69\x98\xce\x33\x6b\xd4\xeb\x3e\x31\x1a\xb5\x72\xf0\x5e\x0e\x23\x2e\x2e\x76\x85\xdc\xc5\x85\x7c\x95\x17\xdf\x37\x0f\xad\xf8\x63\x8b\x9b\xcc\x37\x71\xa2\x5e\xe5\xc5\x8b\xf7\x6f\xc1\x02\x8b\xb2\x3d\xbf\xac\x92\x74\x65\x9b\xd7\x97\x1b\xfe\xfd\x7d\xda\x91\xb1\xcb\xb8\x94\xc2\x3b\x47\x37\x5d\x82\x49\x1b\x37\x15\xf1\x4c\x1c\x51\x29\x5a\x2c\x57\x5f\xaa\x1d\xec\x59\xc0\xb5\x83\xd2\x1d\x96\xed\x20\x2a\xc7\x70\x35\x08\xd0\x88\x35\x0d\xf6\x6d\x6f\xda\x1a\x99\x90\x7a\x37\x75\xbd\x36\x57\xcc\xae\x31\x27\xc2\xeb\x0e\x7f\x21\x77\x85\x5c\xc6\x10\x90\xcd\x30\x96\xa0\x3d\x19\x7e\x76\x40\x9c\x6b\x0d\x1d\x65\x47\x46\x8e\x59\xf5\xca\x2f\x16\xc2\xc4\x54\x68\x49\x39\x9a\x11\xf2\xef\xf7\xbc\x33\x3f\xfc\xf7\x8e\xec\xfa\xc3\xdf\x30\x29\x21\x0b\xca\x31\xe5\x72\x23\x57\x55\x2a\x19\x25\x31\x14\x28\x8d\x8a\x88\xac\xf2\x2d\xe4\xb3\x16\x8e\x8f\x28\x33\x96\x7d\x50\xf0\x32\xc9\x56\x56\x8a\x6a\xb2\xb2\x3d\xb7\x37\xbd\xce\x4e\x4a\xc3\xd8\xcb\x95\x69\x8b\xd3\x39\x51\x30\xe1\x5c\xcb\xe2\xa3\x5d\xa3\x7d\x0a\xd3\x5f\xbe\xe3\xf1\x9e\xc7\xab\x6b\xdd\x4f\x7f\xa8\xdc\xc9\x09\x9f\xd8\x68\x9a\x03\x8f\xc1\x98\x20\x0e\xf3\x6c\x29\xcd\x07\x22\x83\x94\xac\xbe\x93\xcb\x7c\x0b\xef\xba\xd3\xeb\x4f\xd3\xce\xbe\x4b\x0b\x7e\xd5\x07\x04\xe0\x65\x3d\xd5\x99\x79\x00\x90\x07\xbd\x4e\x40\x80\x03\xc9\xee\xf7\x87\xca\x0d\x2a\xea\x10\xe6\xcd\x27\x65\xad\xd9\x06\x69\x1f\x8d\x89\x90\x48\xc3\x8f\x17\x7f\xfb\x10\x42\x77\xbb\xa9\xe7\xbd\x41\x48\x8b\x1e\xdc\xb4\x11\xb4\x61\x9e\x16\x0c\x94\x6a\x55\x4b\x33\xcd\x5a\xde\xd8\x38\x89\x2c\x29\xeb\x8c\x91\xfb\x50\x67\xc0\x27\x0d\x2c\x18\x55\x8c\xab\xfd\x1e\xb0\xd2\xdb\x0a\x66\xff\x73\x06\xd7\xc9\xd1\x57\x11\x79\xfb\x8d\x0d\xcb\xdc\xee\x9c\x4e\x3a\xee\x09\x30\x1d\x7e\xcd\x13\x6b\x54\xd4\xd6\x68\xc5\xba\x1b\x18\xea\xca\x61\x7a\x93\xdf\xa5\x17\xfc\x77\x96\x9e\x1b\x62\x02\x50\x19\xed\x99\xd7\xeb\x15\x18\x26\x38\x3d\x4a\xca\x4f\xb2\xd4\x7c\x10\xa3\xac\xae\x29\xd8\xc4\x18\x9b\xbd\x67\x78\x7a\x0d\xa7\x72\x25\xc3\x26\x80\x4e\xc5\xa5\x5e\xc8\xb8\x58\x6e\xec\xae\xcb\xe8\x68\xc2\x7a\x5b\x11\x95\x16\x97\x8d\xca\xfe\xce\x37\x7d\x60\x78\xa2\x21\xba\xc7\xfc\xc9\x6f\x95\xd8\xb0\xbb\x71\xd9\xd1\x09\xb2\x81\xd1\xb2\xc7\x9e\xbe\x12\xbc\xd1\xb3\x76\xe7\xd8\x60\x79\x6f\xd2\xf1\xa2\xdb\xbb\x2d\x58\xee\x7f\x5b\x31\xf1\xfb\x1d\x7d\xd6\x6d\xfb\x1f\x9e\xb1\x95\x3d\xcb\x69\x6d\xd3\x48\xe2\x82\x80\x0e\x3f\xb6\x88\x6f\x0f\xec\xa8\x65\xf2\x2f\x27\x42\x0d\xe7\x58\xe7\xc5\xcb\x96\x2b\xa3\x6f\xd4\x61\x16\x04\x65\xfb\x07\xdf\x02\x28\xac\xa0\x70\xed\x6a\x01\xdb\x01\xd5\x5a\xaa\x55\xdd\x09\x03\x6a\x37\xd4\x0b\x66\xbd\x1d\xd6\xa9\xf4\xa0\x9c\x3a\xa8\xaf\x2b\x00\x49\x4b\x01\xf8\x58\x88\x33\xa8\xcd\xc4\x14\xf9\x4d\xb3\xe8\x0b\x7f\xd1\x43\x90\xd2\xfd\x9e\x1d\x5d\xb5\xf5\x4b\xd0\x94\xbe\x7e\xa9\x4d\xd3\x1e\x98\x41\x47\x5d\xf4\x24\xd0\xbf\x37\x8a\x1f\x5f\x89\xcf\x2d\xf3\xe2\x78\x97\x8e\x9e\x49\x8b\x4d\x27\xce\x12\x15\xcb\xdc\x23\x03\x77\x40\x65\xdb\x37\x53\xec\x28\x9e\xe0\xfd\x11\xda\xe2\xd8\xf7\xb7\x73\x0c\x6b\xad\xf9\x32\xec\x28\xbf\xe1\x60\x25\xd3\x6b\x52\xb7\xa2\xfd\x61\x9e\x51\x01\xf7\x77\x1a\xab\xdb\xf5\xdf\x67\x35\x08\x11\x78\x28\xf3\x75\xf8\xac\x52\xf9\x1b\xa7\x56\x18\xcc\xba\x89\xcb\x8d\xce\xfa\x43\x5c\x6e\x7e\x2f\x6b\x52\xaa\x5c\xcb\x1b\xeb\xf0\x07\xbc\xfc\x9d\x02\xa0\x17\xe2\xeb\xf0\x5d\x9e\xc9\xc1\xac\x74\xc2\x57\xe1\xae\x48\xae\x63\x05\x67\xff\x77\xec\xf0\xa0\x80\x49\xdc\x3a\xfc\x0e\xa4\x44\x30\x47\xec\x0e\x88\xd5\x04\x1a\xe5\xb6\x9b\x13\x17\x98\xde\xe9\xe5\x6e\x6e\xb2\x70\x57\xed\xe3\x21\x2a\x81\x98\x6d\x51\x13\xff\xac\x19\x02\x3b\xb7\x99\x01\x12\x02\xad\x93\x51\x48\x5c\x3d\xa8\x90\xf0\xc4\xfc\xbe\x3a\xe2\x6b\x55\x0e\x5d\x49\xbd\x23\x8f\x4b\x4b\xfc\xec\xd6\x25\xcd\x49\xfd\xa0\xf5\x46\x32\x93\xf3\xa3\x02\x6c\xc7\xc1\xfe\x73\x36\xe7\xfa\xc2\x06\x8d\xe6\x59\x10\x28\x9a\xb1\xbd\xee\x70\x8f\xfb\x19\xa8\x2b\x3f\x02\x13\x74\xc5\xb3\xd0\x99\xe0\xf7\x5d\x45\x9e\x37\x62\x39\xf8\x78\xea\xc1\xf5\xd2\xa8\xe4\xf7\x2b\xa9\xe2\x24\x8d\x14\x5a\x21\xca\x3d\x73\x35\x86\x76\x49\x61\xde\x9c\x31\x68\x6c\x10\x40\x93\x1f\x22\xcd\x54\x69\x5a\x65\x4f\x51\xc2\x97\xef\xfe\x16\xbe\x7c\xfb\xdd\xcb\x8f\x8b\x37\xef\x9f\xbd\x58\xfc\xf0\xfe\xfd\x5f\x2f\x20\x12\x49\x02\x86\xf9\xae\x07\x93\x07\x47\xb3\x63\xff\x3d\x70\xba\x8f\x4a\xa1\xae\xcf\x68\x67\xb8\xec\xd4\xe9\x77\x69\x21\x32\x1b\x03\x16\x41\xad\x8b\xd9\x99\x1e\x9f\x27\x73\xfc\x94\x4c\xdc\x23\x31\x9a\x91\xb8\x2c\x25\xe0\x4b\x24\x25\x4c\xfe\x57\xf1\x12\xd7\x2c\x01\x3f\x05\x5c\x11\x64\xce\x97\x36\x36\x5e\x34\x23\x8e\x6f\x81\x62\x2e\x6a\x5e\xb7\xa8\x7b\x40\xe6\x5c\x93\xd3\x5e\xc9\xbf\x25\xf2\xa6\x5b\x48\xa7\x91\x39\xb7\x8b\xad\x5b\xc4\x2c\xcd\x6e\x29\x93\x4c\xe6\xfb\x56\xc7\x2f\x63\x4d\x8e\x4f\xd6\x32\x56\x55\x21\xcb\x21\xab\x9f\x83\xe6\x14\x7f\x68\xe5\xe0\x9c\xf8\xfe\xcd\xeb\xb7\x6f\x5f\x7e\x5c\x3c\x7b\xf7\xfd\x9b\x97\x8b\xef\x3e\x3e\x7b\xfe\xd7\x97\x9f\x16\xaf\xdf\xfd\xed\xfd\xf3\x67\x9f\x5e\xbf\x7f\x27\x6c\xc6\x4f\x2f\xdf\x7e\x78\xf3\xec\xd3\xcb\xc5\x77\x6f\xde\x3f\xff\xeb\xe2\xcd\xcb\x4f\x8b\x1f\x5e\xbe\xf9\xf0\xf2\xa3\x90\xa1\xad\xe4\xf9\x4f\x17\x9f\xde\xbf\x5d\x3c\x7f\xff\xf6\xc3\xfb\x77\x2f\xdf\x7d\x5a\xbc\x7d\xf6\xee\xd9\xf7\x90\x05\x2b\x79\xfb\xf2\xd3\xb3\x37\x8b\x4f\xf0\x96\x17\x8b\x0f\x1f\xdf\x7f\x78\xf9\xf1\xd3\xeb\x97\x17\x4d\x86\xf7\x2f\x7e\x7a\xf3\x72\xf1\xd3\xbb\xd7\xaf\x5e\x77\x1a\xf0\xf2\xdd\xf7\xaf\xdf\xbd\xbc\x58\xbc\x7d\xff\xd3\xbb\x4f\x8b\x0f\xcf\x3e\xfe\xbf\xe4\xbd\xfb\x5b\x1b\xb9\x96\x28\xfa\xbb\xff\x0a\xf0\x39\xe3\x53\x35\x08\xb7\x0d\x79\xb5\x13\xb5\x87\x24\xa4\x9b\x33\x04\x72\x81\xf4\x3e\xfb\xba\x3d\x9c\xc2\x96\x8d\x26\x46\xe5\xad\x92\x21\x34\xf8\x7f\xbf\x9f\x96\x1e\x25\xa9\x54\xb6\x49\xd2\x7b\xe6\xfb\xee\x2f\xe0\xaa\xd2\x5b\x4b\x4b\xeb\xbd\x0e\x3e\x96\xf5\xce\x4e\x3f\x5f\x1c\x9d\xfc\x0a\xff\x0f\xcf\x2e\xcf\x0f\xcf\x7e\x3f\x7a\x77\x88\xc3\x59\x9e\x1c\x7c\x3c\x7c\x7f\x79\x70\xf6\xeb\xe7\x8f\x87\x27\x17\x65\xf5\xa3\x8f\x9f\xce\x4e\x7f\x3f\x7c\x7f\x79\x74\x72\x7e\x71\x06\x1f\xfd\xce\x8f\x8f\xde\x9e\x1d\x9c\x1d\x1d\x9e\x5f\x1e\x9d\x9f\x1d\xfe\x7a\x74\x7e\x71\x78\x76\xf8\x1e\x93\xf6\x87\xc3\x83\x8b\xcf\x67\x30\x83\xf7\x87\x1f\x0e\x3e\x1f\x5f\x5c\xda\x57\x16\x27\xd1\xe2\x90\x01\x41\x18\x31\xe0\x53\x48\x49\xb9\xa2\x74\x94\x77\x9a\xca\x56\xdc\x17\xbd\xed\x6d\xa6\x8e\xef\xc9\xc1\xdb\xe3\xc3\xcb\xd3\x4f\x72\x4c\x07\xc7\xb6\x07\x73\xc8\x23\x7d\x3f\xac\x1a\x77\x6f\xbb\x8b\x56\x4f\xbc\x2c\x51\xb3\x74\xbd\xed\x0e\x5a\xb5\xf4\xe5\xf7\xd8\xbe\x95\x5f\xab\x1b\x2e\xbb\x5e\x07\x50\x65\xfd\x5a\xb0\x74\xba\xa8\x01\xba\xea\x1c\xeb\x0e\x41\x6f\xbb\xb3\x04\xa3\x7e\xbb\xbc\x9e\x82\x80\x23\xb5\x4d\xe6\xab\x93\xaf\x20\x77\x1c\x8d\x92\x35\xbb\xa9\x22\x21\x6e\x63\x0c\x99\x3a\x97\x6b\x40\x2f\x4f\xe8\xca\x02\xf2\xa2\x5e\x03\xdc\x65\x13\x75\x45\xca\x46\xea\x4e\x50\xd9\x46\x4d\x89\xb2\x89\x9a\x33\x5a\xb6\x10\x2f\x50\x36\x10\xc5\x00\x65\xf5\xd8\xe7\xb2\x72\x04\xb3\x94\x55\xab\x1f\x9d\x8a\x75\x38\xcb\xa9\x5e\x53\x44\x36\xb2\x16\x37\xca\x66\xd6\x15\x2a\x47\x53\x8f\x86\xcb\xe1\xd4\x96\xa9\x6e\x67\x2d\xda\xaf\xee\x6b\x5d\x51\xdf\x18\x70\x64\x6d\xce\xeb\xed\x55\x2b\xce\x66\x4e\x25\x49\x6b\x94\x8f\x97\x37\xf4\x2b\x30\x08\xae\x62\x69\xad\x81\xaa\x21\x81\x71\xd4\xc5\x5c\x52\x61\xbc\x7d\x04\x25\xc8\xd8\xda\x43\x36\xcb\x5e\x9b\x2a\x30\x8f\x8a\x37\x86\x85\x36\xd2\xb5\x19\xcc\xad\x2b\x92\x43\xcf\xd0\xba\x45\x88\xcf\xa7\xba\x26\xbe\x25\xa4\x59\xa1\xb5\x97\xb8\xf5\x6f\x6c\x7f\x94\x2d\x1b\x71\x3d\x6b\x1f\x40\x2d\x9d\xc6\x1c\x3d\xd0\xa2\x74\x06\x90\x98\x51\x65\x0a\x57\x4a\x1f\xc9\xe5\x10\xf5\x13\x1c\x41\x54\x06\x37\x7f\x5b\x81\xb8\x5b\x41\x8b\xa8\xef\x72\xb2\x77\x19\x67\xb1\xf7\x2e\x4d\x54\xf9\x28\x94\x68\xcb\x51\xe2\xe9\xd8\x60\x9b\x73\x06\x11\x28\xb8\x94\x63\x39\x9a\x7c\x2e\x28\x9b\x9e\x0b\x4e\xe7\x73\x32\xfe\xa0\xe8\xaa\x0f\xb3\x6c\x5a\x60\x08\x8e\xfd\x5e\x8e\xc2\xfa\xa2\x83\x01\x54\xf8\xca\x8e\x5d\xbe\xc3\x44\x89\x4c\xa1\x10\x7c\x94\x85\x39\x21\x7f\x12\xf3\x74\x4e\xb2\x99\x5b\xcd\xbc\xc7\xa4\x2d\x87\x04\x01\xe9\x26\x39\x26\x6d\x45\xc9\xea\x24\x3b\x6a\x0d\x40\xcb\x5d\xfe\x36\x9c\x9f\x11\x35\x96\x9b\xea\x7c\xfc\x5b\xc6\xed\x5b\x4d\x74\xd4\x9b\x29\x57\xeb\x6c\x6c\x59\x6d\xea\xea\x7a\xab\xcd\xa1\x6b\x07\xbe\xb9\x71\xf4\x13\xba\xb3\x6b\xb6\xb1\x35\xb3\xad\xb1\xce\xfa\xfc\xa9\x0d\x97\x55\x8c\xd9\x8d\x17\xc1\x41\xf2\x5c\x7a\xdf\x29\xd2\x90\x20\x7f\x00\x64\x50\x64\x40\x45\xfd\x32\x00\x64\xdf\x03\x68\xd9\x27\x0d\x76\x14\x79\x30\xe9\x55\x05\x90\xad\x0e\xb3\xd4\x0b\x86\xba\xc4\xdd\xee\x50\x72\xc0\x95\x63\x20\x5b\xad\x1c\x17\xf9\x72\xed\x31\xb3\x21\x3b\x43\x7c\x12\xe0\x85\x28\x5e\x31\xe2\x66\xcb\x11\xd5\xc8\x10\x62\x88\xaa\xda\x9b\xb2\x51\xe3\x85\x87\x3e\x2a\x88\xe3\x86\x16\x72\x32\x3a\x59\xea\x67\x26\xe8\xcc\x01\x63\x1c\x16\x38\x1a\xaf\xfa\xea\x7f\x0b\x60\xba\xe4\x11\x2a\x9c\x71\xfa\xb0\x44\xd5\xf2\xc1\xe7\xfa\xae\x6c\xc3\xab\xc6\x5a\x53\xa8\x32\xe3\x95\x3b\x68\xd7\xd4\xd9\xc0\x95\xcb\xfb\xdb\xc1\xc9\xfb\xe3\xc3\xb3\x73\xbc\xc9\x0c\x29\xbb\xcd\xbf\x78\x11\xc9\x97\x35\xe3\xb0\x97\xc8\x86\xc3\x28\xd1\x6c\xcc\xb4\x13\x79\x48\xd9\x93\x13\xe3\xed\x6d\xa2\xa8\x03\x81\x95\xa9\x5e\x64\x34\xea\x1e\x5c\x27\xf9\xda\x0c\x6a\x57\xde\x9d\xdf\x02\xd2\x4f\x81\xe6\xbf\x14\x62\x37\x02\xc7\xb5\x90\x58\xc1\x11\x55\x4a\x65\xe5\xe2\x9c\x1f\x9e\xbc\xbf\x3c\x78\x07\x84\xef\xb6\xec\x5f\x93\xf0\x7f\xbf\x7c\x7b\x70\x7e\xf8\xfe\xf2\xfd\xe1\xf9\xbb\xb3\xa3\x4f\x17\xa7\x67\xe7\xea\xbb\x66\x38\xfe\xcf\x85\xac\xf8\xe9\xec\xf4\xe2\xf4\xe2\xef\x9f\x0e\xf5\xc7\xf7\x87\x9f\xce\x0e\xdf\x49\xfa\x5b\xb1\x78\xe7\x97\x1f\x8f\xce\xcf\x8f\x4e\x7e\x0d\x3f\x1f\xbd\xaf\xfb\xf2\xf9\xe4\xe2\xe8\xd8\xff\x78\xf6\xf9\xe4\xf2\xfc\xef\x27\xef\xf4\x13\xf0\x79\x67\x7f\xbf\x3c\x3b\x3c\x3f\x3d\xfe\x5d\x92\xe7\xe7\x97\x1f\x3e\x9f\x38\x73\x38\x3e\xfd\x55\xb2\x17\x6a\x3e\xa7\xe7\x47\x9a\xdb\x04\xbe\xe8\xf2\xdd\xe9\xc9\x87\xe3\xa3\x77\x17\xba\xe3\x23\xc9\xf9\x1d\x5d\x5c\x1e\x5c\x5c\x98\x29\xda\x25\xf8\xdb\xd1\xf1\xf1\xe5\xbb\xdf\x0e\x4e\x7e\x3d\x0c\xbe\xc8\x6a\xee\x07\xcd\xb7\xa9\x7f\xea\xd5\xe9\xd9\xa7\xdf\x0e\x4e\x2e\x4f\x3f\x5f\x48\x2e\xe4\xec\xf0\xe4\xbd\xf9\x72\x70\x76\x76\xf0\xf7\xcb\x83\x8b\xcb\xc3\x83\x77\xbf\xa9\x57\x17\x07\x67\xbf\x1e\x5e\x5c\x9e\xbe\xfd\xdf\x87\x66\x64\xaa\x86\x61\x71\xe0\xd5\xdb\xa3\x93\xf7\x92\x4b\x3c\xff\xfc\xe9\xd3\xe9\x99\x2e\xf7\xf1\xe0\x93\xe9\xf0\xbd\xe4\x7e\x2f\xcf\x0f\xe5\x17\x0f\x4e\xac\xcf\x50\x1d\x11\xab\x0b\xc8\x43\xa5\x7e\xee\xaa\x00\x8e\x6b\x8c\xe8\x2a\x44\x7f\x84\xd1\x71\x6d\xd1\xc6\xd9\x74\xf7\x26\x9b\x57\xcd\xe9\xd6\x5a\xcf\x55\x43\x82\xac\xf3\x87\x2a\x6d\xe7\x34\xf6\x31\xc9\xde\x77\x8b\xc5\x1c\x92\x2b\xc6\x6d\xee\xbe\xdb\x52\x0e\xb0\xe7\x21\x8c\x4a\x85\x6a\x54\xc4\xb6\xf7\x66\x1d\xa9\x1a\x94\x7f\x8a\x5b\xa1\x5b\x6f\x1d\x7d\xf7\x4d\x7d\x14\x95\x3e\x4a\xe3\x40\xf6\x03\x8d\x03\xa1\xd5\x5b\x9c\xb7\xad\x8a\xd9\xf0\xa1\x79\xdb\xe8\x66\x3e\xf1\xfc\xeb\x3d\xf0\x7f\xe8\xe1\x1b\x2d\xf8\x3c\x3d\x26\x18\x3d\x51\xc7\x26\xe4\x2c\x63\xbd\xed\x2e\x22\xac\x58\x70\xcf\x65\xaa\xda\x53\x50\xcd\x18\x06\x56\x8d\x4c\xa2\xc5\x31\x04\x16\xfb\xab\x8d\xdf\xa0\xeb\xea\x64\xc0\x32\xa1\x34\x8b\x9b\xc4\x6c\xe0\x6a\xf5\xbd\x9e\x4d\x8f\xe3\xbf\xa5\x54\xc0\xae\xc3\x97\xbf\xd4\xca\x71\x01\x39\xeb\xb0\xda\x5d\xcc\x29\xa8\xbc\xd3\xab\x8e\x6c\xeb\x1a\xa8\x54\x80\x86\x82\x1d\x8a\xeb\xb2\x8d\x21\x8e\x57\x36\x69\xba\xbb\xe8\xa7\x8c\x48\x1f\x98\x33\x64\x9d\xf6\xab\xc6\xff\x2e\x62\x51\x58\xed\xa8\x5a\x6d\x83\x0e\x83\x76\x62\x46\x08\xca\xcb\x6a\xe6\x78\x59\x39\x8b\x06\xa1\x83\x22\xb2\xfb\xc1\xd0\xc6\x0d\x63\x2a\xfd\xbb\xce\x5e\xc0\x4a\x57\xb1\x65\xc2\x53\xa4\x74\x7f\x36\x88\x0d\xca\x4c\x0c\x10\x59\x9d\xe1\xce\x6b\xf6\x86\x1a\x7f\x77\xb6\xb3\x93\x66\x98\x0f\xe8\x80\x0d\x87\x28\x07\x03\xca\x0c\x1c\x75\x50\x86\x32\x9d\x62\x18\x65\xed\x6c\x22\x08\x4f\x1b\x79\x5b\xe4\xf3\x42\x65\x8b\x97\x58\xc8\x8a\x9e\xa7\xa5\xe8\x39\x29\xa7\x46\x50\xd3\x98\x97\x34\xd3\xc7\xc7\x91\x15\x66\x19\x28\x7f\xb0\xba\xf8\x1e\x59\xa6\x4b\xdb\xdc\x95\x27\x44\x73\xe3\x27\xc1\xf4\x1b\xf6\x04\x2a\x8f\x06\x89\x70\xc0\x51\x1e\x74\x96\xd5\x77\xda\x80\x05\xbe\x26\x2a\x8e\x98\x7c\xab\xf1\xb4\x1e\x8b\x2e\x61\xcd\x87\x4a\xc3\x0b\xe3\xd7\x39\x20\xc3\x81\x0a\x6c\x32\xc4\x62\xb9\xbc\xf5\xad\x33\x5c\xb8\xec\xf9\x4d\xab\xf8\x03\x31\x78\xaa\x29\x58\x42\xcf\x55\x08\xf0\xee\x63\x33\xda\xa8\xaa\x13\x83\x5d\xfb\x7a\xcb\x6f\xa4\x06\xd1\x58\xd0\x93\xf0\x94\xd9\x1b\x20\x79\x30\x24\x41\x6f\x0a\x30\xdf\x70\x2f\x2a\x3c\x93\x7f\x91\x70\xcc\x08\x2a\x46\x16\x88\x44\xdc\x88\x7c\xab\x14\xed\x9e\xa0\xc3\x45\x24\x4d\xab\x5e\x6d\xa2\x07\x49\xad\xcf\x88\xc8\x99\xf1\x5d\x0a\x0b\x4b\xf2\x22\x56\xae\x1c\x52\x49\x3f\x19\x7b\x13\x6a\xcf\x4b\xcc\x3b\xca\x31\x73\x50\x8d\x37\x2f\xe5\x7f\xb3\x24\x4d\x14\x35\x88\x09\xcd\x50\xc0\xff\x42\x99\x46\x3c\xbd\x76\x8d\xed\xcb\x37\x0d\x04\x74\xd6\xa8\x79\x29\xf2\xf9\x31\xb9\x25\xb3\xdf\x29\xb9\x33\x04\x44\x13\xd9\x88\x40\xbd\xdd\x7c\x21\x66\x44\x84\xf5\x41\x59\x6d\xbe\x6d\x60\x50\xe3\x54\xf5\x08\x57\x25\x18\x0e\xed\x43\x56\x54\x78\x4a\x4f\xa5\x19\xca\x55\x69\xe1\xd2\x54\x16\x93\x9e\x85\x4c\xdd\xe2\x7c\x63\xb5\xb8\xd1\x4b\xdc\xc3\xce\x52\xcc\xd7\x6d\x6d\xa0\xb8\xda\xb4\xc6\x21\xb1\x37\xe8\xc6\x1c\xd3\xdd\x49\xce\x77\x81\xee\x9f\x52\x36\x35\x47\xd0\x18\x3d\xf2\x75\x00\x6f\xd9\x09\xd5\xc6\x6e\x36\xce\xe6\x8e\x39\x95\xc3\x1f\xac\xea\x30\x68\x74\x9c\x89\x2c\x6c\xc9\x76\x04\x62\xbf\x03\xf5\xd1\x7d\x1f\x1b\x40\xf5\x5c\xd7\x8f\x75\xde\x7e\x17\xeb\x22\x6c\x42\x63\x9a\x5d\xe5\x01\xac\xeb\x8e\x4b\x73\x8d\x63\x78\x9f\x2e\x13\xe1\xda\x31\x29\x0a\xbd\x34\x61\x02\x63\x50\x64\x51\x25\xa8\x3c\xce\xdc\x27\xcf\xbc\xe9\x36\xce\x3d\xc6\x02\x5c\xac\xf7\xb1\xaa\xe8\xbc\x02\x1f\x2a\xa3\xf0\x70\x19\xc5\x75\x6c\x69\x3d\x73\x16\x71\x5b\x5a\xfc\x70\xb7\xa5\xd9\x26\x2d\x1a\xbc\xb5\x2b\xf7\x90\xce\xcc\xbe\xcb\x56\xeb\x3e\xa5\x68\x84\x79\xa0\x74\xe3\x31\x66\x87\x97\xb0\xe3\xb2\x40\x92\x84\xff\x56\x77\x26\xe5\xf0\xbc\xa0\xe3\x0f\x39\x57\x74\xa0\xe2\xc0\x8c\x6f\x47\x56\x90\x06\x79\x7c\x34\x16\xd2\xae\x27\xbe\x2d\x80\x89\x4e\xe9\x81\xab\xdc\x40\x78\x6d\x4f\x4c\x26\x37\xe2\x95\x5b\x5a\xb7\x11\xd7\x31\x44\x65\x4b\x83\xa7\xe4\x01\x82\xfe\x80\xe5\xf5\xb2\x62\x62\x1c\xfa\x2f\xf8\x1e\xf7\x75\xee\x07\xfd\xca\x9b\x5e\xd5\xe9\x01\x2b\xf5\x29\xb8\x19\xe8\x57\x5e\x66\x5e\xa3\xbc\x49\x84\x63\xff\x4d\xd2\xd4\x1b\xa4\x71\xa0\xa8\x8b\x4c\x52\x1f\x93\x44\x51\xe6\xb3\xdc\xf0\xdd\xef\xc9\x5c\xde\xe0\x6c\x44\x89\x65\x2a\x2b\x71\x4a\xec\xce\xac\x89\xfc\x11\x18\x99\xaf\x09\xe6\xf1\x9d\xec\x68\x75\x7f\x57\x85\x37\x68\x54\xf8\xb8\x4d\xe2\x86\x2c\x98\xc1\xa1\x11\xde\xca\xeb\x1a\x7c\x32\xec\x5a\xad\x3a\x22\x9a\x07\x86\x74\x60\x0a\xbf\x46\x3d\xba\xbe\xd3\xbd\x1e\xb1\x20\x36\x06\xf4\xd4\x6b\xee\x10\x15\x46\x92\x39\x21\x24\x6d\xf8\x9e\xa4\xf9\xf7\x7c\xb1\x95\x09\x89\x58\x04\x19\x6f\x89\x7c\xeb\x26\x5f\x30\x01\x31\x23\x55\x0b\x5b\xff\x0b\x42\x4a\xfe\x2f\xb4\x75\xb5\x10\x5b\x54\x6c\x51\x95\x1f\xcf\xac\x13\x19\x6f\xdd\x51\x71\xbd\x45\x45\xb1\xa5\xb0\x6c\xbb\x69\x02\x52\x84\x86\xe7\xc2\x09\xb3\x56\x84\x02\x21\x88\x53\x0a\x50\xc5\x97\xa8\x06\x60\xe3\x3c\x36\x82\xf8\x23\x45\x28\xc5\xd2\xd8\xe8\xf5\xc0\xb7\xc9\x8e\xd1\x21\xf6\x95\x96\xe2\xf9\x7a\xf3\xaa\xed\x28\x73\xcc\xfa\xed\xa5\xcb\x90\x8d\xe7\xaa\xa1\x2c\xd3\x85\x4d\xca\x22\x86\xc5\x7a\x90\x5d\x19\x06\x81\x55\xe9\x1c\xbd\xd6\x03\xdf\x40\x3c\x24\xf5\x16\x69\x9c\xa8\x46\x96\xa0\xef\xed\x36\x77\x12\xe6\x7b\x60\xf7\x9b\xe3\xfc\xa6\xd9\x6b\x4a\x98\x97\x04\x74\x2c\xac\x42\xd8\xd3\x2c\x1d\x36\x58\xe8\x77\xce\x15\x97\x5f\x1f\xb1\xe5\x09\x6b\xac\x57\x90\x45\x42\x40\x18\x9c\xa9\x68\xb4\x92\xcd\xf1\x55\x48\xb1\x60\x28\x5e\x35\x4b\x06\xaf\xad\xb7\x5c\xa6\x8d\xd1\x66\x01\x34\x20\x40\x3b\xc4\x9b\x8f\xf0\x61\xeb\x07\x18\xa7\xd3\x37\x98\x58\xb0\xa3\xd1\xfe\x1d\xa6\xae\x04\x07\xb9\xf5\x15\x2a\xda\x32\xb0\x2b\xea\xa4\xbd\xcd\x3b\x31\x90\xf5\xb4\x6e\x74\xad\x34\xf5\xcd\xeb\x47\x31\xfa\x33\xa2\x9c\xa8\x12\xa2\x8a\xf4\x5c\x63\x8a\x1d\x4a\xe3\x63\xa6\xe4\x03\x66\x6c\x01\x6a\x8a\xca\x76\x65\x29\x2c\x8c\x95\x36\xd0\x84\xc5\xfd\xcd\x55\x3e\x4b\x93\xa6\xb2\xc9\xbb\xfc\x74\x70\x76\x78\xa2\x52\x04\x3b\x33\x92\x24\x6f\xbd\x95\x98\xa2\xa6\x57\x4e\x42\xf5\xe8\x0e\xdc\x8a\xab\x20\x2f\x93\x4e\x18\x89\x37\x0c\x27\x6e\x03\x7f\xa7\xea\x92\x49\xf2\x2d\x43\xee\xe7\x93\x2d\x96\x96\x59\x63\xe5\xb5\x23\x7b\x40\xeb\x5a\xce\x11\x55\x28\x2d\xc3\x10\x61\x47\xf5\x91\x3b\x01\x25\xf2\x76\x21\xb2\xd1\x17\x9c\xa9\xff\x10\x33\xb6\x0c\x28\x9c\xb9\x4f\x28\x6f\x4f\xe8\x4c\x85\x9d\xce\xec\x4f\x94\xb7\x67\x94\x91\x13\xc8\x6f\x81\x33\xe7\x01\xe5\x26\x9c\x0f\xce\xcc\x2f\x94\xab\xe8\xb9\x5a\xa2\x98\xb7\x99\xa9\xc7\x4c\x9d\x51\x3e\x96\xdf\xe5\x3f\x94\xc7\x83\xa9\x33\x44\x52\xc4\x96\x49\x74\xe9\x45\xa2\x63\x88\x45\x88\x07\x2b\x96\xb2\xa1\x38\x02\x91\x9f\x13\xa4\x43\x9e\xf6\x32\x62\x87\x43\xfb\x60\x81\xc4\x32\x81\xf5\x4c\x5d\x23\x3c\xe6\x81\x17\x85\xf2\x36\x23\x6a\x3d\xa0\xd5\x5b\x95\x55\xce\xcc\x64\x06\xcc\xce\x91\x6d\x1a\x93\x76\xb1\xb8\x92\x3b\x74\x45\x78\xe1\x58\x7c\x97\x25\x3c\x1e\xad\x4c\x08\x66\xca\x1a\x51\x30\x32\xb5\x1b\x91\x74\x83\x6f\xf0\x7e\xd4\xc3\x44\xf4\x93\x1c\x3f\x2c\x51\x86\x05\x2a\x30\x4f\x7b\x49\x8e\x05\x38\x77\x64\x98\xa3\x02\xd3\x14\xa9\xbc\x0c\x7e\xd6\xc2\x4c\x81\x61\x61\x82\x02\x41\x4a\xc4\x8a\x2e\x23\x2f\xc5\x88\x8b\x7e\xd5\xd8\x4e\x19\x36\xe9\x31\x0b\x7e\xff\x40\xb1\x3e\x42\xdc\xf8\x00\xe7\xe9\x03\x6b\x93\xaf\x23\xa2\x80\x39\x47\x14\xb3\xe5\x84\xb2\x6c\x36\xbb\x7f\x10\x89\x05\x07\xba\x4c\x32\xb4\x40\x39\x2a\xd2\x9e\x1d\x9b\x44\x3c\x97\xe5\x3a\x42\x4e\x51\x3c\x43\xce\x82\x47\xbc\x48\xe4\x69\xb7\xb1\xd7\xdb\x10\x7b\xdd\x2e\xaf\x96\xd6\x53\xdc\x79\x4d\xdf\xe4\x46\xdc\x4e\x77\x76\xd2\xe6\xbf\x36\x31\xc6\x49\x86\xf3\x01\x1d\xa6\xfd\x42\x5f\xef\x83\xff\xf8\xe3\x8f\xf6\xf0\x5f\x9b\x69\x4f\xbf\xc9\xcc\x82\x15\x3a\x34\xfa\x1f\x7f\x48\xf2\x70\xb1\x83\x9b\xc9\x1f\x7f\xb4\xdb\xff\x9a\xf6\x4d\x82\x83\x87\xb9\xa4\x43\x39\x83\x2c\x11\x53\xf2\xb5\xe7\x44\xc5\x6d\xfe\x47\x73\x67\xa1\x22\xe3\xaa\xcc\x1c\x3d\x61\x75\x53\x4c\xf5\x34\x4b\x11\x97\x1b\x3b\x93\xab\xb0\x60\xb1\x29\xdb\x20\xbd\xb8\xe3\x84\xcd\x65\x6e\xd8\x5c\x48\x25\x85\x31\x81\xcc\xb4\x22\x6d\x30\x58\x99\x11\x49\x28\xea\xaa\x0e\x94\xc1\x46\x41\x3c\x2b\x0e\xd3\x06\xee\xa8\x32\x1a\xcf\xfa\xa0\x3e\x18\xc2\xc7\x86\x9b\x10\x3c\xa1\xd1\x08\x43\xc6\x45\x4a\x3b\x36\xcd\x09\x9f\xe4\xfc\x46\xa2\x55\x00\xd5\x24\xc7\xb4\xcd\xf2\xbb\xc7\x47\xda\xbe\xc9\xff\x3c\x51\xbf\xee\xc8\xd5\x17\x2a\xf4\xc3\x4d\xa1\x7f\xe4\x27\xf9\x5d\xda\xcf\x21\x42\x41\x42\xd3\xaa\x06\x6e\x47\xae\xf3\xfb\x4c\x10\x57\x15\xb2\x48\xd2\x87\x52\x93\x21\xa1\x1d\xd2\xba\xd1\x49\x12\x3b\x1d\x0b\x8d\xb0\xf9\x40\xb9\x22\x65\x8f\x8f\x49\x16\x5d\xf8\xc1\x10\xe5\xae\x26\x27\xb2\x05\x49\x8e\xe5\x2e\xa4\x6d\x80\x02\x15\xbf\x98\xa4\xad\x16\x55\xfb\x9c\xb7\x73\x1d\x01\xd8\x98\x0f\x0e\xc8\x10\x53\x44\x97\x92\x69\x86\xc3\x9b\x45\x87\x37\xc3\x34\xc9\x53\x34\xd2\x0e\x5e\xe7\x17\x67\x9f\xdf\x5d\x7c\x3e\x53\xe6\xe7\x1f\x8e\x8e\x0f\xd1\xc4\x8c\x6c\xd4\x6a\x25\x13\x4c\x76\x9a\xbd\xad\xe6\xce\x4c\x77\x88\x24\x3e\xcd\x67\x04\xf2\xde\x26\x13\x1b\xc7\xbf\xcc\x73\x63\xfb\x45\x73\x73\x86\xac\x9b\xdd\x0d\x2e\x12\x15\xac\x79\x8e\x3b\xaf\xe7\x6f\x4c\xd9\xd7\xf3\x9d\x9d\x74\x8c\xb3\xc1\x7c\x88\xae\x07\xf3\x21\x1e\x6b\x7d\x55\x42\xd0\x0d\x9a\x55\xdd\x5d\x0d\xa3\xa8\xdb\xb5\x26\x40\xdc\x76\xa0\xd6\x34\x73\xd7\xb4\x8a\x08\x13\x86\x33\x58\x65\x50\x8a\xb5\x5a\x4c\xfd\x80\x0c\x8c\x33\x74\x2d\x3f\xc9\x65\x70\xe7\x7c\xc8\xc6\x90\xfd\x35\x86\xd4\xb3\x9a\xe4\xdd\x5b\x2c\x01\xb4\x14\xa9\xe1\x5d\x3d\x37\xd9\x7c\x9d\xad\x74\x9d\x15\x89\xac\x2a\x69\x3c\xc8\x10\x48\xc6\xbb\x90\xb2\x32\xfc\x18\xd4\x89\x19\x49\xc6\x65\x83\x11\xfa\xc9\xaa\x22\xf3\xf6\xc7\x83\x4f\xad\x96\x0b\xea\x41\x8c\x38\x25\x1b\xf8\x42\xee\x0b\x2d\x05\x32\xea\x19\xf5\xe1\x36\x9b\x2d\x48\x81\x63\xea\x33\x25\x97\xa1\x7f\x12\xdc\x59\x06\xe9\x56\x22\xc6\x77\xb2\x71\xe5\x98\xef\x86\xec\x9a\x12\x11\x06\x5a\x2c\xd5\x8d\x92\x57\xf3\xa4\x46\x6a\x30\x03\x5f\x9e\x47\xd2\xa1\xdf\xa6\x87\xf8\x1c\x57\xc4\x72\xa6\x88\x62\xb7\x41\x45\x4c\x7a\x4d\xa2\x0c\xef\xaa\x0c\xc0\x9d\x1e\x29\x7d\xd1\x41\x6d\x8b\xf2\x14\xd1\x41\x3e\xc4\xc2\x59\x02\x0e\xff\x50\x75\x86\x2a\xc6\x4d\x65\x92\xb8\x3a\xc9\xed\xae\x27\x61\x84\x81\x72\x7f\xa0\xb4\x32\x50\xe3\x65\xb6\x2d\x6c\x34\x1d\x04\xa1\xd4\xd5\xd3\x16\x1f\xd0\xa1\x33\x4c\xa1\x86\x09\x16\x19\xee\x28\xe3\x69\x94\xb6\xca\x91\xc8\x12\x60\x52\xe0\xd6\xd2\x0c\xf1\xea\x1d\x74\xa4\x94\x2e\x2a\xd0\x00\xba\x17\xcb\xd8\x97\x70\x4f\x8e\x84\x1c\x76\xc0\x65\xb9\x15\x5d\x82\xc0\x36\x48\xf2\xda\x0c\x32\x2f\xf7\xe2\xa5\x13\xbf\x18\x72\xa6\x66\xf8\x7a\x96\x2e\xfd\xf9\x41\x9c\x83\x6a\x6e\x20\xa8\xa4\x63\x20\x3c\xed\x98\xf8\xad\xe7\xf3\xfb\xea\x41\x49\x3a\x88\xc2\xa7\x8f\xd9\x5c\x33\x31\xf2\xe8\xc0\xd2\x2f\x55\x74\x00\x43\x1a\x57\xf1\x53\x05\xc9\xd4\xeb\x33\x9e\x82\xb7\x7e\x14\x6a\x22\xed\xcb\xcb\x53\x35\xbc\x73\x22\x2e\x2f\x0d\x10\xb8\x28\xab\x24\x99\x73\xd7\xee\x0f\xa4\x12\x41\xed\x35\x48\x4d\xef\xd0\x37\xe3\xa6\xf8\xee\xcf\x25\x65\xc5\x46\xe4\x9c\x88\xfa\xed\x9e\xd1\x42\x48\x42\xa2\x76\xef\xb3\x71\xdc\x9b\x5d\x40\xd2\x11\xee\xa1\x22\x8d\xac\x9c\x8e\x51\x8e\x6d\x37\xd6\xcd\x74\x1b\x63\xaa\xb2\x30\xc9\x7f\x65\x18\x4a\xd9\x7b\xae\x08\x13\x92\xa6\x9b\x60\xa8\xd2\x7e\x86\x46\x07\x94\x57\x07\x94\x45\x06\x84\x31\x90\xde\x25\x2e\x92\x4f\x48\xde\xea\x36\xd9\x2d\x49\xd3\x5f\x76\xbb\xad\x56\x66\x68\x58\x86\xba\xee\x89\x31\x14\x42\x15\x61\xd1\xe2\xf0\x66\x2e\x22\xe7\x67\xcb\x43\xad\xab\xb1\xdc\x3a\x44\x1c\xce\xdc\x73\xe9\x0d\x96\x60\x20\x86\xdf\x8c\x1c\x6d\x22\x75\xb5\x80\x74\x92\xc4\xd0\x62\x5a\x52\x4e\xdc\xa5\x9c\x48\x90\x1d\x54\xb9\xd8\x4b\xea\x08\x92\xd6\x95\xd6\x48\xdc\xb5\x46\x22\x09\x1f\xb0\x61\x88\xf1\x44\xae\x92\x7f\xd6\x18\xc1\xc9\xe1\xe9\xcc\x18\xe9\x6a\x64\xa6\x44\xdf\x8c\xdc\x25\x1a\x0e\x1d\x56\xdf\x89\xbb\xe9\x9e\x26\x8b\xf9\x4e\xe4\x41\x4a\xc2\x05\x96\x98\x0f\xce\x15\x7c\xd0\x03\x55\x81\x87\xe0\x66\x33\x6b\x6a\x82\x6c\x06\x21\x9c\x1d\x21\xd2\x13\x13\xd2\x39\x12\xa4\xd5\x82\x93\x0c\xb0\x73\x88\xa4\x50\x5d\xb0\xcf\x00\xbb\x6e\xe8\x28\xb3\x46\x98\x61\xd6\x0f\x13\x73\x89\xb8\x48\xb6\x72\xff\xbe\x4e\x84\xa4\x10\x1f\x1f\x85\x8b\x6c\x53\xc0\xb6\xb6\xa9\x58\x8a\x9a\x08\xea\xab\x98\xcd\x49\x34\x44\x06\x6c\xd8\x70\xfd\x2f\xcc\xa8\x78\x94\x46\x23\xe6\x76\xcd\xe7\x72\x6f\x29\x66\x12\xed\xab\xdb\xd5\xb1\x7f\x52\xf4\xaa\xbc\xfa\xcd\xcd\x4b\x91\x22\x6d\x30\xd1\x84\x18\x48\x5d\x6d\x67\xc8\x9d\x4e\x65\x17\xee\xa8\xb8\xde\xb5\x89\x33\x36\xbe\x33\xab\x8c\xc1\x7f\x15\x4d\xef\xc3\xb7\x4d\xc4\xf9\x0d\x22\xd2\x30\x2f\xc8\xef\x72\x79\x31\xf3\x1e\x11\x5f\x75\x0e\x2a\xd7\xac\x23\x7a\xee\x2b\x19\x2b\x51\x69\x5c\xcb\xe4\x23\x88\xd5\xf1\x04\xd6\x14\xd1\x45\x43\x92\x16\x15\x69\x3f\x60\x24\xbc\x1c\x8f\x3d\x93\xf0\xd4\x1d\x38\xd8\x8a\x68\x6d\x32\xd8\x95\x42\xde\x33\xb6\x16\x8d\x85\x08\xac\xb1\x9a\x54\x4b\x1e\xdc\x4e\x7b\x95\x61\x2c\x53\xd9\xeb\x32\xb1\xf3\x5f\x41\xd5\x29\xc6\xfe\x27\x93\x20\x22\x8a\x26\x74\x19\xe5\x95\xac\xca\xd9\x1f\x97\x37\xd9\x88\xe7\x6b\x0a\x73\x32\x5e\x8c\xc8\x65\x58\x67\x8d\xa3\x72\xad\xf9\x3d\x91\x37\xf3\xc6\x46\xf7\x50\x7a\xa5\x39\x3f\xcb\xc5\xe1\x93\x9a\x34\x15\xd6\xb4\xca\xc8\x13\x5a\x64\x64\xdd\x18\x9f\x32\xbc\x95\x6d\x5d\xe5\xf9\x6c\xe3\xc6\x64\xe1\x95\xad\xdd\x64\x62\x74\xbd\x71\x73\x50\x7a\x65\x7b\xe4\x1f\x8b\x6c\xf3\xe1\x41\xe9\x95\xed\x4d\x9f\xe0\x03\xb2\x7a\xdd\xa6\x62\xf3\x0d\x9d\x8a\xd5\xfb\xb9\x71\x06\x25\xd1\x9e\xad\x1e\xd5\xec\x09\xa3\x9a\xad\x19\x55\xce\xc8\xdf\xb2\xcd\xcf\x81\x2a\xbe\xc6\xa3\x5b\x25\x90\x79\x82\xbb\xb8\xaa\xb0\x26\x09\x95\x76\xee\x63\xd3\x83\x19\xcd\x36\x4d\x9d\x25\xda\x61\xc5\x95\xbd\x64\x6c\xd3\xd4\x59\xa2\x9d\xb1\xd5\x69\xb3\xf2\xcd\x1d\xe6\xf3\x35\xa9\xcd\x16\x37\x1b\x3b\xc3\x17\x8b\x9b\xd5\x67\x17\xa2\xfd\x6d\xd6\xd6\x0d\x65\x6b\xf0\xc0\xd7\xcd\xdb\xca\xbe\xae\x69\x6b\xfe\x84\xb6\xe6\xab\xd7\x0b\x1c\xd6\x36\x5d\xb0\x9c\xaf\x75\xfd\x7a\x4f\x27\x93\xcd\x1b\x54\xe5\xd7\xcd\xf6\xed\xa6\x07\x04\xe6\xfb\x76\xf5\xe9\x98\xd0\x99\x78\x42\xc4\x04\x55\x7c\x83\x16\x9f\x30\x48\x53\x61\x65\xab\x0b\x46\xff\xb1\x71\x8b\xb2\xf0\xda\xd6\x9e\x30\x42\x55\x7c\x5d\x8b\xf9\xe6\xe7\x03\x4a\xaf\x0e\x37\xc1\x04\xe1\x05\x19\x6d\x0e\x8e\xb6\xc6\xca\x76\x47\xf9\x6c\xf6\x94\x56\x75\xf9\x30\x25\xdf\x46\x64\x5e\x7d\x10\x9a\x15\x11\xfd\x2a\xa4\x9d\x65\x26\x20\xed\x7e\xd5\x41\x28\x7d\x90\xbc\x5e\xd5\x4c\x12\x71\xac\xd8\x72\x10\x5b\x75\x5e\xd3\x37\x04\x74\xb1\x7c\x40\x87\x8e\x48\x97\x0e\x95\xfd\xad\xe2\x75\x5c\x46\xd0\xb0\x2e\xf0\x7e\x30\x2c\x07\x92\x49\x36\xc2\x8a\xb1\x96\xb2\x7b\x8e\x3b\xaf\x79\xa9\x98\xe3\x90\x52\x94\x0d\xf8\x50\x19\x70\x90\xaf\xf3\x8c\x99\x50\x40\x94\x40\xb6\xf8\xac\xb4\xd0\x58\x26\x1d\xc7\x60\x03\x24\x80\x60\x79\xbe\x70\xe3\x07\x85\x9c\x80\x1c\x30\xce\x6d\x4c\x8d\x86\x5a\x85\xce\x6b\xf2\x86\xbe\x26\xb2\xff\x49\xa2\xb9\xae\x32\x65\x55\x0e\xce\x4e\xdb\x2c\xe1\xd6\xd6\xc4\x61\x20\xfc\x92\x74\x98\x2e\xd1\xc3\x58\x9b\x13\x8a\x7f\x27\xf7\x45\x2f\x5f\x82\x42\x2b\x97\xcc\x71\xc6\x9c\xa0\x98\xc4\x17\x80\x11\x4f\xac\x51\x66\x94\x23\x3b\x4d\x3d\xe0\x66\xd5\x1e\x40\x71\x70\x4a\x96\x06\xd9\x8d\xdd\xf1\x80\x85\xaf\xe4\xd9\x0d\x3d\xfd\x9d\x9d\x6d\x6f\xda\x1b\x8b\x71\x8f\x61\x4f\xb5\x93\x39\xc9\x19\x59\x39\x97\x6f\x6a\x7c\xbb\xd2\xa0\x6a\x4f\xd2\xdf\xdf\xd6\x60\x5d\x8b\x40\x82\x07\x87\x62\x7d\xa3\x0e\xc7\xef\x36\x59\x9a\x20\x80\x96\x9a\xeb\x3e\x80\x2c\x7f\x72\x1f\x51\xa8\x25\x29\xc6\x98\xa9\x66\xa7\xe2\x47\xb5\xf9\x8b\x6d\x91\xfc\xb0\x26\xcd\x28\x67\x3f\x6c\x94\x6f\x6c\x8b\x3f\x6c\x94\x6f\xcc\x28\x15\xf1\x5e\x07\x5a\x99\xa4\x8e\xd3\x84\xa4\xba\x9c\x92\xc7\x1a\xe2\x7c\x7d\xad\x32\x71\xe4\xd2\x09\x2c\x64\xc8\xee\xcd\x26\xf3\xe0\x5d\x60\xac\x76\x4a\x60\x6d\xef\x14\x44\xdc\x2b\x5a\x94\x45\x11\x4f\x91\xa4\x74\xe4\x98\x24\xae\xe3\x49\x07\xc5\xe4\x48\xca\x1b\x91\xd7\x7c\xdf\x26\x1b\xdc\x9c\x35\x32\x8f\xf5\xba\xfd\xcd\x82\xba\x55\x22\x97\xd9\x9b\x8c\x96\x36\x63\xce\xe5\xc3\xd6\x5e\x3e\x95\x5c\x88\xce\xe1\x5e\xcc\x66\x18\x63\xfa\xf8\xd8\x54\x53\x2d\xcd\x74\x68\x9f\xf7\x68\x5b\x4d\x36\x91\xdd\x6a\xff\x87\xe0\x92\x19\x48\xc4\x3d\x18\x36\x87\xc8\x00\x46\x6f\xbb\xe3\x7a\x0a\xe7\x8e\x39\x96\x91\x1d\xff\xf4\x6f\x24\x1b\x5d\xff\x64\xec\x5f\xfa\x14\x7b\x19\xf6\xe1\x6b\xfb\x5f\xff\xe7\x4f\xa8\xd9\x4c\x7b\x09\xc5\x04\x91\x1d\x0c\xdd\x28\xc3\x14\xe5\x40\xbd\x7e\xe6\x24\x9c\x39\xf5\x72\xa1\xd3\x02\x68\x0e\x09\xd6\x7d\x78\x71\x90\x26\xae\x30\x90\xa4\x69\xcf\xbc\x97\x33\xf7\x66\x58\x5a\x6c\xce\x2d\xc5\x96\xa2\x7c\xe9\x12\x1e\x48\x94\x06\x7e\x12\x3d\xcf\xa3\x11\x9a\xd5\x02\x2e\x3d\x92\x62\xf5\xdc\x9c\x39\x54\x87\x5c\xa5\x03\xea\xb6\xa6\xf0\x9c\xb8\x73\x17\xcb\xb8\xb1\xfd\xe5\xb8\x85\xde\x7e\xa7\xf6\x62\xb3\xda\x8a\x61\x88\x35\x30\xb3\xc4\x91\x40\xb4\x51\x43\x17\x8a\x38\x5d\x28\x2a\x74\xa1\x31\x66\x4c\x04\xaa\x2a\x1d\xd4\xe6\x63\xbb\x99\xda\x05\xff\x9c\x88\x52\xa3\x14\x0b\xa2\xad\xc4\xe7\x0e\x10\x21\x92\xbe\xf6\x61\x27\x4b\x5b\xad\x2c\x5a\x39\xd7\xa6\x0f\x8f\x8f\x49\xae\x13\x1f\x21\x6a\xf5\xa9\x80\x69\xe8\x32\x5d\x12\xc5\x60\x94\xe4\x59\xb1\xb8\x89\xc9\xc0\xa9\xb7\xc2\xce\xd2\x93\x1d\xb1\x44\x1d\x25\x3f\xd0\x74\xc0\xd7\x27\x35\xf0\x31\x13\xd7\xb2\x92\x4a\x0e\x89\x76\xbb\x3f\x75\x14\xd7\xaf\x5a\xa3\xec\x1b\x5a\xa3\x4c\xb7\xa6\x1a\x03\x7f\x02\x18\xda\x1c\x17\xea\xff\xdb\xfb\x78\x44\xce\x02\x68\x41\x85\x03\x9a\x3b\x22\x02\x55\xe5\x7e\x40\x17\xca\x08\x0b\xc0\x0c\x2f\xec\xcf\xa0\xf9\x8a\x8d\xaa\xb5\xde\x8e\x1a\x92\xac\xed\x34\xe2\xa1\xe6\x97\xc0\x18\xf3\x25\x5a\x04\x93\xa1\xa9\x32\xe1\xa4\xff\x00\xe3\x55\xc5\xab\xd6\x47\x26\xfd\x1e\xe4\xee\x83\x29\xd5\x28\x4e\xf5\x28\x59\x1a\xe1\x23\xb7\xcd\xd0\x3a\x18\x33\x6b\xd6\xb5\xa2\xee\xf8\xa7\x9d\xe3\x2a\x2e\xad\x2c\xc5\x8a\x75\xa0\xbd\xc1\x70\x29\x51\x00\x6d\xcf\xf3\x79\x92\x1a\x14\x55\xe9\x0e\x74\x6a\xb9\x63\x77\x48\x5d\xed\xf9\x83\xd2\x8f\x6f\x77\x11\xc7\x74\x20\x86\x28\xc7\x9d\xd7\x79\xa9\x2b\xcf\x35\x5b\x37\xc8\xc1\xea\x36\x7d\x60\x78\xbb\xd3\xb8\xe2\x24\xfb\xb2\xa4\x93\x04\xc2\x7a\x33\x6b\x38\xb0\x34\x16\x02\x4b\x57\x9c\xe0\xcd\xe1\x20\x4d\x72\x0d\xed\x5a\xf8\xf4\x3d\x80\xa3\xb5\x5c\x53\xe5\xe8\x47\xcb\x27\x11\x5f\x38\xa6\x01\xc8\x5d\x49\x16\x5b\x3a\x55\x79\x57\x4e\x8f\x3a\xf6\x1a\xcb\x12\xdc\xd8\x26\x90\x87\x44\x2d\x04\x6a\x31\xc7\x3f\x0f\xfe\x42\x6a\xc2\x95\x0d\x68\xb5\xa1\x7b\xbb\x58\x7d\x76\xae\xf4\xd9\x60\x3f\x72\x7a\xc7\xec\x56\xe4\x69\xab\x95\x28\x3c\x24\x41\x63\x90\x0f\xfb\xfa\x62\x00\x7d\x78\xcf\xdc\x12\x83\x7c\x58\x6a\x56\xe9\xb2\x14\x08\x29\x20\xc8\x79\x3c\xa8\x71\xd4\x35\x20\x0a\x2a\xe1\xad\x5d\xcd\xc0\x43\x8c\xd5\x06\x74\xe7\x6c\x74\x49\x8b\x6f\x69\x02\x84\x01\x19\x0e\xa9\x71\xa0\x93\x48\x60\x1d\xba\x96\x70\xcb\xf5\xa5\x8b\x74\xe2\xd3\x45\x88\xdf\x44\x8a\x66\x98\xb6\x2f\x95\xcb\xd7\xe9\x55\x41\xf8\x2d\xe1\x1f\xb3\xf9\xe3\x63\x12\x7b\x0d\x3d\xfe\x8d\x64\x5f\x3e\x66\xf3\x14\x8d\xf0\x4c\x01\x39\xf8\x72\x5b\x52\x64\x62\x8c\xb4\x58\x2e\xe8\xe4\xde\x0c\xeb\xdd\x75\xc6\xa6\x44\x9e\x3a\xeb\xa6\x3a\x6a\xb5\x46\xab\xf2\x6d\xb0\x36\x27\x37\x79\x39\x02\xed\xf9\x62\x2e\x77\xe3\x2d\x79\x8d\x9b\xff\x26\x3b\x84\xbc\xdb\x68\x1e\xd5\x79\x47\x91\x9c\x28\x1d\x1a\x7a\xcd\x14\x31\x2c\x06\x9d\x21\xe2\x58\x0c\xba\x06\x76\x07\x0c\x71\xcc\x1f\x1f\x9b\x59\x31\x6a\x0e\xe5\x6e\x2c\xd2\x86\x04\xb4\xb9\x35\x93\xcc\xf0\x75\xbf\x39\x18\x36\x7b\xe6\xb0\xc1\x22\x67\xe3\xb1\x19\xb6\x5e\xec\x0c\x4d\xe4\x9a\x0d\x06\xe6\x69\x38\x4c\x7b\x23\x3c\xf7\x87\x56\x1a\xca\xca\xb1\x50\xd9\xb6\xb9\xf1\x78\xcf\xbd\xff\x1c\xf1\x55\xd0\x5b\x81\xa8\xec\x6a\x00\xff\x25\x76\x9e\x29\x55\xbb\xec\x76\xa4\x96\x6c\x8c\xaf\xb5\xdb\xf7\x46\x17\xde\x38\xed\xfb\x73\xd6\xa7\x73\x6c\x00\x3a\x84\x4f\x1f\xd3\xd6\xc3\xbd\xa1\xe8\x4d\xd8\x3b\x38\xed\x0a\xf7\x8b\x00\xf7\x67\x58\x0c\xf2\x21\x2a\x70\x26\x17\x66\x81\xb3\x41\x77\x88\x24\x14\x25\x33\x85\x2d\x24\x13\x99\x71\x25\x74\xb2\xb4\x83\x0d\x3c\xa0\x32\xad\x17\x69\x6a\xe4\x7f\xcd\x31\x29\x46\x12\x64\x16\xfd\xdd\xee\xbf\xce\x7a\x33\x73\x4a\x3b\xcb\x34\x5d\x26\x63\x34\x5f\x89\x59\xe3\x18\xd5\xe2\x97\xd8\xe1\xd1\x70\x4b\x97\x9a\x9a\x33\xc4\xea\xcc\x63\x93\x6d\xee\x91\x4d\xf2\x93\xa8\xfc\xc4\x90\x2c\xa1\xee\xeb\x0d\xe1\xd3\xb5\xe1\xce\xeb\xb5\x7b\xba\xed\x8d\x35\x87\xca\x94\x64\xa5\xc2\x10\x9a\xfc\xa4\x07\xb9\xb9\xee\x10\xaa\xad\x56\x11\xc1\x54\x37\x15\xf0\x97\x63\x5d\xa6\x8d\xd8\xfa\xbb\x6b\xbb\x51\xb8\x53\x8b\x02\x85\x4f\xf6\x50\x4b\xf8\x74\x5f\x8b\x37\xe1\x75\x0a\x04\x10\x05\x47\x0b\x7b\x77\x8a\x61\xaa\x84\xeb\x7a\xae\x5f\xc8\x7d\x91\x30\x73\xdd\x72\xd7\xc3\x8a\x0c\x72\xcc\x07\x74\x38\xc4\x6c\x90\xdb\x2b\x97\x2c\x89\x5e\x31\x2c\xb4\xd1\x99\x6e\x4a\xbd\x75\x7d\xfb\x1e\x1f\x45\x0d\x04\x96\xf0\xb3\x69\xbc\xd7\x78\x16\x22\x39\x3b\x25\x1d\x11\x11\xe9\x88\x30\x12\x79\xd2\x30\x01\xe3\xdc\x69\x03\x3d\x50\x09\xea\xe6\x9b\x51\x0e\x28\xe6\x03\x36\x1c\x62\xe1\x90\x1d\xc4\x0f\x67\xac\x73\x69\x6f\xec\x3e\x02\x4e\xb4\xbb\x10\x03\xd8\x8d\xf3\x69\x24\x4f\x57\xd9\xe8\xcb\xd5\x82\x7b\xf1\x64\xbe\xc3\x26\xfb\x8a\xb2\x31\x26\x36\x31\xe4\xd9\x82\x61\xd2\x2e\xfb\xc0\xa4\xfd\x8f\x05\x59\x90\x02\x92\xf9\x17\xb7\x73\xf0\xd1\xfc\x7f\xe4\xab\x92\xd9\x9d\x12\xf1\x6e\xc1\x39\x61\xe2\x6c\xc1\x8e\xf3\x7c\x1e\x8b\x4e\xae\x73\x70\xe1\x09\x22\xe0\x6a\x87\xaf\x11\x69\x5f\x91\xa9\xcb\x99\xa6\x0f\x23\xf5\x4a\x09\x26\x09\x1b\xfb\xdf\x20\x45\x1e\x90\x4d\x3a\x19\x67\xec\xce\x1d\xd9\xaf\xfa\xde\x1e\x79\xb1\x2e\x80\x90\x3b\xd7\x25\xc6\x17\xf4\x86\xf0\x22\x32\xde\x91\x2c\xa6\xbe\xaa\x2e\x47\x19\x1b\x91\x59\xb5\xfc\xc8\xfb\xa2\xca\xce\x32\xe1\x87\x49\xb6\x8d\xc2\x97\x9a\x71\xe5\x6c\x44\x62\xf4\x30\xdb\x80\x1e\x56\xc0\x49\x00\x2a\xc1\xf4\xb2\x3c\xd3\x8e\x09\x66\x7b\xc1\x8a\x6b\x3a\x11\x65\x0a\xd3\x14\x95\xcb\x75\xca\x46\xe5\x92\x09\x6f\x9d\x4f\xbd\xa1\xc5\xd6\xda\xab\xec\xcf\x8b\x91\xaf\x51\x3a\xff\x07\xce\x0b\x48\xed\xae\x9c\x8c\xbf\xc0\xc2\xd9\xba\xf8\xf8\xd5\x37\xed\xdc\x32\x26\x57\xf9\x22\xd8\x05\x5b\xd2\x7c\xac\x99\xa5\xb8\xe6\xb9\x10\xb3\x78\x5d\xf3\x31\x56\x57\xdb\x77\x4a\x44\x05\x3f\x63\x47\x2d\x69\x36\x77\x40\x26\xc3\x33\x36\xce\x6f\x92\x74\xe7\x7d\x26\x48\x9b\xe5\x77\x49\x9a\x5a\xb1\x6b\xb3\xdd\x44\xcd\x66\x8a\x16\xe5\xa9\x1d\x94\xc9\x6a\x75\xfc\x8d\x0b\x9e\xb1\x82\xda\x77\x10\xb2\xa0\x89\x9a\xe0\x5d\x77\x66\x9e\x4c\x9a\x4c\x54\x0c\xd1\x0c\x1b\x8b\x46\x18\x4b\xaf\x6c\x31\x67\x6f\xe5\x61\xf5\xc4\x28\x19\x26\x4b\x94\xb3\x43\x36\x0e\x48\xb3\x0c\x0b\xf8\x20\x27\x75\xa1\x73\x95\xb4\xbd\x67\xf3\xf5\x23\x11\xd7\xf9\xb8\xd7\xcc\x99\x0a\xa1\xb5\x6c\xe4\x36\x56\x36\xa4\x47\xb5\x50\x5c\x40\xd2\x5d\x49\x67\xde\xb3\x11\x7e\x50\x8e\x89\x3d\xae\x70\x88\xcf\x00\x14\x08\x66\xd8\xe3\x12\x89\x04\x9f\x34\x3d\x3f\xf2\x31\x9f\xe4\x39\x6c\xbc\xc2\x64\x81\x66\x01\xaf\x61\x37\x97\x2f\x58\x6c\x5f\x6d\xe1\x6b\xb7\xb0\x44\x7d\xb1\xd2\x3e\x0a\x9e\x28\x77\x58\xe5\x54\xa2\x91\xf4\x5f\x79\x82\x2a\x6d\x33\xc4\xeb\xda\x66\x65\xdb\x4a\x09\x4f\x40\xfb\xce\x06\xdc\x6d\x9b\xdb\xb6\xaf\x7d\xf6\x09\x42\x5e\x8d\x32\x01\x61\x67\xfc\x9b\x52\x07\x6f\xd9\x24\xcd\xd0\xaa\xec\x41\x4f\xce\x1d\xc4\x22\xb9\x83\xf4\x58\xdc\xc4\x41\xbc\x92\x38\x28\x6d\xf0\x20\x3c\x69\x90\x1a\xb0\xa7\x02\x96\x5b\xf2\x84\xfb\xf3\x15\x9c\xb2\x55\x39\x78\x74\x01\x49\x0e\xa9\x9f\x36\x1c\xd4\xca\xb4\x9b\xb1\x60\x21\xf1\x74\x3a\x05\x11\xe7\xd0\x30\x20\x9d\x69\xf9\xb4\x2e\x90\xb7\x53\xf6\x29\x41\xbc\x75\x95\x95\xd4\xb4\x33\xa8\xa7\xc4\xee\x76\x9a\x26\xed\x59\x3e\xc2\x97\x88\xb4\xef\xf0\x1d\xac\xfe\x28\xbb\x21\x33\xfa\x27\xc1\x87\xf2\x31\x2b\xae\x09\x97\x4f\x5f\xe1\x72\xd0\x9f\xce\xe5\x83\xdc\x46\x3a\xb9\xc7\xa7\xc0\x25\x8d\x09\x2f\x46\x39\x27\xf8\x00\x0a\xce\xa9\xc8\xa0\xe8\x17\x9d\x03\xe6\xa7\xc1\xd6\xe5\xf0\xa7\xa9\xd6\x44\xf0\x36\x84\xb1\x4c\xba\x64\x3f\xa6\x46\x39\x54\x9a\x57\x85\xaa\x29\x6a\xee\x42\xf0\x94\x0c\xff\x94\xfc\xb1\xfb\xf8\xc7\xe5\xe3\x1f\xed\xc7\x3f\x8a\x74\x27\x69\xa7\xfd\x9f\xa6\xa8\xc0\x3f\x25\xff\xf1\xf8\xc7\x4f\x69\x32\x38\xd8\xfd\x7f\x87\xe9\x4f\x53\xb4\xd8\xa4\x97\x52\x09\x97\x55\x8e\x85\x01\xf9\x3e\x6b\x8b\xfc\xf3\x7c\x4e\xf8\xbb\xac\x20\x49\xda\x6b\x36\x97\xe5\xd0\x8a\x78\xb3\x22\x3f\xce\xef\x4c\x0d\x50\x7c\xcc\xf0\x4f\xff\x21\xc7\x7e\xa9\x07\x8d\x46\xf8\xa7\xa4\x9d\x46\xa7\x33\xd1\xd3\x79\xfc\xa3\x9d\x26\x83\x6c\xf7\x4f\x98\xd1\xf5\xca\x19\x69\x46\xa6\xd6\x73\xbb\xdf\xbc\x6c\xee\x44\xa6\x82\x38\xae\x42\xbe\x01\x95\x9d\x84\xf7\x79\xa5\x4e\xaa\x92\x01\x6a\xa1\xcc\x4f\xcd\xb4\x4e\x60\x4c\x07\x62\x08\x92\x62\xbb\x5c\x33\xc4\xca\xb5\x1b\x39\x56\x45\x54\x47\x94\xf8\xa9\x59\x7e\x9f\xd4\xad\xad\x33\x1c\x58\xdb\x39\xfe\x09\x96\xe9\x8f\xf1\x50\x43\xc0\x8e\x5c\xb0\x31\xfe\x49\xae\x6e\xb1\xf3\xd3\x14\xdd\x3c\x0d\x1c\xe6\xa8\xf9\x3f\xbb\x97\xff\x73\xcf\x19\xcd\x18\x35\x2f\x9b\x69\xb8\xb3\xe8\xbe\x04\x3d\x39\x82\x45\xa7\xf3\xae\xb3\xfb\xc7\xa2\xb3\xf7\xec\x03\xec\xda\xed\xd3\x3a\xbe\xdf\x74\xce\xd3\xca\x9c\x65\x6f\x57\x4f\xeb\x6d\x5a\x4e\x33\x98\x57\x79\x7b\x5f\x7a\x86\x0d\xdb\x70\x9d\x19\xa1\x53\xc2\xd2\xc7\xc7\x4a\x90\xbb\xbd\xb4\xd5\x4a\xf4\xc5\xe7\x3a\x9b\xcf\xe8\x28\x74\xc0\x43\xdd\x34\x45\x55\xa9\x29\xc3\x9d\x46\x65\xb0\x3f\xfd\xcb\xbf\x25\x83\xce\xee\xcf\xc3\x1d\x75\x48\x3c\xc1\xac\x42\x31\xbc\x3f\xcf\x78\x41\x8e\x98\x48\x38\xea\x76\xd2\xdd\x6e\x8f\xed\xec\xa0\x1c\x53\x2b\xa9\xea\x4b\xe6\xb3\xe7\xa9\xc4\x9a\xea\xba\x28\x65\xc7\x79\x3f\xef\x69\x56\x38\xef\x37\x15\x61\xd1\xec\x59\xf1\x75\xde\x6f\x36\x7b\xcd\xe6\x4e\x0e\x72\x5f\x6b\x48\xa4\x70\x6a\x0a\xfa\x4f\xb9\x64\x25\x4d\x73\xe7\x2d\xbe\x3a\x37\x3f\x49\xb8\x74\xca\x1c\x3a\x65\xae\xb4\x92\xa2\xfc\xfa\xd5\xf9\x9a\x57\xbe\x9e\x3b\x5f\x17\x95\xaf\xa7\xce\xd7\xeb\xca\xd7\x03\xe7\xeb\x4d\xe5\xeb\x17\xe7\xeb\xad\xf9\xaa\xd3\x78\x86\xd9\x5f\xda\x6a\x01\x5a\xad\xd8\x65\x45\x49\x91\xa8\xef\x25\x44\xa0\x87\xbb\xde\xc3\x28\x67\x13\x3a\x5d\xd8\x4b\xcb\xbd\xc2\xba\xe8\x8e\x53\x41\xcc\x27\xf0\x5f\x8b\xdc\x68\x77\x3a\x8b\xc0\x12\xcd\xf2\xd1\xf7\xb5\xf8\xc3\x69\xc5\x4b\x23\xc3\x5f\x2e\x91\xb9\x3c\x7f\xc8\xa4\xcf\xed\xa4\xcb\x0b\xfb\x87\x34\x7c\x58\x36\x6c\xae\xfe\x1f\xd2\xee\x57\xdb\x6e\x49\x2a\xfc\x90\x86\x0f\x6c\xc3\x86\x20\xf9\x21\xcd\x9e\x96\xcd\x5a\x5a\xe6\x87\x34\xfc\xc5\x34\x1c\x98\x5e\xad\xa2\x5f\x37\x14\xec\x39\x14\xaa\x5b\x4a\x60\xf0\xee\x9e\x46\xbe\x96\x77\xbd\x57\x22\x1a\xe1\x62\x40\x86\x26\xed\x97\x4d\x42\xa6\x43\x6c\xfe\x44\xd8\x28\x07\x6e\x78\xc3\x91\x1e\x69\x0f\x41\x2a\xb9\x5f\xa8\xea\x3a\xdf\x8a\x9a\x70\x05\x26\x78\xeb\xd5\x62\x32\x21\x1c\xab\x20\x22\x90\x34\xfd\x53\x5e\xe0\x4e\x3c\xce\x4a\x79\x03\xa9\x41\x46\xdd\xf7\x79\x83\x4e\x12\xf2\xcb\xde\xf3\xe7\x4e\x64\x55\x60\xb0\x93\xe6\xe9\x5c\x56\xdb\x92\x4d\x6c\xe5\xb7\x84\x6f\xbd\xda\xbd\xa2\xa2\x68\x6f\xfd\x9a\x8b\x2d\x88\xa7\xda\x36\x34\x50\x39\x38\xad\xd0\x7c\x14\x95\xfb\x71\x77\xef\xcd\x9b\x57\xa9\x3f\x74\xb7\xa2\x31\x99\x46\x0c\xef\xbd\x66\x55\x49\xb4\xc4\x37\x0f\x74\x92\x34\x55\xc4\xba\x32\x08\x10\xf7\x30\x50\xda\x6a\xf1\x5f\x9e\xed\xfd\xfc\xec\xe7\x17\x2f\xf7\x7e\x8e\x4e\x8b\xf0\x8c\x8d\xd5\x94\xf6\xf7\xbc\x39\x71\x35\xa7\xca\x7c\x78\xba\x74\x22\xa4\x54\x06\xed\x3b\xba\xcf\x43\xeb\x5c\x25\x64\xde\xed\x1a\xbf\x7e\x55\x77\x40\x76\xba\xc3\xea\xf0\x2e\xf8\x3d\x65\xd3\x2d\x91\x6f\x41\x3b\x5b\xb9\x1e\x2e\x65\x5b\xf3\x7c\xbe\x98\x65\x82\x8c\xb7\x8a\x59\x2e\x20\x48\x21\xc9\xc6\x5b\xf9\x64\x2b\xdb\xe2\x04\x74\x39\xea\x53\x30\x07\xe8\x09\x8b\xc8\x28\xff\x46\xc5\x75\x85\x74\xfe\xef\x30\x56\xe4\xbf\xda\x1b\x62\xa6\x7c\xf6\xe3\x67\x48\x04\xc7\x72\x96\xdf\xed\xce\xc8\x2d\x99\x6d\x9e\x0b\x0e\xa2\x31\xca\xff\x39\xcf\xa6\x64\x93\x53\xa9\x0f\x65\x06\xe1\x10\x4c\x28\x0f\x90\x63\x46\x4f\xa1\x1f\xd0\xa3\xe4\x5c\x6c\x35\x13\xe1\x01\x1a\xb4\x36\x82\x18\x63\x6e\x69\x38\x53\x74\x67\xa7\x97\x08\xd0\x2a\x38\xbd\x1a\xd7\x65\xa8\x0f\x9e\xf5\x88\x85\x71\x3c\x38\x99\xd4\x46\xf1\x51\xf5\x48\x10\xa4\x62\xcc\x73\x5f\x6b\xed\x95\x75\x46\x5f\x0e\xc4\x84\x57\x60\xb5\x0b\xf7\x5d\x21\xb4\x07\x43\x05\x30\xb7\x64\x84\x49\x6c\xa5\x21\xee\x72\x4d\x10\x17\x95\x5d\x46\xd6\xb5\xea\xe1\x20\x36\x94\x7c\xfb\x81\xe7\x37\x9e\x87\xf9\xaa\x16\x44\xb4\x09\xa7\xba\xcb\x8f\x46\x1b\x40\x2c\x6c\xc2\xf7\x32\x57\x61\x77\x75\x25\xc9\x5c\xda\xdf\xe1\x6e\xc1\x4d\x7c\x96\xdd\xd5\xd5\x25\x15\x3c\x30\x25\xc2\x2f\xef\x03\x45\xac\x93\x4a\xe4\x40\x3b\x1f\x13\x40\xd0\x2f\x3f\x23\xac\x2e\x5c\x48\x59\xc9\x1e\x6f\x73\x02\x05\x32\xa7\x92\x05\xa7\x9b\xe5\xe3\x95\x89\x18\x6c\xc1\x8d\xf3\x69\x17\x84\xab\xa0\xf0\x6f\x17\x74\x36\x06\x8d\xd6\x49\x3e\x26\xef\x4f\x3f\x5e\x70\x52\xc6\x45\x28\xad\x37\xb5\xac\xcf\x5d\x35\x0b\xe0\x3c\x30\x74\x7f\x42\x78\x05\x00\x04\xa7\x6a\x19\x39\x01\x92\x51\x71\x3f\x86\xd9\x62\xfe\xb9\x20\x33\x52\x14\x87\x33\xe2\xc7\x1c\x4d\x1f\x96\x5e\x61\xca\x0a\xc2\xc5\x6f\x17\x1f\x8f\xdf\x82\xf8\xbb\xc6\x62\x52\xf4\x45\x7b\xce\xc9\x2d\xcd\x17\xc5\x39\xbd\x9a\x51\x36\xed\x91\xf6\x2c\x2b\x04\xc4\x7d\x37\x61\x7d\x4c\xd8\x6c\x1d\xc7\xe1\x2c\xbb\x93\x2d\x9f\xeb\xc0\xc7\x3c\x6d\x98\x0e\x55\x67\x49\x8e\x84\x89\x86\x4b\xfb\x14\x70\x44\xd9\xfa\x84\x72\xd3\x7c\xb1\x6e\x00\xa1\xe1\x34\x1b\x71\x22\xc8\xdb\x7c\xc1\xc6\x45\x42\x20\x03\x86\x3f\x6f\x35\xc0\xca\xf2\x04\x30\x1e\xcc\x47\x17\x57\xe9\xd1\xfc\x15\x3f\x10\x82\xd3\xab\x45\x10\x0b\x49\x02\x94\xff\x19\x8e\xf4\x12\xf1\x65\xc2\xda\x11\x20\xaa\xa4\x87\xf6\xc1\xc7\x08\x03\x36\x84\x9e\x68\xc8\x5d\xc7\xad\xa7\x04\xee\x59\x3e\xfa\xf2\x9e\xcc\x21\xc4\x27\xdb\x10\xce\x2e\x2f\xf3\x39\x61\x50\x35\xd4\x2e\xe8\x40\x3b\x91\xf6\x77\x76\x4c\x22\x8b\x6c\x3e\x27\x6c\xfc\x2e\xbf\x81\x25\x6d\xfe\xcb\xce\x55\xaf\xb9\x23\x76\x9a\xff\x02\xe1\xb2\xa3\xdd\x38\xd1\x46\x96\xc1\x50\x46\xb3\xbc\x20\x95\xb1\x90\x9a\x32\x4e\x43\xa8\x66\x38\xbb\x72\x38\xbb\xbb\xb5\xf3\x90\xe3\x0c\x07\xa1\xda\x90\x20\x5f\x09\x42\xc2\x6d\xdc\xc0\x4a\x4f\xd3\xd9\x0d\xff\x97\x66\xda\x68\x5e\x1c\xbc\x3d\x3e\x6c\x9a\xf8\x50\x44\x01\x5b\x5b\x64\xd3\x93\xec\x86\xb4\x5a\x09\xc7\xc2\x5a\x53\x36\xdf\x34\x75\xfc\xab\xa6\xe0\x50\x47\x5f\x19\x7c\xa7\x8b\xf8\xce\x7e\xda\x6a\x25\x02\x37\xdf\x88\xab\x7c\x7c\xff\x0b\x2c\xec\x9b\x9f\xf4\x43\x8a\x9a\x50\xa3\x5f\x33\xa0\xad\x7f\x69\xa6\x3d\x52\x33\x33\x2f\x52\x8a\x76\xc5\x58\x33\xb1\x55\x67\xd3\x9d\x2a\x58\x18\xc4\xd7\xf4\xc2\x53\x02\x97\x4c\x0a\xf8\x7a\x26\x1c\xeb\x88\x2d\xa9\x6d\x4a\x4b\xab\x12\x8a\x99\x8b\x56\xd2\x3e\x2f\x91\x46\x8f\x86\x28\xc5\x8c\x75\x83\xf5\x49\xf2\x56\x6b\x1f\x63\x9c\xb7\xe5\xa5\x73\x71\x3f\x27\x3a\xab\x5d\xb5\xfc\x63\x15\xa4\xcb\x59\x79\xeb\x19\x22\x29\x09\xb0\x11\x14\x5e\x06\x11\x33\x40\xc2\x08\x19\x17\x87\x5f\x05\xcf\xde\xc9\x3a\x72\xf3\x57\x7c\xc6\xdb\xdd\x20\x5a\x5d\xd9\x8f\x1b\xd1\x67\x93\x42\xfe\x88\xe5\x51\xad\x0c\xb8\xb4\x4a\xd5\xa0\xda\x6a\x35\x2f\xde\x9e\xbe\xff\x7b\x73\xbb\x16\xd6\xe1\xb5\xd3\x5a\xd2\x04\xe0\x35\xa9\x0c\x6c\x40\x1d\xca\xa6\xd5\xd9\x69\xbe\x77\x32\x5b\x14\xd7\xa6\x7e\x30\x1b\xa7\x69\x6f\x07\xfc\xe9\x48\x16\xef\x8c\xdc\xe4\x91\x9b\x42\x58\x7f\xe3\x2a\xb5\xba\x17\xa5\x56\xf7\x5c\x6a\x75\x6f\xa8\x33\x12\x99\x8b\xf3\x06\xac\xd1\xfd\x7b\xa6\xa9\x22\xbd\x37\xd3\x46\xee\x5f\x22\x4d\x79\xb4\x9a\x88\xa5\x88\xfa\x17\xaa\x40\x39\xe2\xfe\x4c\x2b\x73\x70\xe7\x0b\xda\x0d\x7d\x1d\x9d\x90\x3b\x5d\x42\xd3\x3a\xf2\xba\xae\x23\x76\x38\x8a\xd0\x46\x51\x15\x29\x6d\x4f\x72\xae\x93\xeb\x28\x0b\x01\x65\x48\x18\x90\x6e\x39\xc8\x14\x6c\xea\xa7\xd5\x06\x84\xf5\x84\xdd\x42\x50\xef\xf9\xf6\xc6\x7d\xba\xa3\x9c\xec\x42\xac\x69\xe1\xbe\xb6\xb2\x9a\xf2\xd5\x9c\xe7\x53\x9e\xdd\x3c\x31\xa5\x16\x9a\x35\x48\xfb\xd3\xf1\xc1\xbb\xc3\xdf\x4e\x8f\x21\x4f\x35\x64\xb6\xc7\xa4\xfd\x37\x2e\x8f\xfc\xb8\xa4\x22\x67\xf9\x54\x89\x51\x30\x18\x8e\x2c\xa6\xe7\xc0\x1b\xe8\x07\x4c\xda\x26\x1b\x96\xd6\x05\x63\xd2\xfe\x94\x71\xb9\x88\xef\xc9\x04\x52\x43\x42\x32\xf6\x73\x31\x56\xcd\x94\x2d\x87\xcf\x87\xd9\x94\xf0\xf0\xe5\x71\xf6\xe7\x7d\xf8\xee\x1d\xac\x7d\x76\x35\x23\x9f\xd4\xec\xbd\x77\xea\x72\xd5\xe3\x7b\xa7\xb7\x09\x93\xf6\xc1\x55\x21\x78\x36\x12\xce\x2b\xbd\x89\xba\x1b\xe7\xc3\x47\x70\x94\x94\x95\x2e\x2e\xce\xce\x2f\xdf\x1e\x9f\xbe\xfb\x77\xa3\x2c\x4e\x66\x78\xf1\xf8\x98\x2c\xf0\xc3\x32\x4d\x07\xb3\xf6\xe9\x9c\x30\x9b\xce\xcd\x1c\xbf\xce\x10\x37\x63\x1f\x9a\x68\x36\x98\xb5\xdf\xd3\xf1\x3b\x8f\xae\xeb\x0e\x71\x33\x7c\xa9\x8a\x9e\x13\x61\xdb\x90\xe7\xaa\xc0\x7b\x43\xdc\xac\xbc\xb5\xed\x2a\xc8\x3d\xce\xee\xf3\x85\xc0\xfb\xaa\x59\xf7\x9d\x2e\x08\xf9\xf4\x08\xc7\xcf\x64\x09\xfd\xd0\xd4\xe6\x21\x79\xfb\x74\x5e\xa0\x09\x6e\xb6\x32\xd5\xf4\xf5\x5f\xc3\x05\x77\x14\x85\x95\x4f\x26\x92\x19\xd3\x22\x41\xc8\xca\xa8\x2c\x8e\xc7\x74\x24\x52\x13\x7d\x56\x76\x5b\xe0\xc1\x70\xbd\x5c\xc2\x72\x8b\x50\x45\x49\xbf\x8c\x60\x01\x5a\xb7\x4c\xbf\x2a\x60\xa4\x76\x21\xfb\xaa\x40\x23\xa6\xe2\x22\x03\x67\xe0\x43\x23\xf4\x50\x6d\xb3\xe1\x6b\x13\x0d\x12\x9a\x1f\xf0\x61\x6a\x0c\x92\x97\x49\x19\x92\xbc\x54\xd3\x8d\x0d\x01\xae\xa3\x03\x0e\xba\x43\x44\x31\x19\xec\x0d\x51\x8e\xc9\x60\x7f\xd8\x60\x6d\xf2\x75\xce\x13\x9a\xa2\xbc\xcf\xda\xe3\x7b\x96\xdd\xd0\x91\xdc\xf6\x84\x23\xc9\x99\xf4\xc2\x97\x80\xb1\x45\xba\x94\x2d\xde\xb8\xfc\xde\xfd\x6a\x41\xd0\x7f\x97\xc5\xcf\xc6\xe3\x8f\xb4\x28\x42\x71\x36\xd4\xbb\xd1\x1f\xc8\xfa\xfd\x2a\xad\x41\x15\xeb\xe6\x8d\xa2\x61\xb5\x82\x59\xdf\xec\x98\x6e\x3b\xf5\x2a\xf7\xfc\xfd\xcc\x86\x69\x52\x7e\xd4\xbb\x7a\xfb\xff\xab\x75\x75\xa8\x5a\x00\x57\xc8\x39\xe3\xab\x97\xa9\xf1\x03\x80\xdb\x91\x37\x91\x0e\x87\xb2\x3a\x7b\x08\x1d\x74\x86\x18\xe3\x51\xfb\x37\x32\x9b\x13\x9e\xe6\x98\xca\xd3\x90\x61\x2a\x4f\x43\x81\xa9\x3c\x0d\x64\x56\x90\x07\x5d\x78\x5b\x16\xfe\xcc\xbe\xb0\xfc\x8e\x55\x3b\xb4\xd5\x0b\x30\x3b\x5c\xaa\x14\x18\xce\x9a\x95\x06\xdd\x16\x18\x16\x9a\x3a\xd6\xcb\xd1\x07\xdf\xb7\x44\x71\xb2\x1e\x88\x28\xa7\x0a\x91\xa6\xfd\xb2\xc7\x1e\xeb\x59\xbc\xb7\xd0\x55\x39\xf6\xe1\x67\x31\xac\xa9\xcb\x7b\xe5\x83\x16\x25\xc9\x01\x4f\xeb\x34\x2a\x16\x24\x46\xf6\xde\xd2\x81\x99\x15\xf2\x17\xc8\xfd\x3a\x56\x4b\x10\x93\x35\x86\x3b\x6c\x0d\xca\x0d\xd5\x6b\x9a\xf0\x02\xd5\x9b\x97\x0d\xbf\x97\xdd\xae\x9b\x76\x52\x0d\xa5\x7d\x05\xbc\x6c\x21\x32\x01\x37\x9b\x9f\xc9\xd1\x56\xf5\x26\xa3\xbc\x90\xdd\x09\xa5\x4b\xe5\x6b\xa2\x48\x4f\xb0\x44\x93\x07\x75\xf0\xf0\x85\xdc\xf7\x9a\x2a\x71\xd3\x85\x24\x00\x9a\x75\xf6\x53\xe1\x88\x96\xcb\x61\xaa\xce\xef\xd5\x93\x17\x19\xcc\x15\xc6\xff\x2d\x16\x59\x0d\x05\x09\x4c\x2a\x0b\x8d\x18\x50\x39\x90\x2e\x91\xb2\xa9\x22\x01\x36\x5d\x7d\x25\x01\xfa\x01\x6b\xae\x06\x18\xac\xb9\x6f\xa7\x62\x71\x4a\x1e\x2c\xd1\xdc\xac\xc7\x5c\x4f\x59\x79\xc9\x5d\x37\x00\x9b\x25\xa3\xb6\xe4\x4d\x03\x43\x14\xd1\x16\xe4\xab\x48\x24\x6a\x02\x45\xad\x2e\xa9\x19\xdd\x4a\xe1\x91\x66\x80\x2b\xe5\x1d\x46\xb2\x5a\xc9\xf9\x98\xb8\xb5\x3e\x38\xcc\x5c\xa5\x96\xcf\xe9\x39\xb5\x3e\xe6\x63\x3a\xa1\x84\x47\x4d\x6a\x44\x9b\x93\x09\xe1\x9c\x70\x14\xa3\x0f\x50\x86\x45\xb9\x73\x3a\xf5\xa1\x69\x50\x52\x03\x90\x14\x4c\x0b\x1a\xb2\xaa\x0e\x4c\xd3\xbd\xea\x51\xa9\x10\x4d\x76\xc9\x6c\xeb\x46\xb7\xd3\xdb\x52\x38\xb9\xd8\xba\xc9\xee\xe1\xdb\x15\xd9\x5a\x14\x04\x54\x65\x90\xa6\x52\xcd\x6a\x4b\x72\x2d\xa0\x11\x6b\x9b\xaa\x49\xa6\xae\xca\x72\xb6\xe7\x22\x13\x8a\x58\x89\xce\x17\xa6\xc8\xd5\x14\xa9\x22\x81\x04\x00\xb5\x26\x70\x18\xa2\xe0\xbd\x69\xdb\x7b\x5f\x52\x3f\x41\x83\x12\x87\x6c\x77\xc1\xf5\xde\x96\xbe\xe0\x8b\x02\xa2\xc0\xd4\x14\xef\xf8\xc5\x4f\x4b\x0e\xbc\xb2\x9f\x92\x3b\xff\xc4\xe9\x0d\x15\xf4\xb6\x94\xba\x06\x70\x24\x1b\x38\x97\x2c\x92\x20\xe3\xba\x86\x8a\x90\xa0\x4f\xb6\x3b\x90\x46\x6c\x51\xbe\x07\xb5\x2f\xd8\xa4\x4b\xfa\x61\xb3\xbe\xf5\xca\xd8\x36\x62\xeb\xad\x6f\x71\x80\xa6\x3d\x09\x4d\x00\x54\x05\x26\x83\x67\x43\x34\xc3\xc2\x72\x78\x49\x91\xa2\x89\xb2\xe0\xcf\x1d\x52\x3f\x61\x78\x30\x90\xc7\x85\x12\x26\xce\xe9\x98\x9c\x1b\xfc\x83\x16\x55\xfe\x05\x6d\x77\x86\x43\x63\x1c\x9d\xa3\x27\xd5\xec\x0e\x87\x72\x04\xa2\x4d\xd9\x8c\x32\xc5\xe9\x25\x0f\x25\xba\xeb\x31\x34\xcf\x78\x76\x43\x04\xe1\x45\x8f\xb7\x0f\x3f\x7e\xba\xf8\xfb\xe5\xc1\xd9\xd9\xc1\xdf\x97\xa9\x5c\xb3\x71\xb0\x1c\x09\x45\x13\x45\x2d\x67\x12\x4c\x66\xf0\x3b\xc0\x19\xab\x16\x4e\x72\xd8\x6a\xf1\x0a\xb5\x78\x33\xb5\x78\x13\xb5\x78\xd7\xee\xd1\x9d\x47\x4e\xa9\x42\xc8\x1f\x72\x7e\x91\x4d\x93\x0c\x5d\xa7\x68\x8c\xe7\x6d\x70\x8a\x22\xe8\x06\xcf\xdb\xa3\x6c\x9e\x5d\xd1\x19\x15\x94\x14\xe8\x5e\xbe\xb0\x7c\xae\x73\xa8\xc7\x8f\x8f\xfa\xd7\xcd\x9a\xe3\xdd\xdb\x7a\x97\x31\x79\x7a\x27\x94\x8d\xb7\x6c\x82\xc7\xad\xe6\x4e\x96\x36\xbe\x7d\x1f\x8b\x6f\xd8\x47\xfa\x8d\xfb\x88\x72\x17\x24\x27\x29\xba\xef\x27\xca\x35\xc6\x76\x53\x4a\x1e\x92\x31\xa4\xde\x64\xb7\xf9\x17\xa2\xb0\x4e\xb9\xf7\x37\xe8\x1e\x51\xb5\xfb\x33\xb9\xfb\x79\xab\x95\xa7\x69\x6f\xb3\xc6\xdc\x66\xaa\x8d\x38\x10\xa4\x85\x21\x1b\x20\xba\x12\x56\x1a\x42\xd9\x4e\xde\xcb\x7d\x3e\x9a\x24\x0f\x19\x9f\x16\xf1\xd0\xc3\x92\x31\x64\x00\xda\x8b\x79\x92\xa2\xbd\x25\xa2\x93\x0b\xee\x9b\x2f\x99\x31\xeb\xa1\x24\x14\x89\x36\xb9\xcd\x66\xe7\x70\x7f\x4b\x6c\xc2\x01\xd7\xe4\xf3\xf3\x51\x3e\x27\x89\x7e\xf8\x20\x77\x20\x49\xb5\xb5\x93\x9e\xce\xdf\x29\x99\x8d\xd7\x4d\xa6\x21\xda\xf7\xb2\x1c\x84\xc1\x72\x2a\xcb\xed\x07\x4c\x58\xdb\x80\x53\x73\x30\x4c\x51\x14\x31\x76\x3d\x04\xa7\x85\x17\xab\x5a\x1c\xeb\x32\x49\x38\x6d\xe6\x5f\xf7\x55\xe8\x75\x1a\x65\x9a\x54\x90\x67\x09\x1e\xdd\x79\x81\x94\x7c\xed\xaa\x40\xfe\x92\xc4\xb6\x72\x04\xc0\x0f\x56\xa7\x2c\x6d\xb5\x44\x7b\xba\xc8\xf8\x98\x8c\x55\x6b\xe1\xda\xc1\x21\xd9\xf0\xba\x04\x54\xfe\x4c\xa1\xf2\xe7\x12\x37\x39\x07\x26\x4f\xd1\xc2\x7d\xce\xe4\x55\xad\x47\xa4\x0e\xa2\xe2\x6d\x8b\x56\xab\x40\x8b\x56\x6b\x61\xe2\x00\x08\x45\x78\x25\x5d\x27\x47\x81\x1c\xda\x22\x2a\x01\xab\xdc\x70\x4f\xbf\xc9\xf6\xe0\x26\x33\x9d\x84\xe2\xb1\x4a\x07\xe3\xa0\x40\x42\x75\xba\x7a\xc2\xdb\x45\xc7\x6d\xaa\x8a\x91\xd6\x5f\xc7\x95\xe1\x54\xe0\x2e\x7d\xf0\x47\xeb\x4a\xdd\x62\x83\x75\xbf\x57\xc7\xaa\x48\x64\xeb\x8f\x4b\x5c\x1b\xb2\xbc\x84\x43\xb0\x9f\x71\x36\x44\xd2\xb2\x54\x92\x96\x72\xc7\xee\xea\xb9\x1a\x00\x67\xe0\x67\x33\xca\xac\x39\x9e\x26\x8c\x7e\x75\xe1\xd0\xb2\x38\xd9\x42\xd0\x7c\x51\xf8\x1f\x99\x93\x79\x28\x64\x71\xa2\x46\x27\x85\x18\x27\xb1\x40\x49\x10\x43\x02\x3c\x62\x4d\xfa\x82\xfa\x82\x85\x30\x67\x64\xbb\xf3\xc4\xf2\x12\x77\x28\x97\x4f\x11\x8a\x57\x8c\x51\xaa\x4a\x96\x6e\x83\x08\x78\x76\x26\x7a\xd6\xb1\x5e\xfa\xf5\x4b\xd8\xab\x5f\x40\x2d\x3f\x3a\xdc\x68\xa7\x94\x4c\x5a\xf3\x9f\x5a\xf2\xad\x77\x47\xd3\x13\x1c\x33\x93\x42\x1b\xf4\x18\xf4\x4f\xe2\x26\x87\x72\xcd\x29\xcc\xf7\x8a\x15\x4c\x21\xc6\xc7\xf4\x0a\xdf\x59\x20\xd3\xea\xb3\x08\x3b\xab\x30\x58\x7c\x1d\x9d\x31\xeb\x6b\xbe\x70\xd0\x67\xb8\xb6\x2e\x02\xaa\x91\xe1\xb9\x0d\x02\x2b\xe9\xb5\xe7\x4a\xe4\x56\x4a\xd1\xac\x79\x37\x31\x16\x7a\xa0\x56\xf8\x90\xf3\xaa\x19\x94\x3a\x4d\xb5\xb2\x2f\x77\x23\xda\xd7\x24\x9b\x83\x6a\xec\x26\x9b\xcd\xf2\x91\x77\x7a\x85\x7b\x7a\x23\x49\x20\x39\x16\x03\x36\x4c\x75\x64\x9d\x4f\xb3\x6c\x44\xae\x73\x39\xaa\x84\xdb\x08\x3b\xae\xc7\x8d\x24\x48\x8a\xeb\x8f\xaa\xa3\x1c\x41\x30\xbf\xd0\xbe\x29\x24\x2f\xe3\xa9\xb8\x5c\xd8\xd1\x19\xdd\x63\x84\x0f\x71\x90\x8c\xa6\x34\x59\xff\x41\xd1\xa9\x4a\x3f\xe8\x12\xaa\xfa\x8d\xa5\x54\xe1\x79\xd9\x73\x3b\xb3\x23\xfb\x0d\xda\x48\x58\xba\x7a\x02\xaa\x58\x24\x47\x8f\x37\x03\x24\x79\xe5\x29\x11\xef\x9c\xc1\x28\x07\x4e\x60\x5a\xca\xd8\x14\x8a\x0d\x50\xad\x3f\x3e\x82\xc1\xc2\x94\x08\x8d\x8b\x49\x9a\x22\x33\x37\x12\x4c\xcc\x9d\x15\x5f\x46\xc7\x6c\x38\xef\x15\xc7\x22\x58\x71\xcb\xab\x57\xcf\x85\x2e\xa9\x78\xef\xcd\x5b\x54\xe5\x75\x7b\x2b\x24\x38\xa0\x9e\xce\x98\x28\x56\xcb\x6f\x34\x88\xdb\xd2\xa5\xe0\xec\xeb\x8f\x94\x4e\x36\x8c\xb8\x03\x8e\xb7\xdc\x35\x9d\x8f\xbd\x30\x96\x8e\x88\x62\x6e\x4d\x4b\x26\xda\xec\x16\xb4\x54\x80\x39\x74\x2a\x71\x15\xd0\xab\xaf\x2d\x9f\x27\x69\x8f\xee\x74\xf5\x25\x51\x4a\xac\xf0\xc3\x75\x56\x1c\xde\x66\xb3\x1e\x6b\xeb\x5f\x48\xf7\x26\x77\xf6\x2f\x90\xe1\x79\x79\x76\xd4\xa2\x20\xe1\xca\x49\x41\x5a\xe7\xe1\xa3\x06\x6b\x17\x22\xe3\xe2\x38\xbb\x22\x8a\x62\x6d\x4f\x88\x18\x5d\x7b\xf4\x42\x37\x55\x11\x78\xec\xc1\xbd\x50\xd6\x09\x01\x51\x01\x39\x80\x34\x91\x75\x26\x19\x0d\xc2\x60\x49\x99\x66\x1d\x58\x7b\x96\x67\xe3\x6a\xcb\xff\xb9\xb8\x99\x7f\x66\x33\x52\x14\x49\x13\x8c\x21\x56\x8c\x22\x2e\xc6\x60\xf5\xc4\x1f\x03\xe2\x4f\x4b\x29\xac\x60\x4c\x8e\x69\x35\x35\x87\x98\xe6\x13\xa2\x10\x00\xbc\x43\x74\x34\x30\x4a\x5f\x0a\x27\x27\x2e\x97\xd7\x99\x9d\xcb\x2f\x2a\x9a\x38\x7a\xf2\x24\x59\x73\x95\x08\xf4\x00\xf0\xda\x73\x19\xd8\x88\x28\xb6\x96\xa3\x45\xa1\x80\xb6\x47\x96\xe9\x12\xe2\x02\xae\x58\x6a\x77\x5b\x0e\x4f\xde\xc3\xb8\x7d\xa1\x64\x39\x31\xf3\x3d\xbe\xc1\x85\xc8\xe7\x06\xc0\x4c\xcc\x5a\x4b\x48\xc6\x85\xc5\xb9\xa3\xa0\x38\x5f\xeb\xf2\xa1\xf5\xf6\xb1\x33\xa5\xa4\x7a\x75\x37\xac\x64\xf5\x07\x1d\x10\x70\x2a\x19\x8b\x90\x3c\xce\x02\x0b\xc9\xe3\xcc\xb0\xdb\x7c\x43\x9f\x43\x65\x7f\x96\x30\x3c\xab\x17\xb6\xe8\x3b\x87\xa4\xa9\x2f\x5f\x01\x23\xac\x12\xc1\xa7\xfd\x64\x56\x2b\x0a\x20\x29\x9a\xd5\xc8\x15\xb8\x11\x08\xe4\x4a\xaa\x54\xa0\x45\x9a\xf6\x36\x6b\xcb\x6d\xa5\xd2\x86\xd1\x36\x9e\xae\xd6\x36\xc2\xa6\xc7\xd4\x8d\x02\xe2\x4f\xd4\x29\x1c\xa1\x5a\x4c\xe5\xa8\xda\x8b\x18\x5e\xab\xf6\x62\x55\x74\x4f\x0a\x01\x3f\x64\xa2\x47\x90\x7a\xd5\x13\xcb\x74\xb5\xaf\x49\x10\xd9\x09\xbb\xed\xd9\x14\x9c\x30\x22\xc7\x79\x39\x77\x9d\x97\x61\xfb\x73\x95\x55\x5b\x20\x8a\xb3\x01\xd3\x0d\x0c\x77\x39\xd2\x3d\xca\x5d\x32\xeb\x79\x50\x0f\xc1\x8a\xc8\xa8\x18\x38\x74\xa3\x06\x0e\x5d\xd7\xc0\xa1\x6b\x0d\x1c\x94\xcb\x8d\xda\x02\x6d\xc1\x03\xac\x74\x16\xf1\x03\x49\x40\xea\x51\xce\x51\x9b\x8f\x83\x6b\x30\xfc\x46\xc1\xa5\x5a\xee\x24\x1c\x84\xa8\xdd\x97\x66\xbf\x4a\x0a\x2e\xe1\xa9\x8a\xe8\xa6\x78\xc5\x8a\x19\x96\xb7\x1d\xc5\x1d\x95\xeb\x55\xc9\xd4\xf9\x30\xca\x0a\xb2\xd5\xed\xb9\x08\x42\x4f\x4f\xff\x4f\x08\xea\xa4\x0d\x28\xb6\xb7\xa6\x18\x72\x17\x4e\xd7\xd9\x7f\x4a\x1d\xe4\x9a\xac\xa5\x0d\x1d\x89\xe2\x9b\x5b\x70\x1e\xf6\x2b\x09\x44\xe5\x12\x7d\xcc\x46\xd7\x34\xc8\xe1\xf0\x5d\x2b\xd5\xed\xec\x3d\xdb\x6c\xb1\x64\xc9\x6f\x58\xaf\x4a\xb5\x6f\x59\xb2\xd5\x8d\xac\x5c\xb5\x90\x99\x0a\x68\xcc\x72\x4d\x93\xbd\x67\xa9\x0f\xe6\x06\x54\xed\x71\xf2\x0e\x93\x76\xb2\xaa\x52\xce\x84\xdf\x92\xaa\xa1\x43\x04\x0c\x76\xbb\xf1\xca\x7f\xa3\xe2\x5a\x3b\xdb\xc5\xb0\x5c\xb4\xa5\x18\x09\x2f\xdb\x8a\x01\xcc\x8a\x35\xae\x0c\x09\x04\x35\x21\xaf\x0e\xf8\xf5\xc5\x2b\x14\x10\x47\x5a\x04\x00\x32\x5f\x4e\xe6\x19\x27\xe3\xf2\x62\xd9\xee\xca\x0b\xa5\x92\x6c\x38\x66\x13\xee\xf6\xb2\xf7\x2a\x5a\xe1\x3c\x9b\x90\x15\x95\x7e\x8e\x56\x7a\xaf\xdd\x15\x3e\xf0\x6c\x1a\xda\x0c\x97\x95\xf7\xe3\x43\x3c\xf1\x3c\x41\xbd\x0a\xe1\x9a\xc5\x6c\xb2\xbd\x0a\x7b\x41\x05\x88\xa8\x54\xd2\xd1\x3c\x63\x85\x0a\x03\x15\xaf\xff\x73\xd8\xa1\x82\xd3\x27\x34\x10\x0e\x40\xbe\xd5\xd4\x30\xc8\xe2\xe3\xd5\x9e\x3d\x0b\xab\xe5\xf3\x0d\x6a\x3d\x8f\x74\x56\x63\x35\xec\xd5\x0b\x67\x39\xcf\xe7\x9b\x54\x8b\xcd\xed\x2c\xcf\x45\x30\xc4\xf2\x3c\x29\x90\xe9\x20\x82\x44\xbf\xdb\x0b\x77\x5f\x7e\xfd\x9d\x72\xb1\xc8\x66\xb1\x56\xbc\x36\xba\x28\x4c\xe3\x0f\xb4\xd7\x35\x9d\x8d\x57\x2c\xd0\x5e\x65\xc4\x5a\x23\x52\x53\x7c\x3f\x2c\xae\xce\xda\x01\x0f\xbd\xb8\x6d\x95\x97\x3f\x57\x06\xa6\x19\x73\x03\x32\xb5\xeb\xf2\xaa\x8b\x3a\x8f\xa2\x52\x9d\xeb\x73\xef\xd0\x95\xc6\xc9\xa6\x66\x0c\xaf\xf6\x22\x8b\x13\x63\xcf\xe2\xb3\x7e\x15\xce\xda\xe5\x3c\xcf\xc9\x6c\x52\xd7\xed\xb3\x4a\xb7\x11\x9e\xb5\xae\xf2\xf3\x95\x95\xb5\xb9\x6b\x4d\xdd\x17\x95\xba\xe0\x79\xf6\x21\xe7\x92\xe9\xaf\xab\xf5\xb2\x52\x2b\xa0\xd0\x57\x76\xfa\x73\xa7\x52\x3d\xe4\x68\xeb\x6a\xee\xc7\x6a\x7a\x66\xbd\x35\x15\xab\x0b\x2c\xdf\x83\x16\x2f\xba\x95\xe6\xba\x7d\xfe\xb2\x0a\xf6\x1b\xd4\x0a\xef\x03\xf9\xf1\xfc\x26\x9b\xcd\x36\xa8\x1b\x5e\x0b\xf2\xa0\x6d\x56\xf5\x45\x25\x49\x3e\xec\x8a\x46\x0c\x2b\xab\x3e\x0b\x7b\x55\x55\x41\xa3\x19\x87\xf5\xe7\x21\xe6\x13\xf9\xdb\x3c\x9f\x91\xac\xee\x26\x0e\xcf\x46\xcd\x1d\x5c\xf1\xbd\xab\xf1\xcf\xd8\x8f\xb2\x19\xfb\x2e\x9b\xb1\xaf\xfc\x33\xb4\x03\x7a\xdd\xf5\x65\x38\xc0\xf0\x7a\x31\xef\x03\x24\xe4\x0b\x5b\xc0\x9f\xae\xd5\xe2\xa6\xf0\x0a\x94\x13\x4a\x69\xa0\x7c\x88\x20\xa2\x85\x62\xd8\x3d\x5a\xb0\x20\xe2\xf7\x8c\x53\xc9\xa0\x27\xce\x3b\x7b\x9e\x2b\x82\x22\x6d\xd0\x59\x10\x21\x11\xcc\xd8\x54\x2e\x2a\xad\x97\x05\x41\xe6\x53\x2d\x00\xe3\xcc\xe7\x89\x47\x60\x05\xf8\x20\x5a\x69\xb5\xb6\xcf\x36\xac\x15\xee\xf6\xd9\xdb\xa2\xe0\x8a\x4f\x4a\x12\xb9\x86\xe2\x08\x19\xbb\x3a\x9d\x8d\x4f\x87\xbb\x24\xb7\xab\xa4\x46\xf5\x5a\xa0\x3a\xa5\x4d\x20\x00\xf6\x95\xcc\xa5\xca\x26\xd2\x70\x28\x8a\xf0\x04\x11\x5a\xa8\x45\x4a\x77\xfd\x4f\x79\xd8\x80\x23\x34\xad\x9c\x54\x87\xb1\xd6\x89\x0c\xc8\xdd\xd6\x69\xa5\x01\x23\x13\x5b\x5d\x1f\x92\x72\x28\x81\x82\x4b\xcc\xc7\x88\x8f\x05\xe7\x34\x8a\x03\x3c\x02\xa1\x42\xd9\x95\x27\xd6\x56\x3d\x02\x31\xfc\xa8\x86\x2c\x79\x19\x22\xa1\xaa\x84\xb5\x86\x1a\x0e\xfb\x76\xe5\xa4\x35\x55\xc2\x4b\xa0\xce\x13\xd0\xa9\x52\xc1\xfd\x0b\x71\x24\x24\xcd\x91\xf3\x1a\xac\xfa\x22\xa8\x41\x98\x20\xfc\x98\x16\x91\x9b\x50\x33\x5b\xc9\x8b\x67\x9e\x18\x45\xcb\x7f\x12\x7d\x92\x8a\xca\x4d\x49\xbe\x52\xe1\xb7\xe8\x8d\x20\xa4\x9c\x29\x0c\x38\x42\xad\xd8\xfe\x5f\x3e\xad\xff\x0a\x76\xaa\xa3\x6c\x63\x35\x15\xba\xaa\xa9\x51\x25\x27\x1c\x0c\x5a\x53\xa7\x4a\x49\x98\x5e\x6a\x2a\x44\xc9\xb3\x35\x9d\x54\xc9\xb2\xe9\xea\x4e\x5e\x55\x2a\x5c\x67\xc5\xaa\x0a\x11\x62\x1b\xcc\xd5\x6a\x8a\x77\xab\x5c\xc3\x2c\xcf\xc6\x75\xa5\xab\xc3\x01\x49\x7d\x5d\xf1\xea\x60\xc6\x8b\x79\xe8\x8f\xfe\xcd\xbe\x54\xee\x8d\x32\x47\xdf\x21\xb1\x0c\x65\x32\x49\xf7\x05\xaa\xaa\x25\xe7\xf9\x8f\x1b\x7a\x37\xd2\x67\x95\xf8\x56\x65\x2e\xf2\xda\x23\x67\x85\x47\xcf\x9f\x76\xf2\xaa\x3a\xb1\x38\x0e\xe8\x86\xd8\x91\x13\x3a\xb9\xff\xbc\xbf\x57\x53\x3c\x44\x19\x80\xb4\xea\x8e\x42\x15\xf2\x24\x42\xaa\x41\x46\x21\x97\xaa\x96\x66\x25\xe9\xbb\x17\x0e\xfe\x3f\x17\x37\x91\x98\x38\xc1\x52\x3e\xdf\x7b\xda\x52\xca\x46\x8f\x22\xfc\x9f\x41\x8a\xcf\xf7\x9f\xde\x9e\x52\x71\xad\x68\xf3\x89\x88\x5e\xb6\x79\xf8\x8f\x18\x97\x5d\x95\xf9\x25\xcf\x25\x5e\x5b\xd9\x7c\x78\x30\xb2\xa2\x20\x5c\x9c\xd7\x71\x31\xc9\xf3\xf0\x2e\x93\x6f\x21\x57\xb0\x2f\x35\xf0\x2e\xf4\x90\x3f\x53\x72\xe6\x95\x66\x29\x90\x59\x1a\x65\x58\xe5\x74\x10\x81\xfe\x52\xe7\x98\x7e\x80\x2c\xbc\x60\xe3\x30\x9b\x5d\x65\xa3\x2f\x3d\x81\x60\x9e\xbd\xe6\xbb\xe3\x83\xcf\xe7\x87\xcd\x9d\x6c\x67\x67\x69\x4d\xac\x00\x84\x13\x03\x14\xe5\x54\x4b\xc6\x40\x9d\x88\xc4\x9a\x64\xb9\xaa\xeb\x5c\x2b\xf1\x41\xdc\xba\x2a\x2f\x11\xd5\x9b\x94\xe8\x34\xc1\x48\x13\x84\x72\x1c\xcc\xc9\x4c\xfd\x9a\xfd\x82\x3b\xaf\xd9\xee\x6e\xca\x71\x6e\x03\x49\x29\xea\x90\xeb\x2a\x25\xd1\xbe\x07\x2a\x0f\x3d\xd1\x24\x85\xdc\x36\x86\x37\x90\xfd\x69\x2d\x69\xc3\x69\x44\xeb\x4d\xf5\x5c\x4a\x25\xa9\x5e\x8d\xaf\x55\xe5\x89\xb5\x34\xab\xb1\x54\xd1\x0a\x21\xa5\x27\xd0\xd4\x31\x13\x92\x6e\xbf\x07\x92\xde\xd6\x62\xe9\x03\x4b\xba\xae\x71\x21\xe9\x27\x22\x58\x73\x47\x66\x9b\xa4\x69\x4f\x38\xf2\x4e\xb0\xa3\x63\x6e\xe6\x58\x65\x83\x59\xa5\x43\x95\xb5\xef\x0a\x2a\x33\x29\x8d\x9e\xdf\x66\xdc\x61\x12\x55\x17\xfb\x7e\x17\xd1\x11\x1a\x21\xb1\xae\xf2\x6c\x83\x2a\xa1\x88\x58\x57\x7d\xbe\x41\xd5\x93\x7c\xac\x63\xed\x56\x2e\x2d\x08\xe8\xb6\x5a\x5a\x54\xbd\xa7\x23\x73\xaf\x5e\x7e\xe5\xee\x56\xf5\xf5\x96\x0d\x5c\xcc\x13\xff\xa2\xee\x1a\xec\x12\x2a\xe6\x5d\xb6\xd8\x67\x0b\x5d\x7c\x61\x5f\x96\x82\xc7\x68\x2b\xeb\x54\x01\x1e\x9c\x45\x24\x6b\x61\xa3\xe1\x5a\x46\x4c\x6d\x6b\x66\x15\xac\x6c\xb1\x86\x1d\x7a\x11\x32\x0b\xce\x71\xa9\x41\x96\x31\xb1\x31\x10\x89\xab\x24\xe3\x2f\x57\x9b\x49\xcd\xf3\xd5\x06\x52\x46\x85\x23\x54\x50\xc8\xe5\x12\xa9\x7a\x9a\x39\xdd\xa8\x6e\x41\xff\x24\xb6\xa2\xba\x6d\xd6\x38\x32\x96\x6c\xe8\x48\xa5\xa5\x29\xcd\xb2\x7c\x8a\xd8\xaa\xb4\x45\xe2\x84\xca\x82\xf9\x3e\x25\xb2\x97\x40\xbc\xcf\x8d\x5d\x8b\xb6\xcb\x52\xb8\xb8\xd7\x71\x72\xff\x55\xfc\x0d\x31\x47\xb4\x6d\x5d\x4d\x54\x36\xdb\x84\xa6\x88\x82\xf7\x02\x29\x0a\x9a\x33\x1b\x7b\xc1\x37\xae\xba\x31\x96\x54\x37\xda\x7a\xea\x46\x7b\xff\x59\xad\xb7\x32\x8e\xd7\x2e\xc0\x35\xde\x73\xd6\xda\x8a\xbb\xfe\x38\x14\xbe\xf8\x43\x6d\x67\x85\xf1\xd7\xc8\x95\x5d\x7d\x86\x99\x6f\x84\x97\xe4\x88\xa7\xc6\xda\x24\xeb\x8b\xf6\xb5\x7a\x9d\x29\x7b\x0d\x9d\x15\xb1\x2f\xac\x39\x60\x76\x7f\x45\x8e\xf3\x51\x36\x4b\x72\x70\x2e\x99\x06\x02\x2c\x27\x4b\xe3\x7d\xe2\xfb\x8e\xbc\x03\x76\x25\xea\x7a\xa4\x1c\x01\xeb\x32\x36\x69\xc7\x10\x3e\x60\x43\x65\xde\x0f\x5e\x3a\xa6\x88\xdb\x85\x9a\x54\xbc\x0b\xbd\x44\x7a\xf1\x72\x77\xf1\x7c\xaf\xa7\x85\x72\xd2\xa3\x93\xa4\x69\xf7\xb9\x09\xce\x86\x36\x06\x64\xa1\x72\xff\x19\x4b\xbe\x6e\x8a\x80\x35\x10\x00\xbb\xf7\x25\x4a\x92\xdd\x2e\xd0\x76\x47\xd9\x16\xcd\x30\x0d\x56\x3f\x43\xb9\xeb\xce\x38\x5b\xeb\xef\x24\x69\x18\xc7\x9f\x51\xed\x16\xf8\x27\xea\x8d\x9b\x81\x71\x8d\xb3\x24\xbf\x92\x55\x4b\xae\x7d\x2f\x15\x5d\xe5\x6d\x26\x37\x91\xa5\xa9\xbf\x15\xee\xfe\x52\xb9\x23\xae\xdf\xa7\x85\x8e\xda\x2d\xb0\xfb\xbc\x0a\x5c\xfb\x09\xc3\x54\xa5\x34\xa4\xe5\x12\xc7\x80\x90\x01\xa5\x10\x00\xa1\xca\x70\x62\xc7\xcd\x23\xe3\xe6\xde\xb8\x3f\x33\x15\x24\x3c\x74\x7a\xf1\x52\x15\x7d\xaa\x9a\x1b\x2a\x7e\xd0\x03\x40\xcd\xc3\x57\x5c\x24\x0c\x73\x5f\xf1\x69\x34\x35\x3e\x65\x3c\xbb\xa9\xfa\x6e\x5c\x7b\x9f\xcb\xda\x12\x2f\x52\xf7\xca\x51\xe1\x54\xb6\xbb\x80\x9d\xb4\x65\xab\xc2\x09\xea\x37\xa2\xc6\x16\x5e\xe8\x1f\x88\x96\x21\xe7\x98\x13\x72\x4e\x00\x9b\xe0\x8b\x4b\x82\x6e\x2a\xd4\x46\x65\x20\x64\xe9\x35\x21\x0f\xb0\x57\xcb\x0f\xb0\x40\xd2\xbe\xa6\x42\x43\x14\xea\x5a\xc5\x5f\xd3\x22\xed\xd9\x7b\x2e\xb2\x1f\x92\xd6\x11\xc1\x6d\x19\xe8\x2f\x03\x6b\x71\xbb\x3c\x6d\x15\xeb\xda\x0c\xa7\xe1\xdc\xc1\x2f\x10\x03\xce\x28\x6c\x19\x54\x2d\x65\x8c\x9e\x28\x05\x76\x5e\x9a\xe8\x26\xa4\xd5\x22\xae\xcd\xae\x43\x03\x95\x57\x7a\x12\xbe\xad\x4c\xca\x47\x31\x15\x49\xb5\x49\x7b\x6f\xe9\x71\xef\x88\x95\x3e\x79\x51\x7a\x4c\x2f\x36\x90\x5e\xb2\x35\xb8\x04\xb8\x33\xa4\xe4\x55\xc7\x32\x0c\x73\x9e\xb8\x73\x48\x5e\x76\x51\xb8\xa6\x3a\x54\x15\x4c\x3f\x4f\x6b\x74\x03\x15\x12\xf3\xb6\x13\x59\x6d\x67\x25\xab\xec\x48\x43\xf2\x13\x95\x1d\x75\x7b\xf7\x46\xfa\xec\x15\x12\xa9\x01\x25\x03\x46\x2a\xbf\x82\xdf\x71\xa0\x14\xa9\xaa\x05\x72\x94\xa9\x21\xd8\xac\xb9\x15\xb9\xd1\x8b\xa8\xdc\xe8\x85\x2b\x37\x7a\xa1\xc3\x92\xcd\x9c\x02\x2f\x87\x7f\x2d\x01\xae\xc3\x23\x41\x50\x3b\xf2\xf8\xe8\xe9\xfb\x1f\x1f\xb7\x93\x6d\xfe\xf8\x28\xbf\xf1\x41\x67\x68\x6e\xda\x46\x05\x48\xe4\x1a\x3c\xdc\x64\x94\xf5\x32\x44\x66\x05\xe9\x2d\x10\x98\x2f\xf7\xc4\x12\xe5\xdf\x49\xcf\x1b\xaa\x04\x6d\x6f\x27\xd9\xe3\xe3\xe2\xf1\x51\xa4\x68\xe4\x52\xf7\xb3\x7e\x52\x3d\x66\x33\xff\x8c\xa9\x02\x9a\xb2\x9f\xc9\x67\xcf\x80\x56\xb2\x9a\xc5\x06\x4c\x42\xf1\x1d\x4c\x42\x15\xa2\x02\x23\xdb\x10\xae\x74\x8a\x5b\x05\x59\x33\x34\x42\xd7\x68\x8e\xc6\xe8\x06\xdd\xa3\x5b\x34\x45\x57\xe8\xb2\x0a\x66\x2f\xa3\x60\xf6\xd2\x05\xb3\x97\x1a\xcc\xee\xe4\x15\x50\xae\x91\x24\x40\xee\x8c\xd7\x40\x00\x09\x69\x4c\x37\x98\x90\x72\x8c\xe8\x12\x89\x54\x45\xb1\xf9\x91\xe0\x0a\xd0\x79\x88\xef\x0c\x69\xde\x30\xa6\x25\x72\x50\x26\x50\xe1\x4a\xf4\x25\xc7\x07\xb3\x2d\x0c\xde\x59\xa5\x4f\x26\xc6\x8b\x06\x90\xb0\x16\xa4\x44\xf4\xcb\x66\x18\x46\x9c\xa0\x4b\xae\xd6\x38\x6b\x40\x5e\x94\xd5\xd5\x2c\xa2\xd8\xb0\x32\xa9\xcd\x15\xd4\xb0\x68\x5f\xf1\x60\x58\x26\x01\x58\xa7\xad\xfe\xaa\x65\x67\x6a\x99\x7b\x1d\x44\x15\xb9\xd1\xdb\xee\x42\xb2\xa8\xce\xeb\xd9\x9b\x43\x43\x48\xcd\x76\x76\x52\x2d\xed\x49\x46\xf8\x70\x30\x1b\xa6\xed\xd1\x75\xc6\x0f\x44\xd2\x49\x95\x5d\x68\xb3\xd5\xec\xd1\x49\x72\x0d\x1e\x30\xa8\xd9\xd2\x66\x98\x92\x7c\x1e\xa5\xd7\x78\x01\x90\xb2\x25\x49\xeb\x16\x65\xb7\x84\x17\xc4\x7c\xba\xb4\xa1\x90\x46\xdb\x18\x4f\x14\x25\x0c\x56\xdf\x0b\xc6\x49\x36\xba\x86\xe3\x9c\xa4\x8d\x6b\xcc\x96\xd7\xfd\x12\x02\xfc\x6b\x38\xb9\xae\x4c\x6a\xb6\xd3\x2d\xa7\xd5\x59\x82\x53\x7c\x4d\x65\x95\xbb\x6f\x5d\xfd\xc6\x15\x27\xd9\x17\x30\x53\x6d\xfe\x1b\xcc\x77\x3b\x4b\xd5\xbb\xb9\xca\x38\x3d\x56\x19\xa7\x6f\xf0\x08\x49\x68\xbd\xc1\x23\x4b\xc6\xa6\x08\x82\xf9\x27\xf7\x78\x6e\x7d\x7f\x6e\xd2\xd4\xc6\x0e\x95\xd7\xea\x78\x70\x3f\x5c\x3d\x8c\xee\x32\x4d\x97\x76\x97\x3d\x5b\xb4\xc4\xec\xd7\x4e\x57\x62\xce\xc5\xe3\xe3\xe5\xe3\x23\x4b\x53\x74\x8b\xbf\x96\xd2\xc6\xdb\x5f\x70\xe7\xf5\xed\xee\x6e\x7a\x85\x93\x29\xfe\x3a\xb8\x1d\xa6\xfa\xac\xa1\x69\x5b\x77\xa3\x68\x32\xa3\x2c\x4b\xae\xf4\x8d\xe9\xda\x2c\x5c\xe9\x3b\xc1\x45\x6b\x89\xa8\x3d\x27\xdf\x69\x3a\x10\x3f\xa5\x4f\x37\x25\xa8\xc7\xd5\x3e\xb2\x0e\x03\x6c\xd4\xf8\x72\x96\xf1\xd8\x50\xf1\x3d\xf7\x7f\x43\x9f\x77\x13\x2b\xa1\x36\x52\x42\x66\xa9\xaf\xac\x8c\x94\x70\x95\x8f\xef\xdd\xb2\x99\xef\x54\x73\x7c\x7e\xd8\x94\xe5\xf5\xed\x17\xca\x47\x93\xac\x9e\x58\x94\xd5\xd6\xc8\x54\xb3\xca\x1d\xb1\xdd\x71\x02\x77\x16\xb2\x84\x11\x43\xc3\x48\x96\xcb\xe0\x62\xbc\xf7\x0d\x97\x2a\x2e\x77\x86\x26\x35\x62\x09\xb4\xdd\x2d\x2d\x72\x0c\xa5\xec\xb9\x0f\xab\x97\x1e\x91\x01\xc7\x7d\x85\x4d\x8a\x09\x12\xe1\x8d\xcc\x0b\x64\x50\x67\xd1\xe8\x81\x6c\x85\x36\xb6\x3a\xa8\x8e\x75\xef\x3e\xa6\x57\xa5\x0f\x76\x22\xaa\xc4\x71\x3d\xdd\x50\xe5\x37\x4c\xee\x8a\x6f\x55\x94\x22\x8e\x3d\xd6\xa4\x5d\xba\x77\xa1\xdc\xe6\xbb\x40\x19\x86\x7c\xb6\x37\x94\x25\x4c\x4b\x2e\x2a\x0b\x90\xa5\x1e\x5a\x2a\xad\x54\xe5\xe2\x80\x7b\x4b\x06\x7e\x2d\x31\x9a\x60\x32\x47\x6c\x57\x44\x4c\xa3\xf8\x40\x0c\x1d\x9e\x6c\xd3\xed\xd6\x26\x58\x72\x54\x25\xb2\xd8\x68\xcf\x8b\xfa\xf4\x43\x31\xb6\xb1\xc2\xa4\xa9\x18\x89\x91\x2d\x42\xdc\xde\xcf\xb0\x18\xc4\xf5\xf5\x81\x60\x9c\x43\xc4\x6d\x4a\x89\x4a\x3f\x2c\x74\x61\x33\xdf\x21\x01\x48\xc2\xc3\x69\x28\xea\x69\x83\x79\x64\x9a\xf1\x0d\x18\x2f\xc3\x1c\x45\x34\x40\x1d\x64\x93\x2f\x18\x15\x90\x4a\x5b\x47\x34\x29\xa0\xf3\x02\xf5\xc8\xbf\x74\x31\xee\xf4\xc9\x2f\xbb\xdd\x3e\xc3\xa4\x97\x54\x78\x6f\x55\x12\x36\x14\x3f\x4b\xd7\x14\xe8\x7a\xf7\xaf\xce\x99\xd7\xd3\x55\xec\x76\x20\x81\xf7\xdc\x72\x57\xca\xd2\x51\x16\xec\x3c\x12\x24\xf0\xbe\xfb\x55\x67\x99\xef\x31\xbc\x17\x7e\x5a\x18\xd9\x90\xfc\xba\xef\x7c\x35\x1e\x26\x15\x91\xdd\x11\xbb\xcd\x66\x74\xbc\x65\x17\x6f\x6b\x9e\x15\x05\x19\x43\x5e\x1e\x57\x70\xd1\x54\x81\x2d\x74\xc4\xd5\x82\xfe\x49\x8e\x6e\x6e\xc8\x98\x66\x82\x24\xec\xcd\x9b\xfd\x47\x81\x98\x2b\x89\xe8\xee\xa3\xca\x06\xbb\x95\xe2\x1e\xd5\xe4\x17\x5c\xa6\x5f\x7a\x7c\x24\x6f\x3a\xfd\xf8\xea\x8a\x54\xf6\xf9\xbc\x47\xaa\xcc\x77\x55\xd6\x12\x11\x77\x58\x46\xda\x62\xbe\x88\x83\x6e\xb5\xed\x88\x0f\x61\x9d\xbd\xf9\x5e\x28\x60\xb8\xb6\xbe\x8f\x7e\xbb\x35\x97\x5c\x5d\xbb\xcf\x57\x0a\x2e\x2a\xad\x17\x3e\xf7\x16\x71\x67\xb7\x56\xb0\x26\xae\xc2\xca\x50\x59\xc4\xe0\x31\x73\xdd\xe6\x98\x9a\xb0\x59\x19\xa6\xbe\x5b\x67\x81\x69\x24\x6c\xd6\x36\xc6\x79\xab\x65\x38\xe6\x56\xab\x00\x85\x83\x00\x5c\xac\xc4\xa1\xa2\x14\x87\xe2\xbd\x54\x0c\xf8\x70\xd0\x19\xe2\xe6\xbf\x35\x77\xf4\xef\x8a\xe1\x4a\xcc\xb9\x33\xf7\xf0\x6b\xe8\x2b\x2a\x39\xc2\xf2\x82\x16\x68\xbb\x8b\x58\xab\xc5\x52\xb4\x6d\x32\x30\x6d\x77\x63\xd7\x9a\x16\xfb\xd6\x18\x12\xaf\x11\xeb\xd0\x55\x92\x3c\x91\xa2\x3c\xfc\x9e\xe9\x94\xa1\xce\xc9\xfa\xf9\xb9\x8d\xb7\x11\x01\xa3\x52\xde\x5c\x67\x9a\xf5\x02\xf9\xd8\x27\x68\xc7\x84\x6c\xaa\x75\x87\xf8\xf9\x65\x05\x02\x3d\x71\x64\xf8\x35\xd3\x93\x0b\xfa\x11\x9e\x6f\x90\x6f\x6a\xf7\x22\xde\x43\x75\xb0\xb1\xf8\x45\x75\xd6\x78\xfb\x9b\x36\x7a\x13\x0b\x23\x61\x83\xc1\x6c\x26\x87\xdc\xee\x78\x32\xbc\x4e\x3d\x32\x58\x7d\xb7\xeb\x08\x99\x75\xe1\x37\x22\x93\x71\x20\x65\xef\x65\x45\x16\xec\x44\xab\xde\x10\x82\xed\x25\x45\x4d\xba\x8b\xca\x47\x91\x1a\x87\xdb\x50\xb4\xde\x77\xd6\xff\x25\xe2\x08\x24\x78\xac\xdf\x95\xcc\xbb\x23\x1e\x4f\xf6\x5f\x84\x1f\x63\x58\xac\x7e\xd4\x75\x07\x4b\x8e\x3b\xff\x96\x71\x27\xab\x44\xf7\xcc\xdd\xdb\xfd\x97\x88\xa2\x2e\x82\xf8\x75\x75\xab\xe7\x57\x78\x8e\x28\xe2\xb2\x82\x3f\x47\x5f\x7b\x52\x85\xe2\x8d\x58\x07\x75\xf7\x86\x82\x3c\x47\x9f\x54\x77\xad\xac\x46\x0a\xd7\xf1\x6b\xe3\x9b\x0f\x44\x45\xfa\x5e\x7f\x1e\x36\x95\xbb\x5f\x51\x36\x8e\x7b\xe2\xf9\x06\xb6\x1a\x0d\x00\xd1\x1b\xbb\x8c\x0d\x43\x1b\x39\x72\xa4\x2d\x79\x5c\x15\x2b\x24\x1f\xdf\x6b\x93\x22\xcf\xd4\xaa\x4e\x2c\xa6\x4c\x28\xc1\xae\xe9\xe8\xe4\xe8\xe2\xe8\xe0\xb8\x99\x9a\x9c\xff\x89\x3e\xb3\xca\xc8\x8b\xa7\xa8\xe4\xfa\x15\x17\xfa\xe1\xe8\xe4\xe0\xf8\xf8\xef\x4d\xcf\xfc\xc9\x6d\x39\x28\xef\x76\x12\x5f\x4e\xd7\xa6\xaa\x6e\x01\x02\x7b\xc2\x12\xeb\xc0\x02\xc0\x4a\x48\x4e\x4c\x05\x3d\x84\xec\xe6\x74\xf2\x21\x9b\x15\xa4\x46\x34\xc0\x2a\x5c\xbf\x88\x71\xfd\xe0\xec\xa2\xed\xc2\x9c\x89\xfb\x1c\x39\xa2\xad\x16\x4d\xaa\x8c\xb9\x13\xd5\x32\xc6\x47\xe8\xb0\x21\x2e\x91\x63\x42\x88\x90\x6a\x2c\x10\x03\xa2\xde\xdb\xb0\x47\x27\xac\x61\xdc\x34\xa9\x2a\xaa\x80\x0e\x4b\x3b\x0a\x2d\xcc\xee\x5b\x0e\x48\x05\x6d\x0a\xaf\x01\x39\xda\x08\x6a\x50\x2a\x25\x3a\x49\xb6\x89\x51\xf9\x77\xea\x58\x36\x87\xdf\x07\x1e\xd5\x0e\xc1\x64\xd1\x8b\x74\x59\x51\x49\x22\x86\x68\xfa\xc0\x5c\xb9\x76\x28\x98\x04\x8f\x69\xe7\x2c\x54\xbe\x93\x59\x41\x56\x7d\x07\xb5\x4c\xaa\x43\xa2\xa0\x0c\x15\x1e\x61\x6a\xd4\xcb\xe9\x9b\x37\xcf\x1a\xb4\xd5\x4a\x8a\x47\xfc\x0a\xdc\x8d\xe4\xaf\x97\xaa\xda\x02\x7b\xa1\x5e\x1a\x96\xc2\x5c\xa8\xc0\x26\xb9\x0a\x6c\x92\xe1\xce\xeb\xac\x0c\x62\x91\x79\xab\x94\x0f\x32\x97\x93\x07\x84\xb6\x80\x3c\x71\x3e\x21\xa3\xe2\x39\xc6\x00\x4e\xc7\xa6\x73\x83\xad\x92\x54\xef\x6f\xd5\xea\x49\x18\xab\x27\x43\x5d\xaf\x34\x43\x0a\xe1\xca\x88\xf7\xeb\x24\x63\x60\xa3\x24\x96\xc9\x41\x8a\x3e\xd6\x19\x29\x39\xb9\x07\x37\xb1\x50\x8a\x67\x8f\xdb\x50\x53\x6f\x85\x23\xde\x60\x48\x49\x32\x9c\x8a\x6b\xe0\xa3\x37\xd0\x7d\xba\x57\x61\x8d\xa1\xd9\x8b\x08\x3b\x17\xb1\x47\xfc\xae\xfe\xc3\xf6\x56\x0e\xc0\x65\x4b\xe2\x97\x95\x19\x00\xf2\x5a\xa9\x4a\xea\xc0\xbd\x32\x9c\x1b\x54\xae\x73\x89\xd0\xcc\x69\xae\x3b\x08\xa9\xea\x4a\xd5\xb8\x1c\xc6\x54\x5f\x4a\xb0\xfa\x92\xa2\x8b\xff\xbe\x60\xa5\x2f\xf0\xbe\xc5\x6b\x49\xea\x88\xb1\xcb\xbd\x0d\xe9\xe5\x3a\xc0\x7a\x12\x2c\x95\xc2\x86\xb2\xf7\xef\x82\xaa\x0d\x01\xc9\x50\x2d\xb6\xd3\xd7\x10\x9f\x4d\xf4\x63\xb2\xde\x2a\x96\x71\x2a\x2e\x1d\x62\xdd\x95\x0f\xdb\xad\x7f\xb7\xc2\xec\x51\xde\x17\x3a\xb8\x15\xb9\xdb\x2a\x74\xc6\x27\x0d\x44\x92\xde\xc9\xf4\x07\x9d\x53\x2a\xc9\xcd\xd5\xf4\x64\x43\x49\x8a\x32\xc8\x91\xb7\x19\xa8\x94\x01\xdf\xea\x88\x85\x8f\xba\x0b\x35\xcf\xc3\x14\x9d\xb9\xdb\x60\xa7\xe9\x46\xdd\x93\x84\xa5\x0d\xeb\x6a\xae\x06\x11\x0b\xfb\x24\xa9\xf2\x50\x98\xe0\x51\x0e\xa6\x7a\x69\x6c\x06\x72\x69\x67\x5f\xf4\x3a\x3d\x38\xe2\xf0\x9e\x27\x1c\x47\x3a\x9a\xa2\x58\xea\x88\x4b\x9f\xb0\xca\x47\x74\xb2\x76\x22\xf1\xbc\x1b\xc7\x5e\x10\x41\x1d\x52\x50\x89\x50\x74\x21\x98\x50\xf9\xe6\x4e\xa5\x35\x3b\x2e\x4b\xfa\xc1\x06\x35\x15\xad\x49\x28\x1b\x77\x50\x55\xd6\xb4\x11\x2e\x03\x05\x7a\xd2\x27\xd7\x2e\x52\x5d\xb4\x63\x2c\xda\x74\xfc\xf8\xd8\x1c\x41\x4c\xe9\xdd\xe6\xce\xa7\x9d\x9d\x68\x92\x9f\xa2\x7a\xac\xaa\xd9\x4a\xfa\xce\xef\x9e\x37\x63\x72\xb7\x35\x0d\x28\x49\xc8\x86\x9a\x15\x05\x9d\xb2\x34\x91\x67\x34\x5c\x35\xf4\x60\x37\x52\x6b\x45\x03\x0f\x96\x08\x38\x04\xd9\x3c\xc0\xe2\xd0\x7d\xf8\xc1\xa3\xea\x44\x46\xf5\x37\x6f\x07\x6b\xc6\xe6\x6d\x73\xbf\xfa\xaa\x17\x03\x06\x72\xb7\xf5\xf5\x47\x2c\xa2\x4a\xfe\xec\x66\x8c\x9b\x20\x9b\x4a\xae\x72\xb6\x7e\x94\xfb\x9c\x1c\xfe\xfd\xb7\x7b\xfc\xc9\xea\xb7\xbe\x39\x75\x93\x4e\x9a\x91\x6c\x82\x20\x1f\xdd\x26\x8f\x8f\xdd\x6d\x8c\x0d\xb5\x5e\x35\xbf\x3d\xff\xfb\xc9\xc5\xc1\xff\xd9\x3a\x3c\x3b\x3b\x3d\xeb\x6d\xfd\x0f\x3a\xd9\xe2\xe4\x1f\x0b\xca\x49\xb1\x95\x6d\x15\x94\x4d\x67\x64\xcb\x8c\xa0\x99\x36\xe8\x66\x91\xee\xa9\xe1\x18\x3a\xc3\x14\xd1\x32\x0e\x43\x92\xa2\x6e\x2c\xe4\x3d\x8d\xc4\x70\x64\xa9\x2c\x09\xcc\xa1\xd7\x43\xab\x15\x2b\xcd\xbd\xc0\xf7\xcd\x05\xf0\x87\x3f\x6e\x5d\x54\x7b\xff\x25\x6b\x53\x3f\xe1\xd8\xf2\xd4\xac\xa4\xbb\x36\x77\x54\x5c\xff\xb8\x95\x91\xad\xfd\x15\xeb\xa2\xd4\xfe\xfe\xfa\x44\xd3\x25\x44\x67\x8c\xba\xdf\x03\x3d\x24\x1b\xc5\x56\x28\x4f\x1f\xf2\x4d\xac\x17\x44\xab\xd5\xfc\x42\xee\x21\x27\xed\xa0\x33\x94\x38\x20\x57\x93\x93\xec\xa3\x9c\x5f\x2f\xaf\x15\x13\x82\x81\x4e\xee\xae\x45\xc4\xf4\x21\x77\xdd\xf0\xc1\x59\x2f\x22\x14\xc9\x3d\x99\x52\x1e\xd1\x45\x77\xe5\xeb\x52\xce\x74\x74\x71\x78\x06\xf5\xac\xc7\xbe\x0d\xb2\x9a\x1b\x51\x8a\x2d\xa3\x7d\xea\x93\xe6\xdb\xb3\xc3\x83\x7f\x77\x8b\xd8\x2a\xb1\x7d\xd9\x83\x71\x29\x07\xbf\xbc\x22\xb1\x29\xdb\xb0\x8d\x1a\x57\xff\x44\x57\x2c\xe7\x53\x5b\xd9\x08\x85\x5a\xad\xd8\x18\x82\xbd\xa6\x6c\x97\x98\x0c\x9e\x3f\x0c\x8b\xda\x36\xbf\xef\x64\x18\xaf\x02\x2f\xae\xaa\xe3\x44\x92\xbb\x9e\x0b\x72\xa4\x4d\x27\x27\x75\x73\x1b\xd2\xd9\xe5\x03\x36\x4c\x5b\xad\xe6\x74\x41\xc7\xf2\x15\x7f\xca\xe8\xc7\x39\x51\x9e\x18\x22\xfb\x42\xb6\xb2\xad\xff\xdb\xdc\xc9\x07\x9d\xe1\x4e\xf3\xff\x6e\xe5\x73\x39\x48\x98\x04\xc0\x6a\x06\xae\x12\xab\xce\xf2\xb3\xf8\xe9\x9d\x87\x61\xcd\x94\xe1\x7f\x04\x8b\x21\x5a\x89\x65\xe6\xe7\x3b\x69\xee\x4a\x6c\xb4\xab\xf5\x15\xbb\xb7\x19\xaf\xb9\x02\xb4\x8c\xa8\x21\xfa\x89\x1f\xb3\x96\x06\xf2\xa2\x0c\x3a\xad\x9a\x49\xd2\x8a\xe8\x38\xc9\x57\x0f\xdb\x6f\x20\xed\xd5\x20\x6a\x3b\x95\xd2\x33\xa7\x0e\x2c\x8d\x69\xc0\x36\x36\x76\x09\x83\xce\xf0\xf1\x71\x9b\xc6\xf5\xb7\xb0\x1b\x20\x82\x37\x9c\x15\x51\x13\x27\xd6\x74\xaf\x41\xab\x29\x97\x72\x93\x70\x49\xa0\xed\x8e\xca\xeb\x6c\x13\x67\xac\x1a\xa4\xf1\x5b\x13\xad\x96\x5c\xe0\x86\x33\x60\x13\x48\x7f\x8b\xb6\x5a\xbc\x66\xb0\x54\xeb\x00\x4c\x62\xca\xed\x8e\x49\x0a\xaf\x77\xab\x1c\xb4\x86\x39\xbe\x62\xec\x0c\xc6\x6e\x1d\xbe\x90\x24\x59\xb5\x10\xb7\xe8\x11\xa4\x13\x1e\x48\x86\x47\x33\x4b\xea\x13\x08\xad\xf5\x47\x1d\xb2\x49\xc5\xee\x10\xc8\x11\xd1\x15\x98\x49\xea\xd7\xcb\x49\xfc\x0e\x95\x01\xc8\x2f\x51\x24\x9b\xf1\x21\x0a\x53\x1e\xeb\x04\x9b\xd5\xdc\xc8\x57\x28\x96\x43\x79\x8a\x62\xd9\x96\x3f\xa2\x68\x62\xe6\x0b\x14\xe6\x6f\xfe\x82\x22\x49\x9e\x0f\x50\x2c\x1b\xf4\x19\xaa\x66\x8d\x8e\x49\x0c\xe8\x18\xd6\xeb\x86\x88\x0c\x24\xfb\x2a\x2c\xbc\x93\x42\x54\x04\x2c\x96\x61\x44\xe9\xb8\x97\x21\x59\xad\xc7\x90\x92\x6d\xf6\xaa\xfe\x2c\x05\x16\x7d\xb0\x96\x75\xe9\x7c\xc4\xd2\x1e\x33\x00\x90\x3f\x3e\x26\x39\xfe\xdf\xe7\xa7\x27\x8a\xf6\x4f\x68\x9a\x22\x89\xe6\x4e\x12\x82\x54\x27\x4a\x6c\x9f\x23\xc3\x00\xf6\x8a\x65\xba\x84\xc0\xa7\x2a\x3d\x76\xa8\xab\x92\xa8\x96\x56\x68\x75\x94\x63\x9d\x36\xf5\x97\xfd\x3e\xdd\xdd\xef\x75\x52\x94\xe1\xfd\xd7\xd9\x1b\x0a\xc2\xe0\x7c\x90\xed\xee\x0f\x1d\x2a\x3e\x53\xd9\x54\x21\xff\x58\xa3\xc6\xee\xb7\xa9\x53\xbd\x6e\xa9\x2d\xd9\xfa\x48\x44\x36\xce\x44\xb6\x35\x81\x2c\x7f\x2a\xe3\x82\x93\xd1\xdb\x93\xec\xb8\x79\xbf\x63\xae\x40\xa4\x51\x92\x26\x09\xdb\xc1\xa7\x60\x0e\xd4\xfe\x42\xee\x8b\x44\xa4\xed\x9b\x6c\x1e\xf1\xec\x6f\x6e\x35\x77\xc8\x4e\x13\x37\x77\x94\xef\xdf\x80\x0c\x97\x69\xfb\x3f\x73\xca\x92\x66\x33\x4d\x51\x33\x69\xee\xb0\x9d\x66\xda\x94\xfd\x07\x89\xc8\xbf\xa2\x68\xc2\xf2\xdd\x6e\x90\x9e\xdd\xe4\x43\xf7\xd2\xb2\xaf\xca\xc1\x3e\x0c\x1c\xc8\xbc\x64\xe9\x06\xc8\x31\x69\x97\xa9\xc6\xcf\x16\x4c\xd0\x1b\x27\xf7\xf8\xdf\x38\x15\xe4\x94\xcd\xee\xcb\x57\xbf\x91\x6c\x6e\xd3\x8a\x1b\xdf\x32\x79\xea\xca\xdf\xba\x19\xf7\x95\x6d\xc8\x7b\x79\x78\x7c\x7c\xf9\xef\x27\xa7\x7f\x3b\xb9\x74\x54\x09\x97\x9f\x4e\xcf\x8f\x2e\x8e\x4e\x4f\xdc\xf4\xce\x0c\x3f\x2c\x11\x37\x9b\x31\xe1\x84\xfc\x49\x20\xa2\x34\xad\x91\xb3\xd8\x94\x2f\x12\x8d\x16\x78\xa0\x63\x28\x80\xb1\x44\x81\x07\x5c\x3f\x0b\x15\x92\xc8\x7c\x56\xd2\x9c\xf2\x59\x4b\x08\xc7\xf6\x85\x32\x8f\xaa\x0b\x34\x1e\xb1\x14\x74\x8c\x09\xf4\x58\xac\xa5\x37\x29\xed\xf7\x7e\xd9\xed\xf6\x35\x0b\x6f\x4a\x81\x20\x99\xa4\x61\xa2\x63\xc7\x16\x24\x6a\xf5\x29\x0f\xb1\xb6\x14\xb1\x9e\x3a\x75\x16\x86\xd6\xb4\xd0\xa8\xa5\x5d\xad\x55\xb9\x5c\x95\x14\x26\x59\xa5\x77\x3a\x49\xc0\x77\xc8\x74\x69\x35\x65\xce\xf4\xd5\xd2\xaf\x99\xbd\x2e\x54\x33\xf9\xeb\x95\xb9\x52\xf4\xe6\xd5\xf7\x90\x78\x7b\xaa\x43\xa4\xa5\xde\xce\x97\x3d\x57\xc2\x44\x95\x96\x46\x91\x01\x00\x2a\x55\xcb\x48\x27\x60\xa5\xc3\xe2\x9b\xee\xc4\x2a\x07\x1b\xc8\xc8\xa6\x8b\xca\xbc\x15\xd4\xd5\xcd\x5b\xc3\xe4\x9a\x95\x35\xa5\x6a\x96\x56\xe4\x9f\xf2\x3c\x22\x19\x7b\xd0\x43\xf3\xc6\x89\xd4\x36\xb9\x5b\xa6\x05\xa1\xfa\x9d\x7e\x40\xba\x53\x6f\x04\x46\x52\x9a\xaf\x95\x90\xda\xd4\x4f\x04\x79\x87\x59\xd8\x71\xb8\x67\x5a\x98\x91\x78\x27\x59\xd8\xb1\xf8\x07\xda\xdb\x74\x0f\xa9\x97\x02\x6a\xe3\xc8\x65\x0e\xbd\xb0\x53\x88\x4b\x9b\xcf\x57\x1b\x0a\xeb\x41\xcb\xbb\x21\x0c\x0e\x76\x52\xdd\x60\xb7\xa6\xee\x36\x56\xf3\x7c\x35\x3e\x30\x29\xfc\xa7\x44\x58\xfb\x31\xea\x20\x09\x1e\x41\x12\xdc\x37\x43\xe6\x03\x31\x44\xd4\xe2\x0a\xdb\xa7\x63\x7f\x4c\xab\xe9\xc4\x2a\x03\xaa\xa0\x95\xea\x74\x8c\x3f\x7c\xcd\x29\x37\x73\x31\x7b\x38\x20\xd6\x4e\x91\x63\x08\x79\x93\xf8\x98\x60\x40\x86\x91\x3a\x41\x6a\x28\xfd\x03\xac\xee\x79\x75\x79\xeb\x8e\xbd\xee\xd8\x21\xa1\x82\x3d\x36\x29\x18\xb2\xb8\xe6\x86\x27\x8e\xde\x06\x84\xb2\x4f\xd0\xc3\x94\x31\x29\xf2\xf2\x90\x70\x44\x5b\xad\x24\xb7\xa7\x84\xda\x53\x92\x9b\x23\x42\xcd\x11\xc9\xed\xf9\xa0\xf6\x7c\xe4\xe5\xe1\xc8\x37\x38\x19\xb9\x3d\x16\xd4\xfc\x4a\x51\x5e\x6a\x86\x84\xa3\x19\xe2\x10\x68\xf5\x9b\x41\x9e\x7f\xf3\x31\x8b\xd6\xfc\xaf\x3f\x2c\xfc\x1b\x0f\x0b\xff\x6f\x76\x58\xc2\xe5\xfd\x9e\xc3\xc2\x97\x09\x4d\x51\x11\x3f\x2d\x56\xc2\xb3\xe9\x51\x89\xab\xb8\xcb\x3c\x69\xa0\x5a\x07\x3a\x8f\x79\x57\xbb\x7a\x15\x87\x62\x26\xa1\x98\x6d\x4e\x13\xa8\x39\xba\x8d\xaf\x23\xfd\xbc\xb2\xce\x45\xcd\x9e\xb6\xce\xd5\xc6\x00\x7a\x82\x56\xaa\x06\x0c\x6e\x75\xb5\x40\x03\xb2\xdb\x0d\x6a\xae\x36\x5e\x50\xd5\xcc\xd8\x97\x88\x2d\x93\x2c\x45\x8b\xba\xab\x5e\x5f\xf4\xd7\xc0\x53\x68\x9b\x89\xc9\xa4\x20\x02\x77\xdc\x3d\xa8\x49\xd2\x4f\xff\xac\xcd\xce\xdf\xdd\x49\x92\x97\x2f\x5e\xb5\x6c\xf3\x72\xc6\x57\xf7\xd9\x78\xac\xfd\x91\x54\x37\x69\xfa\xcb\x2f\xaf\x52\x1b\x9c\x88\x16\x5a\xf9\x5e\xdb\x6c\x67\xef\xd9\xda\x36\x6d\x73\x72\xbd\xea\x5a\xda\x7b\xfe\x7c\xf3\x86\xf2\x79\x77\xa5\xa9\x52\x7d\x1b\x3b\x5d\xb7\x95\xbd\x6f\x6d\x65\xcf\x6d\x65\xff\x5b\x5b\xd9\x4f\x6d\x1c\xa7\x86\x85\x82\x99\x1f\x5e\xe5\x91\xbc\x79\xb3\xb7\x54\xf1\x08\xba\x9d\x67\xaf\x9e\xbf\x7c\x81\x26\xf5\xe0\x63\x31\xb7\x36\x34\x29\x13\x4c\x96\x4c\x9c\x81\x28\x97\x30\x34\x4f\xa3\x6c\x9e\x8d\xa8\xb8\xc7\x23\x04\x61\x23\x88\x4e\xb9\x02\xe2\x19\x60\x0e\xc1\x08\x53\x3b\x60\x94\xc0\x2a\x2f\x85\xcf\x94\x89\xfd\x3d\xeb\x5b\x50\xf2\x93\x26\x55\xa9\xee\xb8\x5c\x16\x2d\x13\x71\xc7\xc1\x83\x71\x74\x8c\x47\x72\xb4\x9b\x91\xd7\xcd\x60\x18\xcd\x80\x3a\x0f\xf3\x1c\x29\x7c\x40\xff\x24\xef\xae\x49\x69\xca\x2c\x3b\x18\xb8\xdb\xb3\x33\xc4\x24\x60\x7a\x4c\x9d\x8a\x4e\xb7\x21\xd9\x3d\x6f\xe4\xad\x56\x42\xf0\x4d\x39\x76\xd4\x71\x17\x21\x5d\xb1\x76\x86\x6b\xdc\x19\x39\xa5\xda\x05\x11\x90\x65\x29\xdc\xa7\xe0\xc5\xee\x6e\x85\x66\x53\x90\x57\x8b\xa2\x60\xde\x21\xe9\x59\x44\xaa\x59\x3e\x44\xd7\x08\x93\x84\xa9\x74\xa8\x15\x6b\x34\xa1\x9c\x26\x81\x93\x2b\x17\x00\x75\x90\x76\xca\x27\xee\xb5\xeb\x71\xdb\xea\xd5\x0e\xde\x47\xc1\x3e\xb8\x59\x51\x63\x03\x84\x2e\x07\x64\xa7\x3b\xc4\xb3\x44\xa0\x30\x50\x5c\x11\x24\xc3\xf5\x10\x36\x8c\xae\xb2\x86\x2b\x57\x50\x77\x57\x65\x46\x22\xfc\x79\xb8\x24\x04\xcd\x92\x0e\xda\x4f\xcd\x6a\x88\x0d\x56\x43\x54\xa7\x93\x4f\xaa\x13\xaa\x88\x4a\x46\xf9\x9c\x84\x85\xe3\x53\xd9\xe9\x0e\x7f\xf9\x65\x2f\x58\x74\x4e\x6a\x6f\xf5\xb2\x5a\x23\xdc\x00\x7f\x7b\xcc\xf1\x7c\x14\x6f\xde\xec\x77\x96\x89\x40\x95\x94\x33\x7e\x5e\xdc\x95\x07\xd7\x5d\x31\x73\x68\x1b\xce\x61\x1e\xe2\xbd\xee\xb3\x97\xcf\x5e\xed\xbf\x78\xa6\x1d\x0e\x5c\x84\xa8\x36\x60\x20\x90\x62\x4e\xdc\x31\x64\x62\xe4\x0e\xa2\x6a\xd4\x61\xb4\x29\xb8\xd2\x2a\xd0\xc2\x04\x77\x5e\x93\x32\xca\x16\x01\x5a\x38\x11\x98\x4a\xda\x4e\xc5\x47\x03\x9d\x91\xa6\x4c\xcc\xe5\xc0\x10\x4f\x2a\x99\x89\xb3\xb9\x58\xf0\x1f\x67\x45\xe2\x2c\x96\xbe\x23\xc2\xc9\xda\x75\xf5\xb1\x17\x49\xf5\x5d\x60\x64\xef\xc6\xd4\xab\x04\x4e\x04\xfb\xde\x2b\x41\x00\xa9\x1a\xa5\x39\xd8\x75\xad\x78\xf2\xbb\x4d\x63\xe8\xf7\x99\xc6\x4c\x4c\x00\x1f\x2b\x8f\x75\x50\xb4\x56\xda\x5c\xe6\x4a\x46\x2c\xcb\x2f\xca\xc5\x89\xde\x3a\x79\x28\x52\xf7\x0f\x9a\x6e\xca\xdc\x89\xc4\xeb\x40\x2f\xd6\x7c\x03\x9b\xb9\xef\x1a\xed\xf5\xfd\xd8\x0f\x6e\xef\xa9\xdf\x60\x55\x5c\x01\x1d\x24\x17\x94\x7f\xf3\x84\x23\x96\xaa\xb4\x8a\x3f\x76\xca\xe3\x7a\x7e\xc7\xa1\x7f\xbf\xdf\xa4\xb7\xca\xc7\x2c\x93\x6b\x87\x0a\xbb\x31\x6a\x1c\x3a\x49\x2c\x00\x69\x6d\x67\x6a\xd7\x4f\xe9\x11\xc1\x13\x59\x9e\xfa\x32\x07\xa3\x7b\x9d\xb3\xf4\xb5\x78\xc3\x54\xbe\x4a\x89\x92\xc8\x40\x94\xac\xe7\x72\xbd\xd4\xbf\x83\xa2\xea\x02\x8a\x22\x8a\x85\x1c\xb9\x9a\x87\x0c\x85\x7a\x09\xb9\x34\xa0\xb0\x98\xa0\x88\x32\xe3\x1a\x55\x54\x1e\x73\x54\xea\x43\xc6\x56\x13\x88\x17\x81\x2e\x86\x1b\x23\x94\x6f\xd5\xc6\xc8\xa5\x0e\xf4\x31\xb4\xd0\xd9\xb2\xc7\x98\xb4\xad\x95\xcb\xbb\x6c\x74\x4d\xb0\x24\x36\xe6\x98\xb4\xe1\x69\x5c\x3a\x5e\x93\xf6\xe7\xf9\x38\x03\xd4\x73\x91\x4d\x6d\x01\xf5\x7b\x94\xdf\x5c\x51\x46\xca\x5f\x4a\x1b\x66\x1f\x2f\xb2\xe9\x14\x3a\x7b\x4f\xb9\xb8\x2f\xdb\xb8\x5a\xdc\xc8\xbe\x68\x01\xeb\xa8\xde\xe9\x07\xd9\xc3\xe7\xb3\xb3\xc3\x93\x8b\xcb\x8b\x83\x5f\x31\x69\xff\x7e\x7a\x7c\x70\x71\x74\x7c\xa8\x1f\xdf\x9d\x9e\x9c\x5f\x1c\xd8\xaf\x17\xd9\x54\x29\xbb\x38\x4c\xe9\x96\x16\x34\x67\xaa\x41\x53\x11\x93\xb6\xf6\xa5\x72\xaa\xcb\x97\xda\x62\xe7\xfc\x9e\x8d\xae\x79\xce\xe8\x9f\xba\x11\x3d\x75\x9b\x58\xc3\x14\xa5\x39\x3b\xe0\x82\x4e\xb2\x11\xe8\x96\x8e\x69\x21\x8e\x04\xb9\x31\xaa\xa9\x72\xcd\x1c\xad\x12\xc7\xdd\x15\x0a\xa4\x18\x96\x03\x6f\xfe\x1a\x67\x14\x38\xde\xb7\xd9\x6c\x41\x92\x14\x63\xac\x8f\x78\x83\xb6\xe9\x18\x1b\x95\x3c\x84\x2e\x1f\x0c\x51\xb1\x16\xd5\xc9\xee\x0c\xce\xa0\x8c\x11\x1e\x37\x72\x86\xfe\xaa\xb4\x50\xd2\x41\xf9\xc0\xb6\x33\x54\x78\x42\xb5\x13\x20\xb1\x15\x33\x4a\x3a\x28\xab\x69\x44\x85\x92\xf6\x18\xb9\x45\x49\x23\x19\x63\x9b\x86\x0e\xc7\x1e\x59\x2c\x62\x56\x6a\x69\x22\xca\xc4\x33\x51\x97\x03\x4c\x84\x32\xf9\xa0\x63\x2c\x96\x61\xc3\xb6\x7c\x67\x4d\x7b\xc0\xb7\x2c\x4d\x0c\x56\xb0\x8b\x4f\x94\xbd\x43\x5a\x19\xad\xad\x74\x92\x9d\xac\x69\xf6\x24\x3b\x71\x1a\x1e\xe9\x86\xbb\xeb\x1a\xbe\x5e\xd3\xac\xc0\x18\x5f\xeb\x46\x27\xba\xd1\x3d\x6d\x98\x71\x8d\x39\xbc\x9f\xaf\x13\x99\x7d\x23\x8d\x71\x8d\xf8\x77\x08\xa6\x79\x9b\xeb\xf3\x8e\x19\xe2\x2b\x05\x6a\x4a\xba\xf3\xc3\x08\xbe\x6b\xf7\xfe\x2e\x34\xcc\x8e\xc1\xba\x81\x29\x5f\x1c\xb6\xfe\xfc\x6c\x69\xb9\xa7\x9a\x82\x5f\x65\x4c\x3d\x3f\x5f\xab\xac\xd2\xd3\xdd\xd9\xb9\x06\xb9\x17\x75\xce\xc6\xd8\x49\xa2\x4b\xfc\xe4\xb9\x1d\x93\x96\x76\xd6\xf0\x93\xe9\x92\x41\x67\x18\x64\xcd\xbd\xd7\x6b\xa5\xec\x93\x20\xfe\x6b\x98\xdc\xf6\xd6\x16\x49\x97\xcb\x45\x32\x57\xb0\x73\xf3\x4f\x12\xab\xce\xb2\x42\x00\xaf\x42\xc6\xca\x45\x41\xbd\xfa\x1d\x16\x59\xbd\xd8\x50\xb6\x5a\xd9\x17\x87\x75\x76\x7a\x69\xd8\x17\xd0\x87\x35\xf7\xde\xc6\xf8\xda\xb8\x50\xba\x83\xba\x46\x7e\x85\xd2\xf1\x71\x21\x48\x92\xa6\xc1\x67\x7f\xe3\x29\xab\x22\x4b\x9b\x3a\xcb\x9f\xb8\x86\x00\x74\x5f\xb7\xf0\xcc\x0b\x57\xfe\x8d\x87\x8c\xb6\x27\x94\x17\x02\x33\x44\xdb\x05\x19\xe5\x6c\x8c\xb9\x1b\xc9\x77\x83\xc3\x16\x66\xfd\xaf\x1c\x18\xf0\xf7\xf1\x96\x41\xaf\x56\xe4\xd0\xa8\x88\x50\x99\xf6\x39\x80\xb1\x19\x34\x6f\x58\x3f\x39\x48\xf3\x4e\xc9\x87\x6f\xd2\xc6\x22\xb9\x57\x70\x7a\x5b\xbb\x5c\x26\x7c\xc2\xf7\x60\x24\x91\x4d\x8b\x27\x63\x23\xb2\x7a\x79\x36\x58\x1c\xcb\x40\x1b\xd9\x01\x78\x76\xef\x76\x1d\xce\x99\xb9\x9c\xb3\xc0\x6c\x40\x86\x76\xe1\x38\x2e\x97\x15\xf1\x72\x3a\xe5\xe2\xdd\xaa\xc5\x9b\xae\x59\xbc\xef\x83\x34\x91\x4d\x01\xce\x24\xa4\x03\xd1\x49\xbe\x01\xd8\xbe\x7b\x2d\xa3\x80\xe6\x0c\xc9\x88\x47\xa7\x2e\x8c\x39\x4d\x2e\xe6\x15\x5a\x47\xe2\x0a\x53\xcb\xa0\x0c\x39\x59\x82\xc2\xc6\x0d\xf6\x28\xf1\x80\x07\xc3\x53\xb5\x0d\x57\xe8\x72\xb5\x4d\x92\x6c\xf1\xcc\x5e\x8e\xd6\x91\xcb\x47\x94\x1b\xd1\x7a\xae\x2f\x5b\x36\x45\x02\x57\xda\x37\x40\x57\xc1\x90\x3a\x3c\x90\x68\xb5\x3c\x0a\xeb\xf1\x31\x09\x6b\x04\x28\x12\x55\xe7\x60\x69\x39\xc9\x56\x86\x09\x46\x56\x61\x4c\x6f\x15\x34\x47\x7c\xf7\x17\x63\x4c\x80\x63\x58\x2e\xda\xb6\x6c\x1c\x40\xf6\x8d\xe2\x54\xd6\x01\xf5\xfa\xb3\x6e\x94\xa6\xba\xf1\xd2\xd9\x12\xde\xab\x6e\xd2\x84\xf8\x68\xf0\x32\x45\x87\x6b\xd4\x64\xc1\x55\xba\x0a\x98\xc0\x20\x35\x9b\xd1\x3f\xc9\x18\x6f\x77\x51\x09\xd4\x0a\x50\xbc\xf1\x61\x12\xd5\x22\x10\xf2\xa5\x8e\x2e\x72\x5a\xef\xfb\x23\xeb\x05\xdf\xc3\x34\x42\x9c\xc4\x00\x82\x4e\x92\xed\xb0\xe1\x34\xde\x61\xe2\x09\xd1\xed\x1c\x6a\x60\x1f\xa6\x0b\x71\xb1\x5c\x20\x37\x4d\x7f\x6d\x44\x96\xd0\xec\x4a\xc3\x09\xd7\x63\xa7\x07\xc6\xba\xa6\x80\x01\x29\x8c\x31\xef\x7f\xed\x25\xc1\x1e\xd1\x8a\xbc\xa8\x9c\xc5\x3a\x90\x71\xa7\xa3\x5a\xab\x74\x1b\x3b\x86\x0e\xde\x8b\x80\x41\x07\x04\xe9\xf2\x8c\x7d\xc5\xcd\x6c\x7c\xb5\x7f\xf5\xf2\x15\xd9\xdd\x1f\xef\xed\xed\x3e\x23\xcf\xae\x76\x5f\xbd\x7c\x99\xed\xbe\xd8\xef\xbe\x1c\xed\x8d\x9e\x8f\xba\xcf\x9e\x37\xd1\xf9\x1a\x88\x54\x8c\x29\x29\xe1\x6b\x33\xbc\xe5\x6f\x2d\x23\x5c\x8f\xeb\xf4\x2f\x38\xfb\x48\xef\xa8\x15\x00\x7c\xc8\x79\xc2\x53\x17\x25\x70\x22\x32\xca\xd4\x49\x91\x84\x14\x61\xea\xd7\x17\x72\x8f\xb9\xfc\x8b\xa8\xf2\xe1\x51\xba\x3d\xda\xbe\x21\x37\x39\x66\xf0\x2f\x68\x76\x63\xdc\x11\xb9\x88\x34\x08\x98\xb1\x68\x74\x61\x3a\xd6\x35\x7e\xf7\xe6\x92\x94\x32\x07\x9b\xcf\x2d\xa8\xf0\xd1\x1d\xa4\x2a\x2f\xc7\x0d\x0c\xbc\x67\xcc\x70\x9d\x2f\x66\xe3\x33\x72\x93\xdf\x46\xf6\x6a\xdb\x1b\x9c\x5f\x93\x93\x82\x54\x83\x32\xb8\x8b\xaa\x69\x3f\x58\x57\x40\x76\x0c\xe4\x33\x27\xf9\x98\xa4\xe8\x60\x1d\x8c\x19\x49\x4f\x89\xdd\x6e\xb2\xb9\x4a\xf2\x33\xa6\x23\x91\xda\x3b\x89\x16\xca\xe7\x55\xb6\xce\xbe\x90\xb1\xec\x23\x8a\xfa\xec\x66\x46\x31\x1f\x2d\x20\x0d\x55\x44\xa8\xe2\x8f\xc7\x5f\x6d\xe3\xe4\x95\xa6\xa6\x81\x10\xf7\x55\x52\xab\x9a\xb3\xaf\x25\x52\x66\x28\x58\x67\x80\xf1\x7a\xeb\xd7\xf4\xd6\xf3\x4a\xa1\xc8\x8a\x91\x4a\x66\xd1\x08\x41\xb6\xbd\x6d\x16\x36\xa6\xd7\xab\x95\x76\xc5\xca\xdf\x65\xc5\xb9\xdc\xea\x1a\xd5\x99\xaa\x62\x26\x6b\xf9\x79\xd1\x6a\x09\x00\x91\xc0\xd4\x78\x55\xce\x39\xd9\x96\x25\x70\xe4\x5e\x07\x7b\x82\x28\x16\x03\x22\x0f\xf0\x10\xe0\xe2\x14\x0c\xd1\x4a\x6e\x55\x35\x0e\x09\x9b\x42\x44\x5d\x10\x2e\xde\x92\x49\xce\xe3\x4e\x02\xb6\x77\xee\xf4\x4e\x83\xde\x73\x49\xc7\xbb\xbd\x53\xa7\xf7\xdc\x3b\xe9\xdc\xeb\x32\xc9\x91\x48\x51\x1e\x68\x9b\xbd\x73\x19\x8e\x45\x0e\xa0\x41\xbc\x36\x59\x9b\xc3\x61\x06\x63\x64\xbf\xfd\x6a\xda\x53\x1e\x9c\x7b\x4b\x72\xd0\x42\x38\xed\x8c\xc9\x8c\x08\xe2\xec\x3d\x4c\x2f\x30\x56\x26\x5f\xe1\x64\xd7\x02\x0d\xb4\x69\x4a\x25\x95\xcc\xb7\x24\x1b\xd7\x06\x0d\x90\x35\x65\x81\xc4\x58\x57\x7e\x79\x0a\xf2\xd0\x6a\x3e\x30\xe8\xb3\x91\xfc\x32\x2b\x34\x8e\xca\x57\x99\x17\x46\xd1\xbb\xad\x6d\x4d\x24\x70\x2d\x6a\x10\x39\x7f\x7c\xf4\xb0\x03\x83\x24\x86\x2e\x1d\x0e\x31\x43\xe4\x8f\x9e\x01\x78\x88\x93\x22\x27\xf8\xda\x93\x9d\x92\x01\x69\xeb\xd0\xd3\x9d\x21\x6e\xaa\x9f\x4d\x24\x5f\x7f\xe2\x0b\x46\x70\x77\x88\x9b\xf0\x4b\xbd\x7c\x9f\x33\x82\xf7\x86\xb8\x29\x7f\x34\x97\x69\x72\xf5\xf8\x98\x5c\xe1\x87\xa5\x8e\xfd\xf4\x71\x8d\x61\x0d\xe0\x4c\x3e\x25\x42\x87\x24\xd3\xf3\x35\x3a\x6f\xf9\xc5\x28\xdf\xca\x65\x64\x21\x12\x2a\x27\xaf\x4d\x37\x54\x4e\x37\xcc\xcc\x56\xc6\x3c\x29\xee\x99\x67\x59\x61\xd4\x4d\x04\x5f\xe9\x15\x78\xfd\xda\xe4\x1f\xd0\x31\x86\xb7\xcc\x97\x9e\xde\x1f\xb9\xd0\x3a\xa4\xb6\x1b\x26\x78\xeb\x4a\x2d\x96\x5b\x0c\x5e\x84\xa5\xe4\xa2\xf5\x5c\x3c\x65\x8b\xcb\x2f\x49\xba\x0c\x50\xd5\xf8\x36\x63\x23\x72\x91\xff\x3b\x09\xa4\x3e\x7a\xec\x26\xa6\xa4\x9a\xbe\x41\x5c\x25\x14\x71\x2c\x5e\x6b\xb6\x8c\xb7\x5a\x40\x78\x6c\x63\x4c\x5e\xa7\x5c\xdf\x9d\x1d\x24\x57\xd3\x9e\x9c\x32\x59\x1b\x37\x7c\x6b\xb9\xb4\x4e\xa9\xb4\x7a\x3e\xc3\xf8\xe5\x1e\x5c\x97\x97\xc9\xda\x01\x13\x03\xcd\x65\xde\x32\x9e\xfa\xc6\xb8\x19\xb7\xab\xab\x08\x38\x98\x58\x95\x0d\x05\x17\x2b\x8c\x31\xed\xdb\x65\x3e\x03\x6c\x96\xf0\xb4\x07\xf1\x49\x12\x9a\x96\xdf\x3e\x4a\x8c\xc4\xf5\xf5\x27\x5f\x1c\x01\x82\x93\x24\x98\x81\x83\xea\xb4\x55\x83\x75\xb7\x49\x39\x31\xe6\x4d\xfc\x75\xc2\x30\x4b\x35\x39\x55\x06\x60\xd5\x4b\xed\xa0\x32\x66\xad\xb3\xe4\xc9\xd0\xc8\x38\x01\x1c\x69\xa8\x50\xa4\xa8\xc6\xc8\x96\x7c\x0c\xf1\xef\x86\x20\x53\x76\x08\xcc\x89\xec\x4b\xd2\xa6\x53\x22\x54\xcf\x69\x23\x77\x86\xce\xcc\xf5\xac\x3f\xf6\x13\x06\x37\x8b\xba\x72\xb8\xfe\xad\x5a\xd1\x23\xce\x15\xbd\x28\xfa\xb0\x43\x3d\xe5\x69\xaa\x5d\x3f\x1c\x90\x4f\x42\x6e\xa7\xdc\x94\x8d\x17\x5c\xcf\x83\xfb\xb3\xa6\x58\x84\xd7\x97\x04\x7d\xfd\x2e\xa1\x9a\x42\x57\xa3\x55\xc4\x39\xe4\x73\xb4\xa3\x0d\x3d\xa8\x0c\x48\xd6\x5d\x33\x76\x6b\xbd\x41\x6a\x6c\x85\x34\xfa\xa8\x4e\xb6\xd2\x66\xcd\x5d\xe1\x4e\xd5\x87\x34\xe7\x18\x31\x73\x8c\x14\x1e\xd2\xdc\x28\x6b\xc4\xc6\x49\xdc\xd3\x8e\xb8\x47\xca\x27\x69\x3f\x31\xd7\xbb\xfc\x2a\xda\xea\x0e\x4f\x60\x7d\xd2\xb4\xc7\x15\xfd\xbe\x6a\x62\x70\x8d\x54\xcd\xdc\x00\xc8\xc7\x0a\x15\x9a\x18\x31\x81\xae\xf5\x1c\x39\x9a\xd8\x53\x14\xd5\xd5\x1e\xa0\x98\x5a\xf7\x0b\xaa\xd1\x01\x7f\x44\x8e\x9e\xb8\x83\x4a\xf5\x31\x47\x8e\x56\xf9\x24\x3b\x41\xbe\xca\x99\x22\x4f\x1f\x5d\xa0\x40\x5b\x3d\x43\x81\x36\x7b\x84\x7c\x65\xf7\x04\x95\x6a\xf0\xa8\x42\x53\x32\x19\x18\xcf\x96\xc8\xd3\x9d\xc7\x8a\x9a\x62\x57\x5e\xae\xf2\xf4\xe1\x7a\x67\x47\xbe\xf6\xf4\xf1\x73\x14\x2a\xec\x2b\xa7\x49\x9b\x66\x95\xb9\x04\xe0\xba\x36\x7e\x09\xda\x16\xe3\x81\x4e\x92\x84\x83\x35\x86\x1c\x69\x0a\xa9\x76\xf4\x80\x46\x0d\xbe\x8d\xf1\xac\xd5\x52\x0e\xfc\x09\xb7\x77\xf2\x58\x1f\x6b\xcf\x82\x20\x7a\xb9\x21\x86\x07\x43\x65\x2c\x0b\xe7\xc4\x5e\x65\xaf\x55\xd7\x02\xf3\x48\xbf\x42\xf5\xcb\x8c\xe7\x9b\xbd\x53\x34\x34\x97\xe3\x60\xee\x38\xbe\x7f\x0d\x9e\x38\xff\xd2\xae\xe2\x06\x05\x46\x17\x53\x54\xb5\xcb\xb8\x44\xca\x62\xa3\x56\xcd\x72\x67\x69\xf0\xc0\xd2\xe3\x10\x79\x96\x20\x31\xe8\xd9\xc6\xf8\xeb\x32\x34\x48\x51\x66\x2c\x9b\x9b\xa3\xa0\xa8\x31\x4b\xf9\xf2\xf6\xc6\x7d\x9a\xe5\x77\xbb\x33\x72\x4b\xaa\x66\x2c\x26\xef\x4d\x60\xcc\x72\x9d\x15\xef\x4c\xa4\xfa\x7b\x4c\xca\xb0\xf5\xf7\x1f\x66\xd9\xb4\xf8\xc0\x73\xb0\xcc\x58\xf0\x02\x4c\x38\xde\xe5\x6c\xc4\x89\x20\x6f\xf3\x05\x1b\x83\x0b\x31\xd1\xb6\x5a\xc6\x4b\x5a\xe2\x30\xf5\x8a\xe6\xac\x7c\xa9\x7c\xe4\xcb\xe7\x13\x72\xa7\xc3\x5d\x94\xef\x58\xce\x6f\x40\x06\x66\x63\x34\x1b\x0e\xef\xb7\x8b\x8f\xc7\x9a\xcb\x93\xab\xfe\xb7\x6b\x2a\x48\x31\xcf\xc0\x48\xe6\xfd\xe9\xc7\x0b\x4e\x4a\x09\x93\x92\xb0\x1d\xbd\x3f\xfd\xf8\xee\x3a\x63\x53\x22\x47\x79\xfe\xfb\xaf\x97\x27\x07\x1f\x0f\xcf\x3f\x1d\xbc\x3b\x54\x75\xca\x8f\x90\x9b\x51\x99\xce\x04\x89\xc9\x9d\x80\x01\xb0\x06\xf5\x1f\x3f\x1e\x9d\x1c\x7d\x3c\x38\xbe\x7c\x77\xf0\xe9\xe0\xed\xd1\xf1\xd1\xc5\xd1\xe1\xb9\xec\xe7\xf0\xc3\xc1\xe7\xe3\x8b\xca\x6b\xa5\x0a\x3e\x64\xb7\x94\xe7\xec\x46\x5d\x0d\xfe\x93\x0a\xdd\x4c\x6c\xe8\xd6\x5f\xa1\x5e\x19\xb4\x9c\x5e\x2d\x84\xfc\x7e\x4e\x6f\xe6\x33\x12\xf9\xa0\x52\x36\x9d\x91\x62\x31\x13\xc6\xfc\x88\xb2\xe9\xef\x1f\x31\x69\x1f\xe7\x77\xc7\x12\x48\xe0\x61\x4a\x84\xae\xfe\x7b\xa6\xb6\xaf\x20\xe2\xbd\x0e\x7e\xff\x4e\x67\xab\xc7\x60\x79\x1d\x79\xfb\x2e\x67\x63\x58\x84\x6c\xe6\x5a\x3b\x45\x72\x4f\x90\xf6\xe7\x93\xf7\x87\x1f\x8e\x4e\x0e\xdf\x5f\x9e\x1d\x7e\x38\x3c\x3b\x3c\x81\xbd\x38\xf9\x7c\x7c\xec\xbd\xe0\x30\xf2\x8f\x92\x00\x74\x4c\x80\x20\x36\x62\xb2\x52\x5f\x43\x24\x65\x91\x09\xa2\x6d\xc1\x40\xf0\x34\xa1\xb3\xd9\xc9\x62\x36\x2b\xd2\xe4\xe7\x57\xa9\x36\x8c\x8b\x72\x32\xd9\x38\xcc\x13\x54\x63\x95\xb1\x17\xb5\x6e\xd8\x73\xad\x1b\xf6\x86\xbd\x66\x71\x5f\x8c\xb2\xd9\xac\xd9\x88\x8c\x6d\x40\x86\xf8\x41\x17\x28\x4b\x4a\x6a\x02\x99\x82\xca\x34\x35\xcc\x47\x10\x8a\x3a\x4a\xef\xdf\x79\x4f\xc7\xa4\x28\x84\xac\xad\x1e\x62\x4d\x1c\x4c\x44\x25\x82\x39\xe2\xe9\x03\x64\xf7\x53\xa1\x4b\x02\xd2\xc2\x0c\xa9\x12\x4a\xc2\x91\xbc\x07\xf3\x63\xc3\x06\x6f\xeb\x79\xf5\xb9\xfd\x0a\xeb\xda\x73\x9f\xb5\x95\x92\x61\xa3\xff\x79\x8e\x65\x20\x2f\xd0\xa6\x0f\x73\x4e\x6e\x37\xb0\x7a\x58\xba\xe0\xa7\x63\x6a\x1a\xb1\xfd\xaf\x0b\x3a\x56\x7d\xa7\x4b\xcf\x8f\xaa\xa2\xe1\x7d\x92\xb9\xa8\x23\x1d\x5f\x6d\x25\xba\x42\x85\xab\x40\x01\x63\x4c\xfa\x93\x9e\xa6\x5a\x49\xff\xba\xa7\xb2\x88\xf6\xe7\xbd\xed\x2e\xfc\x18\xf7\x4c\xf6\x1f\x1b\xcc\x86\xf4\xe5\x1d\x38\x82\x58\xcd\xe4\x6e\x6b\x96\x84\xc2\xe8\x29\x89\x05\x42\x9c\x80\xec\x98\x07\x44\x66\x8a\x66\xff\x2c\xeb\x16\x38\xa8\x25\xea\x79\x92\x41\x8b\x37\x25\x83\x05\x74\xdb\x4d\xd5\x32\x44\x41\xeb\x1b\x0e\xc0\x2a\x62\xfd\x5e\xd3\x56\xab\xe6\x0b\x56\x8b\x5a\x6a\x55\x8c\xa1\x51\x8a\x58\xda\x0b\x44\xba\x6e\xf6\x7b\xa5\x80\x5c\xa4\x68\xf4\x4f\x87\x2f\xe8\x76\xa2\x47\xae\x53\x68\xa3\x6b\xfd\xac\xec\xdc\xe6\xfa\x69\xbb\x93\xa2\xb1\xf9\xdd\x4d\xd1\xcd\x53\x75\x53\x40\xa1\x3f\x59\x3f\xa5\x82\xea\xb9\xab\x5a\xaa\x6d\xfd\x00\x0a\x6f\xbd\x00\x0a\x8e\x68\xdd\x18\x7b\xd7\x1b\x03\xfd\x08\xc5\xf6\x3c\xe3\x20\x7d\x53\x2a\x6e\x88\x9a\xe3\xf1\x0d\x29\xc4\xd7\xfa\x4e\xd5\x36\xf2\x62\x8c\x38\x16\x2c\xb0\x3e\x30\x04\xcf\x09\x04\x78\x00\xe3\x69\x0c\x9f\x1d\xd3\x16\x00\x65\x79\x67\xdd\x26\xa2\x7a\xce\x7e\xe9\xf4\x99\x0d\xa1\xd3\xb3\x46\x55\x3c\x24\xb6\x1d\x33\xbb\x5b\x27\x22\x8f\x79\xe9\xc4\xfc\x6a\x8b\x5c\x79\x63\xf7\x9b\xcd\xde\xb9\x4d\xd6\x96\x41\x80\xae\x6e\x2c\x4d\x3d\x16\xed\x7c\xde\x55\x19\xf1\x44\x06\x21\x9a\x88\x13\xa0\xdb\xf3\xc1\x4e\x58\x9a\x10\xc4\x21\x62\x5f\x2a\x79\xe1\x59\x9e\x8d\x41\x5d\xe7\xe7\xd5\x40\xb9\xb2\x79\x95\x9d\xbe\x58\xd3\x29\x77\xb4\x8b\x2a\x0b\x42\xc2\x64\xd3\x30\x18\xcb\xab\x98\xd6\x9e\x6d\x32\x05\x35\xbe\x86\x76\x8f\x4a\x52\x88\xce\x66\xda\x46\x4e\x6b\xcf\x37\x6f\x0d\x24\x4f\xee\x73\x1e\x3c\x67\x38\xef\x0f\x80\x53\xd0\xd9\x2d\xfd\xee\x4d\xc4\xc3\xac\xec\xfd\xe7\x75\x4b\x53\xee\x82\xeb\x64\xaf\x46\xa2\x9b\x2e\x03\x40\x7f\xcc\xe6\x49\x3a\xe0\xc3\x86\xbd\xb4\x68\xab\x95\x50\xac\xdd\xa9\x67\x13\x55\x3a\xe1\x69\x8a\xbc\xd5\xa5\xe5\x88\xf6\x3a\x2b\x47\x24\xff\xef\x35\x48\x90\x7f\x95\xa1\xed\x6d\x67\x4d\x5f\x7e\xc7\xa4\xfc\xcd\x73\x86\x68\x46\x6e\x7b\x79\xb5\x11\x28\x07\x2b\x65\xc2\xea\x35\x68\x3f\xe1\xba\xe5\xc1\xde\x10\xe2\x36\xa8\x87\xae\xfb\xd0\x19\x42\x42\x1e\x1d\x44\x07\x10\x75\xed\x83\xb3\xab\x2b\x47\xb6\xbd\x1d\x1f\x91\x0f\xef\xfd\x79\x6f\x5c\xb6\xd8\x75\x77\x25\x7d\xf0\xc1\xce\x5f\x35\xa3\xd2\x70\x4b\x30\x25\x7a\x2e\x53\x5c\x1a\xcb\x75\xaf\x4f\x16\xf4\x19\xc5\x15\x1a\x06\xba\x7e\xc8\x88\x54\xc7\xa0\xe4\xaf\xd9\x2f\x9d\xd7\x6c\x77\x37\xa5\x03\xb6\xdb\x1d\xae\xda\x51\x08\x7c\x9c\x50\xb9\x6e\xda\xb0\xaf\xf9\xee\xf3\xd9\xd9\xd1\xe1\xfb\xad\x77\xa7\x1f\x3f\x9d\x9e\x1c\x9e\x5c\x6c\x01\xcf\x03\x1e\x33\x5b\x03\x3a\xc6\x2f\x26\x9d\xce\x84\x5c\xfd\xbc\x9b\x75\xc8\x64\xf7\xd9\xf3\x67\x2f\x77\x7f\xfe\x99\x64\xbb\xd9\x68\x7f\xef\xd5\xe4\x55\x27\x1b\x91\x6c\xd8\x2c\x51\xe5\x95\x73\x41\x41\xd4\xce\x6d\x32\x98\x0e\x55\x12\xc2\x3a\xfb\xb5\xd2\x39\xc1\xbb\x5b\x33\x3e\x35\x61\xfe\x06\xd3\x21\xb6\xf9\xdd\xbc\x3b\x76\xc1\xee\x78\xe6\x9b\xaa\x4b\xf4\x06\x2e\xad\x9e\xd3\x7b\xc3\x91\x28\x59\x8f\xc3\xd7\x4a\x88\xa4\x7c\x0a\x53\x93\x1c\x47\x68\x2a\x9f\xb5\x5a\x09\x91\xd7\xa6\xe6\x18\x21\x69\x39\x61\xe3\x84\x39\x2f\x25\x34\xb0\xec\x86\x8c\xdb\x37\x84\x4f\x49\xc2\xd4\x53\x9a\xa2\xed\x2b\x79\x7a\x8c\x59\x65\x83\x62\xbe\x5c\xa2\x15\x71\x07\xd4\x40\x2b\x4e\xf0\xae\x06\x45\x31\x1f\xd8\x2e\x8f\x84\xb3\xbe\x70\x87\xa8\xc0\xac\x67\xb5\xfe\x72\x3f\xfa\x6c\xc7\x78\x8b\xf5\x58\xc4\x55\xfe\xce\xa1\xbe\x0f\x65\x79\xef\x1a\xb3\xc5\x0e\x5d\x3b\x4b\xa0\x25\xc9\xe3\xe3\xca\xfb\xb0\xac\xfb\xd5\xb9\x41\x75\x22\xcc\x92\x6a\xb7\x49\x05\x49\xab\x55\xb6\x87\xdd\xf6\x7e\xbb\xf8\x78\x5c\xb6\x76\xbe\x71\x6b\x15\x0e\xa1\xcd\xf2\x31\xb9\xb8\x9f\x93\xb2\xb5\x53\xa7\xb5\x30\x3c\x26\x01\xc0\x3d\x58\x61\x3f\xf4\x63\xa2\xed\x30\x70\x30\x84\x58\x39\x86\xea\xe6\x10\x4d\xb7\xb4\xfa\xca\x95\xeb\x4e\xd3\x84\x56\x15\xe4\xab\x68\xca\xb7\xd9\x54\x89\x40\x75\x79\x6b\xb7\x95\x7b\x76\x5b\x35\x21\x74\x2a\x14\x5a\x95\x7b\x5e\x6d\x4a\x26\xb2\x69\x43\x38\x56\x70\xa1\xf9\x58\xfa\xf8\x58\x7d\x89\x03\xfb\x6d\xa3\x48\xb2\x14\xdc\x7a\xf3\x5a\x47\xdf\x53\x1a\xa1\xd2\x49\x02\x66\xb7\xe6\x06\x50\xd7\xf2\xeb\x84\x61\x03\xd7\x72\xb3\xfb\xa4\x04\xef\x54\x69\x09\xd5\x10\xe5\x2e\xc0\x1f\xc7\x40\xd5\x31\x8e\x4c\x97\x40\x29\x16\x9e\x79\xc0\x3f\xd9\xbd\x72\x8d\xed\x33\xab\xb0\xbc\xb5\xfc\x03\xa0\x06\x6d\x65\x8c\x56\x68\xec\xbf\x97\xe9\xd1\xf4\x3d\xae\x72\x3a\x06\xfc\x23\x63\x93\xdb\xf4\xf8\x78\x08\x7f\x6d\x5e\xdd\xf2\x54\x3e\x3e\x56\x4f\xf6\x32\x11\x69\xbf\xdb\x4b\x08\x16\x69\xab\x25\x6f\x9d\x7e\xa7\xf7\x55\xbe\xdc\xef\x45\x7a\x90\x38\xa4\xd5\xea\x82\x2c\xa1\x44\x0a\xb2\xf8\xb3\xde\xb9\xfc\xf7\xbc\xd7\xd5\xea\x27\x4d\xa7\xbd\x42\x55\xf8\xf3\x6e\x5b\x0b\xd3\x12\xdc\x84\x8b\x46\x85\xbc\x89\x75\x44\xe7\x22\x49\xb5\x35\x86\x96\x63\x4a\xdc\xa6\xe2\x0e\xeb\x8e\x7e\xde\xb4\x23\x8d\x18\xbd\x1e\xc5\x13\x7a\xda\xdf\x5b\xd7\x13\x72\x8f\x2a\xc5\x87\x09\x73\xa7\xc5\x14\x45\x5e\xd7\xdd\x05\xf9\x2a\x12\x9a\xbe\x06\x9e\x51\xab\xae\x52\x30\x06\x37\x27\xfa\x6f\x54\x28\xb2\xe4\x20\xc9\x91\x40\xd4\x21\xe9\xf6\x3b\x9b\xae\xc2\x8a\x09\x7f\xe0\xd9\x14\x62\x54\x0b\xa7\xe1\xee\x0f\x68\x18\xd4\x48\x4e\xa3\x7b\xfe\x4a\x96\xe7\x22\x48\x4f\x5e\x56\xd8\xaf\xa9\x60\x93\x87\x97\xec\xd7\xb3\xfa\xb6\xfd\x90\xd6\x65\x95\xe7\xb5\xad\xd7\xd4\xe8\xee\xd5\x93\xd0\x3e\x15\x19\x70\x13\x2a\xd9\x15\x73\x76\xae\xbb\xbf\x21\x9f\xc0\x7e\xf9\x65\xdf\xe4\xf5\x7e\xd9\x62\xa5\xe3\x9a\xe1\x91\x5c\xbb\x99\xae\x79\x1d\xf4\xaf\xe2\xbd\x49\xaa\xd6\x2d\xbd\x57\x53\x5a\x03\x6e\x50\x7a\x5f\x97\x3e\x64\xa3\x7c\x4c\xc6\x4e\x86\x6c\xaf\xd8\xb3\x1e\xfc\x7b\xbe\x76\x24\xcb\x72\x2d\x9e\xd5\x03\x5b\x43\xa8\x66\x16\xc6\xb5\x4e\x68\x1e\xdf\x59\xca\xe7\xeb\xab\x0b\x30\xa9\x2f\xa1\xd6\xa9\xbd\x9a\xd7\x05\xce\x12\xd8\x35\xc8\xd2\xa9\x44\x0a\x2c\xdd\xe5\x76\xbf\x21\x5d\x81\xd3\xde\x0a\x36\xb3\xe1\x9e\x20\x07\xc5\x74\x57\x30\x8d\x5a\x96\xe1\x15\x5f\xc1\xc9\x35\xf4\x40\xdd\xf2\xcf\xd6\xc1\x9a\xb7\x43\x26\x90\x40\xa3\x9a\x76\xd4\x95\x77\xbc\x58\x21\xb3\x91\x38\x01\xf2\x7d\x3a\x83\x78\xb1\x17\xf0\x8a\x2a\xd3\x67\x39\xc8\xd5\x6b\x50\x7f\xb6\xdc\x80\x6c\xde\x11\x7b\xf6\x32\xce\x9d\xaa\x36\x34\xaf\xeb\x14\x7f\x51\x0f\x46\x80\xe1\x15\xb3\xc8\xfa\x1a\xa4\x98\x97\xef\x0c\xde\x9d\x2c\x66\x33\x67\x4a\xcf\x23\x48\x54\xf3\x55\xa5\x48\x8b\x5a\x29\x8d\xf9\x55\xd8\x5f\x0b\xf3\xcb\xb1\x4d\x29\x52\x0f\xb7\x99\x34\x13\x40\xc4\xa9\x57\x6a\xab\x32\xe3\x66\x9d\xc9\xca\x8a\x7b\x2b\x1c\x5e\x3b\x35\x02\xea\x5f\x3a\x90\x3a\x72\x86\x67\xed\x91\x44\xc2\xe0\xf5\xd6\x79\xcd\xdf\xb0\xd7\x7c\x67\x27\x9d\xb9\x32\x2a\x31\xe0\x43\xb4\x68\x67\x20\xf2\x68\xf8\x23\x70\x3b\x07\x86\x0f\x68\x78\x47\xde\xf6\x3c\x0a\x86\x60\x61\x24\x01\x31\x10\x5b\x05\x17\x62\x9e\xf6\x73\x73\x78\x5b\x2d\xd2\x9e\xe6\x22\x4f\x68\xda\x93\x33\x93\x77\x23\x0f\x74\xf9\x49\x9e\xa6\xfa\xcc\x3b\xc5\x51\xe5\x4e\xbd\x90\x20\xe3\x8c\x31\x2a\xc6\xfb\x86\x31\xca\xeb\xfb\x09\x63\x74\x8a\xaf\x1f\xe3\x6a\xe1\xa0\x91\x85\xe9\x71\x42\xf3\x18\xcc\x14\x75\x17\xce\xa1\x7c\xbe\x02\xe6\x75\xd5\x75\x84\xc9\x85\xeb\x1f\x14\x9d\xa5\x70\x07\xff\x62\x3f\xda\x23\x61\xb7\x60\x33\xa2\x90\xb6\xb1\x48\x69\x8b\x3c\xa6\x8b\x06\xd1\x82\xbe\x03\x00\xc8\x6b\x72\x33\xfe\x28\xcf\x55\xe0\x28\xb3\xa2\x20\x5c\x34\x11\x77\x9c\xd8\x78\x7b\x04\x76\x23\xeb\xdc\x5a\x63\xbe\x47\x76\xf2\x86\x23\x29\xb3\x65\xa9\x85\x47\x62\xb9\x86\xe7\x0c\xec\x14\xe5\x50\xcc\x6e\x19\x1b\x96\x34\x11\x8e\xdb\x17\x48\xfd\x49\x5b\x45\xf6\x4f\x0d\x9f\x56\x93\xde\xf0\x07\x3a\xfd\x81\xad\x32\x47\x54\x2f\xe5\x7f\x2e\x6e\xe6\xbb\x74\xb2\xcb\x72\xb1\xab\xf3\xd1\x8f\x9b\xc8\xf7\x72\xad\xfa\x84\x6d\xac\x3e\x59\xb7\x50\x72\xe7\xa2\x36\x8f\x6e\xbf\x8d\x6d\xd2\xce\x66\x77\xd9\x7d\x71\x66\x97\xaf\xd5\x72\x78\x78\x9e\xba\x07\x2a\x88\x51\x30\x86\xf5\xaf\xc6\x29\xf0\xd9\xfb\x6b\xdf\x5b\xd6\xec\xc7\xd9\x5f\xec\x4a\x0c\xbb\xc1\xec\x6e\x8c\xe9\x58\xed\xc2\xbd\xd9\x03\xee\x19\xe7\x7d\xc7\xba\x07\xd6\x8a\x66\x59\xca\xa9\x7e\x5a\xc3\x51\x47\x46\xa3\xde\xc3\xc8\x67\xca\xb8\x4a\xaf\xec\x15\x71\x33\x33\x96\xea\x7f\x6b\xa4\xac\x1e\xeb\x75\xfc\x6e\x43\x51\xdf\xa4\xd8\x04\x2b\xbe\x2b\x73\x32\x5a\x91\x77\xf1\x8a\xcc\x76\x9a\x5b\x83\xe6\x0e\x3c\x5f\x4e\x17\x74\xbc\xd3\x1c\x36\x7d\x1e\x7a\x05\x45\x1a\xe3\xb6\x80\x83\xac\x53\x5f\x38\xcc\xd4\x6a\xc2\xb4\xd2\xec\xbb\xfc\x06\xb8\xc2\xf5\x2d\xef\xaf\xa0\x2f\xfd\x96\xf3\x39\x61\x26\x23\xd2\x06\xed\xae\xe0\x0b\x56\x31\xa1\x6e\x2f\x0e\xfb\xf9\x2c\x4e\x8e\xad\x57\x9f\x19\x23\x1c\xf3\x63\x11\x1f\x44\x70\x53\xd2\xb4\x2f\x69\x3a\xfd\xb1\x97\x64\x92\x02\x8b\x5e\x90\xd4\x92\x01\xb1\xbb\x5f\x5e\x9f\xa8\x42\x68\x14\x38\x2f\x9b\x2e\xf0\x7a\x0a\xa3\x8e\xac\x40\xde\xd2\x55\x93\x5c\x65\x08\xb2\x82\xdb\x45\xac\x90\xf1\x4e\xe5\x6a\xd2\x2b\xbb\x95\x71\xb9\x90\xc3\x53\x39\x6a\x5a\xd1\x49\x1b\x20\x6e\x6c\x4f\x66\x2a\x96\x31\xaa\x51\xe8\x0a\x1d\x3d\x28\x98\x05\x54\x8b\x0c\xe2\xe7\xfa\xb1\x8f\x66\x79\x11\x19\xf7\xb3\x55\x7a\x47\xba\x52\x1f\x1d\x01\x24\xb7\x47\x54\xe0\x4c\xd5\x06\x03\x47\x36\x45\x0b\x9c\xe9\x2d\x3a\x9d\x6b\x43\xed\x02\xcd\x30\x31\xf9\xa2\x4c\x4e\xaf\x11\xa6\x86\x19\x2e\x50\x8e\x66\x68\x01\xf0\xcf\x6e\xdb\xc5\xe8\x9a\x8c\x17\x33\x72\x24\xc7\x34\x9b\x69\x22\x80\x27\x23\x44\x4d\x18\x23\x50\x58\xbe\x27\xe6\xc6\x48\x46\x69\x63\x22\x2f\x32\x46\xee\xe0\x6d\xae\x52\x06\x4e\x54\xf9\x6b\x55\xfe\x22\x9b\x26\x23\x1f\xbe\x2f\xb2\x69\x9a\x5c\xc7\xa4\x54\x27\xc9\x35\xa2\x68\x64\x89\xb3\x93\xbf\x5c\x2f\xa0\xe8\x86\xbc\x7d\x93\xb1\x6c\x0a\x41\x04\xf2\xb6\xa6\x2b\xb8\xa3\x13\x50\xe3\x34\x14\x07\x6f\x6a\x55\x80\x89\x2f\xc1\x7e\x80\x16\x20\xf4\x90\x84\xf1\x18\x62\xc3\x74\x5c\x3a\x8e\x4c\x8d\xdb\xa2\x33\x8e\x06\x2f\x69\x0c\x9a\x3e\x3e\x26\xfe\xd6\xaa\x52\x76\x67\x19\x12\x69\x35\x54\x06\xf7\xa3\x1b\x14\xe6\x66\xd9\xdf\x80\x73\xd0\xbc\xce\x7e\x60\x6d\xe1\xa9\xc4\xb3\x9a\x4f\x1c\x98\xd7\x7e\x9d\x38\xc9\x58\x1f\x38\xc7\xae\x90\x9f\x33\xe1\x98\xb9\x26\x39\xca\x5c\x84\xb3\xbf\x4a\x3e\x43\xf5\x98\x73\x3d\xe6\xba\x81\x31\x39\x30\xff\x34\x2e\xb0\x8d\x17\x87\x66\x38\xaf\x19\x74\xae\x06\x8d\x46\x38\x1c\x76\x68\x9e\x0b\x88\x72\x7b\x9b\xa2\x59\x78\x11\x14\xb1\x53\xf2\x9f\x49\xe1\x9c\x91\xff\xfc\x8b\x49\x70\x3f\xd6\x46\x66\x4d\x8a\x4b\x9a\x1c\x02\xb3\x96\x19\x26\xfd\x50\x1d\x1e\xd9\x4a\x3d\x8d\xd9\x8f\x22\xca\xed\x98\xcc\x69\x29\x75\x68\xe5\x71\x71\xcf\xc6\x86\x3a\x34\x5e\xea\xd0\x8c\x02\xad\x3c\xe8\x70\xb4\xca\x43\x62\xd7\xfd\xc8\x18\xc3\x5a\x22\x70\x96\xe7\x5f\x16\xf3\x88\x9d\x38\x04\xe4\x04\xfd\xe7\xfb\x7a\xc5\xbd\x32\xc6\xad\xea\x88\x6c\xfa\x10\xed\xc7\x79\x43\x44\x66\x5c\x38\x41\xb1\xcf\xa3\x1e\xf4\x75\xa1\x48\x1c\xeb\xf5\x6f\x89\x62\xe3\x29\xce\xcb\xa8\x1b\x4e\x88\x19\x10\x43\x61\x8c\x45\x1a\xc6\xc1\x28\xbb\x36\xce\x52\xf2\xa8\x5b\x1d\x1a\x4b\xfb\x1c\xb3\x5e\x45\x73\xcc\x5a\x2d\xd6\x6a\x25\x1c\x1f\x79\xe9\xa1\x38\x62\xe5\x82\xa4\xa9\xeb\x93\x76\x0f\x7e\x54\xc1\x2a\x44\x97\x80\x47\x32\xca\xc4\xed\x5a\xbd\x08\xc8\xe0\x38\x50\x07\xa4\x7c\x5a\x34\x4c\x4c\x86\x56\xeb\x4a\xa9\x49\x95\x41\xed\xa5\xb2\x83\x76\x82\xe9\x1c\xaf\x8b\x28\x43\x0b\xe1\x6a\x0b\x63\x56\x83\xc4\x0d\xaf\x10\x65\x4a\xea\x54\x89\xc6\x25\xc8\x56\xaf\xcb\x9b\x92\x10\x7c\x97\xf0\x81\x28\x2d\x03\x53\xeb\x13\x54\x4a\x25\x3a\x18\x63\x63\x1c\xa8\xdc\xa5\x8d\x7d\xe0\x56\xb3\x12\x8d\xf2\x83\xa3\x4f\xe9\xc8\x1b\x4c\x53\x30\x3a\x81\x7a\xb7\xd7\x49\x9d\xb7\x17\xd9\xb4\xbf\xa7\x5f\xcd\x39\x99\x67\x9c\x1c\xf0\x69\xd1\x7f\xa6\xdf\x29\x5a\x07\x5e\xbd\xd2\xaf\x2c\xb6\xf8\x2d\xcf\xbf\xf4\xbb\x2f\xf4\x6b\x8d\xbe\xe0\xe5\xfe\x9e\xdf\x0b\x50\x4f\xfd\x17\x7e\xa3\xef\xb2\xd9\x8c\xf0\x7e\x77\xcf\x34\xac\x50\x04\x34\xb0\xf7\xfc\x85\x57\x16\x88\x2a\x36\x22\xfd\xe7\x5d\xd9\x74\x69\x1a\xf1\xa7\xeb\x60\xb4\xbd\x9d\x90\x96\x30\x76\x8d\x2f\x56\x68\x29\x1d\x99\xb2\x96\x28\x7f\x31\x64\x9d\xcb\x04\xbd\x5c\xa1\xe2\x53\x4d\x00\x79\x6f\xda\x90\xa0\xf8\xd1\x6f\x60\x53\xe3\x4a\x6e\xe9\x54\x6e\x25\xd1\xab\x65\xed\xc0\x09\x55\x28\x60\xbe\xc2\xfc\x52\x0e\xef\x7d\x92\x4b\x9e\x02\x65\xee\x20\x57\x68\xd6\x02\x15\x45\x85\xce\xa6\x98\x5b\x52\x2b\xc7\x1f\x94\x4d\x9e\x75\x80\xa2\xa4\x48\xb4\x07\x44\x1a\x98\x7a\x3d\x8c\x2d\xb6\xe8\x71\xa4\x9b\xe8\x51\x34\x72\xea\xf6\x72\xed\x7c\x01\xa8\x56\x47\x21\x57\x68\x17\xc2\x8f\xc3\x4f\x75\x3b\xa8\xb3\xef\xcc\x29\x46\x6d\xf1\x50\x92\x8c\x32\x9c\x07\x9a\xf1\xd5\xcb\xce\x6b\xcd\x5b\x85\x09\x79\x2a\x3b\x5a\x18\x47\x9b\x58\x42\xdb\x2c\x5d\xe0\xa3\x24\xb6\x77\x40\x7c\x35\xc8\xac\x20\x10\x18\xea\x2a\xc9\xd2\xd4\x64\x02\x65\x7e\x26\xd0\xb4\xb1\xc0\x99\x09\x06\xbb\x70\xe6\x1d\x17\xf1\x06\x40\x8f\x6c\x26\x59\x6a\x46\x0a\xf7\x04\xc5\xea\xf2\xe8\x71\xfc\x21\x49\x28\x66\x66\x6f\xd3\xca\xb6\x32\xb3\xad\x48\x54\x37\x94\xf9\xdb\xe8\xee\xef\xda\x0d\x75\x37\x31\x54\x08\x28\xa9\x86\xda\xca\x52\x4b\xcb\x83\x2d\xcc\x9d\xd5\xdf\xbe\x92\x1c\x7e\xed\x22\xe6\x98\x1a\x83\x4d\x47\x59\xf2\x72\x53\xb5\x64\xcc\x34\xda\xcf\xb6\xa5\x28\xf6\xc1\xb0\xf1\xac\xc5\x5b\x2d\x1d\xf1\xb6\x79\x93\x51\xd6\x4c\xd1\x9e\xfb\x4e\x6e\x7b\x33\x45\x5d\xf7\x9d\x44\xb5\x45\x13\xd2\x3d\xf3\x29\xe4\x0f\x58\xcc\x13\xc8\x10\x8b\xf8\x2f\xbf\x3c\x43\xdb\xdb\xc9\xab\x16\x4f\x4d\xfe\xe9\x44\x95\x73\x26\xf2\x72\xbd\x76\x56\xb7\x4d\x20\x70\x8f\x70\x8d\x69\xd7\x22\x3f\x58\x75\x9d\xb6\xc0\xc1\x82\x4e\xff\x51\x65\xa9\xf2\x9c\x94\xc0\x8e\x16\x68\xa6\x97\x75\x64\x9b\x9e\xf8\xb2\x09\x08\xf8\x3b\xd2\x70\x3b\xc7\x93\x76\x09\x67\x8d\xab\x64\x9e\xb6\x5a\xc9\xbc\xc6\x91\x8a\x38\x65\xb1\xd0\x96\x98\x55\xac\xa5\x31\x54\xa9\x03\x30\xbc\x2c\x45\x8e\xff\x26\x25\x45\x14\xbf\xe5\x90\x11\x2c\x99\xa0\x39\xba\xd6\xd1\x45\xc6\x78\x8e\x6e\xf0\xd8\x76\x71\x8f\xc7\xba\x0b\x09\x91\xf2\x36\xff\x33\x99\x78\x2d\xa3\x67\x3a\xe1\xf6\x2d\xbe\xd6\xf9\xa3\x15\x38\x17\x68\x5a\xbe\x61\xd9\x0d\x29\xd0\x25\xbe\x71\xaf\xea\xe4\x1e\x5d\x03\x71\x78\xa9\x7c\x92\xaf\xdb\xa3\x19\xc9\x38\x58\xc6\x74\x5e\xb3\x37\xb7\x6e\xfe\xf7\x91\xda\xa2\xdb\x01\x1b\x2a\x7b\x53\x8e\x2f\x1d\xe3\x4c\x44\xf1\xa5\xb2\x0e\x85\x65\xd1\x59\x7b\x32\xdc\x79\x9d\xbd\xc9\x21\x6d\xb1\x6e\x80\x0f\x32\xdd\x40\xe1\xe5\x09\xa6\xf2\x5a\xea\xbc\x5e\xbc\xb1\xce\x10\x8b\xb2\x12\x1d\x14\x83\xc5\x70\x98\x36\xae\x35\x24\x8f\x50\x81\xa6\x28\x47\xdb\x9d\x74\xa9\xcb\x5c\xa7\x4b\x79\x10\xb6\xca\x47\x0b\x8e\xab\xae\xd2\x92\x17\xf5\xe5\x5a\x60\x80\xef\x40\x01\x2a\xb0\x15\x55\xa0\x05\xce\xc3\xed\x2d\x2a\xdb\x9b\x59\x3c\xa7\x24\xdc\x8d\x3f\x93\x05\x7a\xf1\x4c\x82\x5d\x55\x3c\x64\x83\x60\x9b\x82\xaf\x64\xb9\x51\xa0\xd5\xb3\x51\xad\x4d\xa9\xee\x1e\x94\x9b\xb8\x56\xf9\x46\x06\x54\xd8\xb0\xc6\xa0\xa7\xd3\xc3\x41\x23\x34\x43\x13\x79\xfe\xbb\x2d\x96\xa6\x8d\x5c\xbd\xc6\xd7\x3a\x30\x76\x61\x24\x47\xd7\x29\xf4\xb0\xf7\xfc\x45\xda\x6a\x6d\x57\x84\x48\x73\x50\xa4\x04\xec\xf1\xe7\x64\x8e\xae\x51\x81\x5c\xfb\xf5\x57\xeb\x68\x04\xcf\x42\x23\x7e\xc0\x40\xcd\xee\x4b\xc0\xf2\xb4\x91\x45\x24\x60\xae\x3b\x44\x37\x90\x1b\x5e\x91\x29\x65\x20\x60\xfd\x95\xe7\x0b\x65\xec\x1e\x08\x51\x95\x0f\xaf\xb2\xa2\x77\xa6\xb0\x1f\xb4\x54\x2b\xd5\x24\x77\x5b\xbf\x39\x42\x90\xd5\xbe\x0b\xdf\x21\x04\x59\x23\xf8\x68\xac\x90\xd1\xca\x13\xe4\x8a\x3f\x0a\xb4\xbd\xcd\xd1\xc2\xc8\x34\x7e\x5b\x1d\x88\xd5\x92\xf0\x45\x24\x9a\xdc\x68\x96\x15\x05\xa9\xcd\xf4\xec\xf4\x1b\x71\x7a\x6d\x42\xed\x26\x06\xe3\x66\xb7\x39\x1b\xe7\x20\x18\x00\x78\xee\xde\xaa\x08\x9a\x08\x10\xdc\x3c\x1b\x91\x1e\x47\x82\x2f\x0a\x41\xd9\xb4\xc7\x02\xa7\x5b\x10\x30\x47\xe3\x20\x50\x94\x5b\x23\xfa\x6c\x8b\x9a\x34\x92\xb6\x2f\x55\xb2\xb0\x6e\x59\xce\x28\xb2\xa1\xa6\x1f\xd0\x02\x8b\xb6\x1d\x07\x5c\x4f\x66\x24\x8d\x72\x72\x59\xab\x95\x14\x20\xf5\x3f\x4e\xdc\x59\xa6\x29\x52\xc9\xef\xb6\x55\x19\xb6\x89\xe8\xca\x91\x85\xa1\x45\xa8\x6e\xa8\x15\x60\x81\x59\x82\xea\xac\x3a\x53\x18\x5e\x42\xc3\x69\x82\xbc\xa9\x9c\x28\xf5\x26\x4a\xed\x44\x43\x9b\xc9\xd8\xb0\x75\x8e\xbf\x6f\x1b\x7b\x0e\xf6\xd3\x3e\xdf\xfa\xb6\x0c\xab\x60\xe4\xd2\x4c\xe7\xcf\x2a\xc0\x00\xc6\x4d\x22\x09\x7c\xd2\x94\x88\x44\xa4\xaf\x77\xbb\xdb\x18\xe7\xad\x16\x8d\x78\x56\xe5\x3b\x5d\x94\xa5\x88\x69\x19\x92\xdc\x11\xfd\x53\xc2\x5d\x66\x58\xc5\x9f\xd7\x19\x69\xf9\xd8\x4d\x62\x34\xe7\x4e\xc9\x2c\x82\xf3\x6f\x97\x55\x2a\x96\xa2\x3d\xa6\xe3\x77\x80\xd9\x4b\x65\x8f\xb7\xe8\xe4\xeb\x9c\x8c\xc4\x3b\x47\x49\x91\x34\xdf\x07\x75\x94\x73\xf8\xff\x30\xf2\xbd\x66\x8a\x1c\x56\xe0\xd5\x3a\xaf\xb8\x2a\xca\x76\x26\xe5\x63\x6d\x3d\x29\x9f\x85\xcb\xec\x6d\x95\xbb\x37\xc5\x3a\xf7\xb9\x1f\xd2\xed\x45\x36\x3d\xc9\x6e\x88\xdf\x73\x8c\x6c\xe7\x8e\xbe\xc8\xe9\x99\xa7\x60\xfe\x65\x36\x4b\x76\xe6\x51\x09\x51\xf6\xcc\xea\x1e\xe1\xb4\xe8\x8b\x18\x53\x9f\x92\x9b\x60\x73\x47\x5f\x3b\x7c\x48\xd5\xd8\x15\x9c\xc4\xff\x4c\x08\xea\xa6\xcb\x64\x94\xa6\xd7\x38\x97\x13\x53\x62\x9a\x64\xe2\x71\x82\x91\xda\x1d\xbf\x76\x2d\x87\xa3\x9b\x7d\xef\x0a\x81\x92\x19\x2a\xd2\xe5\x42\x93\x58\xfa\x78\x5d\x40\x0d\x64\xdf\x2a\xee\xcc\x31\x1e\xda\xc8\xb9\xae\xd6\x2d\x92\x3b\x6b\xfd\x21\xc9\xeb\xc5\x04\xa8\xc0\x71\xd9\x40\xee\x33\x95\x59\x84\x95\xa4\x7e\x7a\x32\xea\x4e\xcd\x13\x14\x78\x5c\x3c\x73\x55\x1e\xaf\x56\x7b\xea\x55\xb8\x4e\x4f\x76\x13\x00\x77\x23\x33\xc9\x2e\x29\xca\x74\xea\xca\xbc\xb4\x09\x58\x27\x1b\xf2\xda\xf2\x51\x61\xc5\xdd\xd2\x10\xeb\x3b\x5d\xa0\xa6\xed\x6c\x62\xb4\x0b\xf7\x4c\xea\x3c\x72\xb9\x91\xeb\x7e\xae\xb3\xe2\xf0\x36\x9b\x81\x7c\x38\xd7\x28\xd3\xa7\x15\x7c\x47\x56\x59\xd8\x98\xa9\x3a\x66\x0f\xab\xd8\x3f\x3d\x86\xc2\x1f\x43\xa6\x04\x5b\xba\x6d\x50\xc1\xba\xb4\x33\x1a\xe1\x99\xf6\x66\xcb\x84\xc4\x00\x85\x76\x33\x1c\xe9\x05\xd8\xed\xbe\x66\xbf\x60\xe5\x70\xc8\xf1\x68\xc0\x86\x88\xe2\xa2\xe6\x22\x91\x9f\xe5\x0e\x9a\x26\xc1\x9f\x14\x6d\x77\x53\x04\x97\x0a\x6d\xb5\x16\xae\x05\x26\xdd\xe9\xa2\x3c\x45\x45\x79\x9b\x98\x9f\x03\x3e\xc4\x8e\x00\xe1\x69\xd7\x09\x0d\xe6\xa8\xd9\xbd\xc6\xdb\xa4\xd9\x52\x12\x00\xa4\x25\x01\xb0\x74\x24\x45\xf2\x0b\x65\xb7\x84\x17\xa4\x89\x94\xe4\xc0\xfd\xa4\x33\xa3\x34\x91\x12\x34\xe8\x4f\x25\x49\xbd\xda\x9f\x37\x04\x62\xad\xd6\xe2\x15\x8c\xf0\xf3\xd3\x2f\x98\x18\x4f\x10\x9a\x31\x68\xba\xbd\x41\xe5\x15\xa9\xa2\xee\x68\xb4\x95\xcb\xbb\x5c\xa9\x64\xed\xed\x99\xe4\x28\x66\xb6\xf9\x0f\x25\x26\x71\x3d\x70\x43\xe3\x89\x51\x7e\x73\x43\x85\xcb\x49\x68\xe2\xf9\xf3\x4a\xa5\x39\xca\xd5\x44\xb3\xef\x50\x0a\x66\x5a\x6d\x9e\x81\x19\x33\x68\xb5\x30\x47\x99\x23\x78\xc8\x3c\xce\x12\xe7\x12\x7f\xb8\x8a\x74\x5b\xaf\x89\xb2\x1f\xe3\x37\x67\x5b\x44\x71\x0d\xba\x3b\x9e\x86\xd5\xe7\x11\xc4\xac\x41\xd9\x3f\xea\xd7\xed\x07\xad\x9a\x59\x1f\x7f\xe5\xe4\x6a\x5d\xa9\xf8\x59\xe5\x3a\x8d\xe9\x78\x57\xaf\xd5\xec\xff\x63\xef\xdd\xbb\xdb\xc8\x8d\xc4\xd1\xff\xf5\x29\x24\x9e\x84\x69\x2c\x21\x0e\x69\xcf\x64\x13\xca\xb0\x56\x96\x29\x8f\x36\x7a\x38\x92\xec\xc9\x84\xc3\x9f\xd2\x22\x41\x0a\x63\x12\x60\xd0\xa0\x64\x8d\xc8\xdf\x67\xbf\x07\xcf\x06\xd0\x68\x4a\xf6\xcc\xec\xdd\x73\xcf\xfd\xc3\x32\xbb\x1b\x8f\x02\x50\x28\x54\x15\xea\xa1\xb0\xa7\x01\xf3\x94\x49\xdb\xd7\xcf\xde\x46\x7b\x83\x72\x36\xcd\x2d\x90\x06\x70\x4b\x59\xe2\x69\x53\x01\x83\xd4\x52\x6c\x2a\x91\xfa\x83\xb9\x26\xb5\xb1\x49\xfc\x9b\xd1\x1f\xf4\x2e\x93\x8c\x09\x9b\xe1\x36\xa1\x13\x96\x35\x3e\x14\x78\xfb\x5f\x23\x46\x05\xfe\x2c\xfe\x05\xb7\x73\x3a\xde\xfe\x97\x24\x63\xaf\x16\xb9\xb8\x7d\x0d\xfe\xb5\x2d\xd8\xb6\x0a\x53\xa4\x44\x84\x6d\x81\xe7\x8b\x59\x2e\x70\xbb\x01\xa0\xc8\x1a\xf2\x5d\x43\x5f\xa1\x7e\x44\x3f\xc0\x1f\x37\x5c\xa3\xda\xbb\x70\xad\xb9\xd3\x17\x5a\x2a\xd0\xa9\x0e\xac\x65\xae\xca\xd8\x28\x9f\x45\x42\x25\x41\x9d\x3d\x52\x5e\x7b\x91\x56\x0b\xe4\x48\x0c\x32\x86\xf8\x80\x0c\xc1\x6e\x77\xa8\xce\x00\xc9\x4b\x6a\x32\xcb\x80\xdf\xd8\x20\x1f\xa2\x22\x25\x89\xc6\xe1\xb9\xbd\xc5\x50\x30\xb9\x00\xd9\xaa\x19\x7d\x76\x2f\x66\x44\x64\x0d\x39\x78\x12\x3e\x32\x44\x06\x9d\xa1\xe2\x03\x75\x48\xab\xae\x64\x44\x84\xec\xa4\x3c\xda\xe4\xd1\x14\x84\x2c\xd7\xf3\x87\x10\x62\xfb\x4b\x5d\x58\x2b\x6f\x7a\x74\xc0\x86\xfb\x4b\x24\xff\xeb\x49\x4e\x8d\xb9\x23\xa7\xf1\x5f\x0d\xd0\x6c\x16\xfa\xbb\xfc\xaf\x97\x2d\x3d\xa0\xcb\x36\xa4\x58\x21\x69\x17\xc7\xe3\xe5\x08\xd7\xe5\x88\xd3\x32\xd0\x5a\xf2\xfd\xbe\x19\xe3\x5f\x9f\xa3\xb3\x20\x4f\xe8\xad\x2b\x7a\x6d\xeb\xd9\x0f\x55\xec\xb0\xed\x1f\x4b\x4f\x0e\xb5\xc1\xb7\x3e\x66\x7e\x58\x09\x2b\x18\x26\xfc\xbc\x72\x1d\xa5\x15\x94\xa9\xf0\x4a\x32\x9d\x14\x1f\x42\x95\x31\x1c\xc1\x09\xbc\x85\x0b\x38\x36\x23\x9a\x9b\x11\x3d\x18\x2d\xcc\x9d\x0f\x39\x9c\xa6\xb9\xf9\x9b\x1a\xdf\xc8\x6b\x74\x57\xb9\xf7\x19\x03\x78\x6f\x5e\x7b\x73\x34\x07\xb0\xaf\xdf\xea\xe7\x07\x00\x3f\xa3\xa9\x61\x09\x4c\x00\x8e\xec\x06\x5e\x03\x78\x89\xa6\xb6\xe3\xec\xb3\x1f\x9f\x43\xe5\x7e\xb8\x0c\xf8\xd4\x03\x74\x69\xb3\x42\x6b\xd6\xe6\xdc\xf2\x2d\x1a\x87\xed\x8c\xa3\x4a\xc8\x0d\xab\xb0\x95\x0c\x0c\xd3\x02\xb2\x8f\xbc\x44\xf1\x32\xfa\xda\xd5\x72\x8d\x8a\x0d\x2f\x5f\x00\x5b\xaa\xac\xc7\xec\x2b\xb5\xac\xdc\xd3\x50\xc2\xdc\xea\x7e\x8d\x8a\x92\xc7\x81\x47\xe4\x1e\xea\xec\x15\xaf\xfa\x76\xf3\x17\xad\x16\x98\xa1\xfb\x41\xb6\x44\xfd\x41\xa1\x37\xff\x48\x43\x6a\x36\xff\x12\xc0\x7c\x30\x1b\xa2\x91\x94\x9a\x98\xf2\x8e\x99\xa0\xce\xde\xa4\xcc\x14\x35\x69\xb5\xc0\x2d\x9a\xb4\xba\xd0\x45\x8d\xcb\x16\x88\x0d\xe8\x60\x32\x1c\x82\x66\x53\x43\x9b\xdd\xc2\x85\xe4\x21\xe4\x6f\x0f\xa4\xdc\xfa\xca\x94\x9e\x33\xea\xa4\x39\xb0\x87\xff\xbb\x67\x58\x45\x7b\xe6\x20\x65\xf4\xef\xe7\x19\x08\xf8\x49\x25\xca\x00\xbb\x7e\xde\x84\x72\x13\xff\xf9\x59\x4e\x51\x8a\x99\x2f\xad\x67\xe5\x39\x62\x03\xf1\x1f\x49\xf4\x81\xa4\x4c\x52\x94\xc7\x86\xaa\x36\xd0\x6c\xc6\xdc\xf5\x4d\xee\x6e\xf4\x64\xd9\x77\x59\x5e\xc2\xe9\xbb\x92\x6c\xe0\xfd\xac\x07\xda\x09\x29\x44\xe0\x85\xf6\x5d\xc2\x0b\x4d\x15\xf2\xca\x24\x09\x17\xf4\xa5\xf8\x80\x55\xb6\x51\xb8\xf7\x95\xaa\xcd\xc6\x5b\x37\xb1\x90\xcd\xc8\xf5\xf1\x2a\x30\x3f\x16\x78\x6e\xa2\x26\x53\x00\x7a\xc6\x83\x80\xdb\xa5\xff\x5b\x14\xae\x50\x2d\x92\xe1\x4d\xed\x01\x27\xfb\xbb\x24\x37\x33\x42\xa7\x48\xac\xe1\x1f\x36\xd9\x1d\x99\x16\x16\x39\xc7\x54\x27\x06\x30\x8d\xe8\xdc\x75\xa2\xb4\x9c\x41\x34\x99\x88\x48\x55\x34\xaa\x9e\x3a\xb3\xf6\xb2\xf5\x38\x73\x3e\x2f\xa2\x6c\x04\x61\x45\x55\x20\xac\x23\x41\xd9\x54\x45\x7e\x37\xf6\x35\x7f\x7f\x32\x52\x4a\x75\xd8\x2a\x84\x44\x32\xd7\xc0\xef\x3b\x52\x5a\xa9\xf2\xd4\x40\xa9\xcb\x53\x5d\x72\x5f\xff\x88\xec\xd2\xe4\xee\xf8\x83\x79\x57\xda\xa3\xfc\xb3\x12\xf0\xf6\xef\x3a\xe0\xad\x2b\xf1\xdf\xba\x84\xd5\x53\x53\x45\xd4\x83\x09\x30\xc4\xdd\x8d\xcb\xec\x6c\x0b\xb4\xf6\x57\xdc\xcb\x6d\x64\x98\xdc\x47\xca\x38\xa1\x46\x0e\x85\x2c\x8e\x10\xb3\x66\x63\x74\x2b\x2f\xd1\x4d\x29\x43\xca\xe5\xc3\x71\x60\xe3\x2a\x64\x3c\x82\x8c\x84\x90\x31\xc4\xf7\x98\x86\x4c\x20\x16\x40\x66\xd3\x72\x28\x6f\x73\x79\xac\x30\x84\x10\x71\xd6\x6c\x5b\xac\xc4\x8d\x10\x2c\x2d\x66\x48\x06\x94\x4c\xb2\x1d\x5c\x0e\x24\x54\x8d\x95\x54\xc8\x5a\x0d\x19\xa8\xcf\x2e\x33\x01\x1b\xc5\xdd\xb4\x01\xb6\x04\x7f\x78\xb4\x01\xd4\x0f\xc6\x3f\xe7\x23\x4c\x55\x30\xdc\xac\x71\xa3\x26\x4c\xa5\x95\x68\xbc\x1a\x11\x3e\x9a\xe1\xd7\xaf\xbe\x31\x3f\x1a\x60\x3d\xca\xc5\xe8\x36\xe3\xe0\x71\x3d\x21\x34\x9f\xcd\x1e\xec\x22\x77\x77\x10\xa2\xda\x7d\x53\x4e\x82\xbd\xf9\x5c\xad\x1a\xb7\x42\x2c\x7a\xdf\x7c\x73\x7f\x7f\xdf\xbe\x7f\xd9\x66\x7c\xfa\xcd\x8b\x4e\xa7\xf3\x8d\x84\x44\xd5\x51\xf3\xa8\xa6\xa3\x54\xc4\x7f\xb8\x38\x5e\xaf\x55\xa0\xf7\x72\x9c\xda\x06\x35\x1a\x55\xd6\x18\x93\xbb\x46\x32\x44\x85\x27\x7a\xfd\xfe\xe1\x3e\xe2\xe4\x31\x5e\x68\x61\x07\x93\x80\x54\x0a\x80\x76\xa9\x83\xd1\xee\x20\xc4\xf7\xab\x39\x68\xca\x66\xfc\x80\x8d\xaa\x9d\x5e\xf5\xda\x49\xcf\x90\xe1\xcd\x1b\x47\xe7\x17\xfd\xe3\x77\x67\xe7\x6f\xfe\xbb\x7f\x78\xa5\xee\xa2\xe4\x81\x7d\x96\xcf\x71\x5b\xb0\x0f\x8b\x05\xe6\x87\x79\xa1\x02\xc4\x9b\x40\x4a\xb2\x33\xd4\x78\x55\xdc\x4d\x5f\xbf\x92\x5d\x92\x29\xd5\x9c\xcd\xeb\x46\x2b\xa3\xab\x55\xe3\xa7\xcf\x2f\x47\x3b\xbb\xbb\xbb\xbb\x3f\x7d\x7e\x89\x1b\xa0\xd5\x78\xf5\x4d\x58\xee\x95\x5c\xd5\xd7\x0d\x75\x18\x7b\xcb\x5a\xfe\x04\xbd\x44\x67\xf5\xad\xa7\x5a\x03\x26\x95\x76\x9d\xb1\x43\x59\x12\x12\x6d\x9d\xca\x10\x57\x3c\xa4\xdc\x92\x04\x31\xc8\xa2\x2d\x19\xa5\x17\x20\x90\x5a\x7c\x1a\x70\x48\x86\xeb\x8c\x40\x89\x89\x30\x47\x4c\x4a\x47\x05\x62\x83\xee\x70\x2b\x22\x80\xca\x62\x3c\x13\x8a\x41\x37\xca\x00\x9f\x22\x52\xad\x24\x70\x22\x4b\xb3\x99\x62\x6a\x92\xa8\x2d\x89\x88\x3f\x67\x6a\x80\x0d\x07\x75\xfd\xfe\xd5\xd9\x56\x1b\x00\xbe\x40\x08\x89\xea\xde\x04\x56\x05\x6f\x0d\x4a\x3b\xeb\x0c\x83\xfd\xdf\xda\x91\x55\x72\x19\xa5\x2b\xeb\xb2\xc0\x33\x5c\x14\xc6\xb5\x0b\xd9\x40\x39\xd6\xd5\xab\xd1\x00\x4f\x78\xb2\x3e\x77\xa7\xb9\xfd\xb0\xd3\x85\x0c\xd1\x7d\x1d\x8f\x97\xb0\x65\x61\xd6\xbd\x27\x4c\xda\x5e\x32\x1b\x6f\xb1\x66\x93\x6d\x13\x63\x5f\xc9\x26\xdb\x57\xf8\xb3\x50\x21\x02\x77\x3a\x31\x7e\xe8\x48\x48\xc1\x30\xd4\x10\xb5\x62\xe7\x0b\xf6\x70\x99\xcc\x95\x34\x9b\x22\x38\x17\x12\x7d\x00\x98\x1b\xac\xea\x51\xa5\xaa\xe0\x18\x6d\xa2\xad\x90\x60\xf4\x18\x6c\xcf\x5e\x17\x8e\x71\x31\xea\x75\xa1\x20\x62\x86\x7b\xdd\x35\x64\x38\x12\x5e\x94\xf5\xde\xde\xa0\x71\xd3\x80\x8d\x1b\x32\x95\x7f\x67\x6c\xf4\xe9\xdf\x4b\x26\xb0\x7c\x60\xe3\x07\xf9\x1f\x6f\xc0\xc6\x48\x71\x93\xf2\x07\x1b\xcb\x6f\x63\x89\x73\x12\x65\x61\x63\x3c\x93\x7f\x84\x8a\x41\x6f\x02\xd1\xcb\x8f\xb7\x5d\xf9\xe7\x85\xfc\xf3\x52\xfe\xf9\x56\xfe\xf9\x4e\xfe\xf9\xb3\xfc\x83\x73\x55\x48\x36\x49\xe4\xbf\xb9\xec\x7e\x46\xd4\x1f\x75\x23\xeb\x54\xb9\x8d\x39\x16\x79\x03\x36\x28\x53\x90\x30\xd9\xdd\x42\xfe\xe3\x12\x10\xbe\xbc\x91\x40\x16\xf2\xdf\x3c\x9f\xc9\x8f\xc5\x22\x97\xd5\x0a\xc1\x99\x6a\xa6\x10\x9c\x7c\x92\x65\x8b\xe5\x8d\xfa\x2b\x6b\x2b\xed\xb8\xfc\x5f\x02\xbe\x94\xff\x64\xd5\xbb\x9c\x37\x86\xed\x09\xe3\xfd\x7c\x94\x4c\x65\xcf\x54\xdc\xed\xae\x61\x9f\x73\x8c\xbe\x19\xfc\x24\x76\x7f\xe2\xdb\x3f\x7d\x3e\xe8\xfc\xb4\xec\xfe\xf9\x2f\xf2\xef\x5f\x3a\xfd\x9f\x96\x72\x71\x76\xd5\x7f\x07\xf2\xef\x8b\xbf\xa8\xbf\x7f\x55\x7f\x8f\xe4\xdf\xef\x8e\x7e\x5a\xbe\xec\x74\x3a\x3f\x2d\x8f\xfa\x47\x47\xc3\x6f\x60\x81\x51\x63\x49\xd5\x4d\x10\x1e\x97\xd6\x93\x63\x36\x52\xc7\x92\xb6\x83\xb6\x4f\xda\xea\x12\xc3\x19\x7e\x42\x7c\xb3\x15\x2c\x4f\xaa\x0c\x91\x3e\x68\x74\x2b\x3d\xd0\xd2\x76\x0f\x71\xc1\x8a\xaf\xed\x32\xfc\x1c\x74\x98\xa4\x70\x91\xf9\xbb\x5f\x22\x19\x3a\xdd\x18\x6d\x72\xef\x62\x51\x48\xc9\x27\x3c\x51\x11\x42\x1c\xaf\x56\x8a\xe3\x91\x87\x1f\xe4\x88\xe0\x81\xb0\x67\xe0\x10\xf4\x32\x8a\xfc\xaf\x3b\x5d\x00\x69\xb3\xb9\xa3\x39\x2c\xb5\xaa\xfa\x42\x51\xd1\xf8\x3e\xe7\x8c\x67\x8d\xc3\x9c\x52\x26\xb6\x35\x90\xdb\xf9\x76\xa3\x85\x5b\x0d\x49\x38\xc8\x18\x6f\xe7\x74\xfb\xf2\xe3\xbb\x6d\xa3\x87\x6c\x84\xb9\x3a\xd3\x53\x70\x76\x99\x71\x0c\xb1\x9b\xec\x4d\xb3\x15\xa7\x4a\xab\x4d\x53\x27\x0f\x1a\x1c\x11\x2d\x48\x93\xb5\x53\xd4\x33\xe4\xf0\x27\x21\xc5\x33\xc0\x40\xc3\xf2\x27\x96\xee\xea\xa9\x04\x70\xd1\xf0\xae\xea\x52\xc1\x05\x27\xc3\x73\x5b\x73\x3e\xc3\xc9\x0c\x6a\x1a\x81\xfe\x17\x70\x89\x11\x12\xa4\x33\x85\x6c\xc6\x1b\x9d\x41\x84\x3e\xcf\x2a\xc9\x1e\xde\x95\xb4\x03\x2f\x93\x69\x07\x5e\xfa\x69\x07\x5e\x9a\xa0\xbd\x92\x41\xf5\xbb\x90\xb8\xab\xda\xee\x85\xef\x0d\xb2\xd1\x75\x36\xc3\x60\x0b\xb7\x2b\x79\x34\x68\x99\xce\x08\x51\x9c\x15\x8a\xbb\xe2\x48\xe8\x9f\x90\x2b\x5d\x45\x2a\x01\x07\x5f\x83\x6c\x89\x57\xab\x6c\x89\xcb\x2c\x76\x71\x46\x9a\xdf\x9c\x65\x71\xd4\x92\x42\x5e\x92\x18\xcd\x5b\x3e\x97\x57\xd9\xb8\x34\xe9\xe9\xab\xa4\x67\x4c\x37\xa0\x03\xa9\x06\xdf\xb3\x18\x31\x0c\xa7\x98\x48\xd1\xe0\x7c\xc2\xc2\xf4\x90\x90\xfa\x1c\x72\xb9\x98\x6e\x72\x27\x38\x16\x3b\x84\xe4\xb2\x54\xa4\x67\x56\xe1\xb4\x48\xc9\x69\xf9\x3e\xec\xbc\xc2\xf5\x6f\x99\x10\x43\x6c\x3f\x23\x4f\xf1\xb7\x4b\x1d\xa7\xc8\xb5\x0c\x7a\x01\x07\x27\xcb\x9b\xcd\xb2\x9f\xb1\x0d\x8d\x29\x53\x4a\xd3\x5c\x05\x74\xd0\x73\x80\xb8\xd9\x61\x12\x3d\x9f\xd7\x1e\x8e\xdb\x53\x59\xc7\x4b\x3e\x0f\x03\x17\x23\x69\x3f\xd0\x60\xf4\x88\x27\xc8\x84\xb2\x06\x81\xca\x70\x45\x19\xc6\x62\x34\xc2\x5b\xb7\xd8\xec\xa2\x5b\xac\x5b\x5b\x60\x74\x8b\xcd\x76\xba\xc5\x6a\x3f\x8d\x31\x5a\x26\xf7\x14\x9c\x63\x34\x68\xfc\x9c\xdf\xe5\xc5\x88\x93\x85\xe8\x49\x96\xe7\xc6\xfe\x1e\xc2\x07\xf9\xf9\xa0\x01\x1b\x6f\xce\xdf\xfe\xd8\x80\x8d\x93\xe3\xb3\xbf\x35\x60\xe3\xf8\xf4\x9d\xfc\x7b\x74\x71\x70\xda\x97\x1f\x0f\x2e\xe5\x7f\x47\xe7\x17\xa7\x8d\x21\xbc\x93\x75\xfa\xa7\x6f\xfa\x6f\x1b\x43\x38\x95\x0f\xb7\x1c\x4f\x24\x9f\xc5\x47\x92\x7b\xcc\x47\x9f\xa6\x9c\x2d\x95\x90\x92\x2b\x28\x1a\x43\x78\x23\xcb\xc9\x02\xc3\x12\xcb\xae\xb1\x4f\x0f\x95\x35\x02\x76\x77\x48\xbe\x3a\xe9\x3e\x28\x68\x03\x55\xe1\xd5\xea\x1a\x67\x0f\xf2\x7c\x05\xcd\xe6\x35\xce\xa6\xa1\x12\xaa\x8f\x43\x3d\x95\x8b\x47\x9b\x5d\xe3\xec\x4e\x56\x53\xb5\x6e\x64\x21\xaf\xda\xe7\xb0\x9a\xe9\x7b\xb5\x32\xcd\x79\xf1\x6f\xe3\x4d\x22\xb7\x88\xa4\xa4\x2e\x96\x16\xf7\xe2\x0e\x4f\xb2\xcf\x7e\x20\x62\x17\x34\x72\x8b\xa9\xe0\xc1\x49\xd9\xbd\xe7\xf2\x9a\xe6\xe8\x3e\x2b\x05\x8a\x7b\x9c\x49\x31\xd4\x04\x39\x57\x84\x60\xc4\x66\x47\x8c\x7f\xb8\x38\xc9\x72\x00\xaf\x71\x36\xc7\x90\x00\xb0\xdf\x58\xd2\x22\x9f\xe0\x5e\xa3\x95\xf7\xfa\xba\x56\xf0\x2e\xf7\x02\xf0\xe2\x94\xfd\x4a\x14\x9a\xc2\xf1\x3c\xdb\x84\x6e\xe3\xfd\xac\x40\x02\xe6\xa8\xb1\xe0\x6c\xd1\x50\x2c\x97\x68\x0b\x76\xc2\xee\xed\x08\x80\x2e\x66\x8b\xc0\x02\x51\x15\xa9\x42\xd9\x7a\xc8\x47\x01\xa0\xfe\x64\x0c\x4e\x1b\x85\x78\x98\x61\xf9\x54\x84\x2d\xad\x56\x19\x2f\x75\x1c\x90\xa0\x02\x66\x0c\x1d\xe0\x01\x0f\xe7\x6c\x08\x9a\x4d\x36\x20\x61\xe5\xa1\xca\x46\x60\xbb\x05\xf0\xd1\x65\x8d\x1a\xf7\x0a\x28\x89\x68\x2f\x5f\xeb\x20\xc3\x18\x3d\x1e\x9f\xbd\xff\x70\xd5\x93\xd2\xd5\xbc\xb7\xd3\x81\xf9\x52\x4e\x2f\xe7\x52\xc6\xda\xe9\x40\x29\xad\xf4\x76\x3a\x6b\x78\xd9\x3f\xe9\x1f\x96\xe5\xd6\xf0\xfc\xfd\xd5\xf1\xf9\x99\xf7\xe2\xaa\xff\x8f\xab\x83\x8b\xfe\x81\xf7\xea\xe4\xe0\x4d\xff\xc4\x7b\x3e\x3a\xee\x9f\xbc\xbd\xec\xfb\xcd\x9c\xf4\xdf\xf5\xcf\xde\xfa\xed\x2a\x1d\x8f\xf7\xe2\xcd\x87\xab\x2b\xbf\xa3\x75\xb9\xa7\x3e\xe1\x58\x63\x52\xce\xd8\xa3\xd1\xf3\xf7\xb0\x32\x42\x0e\x6c\x91\xe9\x5a\x85\xed\xad\xf2\xd8\x16\x63\x4f\xb1\x62\x07\x88\x55\xd0\x18\x74\x51\xbe\x07\x72\x02\x15\x79\x2d\xa7\xd5\x5e\x1e\xab\x09\x97\x6b\xbb\xaf\x1a\x28\x20\x89\x55\x5b\x8a\x1f\x37\x9b\x0e\x78\xa4\xf0\xbd\x3e\x2a\x43\xc3\x42\x8f\x0a\x34\xd4\x32\x35\x34\x21\x68\xd8\xa9\x56\xcf\xa0\xd9\x6c\xa8\x5b\x11\x95\x73\x65\x5d\x69\xfa\xe7\xcd\x4d\x37\xf4\x42\x1a\x03\xef\x86\xe4\x8c\x47\x42\xc9\x67\xa9\xc6\x8e\x4d\x63\xde\xab\x0b\x73\xca\x9b\x01\x97\x7b\xec\x14\x47\xec\xb7\x19\xb7\x72\xf0\x3d\xc3\x4a\xfa\xc7\xf7\xdb\x87\xf2\x97\x42\xc7\xab\x44\xd6\xe6\xd2\xbb\x1e\xaf\xe1\x61\x2d\x7b\xf4\x3f\xc9\xef\x06\x29\xe2\x63\x2a\x82\xde\x4a\x96\xc5\x66\xb3\x65\xca\xdc\xce\x26\xb9\x71\x63\x01\x0a\xf3\x20\x41\xd4\xb3\xd7\xc6\xed\xeb\xeb\x80\x77\xe2\x90\xa9\xf0\xb4\xcf\x0b\x4b\xfd\x56\x27\x45\x8d\xfd\xff\x39\xa2\xf6\xc6\xcb\xf5\xb7\xe5\x32\x35\xf3\x0a\xbb\x45\x40\x8f\x87\x2c\x1c\xb1\x96\x2b\x57\x18\xc0\x8b\x7a\x06\xf5\xeb\x63\x2b\x40\xee\x47\x57\x28\xb7\x95\xdc\xc9\x88\x3e\x3b\x28\x42\x75\x5d\xf4\x2a\xb8\x58\xdb\xfa\xee\x56\xd8\x99\xb6\x39\xf4\x6c\x20\x6e\xbf\x5b\x75\x4a\x7e\x41\x3c\x70\x37\xe1\x76\xb2\xb7\xca\x1e\xcd\x39\x2c\x06\x89\x7e\x86\xc8\x83\x0c\x43\x13\xe3\xde\x38\x5a\xc4\x6b\x13\x83\x54\xcb\x4a\x07\x66\x60\x25\x2e\x88\xd2\x32\x4f\xdd\x04\x39\xdc\x53\x61\x38\xa3\xd6\xce\x2e\x33\x0a\x13\x10\x83\x5e\xa5\x68\x6a\x02\x4b\x94\x79\xff\xbf\x6f\xd3\x86\xcc\x7e\x38\x49\x0c\x5d\xca\xad\x47\xca\x5d\xa3\x37\xab\xb2\x9b\x0c\xda\x0b\x54\xa0\x0c\xf2\x27\x10\x26\xce\x07\x57\x76\x49\x64\x97\x52\x20\xb3\x5d\x6a\xd1\x0c\x8a\xb0\x4b\xdd\xa0\xd7\x2b\xb1\xb2\xe9\x05\x06\xf0\xec\xff\x9f\xe6\xdf\x7b\x9a\x0f\x31\x80\x3f\xff\xef\x9b\x66\x23\x38\x87\x34\xcd\xb0\x04\xf0\x3e\xfb\xb5\x94\xac\x8c\xc7\x0e\x39\xba\xcf\x30\xd8\xa2\x36\x4f\xbb\xa1\x5b\xbc\xc4\xc2\xe3\xff\xa5\xd3\xe3\x4e\x82\x9d\xae\xce\xbe\x50\x99\x2f\xc7\xf8\x28\x73\xfb\x5f\x47\xfa\xdb\xb6\x31\xa4\x32\xa6\xe9\xb9\x29\xd9\x56\x75\x54\xfb\x4e\x23\x78\xb5\x72\xd9\x4d\xca\x5c\x84\x65\x8e\x2f\xa5\x19\x37\xc9\x08\x1b\x8d\x5e\x2a\x61\x89\x2e\x53\xa6\x50\x91\x00\x9e\xd4\xea\xce\x83\x20\x3a\xc5\x8c\x89\xc2\xaa\xcf\x47\xa5\xed\x98\xb5\x67\xc1\xd6\x72\xcc\x86\x86\x59\x38\xeb\x2b\xc4\x4b\xcd\x3a\x67\x2c\x91\x16\x10\x26\xf4\x74\xdd\xa4\x9e\xae\xeb\xeb\xe9\xba\xc3\x5e\x27\xcc\x3e\xd4\xea\xda\xfc\x43\x9d\x3d\xfa\x0a\x71\xe5\xfd\x4c\x06\x74\x88\x26\x3e\x37\xaa\xee\x3c\x55\x32\x43\xfb\x07\xa8\xf8\x94\xd9\x63\x81\x67\x93\x9e\x58\x2b\xc5\x6c\x21\x8f\xa9\xf8\xbc\x94\x98\x5e\x81\xb5\x93\x84\xb5\xe3\xc3\xda\x91\xb0\x72\x0f\x56\x6a\x61\xd5\xf1\x61\x90\xce\xd8\xcc\x07\xa2\x02\x2b\x8f\x61\x8d\xf5\xda\x24\x65\x11\x2b\x11\x7c\x36\x09\x34\xf2\x6a\x0d\x07\x9d\xa1\x59\xb3\x4a\xa8\x9e\x4b\x3c\x9b\xd4\xd9\xc6\x4c\xb1\xc8\x3a\xa0\x5a\x45\x99\xef\xd5\xea\xaa\xb5\xbd\x67\xa5\x96\xb2\xf5\xaf\xdb\x2a\xba\x8e\x03\x1c\x21\x34\xd1\x78\x2b\x2a\xed\x38\x73\xc5\x3a\xa8\x1d\x56\x56\xaa\x96\xc6\x81\x1b\x0c\x8f\x4c\x89\xb0\xf2\x0d\xa1\x71\x86\x5b\x7b\xa7\xe4\x92\x5c\x87\xa5\xc3\x79\xc5\x5e\xf9\x0e\x8c\x67\xa7\xf4\x3b\xf9\xb2\x3e\xe2\x29\x7d\x46\x95\xc4\xec\x61\x2f\x05\xb0\x49\x9d\x5c\xad\x97\x9a\x3a\x5c\x9a\x7f\xd9\x6f\x89\x9a\x9e\xcd\x69\xb5\xaa\x4f\x54\xaa\xeb\x95\xac\x1a\x2e\x98\xd7\x40\x74\xaf\x72\x4b\x66\xe3\x44\x2d\xbd\xbd\xca\xad\x61\xd3\x1a\x57\x88\x5c\x44\xe2\x62\x02\x57\x45\xf0\x60\x74\x64\x92\xe1\xd7\xc8\xeb\xc6\x58\x23\x94\x77\x6d\x17\x39\x9d\x62\x73\xe1\xf6\xe6\xc3\xbb\xde\xf6\x48\xdf\xba\x4d\xb1\xd8\xfe\x83\xbe\x71\x9b\x70\x36\xdf\x56\x46\xc0\x7b\xdb\xba\x3e\x32\x11\x6d\x83\x36\x13\xfb\x1d\x0f\x43\xf0\xaa\xe7\xde\xff\x28\x80\x01\x64\xc8\x1a\x16\x1e\xd5\x9d\x42\x16\x8b\x4d\x2c\xc6\xb1\x8d\xb3\xa9\xfd\x2e\x0a\x34\x18\xc2\x74\x01\x13\xae\x31\x51\x22\x8c\xe7\x58\xdf\x52\x58\xae\x2c\xa0\xef\xa5\xca\x0c\xe6\x95\x2f\x95\x26\x35\x6f\x90\xaa\x61\xbe\x54\x6a\x8c\x5d\xb0\x84\x3a\x8f\x7c\xe7\x0a\x95\xda\xf4\x15\x10\x6d\x6c\xb1\x24\x9c\xd6\x49\x3f\xca\x72\x6d\xdd\x52\x52\x1d\x54\x46\x14\x76\x10\x0d\x2b\xdd\x41\x4d\xe8\xd4\x24\x11\xab\x59\xfe\x30\xbc\x40\x2d\x0e\x58\xe0\xd2\xfd\x87\xeb\xbc\xb1\xfb\x34\xea\xd4\x40\x11\xe1\x4f\x1a\x88\x31\x19\x9b\x10\x18\x55\x8a\xe8\x21\x41\xba\xb2\xf6\x65\x4b\x46\xa2\xab\xba\x4e\xa0\x34\x66\xc0\x5b\x94\xc2\x09\x2f\xd5\xed\xc4\xcf\x70\x2b\xd0\x64\x80\x87\xf0\x76\x80\x87\x9e\x37\x9e\x30\xf7\x30\x28\x8d\x1c\x70\x8c\x52\x68\xe1\xb1\x6a\x0b\x3f\x5c\x0d\x47\x8b\x01\x1d\xc2\xf1\x80\x0e\x3d\xe7\x28\xae\xfb\x98\xa3\x78\x6e\x54\x33\xda\xdd\x68\xee\xbb\x1b\xcd\x07\x64\xa8\xcb\xb1\x07\x93\x0e\xf3\x01\x6d\x44\x27\x78\x57\xf3\xdd\xae\xa1\xea\x8a\xa1\xce\x1e\x7b\xf5\x60\xbb\x62\xca\xb3\xe9\x61\xc0\x86\xb0\x40\x77\xf2\xbf\xbc\x4d\x74\xbd\xac\xb0\x09\x2d\x9f\x83\x46\xf0\x66\x63\x31\xdd\xb9\x8e\xb3\x33\xf5\xe3\xec\xcc\xd0\x74\xb0\x1c\xc2\x11\xba\x91\xff\xcd\xac\x8f\xde\xc8\x18\x04\xc0\x5f\x36\x58\xc7\x58\x5e\x51\xc7\x1f\xf7\x82\x20\x53\x84\x2b\x91\x91\x35\xed\xbe\x16\x3c\xa7\x45\x6e\x6e\xb6\x5d\x34\xcc\xb8\x05\x2b\x18\xc4\x8d\xa4\x8d\xde\xd3\x59\x27\xea\xb2\xc9\xcd\x53\x4c\xe5\x41\x0c\x40\x0d\x9b\x10\x03\x5a\x69\xe8\xed\xf9\x69\x5d\xdd\x78\x30\x11\x8b\x83\xa7\x84\x56\xcc\x83\xc2\xf9\xc2\xf7\xdb\x47\xb8\x42\x02\xea\x29\xb9\x57\xd9\xdb\x6f\x55\x86\x6e\x23\xb5\x8e\x1a\xf9\x60\x9d\x38\x7f\x05\x45\xf6\x9b\xac\x8b\x81\x5d\xdf\xc1\xd3\x24\x37\xd5\x7e\x14\x88\x39\x39\x09\xb5\xc4\x34\x9a\x03\x53\xee\xb9\x24\x15\xc5\x6d\xd4\xed\x05\xdb\x42\x16\xb5\xeb\x14\x00\x47\x2c\x1e\xaf\x41\x30\x73\x4f\xf5\x2b\x0c\x56\xc0\xc6\x34\xae\x1e\xa8\x95\x5c\xae\x3e\x8e\xfb\x63\x72\x49\x59\xe1\xf7\x4f\x1a\x9d\x38\xa1\x55\xdd\x4b\xde\x13\x3a\x66\xf7\xce\x94\x04\x52\xf4\x18\x6f\x3c\x75\xb1\x33\x56\x41\x39\xe2\x7d\xa5\x3e\x8d\x4c\xf2\xab\xdf\x3e\x07\xff\x2f\x18\xc0\x37\x4f\xea\x3d\xb4\x4a\xb2\xb2\x1e\xdf\x26\xd7\xe3\x5b\x7f\x3d\xbe\x1d\xf6\x76\xbb\x90\x55\xeb\x7e\x97\xac\xfb\x9d\x5f\xf7\x3b\x59\xd7\x70\xc9\x22\x1f\x7d\xb2\x3a\x97\x5b\x9c\x2f\x2c\x4d\x5d\x70\x36\xe5\xf9\xdc\xaa\x5a\xf0\x67\x81\x39\x75\xa1\x8b\x17\x23\x44\x4c\xb0\xe3\x1c\x31\xc3\xf1\x2d\x39\x57\x91\x63\x2e\xc9\x2f\x18\x25\x33\x16\x3b\xf7\xb8\x0a\x05\xf3\xa2\xb0\x98\x66\x2d\xab\x13\x7d\xd0\xcf\x93\x45\xf0\x79\x62\xb8\x02\xfd\x54\x2c\x76\xbb\xe1\xce\x58\xb0\xc5\xa6\x6e\x8b\xa0\xfa\x64\xb1\xdb\x75\x63\xf3\xde\x6b\xf5\x44\x7d\xb7\xf2\x7b\x37\xda\x92\x2a\x66\xd8\x3c\x9f\xcd\x9e\x3d\xea\x0a\xe0\x1b\xaa\x87\xf0\xa9\xb2\x24\x26\x0a\x53\x26\x58\x9d\x1a\x64\x31\x6a\xe1\xdd\xea\xda\x6d\xd9\x25\x8e\xb4\x21\x12\xfb\xab\x44\xcf\x02\xb1\x18\x39\xd4\x70\xc8\x24\xe7\x24\x1f\x8f\x79\x85\x04\x6a\xdc\xb8\xfa\x3a\xc8\x64\x8f\xa9\xe6\x2a\xf3\x63\x41\xe1\x79\x58\x5c\xd9\x04\x89\x5c\x54\x6c\x6d\x3d\x3a\x2c\x87\x83\xfc\x9d\xb0\x45\x26\xd9\xae\x52\x92\x02\xcf\xb6\x65\xcb\x78\x27\x7a\x05\xdb\x4c\xc5\x4e\xca\x30\x50\xea\x3d\x3f\xcc\x75\xb9\x3d\x68\x20\x45\x2f\x46\x2d\xb9\xb3\xca\x9a\x21\xbc\x36\x42\xc0\xf9\x32\x36\x36\xf3\x74\x29\x4b\x15\xcc\x98\x26\x0f\xad\xe0\x7b\x45\x61\x4f\x8a\xd3\x7c\x74\x4b\x28\xde\x0f\x1a\x33\x2f\x33\x0c\x7a\xc1\xfb\xcb\x87\x42\xd1\xc1\xfa\x6e\x4c\xcd\x60\x71\x4d\xae\x4b\xac\x03\x85\xe9\x74\x97\xdf\xfd\x67\x2f\x98\x85\xd2\x79\x56\x27\x9d\xfc\xee\x2f\xe1\x77\xb3\x8b\xdd\xe7\xbf\x56\xaa\x97\x9b\xc5\x16\xfa\x73\x27\x6e\xa3\x5a\xe6\xbb\xb0\x8c\x1e\x5d\x9b\x2d\xba\xe6\xfb\xb7\x7f\xad\x7e\x4f\x6c\x3c\xdb\xda\x8b\xa0\xb4\xf2\x04\xf5\x5b\x7b\xf1\x6d\xf0\xdd\x9c\x22\xf6\xe3\x77\x89\x8f\x57\xb6\x81\x75\x7a\xbe\xcd\x8a\x44\x0b\x9b\xbb\xef\x99\x80\x18\x9a\x99\x37\x0c\xfb\x87\xa7\xcc\xd9\x95\x4b\x65\xd2\xf3\xf8\xb9\x5e\x91\xb2\x9b\x7f\x7f\x7d\x37\xcf\xf7\xa4\x84\x3f\x6c\x3a\x67\xed\xed\x82\x9f\x94\xc5\x93\x29\x98\x27\x35\xb8\x97\xa3\x25\x2f\x18\xbf\x54\x67\xa3\x4a\xe4\xd6\x56\xbf\xf5\x47\xe5\xbc\x51\xf3\x6d\xe1\x65\xa8\x91\x5d\x9b\xc3\x93\xde\xd9\x23\x76\xcc\xe6\x28\x29\x4a\x84\xe9\xc0\x3d\x11\xc3\xca\x0b\xbe\xf3\xc0\x84\xf1\x63\x9d\xeb\x4a\x47\xb1\x49\x9a\xf4\x4b\xe0\x64\x93\xf2\x9d\xbb\x43\x13\x81\x0d\xaa\xe3\xa7\xaa\xc1\x2d\x21\x95\xb8\xc6\x71\xb1\x9c\xd7\xd9\x3d\x07\x1d\xc4\xde\x9c\xd4\x33\xf6\xad\x36\xae\xdf\xa9\xa7\x2b\x9e\x8f\x3e\x61\x9e\x09\x10\x47\xf6\xaf\xc6\xa9\xab\x55\xcb\x7a\x65\x22\x79\x29\xd4\x59\x87\xd5\xca\x95\xb4\xd4\xb9\x72\xfa\xd6\x39\x64\x78\x18\x62\x5c\xe4\x2b\xaf\xd3\x4d\x86\x53\x51\x7b\x31\x10\xcf\x8e\x9c\xeb\x8f\x46\x91\x6c\xd6\x12\x24\x78\x0d\x25\xbe\xe4\x37\x5f\xd3\xfa\xbb\xa7\x5b\x57\x75\x4e\x48\x51\xef\x38\x90\x6c\xf9\x6f\x61\xcb\x10\xd7\xb6\x6d\x6a\x25\xb8\x82\x67\xdf\xdd\x35\x9b\xfe\x93\xb5\x43\xaa\xae\xf4\x56\x68\xa0\x4a\x55\x00\xc7\x28\x58\x2c\x06\x50\xac\x56\x4a\x96\xd3\xdb\xf5\x8d\x0a\xb5\x93\xa9\xd8\xe4\x4a\x8e\xb9\x66\x0b\x4c\x2d\x52\xc7\x3d\x59\x75\x25\xae\x60\xd5\xc6\xd5\xb9\xd1\xcd\xb5\x95\x33\x30\xf9\x05\xfb\x69\xec\xae\xaf\x55\x46\xab\xda\x1e\x25\x26\x86\xbd\x79\x20\xfa\x1d\xc6\x85\xca\x66\xeb\x4b\x79\x09\xd8\xea\xf8\x36\xdd\x5b\xe9\x5c\xb3\x55\xb7\x4b\xa5\x98\x91\x02\x34\xd5\x7e\xe8\xb9\x31\x8f\x3d\x78\x60\x80\xb6\x89\x88\xae\x89\x3d\xec\x31\x7a\x8e\x32\xa2\x0a\x90\x46\x00\xbf\x0e\x12\x8f\x61\x97\x9b\xe9\x4b\x4e\x94\xf0\x60\x50\x92\xb4\x39\x10\x88\x3c\x04\xfc\xc4\x76\xd1\xac\xa4\x87\x50\xf2\x7e\x72\x46\x2a\xae\x06\xfa\x84\x0c\xbc\x0d\x02\x4e\xde\x4b\x8b\x56\x21\x6d\xf7\x64\x36\x3b\x0c\xf2\xa6\x41\xcb\x3a\x95\x7e\x6c\x95\xfd\x1b\xa4\x88\x4b\x9e\x47\x95\x2d\xfc\x22\xb9\x85\x5f\xf8\x92\xea\x0b\xe3\x26\x63\x16\xa2\x9a\xc7\x2e\xe5\x32\x95\x28\x97\xf6\xd0\x58\x04\xcb\x4a\xc1\x56\x79\xae\xfd\x28\x77\xff\x56\x9a\xa6\x71\x6d\x99\x11\xed\xe9\x9a\xfe\x6c\x57\x2e\xfa\xdc\x73\x26\x73\xc3\x72\x07\x07\x8f\x8d\xa5\xf2\xb7\xcc\x18\x0a\x46\x9a\xaa\x83\xf1\xd8\xa3\x67\x55\xd9\xcd\x92\x9a\x0a\xdd\xab\xb6\xe4\xd1\xbf\xda\xcd\x69\x9b\xab\xd2\xcb\x98\x06\xba\x12\x1b\x9d\xda\x2a\xed\x19\x97\xb6\x44\x6b\xe7\xcf\xa0\x1d\xb6\xb9\x90\x44\xc5\x8d\xc5\xe8\x5f\x59\x4a\xdb\x4c\x94\x5b\x30\x54\xc5\xb9\x14\x9e\xf5\x94\x2c\x18\x94\x41\x70\x3f\xf5\x67\xbc\x9e\xfe\xd7\x3a\xfa\x3b\x66\x73\x7b\xe4\x39\xe3\x32\x14\x13\x03\xe5\xfc\x5f\xf1\x13\x74\xa4\x3a\xa4\x26\x14\x12\xc9\xc7\x92\x34\x2c\x4f\xf8\x24\xce\x13\x5e\xde\xb8\x74\x76\x8c\x89\x54\xbc\x14\xb6\x97\x23\x9e\x4f\xd3\xa7\x8e\xba\x43\x48\x38\xf5\xec\x67\x02\xfd\x23\xec\x8f\x42\xec\xf9\x35\xc1\xaf\x84\x50\x80\xde\x3f\xc3\x52\xc1\xca\x79\x2e\xf7\x35\xab\xa7\xe2\x0d\x3c\x3d\x63\xa5\x0f\x69\xa2\x37\x7f\x2d\xe3\xbd\xaa\x7b\x31\x41\x79\x2b\x9d\x79\xa8\xa2\x42\x72\xe3\xf1\x21\xa3\xc2\x9c\xd5\x21\x5a\x9a\xbd\x1b\x1f\x48\x41\xfb\x9b\x50\x71\x49\xab\x3d\x6c\xc0\x7f\x10\xf3\x03\x41\x47\xf5\x18\x80\x82\xf9\xb7\xe5\xbe\x6e\x38\x15\x6c\x4e\xf4\x60\x49\x10\x45\x31\x1e\xd4\xf4\x18\x9f\x4e\xe1\xac\xd4\xa2\x82\x8f\x2f\x15\x82\x1c\xcf\xed\x93\xad\x18\x8a\x92\x1a\xfb\x93\xbe\xc0\xf5\x74\xaa\xf4\x0b\xae\x41\xf6\x54\xdb\xbf\x82\x5a\x95\xfd\x7d\x21\xb1\xda\xe8\x29\xea\x76\x5e\xe8\x30\x1a\x73\x78\x49\xef\xec\xc0\x76\x33\x79\x5c\x7b\x2d\x58\x63\x94\xd0\x50\x26\x4a\x94\x99\x06\x2f\xf2\xc8\x48\x81\x92\x08\xa5\x1f\xb5\x15\xd9\x40\x07\x83\x63\xc8\x6a\x2a\x82\x6b\x24\x15\xa6\xc5\x8f\xaa\xc1\x94\xb1\x97\xd0\x46\xd0\xb6\x0a\x80\x6c\xe3\xb5\x90\xcb\x3f\xb9\xe1\x4a\x28\x21\x39\x5b\xa4\x58\xaf\xa1\x6e\xc7\xc3\x8a\x2f\x6e\xcb\xab\x5b\xde\x38\x7d\x7c\x4a\x3d\xa5\xb5\x1a\x61\x74\xb5\x30\x3b\xa3\xf7\x38\x2e\x59\xa8\x22\x48\x52\xae\x02\x6d\xa4\x6f\x44\xc6\xf1\x5d\xa2\xb3\xaf\x40\x95\x36\x55\x50\x86\x66\x53\x58\x3b\xa7\xd2\x7c\x42\x04\xe6\x13\xca\x6e\xc2\xda\x24\x44\xcc\xe5\xf3\xc3\xa1\x7d\x4d\xd0\x37\xe3\x2f\xa2\x7e\xfb\xb1\xbc\xbe\x3c\x18\x9c\x69\x49\xfe\xf4\x82\x80\x3d\x4f\x1e\x4d\x90\x2d\x6b\x34\x64\xd6\xa2\xd5\xfa\x02\x79\xc8\xd4\xd9\xdd\x7d\x2e\x0b\xdb\x41\x08\xf9\x35\xad\xdb\x8f\x9a\x10\x9b\xce\xd4\xe0\x12\xbe\xdf\xfe\x80\x4b\x85\x82\xc6\x28\x7c\xbf\xfd\x6f\x5c\xa5\xaa\x9b\xd8\xf0\x2f\xe8\x13\xfb\x7d\xc5\x67\x42\x28\x09\xd4\xd8\x0b\x59\x1c\xaf\xbc\x59\xad\x02\xe3\x32\xf3\x36\x6d\x58\x64\xd5\x1b\x41\x1f\xd6\x21\xcc\xc3\xa8\xe8\x9c\x92\xac\x95\x51\xfb\xfe\xf8\xbf\xc2\xc6\x3f\xb1\x83\x13\x1b\xdc\x8b\x3a\x0d\xb1\x51\xe9\x28\x83\xfc\x8f\x18\xc0\x77\xff\x2b\x06\xc2\x71\x91\x8a\x7b\xec\xa2\x74\x47\x94\x88\x36\x9b\xd4\xa7\x44\xda\xc6\x9c\xfa\x39\x48\x7d\x6b\x89\x8c\x0e\xc4\xd0\x4a\xd8\x76\x06\xb6\x2a\x14\xe4\xeb\xa9\x2b\xe4\x6e\x3e\xff\xb6\xe1\x3e\x20\x49\xd8\x55\x08\x6d\xa5\xd8\x14\x70\xf3\xe7\x67\xd2\xf0\xb0\x9a\x8d\x74\xa4\x48\x51\x82\xcf\xc2\x1e\xb9\xfe\x5d\x09\xb6\xa7\xf6\x2a\x81\xbb\xc5\xf9\x38\x73\x4b\x81\xe5\x8e\xfb\x22\xd2\x9d\x6c\x54\xe4\x64\x16\x35\xfa\x45\x64\x3c\xd6\x3d\xd6\x51\xe8\x67\xd1\xe4\xda\x62\x31\x21\x8d\x0b\xd6\x51\xc3\xb8\x5c\x95\x96\xa9\x12\x92\x48\xfd\x01\xa3\x17\x7f\xfe\xcb\xb7\x2f\xbf\xfb\xf6\xbb\xef\xe0\xdf\xeb\x4d\x90\xf5\x2c\x7e\xa5\xdb\x87\x3c\x31\x98\xbd\x87\xfa\x5a\x3f\x97\xc1\x50\x0b\x30\x41\x2e\xeb\x9f\x8b\x34\xce\x2b\x33\x76\xcf\xcb\x26\x0a\x5f\x8a\xb3\x06\x5d\xce\x6f\x30\x2f\x3d\x83\x44\xb3\x59\x79\x47\xf7\xcb\x1e\x8d\x65\xbc\x8a\x7d\x93\xaa\xec\xfc\x91\xaa\x95\x8e\x38\x9b\x67\xc2\x5c\x53\xeb\xf7\xa3\x19\xa3\xce\xcc\xfe\xe7\xc2\x6b\x3c\x66\x9b\xe5\x87\xd4\xbd\xb8\xf5\x1a\x1a\x0c\x8d\x0d\x29\xde\xa3\xaf\x84\x36\x1e\xf5\x4c\x36\xa6\x58\x64\x7e\x64\x9b\xd8\xd4\x6b\x91\x14\x0b\x0c\x90\x6c\xf1\x90\xb8\x46\xbf\xe7\xa4\x62\x63\xa7\xcd\x9f\x82\x74\x3d\x2e\xe0\x85\x35\x48\xd8\xe9\x6c\x99\x5b\x76\xeb\x8c\xa5\xef\xd9\x1b\x37\x8c\xcd\x70\x4e\x1b\x3d\xf5\x54\x86\x3e\xeb\xb9\x7a\xea\x83\x99\x74\x7b\x01\x8d\xff\xd8\x45\xa8\xd3\x6c\xee\x64\xa7\xb9\xb8\x6d\xe7\x37\x45\x86\xc1\xeb\x3f\x60\xb0\x65\xb2\x80\xd8\xea\xdd\xf5\x3a\x13\x60\x3f\x33\xb2\xdb\xcf\x16\xef\xdc\xe4\x07\xb6\xcb\x7a\xe8\x6a\x8c\x17\xf9\x7d\x86\xe1\xff\xe5\x20\x58\x3a\xef\x53\xc2\x80\x20\x1a\x5a\x04\x73\x34\x3f\xf8\x55\x47\xfd\x1f\x0d\xa0\x12\x81\x8c\x32\xb1\x5d\xcc\x49\x19\x5d\xcc\xab\xf0\xea\xd5\xcb\xd5\xb7\x6b\xe5\xbf\xf0\xac\xaa\x58\x56\x50\x51\x1f\xb7\xc2\xc9\xb7\xdf\xf7\xbb\xdd\xde\x4b\xfd\x8d\xa9\x38\x81\xee\x53\xf7\xaf\x5b\xe9\x15\xda\x7e\xf1\x9f\x6e\xd2\xeb\xf2\x31\xa9\x45\x48\x61\xd2\x45\x7e\x5f\x8f\x82\xde\x64\xc7\x68\xb8\x21\x0b\x82\xae\x3b\xc5\x42\xd5\x2c\x8f\xf1\x57\x9d\x7d\xb3\xe6\x83\xff\x2b\x86\xbd\x94\xfd\x87\x31\xfd\x78\xe9\x90\x47\xdb\x3d\x74\xbb\x21\x32\x6e\x77\x9d\xcd\x85\xba\x00\xd0\xc6\x11\xd6\x5e\x24\xc2\xc0\xed\x44\x47\xff\xd9\xb4\x5d\x39\xe3\x0e\xfc\xfa\xf5\x4b\x63\xd0\x61\x5e\xed\x66\xf2\x1d\x78\xce\xdc\x62\x3d\xc1\xb1\xdd\x51\x81\xab\x02\x83\x9e\x1d\xf5\xcd\xa3\x40\xc6\x61\xa5\xb3\x51\x52\xd6\x85\x36\x0a\xb7\xba\xf5\x19\xa6\x12\x2c\x2b\xc8\xfe\x63\xa3\xa5\xa1\x6f\x6d\xe6\x64\x59\x67\xe9\x57\x2c\x7c\x7b\x69\x95\xad\xb7\xc6\x91\x49\x16\x57\xf7\x0d\x7f\xc7\xb0\x03\x77\xb5\xb1\x1b\xc7\x85\x08\x43\xdd\x95\x8c\xa3\x2e\xeb\xb9\x20\x62\x9f\x3d\xa4\x1a\xfb\x32\x01\xb1\xe2\x0d\x2b\x3d\xc1\x0e\xc4\x2e\xf9\x52\xe2\x9a\xa4\x2a\x9e\x68\x83\x1c\xdd\x6c\xcb\xb8\x06\x2d\x2a\x3a\x52\x75\xc5\x42\x47\x6c\x8c\xc7\xc7\xf3\x39\x1e\x93\xd8\xab\x36\x6e\x4b\xa2\xf9\xe6\xe6\xce\x96\xbe\xfd\xcd\x46\x68\x12\xfe\x95\xe3\xe5\xa2\xca\x51\x7d\x25\x2f\x60\xba\xf1\xcc\x3b\xed\x39\xe3\x40\xa8\xd8\x23\xa7\x0f\xa9\xa0\x72\x8c\xfa\x0b\xf6\xdb\x81\xdc\xb5\xda\x8e\xd2\x90\xd2\x42\x1a\x3a\x9b\x2d\x76\x25\xfa\x26\x4c\x24\x49\x1d\x6b\x5c\x69\x71\x77\x37\x1e\x08\xc6\x9f\x7e\xb3\x91\x74\xb6\x36\x77\x9e\xf0\x29\xf8\x35\xc6\x0e\x21\x03\x67\xf6\x75\x1d\x08\xad\x8a\x73\x52\x3a\x7e\xcc\xd7\x5e\xd4\xda\xee\x2b\xa8\x4f\x5b\xa2\xb2\x67\x22\xfe\xb1\x12\xa1\xd1\x18\xe6\x2a\xae\x2d\x61\xe3\x2f\xdf\x2b\x1f\xe7\xe7\x35\x51\x67\x17\x69\x32\x8c\xd7\x1d\x73\xc5\xa2\xd5\x4d\xcc\xa6\xd7\xa4\xd8\xad\x36\x9a\x3e\x14\x74\x55\x73\x28\x44\x37\x02\x2c\x1a\xca\x13\xe3\x30\x13\x0d\x1d\x8c\x36\xb9\x87\x04\xfd\x9f\x4f\xd8\xc2\x69\x05\x30\x6f\xe7\xb3\xfb\xfc\xa1\xb8\xc0\x77\xf9\x8c\x8c\x73\x15\x08\xc3\xad\x31\x69\x36\x89\x5e\xc6\x09\xcf\xe7\xb8\xc6\xd6\xcd\xb3\x6a\x73\x39\x70\x90\xf0\xb2\xe3\x58\xc5\xba\x67\xc2\x66\xfc\x78\xa2\xbe\x11\x4b\x89\x18\xf8\x33\x1e\x55\x03\x33\xba\xac\x1d\x21\x78\x65\xd6\x28\xc1\x35\xb9\xda\xdb\xe1\x65\xf6\x93\x3d\x60\xec\x7c\x6c\x08\x24\x55\x33\x34\x04\xce\x00\xd8\xa7\x9e\xcd\xe4\x2d\x29\x0c\x5f\x5a\x76\x93\xb2\xb0\xa9\x58\x58\x7b\x1d\x68\xe3\xcf\xca\x0d\x50\x92\xdc\xfa\xbd\xd8\x8b\x7d\x2e\x52\x37\xfb\x8a\x4d\xa9\x60\x98\xee\x51\xe7\xf7\xe9\x7f\x1e\xe1\x85\xfe\x08\x6b\x86\xb0\x81\x0b\x51\x85\x37\x32\x21\x5e\x73\xd6\xcc\xcd\xf1\x22\xff\xbd\x29\x34\x93\xf6\x18\x74\xe9\x92\xbf\x3a\x63\x9b\xda\x16\x5c\x20\x0a\x0b\x93\xa0\x9c\xc3\xa2\xcd\x97\x54\x90\x39\x46\x04\x16\x26\x59\x9b\xba\xac\x6f\x40\x7d\xa3\xa4\xd5\x46\x85\x8a\x1f\x69\x7f\x2b\xc7\x6d\x8e\x29\xca\x61\x51\xe6\x7a\x2b\x9e\xa9\x33\x7b\x96\x7a\x46\xb7\x1a\x5b\x48\x86\xa1\x3d\x9e\xd4\xaf\x9b\x46\x02\xcd\x0c\xfd\x02\xa5\xba\xa9\xef\x2b\x61\x9e\x4c\x42\xa7\x50\xd5\xdc\x84\x99\x69\xb2\xdc\xcb\x13\x1a\x50\xbf\x4b\xef\x2a\x82\x3e\xe1\x48\x65\x5d\x0a\xf4\x32\xda\xcc\x75\x56\x83\xe8\x35\xea\x32\x03\x46\xe7\xa7\x43\x36\xa2\x53\x03\xaa\x14\x02\x0a\xd9\x96\x5f\x11\xb0\xd6\xb5\xe0\xd0\x6e\x69\xd0\x4a\xf0\x87\x06\x5c\xaa\x94\x4d\xcb\xf6\xb5\x4e\xfe\xe7\x6c\x2f\xaf\xf2\x69\x99\xb7\xca\x4f\x09\x08\xe0\x32\x8d\x57\x2a\xbf\x26\x09\x27\xc7\x18\xf8\x92\x5f\x74\x58\x53\x89\xa2\xf1\x3c\xc9\x8e\x8d\x3c\x60\x1c\x32\x55\x96\xec\x11\x9b\xdf\x10\x8a\x2f\xe5\x89\x01\xc2\xe5\x93\x94\x84\x7c\xcd\xb2\x1b\x85\xb5\x5f\x37\xa2\x34\x69\x95\xa0\xc7\xd9\x09\x1c\x66\x2c\x84\xf6\x1e\xd2\xf6\xc1\x5c\x51\x2e\xa0\xf5\x2a\xe1\xf8\x0e\x16\xe5\xa5\x30\x34\x29\xed\x0c\x8a\x6c\x91\xf6\x68\x86\x73\x9e\xd9\x90\xaf\x3f\x58\x9b\xe5\x6c\x29\xd1\x07\x72\x68\x25\x31\xf5\x0c\x00\x1c\xa1\xb9\xb0\x65\x04\x5c\xc2\x19\x80\x13\x73\xb8\x9d\x10\xfa\x09\x2b\xfd\xe5\xd6\xc8\x1e\x3f\x19\x2b\xb5\x10\x14\x3c\x52\x23\x45\xfd\xc3\x09\x3e\x99\xd0\xaf\x24\x61\x50\xab\x40\xe8\x54\x67\xcf\xf6\x68\xf9\xc4\x7d\xd5\x89\x44\xf1\xc6\xd2\x04\xac\xad\x99\x98\xa4\x54\x79\x69\xf5\x81\x8a\x35\x24\xeb\xec\xbf\x31\x80\x42\x3c\xa9\xe4\xd6\xee\x24\xf6\x90\x9e\xe7\xfc\x13\xe6\x56\xea\x53\x18\x56\x60\x2e\xd0\x4e\xd7\xbd\x79\x8b\x67\x58\x60\xf7\x66\x9e\x2f\x10\x96\x7f\x3d\xd3\x74\x42\x55\xd2\x3b\xb3\x66\xa9\x73\x5b\xdf\xc8\x87\x77\xcf\x5e\xea\x75\xdb\xb2\x5d\x61\x0d\xa4\x5d\x63\xdb\x07\x5c\x6a\x02\x3d\xd3\xc1\x5d\x97\x88\xec\x67\x33\xc4\x06\x64\x08\x12\xa4\xb0\xe7\x0d\x50\xc7\xaf\x46\x79\xfb\x6e\x7e\xc4\xb8\x1e\xa3\x04\x63\xa9\xd6\x59\xa5\x74\xd6\x79\xb4\xb9\xbf\xca\xb7\xe5\x2a\x13\xf0\xc8\x06\x78\x88\x26\x88\xb8\xb4\x5f\x1c\x0a\xb9\x41\x6b\x57\x2c\xc6\x1f\x57\x58\x2f\xf7\x64\x63\xe5\x49\xb9\x3d\xd7\x00\x46\x81\xa3\x27\xd0\xb3\x14\xb5\x2b\xd6\xa9\xb8\x3f\xe5\xa1\x57\x70\xf8\x7d\xce\xee\x9e\xb0\x05\x90\xeb\xc1\xa2\x15\xc8\x11\x19\xe0\x21\x2c\x10\x19\xf0\xa1\x0e\x0c\xb5\xf5\xdf\x59\x0e\xf9\x7e\xed\xdc\x03\xc8\x4c\x4c\xbe\x2c\x97\xbf\xa3\x84\x51\x45\x2c\xf6\x6a\x74\xab\xe1\xbe\x25\x4c\x14\x89\x01\x1e\x6e\x05\xee\xb4\xea\x02\x8d\x82\x10\x27\x6d\xb7\x14\x40\xdd\xea\xb6\xac\x58\x41\xec\x68\xe2\xc6\x8c\x56\xbd\xea\x34\x42\xa6\x49\x70\x16\xae\xc4\x6a\x15\x76\x60\x6f\x26\x69\xed\xa9\xe4\x05\x4c\xd0\x83\x1d\x7d\xf9\xb9\xe4\xda\x00\x60\x6b\x64\x0e\xa4\x19\x29\xc4\xae\x61\x76\x46\x6a\xe3\x06\x99\x52\x47\xea\xe0\xd7\x39\xf9\xf0\x18\xf1\xf6\xf1\xd9\xf1\xd5\xf1\xc1\x09\x1c\x79\x79\x06\xb5\x33\xdb\x04\x8d\xbe\xe0\x44\xb3\x07\xe3\x48\x9d\x85\xfe\xf1\x03\xb2\xc1\x4c\x65\x33\x9c\x0c\x01\x1c\xfd\x56\xe7\x9e\x3e\x59\x76\xb2\x67\xcb\xe7\x60\xb5\xf2\x1f\xb7\xdc\xd5\xa2\x9b\x0c\x2d\x92\xb8\x8c\x89\xf2\x4c\xb5\x09\x3b\x6d\x00\xcc\xdf\xe3\xa0\x75\xb2\x8c\x59\xce\x08\x0e\x7b\xd0\xf9\xa0\x6e\x39\xe8\x94\xd8\x94\x2d\xc1\x6a\x65\x05\x1a\x73\xa6\x32\x94\x11\x24\xa4\xd4\x05\x12\x59\x80\x88\x1f\xb5\x3e\xa3\x15\xa7\x1d\x06\xa9\xc7\x21\xda\xac\x8e\xc2\x18\xfc\x30\x00\x75\x92\x47\x9b\xdb\xf1\xf2\x81\x8e\x6e\x39\xa3\xe4\x17\xcc\xb3\x47\x91\x73\x29\x31\xe4\xd0\x8d\xa1\x57\xac\x41\xbb\x78\xa0\x23\x67\xf5\x1c\xf6\x17\xa5\x6d\x03\x49\xe7\x36\x3f\xec\x62\x34\xa9\x21\x85\xaf\xa3\x23\x66\x66\x68\x82\x11\x31\x5c\x04\x24\x92\x6f\x88\x9d\xaa\x32\xae\x38\x08\x17\xbf\x39\xe1\xe3\xe4\xc5\x96\xc7\x6b\xb7\x17\x4a\xfe\x42\x09\x3c\xc0\x1d\xd9\xfc\x39\x47\xb6\x8b\x80\x87\x2d\x67\xf5\xbd\x62\xb4\xdc\xc9\x6d\x04\x2e\x84\xcd\xcd\x6d\x32\x83\x71\x52\x26\x75\x35\xbf\xdc\x1d\xd6\x54\xb5\xec\x1c\x5b\x14\xde\xdd\x6e\x16\xb4\xae\x6d\xad\x8c\xd9\x4d\xc5\xa6\x77\x03\xd7\x98\x1c\xb5\xd9\x81\xf1\xeb\xaa\x9c\x6b\x48\x2f\xd9\x30\xc7\x5e\xac\x41\x4f\x79\x61\x3d\xdd\x45\xc4\xe5\x50\xef\xf2\xbf\xf0\x03\x0c\xfa\x07\x2f\x8f\xfc\xef\xec\xa4\x3d\x9f\x40\x85\x0a\xc4\xc7\x58\x37\xd2\xdb\xe9\xae\x41\x55\x5b\x23\x4a\x6d\x0d\x6e\x36\x5d\x46\x6a\xc5\xf2\x06\xde\xc8\x96\xcb\xb6\xc3\xda\x92\x5b\xf8\x9f\x1a\x35\xab\x9d\x89\x35\x70\x2c\x11\xb1\x4c\xff\x17\xdb\x23\xd4\x09\xbc\x5f\x64\x50\x96\x12\x78\xbf\xc4\x8a\x2c\x21\xf0\x3e\x1b\x0f\x39\xbb\x57\x09\xb8\xb7\x8b\x5b\xb6\x9c\x8d\xb7\x29\xbe\xc3\x7c\xfb\x56\x19\x22\x35\x62\x1e\xe6\x79\xc2\xaf\xb5\xfa\x29\x05\x58\x85\xae\xac\x0e\x5d\x83\x3b\x1b\xcf\x8f\x88\x15\x26\x82\x8d\x22\xcd\xb9\xb5\x08\xcf\xe7\x78\xac\xde\x2c\x85\xe7\x15\x56\xa8\x57\xa3\xe4\x0d\x7e\x74\xd1\xe3\x07\x75\x8c\xd5\x9e\xaa\x75\x5d\xc1\x73\x7f\x2a\x41\xa9\x7c\xd2\x9d\xc7\xaf\x2b\xda\x67\xff\xd6\xc3\x45\x94\x0a\x2f\xab\xb6\x3c\xa1\x41\x81\x21\xc5\x06\x7b\xbf\x5c\x28\x60\x77\xf3\x56\x77\x8b\xe9\xf6\x32\x0c\x0b\x98\x97\x11\xf3\x97\xa8\xd8\xe5\x5b\x31\xb8\xb6\xe8\x12\x72\x2b\x37\x7a\x60\xc3\x11\xb2\x56\x4c\x5b\x5e\xd9\xdd\x97\xff\x31\x82\xa3\x8a\xd9\x6d\xbe\xc1\x19\xb2\xec\x31\xaf\x5a\x5f\x73\x9c\xcf\x66\x6c\x94\xba\x37\x33\x11\xdc\xcb\x79\x50\x59\x02\x24\x05\xb1\xe1\xdc\x75\x2e\x55\x1b\xa0\xc0\xf5\x63\xc9\x80\x9e\x29\x8e\x44\xfb\x26\x2f\x70\x0b\x2b\x1b\x6a\x3d\xa4\x16\x75\x37\x6a\x7b\xe4\x35\xea\xec\x91\xdd\x5d\xc0\xf4\x2d\x0f\x69\xe9\x0a\x90\xb4\x38\xd8\x32\x95\x11\x86\xd4\xfd\x62\x12\x39\x10\x5e\x3f\xa1\x46\xb7\x54\xd0\x59\x25\x7a\x53\xa1\x7b\xdf\x5f\x88\x5e\xfc\xc5\x34\x23\x99\x85\xb2\xa6\xc6\x3d\x53\xe9\xd6\x54\xd2\x2f\x5d\x79\x83\xac\x8f\x22\x9f\xea\xef\x92\xed\xd4\x55\xf4\xb3\xc1\x97\xb2\x2f\x93\x8c\x61\xdc\x13\xf1\x50\x66\x38\x4f\x90\xf3\x72\x29\xec\x09\x68\x10\x44\x78\xab\xa2\xac\x9c\x16\x6c\xa1\xae\x89\x37\x45\xc9\xc9\xeb\xcc\x97\x7d\xae\xf2\x2a\x9f\x4e\xf1\x18\x64\x83\x78\x8d\xcb\x19\x18\x02\x67\x1a\x2d\x17\x68\xa3\xc6\xd6\x6c\x49\x59\xce\x55\x7a\xc6\x6d\x73\x65\xe1\x5a\x95\x55\x69\xbd\xfc\x0f\xbf\x07\xfd\xb2\x54\x07\xe7\x4f\x50\x38\x09\x11\xea\x40\x6f\x52\xed\x53\x4c\xfb\x94\x54\xe2\x3d\x72\x1b\xc3\x4b\xdb\x03\x3e\x87\xc8\x85\x77\x9b\xce\xbe\x4f\x82\x20\x52\x20\x18\x41\xc8\x17\x79\x12\x9d\xb7\xfb\xa7\xef\xaf\x7e\xbc\x3e\xb8\xb8\x38\xf8\xf1\x49\x22\x47\x9e\x09\x01\x81\x72\x0f\x90\xfd\xec\x2b\x01\x01\xbd\xec\x39\xb3\xb6\x99\x9c\xf9\x6c\xb4\x24\x0c\xd4\x47\x7e\xcb\x69\x68\x12\xe5\xcc\x5f\x3a\xab\x15\x7e\x8d\xe8\xfe\xa4\xc7\x75\xa0\xdd\xa7\xaf\xdd\x02\x2b\x83\xc2\x5c\x97\xba\x4c\xf8\x25\xc4\x31\x33\xc2\xf1\x02\x07\x91\x72\x63\x12\x6a\xcd\x07\x54\xca\xff\xd7\x9d\x80\x6c\x3e\x31\x20\x7f\x61\x76\x6d\x8c\x23\xb3\x36\xb4\xc5\xa0\x8e\x06\xc8\x54\x18\x40\xae\x43\xe0\x4a\x32\x4f\x00\x24\xce\x17\xe8\x29\x8c\xfd\x62\x32\xe1\x51\x23\xd9\xb6\x9b\xf4\xd5\x2a\xf3\x5e\xa3\x14\x1d\x89\xa7\x52\x6e\x4f\x4b\x08\xca\xd7\xe9\x1e\xf5\xd9\x8c\xe2\x41\x38\xa3\xb7\xb2\xfb\x80\x46\xd6\xcf\xb0\x3f\x13\xfe\x75\x6e\x26\xa0\x68\x51\x00\x20\x2f\x09\x48\xb1\x51\x6a\xfa\x75\x57\xd6\x8e\x8c\x1b\x84\xb3\xfb\xd1\x03\x2f\xdc\x95\xcf\xb4\x94\x89\xf5\x24\x30\xd8\x9a\x30\x76\x1f\xde\xc0\x44\x94\x90\x54\xa2\xec\xea\xa0\xf7\x35\x84\xbb\xac\xd7\x9e\xe7\x0b\x2f\xef\xc8\xf9\xe4\x39\x36\x08\x76\xd9\xca\x66\xec\xd2\x99\x19\xd3\x7d\xd9\x23\x44\x45\x84\x5f\x3a\x1d\x91\xa4\x3d\x68\x91\xf3\x02\x1f\x2b\xd7\xea\x6e\x07\x00\x49\x17\xc4\x6b\xc4\xf7\x27\x3d\x3a\x10\xa9\xa1\x9c\x4f\x52\xb3\x80\xad\x36\xc6\x70\xcc\xcb\xaf\x3e\x4f\xe2\xed\x67\xde\xaa\xec\x23\x21\xed\x34\x5f\x72\x71\x56\xfd\xf6\xbb\x1c\x33\x75\x44\xfc\x2b\x41\x7c\xea\x0c\x52\xc4\xf1\x99\x20\x72\x75\x0e\x71\x7b\x0e\xfd\xb6\x90\xba\x43\x2a\x5e\x1a\x66\xfb\xd3\x0d\x92\xb8\x11\x79\x72\xf5\x82\x22\xde\x8a\xda\x52\x24\xbe\x38\xbf\xcd\x53\xce\xeb\x2a\x07\x9e\x63\x6b\x0a\x97\x0c\xef\x79\xc6\x3a\x09\x5d\x64\x9d\xb9\x4e\xa0\x8b\xf4\x82\x93\x48\x32\x19\x1c\x3d\x04\x65\x62\xbf\x84\x48\x33\xb1\x66\x54\xc0\x83\x6f\xcb\x0e\x40\x71\x0a\xf6\xc0\x25\xd5\x24\xb2\x1b\x0f\xdc\x59\x7c\xe0\xaa\x4e\x9f\x38\x7b\xe7\x98\x4f\x93\x46\x7f\x65\x54\xe0\xe0\xf4\x2d\xa2\xd3\x57\xf7\xb1\xe1\xf8\x25\x36\x31\x10\x34\xd9\xb4\x49\x71\xc4\xd9\x2f\x98\x66\x02\x34\x9b\x4a\x3e\x30\xf5\x9a\xcd\x4c\xa0\xc1\x10\x40\x1d\x35\xb7\x30\xe1\x72\xc9\x80\x0d\xa1\x9a\x1a\xe1\xa6\x2c\x07\xcd\xa6\xca\x97\xa7\x2e\x5e\x72\x1b\x88\x28\xc3\x3e\x9d\x65\x43\x60\xce\x6f\x4b\xf4\x9f\x41\x3f\x44\x02\x43\xd7\xb1\x9d\xcf\xe5\x03\x15\xb7\x58\x90\xd1\x59\x10\xce\xcf\x27\x76\xda\xe4\x29\xb6\x76\x14\xec\x40\xd4\xd4\x69\xfc\x57\xa3\x85\x7f\x43\x79\xa3\xb2\xec\xce\xfb\x52\x8e\x6b\x23\x47\xa2\x4a\xa4\x78\x12\x33\x45\xfe\x04\x95\xa7\x52\x34\x2d\x01\x63\x62\x0a\x6f\xec\xd5\x94\x49\xf5\x6b\x17\xc3\x83\xc2\xef\x57\xcf\xe9\xef\xc4\x09\xa9\x5d\x1d\x08\x8b\x9e\x0a\x7a\xf4\x29\xc5\x09\x51\x9f\x13\xc2\x10\xb7\x44\xc8\x09\xcd\x36\xea\x36\x6d\x10\xda\x92\x8b\x09\x30\xd3\xef\x27\x20\xf0\x22\x30\xd7\xbf\x9e\xe7\x8b\x5a\x71\xea\xf7\xa0\x9f\x55\x6a\x10\xf2\x1c\x35\xe4\x4e\xf3\x11\xfc\x29\x96\x28\x70\xa6\xd5\xbd\xf0\x4a\x2f\x24\xb8\x2c\xdb\xaa\xf1\xab\x25\x03\x31\xc0\xc3\x21\xe2\x03\x3c\xb4\x3c\x89\xcb\x16\xb7\x71\x03\xce\xf3\x45\x2d\x36\x71\xab\xa0\x95\x13\x2f\x09\xe5\x0e\x31\x8e\xbd\x3e\x29\x4e\x80\x5c\xae\x56\x70\xd3\xc7\x51\x67\x8f\x97\x76\xd6\x5c\x01\x8e\x07\x7c\x38\x44\x62\xc0\x87\x25\xc0\x0e\xab\x46\x4f\x30\x54\x84\x0a\xcc\x69\x3e\xfb\x28\x87\xec\x53\x3e\xfb\xe1\x2a\x10\x72\x6a\x39\x80\x90\xe5\xd1\x6c\xda\xd7\x33\x53\xb5\xdd\xd4\x73\x59\x3e\xbc\x29\x51\x3a\x1e\xe8\x97\x89\xf5\x69\x86\x4a\x83\xc9\x9e\x29\xe5\xff\x1a\x08\x2d\x3b\x94\x5e\x95\xc4\x22\xfe\x0f\xf0\x46\x15\x29\x30\x20\x7d\x1a\xb7\x09\xe2\xfe\x16\xb7\x51\x56\xfd\x97\x95\x80\xab\x0c\x51\xc5\xe9\xbc\xfc\x0f\xa2\xb3\xa1\xba\xc7\x56\x57\xbe\x28\xbc\x17\x2f\xa4\x34\xee\x35\x80\x10\x2a\x74\xb2\x9f\x41\x01\x73\xc8\x86\x5f\xc2\x2a\x4d\x0c\xab\xe4\x71\x48\x8a\x12\x14\x9b\x35\x7e\xba\xcc\xd3\x27\x4a\xb8\x4a\x5f\x7f\xa8\x54\xf0\x24\x3a\x57\x5e\xfe\x47\x74\xb2\x4c\x9e\xbe\x99\xd4\x98\x8c\xfd\x41\x47\xb8\x6c\x89\xce\xff\xfc\xc9\x51\x73\x46\x08\xb3\xce\x1e\xc8\x83\x97\xff\x21\x5a\x2f\x86\x30\x7e\xd5\xad\xbc\x1a\x0e\x8d\xc0\x79\xab\x3d\xf2\x67\x62\xb3\x4c\x1f\x6e\x46\xb8\xd0\xb5\x8a\xcd\xb5\x00\x1c\x0b\xa4\xf4\xd6\x51\x29\xa3\xbd\xee\xf8\x3a\xeb\x85\x30\x4a\xeb\x5b\xb1\x86\xf3\x4d\xbc\x40\x64\x6e\x65\xc2\x26\x1b\xe3\xd8\x30\x60\x9e\x36\xee\x36\xf2\xd5\x58\x07\x10\x51\x19\x88\x6a\xac\xbe\x8b\x0d\xdf\x12\x16\x4e\xd5\x42\xa3\x7c\x74\x8b\xdf\x71\xb6\x5c\x14\xd5\x8f\x33\x52\xe8\xcc\x5d\x75\xbd\x77\x3c\x9a\x56\x74\xbd\x07\xe1\x7f\x11\xfe\x97\x3b\xff\x8b\x0e\x71\x7e\xeb\x45\x6b\x96\x6f\x2a\x56\xec\x7e\x81\xc8\xa0\x3d\x35\x6f\xe5\xa4\x84\xbe\x8e\x95\xf9\xd4\x9f\x6d\x5c\xd8\x9c\x4f\xf5\x1c\x30\xe1\xf9\x46\xaa\x37\x6f\x70\xf6\x0f\x73\x14\x5a\xe3\x09\x05\x28\x76\xf7\xba\x8f\x63\x7c\xb3\x9c\x6a\xdb\xaa\x5e\x42\x94\xc8\xdb\x5e\x81\x8c\xf9\x11\x80\xd5\x07\x65\x03\xd2\x0b\x8f\x59\x53\x47\x9b\x87\x94\x55\xa0\x00\xeb\x75\xd2\xce\x60\x82\xc5\xa8\xd6\x0d\xcb\x39\xc9\x0e\x48\xfb\x02\x4f\x49\x21\xb0\xe4\x9d\x86\xf1\x45\x2e\xcb\xc7\x95\x26\xa2\x2a\xbe\x7b\x50\xc2\x04\x5f\x81\xf1\x31\xe4\xfd\x42\x3d\x5a\xd4\x5e\x15\x82\xb8\xb6\xa5\x7b\x15\x40\xaa\xbe\x5f\xe9\xe0\xec\xda\x5c\xc8\x8b\x69\x5d\x71\x5b\xda\x58\xcf\xc5\xba\x7e\x8e\xb3\x81\xf1\xc7\x4c\x39\x1b\xa4\x83\xb6\x1b\xff\x63\x15\xe8\xfa\x39\xa1\xd9\xbd\x4a\xf6\x7b\x4d\xc5\x5a\x6f\x48\x25\x6f\xaa\x2a\x44\x5b\xd9\xf8\xde\xe3\x3c\x36\xd6\x16\x3a\x7e\xbc\xda\x58\x05\xf9\x05\xb3\x49\x56\x00\xa8\x2f\xbd\x71\xf6\x68\x36\x41\x4f\x40\x4c\xef\x7a\x7c\x0d\x4f\x74\xde\xc7\x8c\xc0\x25\x50\x1e\x06\xf6\xf0\x9c\xb5\x17\x23\x34\x0b\xa3\xd1\xcb\x96\xbe\xc4\x96\x73\x26\xa1\x8e\xd8\xd2\x80\xc8\x3e\xa6\x6f\xd0\x26\x6b\x58\xd4\x7d\x50\x86\x62\x89\x4f\x6c\xbd\x36\x66\x57\x9b\x86\x39\x81\x1d\xa0\xb2\x72\x6f\xb9\xdd\xfe\x05\xe3\xc9\xd7\x89\xd0\xce\xc6\x3a\x26\x50\x62\x53\x28\xf4\x12\x40\x11\xd0\x32\x95\xfc\xf6\x29\x47\x2a\x73\x29\xeb\xd7\xeb\x55\xa8\x62\x06\x60\x51\x7e\x29\xec\x2b\x09\x7d\xcf\xdb\xf3\xf6\xaa\x17\xc7\x21\xd0\x55\x3e\x9c\x43\x77\xa4\x54\xb0\xcf\x3b\x6d\x3c\xa7\x7d\x3b\x57\x19\x30\x81\x2a\x92\x19\x5a\xd2\xcd\x6a\xd5\x83\xca\x95\x9f\x35\xfa\x67\x6f\x1b\xc0\x32\x64\x65\xab\xce\xb4\xdd\xef\x5d\x45\x89\x66\x88\xec\x7b\x06\x52\x04\xf4\x6c\x00\x0e\x65\xd8\xa0\xa1\x81\x05\x4a\xd8\x17\xda\x75\x2c\x84\x7a\x91\x49\x2c\x07\x70\xa9\x40\x39\xcc\x0a\x88\xc1\x56\x14\x0e\x6d\x09\x19\x80\xc2\xc4\xcf\x51\xf5\x2f\xb2\x25\xf0\x5e\x55\x12\x0d\x50\x91\x8c\xbe\x1c\xa3\x90\xcb\x69\xe0\x96\xc5\x8e\xd8\x9c\x8e\x45\x06\x12\xf1\xa8\xd5\xf8\x15\x66\x19\x36\xda\xee\x4a\x6d\x8c\xa3\xdf\x2d\x46\x00\x9a\x2c\x23\xce\x3c\xcf\x0f\xae\xd7\xa7\xea\x70\x8a\x33\x94\x6a\x13\xc9\x54\xd4\x84\xe0\x92\xd2\x9d\xcf\x56\xf1\xa7\x0d\x40\x48\x38\x9e\x17\xc0\x05\x44\xdb\x3c\x9e\x20\x8b\xea\x13\x83\x22\xe1\xa0\x18\xac\x6c\xcc\xc4\x62\x1c\x0b\x3c\x4f\xc9\xc2\x8e\x51\xca\x40\x7b\x9e\x2f\x54\x68\x39\x18\x4e\x51\xb2\xbd\x4a\xf4\xee\xe7\x2d\x70\xa7\x6e\x81\x5d\x48\x70\x39\xa7\x2c\x38\xa6\x31\x96\xc0\x95\x06\xad\x2e\x4f\x48\x32\xb5\x87\x35\x80\x8d\x66\x2f\xb7\x18\x4e\x45\x56\x24\xf0\x02\x32\xab\xaa\x0d\x38\x47\xbd\xb8\x4b\x10\x4d\xc9\xb2\x1a\x51\xab\x5f\x41\xf9\x72\x2f\x3b\x5f\x8d\x3a\xee\xd6\x2a\x8f\x4b\xfb\xfd\x70\xc6\x3f\x93\xaa\x23\xa8\x3f\x81\x51\x50\xe0\x64\x0f\x65\x70\xf9\x0a\xd5\xaa\xb1\x51\x4f\x40\x11\x2e\xbb\x33\xb5\x24\x2e\x40\x41\x3c\x7d\x55\x1e\xab\x9c\x91\x9a\xd9\xd2\x90\xd5\x50\x16\xd7\x7e\xdd\x7d\x65\x04\x40\x32\x78\xbe\x33\xcd\xac\x69\x23\x35\x7f\xc9\x86\xec\x1a\xd4\x35\xe4\xf3\xf8\x91\xe6\x67\x53\x76\x58\x4f\x0c\x48\x76\xeb\x1f\x7c\x75\x6d\x54\x45\x86\xda\x3c\x02\x6a\xc1\x2b\x8d\xa5\x05\x12\xef\x74\xd5\xd8\x5a\x39\xf3\x64\xb9\xb7\x35\x00\x7a\xea\xf6\xf0\xf0\xb6\x6d\x6d\x6d\x1e\x42\x5d\x24\xfc\x65\x71\x7b\xc1\x98\x88\xb3\xf5\x96\xf7\xfa\x27\x26\x45\xb6\x1f\x64\xa4\xd9\xa4\x71\xa6\xdf\x60\x7c\x20\x2d\x93\x51\x93\xd2\x22\xec\xbe\x26\x51\x70\x5c\xb9\x12\xf2\x81\x2d\x9e\x9e\xf8\xea\x1e\x5a\xb0\x45\xdd\x14\xd7\xcd\x5c\xb5\x91\xa7\x42\xf4\x79\x04\xa6\x12\x02\x3c\xa5\x59\xd9\x94\x92\xdb\xa2\x8c\x29\x16\x83\xe2\x14\xd2\x47\x8c\x3f\x91\xa6\xdb\x6f\x49\x95\xac\x32\x1f\x49\x7f\x6f\x73\x66\x84\x87\x83\xc9\x29\x05\x45\xb3\x29\x4c\x24\xb9\x09\xe3\x99\xc6\x19\x7d\xf5\xba\xb7\x63\x3d\x23\x24\xb3\x95\x01\xa0\x9c\x7d\xf6\xc0\x9e\x3d\xb1\xb5\xaa\xa7\x6a\x09\x5f\x83\xf7\x98\xde\x45\x09\xa1\xac\xe6\x2d\x41\x75\xec\xf1\xe9\xd3\x11\x7b\x80\x6a\x79\x28\xf2\x3c\x77\xde\xf7\x51\x5a\x8a\x52\x31\x2c\x2b\x05\x79\xa0\xac\x7d\x36\x64\xe8\x51\x0e\xad\xb7\xd3\x85\x6a\x48\x2a\x62\xfe\xda\xaa\x83\x83\xb8\x03\x65\xd9\x8e\x2d\x8b\xef\xb7\x89\x09\xa3\x6f\xce\x1a\xee\x9d\x4b\x60\xad\x62\xbb\x06\x1c\x37\x71\xf1\x92\xab\x9b\xc7\xdd\x01\xa7\x88\x85\x89\x03\x53\x86\x74\xd9\x13\xaf\x51\x67\x4f\xec\xee\x02\x8a\x42\x0d\x8c\x42\x13\xc1\xe5\x91\xa2\x62\xc3\x40\x6d\x61\x45\x61\xac\x07\xd8\xac\x77\x55\x05\x9f\x11\x4d\xa7\xd0\x84\x3e\x10\xd6\x42\xa9\xd7\x28\xf5\xdd\x3d\x61\xc0\xbb\x34\x36\xd5\x0c\xf3\x7e\xe1\xf5\xd3\xd0\x04\x35\x5c\x8f\x8b\xd1\x33\x06\xb2\x18\x6d\x1c\xc5\x62\xe4\x0d\x81\xe7\xcf\x68\x90\xe7\x1b\x1b\xe4\xb9\xd7\xe0\xa4\x7a\xcb\x55\x8d\x63\x31\x59\xd4\x34\xe8\x52\xea\x95\x0d\x16\xcf\x69\xb0\xd8\xdc\x60\xe1\x37\x68\x76\xee\xc6\x56\xad\xf3\xb9\x29\xeb\xea\x62\x7a\xf7\xac\x7a\x98\xde\x95\x7a\xf5\x87\x5a\x2d\xad\x01\xf2\x6e\x9e\xce\x7e\x15\x53\x22\xbf\xa7\xbb\xb9\xa1\x69\x46\x41\x7d\xf7\xb4\xf2\x5e\xb3\x2d\xde\x9d\xd4\x05\x9e\x20\xe1\x27\xaf\xbb\xcb\xf9\xd5\xb3\x9d\xfe\xb4\x92\xb5\xea\xf0\x27\x94\x0d\x09\x1d\x26\x75\x85\x1b\xcd\xd5\xa6\x58\x7c\xcc\x79\x06\x3c\x63\xaf\x0d\xfa\xff\x64\x4d\x65\x6b\x5a\xad\xf8\x31\x65\xcf\x6d\x68\x8b\x3f\x1d\xb6\x67\x27\xce\xab\x39\x33\xad\x06\xfc\x8d\x9e\xaa\xd0\x1f\x50\x8d\x5c\xc7\xb0\x97\x4b\x32\xad\x71\x00\x35\x31\x30\xac\xde\xe8\x2b\x42\x12\x70\xe0\xc7\xe2\x16\x52\xbc\xa2\x53\x45\xad\xdf\xe2\x85\xba\x50\x64\xed\x51\x4e\xc7\x3a\xb0\x8a\xb6\xa5\x6a\x13\xfa\x33\x1e\x09\x3c\x3e\x9f\x13\x21\xb0\x8e\x8e\xb9\xd3\x85\xac\xed\x72\x03\x99\xca\xbb\x5d\xc8\x36\xe7\x35\xfd\x1b\x80\x37\x35\x83\xe3\x99\xb1\x2b\x93\x83\xcb\xbf\x7c\x70\xba\xb6\xba\x02\xcc\xdb\x4b\x3a\xcf\xc5\xe8\x16\x8f\x5d\x34\x73\x73\xf5\x9c\x6b\x43\x73\x0d\x70\x07\xb2\x6a\x48\xbe\x0b\x7c\xfb\x30\xd6\x29\x78\xb6\xef\x89\xb8\xdd\xf6\xfc\xf4\xb6\x55\xbc\xbe\xe5\x62\xc1\xb8\xc0\xe3\x46\xc9\x37\x14\x28\xb7\x84\xf7\x50\x85\x0f\xb7\x87\xb7\x97\x5e\x42\xf2\x14\xe6\x06\x71\xb5\xba\x16\x59\x01\x9a\x4d\x75\xf9\x4e\x8a\x4b\xcc\x95\x14\xa6\x7a\x3d\xb2\x3e\x4b\x20\x2b\x00\xd8\x03\x05\x0a\x22\xda\x97\x3a\xbb\x72\xa1\x0a\x98\xa7\xe7\x9d\xcb\x79\xe7\x71\xf0\xb2\x0d\x69\x76\x14\x8a\x96\x53\x04\xf5\x7d\xc2\x54\x9f\xf1\x5e\x10\xcd\x4e\x8f\x96\x7a\x2a\x7f\xe0\x5b\xa4\xd9\x24\x25\x68\xcd\x66\xc6\x3d\x40\xfd\x74\x1b\x90\x04\x1f\xc2\x44\x19\xb7\xa9\x64\x35\x1c\xac\x83\xc1\x28\x77\x8b\x53\x52\xa8\xb5\x4e\x5a\xa1\xc6\xf9\x33\x2d\x8c\x3a\xf8\xe5\x0e\x42\x5c\x45\x78\xcc\x04\xe2\x11\x36\x83\xd7\x88\x27\x76\x88\xb2\xae\xd8\xa3\xcd\x66\xb6\x73\x2d\x32\x0a\x56\xab\x7b\xf9\xdf\x0e\x42\x02\xec\x01\x67\x82\x62\xbc\xc9\xb7\xf0\xac\xc0\xdb\xba\x8a\xc9\x14\x96\x28\xc4\xfd\xb1\x23\x0a\x79\xb4\x05\xd7\xe1\xa8\x6b\x72\x72\x55\xdd\x2d\x2b\x83\x8d\x6e\xd6\xdd\xa0\xb6\xa2\xe7\x56\x6b\xcb\x06\x4a\xc2\x25\x2c\xc1\xac\x5d\x8b\x8c\x4b\xfc\xcd\x28\xe2\x2a\x99\xa2\xba\x01\x69\xab\x95\xc8\xbe\xf9\x3f\x7f\xfc\xa9\x75\xd3\xcb\x7e\x1a\xb7\xc0\x1f\xff\xf0\x0d\x00\xcd\x26\x1d\x74\x87\xfb\x67\x2a\xdc\x66\x26\x7f\x03\x9d\x0f\x5a\x5d\xb3\x66\x5e\x27\xc1\xdc\x70\x00\x71\x4c\x64\x6c\xa0\xd6\x60\xed\x25\x66\xc4\x93\x94\xce\x49\xf6\x25\xb3\x14\xf7\x1d\x4f\xd3\xee\xae\x39\x02\xfd\x49\xf2\x32\xc2\x29\x04\x69\x36\x15\x82\x6c\x1e\x28\xad\x0e\x74\x77\x37\x39\x50\x0a\x12\x73\x82\xe2\x05\x6d\x36\x6b\xbb\x8a\x36\x5a\xa2\xdb\xca\x4c\xa6\x92\xf5\x84\x04\xa3\x1c\xbe\x15\x40\x56\x2b\x5c\xd3\x46\xe4\x91\x9d\xea\x2a\x4c\x3c\x53\x86\xed\xd2\xd7\x3c\x36\xbe\x03\xff\x84\xb9\xc9\x92\x52\x5e\x64\xec\x67\x14\xe5\xbe\xdb\x27\xe4\x28\xf7\xdc\x38\x21\xa9\x64\xf6\x09\xd2\x85\x70\x15\x34\x85\xb0\x65\xe1\xa6\x88\xc5\x4b\x15\xa1\xa8\xf5\xaa\x6b\x36\x2f\x45\xc6\x80\x73\x68\x4e\x4e\x3f\x73\xe5\xc3\x42\xc6\x51\x39\x5c\xec\xb0\x08\x00\x90\x80\x5e\x6a\x5a\xe5\x7c\x6d\x98\x56\xdd\x75\xd2\x59\x53\x3b\xd9\xca\xa9\x51\xb9\x90\x12\xc7\x8c\x08\xdc\xec\xd5\x29\x1e\x34\xee\xaf\x43\xc2\x74\x0e\x56\x30\x44\x07\x7f\xff\xac\xe2\x1e\x1b\x93\xde\x0c\x23\x0a\xfc\xce\xf7\x44\xb3\xb9\xf3\x59\x64\x92\xa6\x5a\x97\xf0\x08\xae\x7f\x54\xb2\x2d\x39\xb6\x51\xd1\xcc\x24\x62\x85\x19\x87\x7c\xc4\xaa\xc1\x63\xb2\xff\x12\x21\x44\x14\x85\xbb\x7a\x58\xe0\xfd\x8c\x94\xd4\x4e\x2e\x62\xb3\xe9\xbf\x41\x2e\xb9\x9f\x5b\x7c\x12\x66\xa3\x01\x3d\xd2\x6c\xa6\xa2\xb8\xff\x05\x21\xb9\x00\xa6\x9f\x66\xb3\xf1\xc7\xd5\x1f\x1b\xee\x9d\x6a\x7d\x9d\x11\xb0\x5a\x5d\x8a\x8c\x00\xb0\x1f\x23\x59\xd8\x8f\x8f\x72\xc4\x65\x7f\xf4\xb2\xf9\x08\x00\x7a\xaa\xa5\xfd\x2c\x3c\x8f\x48\x65\x04\xa5\x3c\xee\xb2\x27\xba\xc4\x5f\xe2\x59\xa9\xb0\x38\xa4\x00\x72\xab\x53\x08\x71\x9c\x80\x64\xee\x1f\xd9\x43\x80\xd2\x69\xcc\xaf\x14\x4b\xaf\x7b\x25\x93\xd0\x53\xe4\xab\xd9\x54\xc4\x7b\x3f\xa3\x95\xe5\xa6\x1b\x97\x3b\xa4\x26\x14\xf4\x24\xb2\x27\xe9\xf8\xa6\x94\x47\xe1\xc8\x53\xc7\x7f\x85\x87\xab\x1b\x91\xde\x6e\x7d\x7d\x14\x85\x1c\x1f\x99\x64\xc6\x48\x7e\x91\x8f\xf0\x87\x8b\x63\x84\x10\x77\xf9\xc9\xb1\x94\x49\x94\xd5\x38\x42\x2e\xdf\x69\xf0\xb2\x2d\xd8\x87\xc5\x02\xf3\xc3\xbc\x90\x32\x57\x46\x25\xb0\x81\x46\x3d\xc1\x85\x0f\x86\xda\x9c\x4c\x0f\x91\x96\xf9\x82\x0a\x00\xa9\x82\x56\x01\x66\x00\x6e\x5c\xbd\x39\x7f\xfb\xa3\xdc\x07\xd4\xf6\x1c\xf4\xe0\xe7\x60\xa4\x7e\x62\xcc\x90\x19\x4f\x4a\x30\xd6\x7b\x26\x48\x3a\x6a\xaf\x0a\xe3\xd5\x4a\x89\xa4\x41\xcd\x8d\x58\x98\xce\x20\xe5\x07\x52\x72\xf1\x93\xaa\x53\xe6\x04\x36\x49\x6b\xd0\xb9\xc8\x98\x9c\x67\x49\x89\xee\x0c\x5a\x52\x45\x85\xb4\x84\x4c\x81\x66\xd3\x59\xbb\x58\xe8\x8b\x5e\x67\xde\x46\x00\xec\x56\xf6\x91\x0f\x9a\x3f\x06\x05\x5b\x62\x1c\xd5\x74\x55\x65\x4e\x67\x17\x2d\xa2\x7e\x10\x92\xfa\x71\x39\x08\xa2\x07\xc1\x83\x41\xf0\x68\x10\xc4\x0e\x82\xb8\x41\xf0\x9a\x41\x58\xb8\xc2\x31\x54\x46\x90\xce\x87\xfa\xbc\x21\x10\x39\x85\xea\xc8\xd2\x66\xd2\xc4\x37\x93\x2e\x35\x90\x26\x29\x96\x21\xa8\x65\xda\x2d\x32\xe0\x43\xb5\xdd\x0c\x8a\xd5\xc9\xa8\x6b\x25\x34\xe0\x5a\xb0\x37\x8e\x70\x53\xfe\x49\x8f\xf7\x77\xf4\xc1\x9d\xcf\x01\x33\x6c\x59\x94\x34\x57\x02\xa0\xca\xde\x92\xd8\x54\xa6\xbc\x9f\x9e\x34\x8c\x28\x1f\x41\xe7\xc5\xe6\x0c\x87\x31\xc5\xe2\x54\x07\x9c\x4b\x09\xa9\xb8\xfd\xef\x25\xe6\x0f\x97\x78\x86\x47\x82\xf1\xec\x4f\xc5\x88\x93\x85\x18\x4c\x67\x73\x8e\x1a\x7f\x6a\x89\xd6\x9f\x1a\xc3\x3f\x01\x4d\x4d\x2c\x49\xdf\xaa\x48\xfa\x87\x39\x95\xf2\xfc\x84\xd0\xf1\x76\x61\x24\x70\x3c\xde\xd6\x62\xa7\x94\xda\xb6\xff\x45\xe8\xae\x39\xc4\xfe\xd5\xa8\xe0\xd2\xb3\x12\xd7\x1a\x57\xe2\x5f\x91\xbe\xd6\x72\xbc\x6e\x4e\x54\xeb\x5b\xb9\xc7\xbc\x21\x15\x3e\x20\xe3\x2e\x40\x6d\xb0\x9c\xc0\x5b\xee\x0a\xd5\xc4\x2a\x30\x93\x77\x82\xf1\xf8\x48\xf3\xb9\x83\x5c\x32\xd0\x2e\xc3\x6d\xd9\x5a\x90\xe1\x96\xc0\x9d\x4e\x7c\x6a\xd5\x26\x4d\xb1\xf3\xb4\x95\x20\xb0\x51\xa5\x80\xc4\xc2\x98\x7f\x56\x8e\x59\x1e\xa3\x1f\x1f\xcc\x12\x65\x43\x1d\x43\x4a\xf9\xcf\xad\xf2\x3f\x98\xc1\x2f\xcd\x17\x57\x2a\xfa\x6d\xff\x4f\xb5\x50\xf6\xb5\x9f\x38\xbf\x5c\x33\xfa\x76\x26\xad\xb1\xae\xa9\x82\xb0\x52\x28\xf3\x75\xf6\x03\x06\x5b\x4e\xdd\x76\x2d\x6a\x99\xcf\xb5\x2b\x74\x2f\x7c\x61\x21\x25\xe6\xef\x7a\x62\xbe\x77\xc7\x2a\x3c\x71\x5f\x38\x71\xbf\x6c\xb8\xef\xf7\xde\xad\xe9\xfd\x73\x3d\x88\x92\x3f\x96\xbb\xbd\xc2\x22\xbb\xca\x97\x9b\x2b\x6f\xd7\xd7\x3c\x17\xc1\xf6\x35\xf9\x5b\x3a\x7b\xb4\xf4\x8b\xa1\xad\x16\x20\x93\x2c\xe3\x08\x0f\xe8\x10\x28\xaa\x2e\x39\x22\x4b\x6c\xf8\x5a\x4a\x5d\x74\x8c\xf9\x69\x10\x5a\xd1\x85\xa9\x29\xf5\x9c\x73\x61\x2d\x1a\x83\xaf\xbe\x69\xd0\x83\xc8\x72\xa5\x99\x3e\xfb\x70\x72\x72\x7d\xd1\x3f\xea\x5f\xf4\xcf\x0e\xfb\xe8\x16\xe2\xf6\x87\xb3\xb7\xfd\xa3\xe3\xb3\xfe\x5b\xef\xfd\x04\xe2\xf6\x7b\x4e\xe6\x44\x90\x3b\x7c\x61\x2f\x59\xd1\x12\xe2\xf6\x21\xa3\x63\x63\x10\x5e\x7e\x98\x43\x9d\xff\x11\xdf\x2c\xa7\x53\xc9\xce\xcd\x66\x37\xb9\xaf\x36\xc1\xe0\xf1\xa3\x0e\xfb\xa5\x6e\x02\xeb\x0b\xca\x72\x3f\xc8\x72\x53\x97\x4e\x32\x50\xa0\x07\x34\x3c\x32\xe4\xe3\x48\x44\x31\x6f\x3a\xc1\x2c\xdc\x49\x0e\x4f\x5b\x0e\x9e\xb0\xfb\x13\x7c\x87\x67\x1f\x4f\xd1\x5c\xc8\x49\x30\x77\xa8\x1f\x4f\xd1\x3f\x31\xc4\x6d\x1d\x81\xed\x02\x17\xcb\x99\x40\x44\x96\xb8\x24\xf3\xc5\x0c\x57\x32\x5c\x1e\xca\xd2\x95\xb7\x57\xf2\xad\x35\xb3\x7f\x77\x89\xc6\xaa\x05\x75\x07\x72\xa2\x3e\xd1\x3b\xc2\x19\x55\x14\xff\x17\xd5\x82\x4e\x00\xe2\xbf\xff\x5e\xbd\xef\x1f\x1d\x7c\x38\xb9\xba\x3e\x3c\x78\x7f\xf0\xe6\xf8\xe4\xf8\xea\xb8\x7f\x89\xac\x49\xe3\x49\xfe\xc0\x96\xa2\xb7\xd3\x81\xe6\xc5\x55\x3e\x95\x4f\x0b\x8e\x25\x61\x3f\xe0\xd3\x42\x3e\x6a\xea\x64\x9f\x1c\xb7\xfc\x3d\x63\x9f\x7a\x3b\x5d\x68\x4e\x27\xfb\x18\x98\x4b\xba\xda\xda\xd6\x41\x7e\xd7\xf7\x0d\xba\xb4\xfd\x7a\xac\x6e\x4d\x47\xb2\xbc\x9c\xdc\xd3\xe3\xb3\xe3\xd3\x83\x93\xcd\x40\x77\x03\xa0\xbb\x21\xd0\xdd\x00\xe8\xee\x17\x02\xdd\xdd\x08\x74\xb7\x02\x74\x57\x02\x7d\xb8\xe4\x9c\x60\x29\x3e\x2d\x18\xc5\x54\xbc\xc5\x13\xb5\xab\x18\x45\xd7\x10\xb7\x49\xb1\xa1\xc0\x0d\xc4\x8a\x76\xa6\xc2\x59\x7d\x65\x2e\x05\xe5\x6a\xe4\xe1\xee\xb5\x0b\x63\xf2\xf6\xfc\xf4\xf0\x36\xa7\x53\x5c\xa0\x85\x44\x91\xcb\x8f\xef\xae\xcf\x0e\x4e\xfb\x97\xef\x0f\x0e\xfb\x88\xcb\x57\xc7\x5e\x99\x11\xd6\x75\xae\x38\x2e\x2f\x41\x24\xd0\x63\xac\x86\xf5\xc3\x2d\x11\x5a\x7c\x4b\xdd\x70\xe5\xb8\x2d\x70\x61\xef\xb5\xe2\xd4\xd0\x68\x22\xdb\xa0\x8c\xcf\x15\xe3\xe3\x18\xfb\x73\xf9\xfa\x0c\xdf\x1b\x0e\xe1\xcd\x92\xcc\xc6\x98\xa3\x1f\xf0\x16\x6e\x8f\x66\xc4\x7b\x15\xee\x6b\xd3\x69\x2a\x16\xa2\x1d\x3d\x2f\xef\x56\x36\xb6\x71\x23\xea\xdb\xb0\xf7\x33\xd8\xb6\x70\x23\x34\x61\x1b\x71\x2c\xb0\x61\x2f\xfe\xa0\x71\xa2\x60\x1c\xfd\x4d\xdd\x12\x2d\xf2\x1b\x32\x23\xe2\xe1\x68\x96\x4f\x8b\x23\xce\xe6\xe8\x08\x2a\xbf\xa2\x43\xf7\x09\xfd\xb2\x06\x10\x67\x8d\xff\x9a\xce\xc8\x7c\x8e\xf9\x37\x4b\x41\x66\x0d\x38\x68\xe0\xcf\x0b\xc6\x45\xd1\x80\x0d\x2c\x0f\xb4\xdd\x9b\xfc\x06\xcf\x1a\x43\x18\x82\xde\x58\x16\x78\xbb\x10\x9c\x8c\x44\x63\x0b\xfb\x29\x80\x10\x6e\xe3\xcf\x0b\x3c\x92\x67\xe8\x92\xde\x73\x15\x17\xd9\x73\xe3\x41\xb8\xb4\xcb\x35\xbf\x15\x53\x87\x3d\x93\x4a\x57\xe3\xf2\xe4\xf8\xb0\x2f\xa9\x27\x51\xed\xbd\x25\x23\x71\x89\xe5\x2f\xed\x52\x82\xdb\x97\xfd\x8b\xe3\x83\x93\xe3\x7f\x1e\x5c\x1d\x9f\x9f\x5d\x1f\x1d\x5f\x5c\x5e\x5d\x9f\x9d\xbf\xed\x5f\x5f\x5e\x5d\x1c\x9f\xbd\x43\xb8\xf6\xbe\x09\x39\xe3\x7a\xf2\x0b\x7e\xb7\x24\x63\x09\x38\x2d\x96\xdc\x3e\x4c\xc8\x6c\x76\xb6\x9c\xcd\x0a\x84\xdb\x79\x51\x90\x29\xd5\x3f\x30\xb7\x01\x05\x8d\x42\xdc\xf8\xdc\x7f\xc2\x0f\x05\xe4\xa8\x53\x72\x1d\x24\xf0\x56\xbf\x9e\xca\x76\x5b\x2d\x5e\x1e\xbe\xac\x5a\x60\xb5\x92\xb5\xca\x22\x79\xc9\x3d\x99\x7e\xcc\x3d\xb3\x76\x4b\xd4\xd7\x71\x1b\x7d\x52\xd5\xdc\xe5\xe9\xd8\x97\xf9\x78\x9c\x72\x93\x2f\xd4\x95\x6f\x99\x52\x0e\xef\xbb\x96\x06\x78\x88\xac\x6d\xba\x7c\x94\x43\x18\x9a\xdb\xf2\x27\x23\x16\x27\x1a\xb6\x11\x88\xbd\xf6\x7b\x66\x2a\x9a\xcd\xea\x47\xfd\xc5\xba\x9b\x2d\x9f\x13\x10\xd0\xa6\x59\xb5\x31\x37\xeb\x1c\xb6\xd3\x59\x92\x5c\x1c\xd0\xc0\x9c\xa6\xc6\xce\x6d\x53\x30\x34\x6b\x9d\xea\xbf\x0a\xe2\xc3\x04\xdc\xb1\x0e\xea\xa6\x7d\xf2\xca\x0a\x03\xb1\xdb\x1d\x96\x17\x93\x58\x7f\x8f\x0c\xb3\x4c\x22\x8f\x84\xf5\x80\x0b\x14\xe7\xf7\xbe\xd9\x28\x48\x59\xec\x3c\x69\x57\x12\xc7\x31\x9b\x6d\x5e\x17\x13\x86\x3e\xe9\xfb\x88\x7d\x07\xa7\x28\x41\xbb\xfc\x18\xc5\x7a\xc8\xc9\xac\xb6\xb8\xfc\xf8\x44\xc4\xba\xb2\x5d\x54\xd6\xd1\x18\xf2\x54\xda\x19\xbd\xbe\x83\x61\x98\x97\x35\x95\xbc\x54\x78\x7b\xdc\x98\xd4\xaf\x2b\xf6\x9d\xd6\xcd\x21\x1d\xe9\x42\x7e\x8d\xdc\xb8\xca\x9e\x42\x0b\x03\x73\x47\x6f\x53\xf1\xcb\xb1\xd9\xeb\x58\xb1\x07\xb4\x12\xdb\x5c\x32\x44\x78\xe3\x69\xb4\x7f\x27\xe6\xc0\x64\x2c\xd6\xd4\xc4\x59\x3f\xf7\x32\xa1\xee\xa1\xf6\xf5\x7f\xda\x9e\xc7\xd0\x18\xbd\x36\x58\x01\x8a\xef\x90\x2e\x01\x8d\xcd\x8f\x80\xfa\x59\x7e\x4f\xe6\xeb\xaf\x73\x84\x55\xcb\xec\x16\x6e\x3f\x13\xa6\x4f\xd7\x8d\xed\x41\xc7\xce\x09\x20\xf1\xf0\x04\xc7\x16\x9e\x95\x9b\x27\x0f\xc3\xf1\xdd\x3e\xf6\xc7\xa7\xfe\x0b\x9a\xd6\x49\x1b\xf4\x7f\xfb\xfa\x3f\x33\x3c\xf5\x5f\xcf\xef\xd9\xcc\x83\xa1\x83\xa3\x27\x8d\x9a\x12\xd0\x27\x23\x9d\xfe\x4a\xb4\xba\x35\x36\xa4\xe6\xba\x24\xf2\x9a\xff\x5d\xf7\xf6\xff\xcb\x5b\xd4\x92\x56\x05\x99\xa1\xcb\x76\x93\x29\xaf\x71\x1d\x5e\x56\x1d\xdb\x46\x75\x7f\x6b\x39\x87\x09\xc7\xf8\x17\x9c\x0d\x86\x60\xcb\x71\x18\x95\xcb\x8b\x9d\x6a\x42\x4d\xb1\x5a\x35\x74\x71\xb9\xdc\x93\x9c\xcc\x96\x1c\xab\x94\xdf\x96\x61\xa9\x5a\x89\x98\x6b\x65\x63\x5f\xda\xdd\x13\xaf\xe2\x8d\xad\xf2\x0d\x96\x06\x02\x19\xf7\x76\xb7\x18\x82\x66\xd3\xa6\xe2\x74\xa7\x38\x57\x76\x22\x04\xd1\x8c\xdb\xc0\x42\x4e\x5b\xcc\x5a\x2d\x80\x07\x3a\xc2\xd0\x10\xf1\x41\xee\x56\x43\xcd\x6e\xc9\x64\xa5\x0c\x5a\xe4\x50\x8d\x27\x3e\xf0\x33\x23\xea\x94\x88\x03\x31\x44\x01\x79\x51\xae\x87\x25\x0b\xc7\x60\x85\xc5\x23\x70\x03\x43\x98\x60\x84\xfe\xd8\xba\xe9\x75\x2a\xca\x13\xf8\x34\xdf\x69\x6b\x42\xcb\xaa\x2e\x61\xc9\xbe\x16\xd0\x70\xb4\x39\x0c\x19\xdd\x09\x0c\xb8\xe0\x19\xf4\xf8\xe3\x0a\x67\x52\x66\x69\xd2\x8a\x49\x97\xa8\xc9\x18\xde\xcd\x96\x58\x53\xa8\x92\xdd\x1e\xc1\x90\x15\xbf\x85\x8e\x47\xf7\x9b\xf7\xb2\xe5\x56\xd4\xc8\x7d\xc5\xdb\xe3\xf1\xb6\xea\x60\x5b\xb0\xed\x1b\xbc\xbd\xe0\xb8\xc0\x54\x78\x89\x5d\xd5\x52\x68\x31\xa0\x82\xc9\x75\x6d\x8b\xb0\xba\x2f\x53\x54\x36\xf5\x57\x86\x0c\x6f\x78\x8d\x36\x7c\x99\x55\x43\x80\xc1\x3a\x92\x8a\xee\xe6\xbe\x4c\x34\x0c\xb2\xec\x06\x32\x90\x42\xd9\xbd\xe0\xae\x1b\x0f\x70\x7b\x31\x42\x9d\x21\x52\x06\xc9\xf2\x91\xe7\xa8\x3b\x44\xca\x9c\x58\x3e\x4e\x16\xe8\xc5\x10\x29\x63\x60\xf9\x58\x2c\xd0\xcb\x21\x52\xa6\xbc\xea\xb1\x83\xbe\x95\x8f\x1d\xf3\xd8\x45\xdf\xc9\xc7\xae\x7e\x14\x1d\xf4\xe7\x21\x6a\x08\xf3\x55\x74\xd1\x7f\xca\x47\xf3\xf5\xae\x83\xfe\x32\x44\x8d\xbb\x4e\x63\x0d\x24\x9d\xc8\xb0\x73\xcd\x46\x02\x3d\xae\x95\x61\x4d\xf9\x26\x1a\xf5\x3d\xe1\x78\x77\x22\x65\x65\xf1\x25\xc3\xdf\xf2\x6c\x37\x4b\xd2\x98\x20\xb2\x6a\x4f\xb7\x49\x61\xe2\x58\x82\x66\x53\x0c\x3a\x43\xb9\xcb\xd6\xeb\xca\x14\x2a\x33\x06\x39\x89\xf2\x87\x1e\x9d\xd6\x93\xab\xa9\xd4\x3f\xf5\x6b\x7b\xf1\x2d\xe7\xd4\xfc\xd6\x1f\x4e\xd9\x98\x4c\x08\xe6\x6a\x7a\xed\x83\xfe\xa4\x6d\xa6\xe4\x3c\xbf\xd1\x19\x41\x4c\x43\x5a\x71\xa2\x66\xdc\x3d\xe9\x8f\x46\x83\x56\x96\x91\xcb\x10\xbf\xd4\x45\xcf\xbd\xbb\x6b\xb9\x3a\xde\x73\x59\xe0\x72\x31\xcb\x85\xc0\x63\x5b\xf0\x2f\xa6\x60\xf4\x5e\x57\x38\xf2\x6f\xf4\xfe\x3a\x44\x0d\xff\x85\x01\xde\xbf\x10\xeb\xca\x89\xf3\xdf\xe8\x32\x97\x22\x17\x5a\x09\x88\xba\x72\x16\xcb\xe7\x60\x8c\xba\xc0\x8b\x72\x7c\x65\x09\xf9\x4b\x41\x88\xba\x72\x52\xdd\xa3\xfe\xfa\x23\xc1\xb3\x31\xea\xca\x69\x55\x3f\xf5\xdb\xf7\x39\x57\xce\xec\x5d\x39\xab\xe6\x21\xec\x8f\x4f\x51\xd7\x9b\xce\x03\x3e\x0d\xe0\x95\x9f\xff\xb3\x04\xd7\x7e\xbd\xe2\xcb\x42\x10\x3a\xd5\xe0\xca\xf9\xf3\xdf\x98\x1e\x8c\x1a\x17\x75\xe5\xac\xd9\x27\x3b\x63\x04\x53\x71\x49\x94\x47\x8a\x49\xed\xf0\x42\x4f\x5c\xe5\x83\xae\xf1\x81\x7e\xa2\xec\x9e\xa2\x17\x72\xf2\xcc\x83\xfe\xf2\x0e\x0b\xf4\x42\xce\xd8\x3b\x6c\x91\x2f\x7f\xb8\xc1\x27\x6c\x94\xcf\xd0\x0b\x85\x7f\xee\x59\x7f\xff\x3e\x2f\x34\x12\xbe\x90\xd3\x65\x9f\xc2\x6f\xef\x73\x9e\xcf\x0b\xf4\xe2\x3b\xaf\x84\x7e\x67\xe1\x31\x59\xb0\xd1\x8b\x3f\x2b\x88\x6c\x52\x6c\xdd\x0a\x9e\x2d\x30\x47\x2f\xe4\xd4\xe9\xdf\x16\xcd\xe9\x28\x17\xe8\xc5\x5f\x14\x92\xcb\xdf\xf1\x7c\xf4\x3f\x4b\xd2\x5e\x10\x46\xd1\x8b\xbf\x06\x13\x52\x7e\x29\x29\xcc\xf9\xa2\x30\xc4\x65\x4b\x7b\x13\xd3\x4c\xb8\xbd\xa7\xee\xd2\x32\x11\x60\xb0\xf2\x71\xce\x44\x89\x4c\xba\x62\xae\x5e\xbe\xc3\x3a\x3a\x91\x6c\xc3\x4d\x99\xe4\x90\x48\x81\xa8\x3a\xc7\xdd\xb6\xe6\xea\x31\xd8\x1b\xfa\xa4\x2f\xb1\x94\xb9\xe7\xc8\x2e\xc1\xe3\xe1\x34\x0d\x12\xde\xee\x58\xad\xdc\x4b\x6f\x07\x78\x6f\x7d\x44\x5b\xeb\x2e\xcc\x79\xf3\x9c\x1e\xf8\x34\xd1\x01\x9f\xea\x86\x24\x26\xe5\x7a\x9c\x25\x06\x49\xd6\x41\x4d\xb3\xa6\xd8\x37\xf9\xe8\xd3\xcd\x92\x53\xb9\xa2\x5f\xa9\xba\xbb\x59\x92\xd9\xf8\xfd\x2c\x17\x92\xde\x87\x8a\xad\x02\x8b\x2b\x32\xc7\x6c\x29\x60\x20\x35\xaf\x23\x15\x97\x66\xd7\x6c\x24\xcb\xc0\x39\xab\x61\x4b\x96\xdc\xe2\xe9\x52\x28\xc6\xeb\xfc\xa6\xc0\xfc\x0e\xf3\x7d\xc9\xd5\x99\x8b\xd6\xf8\x5b\x86\x25\x8a\x8c\xd9\x68\xa9\x2f\xd0\x43\x7b\x2c\x9d\xa6\x87\xe9\xb2\x19\x83\x8f\xa3\xdb\x9c\xe7\x23\x81\xf9\xdb\x5c\xe4\xbd\x9d\xce\x5a\x22\x50\x42\x84\x40\xad\x96\xf8\xe3\x0b\xc8\xda\xe3\x5c\xe4\xa8\xd1\x68\x09\x28\xd6\xa0\x97\x00\xf6\x3d\x67\x73\x52\xe0\xfd\x2c\x47\xe6\x67\x9b\xe3\x82\xcd\xee\x54\xe8\x85\x44\xdb\x79\x5b\xdc\x62\xb9\xe6\x6b\xd0\x4b\x7d\x97\x8b\xd0\x01\x6b\xf8\x58\x4e\x6e\x2f\xa9\x15\x2e\xbf\x1b\x65\xb0\x52\x5e\x54\xab\xb8\x0a\xfe\x77\xa5\x9c\xa2\xec\x3e\xa1\xb6\x79\x9b\x0b\xc9\xcb\xde\xab\x1c\x93\x52\x04\x2d\x74\xcb\x67\xf2\x37\x5f\xaf\xb5\xb7\xc5\x37\x3f\x8d\x5b\xdf\xc0\x1c\xfd\xb9\x5c\xea\xc2\x13\xa2\x8d\xf6\xce\x2e\x32\x55\x77\x9f\x92\x4d\x16\xcd\x26\x46\x08\xaf\x56\xa5\xaa\x4f\xbe\x63\x4e\x35\xef\x9a\x5b\x06\xf2\x31\xa3\x8a\x03\x5b\xad\xdc\xcf\x2b\x95\x22\xa9\xd9\x8c\x5e\x0c\xdc\xf3\x29\x16\xb7\x6c\x3c\x2c\x5b\x9c\xd9\xd8\x8e\xc6\xb6\x05\x32\xb4\xdb\xdd\x32\x16\x2c\x12\xc1\x9c\x05\xcb\x2b\xb2\xc7\x5b\xe8\x5b\x25\xe5\x0c\xf8\x50\x1b\x14\xd0\x01\x6f\x75\xd5\x56\x04\x8f\x0c\xf1\xad\x1b\x8e\xf3\x4f\x6b\x17\x6a\xc4\x75\x33\xda\xd0\xcd\x8b\x44\x37\x7f\xde\xd8\xcd\xee\x8b\xda\x8e\x26\xbf\x99\x61\x45\x07\xe6\x52\x0c\x4e\xde\xed\x22\x01\xd4\xc5\x6e\xeb\x65\x8b\x0d\x21\x41\x36\x37\x95\x7c\xd5\x91\xaf\xe6\x6a\x9e\xd5\x73\x57\x3e\xe7\x7c\x5a\xa8\xa7\x17\xf2\x49\x87\x1f\x71\x30\xf0\x66\xd3\x78\x12\x12\xba\xcd\xf7\x8d\x33\x60\xaf\xd1\x58\xc3\xdc\x26\x6c\x74\xe6\xcb\xe5\x50\x6f\xf5\x50\x4b\xc7\xd4\x8e\xba\x21\x35\xce\x8f\x39\x24\x86\xaa\x38\xdf\xcf\x3d\xfa\x8a\xef\x01\xfc\x1a\x89\x01\x41\xb4\x95\x31\x94\xf1\x5d\x0a\xbe\xc9\xc1\x2e\xfb\x63\x3e\xdc\xa7\x88\xb4\xf2\x1e\x47\xc4\x89\x14\xb2\x28\x1d\xee\xd3\x56\xde\xa3\x0a\xc9\x17\xf5\xee\x66\xbf\x4a\xe3\xf5\xb8\x86\x5f\x1d\x64\xfd\x71\x6d\x82\xe1\xff\x7b\x89\x97\xf8\x0d\x26\x74\xaa\x4e\x35\x3c\x76\x6a\x6c\xbd\x3c\x7f\x97\xdf\x75\x40\xac\x53\x1b\x93\x4b\x19\x8d\xb9\x30\xd9\xaa\x05\x57\x4b\xdd\xd9\x1b\xf5\x0f\x53\x59\x7c\x5c\x44\xba\xe9\x8c\xdd\xe4\xb3\x73\xf3\x32\x99\xa6\x52\x2d\xe2\x11\x4b\x84\x3b\x51\xd9\x56\x5e\x79\x3d\x9a\xf1\x1a\xdb\x00\x1b\xc1\x58\x7f\x1b\xbc\xfc\x0f\xdc\xfa\x76\x08\xf6\x4d\x1a\xd0\x5e\x55\xd1\xaa\x4c\xbf\x36\xb9\xc9\x1a\xe0\x55\x28\xc4\x1b\xa5\xab\x84\x0c\xf1\x76\x3e\x11\x98\xc3\xdc\x1e\x3e\x95\x99\xb2\x3a\x67\xe8\x74\xe0\xd5\x29\xf6\x42\x24\xd7\xac\x81\xf7\x3e\x9a\x65\x63\xc2\x67\x33\x82\x9b\x1c\xab\xf6\x30\x84\xb3\xba\x3e\xe5\xfc\xcd\x9c\x0c\xab\xf4\x28\x05\xca\x04\x5a\x66\xd5\xb5\x01\x60\xdf\xac\xf3\x1d\xfb\xa4\xa2\x4b\x9c\x6b\x4a\xd8\xf3\x5e\x5b\x13\x37\x85\x0c\x7b\xf4\xd5\xcc\xdb\xe9\x8a\xe0\x95\x5f\x5b\xe8\x5b\x6b\x9e\x9f\xe5\x68\x26\xf7\xf7\x10\x34\x9b\x45\x36\x1b\xd0\x21\xcc\xa1\x7c\xf3\x62\x08\x85\xfa\xf1\x72\x08\x3c\x2c\xdb\x79\x7a\x12\xab\xf0\xb7\xe7\xcb\x42\x28\x71\x60\xf3\xd7\xcc\xd9\xd5\x76\xb7\xdc\xac\xb2\x66\x93\x59\x3b\xa7\xda\x5e\xcb\xe8\xa5\x7a\x27\xec\x74\x75\xaa\x99\x2a\x7e\xbe\xee\x98\xb7\x0a\xe1\xb2\x9d\x38\xcb\xc0\x6d\x5e\xfc\xc0\x78\x6d\x04\x8e\x5a\x08\x5e\x77\x4c\x9e\xcb\xa8\xb7\x38\x04\x14\x1d\xe1\x59\xd2\x47\x41\x23\xad\xf2\x4f\xd0\x84\xd7\x05\x3f\xd6\x68\x67\x2c\x36\x03\xdc\x9e\x62\x65\xca\x1b\x60\xa0\xb9\x7e\xcb\x28\x30\x51\x40\x67\xc6\x02\xd7\x19\xd8\xbe\xde\xed\xee\x67\xdc\x19\xce\xc2\x6f\x01\xdc\xe9\x80\x5e\xe6\x8a\xd6\x2d\x31\x00\xaf\x77\xbb\xcd\x66\xc6\x07\x4c\x9e\x64\x4a\xe7\x54\x99\xc0\xe8\x36\x0d\x86\x21\xb3\xfc\x29\xd2\x97\x69\xa6\x00\x7c\x54\x2f\x7b\xda\xee\xcd\x9c\x44\xf6\x08\x8a\x13\x10\xa9\x28\x43\x94\xfc\x7b\x59\x9b\xb1\xb5\xf4\xa0\xa9\x4c\x18\xb6\x13\x86\x10\xca\x9b\xcd\x2c\x0f\x89\x69\x50\x5e\x65\x2c\x81\x39\xb0\xbb\x3a\xb7\x53\x6e\x86\xe3\x1a\x2a\xf6\x33\x82\x6a\x07\xb7\xfb\x2d\xcc\x55\x5b\x02\x12\x00\x7a\x59\xc6\xfc\xb2\x60\x50\xb4\x5e\x0c\x11\x85\x6c\x50\xb4\x5e\x0e\xd1\x17\x4e\xc6\xf5\xd4\xd8\x2a\x1d\xd3\x09\x8b\xd5\x79\xce\x8e\x7c\xe2\xd3\x36\xf8\x6d\x1c\x19\x4a\x91\x90\x68\x32\xc1\xa3\xe7\x09\x29\x6c\x20\xbc\x9e\x0a\x8c\x35\x7b\xc8\x70\x25\x82\x7e\x85\x3e\x25\x4c\xc2\xc0\xa3\xe0\x0f\xcf\x68\x78\xa4\x6c\xef\x18\x78\xe4\x19\x83\x44\x45\x34\x5b\x67\x00\x8e\x6b\x2f\x18\x7f\x95\x7a\x50\x9e\x96\xc1\xc9\xae\x0f\x92\x7f\xeb\xc3\xf6\x71\x0d\xcb\xc7\xb3\x7c\x8e\x8f\xfd\x03\xd7\xbd\x2d\xd4\x3d\x12\xc7\xe3\xe5\xc8\xbb\x61\x90\xa3\x29\xc5\x40\x3a\x54\xd8\xb6\xc8\x28\x94\x5c\x09\x14\xea\xb2\xc1\xeb\x2c\x79\x39\x5a\x8c\x6e\xf1\x78\x39\xab\x62\xbb\x6f\x62\xe7\x35\x32\xc0\x43\x79\xbe\x94\x68\x5e\x55\xe7\xfe\xc8\x96\xdb\xb9\x10\x78\xbe\x10\x78\xbc\x2d\xd8\xb6\xed\x63\x3b\xa7\xdb\xb9\x91\xf1\xe8\x76\xbe\xad\x5a\xdc\xce\x1a\x2d\xdc\x6a\x80\x6d\x71\x9b\x8b\xed\x31\xc3\x05\xfd\x93\xd8\xc6\x9f\x49\x21\x1a\x60\xcb\xa9\x76\xe9\x6f\xd6\xcf\x84\xf1\xed\x7c\x5b\x63\x7c\xba\x53\x9f\xa0\x54\x16\x86\xec\xe7\x1e\x91\xd0\x54\x0d\x32\xd0\x33\xac\xa8\x7d\xde\xc8\x82\x94\x5c\xe9\x17\xa0\x55\xb3\xe9\x3f\xb9\x0c\x94\xd0\x46\x5c\xb1\xc4\xb5\x44\x1a\x77\xf9\x52\x1d\x88\xe4\x74\xe5\xdc\xc6\x55\x06\x89\xb2\x43\xb8\xd3\x45\x08\x59\xbe\xcb\xe0\x01\x1d\x02\x7b\xa2\x65\x40\x11\x84\x44\xd5\x56\xcb\xe5\xf0\x8d\xfb\x77\xe7\xb1\xb6\xd6\x27\x93\x4c\xa7\x8a\x30\x87\x67\xb7\x3c\xb0\x9f\x4b\x93\x82\x04\x18\x8a\x89\xb4\xee\x71\x8a\x7d\x76\xb3\x64\x7e\x90\x9a\xe9\xb2\xb7\x4d\x7b\xa0\x32\xa1\x03\xe6\x92\x86\x98\x59\xe0\x43\x28\xa4\x18\x46\x43\xb8\x94\x8e\xa1\xd5\x72\x98\x64\x68\x4c\x29\xf8\xce\xc3\x0b\x50\x29\xf9\x53\x73\x83\x9e\x81\x3d\x35\xdf\xd4\x44\xcc\xa1\x2e\x1d\x72\x59\x42\x09\x1b\xc1\xbd\xe4\x1a\xde\x25\xae\xfe\x5c\x7f\xd3\x30\xdc\xb5\xf1\x03\x8d\x71\xcf\x69\x5a\xe0\xb2\xe4\x32\x0d\xfb\x4b\x26\x99\xde\xef\x7b\xfe\x7a\xe5\x40\x9b\x36\xc0\x65\x80\xab\x5b\xb6\x0c\x46\x2f\x02\xf2\xd7\x19\x42\x5f\x23\x82\x32\x6e\x04\xff\x8c\x86\xa9\x5a\xc0\x7e\x36\x43\x02\x2e\x11\xd5\x96\xcf\xda\x99\xc2\xd3\x00\xf0\x66\x53\x6d\x6f\xb1\xbf\x44\xb2\x28\x18\xd0\x61\x4a\xdb\x22\x9a\xcd\x0c\xa3\x2e\x74\x70\x0a\x00\xf3\xd7\xd8\x5c\x2f\xe6\xbb\x18\x16\xde\x9d\x20\x71\x97\x8d\xea\x96\x51\xae\xb8\x07\x17\x6b\x61\x7b\xd5\x38\x98\xc1\x25\x2c\x3c\x4d\xc1\x8d\x97\xed\xa0\xba\x33\x1d\xce\x45\x32\xa7\xc5\x90\x17\x08\x55\x56\x63\x3f\x98\x93\xce\xd0\x97\xd5\x07\x5d\x49\x01\x6c\x1a\x1e\x94\x61\x34\x35\x47\x9c\xe9\xc0\x95\x04\x40\x56\xa5\x08\x0f\x7c\x33\x9f\x8c\x20\x3c\x78\x31\x04\xfb\x0c\x75\x7a\x45\xc6\x10\x31\xf1\x7c\x56\xab\x8c\xa3\x1d\x59\x84\xc1\xf2\x2d\x80\x03\x89\x37\x04\xb2\x32\xad\x14\x83\xdd\x0e\x80\x7c\xa8\x70\xf1\x1a\x75\xe0\x3d\xea\xc0\x3e\xea\x40\x49\x25\x2f\x51\x07\x9e\xa3\x0e\x3c\x40\x1d\xf8\x09\x75\xe0\x29\xea\xc0\x2b\xd4\x81\x87\xa8\x03\x2f\x50\x07\xbe\x47\x1d\x78\x86\x3a\xf0\x67\xd4\x81\xc7\xa8\x03\xdf\xa2\x0e\x3c\x41\x1d\x78\x84\x3a\xf0\x17\xd4\x81\xdf\xa3\x0e\x7c\xb3\xc9\x02\xa1\x74\xd5\xd3\xe7\xe9\xdb\xfe\x9b\x0f\xef\xd0\x4e\x37\xb0\xcb\xb2\x36\xae\x41\x20\x7e\xfd\xea\x32\xb0\xe3\xba\xc6\x77\x98\x0a\x6b\x8e\x5d\xa0\x47\x4c\xc7\xf2\xe4\x56\xe1\x4d\x7b\x83\xe1\xda\x1a\x39\x90\x39\xb6\xfa\xb0\xe3\x71\x90\x1b\x51\x7e\x29\xca\x06\xf3\xa5\x60\x7c\x49\x83\xb4\x48\xfa\xd5\x65\x94\x56\x31\x38\xe4\x43\x61\x7a\xb5\x7a\x5c\xc3\x8a\x81\x9b\x5f\xa6\x3d\xd6\x96\xd3\x8a\xa9\xd4\xa2\xdc\xb5\xff\x0a\xd5\x16\xee\xd5\x15\xf6\xc8\x5d\xc7\x8e\x86\xd1\x37\x72\x26\xc2\xd6\xcc\xcb\xd5\xea\xc1\x95\xea\xd3\x71\x5c\xa6\x4f\xc7\x65\x09\x95\x7c\xf7\x62\x49\xfb\x9f\x17\x84\xe3\xf1\x95\x9e\x34\xfd\x8d\x47\xaf\x55\xa4\x2b\xed\xda\xe4\xd7\x3e\xd0\xb3\xd8\xa7\x01\xbf\x76\xd4\x6a\x59\xb9\x93\xba\x99\x56\xbe\xa6\xe1\x4a\xd0\xd4\x32\xd0\xf6\x35\xa6\xe3\x4c\xf9\xdc\x6c\x79\x31\x4b\xed\x20\xae\x03\x7d\xf6\x6a\x45\x8c\x42\x65\x61\x35\xdc\x3c\x4b\x02\x98\x64\xb8\x14\x4a\xf9\xa0\xdf\x9b\x60\x11\xe1\x5a\x59\xcb\x97\x08\x93\x1d\x4d\x89\x02\x95\x05\x18\xa6\x3c\x92\xcd\x9c\x69\xb1\xd0\xc0\x94\x49\x09\xa1\xa4\xa6\xd9\xf7\xad\x56\x62\x57\x58\x6b\x15\x00\x7f\x91\xb3\x9a\x84\x43\x91\xcc\x71\x74\xe4\x17\x10\x03\xf8\xd9\xb6\x79\x2d\x38\x99\x4e\x31\xcf\x1a\x6a\xc8\x0d\xa8\xbc\x5b\x43\x84\x52\x1e\xaf\x71\x5c\x40\x1c\x2e\x6d\xdf\x35\xa8\x16\x29\x4e\xcd\xc4\x68\xd5\x1a\xa0\x3c\x06\x76\xdc\xa6\xf1\xf8\xc7\xab\x87\x05\x76\x1e\x6c\x7a\xcb\x6f\xcf\x97\x85\xd8\xbe\xc1\xdb\xb9\xbb\x5b\x6e\x00\x3f\x3e\x53\x44\x21\x62\x36\x98\xd6\x35\xaf\x1c\xe4\xe4\x38\xb6\x55\x03\xdb\x8a\x09\xdd\xbe\xc1\xa3\x7c\x29\x4f\x48\xcd\x7c\xaa\xa8\x38\x96\xfb\xa4\xce\x5a\x28\x1c\xe7\x64\x92\xf6\x8e\xdb\x04\xdf\x0e\x5e\xad\x1c\x8c\x7c\x33\x8c\x93\xc9\x17\x00\xa9\x83\xf6\xee\x74\x65\x27\x02\x94\x4a\x60\xee\x3b\xf8\x70\x29\x93\x18\x17\x7f\xb4\xd3\x81\x4e\x31\x40\x61\x17\x40\xba\xbb\x0b\x4c\xc2\x9d\xa7\xe1\x1a\xd9\x75\x72\x0c\xbb\x0f\x4e\x64\x33\xb7\x0c\xf6\xd7\xa5\xdb\x5f\xb5\x47\x24\x14\x08\x7b\xa7\x24\x57\x67\x63\x20\x06\x48\xea\x94\x59\x97\x5e\xbf\xb3\x9f\x59\xb8\x9b\xcf\x7f\x93\xde\x64\xab\xc9\xee\xc6\x78\x82\x63\xd9\xd7\xbb\x35\x50\xea\xf8\x83\x56\x0b\xf2\x2a\x6f\x47\x90\x66\x71\xf8\xeb\x97\xfb\x7c\xf7\x65\xaf\x23\x59\x9d\x97\x7b\xec\x15\x57\xac\x0e\x19\xb0\xdd\x97\x01\xb3\x13\xc2\x64\x85\x2b\x33\x2a\xa5\x3f\x18\xa8\xfe\x87\xed\x91\xba\xe8\xcd\x2a\xf9\xfe\x12\xc2\xa5\xe6\x7a\x3f\xc9\x3d\x5d\x05\x91\x1a\x10\xc5\xeb\xee\xbe\xd8\xed\x4a\x10\x39\xea\xee\xf1\x57\x42\x79\x08\xd3\x01\xdf\xed\xfa\x20\xf2\xe1\x96\xc7\xf4\xc7\x33\x4e\x55\xb8\x6f\x39\xd3\x39\x22\x72\xa6\x0b\x44\x06\x2f\x86\x92\x05\x74\x1c\xc3\xbe\x93\x27\x7b\x21\x5d\xb5\x14\xa7\x58\x72\xe7\x2a\x93\x01\x37\xa2\x0c\xeb\x9b\x49\xb8\xd3\x85\x71\x54\x63\x5b\xe6\x58\x60\x1e\x85\x08\x95\xdb\xf6\xd4\x06\x07\xfa\x6d\xc0\x50\x27\xd8\x1c\x0e\x84\x14\xd3\x2a\x7a\x13\x85\x2f\xe7\x74\x94\x50\xc0\x04\x38\x73\xf5\xbb\xe2\x8c\x04\xe0\x6b\xf0\x26\x02\x5c\xe3\xce\xe1\xff\x77\x70\xa7\x53\xc5\x1d\x77\x43\x9b\x50\x13\x5f\xd8\x93\x70\x96\x0b\xcc\xfd\x09\x2d\x89\x4b\x14\xf6\x39\x0f\xa2\x6b\x83\xc7\xf7\x8e\x3c\x55\xcc\xdf\xbe\x8c\x5e\x41\x82\x4a\x29\x66\x07\x21\xbe\x6f\x49\x7f\xaf\x53\xaa\x83\x3b\xcd\x66\x91\xf1\x01\xdb\x55\xb7\x00\x19\x29\xa5\x07\x6e\x7c\x17\xba\x1d\x2b\x5c\x70\x48\x86\xeb\x2f\x85\x01\x0f\x5e\x46\xa4\x53\x0d\x39\xb3\x2a\xc1\xc8\x9e\xf7\x96\x33\x21\x42\xdb\xbf\x33\x3b\x23\x50\xa0\x9b\xda\xee\x29\x12\xb2\x7b\x8e\x84\xec\x9e\x20\x21\xbb\x67\x48\x0c\x5e\x4a\x0c\x11\x83\x6f\x87\x4e\x76\x96\x92\xdc\x6a\x95\xc3\x25\x1a\xa9\x68\x83\xbe\x7c\x00\x4a\x79\x5a\x03\xad\xf2\x24\x2d\x95\xac\xeb\x41\x2f\xab\x15\xfb\x77\x3d\x02\x19\x80\x85\xbd\x6b\x50\x87\x82\x1e\x16\xe8\xb9\x1a\xba\xe1\xc1\xb2\xd5\x1d\x42\x8c\x96\xad\x6f\x83\x0e\x07\x78\xb8\x83\xd0\x9d\xbb\x7f\x72\x6f\x11\x01\x26\xb1\x86\x4f\x2c\x24\x03\x3b\x0a\xa6\xe7\xe7\x72\x7a\xcc\x4e\xa9\x9f\x24\xb3\x63\x0a\xbd\x63\x96\x7a\xc7\xcc\x10\x91\x93\x34\x41\x44\x4e\xd2\xa2\xc4\x98\x49\xb3\x39\x81\xe3\x60\x14\x70\x8e\x46\x19\x83\x05\x1c\x03\xf8\x90\x98\xa8\xf9\x7e\xf6\x10\x4c\x94\x2c\xbb\xd8\xbf\xeb\x2d\xe1\x0c\xc0\x45\x30\x51\xf2\xd3\x52\x4e\x94\x4d\x46\x69\xb9\x75\x6d\xa8\xd0\x9a\xc1\xf1\x40\xa0\x79\xeb\x5b\xc9\xa2\xc8\x09\x5a\xa2\x3b\xd9\xeb\x78\x30\x6f\xa9\xdc\xb0\xb7\x19\x96\x70\xcc\x5b\xb9\x52\x26\x67\xe3\xc1\x7c\x88\xb0\xac\x35\x44\x4b\xd0\xcb\x78\xb8\x00\xf3\xd6\x77\xc3\x60\xea\x4b\x66\xa7\x03\x31\x7c\x80\x0a\x20\x68\x73\x0f\x45\x85\xe6\x2a\x99\x84\xc4\x9d\xb9\x1d\x05\xc7\x8a\x2b\x9f\xcd\xae\x3c\xa1\x33\x03\x00\x3e\xa4\x2e\x7e\x8c\x28\xe5\xad\xdc\xb1\xe3\x9b\x9d\x15\x47\xd9\x4a\x8d\xd4\x1a\x49\x0b\x95\xfb\xab\x6a\x2f\xa1\x05\xbd\x1e\x53\x79\x6d\x95\x92\x4e\x9e\xbc\xb6\x22\x93\xec\xad\x11\xe7\x10\xb2\xb7\x0c\x3b\xdd\xad\x27\xed\x44\xf6\xfd\x41\x9c\x48\x04\x51\xf0\x66\x18\xf4\x76\x32\x6b\x61\x2e\xc1\x59\xad\x76\xb0\x16\x5b\xd4\x2f\xad\x0b\x06\xcd\xa6\x79\x69\x80\x4a\xa4\xe7\xf0\x29\x7a\xd5\xe7\x27\xa6\xf8\x95\x58\xa8\x09\xbd\xa5\xef\xd4\xb5\x65\x95\xa8\xea\x78\x31\x03\x7f\x34\xd3\xd6\xab\x2a\x11\xe0\x88\x2d\xa9\xc0\xdc\x24\x28\xb6\x4f\x50\x2f\x43\x6f\x12\xec\x79\x98\xc3\x17\x00\x06\x82\x9e\xc9\xcc\x16\x89\x76\xee\x58\xae\x4a\x86\x2a\xd7\x45\xca\xc3\x41\x34\x9b\x22\xd6\x80\x9a\x51\xac\xe3\x94\x31\xd7\x1b\x9c\x68\xaa\xd2\xae\x32\xc6\x77\xb7\x00\x48\x54\xaf\x01\x30\x1d\x2b\xf1\x00\x8f\x55\xb4\x51\xb6\x94\x72\x9c\x14\x38\xad\xc5\xe0\x4e\xd7\xe9\xdd\xb6\x04\x7f\x78\x24\x4e\xcb\x8c\xc1\x7a\x42\x68\x3e\x9b\x3d\x3c\x72\xa3\xf8\x82\x3a\x97\xb3\x9e\x39\x7b\x62\xbb\x0d\x61\x03\x70\x3d\x4f\xbd\xe4\x69\xf4\x33\x77\x85\x1e\x08\xda\x65\x72\x89\x4a\x93\x20\x96\xa2\x95\x49\xb2\x64\xdd\x7c\x6d\x8b\x0a\xbc\x03\x2a\x53\x1c\x4a\x25\x86\xe3\x8b\x3c\xa6\x12\xbd\xee\x97\xb2\x8e\xae\xd3\x2b\xfd\x02\xed\xad\x84\xbe\x59\xcb\x36\x5d\xd6\x5d\x07\x12\x98\xcf\x6f\x5a\x1b\x04\xa3\xe4\x00\x0e\xe3\xd5\x8a\x65\x00\x72\x20\x57\xc8\x45\xce\xab\xdc\xda\x11\xf0\xc8\x33\x52\x2e\x9b\xaa\x8c\xe9\x38\x03\xfa\x1a\xa1\xae\x76\xa2\x7c\x04\x73\x40\xfa\xfc\xfd\x99\xa2\x61\xee\x3c\x75\x87\x8a\xb3\x77\xcb\x82\x82\xe0\x0b\xd4\x81\xf1\x2c\x46\xcc\x5b\x7c\x0b\xbd\x89\x13\xb5\x37\xd4\xf1\xa1\xc7\x61\x81\xae\xcb\x7b\x89\xd2\x70\x25\xa0\xdc\xfb\x01\xe1\x30\xb9\xba\x61\x01\x35\x04\xcc\x8e\x29\x7d\x3c\xf5\x32\x82\x64\xf1\x90\xed\x49\x9d\x79\x04\x76\x60\xa2\xd9\xda\x73\xaf\x48\xae\x58\x49\xe7\x13\x96\x44\xa5\x47\x52\x62\x98\x7b\xa2\x85\x72\x67\xbe\x62\xcf\x71\xa1\x6c\xea\x40\xea\x5c\x33\x70\x8b\xdd\x2e\xcc\x81\x22\x14\xe2\x89\xc3\x1a\xee\x58\xfe\x65\x27\xbe\xc6\x32\xfb\xba\x4e\x2e\x7b\x5a\xeb\xb4\x83\x90\x4e\x55\x9c\x88\xa5\x45\x06\x7c\x98\x89\xe4\xc6\x0c\x55\xaf\x95\x33\xec\x29\x0d\xb7\x4f\xd3\x82\x9d\x1b\x52\xcc\xa0\x17\xfb\x55\xed\xbb\x18\xa4\x64\x8d\xe4\x55\xa9\xe3\x40\x83\x63\x8d\xa1\x8e\xe4\x38\xad\x18\x68\x04\xb4\x40\xaf\xed\x4c\xa5\xc2\xdd\xb0\xc7\x5e\x15\xcd\xe6\x4e\x46\x06\x6c\xf8\x7a\x06\xf6\x98\x44\x87\x0c\x23\x32\x60\xad\x6f\x87\xc0\xf2\xcd\xea\xf9\x85\xe4\x08\xe5\x8f\x97\x52\x08\x90\x3f\xbe\x1b\x26\x09\x77\x29\xe5\x2d\x15\xbc\x58\x4a\xe5\x1c\x80\x2d\x17\x89\xad\xf3\xc4\x0e\x8a\x97\x2c\x85\x59\xd5\x75\xab\xe7\xf1\x9e\xd3\x49\xa5\x76\x2d\x01\x0c\xf1\xa3\x86\x0e\xda\x6e\x52\x55\x40\xfd\x55\x4a\x0c\xd5\x13\x03\x27\x93\xac\xb3\x93\x24\x60\x61\x82\x7a\xb3\xb1\xd5\x9d\x79\x0a\x0f\x20\x45\xa7\xb9\xb8\x6d\xcf\xf3\xcf\x59\x07\xe2\x5d\x1b\xc1\x30\x06\x31\xaa\xeb\x19\x53\x6f\xb8\xdc\x90\x7b\xb0\xc2\xff\xd4\xb1\x91\xd5\xd8\xca\xb6\x54\xe4\xee\x8c\xdd\xc4\x07\xa7\xc8\xa6\x13\xc1\x66\x30\x4e\x6e\xd7\xf2\x7e\x20\x76\x50\x8d\x8b\xf8\xe0\x9e\x84\x37\x17\xde\xb4\xe2\xcf\x62\x2b\x3c\xf8\x14\x3b\xbc\x21\x2a\x80\x65\x5e\x6b\x22\x03\x3c\xea\x9b\xb8\x7b\x88\xe9\xb8\xd7\x87\x8a\x2c\x16\x3d\xf3\xf6\xb3\x7a\xdb\x59\x43\xd3\x59\xd1\x7b\xd4\x9d\x8c\x7b\x27\x70\xc4\xe6\x8b\x19\x96\xbf\x8f\xd6\x50\xf2\xd1\x97\x50\x72\x47\xbd\x73\xa8\x74\x63\xbd\x03\x68\x47\xd8\xfb\x04\x63\xd5\x5d\xef\x14\x3a\x0d\x5a\xef\x0a\xfa\x7a\xa9\xde\x21\xf4\xcc\xed\x2f\xa0\x3a\xad\x7b\xef\xa1\xd5\x31\xf4\xce\xa0\x95\xa7\x7b\x3f\x43\x5f\x48\xeb\x1d\x9b\xc7\xde\x5b\x38\x63\x6c\x51\xf4\x1e\x05\x13\xf9\xac\xf7\x0b\xa4\xb8\x90\x90\x7e\xbf\x5e\xbb\x00\x68\x3e\x21\xdb\x18\x36\x21\x20\x79\x2e\x6e\xc2\xd6\x9b\xb6\xbe\xdb\x5b\x40\x6c\xef\xff\xd0\x1b\x18\xfb\x68\x10\xed\xfb\x31\x62\x54\xe4\xa4\xe2\xfa\xf1\x5f\xca\xf7\xe3\x1b\x95\x9c\xb6\x7c\x5c\xb0\xd9\xc3\x84\xcc\x66\xa5\x73\x08\xbb\x57\x55\xcd\xd3\x52\x90\x59\x50\x7b\xc1\xf1\x48\xae\xca\xee\x04\xe7\x62\xc9\x71\x59\x11\x97\x81\x9f\x22\xdf\x92\xd2\x5a\xa1\xe2\x65\x72\x74\x70\x78\x75\x7e\xf1\xe3\xf5\xd1\xf9\x05\x52\x8e\x47\x1a\x74\xe5\xc8\x4e\xee\x72\xa1\xf2\xbd\x18\x87\x44\xfe\xe0\xbb\xa1\xd4\x45\x37\xf9\xf5\x66\xda\x26\xd5\xb3\xed\xd3\x5e\xe8\xca\x79\x41\x42\xff\xaf\xa5\x62\x2f\x19\x33\xca\x3a\x90\x28\xe7\x5d\xc2\x68\xce\x1f\x40\x26\xf4\x07\x5d\xd2\xec\xd5\x49\x3e\x12\x8c\x3f\x9c\xe6\x34\x57\x91\xc3\x6a\x2a\x26\x8a\x05\xcd\x90\xc2\xa4\xa3\xc2\x63\x77\x5b\xee\xde\x11\x3a\x45\x3b\xdd\xd4\xad\xe5\x8c\xb1\x4f\x51\xca\xfd\xd2\x49\xc4\x44\x14\xf4\x47\x5e\x46\x45\x52\x51\x0e\x2b\x5a\x69\xd5\x9d\xbf\x0a\xc1\x4d\x6f\x08\x50\x64\xe8\xaa\x58\x79\xf2\x0b\x7e\x5b\x6d\x64\x9e\x6c\x44\x8e\xb4\x13\x87\x55\x28\xa2\x94\x26\x71\x95\xd5\x2a\xf3\x62\xa2\x64\x16\x3c\xd3\x03\xe8\x25\xae\xe2\x54\x14\xfb\xd1\x2d\x1e\x88\xe1\x96\x89\x32\x83\x53\xeb\x31\x10\x43\x28\x25\x08\x57\x66\xe4\xde\xda\x99\x69\x36\xdd\x4f\xc9\x31\x3d\x35\xc1\x31\x53\xa5\xf0\xec\x58\x45\x17\x25\x8c\x56\x4e\x18\x73\x98\x64\x18\x3d\xae\xc1\x80\xb7\xcf\x7f\x38\xeb\x5f\x98\x1c\xcf\xaa\x6a\x7c\x08\x98\x41\x24\xad\xf5\x7f\x95\x4b\x43\xfd\x90\xd4\xcd\xa0\x68\x17\x6c\xc9\x47\xb8\xd9\xdc\x11\x65\x9c\xe5\xd5\x2a\x8b\x6b\xe2\xcf\x8b\x9c\x8e\x95\x3b\xdb\x89\xc2\x54\xb5\x2c\x20\xb4\x50\x95\xdc\x18\x88\x0d\xb1\x96\x3e\x2a\x6b\xdb\xee\xb2\xd9\x29\x16\xda\x92\x3c\x13\xb0\x51\x10\x3a\x9d\x61\xc1\x68\x03\x44\xfe\x41\xcf\xaa\xae\x25\x7f\x41\x72\x81\xfd\x06\x46\xe1\x5d\xee\x57\xfb\x78\x48\xb6\x58\xcd\x19\x2f\xe7\x8c\x07\x73\x46\x7c\xd0\xaa\x13\x26\x24\x97\x0a\xbc\x81\xf0\xb6\x1b\xb1\x07\x43\x56\xa2\x39\x19\x82\x7d\xda\xab\x91\x4f\xd1\xc4\x08\x34\xc1\x35\x39\x31\x1d\xc8\x97\x69\x05\x01\x6d\x7b\x13\xb5\xe5\x81\x43\x7d\x70\x34\x80\xcd\xa6\x5e\xbd\x66\x53\x2f\xc3\x5a\xca\xfa\x72\x18\x8e\x80\xd9\x9d\x85\x88\x0d\x71\x05\x9e\xd9\xb5\x72\xba\x72\x3d\xfa\x80\xf0\x66\x33\x53\x3f\xc8\x6a\xa5\xfb\xaf\x05\xe0\x8b\x7b\xad\x1f\xb0\x37\xd8\x9d\xb0\xb3\xd5\xea\xab\x87\xa3\xc7\xc1\x57\x2b\x3d\x1e\xdb\xc5\x6a\xa5\x7b\x48\x8d\x47\xb2\x6d\x89\x40\xc0\x6c\x39\x1b\xab\x1b\x79\x3d\xe0\x6d\x43\x31\x1a\xaa\x09\x02\x25\x72\x45\x4e\x68\x25\xa0\x75\x44\x32\x10\x75\x9d\xbd\x28\x37\xb6\x07\x1e\x32\x5b\xef\x49\x01\x22\xe9\xd8\xa4\x79\x52\xc1\x2f\x15\x1c\x14\x7a\x01\x21\x6a\xba\x45\x0c\xb2\x75\xe4\x46\x16\x5c\x98\x2a\xa5\xc5\x0c\xd9\xf8\xcd\x84\xd1\x42\xa7\x31\xb2\x58\x3e\x6b\x36\xb3\xf0\xbb\x24\xb4\x50\xcb\xe9\xc2\x97\xd3\x19\xca\x08\x12\x03\x3e\x04\x92\xda\xaa\xe8\x81\x30\x47\x52\x54\xc4\x23\xe5\x86\xac\x44\x5b\xbd\xa1\xe1\x6c\xc0\x86\xa8\xd8\x97\x14\x23\x87\x8f\xfa\x65\xaf\x58\x83\x9e\x7a\x03\x54\x1e\x24\xe3\xf0\x2b\x49\x64\xf9\x84\x76\x96\xda\xd5\xa0\x1c\xd5\x22\x3c\xb7\xec\x54\x2a\x0f\x39\x29\xa7\x8a\xac\xd1\x6b\x80\x41\xc7\x5d\xae\xa5\x71\xec\xb1\x1c\xa2\x95\x33\x5c\xaf\xbd\x9d\xee\x3a\x74\x66\xd0\x56\x47\x7a\x42\xb9\xe7\xdd\x44\xf5\x4b\xe5\xab\xc1\x15\xce\x49\xd2\x79\xf5\xb0\xc0\xee\x0c\x2b\x54\x9e\x10\xf9\xda\x7b\x25\xfc\x11\x8d\x43\xc7\x2e\xb3\xf7\x21\xf1\x43\xe9\x65\xdc\x0f\xf9\x42\xfc\xe0\x34\x19\x45\x7c\x40\x06\x62\x38\x04\xc9\x43\x78\x1d\x9a\xee\xe2\x3a\xd6\x4d\xb3\x5a\x49\xdc\xaa\x29\x6c\x6c\x79\x25\x92\xfe\x80\xf3\x4f\xa7\xf9\x02\xde\xd5\x5b\x3e\x6a\x12\x6b\xf4\xfd\x8e\xe3\xf5\xd9\x4c\x73\xfc\x1b\x06\x53\xee\x57\x6b\x0c\x36\x59\xce\x66\x2a\xf5\x80\xc9\xe3\xe8\xce\xdb\xb1\x7a\x6b\xaa\xcc\xf3\x31\xbe\x62\x3a\x43\x9b\x35\x57\x35\xba\x6b\x87\xce\xe6\xf5\x83\xf6\x3c\xb1\xcc\x49\xd2\xde\x4d\xd8\xa6\xaa\x62\x8b\xdb\x30\x95\x7e\xad\x78\x1b\xc0\x12\x0e\xba\xdc\xfe\xf3\xfc\x93\x2b\x94\x95\xa3\x0e\xc7\x6c\x2d\xcf\xfc\x16\xa3\x9b\x28\x45\xb9\x12\x16\xe5\x4e\xd7\xea\xed\x77\x07\x3a\x6b\x36\x33\x86\x08\xca\x04\x5a\x64\x21\x84\xa9\x49\x06\xc0\x6b\x05\x8a\x60\xc7\xc6\x93\x4c\x80\x0d\x5d\xc0\x02\xba\x86\x95\x67\x91\x4a\x7c\xa6\x43\x32\x81\xec\x71\x0d\x19\x94\x63\xdc\x29\xc7\x6f\x06\x54\xbd\x30\x39\xca\xc9\x4c\x3b\x4c\x18\x62\x9d\xd3\x6d\x7b\x2f\xb1\xcd\x26\xdb\x7f\x6a\xb4\x12\x90\xb7\x1a\x7f\x6a\x6f\x9f\xb2\x42\x6c\xcf\xc8\x27\x3c\x7b\x50\xb5\xe6\x9a\x6a\xcd\x1e\xb6\x4d\x70\x88\x6d\xd5\xf5\x36\xe3\xba\xd1\xbb\x7c\x46\xc6\xdb\x73\xa6\xbc\x32\xb4\x3c\xd9\x6e\x80\xad\x94\x99\x76\x09\xf7\x35\xa1\x44\x1c\xe9\xfd\xb3\x5f\xf3\x5e\xb3\xe1\xbd\x60\x52\x4a\x3e\x69\xb5\x4a\x4c\x50\x0e\x00\x54\xf9\x12\x0b\x2c\xce\xe5\x0e\x01\x56\x4b\xad\xf6\x8b\x73\xc4\xaa\xcc\x60\x96\xbb\x33\x43\x23\xbc\xc1\x76\xa5\x90\x56\xd9\x06\xd1\x37\xff\x67\xf0\x7f\x7a\xc3\x56\x4f\xfd\xfd\xc3\x37\xf0\xe6\xf7\xf1\x25\xb2\xf2\xe5\xc4\xc6\x8d\xc6\xee\xa7\x2f\x55\x9a\xf3\x90\x23\x17\x58\xc0\x0a\x9d\x79\xbb\x7f\xf6\xb1\x7d\xdd\x3f\x3b\x78\x73\xd2\xbf\xbe\xe8\x5f\x9e\x9f\x7c\xec\x5f\x5c\x1f\x7d\x38\x3b\x54\x41\xa7\x2e\x3f\xbc\x7f\x7f\x7e\x71\x05\x59\xfb\xa2\xff\xee\xf8\xf2\xea\xe2\xc7\xb2\xd0\xc1\xa5\x2b\xd7\x6c\xd6\xad\xa0\xed\xaf\xd9\x54\x36\xe4\xcf\xec\xcf\x6e\x77\x07\xf8\xa3\xf9\xd5\x0b\x5e\xaf\x41\x20\x03\xe5\x7a\x9b\x54\xa8\x2a\x0e\x0b\x04\xe2\xef\xb5\x08\x4e\x95\x3a\xfa\x6d\x35\xa7\xcf\x2b\x37\x2b\xd9\x68\x4d\xe8\x13\x51\x55\x4d\x51\xb7\xa7\x36\x9d\x08\xee\x22\x44\x0d\xfb\x19\x25\x27\x39\x99\x5d\x62\xa1\xce\x90\x4b\x6c\x4d\x7f\xad\x19\xf9\xc6\xaa\x72\x3e\xce\x37\x16\x4c\x11\xf5\xf2\xe8\x49\x04\x8d\x90\x50\x14\x26\xbd\x64\x25\x61\xb5\x89\x0e\x95\x12\x9f\xbf\x5e\xf6\x31\xa6\x18\x81\xfc\x18\xcc\x8c\xf5\x5c\xe5\x29\x0c\x1a\xf0\x21\x8a\xe6\x4c\xb9\xf4\x44\xc9\xef\x69\x02\xf8\xe0\xf2\x3a\xd1\xfd\xb3\x30\xc3\x8f\x48\x1b\x02\x26\x86\xc1\xc7\x00\x23\x2a\x1f\x2d\xe8\x62\x08\x93\x63\x8f\x95\x30\xa6\xb1\x1a\xa3\xe2\x34\xbf\x27\x82\x83\x48\x1b\xd8\x6b\x46\x74\xb5\xa2\xa5\xb4\x29\x85\x94\x8c\xeb\xa8\xcd\x15\x31\x93\x3a\x31\xd3\x71\xf2\xe1\xc0\x78\x7c\xc9\x65\xa5\x0f\xe5\xd3\x55\x8e\xeb\x36\x97\x0c\x9d\xdf\x96\xf3\xaa\xc1\x1e\x21\xca\x98\x47\x07\x9d\xac\xa0\xe8\x7d\x78\x88\xe3\x0a\x5a\xf8\x45\xf6\xbd\x9e\xf3\xf1\x38\xe3\xa0\x57\x05\x1c\x31\x67\xfb\xe6\x2b\x6d\x22\x65\x58\xc5\xc5\x97\x37\x9b\xfe\x25\x8b\xa5\xe9\x41\x42\x12\xfb\x12\xd8\x21\x98\xeb\x6d\xea\xbb\xfa\x40\x5e\x51\xb4\x8d\x38\xb9\x49\x86\x26\xf2\x7b\x2c\x67\x2b\x78\x34\x6a\xbf\xb7\x58\xa7\x87\x21\x8c\xee\x3f\xf1\x3d\xc3\xa5\xbb\x96\x0f\xf5\x7e\xf0\xe4\xe0\x92\xc5\xe3\x88\x98\x76\xae\x8e\x2c\xb7\xfa\x95\xb0\xbb\x86\xf6\x6b\xde\x3f\x13\xd6\x0a\x40\x9b\x80\x4e\x01\x9b\xa2\xfc\x03\x3c\xb4\x1c\x5f\xf5\x4b\x44\x4e\xbc\x7e\xa3\x2d\xec\x73\xbe\x69\xdd\xec\x73\x26\xca\x6f\x65\xbf\xfe\x93\x6a\xf7\x39\x13\x56\xad\x54\x4a\x01\x09\x9b\xb2\x44\x58\x52\xa3\x8c\xfd\x28\xb9\x47\x7f\xf4\x81\x29\x18\x55\xb7\xef\x4e\xdb\x15\x6d\x34\xfb\x41\xa5\xc5\x90\xe5\x3c\x55\x58\x68\xad\x5b\x1b\x50\xa0\xe4\x2d\x4b\x0d\x83\x93\xbb\x29\x74\x0d\xf6\xf8\x1a\xd4\xee\xf6\xaa\x09\xbf\xa1\xd3\x47\x8c\x4b\x09\x37\x1a\x7d\xe5\x50\x56\xe8\x50\x31\x24\x3b\xaf\x6b\x23\x0a\x49\x1c\xb4\x53\x21\x3b\xa2\x96\xec\x88\xf0\x4d\xb5\xcb\x4c\x09\x54\xc9\x81\x25\xcf\xf6\xba\x03\xd2\x1e\x5a\x74\xc3\x28\x9f\x73\xde\x5a\x5d\xb2\x77\x0a\x56\x86\x4b\x6b\x87\x4b\x6b\x87\xab\xc6\x49\x6b\x20\xab\x1f\xa9\x03\x23\x32\xd8\xf0\x35\xa9\x74\x20\x86\x2e\xb7\x96\x84\xd7\x6a\xc3\x52\xfa\x17\x0b\x62\xb0\xa4\x7c\x08\xa2\xf6\xf6\xe5\x9f\xe7\xec\xd1\x52\x35\xad\x36\xa8\x6e\x24\x32\x96\xf6\x39\xe5\x0a\x3f\x40\x43\x30\xf7\xb2\x14\x7b\xed\x53\xb9\xca\x17\x34\x18\x02\xa0\x8d\x8b\x1e\xad\xf2\xab\x27\xa0\x53\x7d\xf5\xe8\xba\x12\x04\xa2\x0e\x1a\xcf\x69\xaf\xc4\x0a\xad\x7b\xde\xd5\xc9\x91\x6c\xf6\x3b\x09\x6f\x60\xdc\x13\xc0\x65\x54\x53\x86\x31\xa9\x60\x99\x1d\x65\x29\x18\x0c\x48\x39\xc2\xe0\xed\x93\xa3\xe3\xf1\xe8\x54\xc0\xc7\xda\x1d\x0d\x39\x64\x75\x9c\x7c\x1e\xe8\xb8\xaa\x7c\xa4\xaf\xf4\xca\x03\xa5\x17\x47\xb9\xc4\xc2\x70\x2d\x8d\x7d\x01\x93\xfc\xcc\x4e\x27\x8a\x3a\xb4\xdc\xe0\x7f\xe8\xed\xa8\x22\xda\x51\xfe\xe0\xf4\x9e\x7a\xc6\xc1\xe4\x57\x52\x06\xda\xf5\x9f\x55\x9b\xb1\xc4\x5f\x40\x56\x71\xb0\x88\x4e\x95\xd4\x79\x3d\xf5\x73\xbe\x04\xdb\xde\x13\x1c\x13\x81\x07\x50\x05\x0d\x4a\x9a\x9b\x9e\xa6\xf2\x56\x25\x41\x70\x3d\x45\x27\x06\x40\x51\x29\xdf\x02\xb3\x47\x9d\x9d\x6e\x92\x44\x85\xea\xd3\x0d\xf0\x56\x36\xe6\xaf\x80\x39\xd2\xd9\x7e\x31\xdc\x15\x79\xe1\xeb\xb9\x9a\x4a\x53\xfb\x75\x37\x55\xb8\x2a\xa7\x29\x57\x06\x31\xdc\x62\xab\x55\xa6\x7f\xa6\x24\x37\xab\x9e\xe3\xab\x15\x85\x05\x62\x83\x3c\xa4\xf6\x85\x25\x34\x85\x2a\xb8\xf4\xe5\x90\xa4\x64\xe4\x87\x52\x1a\xe4\x43\xb4\xac\x17\x22\xea\xb8\x1d\x8f\xd1\x79\x16\xb3\x96\xbe\x39\xb5\x51\xd4\xd6\x26\xe8\xd8\x75\x1d\xe9\xb9\x47\x59\xa3\xd1\x52\xe6\x53\x3c\xa7\x63\x36\xcf\x40\xab\x8c\x06\x29\x65\x95\xc5\x2c\x1f\xe1\xac\xd1\x6e\xc0\x46\x03\x6c\x79\xf6\x18\x37\xd0\x37\xd4\x48\xc4\xad\xd2\xfe\x3e\xd7\xe6\x26\xc8\xcb\x43\x69\xa8\xbd\x47\xb5\x20\x43\x5c\x3b\x6b\xf1\x41\xd7\x21\xb0\xac\xaa\x01\x27\x54\x60\x4e\x41\xc6\x5a\x8d\x5e\xa3\x95\xb7\x1a\xbb\x8d\xd6\xbd\xda\xdf\xa5\xd9\x48\x01\x43\x93\x92\x07\x6d\x12\x33\xce\xa7\xbb\xf3\x7c\xf1\x25\x31\xab\x37\x67\x2a\xb9\xbe\xc3\x5c\x90\x91\x89\xb4\x97\x8c\x8d\x17\xa6\xd0\xb1\xd8\x9a\x0e\xd8\xdf\xb0\xe2\xdf\xf6\xbf\x3e\xe1\x87\x7f\x6d\x93\x62\x9b\xe3\x7f\x2f\x09\xc7\xe3\x46\x70\x90\xb9\x7e\x55\x5c\x07\x29\xc2\xea\x5b\x76\xd6\xbe\xcb\x67\x48\x1e\xa3\x64\x92\x55\x82\x0d\x50\xa0\xca\xf6\xc7\x53\x9c\x31\xa8\xeb\x51\x00\x74\x80\x0f\x6b\x9a\x99\xa3\xce\x5e\xfe\xca\x05\xa9\xcc\x5b\xad\x54\xad\x41\x3e\x04\xaa\x47\x9e\xec\x89\x7b\x75\x88\x11\xb1\x21\xf3\x7a\xd2\xbd\xf0\x74\x2f\xa6\x86\xec\xa3\x12\x7d\xc7\x94\x29\x12\x73\xaa\x66\x46\xcd\x05\x4c\xb9\xdb\xe2\x7c\x94\xc8\xdf\xe3\x66\xb2\x7d\x9f\xcf\x3e\x55\x0e\x0a\xc1\x16\x05\xe3\x09\xf3\x12\xd9\x5a\xe6\x4c\x10\x4a\x73\x2c\x61\xe4\x99\x8d\x68\x13\x46\xa3\xd3\x69\x88\x24\x16\x98\x6b\x86\x45\x2e\x6e\xfd\x67\xae\x73\xf7\xa9\x37\xcf\xc9\xd2\x54\x83\x5c\x73\x52\x14\x84\x4e\xb7\x3f\xe1\x07\x83\x4d\xfa\x7a\xad\xb3\xf2\x80\xf2\xd8\x0b\x6e\x33\x3d\x18\x86\x55\x71\x17\x9f\xf0\x83\x6f\x53\x4d\x03\x87\x3d\x33\x2e\xde\xd2\xc6\x48\x92\xe9\x78\x24\xe3\xcf\x3d\x0e\x3f\xe1\x87\x1e\x86\x77\xf9\xcc\x5e\x2d\x9a\xc4\x79\x93\x99\x4e\x99\x67\xdd\x0d\xd7\xc9\xd5\x4e\x09\x56\xa3\x5b\x3c\xfa\x24\x9f\x25\x48\xc6\xbd\x5f\x0f\xc6\x1f\x89\xf1\x64\xb7\x39\x2a\x85\xf6\x62\xc7\x6d\x32\xfe\x6c\x95\x4d\x22\x00\x5b\xc2\xac\x3e\x43\xdc\x66\x4b\x51\xb1\x36\x92\x58\x92\x3a\x80\xf5\xbc\x99\xd5\xc2\xca\x62\x57\x4d\xa2\x37\x2f\xf6\x6e\xd2\xcd\x25\x5b\x0a\x13\x0d\xf0\x8e\x14\x44\x64\x54\x91\xd5\x12\xbd\xbc\xc5\xaf\x68\x5f\xd5\xf0\xd3\xfa\x3e\xad\x5a\xd3\x0b\x95\xf0\xb1\x19\x3d\x8c\x66\x78\x7b\x8c\x85\xca\xd3\xd0\xdb\x6e\xb4\x44\xab\xb1\xfd\x6a\x57\xfe\x50\x5b\x5a\x8b\xc9\xd6\xfa\xb6\x3e\xe1\xa7\x1a\x07\x1e\xd0\xe1\xf0\xab\x3a\x53\x20\x86\x3d\x87\xf3\x57\x4e\x0c\x76\x29\x6e\xe5\xd6\x28\xc3\x61\xea\xee\x38\x4a\x75\x03\xa3\x79\x94\x35\x03\x5a\xcf\x5b\xc8\x42\xb2\x06\xb0\x84\x99\xc7\x46\xbe\x91\x81\x99\x0b\x0d\x54\x2e\xb9\x9f\xe5\xca\xee\x6a\x0f\x52\xfb\x4a\x2f\x65\xf9\x12\xcb\x0f\xc8\xc7\x10\xfc\x4a\xec\x61\x93\x3f\x7b\x80\x87\x6d\xb9\x3d\x50\xec\x6e\xa0\xe6\x24\xbd\xf4\xd6\xa0\x5e\x01\x64\xaf\x3a\xd5\xc8\x73\xe4\x81\xa0\x20\x27\x26\xf8\xa0\xda\x0b\x7b\xee\x02\xdd\x6c\xf8\xce\xca\xc6\x0b\x7a\x8d\x3a\x8a\xa4\x18\x27\x49\x15\x2c\x4c\xc2\x05\x46\x8c\x0a\x42\x97\x2a\xab\x3e\x37\xa0\x76\x20\xd3\xcd\x52\xb9\x01\x10\xe2\x6a\x77\xaa\x08\xc6\x5b\xa6\xc3\xff\x4b\xbd\x54\xc9\xc7\x74\xc4\xe6\x84\x4e\xe5\xac\xab\xc3\x81\x19\x47\xaa\xdc\x15\xae\xc6\x74\xb4\x95\x36\xc5\x81\x55\x33\x60\x88\x99\x45\xdc\xdd\xee\x9e\x78\x2d\x77\xe5\xee\xae\x9e\x61\x8a\xf0\x40\x0c\xf5\x34\xaf\x56\xdc\x42\xbe\xf1\xdc\x08\x66\xdb\xd2\x18\x65\xa4\x60\x77\x87\x21\x37\x22\x33\xb1\x1e\xf5\x1e\x51\xa4\x13\xaa\xc4\xf4\xe6\xd4\x08\x83\xa6\xd7\x9f\x12\xcf\x4e\x46\x37\xf0\xaa\xb5\x5a\x43\xd4\x59\xe1\x8d\x29\xe8\xac\xe7\x90\xa2\x41\x83\xdd\x5d\xaf\xba\xc9\xa0\xa7\xd9\x26\x3f\x5a\xfc\xf3\x58\x27\xac\x2f\x5d\x0f\xf3\xd9\xec\x30\x24\x54\xe0\x51\x67\xdf\xbc\xc5\x9c\x88\xe0\x14\xe7\xe0\xd1\x83\x15\x09\xeb\x26\xc8\x75\xb6\x24\x2f\x7f\x36\x7c\x74\xa9\xe5\x19\xef\x3d\xaa\x90\x6a\x3d\x0c\x31\x5d\xce\x8d\xa9\xf7\x4e\x17\xde\x73\x22\xf4\xef\x0e\x1c\x31\x3a\x21\xd3\xa5\xf9\xd6\x59\xaf\x9d\xcc\xca\x9b\x4d\xdd\xb7\x84\x4a\xe4\xd3\x29\x1e\x5f\xe1\xf9\x62\x96\x0b\x7c\x42\x04\xe6\x8a\x93\x2e\xe2\x03\xc8\x2d\x08\xcf\xef\x91\xd0\x16\x96\x9e\x29\x7c\x4d\x80\x4c\x6d\x32\x43\x32\x6f\x94\xd0\x0f\xcb\x4a\xd5\x47\x48\xc3\x34\x37\x0b\x56\x14\xe4\x66\x56\x26\x3c\x65\xfc\x42\x7d\xde\x2c\x4e\x25\xd2\x30\x89\xd5\x2a\x75\xd5\xbb\x2f\x7a\x78\x6d\x98\xdd\x40\x30\x82\x2e\x75\x65\x81\xc5\x7b\x0b\xf2\xf9\x04\x72\xfb\x5e\x1b\x0a\xd8\x5c\xa9\x41\xd4\xff\x28\x5c\xf7\x1e\x2d\x8d\xa5\xe4\xe6\x30\xe2\x9a\x3c\x8f\xb7\x48\xbb\x5c\x39\xe4\x3f\xac\x56\x3b\x5d\x48\xda\xfe\xea\x49\x0a\xd3\x50\x0b\xde\x20\x74\x9b\x34\x9b\x19\x69\xdb\x95\x46\x3b\x1d\x00\x79\x86\x21\xd1\x5b\x0d\xac\xd7\x01\xfe\x72\x76\x5f\x44\xf6\xe9\x5f\x22\x08\x54\xe6\xb3\xc0\xb3\x89\x53\x43\xea\x07\xf9\xb7\xad\x27\x07\x21\x33\x4b\xcd\x66\x63\xe9\xf2\x6d\xb8\x18\x46\x3f\x10\x3a\x66\xf7\xa6\x86\x87\xce\x08\x21\xfb\xa9\xd2\xa1\xcd\x73\xe0\x3a\x2d\x5f\xa8\x66\xec\x23\xf2\xbf\x54\x5a\x91\xf2\xb1\x1c\xa6\x6b\xa5\x7c\xa1\x5a\xb1\x8f\xc8\xff\x52\x69\xe5\x96\x14\x82\xf1\x07\xd7\x88\x7b\x56\x6d\x98\x27\xe4\xbd\xaf\xb4\x40\xf3\x3b\x32\xcd\x05\x2b\x2f\xcc\xbc\x37\xaa\x15\xf7\x8c\x82\x6f\x55\xb9\xc6\x7e\x6b\x2f\x0b\xcc\x0f\xa6\x98\x2a\x8d\xc8\xbe\x6c\x44\x49\xbf\xf2\x50\xd8\x0f\x06\xa7\x5f\x13\xfb\xda\x40\xa9\xdf\x32\xfb\x36\xd1\x6e\xaf\x71\xf2\x40\x3f\x6f\x67\x02\x7f\x16\x73\x36\xc6\xa0\x01\x73\xb4\xb3\x23\x9a\xcd\x6c\x67\x87\xb6\x47\xb7\x9c\xcd\x71\xb3\xb9\x43\xdb\x72\x4f\xe4\x00\x16\xfa\x6b\x0a\x05\x8e\x8d\x4b\x94\x76\x1e\xdc\xc2\xed\x7b\xb5\xf0\x2a\x79\x89\x5b\x04\x0e\xb1\x9b\x4d\x02\x71\x09\x89\xc9\x58\x72\xa8\x7a\x34\x89\x40\x8e\x08\xc7\x13\xf6\x59\x89\xbf\xb7\x79\xf1\xf6\xfc\xd4\x26\x02\xd1\x5b\x40\xe2\x19\x9b\xe1\x6f\x94\x02\xf5\x39\x6e\x21\x29\x3f\x8f\xd8\xa7\x23\xb1\x59\x6c\x8c\xc4\x2d\xda\x3e\x39\x7f\xf7\xae\x7f\xa1\x6e\x3f\x1f\x67\x6c\xda\xab\xb7\x5f\x37\xc0\x81\xf6\x8c\x4d\x9d\xbb\xaf\x1f\x0c\xe5\x3e\xe7\xf4\x39\xf5\x65\xb9\x64\x03\x58\xf9\x50\x3d\xa3\x05\x55\x30\xd9\x04\xa1\x13\xf6\x9c\x16\x64\xb9\x64\x03\x6a\x82\x2b\x2d\x40\x61\x69\xbe\x69\xa1\xad\xca\xed\x67\xa2\x6c\x52\xbd\xb1\x81\x62\xbc\x36\x7b\xcf\xea\x57\xe7\x01\x7c\x0e\xe8\xba\x64\xaa\x11\x89\x4a\x4e\xd0\xe5\x3e\x62\x7d\x39\x4d\x75\x67\x85\xf0\xf3\x7c\x34\x9b\x38\x26\x9f\xfb\xd8\xde\x68\xb8\x18\x69\x92\x3f\xad\x90\x13\x1d\x2c\xbe\xd9\xd4\xff\x03\xdf\xc5\x5d\xa5\xe6\xbb\x7a\x58\xe0\x7d\x6a\xda\x02\xab\x95\xc8\x6a\x08\xba\xfc\x9b\xfe\x7e\x6f\x08\xb3\xfe\x1f\xac\x56\xa9\x5d\x3d\xcf\x09\x3d\x64\x54\x12\x88\x66\xd3\x7b\x58\xad\xa4\x88\x71\x64\xe7\xa3\xe1\xc9\xcd\x0d\x90\x01\x48\xd2\xe7\x79\x79\xc1\xb7\xff\x48\xe6\x6a\x5a\x25\xab\xf3\xd9\xfe\xd2\xb7\xf6\x3d\xbc\xee\xb9\xcf\xa2\x6d\x7e\xad\x56\x65\x49\xd1\x36\xbf\xe4\x4b\x53\x49\x98\x3b\xff\xd5\x0a\xaf\xd7\x19\x87\xbc\xdd\x97\xab\x09\x20\x43\x8f\xc6\xcc\xeb\xfc\xfd\xd5\xf1\xf9\xd9\xc1\xc9\xf5\x51\xff\xe0\xea\xc3\x45\xff\x52\xb2\x56\xfd\x7f\x5c\xf5\xcf\xde\x5e\xbf\xbf\x38\xbf\x3a\xbf\xfa\xf1\x7d\xff\xb2\xf7\xa8\xe2\x35\x49\x56\xcb\x0e\x50\xfe\xd6\xd7\xc4\x2a\x93\xfe\xc9\xf9\xbb\xeb\xcb\xab\x83\xc3\xbf\x5d\x5d\x1c\x1c\xf6\xaf\xcf\xcf\xae\xdf\xf6\xdf\x5f\xf4\x0f\x55\x7e\x44\x59\x56\x16\xf8\xd8\xbf\xb8\x34\x8f\x17\x07\xc7\x97\xd5\x62\x5d\x78\x79\x75\xf1\xe1\x50\x02\xa2\xba\x3f\x3a\x3e\xe9\xcb\xb7\xd7\x07\xef\xdf\x9f\x1c\xeb\x52\xd7\x57\xfd\xd3\xf7\x27\x07\x57\xfd\xeb\x1f\x2e\x0e\xde\xbf\xef\x5f\xc8\xe6\xca\x97\xe7\x67\x27\x3f\x5e\xbf\x3b\x39\x3e\x3d\xed\x5f\x5c\x1f\x9e\x9f\xbe\x3f\x3f\xeb\x9f\x5d\xa9\x61\x5d\xff\xf7\xdf\x3f\xf4\x2f\x7e\xbc\x3e\x3e\xbb\xea\xbf\xbb\x70\x90\x59\x8b\xb7\xfe\xe9\x9b\xfe\xc5\xf5\xdf\xac\x9d\x9b\xaa\x61\x3e\x5d\x1e\x1c\xd9\xcc\x8e\xa9\xcf\xfd\xb3\x0f\xa7\xfd\x0b\xf5\xf3\xf0\xfc\xec\xea\xe0\xf8\xec\x32\x55\xec\xc3\xd9\xdb\xfe\xc5\xe5\xe1\xf9\x45\xff\xfa\x40\x99\xd4\x25\x4b\x5d\xf4\xe5\x34\xf5\xdf\x5e\x9f\xbf\xb9\xec\x5f\x7c\xec\x5f\xa4\x0a\x1d\x9f\x1d\x5f\xa9\xfc\x93\xfd\x8b\xeb\x83\x8b\x77\x1f\x4e\xe5\x18\x93\xad\x9d\x7f\xb8\xea\x5f\x28\x6b\xbe\x0f\x17\x87\x7d\xff\xd3\xe1\x87\x8b\x8b\xfe\xd9\xd5\xf5\x0f\xdf\xf7\xcf\x52\x55\xe5\x50\x2e\xce\x4f\x4e\xfa\x17\x66\xa6\xdf\xa6\x4a\xd9\xf5\xeb\xbf\xbd\x76\x66\x88\x29\x80\x4f\x4f\xfb\x6f\x8f\xd5\x02\x6d\x18\x96\x99\xe2\xa3\xd3\xab\xd4\xd7\xa3\x8b\x7e\xff\x9f\xba\x5c\x0a\x5a\xb3\xd4\xd7\x6f\xfb\x47\x07\x1f\x4e\xae\x4e\x0e\x7e\x3c\xff\x90\x6c\xe7\xcd\xf1\xd9\xdb\x9a\x95\x3c\x3e\x7b\xff\xe1\xea\xfa\xea\xe2\xe0\xec\xf2\xe8\xfc\xe2\x74\xd3\x80\x25\x2a\xea\xdd\x93\x9c\xf8\xf3\x8b\xf7\xdf\x1f\x9c\xc9\x65\xfc\x70\x75\xd2\x4f\x2f\xce\x0f\x07\x17\x1b\xdb\xa8\xb5\xc1\x0c\xe0\x39\x7e\xab\xd0\xe1\xfa\xe0\xea\xea\xa2\xa6\x19\x89\x78\xa9\x2f\xef\x2f\xce\xdf\xf7\x2f\xae\x7e\xbc\xbe\xe8\xff\xfd\xc3\xf1\x45\xb8\xc2\x7a\x3f\x9c\x9c\x1f\xbc\xbd\xfe\xfe\xfc\xfc\x6f\x97\xbd\xc7\x35\x74\x54\xe2\x71\xbd\x0e\x93\x5d\x92\x49\x95\x9e\x62\xc7\xf9\xf9\x01\xb4\xb7\x09\xdd\xc6\x40\x31\x30\xe7\xf7\xd4\x0a\x17\x2a\x0b\x64\xa3\x42\x79\x1a\x46\xd6\x89\x81\x31\xef\x33\x65\xb9\x9a\x51\xc4\x06\x62\x08\xf6\xe5\x5f\xa4\x3d\xbb\x06\x62\xd8\xd3\xa1\xb9\xd5\xf5\xa8\x7c\xaf\xdc\x03\x65\x39\xa7\x4d\x84\x04\xe6\x08\xb7\x2b\xbd\x96\x32\x5b\xde\x6c\x56\xc7\x95\xbb\x71\xe5\xfb\x19\xab\x56\x6f\x1b\x2b\x1f\x05\x49\x6e\x9e\x60\xaa\xa0\xa5\xa6\xb6\xa8\x7d\x4e\x16\xd6\xf9\x8d\x4d\x49\xf5\xa0\x22\x5b\xe9\x17\xc9\x1a\x06\x0e\xbe\xb9\xef\xf4\x67\xdd\x5b\x69\x6a\x8d\xdb\xf1\x1a\x6c\xa5\xd6\xbc\x28\x25\x26\x60\x97\x7c\x29\x97\xbc\x00\x45\xbc\xe4\x4b\x1d\x67\xae\x18\x2c\x87\x30\x4c\x09\x4a\xe4\x17\x56\xe9\x71\xb0\x1c\x22\xd2\x9e\x90\x99\xc0\x3c\xab\xde\x06\x27\xa4\x5f\xbc\x06\x66\x04\x33\x84\xdb\x16\x7d\x93\x90\xcf\x4a\x81\xc9\x41\x3e\x92\x90\xcf\xc0\x2c\x86\x7c\xa4\xe1\xb3\xed\x0d\x46\x06\xbd\x66\x83\xd1\x50\xf2\x51\x99\x39\x6a\xfb\x67\x1f\x57\x2b\xde\xee\x9f\x7d\x94\xac\x95\x66\x5d\x14\xcb\x3f\xd2\x4c\x83\x62\xf9\xa7\x58\xc4\x17\xa8\x8e\x3d\x20\xe6\x08\x5f\x43\x15\x6f\xb0\x72\xd1\x0a\x1e\x6d\x09\x9d\xeb\xb7\x7f\xf6\x51\x09\x0e\x53\x2c\xe4\xcf\x6a\x83\x2c\x90\x99\x15\x23\xbc\x7b\x9b\xd3\xf1\x8c\xd0\x69\x55\x6e\xd8\xa8\x02\x9a\x62\x71\x4e\x71\x98\xe0\xa3\x34\xa4\x33\x10\x57\x4a\x60\xf0\x28\x34\xac\x53\x2c\xde\x92\x62\x91\x8b\xd1\xed\xf9\x1d\xe6\x9c\x8c\x71\x2a\x61\x9e\x69\xa8\xbe\x28\x06\x8f\x14\x39\x15\x87\xb3\x2a\x0d\xd2\xc6\xa1\xc7\x29\x16\xdb\x4c\x03\xe3\x43\xb9\x36\xf7\x39\x86\x07\xf5\xe7\xe6\xb3\xc0\xb4\x20\x8c\xee\x16\xcb\x85\x9c\x8e\x94\x58\x55\x57\x74\x46\x6e\xbe\x19\xe7\x22\xbf\xce\xc7\xf9\x42\x78\x8e\xf6\xe9\xa2\xce\x46\xfb\x5a\x49\x01\xae\xd6\x13\xb2\x58\x52\x4d\x93\x61\xd8\x78\x9b\x8b\xfc\xc0\xf6\xfc\xe8\x2b\xce\x3a\x75\x61\x09\x2c\xe3\x2f\xf1\xa3\xb6\x5d\x77\x03\xab\x62\x87\x7d\x59\x0f\xd4\xeb\x61\xf3\x3c\x6f\x9a\x91\x94\x50\x6b\xf4\x05\x76\x8a\xf9\x92\x0a\x32\xc7\x4f\x4d\x5e\x29\xea\x50\x23\x93\xb4\x15\x28\xe3\xcc\x7a\x34\x70\xad\x2f\x18\xe5\xf4\x30\x17\xf9\x8c\x4d\xfb\x54\x70\x82\x8b\x37\x0f\x52\xd8\x48\xe4\x60\x6c\xcc\xd9\x18\xcf\x1a\xda\xc5\xa5\x21\x8c\xa2\x51\x3d\xaf\xe1\xe8\xa9\x36\xb4\x64\xad\x0c\x63\x0e\x40\x46\xdb\x67\xd6\x38\xa0\x7d\x76\x70\xda\xbf\x7c\x7f\x70\xd8\xbf\x94\x72\x84\x2d\xa1\xb2\xa7\xe2\xfb\xed\x0b\x3c\xed\x7f\x5e\x64\x3a\x60\xc7\x2c\x2f\x0a\x32\x79\x00\x19\x06\xad\xc6\x1f\xca\x04\x29\xdc\x26\xbe\xcf\x2a\x5d\x6e\xb9\xab\xe1\x9a\xa3\x39\x07\x2e\x83\xa3\xfc\x99\x71\x84\x07\xf9\x10\x36\x54\x67\x2a\x33\x84\x84\x48\x2b\x0f\x41\xc6\x41\xb3\x69\xae\x02\x14\x48\xe3\xbc\xb8\xc5\x9c\xfc\x82\x41\x96\x3b\x1b\x03\x06\x1b\x0d\x00\x80\x44\x04\xf2\x2c\x7c\x08\x37\x53\x75\x0b\xda\x70\x16\x06\x25\xf8\x92\xce\x18\x5b\xb8\xcf\x73\x2c\xf2\xd9\x17\x63\x8c\xcd\xac\x53\x83\x37\x2c\xc6\x1b\x42\x49\x80\xf9\xfa\x06\xba\x58\x2e\xea\x22\xc0\xda\x7b\xa3\x19\xce\x0b\xac\x13\x5a\x2a\xd7\x0e\xa6\xd6\x77\x0d\x47\xa9\xfd\xe6\xe2\x86\xd9\x64\xb6\x27\x64\x4e\x44\xef\x25\xcc\x47\x23\xbc\x10\xc5\xa9\x44\x42\x89\x3c\x72\x2f\x86\x6d\xf7\x5c\xdb\x72\x93\x1e\xa9\x83\xb4\xa8\xee\x55\x0f\x82\x7b\x49\x73\x55\x8b\x12\x5f\x8b\x64\x2c\x05\x35\x28\x73\x2f\x33\xc5\xa2\x2c\x9d\x19\x74\xd5\x8d\x6d\xe1\x8c\x87\x41\x09\x71\xe9\x56\xfc\x49\xb9\x01\x32\x44\xdb\xf7\x3c\x5f\xb8\x26\x32\x79\x58\xd2\x7c\x8e\x1d\x22\x1b\xd4\xa2\x36\xef\x6b\x59\x54\x17\x54\x81\xeb\xd9\xda\x19\xfc\xf8\x41\x88\x92\x7b\xc0\xea\x26\xd4\x6d\x08\x8d\x16\xa3\xcd\xf1\x9c\xdd\x61\xbd\xce\x59\x0e\xd6\xc1\x7d\x78\x54\x56\x02\xe6\x4a\xc2\x7c\x0d\xaf\x25\x40\x57\x4c\x5d\x1a\x54\xb6\xba\xbd\x5a\xaf\xa8\x3b\xb1\xca\x82\x92\x51\xa4\xb6\xcf\xd4\x79\xc0\xc9\x2e\x81\x17\xdf\x21\xd3\xe4\xa6\xd7\x68\x29\xdb\x2d\xaa\x37\xbf\x8a\x0a\xa4\x56\xed\x02\x8f\x18\x1f\x17\xb1\xd7\x3f\xf1\x33\x45\x41\x0f\xdd\x5c\x3c\x2e\x0f\xea\x0c\x03\x1b\x91\x6b\x8a\x85\x69\x31\x5b\x42\x0c\xe0\xc8\x1e\xb5\xbe\xaf\x38\x78\xa4\xd9\x00\x0f\xb5\xa3\xec\x2d\x9a\x55\xd6\xdb\x5a\x59\x99\x48\x75\x76\x15\x75\xcb\x19\x86\x13\x00\x60\xae\x70\xc0\xbe\x92\xcb\xb2\x40\x8f\x63\x32\x3e\xbc\xcd\xe9\xd4\xa7\x99\x90\x2a\xab\x41\x35\x9e\x19\x1c\x41\x6d\x13\x30\x43\x74\x6f\xf6\x8a\xb6\x96\x7b\xb3\x56\x0b\x8c\x90\x72\x24\xd4\xdc\xde\x81\x00\x19\x86\x33\x00\x6f\x51\xd0\xc9\x08\xc0\x1a\x88\x46\x0a\x22\x91\x0d\x6e\x87\x60\x8b\x35\x9b\x24\xa3\xca\x66\xe5\x9e\xcc\x66\x31\x3c\x81\x17\xc1\xda\xa2\x8a\xea\x3e\x1f\x8f\x15\x67\x6b\x13\x1b\x83\x4c\xfb\xff\xc1\x85\x9c\x48\xaf\x85\xe2\x69\x1c\x55\x0d\x6a\xbc\xac\xb4\x99\xcb\x06\xf3\x8d\x48\x3c\x02\x6b\x28\xb2\xdb\x24\xed\xf1\x51\x78\x04\xe0\x48\x8f\xd3\x04\x5a\xf9\xd5\x94\xed\xc9\xa1\xad\xa1\xbe\xe2\xaf\x4e\xe9\x4e\x57\x12\xc3\xd9\x72\xee\xac\xda\x37\x52\xad\x98\x36\x24\xc8\x96\xbe\xbb\xb5\x77\xe8\x31\xce\xe7\x15\x9c\x67\x10\x03\x3f\x19\x32\x78\x14\x99\xbe\x90\x0d\x09\x96\x2c\x67\xf0\x7f\x59\x83\xb5\x42\x67\xc0\xcb\xf8\xeb\xce\x6a\x45\x5e\x77\xe4\x99\x2a\x4f\x50\x3f\x64\x15\xc8\x1a\x3a\x2d\x5a\xd1\xd0\x88\x52\xfc\x16\x48\xa7\x9d\x68\xe1\x12\xc0\xd4\xec\xd5\x60\x55\x0e\x09\x5c\x82\xf5\x1a\x06\x03\xad\x3d\x09\xfc\x49\xc3\xa5\x07\xd5\xa3\x9c\xe1\x9e\xd0\x71\x70\x7b\xaa\xb7\x29\x16\x20\xa3\xb0\xa1\xef\x0d\x1b\xc0\xae\xb0\x0d\x91\xeb\x2f\xb7\xca\xd2\xa5\x10\xb3\x87\xd7\x6b\x18\x1c\x33\x15\xad\xb7\x5e\x5a\xe1\xc0\xf1\x82\x65\x05\x8c\x2b\xa8\xa6\x68\x41\xa2\x5d\xc3\xef\x19\x72\xdb\x00\x2a\x57\xe1\x86\xef\x26\xfa\xaf\x24\xdc\x0a\xe0\xe2\x9c\x3a\x56\xae\x50\x21\xec\x2c\xa6\xd2\xba\x20\xbd\x8f\xea\x38\xec\xe1\x10\x2f\x05\x80\x7a\x12\xd5\x05\xb7\xdf\x4a\x2c\x12\xfb\x77\xd8\x7a\x4b\x65\x42\x1f\xb1\x86\x80\x98\x8a\x6b\x58\x03\x66\xed\x94\xda\xba\xac\x86\x3d\xa5\xde\x79\xef\x44\x8b\xca\xbe\x17\x31\xeb\xc9\x54\x7a\x30\x20\x62\xd6\x93\xa9\x48\xcf\x76\x08\x03\x36\xd4\xfc\xa7\xb6\x70\x2d\x19\x4b\x26\x4f\x6e\x45\xbf\xb9\xe2\x29\xa9\xc2\x90\xca\x01\x98\xe2\x6f\xdc\x21\x50\x39\xa0\x05\x7a\x74\x18\x57\x8e\x45\xa3\xe5\xc7\x7c\xb6\xc4\x45\x84\xef\x87\xde\x27\x65\xf8\xdb\x2e\x70\xce\x47\xb7\x7f\xc3\x0f\xf7\x12\x90\xa8\xb8\x7d\xad\x8b\xea\x25\x4c\xb6\x7b\xe4\x7d\xd2\x85\x47\x6c\xc6\x78\xb5\x77\xa6\x12\xe6\x0b\x6f\xf0\x3e\x48\x89\x48\x7d\x6b\xaf\xa8\x05\x67\xe3\x74\x25\x61\x7a\xa2\x61\x05\x58\x4a\x20\x54\x76\xcb\xc1\x71\x9b\x28\xe5\x5b\x96\x44\x92\xc2\x74\x46\xe6\xf3\x8a\x4c\x68\xde\x7e\x63\x99\x7a\xef\xd5\x52\x90\x99\xff\x4c\xd9\x18\x3b\x21\xc0\xd8\xbf\x94\x5f\xd9\x62\xc4\xc6\x78\x77\xc4\xe6\x0b\x32\xf3\x44\x78\x27\x6a\xb8\x9e\xf0\x04\x73\x4c\x47\xb8\x22\x50\xc4\xe1\xf5\x92\xc2\x88\xbd\x93\xd5\x1f\xef\x08\xbe\x2f\x8b\x26\x8d\x1a\x6c\x45\xa2\xac\x0a\xe4\x3b\x75\x97\xec\x89\x37\x98\xdf\x11\x05\x8e\x1c\xe1\xae\x8e\xe9\xb0\x29\x18\x60\xb2\x79\x27\x24\xb9\x81\xde\x13\x8e\x77\x27\x8c\xcf\x73\xf1\x54\xac\x40\x2f\x3a\x61\x55\x26\xe3\xc5\x5d\x29\x9a\x71\xb6\x14\xb2\x9f\xba\x58\x82\x2a\x14\xbf\xe4\xee\x26\xf0\x16\x2e\xe0\x18\xce\xe1\x03\xbc\x83\x53\x78\x03\xaf\xe1\x3d\xec\xc3\xcf\xf0\x12\x9e\xa7\xb4\x53\x87\x6c\xbe\x60\x14\x53\x61\x22\xbb\x20\xa5\x48\x4a\xbc\x1d\xe5\x8b\xfc\x86\xcc\x88\x20\xb8\x40\xb8\x7d\xbe\x14\x33\x2c\x3e\x12\x7c\x8f\x70\x5b\x1d\x18\x3a\x64\x27\x6e\x13\x13\x6b\xf2\x88\xc9\x6a\xc7\x67\x1f\xcf\xff\xd6\x47\xb8\xfd\x61\x21\xc5\xd3\x9b\x19\xbe\xb0\x98\x80\x70\xfb\xe0\xa6\x10\x3c\x1f\xa5\xfa\xbb\xc6\x9f\x17\x98\x13\xb5\x72\xb3\xd3\x7c\xc4\x59\xa1\x3d\xab\xb5\xd3\xba\x7b\x53\x60\xb1\x5c\x1c\x2c\x16\x33\xa2\xad\x05\x9c\x3d\xbe\xf9\xd4\xa7\x53\x42\x71\xf8\xd6\x9a\x37\xc9\xfa\xd3\xf0\xf1\x36\x2f\xec\x63\x58\x36\x2c\xaa\x5c\x1f\xe8\x18\xf3\x4b\x2c\xc4\x0c\x8f\x8d\xd3\xb7\xdc\xce\xf2\x2d\xe6\xb2\xad\x63\x2a\xa7\x62\x24\x88\xdc\xba\xfa\xb5\x7a\x8b\xb9\xf0\x9e\xbd\x9f\xa4\xf8\xfe\xea\xf4\xe4\x32\x9f\xc8\xf6\x6f\xc5\x7c\x66\x7e\xe2\x62\x94\x2f\x70\xff\xf3\x82\xe3\x42\x4a\xfd\x08\xb7\xe5\x17\xa3\xba\xc6\xed\x7e\x89\x9a\xb2\x22\x9e\x2d\x54\x73\xdf\xdb\x1f\x17\xe7\xe7\x57\xd7\x17\xfd\x23\x15\x56\xd2\xcc\x34\xc2\xed\x13\x42\x3f\xf9\xcf\x57\xf8\xb3\x38\xe0\x38\x37\x3f\x8f\x08\x9e\xc9\x81\x29\xeb\xb5\x1b\xf6\x19\xe1\xb6\x28\x87\x7f\xc1\x98\x3f\x1b\x67\x6c\x8c\xdf\x9e\x9f\x5e\x71\x5c\x5a\x69\x69\x48\x49\x71\x89\x39\xc9\x67\xe4\x17\xb5\x3e\x47\x84\x17\x42\x96\x96\x78\x93\xac\xf0\xf6\xfc\x54\x33\x70\xce\x49\xab\x5e\x87\xe7\x8a\x3e\x5b\x85\x57\x56\xd9\xa8\xc5\x4b\x80\xf6\x25\x5d\xc4\x75\x37\xf6\x55\x37\x43\xcf\x56\x1a\xd6\x35\xb0\xb1\xd7\x9a\x15\x7b\x66\xa7\xbc\x6e\xc5\xd7\x6b\xad\x55\x38\x80\x9f\xe0\x29\xbc\x82\x87\xf0\x02\xbe\xd7\xcc\x48\xbd\x6d\x21\xc8\x06\x4e\x15\xd8\x1b\x59\x94\x2c\xbe\xd9\x35\x6a\xa4\xc6\x10\x3e\x55\x00\xc0\xb3\xe7\xf4\xe2\xea\xf6\x82\xb6\x53\xaf\x01\xfc\xf9\x8b\xe0\xde\xe5\x8c\x45\x90\x9a\x57\x00\x1e\x7f\x49\x4b\xee\x38\xed\xcd\x73\x42\x83\x16\xe3\x4f\x9e\xb8\xf5\x36\x0a\x59\x72\x92\x29\x9e\xc4\xd6\x34\x81\x86\x80\xf2\xba\x97\x0b\x74\x52\x1f\x34\xd6\xb8\x54\xa9\x0a\x36\x18\x17\x19\x2b\x9f\x00\x13\x75\x0a\x8b\x5c\x67\xdf\xff\x7f\xd8\xfb\xd7\xae\x36\x8e\x6d\x5f\x1c\x7e\xcf\xa7\x80\x3e\x19\x4a\xd7\xa0\x50\x84\x93\xb3\xd7\x3e\x72\x2a\x5a\x18\x70\xcc\x8a\x0d\x0e\x60\x3b\x8e\x8e\x1e\x76\x23\x95\x50\xc5\x4d\xb5\x52\x5d\x02\x63\xa4\xef\xfe\x8c\x9a\x75\xef\x8b\x80\x24\x6b\xed\x75\xf6\xf8\xbf\xb1\x51\x77\x75\xdd\x6b\xd6\xbc\xfe\x66\xd6\x08\xa7\xd2\x02\x3d\xa5\x26\x21\x0b\xb4\x35\x34\xce\x4d\x6d\x5a\xb4\x31\x69\xb4\x6b\x07\x8b\xef\x81\x9f\xe8\xcb\x95\x75\x1b\x7e\x49\x0e\xd2\x7b\x36\xe9\x27\xbf\xb2\xde\xfe\x8b\xf7\x72\x9c\xe0\xcb\xbc\x18\x7f\xea\x7f\x7d\x9f\x94\x77\xd7\x97\x45\x5e\x26\xfd\xe1\x08\x27\xa5\xcc\x24\x05\x71\x3b\xe9\x0f\x87\xbb\x78\xf8\xec\x6f\xd8\xaf\x76\x82\x87\xc3\x67\xcf\x70\x0f\x0f\x47\xa3\x11\xf8\xc3\x8e\xf0\x34\xcb\x4b\x3a\x1a\xe1\x64\x96\x95\x87\x37\x59\x9e\xf4\xe1\xc9\xea\x6b\xac\x86\xdb\xbf\xd7\x9c\x02\xe8\x0e\x93\x79\x36\xfe\x94\x5d\xd1\xf2\x9b\x88\xd9\x02\x65\xac\x9d\xf7\xf2\x1b\xb5\x07\xba\xb3\xcb\x32\x51\xc7\xf1\x8b\x9a\x83\xbc\xab\xfb\x88\xd2\xe4\xf4\x70\xff\xe4\xcd\xdb\x77\xe7\x87\x17\xe7\x7b\x3f\x9a\x90\x94\x57\x64\xd1\x7d\x29\xb2\x6b\x7a\x5b\x88\x4f\x7f\x89\xfa\x74\xf8\x65\x44\xca\xee\x01\x13\xf2\x4e\x1d\xeb\xf3\xec\xca\x21\x39\xae\xb0\xa0\x6a\x3e\x16\x92\x56\xeb\x1d\x7e\x19\x75\x19\xe7\x54\x74\x27\xea\xcb\x14\xa9\xb3\xfd\x4a\xdd\x52\x70\xb1\x98\x1d\x45\xb6\x34\x08\x71\x6b\x7a\x5b\x07\xef\x06\x8d\xb8\xfd\x54\xab\xe5\x31\x3b\xc9\x31\xcf\xb6\xcb\x61\xd5\xb5\xac\xd4\xef\x2a\x47\xe2\x05\x64\x48\xb1\x6f\x7f\xf7\x6f\xd3\x1e\x5e\x58\xc3\xaa\xda\x96\x83\x30\xfe\xa3\xbf\xb5\x45\xe1\xc4\x7c\xa8\xac\xdd\xbb\xb7\x07\x7b\xe7\x87\x09\xc2\xef\x2b\x2f\x34\xd3\x93\x20\xfc\xb1\xf2\x42\xfb\xb4\x24\x08\xff\xd8\xea\xf6\xde\x34\x0b\x57\x15\x70\x5f\x53\xe4\x67\xbb\x88\xd2\x61\x13\xa9\xb3\xf1\x53\x9c\x62\xce\x3b\x99\x05\xa7\x90\xb5\xfb\x54\x23\x53\x5d\x77\x9c\xe5\xb9\x81\x07\xf6\xa2\xdd\x45\x9e\x95\xf2\x94\xde\x30\xe0\x43\x34\x46\x97\x7e\x08\x72\x8e\x79\xb2\x72\xd3\xca\x9c\x9f\x3b\x4a\x25\x06\xc1\x2c\x88\xe2\x80\x4f\x1a\xc5\x68\x45\x2a\x1d\xbe\x7d\xd8\xa6\x8b\xf3\x75\x6d\x56\xe3\x7b\x95\x34\x0c\x40\x6d\x30\x35\xc8\xc3\xeb\x06\xdd\x0c\xb7\x8d\x43\x8f\x8f\x86\x46\x6d\x9a\x72\x90\x94\xe5\x2a\xfd\x11\xe1\xaf\xda\x66\xd6\x29\x77\x9e\x3a\xb5\x58\xfa\xc9\xe5\xdd\xf1\x8c\xe5\x13\x41\x79\x23\xac\x12\x7f\xe4\xa4\x56\x37\x4b\x98\x8e\xc8\xd4\xdf\x02\x9e\x91\xd6\x8b\x81\xf1\xec\x17\x0b\xe5\x07\x50\xca\x1a\x28\x43\xae\xd2\xb2\x0b\x03\x74\xfc\x3c\xc2\x3f\xb7\xef\xbc\xa0\xef\x0f\x4f\x4f\x23\x21\x43\x6b\xc7\x5f\xbb\x72\xbc\xff\x60\xda\xc3\x8a\xdc\x40\x73\x70\xb8\xf5\x98\xdc\x02\x43\x7c\x30\xbd\xdd\xfc\x55\xc3\xd0\xae\x9d\xcc\x80\x98\xfc\xea\x8f\x9d\x5c\xa5\x3f\x21\xfc\x4b\xeb\xee\xf0\x90\x0e\x7f\xfc\xe8\x89\xee\xc5\x3c\x13\x94\xdb\x0d\x8c\xd5\x03\xc3\xce\xfd\x44\xef\x08\xc7\x42\x9d\x19\xd5\xc2\x58\xfd\xf1\xb2\x10\x96\xdb\x43\xd0\x03\x2c\x1e\xb9\x81\x2c\xa1\x6e\x3e\x97\x61\x2f\x7c\x02\x0a\xdf\x11\xaf\x5c\x1d\x6b\xe5\x65\x6d\x52\x87\x1f\x46\xd1\x4c\x41\xd1\x52\x15\x6d\x68\xa0\x5a\xbd\x9d\xef\x9f\x11\xfe\xf5\x9f\x32\xdf\xb8\x20\x12\x88\x4f\x46\x4a\x2f\xb4\x06\x37\x66\xd9\xdd\x3f\x39\x3e\x3b\xdf\x3b\x3e\x57\x57\x76\x7d\x7d\xbc\x7c\xab\xd7\x08\x1e\xea\x03\x7d\x9e\x5d\x91\x6c\xcd\xc2\x01\x49\xba\x64\x5c\x71\x83\x05\xce\x46\x7f\xf1\x9a\xb9\x9e\xf9\x75\x8b\x3b\xe7\x68\x6b\x38\xe1\xc2\x93\xc2\x0d\x69\xf8\x81\xc5\x1c\x88\x6b\xe3\x5e\x13\x98\x23\x17\xa8\x6d\x42\xa1\x6b\x66\x3c\xc2\x3a\x1d\xab\xd3\x06\x1c\x05\x97\x6d\xd3\xfb\x1c\xa9\x32\x36\x44\x29\x0e\xdb\x21\x6c\xe0\xf7\x97\xf0\x79\xbd\xd6\x6e\xb3\x10\x48\xa8\x32\x1f\x76\x7c\xcf\x83\xad\xb8\x76\xeb\xfd\xe3\x2f\xbf\x08\xc2\x6b\x40\xed\x86\x16\x6e\x0d\xf3\xee\xc5\x8d\x21\x00\x8f\xbd\x10\x6a\xb7\x6c\x84\xe3\x05\x6f\x63\xa2\xa7\x57\x37\x1a\x22\x75\x89\x69\xa0\xbc\x05\xb8\x94\xd9\x55\xcc\x21\xe2\xa0\x10\x31\xf3\xf5\x23\xc2\x94\x36\x4f\x18\xff\xab\x6e\xce\xc2\x9d\xaf\x47\x1d\x5a\xcc\x9b\x8e\x9c\x3e\xf7\x41\x65\xa3\xd6\x5b\x97\xab\x49\xe6\x6d\x82\x8e\xd8\x68\xb9\x79\xd2\xe0\x30\x61\x60\x0d\x59\xf9\x56\x14\x9f\xd5\xb1\xb1\xf7\x92\xc0\x09\x2b\xcf\xc5\x42\xce\xee\x12\xd4\x97\xdd\xb7\x82\x5d\x33\xad\x43\xb2\xdb\xd5\x0c\xea\xf7\x54\x20\xa4\xef\x2e\x0e\x71\xf8\x3c\x8a\xda\x7f\x51\x14\x79\xc3\xe5\x15\x37\xab\x3a\x05\x6b\xe6\x06\xfd\x88\x23\x4e\xc3\x2e\xc2\x40\x1c\xad\x0f\x5f\xf4\x1f\x5b\x33\x08\xa5\xf8\x77\x0d\x08\xc7\x57\xa9\x54\x9c\xc5\x84\xa9\x7e\x67\x79\xc0\x5f\xc8\x96\x6d\xf4\x97\x5d\xb1\x6a\x53\xc0\xd6\xc0\xc2\xaa\xd1\x14\x11\xcf\xc4\x55\xa9\xe8\xf4\x13\x39\x10\x0f\xb2\xde\xb8\x1f\x38\xec\x07\xae\xfa\x6a\x86\x0a\xa8\xf6\x3c\xbb\xa6\x13\x5c\xd2\x94\xa6\xc2\xed\x15\xe6\xb8\x51\xb3\xe0\xd2\xe4\x29\x7c\xfc\x25\xa0\xc7\x63\x49\xbf\x1a\x92\x22\xf7\x61\xeb\x82\x68\xb4\x95\x89\x0b\xbe\x4c\xb9\xeb\x81\xeb\x8b\xe3\x77\xf8\xbf\x62\x35\xaa\x47\x74\xf8\x65\xa4\x0f\xaf\xba\x1c\x5d\xfa\xc9\x3f\xb9\x4a\x01\x57\xf7\xf4\x79\xb5\x7d\x78\xd4\xcc\xc2\x0a\xdb\x29\x2d\x88\x9b\x54\x0f\xe2\x6f\x85\x12\x06\x2e\x14\x7a\xa6\xc5\xbf\xf3\xbe\x5f\x3b\x4f\xee\xc3\x60\x0b\x1a\x3e\x4f\x55\xee\x46\xc8\x5a\x47\xf8\xdf\x20\x3a\x78\x0f\x1c\x9a\x52\xbc\xb5\xfb\x38\x99\xa0\x34\x24\xed\xca\x71\xb2\x56\x60\x32\x55\x34\x49\x4c\x45\xfb\xca\xfe\x15\x9c\x04\xf4\xe0\x09\xac\x42\xeb\x0a\x6e\xfa\x01\xd9\x2d\xfb\xa8\x49\x09\x3e\xbb\xa2\x1a\x83\x0c\xfa\x10\x25\x4d\x93\x36\x69\x9a\xcc\xae\xd6\xa6\x04\xd3\x15\xc9\xec\xca\x66\x13\x7b\xff\x60\xe9\xe1\xfb\x11\xe4\x0e\x83\x6d\xe6\x35\x43\x19\x8d\xe1\x81\x69\x80\x94\x12\x05\x69\x0b\xa2\x7b\x2e\x87\x7c\xe4\x0f\x8c\x57\x22\x95\x2e\xcb\x16\x27\x5b\xe9\xa3\x73\x07\xa1\xe5\x32\xfc\x59\x51\x61\xd0\x86\x50\x61\x3a\xe0\xc0\x20\x7c\x05\x30\xaf\xf4\x76\x93\x01\x70\x6b\x93\x3f\xff\xc0\xbf\x5e\xc7\x3e\x50\xe3\x81\x43\x2b\x4a\xaa\x83\xa3\xd3\xf3\x8f\x5a\x1d\x89\xf3\xea\xcb\xbd\xd3\x1f\xcf\x12\x84\xc7\xd5\xe7\xd6\xc4\x94\x20\x3c\xad\xbe\x3b\x3a\xbb\x38\x38\x3a\x7b\xbb\x77\xbe\xff\xea\xe8\xf8\x47\x1d\x84\x93\x20\x3c\xab\x96\x7b\xb5\x77\x76\xf1\xe2\xf5\xc9\xfe\x4f\x09\xc2\xf3\xea\xcb\x17\x27\xef\x8e\x0f\xd4\x67\x13\x4a\x66\xdd\xfd\x42\xd0\xf7\x8c\xde\x5a\xbd\xe8\xac\xbb\x3f\x63\xf9\x44\x3d\x2a\xcf\xb4\x4b\x2c\x9e\x75\xd5\xcf\x33\x99\x49\xea\x1f\xc1\x96\x03\xb7\x0c\xfb\x6c\xd1\xd5\xee\xef\x7b\x30\x8d\xbe\x64\xf5\xb7\xaa\xec\x0d\xfb\xcc\x38\x4e\xd3\x53\x72\xaf\xae\x71\x6b\x33\xd8\xea\xe1\x3f\xa8\x97\x9d\xd2\x91\x4d\x5b\x36\x5c\xd0\x56\x25\xad\x2e\x30\x36\xfa\x98\xaf\x82\xb4\x60\xc3\xb9\x7a\x08\x5e\x02\x82\x6a\x93\x64\x4d\x8d\xbb\xa0\xa3\x46\x2e\x1d\x7a\x07\x5a\xdd\xe1\xb8\xeb\xe2\x9c\x0e\x8e\x0e\x2e\xf6\x5f\xed\x1d\xff\x78\x38\xaa\x21\x2a\xd9\x3e\x87\xd2\xd4\x30\xa7\x23\xe7\x23\xb4\x05\x69\xcb\x87\x74\xd4\xb7\xe9\xe9\x9a\xa1\x42\x3f\x8c\x3a\x1d\xf5\x6f\x85\x64\x62\x0a\xb9\x9f\x4f\xd5\x93\x3d\x29\x1b\xe1\xd8\x9d\xc3\x92\x22\x26\xa7\x5d\x41\xb3\xc9\xc1\xc9\x9b\x5a\x69\x47\x3c\x67\xaa\xb0\x5a\xbc\xc3\x1c\x0c\x01\xc6\x49\x14\x0b\x12\x20\x7c\xbf\x3b\x3d\x22\x84\xc8\xee\xd9\xfb\x1f\x2f\x9c\xab\x8e\x76\xcc\x95\x1e\x97\xce\x73\xc0\xc0\xff\x17\x84\x81\x47\x37\xa4\xb8\xf1\xd9\x25\x1c\x95\x58\x2e\x93\x4c\x4a\xc8\xe5\x5e\x0c\xb8\x1d\x13\xb8\x23\xa7\x19\xea\xf3\x61\x36\x5a\xe1\x53\x84\x36\x26\xeb\xd2\x8a\x58\xd7\x00\x6f\xb4\x58\xe1\x09\xed\x0a\x5a\xcc\x29\xd7\x4e\x4f\xe1\x66\x34\xfa\x74\xb5\x27\x3d\x03\xf2\x36\x13\xd9\x75\xd9\x1f\x8e\x8c\x71\xee\x9a\x5a\xfb\xc9\xff\xfe\x6d\xfe\xac\x38\xd9\x2e\x1e\x65\x3f\xf9\x0b\x8d\x22\xf4\x7a\x2e\xef\x9c\x55\xe4\x8e\x92\x09\x75\x36\x8e\x3c\xbb\x2b\x16\xb2\x7f\x4d\xf1\xd8\x9d\xd6\xfe\xd0\xc6\xef\x1b\x6b\x74\x32\xc2\x32\xbb\xd2\x2d\x32\x3e\x5f\xc8\xc4\x3b\x7b\xbf\x60\x7c\xc2\xf8\x95\xfa\x48\xad\x4f\x82\x13\xf8\x8a\x4e\x12\x9c\x30\x3e\xa1\x92\x8a\x6b\xc6\x33\xa9\xde\x4c\x58\xa9\x4e\x9b\x7a\x25\xb3\x4b\x13\xbe\x92\xa8\x8d\x91\xe0\x24\x5b\xc8\x62\x5a\x8c\x17\x65\x82\x13\x87\x42\x87\x93\x69\x21\xae\x55\xfb\x77\x73\xda\x4f\x5c\x87\xb0\xad\xaa\xbf\xb5\x8b\xa3\x66\xd4\x83\x09\x9b\x1c\xf1\x92\x0a\x69\xb6\xe1\xd3\x88\x45\xe5\x98\x24\x54\x57\x92\xa0\x6e\xd4\x10\xd9\xda\xaa\x96\x8c\xc7\x8b\x56\x78\x5c\x73\x8e\x8c\x15\x70\xc1\x64\x41\xbf\x4c\x53\x5d\xf3\x14\x8c\x40\x77\x4f\xda\xb0\xdf\xb8\x29\xd2\x91\x44\x37\x8d\x79\x03\xe0\xd5\x55\xb8\x11\x66\xe0\x86\x60\x29\xf0\xfa\x6d\x21\xe9\x67\xb9\x33\x65\x34\x9f\x3c\x72\x63\xe8\x40\x00\xb3\xc6\x36\xa9\xaa\xf9\x59\x66\x37\x7a\x6b\x08\xb3\xd8\x99\x31\x8d\xc3\x0f\xca\xc7\x66\x57\xa9\x5f\xd7\xe0\xb7\x6b\x7e\xf0\xc2\x1a\x1e\xcc\x03\x09\x57\x4b\x82\x93\x19\x65\x57\x33\x09\xfb\x6f\xbe\x00\xd8\x8c\x04\x27\x79\x06\xbe\x43\x39\x2b\xd5\x1b\x53\xe9\x75\xa6\x36\xe0\x35\x53\xcd\x5d\x2f\x72\xc9\xe6\xe0\x97\x64\x76\xe4\x3c\x93\x92\x0a\xf5\xae\x64\x5f\xd4\x83\x52\xd2\x79\x62\xf1\x60\x70\x72\xcb\x26\x72\x96\x8c\xb0\x06\x04\x4a\x12\xbd\x49\x61\x85\x0d\x73\x37\x41\xe9\x7d\x23\xd7\x94\xa8\x39\x4c\x56\xb8\x0c\x5f\x06\x8e\xab\xfa\x7d\x1d\x66\x1c\xae\x06\xba\xc9\xf8\xe6\x8d\xc3\xc4\xbb\xa1\x06\x2a\x7a\x6b\x6e\x50\x38\xa2\x37\x84\x62\x6a\x62\xd1\x2c\x4a\x8b\xd9\x0b\xe6\x74\xa4\x66\xe9\xd0\x86\x14\x77\xf7\x12\xc8\x2c\xa1\x26\x69\x3e\xf7\x56\x32\x5d\x9b\x79\x4f\x08\x5d\x41\x8c\x6c\xca\x89\x44\x18\x9c\x2e\xd4\x2c\xe9\x10\x25\x33\x73\xfa\xc7\x35\xb3\x7f\x64\x9f\x35\x38\x28\xda\xb8\x7a\xda\xa6\x0e\x76\x9c\xde\xd6\x97\x6b\xf6\x6e\xdb\x8e\xcd\x04\xcd\x92\x11\xf6\x5b\xdb\x6d\x5d\xf5\x1a\xde\x36\xee\x5e\x51\xdc\x6a\x0f\x32\x70\x50\x33\x7b\xa3\xa4\xb9\x46\xaa\x3d\xe4\x93\xf0\xe7\x99\xcc\x44\xc3\x4e\xbf\x15\xd9\xdc\x6f\x42\xbd\xd9\xf5\x36\x1a\x61\x55\xbf\x89\xec\x2a\xf2\xd2\xce\xd0\xe5\x1f\x98\x21\x18\x83\x9e\xa0\x0b\x77\xeb\x7c\x23\xcf\xff\xf3\xcd\x6f\xfb\xdf\x35\xde\x3a\x49\xc7\x7b\x66\x54\xec\xf7\xdf\xe1\x84\x4d\xc1\x68\xff\x2d\x1e\x26\x39\xe3\x9f\xce\x99\xcc\x69\x62\xad\xf7\xf8\xbe\xc1\xe0\xbf\x8b\xc3\x92\xde\xbe\x3f\x57\x97\x22\x85\x24\xcd\xea\x66\xac\x7f\xfb\x1d\xde\x6d\x28\xf7\x57\xba\x06\xa8\x7e\xed\xc8\xc2\xdd\x83\xb7\x4d\xf7\xe0\x45\xb0\x2b\x32\xb5\xe8\x3a\x95\xf6\xce\xed\x8c\xf2\x44\x2f\x92\x54\x63\x33\x30\x3f\x34\x37\xcf\xcc\x6d\x66\x7f\x29\x42\xa4\xff\xd6\x2e\x69\x3a\xe2\x26\xd1\x3f\x12\x9c\x17\x99\xda\x5c\xe6\xa9\xf9\xe5\xef\x34\xf3\xdc\xdf\x96\x26\x4a\x4d\x5d\x6d\x4d\x1b\x74\x26\xe8\x54\xd1\x34\x98\x74\x75\x79\xe6\xf1\x05\x6b\x08\xe3\xc8\xd3\xf2\x88\x36\xeb\x3e\xf9\x6e\x44\xd7\xb4\xc8\xb8\x66\x6c\x18\xbf\x3a\xe2\xd5\x27\x27\x0b\x55\x2d\x64\xd4\xd6\x73\x36\xce\xd9\xf8\x53\xf2\x74\x0e\xdd\xe4\x02\xaf\x5d\xbd\xb6\x66\x8b\x53\xa9\xa9\xa4\xc3\x35\xbe\x60\xfc\xa6\xf8\xa4\x98\xd3\x0b\xe3\xb6\xa9\xc8\xef\xb5\x41\x7b\x47\x69\xe2\xbc\x39\x91\xe7\x18\x1e\x45\xa0\xb7\x76\x9b\x88\x73\xa4\xcd\x67\xe5\x81\xa9\x92\x48\xac\x31\x99\x2a\xdd\x8f\x16\x34\x01\x40\x9b\x0b\x56\xee\xc1\x8c\xf7\x2b\x44\xbd\xfa\xad\x5d\x8e\x4a\xe6\x0a\xa9\x3d\xda\xa3\xa2\xd1\x26\x05\x60\xcb\xe4\xb2\x28\x72\x9a\xf1\x10\x8b\xd7\x21\xa8\x6a\x15\xd6\xd6\x16\xdf\xe0\x24\xe5\x84\x2f\x97\xd5\x0a\x7f\x5f\x64\x39\x9b\x32\x3a\x39\x2d\x16\x92\xea\xf9\x77\x40\xef\x9b\x0e\x1a\xb8\xfa\xd9\x85\x9f\xec\xa2\xf6\x12\x82\x11\xca\x04\xe1\xac\xf6\xca\x84\xb7\x4e\x7e\x5e\x50\x71\xa7\xd9\xe7\x24\xc4\x9d\xe7\x21\xa0\x29\x9b\xa6\xac\x6b\x27\xf1\x65\x21\xa0\x8b\x69\x81\x33\xcc\x87\x72\x84\xa9\x4f\x39\xba\xd5\xdb\xf0\x6b\xa9\xb7\x79\x75\xed\x93\xe0\x78\x26\x38\xb9\xb0\x87\xa1\xbe\x1d\xb6\x7c\xec\x86\x2d\x85\xea\x0b\x1e\x56\x87\xd4\x6a\xb7\x34\x6b\x67\xca\xa6\xea\x07\xc1\x59\xdd\x1a\x52\x8a\xb2\x3b\xd7\x53\x80\x6b\x3a\xd0\xb6\x09\x8f\xab\xb1\xaa\x93\xad\x2d\x9b\xda\xc4\x6d\x3a\x1d\xbd\x76\xcb\xf2\xfc\x05\xdd\x7b\xa0\x6b\x9a\x6a\x98\x9e\x3d\xba\x2b\x09\xd2\x41\x19\xde\x48\x11\xd6\x03\x9b\x33\x7a\x1b\xf7\x5c\x89\xb4\xa8\x72\xc8\x4c\xcf\xa5\xea\x79\x85\x1c\xb5\x2c\x27\xb0\x66\x7e\x88\x4d\xcb\xd9\xd3\x51\xc2\xd1\x10\xa2\x6f\x20\x0d\x55\x75\x8c\x7e\xe1\x2d\x5f\x11\xf6\x67\x87\xf1\xa4\xda\xc7\x93\x85\xfc\xe3\x9d\xd4\x29\x76\xd7\x77\x73\xb9\x6c\xef\x66\x5b\x3f\x8b\x85\x4c\x80\x14\x01\xf1\xac\x12\xa2\x2d\x90\xe3\x59\x79\xc6\x14\xf7\xb2\xaf\x08\x3a\x0a\x12\xe8\xf4\x36\x9c\x63\x53\xd4\xea\x5c\x00\xb1\x3e\x30\xec\x04\x6a\xa0\x53\xe6\x1e\xd2\xf9\xb9\x77\x0d\x62\x0a\xef\x74\x92\x8b\x92\xe6\xd3\x64\x8b\x28\x5a\x44\xbb\x71\x4d\x29\x42\x18\x80\x53\xaa\xb5\x5d\x2e\x2e\x2f\x73\x5a\x26\x10\x91\x53\xca\x62\xfe\x56\x14\xf3\xec\x2a\xd3\x73\x88\xab\x34\xda\x93\xd1\xc7\x11\x5b\x36\xad\x74\x2d\xa6\xc3\xa2\xd6\x9f\x26\xa2\x89\xeb\x44\xd2\xd1\xc1\x3a\x89\xfc\xdd\xd3\x3f\xad\xf8\x6d\x23\x97\xc0\x0d\x24\x08\x97\xe4\x3e\xf8\xa6\x5f\x60\x61\x9b\xee\x8b\x20\xf2\x6e\x02\x80\xb3\x57\x54\x09\xc5\x26\x40\x03\x29\xa6\xdf\x78\xcc\x17\xbc\x6b\x78\xa3\x04\xdb\x7b\xf5\x8a\x72\x2a\x32\x49\xcf\xdd\xc6\x49\x4b\x1b\x00\x01\x0b\x02\x91\x5a\xd5\x32\xb5\x84\xde\xd8\xe5\x51\x6e\xa7\x17\x35\x21\x07\xdd\xd3\xae\xdf\xb0\xa4\x08\x7e\x9c\x17\xa9\xad\x77\xb5\xc2\xe1\xd8\x81\xd9\xaa\x2f\x41\xed\xf0\xe9\x3d\xe8\x97\xa8\x8d\x88\x3e\x4c\xf1\x0c\x95\x56\xf4\xce\x7a\x2f\x62\x00\xf8\xdd\x09\x74\xcc\x9d\x0e\xef\xb2\x32\xb8\xd8\x3a\x1d\xb9\xb3\x83\x35\x96\xf5\x8c\x8e\x06\xe0\x0e\xd6\xdf\x05\x34\xeb\xc1\x43\xf4\x3d\xd8\x59\xfd\xe6\xc3\x15\x94\x58\x21\xdc\x70\xb1\xd6\x26\x24\x98\xc4\x86\x41\xdf\xaf\x70\xfd\xa8\xff\x1e\xdd\xd3\xa0\xab\x74\x69\xd3\x6d\x7a\x2d\xb3\x81\x5d\x40\x9d\x50\x32\x2b\x47\xbc\x1a\x50\x27\xd4\x2d\x0a\xe9\xef\x38\x24\xcd\xb3\xf5\xac\x10\x56\x6c\x6d\xad\xbb\xe6\xf8\x34\x1e\xb7\xb0\xfb\x8a\x09\xca\x92\x06\xb2\x61\xd8\xfb\x04\xb5\xad\x6b\xe3\x39\xae\x4f\x82\x3d\xc7\x8f\x21\x27\x2d\xef\x5f\x29\xbe\xdd\x80\x3f\xad\xbb\x50\x9b\x68\x4d\x9d\x52\x78\x4b\x94\x3d\x98\xef\x4e\x5f\x9b\xa4\x44\x8a\xf3\x34\x8d\xd6\x2f\x7c\x3d\x92\x3d\x41\x5f\x17\xd9\x04\xb8\xfe\x07\xe6\xf6\xf1\xf3\xb6\x61\xee\x93\x78\x64\xd5\x06\x91\x4e\xb3\xea\x61\xfe\x5b\xe6\x2b\xe0\xab\x2a\x55\xb4\x6e\x93\x6a\xaf\xd7\x2d\xa4\xda\xaa\x94\xf4\x9e\x53\x6f\x95\xa2\x9a\xe1\xd4\xbd\x93\x43\x3a\xf2\x97\x80\xbd\x0e\x55\x6f\x6c\xf4\x6f\x1d\x54\xc1\x26\x14\xb7\x80\xe0\x98\x81\x55\x41\xa3\x4a\x45\x19\xc5\x75\xf6\x03\x20\x20\xdb\xbb\x23\x0c\x79\x63\x5c\xb6\x03\xb6\xc2\xc1\x9e\xe9\x27\xff\x4b\x09\x8b\x93\x53\x3a\xa6\xec\x86\xee\x29\xa6\xb1\x1e\x20\x6b\xd3\x6f\xb7\x12\xae\x0d\xe3\x86\xda\x2d\x73\x36\xa6\x29\x6a\xdb\x89\x56\x8a\xf9\xa0\xc5\x8b\xd0\xca\x00\x97\x45\xa9\x98\x62\x2f\x33\x1a\xb8\x75\x45\xdd\x4c\xb6\x01\x28\xe0\xd5\x02\x58\x76\xcb\x19\x9b\xc2\xcd\xee\xdf\xd7\x08\xb3\x1c\xf6\x46\xc8\xe6\x6b\x19\x4a\x37\x85\xa3\x0d\x4a\x44\xa7\x23\x62\xba\x3a\x90\x1a\xc8\xdd\xc0\x73\x97\xfd\xfb\xd5\x2a\xa8\x3d\xa2\x72\x60\x88\xb5\x46\xc3\x81\x2f\x64\x37\x8d\xbd\x02\xcd\xa2\xa6\x12\x99\x18\xea\xa8\xd4\x10\x90\xb5\x36\x6e\x1f\xa3\xa7\x31\x67\x59\xeb\x20\x42\xe3\xc2\x6d\xc5\xb8\x50\x33\x23\xd8\xd5\x32\xc6\x84\xc3\xaa\xa9\xee\x70\x6f\xff\xd5\xc5\xd1\x71\x82\xf0\x67\xfa\x40\x50\x80\x36\x50\x1b\x3f\x4f\x99\x5d\x11\xaa\x1d\xbf\xd5\x62\x1d\xd2\x51\x4b\x54\xc0\x5a\x8f\xb6\x8a\x91\xfa\x11\x7e\xf4\x0d\x46\xea\x38\x8e\xe0\x8c\x46\xa2\x76\x93\x43\xf0\x1a\xc3\x6d\xa7\x43\xd5\x58\x56\xd6\xf5\xf8\x18\x6a\x5b\x2e\x93\xbf\x43\x16\x12\x30\xe6\xfe\xe6\x9e\xb1\x09\xe5\x92\xc9\xbb\x44\x5b\x67\x4f\x5a\x67\xd0\x65\x01\x31\x18\xf9\x66\x12\x3f\xd1\xbb\x97\x85\xb0\x09\x80\xed\xda\x35\x23\xe8\xb3\xf2\xf0\x7a\x2e\xef\xea\x33\x59\x4d\xb7\x70\x4d\xaf\x8b\x97\x45\xa3\x39\xae\x9a\x39\x94\x7e\xae\xe7\x89\x08\xf3\x3b\x58\x37\x19\xdd\x4f\xeb\x71\x6a\xfb\x09\x2c\xee\x0f\x41\x6e\x95\x45\x9e\x6f\x04\xd9\xf0\x60\x59\x5f\x16\x22\xe5\xc8\xe6\x79\x30\x7d\x53\x4f\x0a\x22\x53\xc5\x10\xf2\x38\xae\xc8\x56\xbe\xbd\xad\xbd\x06\x0a\xa3\x1d\x17\x58\x7d\xdb\x67\x26\x6e\x04\xef\xad\x73\xb3\xb1\xf9\xb5\x8a\xa7\x7b\x2a\xaa\x6f\x7d\x22\xac\x6e\x06\xa8\x81\x12\x17\x6b\x9d\x32\xa6\xa2\xb8\x6e\x4c\xc8\x68\x09\xb7\xad\x50\xe7\x21\x7b\x4b\xb5\x5b\xd8\x8c\x95\x80\xf9\xa2\x7d\xae\x55\x25\x2f\x35\xb0\x00\xa0\xc3\x37\xd5\x37\x1c\x79\xe7\xa3\x35\xe0\x23\x06\x3b\x00\x84\x75\x98\x55\x55\x77\xca\x6b\x1e\xf3\x76\x85\x5a\x0f\x1a\x0c\x7f\x48\x47\xe0\x11\x73\x42\x11\xfe\xf4\x3f\x6e\xda\x1f\x35\x1b\x70\xa5\x79\xc8\x1d\x3f\x37\xd6\xcf\x58\xcd\xcd\x9b\xf5\x73\x83\x0b\x0b\x54\xf4\xe4\xd9\x51\xdf\xba\xd9\xc9\x20\xd5\x22\x91\x38\x33\xac\x1b\xe1\x38\x7b\x70\x9e\x8e\xf8\x84\x7e\x6e\xdb\x57\x3e\x43\x02\x64\x71\xa4\xea\xbc\x0e\x47\xe0\xf3\x56\xcb\x4d\x54\xe8\x74\x3a\x0e\x10\xcd\xa9\x62\xc4\x90\x8f\x7c\x2f\x75\xde\xea\x70\xca\xb5\xf4\xf7\xf8\xbd\xee\x94\xbb\x58\xa8\xce\x98\x1e\xf5\x70\x46\x1c\xf7\xd4\x78\x0a\x54\x0d\x69\x46\xb2\xe5\xd2\xea\xfd\x7e\x20\xcf\x90\xba\xf0\xa1\xcb\x12\x61\x9b\x49\x06\xe1\x62\x7b\x7b\x85\xb0\xeb\x6b\x36\xa8\xf5\x16\xfa\xbf\x07\x2e\x7e\x4f\x3f\x3e\x7a\x7d\xf4\xf9\x79\x1c\x85\xb6\xe4\xb6\x0c\x0f\xdd\xf9\x9a\x7b\x05\x73\x7b\x3b\x9b\x50\x7e\x7b\xb7\x98\x24\x5c\x32\xba\x69\x78\xfb\x4d\xd3\x7e\x98\x86\x67\xc0\x2c\xe8\x16\x64\x21\x46\xa9\x71\xc8\xa0\x9f\x25\x20\xa2\x99\x1b\xdc\xbb\x28\x4e\x0a\x4e\xd5\x7c\xd6\x41\x50\x9f\x11\x42\x6c\xea\x1e\x3f\xd9\xea\x74\x98\xa9\xde\xa7\xe6\x57\x35\x75\xe6\x23\x6f\xbf\x35\x77\x9a\x9d\x21\x7b\xab\x99\x4c\x55\x95\x5b\xcd\x02\xbf\xe9\x19\x83\x2c\x4f\x30\x9e\xda\x2d\xc7\x2a\xb7\x1c\xc4\xed\x14\xf1\x3d\x07\xcf\x32\x22\x60\xfb\xb4\xdf\x74\xe1\x82\x51\x3b\xaf\x70\xfd\x65\xe6\xfa\x63\xfa\xfa\x2b\xec\xf5\xb7\xff\xdf\xe8\x83\xf9\xb8\x03\x60\xde\x3e\xb4\xf3\x43\xab\x08\x6c\xf8\x73\x8a\xf0\xe9\xff\x2b\xa3\x1b\xee\x3e\xfe\x68\xdb\x4f\x7a\x23\x37\xce\xb7\x94\xdc\x9b\x9d\xdd\x60\x41\xea\xad\xb0\xda\x0a\x6d\x48\x33\x2b\x7c\xfc\x30\xbf\x29\xe8\x34\x60\x36\xdf\x66\x72\x66\x29\x02\x74\xe6\xf1\x41\x18\x8e\xe9\xaf\x38\x79\x7b\x19\xc0\xd5\x38\x42\x8d\xfc\x2b\x50\x8f\xba\x63\xb6\x3f\x8d\x53\x7b\x14\x6d\x45\xe0\x8a\xed\xbc\xea\x49\x14\x84\xe0\xb2\x95\x56\x23\x33\x2c\x9e\xd2\xa2\x7b\x01\xa0\xc4\x5c\x9a\xf2\x08\xf3\x38\xa8\x81\xe9\xac\x4a\x84\x90\x94\x12\x81\x96\x4b\x2b\x0e\x6c\x05\xe2\x80\xf7\xd9\xf4\x4f\xeb\xa4\x4d\x7d\x6d\xe2\x92\x01\x27\xd9\x04\x27\x0b\x34\x78\x43\xe3\xeb\x37\x15\x21\x41\x4e\xb7\x7a\x08\xf5\xf3\xee\xab\xbd\xb3\x8b\xe3\xbd\xf3\xa3\xf7\x87\x17\x67\x1f\xdf\xbc\x38\x79\xdd\xe9\x1c\x50\xf5\xf9\xa9\xfe\xbc\xf2\x15\x42\xfd\x23\x1a\xd4\x1e\x5c\xa5\xf5\x92\x8f\xe8\x41\x25\x5f\x9b\x9a\x71\xe7\x81\xda\xb2\x9b\x15\xad\xfe\x87\x8d\xcb\xac\x54\xa0\xe7\xf7\x7d\x54\x4d\xe5\xc8\xdb\x42\xa9\x6c\xac\x41\x1d\xa3\xc7\xf6\x40\x95\x6d\xec\xc0\x9b\xb0\x92\xf6\xf6\x1b\xbe\x37\xb7\x65\xed\x1a\xa9\xb9\x0c\xf7\x1a\x5d\x86\x7b\xa3\x4e\x27\xfc\x15\x88\x51\xea\x04\x6e\x94\xb7\x4c\x8e\x15\x27\x72\x3f\xce\x4a\xaa\x45\xcb\xbe\x3d\x32\x83\x97\xb4\xff\x8e\xa6\x5f\x28\xda\xd0\x6f\xb5\x15\xde\xbe\x7f\x4d\xed\x63\x2b\x7b\xda\x37\xef\x68\xfa\x8a\xa2\x0d\xe3\x8f\x11\x3c\x7d\x41\x53\x09\xae\x9a\x70\x73\xfc\xf6\x3f\x81\x68\x78\x92\x21\x2b\x24\x23\x08\x06\xd7\x77\xf7\xc3\x11\x52\x1c\x27\xc3\x51\x82\x1c\x35\xe0\x0d\x94\xc0\x99\xbf\xdf\xd2\x50\xc4\xb5\xa7\xcc\x5e\xec\x31\x55\xe0\x68\xb0\x47\xad\xec\x25\x40\xe5\x5e\xa5\x10\x1c\x0d\x3e\x85\x45\xda\x48\x01\x47\x83\xfd\xb0\xdc\x11\x0d\x6a\x0f\x8f\x3f\xbc\x7d\x4b\xff\xbf\x13\xfd\xb8\x13\xdd\x74\x2e\xa9\x3d\x97\x7f\xc5\xc9\xa3\xee\xe4\x79\x15\xd5\x11\x5d\x8f\xf1\x6f\x85\x1a\x1f\xb9\x70\xf0\xc0\x17\x35\x16\xdd\x7f\xfa\xda\x89\x09\xa6\x5f\x5a\xd7\x98\xf2\x00\x5d\xe3\x25\xad\x30\x62\xee\xcd\x97\xf8\xcd\x2b\xb0\xa3\xbb\xb7\xaf\xa0\x5b\x96\x9c\x99\xbe\x98\xd9\x33\xe1\xc3\x8e\xae\xe9\xc9\xe3\x0b\xb5\xf9\xdd\x53\xd3\x97\xda\xe4\xc1\xa5\x7e\xb5\x60\x13\x13\x70\xb8\xf2\x6d\xbe\x08\xa6\xc2\x6b\xf7\x64\x75\x78\x81\x12\x5a\x3b\xaa\xbb\x0a\xde\xd1\x00\x10\x71\x55\xb3\x1e\x46\x56\x47\x6a\x7e\xe2\x8c\xc8\x61\x51\x07\x62\xc8\x06\x00\xe2\x48\x7a\xb8\x40\x7d\xfd\xe7\xf6\x76\x86\x8b\xed\xe4\x92\x3e\xfb\xdb\xdf\xfe\xf6\xbf\xff\xb6\x73\x79\x79\x49\x77\xbe\xfb\x8f\x67\xbd\x9d\xff\x33\x1d\x5f\xee\x3c\xdb\xfd\x96\x4e\xbf\xfb\xf6\xdb\xf1\x38\x7b\x96\x6c\x67\x68\x05\x9a\xc3\xdf\x1f\xd2\xbd\x96\x06\x3e\xac\x89\x48\xae\x51\x1f\x27\xdb\xc1\xd7\xd5\x4c\xd1\xaf\xce\xdf\xbc\x6e\x53\xcc\xda\x3a\x53\x0b\x54\xf2\x81\x92\xfb\xa4\x93\xf4\x93\x4e\x76\x3d\x7f\x9e\xe0\xe4\x7b\xf5\x77\x2e\xd5\x9f\x3f\xa8\x3f\xaf\xd4\x9f\x5f\x27\x5f\xf7\x93\xce\xef\x8b\x02\x9e\x7f\xad\x9e\xff\xaf\xcf\xcf\xfe\xa6\x7e\xfc\x97\xfe\xf1\x1f\x3d\xf5\x83\xe8\x1f\xdf\x1e\x3c\x4f\x56\xf8\x3d\x25\xdf\x0c\x3b\xdf\xff\x90\x7c\xfd\x5f\x64\xf4\x0d\xfe\x18\xfd\xbc\xf2\xc7\xe6\xc7\x70\xe5\x3f\x50\x25\x21\xbb\x77\x3f\xd1\x8a\x82\x97\x10\x3a\xa0\x24\x49\xfa\x76\x23\x6e\xc5\x70\xd4\x49\xb2\x4d\x75\x16\xdd\xdf\x69\x84\x34\xf3\x55\xb5\xa6\x76\x55\x71\xe3\xd9\xd5\xf3\x0a\xab\xfa\xb3\x33\xa2\xfc\x42\x6b\xe0\xd2\xbf\x86\xed\xfc\x42\x97\xcb\xf4\x17\xda\xea\x60\x9b\xa9\xeb\xe9\x17\xda\x9d\xe9\xab\xf9\x17\xb3\x90\xe3\x22\xf7\x1d\xff\x47\xb0\xaf\x41\x48\x35\x7b\xa0\x09\x8e\x5b\x92\x9f\x69\x77\x9e\x09\x88\x88\x72\x75\xb9\x1b\x50\x0e\x92\x7e\xd2\x97\x30\x88\x8a\x1a\xfe\xaf\x88\x7a\x8b\xc3\xc1\x19\x07\x07\x00\xed\x49\x40\xb6\x76\x31\xef\x02\x82\x14\x91\xc3\xac\x7b\xf2\xe1\xf8\xf0\x74\xa4\x38\xf7\x32\x40\xe8\x23\xa6\x88\x49\x15\x92\x26\x21\xe0\xa3\x46\xdb\x42\xf1\x17\x98\x77\x27\x1a\xf5\x99\x4e\x5c\xf8\x45\x49\x86\x71\x42\x90\x28\xe3\x06\x9b\xa6\xd6\x1f\x1a\x66\xec\x57\x33\x02\x8a\x93\x69\x51\x5c\x66\xa2\x7f\x99\x7d\x51\xeb\x62\x7f\x26\x60\x84\xf7\x4b\xf3\xb2\x10\xef\x4e\x5f\x93\x5f\xa9\x4e\x23\xdf\x94\xa3\xe5\xdd\xe9\x6b\xf4\x33\x25\xef\x4e\x5f\xe3\xda\x77\xff\xd0\xdf\x81\x4b\xcd\x5d\xf7\xe8\xec\xe2\xf8\xe4\xe0\xb0\x9e\xb1\x7a\xbf\x58\xe4\x93\x4d\x5e\xc8\xcd\x29\xe3\x93\x4d\xf0\x69\x57\xf5\x6e\xaa\xe5\x65\xfc\x6a\xf3\x9a\x8e\x67\x19\x67\xe5\xf5\xe6\xb4\x10\xf0\xe6\x2c\xe3\x4c\x1a\xfc\xb9\x04\x6d\xfc\x0c\x36\xa1\xbb\xae\x09\x9a\x40\x69\xb2\x10\x79\x82\x9a\x7a\xb4\x5a\xa5\xfc\x21\x74\x9b\xf6\x10\x4d\xaf\x7d\xad\x28\xd2\x2a\xed\x34\x5b\x2e\xc2\x0f\xf4\xba\x7b\x3c\xc4\x26\x7d\x02\xb8\x21\x55\x0a\xa2\x54\xea\x9d\x83\xeb\xf0\x31\xb2\x68\x0a\x64\x6f\xec\x4c\x18\x96\x17\xd5\x11\xe2\x69\x36\xea\x38\x8c\x75\x2a\xfe\xca\xe2\x64\x9b\x04\x9b\x6f\x8a\x09\x9b\x32\x1a\xd4\x10\x68\xf9\xc2\x4d\xdd\xe9\xd0\x87\x6b\x09\x8f\x5d\x2d\x5a\xda\x7e\xf3\x4e\xb3\x57\x7f\xae\xe1\xb8\x92\xb5\xed\x4e\xd8\xc4\x80\xb0\xc7\xc8\x15\xf6\x90\x56\x23\x56\x2f\xe9\x15\xe3\xa4\xea\x10\x5c\xa1\x1c\xbd\xe8\x7e\x83\x4f\x82\x48\xdb\x5a\x98\xf8\x35\xab\x29\x0a\x9d\x32\xb0\x81\x56\xf8\xec\xe9\x2d\x84\xa4\xc1\xd7\x94\x0f\xe5\xc8\x0f\x09\xc2\x23\x68\xad\x13\x61\x1f\xa7\x8c\x67\x79\x7e\xd7\x38\xbc\xdd\x15\xe8\x8d\x64\x88\x20\x8a\xb0\x94\xeb\x93\x72\x4f\x3c\xdc\xab\xc1\x5d\x69\xe0\x20\xe6\x82\xce\x33\x41\xf7\xc4\x55\xd9\x94\xb1\x08\x22\x16\x69\xbc\x7c\xfb\xe1\x05\x55\x4d\x97\x1d\x95\xd4\x98\xa9\xaf\xc1\x3f\x7e\x6d\xc1\xfd\x1a\x7e\x5c\x93\x0c\xb0\xb6\x0a\xbd\x05\x1f\xd1\xd6\xbb\xa6\xba\x22\x26\x9d\x07\x89\x3e\x1d\x6e\x36\x04\x21\x6e\x27\xfd\x64\x9b\x76\x0b\x40\xd5\xd5\xfc\x9b\x90\xe4\x7e\x72\xc7\xb3\x6b\x36\xd6\x8d\x43\x14\x99\x7e\x70\x9e\x5d\xa9\x5f\xc1\x1c\xab\x9f\x9a\x80\xd8\x5f\xce\x2b\xff\x55\x51\x7c\x52\x0f\x4c\x20\x97\xfd\x69\x42\xb0\xb3\x3c\xa7\xa2\xbf\xd5\xb3\x55\x9f\x8d\x8b\x39\xe0\x7e\xea\xa9\xd1\xa5\x7b\xa6\xf4\x91\xc1\x3a\x80\x7c\x96\xac\xe5\x16\xe7\xff\x4c\x8d\xaa\x01\x5e\x59\x83\x35\x69\x7d\xfc\x98\x99\x4d\xf0\x9d\x23\x1c\x24\x7b\xc7\x64\xb3\xae\x28\x0a\x79\xe2\x0b\x40\x16\xed\xca\x33\x12\x55\xa1\x9d\x1d\x0a\xc2\x21\x31\x99\x28\xd4\xbc\x59\xdc\x7e\xc8\xb2\xec\x2a\x2f\x06\xb2\xfb\xee\xf8\xe0\xf0\xe5\xd1\x31\xa4\x7c\x7c\x79\x78\x7a\x78\xbc\x7f\xd8\xd7\xb1\xbb\x05\xc2\x70\x24\xd9\x17\xf0\x04\x9c\x74\x2f\x3c\x46\x35\x44\xea\xa0\x34\xd1\x81\xbc\xa6\xf5\x04\x73\xa0\x76\x31\xbe\x8b\x0e\x0e\xa9\x08\xa0\xb5\x9b\x5c\x67\x95\x80\xab\x1c\x5c\x67\x55\x23\x74\xd2\x4d\x2a\x60\x31\x57\x54\x56\x37\xb8\x63\x5d\x3c\xea\x6f\x37\x2b\x75\x29\xa7\x9c\xb8\x87\xb4\x68\xb4\x2f\x2d\x54\x67\x8a\xb0\x76\x03\x39\x07\xf8\x58\xd9\x0d\x7e\xad\x6a\x6d\xee\x87\x98\xd2\x75\x22\x21\x64\xed\x8b\x33\x9a\x4f\x9b\x15\xe1\x6a\x09\x6a\xc5\xcf\xb3\x06\x09\x66\x33\x56\x29\xc5\x1f\xb5\x12\x17\xb8\x4a\xec\xc2\xa5\xf5\xf9\x83\xbb\x47\xa7\x2f\x6f\x23\x77\x7c\x95\x4a\x89\x70\x21\xc1\xdf\x8a\x49\x9c\x35\xcd\xf7\xa3\x31\x04\x06\xe1\x8f\x7e\x21\x37\x8c\x5c\x96\x79\x90\xcd\x6b\x03\xa7\x2d\x57\x41\x5a\x0e\xa9\x28\x13\x44\xfe\xb7\xd1\xf9\xc0\x53\x16\xaa\xa1\x21\xbe\xb4\xae\xd9\x39\x0c\x59\x35\x9e\xc1\x0a\xd1\xae\x01\x66\x9a\x04\x31\x7a\xe1\x59\x56\x7e\x10\xd9\x7c\x4e\x27\x96\xba\x33\x53\x4d\x9e\x95\xe5\x29\x9d\x1a\xdc\xc8\x96\x47\xaa\xee\x08\x73\x12\x6c\xef\xbd\x3e\x40\x96\x38\x57\x9f\x86\x4b\x68\x52\x65\x08\x22\x1d\x8d\x1b\x83\xd5\xf8\x05\xe3\xdc\x90\x55\xf6\x24\xa5\x5d\xa9\xd3\x94\xa7\x49\x90\xf1\xe5\xd0\x46\xe2\xe2\xca\xfb\xfd\x9c\x66\x42\xef\x25\xc5\xd1\xcb\xa6\x3b\xde\xf9\x54\x44\x77\x89\x9d\xbe\xb0\xdb\x16\x42\xc5\x4d\x2d\xb2\xfe\xe4\x7e\xb2\x4b\x59\xbd\x70\x72\x19\x71\x8a\x74\x38\xa6\x23\x0d\x67\x11\x48\xa7\xe3\xa8\x90\x8e\xf7\x00\xb9\x03\x94\xce\xa9\xf3\x8c\xc3\xe0\x11\x6c\x76\x25\x1a\xe8\xba\x87\xbd\x11\xea\x67\x34\x85\xaa\x71\x58\xed\x54\x1a\xe7\x7d\x9f\xdf\xd4\x79\x1f\x62\x86\x0b\x42\x87\xbd\x11\xce\x08\x1d\xee\x8e\x70\x69\x97\xb5\x18\xec\xec\xf6\x0b\x88\x6a\xfe\x7c\x32\x4d\x4d\xfe\x34\xd0\xbb\xee\xec\x42\xc6\x4c\x55\xa5\x24\xd9\xb0\x1c\xe1\xad\x58\x37\x2a\xad\x6f\xeb\xf3\x94\x43\xef\xd1\x16\x21\x17\xdd\x93\x79\xd9\xfd\x91\xca\x4e\x87\xbb\x9f\x6f\xb2\xbb\x4b\xfa\xba\x18\x67\xf9\x72\x99\x32\x92\x56\xbc\xf9\xd0\x50\xf8\x1f\x58\x35\x45\x86\xfa\x43\x8d\x59\x8b\x93\x1d\xdd\x2f\x3c\x94\x98\x19\xe0\x60\xb4\xd2\xf7\xf6\x4c\x92\x7b\x10\x83\x1b\x92\x65\x50\x3f\xb0\xbe\xf3\x8e\xdd\x81\x79\x1d\x0c\x29\xa6\x78\xab\x37\xea\x0f\x69\xb7\x5c\x5c\x6a\x11\x5b\x2d\xbb\xda\x59\xfe\x81\xdc\xde\x45\x78\x6b\x77\xb4\xc2\x4c\x33\xe5\xfd\xfa\xd5\x07\x17\x15\xce\x88\x50\x33\x5c\x12\x01\x08\x23\xc3\x67\x10\x90\x9b\xb0\x89\x5a\xdc\x12\x45\x8a\x8d\x34\xf4\x86\xe7\x38\x43\x90\xbc\x93\x70\x1b\xfd\x7d\x34\xd1\xc0\x88\xed\x68\x22\x05\xd2\xb7\x2b\xeb\x96\x21\xce\x81\x6a\x0e\x17\x78\xab\x87\x7d\x90\xf7\x82\x64\x7e\x1e\xba\x09\xfa\x61\x67\x17\xe7\x64\x31\x18\x4b\xd5\xb4\x8d\xe9\xea\x26\x08\xf5\x73\x78\x84\x36\x92\x52\xde\xe5\x14\x3a\xde\xe9\xa4\x39\x10\xd0\x89\x4c\x73\x0c\x05\x12\x56\xbe\x67\xc0\x64\x24\x08\x21\x5c\xe9\x42\x89\x73\xbc\xb5\xab\xdb\x5f\xad\xf0\x5c\x92\x9f\x28\x38\x87\xce\xf3\xec\xae\xbf\xc9\x0b\x4e\x9f\x27\x08\x4f\xda\x95\x12\x7f\x0d\xc8\x92\x05\xe3\x11\x5d\xd7\xdd\x36\xf0\x47\x8b\x44\x67\x70\xae\xfe\x24\x08\xa4\x25\x6f\x91\x67\xa4\x8b\x43\xb3\xc8\x7e\xae\x53\xb6\xc4\x40\xf6\xe5\x20\xa5\x44\x6e\x27\x9b\x95\xd9\xc2\x5f\xd1\x54\xa2\x01\x68\xc8\xfa\x14\xf5\xe7\x0e\x11\x36\x53\x82\x5b\x00\x70\x74\x2d\xc9\x7d\xc3\x46\x85\x29\xe5\x95\xad\xa2\xd7\x18\xc3\x5c\x5c\x67\x73\x94\xe6\x6a\xee\xc3\xc5\xb5\xb7\xda\xfc\x4c\x15\x05\xdb\x01\xf2\x6b\x8b\xa3\x17\x0d\xb9\x27\x21\x66\x87\x0e\xe6\x3a\x0e\x76\xb5\xc2\x77\xb2\x81\x71\x34\xa7\x47\xe7\xd4\x20\xc2\xee\xc7\x7e\x82\xf0\x98\xe4\xea\x48\x4d\x49\xae\x88\xd6\x8c\xe4\xea\x50\x25\x6a\x5b\x8e\x07\xd5\x8d\x6f\x28\xc4\xba\x33\x33\x45\xee\x60\xf4\xd3\x4c\x1d\xc2\x71\xf5\x60\xa0\xc1\x38\x38\x10\xfd\xa1\x3a\xcf\x85\x39\x29\xe6\x78\x8c\x11\x5e\x58\xa5\xa0\xfd\x83\x10\x32\x05\x5f\x98\x1b\x99\x96\xb8\x18\x64\xc3\xcc\x53\xb4\xfe\x58\xfb\xc5\x5c\xa9\x77\x53\x3c\xab\x9d\x18\xdb\xf7\x85\x9b\x5b\xb4\xc2\x37\xff\xba\xf3\x31\xcf\xe4\xcc\x1d\x0d\x69\x70\xc9\x1a\x5e\xbb\xec\x46\x13\x30\x28\xea\xf8\xe7\x7f\xe6\x61\x81\xc8\x18\x38\x13\xe0\x6d\x93\xc9\x99\xde\x91\x71\x47\x96\xcb\xb4\xe1\xa9\x9a\x9b\xcb\x30\x21\x13\x45\x08\xf5\xe5\x72\xa9\x2b\x35\xba\x71\x89\xf4\xde\x6c\x39\x4e\x57\x0f\x6b\x4e\xff\x20\xff\xa8\x27\xaf\xfe\xf5\xb3\xc6\xaf\x9f\x85\x5f\x3f\x33\x5f\x3f\xdd\x47\x33\xf4\xcf\xb4\xeb\x5b\x74\x25\x00\x48\x12\x8e\x8b\xee\x34\xcb\xcb\x3b\xc8\xbe\xed\xb7\xc2\x7a\x07\xce\xc7\xc3\xf6\x71\x8f\x86\xa8\x5b\xb4\x9a\x1a\x68\x74\x23\x76\xb1\x01\x72\xc8\x5b\x96\xc5\x33\x5c\x97\x32\xad\xf3\x39\x1a\x66\x08\xd2\xa8\x5b\xcf\x93\xb2\x11\xe2\x7b\xd1\x88\x8b\x32\x2d\x44\x0a\x28\x4b\x64\x61\x14\x42\x45\xa4\x10\x82\xc4\xee\x10\xd1\xa1\x38\x3b\x8e\x70\xdd\x86\x90\x32\x92\x0d\xf9\x08\x75\x3a\x6c\xf8\x71\x34\x50\x7f\x13\xd6\x17\x00\xc3\x94\xc2\x2f\x45\x0f\x6e\xc1\x7b\x1a\x21\xbc\x50\x4f\x04\x2e\xa1\xd8\x86\x93\x9a\x80\x33\x24\x19\x2e\x81\xcf\xb9\x90\xb5\x54\x06\x2f\x13\x84\x6f\xd7\x08\x15\x06\x8f\x6a\xd6\x7d\xf3\xee\x1c\x92\xeb\xef\x1f\xbe\x7e\x3d\x22\x5b\x9a\xb7\x1d\x5e\xc8\x91\x15\x2f\x0c\xc6\x6d\x13\x4f\xdf\x80\x4e\x6b\xbf\x1e\x7e\x18\x79\xef\x7d\x08\x4d\x80\x3e\x1e\x76\xe7\x82\xdd\x64\x12\x4e\xdd\x5b\x84\x3f\xb7\x1c\x22\xf1\xcf\x54\x5c\x00\x10\xa0\x78\x50\xe6\x8e\xe5\x6a\xda\xd5\x7f\x44\x42\x35\xad\x08\xd5\x61\xa5\x2e\xdb\x47\x4d\x59\x6c\x9d\x72\xa3\x48\x67\xad\x44\xd0\xec\xb5\x3b\xe5\x02\xb5\x1a\x85\x85\xd9\x99\x03\xbb\x45\x6d\x2a\x93\x54\xe0\x5a\x6e\x0f\xd4\x17\x3e\x28\x3f\x7e\x15\x05\x9a\xba\x7e\x98\xf8\x2c\x4b\x11\x00\xc7\x85\x39\x7b\x8c\x4b\xaa\x92\x6c\x17\x08\x0d\x78\xdf\xbd\x3a\x94\x68\x55\x9d\xda\x83\x50\x73\xd6\xe2\xd0\xed\xe5\x3f\xe3\x7a\x11\xcc\x1e\x78\xb6\x77\x9d\xd8\xda\xa2\xf7\x10\x2d\x7a\x0f\xb1\x66\x89\xb4\x5a\x42\x8d\xb5\x51\xd9\xe2\x3a\xe5\x09\x50\x4d\x7a\x1e\xc8\x4e\x07\x68\xa1\xaa\x65\xb9\x4c\x26\xec\x26\x31\xd7\x86\x78\x8c\x86\x25\xd4\x9b\x84\x79\xbd\xe2\xcf\x1b\x35\xb8\x6e\x02\x4d\xe0\x6d\x98\x52\x0a\xe2\x85\xb4\xfc\xde\xad\x06\x0d\x6d\xb8\x90\xb5\xcc\xdc\x78\x41\x11\x2b\x53\x56\xdd\x61\xcb\xc0\x6e\x56\xb3\x39\x66\x28\x15\xe4\x7e\x85\x86\xd9\x28\xae\x6c\x9c\xcd\xe5\x42\x68\x2a\x0b\xdb\xf2\xa6\x9b\x95\x25\xbb\xe2\x28\x2d\xb1\xc1\x61\xf5\x85\x80\xd3\xf4\x56\xb1\x34\x16\x29\x33\xd4\xe9\x64\xce\x33\x0b\x45\x3d\x64\x8a\xac\xbe\xc9\xe4\xac\x7b\xcd\x78\x9a\xb9\xf8\x96\x86\x81\xe1\x92\xdc\xaf\x1e\xd7\x15\x7c\xdb\x7d\x7b\x72\x76\x74\x7e\x74\x72\xbc\xf7\xfa\xe2\xed\xde\xe9\xde\x9b\x8b\xfd\x93\xe3\x97\xaf\x8f\xf6\xcf\x91\xba\x0a\x0a\xd2\x7b\x5e\x7c\xcf\x9e\x17\xdb\xdb\xa8\x1c\x66\xc3\x62\x54\x19\x7f\x26\xd3\xc2\x12\xa1\x20\x78\xab\xcf\xbb\x87\x6f\xde\x9e\x7f\xbc\xd8\x3b\x3d\xdd\xfb\x08\x59\x32\x27\xfd\xb2\xb2\x39\x1b\xd2\x28\xf8\x14\xdf\x3a\xd2\x40\x74\x6f\x18\xbd\xc5\x25\x91\x95\x95\xc7\x0b\x8b\x5e\x1c\x2c\x41\x4e\x2e\x65\xba\x40\xcf\xd3\xaa\x67\x8d\x2e\x38\xcb\x4a\x10\x11\x11\x28\x1a\x9c\xb0\x49\x64\x97\x4d\xd0\x4a\x89\xa2\x39\xc2\x79\xd7\xa4\x04\x60\xf4\x96\x64\x38\x1f\xce\xe8\x88\x14\x38\xef\x5e\xe8\x00\x3d\x7d\x69\x12\xe6\x13\x3a\xb8\x93\xac\x84\x45\xa3\x2a\x25\xfe\xa9\xbe\x1c\xc6\xa4\xb4\x17\x6d\x8e\xf0\x94\x3c\xa0\x8c\x0d\x92\x06\x9d\x49\x3c\x46\x1b\x7a\x22\xc8\x18\x6b\x05\x47\x06\xd0\x1b\xb3\x6e\x36\x99\x38\x2c\x4a\x94\x66\x8a\x3d\x07\xbe\xf1\xaa\x7b\x78\xfc\xbe\x7b\x71\x78\x0c\x37\xdf\xc1\xd1\xc1\xc5\xd1\xf1\xd1\xb9\x46\xc3\xbc\x38\x7b\xf7\xf6\xed\xc9\xe9\x79\xa7\x33\xf6\x4a\x24\x40\x8c\x63\xc0\x96\x97\x4a\xf6\x88\xde\x84\x71\x96\x26\x5e\x77\x4e\x92\x64\x8b\x90\xb1\x25\x0c\x1b\xf3\xe5\x32\xa5\x55\x35\xd6\x38\xd6\x52\x59\x05\x15\x1e\x77\x2f\xa2\x98\x76\xc0\x38\x0a\x74\x5b\xeb\xab\x89\xa0\xed\x12\x13\xb6\x79\x0d\x5c\xc5\x42\xa6\x14\x8f\xf1\x02\x4f\xf1\x3c\x30\xd1\x07\xeb\x6f\x74\x3c\x9d\x4e\x7a\x1d\x68\xff\x4c\x09\x9d\x9a\x56\x97\x68\xe8\xc7\xbc\x7d\x44\xd7\x35\x6a\xd8\xae\x3d\x76\x8b\x3b\x1c\xd3\x51\xfc\x5d\xbb\x61\x8a\xfa\xf0\x24\x4b\x0b\xfd\x95\x52\xaa\x5f\x66\x30\x78\x41\x68\xa8\x5c\x7c\x0e\x1b\xa5\xac\xc0\x52\x66\x98\xdb\x8d\x99\x75\x6b\x98\x4a\x78\x4a\xb2\xae\x87\x11\xc3\xf3\xf0\xa7\x2d\xb4\x31\x56\xd3\x61\x42\x21\xea\x92\xad\xcb\x24\x6b\xa4\xdb\x31\x38\x2b\x10\xee\x44\xc3\xe7\xa0\x63\x9b\x3e\x47\x05\xe1\xc3\xa9\x92\x35\xd3\x8c\xcc\xa4\x71\xeb\x28\x10\x52\x62\x2f\xe8\xab\xbc\xa0\x5a\xaa\x85\x1b\x6b\x4d\x66\x89\xf0\x4c\x76\x8d\xbc\x9f\x52\x2c\x70\x06\x0c\xe5\x74\x67\xe7\x79\xe5\x33\x7b\xea\x17\x44\xf8\x73\x3f\x08\xfe\xee\xc7\x0e\x5b\xa2\x2e\xa5\xb2\xc9\x7a\xf1\x7a\xe1\x75\x03\xa8\xda\x6b\xa3\x6c\x40\x9d\xce\x75\xdc\x61\x86\x56\x4a\xa6\xc6\x19\x78\x57\x32\x92\x05\xbd\xcb\x5a\x7b\x97\x29\xde\xee\x69\xbd\x63\xbe\x77\x38\xe8\x03\x87\x96\x11\x2e\xb5\x02\xce\x8a\xf0\x71\x2a\x8a\x7a\x6b\x46\x62\x2f\x82\x11\x4f\x3b\x9d\xa9\x59\x59\xf5\x57\x63\x6c\xdf\xd3\x75\x16\xa1\xc2\x05\xe1\x79\xa7\x33\x77\x6d\xcc\x1b\xdb\xb8\x03\x5d\x05\x80\x20\xad\x5a\xfb\xbd\xae\xc5\x20\xe9\x6b\x12\xcc\x59\x92\x09\x96\x9d\x16\x39\x4d\x18\xdf\xcc\x3a\x9d\x6a\xcd\x42\xbd\xc2\xb9\x4c\xb3\xa0\x68\xf0\x7d\xb6\x96\xe0\x2d\xaa\x84\x26\x5b\x4b\xf0\x6a\x24\xa3\xc5\x88\xa4\xef\x3e\x4f\x6d\xe6\x74\x44\x24\x8e\x0d\x4b\x75\x66\xb1\x91\x51\x34\x38\xf3\x0d\x1c\xa3\x1c\x34\xab\x13\x87\x0b\x3a\x1a\xa1\x3e\xfc\xdf\x42\xe3\x1e\x60\x49\x23\x2a\x56\x33\x90\xc8\xea\x8c\x32\x7e\x70\xf2\x26\x81\xfb\x38\xba\xd4\xa2\xa9\xab\xbc\x75\x16\x93\xb8\x87\x0d\x52\x9f\xf5\xae\x88\x19\x79\x33\x31\xcc\xfc\xe1\xd2\x86\x15\x31\x09\xde\xa0\x81\xe1\xe4\xf1\x37\xff\x89\xce\xa4\xd4\xe9\x6c\x09\x6b\x7b\x62\x26\xf0\x03\x1c\xba\x2e\xa5\x22\x54\x71\xd3\x44\x84\x66\x2a\xcc\x35\xe8\x33\x24\xb3\xa7\xd2\xb8\x8c\x33\xaa\x53\x97\x5b\x40\x68\x1e\xcd\x89\xf6\x2c\xb0\x8c\x00\x5f\xc3\x08\x20\x5c\xd4\x96\x85\xc7\x3b\x57\x57\x16\xd7\x13\xde\x9b\xf5\xbd\xdc\xec\x01\x51\x33\x88\x36\x7e\xf5\x27\x37\x54\x7d\x16\x1e\xbb\x61\x5a\x4c\xb2\x91\xfb\x97\x00\x83\x6c\x10\xe7\x2f\x23\xa6\xc0\x6f\x88\x03\x2a\x33\x96\x97\x3a\xfd\x22\xcb\xcc\x5c\xf5\xb7\x7a\xab\xc0\xe0\x75\xf2\xd4\xaf\x77\x57\x3a\xc6\x7f\xaf\xee\xe9\xd1\x8b\x3c\x3d\x7a\xb1\xa7\x47\x2f\xf2\xf4\xe8\x55\x3d\x3d\x7a\xb1\xa7\x47\xef\xcf\x7b\x7a\x7c\xd2\x16\xeb\xcf\x12\xbf\x91\x0d\xb2\x81\xb1\x12\x2b\x7e\xcd\xea\x6f\x62\xc9\xc0\xda\x88\xb5\xd4\x6c\xad\xc4\xd6\x38\xfd\x49\x1a\xcf\x0a\x40\xd0\xf0\x3e\x06\x38\x23\xc5\xa0\x08\x25\x69\x0b\x2a\xae\x0d\xdd\xfe\x39\xc9\x70\x24\xbf\x5b\xb3\x33\xd8\xa4\x8d\xa5\x59\xdb\xc5\xef\x55\x27\xfb\x14\xc7\xfd\xeb\x4b\x6c\x04\x7a\x8e\x9d\x9a\x41\xe0\x50\x34\xee\xef\xc9\x48\xc2\xcf\x56\x2b\x7c\xfe\xd7\xbb\xb1\x46\xd9\x00\x03\x13\xfb\x13\x92\xff\xad\x51\x79\xd4\x94\x1c\x55\x33\xf8\xc3\x1a\x0f\xde\xa2\xf1\xe0\x15\x8d\x87\x7c\x58\xa8\x34\x9c\x73\xd5\x16\x5f\x3c\x4d\x10\x63\x4e\x10\x63\x1b\x5a\x40\x05\x29\x88\x39\x29\xc8\x86\xb8\x37\x09\x43\xac\x45\x74\x60\x4f\x13\x86\xd8\x7a\x61\x08\x3b\x31\x88\x69\x94\xda\x02\x67\x3a\xc4\xff\xb3\x44\x78\xff\x21\x3f\xaf\xde\x93\xfc\xbc\xfe\xe2\xd3\xbf\xbb\xc2\xa7\xad\x1a\xdd\x20\xb3\xab\xc9\x21\x6e\x80\xf8\xd4\x80\xcf\x15\x39\xdc\x88\xdd\x50\x0c\x9a\xcf\x61\xf7\xe5\xde\xfe\xf9\xc9\xe9\xc7\x8b\x97\x27\xa7\x06\x73\x65\xa3\x76\x4a\x79\x77\xba\xc8\x73\xb5\x86\x06\x0d\x68\xb7\x87\xe2\x33\xb9\x2f\xab\x07\x99\xbb\x83\x0c\x06\xbe\x06\xf5\x71\x03\x47\xd5\x20\x05\x02\x87\x04\x41\x0a\x6f\xd7\x3a\xc9\x98\x19\x80\xfd\x67\x48\x5f\xe8\x75\x66\xe8\x5e\xd5\xaf\x8c\x37\xa6\xba\x9d\xb1\x7c\xd2\xe4\x3b\x44\x6f\x37\x75\x8a\x57\xad\x78\xa9\x36\xd2\xd8\xc4\x13\x80\x6f\x82\xaa\xe2\x8f\x4a\xda\xec\x04\x5d\xfb\x4c\x0d\xd3\xcc\xd6\x71\xfb\x6c\x71\x8b\xd5\x87\x4b\x7d\xf2\x17\x70\xf2\xf5\xba\xb3\x49\x94\xaa\xe1\x68\x02\x5a\x62\xeb\x94\x63\x6f\x0c\x35\xc8\x0a\x16\x81\x45\x94\x82\xcd\x33\x2b\x16\xf9\xe4\x94\x4e\xf3\x45\x39\xb3\x69\x35\xbc\xdb\x0d\x31\x30\x89\xb9\xa6\x38\xc5\x5c\x75\xad\x24\xf7\x59\x7e\x9b\xdd\x29\x6e\xcd\xf0\x72\x6a\xd3\x6f\x98\x36\x14\x3d\xa8\x1b\x90\xa2\x5b\x6a\x4c\x68\x40\x13\xa7\x3a\x65\x84\xfe\xf2\x4d\xc6\x38\x0a\xf2\x58\xab\xc9\xbd\x12\xd9\x35\xe6\x98\xa9\x79\x48\x39\xbe\x37\xa7\xb5\x5f\x40\x60\xf6\x19\xbb\xcc\x19\xbf\x32\x80\xdb\x78\x8c\xf0\xcc\xea\x40\x27\xc5\xfd\x8c\x4c\x4d\x24\xff\xea\x76\xa6\xda\xdb\x9a\x69\x1c\x01\xa3\xff\x59\xd8\x59\x99\x19\xf4\x84\x45\xc3\x10\xcc\x22\xce\xbb\x36\x5f\x48\x9a\xa3\x55\xe3\x51\x61\xe5\x3a\x44\x09\x58\x0c\x42\x2a\x9b\xa6\xcd\xe3\xaa\x19\x20\x81\xf2\x1b\x88\xa8\xac\xac\x53\xcf\xaf\x7c\xb8\xbe\xd0\xa2\xf7\x0a\x6b\xd8\x01\x66\xb4\xf6\x11\xba\x4f\x29\xd9\xaa\x84\x83\xa0\x4e\x87\x6b\x4f\xee\xd4\xa2\xcb\x7b\x0f\x71\xeb\x2c\x4d\x55\x21\xed\x4b\x9d\xaa\xd9\x31\x71\xae\x92\x0c\x47\x41\xcc\x9d\x37\xf6\x91\xdf\xa4\x53\x2d\x50\xb4\xf1\x9b\x04\xa3\xfd\x98\xa6\x12\xef\x06\x2c\xe2\x01\xf8\xde\xd9\x7c\x0b\xaf\xb2\x12\x12\xd6\xa0\xb4\xbe\x3c\xbf\x39\x34\xb0\x9e\x81\xd9\x7a\x6d\x42\x70\xd4\xdf\x2f\x25\xe9\x6d\x7c\xee\x5e\x66\xe3\x4f\x97\x0b\xc1\xa9\xe8\x16\x3c\x4d\x60\x50\x75\x7c\xb9\x00\x44\xee\xb7\x08\x45\xee\x37\x39\xa4\xa3\xee\x85\xf5\xb5\xf7\x27\x20\x55\x92\x7a\xad\x7a\xca\x27\x4d\xe0\x75\xad\xd5\xb3\x69\xba\x65\x9a\x60\xe5\x7b\x55\x75\x8a\xc0\x7b\xeb\xa5\xfc\x61\xb7\x67\xa2\x4e\xd4\x48\xb0\x2e\xe5\x56\x01\x07\x0e\xac\x8c\x4f\x15\xd7\x4c\x37\xf5\xd2\x32\x7e\xb5\xc9\xb8\xe9\xa7\x9a\xd1\x09\x95\x74\x2c\xe9\xc4\xdb\x8d\x5e\xca\xed\xed\xb8\xf3\xbf\x15\x8c\x83\xf1\x01\x1f\x48\xb4\x82\x16\x8d\x4f\xda\x6b\x0d\x37\xf7\x5a\x1d\x58\x80\xa5\xc4\x66\x96\xdb\x2a\x90\x08\x99\xe5\xf8\xb2\x86\xd2\x59\x6f\x88\x3f\x68\x4c\x9f\x75\xa7\x59\x9e\xab\xf6\xd5\xf6\x38\xa5\x57\xac\x94\xe2\x0e\xb3\x7a\x7d\xdf\x36\xd6\xf7\x6d\x14\x2b\xfe\xed\x08\x17\xf5\x2f\xbf\x6b\xfc\xf2\xbb\xb0\x27\xdf\x8d\xfa\xb2\x3b\xce\x19\xe5\xf2\xc5\x82\xe5\x13\x2a\x34\x55\xbc\x50\xe7\xd2\xa6\xe6\x55\x67\xd2\x1a\x01\x2d\x99\xbe\xb8\x09\xba\x6d\x79\xf1\x0b\xb5\xbc\x8c\xd3\xc9\xcb\x42\x1c\x9c\xbc\xb1\x6c\xf9\x45\x48\x9e\x83\x3a\x75\xf8\xc3\xac\x96\x96\x7b\x67\xd7\xa1\xe8\x9e\xda\x1d\x71\x0a\xe5\xfd\xe7\xf4\xba\xb8\xa1\x93\xd3\xb8\x96\x4b\x3d\x04\x52\x34\x51\x3a\xc5\xf1\xf2\x89\xbe\x3f\xc1\xca\x10\xea\x4e\xad\xbd\x0b\xae\x2e\x92\x0a\x42\xb1\xd1\xe5\xef\xbd\x7d\xfb\xfa\x68\x7f\xef\xfc\xe8\xe4\xf8\xe2\xfc\xf0\xcd\xdb\xd7\x7b\xe7\x87\x17\x1f\x4e\xf7\xde\xbe\x3d\x3c\x1d\x68\x97\x3a\x6f\xf0\xb9\x5f\x61\x21\xf1\x7d\xcc\xd9\xc5\xbc\xda\x4a\xc9\x3c\x9c\xde\xa6\x2d\x62\xc5\xbf\x12\xa9\xa4\xc9\x4c\xe9\x7c\x44\x27\xec\x26\xa9\xe5\x7f\x7b\x9c\x07\xf9\x7a\xf1\xe2\xb1\x8e\xe4\xf2\x49\x8e\xe4\x45\x2d\x52\xa8\x55\xa3\x2f\xd1\xbd\x6c\x56\x51\xc6\x6a\xc8\x6a\x21\x36\x49\x70\x35\xc2\x58\xf3\xf8\x4c\x1a\x09\x20\x93\xa9\xd0\x0c\x2e\xce\x4c\x16\x4f\xff\x08\x19\x06\xf8\x42\x6f\xc5\x03\x0a\x64\x4f\xf7\x09\x38\x8a\xf1\x42\x88\x3b\x94\x96\x08\x02\x9f\xea\x9b\xf7\xbc\x68\xda\xb4\xc0\x89\x9f\x7a\xfe\xfa\xa1\xea\x45\xbd\xfa\xda\x27\xcd\x06\x10\x62\x92\xce\x01\x60\x91\xfa\xfb\xad\x34\x24\xb3\x29\x16\xc2\x6c\xf4\xcd\x63\x99\x5a\x4a\x42\xf9\x4d\x03\x4d\xc1\x0c\xab\x93\x17\x9d\x61\x3b\x16\x7d\x25\xa8\x73\x9e\x66\x95\x4e\x5b\xde\xa6\x16\xdf\xd5\x7c\xdb\x55\xbe\x55\x94\x8b\xd6\xd3\x89\xc9\x06\x1e\x75\xa3\x4e\xf1\x86\x72\x54\xe5\x8a\x16\xbc\xb1\xd2\x09\xcd\xa9\xa4\x9b\x0d\x55\xd4\x1b\x1a\x55\x3b\xa9\x88\x5c\x45\x1b\x57\x11\x5a\x0d\x69\x35\x08\xf8\xda\xb7\x9e\x66\x7c\x31\x57\x53\xa6\xc4\x7f\x0a\x89\xa5\xea\x96\x28\x6a\x54\xe4\x4d\x84\xbb\xd3\xa1\x91\xfa\xad\xc1\x0d\x9e\x95\x07\xae\xe5\xe5\x32\x0a\xc0\x8b\x04\x9e\xa8\x33\xd1\x50\x6c\xae\xb9\xe0\x7a\x40\xd6\x78\xe5\x98\x47\x7d\x4f\x58\xdf\x0d\xfd\xcb\xf2\x1f\x62\x67\xe7\x39\x4a\xa5\x06\x70\xd6\x8c\x6c\x4a\xb5\x91\x39\x60\x33\x2c\x93\x26\xf0\x6e\x15\xb0\xa6\x81\x8f\xad\x74\xc8\x7a\xf9\x5d\xd4\x19\xd7\x0b\x35\x34\xb1\x97\xe7\x70\x07\xa5\xd5\xba\xaf\xa8\x7c\x51\x2c\xf8\xa4\x6c\xa2\x95\xc3\x39\xb5\x98\x00\xf7\xda\xec\x6d\x13\x86\xc9\x6e\xf4\x5b\x09\x1b\x4c\x94\xf2\xb8\x98\x28\xfa\xe8\xfe\x4e\x11\x56\x37\xa6\x79\x6c\xff\x4c\x01\x32\xa2\xa6\x94\xa9\x53\xc0\x4a\x42\x11\xca\x6f\x20\x71\x9d\xbe\x20\xe7\x54\x00\xdb\x55\xa6\xa8\x12\x4e\x5e\x95\x38\x83\xc3\xd9\xa8\xb4\x0f\xd6\x6c\xc3\x41\x4b\x42\x84\x01\x77\xf6\xa4\x54\xcb\x0c\xf8\x37\x69\x61\xf6\x10\xae\x9e\xfc\x32\xe0\xec\xab\x1b\x2c\x2c\xd6\x20\x90\x38\x07\xbd\x70\x37\x65\xc4\x53\xa3\x05\xa9\x33\x14\x38\xb7\xd2\xc5\x34\x10\xcc\xb2\x48\xa0\x50\x3b\x75\x4a\xac\x93\x1e\xce\x15\x6b\xa2\x19\xe4\x22\xe4\x8f\x53\x49\x8a\x21\x1d\x21\x2f\xf9\x0c\x16\x76\xa0\xfd\x94\x13\x19\x0b\xb4\x98\xfe\x40\xa6\x9d\xce\x16\x57\x1b\xcf\x4a\xaf\xdd\xaa\xf0\x4a\x38\xae\x7d\xa9\x7d\xad\xc4\x82\x1f\x45\x72\x50\x2a\xb1\x51\xa9\x25\x08\xe7\x24\x5f\x2e\xb9\xbb\x85\x22\x9e\xab\xec\xee\xbf\x3b\x3d\x3d\xd4\xe1\x52\x2e\xdc\xc6\x8a\x4a\x59\x20\x27\x69\xa9\x34\x5f\x2e\xed\x40\x7f\x98\x6a\xff\xc5\xe7\x0b\x3b\x72\x24\xc8\x42\xc3\x22\x63\x46\x7c\xa0\x87\x40\xb8\xb0\xc7\x91\xe1\x5d\xb4\x01\x3e\x42\xb5\x83\xdd\xe9\x1c\x49\x1b\x7b\xdb\xb6\xd4\x61\x84\x6b\xb0\xea\x9e\xa6\x54\x59\x47\x7b\xb4\xeb\x2c\x65\xcf\xe4\x00\xda\xda\xd5\x92\x62\x75\xf3\xa5\x08\x53\xb2\xd5\xf3\x62\xa3\x23\x0a\x0f\x4f\xa0\xf6\x0a\xf1\xa7\x2c\x12\x52\x6d\x92\x14\xf5\xc2\x4e\x2f\x6a\xe7\x7c\x57\x95\xc3\x1d\x13\xa0\x56\x61\xdc\x9c\xbf\x16\x90\xf1\x58\x28\xdb\xa8\x9f\x05\x8b\x3c\xdc\xab\xf1\xed\x0f\xad\x56\xfd\x12\x0e\xfb\x18\xc9\x5e\xb6\xe8\x09\x1f\x53\xab\x02\x4e\xc2\x74\x4b\xc2\xd5\x51\x6d\xc5\x48\x9d\x6d\x78\x24\x21\x29\x6f\xde\x6d\xcb\x65\x6d\xe5\x34\xc7\x50\x5f\xe3\xfa\x7e\x6c\x1a\x99\x5d\x40\x23\x0d\x1b\x2c\xf2\x75\xe4\x6c\x95\x22\xfc\xaa\xd5\xce\xf0\xdf\x99\x1c\xdb\x23\x2f\x74\x15\xb1\xa4\xdd\x88\x6d\xa3\x31\x43\x83\x15\x09\xec\x5a\xfe\xad\xc6\xbf\x37\xc4\x7c\xd7\x42\x59\xf7\xc6\x63\x5a\x02\xfa\xc4\x7f\x69\xed\x90\xfe\xe6\xbf\x36\x59\x09\xf1\xad\x59\x9e\x17\xb7\x74\x02\x39\x1d\x0a\xbe\xc3\xbc\x82\x7e\x33\xb0\x31\x96\x9b\x69\xb9\x18\xcf\x36\xb3\x72\xf3\x65\x56\xca\x17\x45\x21\x11\x84\xc3\xca\x55\xfa\x45\x22\xfc\xe2\x7f\xc2\x5c\xf7\x9e\x34\xd7\x34\x42\xb7\xa8\x26\xcb\xa5\x7e\x6e\xde\x01\xb8\x11\x60\x0b\x49\xf2\xae\x09\x24\xfa\xb2\x9b\x17\x63\x33\x74\x60\xfe\x01\x2e\xfa\xc3\x43\x06\x04\xa3\x7c\x11\xcd\x58\x44\xeb\xdc\x58\x6f\x5c\x1a\x62\x57\x89\xfd\x43\xf1\x13\xea\x2a\x34\xc6\x07\x00\x7e\x04\x51\x2b\x4c\x4a\x11\xd5\x9c\x8a\x3a\xa3\xd6\x2a\xd4\x3e\xb1\x4d\x36\x4d\x9b\xda\xeb\x46\x96\x9f\x06\x3c\x58\xee\x3b\x61\x41\x16\x6d\xa3\x4e\x76\x36\x22\x73\x03\xa8\x27\x33\x26\xd7\x55\x24\x4c\xb3\x8a\x30\x4d\x6b\x28\x28\x3a\xcc\x71\x8d\xf6\xdf\x0d\x3c\x2c\x6f\x60\x48\xea\xd5\xd5\x41\x40\x1e\xaa\xd0\x7e\xd1\x5a\xa5\xb3\xfb\x34\xcb\xa5\xeb\x6b\x77\x1f\xbf\x82\xd9\x69\x6d\xe4\x6d\x26\x24\xcb\xf2\xc7\x57\x6c\x3e\xb0\x15\x2a\xe2\xfd\xfe\x4f\xc1\x38\xd4\x8c\xfb\x0f\xc0\x38\xec\x3e\xd9\xb8\xef\xd5\xd9\x1f\x65\xab\x63\x78\x37\x2b\xef\xf8\xf8\x35\x9b\xd2\xfd\xbb\x71\x0e\xad\xa9\x2b\xba\xf4\x9a\xed\x1f\xd7\x7c\x3c\x71\x7e\x18\x01\xb8\x56\x08\x85\xa1\x7d\x91\xad\x4f\xb0\xe5\x8f\x02\xd7\x65\x1a\xfa\x37\x5b\x06\x14\x7c\x27\xbe\x92\xff\x2e\x0a\xb3\x46\x2b\xb7\x55\xc3\x28\xb1\x33\xa7\x57\xa0\xd0\x20\x3c\xf0\x8f\x2e\xc8\x4f\x32\x05\x30\x38\x1b\x5b\xe1\x36\x67\x5a\x75\xb0\xd6\xfe\x9e\xb8\xf0\x3e\x02\xf4\x76\xf3\x67\x45\x17\x32\xcc\x2a\x84\xbe\xcd\x5f\x8a\x50\xdf\x93\x66\xd7\xa9\x0d\x69\x3e\xf6\x1d\xe1\xf8\x27\x99\x0a\x54\x07\xdc\x59\xe3\x34\xd6\xdc\xca\xc6\x47\x09\x19\x7a\xa5\xff\x3a\x68\xa6\xde\xc0\x1a\x27\xa2\x47\x34\xf0\xae\x3a\x8e\xfa\x6d\xb8\x5f\x70\x49\x3f\x37\x6b\x2d\x5b\x5a\x90\xc1\x77\x4d\x55\xd6\xbc\x8c\x1f\x9c\xf8\x4a\x8d\xe1\xf2\x7e\x95\x36\x5c\xe1\xeb\x1d\x9b\xd4\x51\x74\x6d\xa1\x01\xb5\x01\x85\x4f\x52\x99\xbe\x97\xb5\x2f\x5a\xcd\xe6\x6a\xd7\x74\x65\x76\x55\x5b\xbd\x76\x98\x9e\x87\x55\xc7\xd5\x40\xa8\x06\x10\x92\x16\x5d\x71\x35\x3e\x4a\x82\x97\x17\xc2\x3f\x3f\xc6\x92\x6f\xe7\xed\x01\x9c\x8b\xa7\x83\x4d\xb8\xc5\x97\x15\x87\x97\x0d\x20\x9d\x9d\x8e\xab\x20\x20\x00\xf6\x12\xf9\xa5\xee\x76\xf5\x68\xa7\x2b\x37\x22\xde\xec\x24\x65\x9d\x33\xbe\x92\x86\xe5\x08\xad\xdb\xe1\x54\xd6\xdd\xae\x1e\xe7\x5a\x15\x78\x54\x45\x5c\x08\xb6\x3d\xeb\xf3\xd5\x0a\xff\xfa\xef\x0e\x77\xf4\x8f\x35\x37\xcd\xbf\x16\xf2\x68\xbd\xad\xe5\x5f\x0c\xd2\xf3\x6b\x05\xa4\xa7\x7a\x0d\x56\x31\x70\xd6\xd1\x4a\xcf\x5b\x75\x8f\xdf\xbd\x7e\xed\xcd\x05\x7f\x01\xb0\xcf\x53\x20\x7a\x10\xa6\xbc\x16\x60\xda\x8c\xac\xf3\x8f\x10\x5a\x47\x46\x0b\xe1\x59\x16\x90\x09\x32\x99\xf6\x10\x10\x7b\xa3\x17\x54\x8c\x40\x43\x7c\x39\x1b\x88\x1f\x76\x07\xd5\x60\x71\xf8\x7e\x17\xd9\x0f\x74\x94\x78\x1f\x00\x0d\xd4\x07\xcf\x9a\x3f\x78\x56\xfd\x80\x79\x0e\x8c\xb7\x74\x56\x77\x34\xbc\x83\x7e\x77\x00\xcc\x29\x0a\x9c\x19\x44\x40\xa7\x93\xf1\x8c\x8e\x3f\x5d\x16\x9f\x13\x42\x1a\x6a\x73\x31\xd4\xc9\x8e\x2b\xd8\x4f\x76\xc2\x14\xfa\xae\xda\xe2\xc1\x49\xb4\xb5\x05\xc0\x08\x58\x10\x3e\xe4\x01\x68\x0b\x23\x95\x19\x8b\xa7\xb8\x3a\x5b\x02\xf5\x99\xd6\x02\x31\x1b\x89\xcf\x50\x3f\x09\xba\x95\xc5\xbe\xc3\xee\x79\x59\x4f\x2c\x8a\x33\xab\x23\x76\x01\x8c\xad\x11\xb5\x7c\xf8\x7e\x34\x48\x33\xc2\x71\x49\xd4\xdf\xa8\xef\x03\x1d\x49\x5a\x78\xac\x70\x55\x48\x42\xd4\x9d\xd6\x0e\x95\x8a\xc7\x31\x7f\x0e\xb9\xfa\x2e\xa8\x9c\x14\x9d\x4e\x9a\x11\xaa\x2a\x45\xa1\xcf\x86\x56\xf5\x55\xbd\x01\xb0\x24\x3a\xdc\x11\xc4\xd7\xde\x73\xfe\x3d\x85\x8c\x3c\x72\xc8\x47\x81\x77\x00\x1f\x6d\x78\xd5\x39\x23\xf7\x26\xa7\x7c\xa6\x48\x98\x22\xf4\x79\x76\x49\xf3\x7e\xf2\x77\x9b\xeb\x7e\x9c\x17\xe5\x42\xd0\x1d\xdd\xcb\xe4\x49\xd9\x5f\xb5\xb1\xd5\x7c\x89\x59\x3d\x13\xf1\xe6\x67\x70\xcb\x30\x94\xd4\xcc\xf7\x30\xc3\xe5\xa8\x3b\x2e\xf8\x38\x93\xa9\x48\x25\x42\x68\x65\x04\x85\x05\x6f\x62\x5e\x9a\x74\x2d\x1a\xe9\x77\xb9\x6c\x4a\xd3\xe0\x40\x8c\x21\x9b\x5b\x92\xf4\x1d\xda\x74\x40\x06\xf2\x98\x3d\xaa\x8b\x2e\xdd\xeb\x6c\x9e\x2e\x38\xd2\x8e\x25\x49\x12\x82\x31\x19\xeb\x6d\xd4\x19\xbe\x5c\x02\xc8\x08\x1f\x54\x09\x63\xbf\x16\x16\xab\xd3\xbb\xc6\x20\x22\x83\x0c\xdc\x52\x22\x64\x1d\x8b\x16\x00\x93\x33\xe5\x6d\x50\x7e\x7f\x22\x01\x17\x42\x1b\x45\xb7\x2c\x16\x62\x1c\x00\xbc\x73\x5c\x00\x6e\x86\x7f\x22\x70\x01\x56\x2a\x0f\xe1\x61\xb0\x20\x7c\x91\xea\xa8\x8d\xa3\xaf\x29\xf7\xe8\xdc\x01\x1e\x6b\xa2\x01\x72\x87\x1b\x98\x11\xf5\x6f\x36\x42\x6d\x28\x13\xe6\x32\x6e\x10\xf6\x02\x0e\xa0\xec\xb2\x12\x26\x08\xa5\x12\x0d\x60\x49\x65\x40\x88\xe9\xed\x26\x37\x2a\x02\xfe\x68\xbc\x0a\x3b\x45\x11\x3e\x89\x9b\x22\x6b\x51\xb3\x13\x62\xad\xa2\xd1\x54\x57\x48\xe1\xa6\xd0\x30\xd4\xa9\x24\x63\xae\x55\xda\x95\xd5\xc2\xa2\x96\xe0\x04\x42\x89\x8c\x25\xa2\xba\x4a\x38\xea\x28\x11\xc8\x8f\x3a\x1a\xe9\xf0\xc3\x28\xda\x6e\xd6\x1f\x0e\x35\x76\xc2\x47\xf5\xb6\x0e\x08\x32\xa6\xf1\x55\xfa\x13\xc2\xb3\x96\x9d\xfc\x27\x93\xc9\x85\x40\x25\x97\x22\xe3\xe3\xd9\xe3\x33\x56\x34\x6e\x37\x03\x65\xe2\x2b\x53\x5b\x4e\x51\xae\x49\x2b\x04\xca\xd3\x74\xc7\xa1\x6b\x46\x08\x2e\xbc\xd1\xb4\x4b\x19\x1a\xb8\xe8\xe9\x01\xef\x0b\x9d\x61\x2d\x65\x50\x49\x0d\xe5\x76\xcd\x2e\x55\x03\xf0\x80\x29\x1e\x5a\x45\xe7\x2a\x8d\x80\x55\xe0\x89\x1b\x7e\xbc\xcb\xa8\xde\x65\xd4\x6f\x1f\xa9\x56\xd7\x93\xd8\x79\x25\x02\xcc\xd3\xd8\xe7\x6a\x3b\x17\xbc\x2c\x72\x8a\xba\x79\x71\x65\x59\x6d\xcc\x3d\x0b\xa3\xbe\x9b\xf0\x0a\x7c\xc9\x9b\x77\xe7\x09\xc2\xd7\xd5\xc7\x67\x27\xef\x4e\xf7\x0f\x93\xa0\xed\x3b\xe3\x6d\xe1\xdb\xdc\xb0\xdc\x0a\x28\xb0\x42\xd6\xe9\xa4\x1b\xe4\x83\x4d\xab\xfe\x60\x9e\x28\xe8\x3e\xdd\x70\x32\x4c\xb2\x5c\x26\x38\x01\xcc\xbd\x04\x27\xd7\x54\x66\x09\x4e\xc6\x52\xe4\xc9\x08\x5f\x71\xf2\xcd\xff\x6f\x9c\xb3\xf1\xa7\xe5\x75\xb1\x28\xe9\x52\x16\x8b\xf1\xec\x9b\x8d\x59\x77\x0f\xfa\xf6\x46\x73\xa5\xce\x85\x85\x4e\xf4\xf3\x12\x7a\x78\xc9\x9b\x05\x06\x78\x72\xe4\xfa\xfd\x60\x65\x43\x8d\xd3\xb2\xc2\x17\x0f\x54\x68\xfc\x5b\x1e\x53\xe1\x0a\xdf\xf2\x87\xd0\x28\xb1\x89\x5b\xb6\xa8\x94\xc6\x90\x61\x38\x72\xdb\xaa\x13\xd4\xe1\x37\x38\xb0\xf1\xf0\x09\xe0\x59\x18\xd9\x17\xd6\x6b\x2f\x88\x12\xf2\x6b\x4a\x8c\xd3\x11\xbb\x9e\xe7\x6c\xcc\xe4\x39\x30\x3b\x36\xd2\x68\x52\x5c\x13\x63\x80\xa4\x37\x94\x03\x74\x89\x3e\x01\x57\x54\x1e\xda\x27\x69\x90\xae\x66\xd1\x62\xda\x70\x85\xdb\xcc\x94\xae\x8f\x3a\x14\xbe\xe0\x89\xe3\x69\x97\xcb\x04\x36\x43\x52\x33\x5b\xec\xf9\xa1\x36\x18\x7f\x7d\xba\xe7\xca\xbc\x58\xbc\x8a\xd0\x24\xdc\x58\xc2\x19\x88\x49\xe5\xfd\x90\x8e\xaa\xd7\x8c\xac\xf5\xce\xcc\x65\x33\x09\x89\x27\xdc\x5e\x77\x6e\x16\x5c\xad\x1a\x3b\x40\xf3\xa0\x09\x1a\x48\x3d\x3d\xf6\xb7\xed\x44\x9f\x36\xa7\x02\xd6\x32\x71\x93\x8f\x17\x90\x7e\x4e\x2a\x7b\xc8\x5e\xa8\xae\x1f\x90\xa3\x10\x9a\xbc\x5c\x5c\x5e\xe6\xb4\x4c\x10\x24\xb7\x84\x47\x73\x01\xbb\xe2\x40\x27\x20\x49\xb4\x7a\x17\xde\x18\x2b\xe5\x4f\xf4\x4e\x7d\x50\xba\x3d\xa3\x47\x9b\x22\xbc\x20\x00\xc9\xc7\xaa\x72\x4b\x43\x3c\x97\xc7\x54\x91\xe0\xde\x70\xc5\xbb\x92\x96\x52\x51\xcf\xbb\x39\x0d\x12\xbd\xcf\xba\xac\x3c\x03\xfc\xdf\x7d\xb5\x5d\xb4\xdf\x1a\x49\x92\x95\xc9\x66\x64\x98\xc5\x8c\xdf\x25\xe8\x07\xd2\xb3\x09\xc5\x7b\x41\x8a\xce\x1b\x07\x42\xce\xb5\x6b\x37\x1d\xde\xf0\x21\x1f\x6d\x27\x3f\xd1\xbb\x64\xd4\xe9\x68\x14\x4b\x57\x19\xbc\x44\x0d\xa9\xc9\x53\x6a\x93\x8c\xa6\x08\x2d\x97\x29\x8c\xb6\xb0\x4f\x34\x0a\x7c\x38\x79\x6a\x4a\x96\x4b\xda\x2d\x65\x31\x7f\x2b\x8a\x79\x76\x95\xe9\x3d\x83\xd3\x1e\xd6\x32\x40\xe4\x3f\x6f\x76\x52\x7c\x08\x20\xbb\xe4\x3d\x88\x29\x14\x1b\xb1\xa5\xc4\x3a\xca\x48\xc9\xfd\x1b\x0d\xbc\x3e\x48\x66\x4d\xcf\x07\xa9\xd0\x6a\x37\x8e\xcb\x6e\x49\xf9\x64\xf0\x07\x24\x1a\x11\x4a\x34\xba\x1a\x73\x53\x95\x78\xc8\x9d\x0c\x43\x95\x00\xd3\xff\xd3\xf5\xab\x1a\x6d\xed\x14\xad\xd0\x9f\xaf\x92\x47\xf5\xfd\xf9\xea\x86\xef\x6d\x0f\x39\xd4\xb8\x42\x78\xf1\xb0\x4b\xde\x05\x77\xee\x25\xab\x14\xe1\xc3\xb6\x2b\x04\xdd\x37\x46\x5c\xad\x8d\x4b\x04\xbc\x53\x6f\xa8\x51\xe2\x06\x1c\x7e\x5c\x92\x22\x54\x4b\x2c\x08\x30\x78\x78\x5c\x75\x0c\xf3\xa1\x3b\x21\x14\x5f\x3a\x26\xa5\xd1\x05\xa5\x33\xfd\xe7\x2e\x42\x6a\xaf\x4d\xc9\xac\x9f\xce\x22\x9c\x07\x3c\xb5\xa1\x3c\x8a\x47\x30\x51\x3e\xc3\x11\x9c\x4b\x46\x9e\x3d\x67\xdf\x3b\x82\xcc\xb6\xb7\xd1\xdc\xa0\x70\xa8\x4a\x99\x29\x3f\xd1\xfc\xcc\x62\xc1\x26\x28\x8d\xd4\x3a\xb7\x6a\xc4\x13\x3c\xc5\x73\xb8\x56\xc7\x58\xd4\xa6\xdc\x80\x52\x34\x5b\x33\x8a\x6b\x60\xbd\xcc\x35\xac\xed\x47\xf6\xe6\xbf\xe4\x10\xbf\x15\x3b\x49\x73\x9c\x28\x6e\x79\x27\xde\x07\x49\xdd\x9b\xba\xa9\xe0\x4e\xb2\x2d\x70\xd5\x40\xbf\xc6\xca\x15\xab\xa0\x76\xd1\x86\x1c\xbe\x1f\x41\x0c\x68\xc0\x18\x78\x06\x0c\xd3\xe0\x22\xa7\x95\x5b\xbc\xe1\x02\x6b\x31\x85\x80\x15\x84\x3e\x31\x0c\x3d\xc6\x6c\xfe\x5c\x57\x46\x10\x3a\x00\xed\xdd\x90\x0e\x7b\x23\x50\x1e\xd4\x2b\x4a\xfe\x9e\x6c\xd3\x15\xc2\x74\xb8\x3b\x0a\x92\x18\x9d\xd5\xc2\x6d\x85\x0f\x47\x6b\x33\x8b\x07\xee\xe1\x46\x49\x97\x09\x9a\x25\x58\x7d\x31\xa5\x42\x78\xdf\x83\xcd\x29\x20\x0e\x06\x41\xb9\xa0\x26\x65\xe3\x94\xe1\xa1\x5c\x2e\x87\x23\xfc\x99\x43\x7e\x17\x25\xd8\x6b\x9c\x64\xbc\xd5\x0b\x82\xe6\xff\x64\xff\x68\x53\xa7\x5a\xba\xf3\x40\x57\xf6\xea\x14\x40\xf3\x9b\xfe\x9e\x25\x3a\x5e\x68\x38\x42\x36\x82\x88\x77\x3a\x29\x23\x7c\xd8\x1b\xe1\x82\xf0\xe1\xee\x08\xa7\x19\x61\xfe\x4e\x55\x9b\x20\x41\x80\xe4\x0a\x77\x74\x49\x8a\x61\x36\xc2\x31\xca\x58\xe9\x80\xc5\x16\x80\x5b\x8d\x85\xf5\x0b\xf1\xb6\xa0\x05\x36\xde\xf4\x26\x16\x16\x61\x6e\xc1\x63\x8d\xb7\xf6\x96\xc6\x49\x0b\x35\xb1\x0e\xe5\x59\x2f\xd3\x89\x5a\x4f\xf7\xde\x8c\xd5\x52\xc6\x13\xb7\xd8\x5a\x23\x6b\x5f\xbb\xf9\xf9\x14\x69\x3a\x83\x0d\x6a\xa6\xc1\xe2\x7c\x0f\x52\x66\x97\xd0\xc8\x3d\x14\x81\xc8\x7a\x53\x7c\xa2\x67\xb0\x1c\x2f\xf2\x62\xfc\x49\x51\x7a\xcb\x70\xa2\x7e\x5c\x20\xe5\x08\x16\x47\xad\xc3\x1b\xfe\x00\x3c\xc2\x7f\xb7\x65\xe8\x9c\xff\xbb\xf8\x20\xac\x01\x3e\xf4\x94\x91\xf2\x2b\xc6\x69\x1d\x57\x51\xb5\xcc\xc6\x26\x83\xd3\x9f\x37\x23\x3d\xcd\xde\xfc\x86\x3f\x88\x19\xe0\x30\x2c\x01\xdc\x45\x27\xeb\x02\x2f\x37\x80\x5b\x3b\x84\x51\xd9\x75\x49\x35\xb8\x1e\xda\x60\xdd\xcb\xa2\x90\xa9\x4d\xde\xc1\xba\xd3\x4c\x4d\x3a\xa4\xd8\x4c\x7c\x22\x8f\x78\xf0\x90\x78\xf7\xa4\x7b\x45\x39\xa4\x0a\xdd\x77\xc5\x5e\xea\x8f\x51\xca\x70\x12\x7d\xe1\x55\xfe\x0e\x8a\x39\x27\xb2\x7b\x5d\x4c\x68\x7e\x4a\xa7\xb5\x24\x7f\xf9\x60\x41\xee\xf5\x42\xf4\x19\x0e\xfb\x41\x0a\xab\xab\x41\x18\xd2\x8a\x68\x2f\x80\x0c\x61\x99\x5d\xf5\x2b\x16\xae\x7e\xca\x89\xd3\x2a\x63\x41\xf2\x08\x69\xe6\xe1\x26\xee\xa1\x83\x7d\xbe\x6a\x6a\x0b\x2a\xc3\x76\x08\xfd\xdc\xfe\x79\xd3\x17\x8a\x3b\x7b\xd8\xef\xc1\xdd\x8a\x3a\x37\xc7\x63\xdd\x09\x6a\x9e\x04\x0f\xdf\xa1\x66\x4f\xff\x41\x07\x84\x07\xb0\x85\xec\xc4\x01\x87\x63\xa7\x03\xf6\xa0\x9d\x90\x8d\x1a\x18\xd0\x72\x99\x4a\x22\xbc\x7e\xd2\x15\xad\x82\x01\x29\xc6\x27\x4d\xe0\x6d\x02\xd1\xa5\xce\x5d\x61\xbf\xea\xd0\x16\xd9\x1d\xcf\x79\x93\xed\xdd\x2d\x96\x5c\x05\xf6\x88\xd3\xda\x1d\x5b\xcd\x66\x70\x5d\x2c\xb8\x4c\xb0\xbe\xb0\xf9\x28\xc8\xba\x5f\xbd\x86\x0c\x82\xc5\x50\x27\x3d\xb0\x68\x5a\xee\x06\x02\x82\xfd\x76\xad\x26\xc7\x0c\x44\x66\x57\x24\xc8\xd9\xab\x06\x70\xea\x73\x04\xdb\x81\x58\xd5\x0d\xe5\x37\x56\xaf\x03\x6e\xd7\x5a\xad\xe3\x42\xc1\xe1\xd9\x81\xc9\x19\xd2\xc4\xea\x6b\x3c\xe1\x66\x85\x03\xe5\x37\x56\xde\x37\xbd\xb0\xc2\x7e\xb0\xd8\x55\x53\x6d\xcd\xee\xc2\x06\x95\xde\x11\x12\x3e\x3a\xa0\xd3\xbe\x25\x5a\xb3\xac\x34\xbe\xba\x5a\x94\x4d\xcc\x29\x4d\xb6\x19\x1a\xa4\x95\x6a\x58\x65\x84\x61\xb4\x9e\x3a\xae\xfb\x3c\x65\x00\x18\x17\x15\x33\xe6\xde\xb4\x3e\x3b\x8d\x93\x68\xf0\xf3\x5b\x21\x23\x02\xc3\x7c\x43\x30\x9f\xc5\x7e\x68\x5d\x76\xb3\xe4\x21\x64\x04\xf5\x9a\xb1\xb2\x7b\xc0\x84\xbc\xab\x68\xd1\x1b\xf3\xb9\xb4\xe0\x58\xa8\x79\x38\xe2\xe6\x06\x6d\xca\x3c\xde\xa6\x5b\x6b\xc5\xbe\x68\x01\x99\x0e\x3f\x30\x7f\xab\x23\xc9\x78\x30\x1e\xa3\xc9\x9e\xa8\x31\x39\x17\xfe\xdf\xd6\x1c\x09\x53\xb5\x0e\xee\x82\xaa\x83\x83\xa0\x1b\x39\x36\xa7\x43\x3e\x94\xfe\x5a\x67\x8c\x78\xea\x09\x88\x9b\xf6\x06\x17\x9f\x4c\x80\x0e\xf4\x9f\x7d\x37\xec\xda\x95\x26\x6d\x11\x39\xac\xf7\xdc\xd6\x39\x7a\x14\x2e\x49\x6d\x3d\xd5\x14\x1e\x3d\x76\x0a\x83\x3c\xe3\xe1\x84\xe9\x8b\xe5\xa1\x4d\x25\x1b\x70\x57\x6a\xde\xc1\x0f\xcf\x65\x55\x07\x4a\x3b\x1d\x3a\xb4\xbd\xb2\xd0\x32\x07\x0f\x8f\x28\x44\x3c\x01\x9d\xd3\x63\x06\xb4\xae\x7b\xaa\xc2\x60\x81\x21\xed\x62\xb8\x91\x15\x25\xec\x74\xa4\x5b\xe5\x10\x18\x3c\xe5\x24\x95\x04\x0c\xcc\x17\x17\x20\x9b\x5f\x14\x62\x3e\xcb\x78\x79\x71\x81\x82\x8f\x90\x0b\x3e\x1e\xba\x8e\x8f\x62\x88\xf1\x00\x7d\x40\x18\xd4\x0e\x7b\x37\x35\x41\xe0\x5b\x77\xf6\xa1\x2d\x6c\x9a\x1a\x11\x81\x45\xf7\x36\x2b\xdf\x95\x3a\xfc\xf2\xde\x74\xa1\xcf\xb0\x2e\x68\x20\xc3\x56\xd5\x08\xa9\x27\xec\x3c\x7f\x91\xbe\x7e\xf0\x22\xb5\x19\xdb\xfe\xa2\x9b\xf4\xe5\xe3\x48\x6a\x40\x2f\x26\xde\x1d\xde\x53\x7b\x45\xec\x0d\xf2\x90\x7b\xf6\x47\x76\x50\x93\x34\x11\x24\xc6\xf7\xa4\xa0\x16\xc8\xc0\x89\xc5\xc4\x89\x0a\xf2\x5a\x41\x41\xb8\xf3\x50\xac\x91\x18\xa1\xd5\x20\xf7\x42\x5d\xa6\x46\x7d\x0b\xbb\x0b\xeb\x79\xe8\x73\x33\x21\x11\x8a\x9b\xe7\x7c\xc3\xd4\x7d\xab\x55\x1a\xcf\x20\x0c\x21\xe6\xb8\xbc\xdc\x4f\xe3\x74\x49\x44\x86\x3a\x81\xaa\x96\x7b\xd3\x7b\xab\x82\x4e\xdc\x83\x51\x87\xec\x24\xbc\x0a\xfa\x63\x03\xe1\xdd\x62\x39\xa5\x40\x65\x61\x37\x2a\x6b\x4a\xcd\x0c\x07\x09\x9a\x83\x24\xd3\x29\xaf\xb1\x0c\x5a\xaf\x8c\xea\x1b\xe6\x4f\x72\x00\x1a\x17\x85\x5b\x01\xe8\x95\xfb\xeb\x85\xfd\x6b\xe3\xb6\x7b\x7a\x78\x7c\x70\x78\x7a\xf1\xea\xf0\xf5\xdb\xc3\xd3\x4e\x27\xdd\xfb\xef\x8b\xb7\x7a\x3c\x42\x1d\x6c\x32\x7f\x96\xeb\xb9\x23\x45\x9c\x6c\x92\xde\x6e\x1e\xf0\xb4\x56\x10\xb0\x90\xb5\x9d\x1c\x1a\xd4\xe2\x09\xbc\x02\x65\x88\x4e\x23\x5c\x75\xe5\xff\x57\x25\x67\x7c\xac\x1b\x7b\x2d\xfd\xa5\x71\x54\x97\x4e\x78\xc1\x9f\xfe\xcd\x7d\x79\xdf\xfc\xfb\x6c\xba\x60\x0f\xd4\x62\x47\x5c\x7c\x97\xa3\x60\xd2\xa9\x6d\x82\x87\xc9\x36\x6f\x57\x59\xa0\xd4\x24\x0f\x7d\x9a\x3e\xe6\xd3\x7a\x79\xbd\xd5\xe5\xf6\x11\x72\x7b\xc5\xe5\x56\xae\xd2\x3d\xa4\x88\x85\xda\x45\x6f\xf0\xf9\x3f\x37\x5c\xaa\xba\x55\xaa\xe1\x53\x0f\x6e\x9d\xfd\xff\x37\xb6\x8e\xbe\x4b\x1b\xcc\x20\xf5\x3d\x95\xca\x36\xa5\xd8\xda\x8d\xe5\x74\x61\x12\x57\xbf\x41\x15\xfd\x92\x53\x84\xac\x10\x36\x4f\x56\x8f\x0e\x57\x0a\x14\x30\xdc\xea\x5c\x36\x64\xa4\x37\x09\x5c\x7b\x9e\xb8\xcd\xcf\x1f\xaf\x96\x82\xb6\xfe\x90\x72\x2a\xb8\xe4\xcd\x6e\xff\xa2\x77\xfb\xbe\xba\x19\xab\x2b\x17\xa9\x79\x1a\xb5\x3c\x8e\xb9\x91\x2b\x03\x46\xf6\x6e\xcd\x05\xfb\x8e\x37\xa2\x59\xd9\x8c\x05\x94\xdf\xe0\x92\xf0\x9a\xcb\x36\x5e\x90\xd2\x09\x0a\x39\xc9\x8c\xee\xa2\x21\x1b\xcf\x02\x39\xdb\xa7\xbd\x10\xc6\x24\x4e\xf0\xe0\x26\x20\x41\x83\x38\xb1\x43\xf0\xc6\xb9\x6c\x2c\x0c\x0e\x48\x2d\x8f\xca\x20\xd5\x80\x46\x2f\x78\x3a\xc6\x39\x7e\xc5\x11\x66\xce\xb5\x2d\x86\x31\x42\x00\xde\x1f\x14\xfe\xa2\x81\x89\x02\x8b\x6e\xf3\xa7\x0c\x17\xc8\x81\xbc\xfd\xee\xe6\xd5\x1d\xf4\x0f\x01\x77\x00\x49\x49\xc1\xe1\xdd\xd9\x7b\x76\x92\xc0\xe9\xe1\x2f\x33\x68\x19\x76\x8e\x01\xa7\xd1\x64\xdb\xb2\xac\xe8\x60\x38\xea\x37\xdb\xb9\x02\x43\xce\xfb\x4a\x5e\x97\xc7\x0c\x03\x94\xc6\x4f\x1a\x46\xd1\x3a\x8c\xac\xd3\x49\xb5\x41\xaa\xa8\x0f\x26\xf3\x86\x3a\x81\x99\xe9\x7a\x7d\x57\xff\x5e\x3d\x38\x8e\x5b\xb3\xae\x26\xe9\x56\xe5\xab\xe5\x72\x4b\xc9\x9b\x71\x1e\x16\x53\xc2\xe4\x5f\x41\x60\xcd\xab\x0a\x75\x0e\x74\xc2\x08\x75\x4d\xe6\x39\xe6\xa7\xbb\x59\x9e\xb3\x5b\xea\x23\x27\x43\xed\x47\xff\x23\xb7\xb2\xee\x15\xe0\xc0\x6b\x82\x72\x32\xc5\x3f\x69\xea\xf0\x81\x66\x9f\xde\x64\x73\xbf\xf5\xbe\xd2\x57\x8e\xc5\x41\x22\xf4\xb9\x9e\x50\xf9\x1c\xd6\xf0\x27\x0e\xa7\xcd\x65\xc1\xdd\xfc\x89\x9b\x5c\xbf\x1b\x92\xfc\xc8\x15\x7f\xe6\xf7\xc0\xcf\xbc\x9e\x8a\x3e\x71\x8b\xd1\x4f\xb6\x69\x50\xf8\x97\xc8\xc1\xf9\x5e\x3b\xe8\xf6\x9d\x04\x4f\x07\x21\x39\xb0\x2f\x40\x3e\x2b\xe7\xd9\x18\xe8\x94\xea\xf1\xaf\x9c\xdc\xb3\x69\xbf\xc1\xa6\x13\x25\x30\x72\x7e\x88\xdc\x29\x01\x0c\x49\xe2\xfa\x0e\xd3\xff\x3f\x53\xd4\x5e\xdb\xf2\x5b\xaa\xd4\xee\x1a\xa2\x25\x3b\x94\xde\x9e\x94\x8f\x29\xf8\x72\x69\x0b\xae\x18\xee\x8e\xc0\x59\x4b\x5b\x59\x9f\x29\x32\x98\x16\xb1\x4f\x06\xaf\x78\x9e\xf1\xd8\xf3\xac\xcf\x14\xbd\x6c\xea\x91\x45\x2f\x77\xc8\x9e\x20\x9d\x35\x5c\x19\xb2\xc5\xc6\xef\x93\x11\xae\x90\xf7\x10\x32\x1b\x4b\x54\x68\x30\x88\x25\x91\x62\xeb\xc6\xe4\x3d\xab\xe8\xa6\x78\xa7\x13\x75\x49\x0e\x7b\xa3\x20\x3d\x1b\x18\xa4\xb9\x12\x5c\x56\x08\xf3\x4e\x47\x0c\x1a\x3a\x26\x52\x0e\xbe\x4a\x7d\xbe\x5c\x8a\xe5\x32\xe3\xab\xd4\x4c\x13\x34\x96\x00\xe8\x2a\x4c\x93\xf9\x8d\x33\xe4\x11\x94\x0c\xd3\x33\x25\x0d\x01\x32\xc5\xf0\xfd\x68\x50\xf2\xb4\xc0\x05\x56\x7f\xe3\x1c\xbc\x8d\x02\xe7\xe5\x05\x82\xcc\x4b\xc1\x93\x02\xa9\x2f\x7c\x3e\xa8\x85\xfb\xab\xf0\x57\x1a\xea\x57\x09\x48\x60\xd6\x6e\x60\x74\x23\x2f\x7e\xcf\x72\x60\x81\xe2\x18\x14\xcf\xcd\xad\x56\x61\x1f\x70\x81\x73\x84\x86\x1f\x75\xee\x07\x0d\x96\x37\x45\x2b\xac\xd7\xb1\xdf\x14\x4a\x00\x82\x95\xa0\x69\xce\x71\xe0\x8a\x84\x56\xf8\x8a\xb6\x7c\x30\x75\x67\xa6\x9a\x12\xac\x87\x70\xf5\x11\x80\x9e\xcd\xb2\x72\xd6\x5c\x57\x2d\x3f\xd9\x0a\xe7\xc5\xd5\xda\x8e\xce\xab\x1d\xbd\x5e\x54\x3b\x6a\x6c\xb8\xb5\x94\x65\x3d\xd0\xbf\xa4\x9c\x08\xb5\x57\x86\x13\x3e\xb2\x64\xcc\x66\x11\x8c\x15\x83\x22\xd0\x0a\x5e\x43\xba\x4a\x36\x7c\x3f\x22\x62\xf8\x61\x84\x99\xfa\x5c\x4d\x33\x5b\xe1\xe4\xf7\x05\x15\x77\x3b\x73\xf0\x44\x48\xd6\xf6\xfe\xae\xda\x7b\x41\xb3\x49\xc1\xf3\xbb\x46\xfa\xd2\x74\x3c\x55\x4f\x96\x4b\xba\x6a\x98\xfd\xc8\xf5\xaa\xa0\x10\x38\xbe\xe0\x97\xc5\x82\x4f\x9a\x3b\xe5\xd9\x93\x7a\x65\x01\xbf\xbb\xe0\x39\x2d\xcb\x3f\x4b\x54\x9f\x39\xe2\x8a\x56\x2e\xbb\xf9\xda\xc9\x92\xd5\xc9\x4a\x76\x68\x36\x9e\xed\x30\xbe\xe6\xbb\xcf\x4d\x83\x81\x6f\x19\x9f\x2f\xe4\x0e\x78\xcb\xac\x6d\x56\xd4\x9b\xe5\x85\xb8\xce\x72\xf6\x85\x3e\xa6\xdb\x45\xfd\xfb\x99\xbc\xce\x77\xca\x6c\xfa\x40\xcb\xbc\xfe\xe5\x15\x95\x3b\x86\x13\xd8\xb9\xc9\x44\xd2\x97\x81\x07\xc6\xfb\xcc\x5b\x56\x1b\x97\x47\xf3\xde\x4d\x27\x01\x5b\x95\x93\xe1\x9f\xb5\x98\x83\x06\x32\x64\x9d\xcd\xc3\x7e\x4c\xf5\x01\x79\x93\xa7\x02\x73\xd0\x23\x39\x8d\x74\x4b\x0f\x42\x71\x18\x3c\x08\xe2\xda\x04\x69\x49\xd5\x08\xb9\xa5\xcb\x2e\xd0\x5b\x17\x8e\x93\x26\xd7\x19\xe3\x09\xea\x37\x8c\x48\x95\x7f\xc9\x41\xfd\xf8\x1b\x4f\x79\x04\x60\x2f\x10\x5a\xad\x1a\x24\x97\x5f\xf9\xd0\x31\x5f\x23\xf2\xce\x64\x47\xfb\x07\x27\xf7\xe6\xda\x07\x74\x28\xbe\xc2\x31\xce\x67\xe4\xf7\x09\xe2\x93\x56\x84\x95\x64\xa8\x47\x67\x20\x81\x8b\xcb\xdf\xce\x8b\x57\x26\x25\x89\xe7\xb7\xf4\xcb\xcb\x05\xcb\xe5\x11\xd7\x3c\x60\x49\x7e\xe5\xd1\x63\x0b\x4f\x53\x92\x7f\x54\xa2\xea\x21\x35\xb0\x56\x65\xd8\xaa\xc6\x75\xf6\xb8\xa9\xd4\xa2\x94\xc5\xb5\x09\x91\x68\x78\x1f\x35\xf0\x8a\xc9\xd2\xc2\xae\x45\x2f\xde\xb0\xb2\xa4\xee\x55\x53\xcb\x6a\x3f\xda\xf7\x33\x18\x5d\xed\xa5\x01\xbd\x03\x42\xd5\x7d\x93\x8d\x45\x51\x3e\x4f\x9b\xbd\x23\x18\xcf\x19\xa7\x25\xb8\x46\x5c\xe6\xc5\xf8\x93\x46\x93\xe3\xdd\x6c\x32\x49\x13\x6b\x0d\x79\xcd\x11\xae\x2d\xaf\x29\x63\x99\xeb\xdf\x39\x90\x20\xf5\xc8\x78\x23\x9c\xfa\x27\x40\x1d\x12\xbc\xe7\x9f\x48\xfa\x59\x6a\xa7\xc4\x33\xfb\x50\x8d\x9d\xf1\xab\xf4\x03\x38\x24\x42\x29\x68\xfd\x93\xfd\x6d\x0b\xbc\xe7\xc8\x24\x52\xfe\xc8\xc3\x4c\xca\x69\x0f\x7f\xe4\x43\x39\x42\xea\xf8\xa0\x95\x4f\x41\x60\x05\x1f\x33\x25\xaf\xb3\x2f\x00\xd2\xa0\x1e\xc1\x8e\xfe\x60\x50\xee\xb0\xb5\x1b\x35\x98\x54\x1e\x0b\x5b\x14\x64\x6a\x69\x07\x2b\xda\x88\xad\x11\x5c\xdb\x45\x64\x80\x48\x94\x56\x11\xe9\x1a\x2b\x6b\x6f\xdb\x1c\x19\x1b\x20\x2c\xc2\xa7\xd6\xab\x60\x8d\xf0\x27\x83\xfb\x8e\x80\xbd\x6f\xed\x86\xdc\xde\xc6\xa2\x8a\x6f\x0b\xc3\x68\x05\x26\x35\xfd\x1b\xd2\xd1\xa3\xf1\xab\x1c\xe7\xd1\x30\x3e\x93\x85\xe6\xa2\x06\x67\x55\x95\xc0\x07\xa9\x20\x60\x09\x0d\xe7\x83\x21\x64\x06\xd8\x78\xa2\xb6\xb7\x31\xb7\x69\xdd\x1f\x05\x8e\xd5\x34\xd4\x68\xd2\x3d\x3c\x56\x15\x5b\x76\x1d\x70\x55\xb0\xbc\x17\x75\xbc\xaa\x8d\x86\x36\xab\x9b\x28\x4e\xfa\xbc\x6e\x7e\x23\xaa\x64\xc5\x50\x6f\xc8\x03\xd9\xa4\x9d\xbe\x81\x76\x4f\xaa\x8b\xc1\xe9\x50\x4c\x96\x98\xaa\x49\x90\x0d\x52\x4e\x2c\x02\x9a\xe8\x47\xc7\x75\xa5\x73\x52\x97\x2e\xf1\x34\xc7\x12\x81\xe3\x96\x65\x81\x4c\x3e\xc2\x94\x62\x86\x5a\xa9\xe9\xf6\x36\xea\x37\x93\xe0\xed\x6d\xc5\x61\xd6\xc3\x8a\xaa\x58\xc6\x26\xa4\xbc\x66\xec\x34\xb1\x4d\xc1\x45\xd4\x36\x4c\xe9\xd0\x70\xdd\xce\x35\x98\xb9\x16\x10\x3f\xac\x44\x0f\x09\xe0\x72\x2b\xb0\x94\x0f\x1d\x0f\xd2\x70\xf9\x0d\x2b\xc6\x7b\x6f\xb4\xdd\x30\xaa\x44\x22\x8d\xe9\xaa\x20\x14\x67\xe4\x17\x9e\x82\xeb\xe3\x22\xa7\x10\x3a\xa5\xbf\x44\xb8\xac\xb8\x5f\xea\xc3\xd2\x4f\xb6\x0b\x9c\xa1\xe5\xb2\xed\xa5\x73\xb9\xd2\x6a\x0a\x9f\xd4\x5e\x90\x52\xc9\x0a\xfa\x64\x42\xf2\x30\x60\x00\xdd\x1f\x5d\x56\xea\x21\x18\x55\xf5\xa0\x69\xc0\x2e\x07\x70\x7d\xd2\xb9\x0d\x39\x01\x6e\x07\x58\x66\x13\xfd\x1a\x71\x82\xfd\x94\x76\x39\xbd\x35\x98\xd7\xd9\x25\x9c\x1b\xcc\xfd\x2e\x8b\x4a\x2b\x19\xb9\x46\x09\x2e\x1e\x3e\xb6\x10\xc6\x15\x15\x43\x20\x90\xc2\xc4\x83\xec\xe4\xd7\x05\x6e\x29\x53\x2a\x22\xcb\x1c\x6d\x54\x71\x35\xe9\x76\xe2\x10\x34\x37\xe7\xfa\x9b\xa4\x8a\x66\xfa\x48\x4a\x55\xe5\x8e\x6a\xd4\xf9\x02\x12\xc9\xaa\x4d\xf1\xb2\x10\xc7\x56\x3f\xd4\xa4\xf6\xc7\xce\x78\x2c\x42\xbd\x64\xbf\xef\x12\x7d\x40\xaa\x5a\x01\xe7\xc2\x26\x88\x12\xdb\x4a\x8e\x71\x3f\x7b\xe0\x17\xa7\xb5\xe6\x32\x50\x47\xf1\x2a\x5a\xee\x93\xee\x66\xec\x74\xe7\xb8\x0c\x57\xc5\x7d\x8e\x52\x7b\x1c\x32\xdc\x72\x14\xb4\x76\x5d\xe7\xa5\xc6\x39\x09\xd3\x9f\x8d\x49\xe8\x24\xdc\xcf\x23\x7f\x89\x71\x8d\x84\x4c\xc9\x5a\x1e\x13\xe8\xc9\x38\xce\xef\x3f\x75\x41\x01\x26\xa0\xe8\x81\x7c\x6b\x80\x4d\x56\xab\x3e\xc1\x3f\x73\x9c\x41\xcd\x8b\x4e\x67\x2b\xef\x74\x8c\x62\xd5\x25\xc2\x38\x39\x7e\xfd\xf1\xe2\xc7\xd7\x47\x6f\xde\x1c\x9e\x5e\xec\x9f\xbc\x79\x7b\x72\x7c\x78\x7c\x7e\xe6\x86\x00\xf4\x9f\xf2\x74\x81\xf0\x3c\x45\xeb\x79\x65\x20\x69\x63\xac\xce\x95\x6a\x31\xef\x74\x72\x7b\xd8\x53\x41\xbe\xe2\xa9\xf9\x89\x9c\xf2\x33\xbe\xd1\xdd\x00\x0c\x83\xed\x96\x48\xd8\x74\x05\xbf\xc8\x34\xc3\x39\x66\x78\xb1\x5c\xca\xd8\xd8\x91\xf6\xf0\x61\x77\x2e\xd8\x4d\x26\x01\x2c\xe6\x2d\x42\x8f\xef\x72\x81\x70\x61\xb2\x61\x2f\x96\xcb\x1c\x48\xc9\x1b\x68\xcb\xb7\x13\xd0\xbd\x6a\x5b\xc7\xc8\x28\xf2\x17\x9a\x83\xb0\x44\xea\xb1\xcd\x5f\x43\x1e\xec\x75\xbb\xdd\xcc\x08\xa9\xb9\xbe\xb4\x88\x25\x15\x25\x73\x5b\x29\x7b\xe5\x1b\x41\xd3\x9b\xad\x4d\xb3\x3b\xc6\xc4\xd5\x4f\xb6\x2b\xbc\x47\x43\x65\x9a\x1d\x50\xab\x6f\x5c\xe7\xa4\x20\xf7\x9a\xbc\xd6\x51\x4f\x81\x25\xa7\x02\x79\x3e\x60\x85\xb9\x20\x07\xe9\x3d\x9b\xf4\x93\xff\xf3\x73\xfe\x86\x4f\xbe\x1b\x27\x18\xe4\x95\xfe\xd7\xf7\x89\x76\x83\x28\x93\xfe\x30\xe9\x4c\x4c\xc8\xee\x08\x27\x60\x74\x03\x4d\x5e\xd2\x1f\x0e\x77\xbf\xc3\xbb\xa3\x11\x86\x4c\x80\x37\x59\x9e\xf4\xa7\x59\x5e\xd2\xd5\xd7\xf8\x9a\xca\xac\x7f\xef\xcf\x78\x3f\x99\x67\xe3\x4f\xd9\x15\x2d\xbf\xd1\xf1\x6b\x16\x0e\x27\x67\x97\xdf\x58\x16\xa2\xfc\xc6\x1b\x3e\x66\x97\x65\xb2\x5a\x21\x2c\x5c\x1f\x7f\xdf\x2b\x7f\xdd\x7d\xfd\xbf\xdf\x35\xf6\xb1\xde\x33\x3c\x7c\xb6\x8b\xad\xb0\x35\xc2\xd0\xb1\xbf\xb2\xab\xba\x66\xd7\x4f\x26\x48\xb2\x23\x8b\xf9\x4e\x4e\x6f\x68\x9e\xe0\x42\x10\x2d\xf8\xe3\xac\x4d\x0e\x8f\x31\xeb\x2e\x02\x3c\x66\x9f\xce\x4d\xd1\x1a\x2a\xac\x83\x23\x1c\x8c\x3a\x64\x9d\x61\x07\xcd\x27\x53\x9d\x43\x84\xa7\xce\xed\xef\x5e\x75\xc4\xfa\xfc\x59\x17\xc0\x7b\xa8\xac\xcf\x31\xe3\xb2\xb0\xd6\x09\xe3\x31\x56\x08\xed\x47\xc6\x22\x47\x31\x9b\x40\xcc\x79\x91\xad\x56\x71\x82\x42\x41\xa7\x7d\xe6\xbe\xf4\x75\x35\xfb\x9d\x59\x1f\x44\x1f\xae\xf0\x59\x52\x3e\x69\xf2\x3a\x6d\x74\x2e\xf8\x57\xc0\xcb\x55\x5d\xa0\x02\x0c\xa2\x81\x65\x65\x3c\x1e\x0a\xae\x41\x59\x60\x0e\xa0\x42\xb5\x82\x52\x43\xb3\x68\xb7\x6c\x41\x8b\x39\xe5\x1a\x9e\x30\x1c\x69\x54\x5b\xe0\xc6\x5d\xed\x54\xa0\xda\x0c\x37\x11\x28\xd1\xec\x0e\x02\x76\xb4\xea\x42\xa8\x9d\x79\xd5\xdd\x2d\x87\x59\xf7\xe4\xc3\xf1\xe1\xe9\x08\x14\x64\x0f\x24\xd2\xb1\xfc\x88\x35\xdd\x90\xda\x06\x56\xe4\x10\xd2\xa2\xd4\x22\x02\xe8\x60\x52\x8c\x61\xee\xbb\xa0\x83\x3e\xa3\x39\x55\x6b\x95\x52\xd4\xa7\x3a\x7a\xdd\x82\xdb\xa3\x18\xd9\xde\x8f\x25\xa9\x66\xa6\xb2\xd0\xf7\x8f\xc8\x77\x53\xcb\xe6\x18\xa6\xa0\xac\x79\xb6\x0b\x3a\x75\xe8\x2b\x0f\x07\x5e\x1b\x87\x3f\xda\x3d\x0d\xf3\x7f\xbd\xc4\x81\xe7\xe3\x01\xa6\xdd\x7d\x13\x6b\x48\xee\x28\xa6\xdd\x73\xfa\x59\xbe\x64\x34\x9f\x90\x2b\xfb\x73\x4f\xd0\x8c\x5c\xaa\x5f\xaf\x19\xff\xe4\xee\x24\x72\xab\x1e\xf9\x9f\x13\xf5\xf3\xf4\xe4\xe4\xfc\xe2\xf4\xf0\x25\x19\xab\x5f\x46\x86\x79\x85\xa9\x11\xba\xc9\x3b\x4c\xbb\x87\x21\x65\x91\x98\x76\xcf\xb2\x29\xd5\x18\x5d\xe4\x77\xf5\x19\x2d\xc7\xd9\x9c\x1e\x7e\x9e\x0b\x5a\x96\x31\x87\x07\x97\x9e\x5d\x45\x0f\xf9\x05\x8f\xc1\x77\x53\x16\xaf\xce\xdf\xbc\x46\xde\xc9\x13\x7e\x6b\xdf\xd7\x58\xc4\x4b\x12\xf5\x6c\xcb\x49\x7c\x74\x3b\x49\x36\x28\x49\x92\x6d\x87\x70\xfe\x9e\x1a\xb0\x06\x34\x50\xcb\x37\xcf\xb3\x31\x4d\x3f\x52\xfc\xa3\xda\x1d\x6a\xfe\x67\xf2\x3a\x57\xbd\x27\x3f\x51\xc8\xa9\xa3\xda\x82\xdf\x5f\xc1\x64\x58\x7a\xf9\x45\x8d\xf2\x88\x53\x21\xdd\xa3\x57\xfa\x91\xc3\xbf\x77\x2f\x5e\xa8\x17\x17\x82\x96\xd4\x15\x8e\x9c\x62\x5c\xfe\x3e\xd2\xd3\xa7\x15\xfc\x8b\xa8\x94\x39\x6d\xcc\x4c\xaa\xb5\x4f\x90\x44\xef\xb5\x24\x67\x5d\x73\x79\xaa\xff\xa9\xb0\x08\x0d\x8a\x7d\x5c\x08\x41\xb9\x3c\x5d\xf0\xd7\x45\x31\x47\x29\x5a\x2e\x1b\x73\x3c\xa4\x89\x01\xb4\x4b\xb0\x4d\xd7\x87\xf0\x6b\xf0\xb6\xb9\x66\x25\xcc\xca\x15\x95\x0d\xea\x07\x58\xa3\x77\x70\x16\x4f\x6e\xb9\xc9\xa9\x7e\x97\x7a\x17\xda\x77\xd2\xc8\x22\x65\xe3\xf7\x81\xb6\xff\x9d\x46\x35\x81\x15\xc8\xca\xc6\xb6\x5c\xc9\x7a\x7b\x95\x2e\x36\xb9\x1c\xbd\x93\x95\x7e\xc4\xa4\xf0\x9d\xd4\xc9\xa3\x4a\x2a\x17\x73\x1d\xd4\xe8\x52\xe9\x85\xe5\x7c\x9e\xaa\x34\xb9\x61\xf4\xb6\xef\x7c\xcf\x33\xc8\x40\xef\xdf\xba\x3b\xc9\x95\x10\x50\x82\x71\x25\x4e\x43\x00\x52\x5c\x81\xfb\x22\xf8\xd3\xbd\xad\x7c\x59\x52\x71\xc3\xc6\xb4\xbf\x33\x29\xae\x77\xc6\xb3\x8c\x5f\xd1\x32\xc1\x89\xa5\x7c\x09\x0e\x4b\x98\x67\xeb\xaa\x90\x82\xd2\x9d\xb1\xbd\xd8\x34\x40\xc0\x83\x95\xb9\xb1\xd6\x39\x75\xcc\x2b\xb3\xe1\x6a\x30\xbc\xce\x4e\x40\xcb\x13\x4c\xe5\xda\xfa\x8e\x14\xe7\x59\xe9\x7e\x30\x59\x96\xe1\x84\x54\x70\x95\x0f\xd5\x57\x26\x69\xcf\xcb\x42\x9c\xdf\xcd\xa9\xd5\x71\x24\xf8\x1e\x70\x16\xb8\x64\x26\xfb\x6c\xdc\x63\xa3\x09\xc9\x8b\x71\x82\x7f\x8f\xfb\x17\x78\x6c\x44\xa1\xdb\x57\x74\x7d\x31\xad\x39\xbf\x6c\x2f\xe5\x83\xc4\xef\x5a\x0b\xe5\x8c\x7f\xda\x91\x45\x82\x6f\x29\xc2\x8f\x14\xfe\x96\xcb\x35\xb3\x7b\x8c\xf0\x44\x1f\x21\xd8\xfc\x7b\x3e\xc0\xb6\xe5\x04\x34\x6d\xa2\xc6\x65\xb5\xd7\xa8\xcb\x5f\x15\x6f\xa5\xa6\x6d\x57\x59\x65\x7b\x23\x27\x38\xa1\xfc\x26\xfc\xbc\xa9\xc1\x96\x2d\xa7\x5a\x32\x79\x39\x12\x5c\x93\x5f\x28\xba\x2f\x6f\x99\x1c\xcf\x52\x0a\x41\xcb\x27\x26\xc5\x93\x49\x0f\xf3\xa6\x98\x50\x74\x3f\xce\x4a\xaa\x2a\x64\x60\xf1\x4c\xfa\xce\x27\xdd\x3d\x33\xb9\x3a\xbb\x97\x8c\x4f\x4c\xf8\x0c\x7c\x24\xe8\xec\x6e\x22\xd4\x46\xed\x3b\x03\xbf\x7d\xc6\x0a\xde\xf0\x99\x21\xe7\xbe\x78\x94\x0c\x34\x28\xb9\x5a\xad\xd6\x9d\x69\x37\xe4\x24\x18\x56\x82\x93\x70\xca\xfa\xda\x74\xd8\x3a\xe9\xbe\x8e\xc6\xaa\xd7\x9e\xda\xdf\x10\x7e\xd9\x5e\x73\x98\x4a\xa5\x7e\x70\x7f\x43\xf1\x5a\xda\x0f\xa1\xf9\x04\xbf\x90\x6d\xaf\x99\xba\x92\x13\xfc\x4a\x22\x3c\x77\x3c\xe2\x53\xb6\xac\x66\xc6\xda\xb7\xac\x25\xb6\x6b\xf6\x9a\xa3\xc7\x4d\x7b\xcd\x99\x80\x0d\x25\x0d\x59\x65\xd9\x3d\x38\x79\xb3\xaf\xbf\x4e\x39\x5a\xad\xd6\x34\xd2\x40\xb1\x9f\xd8\x5c\x6a\x27\x68\x00\xed\x9e\x0b\xea\x45\x1b\x56\xf0\xbe\xe8\x1e\x17\x13\xda\xf0\x06\xe9\xbe\xad\x34\x57\xa3\x7b\xa7\xed\x95\x11\xa1\xf8\xe8\x12\xcc\x41\x49\xfa\x79\x4e\x05\x53\x7d\xc8\x72\x53\xfa\x23\xc7\xb4\xbb\x77\x59\x4a\xc5\x31\xd5\x34\x23\x52\x6e\x50\x8f\xf4\xe8\x01\x2f\xff\xa1\xd8\xac\xe3\xf7\x27\x3f\x1d\x92\xf7\x6a\x7b\x29\x86\xeb\x32\xa7\x2f\x0b\x41\xce\x14\x8f\x76\x40\x2f\x17\x57\x67\x32\x1b\x7f\xb2\xba\x4c\xda\x0d\x72\xcc\x66\x02\xc7\x89\x32\x1a\xe4\x8e\x5a\xde\xde\xdd\xc6\xbc\xbd\xbb\x61\xde\xde\xdd\x51\xff\xde\x62\xed\xde\xb7\x24\xee\xe8\x6f\x6d\x49\x9f\xd4\x63\x1c\xbd\xc3\x3e\x5f\x07\x14\x0b\xd2\x77\x18\xda\xfc\x80\xee\xc8\xbb\x1f\x6a\xbd\x0d\x35\x76\x88\xab\x86\x2f\xbf\xe2\x6a\x6f\xa5\x26\xb9\xea\x35\x95\xd9\x37\xa0\xec\x4d\xf0\x30\xa1\x9f\xe7\x85\x90\x3e\xf5\x2a\xbc\xcd\xd9\xe5\x37\x00\x8a\x38\xc2\x71\xab\xc9\xa2\xa4\x9b\x8a\x7b\x1f\xcb\x64\xc3\xf8\x0a\x41\x70\x13\xf5\xfc\x99\xba\xa2\x17\x8a\x31\x56\x67\x82\xf2\xc5\xb5\x5e\xb1\xfe\x56\x2f\x76\xa9\x0a\x7c\xa0\xec\x07\xea\x0c\xb4\xd6\xaa\x81\x0e\xdf\x00\x56\xe3\x23\xeb\xf5\x9f\x3c\x50\x73\x39\x16\x6c\x2e\x0b\xf1\xb2\x10\x4f\xa8\x3c\xf8\x6a\x6d\xfd\x90\xab\xd3\x94\x7d\x74\xf5\xe1\x47\x6b\x6b\x7f\xd2\x8c\x3c\x38\x17\xd7\x4f\xa9\xed\xfa\xa1\xda\xe6\x94\x7e\x7a\x52\xff\xec\x07\x6b\x6b\x2d\xa9\x7c\x52\xa5\xa6\xfc\xda\x3a\x5d\xc0\xdd\xa3\x6b\x75\x5f\xac\x00\x49\x2d\x3e\x5f\xee\x04\x35\x1c\xb1\xcb\xec\x92\xe6\x09\x4e\xfe\x0e\x3f\xbf\x99\x28\x0a\x16\xfe\x9c\x0b\x3a\xce\x24\x9d\xec\x4c\x69\x26\x17\x82\xfa\x2f\xe3\xcb\x4b\x3f\x5b\x48\x96\x97\x95\x83\xea\xdd\xce\xa3\x03\x4b\xdd\x41\x23\x14\xd6\x8e\x50\xd8\x10\x84\xfa\xc1\x78\x2a\x6a\x66\x8d\x4c\x31\x75\xcb\x42\x66\x98\x06\xa7\xaa\x81\x98\xaa\x1b\x60\xc3\x51\x4f\x08\x73\x8e\x52\xd3\x46\xa7\xa6\x25\xa2\xc6\x1b\x07\x07\xaa\xba\x3e\x8f\xe3\x9a\x9d\xcf\x22\x74\xcb\x9f\x92\x52\xe7\xf2\x88\x4e\x4e\x63\xfc\x31\x18\x33\x69\xa7\x53\x35\x76\x6e\xd2\x4e\x07\xb0\xeb\xe3\x3a\x56\xc6\x39\xdf\xec\x1d\xa7\xb3\xc1\x65\x34\x71\x69\x0f\x17\x1e\xd2\x76\xc1\xf5\x1e\x9b\x24\x08\x2f\xec\x3c\xaf\x8f\x33\xbe\x30\xa1\xf5\x56\x31\x3a\x33\xf9\x13\xed\xf0\xe2\x17\xb7\x99\x1c\xcf\x18\xbf\x8a\x9f\x5e\xb3\xcf\x8c\xbb\x92\xa2\xfb\xe2\xe8\xf8\xe0\xe8\xf8\x47\xeb\x7b\xdf\xe9\xb0\xc8\x33\xbf\xf6\xda\x78\x40\x28\xb6\x93\xf1\x2b\x5b\x91\xcf\x52\x3c\xaf\xf4\x62\x3c\xcb\x18\xff\xa0\xba\x42\xab\x1d\x84\x57\x95\x67\x32\xbb\xaa\x3d\xa8\x14\x99\xe6\xea\x91\xf9\xa5\xbd\xe0\xad\xfe\x1a\x66\x3e\xc0\x4b\xe8\x8e\xbd\x72\xd6\x63\x27\x04\x0f\x83\xb5\x32\x86\x2a\xc5\xbe\xf0\x5a\x57\xdd\xe3\x97\x8c\x03\x7f\x3f\x21\x5b\xbb\x4d\x0e\x46\xac\x3c\xe2\x4c\x32\x53\xa6\xcd\x44\x0b\xe5\xb7\x48\x35\x41\x75\x83\x8a\xcf\xe5\x4b\x65\xa5\xda\x20\x07\x36\x59\x66\x8a\x6c\x3e\x0c\x7d\x08\x83\x17\x1b\x21\xd0\x00\xcd\x26\x8a\x4c\xed\xc3\x54\xa7\xc1\xc1\xa3\x41\xae\x9b\x5a\x5a\x62\x56\x9e\xc1\xbc\xfa\x0c\xd2\x6d\xd8\x1d\x17\xb3\xac\x7c\x99\x67\x57\xe9\x33\x54\xd3\x74\xae\xab\x23\x58\xca\x25\x79\xb6\xb6\xf5\x46\xad\x57\xdc\xf8\x77\x0f\x34\x1e\x57\x11\xb5\xfd\x5d\xb5\xed\x68\x36\x1f\x6c\xf9\x3f\xeb\x2d\xb7\x56\x10\xb5\xfb\x9f\x15\x7b\xa0\xa9\xb0\x61\xcb\xa4\xc1\x77\x1d\x8a\x48\x6d\xdb\x5c\x5c\x51\x79\x22\x74\x1e\xaf\x93\x5b\xfe\x26\x9b\xb7\x6d\xbc\x21\x1d\x99\xdc\xb8\x43\x3a\x6a\xc2\x78\xa8\xba\x1c\xc4\x35\x9f\x35\xc3\x35\xd4\x6b\x56\xd2\xcb\x19\xad\xaa\xc7\x2f\xa6\x8c\x4f\x8e\xb4\xc9\x83\x4e\x76\xe3\x10\xce\x4a\x5e\xf1\xe7\x16\xd2\x4e\x47\xd5\x78\xf4\x0b\x49\xf8\x90\x8e\xbc\xe1\x73\x83\x13\x6e\xe0\x3e\xaa\x0e\x05\x51\x73\xcf\x2a\xec\xb1\x6d\x50\x23\x99\x85\x4d\xb2\x6a\x93\x9c\x30\xd5\x64\xc0\xf3\xa7\x80\xaa\xe1\x7b\x21\x36\x18\x61\x8f\xe9\xc5\xb7\xb5\x0b\xcd\xf6\xc3\xfa\x33\x84\x3d\xc9\xaa\x3d\x11\x24\xab\xf6\x84\x11\xa1\x7a\x12\x3e\x2a\x08\x0b\x60\x7f\x37\x8b\x8d\x8c\x64\x2d\x9d\x9b\x65\xe5\x11\x77\xbd\x8b\xd7\xb7\x32\x4b\x51\xcf\x44\x7d\x8e\x84\xee\x59\x25\xfc\x69\xab\xb7\x21\x88\xb0\xad\xdb\x60\xb6\xb8\x17\xb7\xaa\xf1\x03\x75\x73\x34\xdf\xf6\x7a\xff\xd7\x36\x79\x9a\xc0\x75\x93\x20\x08\x1c\xa2\x23\xef\xd8\xc6\x20\x80\x4c\xb4\xed\x71\xcc\x86\x72\x54\xc5\x59\xd0\x9c\x42\xa5\x0f\xb1\xb7\x5e\xbc\x92\xb6\x79\x1c\xba\xed\x05\x8c\x49\xaf\xcf\xab\x5e\x69\x65\xa5\x01\x77\x82\x3c\x3b\x54\x6f\xe8\x99\x6f\xa8\x72\x9e\xa6\x85\x38\xcc\xc6\xb3\x23\xde\xd0\xef\x68\x7b\x9b\xec\xea\xf5\x8c\x38\x76\x39\x8b\xfa\x72\x16\xfa\x32\xaf\xed\x7a\x75\xf6\x6c\xe5\x8b\x4d\xc6\x37\x05\x4a\x33\x7f\xe5\x66\x03\x73\xf6\xfb\x19\x82\x9d\xb0\x40\xcb\x65\x9a\x81\x23\xf0\x02\x61\x31\x5c\x8c\x20\xbc\xa9\x24\xe5\x72\x39\x1c\x21\xad\x13\x58\x20\xb4\x51\x90\xc2\x6e\x93\xb0\x2b\x25\xd2\x30\xbb\xbd\x2a\xcc\xae\x4c\xcb\x21\x1b\xa1\xfa\x56\x32\x10\x56\x4d\x5a\xff\xf6\x9d\xa4\xd8\x8c\xaa\xc3\x95\xbd\x3c\xd7\x56\xa6\x3e\x6c\xed\x43\x0b\xb0\x39\x7c\xb5\xce\xbb\x10\xd8\x20\x1a\x26\xe2\xa8\x7b\x11\x06\xbd\x5b\xd7\xb9\xe6\xbe\xed\x47\x5c\x59\x5b\x2f\x23\xde\x6d\x6d\x7f\x63\x2e\xef\x91\x3d\x6f\xe9\x44\x65\x0c\x51\xd5\x6b\x46\xf3\xc0\x30\x5a\xfa\x1f\x32\xa2\xb2\xd2\x71\x8b\x2e\x2b\x3d\xa2\x94\x71\x30\x36\xf0\x52\x71\xfb\x29\x45\xdd\x71\x31\xbf\x3b\x2f\xd2\x06\xa7\xcf\x98\x13\x6b\x1d\x6d\x7c\x45\xa6\x89\xe9\x5b\x75\x6b\x02\xc9\xfc\x60\x19\xfc\xf8\xe8\xb7\x6f\x72\x2b\x11\x24\xc8\x59\xd7\x62\x02\xd8\x50\x63\x3c\x95\x35\xca\xe4\xaa\xc4\x4d\xfe\xb2\x83\x5e\xbf\xd2\x0a\x04\x00\x7c\x66\x0d\x89\xdd\xea\xbc\x46\x9a\x18\x69\x25\x41\x40\x3f\xaa\xf4\x6f\x96\x95\xf5\xba\xaa\x5c\x5a\x7c\xbd\xf9\x2a\xdb\xa8\xe9\x1b\x2d\x1f\xad\xe3\x4d\x5c\x80\x4e\xc0\xa4\x44\x0c\x8a\x95\xb2\x10\xf8\xc5\x85\xc0\x49\x86\x36\x0a\x2c\x6d\x7b\x69\xe4\x7e\x62\x2e\xcf\xe5\x32\xd5\xb1\x13\x12\x61\xaa\x76\xd3\x0a\x21\x1c\x30\x3a\x4d\xd7\xa7\x97\x02\x1f\xbb\x1d\x02\xc9\xb1\x75\x47\x34\xd7\xfb\xc0\xa6\x08\x2b\x0e\xf6\x85\x24\x84\x94\x0e\x9f\xae\x7a\x3c\xae\x8b\x9b\x96\x51\x98\x31\x54\xc7\x99\x52\x5c\x36\xaf\x61\x5b\x35\xc1\x42\x1a\x7e\x06\xb3\xca\x52\xd6\x18\x1b\x49\x44\x24\x63\xfb\xdb\xaf\x50\xb7\x9f\x44\x29\x23\x81\x1f\xbc\x5d\x61\xa6\x6f\xbf\x42\x2d\x25\x83\xa5\x2c\x10\x4e\x39\x91\xc3\x62\x84\xd4\xb5\xd6\xe9\xd0\xb4\xc0\x1c\xa1\x90\x3f\xaa\x9d\x95\xf3\xe2\xb5\x13\x48\xab\xfa\x1b\x74\xef\x0f\x5a\x2c\xa4\x3a\xc2\xe6\xa5\xd9\xe1\x08\x55\x45\x59\xa3\x8e\xb7\x08\xd3\x35\xae\x15\x64\xd8\x86\xe6\x03\xa1\xb4\x41\x2e\x7e\x6a\xaf\x36\xec\x74\xba\x9c\xac\x7a\x2e\xec\x82\x28\x2a\xed\x57\x83\x12\x19\x7c\x8f\x1a\xaa\xac\x0e\xd2\xa7\x70\xc0\x5b\xb2\xb1\xc3\xcf\x91\x24\xd2\xb4\xba\xd1\x2e\xee\xf7\x56\x4d\x3b\xf6\xa5\x28\xae\xdb\x96\xa8\xc2\xdc\x47\x0c\x74\x8d\xe3\x12\x8a\xe3\xf2\x23\x33\x5c\x8f\xb0\xc9\x14\xbf\x7b\xce\x7e\x50\x3c\xd0\x0e\xf9\x0e\xb1\x69\x2a\x86\x6c\x44\x34\xb2\xd8\x16\x5f\x2e\xc5\x90\x6d\xef\x8e\xf4\x9d\xa6\xfe\x7e\x36\x02\x58\x37\x68\xa2\x30\x37\x18\xaa\xde\x33\xf1\xfa\x5a\x4f\xd6\x86\x61\x99\xd1\x6c\x08\x48\x5d\x37\xa6\x29\xc3\xdf\x21\xc5\xa4\x15\x8d\xf3\x79\x29\x68\xf6\x29\x64\xe7\xe2\x79\xbb\x36\x37\x46\xd3\xac\xfd\x89\x23\x5a\x99\x3a\x9d\x2f\x45\xfa\x74\x29\xe4\x3b\x9d\x48\x11\x26\x6d\x92\x32\xc2\x00\x47\x02\x06\xa6\x26\x74\xcd\x50\x6a\x02\xcc\x26\x83\xa0\x16\x2b\x56\x80\x27\x1d\x4a\x29\x1e\xde\x7f\xa2\x77\xfd\x44\x97\x4d\xaa\x7a\xe1\x68\x93\x1b\x55\x5e\x23\x53\x42\x49\x1e\xf3\x21\x91\xf2\x4f\x12\x8b\x86\xb7\x5c\x52\xcd\x71\x2f\xf2\xbc\x3f\x4f\x35\xa7\xb5\x1a\x21\xed\x15\xf6\x07\x54\x7b\x8b\xea\xad\xf2\xc2\x6a\xf9\x1e\x7b\xa5\x58\xb5\xa0\xbb\x4f\x16\x95\xfb\xa4\xa1\xc6\x75\x1c\xd0\xb3\xb0\x4e\xb8\xb2\x17\x75\x72\xdf\x58\xe7\x63\x2e\xed\x9a\x66\xc1\xeb\x35\x3d\x99\x67\x9a\xcc\xbb\x15\x8a\x6f\xf4\x06\xf9\xb2\x2f\xd0\x90\x8d\xd4\xd5\xaf\x0e\xe9\x56\x0f\xab\x03\x23\x95\xac\x82\x62\x65\x45\x38\x94\x71\x4e\x33\x51\x1f\x88\x9d\xeb\x8a\xba\xd5\x80\x4d\xe4\x2d\xd0\x25\xe3\x66\xe4\x92\xa9\x5e\xbd\xb1\x8b\x4c\xf2\xd8\x22\xb3\x0a\xa6\x89\x0b\xfc\x88\xc1\x4d\x42\x01\x71\x6c\x9c\xcb\x91\x0f\x44\x92\x6a\xe3\x9a\x4c\x9f\x73\x6b\x41\x68\xb1\x00\x84\xb5\x81\x11\xc0\x68\x72\x83\x08\x2d\x69\x21\x15\xe9\xed\xe6\x22\x88\xc7\x9a\x42\x0c\x0d\xe6\x01\xb8\xf6\x24\xd2\x18\x60\x46\xe4\x90\x6f\xef\x8e\x14\xd1\x1d\xf2\xed\x67\x3a\x57\x8b\x20\xbd\xe7\xe2\x7b\x9b\xed\xe0\xb9\xd8\x26\xdf\xea\x1c\x4a\x62\xa4\x95\x06\x74\x28\x34\x19\x2d\x4c\x17\x36\xa8\xbe\x24\x19\x2e\xb0\xaa\xe8\xdb\x11\x5a\x05\x36\x12\xb7\x18\x91\x69\x27\x7f\x84\x49\x67\x5e\xe4\x77\x53\x96\xe7\x65\xc5\x4a\xf3\x57\xd9\x7c\x4c\xc2\x3a\xf3\xb5\x58\xf0\xbc\x28\xe6\xea\x81\xf5\x2d\x77\xb0\x2b\xbe\x14\x15\xa2\x10\xb6\x86\x6f\x6e\xa8\x28\xb5\xe3\x97\xae\x11\xbc\xb7\x5b\xac\x48\x3a\x41\x07\xce\xf1\x18\x4f\xf1\xac\x66\x53\x2a\x35\x00\x31\x84\xfd\x9c\xd1\x4c\x8c\x67\x07\xac\x54\xb2\xd0\x04\xec\x28\xed\xef\xf4\x5d\xe4\x23\x94\xe0\x1a\x19\xd3\xb2\xdc\xcb\x73\xf7\xb4\xf4\x8f\xc3\x92\x8a\x8c\x44\x65\xa2\x07\x84\xea\x48\x95\x73\x93\x48\x96\x00\xb7\x15\xbe\x3e\xde\x7b\x73\x78\xf6\x76\x6f\xff\xf0\xec\xe2\xc5\xc7\x8b\xa3\x83\xe8\x11\xa1\x5d\x29\xb2\xf1\x27\xe8\xa5\x67\x0e\x21\xef\x77\x49\x85\x3c\x2e\xac\x6b\x27\x14\xb0\x10\xf8\x6a\x48\x0b\x7e\xc4\xcf\x45\xc6\x4b\xed\x64\xa9\x4e\x49\x26\x3e\xe9\x73\xbc\x57\x02\x06\xb7\x46\x84\x7d\x09\xf5\xe9\x3f\xac\x1d\x92\xc0\x64\xbe\xca\xca\xf7\x8c\xde\xaa\x41\x1d\x81\x23\x0b\x9d\x04\x05\xc0\xeb\x5c\xcb\x45\xb4\x5b\x5c\x96\x54\xdc\x40\xcb\xd7\xe6\x51\x96\xb3\xac\x7c\x43\xe5\xac\x50\x7d\xb3\x05\xf5\x54\x9f\xf8\xe2\xd9\x64\x12\xfc\xa2\x9f\xe7\x19\xb7\xad\x30\x98\xcf\x12\x68\x8e\xff\x7d\x55\xf9\xfd\x9a\x5d\x8a\x4c\xe8\xbf\xf3\xe0\xef\x5b\x2d\xca\xeb\x28\x77\xf3\x93\xd0\xee\x82\xdb\xbf\x58\xe9\xc4\x50\xf7\x18\x52\x99\x9a\xc2\xe6\x6f\xdd\xe3\x50\x87\xa0\x17\x99\x95\x33\x23\x63\xd3\x2e\xfc\x71\x5c\x4c\xa8\xaf\xe9\x27\x7a\x67\x2b\xd2\x7f\x1e\x84\xcb\x17\x9b\x7d\x09\xed\xbe\x3d\x3d\x79\x7b\x78\x7a\xfe\xf1\xe2\xe0\xe8\xe0\x62\xff\xd5\xde\xf1\x8f\x87\x7a\xbf\x41\x81\x0f\x2c\xcf\xb5\x83\x4e\xf0\xf0\x80\x4d\xdc\xb3\xe2\x86\x0a\xc1\x26\xd4\xf5\x88\x17\x92\x4d\xef\x6c\x03\xae\x1c\x75\x93\x6b\x9e\xa9\xb2\xda\x71\x28\x9a\xd4\x4b\x7a\xc5\x78\xbd\x24\x2b\xdf\x0a\x5a\x82\xbb\x75\x97\x95\x2f\xf2\x8c\x7f\x82\xbf\x0e\xaf\xe7\x30\x0a\x56\x1e\x17\x9c\xc2\xa2\xf1\x09\xa4\x54\x72\x13\x68\xd9\x30\xd5\x59\xb5\x11\x66\x59\xe9\x39\x33\xd8\x06\x41\x09\x9a\x8d\x67\x6f\x45\xf1\xf9\x0e\x32\xe6\x84\x03\x8d\xdf\x44\xf3\xe2\x5e\xe9\x1d\x9d\xa9\x02\xfb\x05\x97\x94\xcb\xb0\x86\xf0\x79\xf4\xbd\xee\x27\xd4\x1b\xef\xcf\xea\x23\xe3\xbf\x7d\xc4\x8f\x33\xc9\xcc\x17\xfe\x31\x9c\x06\x38\x65\x00\xd8\x2a\xee\xce\xa8\xd4\xdb\x58\x6f\xde\x0f\x4c\xce\x4c\xb6\x3b\xfd\x80\x68\xfb\x87\xd9\x6e\x6f\x4f\x4f\x7e\xf9\x78\xb1\x7f\x72\x7c\x7e\x78\x7c\x0e\x3b\xc5\x50\xe4\xf0\xe8\xa9\xa3\x45\x34\xa3\x03\x21\x53\x7a\xc4\x00\x80\x38\x9e\xd1\xc9\xfb\x2c\x5f\x54\x9e\xe9\x5f\x17\x57\x79\x71\x99\xe5\xe5\xbe\x0e\x6c\x55\x07\xd3\xfe\x19\x54\x3f\xb6\x6f\x4d\x1c\x84\xbe\x66\x1b\xaf\xfa\x89\xbf\x6d\xe7\xeb\xa3\x99\x6d\xf8\xf7\x3c\x8a\x57\x76\x15\x5d\x87\x6a\x70\x57\x55\x73\x20\xb2\x61\x08\xfc\xc7\x77\x01\x73\x67\xbf\xd5\x29\x56\xa1\x59\xd1\x85\x29\x48\x77\xe9\xb7\xb8\x09\xc7\x27\x4a\xa0\xbd\x0a\x10\xc0\xaf\x82\x84\x5b\xb5\x78\x8f\x4e\x07\x62\x52\x6f\x6c\x7b\xee\xab\xcb\xb0\xee\xed\xa4\xaf\x8f\x57\x90\x5c\xfe\x22\x84\xa0\x2a\xba\xea\xc4\x1f\x1d\x1f\x9d\x5f\xec\x9d\x9f\x9f\x9e\x75\x3a\x59\xc4\x3d\xc7\x6f\x2d\x13\x8d\x45\x63\xc6\x72\xbe\x5c\xa6\x82\x70\xac\xe1\xa1\xc1\x25\xbf\x04\xee\x08\xa5\x14\x55\xe4\x7c\x9d\x22\x19\xeb\x14\xf9\x41\xf7\x6f\xbd\xdc\xff\x47\x1a\x69\x92\xeb\xaa\xb9\xa5\x0e\x1b\x92\xe8\xeb\x7b\x3d\x8a\x7f\xd5\xb8\x01\xb5\x40\xf0\x22\xd4\x83\x40\xe3\xd6\x29\x44\x75\xa0\xcf\x7c\x94\x78\xd1\xe9\x14\x75\x39\x10\xb4\xa6\xbe\x91\xe5\x12\xfe\xb3\xb9\xa9\xac\xe9\x08\x38\xb9\xcc\x0b\xc6\xdf\x3e\xcf\x94\x60\x9c\xed\x90\x6f\xd1\x82\x88\x61\x36\xc2\xb9\xfa\x4f\x71\x7f\x63\xf8\xe3\xd9\x08\xe7\x9d\x4e\x3a\xee\x74\xf4\x14\x2e\x70\x0e\xd9\x2c\xd3\x05\xa1\x08\xd7\x36\x90\x2a\x9b\x93\xc5\x30\x1f\x21\x9c\x9b\x18\xae\x85\x56\xd4\x18\x8b\x16\x6c\xe1\xcf\xeb\xc1\x6e\xb2\xc9\x84\x4e\x62\x6c\x85\xdf\x17\x74\x41\xc9\x70\xd4\xe4\x36\x90\x4d\x26\xeb\x8c\x5f\x50\x9b\x3d\x7c\x0d\xf8\x0d\x67\xd4\xa6\xdb\x85\x82\xfa\x24\x0b\x84\x70\xa0\x50\xf4\x7d\x08\x14\x3f\x16\xa3\x45\x56\x2d\xbf\xd3\x7c\x51\xce\x6a\xd8\xf3\x76\x77\x10\x5f\x19\xac\x47\xd0\x36\x08\x32\x56\x99\x60\x87\x8c\x75\x16\x5b\xe6\xf3\xd6\x92\x6f\x91\x04\xb3\x2a\x06\xeb\xaa\x5a\x2d\x01\x7f\x3c\x1b\x61\xe3\xda\x66\xbc\x06\x96\xcb\xe0\x37\x9d\x2c\x97\x87\xa9\xc4\x02\x0f\x25\xe6\x23\x9b\x95\xe2\xac\xae\x4f\xdf\xda\x0d\xc4\x83\x13\xaf\x66\xcf\x5b\xf2\x9c\xb8\xb2\x7b\x76\xfe\xd9\x34\xb5\x7b\xdc\xc7\x21\x2d\x97\x55\x2c\xfa\x3c\xc2\x5e\x36\xa1\x91\x81\x1d\x30\x3a\x86\xda\x53\x29\xed\x61\x01\x77\x76\xf1\xf9\x0e\x05\xf1\x31\x9f\x00\x02\xc3\x25\xc9\x0a\x8d\x59\x3a\xf7\xe5\x50\xba\x5c\x06\xd9\x72\x99\xaa\xdf\xe4\x24\x45\x61\x7a\xb8\xd0\xf9\xb3\xc9\x7d\xc9\xe7\x87\x0b\xd4\xf4\x71\x1f\x25\x0a\x9b\x4e\x4f\x50\x3f\x1e\xa3\xce\x07\x57\xc3\x64\x3d\x0f\x37\x2e\x23\x3c\xb4\x50\x85\x9e\x27\xac\xd3\xa9\xcd\xc0\x80\x99\x84\x2d\x53\x26\x4a\x19\x27\x6f\xe9\xb3\xf8\xb7\x9d\xa0\xa8\x01\x3d\x41\xae\x8d\x62\xa0\xe6\xc6\xa2\x72\x79\x5f\xdd\x4e\xe7\x4d\x9a\x05\x54\x86\x59\xf3\x26\x21\x24\x5b\x2e\xcf\x52\xd4\xe9\x2c\xc2\xa0\x28\xca\xcb\x85\xf0\x09\xcd\xd0\xea\x4d\x2d\xfa\x21\xcc\x33\x03\x5d\xdb\xdf\x68\xe0\xf3\xf7\x9b\xdd\x73\xe9\x50\x8e\x52\x84\xd5\x6e\x55\x9f\x9e\x12\x98\x19\xe7\x24\xd6\xc0\x7e\x26\x08\xbf\x85\x43\xff\x19\x1f\x93\x1e\xfe\xcd\xae\x43\xe1\x79\xd5\x0f\x47\xaf\x5f\x9b\xd2\x9d\x4e\xda\xc8\xae\xfe\x16\xc5\x11\xea\x29\x3d\xaa\x2d\xe9\x41\xab\xdb\x5d\x9d\xbe\x73\xa7\xa8\xdb\x22\x04\x12\x4c\x6c\xb1\xe5\x52\xc4\x1e\x51\x6a\xb3\xfb\xe4\xff\x65\xec\xec\x07\x50\x1a\x58\xc4\xec\x45\xd1\xe9\x34\xe1\x51\x2a\xa1\x4a\x0f\x45\xdd\x25\xee\x07\xcc\x2d\x66\x9d\x8e\x88\xec\x59\xa9\x44\x60\x75\xae\x92\x58\x36\x4d\x79\x83\xb3\x53\x8a\x96\xcb\x2d\x6e\x0d\xf6\xde\x99\xc1\x20\x7c\xbe\xdc\x50\x94\xf7\x25\xd9\xda\x45\xcf\xd3\xba\x3c\x6c\x07\x28\x6c\xf4\x7d\x78\x77\x16\x9d\x4e\x5a\x38\x9a\x2d\x8c\x6f\x76\x81\x10\xde\x2a\x80\x56\x73\x33\x41\x76\x33\x6f\xb0\xd8\xce\x9f\x72\x1c\x46\x07\x7b\x8d\x4c\xd6\x38\xa3\x12\x20\xe8\x90\xe2\x5e\x2e\xca\x45\x39\x57\x72\xe8\x44\x9d\xf9\xe5\x92\x9a\x97\x2b\xb4\x5a\xa1\xf4\x00\xab\x01\xbc\x86\x2b\xa1\xd3\x49\x5f\x3b\x42\xfe\x92\x6c\xf5\xd0\xca\x2c\x0d\x6e\xbe\xa4\x78\xb3\x4d\x37\x3c\xf5\x80\x0c\xa3\xa5\x9f\x54\xe2\xad\x1e\x3e\x40\xab\xb4\xd7\x5c\x69\xeb\xb2\xc4\xeb\x70\xa9\x26\xf7\xf8\x87\xde\xe0\xad\x36\x0f\x42\x65\x7d\xc5\xc4\x08\x3c\xa4\x58\x8e\x5c\xb7\x11\x3e\xdd\x64\x26\xff\xcf\xe9\x28\x55\x5b\x04\x5a\x11\x6b\x5b\x39\x37\x5f\xaf\x56\xab\xa2\x49\x10\x8c\xce\x96\x17\x65\x8e\x6a\x37\xb9\x3d\x46\xe6\x9c\xbd\x76\x7c\x81\x9a\x5b\x7f\xda\xbe\xfc\xb1\x49\x15\xd4\xa5\xbc\x0b\x99\xef\x57\x29\xba\x3f\xde\xde\xf6\x0f\x5e\xa4\xe8\x7e\x67\xe7\xf8\x7b\xd2\xeb\x74\xde\xea\x0b\x3e\xbc\xf7\xde\x29\x7a\xf6\x2a\x45\x1b\x52\xdc\xdd\xc3\x8d\xc8\x78\x96\xe7\x77\xf7\x2f\x52\xa3\xd2\xfb\x7d\x3d\xcb\x13\x79\xd5\x6e\xf5\x6c\xca\x38\xeb\x29\x4d\xb6\x7a\x4d\x9c\x0f\x04\x99\xb5\x07\x4c\x4b\x9a\x89\x49\x71\xcb\x1b\xc2\x9e\x5d\x0f\x3e\x44\x67\x2f\x76\x02\x8a\x6e\x36\x7f\xb5\xd6\x88\x03\x6e\x3e\x3e\xaa\x62\x86\x5c\x3a\x49\x75\x85\x6c\x2c\x3a\x9d\x34\x73\x1d\xb3\x45\x58\xdd\x84\xa9\x08\x87\xd1\xd3\x6e\xf5\x36\x28\x21\x44\x27\x9c\x75\xa3\x03\x4e\x73\x6b\x57\x17\x02\xdd\x99\x3d\xf4\x7c\x93\x99\x2b\xa7\x98\x6e\xfe\x3e\x48\x67\x84\xb7\x7a\xa6\x4b\x7c\x3f\x2e\xf8\x94\x5d\x2d\x9c\x47\x7a\xe0\x9f\x9e\x83\x19\x22\x1d\x13\x89\xa7\x64\x86\xeb\x7e\x07\x53\x4d\xa6\x66\xac\xc4\x63\x9d\xf2\x9b\xd5\x4d\xad\x12\xcf\x4c\x9a\xc4\xc5\x5c\x0b\x89\x7d\xcd\x07\x71\xd5\x37\xa1\xd8\xe9\xad\x5d\x00\xcb\xf9\xa3\xbd\xb4\x1c\x87\x7a\x01\xb8\xaa\xfd\xd9\x0a\xf5\xd5\xf5\x48\x04\xea\x3f\x30\x01\x1c\x21\x5c\x74\x3a\x5f\x80\xa0\x30\x84\x1b\x6e\x0c\x50\xc3\x1d\x44\x9f\x82\x07\x6c\xf5\x21\xd4\x37\x0b\x71\xda\xab\xaa\xe5\x76\xde\x0e\x37\x6c\xad\x0d\x16\x3b\x6b\x28\x6a\xbf\xbd\x8b\xb0\xbd\x0c\x42\x0b\x60\xfb\x0e\x44\x51\xaa\xae\x5b\x96\xe7\x50\x9f\x3a\xfe\xee\x87\xdd\x89\x8d\x83\x77\xa5\xc2\xc1\xd7\x1e\x82\x1c\xe0\x46\xfe\xf1\xa1\x91\xc7\xf7\x7f\x74\x6d\xb3\x4e\x67\x8b\xd5\x3d\x79\x53\x77\xfd\xd7\x27\x4a\xed\x9f\x62\x90\xd6\xe7\xab\x67\x19\xb6\xa7\xcd\xd2\x84\x4d\xde\x69\x9d\x9f\x9a\x26\xff\x6b\xed\x3c\xf9\x62\x95\x5d\x52\x79\xaa\x66\xaa\x5f\xfc\xb0\xdb\xe9\x34\xac\xef\xce\xae\xa1\x98\x3f\x36\x6b\x67\x7e\xaa\xa6\x36\xfa\x31\x96\xed\xf4\xfc\x31\xad\x12\xf3\x4c\x9b\xb7\xd5\xbb\x9a\xbe\x7a\x4a\x4d\x07\x21\x97\x54\xa9\xe8\xe7\x40\xbb\x50\xf3\xe2\x49\x25\xe9\x61\x4e\x04\xd9\xd9\x45\xfd\x20\x6f\x18\x20\xa7\xef\xec\x86\x52\x3b\x88\xa4\x3b\xbb\x08\x61\x3f\x48\xac\xae\xe4\xe4\xef\xd0\x87\xfe\x25\x9d\x16\x82\x26\x70\x41\xab\xb7\x60\xae\x74\xdd\xf8\xa5\xc9\xb9\xe1\x0f\xb5\xaf\x05\x31\xb0\x4d\x2c\x48\x6d\xb7\x3e\x4f\xc5\xf7\xbd\xe5\x92\xab\x7f\xc4\x0e\xdf\x22\x3d\xd4\xe9\xa8\x6b\x3a\xd1\x12\x6a\x82\x17\x08\xc3\xef\xe1\x08\xfe\xfe\xaa\x79\x34\x46\x87\x14\x8c\xc6\x10\xfc\xbb\x9a\xc6\x6d\x8b\x90\x1c\x98\x3f\x6b\x80\xda\x49\x75\xc2\x07\x31\xe8\xf5\x05\xda\x49\x19\x81\x9f\xe0\x39\x8a\x94\x34\x23\xbf\xef\x0d\x8a\x6d\xd9\x97\x38\xd7\x08\xc4\x20\x1c\x69\x2a\x98\xa0\x4e\x07\x84\x16\xd3\xed\xf0\x95\xea\xaf\xf9\x22\xcf\xc2\x0f\x8a\x9d\xdd\xef\xb3\x6d\x66\x47\x9a\x85\x5f\xa8\x65\x80\xf4\x00\xeb\x2f\x79\x08\xc7\x88\x54\x0e\xaa\x9a\xd6\x8c\xaf\xb1\x5e\x23\xa8\xc3\x38\x74\x05\x55\x54\x9c\xda\x4d\x52\xcd\x9a\x0a\xc2\x4e\xaa\x73\x30\x81\xda\x4a\xf6\x85\x0e\x62\x29\xb5\xbf\x5b\x2f\xe1\x5a\xeb\xa7\xa0\x96\xf0\xaf\x1b\xbd\xb1\xdc\x78\x14\xab\x24\xd5\xd5\x98\xf6\x70\xee\xf3\x7d\x02\xee\xe7\x1a\x47\x00\xd5\x66\xcd\x0d\x20\x34\x76\xbb\x9e\x79\xb3\x3d\x80\x2b\x13\x87\x2c\x47\x69\xcc\xf9\x48\x5a\x97\x10\xbd\x5e\x3a\x09\xb8\x22\x4e\x23\x0f\x66\x43\xe0\x70\xa8\xb8\x23\x5e\x66\xc3\x5e\xde\x98\xa6\x91\x7e\x11\x3c\x49\x62\xe3\x2f\x6b\xa3\xc1\x01\xf0\x9b\xa6\x43\x58\x8b\x3f\x19\x51\x17\x39\x0e\xb8\xe8\x17\x7b\x67\x87\x07\x17\x07\x87\x67\xfb\xa7\x47\x6f\xcf\x4f\x4e\xcf\x5c\xf6\x00\xcf\x76\xa0\x34\x73\xf5\xfd\x31\xb6\x02\x78\x92\x2c\x60\x42\x5b\x16\x23\xf3\x3c\x90\x84\x38\xeb\x58\x77\xda\xc0\x0e\x65\x48\x63\x9a\x1a\x76\x08\x67\x6e\xbc\x2b\x9a\x97\x74\x53\x8f\x38\x12\xfd\x32\x98\xc5\xab\x00\xb5\x4d\x50\x37\x43\xa2\xd3\xd9\x4a\x25\x08\x29\xa8\x51\xe2\xa5\xdd\x05\xff\xc4\x0b\x8f\x73\xe2\x11\x70\x2a\x2f\xd4\x4e\xb5\xe3\xf2\x94\x55\xd0\x18\x1f\x96\x02\x42\x53\x39\xcf\x99\x04\xfd\xfa\x86\xf7\x9a\x61\xde\x6b\x66\x3b\x40\x4e\x15\x5a\x9a\x77\x77\xb9\x15\x93\x04\xe1\x34\x15\x18\x62\x0e\x6c\xc3\x02\x68\x09\xa3\xd6\x41\x61\x2a\x28\xfd\x42\x53\xf0\xf7\xb2\x3d\x2a\x68\xa4\x09\xd1\xbc\x31\x2b\xe1\x7f\x00\xe4\x19\xca\x51\xdf\x1b\x6d\xd4\xb0\x40\x30\xa6\xe4\x3f\xe8\x77\xbe\x9a\x92\x56\xee\x40\x5c\xa8\x09\x75\x17\x9a\x55\x20\xbb\xbf\xbe\x27\x19\x45\xd4\xf8\x32\x19\x05\x2f\xd5\xfa\x44\xeb\x2d\x26\x10\xda\x80\x65\x54\x93\x62\x8b\x6a\xec\x3b\xed\x89\x2e\xbc\x27\xba\xaa\xad\x70\xb9\x4a\x18\x66\xdb\x19\x80\x75\xd4\xea\xdf\x66\xb8\xe7\x5a\x28\x10\xda\xf8\xa5\xda\x45\xbf\x5a\x0b\x5a\xd7\x27\x40\xca\xd7\x5b\xc7\x0d\x2c\x97\x49\x85\x3f\x48\x70\xa6\x0b\x39\x75\x88\x2d\xe3\x6e\xfe\x04\x2b\xea\xad\xa8\xff\x2c\x2b\x23\xfb\x59\xe9\x20\x3d\x37\x45\xc3\x75\x2d\x71\x81\xb0\x68\xb8\xf9\xe0\x28\x94\x5a\xde\x3a\x68\xa9\x38\xbc\xe1\xf3\x60\xb9\x2e\x52\x8a\x95\x10\xaf\xef\xd5\x4f\xb4\xe2\x94\x32\x0e\x8a\x9e\x1b\xd5\xce\x6d\xf8\x89\x2f\x3a\xa5\xde\xe0\xf5\xe3\xc3\x06\xaf\x99\x2a\x8e\x7f\x8c\x4c\x5e\xea\xe3\x19\x7d\x28\x02\x73\xac\x0d\x94\x36\xe0\xf0\xe2\x13\xbd\x73\xa1\x82\x01\xd1\x00\x87\xbb\xc6\x0b\xb1\x62\x1e\x5d\x17\xf1\xa2\xea\x06\xda\xe0\x54\xaa\x3f\xf4\x06\x72\x9b\xf7\x77\x76\xd5\x63\xf6\x43\x2f\xf6\x45\x15\x68\xa2\x66\xa9\x30\xe0\x64\x98\x55\xc3\xfa\xe2\xbd\xd0\x9e\x68\x33\x6a\xdd\xeb\xb3\xa0\x75\xd1\xdf\xd9\xb5\xc2\xb2\xe7\xa8\x60\xbc\x1b\x51\x5c\x08\x43\xc5\x0f\xbd\x4e\x67\xae\xba\xb4\xb0\x5d\x2a\x14\x57\x05\x7f\x2f\x70\x56\xed\x5e\x4d\x1c\xa9\xb3\x0e\x60\xff\xd6\x3b\x8b\xf1\x2b\x63\x2d\xfe\x89\xde\xd5\xd1\xd2\x6a\x1c\x7b\xbd\xb2\x52\x16\xf3\xc7\xd4\xd5\xd6\x68\xdd\xb5\xc9\x66\xb0\xd7\x93\x57\x61\x54\x83\x0d\xd3\x18\x95\xc4\x87\x74\x34\x50\xff\x6c\x6f\xf7\x53\xf5\x3f\xd9\xc5\x73\xea\x43\x2c\x74\xbb\x58\xef\x3c\xac\xb8\x0e\x43\x36\xaa\x21\x88\xcd\xc3\x7a\x5c\x6f\xb7\xa0\xb7\xaa\x75\xb5\x78\x3b\x3b\xea\x2f\xd0\x18\x4d\x1e\xd3\x93\x2a\x0b\x67\xdb\x6e\xde\x73\xe8\xfe\x20\xc8\xec\x1d\xa9\x74\xe6\x11\xfd\x73\xbb\xfc\xf9\xce\x0e\xfb\x81\x88\xe7\x28\x2d\x08\x5c\x1f\x20\xf3\xe5\x34\x2d\xa0\x70\xd2\xd0\x62\x12\x50\x89\xc9\x53\x6a\x1d\x3f\xb6\xd6\x6b\x1a\x98\xa3\xd7\x58\x5c\x80\xc2\xdc\xb5\x51\x18\xb3\x27\x4d\x28\x4a\xc3\x06\x79\x8c\xd9\x30\x8a\x57\xd3\x55\x45\x81\x71\x7c\x10\xbf\x21\xea\x8a\xe5\x8e\xbf\x6d\xf0\x6f\x5e\x87\x2e\xef\x1b\x88\xa3\xef\x3d\x27\x21\x42\x4e\x02\xdc\x96\xc1\x03\x17\x22\x1d\xcc\xa5\xca\xf1\x2e\xda\x00\x3f\xdb\x55\x2d\xba\xe3\x9f\xd4\xb8\x8f\x4c\x6c\x0c\x47\xf4\xfa\xd4\xbd\x3c\x8f\x56\xcb\x7a\xaa\x83\x47\xa8\xef\x04\x82\xbf\x8d\x6e\x9b\xe2\xad\x9e\x05\x98\x6e\xab\xb7\x4e\x8a\x1e\xfc\x58\x17\x68\xbe\x2e\x9c\x73\x79\xcb\xa4\x14\x9d\x0e\xfc\x67\x4f\x69\x6c\x5f\x80\x51\x05\x67\x3f\xcd\x20\x58\x40\x3b\x4b\x16\xde\x59\x72\x1b\x15\x43\x31\xf2\x2a\xfc\xac\xea\x06\xe2\xe3\xf4\xb2\x80\x3b\x7a\x86\x78\x9a\x0d\xd9\x08\x67\xe0\xa3\x0e\x34\x3f\x3a\xea\x37\x34\x8d\x92\xfc\xdc\x05\xcc\xc2\x15\xad\x64\x85\x3f\xd3\x87\x41\x03\x13\x46\xce\x1d\x34\xbe\x41\x23\x06\x7e\x43\x34\x07\xbe\xa5\x37\xda\xfb\x42\x73\x76\xef\xad\xba\xdf\x3b\x84\x04\x0c\x08\x9b\xa6\x70\xd0\xed\x25\x19\xf8\x00\xd7\x75\x61\x22\x88\x45\x5d\x2e\x6b\x7a\x30\x63\x62\x62\xf5\xa0\xfe\xe5\xd2\x7f\xd8\xa6\xfe\x5f\x2e\xd3\x9a\x62\xbb\xad\xac\x39\xc5\x7a\x80\x1f\xad\x9a\x4c\x2b\xa7\x6e\x95\x08\xec\xd7\xe1\x90\x1a\x83\xa6\x73\xbf\xeb\x74\x52\x35\x03\x86\x03\xc7\xb4\xfb\x89\xde\x61\xe0\x6d\x03\x17\xbd\xad\xdd\x60\xc2\x3e\xd3\x28\x67\xac\x8e\xbb\x8b\x3c\x7d\x1d\xc7\xc2\x43\xb7\x6a\xf5\x66\xc8\x47\x9d\xce\xad\x15\xb6\x41\x98\x50\xe5\xce\x5a\x59\xb2\x60\xb9\x37\x4c\xe0\x88\x9c\xc5\xb8\x0d\x51\x3f\x71\x48\x60\xc3\x52\x7a\x7c\xd1\xa3\x71\x98\xa0\xc7\x38\xde\x1b\x96\xef\x13\xbd\xb3\xf0\xc8\x96\x19\xe4\x38\xad\x36\x67\x89\x3e\xea\x74\xae\x69\x2a\x7c\xbe\x3f\x17\xb3\x62\x5a\x15\xf8\x52\x49\x4f\xba\x46\xd4\x48\xe5\xe1\xcb\x56\x45\x48\x1c\x6e\x63\xba\x64\xe2\x14\xa3\xb5\xa4\x61\x78\x8d\xcb\x88\x17\x0d\x24\xa6\xb7\x6c\x9a\x6e\xe9\x3d\x1f\x98\xdd\x78\x5d\x99\x16\xd3\x01\x25\x80\x68\x1c\x0e\xef\x24\x61\x73\x47\xfc\x9d\x66\xe3\x59\x02\x3a\x3d\xe0\xd8\xfb\xcd\xec\x6f\x9b\x86\x97\x3b\x1f\x9c\x34\x34\x81\x81\x94\x2f\xba\x17\x37\x45\x9e\x49\x96\x53\x63\xf6\xe3\x68\x60\x74\x20\x7d\xed\xc5\xe6\x92\xfb\x7f\xa2\x77\x28\x1e\xf9\x83\x38\x1c\x36\xb5\xab\x9f\xc1\x41\x8d\x9f\x02\x52\x0a\x47\xe0\xf9\x2d\x75\xb9\x1c\x9f\xa3\xcf\x8a\x75\x52\x3b\xbb\x98\xa7\x08\xe1\x43\xb0\xd3\x69\x96\xb9\x7f\x48\x8d\xac\x50\xe1\x9c\xe6\x77\x4d\x08\xc8\x96\x63\x83\x9d\xde\x40\x7e\x41\x81\xe0\x76\x32\x47\x7c\x28\x81\x8f\xa3\xc6\xc9\xa7\x16\x5f\xd6\x16\xd3\x07\x0d\x58\xa7\x21\x7d\xae\xee\x57\x68\x03\x50\x59\x53\x09\x60\x0f\x3d\xb4\xbd\xeb\x80\xe5\x03\x3d\x82\x3f\x65\x29\xef\x96\x33\x36\x95\x29\xc2\xd5\x14\x36\x35\xe6\xa2\xde\x7a\x85\x6e\xdc\x4b\xc3\x93\xaa\xff\x77\x76\x5a\x5b\x5e\xf0\x86\xb6\x2b\xb3\xab\x0a\x04\x70\xd6\x15\xb9\xcb\x90\xad\x8a\x4e\xf9\x01\xee\xcc\xa5\xc8\x19\xca\x06\x20\x02\xa9\x21\x31\xa8\x61\x77\x7d\x02\x0a\xa6\x29\xcd\xf6\x36\xe6\x41\xf2\x4f\xf6\xe0\xfc\x99\x51\x3e\xc4\xfc\x61\x1d\xb1\x1f\x25\x3b\x15\x6e\x8a\xa4\xab\x5e\x22\x2c\x74\x4f\x76\x76\xec\x5f\xc0\xf5\xa7\x7c\x28\xd4\x71\x19\x79\xc0\x20\x87\x19\xf3\x30\x87\x82\xee\x69\x13\x21\x4a\x79\x13\x25\x42\x36\xd2\x5a\x13\x46\x7d\xf9\x04\x0f\xdc\xd1\xd5\x94\x12\x5f\xd3\x94\xa3\x41\x44\x4b\xb9\xa2\xa5\xbc\x52\xd0\xa4\x0d\x8a\x88\x7c\x85\xec\x99\x87\x1b\x31\x1e\x48\xd3\xfd\xc5\x2a\x12\xb7\x9d\x16\x86\x42\x0b\x15\x1b\x16\x23\x14\xf8\x3b\x80\x92\x2f\x8c\x76\x79\x28\xb0\x7c\x5e\xcc\x17\xb9\x62\x40\xa7\x53\x70\xef\x4f\xdd\x90\x76\x6b\xa0\xe3\xd5\xb2\x35\x1e\xd1\x7e\xeb\xaf\x80\x4f\xf4\x6e\x3b\xe9\x26\xdb\x8d\x21\xee\x83\xb5\x1d\xa1\x58\x6e\xef\x62\x8e\xfa\xf2\x87\x5d\xa0\xf4\x70\x5b\xab\x2f\xec\x85\x42\x6b\xc2\xdc\x09\x5d\xef\x46\x74\x1d\xba\x10\xd5\x1c\x77\x0c\xf3\x16\x1a\xd8\x98\x35\xa0\x82\xa3\x4f\x25\x0a\xff\xca\xf2\x74\xa1\x4f\xdf\x03\x3d\x58\x63\xc8\x74\x5a\x91\x7a\xc7\x18\xf8\x14\x35\x74\x6f\x67\x17\x41\xf2\xf4\xb6\xee\x59\xa6\x0c\x85\xb9\xa0\x3f\xb9\x3e\xaa\xca\x07\x6e\xd2\xfa\xd6\x00\xed\x8b\xbe\xa1\x95\x9c\x44\x95\xfb\xb8\x6a\x77\xd2\x77\x72\xdc\xfb\xe5\xb2\xe7\x2b\x3c\x8f\xdb\x76\xd3\xd5\xff\x58\x6b\x7b\xbf\xae\x6e\x85\x0c\xf6\x17\x13\x0a\xce\x45\x20\x27\x97\x16\x8c\x7d\x8b\x64\xcd\x72\xc1\x36\x2a\x08\x88\x05\xc2\xc3\xbf\xa4\x05\x28\x43\x2d\x12\x0b\x84\x47\xab\x95\xfe\xa4\xf8\xd7\x22\xe2\xcc\x4f\xff\xb5\xbd\x50\x0b\x7a\xee\x7a\xa1\x1a\x7c\x4b\xc9\x37\xff\xb7\x0b\xfc\xcc\x57\xdf\xf8\xad\x7e\x1c\xad\x4c\xe0\xc1\x7e\x9f\xa0\x0d\xfe\x7d\x6f\x20\x53\x8f\x33\xff\x96\xe2\xa4\x3b\x1c\x25\xc8\xf3\x41\x9b\x34\xad\x6a\x7d\x7d\x1d\xab\x04\xe1\x8c\x78\xf4\x16\xe7\x96\x62\x6c\x8e\xbc\x5b\x2e\x2e\xb5\x3b\x73\x2a\xb6\x77\x71\x81\xec\xed\x88\x13\xe3\x63\x12\x95\x29\xb6\x77\xd1\x86\xdc\x8e\x9e\xf5\xb0\x40\x1b\x0b\x62\x33\x8c\x02\x4b\xf3\x3c\xfb\x7e\xf1\x1c\xa5\x25\x19\x47\xe3\x41\xdf\xf7\x06\x2c\x4d\xe5\x76\x3e\xcc\xb6\xb7\x47\xdb\x63\xd4\x34\x32\xea\x0a\xe0\x31\x2e\x31\x43\xab\x34\x49\x30\xc5\x3c\x52\xf5\xfe\x16\x4b\x5a\x5b\x34\x32\x34\x54\xed\x26\xad\x8a\xcb\x80\x1b\xd0\xbe\x18\x8a\xe3\x32\xe0\x7c\xac\xfb\x5b\xc1\xb8\x7e\x57\x12\x30\x87\x64\xc8\xef\x10\x17\x1f\xfd\x1b\x4d\x4b\x5c\x98\xb0\xe0\x2d\x81\x7c\xaa\xae\xb1\x85\xd6\x4f\xbf\xb6\x4a\xc5\xcd\x92\xca\xcd\x69\xc6\x72\x3a\xe9\x6f\xea\x2b\x46\xdd\x0b\x8a\x81\xd9\x4c\xbe\xde\xce\xb6\xbf\x4e\x36\xc7\xc5\x22\x9f\x40\x6a\xaf\x4b\xba\x39\x2d\x16\x7c\xd2\xfd\xda\xb2\xa8\x6a\xb6\xf5\xfe\x75\x66\xea\x06\xab\x5a\x44\x90\x16\xb6\xa3\x0b\xab\xbe\xd6\x09\x99\x60\x0f\xd8\xa3\x9f\xff\x41\x83\x5b\x8e\x06\x29\x23\xf9\x1f\xf4\x35\x02\x46\x9c\x3d\x6c\x6e\x63\x4f\x36\xb7\x81\x83\x55\x60\x6e\x63\xd1\xd8\x9d\x53\xc0\x16\x21\xf9\x72\xd9\xe4\xb5\xad\x4d\x6b\x8d\x71\x13\xe0\x83\xf6\x2e\xb6\xa1\x0d\xd2\x9a\x8a\x5b\x09\xbe\xc0\xc8\xe1\x5c\x93\x54\xed\xd5\x97\x41\xc2\x95\x7a\x0d\x26\x53\x52\x48\xe1\x8f\x68\x8a\xee\x81\x7a\x1c\xc4\xac\xaf\xb7\xd9\xa6\x21\x45\x23\x60\x5a\x7e\x38\xcf\x8c\x4b\xf3\x02\x5e\x03\x0d\xb6\x43\xee\x9c\xc6\x07\x05\xc4\x34\x49\x2a\x08\xef\xa7\x8c\x70\xec\x1f\xc0\xaa\x2c\x97\x47\x54\x3d\x2b\xed\xb3\x92\x4a\x04\x0f\x9c\xf3\xa8\x21\x3e\x45\xf7\x02\xe2\x7b\xfd\x4f\x2b\x7f\x29\x59\xbb\xa8\x90\x62\xed\xaa\x18\x3d\x52\x65\x04\xcd\x26\x27\x3c\xbf\x23\x5b\x5b\xa2\xd3\xc9\x0c\xba\xa6\xe8\xda\xe7\xb8\xf0\xe9\x72\x64\x3d\x5d\x4e\x20\x23\xdb\xb6\x5b\x2c\xed\x41\xe7\xb4\x54\xbf\x8a\x3e\x77\xfd\x68\xfb\xdc\x77\xb4\xe9\xf3\x79\xcd\xc6\x50\x0d\x98\x08\x35\x2d\x05\xa4\xca\x70\x68\xd8\x60\x63\xac\x61\x4c\x63\x49\xac\x25\x14\x6b\x7d\x26\x05\x45\x26\x80\x18\x78\x98\x69\x1e\x86\x36\xcb\x50\x5b\x77\x4c\x53\x39\x14\x23\x5c\xc4\x79\xbd\x2a\xcb\xc2\x1a\x46\x53\x0b\xdb\x0e\x5c\x2e\xaa\xdd\xd4\xdc\x22\xec\x84\xe5\xf2\x7e\xd5\x4f\xfd\x6f\xa3\x30\x41\x71\xe5\x93\x16\x53\x80\xc7\x14\xb1\x2b\x65\x58\x62\xbf\xf3\x40\x9f\xd2\xca\xf4\xd4\x94\x10\x41\x40\xb9\x61\xfb\xee\x22\xc7\x28\xb3\x23\x73\x0a\x8e\xb3\x9d\xce\xa9\x11\xcf\x0c\xc7\xb3\x8a\xfb\x7d\x55\xc3\xc6\xb3\xc9\xd9\xbc\xde\xa1\x8a\x32\x26\xa9\xd0\x87\x53\x0b\x00\xd0\xf1\x89\xe9\x6b\x05\x27\xcf\x45\xcf\x6d\xdc\xc4\x98\x77\x71\x1d\xdc\xe5\x64\x35\xf2\x66\x44\x39\xe1\xce\x6b\x73\x1a\xae\x32\x85\x10\x84\x15\xf9\x0e\xe3\xfd\x60\x06\x18\xc2\x22\x9e\x81\xb2\x32\x03\x98\xb7\x9c\x11\xbb\x70\x70\x73\x9e\x9a\x87\x26\xcf\xa5\x22\xde\x66\x59\x61\x6c\x83\x78\x0a\xf5\x4f\xfb\xeb\xcc\xd1\x78\x2d\xc3\x95\x3a\x4a\xf3\x4c\x6f\x88\xe8\xd5\x38\x2f\x2e\x2f\x21\x4d\x8e\xe5\x58\xa3\xbe\x37\xf4\xa5\x86\x69\xd1\x70\xcd\xef\x67\x5c\xdd\xdb\xea\x92\x57\x83\xdb\x29\x78\x7e\xb7\x69\x0f\xbb\xba\xe0\xa5\xba\xe0\xd5\x91\x86\x1b\xa7\xbf\xf9\xf5\xb6\x8e\x6c\xe1\xe5\x9c\x8e\xa5\xf1\x10\xe2\x11\xce\x83\xed\x67\xdb\x5c\x1a\x6f\xe6\x45\x9e\xe3\x6b\x63\x9c\xb6\xdc\x11\x64\xde\x6b\xa2\x7a\x6b\xaa\x0b\x27\xdb\x6d\xa4\xda\xfc\xc4\x33\xbb\xd6\x2a\xed\x8e\xe3\x46\xe5\x37\xa1\xe0\x3a\x5e\x6d\xd7\x49\x10\xc6\x9d\xbc\xfa\x95\xa8\x1c\xb4\x8b\xa6\x7d\xa6\x3b\x00\x1e\x63\x4a\x12\xd3\x47\x07\xfb\x18\x0b\x03\x9c\xd9\x30\x50\x45\xff\xd8\x34\x65\x9d\x4e\x01\x3e\x38\xf6\x26\x84\xf3\xb3\xa8\xda\x09\x0c\x7f\xb2\x5c\x86\x47\x61\x81\x5c\xa0\x46\xa6\xbd\x02\xe1\x59\x16\xf7\xbb\xee\xa9\xee\xa3\x19\x2a\x94\xed\x8f\xd1\x23\xcc\x57\xe9\xef\x81\x58\xfd\x9a\x1a\x9b\xd4\x9f\xb9\x3c\x82\x5b\x8a\x48\xcd\x2f\x63\x06\xca\xaa\x03\x9a\x0a\x7f\x75\x44\xda\x29\x7b\x02\x8c\x73\x0b\x03\x8e\x0c\x18\x9b\x97\x94\xbc\xa6\x41\x4e\x12\xfc\xa5\xea\x02\x74\xbf\x42\xf8\x55\x3b\xfb\x13\xa8\x80\x9f\xc8\xfa\x38\xef\x95\x6e\x96\x83\xbd\x5b\x49\x71\x95\xdb\x6e\xc8\x47\x58\x3c\x92\xa3\xa8\x04\x26\x54\x05\x6e\xb7\x67\x6a\x92\xb5\x9a\xa3\xfd\x78\xed\x1e\xb7\x51\x1a\x6b\x3a\x5d\x53\x93\x73\x98\xa8\x55\xb5\xae\x7d\xef\x1a\x51\xfb\x6c\x5d\x63\xf5\x0b\xd0\xda\x63\xb5\x96\x1d\x42\x40\x61\xe6\xd5\x0e\x9a\x84\xc7\xc9\x1c\xd2\x2d\x42\xbe\x50\x70\x85\x88\x6f\x2d\x66\x0e\xd7\x17\x1a\x5f\x41\x1c\x3d\xe5\x0e\xfa\xad\xd2\x8b\xda\x00\x1e\xe2\xf1\x54\xdd\x2f\x68\x03\x3f\x54\x70\xfa\x21\x5b\xfb\xd9\x3b\xf7\x59\x7c\x44\x5f\xd0\xf6\xcb\x25\x59\x7f\xb9\x7c\x9d\x6c\xcb\xed\xe4\xeb\xf0\x72\x49\x1a\x2e\x17\x1f\xbe\x43\x5b\xef\x91\xe0\x02\xf1\xe5\x7f\xa7\x81\x55\x41\x2d\xa2\x4e\x9d\xa7\xfd\x8d\x3c\xac\xf1\x34\x4d\xf8\xe2\xfa\x92\x8a\xd0\x13\xb1\x64\x5f\x2c\xb3\xb3\xa5\x7f\xd9\x8c\xa0\xa6\x44\x2d\x57\x38\x61\x9d\x4e\xb5\x22\xf0\xc5\x82\x6c\x0d\xec\x0b\x4d\x10\x1a\x6c\xc9\x7e\x43\x63\x9a\xf0\x84\x3e\x91\x5b\x84\xb0\xc1\x96\x7d\xd3\x7f\xa0\x15\x6e\x5a\x31\x8e\xdd\x08\x75\x3a\x5b\xdc\xcf\xc3\x87\xd0\xc4\x0c\x93\xb2\x5c\x36\x81\x0a\x80\x6c\xfb\xcd\xff\x3d\xfb\xc6\x26\x0c\x5c\xbd\x8a\x00\xf3\x42\x59\x28\x7a\x03\x2f\x0e\xaa\x4f\x60\xc2\xde\x3f\xe0\x0c\x62\xd2\xe9\x88\x3b\xe7\xab\x7c\x31\x2e\x04\x7d\xcd\x2e\x8f\xf8\x84\x7e\x26\x8d\x01\x55\x8a\x69\xd4\xd8\x2b\x77\x2f\xee\x8e\xb3\xeb\x06\x2b\x8b\x73\xfc\xb1\xf5\xab\xf5\x0f\x35\x3e\x92\xf4\x9e\xcb\xef\xc5\x73\xa9\x3d\x27\xf8\x50\x8e\xba\x5c\x55\x15\xe6\xcf\x1f\xca\x51\xd5\xa8\xa3\x93\xff\xac\x65\x1f\x6c\x93\xb6\x39\xc7\xe8\x46\x7d\x86\x65\x48\xb9\xb7\xbc\x44\x03\xdf\xde\xb6\x4c\xa4\xab\xcd\x78\x93\x08\xdc\x33\xa9\xc6\x29\x36\x08\x46\x7d\xb9\xaa\x9a\x2a\x6c\x47\xf7\x75\x9d\xaa\xd9\x26\x84\x33\x97\x6a\x49\x0d\x63\xab\xea\x91\x31\x31\x19\x01\x2b\x99\xd8\x03\x33\x56\xd3\xa8\x1c\xb0\xd6\x86\x0c\x9c\xc2\xdc\x30\xac\x7e\x4d\xb6\x0d\x90\xe3\x5d\x64\xa3\xde\x3f\x52\xb8\xa8\xdf\xd3\x8d\x8f\x8d\x63\x4a\x93\x43\x38\x0a\x78\x6a\x89\x8e\x96\x1a\x7e\xa4\xb5\x4c\x15\x95\x1c\x8a\xf8\x27\x10\xe2\xbf\xa2\xe4\x5e\x71\x54\xfd\xff\x3f\x71\xef\xda\xdf\x36\x72\xe4\x0b\xbf\xd7\xa7\xa0\x90\xfc\x18\xf4\xb2\x45\x53\xc9\x3e\x7b\xce\x81\xa7\x87\x47\x63\xcb\x99\x99\x8c\x2f\xb1\x3d\x99\x24\x0c\x97\x0b\x91\x4d\xb1\x63\xb2\xc1\x01\x1a\xb2\x15\x11\xdf\xfd\xf9\x75\xf5\x1d\x68\x50\xb4\x67\xf6\xac\x5f\x58\x20\xd0\xf7\x4b\x75\x55\x75\xd5\xbf\x26\x78\x51\x73\x0d\xb2\x44\x3d\x58\xa5\xec\xfc\x12\xdf\x52\x31\x88\x7e\x6c\x8b\xd0\xd1\x44\x0d\xae\x7a\xf3\x5b\xa3\xcb\x8a\x8a\xd1\x08\x1f\x29\x85\xd0\xa6\xc1\x7f\x86\x36\xff\x15\x0c\xfb\xff\x4e\x63\x97\x74\x8e\x30\x7f\x4f\x15\x8c\xe5\x6f\xe9\x38\x5a\xa0\x2f\xbe\x33\x5c\x90\x5c\xdd\x15\x7d\x12\x3a\x84\x36\xb6\x97\x80\x1f\xe8\x7d\x95\x16\xca\xf6\x51\xa1\x1c\x54\x0e\xe5\x60\x84\x04\xa9\x66\x74\x8e\x53\x46\xc4\x78\xb9\xc9\xcb\x67\xc5\x8a\x5e\x89\x74\x82\xd0\xd7\xe4\x3f\xfe\xbf\xe1\x90\x7d\x45\xfe\x0f\xdc\xb3\x91\x52\xa4\x85\xe4\xf6\x41\x2f\x57\x1a\xd0\x2c\xc9\x98\x08\x5f\x89\x04\xa6\xad\x0f\x69\x4b\x61\xec\xf0\x3a\x88\x61\xd5\x60\xaa\x2b\x22\x9c\xda\xf3\xec\xef\x74\x56\xcd\x09\x7f\xda\xae\xa0\x6d\xba\xc9\xe5\xa6\xff\xa3\xe6\xae\x38\xae\x91\xfc\x5d\x10\x3e\xab\xe7\x58\xcc\xf2\x39\xa9\x31\x48\x8f\xc2\xa0\x67\x11\xc2\x85\xe7\x49\x0f\xe5\xdf\x9a\xf2\x0b\x84\xc2\x0a\x0b\xec\x35\x4a\x1b\x5a\xcb\x0a\x64\x91\x1e\x1c\x18\x4c\x10\xd3\x30\xaa\x48\x8e\x3f\xe3\x35\x3d\xb3\x68\xaa\x4a\x1f\xcf\x50\x63\xe3\xa5\xe6\x0d\x4a\x67\xd4\x36\x2b\x45\x73\x4c\xb1\x8d\x45\x60\x87\x4c\x08\x5f\x3d\x43\xfa\xd6\x00\x48\xe9\xc3\x61\x2a\xd7\x0a\xee\x4b\x44\xce\x2f\x11\xe6\x87\xc3\x9f\xa9\xe1\xc5\xff\x4a\xb1\x22\x9f\x16\x68\x4e\x52\x51\x39\x6d\x33\x31\x47\x67\xb0\x4a\xbd\xf9\xe4\xb6\x31\xad\x61\x03\xae\xb6\x23\xb5\xd3\x29\xcd\xd2\x38\x49\x77\xfe\x1b\xe7\x7f\x52\x83\x27\x3b\x8a\x7d\xcc\xbe\xb0\x06\x1a\x62\xf7\xd1\xb3\x55\x21\x73\xa5\x22\x0e\x2b\x98\x0a\x84\x08\x21\x2f\x74\xd5\x8e\x78\x1c\x0e\x82\x90\x0e\x49\xd1\xe0\x99\x2d\xd4\xc0\x6e\x0b\x1e\x38\x49\xd2\xaa\xbe\x01\x3c\xb6\x41\xb1\x1e\x24\x23\x3e\x4a\x50\x62\x8c\x02\x3f\x6e\xd8\x96\x7a\x4e\x5f\xd6\x44\x86\x1f\x0e\x49\xaa\x7d\x1f\x50\xa2\x0d\x2a\x70\xb8\xd4\x14\x2f\x89\x02\x53\xb1\x52\x78\xec\xab\x27\xb2\xea\x8b\x00\xd9\x4a\xaa\x42\x2a\x74\xac\x39\x79\xe8\x18\x63\xde\x42\xd8\x03\x6f\xe5\x0e\x87\xbc\x59\x82\xab\x61\x89\x1e\x94\xb1\x15\x13\x6d\xe7\x5f\xed\x09\x70\x16\xf8\x3d\x78\x4a\x42\xe1\x59\x95\x46\xdc\x41\x24\x47\x72\xae\x02\x11\x29\x30\xb7\xe1\x90\x9e\x13\xf2\x4d\x51\x6c\x69\xce\xd5\x8f\xd7\xfa\x26\x5d\x3e\xbf\x02\xb6\x48\x3d\x43\x55\xea\xf1\x79\x2e\xa8\x7a\x52\x7b\x46\xb9\x58\x08\xf2\xe0\xa1\xa7\x54\xa2\x7d\xd1\xc2\xc1\x02\x04\x82\x2e\x18\x12\x3f\xa3\x73\x30\x76\x60\x53\x26\x14\xe1\x60\x58\xbe\x44\x19\xfc\x8f\x99\xe7\xdc\x60\xca\x83\x00\x54\x81\xa5\xa2\x1c\x77\xbb\x24\xf5\xbd\x8d\x07\x7a\xe2\x7c\x69\x42\x6a\x13\xbd\x35\x01\x53\x46\x98\xc9\x98\xab\x67\x3e\x85\x95\xf2\xb1\xcc\xf7\x92\x04\xe6\x28\xf3\x98\xc2\xad\x6a\xa1\x76\x1f\xc4\x5b\xbc\x44\x0f\xac\xe5\x92\xcd\x8c\x7a\x0e\xba\xdd\xba\x92\x82\x9c\x6a\xb4\xec\x25\x5d\xbb\x0f\xb2\x63\xc3\x61\x5a\xab\x5e\x6b\x44\xa2\x58\x67\x72\x2c\x30\x45\xde\x4e\xae\x87\xc3\xda\x6f\xcd\x73\x3a\x4d\x53\xde\x3e\xf1\x10\xb2\xaa\x7d\xbf\xab\xe6\x25\xae\xcd\x13\x92\x8f\x95\xe9\x0b\xb7\xaa\x39\xfb\xd4\xca\x5f\xd9\xfc\xea\x09\x65\x2e\xa5\x7b\x89\xb9\x1c\x52\xb0\xa1\x66\xb8\xc6\x39\x74\x21\x9f\x89\x39\x61\xb8\x96\x7f\xb4\xd5\x45\x96\x6e\x87\xc3\xad\xc7\xf9\x7c\x4d\x26\x87\x43\xa2\x76\x07\xe5\xb9\xc3\x40\x63\xb4\x4a\x14\x74\x45\xb2\xa3\xe5\x6d\xe7\xfd\xb4\x3b\x0d\xd6\xdb\x78\x26\xe6\x87\x03\x75\x4b\x09\x7a\xb4\xcb\x3f\x28\x94\x38\x79\x48\x19\xcf\x9c\xf6\x17\x8e\xf4\x65\x1d\xc3\x35\xca\x96\xc3\xe1\xd2\x6f\xeb\xc5\x65\xbb\x56\x58\xd4\xb0\x74\x71\x05\x53\xab\xeb\x95\x74\xd9\x5e\x32\x32\xa7\x7e\xe2\x7e\x00\xff\x0a\xe1\x2d\xd1\x20\x57\x70\x61\xab\x3c\x29\x58\x3b\xc6\xf5\x52\xae\xee\x42\xa4\x72\x7b\x2c\xe7\x68\x9a\x6e\xc9\xf9\x04\xd7\xb3\xe5\x9c\xc0\xee\x5a\x02\x24\xe7\x43\x83\x50\x06\x2f\x73\x7b\x92\x6c\x01\xe7\x77\x51\xd5\x7b\x5a\x92\x12\xc2\xb9\x23\x5c\x7b\x3d\x2c\x44\xca\x10\xac\xe9\xda\xec\x82\x1a\xe7\x66\xee\xcc\xcd\x33\xcc\xa3\xef\xab\xd3\xa1\x11\x10\xfc\x6f\x53\xc0\x59\x89\x8b\x8e\x9b\xa1\x95\x22\x18\x50\x12\x36\x9f\xa6\x05\x91\x7f\xb1\x20\xf2\x25\xca\x1e\x83\x36\x01\x3b\xfd\x69\x2a\x48\x6e\x8b\x47\x59\x6a\xad\xdf\x0a\x42\x65\x31\xf8\x41\x66\xcb\x84\x06\x15\x28\xbc\xa3\x77\xdd\x6e\x33\x9c\xf8\x9e\xa5\x00\xf7\x2d\x05\xa4\x18\x20\x1b\xa6\x54\xb3\x01\x78\xae\x70\xcb\x2d\x76\x3c\x0c\x87\xa9\xae\xca\x9c\x7e\xd6\x37\x4a\x2e\x2f\xbc\xa4\x08\xb7\x12\x58\x50\x34\x48\xf0\x11\x45\x49\x18\x3b\x5a\x30\x43\x78\x7b\xb4\x60\x86\xf0\xc2\xd7\x20\xec\x85\x2f\xaf\xc9\x59\xdf\x92\x87\x06\x2f\xe5\x7f\xeb\x96\xca\x66\x23\x99\xec\xbd\x19\x6a\x7b\x27\xb8\xf3\x8d\xca\x69\xb8\xca\x70\xd7\xc6\xc1\x11\x49\x0d\x1f\x6b\xca\x59\x9b\x07\x03\x88\xd1\xad\xcb\x1d\x4f\x3b\x79\x50\x2a\xbd\xe9\x40\x1e\x49\x58\x3f\xb3\x19\x9d\xc3\xe5\x5a\x45\x26\x4f\x2b\x77\x39\x56\x29\xa1\x76\x49\xc4\xac\x9a\xe3\x9a\x70\x9c\xae\x49\xba\x25\x4b\xe4\x91\xd4\x95\x98\xd6\x36\xc0\x44\xba\x45\xd3\x5c\x64\x69\x6d\xc3\x57\xa4\x5b\x84\xb7\x46\x0f\xca\x68\x85\xb2\x2d\x3a\x27\x24\x17\xb2\xe4\xb5\x62\x05\x37\x72\xef\x16\xa0\xa4\x7b\x29\xc9\x15\x64\x94\x3c\x6e\xf8\x26\x5d\x23\xbc\x27\x95\x48\xfb\x48\x1e\x5e\x03\x4d\xc1\x2b\x48\xd4\xa1\x7c\xe6\xf3\x1a\xad\xdb\x54\x62\x03\x67\xa0\xba\x68\xdc\x20\xbc\x95\x12\xc6\x06\xaf\x67\x9b\xb9\x1e\xff\x3d\x5e\x21\x74\xd6\xc9\x97\x18\x0e\x3a\x01\x32\xe3\xf8\xfc\xb5\x7d\xd4\x6e\xae\x4b\x05\x2b\x5b\x0d\x87\x29\x4d\xcd\x0f\x6f\x72\xf1\x72\xbc\xf8\xc8\xc4\xa6\xa8\x85\x24\x9c\xe6\xd9\xba\x5b\xef\x24\x71\x15\x78\x0d\xd8\xc1\x14\x6f\x8c\x7f\xe5\xc6\xdf\x79\x6c\x0d\x63\x63\x54\xc0\x89\x24\x09\x7b\xb2\x91\xbb\x5b\x16\xda\x6a\xfc\x1e\xa9\xe1\xdf\x91\xed\x6c\x3f\xc7\x2b\xb2\x9c\xed\xe7\x4f\x77\xc3\xe1\xce\x3f\x32\xef\xc5\x53\xb4\x23\x69\x4d\x80\x70\xed\xe0\x88\x47\x40\x61\xf0\x8a\xd4\xca\x98\xcd\xd9\x71\xee\x3c\x76\x63\x75\x38\x78\x1c\x6d\x94\x2e\xed\xd1\x14\x68\xc2\x5e\xd1\x8a\x15\xca\xf4\x4f\x0a\x2d\x42\xb8\xe8\x62\xb3\xe7\xc7\xb1\xd9\x23\xdb\x7f\x25\xc6\x2b\x2a\xe8\x52\x68\xd8\xf0\xe1\xb0\xfd\x26\xdd\xa3\xe1\x70\x1d\x42\xb9\xa7\x72\xce\xf1\x4f\xd0\x9c\x1d\x5e\xe1\xb5\xb3\x39\xff\xfc\x56\x9d\xf3\xbe\x96\x29\x20\xde\x37\x79\x29\x58\xbe\x85\x96\x05\x6f\x52\x8a\xd7\x06\x71\x60\x25\xfa\x2d\xfc\xb5\x06\xc0\x6d\x34\x63\x7a\xaf\xc3\x58\xee\x84\x05\x11\x00\x80\x6a\xef\xa6\xa0\x15\x0c\x53\x2d\x3c\x03\xd9\x6d\xf5\x66\x8a\x59\xf2\x1b\x20\x05\xb4\x89\xbb\x17\x39\xfb\xa5\x37\x2c\x9e\xf7\x8a\x6c\x4a\x2a\x7c\x07\x9f\x5d\x37\xda\x8c\x52\x20\x75\x8d\x4f\x38\x99\x75\xf9\x60\x31\xe5\x59\x2a\xc2\xd8\x35\xa9\x5f\x1a\xf5\xc6\xee\x70\x70\x21\xb8\x63\x26\xd9\xc5\x9e\xf2\xb6\x05\x83\xa6\xd4\x5a\x2b\xd8\x19\x05\xae\x47\x41\x18\x87\x21\x01\xb6\x07\x7c\x56\xfa\xa3\x50\x02\xf7\x03\x17\xf3\x21\x9c\xe7\xa0\x35\xbb\xd3\x94\x69\x43\x69\x7f\xf2\x3c\x32\xdb\x7e\x11\x4c\xb2\x1e\x4c\x60\x1e\xbc\x17\xc6\x8c\xdd\x7c\x36\x91\x50\xf4\x6f\xef\xd9\xb0\x80\x3b\x21\xb9\x3e\xad\xd2\x0f\x2c\xe6\xf7\xfb\xed\x7d\xcc\x34\x02\xce\xce\x99\xcc\x30\xc7\xe7\x97\x6d\x3b\x7b\x99\x4b\x2f\xfc\x47\x33\x77\xd5\x8c\x72\x43\x7b\xd6\xea\x71\x60\x4a\x61\x81\x29\x85\x83\x4a\x65\x6b\xf0\x08\xb0\x44\x8f\xb6\x0d\xe8\xd4\x51\x6c\x14\xb4\x9d\x30\xe7\xbf\x8f\x86\x39\xff\xbd\x1f\xe6\xfc\xf7\xf3\x4c\x2b\x58\x54\x14\x8d\x30\xf8\xdf\xe5\x99\x81\x17\x85\xb6\x10\x87\x16\xac\xb7\x18\xb0\x89\x30\xf6\xca\xd5\xd8\xde\x18\x55\xc5\x8e\x46\xc1\x38\x0c\x68\x2d\x72\xde\x7b\xa9\x76\x9e\x89\xfb\xa7\xb4\x83\xf3\x19\xf3\x10\x7b\xb8\x47\xfc\x2f\x0c\xb5\x88\x6f\x06\xbd\x44\xd5\x8c\xa1\x5f\xbc\x35\x6c\x9f\x2d\x91\xe2\x98\x85\xed\x01\xa7\xe1\xee\xfd\x93\x3f\x8d\xf6\x3a\x0e\xb3\x2f\x8d\x57\x6f\x26\x52\x89\x4c\xbf\x7c\x35\x14\xe1\x6a\x38\x2b\xfc\xb5\xe0\xef\x6a\xe5\xb3\xe9\x2b\x54\x83\xcf\x7a\xfc\xb8\x6f\xdd\xa4\xb4\x80\x72\x30\xb5\x02\x51\x58\x4e\xc4\x3c\x1d\xc5\x74\x49\x95\xa0\xd6\xb8\x4b\xca\x26\xb6\x10\x1c\xe7\xd3\x1e\x7c\xab\x7a\x1a\x40\x6d\x28\x69\x5b\xbd\xc3\xd1\xe4\x5d\xb0\x41\xc0\x5d\xd5\x83\xc3\x61\x62\x81\x57\x60\xdb\x68\x4f\x7e\xb5\xb2\xd4\xb2\x29\x11\xf6\x6f\x61\x94\x4e\x4a\x47\xae\x1c\x84\x8c\x2a\x87\x41\x5f\x89\xd4\xfa\xfd\xb8\x4e\x7d\xfe\x99\x9e\xb6\xcf\x6a\xa2\x98\x98\x16\x6f\xa1\x41\xa6\x57\x22\x36\x5a\x5c\x2d\xa2\x7b\xf1\xdf\x7a\xcf\xef\xe4\x4b\xc2\x4f\xbe\xd6\x8f\x01\x0a\xba\xeb\x59\x65\xa5\x94\x28\x8d\x1a\xd8\xec\xb2\xdd\x7e\x4b\xe5\xea\xa6\xab\x71\x72\xec\x4a\xfc\xcb\x8b\xa9\x7e\x41\x31\x4d\xfa\x33\xc2\x77\xfd\xe3\xec\xe4\xf1\xcf\x1d\x69\x7c\x2b\x90\x77\x85\x2f\x5b\x2a\x09\x93\xba\x07\x2c\x31\x3b\x36\xde\x4d\xfa\x9c\xfa\x78\xed\xa2\xc5\xd8\xb4\x41\x4a\xb5\x96\x16\x68\xf7\x06\xe4\x58\xc9\xcc\x69\x1d\xf8\xe1\x60\x9d\x75\x72\xc6\x69\x09\x96\x2a\xb2\x39\xa3\x24\x4b\x46\xa9\x80\x16\x1d\x0e\xce\xde\x80\xeb\x4b\x9a\xb4\xc4\x0f\xca\x08\x30\x33\xe1\x65\x30\x37\x3a\xda\x4c\xe5\x83\xe7\x46\xd9\xf4\xdf\xfc\xf7\x2e\x57\xd9\x69\x30\x4a\xf1\x31\x31\x2f\x81\x29\xf2\x2c\xa6\x7f\x89\x79\x4a\xbf\xd5\x36\x8c\xa0\x6c\xc0\xa3\x46\x1d\x1e\x2e\xf1\xc9\xa6\x17\x54\xc7\xd3\x55\xd6\x0f\x5e\xa0\x82\x1f\x28\x8e\x44\x32\x78\x2e\xdf\x76\x42\x1e\xbc\x90\x6f\xfd\xb0\x08\x2b\x1c\x0b\x9d\xb0\xc3\xad\xf8\x0a\xf7\xd8\x04\x5e\x88\xb0\x56\x72\x17\x7d\x4b\x35\xa2\x47\x37\x64\x43\xd7\x91\xe0\x4b\x0d\xdf\x71\xe5\x5b\xba\x53\xf4\xf0\x4f\x6d\xc8\xc2\xc1\x21\x2a\x6e\x07\xcf\x4d\x1a\xd4\x34\xd0\xc2\x30\xc8\x84\x50\xe3\xa4\x43\x50\x94\x7a\x7c\x08\xd7\x0f\x7e\xc0\x8a\xf8\x8d\xbb\x76\x7f\xed\x48\x0d\xe5\x94\x67\xa5\xac\x4f\xce\xe9\x3f\x65\x71\x3a\x1c\xc6\x51\xd3\x1a\xcc\x0d\x77\x6a\xe3\x68\x14\x32\xaf\x89\xaf\x11\x6f\x43\x87\x8d\xf8\x43\x94\x8d\xf8\x83\xcf\x46\xfc\x61\x9e\x31\x7a\xd6\x01\x84\xf2\x90\x9e\x32\xe7\x45\xe3\xc2\x17\x46\xe3\x7f\x54\xb2\x89\x9d\x60\x21\x3d\x1d\xb5\xb0\x4b\x0b\xc3\xc5\xc7\x82\x8f\x3c\x96\xf9\xa3\x19\xa7\x9e\x90\x26\x7f\xc6\x7d\x51\x50\xfe\x8a\x5b\xe1\x52\xd6\x14\x1f\x89\xad\xf2\xa7\xce\x47\x57\xd4\x6f\x71\x18\xbc\x65\x81\x5b\xb1\x5d\x7a\x2d\xdb\xe2\x56\xd5\x3e\xef\x7e\xa9\x8d\x94\x79\x34\x88\x43\x87\xdd\x06\xc3\x46\x63\x3f\x08\xeb\x87\xb7\x61\x35\x7e\x1d\x13\x46\x66\x4d\x18\x0b\x22\x7c\x45\x7f\x15\x2a\x3e\x71\x81\x14\x87\xdd\x0a\x81\xf3\x11\xfb\x11\x72\xae\xb1\x0d\x9c\x13\xa3\x2c\xca\x5e\xaa\x39\x73\x71\x76\x7e\xa6\xd8\x85\xdf\xf9\x49\xfd\x30\x71\x79\xba\x25\x9c\xff\x64\xe8\x52\x34\xa8\xcf\xb7\x38\x12\x00\xe8\x47\x1c\x0d\x15\xf4\x0d\xee\x09\x2c\xf4\x1c\x77\x42\x10\xfd\x0b\x47\x31\xab\x71\x1c\x25\x1e\xc7\x23\x20\xbd\xc5\x9d\x50\x49\x3f\xe1\x20\x94\xd2\xcf\xd8\x0b\xb2\xf4\x17\x1c\x84\x5f\xfa\x1b\xf6\x23\x33\xbd\x93\x03\x15\xc4\x6d\xea\x6a\x43\x7a\x62\x46\xa7\xa1\x57\xad\x08\xa1\x5b\xfc\xbb\xef\x76\xfc\xe5\x14\x01\xfe\x6d\xc7\x35\xd3\x2d\x8a\x20\xb0\xd4\x82\x62\x3f\xf8\xd4\x6b\x8a\xc3\xc8\x54\x57\x34\x04\xc5\x88\x1e\xa9\xda\x6b\x53\x6d\x01\x13\xee\xea\xbd\x2d\x99\x7c\xb0\x8f\x26\x3a\xd6\x4b\xf9\xc6\xc5\xce\xfa\x9b\xfc\xe9\xc2\x6a\xfd\x45\x9f\x03\xde\xfa\xe8\x8e\xdc\x43\x83\xb9\xdb\x2e\xb8\x24\xea\x6e\xe9\xf7\x11\x57\x8e\xe1\x30\xa4\xb8\xbe\x6c\xa8\x22\x19\x4f\xfc\xb2\xe4\xdb\xb6\x54\x26\x66\x52\x22\x9b\xab\x83\x47\x09\x67\x46\xd1\xa3\x8f\x9b\x68\x63\xbd\x41\x32\x4a\x8c\x88\x17\x97\x98\x8a\x2c\xfd\x31\x6d\xc9\xe4\x52\xb4\x0a\x24\x47\xe4\x44\xab\x3e\x2c\x20\x52\xce\xf8\x5c\x19\x45\xea\xc8\x8c\x0d\xd2\x7e\xd5\x9d\x40\x67\xaf\xf4\xf9\x61\xa9\xff\x96\x9e\x75\xc2\xa5\x2d\x65\x22\x15\x4a\x6d\x25\x70\x18\x63\xad\x87\x2b\xb9\x17\x7a\xf7\xef\x3a\x21\xac\xad\xcc\xf8\xa8\x6a\xe1\xeb\xcb\xa9\xb8\xb8\xcc\x26\x52\x44\xbe\xf4\x55\x0c\x17\x97\x71\x25\x03\xa8\x9a\xb8\x3c\xdc\x30\x55\x27\x79\xfb\x4c\xfb\x55\xe9\xb1\xa4\xc3\x9a\x22\xe7\x44\xe0\x8a\xcc\xe6\xb8\x8e\x8d\x48\x65\x15\x93\x67\x11\x47\xdd\xd1\x88\xa1\x57\x54\xc1\x08\xd5\xa8\x45\xd8\xbd\x2b\xaf\x02\x57\x08\x17\x70\xf2\xba\x20\x78\x7b\x39\x21\x9d\x38\x79\x77\x02\x87\xb1\xf4\xfc\x46\xbd\x53\x60\xb4\xad\xd8\x7b\x57\xf6\x15\xf9\x80\x63\x61\xfb\xde\xe3\x58\xdc\x0f\xec\x07\x00\xd4\x12\x7a\x2c\x4e\xa0\xfd\xe4\xc5\x13\xec\x59\x3b\x37\x66\xed\x98\x20\x84\x71\x8e\x24\x81\x5b\x8c\x84\xf1\x01\x9f\xc6\x4e\xfb\x77\x80\x21\xeb\x0c\xb5\x1f\x7c\x8e\x76\x82\xdb\xfc\x6e\x9c\x87\xfd\x7e\x38\xfc\x1e\x74\x31\x57\x46\x8c\x43\x98\x1b\x80\x2c\xad\x7a\x95\x4b\x44\xe3\x3c\x28\xad\xea\x8c\xcf\x9b\x90\x63\x16\xe8\xe1\x83\x92\x98\xc2\x88\x2a\xf8\xa5\x5f\xb0\x2d\x0c\x53\x9a\xa2\xa6\x69\x40\x7d\x99\xc5\x3a\x07\xd6\x4b\x20\x2a\x56\x54\x9c\xd2\x41\xb0\x64\xcc\xf8\x70\xd8\x56\xfa\x91\xef\x71\x49\xbe\x07\xd5\xcc\xdf\x31\x23\xdc\x93\xee\xce\xbe\x27\x46\x5d\x56\x1a\x58\x60\xe7\x6a\x65\x87\xa6\x40\x58\x73\x51\xc8\xf5\x46\x33\x21\x72\x14\xca\xa0\xd2\xa0\xc7\xa5\xf6\xb1\x80\x17\x76\x9b\xd9\xae\xcb\x45\xe0\x85\xa5\xfc\x2b\xc5\x91\xc8\x95\x7f\xd7\x24\xcc\x85\xb7\xf4\xd7\x55\xbf\x65\xdb\x04\xff\x95\xda\x7d\x89\xdb\x11\x33\xb9\xc0\xed\xa0\x9a\x91\xe5\xfa\x27\x7a\x38\x80\x19\xda\xdf\xe9\x8c\x82\xbd\x70\x2b\x30\xe7\xf7\x14\xc7\xe2\x77\x0a\xdc\x13\xec\x53\x08\xdc\x0d\x0c\x1a\xbd\x3f\x09\xec\xcc\xce\xf4\xa5\xf0\xdf\x41\x8d\xf6\x57\x8b\xe9\xfa\x57\xe7\xa3\x4f\x11\xbe\x44\x18\x1c\x85\xdb\xe6\x9e\xc3\x21\x44\x5a\x6e\xbd\x55\xf6\x3b\x91\xb7\xc4\xbb\xe1\xe9\x8f\x6f\xda\xdd\x4b\x7f\xa2\xfa\x94\x7c\x34\x0b\x45\x0f\x7f\xa2\xe4\xfc\x9c\x36\x0d\xc2\x36\xfa\x2c\x5c\x81\x3d\x81\xfe\xc4\x62\xd0\xaa\x10\xb3\x61\x08\xd7\x4e\xb0\xd6\xd7\x3f\xbd\xba\x7e\xeb\x88\x91\xd1\xc5\xc4\xe6\x96\xc2\x36\x86\x06\xb7\xd3\x00\xf6\x0b\xec\xd4\xc6\x22\xf5\xa8\x92\x41\xaf\x61\xd1\xab\xe1\x5d\x82\xfc\x4e\x94\x45\x2d\x18\xbf\xed\xef\x86\x49\xb0\x65\x37\x4f\xb6\xc5\x32\x97\x35\x3e\xc9\xf7\xec\x78\x02\x5e\x70\xba\x30\xbf\x8e\x27\xdd\xe4\xd5\xe6\xd4\xa4\xac\x12\x45\x79\x7f\x62\xea\xbc\x16\xc5\xf1\xa4\xd5\x7d\x25\xe8\xee\xc9\xad\x14\x47\x72\x41\x01\x6a\xb3\x2c\xb6\x5b\x5a\x1e\x4b\xee\x52\x2d\xd6\xc5\xd1\x94\xab\x6a\x7b\xec\xb3\x7c\x75\xbc\x2a\x48\x71\x2c\xc1\xcf\x35\x2d\xef\x17\xfb\xbc\xcc\x77\xf1\x29\x03\x60\xd2\x25\xad\x9e\xe8\x97\x8f\x27\x7a\xa4\xf3\xf9\x72\x13\x6f\x11\xfd\x24\xbc\xa1\x39\x29\x76\x31\x58\x44\xb4\xb7\xc4\x37\xf5\xf2\x83\xd6\x43\x11\x3a\x7e\x0b\x2d\x7a\xa7\x1a\xa8\x7f\x33\x7e\xeb\x5e\xfc\x59\x8e\xc0\x1b\x18\x00\x93\xdc\x66\xb3\x0f\xcf\xdf\xfd\x40\x14\x42\xaa\x6a\x9d\x89\x0a\xaa\xe6\xfd\x99\x7b\x9f\x2f\xe5\x02\x8b\x7e\x23\x74\x7c\x55\x8b\xe2\x07\xbd\xa0\x08\x1d\x7f\xab\x96\xa3\xff\x26\xaf\x36\xde\x4f\x29\xcd\x7a\x3f\xed\xa3\xde\xef\x7d\xda\xaf\xe4\x07\xbb\x68\x5b\x67\x68\x0f\xb8\xbd\x71\x38\x90\xe4\xa9\xb7\x50\xbf\x31\x27\x16\xcc\x4f\x2a\xd8\xef\xf4\x89\x05\x97\xa7\x15\x1c\x8e\xef\x89\x65\xb3\x93\xca\xf6\xa7\xf2\xc4\x82\x8b\x93\x0a\xee\x2e\x9c\x13\x8b\xcf\xbf\xb0\x78\xbd\x66\x4f\xae\xa5\xb7\x84\xa3\xf5\x06\x7b\xe7\xc4\xba\xaa\x93\x7a\x64\x77\xe8\x89\xa5\xd6\x9f\x51\xea\x89\x45\x6e\x4f\x2f\xf2\xc4\x12\x97\x27\x95\xe8\xd1\xae\x13\xcb\x5d\x9f\xdc\x52\x47\x24\x4f\x2c\x7a\xf3\x19\xe3\xfa\x79\x25\xef\x4f\x2a\xd9\xa3\xfb\x27\x96\xbb\xf2\xca\x8d\xf1\x34\x91\x53\x29\xc2\xe0\xec\xa8\xc8\xb7\x2e\x2e\xbf\x4b\x0c\xf9\xbd\xc3\x1e\x54\x07\xd1\xa3\x2f\xc6\xea\xa9\x0b\x8e\xe0\x6c\xb3\xe4\x54\x5b\xff\xa4\x0f\x71\x1b\xc4\x6c\x96\xfc\xec\xad\x8c\x39\xf6\x7e\x41\x20\x30\xbc\xf8\x79\xff\x9c\x6e\xe9\x6d\x2e\xa8\x7d\xa1\x94\x88\x2b\x5f\x3c\xf3\x82\xdb\x29\xcc\x29\x30\x80\x36\xa1\x7c\xd1\xd3\x54\xf2\x9c\x5e\x59\x28\x2d\x55\x80\x95\x5b\x2a\x90\x8a\x69\xdb\x60\x21\xc5\x6b\x26\x4b\x7c\x5f\xc0\xec\x67\x2d\x91\x8d\x6a\xdd\x83\xcb\x09\xe2\x53\x22\xf2\xf2\x96\x0a\x40\xd1\x2a\xc6\x9d\x52\x0e\x87\xf0\x65\x9f\xe5\x17\x77\x8a\x10\xa5\xa7\xa0\x60\xa5\xc8\x67\xcc\x57\x84\x30\x17\xa9\x55\x8b\x70\x85\x32\xc2\xdd\x97\x74\xcd\x3e\x41\x8d\x92\xcd\xbf\x2a\x6f\x91\xb9\x05\x42\x0d\xd6\x77\x18\x5f\xde\x2d\xbf\x00\xd9\x23\xfd\xfb\x27\xa6\x5d\x3b\xff\x1f\x77\x48\xee\x02\xb3\xc8\x88\x3b\xbd\x7b\xf6\x46\xc8\xce\xfb\x3b\x43\xef\x85\x15\xbd\xa9\x1d\xc7\x78\x53\x16\x1f\x2b\x5a\x5e\x50\x7e\xc7\xca\x82\xcb\x76\x1e\x67\xc0\xe5\xb6\x78\x7c\x57\xb8\x06\x3f\x28\xf3\xc0\x2c\xa2\x91\x1e\x0e\xe9\xd8\xde\xc6\x43\xe9\xc6\xab\x36\x7c\x5b\x79\xee\x2b\x5c\x9b\x1b\xea\xf1\xe3\xbe\x40\x8f\x5b\xd9\xb2\x87\x06\x5b\x59\x21\xe3\x63\xf3\x88\x17\xb7\xa0\xb5\xda\x74\xc9\x8f\x91\x79\xe5\x57\x35\x05\x36\x17\x6a\x9a\xc7\xc7\x3c\x94\x4e\xba\x74\x09\xc4\xcb\x96\x34\xd9\x43\xb3\xc2\x79\x2a\x6b\x2e\xd8\x8e\xfe\xea\xf3\x66\xf8\xf7\xd6\xfc\x39\x47\x23\x4f\x58\xed\x98\x72\x29\xc8\x40\x33\x66\x66\x2f\x49\xfa\x57\x52\x41\xbf\x0b\x66\x23\xe9\xb5\xf2\x62\xce\xca\xab\x20\x93\xa7\xc5\x57\xe2\x69\x31\x1a\x21\x36\x2b\xfc\xbd\x53\x78\x6e\x27\x7c\x2c\xca\xfb\xef\xf8\x5d\xf1\x81\xa2\x34\xc7\x14\xc2\x74\x38\xcf\xa3\xce\x75\x9c\xbe\xff\x45\xca\x90\xcc\xbc\xd2\x73\x2c\x77\xac\x79\x05\x67\x37\x52\x2d\x49\xb9\xaf\xd6\x30\xa0\xa7\x2d\xe7\x8b\xe4\x37\x4f\x12\x40\xdb\xb2\xa4\xf8\xf7\x68\x9a\x16\x04\xc2\xab\xeb\x77\x97\x16\x43\xf0\x37\x09\x42\x16\x30\x36\x81\x9c\x1c\x5c\x5a\xaf\x44\x6a\x49\xf8\x25\x18\x8c\x93\xc2\x65\x47\x98\x8f\x48\x31\x62\x38\xb7\xd7\x0c\x29\x1f\x91\xe4\x37\xc9\x28\xd7\x5e\xa0\xb2\x64\x94\xf1\x11\x61\xa3\x12\x7b\x5e\x58\xcb\x00\x4b\x11\x97\x44\x0d\x8e\x29\xdb\x58\x53\x19\x7d\x5b\x92\xa8\xbb\xc6\x34\x79\x02\x4f\xb3\xc9\x5c\x05\xaa\x7f\x92\x8c\x4a\x68\x86\xac\x54\x3e\x35\xa0\xd7\xd0\xcc\x3c\x5c\xe0\x6c\x95\xaa\x43\x8e\x2a\xfc\x5e\x7a\x54\xab\x18\x6b\x0e\x81\x7e\x12\x94\xaf\xd2\x07\xbb\x2b\x73\xb7\x2b\xb5\x22\x20\xcb\xc7\xfa\x09\x2b\xfb\x86\x2c\x1f\x7f\x64\x7c\x55\x7c\xc4\x75\x45\xcb\xab\x5b\xca\x45\x96\x8f\xed\x33\x5e\xe6\x7c\x49\xb7\x86\x87\x11\xf5\x3e\x3b\xbf\xc4\x65\x51\x88\x1f\xdf\xfe\x90\x25\x4f\x12\xac\x8c\xae\x3a\x47\x81\x22\x35\x3a\x21\xee\xb9\x3f\x20\xd4\x35\x90\x11\xea\x55\x5b\x10\x6a\x1b\x9a\x13\x3a\x5e\x15\x4b\x58\xaa\x2f\x8b\x15\xc5\xb5\x94\x36\xa1\xf5\x78\x4d\xa8\xad\x64\x43\x12\x5e\x70\x9a\xe0\x3d\x39\xbf\xc4\x2b\xbb\xee\x5e\xd4\xdb\xad\x5a\xa1\x25\x1c\xe0\xd5\xb8\xaa\xf7\x40\x39\xf4\x08\xab\x1b\xd7\x69\x2a\xc8\x36\x5d\xe3\x12\x61\x08\x40\x3c\xdd\x90\x44\x37\x21\xc9\x92\x27\xbf\x91\x0b\x6a\xd5\x5a\x8a\xe6\xf4\x7a\x27\x72\x41\xd3\x87\x7d\x2e\x36\x99\x68\x8c\x07\x0e\xf6\x4a\x40\x59\xba\x27\xe7\x3a\x06\x8f\xce\xa5\x1b\x05\x61\xc9\xb2\xb0\x61\x39\x5c\x36\xf2\x5b\xd8\x82\x35\x02\x07\xec\xa5\x6b\x1c\x3f\x1c\xd4\x0a\x5f\x0d\x87\xc9\x13\xb5\x4d\x38\x34\x38\xaf\x36\xc9\x91\xaa\x38\x42\x70\x67\xbe\xf7\x2c\x60\x35\x33\xdb\x78\x0b\x27\xa0\xcd\x76\xed\xc0\x5b\x33\x2b\x6e\xb9\xc0\x6b\x37\x75\x66\x71\x50\xec\x4f\x9a\x4a\x15\x4c\xa3\x5e\x80\xf0\x41\x3d\x37\xe8\x0c\x60\x2c\xb8\x89\xc0\x5e\x79\x84\xaf\xbd\x10\x13\x7c\x3e\x41\x98\xeb\x49\xf7\xf0\xc6\x44\xdb\x40\xcb\x98\x5b\x25\xb6\x7f\xc9\x88\xa3\xa7\xae\x06\x86\x13\xdd\xea\x04\x53\xe7\xa2\xfb\x08\xcd\x95\x84\x11\x33\xce\x04\xcc\x7e\x56\xa7\x89\xfd\x91\x20\xc9\x80\xcb\x51\xa8\xd3\x44\x3d\x25\x08\x57\xf6\x55\x65\x5e\xe9\xe9\xd1\xaf\xdd\xaf\x04\xe1\x82\xff\xb8\x5f\xe5\xc2\x7c\xf3\x7e\x26\x08\xaf\x8b\x72\x97\x9b\xd2\xec\x8f\x04\xe1\x8f\x6c\xbb\xd5\xc0\xa4\xdd\x3d\x79\xf2\x61\x02\xdc\x83\x05\xd2\x3e\x22\x2c\xf4\xe9\x24\x23\xac\x51\x59\xf3\x6d\x51\xec\x3b\x27\x72\xfc\x08\xee\xe5\xba\x62\xa7\x6c\x2f\x7f\x54\xb6\x49\x63\xc8\xc4\x64\x6a\xbf\xc0\x24\xfa\xa3\x05\xa7\xa0\xb7\x00\x5c\xbf\xe0\x8b\x37\x82\xae\xcb\xe8\x70\x50\x84\xd4\xf1\x34\xda\xb5\x43\xd6\xa1\x2c\x25\xbe\xcd\xf9\x6a\x6b\x6f\xd9\xc0\xea\x0a\x38\x25\xab\x80\x19\x1b\xe6\xc9\x2c\x9f\x38\x59\xd5\x89\x52\xe4\x8e\x31\x2c\x88\x45\xb5\x81\xe3\x45\xa8\xe3\x45\xc8\xe3\x05\x53\xf9\xa4\xce\x17\xb8\xa6\x6a\xcc\x5a\xf4\xc9\x72\xbb\x6f\xae\x6b\x63\xd9\x05\x42\x71\x67\x5c\xf2\x4a\xbc\xa3\x66\xdf\x34\xfe\x6a\x3e\xb1\x60\x63\x24\xa5\x5a\xf6\x68\x05\xfe\x9e\xf0\x6b\x30\x58\x24\xbb\xe2\x8e\x82\x71\x8c\x31\x99\x49\xfb\x27\x01\x28\xc5\x0d\xe3\x2b\x5d\x59\xe7\x5a\xcd\x0c\xf5\x8f\x6f\x7f\x48\x81\x5a\x84\x9d\x70\x4d\x43\xca\xbc\x23\x3d\xd6\x7a\x65\x8d\xac\x30\xb5\xe5\x2e\x85\x95\x92\xaf\x56\x61\x6b\x13\xd7\xcc\xa4\xaf\xe1\xa8\xf1\x76\x7f\xf7\xd6\x03\x46\xb2\xe9\xa3\x03\x47\x06\xaa\xc1\xb1\xf7\xdd\xcc\x9d\x06\x0d\x87\xba\x3b\xb1\x62\x4f\xeb\xd1\x29\x04\xa6\x73\x93\xd1\xaf\x98\xf8\xc5\x24\xa5\x45\x50\xd4\xd1\x72\x7e\xe9\x43\xa4\xda\xf1\xfe\xa4\xff\x5d\xc0\x7f\xff\x2e\xff\xbb\x37\x3f\xcd\xbf\xc4\x2e\xf4\x27\xb3\x4f\xf7\xf3\x27\xb7\xb8\xc3\x0f\x59\x43\x14\x72\xf9\x1f\xff\xf6\x32\x17\x9b\x71\x99\xf3\x55\xb1\x4b\xd1\x61\x82\xd3\xe4\x93\x3c\xe2\xe9\x54\x64\x7f\x18\x8a\xc3\xff\x46\x0e\x43\xe4\xf2\x3f\x50\x83\x1a\x5f\x86\x7d\x8c\xe4\x69\x8e\xa4\x43\xf5\x0c\xf0\xe1\x9e\xf6\x5c\xea\x2a\xcb\x09\x62\x0e\xf1\x31\x28\x59\xde\xd1\x2d\x5d\x8a\xa2\x4c\x93\x9b\xbc\x92\x07\x1f\x27\x49\x72\xa6\x60\xd4\x80\x67\xbd\x12\xa2\x64\x37\xb5\xa0\x69\xb2\x29\xe9\x3a\x41\x48\x69\x4c\xbc\x8d\x22\x73\xaa\x5d\xd2\xfd\x16\xd0\x5e\x11\x27\x23\xbd\xa4\x77\x5f\xec\x2b\x79\x1e\xb7\x09\xaf\x3b\xb5\x63\x67\x64\x50\x8b\x65\xe0\x6c\x25\xfa\xcd\xd3\x76\x4b\xed\xc0\x52\x24\x09\x6e\x02\x35\x27\x8c\x0f\xa8\x09\xa9\xd3\xe2\x3b\xc9\xb9\x89\xe9\x60\x69\x8d\x62\x24\x91\x09\x22\x66\x37\x7a\x1a\x10\x23\x74\xa6\x10\xf3\xa5\x24\x40\x88\xc1\x28\xdd\x97\xf4\x8e\x15\x75\xf5\xe3\xdb\x1f\x42\xda\x95\x69\xb4\x28\x8f\x55\x95\x54\xc4\xe7\xe2\xfb\x8e\x9b\xfe\x31\xc7\x72\x7a\x65\x0b\x78\xbe\xa3\xb8\xec\xa4\x34\x0c\x95\x96\x00\x83\x6f\x66\xbe\xd1\x59\x09\x58\xca\x7a\x6b\xfc\xe3\xc9\x6f\x9f\xe0\x04\x72\xb0\xee\xdb\x33\x83\x37\x6f\xbe\x70\xfa\x71\xf0\x96\xde\x5e\x7f\xda\xa7\xc9\x7f\x26\x23\x36\x4a\xd2\x29\x79\x72\xf8\x2d\x4a\x90\x4c\xdf\x97\xae\xec\x4b\xf7\xe4\x1f\x50\xd7\xad\x14\x1e\xad\x8d\x44\x31\x22\x29\x1d\x57\x70\xcd\x7d\x38\x24\x09\x1a\x85\x27\x70\xf4\x24\x0d\xcf\x0f\x3d\xa7\x67\xb4\x3d\xa7\x14\x61\xb0\x0a\xd4\xf3\x48\xb5\x23\xc1\xbe\xae\x36\x2a\xcf\x91\x33\xf5\x97\x55\x11\xac\x05\x6d\xff\xdd\xd9\x0f\x01\x88\x60\xb8\x72\xa7\xbd\xbb\x64\x0c\xab\x3e\xd3\x94\x5e\xbd\x85\x92\x1b\x6c\xfb\xd5\xe9\x08\x27\x4a\x74\xa2\xb8\xae\xd9\x2a\x2b\x52\xd4\x3c\xed\xaf\xc1\x8d\x0f\x37\x71\xd6\x70\xb7\x3e\xc2\xf1\x23\xdb\xc2\x8e\xed\xaf\xd1\xa8\x60\x44\x7f\x69\xbb\xfa\xd8\x1c\x37\xe9\x67\x8f\x73\x3c\x6d\xda\xe7\xf3\xb7\xec\x70\x48\x19\x40\x85\xdb\x5a\x25\x0f\x13\x34\x0a\xa1\xe1\x90\xa6\x2e\x01\x6a\xfa\xd9\x16\x53\x57\x12\xaf\xbb\x97\x65\xb1\x6a\xa4\x1e\xd2\xd1\x25\x2b\x1e\xe9\x70\x4a\x15\x3a\x4d\xb9\x47\x18\x1c\x21\x89\x92\x17\x94\x29\xd9\x59\x29\x60\xb4\xa6\xc8\x28\x63\x62\xe9\x71\x39\xe2\x5f\xca\x53\x19\x16\xbf\xec\xb2\xf8\xa7\xb1\x5b\xad\xa1\x3c\xce\x6c\x3d\x3a\x0f\x27\x30\x5a\x2d\x43\x94\x47\xaf\x7f\xe2\xaa\xd4\xcf\x50\x62\x3f\x2a\xa4\x69\xad\x8e\xdc\x8c\x49\x4c\xe1\xe4\xab\x9a\xbe\xec\x58\x93\x65\x27\xda\xbf\x2b\xbe\x14\xad\x8a\x3c\xba\xce\x68\xdf\x61\xc3\x5b\x87\x4d\x9f\xe0\x15\x30\x12\xd0\x9a\xc7\xe5\x9d\x1a\x3e\x3d\xcb\xb7\xdb\x9b\x7c\xf9\x81\xd0\x06\x6f\x60\x9a\x4f\x2d\x1e\x47\x4a\x81\xc3\xe0\x8b\xf6\x6a\xb0\x1f\x81\xfb\x8b\x0c\x14\xc2\x72\x23\x9d\xb0\x08\x41\xa1\xee\xad\xbd\x79\xc0\x30\xc7\xb5\xe9\xc2\xb7\xc7\x37\x9c\x49\xaf\x4c\x3c\x12\x52\x0e\xf6\x7c\xe8\x3c\xbb\x31\x7d\xde\x7b\x90\x6c\x7e\xd1\x92\x8b\xc5\x9c\x08\x17\x6c\xe6\x37\xb6\xfb\x17\xa0\xbe\x9a\x26\x49\x26\x8c\x6c\xee\x83\xda\x32\xbf\x9c\xa2\x64\xb7\xcc\x86\xbe\x10\x87\x43\x0a\x0d\x2f\x0b\x51\x2c\x8b\xed\x28\x79\xf2\x24\x19\xd1\xf1\xa6\xa8\x04\xb0\x58\x74\x2c\x87\x42\x0b\xf2\x99\xfc\x24\x7f\x83\x34\x4f\x8d\x12\x9e\x08\xa5\x27\x06\x55\x3b\xe1\x4e\x69\x4c\x4a\xf5\x6c\x74\xa1\x31\x73\x39\x39\x7e\x23\xf9\x62\x54\x6a\x83\xca\x5b\x2a\x5e\x43\x23\x09\xc3\x34\xa2\x9c\x8c\x9a\xc8\x27\x05\xf7\x64\x3e\xc6\x07\xb2\xcd\xd6\x47\x87\x1e\x0e\xf4\xeb\xff\x05\xa5\xb7\xb9\xe1\xb0\x30\xb6\x4e\xd3\x0b\x8d\x20\x67\xc6\xf9\x8a\xaf\x4a\x59\xd0\xef\xc7\x92\x1d\xef\xfb\xfa\xef\xe3\x09\xa0\xe8\xb6\xbf\xbf\x2c\x6e\xd8\x96\x0e\xde\xe5\xeb\xbc\x64\x09\x24\x20\x41\x82\x67\x9b\xb2\xd8\xd1\xd8\x97\x9f\x80\xe6\x56\x83\x37\x1b\xd0\x35\xb6\x95\xa7\xe7\xe7\xa9\x18\x0e\x13\xcb\x98\x40\xaf\x7d\x97\xaf\xd6\x90\x83\xf5\xa1\xdd\x1d\x72\x51\x8c\x54\x9c\x99\xe8\xa6\xe8\xd8\x9a\x45\x94\x6b\x95\x31\x2f\x30\x2f\x94\x73\xc2\x13\xe3\xe9\xf8\x4b\x2e\xe1\x0d\x0e\x82\x39\xc0\x0c\x99\x5e\xd6\x65\x49\xb9\xb0\x17\xab\x19\xe8\x3f\x0c\x8a\x35\x4a\x93\x85\x6a\xf0\xb8\x9d\x30\x41\x58\xbf\x92\x34\xe6\x91\x5c\x8a\x11\xb0\x9a\xdb\xbe\xd4\x9e\x60\x62\x0e\x80\xbe\xa4\x8e\xbd\xd0\x6f\x94\x41\x80\x7f\xb5\x9e\xfd\x8a\xee\x06\x72\x21\x4f\xb0\xe4\x2b\x2a\xba\xbb\xd9\x52\xe0\xad\x52\x49\x8a\x50\x18\x90\x43\x37\x6f\xb1\x2a\x7e\x7c\xfb\xc3\x7b\xdb\x9a\x34\xf1\x5b\x96\x60\xc8\x19\x38\x95\x41\xf1\xf4\x93\x28\xf3\xa5\x1a\xe4\xab\xf2\xb6\xd2\x17\x6d\x6c\x5c\x9a\x61\xc7\x39\x61\xe3\x5d\xb1\xa2\xdb\x0a\x57\x84\x8d\x3d\x1b\x09\x5c\x93\x76\x1b\xbc\x06\x28\x1b\x44\x29\xac\x5a\x83\xa2\xc5\x07\x4a\xf7\xda\xb9\xd3\xd9\xe4\x80\x13\x2c\x18\x66\xd7\x96\xb9\xfe\x89\x89\xc8\x55\xb0\xea\xb2\xdf\xb1\xb8\xca\x41\xfb\xd0\x5b\xd5\xb8\x3c\x41\xeb\x72\xfb\xa2\x28\x3b\x87\xba\xb9\xc1\xa4\x41\x57\x90\xb5\xde\xd2\x15\xd0\xf0\x52\xbb\xba\x5a\x0a\x76\x47\x7f\xcd\x09\xff\x6f\x9e\x1a\xf5\xf7\x25\x5b\x96\xc5\x96\xdd\x58\x0a\x54\x8f\x4d\x5f\xbe\x03\xa7\x4d\x98\x35\xd0\x3a\x0e\x87\xe9\x79\xea\xbb\x20\x55\xc8\x7a\x3b\x22\x03\x3e\x63\x8b\xdf\x97\x74\x9f\x97\xd4\x33\xb4\x72\xf3\xaf\x6f\x46\x36\xf9\x76\x5b\x7c\xbc\xfe\xb9\xce\xb7\x28\xad\x70\xad\x64\x3e\xbf\xd1\x08\x2c\x2b\x3c\x1e\x8f\x9d\x44\xdc\xc0\xda\x36\x42\xdd\xf6\xc5\xf6\x7e\xcd\xb6\xdb\x2f\x21\x78\x8a\x5b\xfd\xac\x5b\x03\xde\x21\x75\x01\x9d\x00\x6b\x16\x25\x33\xea\x8d\x6d\x49\x8c\x1e\x44\x2f\x89\xa3\x75\x47\x73\xf8\x69\x5c\x96\x80\xb4\x1e\xc9\x16\xa1\xac\xf2\xc4\x79\x24\xd7\x1b\xc5\xf4\x6e\xf2\xaa\x65\xcd\x43\x3d\x83\x0d\x16\x32\x7b\x70\x00\xc1\x7d\x00\xe4\x01\x3e\x21\x4e\x38\x03\xe4\x42\xb0\x09\x8a\x17\x15\x92\x9a\x20\x8a\xf2\xa0\x1c\x0e\x8b\x2e\x05\xc0\x45\x83\xb9\x64\x51\xb7\xec\x5f\xfe\x3a\xed\x04\x6b\xee\xaf\x33\xb2\xc8\x4d\x48\x09\x43\x2e\x42\xf6\xf7\x94\xae\x28\x48\x99\xd6\xfe\x34\xc1\xec\x1f\x1a\xaf\x53\x29\x70\xd1\x06\x56\x33\xc7\xa5\xe6\xc5\x63\xbd\x82\xba\x73\x84\x70\xd1\xa6\x64\x05\x9e\xd1\xb9\x81\x84\xe2\x78\xf6\xe0\x1b\xbd\xe5\xcd\x5c\xee\x41\x4b\xe0\x5e\x14\x65\x7b\x96\xf5\x3e\x30\x68\xa0\x47\xa6\x28\xec\xd2\xb8\xa4\xcb\xe2\x96\xb3\x7f\xd1\x72\xac\x24\x8e\xb2\x7a\x51\x48\x46\x17\x57\x24\x9f\xe5\xd6\xd6\x62\x6e\x3e\x07\x3e\x75\x7e\x64\x0e\xdf\x05\x52\x38\xfb\x8b\x72\x04\xe1\xd6\x15\x00\x86\xa5\xbf\xf2\x8d\x2e\x10\x22\x6d\x01\xf9\x7d\x6a\x46\xb5\x01\x90\xdc\x33\xcb\xc2\x6b\x0a\x57\x83\x28\x52\x21\x5c\xb6\xe9\x23\x87\x18\x1e\xe7\xc5\x31\xa1\x38\x34\xe1\x3f\x49\x1c\x51\xdc\xbd\x7f\x9c\x18\xe6\xdf\x86\x4d\x80\xe2\xc0\x5f\xeb\x65\xbe\x8f\x85\x48\xd8\xc4\xc1\x22\x5c\x66\x00\x2e\xa2\x2d\x2c\xa0\x4a\x48\x46\x3f\x8e\x72\xe0\x65\xbd\x05\x84\xf6\x76\xf8\x68\xdd\x1a\xec\x25\x54\xb1\x91\x4a\xe4\xa2\x0b\xb5\x21\xd9\xd4\xbd\x7a\x7f\x40\x21\xd5\xca\x10\x30\x39\xd6\x16\x6b\xe3\xae\xf0\x98\xa6\x26\x6a\x52\xc6\x35\x68\x91\xa3\xcd\xbd\xa6\x79\x3d\xae\x26\x27\xcd\x99\x2b\xbe\x07\x3a\x81\x5a\x13\x02\x57\x7e\x96\x8c\x54\xdc\xa3\xe3\x0d\x02\x8f\x96\xd3\xce\x34\xa5\x49\x69\x1f\x55\x91\xf5\x55\x92\x09\x66\x8f\x83\x12\x42\x88\x64\x1d\xe5\x6e\x4c\x79\x7e\xb3\xa5\x3f\x14\xf9\x8a\xf1\xdb\x77\x52\x34\xcd\x05\xad\x94\x5b\x7a\xfc\x9b\x46\xa1\x03\x87\xef\xca\x46\xf8\xa0\x9f\xf6\x5b\xb6\x64\x42\x45\xf8\xf0\xe1\xed\x8a\x3d\x18\x06\x12\x11\x5b\xd2\x40\x42\x02\x94\x38\x43\x03\xbe\x10\x0c\xec\xa1\xf1\x81\xc4\x66\xbf\x9f\xe3\x8a\x24\x4f\x16\x35\xaf\x2b\xba\x5a\xac\xea\xdd\xee\x7e\x41\xcb\xb2\x28\x17\xfb\x5c\x6c\x14\x09\x5b\x40\xcc\x9a\x27\x19\xbc\x4f\xce\xe2\x4e\xe6\x11\xbc\x48\x05\xa1\x5d\xe2\x92\x3c\x34\xe8\xd8\x70\x0e\x87\x69\xae\xe3\x86\x8e\x92\xc5\x56\x7d\x4d\xf0\x83\xe4\xfd\x9d\xd3\x5c\xa6\x84\x01\xf7\xa2\x41\xd8\xcb\xa6\x5a\xf7\x68\x26\xa5\x10\xab\x1a\x84\x30\x9b\xa6\x39\xc4\x91\xf9\x38\xa0\x69\x61\x82\xb8\xb7\x33\xa0\x60\x9a\x10\x4e\x4c\xfb\x64\xed\x1c\x27\xa6\x5e\x53\x2e\x66\x3a\xc0\x82\x6b\x1d\x2e\xe1\x12\x5c\x1d\x43\x29\x42\x28\x73\x5f\xda\x61\xbf\xeb\x90\x18\xf9\x41\x83\x25\x3f\x49\xb8\x1f\x1a\xdf\xc4\x2a\xd4\x8d\x1b\x53\x7e\xcb\x38\xfd\x8e\xaf\x0b\x54\xc8\x94\xe0\x0b\xd9\x93\x62\xbc\xae\x95\x07\xa6\x9e\xc2\xd1\x25\x52\x86\x93\xee\x88\x05\xcb\xa6\xed\x0b\x9d\x2e\x2b\x1a\xdc\x57\x1b\x66\xe0\x32\x59\xd1\x92\xc1\x49\xac\x9d\xe4\x59\x38\x78\xe3\x7c\xb5\x82\xe3\xf4\x45\x51\x5e\x43\x66\x75\xfa\x98\x50\x11\x0c\x75\x40\xb2\x9e\xd3\x35\xe3\x8c\xdf\x0e\xf2\x01\xac\xc5\x81\xad\xa2\x1c\x14\x5c\xbf\xfb\x1d\x68\x0c\x7f\x37\x28\x6a\x51\xb1\x15\x1d\xe4\x7c\xa0\x8a\x1f\xb0\x0a\xf0\xb5\x80\xf3\x06\x6c\xad\x33\xa3\x69\x53\xaa\x2d\xf9\xa0\x3c\x12\xcf\x09\xa9\x66\x95\x3b\x84\x0d\x87\x1f\x6e\xdc\x73\x13\x63\x5e\xef\x6f\xed\x47\x6b\xb1\x6a\x7c\x08\x26\x35\xdd\x9d\xd8\xa1\xc4\xcf\x1f\xc4\xf0\x0c\xaa\x32\x57\x4e\xc0\x2f\xea\x36\xea\x45\x96\x3c\x49\x1a\x84\x3b\x44\xc1\x63\x0a\xa8\xc3\x45\x20\x7f\x40\x22\xa5\x33\x3e\x47\x63\x51\xc8\x87\xd1\xe5\x1c\xcb\x3f\xbf\x9f\x4b\x46\x27\x08\x60\x04\xe8\x14\xb6\x5c\x8b\x18\xed\x39\xd2\xfd\x02\xb2\xb3\x27\xc1\x52\x28\x69\x55\x6c\xef\x94\x41\xfb\xcb\x7c\x2f\xb7\xcb\x8a\xf0\xb3\xcd\x38\x97\xe4\x60\x45\xe4\x83\x92\xd7\x77\x44\xef\xcd\x15\xde\x74\xf6\xe6\x3d\x51\x71\x81\x38\x36\xe0\x79\xdf\xad\xb2\x72\x34\xc2\xd0\x99\x37\x05\xe3\x22\xdb\x61\xb3\xd4\xb3\x5d\x83\xef\xc8\x06\xd4\x9c\x67\x26\x1c\x94\x45\xa2\xb8\x1b\x0e\xd3\x3b\x50\x72\xae\x54\xcd\xb7\x86\x50\xdf\x9c\x42\x23\x57\x1e\x8d\xdc\x03\xe9\x3b\xbf\xc4\x69\x45\xfa\xf6\x8c\x4a\x32\xe9\xdb\x53\xe4\x5e\x12\x90\x5a\x93\xa7\x1d\x0e\x77\xa6\x4b\x97\xdd\x87\xdb\x12\xb5\x48\x54\xdd\x22\x51\x37\x0d\xc2\x7b\xe5\xf4\xad\x08\x55\x8d\xf0\x2d\xa9\x3d\xfa\x04\x9b\xb9\xaf\x55\x15\x52\x63\xb3\x38\x4a\x2a\x12\xc9\x6b\x33\xad\x5b\x6a\xf0\x3d\x3a\x3b\x4e\xfe\xb7\x64\xe5\x53\xfe\x25\xf1\x0b\x70\xef\xd7\x47\x2b\x5d\xca\x8a\x0c\xd1\xdd\x76\x4e\x82\xf6\xe2\x69\x1e\x25\x4e\x5b\xbc\x46\x58\x35\x4d\x0f\x61\xab\x61\xfa\xed\xaf\xda\x2c\x6c\x67\xe9\x84\xd6\x3d\x9a\x68\x87\x17\x06\x5d\x57\x52\xaa\x3b\xbc\xc3\xb7\xa8\x8d\x69\x59\xb4\xf8\xb6\x88\x79\x94\x3f\x9f\xa0\x1f\x56\x6c\x52\x93\x52\x34\x1c\x9e\x03\xfa\xea\xd4\xbc\x1c\x25\xe3\x64\x24\x32\xef\x9a\x20\xf7\x4d\xbe\xbf\x10\x81\xf4\xa1\xf1\xb9\x9e\xd9\x1f\xe6\x98\x11\xdd\xf0\x36\x55\xe8\x6e\x6d\x65\xf5\x01\x61\x30\xe0\x4e\x5f\xdf\x64\x68\x1c\x04\xf5\x12\x33\x38\xa7\xed\x01\xe3\x9b\x07\x31\xcc\xc6\xbb\x7c\x1f\x41\x24\x90\xdb\x93\x39\xf9\x49\x81\x48\x20\x2c\x1e\x63\x70\xa3\xbe\xe0\x27\xde\x1a\x9e\x78\xad\xe3\x59\xd9\x8f\xd7\xca\xf5\x52\x0a\x9c\x3e\x33\x7e\x93\x57\x6c\x99\x20\x45\x0e\xfc\xcb\x3a\xa3\xc2\x31\x06\x53\x5d\x5d\x64\x92\x9a\x2e\xac\x06\xc0\x20\x0e\x5c\xb9\x28\x51\x1e\x42\x36\xd4\x5a\x57\x00\xd0\xe6\xfa\x7d\x8e\xd1\x02\x47\xa5\x0b\xee\x5f\xbb\xc8\x52\x7a\x44\x8c\xc7\x05\x8c\xd0\xa1\xfd\x4b\xe5\x1d\x73\xa6\x77\xd6\xf4\x24\xba\xa6\x27\xfe\x9a\x9e\xcc\x41\x33\xa6\x28\xe3\x9d\xd2\x01\x6b\xa9\x83\x55\xbe\xb7\xf9\xf9\xe4\xb1\xce\x68\xf7\xfd\x53\xe5\x25\x8d\x97\xb8\xba\x58\xd3\x5c\xd4\x25\xed\xfa\x02\x3d\x62\x7c\xdc\xba\xc3\x36\xca\x45\xb5\xe9\x4e\x31\x24\xfc\x4c\x40\x84\xbe\x2b\x97\xd0\xd3\xbf\x6f\x2b\xac\x43\xfd\xb9\x17\xe1\xc3\xc5\x28\x4f\x8d\x1e\xe5\xab\x4b\x34\x1c\x52\x27\x67\x39\x0d\xd4\x25\x21\x36\x0a\xdb\x34\xe5\x70\x2d\x8a\x18\x1f\xd0\x69\x39\xe3\x73\x79\x04\x14\xc6\x9f\x91\xa3\xec\xc9\x82\xad\x7e\xab\xa3\x4a\x72\xc0\xd9\x6a\x27\x4a\xd8\x2a\x41\x28\x2b\xed\x4b\xe7\x98\xa9\x22\x1d\xe1\xb2\x71\x24\xe8\x9d\x21\x4b\x64\xa3\x20\xff\x9e\xb7\xdf\xc7\xa0\x3c\x1c\x35\x23\x84\x6c\x14\x68\xc7\x9e\xd4\x2d\xd3\x81\x7a\x7c\x05\x39\xbf\x35\x7a\xa7\x31\x18\x48\xd0\x15\x0e\x94\x63\x92\x02\x6b\x8d\xee\xf8\xed\xeb\x1f\xdf\x5f\xbf\x5d\xa8\x3f\x53\xe8\x81\xd1\x21\xbb\x3b\xa3\x04\xf7\xdc\x60\xe8\xef\x8d\x89\x06\x83\x17\x15\xf5\xd4\xb6\x9d\x3b\x7b\xab\xf1\x37\x1b\x44\x32\x74\x36\x3d\xb9\x4b\x6d\xa0\x14\xcf\x7f\x01\x4c\x01\x16\x3f\xef\xb3\x56\xeb\xa2\xee\x97\x72\x11\x69\xa0\x08\xbc\xc3\xf7\xc0\xb4\xe1\x3b\xc3\xff\xdd\x6a\xed\x8b\x5d\xa5\xaf\x00\x9b\x36\x6c\x1b\xbe\x21\xd1\x66\x2c\xc8\x4d\x9c\x48\xdd\x22\xfc\xd1\x5b\x11\x4a\x7d\xe8\x3b\xe4\x22\x7c\x1d\x80\xa0\x7d\x74\x37\x10\x67\x8b\x69\x4a\xbd\xcc\x8b\x56\xce\xc3\xe1\x41\xb2\xba\x11\x1f\x5d\xf0\x35\x7d\x68\x70\x4e\x1e\xf4\xd2\x82\xfb\xa7\x4c\x72\xa2\xf7\x7b\xf8\x5b\x2d\x0b\xf5\x90\x57\xd9\xf9\xa4\xb1\x61\x8b\xaa\x81\x5c\xee\xa8\x1d\x56\x32\xad\x14\x8e\xdc\x43\x13\x32\xa9\x25\xa6\xb3\x6a\x8e\xf9\xac\x9a\x23\x5c\xcc\xaa\x39\x29\x71\x2e\xff\x9c\x4f\x3a\x91\x09\x79\xbb\xcc\x5a\xf2\x15\xf9\xac\x56\xe1\xc7\xda\x45\x33\x0c\x51\x0b\xe9\xac\x86\xa2\xeb\x39\x61\xce\xf6\xb0\x91\xcb\x61\xe9\xd4\xc2\xee\x74\xf1\xa8\x2a\x04\x5f\xf8\x88\x50\x76\x3d\x1c\xa6\xc0\xcc\x5a\xe7\x7c\x94\xde\xe0\x5b\x84\xef\xc8\x47\xc5\xea\x7e\x22\xb3\x39\x7e\x27\xdb\xf0\x9a\xcc\xe6\xb6\xe5\x57\xb2\xe5\x77\xe8\xae\xdd\xf2\x2b\x34\x1c\x26\x1a\x45\xdc\xbc\x94\x3c\xd3\xd5\x70\x98\x28\x3b\x61\xfd\x2b\xb5\x91\x65\xbd\x75\x91\x10\x42\x52\x46\x52\x4e\xee\x66\x57\x73\x34\x86\xb9\x38\x1c\x12\xb8\xe6\x4a\x54\xf4\xb3\xd9\x1c\x81\x26\x20\xaf\xf4\x1a\xb4\xbb\xdc\x75\xf0\x4f\x54\xb6\x44\xb1\xa6\x76\x8d\x5c\x21\x1c\x82\x01\xae\x65\x81\x90\xa6\x1e\x5f\xa1\x74\xad\x55\x06\x08\x21\xbc\x21\x7c\xac\xc2\x00\xc2\x57\x15\x2c\x10\xa9\xb0\x36\x7d\x95\xa6\x6b\x5c\xe1\x8d\x94\xe4\x6e\x01\xc5\xf9\x0a\xef\xc8\x43\xcd\x57\x74\x59\x00\xa3\xf0\xdc\x5f\x70\xad\x86\x05\x8b\x71\x8d\x6d\xe9\x61\xa6\xbd\xf7\xc1\xbc\x81\x65\xbb\xc1\x75\xb9\xfd\x13\xbd\xcf\x2a\xbc\x2f\x8b\x7d\x76\xa5\x56\xb1\x85\x86\x03\xc2\xb2\xc2\xe1\x16\xce\x6e\x15\x45\x03\xc3\x4b\xbc\xcf\x4b\x51\x65\xb9\x0a\x29\xa5\x1d\xe0\xd5\x56\x60\x0d\x7e\x37\xbb\x9a\x93\x77\x72\xf5\xbe\x9b\xad\xe6\x64\x87\x3f\x29\xde\x71\x87\xf0\x6b\xf5\x74\x65\x51\xa1\x1f\x7e\xde\x57\xd9\x27\xbc\xcb\xf7\xd9\x3b\xbc\xf7\x1a\x50\x65\xaf\xb1\x92\x79\xb2\x07\xc6\xf3\xd6\x1d\xaa\x8f\xe1\x36\xa3\xf3\xb3\xfb\xb1\xf3\xb6\xb7\x17\x2d\x8f\x65\xd2\x9b\x20\x92\x17\xdf\x8f\x17\x2a\xf7\x9f\xdf\x98\x2f\x10\x85\x14\x83\x7a\xe4\xb5\x06\x14\xad\xbe\xb4\x6c\x30\x89\x62\xfc\xd6\x2b\x1d\x35\xe0\xa0\xbc\x80\x1b\x09\x0d\x20\x00\xfa\x76\x35\x18\x1d\xd3\x15\x1d\x50\x1f\x92\x7b\x91\x0f\x70\x4e\xbc\x0f\x84\xea\x87\xb3\xdc\x02\xef\xa7\x39\x49\x29\x11\x00\xff\xa9\x3e\x1e\x0e\x33\x7d\xdf\x5f\x75\x68\xec\xe2\xe7\xfd\xf8\xe7\xbd\xa4\xaf\xb5\x07\xcd\x9f\x5b\xc7\x53\xa7\x48\xf1\xb0\x0a\x39\xaa\xe5\x09\x4e\xe1\x7a\x05\x44\x9c\x7c\xc6\x15\x35\x50\x81\x0c\x2a\x97\xb6\x44\x7a\xbf\xaa\xcd\x5c\xcd\x4a\xb3\x93\x25\x35\x1b\xc3\x42\x23\x35\x6a\x1a\xdc\x9e\x91\xd6\x98\x84\x97\xcc\xed\xd9\xa3\xe3\xee\x1a\x87\x09\xed\xce\x45\xcc\xef\x47\x97\xda\x9d\x37\x3a\x56\x7b\x09\x35\xb8\x1d\x97\xaa\x03\x19\xa1\x38\xe8\xc0\xb2\xc0\xb7\x7a\xeb\x1c\x87\xf6\x28\x54\x1b\x2f\x19\x29\x34\xe2\x73\x83\x42\xfc\xd0\x18\xcb\x99\x23\xd7\xf7\x63\x35\x12\xee\x06\x14\x17\x84\x4d\x59\x60\x45\xdd\x93\x13\x92\xe0\x9c\xf0\x90\x87\xc0\x55\x4b\x86\x6f\x70\x31\x56\x7d\x9b\xe5\x73\xb9\x50\x76\x29\xc7\x85\x3d\x64\xfc\x63\xb9\x46\xe3\x92\xae\xea\xa5\x17\xd9\xa4\x8d\xb9\x4e\xea\x99\x98\x63\xda\xe0\x0a\x6c\x19\x63\xd4\x3a\x72\x91\x3c\xa0\xd1\xc4\x9d\x1b\xdb\xa8\x3d\x4c\x8c\x3c\x53\x20\x21\x2b\xfa\xc5\x85\x46\xb3\xea\x62\x17\x5a\x0b\xf1\xa2\x28\xa3\xc5\x7a\xd7\xe3\x7d\x1c\xcf\x38\x19\xd9\xb5\x07\xe7\xce\xd1\x84\x92\xb2\x02\xa3\xd3\x60\x50\x00\xb8\x73\x3e\x5b\x63\xfa\x29\xe2\xa6\xb3\xa2\xb0\x70\x94\x96\x4b\xdb\xd2\xb0\xdb\x5b\x29\xa0\xba\x4f\x89\xf9\xa4\x43\x4a\x00\x90\xa8\x76\xf4\x0a\xe1\xe0\x3d\x58\xca\x90\x3d\x3c\xe3\x3e\xda\x49\x94\xfe\xa8\x63\x60\x6c\x4e\x01\x53\x69\xab\x23\xea\xba\x15\x35\x58\xb2\xe3\x5d\x33\xe7\x65\xc1\x39\x5d\xaa\xfb\x23\x73\xd3\xd4\xdb\x43\xd7\xbf\x06\x0b\xba\xdb\x6f\x73\xcd\x6e\x03\x5d\x6e\x1d\x8c\xf0\x4e\x61\x9d\x56\x99\x2f\x05\x58\x70\xe9\xce\x82\x31\xdc\x65\x1e\xeb\x6f\x82\xc6\xbb\xbc\x1d\x5f\x9b\xda\xe8\x9c\xfe\x5b\x8e\x50\x1f\x55\x65\xeb\x34\x65\x24\x9f\x49\x82\x3a\x57\x21\xb5\xbd\x8a\xc6\xd1\x15\x98\x32\x84\x93\x92\xae\x4b\x5a\x6d\x5e\x1a\x26\x2a\x58\xd5\xbe\x15\x89\x8d\x11\x0f\xe9\x53\xa4\xc3\x15\x9b\xe8\x46\x0d\x5e\x33\xde\x5a\xfe\x3d\xc3\xc1\xd6\x69\x5b\x6b\xd6\x15\x5d\x5c\xd8\x24\x88\x51\xe9\xc6\x50\xcb\xb4\x5a\x24\x21\x5c\x1b\x0b\xe9\x8b\xfc\xef\xf8\xba\xa8\xf0\x2e\xa0\x91\xf8\x8e\xec\xc6\x0b\x6f\xa6\x5e\x14\x65\xba\x42\xf8\x16\x5e\xef\x95\x45\x74\x85\x6f\x7c\x14\x65\xe0\x93\xe1\x40\x86\x2c\x70\x2a\xa3\x74\x87\x57\x26\x38\xcf\x9d\x3c\x27\xfd\x19\xa8\x20\x6c\x27\x23\xf0\x01\x8e\x35\xa8\x1d\x79\x8b\x1f\xd7\x84\xe9\x4d\x3c\x50\x6e\x5c\xe6\x27\xde\x76\x22\x41\xde\xba\xaf\x32\xf1\xed\x34\xdd\x7a\xcb\xa7\xc2\x4c\xed\x72\xbc\x26\x79\x94\xe1\xdc\x62\x5b\xb8\x0a\x66\x82\x50\x56\x4f\x5d\x20\xbf\x35\x01\x19\x01\x54\xcc\xf9\x38\x4e\xbe\xd6\x91\x32\xd2\x35\x61\xe3\x38\x0f\x8a\xb7\xe4\x3e\xb5\xbe\xc7\xf0\x0a\x21\x5c\xf5\xec\xf8\xbc\x6f\xbb\xaf\xcf\x49\x50\x05\x14\x04\x1a\x4a\x6f\x0e\x5f\xf3\xed\xbd\x0e\x09\x7d\x33\x1c\xa6\x1b\x92\xf7\x2f\xf2\x74\xef\x55\xbb\xc1\xce\xf2\x07\x4d\x6f\xc8\xf9\x24\x03\x8c\x80\xfd\x70\x98\xde\x90\xf3\x4b\xe5\x4e\x58\x28\x03\x77\x33\xcc\x78\x8b\x10\xee\xb4\x89\xac\x71\xdf\x50\x10\x42\xd6\xc3\xe1\x39\x3f\x6a\xd8\x78\x38\x08\xc5\x20\x3f\xdc\x69\xde\xfe\x8e\x41\xa0\x15\x29\x61\x7e\xa0\xf7\x59\x7d\x38\x98\x09\x68\xd0\xd9\xcd\x70\xc8\x23\xd6\x4b\x6a\x25\x76\x62\x3f\xf9\xc8\xb0\x46\xb3\xa2\x96\xa4\x26\x3b\x67\xfa\xa7\xb7\x40\xfb\x68\x33\x4e\xf4\x2c\x99\x39\x6a\x10\xf6\xf7\x0e\xc4\x46\x6a\x1a\x79\x80\x1a\x5a\x9a\xad\xb1\xf7\xd8\x67\x0b\x7b\xd4\xd0\x32\x62\xcd\x09\x2e\xe3\xcb\x7e\x04\x26\x67\x8a\x09\x50\x0a\x82\x96\x3b\xba\x62\xb9\xf0\x18\xa2\x48\x03\x9e\x76\xaa\xee\xcb\xfa\x25\xcd\xd0\x14\xb3\xcf\x66\xb5\x8f\x1d\x33\x84\x56\xa8\x20\x5d\x3d\xd6\xaf\x47\x07\xd0\xcb\xf3\x25\x0d\xaf\x28\x5f\x75\x21\xb9\xac\x7a\xf1\x17\x07\x8a\x34\x77\xf4\xba\xbd\xad\xb3\xa7\x35\x1e\x87\xc3\x79\x3a\xc1\xf9\x98\x55\xef\x69\x25\x99\x72\x94\x22\x94\x96\xad\x1e\xcb\x26\xeb\xae\x96\x58\x78\xf7\xe7\x44\x58\x28\x9f\x82\x58\x6e\xa0\xe0\xd5\x8c\xd9\x00\xec\x81\xc9\xb0\x50\xae\x35\xf5\x3e\xc6\xd5\x60\x7d\x12\xd9\xe8\xd0\x27\x69\xc1\xb6\xed\x54\xf2\x1c\xaa\xc1\x0e\xba\x22\x5b\x9d\xbc\xab\xf8\x4f\x6b\xcd\xaf\xb8\x8c\x87\x43\xca\xa3\xbc\x53\x20\x52\x27\xa8\x85\x7c\x2c\xa2\x11\xe2\x02\xb4\xff\x54\x8c\x92\xf1\x6c\x9e\x60\xaa\x70\xe9\xb4\xe0\x83\x1a\xd4\xa4\x15\xe6\x9d\x96\x10\x7d\x15\xbd\x8e\xb3\x36\x78\x43\xd6\x9a\xc2\x9f\x85\xe7\xc0\x66\x1c\xca\xd6\x58\x03\x1e\x44\x4e\xdd\xe0\x2c\x17\x91\xf3\xde\xba\x37\x2f\x6e\x1c\x82\xa1\x0a\x8e\xa2\x4c\x9e\xd7\xe1\xc0\x1c\x21\x96\x6b\xc9\x8c\x49\x89\x5e\x98\x8b\x07\xe6\xa2\x2c\x2e\xc7\xcb\x7c\xbb\xac\xb7\xe0\xdf\xb4\xdc\x50\xc9\x8c\xa7\x42\x53\xd1\x50\x68\x12\x4a\x94\xc5\xa6\x18\x84\x73\x52\x1a\x09\x0f\x58\xd7\x71\x8f\xf6\x07\x90\x21\xec\xf1\x43\x71\x2e\x89\x6d\x4e\x76\x7a\x59\xaa\xee\xbb\x33\xca\x57\x8d\x57\x60\xd7\xa9\x55\x50\xa2\xde\x7b\x6b\xa8\x02\x6e\x59\x7b\xf1\x79\x30\x64\xf6\x82\xb4\xda\x14\xf5\x56\xa3\xf6\xeb\x9d\x58\xc2\x8f\xf7\x9a\x21\x96\x45\x28\xb5\x71\x4c\x20\xd7\x7c\x5d\x68\x1f\xd8\x9a\x8e\xbe\x11\xe4\xd1\x11\xe4\x7a\x04\xb9\x19\xc1\xb3\x52\x2d\x8d\x94\x29\xce\xbf\xc1\x37\x74\x5d\x94\x14\x58\x57\x79\xdc\xac\x25\xb9\xd0\x3f\x4a\xba\x62\x25\xb8\xf5\x61\x8d\x56\x1e\x61\xcf\x8d\xac\xa0\xb8\x5c\xc8\xea\xb6\x28\xfd\x24\x1a\xbc\x53\xc5\xc5\x74\xc5\xed\x00\xef\x3e\x35\x88\x6d\xcd\x5d\xbe\x4f\x9c\x72\x77\xab\x14\xc6\x81\xca\x80\x10\x49\x05\xea\xe1\x10\x3e\xd6\x72\x93\xd7\xdb\xad\xe4\xd5\x4a\xb2\x55\x76\x31\xe9\x93\xff\x4c\xc7\xff\x86\xe0\x06\x05\x29\x3b\x89\x72\x76\x39\xc7\x15\xa1\xb3\xed\x5c\xae\x13\x49\x4d\xd8\x3a\x3d\x67\x30\x1f\x39\xf2\x82\xab\x79\x12\xbc\x52\x2d\x70\x63\x6b\x02\x76\x35\x5f\x5d\x9a\xb8\x95\x16\xbd\xaf\xbb\xd5\x66\x61\x9e\x8b\xcb\xb9\x1d\x2c\xff\x50\x5b\x33\xbe\x82\xf1\x4c\x19\x08\xf6\x1e\x7b\x99\x45\x55\x01\xca\xf4\x07\x72\x18\x5b\x43\xcd\xa8\x87\x44\x54\x85\x2d\xb1\xc5\x1f\x39\x0a\xdb\x73\x50\x89\xa2\x94\x2c\x1f\xb4\x2d\xea\xbb\x01\x29\x1e\xbb\x13\x89\xaa\x6e\xce\x5a\x94\xbe\x33\xff\xfa\x4c\xb3\x01\xf8\xac\x7f\xdf\x83\x6c\x8d\x17\x15\xc2\x59\xd8\x86\x37\xd3\x6a\x21\x26\x23\x15\x4c\xb4\x34\xd3\x5a\x92\x52\xdd\x50\xab\x6e\xa5\x1a\xf7\xd0\x0d\xf6\x06\xb7\x28\x41\x6b\xf8\xa9\x77\x1b\x2b\xb4\xd8\x58\xe9\x5b\x38\xa5\xa8\x83\x01\x0f\xce\xac\xa8\x9c\x1f\xbd\xe0\x61\x84\xc7\xb4\x5a\x06\x26\x5a\x4a\x38\xe1\x99\x39\x1c\xa6\x94\xb4\x5f\x22\xcc\xe3\xd7\x44\xd4\x33\xaf\x8f\xf6\xb0\x1d\x1c\x21\x98\x33\xbb\x33\xbc\xeb\x0d\x01\x34\x0e\x3a\x1e\x53\xdc\x09\x6c\x91\xc3\x59\xbc\xc7\x05\x39\x9d\xa5\x99\x7e\x96\x22\x4f\x5d\x89\x73\xed\xe5\x93\xdf\x6c\xe9\x70\xa8\xe9\x43\x31\xbd\x93\x44\x11\x65\xf4\x4c\x59\xde\xb3\xce\xa8\x3b\x1f\x08\x93\x07\xfc\x56\xf3\xe1\x30\x77\xeb\xf6\x70\xe0\xb8\x30\xfb\x5b\x6d\xb0\xaa\x7d\x87\x23\x10\x9a\xb6\xd3\xcc\xc4\x3c\x83\x92\x7c\x4a\x2a\x59\x56\xff\xfc\xe8\x3a\x58\xc3\x67\x05\x9b\x20\x9f\xa2\xcb\x4a\x8f\x76\x41\x26\x11\xdb\xda\xb3\xe2\x70\xe8\x46\x86\x96\x8c\xd7\x94\x13\x9a\xa5\x5a\xfb\xe4\xab\x74\x3a\x4c\x99\x20\x54\xdb\x6d\xe5\xed\xe8\x88\xce\xba\xb4\x3d\xd7\x14\xf9\xd4\x5e\x3f\x58\x11\x7e\xd9\x91\xe5\x37\x36\xf6\x2d\x88\xdb\x4c\xca\x17\x85\x5c\xfd\xf2\xaf\xef\xd5\xfc\xe4\x16\x27\xe3\x04\xe1\x25\x61\xe3\xa2\x16\x5b\x2a\xf0\x3a\xd8\x0f\x78\x63\x1c\xbb\xd0\xd9\x92\x2c\x0f\x87\x64\x97\x33\x9e\x60\x31\x4d\x2b\x42\xbd\x7e\xd5\x84\xb6\x3a\x5e\xa1\x2c\xad\x42\x27\x6a\x53\x5d\x2d\xd9\xb8\xf5\xe1\x90\xae\x89\x98\xd2\x0e\x1f\x9b\xc7\xb7\x5f\x85\xb2\xde\x2f\x87\x43\xb7\x18\xaf\x79\xce\x10\xc9\xda\x44\xaf\x01\x48\x73\x0d\xfa\x8c\x68\xa1\x05\x42\x67\x9b\xe1\x70\x0d\xbe\x03\x86\x38\x6d\x90\xbe\xb9\x77\x99\x4c\xaf\xb3\x64\x54\x1b\x3b\x49\x3d\xfc\xdb\xe1\x30\xdd\x91\x55\x4a\xe5\xd9\xb9\x25\x84\xec\x5c\x93\x60\x66\x34\x70\xa8\x21\xce\x60\xf4\x91\xe5\x52\x92\x2c\xb2\x2d\x56\x33\x92\x2d\x21\xa8\x6a\x56\x79\x54\x51\x8a\xb8\xa6\xda\xbd\xec\xe9\x42\x14\xfb\x1f\xe8\x1d\xdd\xfe\x85\xd1\x8f\x66\x0b\x34\x2a\xe4\x32\x2e\x30\x97\xc2\x49\x5b\x51\xa9\x74\x01\x39\xf0\x76\x6c\x5c\xf0\x25\x6d\xf1\xbe\xc9\xa2\xa2\xe2\x35\x34\xa2\x4a\xe4\xa9\xca\x2a\x9d\x5d\xbd\x3c\x46\xaf\x0c\x56\x11\x20\x29\x75\x06\x9f\x9a\x0d\x43\xcd\xb2\x2b\xad\x25\x9b\xec\xc1\xd4\xff\x11\x59\x41\xda\x5a\x01\x49\x91\x8f\xbb\x45\x09\x8d\x6f\xb7\x12\x62\xf4\x9e\x72\x95\xa1\xa9\xc9\xb7\x1e\xfb\xa1\x51\x69\x27\x4f\xc5\x57\xcc\x28\xdf\x04\xc0\xcf\x0a\xeb\xcb\xd3\x53\x63\x83\x3b\xef\x7b\x44\xbb\x82\xac\xf4\x11\x21\x6b\x2b\x86\x43\x41\x08\x29\x82\x95\x22\xcc\x4a\xd1\x22\x6e\x67\x2a\xbd\xe8\x6b\x46\x48\xf5\x3e\x83\xd1\xb1\x1a\x68\x02\xa6\xd6\x25\x50\x02\xa2\xce\xe0\x48\x6a\xa2\x97\x62\x39\x86\xbf\x6a\x41\xaa\x4c\x66\x55\x96\x66\xe6\x60\x71\x2a\x5e\xc3\x5f\xa1\xc6\xb3\xc2\x2c\x53\x03\x5d\x75\xda\x62\x43\xc7\xd1\x4a\x3a\x37\x02\xc1\x8b\x63\xda\x79\x7d\x44\x76\xc7\xee\xeb\x49\x64\x28\xc8\x6c\x7e\x72\x83\x1b\xcf\x8e\x73\xe5\x49\x78\x51\xc7\xb1\x2f\x34\xbd\x04\xed\xf4\xb9\x30\x8c\x73\xd7\xf9\x4c\xc5\xdf\x5b\xa7\xbe\xb3\x99\x9c\x72\xeb\xa9\x3d\xe3\xa3\x72\xde\xa4\x20\x6e\x1f\xbb\x98\x0b\x15\xdc\x17\x97\x2e\xd0\xe0\x70\x28\xcc\x47\x67\xc0\xa5\xae\x9e\x1e\x02\x95\xe9\x8b\xa2\x24\xed\x17\x87\x83\xbe\x56\x34\x1a\x8d\x96\x18\xa6\xc4\x84\x30\xcf\xac\xb2\x2a\x93\xc8\x27\x28\xad\x8e\x9b\x26\xaa\xab\x45\xcf\xd6\x64\xda\x79\x93\xa5\x9d\x57\x1d\x1b\x97\x4e\x0a\x1c\xb4\x03\xc9\xb1\x8c\x2a\xb4\xab\x94\x87\xe3\xd8\x29\x09\x45\x5e\x35\xa9\x9d\x1b\xcc\x11\xde\x76\x06\x71\x56\xcd\x65\x1b\x97\xa1\x11\x9b\xba\xdb\xf9\x79\x5f\x79\x77\x36\x4b\xff\xc6\x00\xae\x0b\x96\x70\x55\xb0\x2f\x8b\x3d\x08\x7d\x78\x3b\x53\x1a\xe7\x39\xc9\xa7\xb5\x79\xce\x3a\x6a\x75\x33\xfb\x5b\x37\xe5\xf7\xde\xf5\x68\x27\x94\xb0\xb1\x63\xa1\xd6\x8e\x25\xa3\x2e\xeb\x9d\xb7\x19\x9c\xc5\xae\xe1\x33\xa7\x70\x2e\x38\xb7\x01\x1c\xdc\xde\x00\xb4\x31\xcf\xb8\xb2\x6d\x46\x99\x68\xf6\x3a\xb8\xc2\x33\x29\x98\xa4\x0f\x4c\xb9\xf6\x6a\xfb\xd5\xec\x7c\x12\x40\xe4\xef\x4f\x31\xe0\x8c\x1a\x00\xb7\x2c\x32\x23\xf6\x9c\x8f\x18\x69\x6a\x1b\xf5\xd3\x20\xdc\xfb\x6d\x4b\x3f\x3f\xf8\xd4\xa3\x41\xbc\x42\xa8\xf9\xde\x51\x59\x68\x6c\xa6\xe3\xf6\xab\x7a\x04\xbf\x30\x1a\x94\x47\x51\x42\x5b\x51\x6a\xee\x4f\x55\xf0\xe0\x4f\xb0\xef\xef\x95\xee\xd7\x77\x22\x95\xcb\x0d\xdf\x91\xaa\x65\x59\x59\x39\x4b\x4a\x87\xa2\xac\xd0\x73\x7d\xc0\xa5\x05\xe3\x4c\xd9\x3f\x96\xdf\x57\x3d\xe8\xb5\x2d\x7a\x09\x86\x2b\x36\x30\xc9\x59\xbb\x9d\x00\xd1\x6a\xec\x20\xc7\x0b\xfd\xd1\xc5\x00\x7e\xa6\xd4\x19\x10\x77\xdd\xff\xfa\x03\xcd\xef\x28\xd9\x9d\x79\x40\x79\x4b\x17\x0f\x7f\xbc\xaa\xb6\x06\xf3\xa8\x3a\x1c\x66\xbb\xb9\x89\x8e\xb0\xb8\xa9\xd9\x76\xf5\xfc\xdd\x0f\x29\x3a\xe3\xc6\x6b\xc9\xdf\x40\xce\x77\x09\xb7\x1c\x20\xce\x27\xd8\x04\x33\x06\x35\x3d\x84\xd0\x94\x03\x05\xd7\xad\x6d\xcd\x87\x52\xc7\x4f\x9e\x52\x77\xf8\x50\xd0\xbb\xd3\xb9\x17\xc1\x11\x36\xdf\x2e\xdf\xa7\x81\xdf\x5d\x83\x6d\x33\xbb\x83\xfc\x10\x77\x4e\x31\x98\x7c\x79\xf5\xb2\x58\xd5\x5b\xfa\x4d\x5e\xd1\xd5\x5b\x25\x18\x82\x58\xc7\xa3\xe0\xd9\x5a\x57\xeb\x91\x99\xd0\xdf\x29\x1a\x03\x34\xd0\x85\xc0\x18\x5e\xec\xf2\xbd\x56\x01\xd0\xae\x77\x47\x1b\x48\x68\xbc\x70\x8e\x3a\xdf\xdc\x43\xda\x19\x9d\x1f\x0e\x69\xcf\x17\x22\x64\xfb\xe9\x47\x17\x97\x28\xd5\x08\x7c\xcd\xe7\xc3\x9c\x62\x5f\xcb\xf8\xe3\xdb\x1f\x88\x82\x7d\xf0\x5e\x3a\x83\xdd\xce\x27\x40\xfa\x71\x6f\x17\x3f\xef\x55\x5c\x36\xbd\x9b\x54\x7c\x8d\x54\xa1\x01\xeb\xdd\x20\x17\xd1\x9f\x6b\x5a\xd3\x95\x3b\xc5\xa8\xa0\xa5\x8e\x9e\xed\x41\x18\xcb\x93\x70\x05\xfe\x84\x15\xec\x9a\x77\x54\x58\x15\xb1\x1a\x14\xe5\x39\x56\x1d\xa9\xae\x33\x7c\xb1\xb4\xc6\x44\xe4\x48\xb3\xba\x43\xfa\xb3\x4a\xfc\xc6\x44\xfd\x7e\x68\x00\xab\x25\x03\x06\x30\xaa\xa1\x8b\xa3\x4c\x78\xf0\xd0\x16\x12\x11\xe1\x9e\x85\xdb\x8f\xed\x16\x51\x1e\x9d\x9f\xd3\xe1\xf0\xfc\xdc\x55\x48\x83\xb3\x71\xbc\x58\x28\x3f\x8f\xf2\x7e\xb1\x30\xeb\xbc\x94\xe2\x7b\xbb\x56\x00\x72\x13\x79\x29\x74\xdc\xa8\xc8\xb5\x5b\x07\x4e\x41\xae\x43\x96\x6f\x15\x58\x9a\xb9\x4b\x03\x6d\x9f\xa2\x97\x29\xf2\x71\xb2\x40\xb0\xe8\x94\x11\x19\x1a\x84\xcd\x3d\xa2\x45\x7f\x4b\x05\x60\x37\x8e\xe1\xc0\x44\xda\x15\x55\xff\xd4\xb7\x64\xaa\xca\x38\x81\xd6\xd8\x92\x3e\x25\xb7\x6b\x10\x32\x9b\x28\x70\x29\x3a\xb3\xfa\xba\x9e\x66\x9a\x81\xf7\x52\xc4\xa0\xfc\x91\x91\x1d\x16\xfe\x80\x08\x84\xc5\xd8\x83\xc0\x6b\x5d\x83\xf9\xfd\x6d\x10\x3e\x9f\x80\x88\xbd\xf2\x54\x70\x5e\xf7\x5e\x6b\x6a\xa6\x6a\x51\x2d\x78\xb7\x2d\x3e\x7a\xb7\xc5\x6c\xe7\xd0\x33\x63\xd1\xea\xd3\xa4\x2e\xb7\x89\xbb\xb0\x49\x93\x00\xb5\x45\x1b\x29\x39\xe8\x17\x0d\x97\xe3\x44\x9f\xc0\x8c\x09\x27\x41\x5b\xe5\x8a\xf2\x04\x22\xbf\xe9\xd6\x9c\x94\x55\x5a\x9e\x63\xfc\x76\x38\x6c\xbd\xa3\x2b\xe7\x05\xe0\xb1\x0a\xd1\x23\x37\x26\xaa\x47\xf5\x61\xa0\xc3\x64\xeb\xb4\x36\xa8\x48\xf2\xb8\xaa\xfd\xe3\xea\x41\xc9\x50\xe9\x96\xd4\xf2\xe0\xd2\xdc\x3a\xf2\x85\x40\xab\xcb\xd0\xd1\x9b\x6c\x44\x76\x36\x1a\xa1\x35\x49\x0b\xf2\x3e\x5d\xe3\x25\xe6\x33\x36\x47\x68\xbc\x65\xfa\x70\xa9\x70\x21\xc5\x67\x18\x4b\xad\x7d\x04\x29\xf9\x9c\x90\xad\x2f\xdd\x2b\xed\xc5\xb9\x94\xf9\xdb\xc9\x95\x88\x2d\xcf\x0d\xef\x23\x3a\x9b\x40\x6c\x18\x07\x37\x42\x9e\x41\x03\xb6\x08\xe1\x25\x29\x9b\xb5\x5d\x8d\xa2\xd8\x6f\x8d\x56\x68\xda\x7d\x35\xb6\x13\xa6\x70\x5f\xd7\xa0\xb2\x4b\xf3\x28\x0d\x42\xc1\xa1\x78\xc7\xe8\xc7\xec\x42\xb5\xcf\xac\xa9\xa0\x6c\x52\x19\x8a\x1c\xfb\xda\xad\x19\x3b\x8d\xda\x85\x47\xd3\x2e\x8c\x37\x71\x06\xa3\x84\xc6\x2b\xb6\x7a\x06\xe5\xbe\x2d\x0a\x50\x0f\x45\xba\x0a\xf0\x4d\x4a\x83\x10\xdb\x4d\x0e\x5e\xe7\xc8\xea\x0e\x33\x27\x60\x58\x19\xc7\xa7\x34\x78\x88\x0a\x0e\xe0\xc9\x6f\xd2\xf1\x08\x4d\x9f\xa0\xd9\x64\x1e\x38\x95\x77\x71\xd1\x6c\x71\xea\xd2\xa3\x9d\xa0\xdf\xbe\xb1\xb5\x1d\x66\x74\x9e\x0a\x88\xa8\x62\xe5\xb4\xab\x54\xc1\xf4\x22\xcc\xfb\x00\x8e\x7e\x2d\x64\xb8\xf5\xe3\xc8\x70\x9f\x89\x08\x07\x8e\x58\xeb\x38\xec\x18\x23\xa5\xa7\x75\x2e\x48\x69\x60\xc7\x72\x52\xfa\x62\x72\x7b\xe8\xbd\xda\x81\xb6\xfc\x12\x7b\x1d\x8b\x8d\xf4\xb8\xdd\x8e\xc7\x95\xbd\x7e\xc4\xb4\xe6\x97\x03\xcb\x19\x06\x3b\x7a\x9a\xf7\x75\xe1\x08\xbc\x5c\x30\x86\xe6\x4c\xf4\x31\xdd\x7b\x00\xe8\x8e\x18\x09\x79\x43\xa7\x33\x1e\x85\xb5\x53\x50\x47\x47\x2d\xa2\xfd\x33\xac\x0d\x91\x64\x5c\x35\xa2\x96\x45\xfd\xb3\xaa\x69\x40\xb4\x65\x47\xd0\xc6\x06\xd1\xa3\x2a\x80\x1a\x6b\xd9\x2d\x87\x0e\x00\x26\x4b\x78\x8b\xe7\x19\x68\xc9\x33\xfb\x11\xc5\x68\x40\x06\xa3\xc7\x80\x0b\x8b\x13\x23\xda\x3e\xa7\xfd\xa8\x88\xa1\x5b\x74\xe6\xcb\xc6\x2d\x46\xde\x1a\x20\x08\x65\x80\x60\x7e\x72\xf8\x39\x13\x73\xa4\x30\xde\x6a\x8e\x52\xf9\x73\xc6\xe7\x38\xd1\x2d\x04\x96\xe2\x14\xaf\x8c\x16\xe3\x0e\xf2\x54\x9c\x77\x59\xac\x99\x8f\x9a\xe6\xb6\xec\xa9\xae\x1a\xd6\x04\xd1\xe2\x0e\x3a\xa3\x44\x8b\xad\xe3\xde\xc9\xa6\x48\xe1\xb9\xb7\xde\xae\x66\xdb\xdb\xf9\x69\xe0\xf4\x19\xed\x6b\x73\xba\x14\xa6\xf8\x33\xc7\xfd\xc6\xa2\x5f\x96\x47\x58\x61\x1c\x43\x8e\x33\x48\xa4\x71\x96\xa1\x7b\xeb\x56\x0e\x87\xb9\x15\x13\xce\x89\x24\x4b\x79\x2c\xbc\x55\x89\xd0\x54\x37\x26\x1a\x4b\x83\xa2\x2c\xe5\xa4\x8d\xb4\x5d\x36\xf8\x58\x26\x1b\xa2\xd7\xca\x8a\x08\x21\x84\xf5\x0d\x75\x39\x1c\x9a\xbb\xdd\x00\x38\xa9\x00\x33\x05\x5d\x64\xe9\x45\xda\x2a\x10\x8e\x61\x2d\x8d\x15\xc0\xf7\x70\x68\x9e\xd2\x9e\x74\x36\x88\x87\xba\x8f\x61\x26\x0a\x82\x9c\x29\x80\x3d\x06\x56\xf4\x85\xce\x19\x97\x75\x30\x8f\x8a\xca\xe5\x31\x29\x72\xd0\x06\xac\x61\xb8\x20\x42\x1e\xa0\xa0\x8f\x8f\x28\x28\x8a\xf9\x19\x40\x43\xc9\xaf\xb7\x54\x5c\x07\x7b\x3c\x05\x33\x04\x75\x40\x58\xac\x0d\x45\x14\xb6\xc4\x1a\x04\x14\x78\xe9\x66\x7a\xab\xcc\x81\xe4\xf6\x37\xd1\x93\xcd\x0b\x72\x3e\xc1\x4b\x40\xf7\xcf\xbb\x4a\x98\x10\x25\x01\xe7\x0e\xd6\x60\x8b\x99\xd1\xf4\x01\x13\xec\x55\x85\xf0\x72\x1c\x78\x35\xa7\x05\xc2\xd5\x70\x78\x0e\x3a\xea\x88\xff\x36\x4a\x97\xe8\x28\xfe\xd1\xb2\xae\x44\xb1\x73\x00\x48\x03\x75\x16\x0f\x0a\xee\x01\x1e\x29\x40\x24\x0d\x7b\xa4\xa1\xa2\x15\xf0\x91\xe9\x72\xa3\xe6\xd9\xd6\xfb\xc8\x54\xf7\xcd\x1e\x8f\xcf\x99\x98\x2b\x4f\x06\x67\x5c\x15\x42\x42\x1d\x0e\x75\xc7\xa3\xbd\x31\x34\xa2\x2d\x5e\x7b\xf7\xbb\xea\x46\xd9\x59\xa3\xc5\xce\xaa\xb3\x7c\xec\x16\xb0\x4e\xd1\x5d\xd1\xa9\xe4\xf9\x83\x01\x70\x49\xbb\x83\x92\x1a\x1f\x42\x6f\x70\x00\xe3\x4f\x72\x22\x85\xbe\xc4\x86\x3d\xca\x71\xe2\x61\x2f\xe3\x02\x35\x67\xb9\x86\x89\xff\xf1\xed\x0f\x81\xbe\xaf\x50\x41\xc1\xcc\x41\x51\xf9\x98\xd7\x3f\xbe\xfd\x01\x74\x18\x41\x7d\xee\xdb\x63\x75\xc2\xea\x34\x89\x8f\x55\x0a\xc2\x7f\x3e\x0e\xa4\xe9\x20\x3d\x0f\xbf\x01\x23\x91\x8f\x43\xf9\x24\xb4\x25\x29\x65\xa6\x30\x81\x7e\xaf\x66\xb8\x7b\x51\xd5\x2b\x6b\x9c\x7d\x50\x64\x54\x66\xf7\xd2\x00\x16\x1a\x9b\xa6\x2b\xba\xa5\x82\x0e\xc4\x8c\xce\xb1\x98\x19\xe7\x81\xb9\xc1\x06\x8e\x7a\x8a\x94\x11\x2f\x0f\x87\xe6\x28\x0f\x56\x79\x6c\xf2\xb8\xe3\x5c\xa9\xc2\x42\x1a\x27\xe8\x52\x8a\x7a\x28\xde\xa9\xb8\xe5\x9f\x24\x90\x84\xd0\x29\xcd\x92\x5c\x8a\x39\xea\x42\xe9\xfb\x77\xaf\x5f\x8d\xd5\x61\xc5\xd6\x52\xf4\xc9\x12\x08\x43\xd6\x73\xaf\xd7\x2a\x3a\x3e\x46\x00\xb9\x2a\x4f\x90\x70\x90\x4a\x7d\xdf\xa6\xe5\x98\x1e\x57\x18\x8e\x4b\x33\x48\xa5\x1e\x24\xe8\xe7\xe3\x2e\x83\xb1\x9e\xde\x14\xc5\x96\xe6\xfa\xf2\x2c\x11\x65\x4d\x21\x1c\x57\x96\xf0\x7a\x77\xa3\x5c\xdd\xc5\xf4\x15\x3c\xa7\x14\x29\x0b\xd8\xd7\xeb\x14\x05\x63\x04\x03\x7f\x85\x52\x18\xab\x7d\x5e\x56\x92\xa7\x45\x99\x1c\xa5\x7d\x59\x73\xda\xe3\x75\x12\xb7\x7a\x20\x96\x9d\xf1\xbd\xa4\xa8\xb3\x58\x65\x03\x00\xa1\x4f\xb9\x14\xf1\xf2\xfd\x8c\xcd\xd1\x70\xc8\xfb\xdd\x5f\xc4\x8c\xcd\x87\x43\x3b\xd4\x6c\x0e\x02\x75\x9f\xf8\xef\x63\xf9\x11\xe5\x59\xbf\x86\x60\x5f\xca\x0a\x0e\x94\x60\x70\x8e\xa5\x51\x11\x01\x4b\x6e\x4f\xeb\x19\xf7\x65\xb1\xa4\x95\x16\x3c\x5c\x7d\xfe\x2d\x70\x8e\x05\xae\x70\xa9\xe3\x03\x9a\x6b\xe5\xca\xe2\xe6\xc6\xf0\x7c\x55\x1e\x86\xf4\xfd\x76\x5a\xf4\x0a\x2b\x1d\x51\xb1\xc0\xb3\xdc\x02\xeb\x8a\x16\xb0\x6e\xd5\xcc\x91\xa7\x26\xa8\xb5\x9a\xa0\x86\x59\x7c\xac\x27\x91\x41\x6c\x79\x55\xf4\xda\x13\x1a\xf4\x61\x00\xbc\xe8\x30\xd3\x0f\x0d\xae\xe2\xaa\xbe\x76\x39\x81\x90\x1f\x60\x57\x54\x28\x9f\xd5\xf3\xc3\x21\x05\x18\x8a\x6a\x56\xcf\xb5\xcd\xd3\x62\x5d\x6f\xb7\xf7\xef\x96\xc5\xbe\x83\x98\x6c\x70\x11\x8f\x24\x29\x5a\xd3\x56\x4a\xea\x0e\xa3\xd5\x9e\xb3\x1e\xf0\x68\x46\xde\x59\xfa\x60\x5a\xb4\xb9\x5f\x01\x48\x33\x97\x9c\xc1\x96\xf9\x4c\x7b\x95\x32\xc8\x6b\x35\xd6\x11\xb3\x02\xd6\x32\x2b\x40\xb8\xd4\x96\x86\x47\xb7\x62\x37\x9f\x62\x41\xfe\xfc\xe6\x25\x15\x79\x54\xa9\xa5\xd3\x7b\xd6\x1f\x81\x2a\x1c\x8c\x0e\x1a\xdc\xda\xc7\x11\xc6\xc1\x57\xe9\x1a\x50\x44\xbc\x25\x74\x56\x5f\x5c\xce\xb5\xf1\x10\x09\xae\x9c\x66\x5b\xe0\x60\x96\x8e\x45\x54\x8e\x1f\xe7\x13\xbc\x21\x00\x63\xf8\xd0\xe0\x95\xc1\x01\x51\x46\x5a\xf5\xd3\xd1\x48\x20\xb6\x4e\x3d\x56\x42\x75\x0e\xa4\x4b\xa4\x74\x5e\x4a\x8d\x5b\xfa\x1e\x95\x6c\x34\x42\x69\x45\x36\xb3\x5c\xee\x34\xf8\x24\x29\x8e\x39\xcf\xd0\x70\xd8\x76\xb7\x01\x7d\x6d\xdb\x9a\x78\x33\xcb\xe7\x58\xfe\x47\x0a\xbc\x52\xf6\x75\x85\x0e\xbd\x69\x96\xcf\x1e\x03\x3d\x43\x0d\xf8\x0a\xad\xc9\xf9\xa5\xb6\x19\x04\xac\x8a\x15\x60\x55\xec\x2d\xd4\x91\x53\xe5\xba\x51\x21\x3b\x84\x77\x52\xa6\x8c\x2d\xd9\x5e\x67\x60\xef\xea\xdd\x5f\x8f\xc1\x82\x30\x96\x23\x98\x11\x6b\x39\x52\x7e\xc5\x8c\xc7\x6f\xd1\x19\x54\xb0\x26\x01\xa1\x3e\x27\x13\x5c\x91\xc2\x1f\xd3\xfc\xab\xea\xe9\x68\x94\xa3\x74\x4b\xd2\x5a\x7d\x9a\xe5\x9e\xf1\x09\x1f\x0e\x6b\xf8\x21\x59\xd1\x2e\x7e\x82\x4d\xd2\xfd\x24\x33\x38\x57\x55\x48\xa4\x7d\xd5\x87\x43\x29\xca\xc5\xf2\x0c\x87\x29\x9f\xc5\x3e\xcc\x09\x9f\x6d\xe7\x58\x9f\x1c\xf2\x59\x2e\xe8\x63\x1b\xf4\xa4\x31\x6e\x59\x50\x6d\xba\x2e\x2a\x7d\x76\x3a\xca\x7f\xac\x77\xa4\x0b\x32\x81\x70\x0b\xde\x48\x17\x5f\xe5\x4f\x47\xa3\x02\x55\xea\xf5\xac\x98\xe3\xb4\x26\x95\x1d\x69\x21\x97\xaf\x1a\xe9\xaa\x67\xa4\x21\x49\x6c\xa4\x2b\x6f\xa4\x21\x91\x1e\xe9\x69\x7d\x4e\x48\x2c\x8b\x5c\xb1\xb3\xd8\x87\x39\x11\xb3\xda\x0e\xb4\x7c\x46\x99\x72\x32\x5e\xc7\xdc\x74\xaa\xa8\x9b\x4e\xa5\xdd\x74\xa8\x76\xd9\x40\xb8\xaf\xb2\x8d\x15\x01\xb1\xea\x3c\xae\x5a\xae\xc2\x92\x6d\x5c\x6e\xe8\xaa\xb6\xc6\x06\x60\xb3\x11\xd5\x31\x3d\x7a\xe3\xb6\xa8\xba\xdf\x94\x1d\xb7\xa9\xe3\x35\xb0\xfb\xda\x3e\xc6\xa5\xac\xd4\xcd\x1b\x4e\xf4\x05\x79\x58\x47\xa2\x61\x07\x82\x20\x0c\x9d\x38\x0e\x0a\xd0\x25\x96\xbf\x0b\xed\xf2\x19\xa7\xb5\x82\x64\xde\x58\x9b\x04\x4f\x91\x16\xe6\x8f\xbe\xec\x1e\xdd\xca\x97\xec\xcc\x5d\x40\xfa\x81\x26\x14\x88\xa0\x01\x49\x38\x9f\x38\xf0\x54\xe3\x7f\xd5\x3f\x09\x11\xfb\x88\x6e\x22\x38\xba\xca\xb1\x2a\xc4\x30\x76\x91\x74\xc7\x26\x14\x1c\x8f\xf1\x62\x97\x97\x1f\x40\x2f\x70\x55\x29\xa1\x36\xa6\x2b\x0c\xec\x1d\xc6\xf9\x6a\x05\x92\xdb\x82\x55\xf0\x26\x96\x2f\xd0\x23\x87\xd9\x0d\x60\xfe\x62\xb9\xa5\xb9\xc9\x0c\xdf\x1e\xad\x59\x6d\x38\x95\xbb\xa3\xbd\x89\x80\xc5\x28\x60\x1d\xb0\xc8\x76\x50\xbe\x98\x85\x36\x79\x45\x8f\xbe\xb7\x98\x71\xc5\x82\xf1\x79\x4c\x33\x65\x5c\x1f\xe4\xf7\x59\x69\x2f\xc8\xf2\xc3\x21\xed\xb9\x76\x1c\x83\xa1\xd0\xb3\x0d\xdb\xae\x5a\x7a\x27\x8e\x1f\x8c\xc9\x60\x76\x3e\xf1\x71\x86\x59\x83\xd0\xf8\xa6\x28\xc0\xfd\x56\xd5\x44\x72\x84\xf3\xc0\x46\xf7\xb6\xe5\x60\xab\xad\x69\xa9\x45\x9e\x7e\xca\xbf\x26\x93\xa7\x17\x17\x5c\x52\x64\xa7\xb1\x64\x24\x2d\x89\xc2\x71\x36\xb7\xc5\x1a\x78\x55\xa4\x0c\x97\xe6\xea\xab\x91\x05\xdf\x90\x07\x29\x86\x6b\xb3\x8b\x97\x6d\xef\x3e\x38\x3c\xf4\x62\x8b\x10\x22\x13\xb1\xa0\x35\xcb\xed\xb8\x08\x72\x6a\x66\xae\xd9\xf3\x33\xd9\xb3\xd0\x1e\x96\xad\x53\x7e\x4e\x08\x03\x9f\x87\x8f\x29\x35\x48\xc4\xc8\x5e\xd4\x95\xe3\xc8\xa2\x4e\x05\xc4\x9d\xe8\xb9\xe4\x4a\x0b\x2c\x10\xd6\xfc\x8b\x94\xa3\x16\x5e\xc1\xc6\x70\x22\x57\x46\x4f\x9f\x5d\x76\xae\xca\x46\x4d\xdb\xa9\xd8\xc8\x8f\xb3\xb9\xf5\x89\x3c\x63\x00\x1f\xde\x56\xde\x46\xdf\x29\x2b\x92\xf7\x9b\xb2\xf8\xc8\xa7\xc1\xaf\x8c\x9e\x81\xd2\x16\xb8\x36\x81\xc0\x77\x86\x8d\x77\xb4\xaa\xf2\x5b\x6a\x3f\xd8\x37\x80\xcf\x20\xf2\xe5\x07\xef\x13\xfc\x46\xb8\xa3\xf5\x66\x2e\x0d\x42\x4f\x53\x4e\x96\x05\xaf\x8a\x2d\x45\xaa\x7e\x2d\xb6\x81\xd7\x80\x64\xaa\x61\xa0\x06\x1f\x37\x6c\x4b\x07\x5a\x26\x63\xfc\x56\x69\x14\xb3\x41\x32\xe2\xda\x4a\x03\x04\xd4\x06\x6b\x32\xd9\xab\xc2\x91\x3b\xf9\xd8\xfa\x50\x42\x1c\x53\x2a\x70\xb3\x3e\x2c\x70\xb5\x0b\x7f\x71\x64\x21\x74\x97\x81\xcd\x6f\xb7\xf8\x34\x3d\x52\x42\x0e\x93\x9d\x89\xf1\x9e\xdd\x15\x46\x51\x78\x4e\x08\x6d\x50\xd3\xb8\x3d\xbb\xf0\x5c\x62\xdb\xd4\x42\xce\x48\xe0\x92\x54\xb4\x8d\xcb\x47\xc9\x22\x19\x59\x83\xe3\xeb\xb4\x74\x46\xf0\x98\xa9\x8f\xb8\x40\xd3\x22\x4b\x12\x67\xab\xfc\xf1\x17\x55\x89\x73\xd2\xb6\x5e\x2e\xa6\x3c\x2b\xc0\x7a\xb9\xa7\x29\xed\x0c\x6c\xca\x33\xa6\x32\xe0\x1c\x4d\xf3\xa0\x79\xd7\x6d\x59\x53\xb8\x1b\xc7\x12\x41\x83\xe4\x6f\x65\x16\x96\xeb\xdb\x77\xe7\xb1\xc4\xc1\x73\xaa\x93\xa2\xeb\xc6\xc7\x86\xc3\xc2\xd5\xfa\xa9\xc5\xf9\x12\x6e\xe0\x0e\xc0\x41\x81\x2a\x46\xc3\xb8\x29\x38\x5d\x7a\x61\x59\x89\xe4\x59\xce\x7f\x27\x06\xfa\xb8\x1f\x28\x74\x84\xc1\xef\x20\x0c\xf6\xef\x06\x37\x74\x99\xd7\x15\x1d\xdc\x17\x75\x39\xc8\xf7\xfb\xc1\x26\xaf\x64\xf2\x35\xe3\xac\xda\xd0\xd5\xc0\x69\x3d\xe4\xce\x60\x5c\x14\x03\x26\xaa\xc1\x9a\x95\x95\x50\x1b\x65\x3c\x78\x5f\xb8\xe2\xb9\xa9\xa1\xe0\x83\x15\x00\x3a\x40\x4f\x55\xd2\x6a\xb0\xaa\x4b\xa5\xda\x77\xe5\x62\x59\xf9\x60\x99\xf3\xc1\x32\xdf\x6e\x07\xff\x05\x58\x0f\x29\xfa\x2f\x59\x82\xd8\xd0\xc1\x7f\xb9\xf5\xfb\x5f\x03\x45\x66\x06\xfb\xbc\xaa\x64\xe3\x0a\x95\x02\x2c\x13\x9e\x78\x5e\xe3\x4f\x9c\xcf\xf8\x7f\x0d\x36\x45\xf1\xa1\x1a\x27\xa8\x51\x27\xe2\xf9\x65\xd7\xc7\x4f\x4b\x08\xde\x91\x54\xca\x23\xa9\xbc\xb8\x90\x47\x52\x4d\xd2\x8a\xd0\x59\x39\xf7\xce\x21\x8b\x33\xe1\x3d\x4a\x41\x16\x8c\xb0\x26\x20\x1a\x29\x62\x23\x85\x7f\xb3\xb3\x65\x65\xa9\x26\xdc\x04\x4e\x09\xcf\x49\x2a\x42\xb9\x39\x58\x78\x9c\xe5\xe4\x7c\xd2\xa8\x6b\x9e\x9b\x19\x03\x61\x7d\x8b\xb6\xfe\x85\xb1\x1f\xdf\x09\x39\x74\x8c\xf3\x7c\x38\x3c\x17\x28\xba\x2c\x5e\x15\x62\x23\xa7\x42\xb3\x30\x30\x90\xe1\xe2\x18\x0f\xbe\x5b\xc3\xdc\xac\xd8\x4a\x27\xf3\x52\x61\xe0\x9e\x06\xd0\x19\x98\xbd\x1b\x3a\x80\xb5\xb4\x1a\xdc\xdc\x0f\x54\x87\x65\xf9\xa2\xac\xe9\x60\x5d\x16\x3b\x6f\x6d\xe8\x61\x94\x92\x4e\xee\x61\x68\x63\x28\x00\x32\xb9\xc6\x88\x62\x70\x53\xdf\xdc\x6c\xa9\x9c\x41\xbb\x2f\xde\x75\x24\x42\x42\xbb\x6c\xb1\x1c\x20\x6d\xa1\x00\x90\x8d\x39\x29\x42\x61\x51\x0a\xd2\x7b\xa7\xe1\x52\x32\x62\xee\xcb\x88\x00\xbe\x55\xce\xd1\x98\x55\x9a\xb9\x58\x4d\xab\x19\x03\xce\x6d\x4e\x98\xce\x9d\xf9\xaf\xac\x22\x29\x65\xc6\x87\xde\x43\x6a\xb5\x5d\x78\xed\x33\x82\xa7\xb8\xc8\xb1\x75\x0a\xa8\xf3\x06\xb4\x51\x93\xca\x3b\x9d\xf9\x4d\x2e\x36\x29\x97\x94\x88\xcf\xb8\x17\x5a\x8b\x2b\xea\xa8\x62\x28\xc5\x0c\x43\x9f\xba\xdb\x15\x6a\x6f\x57\x20\xe6\x9b\xd6\xa4\x76\x3e\xba\x30\x72\xb8\x88\xa7\x80\xcb\x99\xdc\x43\xa3\x0c\xa9\x79\xcc\x11\xd4\x27\xc6\x08\xae\x41\x83\xb6\x30\x3e\xa8\x40\x7d\x0c\x0e\x33\x8c\x53\x23\x84\xa2\xb4\x0a\x5b\xed\xb7\xa8\xea\x76\xa8\xdb\x89\x93\x8a\xf6\x43\xe7\xc5\xca\x0f\xc6\x04\x35\x6e\x9e\xaf\x7c\x36\xa1\x25\xe6\x61\xd1\x11\xf0\xa8\x15\xde\x02\x8b\x9b\xc3\x41\xc4\x4c\x49\x39\xc2\xa2\x4f\xc2\xdb\x97\xc5\x8e\x55\x94\xd0\xf1\x12\x20\x26\x7c\x01\x04\x4c\x45\xc7\x2d\x11\x29\xa5\xd6\x06\xf8\x4c\x8c\xbb\x02\x90\x94\x6c\xbc\x3d\xf8\xa1\x7d\x22\xd2\xce\x35\x83\x70\xd7\x0c\x45\x0f\xea\x71\x81\x86\xc3\x32\x2d\x30\x9f\x15\x73\x15\x72\x60\x56\xcc\xbd\x5a\x5e\x5a\x79\xda\x33\x6a\x91\x62\x04\x99\xd1\xf9\x53\x66\x9d\x0a\x9f\xaa\x48\xc0\x5c\x6e\x40\x75\x42\x22\xdf\x16\x94\x10\x22\x5c\x7c\xb1\xa0\x51\x25\xe1\xda\xfe\xb3\x42\x4c\x71\x8f\x25\xb4\xc1\x35\xe2\xbd\x4f\x6e\xbc\x3b\xd9\x07\xed\xe1\xce\xb5\xb3\x66\x95\xc5\x8c\x04\x3e\xe6\xd5\x8f\x15\x5d\x65\xe7\x97\x46\xdd\x98\x16\x04\x78\xb4\x62\x2a\xbb\xa7\x1e\x51\x26\xc0\x9d\x4b\xaf\xac\xc2\xb4\x09\x9b\xd6\xe1\x1c\x65\xfb\xf1\xeb\xb7\x6f\xbe\xbd\x7a\xb5\x78\xfd\xe3\xfb\x1f\xae\xdf\x2f\xde\x5e\xbf\x7a\x7e\xfd\x76\x38\xd4\xa5\xa5\xc6\xcd\xb7\x1a\x2f\x16\xe0\x3b\xb4\x28\xca\xfd\x26\xe7\xd5\x62\x71\x38\x1c\xfb\x6a\xbb\xa2\x82\xcb\x24\x9d\x04\x49\x73\xac\x8f\xe0\x7d\xd2\x5b\xb8\xf9\x32\x53\xcd\x9c\x93\x1c\x07\x0a\x1b\x94\x26\x70\x60\x2b\x94\x9a\x00\x43\xbd\x41\x28\xa3\x24\xc7\x0f\xce\xda\x37\xa3\xd8\x58\xe8\x66\xb9\x37\x49\xcf\x42\x89\x4d\x8d\xac\xe7\x99\x6e\x04\xb0\xc3\x21\x15\xb6\xad\xbb\x9c\xf1\x56\xdf\xb9\xcf\x67\x2a\x1f\x5c\x65\x39\xec\x46\xe0\xa1\x69\xb0\x40\xcd\x5d\xe8\x10\xb7\xcb\xf7\xbd\x5a\x86\xd0\x8d\x28\xed\xbc\xb3\x60\x96\x41\x89\x7e\x8a\xac\x93\xa7\x31\xa0\x40\xfe\x4b\x1d\x9f\x49\x7d\x69\xb0\x3b\x1b\xa2\x46\x06\xb3\xb9\xe3\xf9\x4b\xdf\x59\x30\x12\x59\x69\x34\x02\x01\x5d\x4a\xe4\x10\x22\x9d\xcf\x3b\xe1\xad\x15\x9b\xc2\x1c\xba\x83\xc7\x5e\x09\x72\xf9\x54\xb8\xd2\x84\xb1\x09\x97\x42\xb5\x50\xc7\x94\x17\xe8\x0b\x17\xe4\xde\x44\x15\x7b\x5a\x58\x13\xec\x73\x49\x2a\x18\x7a\x8a\x0a\xcb\x07\x73\xe8\xb1\x15\xed\x98\x76\x84\x34\x79\x10\x6a\xac\x5c\xf5\xcf\x82\x71\x28\xbd\x09\x5c\x15\xef\x4e\x72\x55\x34\x4e\x79\x8f\x84\x9c\x38\x35\x94\x43\x34\x5a\x9f\x6f\x33\x6c\xa6\x85\xfe\x1a\x21\x37\xb0\xf8\xd2\x38\x56\x90\xfb\x8b\x43\xd8\xb8\x70\x1f\x30\x2e\xca\xdc\xc5\x84\x34\x28\xb5\xd3\x08\x11\xe1\x6f\xd8\xda\x84\xc7\xa2\x03\x86\x76\xa7\x24\x34\x94\xb0\x11\x4a\xcd\x15\x67\x50\xa0\x75\xed\x09\x3e\x75\x2d\x59\x4b\xac\x60\xd0\x55\x38\xe4\x62\x38\xf4\x91\x5a\x59\x18\x11\xb9\x1d\x3d\xae\xb1\xf7\x9c\x5e\x77\x7b\xa2\xc8\x96\x38\xd7\x17\x9e\x61\x9c\xe4\x1c\x57\xed\x08\xc9\xed\xd8\x96\xe5\x23\x0b\x56\x78\x5a\xed\xd9\x3c\x24\xa7\xf1\x8c\xda\x31\xf5\xb3\x9c\x71\x8f\xf8\xde\x9e\x14\x45\xb9\x6d\x76\x1e\x09\x35\x94\x4a\xee\xc5\x38\x36\xfb\xaa\x15\x8b\x7f\xe1\x22\xf8\x68\x7f\xf9\x80\xb9\x08\x23\x44\x4c\xe9\x78\x5f\xec\x53\x34\x6e\x85\xf8\x78\xb0\xf4\x3e\xa3\x16\x4d\x50\x59\xbb\x67\x14\xfb\x89\x39\xc4\x8f\x8b\x98\x2f\x44\xda\x4e\x3b\x6a\xf9\x69\xf7\x55\x04\x03\x20\xa3\x91\x97\xf6\x5a\x78\x26\x5a\xac\x7d\x83\x69\x1b\x59\x8f\x74\xae\x22\x24\xaf\x07\x18\x55\xef\x64\x4a\xe3\x01\xa4\xfd\x7f\x48\xb7\x50\x90\x17\x4e\x8c\xe6\x5b\x40\x64\x06\xb9\xcf\x23\x28\x09\xf2\xcc\x28\xe1\xac\xc0\x20\x49\x99\x58\xbd\xc8\x39\xd5\x54\xa4\x44\xb8\x34\x48\xf7\x0c\x97\x0e\xef\xc3\x01\xe7\xa7\x25\xae\x24\x4b\x1c\xf4\x02\xc2\x04\x61\xda\xbd\xd3\xea\xce\x06\x44\x3c\x81\x1b\xc3\x2f\xa5\x83\xb3\x39\x5e\x86\x61\x44\xd7\x24\x49\xbc\x2b\xf1\xad\xeb\xb3\x40\x9c\x6c\x67\x62\x8e\x19\xc9\x55\xd0\x26\xab\x71\x58\x0e\x87\x29\x1b\x0e\xc1\xe8\x66\x39\x4d\x6b\xa2\x5c\x8c\x20\xda\xe1\xeb\x75\xca\xd0\x94\x8f\xab\xfa\xa6\x12\x65\xca\x5c\x98\xca\x8c\x2b\xb4\xf6\x52\xd9\x03\x2c\x67\x6c\x8e\x6b\x84\xb2\xe0\x25\xe6\x08\xe1\xf5\x88\x24\x59\x06\xd1\x21\xb3\x64\xe4\xbc\x71\x47\x6b\x8b\xee\x52\xe0\xe4\x22\x01\x03\xbc\xe3\xf1\x42\x62\xa3\x48\x1e\x1a\xaf\xcb\xd4\xef\x72\x05\x37\xff\x5e\x50\x6e\xae\x6c\xfc\x9c\xcb\x0a\xa9\x41\x2a\x69\x43\x94\xc6\x42\xb6\x10\x3e\x9b\xcc\x95\x21\x74\x4b\x0f\x28\x65\x78\x77\x03\xa1\x42\x69\x3b\xe0\xac\xae\x1d\x34\xac\xff\x3a\x2d\x7d\x4b\x53\xe6\xd4\x20\x6f\xca\xe2\xb6\xcc\x77\xbb\x5c\xb0\xa5\xa7\x94\xaa\x06\x37\xf7\x83\x1f\xdf\xfe\x30\x58\xe6\x9c\x17\x62\x70\x43\x07\xa0\xda\xf8\xc8\xc4\x86\x79\xd6\xa7\xe3\xc1\x9b\x2d\xcd\x2b\xf8\x0a\x5a\x0b\x65\x8d\xca\xd5\x65\x6f\x25\x68\xae\x2c\x51\x49\x0e\x7a\xc5\x12\xcb\x7e\x91\xb2\xf1\x87\xc8\x27\xff\x31\x14\x13\x87\xf4\x03\x8e\x71\x6a\x9b\x29\x2b\x7f\xc9\x8e\xb5\x69\x1e\x47\x4a\x5a\x8a\xb2\x69\xa3\x51\x63\xb3\x0b\xd4\xa1\x97\x1c\x0d\x87\x6c\x34\xb2\xac\x32\x21\x84\x29\x18\x91\x82\x3c\xf9\xc7\xf8\xc9\xad\xe3\x16\xf3\xd6\xad\x0e\x69\x71\x6f\x7a\x6f\x28\x7a\xc0\x7c\x1f\x3a\xc3\xa1\x4d\x30\x1f\x5d\x22\xc7\x94\x61\x70\x67\xb5\x5b\xa1\x44\x2a\x70\x77\x41\xca\x88\xf6\xa4\x72\xd5\x43\xe5\x21\xaf\x09\x5c\xc0\x80\xf1\xd8\x05\x41\x9a\x16\xe4\xa1\x41\x33\x36\x27\x0f\xb9\x0a\xd1\xd1\x60\x46\x0a\xa4\xf5\xf3\xe7\xac\x3d\x2a\xb9\x51\xe0\x75\xcc\xec\x65\x6f\x66\xf9\x5c\x07\x03\xca\xab\x4c\x9e\xcc\x92\xa0\xe6\xf3\xc3\xc1\x94\xae\x23\xaa\x68\x64\xab\x26\x34\x72\x2a\xc0\x00\x09\x0c\x59\x3c\x51\xa6\xf6\xe2\x10\x76\x20\x9d\x86\xc3\x34\x01\xab\x42\xf0\x44\x93\x0f\xb3\xc9\xbc\x15\xfd\x4d\x81\x5c\x3c\xd1\x41\x54\xbb\xc7\xba\x49\xe0\x31\x0d\xfa\x06\x27\x96\x62\xc7\x3e\x31\x5e\x3d\xb1\x3e\xcf\xfb\xb2\xf8\x74\x7f\x2c\xe5\xb2\xe0\x22\x67\x9c\x96\x47\x92\x2e\x8b\x7d\xdf\x87\x9d\xe4\x96\xa2\xdf\x58\x75\x41\xe5\x3e\x39\x56\xb9\xb2\xa4\x3c\xda\x3a\x59\x81\x24\x18\xc7\xc6\xc3\x61\x3a\x1e\x49\x04\x75\x1d\xe9\x64\x30\xb6\x8f\xa7\x5b\x16\x25\x5d\x3c\x3e\x11\x4a\x35\xaa\x6f\x9f\xcb\xe3\x5d\xdd\xdf\xf7\x76\x54\xa7\xa1\xbc\xde\xd1\xfe\xe1\xd0\xa9\x2e\x1e\x9d\xf4\x02\xa0\x86\x1f\x2b\x67\xa7\x48\xf5\xe2\xb4\x5a\x95\x56\x6b\xa1\x3b\xac\xad\xfb\x8f\x76\x46\x81\x8f\x1c\x4b\xa2\xf5\x62\x47\x66\x83\x7e\x12\x4f\xca\xea\x6e\x1f\xfd\x28\xb7\xe1\x45\xb1\xee\xcd\x68\x3d\x50\x4e\x05\x66\xc1\x3b\x7c\x8f\xef\xf0\x2d\xbe\xc1\x0b\xfc\x11\x5f\xe3\x4f\x1d\x56\x59\x59\x61\x13\x3a\x2e\x38\x30\xd8\xda\xec\x90\xd0\xf1\xdb\x77\x7f\x79\x43\xe8\xf8\x8d\xea\xd3\x1b\xd9\xa5\x97\xb2\x9b\x84\x1a\x1c\x16\x42\xc7\x8a\x4f\x55\x11\xef\xde\xa9\x31\x24\x74\xfc\x52\xcd\xc4\xb5\x9d\x08\x42\xc7\xaf\xed\x1c\x4a\x06\x10\xb4\xd7\x5c\xbc\x28\x4a\xf9\x2b\x2c\xdc\xcf\xf5\x4c\xaf\x32\x42\xc3\xb0\x7a\xf0\xa9\xa4\x4a\x80\x82\xd2\xe5\x03\x94\x23\x93\xca\xbd\x63\x7e\x58\x70\x14\xc8\x63\xf6\x27\xa1\x06\xeb\x88\xd0\x71\xcd\xd9\xcf\xdf\xc8\x87\x92\xee\x8a\x3b\x7a\xe5\xf5\xc1\x24\xb9\x82\x92\x24\x8b\x6d\xde\xb0\xea\x5a\xce\x92\x4d\xe0\x5e\xc3\x71\x4b\xc7\x9a\xda\xc0\xd3\xfe\x1e\x6a\xd7\xb4\x2b\xe8\xaf\xbe\xb6\xbb\x0f\x5e\xbe\x28\xf3\x1d\xfd\x58\x94\x1f\x5a\x3d\x34\x27\xb6\x96\x1c\x43\xa5\x72\x4a\x71\xf2\x5a\x6f\xf1\x07\xb7\x0b\xb2\xf3\x09\xbe\x0d\x7d\x16\x0d\xcf\x6f\xb8\x15\x49\xe2\x7b\x8b\x6c\xb5\xe5\xe4\xb2\x5b\xf9\x8e\xd6\xd1\x1d\x84\x13\xab\xe1\x27\x75\x21\x32\xf2\x27\x96\x5f\x9e\x54\xbe\x3a\x71\x4e\x2a\x90\x9d\x58\xa0\x3e\xa9\x4e\x2a\xb3\x38\xa9\x4c\xbd\x32\x4f\x2c\x33\x3f\xa9\xcc\x2b\x75\x22\x9e\x54\x62\x75\x6a\x2b\xed\xb6\x3a\xb9\x60\x3f\xd3\xd1\xd2\xbd\x2d\x7c\x72\xe1\x5e\x9e\xe3\x63\x71\x72\x89\x57\x47\xcb\xf1\x29\xcf\xc9\x45\xfa\x99\x8e\x96\x6e\x48\xdc\xc9\x25\x9b\x0c\x47\x4b\x55\x14\xf4\xe4\x32\x55\xf2\x47\xd6\xc1\xe7\x2e\x81\xc7\xfb\xfe\xcc\x63\xcf\x4e\x2a\xb6\x3e\x69\xc9\xbe\x72\xfc\xdc\x49\xa5\x6e\x4f\xdf\x5a\x6f\x14\x27\x71\x52\xb1\xcb\x93\x8a\xf5\x4e\xca\x13\xcb\x5d\x9f\x48\x62\xcd\x71\x7c\x62\xb1\x9b\xd3\x46\xc1\x3f\xf5\x4f\x2c\x79\x7f\x62\x83\x0d\x03\x7b\x52\xa1\xab\x93\x0a\xbd\xf6\x78\xcf\x93\x8a\xdd\x9d\x54\xec\xe2\xb3\xcf\xad\xfb\xd3\xca\x75\x7c\xd8\xc9\xe5\xba\x2c\x8f\xac\x33\xc7\xb3\x9f\x54\xf2\xdd\x49\x2d\xee\xb0\x96\x27\x96\x7e\x7b\x52\xe9\x11\x76\xf6\xc4\xf2\x6f\x4e\x5b\x1e\x46\x86\x38\xa9\xcc\x85\x57\xe6\x59\x6f\x99\x1d\x06\xfd\xc4\xd2\x3f\x9e\xd4\x62\x29\x05\x9c\x58\xe0\xf5\x49\x05\x86\x72\xc6\xc9\x45\x87\xd9\x8e\xd6\xa0\x44\x9a\x13\x4b\xfe\xa4\x25\xa0\xa6\x41\x31\x35\x47\xa0\x35\x38\xae\xec\x38\x26\xbd\x75\xd5\x03\x8f\x5c\xda\x75\xc3\xe3\x0f\x68\x5a\xe0\x1c\xf4\x48\x05\x21\xc4\x84\xe9\x18\x4c\x94\x25\x8c\x13\xfc\x94\x66\xd3\x78\xd7\x16\x06\xed\x3c\x78\x9b\x83\x91\x5f\x62\x6c\xc3\x13\x42\xc8\x66\x38\xb4\xbc\xb4\x41\x3d\x28\xd0\x70\x58\x04\x98\x95\x7a\x2c\x5c\xfc\xa3\xc8\x47\x68\x67\xa7\xfc\x7d\xa4\xfc\x1c\x41\x08\x80\xde\xf2\x2f\x2e\xff\x2d\xfa\x39\xcd\xb1\xee\xd7\x8a\xb0\xb4\x9c\x6d\xe6\xb8\x9c\xed\xe7\xc8\x18\x32\xad\x4c\xfb\x56\x67\xd5\x47\x26\x96\x9b\x74\x83\x1e\x96\x79\x45\xad\x17\x6d\x06\xbf\xb4\xeb\x6c\x66\x58\x73\xd5\x72\xf8\xa4\x75\x63\xde\x27\x85\x8e\x40\x9f\x99\x26\x20\x3c\xd1\x69\x95\x5a\x28\x5b\x17\x65\x5a\x11\x73\x3b\x8c\x6b\x92\x3b\x27\xb9\x97\xb9\xd8\x8c\x77\x8c\xa7\x15\xae\x11\x5e\x92\xc9\xd3\xe5\x57\xdb\xa7\x4b\x85\xf4\x6c\x82\xeb\xa5\xc5\x6c\x39\xc7\xf9\x6c\x39\x77\x26\xbb\x6b\x6b\xbd\x09\x59\x55\x85\x76\x5c\xb3\xb6\x14\xe4\x66\x6e\x5a\x04\xf3\x91\x4d\x54\xd6\x55\x2e\x68\xd0\xab\x5b\x2a\xde\xb3\x1d\x35\x9e\xfc\xea\x19\x9d\xe9\xf2\x4c\xca\x49\xa3\x31\x9f\x55\x08\x6a\xb9\xe5\x56\xd9\x04\xee\x33\xb3\x4b\xac\x47\x35\xfb\x3d\x56\x23\x9a\xfd\x01\xab\xf1\xcb\xfe\x1d\xc3\xe0\x64\xff\x1f\x56\xba\xa7\xec\x3f\xb0\x45\x03\xfb\x5f\x76\x0b\x64\xff\x1b\x03\x1c\x44\xf6\x7f\xb0\x6c\x5f\x76\x39\xf1\x0c\x86\x99\xaf\xb0\xa6\x17\xc2\x18\xba\xf0\xaf\x27\xe8\x22\xe5\x5f\x4d\xe2\x0a\x4a\xa7\x08\x8c\x5c\xab\x47\x81\x7b\x3f\x4f\x65\x69\xf5\x5f\x5d\x65\xcc\xa3\x7b\xd9\xf7\xf1\x8e\x05\xa3\x50\x6e\xdf\xe0\xf7\x7d\xde\xc6\x65\x56\xa0\x24\xc1\x64\x53\x34\x55\x3a\x86\x54\xa0\xcc\xa3\x17\xea\x6e\xaa\x50\xe1\x33\xdb\xd5\x08\x5b\x8d\xb5\x5e\x12\x67\xe6\x8e\xbb\x6d\xc4\xca\xd6\x29\x1f\x0e\xd3\x1a\xe2\x50\x28\x25\xba\x40\xe8\x6b\x32\xb1\x84\x60\x56\x83\xf5\x68\xd8\x5a\xa1\x2e\x0c\x2a\x22\xcc\x55\x2b\xe6\x60\x6a\x55\x13\xeb\xf8\x76\x71\x51\x7f\x4d\x26\x4f\x51\x35\xab\xe7\x84\xa6\xf2\x8f\x6e\x76\x63\x8c\x4d\x3b\x1d\x16\x08\xc9\x32\xa1\xcb\x2a\xad\x35\x4c\x15\x03\xb3\xbe\x8a\xf5\xe0\x79\x2e\x28\x52\x38\xa5\xf2\x31\x15\xfe\x0a\x57\xce\x9b\x45\x99\xe6\xe0\x79\xac\xbc\x9a\x0d\xe4\x3d\xd2\xa7\x8b\xb3\x0f\x08\x35\xf7\x1a\x1e\x17\x4b\x0a\x96\x2c\x16\xc9\x39\x21\xb9\xbe\x5d\x63\xfc\x36\x9d\xe0\xdf\xa3\xe1\x30\xad\x66\xf9\x9c\xf0\x29\x4d\xc5\x2c\x37\xbd\xca\xe4\x33\x3a\xe3\x2a\x78\xb5\x72\x54\xc0\x85\x7a\xaa\x9c\x5b\x77\xd5\xc0\x6a\x12\xd3\x99\x31\xb3\x30\x4f\xfd\xcb\x3d\xd0\x11\xca\x65\x0f\x29\xbc\xd0\x5d\xad\xab\xf5\x79\xcb\x2f\xa3\xb5\x6a\xaf\x5f\xfd\x65\x7c\xfd\xd7\xf7\xd7\xaf\x9e\x2f\xde\xbc\x7d\xfd\xfe\xf5\xfb\xbf\xbd\xb9\x7e\x37\x36\x60\x1e\xd6\x7a\x21\x38\x80\x19\xad\x52\x93\xc2\x0d\x1e\x7e\x30\xc1\xd4\xb2\x87\x65\xc1\xd7\xec\xb6\xb6\xc7\xb2\x7f\x48\x5f\xe2\x8f\x25\xb3\xde\x40\x3a\xc2\x65\x44\xb3\x64\x90\x5c\xb5\x69\x8e\x9e\xb4\x28\x8e\xb4\x9a\x28\x0f\x74\x4d\x1b\x33\xcf\xc4\x86\x55\x73\x84\x9a\x06\x2b\xed\x32\xad\x7e\x9d\xb6\xe9\xd2\xca\x5f\xa9\x6d\xfc\x57\x6a\x15\xff\x55\xda\xd3\xcf\x24\x39\xc5\xb6\x4f\x6e\xb5\xaa\xbb\x07\x5c\x1d\x38\xba\x0b\xb8\x6b\x00\x1f\xc1\x90\x3a\x9f\x60\xe9\x61\x69\x5d\xe1\x5f\x24\xb7\xad\x51\x0d\x37\x71\x06\x77\x9a\x9e\xbb\x10\x6a\xc3\xf1\x78\x16\x16\x5e\xb2\x2e\x04\x96\x42\xc6\x75\xc8\x42\x02\xb5\x63\x99\xb7\xb8\x52\x81\x93\xc5\xa2\xa4\x79\x55\xf0\xc5\x47\x26\x36\x0b\x28\x7e\x01\xf7\xc6\x7c\xb1\x48\xb0\x0e\xe7\x4a\xc3\xc9\x6d\x10\x16\x4d\xaa\x22\xaf\x25\x3f\x72\x6b\x26\xb1\xfa\xf1\xed\x0f\xd7\xc6\xd6\x5f\xf9\xfa\x79\x7d\x4c\x9c\x11\xc8\xd5\x0d\x40\x16\x75\x93\x99\xcb\x7b\x53\xba\x72\x30\x3b\x4f\x5d\xe0\xab\xe7\xac\xda\xe7\x62\xb9\x31\xe1\x16\x51\x8a\xec\x45\xf7\x99\x80\xb0\x61\x9d\x4b\x83\x02\xcb\xbd\xa9\x56\x2b\x4d\x93\xbc\xba\xe7\xcb\xa4\x45\x64\xf8\xf8\x26\x5f\x7e\xb8\xa9\x4b\x4e\x9d\x99\xa6\x0a\xa8\x0d\x8e\xb4\x0a\x34\x1b\x03\xa4\x4e\x58\xda\x5a\x04\x16\x9c\xb4\xaf\x2c\x3e\x5e\xc8\x75\x07\x03\x04\x70\x6a\xd8\x00\x71\x2b\x30\x5f\xe3\x27\x81\x0b\xdf\x54\x4f\xf4\xad\x6c\x77\x31\xe8\x56\xf6\x3c\x68\xc6\x67\x9c\xf6\xe0\xd1\xd6\x45\x12\xb3\xd7\x06\x53\xfb\x24\xcf\x72\xda\x3e\xcc\x86\xc3\xce\xf9\x36\xa5\xee\x50\x83\x5b\x6e\xfb\x2b\x03\xd3\xe4\xde\xd3\xa2\x75\xfb\x16\x70\x49\xb7\x5b\xb6\xdb\xc9\x1d\x4b\xd7\xb4\xa4\xdc\xbb\xa9\x94\x27\x47\xc7\x42\x4b\xfd\x32\x21\x08\x1e\xdd\xc5\x92\x25\x89\xef\xe3\x3c\x70\x7c\xd3\x4c\xc3\xff\x46\x67\xca\xaa\x60\xc3\x94\x31\x7d\x19\xc5\x46\xd6\x60\x71\x1c\x45\xaf\xf2\x99\x67\xcf\x02\xfa\x75\x50\x62\x28\x48\x3c\x87\x78\x3d\x85\x1b\x74\xd9\x2d\x94\x52\x94\x09\x34\x2e\x69\xbe\x92\xbb\xf1\x7d\x7e\x9b\xda\x4d\x6e\x8d\x7a\x0a\x29\x1f\x31\x0e\xcb\x8f\x2e\x0b\xbe\xd2\x3f\x14\x54\x55\x0a\x55\x8a\xfc\xf6\x45\x51\xa2\x94\x21\x84\x59\x43\x3d\xfd\x09\xa9\xbc\xf5\x57\x8e\x41\x78\x37\xb6\xcf\x0f\x3a\x99\x3a\xfc\x3f\x1f\x40\xde\x98\x7b\x83\x5a\xc0\xe0\xe8\x7b\xbd\x53\x8e\xb9\xe6\xf0\x90\xbd\xeb\x1c\x1b\x20\x31\x2e\x8b\xdd\x0d\xe3\x14\xa5\x33\x31\x7e\xce\x4a\x71\xaf\x93\x7b\xc8\xc0\x63\x80\x80\x69\xbd\x17\xe3\x67\xaf\x5f\xbd\x7b\x7f\xf5\xea\xfd\xe2\xfd\xd5\x1f\xd1\x1c\xa0\x8f\x8e\xc1\x5e\x2a\x17\x04\x3d\x2d\xf8\x44\x10\xcb\x06\xb3\xea\x7d\x59\x8b\xcd\x7d\xa6\x1c\xc3\x2d\xc4\xbb\x2b\xaa\xd3\x2f\x40\x5f\x2f\x7d\x10\x44\xbb\x1a\x1a\x04\x6d\xfc\x49\x12\x3e\xb3\xba\x02\xeb\x66\xc8\xe9\x05\xbf\x6d\x95\x30\x4e\x46\x9a\xda\xe4\x0a\x09\xfc\x47\xfe\xf1\x78\x59\x4a\xbb\x7e\x52\x71\x35\xff\xc0\x0b\xc7\x82\x46\xb0\x5e\x2a\x0d\x12\xe8\x79\xee\x79\x5d\x85\x50\x04\x15\x15\x3f\xf6\x96\x13\x6c\x96\x60\xa5\xc8\x22\x99\xe2\x17\x88\x8a\xbd\xef\x97\xdf\xf6\x6d\xd1\xd0\x24\x8a\x6f\x45\x58\x68\x3b\x1f\xd5\x3c\xcc\xbc\x40\x8a\xa5\x76\x49\xd0\xf8\x00\xbd\xec\x45\x8f\x79\x42\x57\x23\xd3\x32\x1a\x8d\x13\xa1\xa8\x85\xb4\x68\x6d\xc0\x1d\x2d\x6f\x2d\x20\x05\xa3\x55\x36\xb3\x87\xd4\xbc\x05\x47\x4b\x0d\x06\x79\x07\x88\xb9\xd4\x40\xcc\xfc\xeb\xcb\x29\xbf\xb8\xcc\x26\x08\x33\x72\xf9\x94\x7d\xc5\x01\xaf\xa6\x9c\xb1\x8b\x4b\x1f\x92\x59\xf9\xe0\x29\x43\x62\x5d\xdb\xe1\x10\xfc\x84\x20\x14\xe7\x13\x3d\x0b\xde\x5b\x7f\x87\x94\x28\xb4\xc3\x34\xc6\x6e\x66\x7d\x29\xe3\x87\x04\x9d\x01\x01\xf3\x42\x60\x17\xfe\xe6\x6a\x9a\x96\x69\xf0\xd9\xd1\xb9\x51\xd7\x35\x51\x69\x3b\x16\x64\xe6\xe4\x23\xe4\xcb\x0d\x4c\xda\xf6\x3e\x31\x51\xe8\xf3\xcd\x4d\xb4\x79\x51\x2b\x24\xd0\x2f\x35\x4b\x31\xea\xc3\x53\x6c\x3b\x22\xeb\x77\x8f\x57\x67\x1d\xa3\x85\xd0\x60\xe1\xca\x48\xb7\x2d\xdb\x85\x88\x63\x09\x1d\x0e\xe9\xec\x7e\xde\x60\x6b\x1b\x71\x8b\x9d\xc1\xc4\x6b\xec\x59\x4a\xbc\xd4\xd8\x47\x9a\xf1\x5d\x97\x94\xfe\x8b\xa6\xb3\x39\xc2\xf7\x1a\x3b\xe5\x7e\x77\x53\x6c\x51\x9a\x5c\xbf\xfc\xe6\xfa\xed\xe2\xea\xed\xdb\xab\xbf\x25\x08\xdf\x45\xeb\x6d\x02\x70\x07\x43\xd7\xbe\xd0\xb0\xf6\x0e\x97\xe4\x4d\x0a\x31\x65\x75\xa4\x92\x82\x44\x98\x2f\x31\x15\x11\xe7\x1a\xa0\x80\x9a\x5d\x10\xa8\x71\xc1\x67\xfa\x23\x81\x17\xc0\x4c\x03\xce\x87\x40\x87\x43\xca\x00\x31\x04\x40\x12\xb4\xeb\x8c\xa4\x6f\x5e\xc8\xb5\x9b\x80\x35\xfc\x7d\x24\x5e\xe9\xd4\xd6\x52\x3a\x69\x8e\x10\xe2\x5a\x57\x4a\xb2\xee\x85\x03\x0e\x4e\x39\xee\x91\xfe\x26\x70\xc1\x17\xd6\xb9\x0e\x1c\x5c\x75\x74\x54\xe5\x35\x53\x3e\x65\x5f\x15\x40\x9f\xe4\x41\x92\x42\x39\x4a\x7d\x74\x05\xc3\xc1\x10\x66\x98\x5a\x15\x25\x3b\x33\xda\xda\xd0\xe5\xde\x55\x01\x78\x02\x42\x85\x51\x2a\x41\x6f\x6a\x72\x80\x6f\xbc\x9a\xca\x2c\x52\x4f\xc7\x49\xde\xf4\xee\xe2\xf2\x9c\xf8\xa5\x72\x59\x6a\x9f\x73\x3b\xb1\x89\xfc\x7a\x17\x21\x84\x82\x57\xf8\x79\x69\x61\xc7\x27\x6d\xcf\x60\xc3\x9c\x7e\x69\xf4\x3f\x3f\x70\xe0\xec\x0f\x73\xb0\x6e\xd5\x83\x6f\x74\xb9\x5f\x4d\x86\xc3\x94\x8f\x08\x43\x58\xb6\xb1\x1c\x0e\xc5\x39\x11\xd3\xd8\x76\x39\x27\xb4\x89\x39\x86\x29\xce\x3f\xe0\x85\x5f\x7b\xd2\xad\x3a\x63\xb4\xe3\xe7\x77\x5c\x48\x6a\xb7\x75\xb6\xbc\x11\x3d\xde\xe1\x70\xe5\x29\xdf\x8c\x4f\x96\x8b\x73\xbf\xb1\x57\x0b\x2a\xdc\xb4\x03\x9d\xe4\x61\x6a\x39\x19\x41\x7f\x1d\x7e\xa5\x03\x6c\x2e\x5b\x50\xce\x44\x41\xb1\x5c\x11\x1e\x9e\xd1\xd6\xee\x05\xa7\xe9\x1e\x4c\x6f\xef\x01\x7d\x78\xaf\x97\x51\x75\x25\x22\xee\x13\x22\x88\x25\xb5\xcb\xf7\x69\xcf\xee\x77\x6b\x11\x36\x10\x6a\xf0\x7e\x96\xcc\xe6\xc9\x5c\x6d\x3f\xc7\x6c\x3e\xf4\x98\x40\x81\x9f\x5c\xd5\x89\x1a\xea\x7b\xef\x19\xd3\xf9\x89\x62\x76\x4d\xfc\x06\xed\x64\xd7\x20\xbc\x1f\x03\x22\x82\x36\xff\x6a\x55\x1c\xe3\xd9\x83\x76\xcb\xd3\x7e\x82\x1a\x25\xc7\xbc\xe6\xdb\xfb\x54\x96\xb8\xcd\x7f\x51\x81\x5e\x4b\x2f\x2e\x3b\x85\x83\xd0\xe6\xfb\x9b\xfd\x22\x17\xb3\x89\xef\x5f\x36\xbb\x9c\x5b\x92\xee\x35\x42\xc5\x31\x83\x6d\x43\x09\x1b\x51\x84\x9d\x44\x77\x38\x88\xaf\xd9\x54\x10\x96\x09\x48\x20\x08\x1b\x09\xf4\x94\x7e\x25\x9e\xa2\x72\x56\xea\x12\xf4\x8c\xb6\xfa\x49\x47\x23\xe7\xdb\xd9\xe0\xbd\xd1\x7d\xc7\x25\x7b\x87\xc8\x07\xa0\x37\x7a\x98\xbf\x8b\x66\x31\xc6\xe5\xed\x4e\xa4\x61\xc3\x09\x43\xaa\xc9\x17\x97\x08\xeb\xf6\x03\x5d\x28\x89\x08\x70\x24\x62\xad\x2f\x91\x1f\x35\xb4\x74\x44\x1a\xef\xe5\xb9\x04\x3b\xdb\xc8\x1d\xd1\x1e\x29\x6b\xf2\x56\x4a\xe4\x70\x07\x65\x41\x9a\x0d\x38\xad\xac\x48\xe2\x56\x71\x9b\xbc\x0a\x3e\x57\xa7\xad\xcf\x4d\x5e\xfd\xc0\x2a\x41\x39\x2d\x2b\xc3\xe2\xfe\x5f\x75\xf1\xb4\x04\xdd\x40\x82\x40\x71\x70\x34\xa5\x02\xf9\x00\x19\x70\x3f\x86\x57\xcf\x94\x14\xe6\x02\xfd\x75\x20\x9a\xfd\x81\x8a\xe6\x70\xfd\x83\x78\xc2\x61\xc1\xcf\xd9\xea\xf3\xca\xb5\x19\x3a\xc5\x6a\xa6\x24\xea\x9e\x14\x09\x55\xfb\x19\x0e\x9a\xdd\x45\xaa\x83\x29\x83\x9f\xad\x8e\x66\x63\x96\x9e\x64\x76\xb4\x1a\xb9\xc4\x1c\x2b\xef\xcb\x20\x08\x89\x6c\xec\x2d\x15\xd0\x58\xd5\xbf\x2d\xcb\x2b\x85\x67\x8e\xd2\x64\x97\xef\xbf\xb9\x4f\x80\x8c\xe8\x44\xfd\xa4\xb3\xc3\x88\x85\x03\xa7\xc1\xfe\x95\x2a\x51\x56\xbb\x6b\x45\x0a\xfc\x45\xbc\xa5\x76\x5e\x7d\x93\x86\x21\x56\xba\x6d\x52\xea\x2e\x73\xb6\xcf\xd8\x9c\x50\x73\x79\xa4\xbe\x35\x10\xe0\x07\x9a\xf7\x4d\x94\x19\x87\x82\x83\x63\x4a\x74\x99\x54\x7b\x42\x8d\xd7\x6c\x2b\x82\x5d\xf8\xff\xb6\xa7\xad\xde\x0d\x87\x5c\x03\x1f\xd8\x8e\x96\x14\x4e\x9e\x5f\xb5\x81\x61\xd3\x60\x04\xba\xb4\xe2\xdc\x44\xaa\x11\xbe\x94\xeb\x0d\x9a\x3f\xfe\xad\xb5\xa6\x8a\xbc\x09\x6f\x51\x5c\x29\xc8\x75\xac\xbf\x10\xf5\xfd\x91\x42\xd6\x8c\xaf\x62\xab\xe0\xa3\xd9\xf2\xbf\x60\x94\x6c\x05\xd1\x36\xea\x1a\x8e\x37\x8f\xde\xd1\x32\xba\x4a\x3f\xfd\x5a\xed\x63\xd5\x75\x58\x47\xbb\x8a\xe3\x0d\xcc\x79\xb4\x79\xd7\xbf\x5e\xf3\xae\x78\xac\x71\xd7\xa7\x34\xae\xa4\xab\x7a\xd9\x0e\x35\xaa\xb5\xdd\xc7\x77\x97\x8a\x08\x40\x68\xca\x01\xb5\x5b\xa8\x38\x54\xc2\xc4\x07\x93\xbc\xc9\x5d\xf1\x21\xf4\x16\x56\xc4\xba\xa3\x93\xe2\x5a\x27\x25\xbe\xbe\x9c\x0a\x5f\x27\x25\x40\xe6\xe3\x11\x9d\x94\xf3\x74\x2d\x1e\x27\x04\xc2\xb3\x4b\x87\xad\xaf\xd4\xe0\xe5\xfd\x77\xd0\x44\xa0\x55\x98\x83\x2c\x5c\xc8\x96\x8b\xa2\xa5\x87\x38\x42\xf9\x7c\x55\x01\x8c\x28\xa8\x78\x96\xe2\x91\x7d\x1b\xc9\xaf\x42\xc6\xe8\x52\x18\x5f\x6e\xeb\x55\xc7\xbf\xd9\x93\x35\x7d\xee\x6e\x02\x79\xaa\xa2\x6c\xed\xf5\x16\xa3\x1b\x8c\x92\xee\x64\x8a\x20\x5f\x6b\x5e\xb5\x1c\xae\x54\x3c\x67\x0e\xdf\x9a\xfa\xd8\xd6\x60\xf8\x45\x67\x6c\x8e\x2b\xe2\xd3\xfd\x02\xe1\x3a\xd0\x07\x14\x08\x03\x24\xaf\xb5\xe0\x47\x60\x3a\x64\x38\x41\x4b\x2b\x27\xaa\xef\x35\x67\x3f\x47\x86\xef\xd6\xc4\x3a\xdb\x1b\x15\x50\x64\x10\x6f\xf5\xa8\x40\xb2\x8f\x4c\x6c\x8a\x5a\x74\xee\x5f\xa1\xff\x66\x84\x53\x1a\x04\x96\xd3\xd1\x3b\x29\x21\x74\x1a\x59\x40\x02\xf0\x03\x7b\x24\x5c\xda\xc4\xa8\xbe\x50\x62\xda\xff\xa5\xf9\x72\x93\xcc\x89\x18\x83\xc2\x69\x71\xf5\x7e\x71\x7d\xf5\xec\xdb\xe9\x49\xfc\xa4\xcc\x0b\x17\x27\x70\x71\xa3\xc6\xc1\x97\x72\x74\xac\x0b\xbc\x47\x08\x7f\x20\x09\xf0\xf8\x83\xa2\x16\x03\x29\xbe\x02\xbf\xe9\xd4\x58\x2f\x7f\x05\xad\x01\x88\xe4\x1d\x41\x59\x63\x01\x7f\x35\x01\x51\xc1\xac\x15\xcf\x19\xd9\x1a\x84\xa7\x1f\xd0\x99\x0d\x7c\x02\x66\x41\x3b\x8b\x5d\x42\x41\xb4\x7e\xdf\x16\xad\xaf\xb0\x35\xfb\xc6\x0f\x80\xd7\xd4\x13\x4a\x3b\x54\x5e\x4c\xc0\x6c\x49\x7e\xc8\xd2\x96\x7c\x4b\xf1\x0e\x19\xba\xc5\x78\x45\x4b\x71\xd5\x16\x8c\xd9\x3a\xa5\x5f\x7b\xa5\xf6\xf5\x25\x26\x40\x53\x3c\xc1\x33\x31\x37\xe8\x34\x46\x3f\x19\x17\xbd\x5f\x06\x62\x47\x5d\x6d\x94\x34\xdc\x8b\xb1\x63\xda\x9b\xfa\x42\x3a\x45\x98\xfa\xb9\xab\xde\xec\x76\xe4\xbd\xdc\x13\x6c\x91\x74\xf6\xc5\xbe\x5d\x7f\x6c\x88\xd9\x3a\x9d\xf8\x22\x1d\xf0\x3d\x36\xfa\x6d\x57\x7a\xbd\xb8\x6c\x8f\x94\x1a\x92\x94\x5e\x5c\x62\x29\x50\x36\x18\x20\x29\xba\x75\xeb\x9a\xfc\x99\x68\xd7\x49\xa3\x75\x4e\x7a\x6a\x9c\xc0\x50\xd5\x3c\x5a\x5f\xdf\x58\x4f\xf4\x08\x07\xd9\x1e\x1f\xe4\x89\x3f\xb4\xa5\xe4\x57\x2a\xda\xc9\x7b\xca\xf8\x7a\xf4\xa9\x45\xc2\x75\xa9\x69\x7c\x25\x4e\x60\x5d\x61\xab\xfd\x89\x35\xdc\xd4\xd5\x1a\x5e\x28\x07\x76\x9b\x0d\x6c\x1c\xd9\x64\x6d\xc5\x91\xdf\x5d\x75\x9b\xd8\x19\x60\x1b\xc3\xcf\x2f\xef\x70\x98\x3c\xbd\xb8\x10\x60\x7e\x17\xd5\xf3\x80\x06\x41\xc7\x32\xb4\x73\x29\x5a\xf2\x9c\x5f\x67\xd5\xbd\x94\x54\x7a\x0d\x59\xfa\x0d\xbd\x65\x3c\xbc\xb3\xaf\xcc\xcd\xb4\xf0\x11\x32\xa1\x45\xe2\xe2\x02\x79\x15\xab\xf2\x55\x08\x88\x33\x9f\x54\xf3\x55\x5f\x91\xd0\x3a\xb8\xab\x7d\x64\xbd\xd9\x93\x49\x07\xe0\x70\x5b\xda\xa1\x5d\xd9\x72\x22\x5d\xf4\x35\x8a\x8f\xf6\x34\x7e\x81\x60\x0d\xb5\x6c\x3d\x00\x89\x87\x4f\xe9\x63\x83\xf0\xb3\x36\xf9\x7e\x8f\x6b\x47\xbe\xcd\xb4\xf6\x0d\xc1\x8c\xce\x6d\x48\xd3\xc8\x6d\x70\x44\x7f\x70\xda\xb1\xb5\x3b\x0b\x94\x3f\x50\xfe\x77\xdc\xbb\x94\x0a\xd4\x18\x7a\xa0\x97\xc5\xfe\x3e\x7a\xe0\x4f\x8f\x70\x83\xe9\x04\x6f\x1d\xb7\x43\x81\x45\x43\x0a\xd6\x4c\x1b\x9e\xca\x51\x7a\x4b\x66\x89\xea\x40\x32\x3f\x7b\xa6\x60\x97\x50\x74\x3a\x5a\xe6\x71\x33\x3a\x1f\x0e\xdf\x9a\x4b\x1c\x40\xf8\xf2\xaf\xd6\x9e\x91\x74\x45\x9e\x21\xc3\x00\x69\x09\x60\x85\xdf\xaa\x3d\xfc\xc6\x58\xd1\x56\x3d\x26\x95\x50\xca\x34\x7d\xa6\x33\xb6\x2a\x97\xb5\x5d\x91\x37\xd1\xeb\xb2\xc3\x61\x36\x6f\x50\x76\x2c\x41\x4a\xc9\x6c\x8e\xf0\x95\x6f\x2c\x9c\x99\xaa\x28\x80\xb5\x5c\x91\x37\xed\x1e\xe1\xd6\x5d\xe2\x7b\xcf\x52\xe5\xea\x91\x4b\x7a\x1f\x04\xa1\xef\x82\xfe\x11\xd3\x53\x6b\x94\xd5\x31\x8a\x81\x0b\x5d\x05\xad\xf1\x98\xb1\x40\x07\x2a\x22\x72\x35\xdd\x36\x49\x8c\xb5\xee\x88\x73\x46\x6b\xd7\x3d\x2c\x16\xae\xd2\x85\xd2\x9c\x00\xcc\xd5\x77\xfc\x9f\x2a\x12\x79\x5f\xb4\xe0\x20\xe3\x38\xcc\x93\x02\x40\x78\xf1\xa1\xde\x1f\xb9\x47\x08\x0b\xd0\x20\xa8\x8a\xbf\x59\x75\x2d\x6e\xfc\x70\xaf\x7e\xc6\x33\x0a\x11\x16\x04\x40\xa7\x04\xdc\x31\xf5\x82\xce\x42\x0a\x0f\x61\xd1\x04\x7b\xc5\x14\x27\x6b\xc6\xf3\x2d\xfb\x17\x7d\x6e\x03\xc0\x06\x66\x3c\xb2\x2f\x2e\x26\x64\x84\x94\x7e\xa1\x78\xfe\x10\xca\x02\xe1\x68\x78\x41\x28\x4f\x33\x33\x71\xd8\x16\xbf\xfa\xfa\xdd\xdf\x9f\xb6\x78\x7d\x6b\x81\x5f\xb7\x11\x8f\xd6\x6c\x7c\xd4\x7e\xe5\xbe\x87\x81\x4c\x78\xa0\xe6\x86\x73\xcf\x28\xe6\x9d\xfd\x90\x3b\x15\x0a\x4e\x7b\x72\x03\xea\x66\x49\x38\xe6\x3a\xf2\xf1\xb1\xe2\xe4\xc1\xa0\x4b\xd4\xb8\xe2\xdd\xe0\x19\x5e\x20\x89\x5f\xc1\x9c\xe7\xa9\xda\x2c\x94\xaf\xc0\xf7\xcf\x36\xa6\x44\x0d\x2e\xd6\xeb\x63\x43\xa2\x18\x9f\x63\xa3\xb2\xc9\x63\xec\x30\x64\x8e\x5c\x74\xd0\x13\x56\x7e\xcc\x58\xe5\xb8\xdb\x5b\xbf\x25\xce\x2f\xa3\xa5\x16\x9b\xe2\xb1\x26\xfb\xd6\x3a\xbf\x8e\x3d\x58\xff\x1a\x0e\xee\x79\xc3\x01\x77\xd6\x55\x14\xe2\xb8\x0b\xcf\x72\xac\x4d\x79\xe5\x1c\x9e\xf5\x84\xee\xe7\x2e\x74\xbf\x02\x0d\xa7\x4f\x4b\xd0\xca\x95\xfe\xc2\x72\x71\x57\xa0\x66\x57\x57\xa8\x7e\x54\x96\xfb\x1e\x80\x7b\xe7\x3a\x9a\x07\x9d\x70\x31\x97\xa9\x8e\xba\x1e\xed\x06\x6d\x67\x72\x89\xbc\x31\x88\x71\xc1\xdd\xf3\x0f\x8a\x88\x33\xcc\x66\x99\x77\xf9\xdf\x9e\x62\x62\x8c\xb2\x15\xb2\xf5\x07\x77\x37\xd7\xd7\x9f\x6e\x4a\xdb\xa9\x56\x59\xf6\x3e\xee\xb1\xa2\x3a\x17\x77\xa6\xa4\x98\x21\x73\x5f\x61\x47\x8c\x9e\x43\x31\x45\xdd\x9d\x3e\x42\x6d\x3b\x37\xb0\x1e\x5d\x09\x8d\x52\x1f\xa7\x51\xc7\xca\xda\xe4\x95\xf9\xdc\x3e\xf1\x1f\x21\x57\xa3\xc4\xde\xde\xc2\x86\xfa\x89\x89\x8d\xf6\x34\xe8\x5f\xc1\x61\xba\x60\x31\x33\xbe\x2c\x21\xd2\x78\xaf\x05\x6d\x44\x41\x77\x1a\xfb\x71\x79\xd6\xb3\x89\x52\x08\xb2\xfa\x62\x5b\xe4\x60\x47\x15\x92\x09\x74\x38\x4c\xd0\x88\x03\x8b\xf6\x3f\xd0\xb4\x4e\x7b\x64\x73\x2e\x64\x73\x44\x71\x7b\xbb\xa5\xd1\xb6\xf4\x14\x76\xde\xed\x5c\x83\x97\xf9\x72\x43\x8f\x4c\xfa\xad\x8e\xa2\xb7\x82\x60\x6e\x56\xd7\x7a\xd2\x41\xd5\x82\xda\x7a\x94\xf0\xc7\xd1\x63\xfb\xfc\x10\x4a\x4f\x86\x6a\x11\x6f\xde\x31\xa6\xd5\x4d\x71\x71\x72\xb8\xb3\xc6\xe5\x81\x3d\x6d\xff\xc1\xa2\x7c\x83\xf4\x8d\x7b\xf5\x86\x72\x08\x07\x64\x2c\xf0\x8d\x4d\x3b\xab\xde\x51\x21\xb6\x92\x39\xeb\x5e\x6e\xb6\x9b\xe5\x12\xb7\x4c\x74\xec\x87\x48\xf9\x6f\xe1\x8a\x12\x50\xce\x58\xf5\xa2\xde\xae\xd9\x36\x5e\x5d\xb7\x36\x9b\x55\xd9\x5a\xb4\xbe\xba\xb2\x3a\xad\x31\x19\xb3\xf3\x4b\xec\x25\x94\x3f\xf5\xd0\xb6\x1b\xda\xb6\xb7\x72\x6a\x62\x1e\xe0\x6f\x5a\x5c\x84\xdf\x55\x03\x5d\xd4\x60\x57\x57\x00\xba\x59\x51\x91\x1c\x39\x0e\x07\xc7\xce\x48\xff\xb8\xa3\xf8\xa1\xd5\xe8\xa0\x47\x0d\xc2\x7c\x2c\x36\x94\x3b\x61\xca\xd5\x41\xc7\xac\xd2\x82\x12\x5d\x1d\x0e\xde\x4f\xc6\x6f\xf5\x28\x76\xab\xb3\x9e\x21\xe1\x68\x4d\xd4\xfd\xba\x5f\x8d\x0e\xb9\xf0\x45\xb5\x98\x15\x19\x74\x47\xd7\x91\x80\xf5\x70\x36\xf0\x87\x38\x41\x8d\x75\xc0\x01\x99\x8f\xf2\xac\x4c\x13\xf9\x37\x41\x18\xe2\x44\xc8\xdf\xf0\x90\x20\x0c\x72\xe2\xf6\x5e\xbe\xd2\x8f\x72\x61\x3c\xb2\xe9\xdb\x30\x91\x8f\x7a\x76\x9f\xc4\x82\x9e\xb2\xeb\xad\xd7\xb9\x30\x52\xb3\x6d\xcb\x02\x79\xc6\xf7\x3d\xdb\xbd\xab\x27\x70\xd9\xd5\xa6\x2f\x55\x08\x18\x3f\x86\xd3\x51\x69\xdf\xe5\x1f\xeb\xac\x5a\xda\x57\x1f\x68\x29\x47\xd6\x3c\x27\x08\xd7\xdc\xff\xe0\x7e\x25\x08\xb7\x42\x47\xc9\xef\x9b\xbc\x4a\x90\x2d\x8a\xae\x5e\xef\xcd\x97\x5b\x2a\xd4\x0f\xef\xbb\x7a\x51\xc9\xcf\x85\x7a\x8c\x64\xae\x82\xdc\x55\x37\xfb\x8b\xa2\x7c\x7f\xbf\xa7\x5e\x29\xfa\x4d\xac\x30\x2f\xb1\x2b\xd3\xa5\x67\xa0\x3b\x91\x5f\x99\xd1\xa2\x9c\xb0\xbc\x7a\x20\x21\xbb\x67\x4b\xbf\x4b\x75\x67\x1d\x1e\x71\x81\x38\x09\xca\xbc\x6f\x05\xa9\xb6\xfa\x61\x44\xb5\x9a\x9b\x8d\xdf\x5f\xbd\xfd\xe3\xf5\xfb\xc5\xeb\x6f\xbe\xbf\x7e\xf6\x5e\x5d\x78\xae\x68\xb5\x2c\xd9\x5e\xc8\x23\xf6\x11\x7f\xe2\x7e\x53\xd6\xf1\xc2\xaf\xa8\x4d\x3a\x8d\x53\x9a\x9f\x86\xd0\xa6\xb1\x97\xa5\x6a\x58\x55\x8b\xd5\xf3\x33\x15\xc2\x28\xf2\x4a\xf7\xa5\x75\x59\x9b\x04\x69\x82\x43\x49\x89\x55\xa5\x7f\x31\x0e\x07\x4f\x98\xc3\x9c\xd0\x5d\x2c\xe7\xa9\xb3\xbc\x4c\x69\xbb\x94\x12\x21\x30\x2d\xf5\x5e\x9b\xf0\x4b\x5a\xd3\x26\x93\x60\x8a\x00\xa4\x57\x2b\x16\xae\x3a\xfa\x3e\xdd\x46\x5c\x7c\xa9\x2d\x2c\x20\x14\x14\xda\xe5\x07\x22\x4c\xa9\xc1\xc6\xb5\x7d\xab\x7b\x6a\x23\xf6\x91\x5c\x1b\x3e\x76\xc6\x24\x41\xb8\x22\xd5\xe1\xd0\x66\x34\x4b\xe5\x2e\x64\x7d\x1f\x9c\xaf\x10\x5b\xa7\x05\xea\x19\xc0\xc2\x1f\xc0\x32\x28\xa0\x40\x0a\xc4\xf8\xc8\xe8\x15\x08\xe1\x12\x65\x85\x5f\xc5\xa0\x50\x3e\x67\xc1\x6a\x1e\x0e\x69\xb8\xc2\x90\x3d\x49\x83\xd7\x67\xde\x75\x65\xa3\xef\x4a\x6c\xfb\x6a\x40\xb2\x38\xba\x52\x34\x90\x99\xbe\x10\x42\xf8\x3c\x3d\xaf\x0e\x07\x88\x84\xa9\x57\xf3\xf9\xa5\xec\x69\x05\x9a\x9d\x69\x4a\x49\x85\x7c\x37\x2a\xea\x87\xef\xaf\x11\xca\xd2\x92\x54\x48\xbe\x53\xdf\x4b\x3c\xf3\x3f\x23\x74\x8c\xe3\x8d\x01\x02\x77\x69\xd2\x4d\x7e\x43\xb7\x3d\x6e\x55\x5f\x04\x70\x62\xc0\x8e\x3f\xdf\x9d\x57\x45\xc3\x83\xb0\xa9\x5a\xa2\x4d\x16\xb2\x34\x7e\x4b\x57\xda\x92\x15\x74\x1c\x4e\xc0\x4e\xf0\xca\x8a\xd2\xf1\xb4\x56\x82\x4e\x1a\x1c\xe2\xc7\x7b\xc7\x77\x28\x7b\x17\x55\xc5\x6e\xb6\xf4\x99\xc3\x0f\x7a\x0b\x5f\x8d\x94\x11\x77\x29\x35\x86\x11\x50\x06\xe3\x1b\x5a\x32\x51\x29\x37\x1b\x5c\xfa\xf1\x42\x38\x13\x6d\xe3\x1f\xf1\x34\x15\x84\xb6\x12\x21\x30\x88\xb4\x0c\x42\xa8\x92\x39\x09\x87\xc1\x04\xe3\xd1\xf8\xcd\x15\xf8\xe1\x82\xd1\x09\x99\x84\x5f\x88\x3a\x0f\xe0\x95\x22\x2d\x90\x96\x9c\x4f\x82\x97\x36\x5b\x6b\xa4\xfd\xec\xda\xf0\xbb\x3d\x0f\x52\x96\xbf\x53\x7a\x7c\x7f\x34\x3c\xcf\x5e\x12\x30\xe6\x10\x53\xda\xda\x7d\x9f\x58\x9a\xb9\xb0\x34\xcd\x8a\xca\x8f\xfe\x75\x75\x67\x33\x87\x75\x25\x08\x14\x52\x7e\x15\xfa\x3a\x92\xb4\x39\x43\xff\x6e\x5d\xe7\xb6\xce\x40\x91\xfc\xdd\x16\x2a\x03\xee\x76\x83\xac\x87\xb1\x67\xaf\xa2\x6c\xb7\x63\xfd\x8e\x98\x71\x97\x98\x01\x4e\x83\x86\xec\xf1\x27\x7d\x38\x4c\xc3\x45\x30\x9b\x23\x0c\x46\x6b\x3d\xab\x66\x38\xa4\x5f\xf7\x7d\x53\x36\x45\x5d\xea\xd8\x1e\x50\xa4\xa2\x1a\x06\xa5\xe8\xd3\x2c\xb0\x4e\x33\x17\xae\xd6\x65\xa3\x5b\xe5\x53\xf6\x55\x09\xea\xf3\xe0\xfb\x8c\xcd\x43\xdb\x72\x33\x1b\x4c\x43\xf7\x44\xab\x9e\x9c\xf5\xed\x94\x8b\xcb\x26\xe0\x65\x4c\x35\x70\xf7\xed\x5d\xf5\xf2\xf1\x9b\xb7\xaf\xdf\x5c\xbf\x7d\xff\xb7\xc5\xf3\xef\x9e\x2f\x9e\x7d\x7b\xf5\xea\x8f\xd7\xf3\x9e\x19\xe9\x8c\x0b\x98\x3f\xa5\x6a\x23\xb5\xe7\x69\x3a\xc9\x62\x6d\xc6\x2c\x3c\x31\xfb\x06\x7c\xea\xdb\xf8\xd9\x61\xcd\xcc\x56\x3e\x61\x93\xa9\x94\x71\x47\x05\xb0\x23\x31\x21\x86\x16\x8c\xdf\xe5\x5b\xb6\xd2\x0e\xfe\xed\x5c\x96\x16\x87\x99\x1e\xa3\x18\x28\xb3\xdb\xc0\xb3\x2b\x09\xea\x0a\xb7\xc3\x23\x25\x76\x4d\x2f\x1f\x1d\x44\xb8\xdf\xec\xf1\x6b\x51\xa1\xa3\x70\x8e\x7a\x68\x63\x9b\x82\x3c\x3e\xe2\x5d\x4a\xd8\x2a\x13\x2e\x5b\x8f\xf8\xc5\x74\x32\x98\x26\xb6\xc7\xe9\xe8\xe1\xea\x37\xe3\x84\x8c\x7d\x5e\x29\x52\x38\x39\xb6\x80\x54\x12\xed\xea\x2f\xce\x0a\x70\x57\x2a\x46\xad\x49\xe9\x76\xc9\x2e\xe5\x51\x79\xc1\x24\xe1\x6a\xef\x1b\xb7\x89\xa7\x7d\x9b\xbb\xc8\x7a\xbe\x7c\x5d\xb4\xa9\xa3\x9f\x0b\x1d\x39\x2a\xe3\x0b\x5e\x75\xb2\x35\x8a\x6e\x05\x77\x67\xbc\xff\xc8\x0e\x2b\x6d\xd4\xbd\xa5\x12\xef\x20\x46\x9f\xdc\xe6\xb3\x87\x0f\xf4\x3e\x33\x23\xd4\x96\xcd\x60\xd1\x87\xf7\xde\x5e\xa1\x6d\x91\xa5\xe7\x60\x0c\xf8\x02\x3a\x0d\x58\xff\x0e\x91\x09\xda\x7c\x19\x66\xee\x0a\x84\x1d\x83\xb3\x0b\x29\xa2\x39\x48\x39\x08\xb8\x8f\x1e\x94\x63\x5b\x09\x4e\xda\xea\xee\xeb\x42\x20\x2c\xc8\x44\x2d\x26\xd6\xe9\x84\x3d\x4c\x21\xc0\xbb\x6f\x5d\x84\x52\xe6\x5b\x13\x85\xc4\x05\x35\x4d\x33\x47\xb8\x6c\x1c\xa0\x9c\x8f\x6f\x50\x61\x13\x22\x31\x65\x81\xf1\x0b\x7e\x68\x8d\x5a\xe6\x1c\x97\x3c\xa0\x91\x23\xfa\x85\x58\x0c\x8e\x7e\x0e\xde\x9a\x2e\x3c\x86\xa0\xd0\x1b\x39\xad\x05\xa3\x10\x33\x72\x39\x41\x52\xe8\x0b\x09\x12\xd5\xb4\xf9\x2a\x91\xc7\x21\x0c\x22\x02\xc3\x86\xd4\x5a\xc5\xe1\x33\x59\x72\x3a\xf0\x9e\xa8\x08\xd3\x3f\xd1\xfc\xc3\x3b\x2a\xf0\x0a\x7e\xcb\x5f\x2f\xf3\x3d\xde\x05\xbf\xee\x7b\x22\x1d\xda\x63\x3b\x87\x16\x6c\xf0\x3e\x0c\x8e\x41\x56\x10\xc5\x18\x56\x8d\x87\x38\x8a\xce\xac\x5c\xfe\x71\x38\x4c\x57\xe3\x15\xdd\x52\x41\xbb\xe9\x30\x1f\xbf\xb8\x7a\xf6\xfe\xf5\xdb\xbf\x2d\x5e\xbc\x7e\x0b\x68\x36\xb0\x58\x3f\x1a\xe6\xdd\x87\x31\x85\x1e\x6a\x0b\xcf\x6b\xb9\xbc\x2b\x1f\x6b\x05\x7f\x22\xd7\x2a\x89\xdc\x24\xfa\x11\xb6\x11\xb6\x8d\x51\x11\x6b\x73\x62\x8a\x96\x6b\x83\xcb\xf5\xe1\xb4\xb8\x78\xab\xbe\xb6\x71\x4c\xf0\x92\x38\x5d\xc3\x70\x98\x5b\x1d\x04\xde\xb8\x0f\xdb\xe1\x70\xeb\x3e\xec\x89\x1f\xa9\x90\x22\xbc\x23\x93\xa7\xbb\xaf\xf6\xc6\x3d\x61\x37\x1a\xa1\x3b\x42\x67\xf7\x64\x3f\xdb\xcd\xe7\xb8\x1c\x7f\xf3\xdd\xab\xe7\xdf\xbd\xfa\xe3\xe2\xdd\x8f\x6f\xde\xbc\x7e\xfb\x7e\x38\x5c\x83\xed\xdb\xe2\xfa\xd5\xd5\x37\x3f\x5c\x2f\x3a\x9f\xcd\xdc\x2b\x23\xb5\x6f\x18\xdc\x7f\xa4\xf7\x68\x38\xbc\x06\x90\x22\xaa\x5f\x55\xe9\x3d\xbe\x43\x38\xbd\x71\x4d\x4d\x6f\xd5\x08\x3a\x1d\x97\xbb\x49\xba\xc7\xd7\x08\xa1\xc3\x21\x5d\xc0\x58\xcc\xee\xe7\x78\x29\xbb\x6c\x40\x2c\xef\xd1\xd7\x17\x97\xc3\x61\x7a\x47\x16\x92\xf2\x15\xe3\x5d\xfe\xc1\x98\x26\x2e\x2c\xfe\xdd\x1d\xca\xda\x1f\xef\x10\xc2\x1b\x39\x46\xdd\x92\x00\x79\xc9\x8b\xdb\xb8\xc0\x77\x52\x82\xbb\x99\xde\xba\x55\x21\x3b\x91\x39\x28\x0a\x07\xca\xa9\x91\x90\x5a\x10\x3d\x87\xc3\xbd\x01\xc0\x9a\xea\x7e\x90\xbb\xac\x27\x31\x8c\xd0\xd9\x97\x4f\x81\x0a\xd0\xff\x26\x2f\x05\xcb\xb7\xaa\xb9\xd7\x08\x6b\xc5\x37\x02\x91\x36\xa2\xed\xc6\x66\x9d\x7e\x92\x07\x59\xad\x4b\x79\xb6\xc9\x19\xaf\x50\x7a\x8d\xd4\xdb\xb6\x1d\x4c\x22\x4b\x4b\xf4\xb2\x6e\xfd\xb9\x76\x2e\x0a\x92\x8e\x33\xf1\x42\x99\x71\x05\xac\xf8\xca\x8d\xa9\xb2\x65\x6c\x13\x8f\x0e\x93\x28\x09\x52\x9f\xed\x85\x70\xb6\x17\x3a\x42\x2d\xc4\x09\x13\x33\xee\xdb\x5e\xf0\xb9\xbb\x52\xd5\xb1\xf8\x61\xe4\x8c\xd5\xb4\x67\x64\xd4\xd6\x05\x84\xac\x98\xff\x75\xd5\x15\x9e\x2d\x4f\x5b\x8d\xf7\x94\x7e\x78\x19\xa2\x31\x9d\xd3\x31\xab\xde\x15\x75\xb9\xa4\xee\x36\x27\x45\x4e\x21\x56\x51\xd1\xfd\x8c\xc1\x2f\xc8\x8f\x8e\xbc\x54\xea\x78\xc5\x59\xc2\x92\xf2\x64\xf9\x6e\x7a\x6b\xeb\xe7\xd2\x2f\xcc\xe7\x95\xce\xe5\xcc\x11\xe8\xe3\x2a\x82\x30\x51\xa7\xac\x60\xb6\x3b\x5d\xa6\xab\x54\xee\x6e\xbd\xff\x25\x65\xf6\x46\x09\x77\xc7\x40\xa6\x6f\x2d\x13\x51\xbc\x03\x5d\x66\x77\xe4\x63\x50\x31\xca\x0f\x40\xe5\xb8\xfe\x24\x28\xaf\x58\xc1\xa7\x49\x96\x8c\xe2\x9f\x52\x94\x25\x89\xd1\x3a\x7f\x95\x8c\x52\x20\x24\x3a\xb4\xa7\x6e\xe7\xe1\x10\x9e\x1d\xe6\x1c\x32\xe6\xe8\xfe\xc9\x61\x2a\x48\x11\x82\x30\x8c\xaa\xb8\x9a\xad\x9c\xa7\xd2\x88\x8e\x92\xaf\x13\xd9\x49\x2a\x5b\xb1\xea\x76\x2c\xaa\x3d\xe3\xff\x9d\xda\x33\x2e\x97\x04\xd7\x9a\x58\xc3\xb1\x9a\xc8\xca\x10\x63\x4a\xcd\x06\xec\x23\x9f\xaa\x40\x10\x52\xc5\x14\xc7\x3d\xc1\xe5\xd9\x2f\x4b\xf5\x41\xfc\x68\x57\xeb\xae\xb8\x90\x4e\x80\xac\xa3\xe7\xe7\xae\xe7\xfc\xbc\x77\x67\xcf\x6a\x38\x5c\xb9\x63\xf2\xce\x7d\xd8\x0d\x87\x3b\xf7\xe1\xd6\x04\xb7\xfc\x25\x34\x47\x29\x5c\x26\x4f\x4b\x17\x03\xb5\x1c\x8d\x0c\x1f\x30\x2b\xe7\xb8\x0a\x8e\xe9\x1c\xe1\x9a\x4c\xf0\xd6\x41\x2d\xd7\x5f\x6d\x9f\xd6\xa3\x11\x5a\x12\x40\x59\x5e\x93\x7c\xb6\x9c\xe3\x7b\xd9\x07\x73\x8c\x2d\xf5\x31\xb6\x21\xb7\xf2\xdb\x9a\x6c\x3a\xe7\xe2\xc6\x9e\x8b\xeb\xee\xb9\xb8\x46\x08\xdf\xc9\xbe\xb7\x0b\xdc\x9b\x02\xdb\xc7\xe3\x1e\xcb\x3c\xf2\x23\xb1\x58\xe7\xb7\x4d\xdf\xea\xc2\x31\xba\xee\x4b\x40\x92\xca\xbc\x55\x5c\x3c\xc2\x1b\xaf\x98\x23\x8b\xcc\xd0\x2a\x97\xb7\xbb\x67\xa0\x08\x4b\x35\xce\x00\xaa\x02\xd0\xb8\xd3\xbd\xe1\x09\x25\x5f\xa4\xc0\x9f\xe4\x2a\x97\x83\x60\xcf\xa6\xba\x65\xdb\xd8\x6d\x0f\xf2\x3b\x07\xf2\x5f\xb7\x87\xf1\xf3\xc6\x76\x04\x1b\x89\xac\x01\x63\x7d\xd1\x76\xb2\x67\xeb\x34\xc2\x72\x50\x87\xfb\x23\x97\xd2\x53\xfa\x54\xf9\xe1\x85\x30\x7f\xe7\x93\x33\x08\x98\x5c\xef\x69\x09\x50\xed\x8d\xc9\xe5\x2a\xfb\x4e\x03\x93\x46\x1d\x11\x7c\xd8\x52\xd3\x46\xc9\xf3\xbe\x28\x4a\xc3\xb8\xf4\x40\xf5\x18\x6e\x19\xf3\x38\x9f\x87\x5d\x00\x7e\x3e\x5e\xc8\x32\x0f\x87\x07\x88\xde\x4b\xf3\xe5\xe6\x99\xbe\x3d\x3c\x52\xc9\x17\x1a\x56\xc9\xb6\x9d\xf9\x0d\xd4\x68\x48\x0f\xcd\xd3\x16\x47\xef\xf9\x72\x18\x6f\x93\xe7\xb6\x13\x55\x80\xa0\xa0\xda\x54\x9c\xb1\xb1\xbb\x95\x1d\x0e\xd3\x82\x30\xd3\x35\x8e\x3d\x84\x85\x02\x01\x7e\x81\x3e\xcf\x22\xbc\x4e\x7b\xdd\xea\x81\xda\x3b\x90\xb2\xbd\x01\x29\x4b\xf5\x22\x77\x73\x8c\x86\x43\x6a\x47\x3f\x58\xda\x91\x05\x6c\xb6\x1a\x02\xc7\xc2\xae\x32\x83\x1a\x65\x86\x67\x8c\xd2\xd1\x68\xd8\x75\xde\x61\x79\x62\x27\x7f\x4b\xe3\x80\xe4\xac\xb7\xea\x00\x5c\xe9\x2f\xae\x04\x0e\xda\x48\x2d\x73\xd3\x97\x70\x08\xe2\x0a\x1a\xb2\x73\x27\x7a\x08\x20\xab\xb4\xa0\x69\x4a\x49\x8b\x3e\x20\xa4\x5c\x40\xbc\xc3\x57\xc9\x7f\x3b\x9f\xdd\x95\xa7\xa3\xe9\xb0\x9b\xb4\x9e\x46\xe8\x93\x41\xd9\x0a\xab\x36\xbf\x5e\x3b\x6e\x92\x9e\x13\xd2\xc5\x6d\xb7\xcc\x24\x28\x4e\x20\x54\xfc\xbd\x63\x98\xea\x31\x54\xf8\x5e\xff\xc6\x70\x16\x54\x86\xb5\xb9\xd7\x56\x42\x5e\x9c\xc6\x04\xe1\xfb\x31\xab\x14\x75\x3b\x9f\xc0\x0f\x85\xfc\x42\xce\x2f\x3d\x07\xa3\xfb\x47\xf4\x28\x5e\xfc\xd4\xcf\xbb\x07\x35\x7a\x91\xc7\x6e\x45\x4f\xb0\xcc\x50\x6a\xce\x28\x27\xc5\xfe\x3b\x39\x29\x26\x39\x29\x76\x44\xac\x30\xda\x6d\x1b\x94\xcc\x38\xb0\x07\xb9\xfa\xb9\xde\xb6\xb2\x4d\x0e\xb6\x85\x4f\xf2\xde\xef\x0a\xc9\xa6\xbf\x81\x98\xdb\xce\xf4\x91\x2a\x6e\x1c\xa4\x48\xd7\x04\x30\xc3\x6e\x19\x58\x94\x2d\x2e\xd8\x9a\x58\x94\x2d\x7e\x16\x1b\x98\x58\x97\x58\x2d\xfe\x56\x97\x64\x43\x61\x69\xd1\xaa\x33\x1e\xfb\xb2\x58\xd2\xaa\x3a\x3e\x26\x11\x11\xcc\x53\xcf\xb7\xf3\xc6\xa4\x37\x4d\x98\x75\xd1\x4d\xca\x62\x7a\xc6\x02\x17\xfe\xf4\xb9\x46\xc9\x2d\x51\x8c\x5f\x5d\xbd\xbc\x7e\xf7\xe6\xea\xd9\xf5\x3b\xc2\xbd\x1f\xc1\x97\xc5\x37\x7f\x5b\x7c\xf7\x3c\xf8\xae\x5e\xa9\xa2\x65\x57\xaf\xb6\x5b\xc2\xbd\x1f\x6e\x2e\x70\x31\xbe\xb9\x97\x3f\x49\x6b\x96\x1e\xd9\x75\x9f\xa7\xb8\x54\x5f\x80\x8a\xf5\x6c\xbf\x47\x4d\x14\x4e\x0c\x59\x1c\xa0\xb5\x9e\x60\xac\x20\xa5\x80\x8e\x99\x55\x3b\xde\xaa\x56\x52\xcb\x2d\x51\x2b\x96\xd5\xc2\x98\xbe\xfe\xcb\xf5\xdb\xb7\xdf\x3d\xbf\x5e\xbc\xfe\xe9\xd5\xf5\xdb\x04\xe1\xed\xff\x14\x19\xe8\x1e\xb2\xcc\x1c\x4c\x0b\x18\x01\x1b\xf6\xf4\x4f\xf4\xbe\xe7\x5c\xe8\x11\x3d\x3b\x48\xe7\x54\xf2\x02\xeb\x5a\x2d\x24\x73\xec\x94\x63\x18\x83\x76\xc9\x4c\x1d\x2c\xb3\x7a\xee\xfb\xb5\xcf\xea\xf9\xd9\x17\xd4\x09\x4b\x28\x6e\x6c\x06\x11\x63\xe0\x68\x62\x4d\x9a\xc7\xf6\xda\xd6\xe2\xa0\x2b\xe2\xb1\x35\x87\x92\x3d\x90\x6c\x50\x52\x3d\xfc\xdb\xd0\xf1\xb6\xbd\x2e\xb6\x27\x6d\x92\x53\xad\x74\xbe\xc8\x2e\x47\x03\xf6\x3f\x1a\x76\x48\xdd\x9d\xfc\xcf\xc9\xfa\x3c\x36\x21\x0c\xb3\x36\xdf\xa8\xef\x5c\xca\x47\xfd\xbd\x6c\x80\xb5\xcf\x09\x3a\xff\x88\xb3\xa2\x0e\x7f\xdd\x12\x93\x4c\xfc\x25\x63\xed\x26\x7f\x27\x92\x4d\x72\x7c\x9b\xf9\x64\xa3\x61\x99\x01\xe7\xb3\x52\x1d\x03\x14\xcd\x0f\x07\x83\x61\x6a\x54\x40\x9e\x4a\x89\xb0\xa9\xe8\x46\x72\x1a\x0e\x53\x46\x12\xc5\xc9\xa1\xcc\x83\x40\x65\xf2\x7c\xf4\xa5\x28\x88\x6f\x31\x65\x44\x47\xb3\x08\x83\x45\xd8\x92\x65\x02\x17\x2e\x2c\x12\x50\x42\x56\x07\x41\xc1\x20\x3c\x81\x91\x61\x92\x99\xaa\x79\xf0\x8d\x0a\xed\x35\x4f\x32\x1b\x3b\x0d\xdb\x8f\xaf\x00\x91\x46\x7e\xd3\xd8\x34\xee\x93\x62\x2f\xe4\x27\x6d\x2a\xe8\x3e\x19\x3e\x53\x7e\xb4\xe3\xe1\x3e\x83\x26\x41\x7e\x33\x06\x68\xe6\x83\x6c\xaf\x7c\x0f\xad\x75\xaf\xdf\xd2\xdb\xeb\x4f\x7b\xf9\xa1\xa4\xb7\xf4\xd3\xde\xfb\xa4\x36\xad\xfc\x64\xb7\x95\x6d\x04\xdb\x82\x6b\x25\x34\x82\x6d\xe9\x96\x55\x22\x69\x70\x49\x3a\x81\x9f\x0c\xab\xe4\x2f\x4b\x7d\x92\x9d\x14\x10\xc4\xee\x3a\xe1\x44\x4e\xad\x0e\x82\xc1\x06\xcd\xfe\x8c\xce\xc9\x25\x16\x48\x2e\xbe\x00\xe3\xc5\x45\x6a\xf1\x76\x6f\x1b\xc5\x0a\xc4\x08\xb7\x56\x5c\x20\xb1\x58\xa8\x11\xd4\xd0\x31\xb8\xdd\x10\x6a\x03\x44\x40\xdc\x72\xf3\xa4\xaf\xd9\x08\x1d\x7f\x7b\xf5\x6e\xf1\xea\xea\xfd\x77\x7f\xb9\x5e\xbc\x79\xfb\xfa\xaf\x7f\x0b\x5f\xbd\xfb\xdb\xcb\x6f\x5e\xff\x40\x3c\x66\x92\x1a\x4a\x4b\xa8\xe1\xee\x08\x75\xea\x21\x99\xd4\xa0\x80\x01\x0a\x22\xb7\xcf\xca\x10\xd4\x49\xc5\xb2\x41\xbc\xda\xab\xd0\xe7\x15\x15\xd6\x39\x4c\xfd\x74\xf8\xa0\x50\x91\xff\xf5\x36\xfc\xfa\xb1\xcc\xf7\x84\x8e\xdf\xbe\x7e\xfd\x5e\x56\xb9\xa1\xcb\x0f\xdf\xe6\xd5\x3b\x29\x2e\x41\x1d\x82\x96\x5c\xe6\x52\x2c\x27\xe4\xe7\xb4\xcc\x05\xfd\x63\xcd\x56\x84\x8e\xff\xf8\xe3\x77\xcf\x17\x7f\xba\x96\x5d\xaf\xd5\x9b\x15\x83\x11\xcd\x4b\x35\x6a\x00\x9f\xcc\xf3\xed\x3b\xe0\x0f\x64\xf3\xcc\x83\x64\xce\x20\xab\xc7\x4c\x94\x64\x72\x16\xe1\x10\x46\xa3\xb2\x51\x12\x85\x7f\x97\x99\xc3\x2f\xf9\x54\x11\x91\x26\x8b\x05\x2c\xbe\x64\x34\x18\x99\x88\x66\x08\xd7\x64\x36\x77\x25\x6e\x9d\xbb\x18\x64\x48\x46\x74\x94\x56\x23\x88\x3e\xb8\xde\x16\x45\x99\xc2\x63\x99\xf3\x55\xb1\x4b\xd1\xbf\xb9\x82\xd0\x48\x26\xb7\x67\x70\xad\xc0\x2e\xb8\xa4\xe4\xb2\xbc\x65\x4c\x1b\xae\x17\xca\x54\xff\xcd\xe2\x37\xaf\xc6\x12\x62\x97\xef\xfd\xde\xb9\xcb\x1d\xb7\xd5\xf2\x55\x14\xfa\xd0\xe6\x07\xe9\x97\xf6\xdc\xaf\x28\x2d\xdc\xf1\xfc\x56\x53\x17\x66\xdd\xe4\xd5\xf1\x7c\x4a\xd9\xd7\x80\x08\x8c\xd7\xe4\xc9\x3f\xc6\xa9\xc2\x33\x38\x48\x52\xff\x0f\x38\x19\x0f\x70\x48\xaa\x67\xf4\x04\x6f\x22\xf2\xb4\xdd\x29\x78\x4f\x36\xea\x94\x88\xab\x31\x1b\x64\x15\xa8\x89\xf7\x3a\x41\x5f\x5f\x5c\xc6\x80\xc0\xd7\x63\x41\x2b\x91\x6e\xcc\xc9\xe3\x23\xc2\x5b\x07\xb1\x49\xd3\xb9\x39\x0f\x41\xfb\x7d\x1d\x07\x72\x8b\xea\xde\xd1\x2d\x75\x49\x4e\xbb\x7a\x0c\x15\x11\x6b\x9f\x52\x84\x57\x7a\x96\x94\x26\x48\xfd\xda\xe1\xf3\x4b\xa5\x1f\xbb\xf3\x5b\x10\x80\xfd\xcb\xd3\x59\x0c\x87\x77\x36\x7b\x80\x93\xef\x85\x09\x56\x4d\x80\x65\xb9\x88\x97\xf6\xd1\x96\xb6\x88\x94\x76\xed\x95\xb6\xf0\x4b\xfb\x04\xa5\x2d\x5d\x39\x1a\xf1\x3d\xe0\x9b\xf4\xee\x72\x90\x16\x67\xde\x33\x11\x7a\x97\xf7\xb0\x4c\xa1\xb1\x8e\xca\xc2\x71\x69\xf6\xc2\x27\xd0\xc5\x71\x84\x6f\x53\x8e\x65\xa7\x11\xfe\x98\x72\x7c\x0d\x4f\x6a\x23\xbe\xee\x3f\xa0\xf0\xd5\xd1\x25\xf7\x81\x04\xa0\xee\xf8\xa5\x7f\x5b\x80\xdf\x93\xef\xdf\xbd\x7e\x35\x56\x87\x35\x5b\xdf\xe3\x67\xe4\x72\x32\xc1\x6f\xc9\xbf\xe3\x37\xe4\xc9\x7f\xce\xfe\xf1\xf1\xb7\xf3\xd1\x6f\x9f\xb8\xb1\x79\x15\x42\xec\x9f\x5f\x9a\x50\xab\xf6\x9c\x51\x11\x57\x1d\x83\x94\x75\x59\x26\x48\xa1\xcf\xad\xec\x18\xe3\xf5\x41\x0e\xc1\x43\x49\xce\x27\x67\x37\x25\xcd\x3f\x34\x10\xcb\xcd\x1e\x3c\x84\xbc\x3e\x1c\x1c\x73\x66\x3f\x20\x48\xec\xc0\xde\xdd\xf5\x99\xaa\xda\xd2\xb4\xac\x93\x84\x10\x72\x35\x55\x5a\x85\x69\x32\x33\x03\x9b\x25\x23\xf5\x6e\x94\x48\xce\x61\xe6\xf1\x32\xdd\xd2\x5b\x31\x64\xdf\xcb\x8d\xa3\x3e\xc0\x11\xa1\x83\xd0\xc6\x43\xd2\xb6\xe2\xaf\xfa\x85\x37\x3e\x23\xca\x11\xd7\xab\xd6\x44\xc0\xe4\x9a\x5a\x99\x31\x9c\x3d\x63\xe5\xb2\xde\xe6\xe5\x3c\x71\x7a\x72\xb9\xce\x28\xc2\xe5\xb4\x6d\xff\x2c\x65\xb7\xaf\xdf\xda\xbc\x9a\x19\x3b\x33\x80\xe5\xc9\x2c\xf1\x2e\xa2\xa8\x7f\x11\x25\xb3\xb2\x11\x91\x8d\x2a\xa7\xc9\x20\xc9\x12\x3c\x48\x70\xf9\x35\x79\x86\x1e\xd8\x88\x24\xe3\xf1\x78\x90\x8c\x52\x8b\xf3\xf5\x0c\x8d\x92\xc1\xae\x28\xe9\x80\x09\xba\xab\x12\x33\xb1\x23\xf2\x2a\xa5\xb3\x72\xae\x8c\xae\x75\x8b\x65\x01\x83\x79\x02\x41\x31\x47\x97\x98\xa3\xec\x91\x86\x1b\xd6\xcf\xb4\x1c\x17\x24\x79\x48\x70\x4e\x5e\xca\x59\x70\x5d\xc8\xdb\x5d\x28\x7a\xba\x50\xb8\x2e\xe4\xdd\x2e\xc8\x3d\x64\x7b\x40\x72\xd9\xfc\x62\x44\xfe\x99\x32\x34\x4a\xb2\x41\x32\x92\x5d\x62\x61\x97\x64\x81\x83\xc6\xeb\x92\xa3\x50\xff\xf4\x28\xd4\x1b\x45\xda\x01\xb6\x49\xae\x20\x97\xea\xbb\xf0\x22\x54\xe1\x99\xc6\xc3\xcb\xcd\xc4\x1c\xa8\xc7\xf3\x16\x0d\xf8\x21\x38\x0f\x5e\xf4\xd3\x16\xb7\xef\xff\xd5\xe2\x3e\x09\x51\x08\x92\xdf\xc6\x38\x04\xc5\x14\x0d\x87\x4e\x2c\x80\x17\x73\x29\xd0\xf4\xd6\xa5\x0e\x31\x95\x32\x45\x08\x7f\x13\x2b\x19\x98\x55\xfc\xa3\x5a\xfb\xf8\xe7\x3e\xab\x2f\xcf\xa8\x7f\xcb\x76\x4c\x10\x65\xe5\x3b\x96\x69\x88\x32\xa7\x1d\x57\xa2\x28\x29\xe1\xfa\x07\xfb\x17\x35\x26\x9a\x3b\x06\xca\x44\xfd\x6b\xc3\x84\x7d\xd6\x59\x0e\x07\xcd\xa0\xc5\x98\x99\x5b\x1a\x5e\xbf\xb9\x8c\xad\x43\xd4\xfb\xa0\x76\xee\x34\xb5\x15\x8e\x46\xb8\x93\x0f\x69\x68\x4d\xd5\x3c\x9b\x42\x9d\x73\xa6\x73\x32\x5d\x8b\xcb\xa9\x68\x4f\x4c\x42\x37\x3c\x5f\xdb\x31\x30\x66\xb3\xf2\x39\x6c\x84\x7f\xba\x07\xe5\xef\xeb\xf2\xb6\x6b\x01\xab\x32\x69\x4c\xc3\xee\x18\xfb\xa3\x6a\xc6\x5b\xf3\x59\x3f\x91\x6d\x9a\x18\x26\x3a\x41\x67\x1e\x47\xfd\x13\xb6\x7c\xf6\x16\x47\xb8\xf0\x2e\x8b\x04\xfe\x10\xb5\xe5\xaa\x14\x07\xe8\xb1\xf2\xdd\x6b\x41\xbd\x3e\xf5\x95\x8c\x37\x5d\xe3\x85\xcc\xa7\x7c\x65\x14\x43\x69\xde\xa9\x11\x01\x39\x81\x61\x4f\x76\xa8\x70\x4b\xae\xe8\xd6\xf6\xff\x93\xf7\xe6\xdd\x6d\xe3\x58\xa2\xf8\xff\xfe\x14\x32\xa7\x87\x45\x8c\x60\x46\x4e\xd7\x7b\x6f\x86\x29\xb4\x4e\x2a\x71\x3a\x99\xce\xd6\xb1\xab\x6b\xfa\xa9\x34\x1e\x5a\x84\x2c\x54\x28\x50\x4d\x82\x5e\xa5\xef\xfe\x3b\xb8\xd8\x49\xca\x76\xaa\x7b\xde\x6f\x3b\xc7\xc7\x22\x41\xec\xcb\xdd\x70\x97\xe4\x37\xde\x42\x2a\x86\x34\x42\x63\xe6\xbc\x51\x72\x90\x23\x54\x76\xa5\x54\xb7\x0c\x8b\x33\x60\xc9\x60\x38\x14\xaf\xfc\xd4\x37\xe7\xab\xcc\xce\x03\x3d\x5d\xdd\xa4\x6c\x11\x9b\x46\x6a\x64\xec\x3c\x55\x89\x3c\x2c\x61\xcd\x05\x49\x22\x1c\x23\x3a\x8d\x1a\x01\xd5\x64\xce\xb7\x2d\x11\xd3\x88\xb7\x3a\x55\xe3\x49\x95\xda\xdc\xea\xd4\x44\x72\x35\x11\x8a\x70\xee\x1a\xc7\xb5\x1c\xa2\x66\xe7\x04\xee\x72\x7a\x1b\xac\x59\xc0\x35\xd6\x2c\xe1\xe0\x41\x90\x94\xee\xf4\xf0\x46\x5f\x8e\xc6\xf1\x6d\x22\xd0\x54\x12\x81\xa7\x89\xc0\x6b\x84\x32\x45\x10\x66\xa0\x95\x12\x30\x9a\x17\xb8\xc3\x88\x9e\xe0\x0e\xa3\x7a\x89\x3b\x8c\xec\x35\x76\x3c\x6e\x7f\xbf\xf6\xbc\xfd\xd2\x38\x1e\x0c\x10\x25\x4f\x4e\x26\x89\xb1\x09\x6c\xe9\x1e\x23\x1d\x0e\x54\x7b\xb8\x22\xf4\xa0\xa8\xee\x2d\x1d\x71\x48\x48\xc2\xbd\x2b\x42\x2f\xd0\xb5\xab\x29\xa9\xe5\xa1\xf7\x04\x13\x7b\xee\x14\x6b\xb4\xbb\x5e\xb1\x92\x26\x5a\x36\x51\xa3\xc0\x1a\x13\xfb\x8c\xff\x3b\xec\x8b\x04\x06\x50\xba\xc2\x71\xf6\x1e\x72\x26\xe6\xd6\xc2\x92\xc3\x78\x9d\x70\x61\x80\x2d\xd2\xf8\x69\x3a\x9b\x67\xaf\x15\x06\x05\x73\x1f\x27\x9c\x18\x28\xf3\xde\x70\x04\xd8\x49\x33\xc2\x39\x54\xc7\xeb\xbd\xe3\x2c\xf0\xc0\x7d\xda\x88\x26\x6e\xba\xc1\x7d\x73\x2f\x88\xb0\x0b\xbb\xee\x19\x76\xed\x17\x39\x8a\x01\x91\xe3\x60\xc4\x75\xe5\xbb\x2c\x8a\xf0\x80\xb6\x50\xfd\x07\x1d\x5c\x2a\xc2\x11\xc2\x77\x89\x98\xd5\x73\xb4\xdd\xca\x14\xaa\x5e\xdc\x6a\xed\xfa\x32\x4b\xd3\x75\x3b\xde\xa9\xf0\x08\xd3\xec\x8d\xbe\x00\x83\x29\xe9\x4b\x8a\xde\xe2\x01\x91\xd2\x8f\xd8\x49\x9c\x16\xd8\xc9\xa1\xfa\x4b\x73\x78\xa8\x66\xfe\x27\xc7\x8e\x3b\x01\x96\x9f\xdd\x64\x53\x44\xae\xcc\xa6\xe4\x5d\x7f\xf3\x45\x78\x57\x8c\x5e\x37\xcf\x00\x1f\x0c\x49\x94\xd5\x67\x4f\x9e\xfc\xeb\xdf\x5a\x5a\xdf\xee\xff\x1e\x5e\x6e\xf5\x3e\x83\x57\xbd\xf3\x42\x07\x55\xf6\x2e\xc5\x5c\xce\x45\xb5\xde\x54\x5c\x66\x53\x87\x78\x20\x8b\x71\x54\x40\x6f\x84\xf3\x4f\xd0\xcb\xa5\x9e\xe0\xfa\x4c\x3e\xee\xaf\x07\xc4\xcc\xe7\x70\x9d\xfe\x40\x75\x26\xf3\x8a\x95\x05\x54\xf8\x84\xcc\x32\xe1\xbc\x11\xb9\xa0\x4f\xcd\xfb\x58\xae\xae\x57\x86\xc1\xe9\xcb\xc5\xb3\x5c\x88\xfa\x81\x75\x50\x53\x7b\xbe\x51\xea\xcd\x03\xf9\x60\x1d\x75\xb6\x23\xbb\x24\xfb\x2b\xd4\xfd\x5a\xe7\x3c\xbf\xdc\xbb\xac\xb9\x78\xb6\xcc\xcb\xf2\x22\x5f\x7c\x85\x2f\x47\xc6\x7d\xc7\x93\xc2\x3d\xe2\x0d\x2e\xf0\x1a\xdf\x76\x04\xcb\xc3\xa1\xc6\x29\x8e\x7e\xfd\xb3\xda\xaa\xf7\xbe\x67\x87\xc9\x3e\xcf\x0e\xe6\xa6\x60\xb7\x43\xf8\x91\x2a\x5f\xb3\x46\x56\x56\x3c\xb9\xea\xb0\xd8\x83\x2d\xe4\x45\xf1\x4a\xee\xb0\xbf\xc0\x8e\x7d\x52\xfd\xc0\xc6\xda\x42\x0f\xd6\xce\x9a\x53\xb6\xde\x94\xf4\x55\xc9\x16\x5f\x9f\x5c\x7d\x50\xea\xc1\xfa\x2f\xa9\x90\x7d\xf8\xb1\x6a\x79\xd1\x3c\xb9\xfe\xa0\xd4\x53\xea\x7f\x55\x32\xca\xc5\x17\xba\x10\xdf\xdc\x88\x57\xf4\xc9\x23\x61\xfc\xd2\x15\xfb\x4d\xa3\x0a\x6a\x78\xac\xdd\x2f\x55\x05\x25\xbf\x69\x6c\xb6\xd0\x63\xb5\xdb\x8d\xf2\x4d\xd5\xbb\x52\x4f\x99\xb5\x77\x4f\x3d\x1a\x76\x96\xde\x3d\x7c\x2a\x74\xae\x93\x92\x2a\x67\x33\xdf\x56\xb9\x2e\xf6\x60\x0b\xcd\x6f\x6b\xa1\x79\x7a\x0b\x56\x7f\xfd\x54\xdc\x96\xf4\xb5\x36\x65\x63\x15\xff\x40\x9b\x26\xbf\xa4\x4f\x6e\xf3\xb1\x8a\x1e\xec\x05\x98\x9d\xbc\xf6\xf0\xef\x93\x1a\xad\x9f\x04\x1d\x5f\x19\x34\xf1\x5e\x23\xee\x27\xd5\xcd\x9e\x54\xf7\x19\xbd\x11\xa7\x06\xe9\x3d\xa9\xde\xea\x89\x7d\xae\xe9\x37\xc0\xda\xfc\x69\x95\x4a\x82\x02\x14\x8a\xbe\xad\xcb\xcd\xd3\x6a\xb7\x67\xf1\xdb\x6a\x6f\x9f\x54\xbb\xac\xf8\x54\x52\x2c\xdf\x56\x79\xf9\xe4\xca\xb5\x8e\xe8\x93\x6a\x5d\x3c\xa9\x56\xe5\x63\xe8\xdb\xfa\xbb\x7c\x52\xcd\x1f\x7e\x3a\x03\x2b\xb1\x57\x27\xef\xdf\x3f\xb1\xe2\x55\xea\x17\x7a\xb0\x76\x45\x5d\x7d\x36\x34\xd8\x93\xaa\xdf\x3c\xa9\xdf\xab\xbc\xf9\xd6\x6a\x5d\x91\x27\xf4\xf9\x95\x23\x08\x9f\x54\x7d\xf1\x0d\xeb\xf8\xc1\x90\x90\x4f\xaa\x79\xfd\xa4\x9a\x0d\xd5\x29\xf7\xdf\x17\x43\x73\x3e\xad\x81\x5b\xaf\x81\x3e\xe3\xd4\xa7\xb8\xfb\x3c\x94\x62\x89\x1e\xd1\xc0\xf1\x37\x8d\x0b\x50\x1e\xa4\x2a\x0f\x85\x46\xff\x2e\xd8\x9a\x0f\xf7\x6c\x0f\xcd\xfd\x5b\xbb\x6a\x94\x98\xa0\x3f\x4e\x76\x88\x12\x15\x1c\x6e\x6f\x4f\x42\xa6\xee\x51\xa7\x85\x5a\x99\xe9\x5b\x3c\x67\xeb\xf5\x57\x06\x5f\x2a\x4c\x02\x34\x1a\x3a\x5f\xf5\x63\x5c\x8f\x84\xef\x16\x3f\xb2\x25\xb2\x68\xac\x44\x2b\x65\x7e\x5b\xb5\x0f\x57\xa0\xa3\x0c\x44\x82\xae\x37\x65\x2e\x68\x66\x6b\x69\x9e\xe9\x6a\xf6\x6d\x9d\x3d\x4c\xdd\xbe\x85\x79\xc4\xc9\xde\x23\xac\xe0\x37\xfa\xe0\x1b\xf6\x67\x25\x19\x32\x72\xdf\x50\x5e\xf4\x02\xeb\x0c\xc4\xd8\xab\x1f\x8e\xb1\x37\xe0\x28\xfe\xc0\x7a\x95\xc1\xca\xd8\x5b\x7b\x74\x6b\xb4\xb5\x85\x7e\x9b\xd1\x39\x58\x7f\x56\xdb\xed\xe1\x84\x10\x52\xf9\x17\xcd\x35\x52\x22\xa7\xbc\xa7\xc5\x6d\x9d\xb8\x81\xc5\xb7\xe7\xa9\x2c\x0f\x3c\x56\xee\x0e\xaa\xf4\xf4\xe4\xe3\xeb\xf3\x97\xaf\xce\xde\x7d\xfa\x18\xc7\x49\xfe\x94\x88\x82\x7f\xe7\x68\x8d\x7e\x8c\x6f\x14\x41\x89\xf3\x53\x57\xf5\xdd\x58\xc8\x95\x4d\xa3\x31\xed\x2b\xa6\xdb\xe8\xcf\x87\x84\x24\x15\x51\x26\x2b\xda\x09\xdd\x80\x28\xab\x9a\x56\xa1\xcb\xf4\x5a\xc7\x8d\x09\xdc\xf8\x25\xf7\xda\x7b\x61\xd5\x71\x5d\x58\xef\xc0\xa7\xfa\x9e\x7b\x95\x38\x16\x33\x16\xc0\xb2\x39\xe8\x49\x88\xf4\x2a\x2f\x5b\x0a\x82\x79\x65\x14\xad\x9a\x21\x39\xc2\x7b\x5d\x3e\xb6\x0f\x1f\xa5\x41\xf1\xcc\x7e\xb7\xc8\x0f\x4a\xb1\x7e\xb3\x7f\xfc\x85\xa5\xd0\x94\xcb\xde\x07\xfc\x4e\x1e\x3f\xc5\xef\xa4\x59\x5b\x47\xf9\x19\xcd\xfd\x1d\xc2\xf9\x66\x43\xb9\xe2\xff\x83\x23\x69\x2c\x20\x6c\xa1\x7d\x6e\xa5\x9f\x26\x0f\x1b\x9e\xc3\x6f\x0b\x30\xb0\x47\x39\x37\x54\xbf\x99\xcd\xd1\x03\x0e\x3f\x87\x8d\x54\xb3\x99\xd2\x15\x05\x9a\x3b\xc2\xee\xc5\xf8\x4b\x88\xe6\x98\x71\xd6\xf1\x96\x6c\x95\x4f\x86\xb5\x54\x76\xd8\xd5\x99\x31\xdc\xab\x33\x63\x8f\xcc\x63\x28\x9f\x7c\x6c\x13\x1a\x7c\xf7\x0f\xf6\x9d\xaa\xf4\xe9\xee\x8f\x7f\x9f\x45\x2a\xa4\xdc\x47\x7a\x5d\x32\x4e\x23\xfc\xfc\x7f\x65\xd1\x22\xe7\x0b\x5a\x46\x3b\x77\xb1\x9d\x1b\xf7\xf6\xaa\xa0\x73\x61\xcd\x7b\xf0\xc6\x7e\xa0\x08\xe7\x61\x4e\x38\xd8\x11\x3a\x60\x21\x1c\x1d\x70\x98\xc9\x9f\x08\x62\x66\x39\xae\xe7\x3b\xdf\x5d\x84\xab\x24\x8e\xab\x24\xc7\x35\xc2\x55\x1c\x1f\x06\xfd\xb8\x68\x2f\x2e\x4a\xda\x44\x28\x8e\xeb\xb4\x11\xd5\x46\xee\x99\xfc\x32\x57\x7b\x60\xbf\x27\x72\x9e\x9e\x01\xaa\x08\x58\x0b\x7c\x0f\xc3\xca\xa2\x08\xcb\x99\x60\x17\xad\x73\xc8\x91\xcd\xa2\xbc\x15\xd5\x22\xdf\x30\x91\x97\xec\x4e\xae\x23\x24\x54\x75\xad\x54\x6e\xe5\xdb\xb2\x5a\xb4\x72\xfd\x0b\x2b\x41\x8c\x96\x55\xbd\x8e\x70\xb4\xce\x6f\x8c\x7b\xa3\x68\xcd\xb8\x7d\x06\x7f\x3e\xab\xaa\x2c\x40\xa8\x5a\xd3\xbc\xa8\x78\x79\x0b\x8f\x7f\x6b\x59\x0d\x55\x34\xb4\x54\xce\x7d\x5f\xb3\x9a\x1a\x3d\xe2\x66\x43\xcb\x12\xae\xff\x22\x89\xf7\x2e\xb4\x88\x3f\x12\x4c\x94\x92\xa8\xf2\x2a\x56\x9e\x67\x4d\x9f\x24\x14\xb2\xbd\xd1\xae\xd8\xbf\xf5\xe8\xa8\x8b\xec\x8a\x27\xd1\x26\x6f\x04\x0d\xdc\x24\x50\x25\x2b\x01\x67\xf7\x2e\x20\x84\x2b\xb1\x68\xc5\x37\xe5\x67\x7c\xf3\xa4\x12\x3b\xac\x37\x03\x38\x27\xe7\x82\xd6\x9b\x9a\x8a\x3f\xd1\x5b\x10\x89\x0c\xc5\xb3\xab\x66\x34\xfd\x4a\x6f\x5f\x55\x85\xa2\x36\x1e\xa8\x3d\x41\x58\x04\x56\x1e\x62\x0e\x77\x2e\xc3\xb9\xb3\xd0\xb6\xca\x8f\x21\xa0\x4f\x8e\x1a\x89\x2e\xac\xd1\xe4\x0e\x2f\xfa\x81\x31\x1e\xea\x13\xb5\x21\x46\xf5\x99\x0f\x4a\xe6\x49\x44\xe5\x2c\xe8\xa9\x93\x67\x38\xd1\x20\xe2\x88\x1b\x18\x61\x30\x06\x56\x80\xa2\x57\x41\xb3\xc8\x37\xf4\x68\x53\xd3\xa6\xf1\x32\xc3\x36\x7f\xc7\xbb\xb9\x21\xf9\x48\x32\xff\x61\xce\x4f\xed\x90\x07\xe5\x7d\x63\xc2\xb6\xa6\xca\xae\xbb\xac\xea\x2b\xbd\xfd\x2c\xfb\xd1\x6d\xf5\x2b\xbd\xed\x75\xf0\x2b\xbd\xfd\x69\xd3\x6f\xb3\xbf\x2b\x74\x7b\xb2\x0e\xc9\xb4\xf8\x15\xbc\xae\xae\x7b\x23\x94\xf9\x8a\xea\xda\x1b\xe1\x23\x28\x62\xe8\x82\xe8\x1f\x1c\x70\xea\x5c\xd4\x39\x6f\x98\x2c\x77\x56\xed\x73\x4c\x76\xbe\x68\xeb\x9a\x72\x01\x92\x1f\xcc\x07\x12\x8d\xae\xa7\x7c\x06\xf2\xdb\x7b\x27\x14\x4b\x22\x2f\xa5\x37\xcc\xfe\x6a\xf3\x40\x9e\xc2\x26\x8b\x63\xfd\x60\xe9\x96\x27\x4c\xcb\xb7\xb0\x43\x4f\xe3\x8d\x2e\xea\xea\xba\xd9\xe3\xb9\xfc\x5b\xaf\x32\xf5\x4d\xe8\x93\xad\xeb\x2c\x86\x6d\x3b\x4a\xce\x6e\xe9\xea\xa7\x12\x3b\x3d\xf4\x13\xcd\x31\xa7\x79\x4d\x1b\xf1\x69\x09\x1e\xe1\xbb\xec\x8a\xef\x48\x20\x97\x8b\x2a\x29\x42\xcc\x49\x60\x0a\xa3\xdb\x1f\x0a\x41\x6d\xbc\x1b\x24\xc2\x57\xaa\x1e\xfa\x1e\xf8\x03\xdb\xbd\x10\xca\x91\x82\xcc\xeb\x6e\xfa\xe5\x2e\x75\xdd\xd8\xed\x4c\xe7\x7f\x66\x62\x35\x18\x6f\x65\xef\x10\x4c\xfd\x14\xec\x47\x1e\x68\xa1\xa6\x35\xe5\x05\xad\xf7\x7a\x75\xf7\x37\x7b\x6a\x72\x1b\x2b\x56\x0d\x8c\x32\x30\xc2\xfd\x7b\xc9\x79\x13\xb9\x56\x36\x40\xc1\x00\x58\xdf\x1f\x38\xa2\xfe\x77\xdd\x30\xb9\x3e\x3e\xb0\x7a\x20\x53\xed\x09\xc2\x06\xfc\x0c\x72\x65\xe1\xd7\xe0\xdb\x4e\xb3\x0d\x83\x10\x21\x54\x83\x12\xa4\x4a\x57\x79\xf3\xfa\xd3\x87\x01\xfa\x8d\x4e\x8b\x6a\x01\x48\x3f\x85\xe3\x70\x0a\xa4\x48\x55\x27\x14\x65\xba\x3b\x76\x9c\xa6\x45\x13\x55\xd7\xc4\x6a\x82\xe4\x7d\xb3\x64\x0b\xd9\x76\x2e\xaa\xe2\xd6\xad\xc8\xbb\x42\x91\x28\x4b\xc6\x0b\x3d\x8b\xef\xf8\x67\x58\x78\xfd\x3a\x30\xc0\xe8\x9f\xb4\xa3\x22\x5b\xc9\x81\xe7\x0d\xc1\xcd\x18\x9a\x4d\xe6\x40\xe9\xfa\x89\x98\xca\xe4\x1d\xbe\x66\x65\xf9\x0e\xd0\xa5\x69\xa8\xc5\x05\x2b\xba\x49\xe0\xfe\xbb\xa4\x79\xfd\x45\x6d\xbf\x76\x28\x10\xe5\x13\x09\xaa\x70\x8f\x9a\x48\x94\x7a\x8b\x7a\x8e\xa5\x5c\xeb\xee\x08\x38\xe2\xa3\xc5\x22\xbf\x94\x8c\xcc\xdf\x45\xdc\xd9\xa9\xdb\x6e\xa3\xc8\xf8\x2a\xd5\x15\x6f\xb7\x49\x98\x47\x33\x07\x81\x41\x3b\xda\x61\xe5\x4c\x11\x30\xed\x43\x51\x3e\x82\x51\x7b\x65\x6c\xd8\xdc\xfd\xf8\x64\x8f\x76\xc2\xb7\x5a\xac\xa1\x7b\x9f\x55\x80\x80\x5f\x26\x12\x87\xe2\x10\x1a\x72\xbf\x7b\xb0\x07\x7d\xc5\x97\x3e\x56\x33\x66\xe2\x03\x0e\x2d\x1f\x08\xeb\xd2\xe7\x1f\x7f\xa3\xea\xce\xdf\xa9\xc2\xf1\x48\xbb\xe7\x7a\x06\xdc\x75\xe5\x23\x4a\x1f\x03\x7c\xec\x82\xdc\xaf\xab\xb6\xa1\x40\x49\x64\x11\x3c\x57\x57\xb2\xaf\xf0\x58\xd2\xfc\x8a\x9a\xe4\x56\x44\x3b\xdf\xdd\x40\x57\x38\x4c\x15\xd5\x7f\x2f\xaa\x76\xb1\x6a\x44\x5e\x8b\x2c\x82\xe7\x53\xf9\x1c\x61\x78\x5e\x57\xb2\x42\x78\xfc\x50\x5d\x51\x9d\x2a\xc1\x95\x4a\x3c\xe1\x85\x4e\xd3\xf4\xb1\x4a\x7e\xa5\xb8\x6a\x49\x25\x4a\x6a\x30\x8b\x34\xb9\x08\x29\xed\x06\xde\x7f\xda\xc0\x1b\x50\xa6\x90\xf0\x59\xd1\xa8\xd0\x7b\x55\x0a\x1e\x55\x39\x78\x94\x25\xe1\x41\x96\xd5\xb1\x23\xd6\x94\xb7\xda\xa1\xf4\x8d\xf8\x40\x79\x1b\xe1\x45\xc9\x16\x5f\xb3\x68\xa1\x74\x3c\x8a\x8b\x52\x27\x14\x55\x7b\x61\x55\x3f\xa0\x1e\x35\x3c\x78\x54\xc3\x03\xba\x9a\xf1\x2c\xd2\x14\xbc\x4e\xa9\x5a\xa1\x93\x3e\x49\x92\xbb\xb7\x06\x27\x8a\x8f\xe8\x2d\xc2\x7b\xf9\x1c\xe1\xa6\xbd\x58\x33\x91\x45\xea\x37\xc2\xc0\xb1\x65\x86\x71\xd3\x4c\x4d\xb4\x30\x21\x10\xea\xfc\x52\xaf\x87\x7c\xd4\xcb\x21\x1f\x55\x82\x7a\xd6\xcd\xcb\x47\xdd\xba\x7c\xd4\x8d\xcb\x47\xdd\xb6\x7c\x94\x5b\x44\x25\x7e\xba\x52\x39\xab\x8d\x7c\xaf\x36\xa6\xae\xc2\xd4\x54\x44\x3b\x5c\x57\x95\x85\xdf\x91\xc4\x36\xd1\x43\x30\xd2\x68\x73\xab\xfd\xfd\x56\xb9\x87\x6d\x3a\x6a\xd3\xea\x66\x04\x37\x54\xf4\xa2\x17\x2b\xbb\x21\x55\x05\x84\x80\x52\x8c\x87\x92\xf5\x7a\x0e\xc2\xc0\x82\xdf\x93\xfd\xaa\xfd\x0b\x2e\xfd\x0f\x94\x8a\xa9\xf2\xa3\xcd\x7c\x66\xd2\x1b\x4a\x84\x85\xf1\x4a\xdd\xad\xca\xcf\x85\x70\xe3\xb9\x26\xce\x3b\xaa\x4b\x28\x69\xac\x16\xf3\xa1\x27\x3b\xce\xf6\x50\x01\x15\x42\xca\x3b\xce\x7b\xd6\x40\xb8\x45\x03\x1f\x25\x62\x61\x1a\x0c\x20\x6b\xb3\x93\xc0\xb0\x9d\x0b\x03\x28\x9f\x17\x05\xdc\xa7\x0f\x16\xc5\x87\x4d\xca\x9a\x24\x4a\x07\xbe\x21\x17\x0f\x4d\x92\xc4\x60\x28\x9e\x44\x3f\x71\x39\x92\x91\xa8\x46\x79\x51\x8c\xbe\xeb\x95\xfb\x6e\x04\x1d\x96\x19\xe4\xbc\x8c\x34\x0e\x1b\x25\xd1\x18\xe2\x9c\xa8\x91\x6d\xb7\xcd\x6c\x32\x37\xf8\x0e\x8d\x23\x94\x8e\x3e\xe4\x5f\xe9\xa8\x69\x6b\x3a\xba\xad\xda\x51\x43\xc5\xc8\x9b\x58\x59\x9f\x58\xd1\x91\xdc\x4f\xa3\xaa\x1e\xe5\xdc\xd6\x0c\x2e\x4d\xd5\x97\x34\x42\xda\xd9\x86\xda\x10\x5a\x81\xc5\x5c\x59\x26\xc8\xda\x4b\x97\xb2\x58\x8d\x6a\x49\x9a\x79\x7a\xca\x49\x69\xdc\x52\xc1\x5e\xd3\xdb\x31\x69\x70\x89\xeb\x59\x39\xc7\xad\xd9\x85\xfa\x4b\xd6\x17\xd0\x82\x4c\x16\x57\xb8\x35\x3a\x77\x7a\x7b\x11\x1e\xc7\xbd\x0d\x31\x4d\xd8\x80\x6a\x35\x23\xf5\x8c\xa6\xac\x98\xe3\x8a\x1c\x5a\x42\x92\x69\x0f\x5e\x3e\x06\xe7\x60\x41\x51\xed\x70\x35\x50\x8d\x41\x07\xa0\x01\xa8\x6c\x9a\x5f\x1a\xc6\x27\x89\x8a\x5c\xe4\x47\x7a\xf9\xcc\x15\xc9\x92\x38\x47\x16\x3d\x14\x3d\x5b\x80\x14\x07\xa8\x95\x05\x38\x0c\x84\x90\x03\x34\xb5\xdc\x54\x83\xcc\x55\xce\x92\xcc\x64\xe7\x27\x2f\xaa\x1f\xd8\x8b\x6a\x3c\x46\xa0\xd0\x9f\x93\x3a\x65\x82\xae\x61\x5f\xf2\x7c\x4d\x9d\x79\x6a\xaf\x37\x47\x11\x8a\xe3\x64\x49\x96\xc6\x4d\xe0\x43\x3d\xcb\x95\x88\x67\x8e\xc0\x0b\xd5\x12\x3a\xd7\x92\xc9\x8b\xf6\x87\xa5\xf5\x5a\x38\x1e\x23\x79\x44\x4a\xb2\x9c\xb5\x73\x14\xc7\x65\x0a\x20\x00\x34\xb3\x09\xe1\xc8\x2a\x62\x68\x17\xd5\xa0\x7f\x6c\xef\x80\x16\x33\x31\x9f\x26\x2d\xfc\xe2\x25\x11\x78\x35\xa4\x12\x4f\xec\x39\x56\x80\x4b\x2d\x52\xf4\x01\x80\xfc\x95\x72\x36\xee\xd4\x02\x39\x13\xee\x4b\x42\xf1\xe1\xb1\xfc\x13\xa9\xa4\x00\xe0\xd6\x43\xe4\xac\x84\x18\xe9\x35\xa5\xfc\x3f\xec\xd3\x5f\xb1\x48\x17\xa0\x0e\xf7\x1f\xf6\x09\xd2\x44\x5d\xfe\x89\xde\x62\x91\xe6\xa5\x50\x0f\xcd\x8a\x2d\xf5\xa3\xa4\x76\xd4\xd3\x45\x2b\x44\xc5\x81\x0a\x2b\x25\x6b\xac\x44\xb5\xfb\xae\xff\xb9\xbd\xf6\x33\xf2\x5b\x61\x02\x46\x05\xf7\xff\x2a\xa6\xdf\x86\x0c\x40\xf3\x59\x3b\xef\xdd\xff\x29\x4e\x82\x9a\xaa\x38\xa1\x61\x77\x5e\x88\x38\x06\x1f\xfe\x29\xaf\x0a\x2a\x01\x50\x1c\x27\x87\x7c\xbb\xe5\x87\x60\x27\x7c\xa8\xc2\x3f\xe5\x8c\x37\x09\x47\xe8\x05\xaa\x67\x42\x1e\x99\x29\x4b\x04\x5e\x25\x4b\x4c\x11\xca\x20\x22\xec\xc3\x7b\x3e\x8e\x2b\x57\x00\x3b\xb6\xf7\x63\x55\x80\x7d\x46\x5e\x28\x57\xc3\xc6\xe2\x22\x69\xf1\x06\xa1\x2c\x29\x06\x07\x2a\x06\x42\x7c\xd8\x41\x6a\x63\x09\xdd\x51\x60\x4b\x21\xfe\x13\x03\xa6\x08\xdd\xd3\x74\x53\x43\x75\x3a\xec\x6c\x02\xbe\x67\xbb\x42\x77\x6d\x1e\xb8\x33\x40\xff\x49\x63\x84\x76\x2a\xd5\x8e\x32\x66\xed\x8c\x54\xd9\x5a\xf4\xe6\x1c\x0d\x4e\x81\xc0\x05\x92\x73\x40\xd3\x8a\x27\x62\xac\xb1\x47\x84\x0d\x1a\x51\xea\xe2\xfd\x89\xa8\x67\x4a\x4c\x58\xcc\x31\xf3\x00\x9b\x00\xf7\x21\xa2\x03\xd8\x92\x09\x2e\x3d\xde\x1c\x81\x63\x11\x39\x23\x9d\x36\x67\xbd\x01\xcf\x07\xda\xd6\x77\xc4\x34\xd5\xcc\x90\xda\x64\x1e\xe8\xc2\x39\xb8\x40\x00\xef\xaa\xdd\xa6\xb1\x20\x93\x17\xe2\x87\xca\xc0\x12\x31\x1e\x23\xb0\x04\x03\xa3\x26\x80\x68\xc2\x40\xb4\x32\x6f\xc4\xbb\x07\xa0\x1a\x9e\x28\xe7\x2c\x0f\x81\xb3\xda\x80\xb3\x38\x66\x21\x94\x8a\x63\x08\x6c\xe1\x5c\x8f\x33\xa8\xcd\xc2\x2c\x8a\x70\xae\x7c\x2e\x30\x84\x76\x60\xbb\xd7\x45\x82\x7d\xe7\x4d\xe6\xc6\xe7\xd3\xb5\x0d\x10\xef\x3c\xb1\xc5\x31\xb5\x1a\x1a\x21\xc7\x92\xad\x73\xc6\x23\xb4\xdd\x3a\xc5\xb8\x21\xde\xdc\xb6\xf1\x00\xcd\x24\x3c\x9a\x49\x9e\x17\xb3\xfd\xa6\x74\x1f\x65\x24\xcf\xcb\x10\x81\x15\xfa\x43\xe9\x9f\x50\x64\x82\x4d\x87\x3b\x9a\x0f\x11\xa1\x33\x3e\x57\xb4\x55\x48\x54\x51\x94\x56\xcb\x65\xe2\x76\xe0\xbf\xfc\x4b\xe4\x99\xf5\x39\x7a\x4d\x35\x34\x4c\x77\x3d\x7e\x7b\xba\xc3\xc6\x24\xa6\x2f\xdb\x89\x92\x8e\x1e\x2a\x8a\x80\x85\x3f\xd8\xcf\x40\x1b\xee\xf5\x69\x61\x28\x87\x04\xbd\x8f\x5e\xe7\x87\x4b\x11\xfa\x2b\xd1\x6a\x11\x8c\xf4\xb2\x1d\x2a\x88\x03\x4e\xe5\xff\xfd\xcf\x3f\x9d\x7c\xf9\xeb\xf9\xbb\x8f\x67\x27\x7f\xfc\xf2\xf2\xec\xdd\xa7\x8f\x07\xdc\x0a\xcf\x92\x9a\xb8\x90\x7f\x6c\x0d\x83\xd0\x95\xe1\x43\x16\xc7\xf5\xb4\x56\x87\x45\x02\x2c\x09\x32\xbb\xef\xea\x3c\x9e\xd5\x39\x6f\x96\xb4\x8e\x50\x36\x8b\x2c\xb3\x14\x61\xcd\x1c\x45\x96\x3b\xd2\xcf\xa5\x62\x84\x22\xc3\x09\xc1\x23\x84\xc1\xd0\xbc\x4f\x34\x37\xee\x58\x93\xc0\xda\x48\x37\xbe\x64\x37\x6f\xab\xea\x6b\x33\xa3\x73\x72\xbf\xa9\xab\x4d\x23\xdb\xf5\x3b\x32\xdf\xed\x50\xd6\x9b\x17\x09\x21\x7d\x3d\x0e\xa6\x6d\x29\x21\x3a\xe4\x63\xeb\x3c\x20\x2d\x78\x5c\x63\x6c\x68\x23\x7c\xa3\x26\xc7\x80\x25\x1c\x7d\x58\xb0\xd3\xb5\xa4\x79\xa0\x97\xbf\x3d\x06\xb7\xc1\xc3\xcd\xa6\x64\x22\x89\x9e\x45\x08\x73\x22\x66\xc6\xa6\xed\xe8\x78\x6e\xcf\xaf\x9f\x48\xa2\xf3\x68\x2c\x09\xa5\x5f\x2b\xc6\xa1\xd8\x6e\x68\xa8\x92\xfc\xd3\xb6\x77\x87\x84\x1a\x12\x3e\xe8\x5e\xad\xb0\x7d\xad\xa9\x4c\xe5\x79\x1f\x0d\x06\x9c\xb6\xde\xf6\x46\xd7\x79\x33\xe2\x95\x18\x2d\xab\x96\x17\xa3\xeb\x15\xe5\x23\x39\x5b\x8c\x5f\x8e\xda\xcd\x28\x1f\xc1\x5c\x8e\x8c\xda\x5c\x3a\x3a\x5b\xb1\x66\xc4\x9a\xd1\xba\x6a\xc4\xa8\x64\x5f\x69\x79\x3b\x2a\x5a\xe0\xd5\xd6\x39\x6f\xf3\xb2\xbc\xd5\xb7\x15\x82\xe5\x42\x56\x93\xf3\x91\x72\x64\x27\x11\x44\x3a\x3a\xa5\x34\x1b\xad\x84\xd8\x64\xcf\x9e\x5d\x32\x91\xb2\xea\xd9\xc9\x9f\x3e\x6f\xf8\x4b\xcf\x33\x67\x5f\x5d\x2f\x1a\x0b\xb4\xdd\x0e\x7e\xa8\xd1\x2e\x11\x18\xd0\x92\xb3\x7c\x66\xe0\x55\xd9\xe9\xcb\xf6\x67\xf2\x50\xfc\xbf\x71\x6a\x80\x10\xf3\x43\x20\x87\x53\x91\x40\xa4\xfe\x87\x33\xc1\x85\xe7\x03\x87\xa5\xe7\x30\xec\x21\x0f\x99\xbf\x21\x5e\x75\x14\x1d\x82\xdf\x13\xc5\x96\x4b\xd4\x6f\x45\xd0\x53\xef\x59\x45\x2e\xb2\xe2\x68\xf0\x05\x46\xcb\x0f\x80\x8a\x1a\xa7\x7d\x1b\xd8\x3d\x0d\xd2\xc5\x86\x3d\x91\xdb\x47\xf3\x27\xf2\x51\xb1\x2f\xf2\xc9\xb0\x34\x92\x3d\xb8\x5e\xb1\xc5\xea\x0f\xc7\x7a\xba\x0f\x25\x0f\xc0\xc1\x0e\xf8\x11\x7b\x8e\x01\xa0\xf4\x9d\xbe\xf7\x1b\x35\xb2\xc8\xc8\x51\x81\xa3\x75\x2e\x37\x82\xa8\xab\xa2\x5d\xd0\xd1\xa2\xae\x9a\xe6\xa8\x61\x82\x8e\xd4\x95\x95\x2c\x73\xd5\x96\x5c\x72\x3d\xac\x64\x82\xd1\xe6\xc5\x68\x53\xd2\xbc\xa1\x23\xca\x41\x78\x21\x56\xb9\x18\x01\xfd\xd6\x8c\x2e\xa8\x2c\x70\x01\x9b\x34\xaf\xe9\x68\x03\x4c\x55\x79\x3b\x52\x17\xff\x45\x3a\x7a\x53\xd5\xda\x7b\x09\x5f\x56\xf5\x1a\xfa\x8d\x47\x8c\x2f\xca\x16\x3a\xb8\xaa\xae\xe5\x26\xd5\xca\x25\x40\xd1\x8c\xae\xf3\x9a\x33\x7e\x89\x47\x0d\xa5\xb0\x27\x9b\xec\xd9\x33\x58\xf9\x5f\x9b\x74\x51\xad\x9f\x79\x60\xbf\x79\x76\x75\x9c\xde\x3c\xfb\x27\x51\x2d\xce\x2f\xd4\xa0\x8f\x60\xd0\x47\x6e\xd0\xe9\xe8\x54\x4d\xc3\x72\xa9\x02\xb4\x8f\xa2\xef\xc6\x74\xfc\x5d\xf4\x9d\x36\x72\xb6\xc6\x51\x83\x8b\xf8\x20\x75\x88\xb9\x24\xab\xf5\x09\xf1\xe3\x0a\x08\x34\x88\x35\xb5\x38\x6f\x46\xe7\x07\xda\x96\xb9\xf6\xee\x21\xe3\x98\x2b\xea\xb6\x46\x8a\xdd\xa4\xce\x00\x8a\xd4\xee\x4d\x53\x96\x83\xe8\x68\xc6\xe6\xca\xc8\x9f\xed\xcd\x2a\xf3\x10\x63\x66\xde\xec\xab\xd2\xbb\x67\x81\x02\x42\x77\xc7\x69\x19\x0e\xb5\xdf\x24\x14\x77\x08\x6e\x8a\x1e\x9e\x43\x64\xfa\xeb\xd5\x9c\x2b\xbe\xcc\xa6\x0c\x4a\x23\x8c\xc3\x05\xa7\x13\xcb\xe3\x38\xe1\x24\x57\x9e\xa0\x40\xa0\x58\x4b\xd6\x45\x1d\xa3\x52\xd2\xd6\x5e\x1b\x8d\x9b\x50\x65\x5b\x48\x5a\x97\xf2\x05\x62\xfb\x95\x2e\xc1\xb3\x0c\x1c\x1a\x77\x29\x87\x29\x67\xc7\x65\x4b\xd0\xae\xd3\x42\x60\xe7\xf7\x50\x2d\xfd\xdc\x89\xb6\xe3\x57\x30\x68\x70\x95\x16\xda\xaf\x19\x16\x68\xe7\xc7\x84\xb3\x36\x01\x7f\x79\x77\xf2\xf3\xf9\xc9\xfb\x93\x0f\x27\x1f\xcf\x40\x61\x78\xd0\x2d\x58\xee\x36\xbf\xfc\x7e\x4a\x6d\x9c\xe8\xc0\x57\x86\xcd\xdf\xf8\x4b\x32\x9b\x63\xe7\x08\xa3\xe7\xaa\xb6\x8e\xe3\xfa\xb1\x63\x71\x58\x6f\xb7\x75\xea\xbb\xa6\x0f\xde\x69\xb1\xdd\x86\x87\xc4\x53\x9c\xf0\x8e\x41\x70\x7f\xae\x96\x37\x70\x0b\x54\xba\x51\xb6\x2a\xaa\x48\x47\xb6\xf5\x45\xe9\x6d\x1d\xf8\xb6\x7c\x70\xd9\xf0\x23\x5d\x56\x35\x4d\x24\xe5\x5b\x37\x20\x5d\x90\x7b\xad\xa1\xe2\x84\x17\x2f\x97\xa0\xc3\x02\x5c\xb2\xfe\xa2\x1d\x03\xfa\x18\xc4\xf3\x4d\x60\xa5\xe4\xfa\xfc\xc5\x71\xa2\x9f\x3c\x97\x31\x7a\xd5\xb7\xdb\xbd\x9f\x4e\xad\xdc\x79\x20\x4b\x75\xf7\xe1\x09\xb9\x9a\x27\x64\xaa\x9e\x90\xe7\x9a\x5e\x7c\x65\xa2\x93\x71\xcf\xf5\xeb\x3e\x2b\xf2\x6f\xf6\x18\x1a\x08\xa7\x09\x4d\x7d\xd3\x0e\xc9\xfc\x62\xeb\x5e\xe3\x5e\x59\x6c\x64\x34\xb5\xa6\x1b\x3a\x03\x76\xd6\x1d\x6c\x37\x4c\x08\xfb\x02\x70\x0f\x33\xd8\x82\x47\x2a\x45\xc3\x35\xb3\x75\x6a\xc9\xdb\xa5\x0d\x84\x4c\x90\x7b\xd9\x3a\xe6\x47\x71\x9c\x24\x8c\x88\xa4\xc2\xaa\x6e\xe4\x3a\xbe\xdd\x32\xdd\x43\x34\x65\x99\xce\xb2\x8f\x7c\xea\xb9\x32\xd8\xeb\xfb\xf7\xdb\xd5\x99\xd4\x93\xd2\xeb\x7a\xaa\xc6\xb6\xe8\x7a\x84\x36\xd7\xaa\x22\x05\xc6\x9e\x16\x58\xa4\x4a\x1a\xa4\x85\x11\xf8\x9e\x35\x12\x4c\x66\x87\x13\xac\x95\xc8\x94\x32\xcd\xa2\xac\x38\x85\xab\xfd\x06\xc9\x59\x54\x4f\xbd\x1b\x37\xab\x7e\xf9\xb8\x92\x84\x52\x49\x8b\x36\x35\x55\x2a\x17\xd1\x80\xf2\x44\xa0\xcd\x96\xda\xac\x18\xe0\x69\x07\xb5\x1a\x4f\xf7\x87\x81\x3a\x8b\x47\xe1\xeb\x9b\xa5\x57\x39\x97\x24\xbd\x23\xc3\xe9\x28\x1f\xd9\xf5\x1e\x5d\x33\xb1\xaa\x5a\x31\xca\x47\x16\x72\x8d\x3e\xf7\x29\xaf\xdb\xaa\x05\x52\x0b\x80\x94\xa4\xa0\x94\xaa\xca\x38\x82\x0a\x46\xb9\xa6\xc1\x46\xd6\xcb\xfc\x33\x83\x6d\xd3\x08\xed\x3c\x85\x0f\xa3\xdd\x21\x69\xcb\x35\x08\x65\x45\xce\xca\x50\x3d\xd2\x02\x53\xe5\x97\x4c\x2b\x71\x58\x4f\x26\x8a\x38\xb5\xbe\xd3\xf5\xa4\xf5\x7c\xaa\x63\x0a\x22\x7f\x15\x9b\x83\xee\xb0\x56\xe8\x7e\x8a\x81\x10\xef\x9b\xcc\xd4\xe4\xf8\x45\xfd\x83\x00\x3f\x2d\x7c\x56\x87\x26\x33\xf5\xfc\xe0\xd1\x6d\xa0\x8d\x6a\x40\x9d\x40\xc5\x3b\x54\xea\xbb\x03\x9a\xe3\x0c\x59\x23\x64\xaf\x2a\x0e\xaa\x29\x43\x33\xb5\x27\x16\xda\x8c\xce\x75\x90\x32\x7d\x27\x0c\x7c\xd0\x01\xf3\xe3\x18\x25\xfa\x00\xe8\xf0\x7d\xea\xc2\xc1\x93\x8e\x3c\x74\xf0\xf5\xe1\x1c\x92\x2d\xf4\xa3\x9e\x0e\x17\x7e\xa6\x1b\x7a\x2c\xdb\xa6\xa6\xe7\xb5\x3e\x36\x0f\xe7\x5c\xe5\x8d\xd1\xd1\x7d\x2c\x2b\xe3\xe7\x45\xb5\x7e\xbc\x87\x36\x56\xcd\x3e\xcd\x90\x9e\xdc\x46\x15\x75\x2c\x9b\x07\x4d\x7a\xb4\x3e\x27\xf7\xe7\xc6\x9f\xe4\xfd\xce\xb9\x9e\xae\x47\x4c\xa2\x7f\x0b\x04\xba\x77\xf7\xa9\x29\x25\xc9\x00\xd7\xc9\x07\xb3\xad\xf2\xc6\x10\xdc\x0f\x65\x63\xfc\xf5\xa7\x0f\xbd\x1c\xae\x30\xc2\x14\xd1\xee\x15\x6f\x8d\xe0\xa2\x5f\x58\xed\x00\x3e\xab\xe7\x98\xce\xea\xb9\xe7\xb4\x08\xdb\xb9\x71\x83\xb6\x92\x08\x6c\xc7\x9a\x59\xcb\x7e\x0c\x7d\xc9\xac\xd5\x3c\x76\xbd\xc8\xac\x89\x3e\x76\xc3\xcf\x02\x53\xf8\x47\xb6\xae\xdb\x7d\x03\x5b\x78\x48\x1e\xb6\x57\x40\x77\x3f\x68\xee\x84\xee\x1d\x34\x16\x4e\xde\xf2\xd7\xaa\x1d\x2d\x72\xfe\x9d\x18\xc9\xca\xbc\x92\xa3\xaa\x15\x0d\x2b\xe8\x08\x0e\x30\xd5\x10\x59\x42\x5b\x1d\x2a\x24\xda\xa7\x9d\xe6\xbb\x11\x1e\x52\x29\x1d\xbc\x42\xd8\x3d\x6d\x8a\x5c\xa8\xa6\x47\x0e\x7a\x30\x71\x4f\x3c\xf7\xdf\x66\x8b\xa5\xf7\xa2\x8b\x46\xf0\x22\xd8\x71\x0c\x3f\xbe\x0e\x7c\x68\x1d\x24\x03\x13\x2e\x04\xd7\xd2\x2e\x2d\x6b\x28\x6c\x50\x2c\x34\x3c\xc1\x4f\x69\xc0\x94\x7b\xb0\xf6\x6f\x05\xbf\x21\xc0\xfb\xc7\x80\xe2\x5e\x64\x6a\x9d\xe0\xb0\xf6\x7e\x4d\xb9\x41\x3b\xaf\x2e\x28\x19\x5e\xbe\x0a\xdf\xf7\xa7\x16\x02\x8b\x5a\xd2\xc4\x2a\x40\x53\x34\xb0\xa5\xbb\x79\xe1\x9e\x88\x3e\xa0\xd1\xe9\x0c\xa6\x0f\xa9\x0b\xba\x36\xc1\x2c\x5d\x96\xf9\xe5\x25\x2d\xde\xd9\x11\xa3\x24\x02\x3b\x0c\x75\xe1\x98\x46\x63\x81\x95\xb2\x5e\xc6\xb1\x9c\xc6\x8c\xee\xf0\x90\x85\x64\x0d\x52\x6e\x94\x50\x70\xa6\x07\x14\x88\x72\x34\xdb\x59\xea\xea\x09\x4b\x6d\x10\xd6\x93\x56\xb9\x63\x71\xf0\xa4\x53\xe9\xef\xa5\xdf\xb8\xb8\x6c\xff\xe2\x2a\xe5\xb8\xbd\xab\xa5\xae\x6b\x95\x4f\xb8\x1b\x26\xf6\x65\x6c\xb9\x9f\xf5\x9b\xe7\xd0\xa7\x24\x1e\x72\x2c\xf7\x04\x68\xb5\x17\x1b\x84\x33\x22\x86\x62\xa7\x0c\xf9\xb6\xd3\xb6\x73\x7b\x2e\x8e\x78\x55\xd0\x23\x15\xd7\xab\x67\x70\x32\x10\x94\xbe\x7b\x56\x9f\x62\x95\xb2\xc8\x79\x5e\xdf\x0e\x04\xb1\x37\x57\x45\x17\xf9\xe2\xeb\x45\x5b\xfb\x42\xf1\x45\xc5\x9b\xca\x8f\xee\x24\xfb\x52\x57\x65\x10\x8d\xde\xa5\x69\x8d\x5d\xf3\x7a\xbe\x56\x6e\x57\x4c\x46\x1b\x8e\xc4\xbc\xd3\xfa\x8a\x2d\xbc\xda\x15\x47\x00\x3a\xbf\xad\x00\x33\xc3\x61\x3e\xf3\xb2\x64\xeb\xb5\xeb\xe6\xb3\x2b\x5a\x37\xfe\x34\x5c\x29\x57\x53\xa6\x74\xd5\x0a\xd5\xae\x9e\x79\x13\x21\xf8\xc8\x79\xb4\xeb\x9c\xa3\x3d\xd1\xfb\xe1\xf3\x11\xc0\x1b\xbf\xc2\x8e\x0e\xb5\x7f\x69\x3d\x94\xf8\xec\xb2\xac\x2e\xf2\xb2\x39\xaa\x69\x53\x95\x57\x7b\x8a\x3e\xb3\xa1\x63\x5c\xef\xf8\x25\x18\xc8\x85\xef\x03\x19\xd7\xf9\x26\x78\x79\x26\xd9\xb8\xa3\x1e\x0a\x90\x5f\xe4\x8a\x55\xb5\x3c\x7c\xc5\x51\x43\xc5\x23\x9a\xe0\x4f\xf5\xe2\x30\xec\x44\xcf\x85\xfc\xc7\x27\xf8\x06\x9f\xe2\x4f\xf8\x25\xfe\x8a\x3f\xe0\x33\xfc\x0a\x7f\xc1\x9f\xf1\x47\xfc\x2b\x7e\x87\x5f\xe3\xf7\x03\xa0\xe8\x0d\xbe\x23\xbd\x38\x2b\xbc\x77\xb7\x0d\xf7\x4f\x71\xbc\xe7\xc3\x76\x7b\xbf\x3b\xb8\xeb\x46\x7e\xbb\x1b\x8c\xc9\xa7\xb9\x2f\x28\x17\xed\xf6\x28\x7a\xdd\xe1\xe8\xe4\xe3\x5f\x22\x7c\x7f\x49\x25\xad\x7b\x49\xc5\xc9\xc7\xbf\x84\xf6\x38\x7b\x7d\xc4\xdc\x19\xcf\x36\x7e\x71\xe5\xc6\x0a\x62\x6e\x81\xfc\x4f\xbf\x77\x6b\x7c\x9f\x9e\x7c\xf8\xf1\xe4\xcb\xf9\xc9\x7f\x9c\x9d\x7c\x7c\x7d\xfe\xf9\xcb\xa7\xb3\x4f\x67\x7f\xfd\x7c\x72\x1a\xc7\xfb\x3b\xda\xcd\xdb\xf1\x46\xb3\xcf\x72\x88\x83\x9e\x41\xaf\xb4\x84\xce\x77\x56\x22\x4f\xbe\xda\x47\x7c\x07\xee\x77\x75\x6a\xe3\x52\x5f\xba\xdd\x4d\x3e\x58\xf2\xfe\x2e\xd5\xaa\x5b\x5f\xf4\x71\x20\x77\xa9\x7d\x3c\xf3\xb2\x79\xc5\x6d\xbc\xdb\x57\xde\xf7\x13\x38\x0e\xe4\x4b\x2f\xc9\xe6\xfe\xec\x7d\xfa\xa4\x36\xfd\x29\x15\xe4\x9d\x97\x7c\x7e\xee\x3e\x9c\x9f\x93\x77\x9d\x04\x7c\x97\x7e\xc8\x37\xe4\xa3\x57\xe2\x43\xbe\xf9\x99\x89\x95\x1e\x04\xf9\xd5\xfb\xa4\xd0\x23\x79\xad\x1f\xf0\x9d\x8a\x68\x4d\x5e\xab\x5f\x98\x3e\xcf\x35\x35\x0b\x5e\xf1\x9d\xf3\x62\xcd\xec\xa3\x2c\xa3\xbd\x49\x33\xf3\x84\xef\xac\x37\x63\x66\x9e\x64\x5b\xd6\x3f\x2f\x73\xcf\xf8\xce\xf3\x01\xcc\xdc\xb3\x3c\x04\xd6\x1b\x30\x73\xcf\xf8\x4e\x39\x6d\x66\xf0\x83\xef\xb4\x8b\x6d\xf8\xc1\x77\xce\x2d\x38\xb3\x8f\x72\x12\x95\xd3\x57\xa6\x9c\xbf\xe2\xbb\xd4\x4a\x6e\x48\xe5\x9e\x0f\xe4\x3a\x2b\x31\x12\xa9\xec\xa3\x9a\x36\x5a\x0b\xb2\xd0\x0f\xb2\x0b\x79\xcd\xc9\x02\x7e\xf0\x5d\x0a\x08\x8b\x2c\xd4\x2f\xbc\x6b\xb8\x04\x69\xfa\xd9\x4f\x7f\xd3\xf2\x85\xff\x4d\xbe\xe3\xbb\xb4\x6e\xf9\x3b\xfe\x5a\x57\xe6\x5e\xe4\xbe\x91\x80\x9e\x9c\x06\x7b\x54\x66\xbb\x37\xd4\x89\x77\x63\x6a\xb4\x9a\x17\xe9\xfe\x8f\xd8\x7c\xfa\x39\xaf\x07\x0a\x78\xa9\x3b\xb5\x98\x1a\xbb\x83\xd2\x9a\x79\x91\xe7\xaa\xbd\x68\x16\x35\xbb\xa0\x24\x77\xcf\xf8\x2e\x7d\x17\xd2\x03\xe4\xde\x95\xca\x82\x2a\x6c\xa1\xcc\xaf\xa0\xe5\x7e\xba\xf7\x86\x6b\x2a\x21\x51\x9e\xc2\xef\x4e\xcd\x19\xf9\x94\x9e\x6b\x14\xf6\xa5\xe5\x2a\x2d\x75\xc4\x03\xf9\xe4\xbd\x98\xaf\xf4\x92\xc9\x72\xf0\x6b\xd2\x18\x2f\x64\x12\xe3\x85\x4e\x51\xf6\x2c\xe4\x93\x7e\xd0\xa9\x05\xbd\xa8\x5a\x79\x7a\x3f\xd9\x47\xfd\x85\x42\x05\xd4\x96\x5f\xe5\xcd\xe9\x62\x45\x25\x11\x55\x9c\xb1\x35\x98\x44\x0c\x24\xea\xdc\x92\x72\x27\x9f\xe0\x47\xa7\x94\xb9\x80\xee\xc3\xaf\x4e\xe3\xf4\x46\x90\x4f\xf0\xa3\x53\x2a\xd5\x97\xca\xf5\xa3\xd1\xf5\x93\x4f\xf6\xb1\xf3\xe5\x93\x2a\xe3\xbf\xea\x1c\x92\xb5\x14\x02\xca\x9a\xc7\x60\x36\xec\x38\xfc\xd7\x7d\x08\x45\x96\xc3\x91\x96\x39\x7f\x69\xf9\x7b\x20\x5e\x00\xb9\x7c\x82\x7b\xc4\xe0\x4b\x17\xa9\x1c\xa8\x58\x12\xad\x5d\x5d\x13\xc0\xfb\xe0\x2e\x35\x24\x19\x79\x8b\xdf\xa6\x79\xc9\xf2\x86\xb4\xea\x17\x4e\x77\x27\xd0\x77\xdb\x4b\x02\xb0\xb3\x58\x51\x09\xb7\x5a\xe8\x8a\x7c\x2b\xc0\xd0\x5e\x41\x30\x49\xad\x12\x15\xba\x5b\xa1\x15\x95\x4f\x3d\xfb\x00\xb6\xed\x24\x48\x78\x73\x49\xc5\xe7\x5c\xac\xa0\xef\xea\x51\x21\x21\xd2\xca\xff\x0a\xb6\x9d\xc2\xab\x7a\xc0\x77\xe9\x9b\x93\x97\x67\x3f\x7d\x39\x39\x25\xc9\x04\xbf\x76\x46\x2f\xac\x39\xe1\xca\x25\x45\x99\xda\xe7\x1d\x2e\x6d\x7e\x34\x04\xdf\x2a\x4e\xda\xb4\x92\xfb\x28\x2f\x0a\xa3\x20\x29\x67\xc8\xbd\xc9\x55\x05\x9e\xd5\xfb\x1c\x26\x40\x97\xb9\x52\x1b\x26\xad\x7b\xc6\x77\x72\x13\x3b\xef\xf5\x6d\xf0\x8a\x81\x9c\xa9\x38\x25\xad\x7e\x80\x94\x93\xf5\x06\x16\x42\x3f\x41\xda\x8f\x65\xce\xbf\x42\x1a\x3c\x41\xda\x67\x79\xb2\xa1\x3d\xfb\x8c\xdf\xa7\x9f\xbf\x7c\xfa\x7c\xf2\xe5\xec\xaf\xe7\x3f\xbf\x7b\xff\xfe\xfc\xd5\xdb\x97\x1f\xff\x78\x12\xc7\xc9\x5d\xba\xd1\xeb\xf9\x33\x2b\x4b\x65\xda\x49\xda\x81\x44\xe4\xd7\xf1\xfa\xdd\xeb\xa1\x2a\xac\x71\xa8\x57\x83\xe7\x6b\xe3\x2e\xe5\x95\x60\xcb\x5b\xb3\x83\x6c\xde\xa1\x64\xb9\x04\x57\xb4\xae\x59\x41\x5f\xad\x72\xc6\xe5\x24\x85\x09\xf8\x4e\x01\x9f\xb0\x9c\xcc\x37\x94\x8c\xef\x24\x58\xe9\xe7\xed\x27\xca\x8d\x0d\x4f\xce\x56\x9e\xb4\xbd\x24\x7c\x97\x6e\xca\x5c\x2c\xab\x7a\x4d\xee\xc3\x53\x9b\x1d\x4e\xf0\x2a\x6f\xcc\xeb\xcb\xc5\x82\x36\x4d\x55\x37\xd9\xe1\x64\x07\x38\xcc\xcf\x4c\xda\x4e\xc2\x81\xc4\x8d\x62\xb1\xfa\x13\x95\xdf\xcc\xa3\x44\xd3\xdc\x4b\x77\x2f\x76\x17\xc2\xac\xfc\xac\x14\x61\xed\x4e\xf4\x13\x61\x9b\xcb\xf7\x8f\x55\x21\xa7\xdd\x3e\xe3\xbb\x74\xc9\x38\x6b\x56\x76\xa6\xfd\x57\xac\x3b\xa4\x8f\xa3\x7d\x76\x5d\xd2\x5f\xbc\x37\x53\xc6\xe4\x87\x8d\x09\xdd\x50\xb1\xce\xdd\x8b\xab\xc5\xd5\x00\x93\xa4\xc2\x47\x37\x3a\xca\xdc\x07\x05\x44\x4a\x76\x51\xe7\xb5\x5a\x11\xfb\xac\x00\x4a\xb0\x5a\xc1\xbb\x02\x1c\xc1\xf7\xa6\xf3\x9d\xde\x6c\x72\x5e\x04\x59\xba\x49\x0a\x12\x98\x10\x14\x0a\x12\x98\x37\xbb\x06\xde\xe7\x30\x41\x96\x96\xb0\x55\x47\x68\x6f\xfd\x37\xb9\xd5\x5d\xb9\xca\x95\x00\x66\x9b\xb4\xea\x57\xd2\xa5\xfa\x1d\x7e\xf7\xb3\x20\x15\xd7\x4c\x2f\xa0\x89\x97\x40\xc5\xab\x24\x60\x42\x5e\x02\x01\xaf\x13\x9e\xcc\xd7\x08\xda\x28\x96\x1b\x2a\x5d\xa4\xac\x39\x53\x29\x50\xe7\x42\xd6\x69\x12\xba\x75\xde\xa5\xe7\x3f\x3a\x5a\xc2\xba\x4c\xc5\xef\xd3\xf7\x9f\xfe\xf8\xc7\x93\x2f\x00\x43\xde\x57\x97\x97\xb4\x26\x2b\x2b\x7c\x91\xec\x01\xb9\x4c\x5f\xe2\xbb\x54\x73\x72\xf7\x65\xb5\xc8\xd6\x69\x59\x2d\xf0\x75\xb6\x4e\xaf\x71\x91\x37\x2b\x5a\xb3\x3b\x9a\xad\x53\xfb\x8c\x0b\xba\xc8\xd7\xb4\xd4\xc9\xf6\x05\x7b\xa9\x2e\xad\x94\x68\x62\x79\x2b\xd3\xf4\x23\x6e\x79\x41\xeb\x66\x51\xd5\x32\xa7\x7b\xc1\xce\x29\x13\xd4\x60\x5e\xe4\x91\xd6\xf1\x8c\x2f\xf5\x83\x1c\xb1\x21\x7e\x21\xa0\x82\x5a\xb8\xcb\xb4\x9f\x08\x67\xd2\x90\xcf\x41\xde\x81\x54\x8d\xb5\xf3\x9a\x92\x4b\xf3\x24\xa1\x55\xb5\xb9\x85\x84\x8d\x42\x0a\x27\x7f\x6b\xf3\x92\x5c\x9a\x27\x20\x3f\x7f\x0d\x34\x89\xd0\xfd\xce\xa6\xa6\x5a\x66\x43\x6e\x75\x82\xfb\xe2\xe4\x3e\x64\xe3\x3e\x2a\x06\xe4\x32\x35\xcc\xc7\x2b\xe8\x88\x5c\x6e\xe8\xb5\x79\x01\x5e\xcd\x6c\x04\x72\xe9\xbd\x98\x3a\x54\xac\x89\x4b\xef\xc5\x4e\xa5\xf9\xe4\xbd\xc9\x52\xbe\x2a\x80\x2c\x18\xa8\x06\xc8\x9e\xd4\xd4\x2e\x85\x7b\x91\x4c\x4d\x2e\xd8\x15\x35\x3d\xf7\xde\xa0\xd4\xe6\xd6\xf6\x5e\x3d\xca\xb3\xd6\x0a\xf9\x14\x0c\xa1\x97\xe6\xf2\x99\xaa\xfd\x57\x7c\x37\xe4\xfe\x8b\x5c\x0e\x3a\x05\xbb\x33\x2a\x0f\x72\xaa\xb4\xf2\xc3\x5d\xfa\xb9\xae\xd6\xac\xa1\xc1\xc6\xe8\xa5\xc1\xac\x99\xb0\xed\x30\x69\xe6\x45\x92\x49\x2a\x26\xf3\xa5\x7e\x80\x0d\x62\x3a\x6b\x02\x97\x0d\x6d\xe0\x8a\xbf\xaf\xf2\x82\x7c\xd0\x0f\x8a\x82\x95\x4f\xa0\xc5\x4f\x3e\x04\xaf\x9a\x1f\xb4\x7b\xc5\x31\x59\x2e\x59\x75\xbf\xf0\xbe\x9d\xda\x8d\xe7\x31\xeb\xc1\x50\xcf\x83\xbd\xff\xe5\xf4\x2f\x9f\xe5\x21\x3a\xfd\xcb\x67\x58\x52\x23\xef\xb9\x74\xcf\xf8\x6d\x4a\x81\x4c\xba\x52\xbf\xf8\xad\x24\x2e\x4e\x74\x92\x79\x84\x54\x4e\x21\x85\x53\x95\x47\x7d\xc6\x6f\xd3\x8b\xaa\x2a\xc9\x15\xfc\xe0\xb7\x4a\x71\x8a\x5c\xa9\x5f\x59\x3b\x9c\xad\x2b\xf5\x8b\xdf\xa6\x97\xb2\xe0\xa5\x80\x27\x0a\x8f\xb2\xbe\x52\xa6\x96\x02\x9e\x28\x3c\xca\xd4\x8a\xd3\x9f\x73\xd9\x0f\xf5\x80\xdf\xa6\x35\xcd\x8b\xa6\x9b\xf0\x89\x97\x32\x93\x79\xc4\x6f\x2d\x97\xcb\xf8\xe5\x4b\x20\xd4\xaf\x7a\x49\x92\x86\xe7\x05\xb9\x92\xff\x65\x53\xb5\xac\xb5\xc6\x6f\xd3\xa6\x5d\x93\x2b\xf9\x5f\x0e\x86\x71\x39\x14\xc6\x61\x60\x37\x30\xac\x1b\x78\xde\xc0\xf3\x46\xe6\x97\x5b\xf4\x0a\x7e\xe4\x1b\x15\xaf\xd9\x72\x49\xae\xcc\x93\xca\xfd\xe3\xad\xca\xff\xa3\xec\xdd\x92\x95\x92\xc9\xba\xd2\x0f\x36\x05\x32\x99\x47\xfc\x36\x6d\x39\xfb\x1b\xb9\x82\x1f\xfd\x06\x39\xd4\xc3\x01\xa4\x54\x5c\x25\x54\xb2\x87\x70\x7d\xd3\xc8\x6d\x79\xe5\x9e\xf1\x5b\xa3\xa1\x49\xae\xcc\xd3\x7e\xa4\x75\x7a\xf6\xe5\xdd\xc7\x3f\x9e\x46\xb8\xe7\x5f\x47\x22\xb1\x35\xb0\x16\x0a\xb9\x34\x80\xc6\xd6\xe9\x79\x63\x53\x1e\xc2\x86\x3f\x7e\xfa\x74\x76\xf2\x7a\xa0\xde\xbe\xf4\xad\xf5\x65\x93\xa7\x34\xaf\x17\x2b\x63\xdc\x02\x6d\xb6\x26\x30\xd2\x40\x06\x40\x9e\xd6\x4b\x36\xb9\x70\xcf\xf8\x22\x7d\x4b\xcb\x0d\xad\xd3\x15\xfc\x90\x0b\xfd\x80\xef\xf4\x07\x62\x72\xc8\x2a\x56\x74\xf1\xf5\xa2\xba\x91\x35\xe8\x47\x09\x9c\xe8\x8d\x78\xc3\x68\x59\x90\x0b\xf7\xac\xd3\x5f\xd6\x34\xd7\xc9\xf2\x11\xdf\xa5\xef\x19\xff\xea\x77\x25\x78\x97\x27\xb7\xa1\xc2\xbe\x6b\xef\xdb\xe4\x22\x1d\x48\x95\x99\x17\x9d\xb4\x57\xf9\xc6\xaa\x92\x93\x0b\x89\x5e\xed\xab\x1c\x11\x80\xf8\x8b\xbc\x6e\xc8\xbd\xb5\x13\xb8\x48\xcd\x23\xfe\x49\xb0\xb2\xc9\xee\x95\x3a\xf9\xc9\x0d\x78\xc3\x60\x15\xcf\x2e\xd2\x6e\xd2\x4e\x22\xbe\xb7\x67\x1f\xde\xff\xb8\xaf\xb2\x1d\xde\x23\x1d\xd5\x64\x48\x1c\x27\x3a\xb2\xa2\x17\xf2\x58\xac\xcb\xd3\x7c\x49\xfb\xc2\xe6\x64\x82\x2f\xec\x67\xe3\x6e\x15\x59\x9a\xc6\x95\x74\xb9\xdc\x47\xd6\xc8\x9e\xea\xcf\xee\x65\xff\xb6\x3c\x3b\xf9\xf0\xf9\xfd\xcb\x33\x90\x03\xcb\xbd\x77\x21\x69\xbf\x33\x3d\x30\xb5\xc5\x2f\x14\xa5\x66\x92\x1e\xdc\xbf\xd0\xd1\xbf\x9c\x7c\x39\x7d\xf7\xe9\x23\x39\xb7\x50\xfa\xba\x63\xa3\xb5\xdd\x26\x77\xe9\xef\x88\x49\x86\x42\x8c\x5e\xc3\xa2\x90\xfb\xc0\xfc\x21\xbb\x0e\xcd\x21\x70\xa8\xa9\x9e\x5d\x77\x54\xd7\x71\xa0\x78\xed\x3e\xab\x77\xdc\xd7\xb9\x76\x59\xbc\x44\xbc\x57\xb9\xba\x53\x63\xf0\x0d\xfb\x2a\xff\x2a\xa3\x7d\xc5\x81\x82\xbb\xfa\xe8\xde\x31\x6b\x4e\x69\xcd\x24\x79\x08\xc2\xbb\x37\x46\x03\x38\x93\xcb\x38\xfc\x69\xa7\x0f\x9e\xa1\x12\xae\xfd\x37\x1f\x0a\xa8\xeb\x03\x72\xdd\x4d\x31\x14\x84\xb3\x86\x24\xd7\xdd\x14\x79\x8c\x2b\x2d\xae\x3f\xb1\x8f\x92\xb2\x6a\x45\xe5\x7d\xf1\x5f\xe1\xf8\x35\x2b\xef\xab\xff\x2a\xbf\xb2\x46\x54\xf5\xad\x9f\x21\x4c\x39\xb8\x4b\x3f\x56\x9c\x7a\x19\xfc\x57\x20\x60\x0d\x91\xf0\xa6\xaa\xc9\x49\xf8\xee\x89\xd4\x1d\x31\xa1\xd5\xdf\xc8\xc9\xfe\x6f\x83\xe5\x06\x0b\xe0\xbb\xf4\x4b\xd5\x0a\x5a\xbf\x3e\x7d\x4f\x4e\xdc\xb3\x4d\xb7\x89\x26\xc5\x24\xe0\x64\x82\x43\x4a\x08\x25\xea\x7a\xc9\xbf\xda\x88\xf0\x07\x9f\xab\x79\x9d\x8b\xfc\x65\x91\x6f\x64\xc5\x37\xfe\x9b\x2f\x55\x07\xe1\xb4\xcb\x35\x98\xae\x0c\x28\x56\xb9\x6c\x54\x5d\x5b\x1a\x18\x06\x4a\xd2\xac\xa4\x75\x64\x94\xbc\xac\xd9\xee\xfe\x9c\x43\xd5\x29\x9e\x4f\x56\xf2\x86\xec\xa9\x47\x67\x81\xed\xdb\x08\xf2\x06\x7e\xf4\x5b\x6a\x46\xf0\x26\x75\x63\x84\x0f\x7f\xfe\x89\x33\xe1\xbe\xfa\xaf\x8a\x5d\x6f\x37\x6f\xaa\x5a\x73\x94\xe4\x4d\x37\x05\xed\x9f\xf9\xc8\xd7\x30\xb8\xc3\x75\xfa\xee\xf4\xfc\xe3\xa7\xd7\x27\xd3\x3a\x55\xb7\xf1\xa9\xbe\xc1\x27\x77\x99\xbb\x53\xd4\x69\xea\x4e\x91\x0c\xa5\x93\x3b\x5f\x1d\xc0\xde\x4f\x3f\x49\x07\xdd\x75\x28\xfa\x7d\xfa\x7d\xfa\xaf\x91\xaa\x2a\x50\x11\xd8\x57\x91\xf6\x35\xd7\xbd\x27\x55\xc5\x06\x03\x14\xeb\x61\x6a\xf5\x84\x03\x31\x4d\xec\x0b\x09\xbf\x61\xaa\xe7\x44\xa7\x63\x6a\x66\x8b\x08\x70\x6c\x60\x8a\x81\x12\xb0\xcd\xac\xdf\x5c\x56\x35\x9c\x5a\x1e\x89\xa3\x9a\x2e\xaa\x4b\xce\xee\x9e\xec\x20\x6d\x20\x40\xac\x53\xda\x77\xa6\xf3\x42\xb9\x3f\x72\x16\x98\xe7\xe7\x46\x61\x53\xc7\x8d\x95\x49\x58\xc5\x4f\xae\x7b\xe1\x2f\xb5\xc3\x47\xb1\x32\x41\x8b\xd7\x1a\x48\xea\xb8\xc5\xb2\x8e\xcb\x5c\x50\xc2\x77\x07\x75\x10\x47\x79\xd0\xa6\x28\x28\x03\x21\x27\xe3\x98\xa7\xd7\xac\x2c\x5f\x16\x05\xc0\x06\x70\xbb\x1f\x26\x25\x7e\xc3\xd6\x7b\x08\x42\x41\x87\xc0\x1c\xc9\xf6\x16\x53\xa4\xad\x41\x21\x6a\xa5\x56\x78\xee\x6b\x8d\xff\xb5\x6a\x47\xeb\xb6\x11\xa3\x55\x7e\x45\x47\x39\x1f\x19\x45\x66\xe3\x17\xc8\xce\xe8\x26\x6f\x1a\x5a\x8c\x44\x35\xfa\x2f\x51\xfd\x57\x84\x0e\xba\x8d\x03\x1e\xf3\x7b\x80\x3b\x53\x84\x76\xc6\x6e\xa8\xe7\xfa\x16\xb6\x40\x43\xb8\x71\x67\x05\x2e\xec\x6b\xca\x5d\x8a\x1a\x35\xa1\x9e\xaf\xf0\xaa\x13\x0b\xc3\xd6\xca\x70\xae\xe6\xbb\x21\x74\xcc\xc0\x5a\x38\xb7\x21\x53\xe9\xf5\xa8\x4e\x1a\x28\x78\x90\x27\x95\x7e\x44\xbb\x5d\xe0\x83\xdc\x05\xd5\xc7\x8c\x4c\xf6\x45\x5b\x67\x63\x42\x67\xf5\x1c\xc6\xab\xd3\x8d\xc7\x73\x99\x94\x09\x22\xe0\x6e\x4d\xd4\x09\x43\x5a\x3b\xad\xce\xf8\xee\x80\x2a\x13\xa3\x0a\x05\x76\x4e\x9e\x46\xbc\x33\xb5\x96\xfc\x52\x52\x22\xcf\x88\x9a\x79\xdb\x2c\x2f\x8a\xce\x3e\xf3\xe6\x73\x46\xc1\xac\xae\x93\x1f\xd6\x89\x0c\x7b\x5e\xca\xc1\x26\x8b\x25\x42\x2f\xaf\x59\x07\x59\x53\x7e\xa0\xa6\x54\x4e\x7b\x0e\x16\x2f\x71\x5c\x1b\x80\x07\x5e\xd0\x68\xd1\x4f\x49\x04\x6e\x10\xe6\x49\xa3\x8d\xc6\x5a\xf2\xec\x9f\xb7\xbf\x3c\x7b\xe6\x05\x33\x2f\x83\x91\xab\x69\xfc\xe1\xf7\xdb\x2d\xf8\xea\xf0\x9c\x1c\xfd\x73\x84\xa6\x34\x2b\xe8\xa2\x2a\xe8\x4f\x5f\xde\x59\x3a\x26\xa1\x28\xad\x29\x78\x14\x4f\x5a\x4c\x79\xf7\x3b\xd2\x36\x52\xcf\xfe\x39\x99\x66\xcf\x93\x69\xf6\xfd\xf6\x7f\x6e\x7f\xdc\xbe\x42\xdb\xdf\x27\xd3\xec\xc7\xed\xeb\xed\x4b\xb4\xfd\x7e\x82\xfc\x3e\x2d\xfd\x3e\xf5\x6a\xf4\x5b\x5c\xe0\x7e\x8f\x54\x8b\x2b\xf2\x2c\xf9\xe5\xd9\xf6\x97\x74\xfb\xcb\xbf\x6c\x7f\x19\x6f\x7f\x99\x6e\x7f\xd9\x6e\x7f\x49\xb6\xbf\xa0\xed\x2f\xb3\xed\x2f\xf3\xed\x2f\xf7\xdb\x5f\x76\xdb\x5f\x7e\x41\xcf\x2e\xf1\xa6\x13\x15\xbe\xe8\xc7\x66\x0f\x35\xb1\x5d\x67\xd7\xd6\xf4\xdb\x80\x7b\x6b\xf7\x45\xb7\x5b\x6d\x08\x4a\x1f\x38\xfc\xf2\x6c\xcb\xc3\xaf\xe3\xc3\xe7\x0d\x1c\xfd\x86\x2e\x2a\xb0\xbc\xd5\x10\x41\x1e\x7d\x43\x05\xfd\x57\x1a\x81\xb3\xa8\xc3\xc2\x59\x05\x3e\xd4\x40\x5d\x5d\xb1\x82\x8e\x36\x79\x9d\xaf\x47\xff\x15\x8d\xc5\x38\xfa\xaf\x7e\x85\x0a\x46\xd2\x99\x98\x63\x3f\x5e\xb5\x51\xf1\x99\xf2\x2c\x8a\xc6\x60\xfe\x3f\x01\xd3\xd6\x47\xa1\x9a\x69\x37\x0f\x5b\x4e\x3d\xeb\x29\x58\xaa\x5b\x32\x9b\x1f\xdc\xce\x26\xf3\xe1\x48\xcd\x98\x11\x01\x26\x59\x60\x98\x7c\xa0\x62\xfb\x4e\x5e\x70\xe7\xd3\x86\x8f\xc7\xa8\x26\x55\xba\x58\xe5\xf5\xab\xaa\xa0\x2f\x45\xc2\x11\x66\x84\xa5\x9b\x56\x24\xb5\x72\x4e\xe5\xd9\xf0\xe3\xdb\xd9\x71\xb7\x31\x6b\x08\x2f\x8b\x7c\xff\xbf\xf0\xe1\x04\x1f\x4e\x90\xcc\xfa\xfc\xc1\xac\x47\xe0\xf8\x4a\x67\xfd\x7e\x5f\x56\x75\xfc\xae\xe4\x40\xaf\xc2\x81\x7a\x87\x0f\xc6\x67\xb7\xf6\x0a\x47\xbf\xfc\xf2\xbb\xe3\x08\xed\xf0\x55\xd0\x5d\xe7\x48\x65\xf6\x9f\xcf\xe6\x63\x14\xc9\x0c\xcf\x07\x33\xa4\xfa\xeb\xf7\x43\x5f\x23\xd5\xa9\x4b\xd9\xa9\xcb\x87\x3b\xb5\xc3\x97\xfd\x19\x53\xfb\x65\x9d\x08\xac\x73\xd9\x19\xfe\x90\x9e\x7c\x7c\xf5\xe9\xf5\xc9\xf9\xcb\x8f\xaf\xcf\x5f\x9f\xc0\xe3\xe7\x97\x67\x6f\xcf\x4f\x4f\xfe\xf8\xe1\xe4\xe3\xd9\xe9\x74\x99\x70\x94\x71\x59\xed\xbe\xd9\xf5\xeb\x95\xf9\x1e\x1a\xc2\x45\x27\x8c\xc8\xfd\x0e\xe1\xf3\x81\xd0\x22\xf6\xcc\x5e\x5b\x02\xc3\x84\x9a\x9f\xc4\xf1\xf7\xff\x0b\x90\xb5\xb7\x89\xc0\xdd\x91\x87\x46\x8e\x91\x3a\x25\x56\xb7\x4e\x7e\x72\x6e\x39\x5a\x43\xda\x2c\x8c\xff\x18\x87\xb9\x1a\x1f\x73\x4d\x70\x4e\x26\xf8\xf8\x79\x9c\x54\xe4\xf9\x0f\x3f\x24\x39\x01\xc7\x74\x09\x23\xcd\xac\x9e\xa3\xe9\xf7\xd9\xff\xf8\x57\x42\x08\x0b\xfb\x32\x3d\xce\xbe\x7f\x3e\x90\xfc\x3c\x9b\x20\xe5\x97\x89\xa5\x4d\xc9\x16\x34\x39\x46\x38\x69\x49\xbb\xdd\xce\xe6\xc8\x78\x54\xc2\xc9\x82\x2c\xbc\x94\xc9\x21\x49\xbe\x8f\x2b\x84\x10\x3e\xfe\x3e\xae\xe2\x98\xcf\xf2\xf9\x78\x8c\x35\x72\xbc\x97\xc7\x3e\xcb\xb1\xf2\x9a\x56\x26\x0c\xed\xac\x95\x25\xd8\x38\x66\xed\x76\x7b\x8e\x9b\x55\xd5\x96\xc5\x6b\x80\xc1\x4d\xb6\xd8\x6e\xcf\x3d\x54\x7e\xd2\x21\x11\x28\x74\x9c\x80\x0b\x34\x9a\x72\x45\xb9\x11\xa2\xac\x68\x6f\x7a\x48\x11\x33\x8d\x4f\xb5\x31\x8b\x26\x01\x59\x61\xa8\x3f\xa8\x4d\x7b\x3f\xd2\xb5\xd5\xe6\xed\x46\x68\x4b\x20\x36\x15\xca\x1a\xce\xd0\x46\x10\x1f\x3f\x32\x86\x81\x35\xbd\xa4\x37\x66\xdd\x20\x69\x65\xdc\x78\xfa\x89\x72\x36\x4c\x8a\x47\x04\x9d\x86\x96\xf4\xba\x17\x53\x35\x50\xe5\xeb\x0d\x7c\x6d\xa9\x84\xcc\x4d\x80\xc5\xaf\x32\xc1\xcd\xd8\xa7\x0e\xe0\xc3\x95\x71\xec\xc5\xc9\x04\xd7\xc4\xd2\x3f\xfc\x87\x1a\xa0\x1e\x23\x74\xc6\xe7\xb8\x92\xc0\x4f\xb9\x1a\x64\x8a\x2a\x4c\x84\x0b\x63\x5e\xed\x6e\x3c\x3c\xa6\x46\xbc\xcf\x13\x3a\x7c\x35\x3e\x9c\xf5\xec\x48\xd8\xfe\x85\x5e\x9e\xdc\x6c\x12\x7f\x12\x0d\x09\xac\x72\xed\xb0\xdf\x88\xa4\x16\xf7\x00\x73\x13\xdb\xcb\xad\xd1\x81\x75\x40\x43\x2a\xc4\x96\xc9\x26\xa9\x6c\x0c\xf7\x1e\x9c\x67\xcb\xe4\x24\xd1\x4e\x53\x75\x40\x82\x6a\xc6\xe7\x73\xec\x47\xc9\xaf\xad\x87\xb9\x93\x84\x85\x79\xc3\x8c\x2c\xec\xf6\xa6\x15\x3d\x1e\x04\x0e\xbc\xec\xa2\x6e\xf4\x52\x9b\xc9\xdb\xb6\x8c\x5d\xac\x6b\xc5\xa2\x37\x98\xba\x9b\x84\x61\x66\x8c\x1e\x55\xa5\x98\xcd\x4c\xca\x9c\xd4\x58\x11\x09\x9d\x59\x99\x76\x77\x72\x9d\xb2\x22\xd3\x4b\xe0\x92\x51\x37\x9f\xb6\x9f\x4f\x59\xa1\xc3\x78\x79\x55\xcc\x3a\x09\xb8\x06\x87\x76\x75\x38\x0b\xea\xfa\xa4\xef\x86\xce\x59\x55\x76\x16\xef\xd0\xd8\x52\xce\xe6\x9a\x02\x9f\x81\xd5\xe5\x26\x61\x08\x29\xeb\xcf\xc9\x0b\xf1\x03\xf3\x7d\xd0\x9d\x26\x3c\x58\x18\x36\x13\x72\x11\x51\x1c\x57\x6a\x04\x5c\xfb\x86\x3d\xed\xac\x36\x0b\x72\xd5\xde\x2e\x87\xb6\x5f\xf6\xf9\x1b\xd5\x2a\xd1\x47\x19\x7c\x4c\x7d\x96\x04\x49\x43\xe8\x76\x0b\xd6\x80\xe6\xfc\x7d\xb5\x83\x3d\xa0\xc4\xa1\xe2\x67\xbf\x8c\x9f\x5d\xae\x71\xf4\xcf\xcf\x27\x92\xf5\xaa\x6f\xef\x05\x19\xa4\x84\x77\x0b\x38\x7b\x12\xb1\x90\x28\xda\x59\xec\xff\xd2\x9b\x5d\x89\x30\x16\x54\xd3\x9b\xdd\x64\x1c\xe4\x1c\xce\xd8\xcb\x27\x27\xa2\x97\x4d\x26\xc2\x84\x7c\x20\x5d\xe7\xc5\x00\xbf\x25\x73\x77\xa0\x98\xf4\xd9\x1c\x0b\xbd\x53\x29\x9e\x60\x49\xd1\x4c\x80\x60\xa2\x92\x2a\xd0\xc0\x36\x04\xc2\x75\x55\x19\x63\xea\xdd\xc1\x87\x07\x59\x22\xef\xe0\x1b\x75\x74\x12\xd6\x81\x17\x24\xfa\xcf\x08\x2f\xc9\x6c\x82\x27\x78\x32\xc7\x2b\xe8\x8d\xb2\x0e\x36\x20\x0f\xe1\x8d\xec\x68\x41\x0e\x27\x78\xad\x99\x42\x05\x1e\xa8\x0f\x1e\x00\x6c\x54\x12\x95\x5e\x27\x1b\x9c\xd4\x00\x1f\x91\xe2\x89\x97\xda\xcf\x61\x83\x73\x89\x2a\x7d\xd4\xf5\x62\xfd\xc3\xc6\x54\xb3\x1e\x8f\xd1\xf7\x87\x84\x24\x0d\xd9\xcc\xd6\x73\x04\xc0\x3f\x8e\x93\x82\x1c\x1e\xe3\x92\x94\x96\x42\x04\xaa\x12\x2f\xc6\x24\x7a\x16\xe1\x92\xdc\xce\x14\x9e\x98\x27\x0d\x2e\x21\xfd\xca\xa5\x20\x74\xb0\x9a\xf1\x39\xb9\x37\x7c\x68\x6d\x10\x0d\x56\xe8\xb4\xea\xe0\xd2\x7c\xb7\x2b\xe2\x38\xd9\xd7\x1e\xc2\xa5\xc3\x54\x2b\x5c\x5a\xcc\xb6\x18\x47\xbf\x8b\x70\xa9\x31\xd6\x12\xf7\x64\x50\x22\x8e\x35\xb0\x85\x78\x2d\x79\x13\xc7\x49\x4b\xe4\x03\xc2\xad\xa4\x77\xec\x16\x99\xb5\x73\x72\xdf\xd0\x4b\x30\xad\xce\x36\x86\x85\x6e\xb2\xd5\x0e\xed\xf0\x87\x80\x37\x52\x5f\xde\x54\xf5\x30\xdc\x20\x5e\xad\x3a\x7c\xe3\x80\x15\xfd\xd9\x8a\xd6\x74\xc4\x9a\x11\xaf\x46\xc0\x44\x8f\x64\x89\x62\x14\x8d\x29\xd2\x50\xd6\x6d\x0c\x3b\x81\xe6\x80\x2b\x07\xc9\x0a\xd4\xf4\x3e\x02\xcc\xe1\xc4\xa5\x4b\x36\x47\xc2\x1c\xc2\x3d\xbe\x20\x1c\x53\xa3\xc4\xc6\x7d\xb2\xf8\xf0\x30\x18\x4e\x58\xce\xf0\x54\xfb\x99\x19\xbf\x2c\xae\x48\x14\x69\x18\xfa\xed\xf3\x01\xfb\x58\x2f\x90\x77\x22\x72\xff\x44\x7c\xaf\x7c\x7d\xe6\x70\x0e\xf4\x56\xae\xd4\x9e\xad\xc6\xe4\x72\x56\xeb\x2d\x5a\x63\x47\x32\x44\xcf\x22\x89\x8c\x81\x3a\x31\x74\x70\x25\x8b\x8c\x2b\xa4\xc2\xfd\x78\x50\x54\xd5\xa7\x71\xa3\x1a\x3b\x5c\x29\x69\x4f\x02\x41\x5e\xe5\xf0\x79\x68\xba\xbc\x22\xfb\x50\x8f\xa6\xb9\x67\x73\xdc\x12\xdf\x1d\x13\x55\x2b\xdf\xc2\xfd\x77\x62\x3c\x9e\xb6\xfe\xca\x5b\x0a\x43\x41\x04\xd2\x4a\x6c\x83\x64\x32\x23\x03\x12\x06\x8e\xf0\x26\xa9\x15\xee\x52\x9e\xa0\x0d\xbb\x0b\x0e\xa1\x73\xc2\xc7\xd1\x6c\x4e\xa2\xf1\x40\xd9\x7a\x56\xcd\x11\xd6\x68\x38\x37\x0e\xce\xc7\x24\xda\x93\xdd\xe6\x65\x16\x95\x49\xfe\xda\x6c\xdc\x69\x14\x65\xd1\x34\x1a\x37\x5a\x06\x15\x47\x9d\xb3\xb7\xc9\xeb\xe6\x1b\x66\xcf\x4a\xb7\x62\xe0\x58\xee\x77\xde\xa9\x09\x0e\x0b\x38\xc8\xfe\x9a\x24\x9c\xc8\xb3\x62\x4a\x91\x08\xa1\xd9\x64\x8e\xac\xb7\xec\x4a\x42\xc5\xdc\x10\xcb\x92\xa8\xe5\xa6\xe7\x39\x89\x44\xdd\xd2\x28\x4b\xd8\x1f\x9e\xc7\x71\x34\x9b\x47\x20\x38\x50\x4c\x0a\x3b\x7a\xae\xb6\xd5\xe1\x04\xb7\xb3\xda\xa6\x4f\xb0\xfc\x32\xdf\x6e\x93\x76\x56\xcf\xc9\x6c\x8e\x10\xce\x09\x9f\x1d\xcf\xa7\x5f\x13\xf9\x83\xb2\x28\x42\xb8\x9a\xb6\x20\xfc\x53\xb3\x9c\x41\xde\xdc\x4c\x60\x1b\x4e\x91\x95\x6e\xef\x9f\x1b\x4d\x1a\x59\x9c\x34\xc7\x39\xb9\xdf\xe1\x56\xc1\x7c\x4f\x0e\xf6\x4f\x11\x7a\x01\x34\x7d\x09\xb2\x62\x6a\x78\xc3\x09\x2e\x35\x77\xb8\xf0\xb3\x4f\x4d\xf6\x05\x78\xaf\xb2\xd9\x17\xe3\x63\xec\x50\x5b\x50\xcf\x42\x8e\xd7\x84\x3a\x0a\x96\x36\x91\x34\xb7\x3a\x9b\x34\x38\x9b\x14\xce\xa6\x06\x0a\x4b\x42\x0f\x1e\xe7\xc0\x29\x91\x07\x27\x4b\xa8\xa3\x64\x12\x8a\xf0\xd2\x7b\x5d\xea\x01\xad\x2c\xdf\x01\x7b\x65\xf5\x87\xe3\x38\x8e\x9e\x45\xc4\xeb\xc5\xea\xe8\x18\x75\xe7\x43\xa6\xe1\x25\x59\xba\x94\xa5\x75\x4f\x29\xb7\xde\x21\x38\xfc\xf0\xc5\xba\xb0\x1d\x3e\x25\x15\xa6\x3e\x8b\x5b\x23\xbb\xdb\x80\x7b\x7e\x21\xfb\xb4\x31\x8c\x11\x23\x93\x17\xcc\xb1\x08\x6c\x3c\x46\xd5\x8c\xcd\x2d\x9c\x8f\xe3\x8d\x16\xf7\xce\xd8\x1c\x1d\x54\xc3\x52\x0e\x80\x1c\x43\xe2\x0d\xaa\x10\xe9\x76\x6b\x68\x93\x9a\xf0\xd9\x64\x8e\x19\xec\x48\x5c\x11\x3e\x7b\x2e\xf7\x8a\xe8\xe6\x6b\x48\x2e\xf3\xb5\x24\x97\xf9\x4a\x92\xcf\x9e\x03\xde\xab\xe4\xd6\x31\xbc\x43\x75\x54\x42\x1a\x88\x0f\x25\xc3\xd8\x98\x2f\xcd\x11\xf0\x1c\xec\x90\x90\xd6\xa4\xb5\x47\xcc\x90\x94\x90\x3e\x65\x47\x6d\x06\xa5\xa6\xcd\x51\x9d\x4d\x76\x68\x97\x6c\xd4\x92\x15\x64\x33\x9b\x58\xdf\x75\x45\x1c\x17\xde\x84\x24\xad\x7c\xd7\x04\x43\x1c\x83\x98\xe8\x77\x72\x39\x6d\xa2\x3e\x8a\x47\xff\x03\xfc\xd8\x6b\x82\x63\x0f\x6b\xd4\xb7\x33\x24\x8e\x20\xc0\x1b\xa2\x39\xce\x44\x49\x2c\x37\xdb\xed\xe1\x80\xcc\x10\xa8\xcb\x91\x72\xa1\xc3\x04\xdc\xb4\xd3\x22\x32\x63\x11\x9a\xa7\xdd\x20\xbc\x26\xc7\xf8\x56\x51\x01\x92\x43\x90\x3b\xe0\xd6\x10\xf8\x2b\x17\x8c\x59\xee\xaa\x95\xbf\x69\xe4\x04\x03\x59\xb8\x9a\xd5\xf3\xbd\x64\x20\x6e\xc8\x85\x3a\xf3\x72\x99\xce\xe3\x38\x97\x3f\x80\x06\x4a\x32\x79\x51\xba\x7d\x56\x8e\xc7\x48\x6e\x61\xbc\x20\xd5\xac\x9c\xcb\x73\x13\xc7\xc5\x6c\x3d\x1e\xcb\xa5\x27\xe4\x22\x8e\x93\x86\xdc\xef\x10\x7e\xf4\x28\xc6\x71\x3e\x2b\xe7\xd3\x66\xb6\x98\x93\x65\x1c\x0f\x30\x16\x4b\x94\xa9\xaf\x07\xb7\x12\xcc\x59\x1a\xd2\xfa\xce\xc6\x20\x60\x6d\xb2\x06\xb3\xe6\xf5\x2d\xcf\xd7\x6c\x91\xb5\x3b\xb3\x59\x6e\x77\x49\x81\x97\x38\x47\x10\x6d\xf9\x83\x55\x0e\x89\x26\xe9\xef\xd3\xdf\x47\x8f\xf7\x50\x8e\xf3\x43\xfa\xb1\xaa\xd7\xb0\x30\x35\xb9\xe7\xe6\xf9\x54\x51\x1f\x59\x89\x6d\xd2\xe7\x5c\xac\xb2\x46\x5f\x05\xc8\x17\x93\x67\x19\x42\xe5\x75\xbe\x19\x94\x28\xc2\x25\xc8\x01\x4d\xaa\x24\x8a\x30\xef\xdc\x62\x21\x7b\x25\x39\xa2\x89\x15\x13\x01\xd3\x69\xb6\x20\xe1\xfa\x06\x06\x2f\x03\x32\x61\xa1\xb6\x8b\xc2\xe7\x4b\x1f\x9f\x37\x64\x39\xab\xe6\x38\x07\x3a\x58\x6d\x7d\x84\x1b\xbc\x98\x35\x73\x84\x93\x92\x70\x77\x15\xd3\xcc\xd1\x94\x26\xb2\x1d\xd9\x70\x56\x2b\x01\x3c\xc3\x2d\xda\x25\xb3\x39\xe6\xc1\x8d\xa9\x98\x9a\x38\x55\x9a\x15\xcf\x8b\x02\x4c\xef\x4d\x64\x39\x7b\xc3\xfc\xc1\xbb\x8c\x1d\xb4\x99\xbf\xc8\x2f\x68\x19\xe1\xa8\x6e\xae\x36\xf2\xa7\x7b\x6b\xfb\xa8\x8b\x0f\x9a\x9e\xd9\x58\x90\xbe\x7b\x6b\xb6\x87\xc1\xac\x9e\x7e\x03\x92\xab\xd5\x0b\xdd\x97\xa3\x4a\x4d\x8d\x04\x14\x12\x33\x48\xe6\x47\x48\x1a\xb4\x73\xe9\xa6\x3d\x71\x82\xab\x76\xe3\x17\xaa\x13\x84\x2e\x8e\xc5\x1f\x26\x71\x4c\x67\xe2\xe8\x78\x2e\x39\x7f\x75\xe9\x01\xaf\x38\xf2\xa8\xcb\x08\x4d\x13\xb8\xc1\x38\x3a\x9e\xfb\x54\x27\x9e\x31\x73\x51\x32\xc1\x42\x62\x1f\x3e\x47\xd9\x8c\x82\xe0\x65\xde\x71\x32\x68\xc9\x02\xeb\x24\x88\xc9\x01\x51\x49\x2c\x46\xbc\x05\x6d\x05\xc3\x4c\x25\x82\x50\x89\x56\x10\x38\xd1\x8c\xa2\xb1\xb0\xf1\x6c\x82\xfb\xa4\x44\x28\x5a\x52\x49\xf1\x44\x57\x8a\x27\xe7\x05\x4a\xcf\xf8\x3c\xf0\x62\xa8\xc0\x2c\x4d\xcb\xea\x32\x8e\x93\xdf\x13\xd2\xf3\xa2\x35\x85\x8f\x49\xe4\x16\x77\xf4\x4f\x70\xcd\x92\x8d\xa2\x31\x47\x59\xc2\x89\xc0\x2a\x0f\x47\xc8\x9b\xfc\x85\xe7\xd9\xaa\x17\xd9\x6f\xbb\x0d\x62\x43\x2a\xea\x63\xbb\xed\x0e\xbf\x97\xf1\x23\x7c\xdf\xf9\x17\x79\x1e\xef\xb3\x47\x90\x19\xc7\x87\x92\x40\x12\xb0\x47\x10\x4c\xc8\x0b\x57\xc5\xca\xed\x67\xb6\x4c\xac\x7b\x0f\xd0\x91\x42\xe1\xab\x82\x07\x8a\xe2\xb6\xa1\x6c\x24\xcd\x5b\x2b\x67\xbd\x1a\x05\x69\x8f\xd7\xc6\x9d\x75\xdf\x97\x9b\x44\x08\x80\x8b\x74\xe5\x23\x70\x41\x32\xfa\x2e\x1a\x37\xe3\xe8\xbb\x74\xa4\xd8\xb2\xbc\x96\x08\x6b\x94\x2f\x04\xbb\xa2\x23\x83\xf0\x22\x75\xfb\x28\x71\x88\x26\x4f\x9c\x4f\xee\x17\xec\x0f\x92\x58\x39\x3a\x92\x5b\x29\x27\x49\x45\x84\xdc\x3c\x06\x88\xeb\xa0\x00\x2a\xb8\x53\x1c\x9b\x27\x09\x72\xc0\xb1\xf4\xe4\x90\x10\x2f\x51\x7b\x2d\xcb\x71\x6d\x44\x91\x07\x12\x21\xe9\xe0\x1a\x95\xa9\x55\x2b\x9e\xa7\x62\x45\x79\x52\x82\x99\x27\xb0\x42\xb8\x91\x05\xc1\x37\x9a\x32\x3c\x91\x3c\x47\x1c\x47\x3f\x71\x0b\x55\x8a\x9f\xbe\xbc\x3f\x31\xdf\xea\xd9\x64\x0e\x68\x53\x23\x6f\xf9\x0e\xd3\xd9\xc6\xf1\x21\xef\x63\xf4\x8f\x95\x58\x81\x13\x60\xe8\x46\x01\x77\x9a\xe1\x3c\x46\x68\x60\xaf\x73\x33\x40\x6a\x06\xc8\x21\xc6\x9f\xd3\x84\xe8\xb2\xd3\x9a\xf3\x68\xc8\x7d\x5e\x96\xd9\xbd\x89\x94\x5c\xc8\x47\x65\xce\x53\x80\xcb\xaf\x3c\x69\xd2\xbc\x2c\x4d\x28\xac\xd2\xae\x90\x3c\xdd\xe0\x26\xb4\x4d\xc0\xe9\x96\x81\x2f\x18\xe2\x53\x58\x30\xc6\xd0\x76\x9b\x94\x12\x15\x36\xda\x4c\xa8\x90\x87\x5e\x9d\x7f\x57\x93\x90\x8b\xeb\x15\x42\x3d\x58\x00\x25\xe2\xb8\x03\x20\xa0\x1a\xb9\xc3\x25\xf1\xaa\x76\x8c\x3c\x14\xee\x0d\x35\xda\x9c\x0d\x9a\x95\x1f\xb0\xec\x8d\x02\x38\xde\xc9\x72\x25\x2c\x7c\x91\x69\x33\x3e\xd7\xf5\xcd\xf8\x5c\x12\x27\x83\xb5\x69\x76\x55\x16\xd0\xb9\x1f\xc8\x6a\xfc\xda\x4e\x9b\x4c\xdf\x8c\xd8\x55\x2a\x3c\xe8\xa2\xb4\xf0\x24\x3c\xa2\xbb\x81\x5b\x73\xeb\xa1\x2d\x3a\x97\xf0\xd3\x7a\x25\x96\xbd\xe4\xdb\x2d\x9d\x89\x79\x1c\x0b\x6f\x07\xdc\x76\x5d\x82\xaa\xba\xbc\x50\x53\x30\x07\x7a\x11\x65\xbe\x9d\xba\x7c\xf5\xe4\xa0\x1e\x11\xa1\x85\xa2\xfa\xb8\xbc\xe3\xcb\x0a\x44\x0c\x3d\x59\xf1\xfd\xce\x5c\x21\xe9\xd7\x9d\xe5\x1e\x3c\x66\x5c\x9d\xb6\xf7\x12\x5b\x0f\x38\x9c\x8e\x22\xd3\x4b\xed\xd2\xd2\x6f\x35\x54\xb6\x8a\x94\x80\x2e\x11\x63\x12\xa5\x92\xfa\x1e\x13\x0a\xe7\x6f\x87\x70\x91\x44\xdf\x01\x90\xff\x0e\x66\x15\x28\x09\x9f\xdb\x05\xa7\x0d\x03\xcd\x77\x91\x87\x64\xe4\xac\xff\x5e\xe7\x68\xf1\x78\x3e\xf5\x5f\xe0\x20\x11\x6f\xec\x07\x8f\x75\xbe\x9e\xa9\xae\xce\x09\xd5\x45\x40\xce\x8e\x20\x6c\x13\x74\x0e\xa2\xcc\x90\x89\x77\x75\x02\x82\x04\xe7\x90\xd7\x80\x2d\x9d\x3f\xf1\xae\xf0\xbc\x29\x4e\x22\xf0\xda\x3b\x72\x61\xae\x23\x84\x14\xa8\x6b\xf1\xbe\x22\xda\xa9\x85\x01\xd9\xb2\x84\x12\xdb\xf7\x9d\x16\xb3\x70\x8c\x92\xcd\xf3\x07\xf0\x07\xab\x05\x31\xad\x2d\x94\xcf\xc2\x3c\x43\x43\x92\x74\x55\x72\x0f\x60\x37\xa3\x46\xac\xfa\x33\x13\x2b\x80\x9d\x59\xd8\xea\x2c\xb7\xcc\x2c\xbe\xce\x9b\x97\x17\x55\x2d\x68\x91\x55\x18\x78\xa6\x8c\xed\xd0\x6e\x68\x94\x4a\xfb\x7e\xa4\x60\x3b\x42\x3e\xb5\xe6\x79\x14\xe9\x4e\xb3\x24\x7c\x59\xa7\x26\x30\x3e\x18\xb1\xe5\x48\xb1\x4a\xe0\x7d\x94\xf1\x96\x0e\x4f\x9c\xe1\x6c\x25\xa0\xec\x8d\x19\xa2\xd2\x0f\x77\x34\x97\xe3\x8a\xd0\x10\x79\xc8\x3b\xeb\x30\x0b\x67\x78\x9e\xb2\x46\xaf\x69\x61\x81\xc0\x43\x05\xc6\xe3\x39\xa1\x98\x6f\xb7\xb7\x89\xe5\x54\x71\x54\xd3\x82\xd5\x74\x21\x22\xed\xf9\x94\xde\x08\x2c\x10\xce\x93\x70\x43\x75\xbb\xdf\xdf\x4d\x3e\x3d\xe9\x29\x8b\x04\x3b\x9f\x74\x86\x64\xb6\x91\xde\x14\x0a\x41\xeb\xf5\xed\xee\x87\xee\xe8\xcd\xda\xe5\x58\xe8\xae\x36\xc3\x5d\xfd\x5c\x57\x0b\x2a\xd9\x6a\xb4\xdb\x61\xba\x4b\xbc\x4d\x71\xa9\x43\x4d\x1f\xc2\xc9\xf6\x49\xba\x4b\xe4\x2b\xef\x5d\x26\x5a\xc8\x24\x08\xec\x55\x8d\xe7\x14\x8f\x73\x60\x92\x36\xa2\xad\xe9\xa9\xc8\x17\x5f\xcf\xea\x7c\x41\xa7\x7b\xd2\x55\xb9\x4b\xcd\x1b\x35\x32\x5d\xf2\x5f\xf2\xd7\x70\x7d\x3a\x72\x41\xc5\x89\xf0\xdf\xd4\xe7\x25\x2b\x29\x04\x97\x12\xf6\x51\x7d\x28\x19\xa7\x8a\x14\x95\xd4\x97\x7d\xd1\x1a\x9b\x3a\xb2\x82\x30\x4f\xdb\xad\x47\x3d\xeb\xe3\xa5\xd5\x03\x24\x10\x23\xfb\xbf\x9a\x26\xb8\x57\xbd\x64\x7a\x21\xd6\x4f\x41\x77\x9e\xb5\x49\xc7\x5d\x99\x9a\x11\xfb\x15\x69\x35\x96\x61\x0c\x05\x41\x58\x30\xc3\x95\x56\x13\xf4\x2e\xd1\x0e\x8c\x6f\x64\xe5\xf8\xb8\xde\x6e\xb5\xef\x4f\xad\x2b\xc1\x05\xe5\xc2\x5c\xe1\x29\xee\xd2\x5c\xe1\x15\xb9\xd0\x62\x46\x95\x4b\xc7\x8e\x54\x2f\xf0\x55\x02\x6d\x13\xc7\x5b\x1d\xaf\x0f\x55\x41\x4b\x87\x0a\x07\xd1\xa3\xda\x72\x81\xf6\x04\x6c\xea\x20\x45\x23\xd1\x01\xbd\x0b\x85\x80\x03\xdd\x0b\x50\x3e\x85\x85\x0e\xaa\x60\x57\x95\x09\x77\x15\x7c\x68\xe8\xdf\x5a\xca\x17\x61\x6e\x66\x00\x27\x39\x3c\xb6\x29\x40\xba\x4b\x40\x05\x09\x6d\x5d\x6a\x43\xef\xa8\xdd\x14\xb9\xa0\x51\x30\x78\x8d\xb2\x7a\x23\x07\xcb\x3f\x57\xa9\xc7\x65\x1f\x4e\xb0\x75\x32\x1c\xcc\x4d\x0f\x2e\x32\x04\xd1\x1a\x13\x6f\xb6\x18\xb2\x6b\xcb\x9a\x57\x79\xdb\xd0\xe2\xc7\x5b\x18\x03\xe3\x97\x7e\x23\x87\x15\xee\xe4\x7a\xa7\x44\x68\x5e\xa6\x0a\x08\xd9\x07\x72\x6c\xb7\x13\x42\x48\x65\xe7\x0e\x75\xeb\x34\x2d\x7f\x51\x57\xe2\x61\xdd\x91\xbe\x28\x8f\x64\x15\x76\x1a\xe3\x38\x39\xac\x1e\xec\xfc\x76\x3b\xf4\xbd\xd7\x04\x92\xa4\x1e\xdc\x52\x78\x5b\xa7\xd6\x0f\xfd\x9d\x58\x07\xac\x7f\x7f\x6f\xd5\x21\x52\x87\xc8\x9e\x03\xb0\x18\x99\xbb\x50\x6f\xff\xd5\x1d\xcc\x7c\x74\xac\x79\x22\xdc\x90\xc9\x8b\xe6\x87\x1c\xee\x52\x3b\xb9\x9a\x39\xf2\x30\xd4\x8b\xf1\xb8\x41\xfd\x0d\xdc\x9a\x32\x07\xe1\x1e\xb6\x41\xff\x4e\x75\xca\x78\x1c\x9e\xb3\xda\xc2\xff\xd0\x63\x7a\xe9\xb6\x3c\xda\x47\x82\x18\x4d\xfc\x40\x7c\x90\xab\x42\xa3\xa3\x91\xca\x05\x31\x3c\x40\x60\xb5\x1f\xdb\xd3\xd4\x51\x26\xdb\xad\xd7\xf4\xb4\xd7\xe6\x79\x52\x22\x94\x25\xa5\xe1\xdc\x0d\xfb\x89\xa9\xda\xf8\xb8\xc4\x16\x29\x5b\x92\x08\xe1\x32\x85\x7e\x25\x68\x80\xa8\x50\x05\x65\x37\x0b\x4b\x4e\xbc\x34\xe4\x04\xf0\x33\x7b\x4f\x9f\x9a\x39\x07\x41\xd1\x13\x68\x7c\xd6\x9c\xdc\x30\xf1\xc0\x4d\x1b\xe9\xed\x39\x73\xc7\x86\x25\x29\x63\xee\xd8\x7e\xe0\x2f\xc6\x63\x60\x17\x93\x9a\xb0\x99\xd0\x62\x69\x42\x08\x44\x12\xd0\xe5\x41\x79\x58\x5f\x3b\xdb\xf8\x41\x93\x90\xe2\x97\x48\xbf\x27\x9c\x1f\x00\x3c\x8a\x3a\x50\xdf\xc3\x1a\x16\x1d\x95\x9f\x6e\x1c\x7e\x53\x81\xda\x01\x10\x85\x24\x28\x0f\xd1\xab\xcb\xdb\x27\xd4\xa0\x73\x0e\xd4\x01\x0b\xbc\x4f\x31\xcd\xed\x28\xf9\x9a\x25\x8a\xe8\xd0\x28\x2d\x84\xfb\x5d\xac\x31\x8e\x32\x8f\x41\x80\xf0\x5b\x7a\x8f\x9b\x58\x86\x1a\xe7\x6d\x6a\x0f\xe8\x78\xa1\x02\x54\x23\x01\x5e\x75\xd8\x64\xd2\xc5\x26\xc7\x3e\xb2\x4d\x95\x78\xc8\x03\x97\x96\x2b\xe9\x71\x6d\xa2\xbe\xed\xa9\xea\xe8\x4d\xaf\x15\x75\xfc\x8a\xdd\x88\x24\x38\x17\x20\xfe\x72\x63\xf1\xf5\x9d\x8d\xb6\x47\x80\xe3\xe2\x18\xa2\x56\xad\x2a\x8d\x74\xec\x07\x84\x69\xd8\x31\x95\x6b\xe8\xda\xac\x83\x35\xd5\xdc\x74\x76\xa6\x3a\xe4\x03\xbc\xa8\x96\xc8\x7a\xae\xfb\xa3\x8b\xaa\x2a\x69\xee\xd9\x44\xd1\xa9\x30\x92\xbb\x0c\x66\x76\x35\xb0\xea\x72\x55\x42\xf8\x6d\xee\x91\x7b\xd8\x7b\x7c\x8c\xf0\xc0\xde\xad\xca\xb2\xba\xfe\xa2\xc9\xff\xc6\x5f\x83\xde\xb4\x1f\xec\x3f\x14\xb6\x98\xaf\x10\xda\x5d\xfe\x69\x3f\xa9\xdb\x7e\x82\xb2\x1e\x88\x13\x68\xd7\xe9\xf4\x03\x9e\x32\x3d\x58\x9e\x98\x33\xa1\x23\x49\xd8\x33\x32\x8e\x50\x14\x56\x58\x56\x21\x3c\x7b\xe8\x80\x81\xc4\x21\xe0\x1f\xce\xc3\x38\x47\xa6\x18\x75\x65\xa2\x82\x0a\x88\xd0\xa5\x0e\x5f\x1a\x21\x0c\x0c\xc5\xee\xc2\xbf\x7a\xa0\xbc\x20\x17\xfd\xfd\x03\xfb\xff\xba\x77\x3a\x1c\x09\x6b\xc8\xd5\x1d\x3e\x19\xd0\x05\xbf\xd9\x2b\xfa\x51\x0b\xdc\x93\x8b\x4c\x06\xe5\x22\x13\x5f\x2e\x32\x99\x67\xf7\x2e\x8e\x80\x70\x21\x5b\x0d\xdc\x3e\xc1\xc1\xfb\x67\x83\x7d\xac\x54\x62\xa9\xcd\x61\x5d\x0a\x80\x7f\x25\x3a\xc1\x14\x45\x86\xa5\x24\x84\x08\xa5\xe5\x79\xae\x5d\xd4\x9b\xd8\xee\x76\xe3\x2b\x1e\x6a\x26\xe6\x60\xbf\x31\x84\xb5\x2e\xa9\xa5\x35\x02\x8f\x32\xc1\x49\xa0\x62\xb1\x1a\xc8\xe5\x1d\x03\x57\x8d\x53\x14\x43\xc1\xa9\xe8\xf5\xb1\xb3\x73\x3b\xdf\x07\x90\xa8\x12\x36\x05\x95\x76\x27\xb1\x2f\xb8\x40\x38\xe9\xaa\xba\x25\x82\x50\xe4\xb4\xdd\xb6\xdb\xa1\x10\x1e\x68\xd0\x1a\x53\x00\xaa\x9c\x26\x43\x8d\x0f\xa4\x29\xc4\x3a\x00\x22\xeb\x54\xb1\x12\xde\x64\xa0\x80\x24\xd5\x4c\x0a\xca\xa8\x5a\xe1\x6e\x76\x23\x59\x7d\xe0\xac\x4a\x4c\xab\xaf\x88\xd4\x45\x8f\x5d\x18\x75\x0b\xd4\x85\x77\x7b\x65\x94\x46\x5b\x40\x49\x17\x5d\x25\xdf\x0d\x08\x19\x2f\xa9\xf8\x89\x1b\xb6\x70\x0f\xd2\x0e\x4b\x34\xda\x82\x7e\xc0\xdf\xc2\xc8\x23\xba\xd4\x29\xf6\x0b\x06\x53\x32\xac\xbe\x61\x0e\x99\x92\x06\x98\x9e\x87\x13\x4d\x1f\x93\x92\x9a\x6b\x05\x2d\xeb\x5c\xac\xe8\xe2\xeb\x9b\xaa\x06\x4c\xaf\xee\x4d\xb4\x9c\xc3\x50\x78\x75\xcb\x55\xbc\x30\x60\x8b\xdf\x56\xd5\x57\x2f\x9b\x40\x46\xd1\xfd\x92\x0a\xc8\x10\x7e\xcc\x6d\x1d\x10\x57\x6c\x4f\x15\x8d\xca\x75\x41\x17\xd5\x9a\x1a\x16\x22\xc8\xb2\x5f\x64\x3a\xb0\x4f\xf7\x4b\x50\x3d\x61\x28\xec\xe5\x7a\xaf\xf8\x54\x89\x03\x97\x55\x6d\x45\x76\xaa\x04\xdb\x5b\x42\x4d\xd2\x68\x2d\x87\xf8\xe4\x06\xd8\xd2\x72\x22\x45\x0b\xe1\x39\xbe\xbb\x70\x93\xfd\xdd\x68\x55\x55\x5f\x6d\x65\xd5\xde\xca\x3e\xfc\xd6\x46\x19\x1f\x7d\xb7\x1e\x68\x2a\xdf\x5b\x05\xac\xe3\x6f\x1f\xa5\x6c\x30\xb7\x5b\xa1\xd3\x6a\xf3\xc0\xe4\xca\xad\x31\x32\x47\x51\x47\x5c\xf4\xf6\x79\x6f\x93\x0e\x1f\x21\x8d\x69\x25\x0c\x31\x9c\xd9\xe1\x04\x47\xd7\xac\x2c\xf5\xbe\x53\x53\x89\xc3\x63\xa5\xa1\x59\xdd\xf2\xd3\x55\x5e\x6b\x09\x91\x6c\x25\xa1\x38\xf2\x16\x2c\xc2\xb3\x79\xbf\x67\xe1\xd6\xdf\x6f\xb3\x2d\x4f\x73\x80\x0f\x1a\x91\x37\xab\x2f\xbe\x54\x4a\x87\x2e\xdc\xdf\x19\x37\xb7\x11\x06\x66\x2b\x84\xd9\x41\x74\x41\x5f\xda\x35\xe3\xf3\xdd\xde\xd9\x7f\x77\xc9\xe5\xd6\x5e\xb6\xe5\x92\x95\x25\x18\x6a\x82\xc5\xd4\x28\xe7\xc5\xc8\x58\xb2\xc9\x6a\x54\xf2\xd0\xea\x74\xba\xda\x8b\xbd\xac\x24\x9a\xd5\xa5\x1c\x83\x24\x99\x75\x5c\xb0\x71\xa4\x77\x48\x4f\x00\x12\xc7\xb5\xd2\x78\xeb\x7e\x40\x58\x7f\xb0\xda\xd4\x83\x0a\x5d\xe6\x3e\x8d\x2d\x13\x13\xf3\x59\xc5\xdf\xb4\x2a\x07\xb3\xda\x5c\xaf\xa1\xec\x78\xcf\x17\xcc\x67\x93\x39\xca\x9e\x3f\xf4\x19\x2b\x75\x4e\x48\x56\x97\xbd\x10\x07\x2f\x80\x5c\x7e\x7c\xbf\x11\x8b\x63\x16\xc8\xd8\xc0\xec\x0d\x5c\x0c\xe0\x3e\x00\x64\x0f\xdd\xfe\xa8\x65\x52\xf5\xd2\x62\xb4\xac\xab\xf5\xa8\xe2\x36\x2a\x90\x5a\x34\x39\xc3\x4d\x6f\xd1\x0c\x40\xdf\x4f\x48\x05\xb8\x63\x98\x29\x1e\xbe\x7b\xf9\x06\x78\x3b\x80\x45\x7f\xe3\x3e\xf5\x2e\x74\x3a\x28\xbb\x77\xca\x7a\x64\x47\x47\x32\xdc\x4d\x00\x11\x72\xef\x44\xd9\x33\xad\x03\xcf\xba\x16\x43\x44\xb7\x1f\x20\x58\x62\x22\x11\xe8\x80\x1a\x49\xdd\x3e\xa8\x60\x6e\x21\x83\xeb\x48\x9b\xea\x77\x87\x6b\x03\x4f\x02\x46\x8e\x99\x23\x25\x8c\xca\x5d\xb0\x35\xb5\xd6\x1d\xdf\x49\x8a\x80\x68\x16\x5b\xdf\x1d\xe9\x2d\x9b\x44\xfa\x3d\xd2\x0c\xc2\x76\x7b\x08\x7a\x05\xd6\x54\x9f\x18\xb0\xa5\xf9\x81\x24\xb2\xb0\x1c\xd7\xdd\x05\x81\x1b\xb8\xd3\x76\x43\xeb\x05\x2d\xc2\x2b\x5e\x15\x96\xdd\x08\x88\x0e\x4c\x84\x63\xd3\xca\x60\xef\x46\x8a\xd9\x30\xd2\x01\xf9\xbc\xdd\x76\x7b\x1c\xc7\x87\x42\x87\xb8\xeb\x44\x23\x8b\x36\x5a\xed\x2a\x8e\x0f\xc3\xa5\x82\xce\xfc\xe7\xa1\x70\x92\xab\x4e\xf7\x02\x65\x31\xd0\xad\xea\xc5\x3a\xe3\x28\x8e\xa9\x51\x5b\xe0\xf3\x01\x21\x98\x2f\x10\xb6\xcb\x89\x76\xca\x27\x8e\xba\x69\x81\xf8\x7b\x28\xa1\x78\x76\xff\x95\xde\x66\x96\xa7\xda\x13\x63\x21\x60\xd9\x0e\x09\x39\x99\x06\x29\x6a\xf9\x7d\x36\x29\x41\x3b\xf0\xd0\xb5\x4f\x3c\x72\xee\xc8\xcf\x1d\x0e\xba\xa0\x8f\xff\xbe\x9e\xf8\x52\x9b\x0e\x0f\x39\x1d\x4a\xcc\x92\x81\xbe\x0d\xb2\xa0\x4f\xec\xb1\x61\x77\x28\xa6\xbb\xdd\x1c\x29\x86\x5f\x2e\xd9\x69\xb0\xed\x2c\x3b\x5d\x27\x16\x81\xc0\xfc\x6f\xaa\xa6\x61\x17\x25\x7d\x65\x42\x9c\x57\xf5\x17\x68\x06\x69\x3a\xda\xbb\x3b\xe4\xce\x58\xb5\xf6\x64\xe5\xe4\x70\x82\xeb\x9d\xf5\xc9\x26\x52\xc6\x57\xb4\x66\xa2\x41\x49\x2d\xe9\xf0\xfa\x51\x7a\xde\x53\x21\xec\x00\x21\x09\x33\x1e\x82\x4b\xde\x61\x19\xc2\x2d\x8a\xfa\xde\x8b\x5e\x00\x94\xd6\xdf\xc8\x2f\x39\x08\x00\x3b\x39\xc2\xdf\x02\x84\xbc\xa3\xb0\x93\x6d\xef\x92\x1b\x84\x3f\xfd\x37\x2f\x95\xb2\x24\xd4\xbf\xdb\xed\x6c\xfe\xe4\xe5\xea\xe3\xd0\xce\x36\x54\x14\x4f\xc0\xca\xaa\xe9\xd3\x91\xfa\xae\x58\x41\x0b\x43\x6d\xef\x59\x20\xbb\x80\xe1\x5a\x0c\x70\xa2\x4e\x11\x55\x43\x3a\xa3\x01\xe0\x11\xa0\x0d\xae\xc9\xfd\x4e\x02\xb2\x45\xe2\x99\xff\xce\x24\x25\x33\x27\x02\xd7\xee\x32\xd6\x34\x50\x07\xd7\x7f\x2e\x59\xcd\xa7\x42\xd6\x98\xbb\x9b\x3e\xbd\xa6\xfa\x2a\x56\xbf\xb9\x72\x68\x40\x24\xe2\xa3\x42\x5d\x95\x4f\x92\x19\x1d\x29\xee\xcc\x01\x9e\x9d\xb3\xe2\x77\xcf\x52\x41\x1b\x91\x30\x34\xad\x41\xab\x2b\x65\x45\xa6\x9e\x70\xbd\x33\xdb\xe7\xe5\xf0\xf6\xe1\xff\xa8\xed\xd3\xb9\xca\x03\xac\xbc\x67\x03\x71\x0c\x91\xb8\x1f\xd9\x40\x6a\x0d\xbd\xa3\x70\x00\x8a\xc5\xa1\xb1\x5a\x9e\x88\x8e\x32\x17\xc2\x22\x34\x0b\x0e\xa8\xe6\x03\x8f\xee\x30\x87\x4e\x12\xc9\x1c\x47\x05\xb5\xb3\x1f\xa1\xed\x16\xd2\xf4\x96\x0c\xd8\x95\x41\x8e\xa4\x06\x36\x64\x87\xb9\x9c\xeb\xc0\x06\x39\xd0\x85\x4f\x26\xf8\x6b\xfa\x55\xa2\x31\x30\x18\x44\x89\x90\xf3\xe4\xf1\xfd\x46\x8e\xf8\x15\xf3\x9d\xcd\x49\xee\x0d\xb0\xc9\x4e\x15\x88\xc8\x5e\x62\x25\x1f\xcb\x3e\xed\xba\x86\xc1\xff\x2d\xab\x0b\xd2\x4c\xae\x20\x57\x1d\xde\x76\xf2\xe0\x15\x5b\x5a\xa8\x71\x4e\xdc\x34\x38\x09\xd6\x85\x07\x37\xbb\x4f\xdd\x29\xc0\x59\x9c\x55\xea\x42\x67\xc8\xc9\x84\x32\x59\x6f\x12\x0f\xfe\x1b\x6f\x0a\x3e\x2c\x68\xc0\xf2\x0d\x94\xc0\x3c\x7b\xd7\xa4\x92\x7c\x0e\xd8\xf9\xe4\x56\x07\xcc\x6a\x6c\x05\xbb\x40\x77\x44\x8f\xba\x01\x4f\x4e\x1c\xb7\x58\x0b\x09\x98\xdc\x0b\xfd\x7e\x9b\xec\x03\x5d\xc7\x15\x6e\x54\xf7\xfb\x31\xbe\x2e\xc1\x8e\xe2\x0a\x5f\x04\xa8\xcc\x5e\x8e\x20\x7c\x6e\x35\x93\x2d\xf8\xf1\x17\x05\xf4\xd5\x5b\x32\xc1\xa5\xd3\x57\x6f\x7f\x28\x5f\x8c\xc7\xad\xa4\xd6\xc4\xac\x9d\x7b\x57\x94\xbd\xe2\x81\x48\x0e\xdd\x9f\x93\xf6\xe0\xa2\xa6\xf9\xd7\x9d\xaa\xd6\x53\x8a\x6e\xff\x40\x26\x2f\x8e\x8e\x5a\xb4\x24\xc9\x82\xc8\x7a\xad\x46\xb4\x6f\x4a\xa4\xee\xd2\xdb\x39\xde\x28\x81\xf9\x42\xc1\x64\x2b\xb1\x9f\xb6\x7f\x20\xe7\xd3\x8d\x1e\x2d\xd0\x7e\xb0\x4f\xde\xba\xe2\xc9\x12\x73\x53\x0e\x5f\xe0\x15\xca\x92\x82\x34\xc9\x12\xe1\x4d\x57\xb8\x2d\xb3\xbf\xa9\x6a\x6d\x4b\xa3\x0d\x58\xba\xe5\x71\x8d\x5b\x5c\x20\x94\x7d\x5b\xab\xb8\x8a\xe3\x64\x43\x36\x1d\x66\x47\xa1\x83\x8d\x23\x3a\xd6\x64\x15\xc7\x2b\x8b\x89\xba\x03\x8e\x63\x9f\x50\x5f\xc5\xf1\xc6\xa3\xf5\xd7\xb2\x09\x03\x5f\xa1\x1a\x03\xe9\x5c\xae\x35\xc2\xb7\x64\x85\x13\x39\x71\xdb\xed\xa6\xcb\x5c\x24\x2b\xf0\x2a\x73\x4e\x3e\xe4\x62\x95\xae\x19\x4f\x5a\x7c\x2e\x8b\x6c\x10\x66\x71\x7c\x28\x47\x71\x4b\x6e\x07\x47\x71\x6b\x47\x81\xf0\x65\x78\x39\xd7\x72\x75\xa3\x77\x0b\xa8\xea\xc2\x0e\xa7\xaf\x41\xfe\x41\x72\xac\xba\x1e\xed\x1c\xab\x19\x5d\xd3\x9a\x5a\x6f\x78\xab\x1c\xdc\xe4\x69\x65\xfc\x42\x2d\xd6\xc8\x18\x44\x03\xcf\x0c\x11\x7e\xab\x56\xd0\x6c\x14\x8d\x3d\x41\x82\x46\xf3\x8c\x5f\xe5\x25\x2b\x24\xa3\xa0\x2d\x7c\x92\xb0\xbf\x72\xc8\x79\x72\xd9\x57\x29\xf1\x12\x00\x1e\xe3\xcb\xf0\xf4\xf6\x6b\xde\x67\x10\xae\xcd\x22\x44\xd7\xbf\xcb\x78\xcc\x8d\x7f\x17\xb0\x9e\x61\x21\x11\x99\x74\xc0\xc5\x23\x9b\x77\x18\x7c\xe4\x1e\x00\x01\x81\x8f\x5b\x8f\x7b\x20\x74\x5a\x52\xcf\x9c\x6e\xeb\x1c\x05\x24\xc8\x9e\x0d\xef\x40\xeb\x41\x9d\x6e\xaa\x4d\xa2\xb4\x30\x64\x85\x20\xc0\x31\x5a\x0e\xd6\x09\x8b\x32\xcb\x50\xc4\x74\xf7\x0a\xde\x65\x6a\x49\xa2\x3d\x47\xf4\x73\x75\x35\x66\x51\x1c\x97\x66\x0f\x9a\xdb\xb0\xaf\xf6\x82\x48\x13\xd6\x14\xbb\x39\xcb\x04\x76\xe4\x59\x06\x2e\x96\x65\xd9\xac\xd5\xee\x19\xf8\xae\x33\xdd\xc3\x63\x1f\xc4\x2f\x86\xd7\xd5\x66\x92\x92\xf8\x28\x2d\x81\xf6\xa2\x3c\x3a\x7a\x01\x36\x03\x84\xc5\x31\x05\xcd\x50\xd9\xa4\x9c\x28\x8f\x2c\xca\xc3\x75\xc0\x0d\xe1\xb3\x72\x8e\x17\x49\x8e\x50\x3b\x6b\xc0\x7c\x48\x4f\xf6\x81\x99\xec\xc3\xaa\xcb\x52\x37\x7b\xdc\xc4\x15\xac\xe0\xdf\x39\x87\x6d\x94\x57\xed\xe5\x6a\xa4\xcc\x82\x9e\x81\x73\x69\xb6\x50\x4e\xdc\xa8\xa0\x75\x33\x12\xd5\xa8\xc9\x05\x6b\x96\xb7\xa3\xbc\x2c\x8d\xcc\x6c\xf0\x00\x2a\xbf\x05\x60\x9c\x0c\xfd\xac\x66\xcd\xdc\x5b\x91\x80\xd3\xe9\x2c\x88\xe6\x6c\xda\x9d\x22\x92\xae\x3d\x22\xe9\x6c\xaf\xbe\xea\x59\xa0\xaf\x7a\xf6\x8f\xd7\x57\x3d\xfb\x7f\x80\xbe\x6a\xc7\x48\x27\xd0\x56\x1d\x34\xe0\x79\xa2\xc2\xea\xd9\xb7\x29\xac\xbe\xfa\x6f\xa6\x20\xdb\x5a\x9e\x93\xb6\x2e\xff\x11\xb4\x9e\x6f\xae\x6c\x2d\x45\x81\x44\x5a\x82\x5a\xbf\x9e\x33\xab\x0e\xa3\x8c\xc5\x96\xde\x81\x39\xf3\xbe\x29\xbb\xf8\xc3\x63\x43\x3a\xb4\x75\x79\x10\x5a\xbf\xb0\x65\x02\xcc\x07\xe3\x39\xc4\x92\x92\x33\xf0\xe3\xed\x4f\x5f\xde\x07\x35\x6e\x9c\x6f\xdc\x9d\xa3\xb8\x96\x5d\x8a\x4b\xd9\x2e\x77\xcf\x4b\x52\x93\x65\x40\x2f\x79\xc7\x87\x9b\xe3\x53\x5b\xa9\x80\xb3\x34\x9b\x16\x49\x85\x9c\x5e\xb9\x11\xf5\x74\x13\x94\xa0\xb9\x40\xe0\x36\xa2\x4b\x87\xad\xb6\x5b\xd6\xa3\x19\x1a\x34\x4d\x56\x60\x16\xdd\xcd\x4f\x18\xca\xfa\x89\xf6\x96\x3f\x4f\x16\x01\x8e\x5d\x86\x17\x17\x0b\x0d\x01\xf0\x97\xbe\xa3\xa3\x6a\x83\x3f\xff\xb7\x29\x78\x74\xe8\x42\xe2\xe3\x59\x4d\x43\xb8\x04\x6c\xde\x4f\x2d\x2a\x51\x05\xdc\xbb\x2b\xe3\xd2\xb0\x77\xf3\xff\xd3\x97\xf7\x84\xba\x67\x9d\xdd\xbe\x1b\x9d\x26\xd0\x90\x55\x79\xdd\x8b\xce\xec\x12\x34\x54\x62\x85\xa7\x7f\x46\xc3\x77\x5d\x26\x48\x53\xc5\xae\x59\x59\x06\xe5\xc2\x04\x5d\x30\x4c\xec\x78\x65\xa6\xf6\xd1\x34\xa3\x5f\xb5\x8a\x9e\x67\xbb\x49\x42\x53\x4e\x9d\xdf\x4f\xc2\x46\x2c\x44\x40\xcb\x41\xe7\x28\xab\x4b\xdd\x68\x53\xbe\xca\xcb\xf2\xc7\x7c\xf1\xd5\xd9\x6f\x29\xad\x78\x5f\x0f\xbc\xa7\x8f\xe7\x7f\x3c\xd7\x76\x6e\x7f\xf6\x78\x4e\xff\x7b\x55\x16\xa7\xbd\x1a\xb5\x7e\xee\xdb\x7d\xea\xeb\x1d\xfd\x5d\x62\xf5\xd2\x8c\xed\x36\x40\xa1\xda\x06\x6a\xd0\x5f\x1b\x2a\x12\x34\xa4\xc8\x13\x9a\xcd\x1b\x97\xc3\xb6\x36\x37\xfb\x03\x33\xee\x65\x5b\xe7\x9b\x84\xe2\x47\x48\x52\x4b\x70\xe0\x9a\x1c\x4e\x5e\xf0\x3f\x90\x49\x1c\xd7\x2f\x8e\x8e\x24\x65\x2a\x80\x32\x55\x9e\xaf\xf1\x7d\xde\x38\x78\xb2\x43\xb8\x26\xca\x43\x08\x03\xd7\x5b\xdb\x6d\x14\xbc\x28\xff\x28\x91\x6f\x06\x63\x5c\x4e\xfc\xcf\x9e\xaa\xdb\x03\x8e\x98\x46\xdd\x51\x99\xbc\x3d\xad\xa3\xa7\xa8\x3f\x85\x07\x77\x6f\x36\x0f\x30\x79\xfb\xa8\x6f\x7e\xaf\x2d\x90\x03\x65\xa6\x8f\x0a\xcb\x81\x38\xf4\xd0\x98\x5c\xf4\x94\x04\x07\x53\xb3\x24\x51\xee\xaf\x2e\x54\x40\x12\xd4\x37\x42\x98\xe0\x40\x42\x42\xde\xea\xd6\x42\x8e\x26\xd4\x8f\x67\x9e\xc1\x17\x61\xa1\xa6\xf0\xc0\x84\xbf\x4e\x18\xe6\x08\x57\x21\xc4\x88\xe3\x4e\x42\x52\x0d\x9d\x0b\xd0\x2d\x05\x06\x31\x54\x39\x5f\x54\xeb\x4d\x49\x05\x8d\x10\x02\x29\x48\xa8\x41\xda\xd5\x73\x0d\x77\x7f\x7d\xdb\xf3\x40\xee\x34\x79\x30\x23\xda\x57\x57\x77\x36\x71\x45\xd8\xf0\x3c\x2b\xa0\x91\x39\xf8\x81\x73\x12\x12\x16\x49\xd5\x3d\x4d\xb8\x87\x08\x06\x50\x81\x44\xa3\x9b\xa4\x0a\x66\x3f\x0f\x25\x8d\x6c\x99\xbc\x49\xf2\x70\xb9\xaa\xe0\xd5\x52\xb7\x4d\x1c\x1b\xc7\x88\x83\x1b\x32\x69\x14\x83\x87\xd0\x34\xa9\x87\xb6\x4a\x6d\x7c\x52\x74\xc6\xbf\xdd\x7a\x9b\x0c\x44\x43\xa6\x49\x80\x6a\xbf\xaa\x3d\x95\xa3\x83\xda\xdb\x8d\x98\xe2\x1c\x3f\x04\x67\xd1\x30\xa8\x39\x80\x8b\x3f\x67\xee\x6c\xa4\xd6\xf6\xae\x6f\x8f\xef\x53\xc9\x1b\x03\x85\x35\xe3\x73\x7b\x85\x69\x9e\xc3\x4b\xc7\x3b\x95\xc9\x58\x8b\xb8\x67\x64\xf3\xed\xdc\x8d\xe2\xc3\x93\x0f\xf7\xb6\xfd\xb9\xd4\xfe\xda\xbb\x63\xde\x73\xbc\xad\x52\xf7\x30\x42\xaa\xd5\x5d\x85\x36\xee\x78\xec\x3c\x0e\x6e\x7a\x5c\x1d\x78\xe7\x62\x8f\x3e\xae\x91\xd8\x00\x07\x07\x42\xeb\x66\x24\x69\x57\x88\xd5\x91\xab\x7b\x22\x59\xea\xc5\x08\x54\xf6\xd9\x1d\xe3\x97\x9e\x1e\x7d\x1a\x21\x58\x14\x5d\x33\x73\x52\x51\x35\x73\xbf\x26\xf2\x14\x50\x84\xa9\xa7\xbb\x9f\xd4\x03\xfa\xda\xa4\x1e\x82\x15\x7d\x3b\x8f\xf3\x84\x22\x84\xb2\xe4\x35\x80\x58\x6a\xb4\xf6\x25\x39\xae\x1a\xb1\x0a\xf8\xfb\xd4\xee\x57\x09\xc8\x9a\x07\x1a\x3b\x9c\xe0\x59\x14\x40\xb0\x68\x8e\x70\xdd\x85\x72\x9d\x84\x64\xb0\x32\x84\xcb\x24\x9c\xea\xb3\x2f\x2f\x3f\x9e\xbe\x3b\x7b\xf7\xe9\xe3\xe8\xd5\xa7\x0f\x9f\xdf\x9f\x9c\x9d\xc8\xe9\x73\x4e\x60\x3d\x89\xb1\xf1\x21\x9a\x4b\xcc\x2e\xf9\x84\x3c\xb0\xc6\xdc\x6e\x93\x8a\xd0\x81\x59\xc4\xa1\xde\x96\x36\xaa\xc9\x31\xc5\xd5\xac\x1a\x68\x06\x53\xb3\x0f\x11\xce\x77\x3b\xd5\x63\x10\xb8\x38\x10\x7d\x4a\x85\x28\xa9\x6f\x3c\xa1\xb7\xe3\xe8\x7a\x45\xb9\x9f\xce\x1a\xb3\x4b\x40\x05\x0d\xb3\xed\xf6\x41\x67\x51\x83\x43\xd0\x0e\x33\x9a\xd0\x8d\x13\x03\xaf\x60\xcd\xac\x9e\xe3\x24\xef\xec\xb2\x59\x3d\x07\x57\xb0\x5a\xa2\x94\xab\xe3\x0f\x0e\x9f\x72\xdf\x2a\x78\x95\x50\xac\x17\x39\x24\x58\x23\xcc\xe7\x72\x2a\xc2\x54\xc9\xb6\x85\x29\x49\x83\x3b\xfb\xdb\xe8\x29\xe9\x68\x0c\x01\x7a\xcf\x71\x83\x70\xbd\xd3\x3a\x4d\x2a\xc9\xda\x39\xe8\xf5\xf5\x34\x81\x7c\x28\xaa\xee\x04\xd1\xae\xa7\xac\x4a\x45\x4f\xfd\x1d\x66\x30\x8e\x7d\x0b\xd0\x21\x43\x08\x94\xd6\xf4\x8a\xd6\x0d\x4d\x50\x60\xa5\x1f\x58\x3f\xd3\x1b\x26\x22\xab\x9c\x3c\x48\xe8\x2a\x62\x5a\xb1\xcc\x7b\x29\x5f\xd9\xff\x2e\xf9\x26\x3f\x4b\x5e\xc5\xe7\xd1\xaa\x3a\xe9\xb3\x65\x58\x10\xed\x22\x03\x61\xed\xdb\xd5\xf9\xc7\x71\x9c\x19\x57\x5e\x86\x35\xa1\x45\x84\xbb\xda\x54\xbe\xf1\xea\xc0\x37\x9e\xfc\x0c\xee\xf1\x6a\x84\xdf\x1b\xad\x59\x63\xfb\x02\xaa\x63\x43\xea\xc6\x9d\xfe\xf6\xa4\x66\x36\x97\x72\xcf\x29\x46\x10\x1e\x6d\x0d\x21\x40\xa3\x9e\x69\x8f\x65\xd7\x7a\x84\xbb\xad\xa7\x47\xb1\xba\xd3\x75\x56\x0d\x28\x0c\xbc\xef\xed\xab\xa0\x34\xc4\x5e\x5c\xd3\x82\xe5\xc2\x03\x83\x4f\xaa\x49\x05\x33\x08\x07\xb0\xac\x69\x33\xe0\x12\x9a\x0c\xd3\x56\x9c\x88\xa9\xe8\xd3\x51\x35\xe1\xe1\x79\xd7\x32\x1f\xa5\x82\x2c\xd1\x4b\x3e\xd2\x4d\x05\x1e\x1d\x3c\xd7\xaf\x1f\x12\x25\xf9\x08\x84\xa1\xea\x8a\xd1\xbf\x7d\xca\xe8\x76\x0b\x0e\x6b\xcc\xfe\x36\xd7\x5f\xd9\x6c\x8e\x3d\xfc\x9d\xed\x63\xfb\xb6\x5b\xde\x95\xf0\xef\xac\x42\xf7\x80\xe9\x15\xf3\x0d\xae\x44\x60\x11\x4b\x84\x6f\x75\x55\x59\xab\x2b\xdf\xe4\xaa\x1a\xdc\x30\x3f\x33\xb1\x7a\xca\xca\x9b\x2a\x6d\xa3\x3d\xde\xa7\xe7\x91\xd6\x77\xcd\xdb\x24\x5d\x5b\x2c\x7c\x8c\xe4\x60\x6b\xe5\xc0\xb0\x56\x0e\x0c\xfd\xe9\xa7\x6e\x42\xab\x1d\x0a\x89\x63\x6f\xc1\x1f\xa3\x92\x9d\xb6\x62\x87\x50\x5e\x78\x7e\x49\x31\x27\xe5\x90\x7d\xae\x35\xa0\xcc\x93\x05\x2e\x3b\x2e\x12\xe6\x9e\x5a\x84\x93\x28\x06\x22\x26\xd2\xf6\x78\x62\x33\x51\x09\xc5\x8b\xae\x71\xa2\x1c\x62\x8f\xff\x08\x9d\xd6\x0d\xcc\x8e\x00\x56\xf8\x9b\xa8\x43\x98\x3a\x2d\xdd\x80\x67\x77\xd3\x1f\xcc\x73\xfd\x9b\xa7\xb7\x03\x29\x34\xe1\x34\x30\xb8\x90\x8f\xad\xfd\x4e\xe1\x86\x84\xb4\x31\xd0\xda\x4d\x8f\x7e\x57\xce\xb0\x9a\x59\xd3\x3d\xae\xc6\x09\xb8\xcf\xbb\xbb\x4b\xf5\x56\xee\x81\x89\x26\x08\x4a\xb3\xe2\x0b\x49\x0c\x34\xb3\x85\x25\xf9\xe9\x8b\xf1\x78\x81\x5e\xb0\x65\xb2\x20\xc4\xe6\x0b\x5b\x5f\x2a\x94\x75\xb0\x0c\x89\x4e\x67\x26\xb8\x18\x1f\x23\xf0\xeb\xed\x27\x68\x01\xef\x9b\xc4\x5f\xd8\x36\x58\xd8\xde\x7d\xfe\x12\x97\xbd\x35\x68\x55\x20\x99\xa1\x65\xe8\xf8\xcf\x09\x39\x0d\x98\x4e\x0e\xce\x32\xf5\xf2\xaf\xb4\x33\xcc\xfb\xdd\x41\x9e\x14\x58\x6b\xaa\xae\x49\xc0\x50\x5a\xbd\xca\xdb\x11\xe3\xa3\x35\x5a\x77\x6f\x80\x6e\x91\xf2\x05\xda\x4b\x4c\x8a\xd9\xed\x9c\xac\x67\xb7\x73\x7b\x5c\x56\x71\x7c\xb8\x81\xa6\x86\x77\x4c\x28\xfd\x87\xd3\xda\xc3\xe8\x5c\x63\x74\xf1\x87\xe3\xa9\x38\x3a\xce\xc0\xe7\xeb\xf1\x8b\xfa\x07\x01\x54\x1a\x9f\xd5\x47\xc7\x3e\x6e\xaf\x15\x6e\x37\x96\xd4\x4d\xc2\x43\x4d\x9a\x70\xb7\x26\x14\x33\xf0\xc6\x3a\x3b\xee\x5a\x17\xf4\x2c\x4f\xb5\x2c\x58\xee\xea\x83\xbf\x97\xfc\x58\x79\xfa\x7f\x83\xec\xc4\xb1\xb2\x32\x0d\x6c\x24\x3f\x5a\x1f\x67\x71\x9c\xd0\x41\x61\x23\x07\x0f\x65\x60\x60\x1d\xee\x0e\x20\x5d\xbd\x75\x7e\xcd\x8a\x57\x50\x3c\xc2\xdc\x78\xe7\xc2\xaa\x34\x37\xde\xc9\x80\xb0\x1d\x6c\x05\x88\x1e\xdb\xaf\x5f\x07\x28\xf4\x87\x7d\xf8\x77\x6e\x03\x70\xdb\x65\xfe\x4a\x72\xaf\x08\x9b\xe2\x95\xbe\x47\x9d\xcd\xb1\x24\x31\x69\x01\x4f\x2a\x3a\x99\x7c\x6c\xb9\x71\xd7\x36\x9b\x63\x20\x73\xad\xc5\xdb\xc2\x78\x68\xab\xc8\x04\xe7\xc4\xfa\xf3\xae\x7e\xc8\xc1\x6b\x27\x27\x10\xce\xa3\x26\xad\xfc\x81\x50\x7e\x4e\x21\xc5\x82\x93\xed\x36\x61\xe0\x6a\x98\x4d\x93\x32\xd5\x2d\x9b\xd8\x11\xb2\x54\x99\xaa\x8e\x59\xcd\x04\x8e\x50\xb6\x90\x04\x80\x3e\xec\x8a\xa2\x54\xcf\xd3\x64\x41\x0e\x27\xb8\x4c\xc3\xe1\x99\xfa\x50\x56\xa6\x76\x44\x36\x8c\x85\x1a\x83\xe9\x3f\xce\x2d\x87\x63\x87\xd2\xeb\x83\x1c\x99\x73\xb0\xa6\xe9\xff\x5e\xab\xc6\x55\xa9\xce\xe0\xd1\xf9\xe5\x2e\xb1\x8e\x60\x90\x09\x43\x84\x19\xc9\x4d\x43\xc6\x35\xee\x0f\x0c\xce\xa1\x0a\xc6\x98\x54\x36\xc3\xac\x76\xac\xa2\x55\x41\xb9\x4d\x2a\x1c\x41\x53\x91\xdc\x91\x1c\xa9\x14\xe0\x1d\x0c\x40\x92\x9b\xc3\xb2\x0f\xba\x0f\x07\xfa\x97\x08\x8d\x0f\xe8\x20\xef\x90\x7b\x73\xa7\x87\x06\x72\x0c\xbf\xfb\x6a\xa0\x9d\xde\xdf\x42\xc7\xe1\x93\xd7\x6f\xd7\xd5\x63\xcc\xc3\x49\xe8\xcc\x63\xa7\xba\x77\x49\x8b\xbb\x79\x24\xfb\xd9\xaf\xc7\x6c\xa7\xc1\x0a\xf4\x47\x28\x29\x27\x4b\x33\x7e\xa5\xe1\x26\xcc\xa4\xc0\x05\xe8\xc0\x74\x74\x1c\xac\x95\x3b\xc3\x33\x87\x22\x5e\x8a\xdb\x50\x7d\x51\x36\x65\x0f\xf7\xbb\xae\xb3\x3c\x7b\x52\x25\x35\x6b\xcd\x01\x3c\xef\x60\x4c\xb9\xc7\x8c\xe3\xdb\x84\xe1\x08\x06\x11\xe1\x1a\x61\x08\x38\xe8\x7c\x8a\x38\x8e\xe8\x12\x1c\x55\x5b\xb5\xa2\x0a\x43\x41\xfd\xea\x00\x15\x52\xe9\x10\x13\x36\xc2\xd5\x23\x55\xea\x30\x54\xc2\x5e\x81\xb0\xa9\xec\x5a\x26\x7a\xd6\xb8\x83\x77\x96\x39\xc2\x87\x9e\x3b\xc2\xd7\x7d\x30\x66\xae\x80\xa9\xa3\xc3\x41\xb5\x57\xe5\x5a\x3a\xc9\xd6\xaa\x0b\xdc\x36\x64\x35\x5b\x75\xc9\x99\xc2\x50\xac\x9c\xb8\x6f\x70\x61\x02\xb7\x25\x12\x63\x27\x35\x59\xe9\x60\x24\xc6\x1a\xcb\xdc\x7d\xf4\xee\x88\xe3\x38\x59\x28\x38\x7d\xb0\x90\xb8\xb9\xa3\x9e\x7a\x7e\xc5\x20\x6f\xc0\xb1\x84\x9b\x80\x91\xe5\x20\x69\xbb\xc1\x92\xdf\x20\xf4\x21\x6f\x40\xb8\x21\x3e\x03\xb3\x88\xe3\x43\xfa\xa0\x23\x1f\xdc\x86\x3a\xb3\x9f\x78\x79\x1b\x32\x41\x0b\x5c\x76\xeb\x1c\xaa\xb2\xe7\xfb\x07\x57\xdb\x6d\xb3\xdd\xb6\xdb\x6d\x39\x5d\x7a\x9c\xb4\xdc\x0b\x4b\x8f\x7b\x66\x41\x10\xd1\xf7\x21\x4a\x93\x08\x4d\xcc\x26\xf3\xed\x36\x7a\x16\xe1\x86\x88\x99\xf0\x54\x69\x20\x08\x82\x93\xaa\xf7\xad\x5c\x02\x0f\xc3\xe0\xe1\xe7\x8b\xd6\x58\x40\xe1\x2d\xb5\x1f\xed\x75\x9a\x94\x09\xc5\xd1\x4f\xb2\x87\x92\xb5\x85\x8c\x23\x63\x30\x03\xa2\xd3\x01\x21\x5e\xf5\x18\x97\xbb\x8f\x91\x6d\x77\x08\x65\xea\xca\x2d\x77\xe2\x0f\xdd\x89\x97\x42\xd0\xf5\x06\xba\xf1\xd3\x97\xf7\xbe\xdc\x4e\x54\xa3\x68\x9c\x23\xdd\xee\xab\xe4\xbe\xad\xcb\x2c\xdf\x81\x87\x9e\x4e\xc9\xbd\xa5\x4c\x6f\xe5\x0c\xbb\xfe\x31\xe3\x02\xf5\x18\xf5\x3a\x8a\x87\xae\x75\x92\x2a\x00\x5c\x6f\xfe\x61\xf7\x04\xfa\x9a\x60\xbf\x19\x91\x6d\xf3\xce\x33\x5e\x8a\x63\x67\xbd\x34\x39\xd0\x49\x62\xbb\x0d\x3e\x28\x0e\xc3\x84\x90\x08\x63\x92\xe0\x3c\x48\x50\x06\x95\x95\x1b\x43\xfe\xc0\x18\xaa\xc1\x31\x30\x02\x91\xce\xb4\x63\xd6\x87\x06\xf2\xd6\x41\xfd\xc0\x89\x35\x47\xbc\xbb\xbb\x99\xf6\x90\x40\x08\xe1\xe0\xee\x55\xc7\x65\x96\x2f\x07\xbe\xd6\xda\x6c\x7e\xa0\x7c\x31\x03\x2d\x6a\xa4\xbd\x0e\x02\x59\x7a\x14\xb7\xb8\x9e\x03\x70\x4f\xea\x21\x48\x45\xee\x77\xc6\x05\xaf\x86\x99\x03\x04\xde\x78\x5c\xa1\x72\x96\x34\x40\xdc\x21\x39\x85\x73\xd2\xa8\x70\x90\xd8\x78\x8c\x6e\x52\x5d\xf9\xbe\x96\x66\x4d\x50\xd0\x11\x54\x3b\xe7\x79\xfd\x33\x0e\x3c\xa3\x5f\x68\x47\xec\xe0\x66\x7d\xbf\x1b\x76\x3f\x08\x78\xd7\xf5\x7a\xc7\xf1\xba\x67\x75\xe3\xac\x4c\xc0\x0b\x86\x44\x57\xaf\xf2\xb2\xbc\xc8\x17\x5f\x9d\xbb\x8b\xed\x36\x19\xcc\x00\xc1\x04\xc4\x8e\xa6\x4b\x56\x82\x1b\xbf\x34\x6f\x6e\xb9\x44\x60\xeb\x5c\x45\x59\x90\x9b\xcd\x59\x60\x4a\x3a\x6c\x29\xf1\x18\x28\x6f\x2c\x2a\xbe\x64\x97\x6d\xad\x94\x32\x64\xf7\xd9\xf2\x16\x9e\x97\x50\x57\x4d\x01\xfb\x02\x65\xdf\xac\x94\xe0\xbf\xd0\x6f\xf2\x73\x0e\xbe\xc8\xf2\xb2\x74\x9f\xf2\xb2\x24\x34\x05\xdd\x8c\x33\x1d\x1f\x3a\xb5\x46\x63\xe9\x22\x6f\x04\xf4\x31\xdf\x04\xee\xe6\x71\x45\xee\xd7\xec\x86\xf1\x21\x03\x34\xe8\xac\x92\x40\x73\xac\xfa\xaf\xde\x96\x4b\x77\xbf\x41\x7c\xd5\x10\x3c\x34\x53\x5a\x6a\x4d\x77\xb8\xf2\x9b\x31\x61\x7a\xad\xbb\x8f\x43\xe7\x05\xc4\xd3\xc9\xba\xdd\x50\xe3\x09\x5c\xd7\xa8\xc2\xd9\x5e\xd0\x51\x6e\xef\xdb\x6c\xbc\x5c\xe5\x07\x05\x41\x40\x10\x3a\x3f\x60\xc0\x6f\x40\xc8\xe6\xd9\x1c\x61\x88\xf2\xc8\x6c\x38\x18\x81\x40\xad\x53\x53\x36\xb8\x5a\x2e\xb3\x21\x61\x52\xed\x5f\xbe\x5a\x03\x1e\x08\x16\xe5\xd7\xa5\x02\xcb\x54\xb2\x4a\x15\x3d\x2e\xa9\xf0\xb1\xf6\x78\xa6\x7b\xb0\xc3\x7a\x9e\xb2\xa1\xeb\x18\x90\xea\xa8\xb6\x74\x54\xae\x0a\xd4\xfe\xf5\xfc\x0d\x84\x56\x49\x26\x18\xe2\xa8\x80\xad\xd1\x6e\x87\x73\x72\xcf\x40\xa9\x0f\x02\x3c\x1c\x1e\x7b\xb1\xf4\x1a\x3b\xe1\xcf\x0f\xfb\x7e\xeb\x8d\x54\x23\x97\x0d\xe7\x2a\x56\x76\x95\xc2\xc6\x48\x72\xa4\xd9\x84\xd9\x3c\x88\x53\xad\x3a\x2e\x67\xb4\xd5\x41\x4a\xb5\xb8\x6d\x93\xdf\x96\x55\x5e\x64\x60\x5f\x29\xd2\xf3\xcb\x96\x15\x7f\xa2\xb7\x98\x15\xf2\x8d\x15\x18\x7c\x8a\x7f\x54\x99\x0b\x2a\x72\x56\xca\x0f\x35\x6d\xda\x52\x60\x88\xed\xf0\xae\xc8\x80\x83\x94\xb9\x4b\x79\xc8\x65\x06\x78\xc0\x82\xad\xe9\xa9\xc8\xd7\x9b\xec\xb5\xc4\xd7\xbc\xba\x4e\x10\x56\x7e\x5a\xf3\x59\xe4\x86\x7f\x74\xcd\xc4\xea\x08\xd4\x41\xa3\xf9\xd4\xdd\x15\x98\x8a\x10\xb8\x75\xdd\xed\x50\x1c\x37\x54\x9c\xb1\x35\xad\x5a\x91\x3c\x20\x9f\x98\xbc\xa0\x2e\x8a\x15\x95\xb3\xcf\x49\x22\x48\x3b\xa3\x40\x44\xc2\x98\x51\x2a\x07\x4b\xb8\x04\x74\x63\x9e\xb2\x02\xeb\x60\x15\x7f\xf4\x93\xf5\x10\x31\x57\xae\xf2\xe2\x38\xe1\x5a\x7f\x55\xa7\xa8\x37\x84\x73\x7b\x89\x28\xb4\x0b\x15\xdb\xd0\x41\x6b\x03\x29\xee\xf0\xff\x98\x84\xa1\x04\x8c\x2f\xef\x38\xee\xc5\x9b\x03\x25\xc8\x85\x53\xfd\xd4\xd6\x22\x66\x03\xd0\x03\x27\x40\x95\xe9\xc9\xd2\x73\x6a\x72\xad\x35\x3c\xfd\x88\x02\xe8\x5e\xc7\xf7\xd6\xbb\x74\x43\x8e\x71\x41\x9e\xe3\x35\xf1\x9c\xe7\x7a\xfb\xf0\xb6\xa3\x26\xa2\x38\x84\xde\x2d\xdc\x5a\xfb\xdd\x14\x78\xbd\xd3\xfe\xc2\x4d\x10\x5f\xe7\x24\x57\xaf\x91\x7f\xbb\x4e\xc9\x15\xbe\x52\xd7\xcb\xf4\x89\x17\x7e\x41\x53\xb6\xf6\x0b\x0f\x0e\x5e\x11\x8a\x2f\x77\xbe\x77\x2d\x3f\x16\xa9\xe8\x4c\x67\x30\xbd\x71\xcc\x09\x21\x1f\x3a\x93\x6e\x91\x02\x21\x8b\x69\x08\x72\x44\x7a\xae\xf8\x50\x42\x36\xd3\x1b\x10\x3d\xe9\x93\x21\xb9\x2d\xfb\xad\x98\xca\x8d\x5c\x71\xd8\xd3\x6a\xbc\xa7\x41\x66\x94\x7d\x4a\x84\xd1\x01\xb1\x4d\x40\x28\x4c\x42\x38\xd4\xcc\x51\x76\xad\x5c\x3c\xe0\x01\x6f\x69\x2a\x98\xee\x0e\xed\xe0\x37\x93\xc3\x58\x4f\x93\x9a\xe8\xe9\xc2\x66\xda\x6c\xdb\xb5\x24\x79\xfb\xbe\x9b\xf8\xb4\x0b\xeb\x72\x85\x2a\xfb\x0e\xbe\x31\x83\x58\x3f\xe4\x22\xe1\xc8\xd0\xab\x7e\xd7\x99\x96\x1e\xe1\x81\x31\x74\x06\x61\xb3\xaa\x61\xa0\x1d\xd6\xd7\xe7\xd9\x28\x1a\x27\x54\xc3\x80\xed\x36\x1a\xb5\xfc\x2b\xaf\xae\xed\x5d\x7a\x84\x90\xc4\x1a\xd5\x21\x21\x6b\x53\xc7\xc3\x83\xde\x61\xaa\x26\x49\x76\xe6\x46\xcd\x9a\xdd\x2b\xd7\x21\xdd\x4c\xc1\x79\x98\xca\x94\x25\xb5\xf1\x8c\xc5\x89\x40\xd8\x90\x7d\xdb\xad\x8b\x5c\x4f\x6a\xdf\x1f\x96\x7c\x37\x85\xd5\x26\x84\x50\x26\x28\x88\xf1\x8c\xee\xa9\xdd\x18\x72\xdb\x99\x67\x39\x68\xbd\x37\xf0\xcb\x84\x7a\x85\x6e\x8c\xf7\x08\xbb\xbb\x56\x4a\x24\xaa\xb2\x43\xc4\x12\xfd\x69\x03\x4c\x95\x7c\x6d\x2f\x9a\x45\xcd\x2e\x5c\x48\xc7\x69\x9e\x3a\xe0\x1b\xc7\xa5\x44\xec\xe0\xde\x82\x16\x11\xa6\x28\x33\xab\xfe\x12\x53\xbf\xc7\xa7\xfb\x1a\x57\xaf\x05\xf6\xfb\x61\xea\x38\x09\xeb\xf8\xd4\x95\xaa\x84\x1d\x04\x3c\xad\x6d\xeb\x68\xe7\xd0\xb0\x59\x35\x27\x42\xfe\x8c\x37\x73\xc2\xe1\xa1\x98\x93\x1a\xc6\x59\xc1\xfc\xe9\x7b\x7d\xbf\xff\xae\xe9\x97\xde\xe5\x5d\xb7\xd9\x9a\x98\xd2\x07\x10\x4a\x24\x9c\x9e\x1a\x4e\xb8\x37\x49\x59\xa4\x68\x46\x35\x5f\x78\x72\xd8\x37\x1b\xd6\xc7\xb9\x72\x51\x36\xec\xec\x78\x71\x03\xb9\x8b\x1b\x48\x7e\x8f\x24\xad\x22\x54\x68\x34\x31\xae\xe7\x98\x4d\xbf\x26\xc6\x58\x31\xab\x92\x06\x1d\x0c\x2e\x27\x99\x78\xc0\xf0\x6b\xff\xfa\x69\xe8\xa4\xdb\xc0\x83\x07\x39\xa9\xa6\xf2\x14\x27\x35\xca\x6a\x6c\xe0\xd6\x21\x21\xab\xed\x36\xc9\xe1\x10\x9c\x4a\xa2\x25\x24\xf0\x5e\x9a\x43\xd8\x8c\x16\x86\xd6\x5b\xe4\x9c\x57\x62\x64\x2f\x1d\x72\x31\x6a\xf2\x35\x35\x39\xd3\x08\xa1\x2c\x57\xb0\x89\xed\x3b\xa6\x10\xf8\x23\xab\xa6\xd7\x89\xc0\x39\xca\x0c\x6c\xb5\x2f\x45\x1c\x9f\xc2\x9b\xb7\xb0\x1f\x3a\x62\x78\xed\xfa\xc1\x2e\x27\x93\x95\xc4\xf1\x21\xdd\x6e\x99\xaa\xc2\xf2\xa1\xa3\xde\x49\x58\xac\x72\xc6\x8d\xa3\x72\xe5\x6e\x14\xfe\x2b\x9d\xb3\x60\x47\xea\x88\xcd\x06\xff\xfa\x58\x23\x59\x62\x6e\x7d\x90\x99\x65\x7f\x5a\x93\x95\xa4\x88\x09\x59\x4d\x3f\x29\x74\x58\x61\x03\x81\x60\x1c\x53\x9a\xb9\xc3\xd5\xbf\xe2\xfe\x9a\xc8\xed\x52\xe3\x06\xed\x20\x62\xa8\xec\xe2\xd9\x03\xde\xd1\xb9\x75\x94\x74\x6e\x94\xa5\x3c\x63\x13\x12\xfa\x3d\x83\xa1\xd2\x64\x89\x8d\xf3\xaa\x73\x50\x84\xfa\xc4\xbf\x28\x0e\x4a\x6b\xb1\x9f\xb3\xe6\xa7\x86\xf1\x4b\xc5\x2c\x2b\xae\x86\x10\xf2\xb1\xf7\xf5\x8b\xe5\xb7\x3c\x24\x6b\x72\x71\x26\xf6\x50\x05\x03\xaa\xdd\x90\x7d\xd8\xe9\x8d\x3e\x24\xdb\xed\x44\x2d\xa1\x3e\x33\xa6\xaf\x35\x5d\xe7\x8c\x33\x7e\xe9\xa5\x00\x08\x73\xf1\x72\xb9\x19\x2d\x05\x83\x2e\xb8\xaa\xef\xba\x66\xb4\x9f\x86\x54\x05\x88\xd7\xb0\x0d\x08\xa2\x66\xc6\xc2\x82\x3a\x80\xaa\xe2\x07\x0e\xa1\x44\x75\xbb\xf9\x62\x75\xc2\x45\x7d\x9b\x50\x09\x1f\x04\xb6\x8a\x93\xe7\xca\x5f\x52\x5b\x5a\xef\x44\x49\xb7\x67\xbd\x1c\xbd\x8b\xbd\x83\x89\xb1\x43\x76\xb3\x01\x21\x29\xfd\xf9\xc0\x37\x89\xdf\x6f\x4c\x51\x67\xba\xfa\xfa\x40\xe7\x0d\xa0\xf1\x0f\xf9\xed\x05\x3d\x5b\x51\x9e\x5f\x94\x0f\x98\x16\x91\xbd\xbb\xf0\x60\xcf\xbe\x91\x24\x8e\xa4\x51\x91\x21\xdb\x1c\xe8\x9a\x26\x5d\xec\xa1\x61\x82\xe2\xc1\x5f\x0a\x8b\xb6\x40\x21\xd2\x8c\x91\x07\x74\x91\x65\x72\xeb\x69\xb7\xf4\x46\x16\x93\x44\xc4\x9e\x0d\x3f\x4d\xce\xb5\xce\x79\x95\x2c\x11\xa6\xee\xc4\x5c\x33\x23\x09\x78\x29\x12\x86\x55\x9b\x03\x9f\x74\xd9\x3e\xb1\x27\xb4\x2b\x4c\xd7\x7a\x50\xae\xf2\x1d\x7b\xf6\xdd\x55\xbb\xbd\xd4\x5b\x09\xed\x37\x67\x90\x13\x09\x26\x20\x58\x50\x43\x4d\xd9\x0c\x5f\x60\x2a\xbd\x39\x1a\xdc\x14\xc5\xcb\xbd\x0a\x13\xe1\xf9\x60\x21\xb5\x31\x00\x76\x94\xed\x67\x31\x3d\x05\x05\x7b\xed\xcd\x27\xe8\x89\xa9\x1f\xef\x3d\x33\x5d\xff\x5d\x7e\xf1\xde\x44\x75\x8e\xca\xd1\x51\x70\x12\x20\x32\x76\xa7\x36\x7f\x85\xf6\xb8\x8e\x03\x1c\x23\xa9\xa3\x2e\x1f\xe0\xbb\x44\x1d\xd8\x81\xbb\x47\x73\x16\x26\x67\xef\x5e\xfd\xd5\xd3\x47\xa4\x10\xf1\xbd\xd2\x4c\xf3\xc9\x45\x90\x0f\x66\x7c\x97\x99\x6f\x8e\x32\xaa\x69\xde\x54\x3c\xe3\x8a\x2b\xfc\x42\x40\x36\x78\x1e\x8d\x9d\x30\x60\x1c\x1d\x45\xf8\xb3\x8e\x66\xf4\x71\x0f\x9a\xf2\x7a\xc8\x0a\xf2\xd9\xb8\xf1\x57\x6c\x81\x85\xda\x7d\x83\x25\x03\x99\x82\x34\x8f\x7a\x22\xb3\x39\xee\xe3\x62\x30\xda\xd4\xb8\x18\xe1\xa5\x8e\x25\x35\x24\xf9\x8a\xe3\x41\x35\x47\x8f\x48\xfa\x6b\xd5\x2a\x01\xd8\x26\x6f\x1a\x50\xd1\x83\x93\x59\x8f\xdc\xa5\x61\x03\xf6\xbf\x4b\x56\x37\x62\x64\x50\xdc\x48\x54\x90\x6a\x54\x86\x3d\xba\x22\x42\x3b\xed\x9b\xca\xd7\x6d\xa6\xd3\x21\xcc\x77\x78\x0c\xdc\xb6\x08\x80\x08\xdf\x6e\x13\x88\xaf\x71\x6d\x98\xad\xc1\xaf\x86\x15\x33\x2c\x78\x8d\xee\x15\x0b\xb5\xdb\x19\x45\xd0\xec\xb1\xd1\xbf\xc9\x19\x84\xaf\xab\xdc\x00\x46\xdf\x69\xf8\xf8\x5d\x36\xfa\x5c\xd2\xbc\xa1\xa3\x16\x82\x0c\xd0\xd1\x77\x9c\x5e\x7f\x37\xaa\x36\x12\x89\x56\x35\x06\x8a\x4a\xfb\x2e\xf0\x27\xc0\x10\x99\x17\x14\xe8\x4e\x5a\xc8\x29\x74\xc2\xc5\x14\x26\x68\x98\x44\x30\xe8\x60\x58\x17\xf3\x20\x4f\xc1\xcf\xa5\x4f\x53\x09\x8f\x3b\xcb\xfb\x61\x17\xb0\x95\x4f\x75\x0d\xaf\x1e\x0b\x0a\x00\x37\xad\x46\xd6\xfa\xc4\x90\x00\x9e\x2f\x1d\x6f\x3e\x0e\x7a\xd5\x0e\xa0\x0c\xee\x7b\x4a\x7c\xc0\x09\xe2\xb0\x74\xe1\x91\xd2\x6a\xed\xa1\x70\x5f\x73\xe7\x57\x7f\xec\xf7\xb2\xa8\xdb\x36\x00\xf1\xed\x42\x99\x90\xa7\xb0\xc7\x3a\xb7\xf0\x66\xf0\x1d\xc2\xc5\xea\xd5\xf4\xf5\x91\x1a\x8f\x7c\xcb\xc7\x2a\x68\xf6\xb1\x1f\xe7\xdf\xda\xc1\xd4\x81\x7e\x12\x3e\x6c\x21\x35\x69\xc9\xfb\xa4\x06\xca\x62\x6d\xfd\x28\xec\xe3\x59\x14\x0b\xf0\x51\x22\x7a\x86\x70\x75\xd0\xc6\x31\x84\x9c\x6c\xc1\xd0\xe8\xd7\xa4\x05\xd1\x83\xac\x9e\xd4\x3b\x75\x7d\x63\x0a\xd8\xdb\xd3\x59\x3e\xf7\xd7\x9b\xa3\x7b\x3a\x3d\x4d\x4a\x6c\xfd\x58\x03\x23\x76\x9d\x94\x12\xc5\x1d\xba\xb7\x21\x6a\x93\x3a\x52\xd3\x23\x62\x8f\x8e\x91\x26\x36\x8f\x5f\x18\xf2\xb2\x86\x80\xaf\xe0\xf9\xdc\xda\x8e\xef\xbc\xc8\x02\x28\xeb\x06\x63\xed\x34\x1a\x06\x94\xbc\xdf\xc1\xfd\xb8\xd5\xd6\x71\xad\x57\xc8\x9b\xfc\x0a\x74\xc3\x72\x39\x1f\x74\xc6\xe7\x46\x2f\xe4\x45\xfd\x83\xf0\x03\x4f\xb3\x99\x98\xd5\xf3\x39\xc9\x67\xf5\xf8\xd8\xf6\x8f\x79\xfd\x93\x20\x2a\x53\x73\xb2\xc3\xed\xb4\x4f\x4f\x18\xe3\x82\x54\xdf\x39\xef\x3b\x20\xaf\x6d\x91\x1d\xda\x25\x25\x6e\xb4\xaf\x5e\x94\xbd\xf6\xdf\x76\x4e\xa1\xf4\xfc\x1c\xce\xeb\xf9\x39\xa1\xbe\x90\xf5\x75\x87\x96\x31\x05\x40\x4c\xa6\xb8\x99\x1a\x0b\xa4\xfd\xcc\xec\xdd\x51\x54\x72\xc1\x98\x06\xd7\xf2\x5d\xff\x86\x7b\x24\xc6\x49\x57\x64\xfc\x11\xa2\xb5\xa1\xfe\x05\x71\x30\x39\x00\x85\x3e\xaa\xbb\xa7\x05\x86\xb4\x61\xf8\xd5\x89\xc8\x89\xa6\xce\xbe\x1f\x53\xd0\xd7\x44\x86\x76\xcb\xb4\x9e\x2a\xd8\x20\x75\x90\x83\xd1\x39\x01\x13\x2a\x7d\x47\xa4\x01\xfa\x35\x13\xab\x51\xce\x47\xb9\x6c\x21\x42\x00\x55\x3e\xaa\x7b\xb4\xc1\x8d\xd7\x11\x80\xb3\x65\x72\xd8\xed\x24\xb2\x82\xd2\xba\x2b\xc8\xb0\xa6\x52\xf9\x82\x3e\xd2\x13\xe4\x02\xf1\x76\xd8\x35\xfe\x83\xbb\x3b\x1f\x8f\xd1\x27\x1d\x01\xc2\x80\xcd\x19\x9f\xa3\x07\xe8\xba\x6b\x70\xf2\x37\x48\xc8\x9d\xaa\x4f\xce\xb3\x03\x4c\x85\x66\x96\x17\xf0\x0c\x9c\xf7\x3e\xc5\xea\xde\xbd\xc0\xa9\xb9\x17\xc0\x1f\x7d\xdc\xa8\xef\x7d\xc8\x97\x20\x19\xa2\xe3\x7c\x00\xe2\xec\x6e\xaf\xc3\x0a\xe5\xa9\xc5\x73\x32\xf1\x4d\x4e\x2b\x70\x8d\x0f\x8f\xe5\x6e\x7f\xc8\x4d\xc5\x2e\x39\xf3\x70\xca\xdb\xc7\xf7\xe3\x5d\xf2\x11\xf0\xaa\xdd\x89\x1f\x1f\xdf\x86\xfa\x7a\xf6\x09\xbb\xd1\xf6\xe4\xc7\xce\x41\x02\x57\x27\x70\x92\xee\xf6\xf1\x12\xaf\x60\x36\x7f\x7a\x60\x36\x0d\x17\x74\x98\xf4\x7c\x2f\x3c\x1f\xf4\xbd\xf0\x7c\x8e\xb6\x5b\xff\x15\x57\xde\xd7\xdf\x1b\xc8\xf9\x9b\xd6\x86\xe1\xea\xe1\xa5\x79\x44\x06\x13\x10\xe2\xc6\x75\x60\x47\x8e\xc2\x9f\x2e\x47\xe9\xe8\x89\xd4\x56\xea\x8a\x3b\x5c\x63\x57\xb6\x53\x6b\x59\x9d\x3e\x84\x56\xf8\x69\xa4\x2f\xac\x23\x7d\xa9\x01\x3d\xe6\x84\xce\x40\x18\x3b\x9f\xe3\xae\x24\x26\xc7\xd5\x63\x62\x98\xce\xbe\xfd\x5b\xe8\xc5\x5a\x5d\x21\x50\xff\x0a\xc1\x72\xdb\x8f\x6d\xd7\x55\xde\xac\xf6\x6d\x54\x5d\x1b\x82\x9b\x20\x7a\x3d\xfa\xa9\x73\x16\x80\x02\xf9\xf9\xff\xde\xe3\xfc\x93\x37\x2d\x7f\xf9\xfb\xa7\xe5\xcb\xe9\x5f\x3e\xfb\xda\x17\x4f\x9d\x9a\x9f\x61\x6a\x40\xe5\xdc\xce\x8e\xed\xd7\x5f\x95\xa5\x99\x24\x6e\x87\x2f\x9d\xb5\x2e\xea\x2e\x40\xd4\x7f\x74\x5c\x85\xf1\x23\xa9\x09\x38\xac\xfa\x6e\x94\xb4\x2d\xe1\x1e\x08\x57\x3f\x26\x21\x11\x28\x9c\x4e\x0a\x84\x00\x56\x62\xd6\x1d\x48\xdf\x76\x3f\x3f\x0c\x64\xfe\xf4\xe0\x1a\xe3\xea\xef\x5b\xe5\x09\xae\x1e\x5b\xe7\x07\x61\x43\xe8\x42\x72\x9f\x94\xb6\xea\x49\x69\xab\x7d\x52\xda\xca\x88\x77\xd6\xf9\xe6\x0d\x27\xec\x71\x58\xb3\x5f\xc6\xe3\xd1\x6f\xd3\x84\x91\x8b\xc4\xab\x19\x41\x5c\x75\x20\xe1\x7a\x62\xc1\x02\x0b\xcc\x34\x49\x77\x78\x6c\x84\x62\x0e\x68\x30\x0c\xf1\xc5\x8c\x8c\xea\x41\x11\x52\x1f\x80\xfc\xae\x13\xa0\xae\x87\xfa\x86\xa4\x14\x0f\x1f\x9a\x75\xbe\x19\xd1\x9b\x0d\x38\x08\xcc\x03\xb1\x44\x3e\x6a\xe8\xa2\xe2\x85\x95\x4a\x44\x48\xb2\x1e\xb2\x92\x3f\x29\x88\x82\xf9\xe3\xf8\xd5\x36\xf2\x08\x56\xf5\xf5\x17\xff\xdc\xc5\xaa\x86\x8c\x0a\x70\xef\x7f\xf4\x72\xa9\x90\x86\x32\x93\x5c\xba\xff\x2d\xd1\xcd\xbf\xef\x3b\x02\xdf\xb8\xf7\x07\xef\x21\x9e\xbc\xf7\x7f\xab\x04\x3e\x70\x64\xae\x76\x46\x4f\x2c\xaf\x75\xda\x06\x43\x4b\x1e\x12\xf2\xbf\x77\xe8\x89\x82\xfb\xdf\x72\x32\x7a\x7b\x16\xff\x37\x1c\x96\xc1\xd3\xc2\xb7\xdb\x5e\xeb\xff\x1b\xa9\x23\xf3\x27\xef\xc8\x50\x1a\x9e\x99\x6f\x3f\x21\x6a\x7e\xed\x21\x79\xc2\x11\xf1\x77\x2c\xef\xf2\x9c\xda\xf9\x5e\x8f\x41\x19\x94\xa0\xf9\x1d\x78\xf8\x00\x1d\x78\x16\xf1\xff\xde\x3b\x9e\x3b\x75\x24\x04\x25\x13\xcc\x69\x4f\x3b\xa7\x56\x67\xeb\x7e\x41\x67\x82\xce\x09\xc5\xf0\x30\x3e\x9e\x13\x81\x9f\x13\x42\x12\x41\xc7\xe4\x39\x8a\xe3\x4b\x9a\xa8\x9a\x18\x25\x51\xcb\x0b\xba\x84\x7b\x4b\x3b\x95\xd7\x8c\x17\xd5\xf5\x54\xfd\x18\xb4\x57\x51\xc2\xa8\xf2\xc4\x48\x49\x45\xd3\x0f\xad\x00\x1f\x19\x9f\x2e\x1a\x5a\x5f\xd1\x7a\xbb\xad\x68\xfa\x33\xbd\xf8\x13\x13\xdd\x4f\xb8\x09\xda\xb1\x6c\x6e\x43\xcb\x65\x1c\x0f\xf5\x40\x47\x48\x8b\xe3\x68\xa6\x65\x87\x3a\x65\x1e\x11\x42\xee\x77\x36\xfa\x9f\x42\x67\xfa\x23\xc2\xed\xf0\x80\x7e\x62\x5c\xfc\xeb\xab\x32\x5f\x6f\x68\x01\x4b\x35\xdc\x2a\x5b\x6f\xaa\x5a\x9c\x82\xcf\xc2\x66\x38\xcb\x07\xe5\x81\xf0\xd5\x2a\xe7\x9c\x7a\x0e\xef\x4a\x9a\xf4\x3d\x92\xd8\x14\x9f\xf0\xa0\xf8\x18\x29\x49\xfa\x82\x7a\x68\xef\x98\xfe\xde\xdb\xef\x4b\xeb\xb9\xcd\xd3\x84\x13\xf4\x05\x2c\x60\x32\x91\x2b\x4b\xe7\x28\x91\x3f\xe3\xe3\x39\x52\xef\x86\x2a\xd6\xa9\x66\x7f\xc8\xed\xa2\x14\xc6\x28\xde\x50\x5c\x50\xbc\xa6\xf8\x96\xe2\x2b\x8a\x2f\xed\x26\x6a\xe8\x34\xb9\xa5\x44\x4f\x64\xca\xe9\x8d\x38\x63\x8b\xaf\xf8\xca\xa5\x5d\xd1\xba\x61\x15\x6f\x52\x5e\x15\x34\x5d\x83\x3c\xf9\xd9\x7f\x26\xd3\x2c\xf9\xa5\x18\xa3\x5f\x52\x34\x0d\x9e\x7f\xf9\x97\xad\x7c\xfe\xdd\x33\x84\xc3\x53\x72\x45\x51\x1c\x47\x13\xb9\x90\x57\x74\x76\x3c\x8f\xe3\xe8\xd8\xbc\x3d\x9f\xc7\xb1\xec\x47\x43\xc5\xbb\xb5\x36\xde\x47\xb2\x9b\xfd\x39\xbd\xa5\xc9\x52\xb2\xd4\x59\x4e\xa7\xc9\x46\x1e\x89\x42\xcd\x67\x0e\x1f\xf0\x9a\x92\xa2\x5a\xc0\x79\xd6\x2e\x1c\xcf\xe8\x8d\xf8\x58\x15\x34\x89\x22\x84\x0b\x9a\x56\x6a\x7b\x26\x6b\x8a\xef\x17\xab\xbc\xce\x17\x82\xd6\xaf\x73\x91\x67\x87\x93\xdd\x9e\x56\xd7\x54\xc5\x5c\xdc\x50\x32\x1e\x6f\xe8\x3f\x3f\xdf\xa1\xac\xa5\xd3\x24\x59\xa9\xc6\xc3\xfd\x81\x52\xb9\xa1\x8e\xd3\x8a\x1b\x1f\x96\x4b\x3a\x5c\xef\x8a\x42\xd6\xe7\x12\x89\x09\x5d\x49\x32\x91\xc3\xb3\x6b\x44\x08\x61\x74\x30\x56\x1f\x4f\x6b\xfa\xb7\x96\xd5\xde\xfd\xc1\xa0\x9e\xde\x1b\xf3\x35\xf2\xa4\xcd\x11\x02\xff\x18\x50\x3e\x89\xae\x68\x2d\x6e\x22\x23\xe5\x38\x24\x24\xe1\x70\xaf\xdf\xf2\x4f\xfc\x7d\x55\x6d\xb6\x5b\xfd\xa2\xad\xc2\x90\xdf\x24\x57\x4b\x92\xc9\xc3\xd0\xd3\xf9\x83\xc4\x5d\x82\xe0\xab\xd1\x7c\x20\x35\xc5\x5a\x60\x3f\xe4\xdc\xcc\x3b\x37\x14\x4f\x90\xf2\xda\x7e\x41\xc9\x9f\xf1\xf9\x9e\x38\x17\x46\xa3\x02\xe8\x07\x77\x9e\xae\xe5\x79\xca\xd3\x4a\x5b\x90\x27\xb9\xaf\x87\xe0\x54\xb9\x74\xae\xe5\x72\x28\x1b\x5b\x26\xfb\x81\xe5\x80\x10\x4f\x7d\x48\xcf\xcf\x3f\x7f\xf9\xf4\xe1\xdd\xe9\xc9\xf9\xbb\x8f\xa7\x67\x5f\x7e\xfa\x70\xf2\xf1\xec\xe5\xd9\xbb\x4f\x1f\xcf\xcf\x91\x31\x4d\xb8\xa1\x23\xc6\x47\x8c\x3c\x5e\x04\x37\x89\xa7\x70\x1b\x61\xb0\xeb\x44\xac\x6b\xd3\x70\x23\xcf\xd8\x35\x4d\x6e\x28\x66\xb3\x1b\x3a\x47\x07\x4e\xdf\xff\x3e\x6f\xf2\x4d\x56\x53\xbc\xc8\x1b\x91\x5d\x50\x6c\xe2\xa7\x7c\xc4\x9e\x2a\x7b\x56\xe1\xbc\x2c\xb3\x37\xd8\x89\x54\xb2\xb7\xb8\xce\x17\x34\xfb\x11\x4b\x1e\x2d\xfb\x1b\xf6\x58\xb5\xec\x2f\x58\x2b\xd0\x67\x7f\xc5\xa0\x52\x9f\xfd\x11\x5b\x35\xfb\xec\x1d\xb6\xea\xf7\x59\x83\x2b\x9e\x5d\x53\xd0\xfd\x3e\xa1\xd8\x70\x57\x7f\x36\x8c\xd5\x7f\xe0\x75\xbe\xc9\x7e\x87\x61\x21\xb3\x73\x8a\x15\xe6\xcc\x28\xc4\x2f\x04\x75\xfa\x9a\x62\xad\x5f\x7f\x21\x9f\x8c\x76\xca\x47\x1c\x6a\xe3\x57\x58\xe9\xe8\xbf\xc1\x81\xe2\xfe\x5b\xac\xd5\xf9\x7f\xc4\x5a\xbd\xff\x6f\x38\xd4\xfa\xff\x0b\x76\xf6\x00\x7f\xc5\xc6\x46\xe0\x8f\xd8\xb7\x1c\x78\x87\x7d\x9b\x02\x49\x5d\x56\x9c\x5c\x53\xad\xb4\x7f\x42\x5d\xd0\x27\xf2\x67\x6c\x8d\x13\xfe\x03\x2b\x6b\x85\xdf\x61\x63\xbd\x70\x2e\x73\x1a\x8b\x06\xc9\x85\x8a\x44\x99\x5a\xa8\x3b\x42\xef\x78\xa9\xad\x97\x44\xbf\x82\x35\x51\x84\x67\x73\xff\x6b\x60\x72\xa1\x2f\x6a\xf4\x92\x67\x12\xd1\xa6\xbf\x82\x5d\x08\x3e\x3f\xa7\xcd\x07\xb0\xdb\x90\x60\x6e\x07\x8d\x0c\x21\xe7\x37\x79\x23\x7e\xac\x2a\xff\x7a\x14\x0e\x5a\x5f\x58\xad\x2c\x44\x06\x4e\x80\x32\x0f\x99\xaa\x9f\x54\xe7\x23\x22\x19\x54\x5a\x55\x1d\x88\x63\xf5\x9b\xe6\xeb\x62\xaa\x07\x3c\x9b\x4b\x46\x7f\x5f\xbb\x53\xfd\x9b\xbe\x2a\xd9\xe6\xa2\xca\xeb\xe2\xdf\x4f\xa1\x0d\xda\x4d\xd1\x57\x9e\x7d\xe0\xdb\xbf\x49\xbc\xf7\x60\x07\x4f\x6a\x20\xf6\xc4\xac\x9e\x5b\xe7\xdf\xb3\x7a\x6e\x06\xa4\x9d\xb3\xc8\x24\x72\xcf\xb2\x1a\x97\xd9\xe1\x31\xd6\x1f\xb3\xfb\x9d\x15\x11\xb8\xe0\x6f\xcc\x94\xc5\x0c\xbb\x67\x8e\x30\x4b\x4b\x72\x38\x71\x69\x3b\x7b\x51\xb1\x26\x14\xf3\x74\x41\x04\xe6\x69\xd1\x0b\x91\xc7\x53\x70\x3a\x8e\xb6\x5b\x2d\x5a\x53\x53\x67\xe1\x81\xcc\x76\xaf\x59\xe8\x0b\x58\x79\x08\xba\x54\x2b\x9f\xde\x21\xec\x1d\x02\x72\xa7\xb7\xeb\x8b\xaa\x8c\x63\xf5\x6b\xa9\xaf\xb3\xfc\x32\x8e\xf7\xb5\xd8\xcf\x8b\xef\x95\x96\x41\xa4\xf6\x5f\xb4\x43\x78\x5f\xe1\xc8\x6d\xd3\xc8\x14\x93\x58\x59\x76\xb7\x2b\x9c\x64\xcb\xe4\x38\x56\x2c\x95\x1c\x00\xc2\xff\x1a\x0b\xa7\x5c\xcf\x96\xc9\xf7\xf2\xeb\xa0\x5a\x3e\x68\x1b\xd9\x96\x42\x8d\xfc\xba\xe3\x00\x5a\x19\xa3\xb2\x65\xc2\xd3\x3a\xa9\xf7\x75\xbd\xc6\x91\x3e\x75\x51\x77\xc6\xd5\x28\xe4\x11\x7f\x0e\x1d\x52\xde\xc5\x3d\xc1\x18\x0a\x4c\xd5\x28\xe2\x69\x01\x7a\xa3\x03\x37\x5d\x10\xe4\x58\x85\x41\xd5\xa1\x33\xfc\xbb\x05\x9e\xf2\xa1\xc8\x3e\xe1\x68\xa7\xfd\x83\x60\x91\xc4\x6e\x20\x1e\x17\xf5\xae\xcd\x8a\x44\xe0\x28\x8f\x20\xe0\xa4\x6c\xae\x1a\xc6\xc6\x7a\x8a\x02\x4f\xa6\x1e\x9a\x32\x91\x10\xb5\x44\x87\x44\x11\xe6\x09\x4f\x1b\x32\x41\xbb\x64\xd6\xd5\xaf\x09\x00\x9c\x5a\xa0\x01\x30\x62\x76\x6a\xd4\xc0\x43\xf7\x43\xca\x84\xd2\x4c\x98\x0e\x90\x1b\x66\x1d\x76\x83\x96\x59\x83\xa4\x97\x69\xae\x7b\x5b\x67\xd3\x0f\xcd\xb3\x9b\x85\xa9\xe9\x5b\x66\x1b\xc4\x6c\xbf\x6e\xa7\xb3\x60\x54\xd7\xae\xc2\xbf\xa2\x32\x5a\x47\x33\x3e\x3f\xa8\x53\xb7\xdf\x88\xff\xb2\xdd\x82\x4b\x40\x83\xad\xe0\xfb\xe1\x04\x47\x2a\x22\x27\xe3\x23\x65\xa9\x78\x5d\x33\xa1\xbf\xed\x3f\x98\x75\xfa\x95\xde\xc2\xe5\x7e\x17\x78\x86\x77\xb5\x3c\x8e\x69\xe2\x2d\xbd\x84\x6e\x35\xa4\x81\x02\x97\xa4\x04\x71\x45\xda\x84\x27\xc7\x08\xe1\x1c\x9e\x7e\x8f\x10\x6e\xe0\xe9\x7b\xe4\x31\x43\x6d\xb8\x0a\xc1\x1e\xa6\x99\x45\x72\x74\xa7\x2f\xe5\x07\x65\x45\x42\x09\x62\x93\x1e\xe8\x38\x4c\xa8\xaf\x83\x23\xf6\xf0\xf0\xaf\x94\xbe\x8a\xdc\xb1\xa3\x7c\xb4\x28\x41\x13\xa8\x09\xec\xe1\x76\xc8\x86\x24\x56\xab\xd2\x6f\x8b\x7a\x95\x7f\x91\x44\x05\xe5\x0b\xd3\x02\x68\xca\xac\xf2\x86\x7f\x27\x46\x17\x94\xf2\x11\x53\x56\xe9\xac\xa1\xc5\xe8\x68\xd4\xb4\x1b\x5a\x27\x28\xc8\xa1\x84\x08\x56\x6c\x70\x28\x06\xc4\xed\x22\x34\x67\xb0\xd2\x12\x9a\x09\x8d\x10\x13\xe1\xae\xc1\x2d\x02\xb9\xa4\xe2\xb3\x59\x3b\xb0\xb5\x43\x4e\x72\xec\x7b\xa8\xd7\x34\xce\x27\xf0\xf2\xdf\x24\x72\x95\xd3\x92\x35\x82\xf2\x57\x25\x5b\x7c\x85\xeb\x9d\xde\x56\x79\xc8\x10\xd1\xc9\xcb\x86\x17\x02\x5c\xad\x4b\xe4\x5f\xd3\x46\xf2\xa3\x4a\xa2\x42\x99\x58\x51\xc9\x1b\xc0\xcd\xc3\xa8\xaa\xbd\x95\xc1\xe0\x9e\x2e\x1a\x5b\x53\xc7\x03\xba\xd7\xcb\x3f\xc4\xc9\x73\x9b\xf6\xde\x3b\xd5\x99\x46\x43\x14\xfb\x60\xfd\x18\x9b\x63\x23\x41\xbc\x7f\xc4\x14\x79\x85\x25\x62\xd2\x6d\x34\xc1\x9c\x4e\x07\x53\x95\xa9\x09\xf5\x14\x13\x84\x24\x5c\x70\x6e\x40\x33\xc2\x2c\x11\x26\x98\x63\x38\xfb\x46\x8b\xaf\xcb\x05\xfe\xbd\xde\xdf\x73\xa8\x6d\x08\xda\x52\xfd\x6d\x6a\x1e\x94\xf4\x4f\x77\xf5\xa5\x9a\x7e\xa5\xd3\xa4\x48\xf2\xc1\x3a\xd4\xb7\xa9\x79\x08\xea\x50\xa4\xbc\xae\x83\xde\xec\xab\x81\xde\x40\x79\x7a\xd3\x29\x4d\x6f\x84\x09\xf2\xc0\x45\xce\x38\xad\x89\x23\x04\x48\xad\xb4\x2c\xd4\x07\x34\xf5\x5e\x32\x2b\x3b\xb8\xa8\x8a\x5b\x1b\xb9\xd2\xdb\xd9\xbd\xc9\x0e\xd5\xd0\xd4\xed\x07\x64\xa7\x10\x05\xc2\xf6\x09\x41\x1c\x63\x55\xc5\x10\x12\x4a\x2b\x7b\x74\x76\xc8\xb6\x5c\x3d\xd6\xaa\x73\x35\xaf\xa6\x4c\x72\xea\xda\xa9\x8a\x4a\x50\x5d\x5a\x18\x9a\x58\x2d\x8e\x51\xc5\xed\x24\xeb\x88\xc2\xc3\x9f\xe8\xf5\xa8\x32\x83\x49\xee\xfd\x75\xcf\x0d\x99\x82\xfd\x95\x54\xcf\x90\x6a\xd7\x47\x3e\xc9\x14\x37\xe1\xe1\x2a\x59\xab\x5d\x81\xe9\x9a\x09\xa1\x33\x78\x13\x12\xec\xb1\xa1\x69\x31\x2e\xef\x92\x28\xd7\x79\x68\xaf\xb4\x9a\x99\xfd\x93\xba\x48\x22\xa1\xb3\xd0\xd0\x15\xb4\xdd\x1f\xc0\x8c\x9d\xd2\x92\x82\xbd\x88\xe8\x37\x41\x6f\x06\x1b\x70\xdd\x83\x08\x56\x61\xe7\x1a\x51\x57\xb7\x03\xc7\x39\xd8\x55\xa9\xce\x97\x0c\x2f\xd4\x9e\xa5\x7d\xa4\x94\xbe\x47\xd8\xcd\x0d\x88\x61\xcd\x69\xbb\xd9\x80\x7f\x9a\x7f\x34\x7c\x99\x45\x8b\x6a\x73\x1b\xe1\x68\xd1\x8a\x68\x8e\x05\x31\x24\xb1\xa7\xb0\x3e\xa3\xf3\x8c\x62\x4e\x0e\x0f\xc3\x19\x7f\x55\xad\xd7\x39\x2f\x6c\xdf\xdc\x3d\xec\xb2\xaa\x4f\xf2\xc5\x2a\x90\xd5\x73\xc2\xe3\xf8\xb1\x2a\x94\x42\x3e\x87\x58\xaf\x22\x50\x7f\x5c\xf8\xfa\x38\x51\x91\x8b\xfc\xc8\x4e\xdb\x51\x34\x06\x26\x43\x48\xe2\xf6\xa5\x10\x35\xbb\x68\x25\xb7\xe0\x02\x45\x49\x5c\xea\x7f\xd8\x39\x5e\xb8\xdc\x3d\xec\x3a\xc1\x58\x42\xfd\x7f\x87\xd0\xad\xfe\xff\x48\xe8\xe6\x84\x27\xcf\x25\x6d\x9b\xd4\x24\x47\x71\x5c\xfb\x24\x6c\xed\x48\xd8\x7a\xa7\xed\xfe\x87\xe7\x48\xfc\x9f\xa1\x5f\xcd\xcd\x62\x87\xb4\x33\x51\xba\x25\x59\xaa\xe0\x1d\x74\xd0\x4c\x4f\xe5\x42\x4c\xff\x1f\xa5\x4a\x0c\xe5\xd1\x45\xf3\xd4\x47\x26\xf2\x93\xc6\x23\x84\x9a\xa7\x80\x30\x31\xc4\x87\x47\x69\x28\x7a\x22\x88\xd4\xe2\x82\xb4\x68\x8f\xd0\x30\x0f\xb4\x38\x03\xca\x24\xb2\x10\x3c\x98\xa3\x7d\x70\x1c\x88\x16\xaf\x9a\x37\xf9\x57\x9a\x20\x1f\x67\x6a\x0f\xa9\xea\xb3\xc2\x55\x89\x43\x13\xae\xd4\xde\x29\x56\xfc\x08\x89\x6a\x21\x01\x84\x05\x7f\xe6\xe1\x44\x39\x6c\x0e\x01\x54\x54\xb0\x3a\xd2\x0a\x51\xca\x91\xa2\xea\x98\x89\xd1\xfe\x95\x6a\x27\x6d\xc6\x39\xc8\xc0\x75\x06\x0d\x4a\xee\x7a\x45\x49\xb8\x58\x69\x5e\x14\x20\xb8\x7d\xaf\x51\x5b\x62\x08\xa4\x7d\x6d\xa2\xed\xd6\xf8\x14\x95\x5f\xe5\x40\xba\xd7\x3d\x7a\x70\x0a\xbf\xe6\x35\xcd\x23\x14\x16\x48\x1b\x71\x5b\xd2\x74\x59\x71\x71\xca\xee\x28\x89\x8e\x9f\x6f\x44\x34\x98\xe7\xa2\xaa\x0b\x49\x3a\x4e\x86\x3f\x6f\xf2\xa2\x60\xfc\x72\xef\xf7\x75\x5e\x5f\x32\xbe\xbf\x78\xa5\x7d\xef\x44\xf9\x45\x53\x95\xad\xa0\x83\xf9\x66\x62\x1a\xd5\xec\x72\x25\xa2\x2c\x2a\xe9\x52\x44\x73\x12\x1d\xfd\xdb\xbf\xfd\xdb\xbf\x6d\x6e\x22\xed\x43\x42\x5f\x20\x6c\xf2\x4b\xfa\xd7\x4f\xcb\x65\x23\xc9\xc0\xbd\xab\xde\x2c\xea\xaa\x2c\xcf\xaa\xcd\xc1\x50\xa7\x44\xb5\x21\x7c\x1c\x6d\x6e\x7a\x7d\x09\x36\x4b\x4d\xf3\xa2\xe2\xa5\xc4\xe2\xbd\xf9\x85\x4d\x49\xec\x5e\xc7\xdd\x45\xdf\x6c\x28\x2f\x20\x38\x64\x12\x14\x44\x03\x87\x2b\xa4\xa0\x87\xb2\x4b\x5a\x42\x66\xf5\x4e\x88\xdb\x84\xfb\xce\xa0\xb7\xb5\x2c\xbd\x64\x3b\xa8\x8a\x7f\xe3\xc6\xec\xef\x75\x67\xb7\x38\x74\x78\x3c\x4a\xdb\x0c\x68\x5f\x4f\xf6\x4f\x95\x3d\x03\x9a\x7a\x0b\x20\xc4\x1e\x22\xd7\xf8\xd0\x7f\x64\x96\x15\x24\xda\x3f\xc7\x26\xe9\xff\x62\xef\xed\xb6\xdc\xc6\x91\xfc\xc1\x7b\x3d\x45\x8a\x3b\xcd\x21\x4a\x90\x2c\xd9\x5d\x3d\x3d\xca\x44\xea\xf8\xb3\xca\xd5\xfe\x6a\xdb\xf5\xd5\xb2\xc6\xc3\x94\xa0\x14\xdb\x14\xa1\x06\xa1\x4c\x67\x25\xb5\x67\xef\xf6\x62\xdf\x60\xaf\xf6\x59\xf6\x51\xfe\x4f\xb2\x07\x11\x00\x08\x90\x54\xda\xd5\x33\x7b\xce\x9e\xb3\x7f\x5f\x38\x45\x12\xdf\x1f\x81\x88\x40\xc4\x2f\x8e\xd2\x20\x7b\x0d\x2d\x6f\x6e\xbd\x2b\x59\xfe\x99\x2f\x0d\x03\x96\x78\xe4\xdc\xbb\x37\xe4\xac\x3f\x39\xc0\x27\x04\x88\x43\x4b\x96\xc4\xe3\x93\xfd\xf7\x5d\x2c\xb6\x4f\xf6\xe1\x6f\xa2\x59\x92\x3d\x00\x0d\x46\x53\xeb\xff\xd3\x21\xc1\x78\x82\x8a\x3f\x3c\xb5\x50\xe2\x1d\x09\x74\x99\xf3\x54\x3a\x62\x6f\xe4\x98\xe0\x1d\xea\x69\xd1\xf5\xc0\x1b\xb8\x20\xcd\xd1\x43\x02\x6b\x31\x27\x81\x79\x1a\xad\xc5\x72\x5f\x26\x84\x9a\xfd\x0e\xb0\xca\xee\x44\x36\xab\xe5\x61\x9e\xbf\x4d\x8b\x4b\x5e\x26\x5f\x2d\x59\x04\x44\xdb\xe6\xb1\xd2\x53\xc9\xd5\x7f\xdb\x19\x8e\x8c\xbf\x0b\xbb\xfc\xd1\x9e\xe5\x14\x3f\x38\x6b\xa9\xd4\x48\x32\x20\x21\x34\xde\xb6\x02\x79\xfe\xeb\x73\x8c\x38\x7b\x62\x9b\x7c\x82\x68\x69\xe0\x9b\x66\x14\x44\x58\xfe\x89\xd0\xbf\xf6\x2a\xfa\x57\x72\x80\x8b\x90\xf6\x09\xe6\xd7\xe4\x86\xc2\xca\x82\xc1\x50\xa0\x29\x90\xeb\xb4\xb1\x0c\x0a\x2c\x5f\x59\xe2\xae\xf0\xf9\xcc\xbb\x5f\x99\x66\x09\x27\xa4\xaa\x26\x3a\x1f\xd8\x55\x68\x8e\xed\x8e\x8e\x99\x06\xf8\x1d\x4b\x4f\xf0\x9b\xa1\xea\xff\x0a\x62\x2a\x76\xd3\x1a\xa3\xd9\x51\xe4\xa1\x88\x12\xad\xb2\x52\xb3\xc1\xab\xa8\x1d\x14\xb5\x5d\x65\x6a\xf3\x8d\x7c\x97\xbf\x9a\xfe\x03\x13\xca\xd3\xd5\x89\x58\x9f\xd4\x25\xd7\xd9\x6c\xc3\xf6\xaa\xd5\xae\xa4\xd9\x30\x57\x28\xa9\xaa\x3b\x1a\xfd\xfb\x5a\xfd\xab\xd8\x9f\x2c\xd3\xe2\xc3\xbf\xaa\x93\xe5\x5e\x9d\x40\x50\xe5\xb5\x14\xdb\x13\x8e\x23\x57\xa2\x31\x96\xd7\x23\xbd\x4a\x3a\x7a\x52\xfe\xab\x35\x17\xb7\xbc\xe3\xe1\xee\x55\x84\xc9\x40\xae\x04\xb7\xba\x5a\xfe\xdb\x1f\x1a\x4e\x58\xf5\xa7\x96\x32\x02\x86\xef\xdd\xd3\x17\x4f\x1f\xbf\x8f\x98\x5d\x2f\x10\x5c\x9c\x3b\x7a\xa0\x99\x56\x58\x1b\x10\x02\xf7\x44\xe7\x78\xfe\xea\xcd\x8f\x8d\x0c\x55\x15\xbd\x7f\xfa\xcb\xfb\x87\x6f\x9f\x3e\x6c\x94\x64\x44\xdc\xe3\xf3\xd1\x2b\xf4\x8c\xdc\xc5\x02\x70\x43\x32\x13\xfc\x59\x13\x26\x20\x46\xc9\x98\x9a\x16\x5a\x9c\x15\x0a\x25\x1a\x92\xd5\x55\x65\xdd\x29\x0c\xa2\xdc\x6c\x1c\x00\x6e\x16\x8a\xaf\x50\xa8\x8b\x88\x5e\xe8\x66\x40\x8c\x22\xbe\x93\x4c\xd2\xac\xc9\x31\x62\x0b\x49\x2f\x33\x5d\x78\x25\x56\xfc\x31\x96\x8e\x7e\x0a\x6d\xca\x4a\x81\x77\xc5\x8c\x99\x6e\xaa\x74\x17\x9e\xb5\x68\xa4\x0e\xcd\x69\x0e\x4c\x58\x0f\x9e\xcd\x26\xbb\x6d\x00\xf6\x85\x9e\xe5\x23\x6e\x0d\x26\x39\x80\x48\x1a\xcb\x55\x39\xe7\x8b\xaa\x82\x3f\x6c\xbe\x20\xc4\x80\xc3\xad\x8b\xa9\xa2\x4b\xf5\x79\x5a\x98\xb0\x36\x07\x2a\x8a\x25\xbf\xa3\xfc\x5a\xe5\x91\xe9\x45\x3c\x12\xeb\x35\x38\xb1\x51\x8b\xe1\x51\x74\x00\x78\x64\xa3\x8f\xcc\x30\x77\x50\x66\x86\x60\x01\xdb\x2c\x24\x92\x56\xb8\x57\x6c\xbe\x40\x74\xeb\x76\xd0\x0d\x5a\xb0\x24\xe9\xe8\x28\x81\x0e\xce\x17\xc4\x21\x7e\x23\x00\x75\xd1\x04\x9e\x2e\xe6\x72\x31\x5a\x5b\x33\x1f\x78\x5a\xaa\xcf\x9e\xe3\x94\x19\x86\x23\xb8\x83\x1d\x55\x53\x89\xc8\x83\x19\x9b\x03\x40\xa0\x3e\x8a\xdd\x45\x2d\xe2\x76\xca\x26\x9a\xb9\x9c\x0b\xdd\x0a\x74\x3a\x37\x0f\xa3\x8f\xf8\x68\xd0\x0f\xa5\x8f\x6f\x6e\xb1\x92\x66\x00\x5a\x98\x4d\x1d\x02\x29\x47\x87\x15\x08\x86\x64\x09\x43\xd1\xd6\x19\xe1\x04\x16\xc9\xb7\x80\xc2\x98\xfc\xc9\x27\x31\xcd\xb4\x0e\xdb\x35\x8e\xfb\xed\x33\x34\x7a\x99\x95\x65\x56\x5c\x9e\x18\x8b\xb0\xda\x28\xb6\x8c\xd0\x27\x4f\x8e\x50\x49\x97\x1c\xd3\x34\xbc\x0b\x8d\x69\x3d\xe8\x48\xdc\x17\xae\x9c\x75\x91\x14\x47\xca\x78\xbf\xc9\x64\x67\x11\xcf\x9c\xb6\x02\x83\xb5\x6b\xca\xe5\x39\x06\x36\x3b\xeb\xc4\xd1\x96\x80\xa9\x3f\xd3\x5b\xc3\x0f\xf9\x94\x9b\x77\xb2\xfd\x88\xf6\x68\x31\xc7\xea\xba\x75\x82\x2f\xd7\xdf\x8c\xd8\x6b\x54\x94\xf6\xfe\xdb\xdf\x25\x47\x9a\x7a\xe8\x6e\xec\xef\x2a\xf8\x68\xbf\x5a\x3d\x33\x33\xfc\xc5\x7e\x65\x49\x70\x4d\x62\xcc\x95\x5d\x59\xdd\x70\x02\x21\x46\x42\x73\x75\xd0\x93\xef\xdf\xbf\x7c\x61\x98\x19\x7c\x78\x2c\x72\x43\xb4\xa9\x3e\x92\x5f\x99\x61\x8f\x48\x8b\xac\x2a\x98\x93\x2e\x4b\xc2\x9a\x3d\x8b\xe3\x40\x5f\xe6\xd5\x16\xc7\x13\xe6\xf3\x61\x07\xaa\xdc\x1c\xb7\x8e\x63\xe7\xc4\xe6\xb9\x59\x06\x36\xc9\x35\xd8\xae\x5f\x77\xe2\x0c\x9a\x6d\x37\xc0\xa2\xb9\xa8\x2a\xf7\x21\xec\x32\x7e\x26\x71\x1c\x21\x89\x88\x32\xd0\xd0\x26\x08\x0a\x67\xbd\x6d\x94\xd9\x08\xf3\xf1\x82\x10\xdd\x6e\x9c\xc1\x8e\x91\x68\xab\xd8\xab\x2a\x18\x10\xec\x83\x2e\x63\x5d\x74\xe5\xb7\xcd\xb4\x3b\x11\x1a\xf8\xc5\xb1\x38\x1c\x27\x5a\xff\x46\xfc\x53\x07\xbd\x13\xc0\xad\x49\x27\x48\x9b\x7e\x0b\x59\xdb\x6a\xab\x20\xb7\x45\xe3\xf2\x8b\xc9\xa4\x70\x0a\x3d\x42\x9b\x9f\x35\x15\x36\x5b\x44\x6f\xeb\x6e\xbf\x90\xde\x71\xe2\x51\xd0\x94\x8a\xdf\x43\x3e\x30\xc3\xe1\x70\x38\x46\x97\xa9\xac\x1d\xb9\xba\xef\x59\x1b\x6d\x98\x65\xf6\x8c\xdb\xe7\xb9\xd7\xea\x6e\x3c\xc8\xcc\x33\x15\xb2\x5b\x96\x1c\x29\x20\x69\x2f\x11\xb0\xad\xea\xbe\xf1\x7a\x08\xd3\x6b\x6d\xbc\x83\x20\xcd\x5d\x54\xc8\x11\x8e\xba\xd7\x07\xd2\xde\xc8\xb8\xc3\xfe\xbd\x77\xc4\xe6\xd6\x6d\xd8\xbe\xd5\x65\xf9\x15\xab\xe5\x86\x97\x76\x7d\xb5\x12\xf4\xa4\x4d\xc2\xdc\x2f\xdb\x99\xaa\x92\xa3\xad\xf8\xed\x65\xc7\xdb\xb2\xe3\xa5\xe8\x78\x77\xcd\x2f\x3e\x65\xaa\xf1\xe1\xc8\xb4\x23\x4f\x74\x0a\x36\x2d\x96\xe8\xf4\x19\x2b\x4e\x1b\xc6\x11\xde\x32\x30\x0d\xd6\x39\xcc\x4f\x7d\x0e\x3b\xbb\x35\xce\xf8\x68\x97\x4a\x5e\x00\xef\x7a\xd0\x22\xc7\x81\x34\x8e\x81\x27\xfc\x62\x7f\xc9\xcc\x5f\x70\xe8\x30\xbf\x47\x92\x5f\xea\xd5\x25\x9f\xf0\x9d\xe4\x4b\x70\xe1\x38\x12\x32\x3a\x4c\xff\x73\x2a\x3b\x13\x1e\x12\xc3\x78\x3f\xdd\x5e\x70\x19\xd8\xb2\x82\xf6\xe0\x34\xe9\x76\xd7\x80\xe4\x33\xf8\x7f\xea\x2c\xd3\x8d\x4d\xac\xd3\x4e\x8d\x7e\xe6\xe9\xa7\x97\xe9\xae\xaa\x12\x6e\x7f\x33\xf3\xf7\x8b\x46\xad\xd8\x80\x9d\xe4\x6b\x2e\x5f\xa5\x36\x6a\xea\xc7\x4b\x2f\xc6\x24\x22\x16\x81\x71\x25\xfa\xb2\xaa\x38\x4e\x94\xb3\xa1\xaf\x17\x94\x8d\xce\x57\x1b\xce\x78\x26\x6e\x4f\x78\x09\xee\x24\x02\x8f\xda\x9e\xd3\x14\x30\xc6\x9c\xd7\xe4\x31\x93\x9b\x5e\xe8\x4c\x2b\x66\x98\x75\xca\x13\x81\x20\x17\x7a\x95\xb8\xbb\xad\xcc\x01\x9c\x18\x11\x10\xe9\x67\xa6\xcb\x6d\x1d\x45\xe9\x2c\xc5\xed\x29\x89\x0b\x37\xf4\x11\xa5\xa0\xc7\x79\x5a\x96\xff\x3f\xbc\xa5\xab\x4f\xa1\x8f\x47\x3d\x09\xff\x3f\x6b\xc9\x55\xb7\xdd\x7a\x30\xfe\x4f\x23\xab\xdf\x69\x64\x55\x0f\x21\xdc\x8e\x3e\x4e\xf3\xfc\xf1\x86\x2f\x3f\xfd\xbf\x71\xd3\x1a\x18\x27\x58\xbb\xfe\x35\x57\xcb\x8d\x1f\x73\x61\x11\x58\xfe\xb6\x0c\x03\x0a\xc6\x91\xb2\x8e\xc0\xc1\xd0\x78\x41\x50\xc9\xe6\xd1\x33\x21\xb7\x4f\x52\x95\x46\x34\x7a\x96\xe5\xfc\x2d\x4f\x57\x5c\x46\x34\x7a\x94\x8b\x8b\x88\x46\x3f\xbe\x7d\xf1\x8e\xa7\x72\xb9\x31\x31\x5d\x68\x84\x57\xf7\x11\x8d\xe0\x1c\x7f\xb4\x5f\xaf\xb9\x8c\xb4\xd0\x2b\x7b\x3e\x95\x04\xb0\x1b\xd8\xba\xcb\x54\x25\x73\xdb\xe4\xe8\x7b\xa8\x40\x17\xf4\x96\xff\x63\xcf\x4b\x05\xbf\xca\x9d\x28\x4a\xae\x0b\xbd\x10\x52\x3d\x16\x85\x92\x9a\xaf\x95\xd1\x82\x10\x9a\xb5\x0d\x35\x0a\x72\xcb\xe7\xc5\xe2\x98\x49\xb9\xde\xd1\xb7\x8d\xc9\x3f\xa2\x77\xd3\xc5\x1c\x42\x35\xad\xc2\xc2\x99\x3a\x1c\x82\x33\xb1\x03\x94\xca\x23\x78\xe4\xb6\xb9\x1a\xec\x15\xf9\x91\x36\x42\x38\x57\x6b\xa1\x53\x3a\xdb\xf5\xdb\xc3\x9d\x4b\xd8\xe9\x52\x7c\x1a\x5c\x5f\xa8\x37\x99\xbf\xf6\x65\x07\xe8\x0e\x4f\x32\xa3\x71\x74\xf5\x5b\x4d\x86\x7b\x61\xc3\x32\xb4\xde\xba\x98\x0c\xe1\xdd\xd9\x57\x54\x9b\xad\x93\x8e\x9a\x49\x7d\x4a\xb4\xea\x3a\xa6\xbc\xc9\xd6\xa0\xb1\xd1\x67\x6d\x10\x71\xbf\xb0\xd1\x1d\x24\xf8\x4e\xda\xbb\x8c\xac\xdc\x69\x16\x08\x9a\xf8\x05\x6b\x3c\x08\x9e\xa3\xf7\x7e\x47\x43\xbd\xf3\xcc\x5f\x89\xdd\x60\x11\xce\x02\xde\xe0\x9c\x81\x8d\x9e\xc5\x82\xf5\xfa\x08\x95\xe9\xfd\x33\xa6\xa2\xd6\x0f\x65\x67\x02\x82\x48\x14\x89\x9c\x67\x4e\xfd\xd3\x77\x66\xf7\x6f\x24\xc4\x69\xe0\xab\x83\x53\x16\x53\x79\xcc\x9e\xf9\xc8\xd2\x34\xd6\xc7\x9c\xdd\x71\x8a\xfd\x57\xcd\x7e\xb9\xbf\xc2\x0a\x2b\xe3\x1d\x77\xe6\x48\x2f\x8c\xfd\x98\xf5\xe4\xb8\x9b\xa0\xdf\x51\x92\x28\xa0\x2c\x57\x12\x08\x2f\x77\x97\xc5\xdd\xde\x72\x47\x23\x28\x7f\x82\xad\xe6\x2c\x6a\xad\xe0\xda\x71\x45\xd6\x10\x80\x81\xa8\xbd\xcb\x2e\x8b\x34\x5f\x44\x5f\xbf\x2a\x71\x30\x50\xef\xae\x47\xd9\x5e\xf6\x9a\x31\x02\x4e\xa8\xcd\xf9\x1b\xed\x2a\x24\x32\x77\x81\xe6\xc9\x03\xf4\xd0\x72\xd8\x47\x30\xb5\xf4\x41\x00\xbe\x38\xc7\x1e\x2b\x4b\x9b\xed\x87\x79\x0f\xaa\x70\xe6\x71\x47\x7d\x16\xfe\x39\x9a\x59\xc2\x48\xd6\x13\xcb\xaf\x4f\xe4\x7f\x89\x66\xe2\x3a\xf9\x9a\x4b\x69\x50\x7f\x5e\x81\xad\x08\xe6\xf2\x6e\xa1\xbb\xe4\x13\x2b\x09\xcf\x9a\x16\x27\xba\x8c\x59\xd2\x72\x3c\x36\x65\xe3\x90\x12\x02\x16\x54\x41\x7d\xb4\x3f\x41\x3c\x91\xee\xac\x38\x6c\x00\xda\xa8\x99\x29\x93\x69\xca\xd9\xad\x7e\x76\x5d\xbd\xd8\x5f\x5c\xe4\xbc\xd4\xbb\x6b\xa9\x79\x94\xdc\x30\x4f\x07\xbc\x45\xc7\x01\x1e\x05\x13\xec\xdf\xa6\xff\xce\x95\x5f\x1f\xe7\x7a\xf5\xdb\xab\xad\xdf\xeb\x3c\x96\x64\xf5\xea\x9b\xb7\x13\x2c\x58\x8b\x77\xa0\xf2\xab\x72\xe0\xc6\x8c\x42\xe1\xb7\x13\x5e\x63\xf4\xf1\xe3\xb3\xd7\x6f\x1f\xa3\xb3\xed\xc3\x17\x2f\x3e\x3e\x7c\xf4\xfa\xed\xfb\xc7\xaf\x5f\xbd\x7f\xfb\xfa\xc5\x8b\xa7\x6f\x3f\xbe\x79\xfd\xe2\xd7\x67\xcf\x5f\xbc\x98\x25\x9a\x51\x15\x39\x1f\xe5\xe2\x32\x89\xbe\x36\x1b\x53\x72\xcf\x4f\xb2\xf2\xa4\xe4\x8a\x9e\x5c\x67\x79\x7e\xb2\x16\x72\x69\x78\xc9\x3c\x3f\xd9\x89\xfc\x66\x9d\xe5\xba\xb1\xfd\x71\xa7\x02\x87\x8f\x0c\x5b\x05\x71\x08\xcd\xef\xa3\x6e\x55\x89\xdd\x4b\xa4\xaa\xfa\x7c\xd4\x18\xc0\x03\x49\x38\x81\x3b\xd7\xc6\x07\x96\x51\xf3\x0e\xc7\x8e\x49\x72\xa8\xaf\xb5\xd5\x4c\x4d\xb9\x96\xab\x4f\xdb\x41\x44\xd8\x6d\xe9\x71\x93\xd3\x16\x7b\xa9\xcf\x5c\x0a\xf6\xa8\x7a\x41\x5a\x5e\x33\xc3\x38\xf1\xd6\x4e\x55\x3f\xe3\x17\x7a\x91\x8b\x8b\xa9\xcf\xb8\x9a\xa4\xc0\xbd\xe2\x6f\xdf\x72\xa1\x76\x71\xd7\x1b\x59\x27\xa2\xfd\xb1\xd9\xc1\x6e\x9e\xf5\x36\x48\x08\x5d\x1b\xc6\x78\x5a\xb3\xc8\xd0\xba\xb4\x66\x7b\xa7\x01\x0f\xac\xbf\x1e\x50\x2b\xee\xa5\x21\x28\xf2\xcf\xdd\x96\x78\x5e\xa8\x3f\x43\xb6\x45\x44\xdd\x4b\x80\x9d\xe8\x7e\xeb\x83\x51\xf8\x1f\x9f\x17\x6a\xf2\xa7\xce\x2c\x1d\xaf\x9f\x17\xea\xc1\xfd\xce\xc4\x1d\xaf\x9f\xe5\x22\x3d\xfa\xfe\x4f\x7f\x34\xef\x17\x54\x30\xaf\xfb\xa3\xac\xfc\x29\xe3\xd7\x55\xd5\x6d\x27\x5c\xc7\xe2\xfa\xa2\x02\x98\x9c\x0f\xfd\xd8\x58\xa9\x31\x9b\x68\x3b\x41\x82\xae\xf1\x9d\xbb\x80\xa0\xf7\xe6\xff\x91\x0e\x7f\x1b\x0f\xff\xfd\xc3\xf0\x7f\xf9\x97\x3f\xc4\xff\xfa\xcd\x60\xf4\x1f\x1f\xff\xb3\xfa\x5f\x17\xf7\xb2\x91\xe2\x78\xfb\xd2\x29\x87\x59\x5b\x00\x07\xed\xa0\x79\xbf\x0d\x2c\xa8\x93\x75\xc6\xf3\xd5\x49\x91\x6e\x79\xe4\x31\x35\x4a\xbc\x10\xd7\x5c\x3e\x4e\x4b\x9e\x78\xf2\x60\xd9\xd6\x9e\x1f\x6f\xae\x87\x21\xb6\xf7\xfc\x89\x0b\xfe\xb9\x65\x3d\xa3\x18\x1f\x61\xb0\x63\xe2\x1c\xb6\x45\xc1\x3d\xa0\x58\x43\x89\xd5\xa1\x76\x22\x96\x23\xbb\x91\x34\xe3\x30\x6f\x18\x7b\x2f\x3a\x6c\x31\x15\x44\xcd\x73\xad\xca\x9d\x65\xd4\x36\xdd\xb1\xdb\x03\x0d\x84\xda\x7c\xc6\x3b\x0c\xe8\x1d\x04\x20\x9a\xec\x21\xdf\x6b\x90\x55\x5b\xe8\x55\x5d\x05\x84\xd9\xf9\x7c\xbc\xa0\x1c\x23\x96\x63\x21\xdc\xc9\x7c\xa1\xfa\xec\x55\xba\xe5\x7a\xf8\xdb\x45\xb6\x5b\x34\x57\xae\xbc\x20\x32\x17\x4a\x28\x70\x41\xf5\x63\xc9\x57\xc4\xb1\xf0\xdd\x68\x41\x0f\x73\xc9\xd3\xd5\xcd\x89\xfe\x3f\x22\xa4\x57\xe7\x64\x7e\x80\xc9\xb5\x8f\xe4\xca\xaf\x4f\x7c\x3c\x5a\x80\xfd\x1d\x89\x22\x17\xe9\xca\x9f\x10\x95\x00\x26\xc0\x3e\x47\xa4\x68\x51\xf0\x10\xc8\x9a\xdc\x16\x09\x47\x24\x25\xa2\xa5\x54\x57\xd9\xa6\x5e\x49\xba\xae\x9a\x32\xd2\x82\xf9\x8a\x42\x35\xd2\xad\x7e\x58\x7a\x3b\x38\x09\xa3\x87\xed\xdc\x78\xc0\x45\xba\xd3\x1c\x9b\x7b\xf5\x31\x0a\x0f\x58\x4d\x4d\xbe\xf4\xf0\xdd\x28\xfe\x02\x2d\x36\xea\xda\x4a\x8e\xc3\xe7\xa7\x24\x84\xaa\xd1\x05\xd4\x5d\x57\xbb\x6a\x98\xc4\xd4\x43\x3a\xf1\xe2\x84\x3c\x12\xab\x9b\x0e\xbb\x17\x4c\xa0\xb3\x3c\x2f\x32\xc5\x38\xe5\xb3\x0e\x47\x91\x3a\x15\x58\x32\xf2\xa9\x1c\xe9\x73\x24\x8e\xf5\x81\x10\xc4\xee\x0f\x14\x41\xc4\xcb\xa8\x53\x42\x46\x7b\x4a\xc4\xb1\x3d\x25\xbe\xae\x00\x9b\x1a\x0a\xf1\xcf\xc4\x38\x6e\x9c\x89\x5f\x57\xde\x7b\x63\x86\xee\x2c\x4a\xa6\xc1\x29\x14\xc7\xb6\x8f\x49\xa2\x98\x3e\xd5\x75\xe5\x9a\x60\x1f\x2d\x5e\x11\x62\xf1\xbe\x74\x05\xde\x42\x61\x3b\x3d\xcb\x78\xba\xd1\xc6\x90\xdb\x73\x35\x99\x77\x66\x5d\x90\x56\xc3\x12\xff\x10\x39\xde\xd7\xaa\x12\x7a\xc5\xcc\x8e\xb6\xc8\xc2\x89\xd5\xa3\xf1\xe5\xbb\xc6\x66\x96\xc8\x58\xeb\x22\xed\x2f\x35\x89\x71\x56\x43\x43\x5d\x82\x66\x94\x3a\x6e\xbd\x66\x41\xae\xb2\x95\x8b\x82\x65\xf9\xbd\x5d\x9e\x66\xc5\xa9\x3e\x65\x4a\xae\xd8\x8f\xef\x9f\x0d\xff\x1c\xf9\x6d\x78\x04\x33\x14\x3e\x03\x23\xff\xc5\xf2\x3b\xf2\x90\xff\xc2\xc2\x32\x8d\xb8\xab\x43\xe9\x6e\x97\x67\x78\xf3\x73\xef\xf3\xf0\xfa\xfa\x7a\xa8\xb7\xc2\x70\x2f\x73\x5e\x2c\xc5\x8a\xaf\x9a\xfd\x24\x07\xea\xd6\x20\xee\x6c\xbd\x87\x5a\xe2\xd6\xb2\x8e\xe7\xc9\x03\x68\x86\xb0\x8b\x3e\x6d\x46\xe8\xb5\xc6\xf7\x30\x8b\xb7\x56\xda\x39\xbf\xbc\x66\xc3\xc2\xec\xde\x6d\x9b\xc4\x2c\xc5\x5e\x33\x0b\x10\x12\x2b\x5d\x9d\xd8\x84\x27\x3a\xd7\x49\x5a\x9e\xe8\x2e\x7b\xd0\x6d\x77\xb6\x40\x2f\x48\xbc\xa2\x87\xc3\xcb\x5b\xec\xc7\x8c\x07\x1b\xed\x9e\x99\xa1\xac\xaa\xae\x41\xf2\x47\x64\xea\xe6\x23\x31\xe8\x75\x1b\x62\xec\xc0\xd0\xbf\xa5\x39\x4b\x54\x01\xfa\xbb\x37\x57\xf5\x95\xd2\xf1\xb9\xb2\x38\x86\xf6\x3d\x6d\x9d\x51\x12\xce\x28\x6a\x0f\x27\xb0\x1f\xe7\x04\x43\x5a\x7f\xe5\x64\x76\xdb\x91\xb5\x8e\x1e\x5a\x78\x88\x6a\x2e\x44\x36\xed\x00\xa5\x07\x3d\xa3\x21\x1b\x6b\x29\xb6\x8f\x37\xa9\x7c\x2c\x56\x1c\x51\x5e\xea\xb9\xfc\xbb\xc8\x8a\x24\x8a\x0c\x76\x4c\xbb\xa5\xff\x6d\x8b\x08\x9c\x40\x3b\x16\x51\xb8\x74\x60\xbb\xd5\xa7\x93\xf1\x05\xb0\xa7\xce\x91\x25\x04\xbe\xb6\x66\x09\x5c\xb9\x25\xf0\xf7\x52\x14\x5f\x93\xe3\x87\x77\xaf\x5f\x8d\x76\x7a\xd3\x9b\x55\x7b\xf0\x3c\xfc\x0c\xfb\xd5\xb8\xd5\xe6\x2c\x85\xa8\x45\x0c\x82\x7e\x7b\x4a\xe0\x6d\xba\x9b\xf3\x45\xcf\xfb\xcd\x8a\x59\x31\x88\xe8\x49\x34\x50\x53\x75\xa0\x7e\xd1\x68\x04\xc7\xc2\x9b\x12\xb0\x8b\x73\xf9\x75\x35\x8b\x30\x97\x7f\x85\xeb\x0b\x2b\xa6\x49\xe8\x4e\x50\xba\x63\x16\x5b\x81\x11\x53\x83\x72\x36\x69\xd9\x55\x8e\xcd\xd4\x14\xb9\x53\x80\xe6\x0f\x4a\x28\x79\x27\x8a\xb6\x6b\x37\x8c\x4e\x98\xc5\x70\xb9\x1d\x46\x02\x30\x88\x4e\x79\xbd\x4d\x77\xe4\x58\x4b\x0a\xb0\x7f\x35\xea\x69\x57\x63\xb1\xa0\x85\xe1\x8d\x83\x1a\x3f\xf1\x9b\xb2\x4d\xae\xe7\x8b\x20\x1e\x49\x9b\xf9\x46\x0e\x17\xae\x0c\xc0\x36\x4d\x8b\x3a\x61\xc1\x20\xb9\xfc\x33\x45\xbb\x82\x55\x77\xc1\xbc\x50\x32\xfb\xa7\x4a\xf6\x1a\x3d\x2f\xa8\x5a\xd4\xe5\x07\x42\x55\xde\xd6\x2f\xd5\xe2\x55\x47\x4b\x70\x85\x6f\xd9\x3c\x7a\xf2\xf4\xc5\xd3\xf7\x4f\x23\x1a\x7d\xf7\xf4\x7d\x44\xa3\xef\x9f\x3e\x7c\x12\xd1\xe8\xf5\x9b\xf7\xcf\x5f\xbf\x7a\x17\xd1\xe8\xcd\xeb\x77\xfa\xfd\x9b\x1f\xdf\x47\x8b\x20\x3c\x6f\x18\x7e\x23\x51\x4c\x55\xd5\xed\x81\x00\x9b\xdc\x33\xf7\x2b\x4e\x44\xbb\x69\x0a\x34\x9d\xd2\x6f\x28\xc6\xe0\x96\xdb\xcb\x9c\x71\xfd\xbf\x71\xe6\x91\x7c\xc5\x0b\x95\xa5\x79\xc9\xb8\xff\x44\x95\x65\x12\xec\xfd\x91\x79\x04\xea\x9a\x27\xdc\x3e\x13\xb3\xa3\xb6\x5c\x6d\xc4\x8a\x71\xf3\xc3\xbc\x14\x2b\xae\x5f\x89\x95\x89\x3e\x88\x5a\x29\x2d\xf4\xc2\x0f\x9a\x55\x15\x5a\x36\xf0\x9a\xd5\x84\xf8\xaf\xde\x33\x0d\xc4\x2f\x13\xda\xdb\x75\xc6\xc9\xdd\x8e\x0a\xfb\x7d\x52\xfe\x53\x55\x35\xbf\x57\x55\x54\xa6\x5b\x3e\x14\x32\xbb\xcc\x8a\x88\xf6\x5d\xaf\x43\x46\xa9\x7b\x0c\xd4\x91\x31\x48\x0a\xa6\xcc\x6f\x53\xa5\x7d\xc0\x55\x21\x59\x31\x52\xe2\xc7\xdd\xce\xea\x19\xe8\xd6\x29\x51\x24\x39\x1f\x4e\x66\x72\x6a\x03\x15\xc2\x08\x2a\xf8\x63\xcb\x82\x9f\xb5\x43\x99\x19\x52\x65\x7e\x98\x54\x66\x7c\x8d\x4b\xcf\x9a\x4b\x69\xbd\xd0\x12\x68\x84\xf5\xbf\x70\x2d\x83\x95\x1a\xbe\x25\x71\x9c\x75\xaf\x2c\x2d\xa5\xc1\x41\x96\xe6\xb9\xb8\xe6\xab\x93\xb5\x90\x27\xdf\x3d\x7d\x7f\x22\xe4\x89\x2e\x08\x4c\x87\x79\x09\x06\xc3\xa1\x6c\x97\x64\x9e\x4c\x7b\xd5\x90\x69\xcd\x21\xe6\x69\x63\x64\xb6\x4d\x08\x5c\xfd\xa9\x24\x8a\xa3\x0e\x25\x80\x91\x65\x6b\xb7\x05\x93\x98\x45\x18\x54\xc0\x68\x57\x46\x92\xef\xf2\x74\xc9\x93\x7b\x1f\x06\xf7\x2e\x69\x74\x12\x81\x9d\xb4\x39\xdc\x59\xd4\x95\xa0\xa7\xac\x6a\x61\xc5\x35\xe7\xfb\xe3\xdb\xe7\x8f\xc5\x76\x27\x0a\x5e\xa8\x44\x12\xda\xf1\x36\x23\xe4\x10\xea\x5a\x2e\x0d\xdd\xd7\x4b\x08\x6c\xc9\xf1\x74\x05\x25\xbe\x43\x09\xc3\x29\x53\xa9\xda\x97\x35\xd2\xa7\x32\x6f\x66\xf7\xc7\xe3\xa9\x7d\x30\x36\xf6\x9f\x98\x97\xe5\x9c\xdd\x1f\x8f\xad\x9f\x30\xbc\x39\x7b\x30\x1e\xfb\x85\xa2\x0c\x54\xff\x06\x95\xe6\x4c\x79\x5f\xa7\xd1\xeb\xbf\x84\x32\x52\x6b\x91\x53\xb7\xe7\x94\xfe\xbf\xaa\xac\x50\x55\x4f\x2e\x27\x07\xdf\x00\x70\x99\x8b\xa2\x0b\xe9\x54\x97\x6c\xee\x7c\x6e\xf5\xd6\x9e\x86\xb2\xe6\x81\x1c\xe8\x0a\x8f\xaf\x1b\xff\x62\xca\xbc\xbb\xf4\xdf\x5d\x7e\x65\x75\x97\x49\x58\x07\xbd\xc5\xbe\x4f\xbd\x51\xa2\xde\x70\x34\x06\x8f\x9a\x41\x98\x9a\x41\xf1\xc6\x89\xd0\xbd\xcc\xa7\x76\x6c\x74\xdb\x2f\x47\x2d\xa5\x0e\x1e\x4f\xd8\x10\xd8\x85\xb6\xfa\xb1\x5f\x69\x14\x1d\x7c\x55\x24\xac\x11\x1b\xa1\xcc\x00\x9f\xb2\xf9\x83\xf1\x84\x3e\x18\xdf\xa7\x0f\xc6\x0f\xe8\x83\xf1\xbf\xd1\x07\xe3\x3f\x2f\x7a\x97\x23\xc9\x57\x99\x6c\xc7\x8f\xc9\xd6\xc9\x70\xc2\x18\xbb\x70\x14\x26\xb0\x59\x01\xaf\x95\x86\xb2\x14\x1b\x74\xa2\xd7\x76\x88\x46\xdd\x68\x7a\x3d\x28\xb7\xb9\x40\x81\x71\xca\x0f\x18\x3f\xed\xc9\xeb\x97\x4f\x3f\x2f\x39\x78\xff\x33\x15\x3c\xc2\x85\x1b\x44\x9f\x0d\x5e\x1b\x65\xfd\x35\x98\x27\xfa\xb9\xbb\xf8\x27\x83\xa4\x6b\x0e\x95\x22\xdd\x72\xa6\x0c\x93\x69\xa2\x6e\x1b\xba\x63\xe3\xfb\xc3\xdf\x66\xc3\x8e\x1a\x27\x41\x19\xfe\x2a\x3b\x96\x2f\x00\xc2\x68\xf4\xa7\xb6\x25\x82\x48\xc8\x47\x14\x85\x45\x6d\xe5\x6c\x76\x05\xcd\x08\x06\xae\x46\x12\x1e\xc7\xf6\x97\xbd\x1e\x26\x0e\x6d\xa1\x3d\x8a\x09\xde\x7c\xf1\x95\xb5\xb8\x81\xae\x44\x04\x19\x14\xdc\xd3\xbf\xbc\x7c\xf1\xbd\x52\x3b\x73\x85\xe4\x63\xac\x91\x5b\x73\x07\x9d\x90\x43\xd9\xa1\xbc\x74\x22\x22\xb3\x6b\xa0\x6b\xeb\x74\xee\x9b\x84\x33\xd0\xba\x3c\xcc\x73\x6b\x14\x64\x0c\x86\x12\x82\x94\x04\xe9\x0d\xc0\xa4\x5a\x42\x2c\x67\x1f\x8a\xf9\x07\x75\xb2\xb0\x14\xd9\x10\x77\xfc\x72\xaf\xfb\x34\x68\x9c\x03\xd3\xc6\x39\x80\x47\x0a\xdc\xe6\xd8\xf0\x3c\xf6\x14\x98\x46\xee\xb3\xa3\xfc\x92\x66\x48\xd1\xc9\xa1\x27\x81\xf8\x45\xd2\xb4\xff\xc7\xb7\x2f\x34\x1d\x2d\x67\x00\x93\x61\x5f\x4d\x65\xa8\x64\xfa\x65\x68\x06\x7a\xa8\xd3\x5b\x43\x51\x57\x48\xb3\x84\x69\xfd\x53\x8f\x5f\xaf\x48\x70\xe7\x65\x18\xf3\xbe\xec\xd2\x18\x8b\xa6\xfe\xfa\x15\x57\xd7\x42\x7e\xb2\xa7\xf0\xc9\x1a\xc2\x37\x46\xb6\x00\x85\x36\x2d\xff\x95\x22\x60\x95\xb4\x0b\xf8\xca\xc5\x08\x65\xec\x78\x91\xa4\x96\x5b\x4c\x81\x25\xed\x8f\x09\x8d\xb2\x62\x99\xef\x57\x5c\xf3\x22\xa9\xcf\xab\xcd\xca\xd1\x75\xa6\x36\x8f\x3d\xee\xae\x3f\x9e\x46\x62\x9b\xa9\x56\xda\x38\x4e\x3a\x52\x4f\x08\x75\xe3\xae\xbb\x0a\x63\xef\x29\x50\xbd\xa1\x07\xd2\x8b\x4a\x1d\x9a\xba\x09\xed\xbe\x15\x01\x35\x9a\x99\x64\x5c\xd3\xc6\x28\x88\xd6\x7b\x38\xa9\x37\x71\x0b\xe6\xc2\x5c\xdd\xef\x09\x8c\x2c\xb0\xec\x10\xc0\x68\xb9\xd1\xc4\xd9\x1f\xe4\x3f\x32\xc6\x4a\x50\xa1\xdc\xbc\xb3\xe1\xf1\x4d\xb1\x9d\x38\x05\xae\xe4\x83\x2e\xbb\xd4\xeb\xd9\x71\x17\x69\x7d\x16\xce\x34\x59\x9f\x7a\x2f\xc8\x81\x1c\x3e\x8e\xec\x9d\x34\xeb\x8f\xa9\x1a\x81\x99\x9f\x66\x62\xf0\x17\xfb\x48\xd5\xc8\xec\x60\x96\x53\x65\x6f\xa4\xd9\x0d\xfc\xc6\x61\x64\x97\x9a\x74\xd6\xa9\xb8\x97\x8a\x7b\xa9\x28\xb7\x85\x1e\x48\x72\x7b\x40\xe7\x30\x53\x51\x5b\x8d\x02\xaf\x4f\xb2\x12\x18\x50\x63\x69\x70\x32\x3c\xd9\xa6\x37\x17\xfc\xe4\x46\xec\xe5\xc9\x85\x14\xd7\x25\x97\x27\xe8\xfd\x51\x9e\xa4\x92\x43\xe2\xa5\xb8\xe2\x5a\x5a\x38\xe1\x57\x5c\xde\xa8\x8d\xfe\x79\x23\xf6\x27\x05\xe7\xab\x99\xd9\x9b\x82\x8d\x1b\x57\x94\x96\xdc\x0e\x87\x94\x1f\xac\xb9\xe5\x7b\x5e\xaa\x59\xe2\x3f\x79\xa6\xf0\x59\x23\xf8\xa8\x29\x41\x0f\xbb\xd0\xb4\xc4\xe1\x70\xb7\xd3\x88\xc1\xc0\x0e\xb6\xf1\xcd\xe0\x9e\x63\x46\x3b\x02\x85\xe3\x16\x80\xf9\x49\x48\xa0\xec\x4b\x69\x4a\x28\x0f\xa3\xd1\xe1\x70\x82\x26\x84\x1f\xc8\x81\x4c\xeb\xd6\x98\x7a\x51\xbd\xd4\xa2\xab\x56\xf1\x32\xe7\x0b\xb0\x9e\x0c\x4c\x56\xef\xa5\x7f\x4f\x3f\x1f\xb1\x5b\xf5\x63\xca\x7a\xd1\x74\xcd\x3e\x5f\x9d\xfc\x67\x5d\xc2\x7f\x9e\x5c\xec\xd5\x49\xa6\x4e\xae\xd3\xf2\x44\x72\x7d\xb0\x43\xd4\xd9\xff\x04\xcb\xff\xa1\x97\x30\xd2\x6b\x94\xdc\x81\xc6\x6e\x43\x57\x74\xa5\xb8\xcc\xc5\x45\x9a\xcf\xf0\x4f\x67\x8a\x92\xe7\xeb\x99\xfe\x6f\x8a\x0a\x93\xa6\xbc\xf1\xbb\x11\xb0\x49\x03\x01\x9b\x27\x04\xfc\xb3\x8f\x78\x79\xb4\x91\xb0\x1d\xe8\x9c\x03\xc4\xe6\xe4\x14\x18\xd1\xaa\xc2\xae\x92\xd1\x63\xb1\xe2\x2f\x33\x38\x1e\x00\xbd\x81\xf8\x8b\xb0\x65\x3b\xcc\x59\x91\x5e\x65\x97\xa9\x12\x72\xb4\x2f\xb9\x7c\x78\xc9\x0b\xa5\xcf\x61\xf7\x76\x97\xa7\x6a\x2d\xe4\x96\x16\xec\xde\x25\x5f\x7e\x12\x1f\xee\x7d\x58\xd5\x77\xee\x54\xb2\x7b\x2f\xdf\x3d\x7f\x7a\xf2\x61\x75\xcf\xbd\xcb\xd8\xbd\xf7\x32\xd3\x44\xf7\xc3\xbd\x64\x36\x9d\xff\xdb\xf0\xdf\x17\xd5\x87\xd5\xed\x7d\x7a\x20\x1f\x46\xa3\x6f\xe4\x15\x06\x88\xb8\x07\xf0\x1f\x3a\x87\x60\xb2\xaa\x32\x9a\x32\x11\xc7\x89\x9c\xb5\xb0\x6a\x5e\x82\xc0\xfb\xa7\x69\x36\x9f\x2c\x08\x2d\xd9\x3d\x8c\x30\xf2\xe1\x5e\x5d\xe9\x9e\x95\x71\x7c\xef\xaf\x4a\xb7\x6f\xf0\x61\xf4\x61\x35\xa8\xbf\xe5\xec\xde\xe3\x8d\x14\x5b\xee\x67\x58\xb2\x7b\xaf\x77\x5c\xa6\xfe\xbb\x35\xbb\xf7\x70\xb7\xcb\xf9\x89\x16\xe7\xf6\x8a\x4b\xf3\xa9\x1e\x8f\x2b\x5e\xac\x84\x24\x74\xc3\xee\xbd\x4c\x97\x27\xaf\xdf\x9d\xfc\x72\x32\xf9\xb0\xfa\xf0\x24\x99\xff\x19\xbb\xf9\x61\x45\x3e\x3c\xa9\x8b\xdc\xb1\x7b\x6f\x36\x69\xa1\xc4\xf6\x87\x77\xf5\xdb\x95\xa9\x08\xfb\xe1\xde\xc7\xf1\xbd\x97\xe2\x22\xcb\xf9\x87\x7b\x1f\xae\xbd\x0e\x6c\xd9\xaa\xaa\xee\x3d\x2c\x56\x52\x64\xab\xea\x9a\x5f\xbc\x7e\x57\x3d\xca\xd3\xe5\xa7\x47\x5c\xca\x9b\x0a\xfa\x71\xf2\x32\x2b\x32\xfb\x53\x5c\x64\xd5\xf3\xa7\x58\x96\x37\x5b\x37\x50\xce\xcb\x74\x69\x8a\x56\x84\x5e\xb1\x7b\x1f\x2e\x1e\xcb\xd7\xef\x3e\x5c\xd4\xf5\x5d\xb2\x7b\xd7\x59\x61\x33\x2a\x42\x2f\xd8\xd2\x39\x1b\x25\xf7\x7e\xc2\x18\x20\x1f\xee\x25\x1f\x56\xdf\xe8\xb1\xfe\x86\xdc\x23\x3d\x7d\x7e\x5e\xb0\x57\x7b\xbd\x4f\x93\x0b\x3d\x53\x84\x5e\xc4\xf1\xc5\x39\x9b\x7c\x1b\xc7\xc9\x92\xf5\x27\x54\x1f\xd8\x48\x64\x3f\xb2\x9b\x38\x4e\xf6\x55\xb5\x8c\xe3\x04\x15\x40\x17\x55\x75\x71\x36\xb9\x3f\x9a\x4c\x08\xa1\xd7\xac\xa8\x2a\x11\xc7\xe9\x39\xfb\x77\xfa\x54\xe7\xfd\x0c\x41\x7f\x2d\x5d\x7e\xe7\x19\xe4\xab\x46\x04\xed\x77\xce\x17\x4a\x13\x1c\x4c\x89\xc2\x80\x40\x30\x32\xa6\x98\x9a\x5d\x8b\x44\x11\x30\xc9\x16\xc9\xdf\x0a\x0c\x4f\x44\x9f\x78\xba\x6a\xe3\x40\xd3\xba\x12\x2c\x74\x8b\x91\x57\xcf\x92\x82\xa2\x6a\x86\xa2\x3a\x66\x94\x67\x05\x7f\xc7\x77\x29\x68\x0a\xad\x56\x68\x25\x96\xac\x30\x28\x04\xd0\xa4\x51\x56\xec\xf6\xea\x9d\xba\xc9\x79\x39\x57\xde\xd3\x02\xaf\x5d\x6c\x04\xc4\x55\x56\xee\xf2\xf4\x06\x32\xbd\x4e\x38\x38\xb3\xf4\xb2\xd1\xb5\xd4\xbc\xa9\xf4\x77\x3b\x88\xd2\x6f\x4c\xee\xc7\xe6\x2f\x36\xe7\x67\x9d\x1a\x62\x50\x25\x7e\xa1\xae\x14\x30\xd3\x7c\x95\x6e\xf9\x80\x45\x27\x75\x91\x43\xfd\x3d\x02\xa7\xff\xbd\x12\x00\xa5\x10\xc7\xfd\x2d\xda\xfb\xec\xf6\xca\xc1\x4d\x7c\x6f\x6b\xb3\x02\x33\x67\xb7\x9f\xf8\xcd\xcb\x74\x57\x4e\xe7\x0b\xaa\x4f\xdc\x3c\xbd\x81\xdf\x7a\xa4\xbe\xe3\xc5\x74\x0c\x6f\xaf\x65\xa6\xc0\x0c\x78\xc5\xf3\xf4\x26\x2b\x2e\x1f\xe5\x7b\x09\x0c\x8c\x7e\x09\xc5\xf3\x95\xfe\x59\xee\x77\xe0\x83\xf2\x74\x95\x29\xb0\x6c\xdc\xa5\xa5\xe2\xcf\x8b\xa5\xd8\x66\xc5\x25\x98\x3a\xee\x95\xff\x88\xc8\x0d\x59\x71\x09\xe2\x88\xae\x41\xa6\x97\x97\xde\xf3\x26\xbb\xdc\xe4\xd9\xe5\x46\xa1\x38\x2f\xe8\x27\x7e\xf3\x8e\xff\x03\x2d\x89\xcb\x1d\x5f\x66\x69\xfe\x78\x93\x6a\x71\x7f\x9f\xe7\x16\x90\x4f\x01\x38\x82\x51\xc4\xe7\x27\x59\x71\xa2\x57\xe8\xd9\x64\x12\xc7\xdd\x86\xe2\x7b\x37\xd8\x38\x64\x92\x97\x5c\x25\xfd\x31\x39\xd0\xfb\x63\xd2\x8e\xf7\xcc\xb8\xcd\xd0\xfb\x35\x4b\x2c\x38\x17\x97\x34\xda\x0a\x3d\x18\xe2\xba\x88\xe8\x5f\x54\xc2\x69\x5e\x10\x42\x1b\x69\x56\x17\xb9\xc1\xa5\x32\xcd\x9a\x41\x52\x5f\xab\x0e\x4e\x4b\x18\x25\xc0\xca\x49\x7b\x64\x62\x01\xd3\x3e\x8e\xfb\x6b\x7c\x8c\xe3\x7e\x59\x24\xae\x39\x90\xfe\xfb\x2c\x71\xa8\xd6\x10\xd8\x7c\xf5\xb3\x90\xab\x87\x2a\x29\x48\xef\x11\xd7\x89\xc5\x92\xca\x51\x5a\x2c\x37\x42\x52\x94\x82\xc8\xe1\x70\x20\xa1\xff\x85\x0d\x52\x00\xc5\x1d\x48\xef\xba\xaa\x1a\x1d\x59\x62\x58\x99\x2d\x2f\xf6\x51\xd0\xfc\xb7\xd8\xb8\x83\xd9\xa3\x5a\x0c\xe5\xc5\x6a\x3a\x3e\x84\x90\x15\x0a\x40\x65\xae\xf8\x7b\xb1\x5f\x6e\x60\xb7\x1e\x09\xfa\xe8\xa7\x63\x78\xfd\x33\xe1\x0f\x08\x4d\x24\x0b\xbe\x91\x11\x2f\x56\x6c\xa0\xd7\xca\x93\x54\xf1\xd0\x2c\xcc\xd0\x21\x24\x62\x6a\x94\xf3\xb5\x75\x5c\xe8\x8f\x1d\x2d\xd1\x6f\x87\x1c\xfe\x50\x5d\xb8\x12\xbb\x21\xc0\xab\x39\xf5\xca\x37\xc5\x40\x7e\x23\xcf\xff\x38\x1e\x1f\x1a\xc3\xa1\x74\x13\x4a\x95\x6a\x4e\xde\xb5\x3e\xf3\x26\x33\xd3\xd3\xd5\xe0\x4f\x26\x7d\xb0\x19\xd9\x2f\x37\xdc\xc2\x32\xd9\x56\x4d\x7a\x76\xb1\x99\xef\xf3\xf1\xc2\x33\x1e\x4a\x57\xd9\xbe\xfc\xe5\x8c\x4d\xe2\xd8\x3e\xfd\x7a\xc6\x26\x87\x24\x23\xe4\x16\xf0\xaa\xec\x50\x16\x96\x61\x76\x23\xd3\x0b\x87\xf4\x16\x5a\x3d\x15\x54\x8b\x26\xb0\x95\x77\x92\x5f\x4d\xc5\x50\xea\x01\x3d\x63\x0f\xc6\xe3\x99\x34\xf7\x6e\x13\xc6\xb2\x46\x83\x35\xc5\xf2\xcb\x83\xe1\xab\x53\xcd\xc7\x0b\x00\xb9\xfb\x85\x86\xa9\x94\xd8\xb5\x13\xfd\x0a\x42\x7c\xd7\xc8\xea\xb6\x45\xf4\xd8\xb2\x68\xb5\x01\xba\x02\xd7\x10\xdd\xc5\xf1\x62\xe5\x95\x56\x03\xab\xf8\x85\x18\x08\x11\xbd\xc5\x14\x2d\x88\x75\xc4\x93\xd0\xc1\x38\xee\x4b\xac\x25\x8e\xed\xb8\x0e\xe5\x08\x86\xf2\xec\xc1\x78\x6c\x1c\x46\x69\x0a\xe8\x96\x42\xae\x4a\x4d\xa9\xc2\x56\xd2\x48\xf7\x39\x22\x3d\xc1\xfa\x72\xa4\x07\xbd\xaa\xca\x44\x52\xfc\x8d\x71\x95\x5f\x71\x10\x0f\xa6\x26\x41\x2b\x95\x49\x1a\xec\xf4\x14\x83\x46\xbe\xe2\xc9\x8e\x27\x29\x1c\x2f\x74\x4c\xe8\x0b\xbb\xfb\xdd\xdb\xc1\x84\x8e\x09\x69\xa2\xff\x24\xc2\x52\x07\x81\xd4\x81\xd6\xa8\x45\xdf\x67\x49\x41\x0e\x59\x72\x6c\x5c\xd1\x9a\x3d\xa2\x59\xeb\x33\xfe\x6a\x4c\xa1\xfd\x3c\x5a\xe6\x19\x2f\xd4\xf7\x5c\x53\xfb\x38\x4e\xb6\x40\x42\xea\xcf\x0e\xff\x90\xd0\x9b\xce\x4f\x2f\xf4\x96\xed\x8f\x09\xfd\x6b\x96\xf0\xba\x32\x4e\x3a\x1a\x0a\x54\xfa\x7a\xc3\x79\x1e\xd2\xad\x8f\x96\x6e\x35\x33\x3c\x79\xfd\xf2\xa5\xce\xf3\xae\xd9\x85\x76\x26\x73\x5c\x1f\xe9\xae\x3d\xcc\x5d\x77\x58\xf3\x9d\xee\x07\x1b\xa3\xf0\x29\xd3\x4b\xeb\xc2\x5c\x6a\x12\xaa\xb8\xec\xa6\xd1\xff\x00\x1a\x0d\xa7\x75\x77\x82\x86\x26\xa4\x75\xa4\xf4\x0b\x43\x75\xcc\xb9\xd1\xf0\x6c\x78\x62\x1e\x9f\xc9\xf4\x12\x23\x2d\xf7\x0a\x65\x18\x1d\xea\x4e\x1f\x68\xf0\xe3\xbd\x2c\x85\x04\x47\xef\xf6\x6b\xf6\x58\x24\xd1\x2a\xbb\x8a\x90\x0f\x8b\x3c\x36\x66\x09\x09\x4a\x9f\xb3\xd1\xf9\xcc\xeb\xc8\xaf\x06\x98\xb7\x5d\xba\xe4\xa3\xac\x28\xb9\x54\x8f\xf8\x5a\x48\xde\x59\xa1\x97\x0b\x4b\x7a\x92\x5d\x11\xd2\x7b\x23\xba\x53\x4b\xc4\x43\x21\x14\x06\x94\x1c\x28\x12\x46\x7f\x48\xdb\xa0\xbe\x5a\x1a\xea\x73\x64\xa9\x46\x3e\x07\x53\x55\x8e\xe0\x0e\x37\xc5\xd9\x64\x3c\x26\x81\xab\x1c\x54\x02\x57\xc6\x76\x9a\x9a\x67\xb9\x99\x13\x40\xac\x5e\xa5\x2a\x7d\x2f\xd3\xa2\x5c\xeb\xb5\xc2\xd5\x93\x54\xa5\x49\x84\x68\x8e\xbc\x01\x97\x05\xab\xc7\x4f\xcf\xd7\x6b\xbe\x54\x0f\xf1\x12\x90\x01\xe2\xdc\x4b\xa0\xa7\x1d\xe5\xca\xf4\xf2\xf9\x36\xbd\xe4\xfa\xb0\xb2\x4b\x45\xcf\x5b\xb6\xbd\x34\xf3\x86\x93\x67\x91\x50\xa7\x27\xeb\xec\x33\x5f\x9d\x9e\x68\xaa\x38\x3d\x19\x9f\x9e\x28\xb1\xd3\x7f\x23\xd2\x2b\x46\xa5\x5c\x22\x0a\xf7\x34\xd3\x85\xde\xbb\xcc\xd6\xa7\x17\x69\xc9\xff\xf4\x47\xfa\x76\x9c\x7f\xf7\xfa\x49\xbe\x79\xf8\xd7\x87\x8f\x1e\xea\x7f\x8f\xbf\xff\xf6\xd1\xc3\xa7\x7f\x79\xf8\xf0\xe9\xc3\x17\xf0\x42\xbf\x7f\xfa\xf0\xe1\xc3\xe7\x8f\xdf\x3f\x7c\xfa\xf0\xf5\x35\x63\x11\x05\x49\x64\x74\x9d\xad\xd4\x86\x15\xa3\x0d\x10\x0c\x36\xf1\x26\xda\xee\x27\x1f\xb2\xb4\x20\xb4\x18\x7d\x04\x98\xd4\x91\x00\xac\x55\x20\x25\x77\xf4\x3e\x29\xe8\x58\xd3\xcc\x65\x1c\x17\x1e\x4c\x43\x80\xee\x59\x80\xe8\x8e\x31\x71\x56\x52\xec\xa6\xc0\xc8\xed\x0a\x42\x73\x9e\x5e\xf1\xee\xad\xb8\x2a\xc0\x91\xc7\xf2\xaa\x86\xe5\xbc\xe4\xea\x59\xc6\xf3\x55\x42\x34\x4b\xb9\xa7\xd1\x27\x7e\xb3\xdf\x85\x94\xe6\x53\xe1\x05\xe1\x01\x72\x83\xe9\x3c\x7e\xf3\xa1\xe1\x37\xf1\x03\x70\xe3\xe6\xcb\xcb\xfa\x0b\x90\xf2\x88\x3e\x15\xc9\xfb\x02\xfc\xd0\xf0\xf5\x45\xbe\x97\xf0\xf6\x31\xbc\x3d\x18\x79\xc1\xa3\x5f\xd9\x3a\xf9\x5e\xd8\x45\xf9\x6b\x66\x10\x23\x40\x57\x9b\xfd\x16\x1e\xce\xc6\x58\x00\x2c\xee\xbb\xb9\x3a\x8e\xb7\xdc\xbf\x89\x24\x2d\xc8\x81\xc2\xee\xc0\x5e\xd9\x62\xb1\x41\x5e\x96\xdf\x74\xdb\x74\xa2\xef\x05\x33\x4c\x1b\xb8\x5d\x3e\x52\xbe\x6c\xb3\xdc\xcb\xd7\xbb\x11\xb8\xed\xfc\xb8\x5b\x69\x39\xa7\x3f\xa6\x1f\x33\x13\x47\xbb\x25\x29\x55\xd5\x7e\xb4\x49\xcb\x67\x78\xbe\xcd\xbc\xc6\xe2\x00\x61\xc9\xf7\xc7\x64\xfa\xb8\x30\xd5\xfc\x50\x90\x1f\x8a\xa6\x2d\x4f\x4e\xe2\xf8\x87\x62\x9e\x2f\x8c\x6b\xe7\x3c\x5f\x50\x25\x49\xef\x27\x27\xe5\xad\xb3\x22\x2b\x37\xcf\x8b\x0c\x7c\xea\xeb\x27\x63\xc3\x67\x25\x96\x0d\x1b\x9f\x6e\xce\x84\x73\x44\x1d\x0c\x36\x44\xc8\xf9\xc6\x08\x9d\xbd\x1f\x6d\x6f\x4b\x5d\x4c\x28\x3a\x46\x5a\x74\xde\x66\xbf\xf1\x9c\x5f\x66\x17\x59\x9e\xa9\x9b\x88\xb1\x4b\xae\x8c\xaa\x64\x05\xe2\x6b\x92\x41\x36\x4d\x0b\xc1\x7c\xec\x2d\x2f\x56\xa0\x6f\x05\x1f\x2f\xf3\xc9\x42\x0b\xfb\xdf\x59\xa4\x87\x2e\xf2\x18\xeb\xd7\x36\xaa\x99\x09\xac\xe6\xc2\x69\xc0\xb2\x66\x92\x66\xe6\x5c\xbb\x48\xe5\xb3\x0c\x5c\x97\x8e\x9f\x01\x2e\xe5\x70\x0d\x49\x23\xd2\xce\xde\xc0\x33\x5c\x6e\x87\x85\x50\x43\x63\x1a\x1b\xd1\x48\xc9\x3d\x87\x7c\x97\x7b\xa5\xf8\x97\xeb\xc4\x64\x7e\x85\x7e\xc6\xaf\xae\xcd\x0c\xda\x5d\x07\x1c\x5c\xd3\x52\x8b\x57\x98\x89\xa2\x9d\xbe\x49\x58\x25\xcf\xc1\x95\xff\xf4\xe4\xb7\x21\x5c\x0b\x4f\x4f\x26\x50\x86\x3b\xcc\xbe\x7c\xa2\x42\xfa\x2d\x4f\xcb\xbd\xe4\x77\xa4\x36\x29\x5c\x67\x5e\xfe\xee\x1c\x70\x24\xd7\xe9\xe7\xae\xd6\xb0\xc4\xc6\x08\xf8\x9d\xa9\xc7\x71\x71\xc7\x50\x88\xbd\xd2\xa9\xa6\x27\x85\x28\xb0\x76\x4d\x91\xbd\x39\x9e\xfb\x6d\x70\x2d\x5b\x04\x8d\xd7\xaf\xcb\x88\x1c\xaf\x07\xa7\x2a\xfb\x2d\x28\xd8\x54\x15\x16\x05\x89\xea\xe4\x3f\xe3\xc9\x04\x81\xde\xcc\xf1\xf4\x4c\xd3\xa2\xe6\x22\x6c\x56\x6c\xe1\xc4\x4f\x4f\x30\xd3\xf4\x24\x1a\x64\x62\x10\xed\x3e\x9f\x9e\xc0\x69\x37\x3d\x99\xec\x3e\x9f\x7a\x4b\xb4\xfc\xe2\xb2\x2e\xdd\xe4\x7c\x07\xcf\xb6\x59\x96\xb3\x0d\xba\x06\xad\x6f\xb4\xb9\xae\x6b\xd1\xb1\x53\xbd\xfd\xd9\xda\x2a\x2a\xbd\x78\xae\x57\x6c\x44\xa3\x21\xae\x59\x73\x2e\x87\x75\x86\x9b\xbb\xb1\xfb\xbc\xd2\x83\xea\x23\x82\xaa\x93\x3f\x03\xbd\x32\x0d\x34\xf4\xea\x37\xa8\x95\x0d\x27\x41\xd3\x7c\xe4\xf7\xb7\xc0\x31\x8c\x09\x2d\xab\xaa\x88\xe3\x6d\x55\x25\x5e\x52\x60\xe0\x1c\x94\x0d\x1c\x60\x3e\x27\x31\x0b\x9e\x12\xd7\x2b\x32\xe5\xde\x83\xee\xee\x55\xc6\xaf\x9f\x49\xb1\x65\xf8\xf3\xbd\x60\x9a\xe6\xcb\x52\xd1\x6c\x24\x39\x46\x31\xf9\xa9\x4e\xe3\xbf\x0a\xd2\xea\xcc\x6c\xbe\x80\x5c\x9a\x0c\x63\x12\x3b\x93\xfc\xb3\xe2\xb2\x48\x73\xb3\xb9\x56\xf6\xbd\xce\x85\xa0\xf2\x6c\xac\x97\x40\x5a\x2a\x7d\x4a\xa0\x7c\xc5\xea\x17\xb8\x5a\xc7\xbd\x6c\xb4\x87\xb3\xf2\x45\x56\x70\x54\x0e\x97\xb6\xa8\x02\xf6\xc3\xa3\xd4\xac\xec\x6c\x74\x91\x4a\x57\xce\x85\x7d\x3d\xf6\x49\x75\xf9\x38\xcf\x76\x3b\x74\x19\xc2\xf5\xf7\x6a\xbf\xb5\xd9\xcd\xe3\xf3\xa2\xe0\xb2\xf1\x0e\x74\x79\xb6\xde\x34\xcf\x2e\x8b\x9f\xb3\xd5\x25\x57\x25\x16\xb4\x4c\x97\x1b\xbe\xd2\x89\x6c\x3e\x7c\xa3\x99\x60\xd7\x22\x7c\xf5\x06\xe7\xfa\x7b\x5b\xd8\x36\xfd\xac\xbb\xd6\x78\x44\x27\x29\x68\xbb\x79\xf3\x18\xee\x72\x4d\xc3\x41\x44\x7c\xf2\x0b\xb3\xbf\x7e\xb5\xbf\xde\x69\xb1\xe0\x97\xe0\xe9\x57\xb7\xb7\x36\xd9\x5a\x61\xfe\x92\xe7\xcf\x84\x34\xd1\x97\x5f\xf2\x62\xef\xba\xd6\xd0\x67\x51\x09\x7e\xe6\x81\xcd\xdd\x43\x44\x00\x5b\x89\x25\xda\x16\xbe\xd3\x3c\xe2\x4b\x40\x0e\xb4\x0a\x72\x5a\x7f\xc6\xf8\x1d\x84\x42\x24\x2a\x57\xc6\xa7\xba\x8c\xf0\xaa\x13\x5e\x83\xc4\xf2\x70\xad\xc0\x07\xc8\x7f\x34\x38\xf7\x1c\xf7\x4d\x69\xbe\xea\x9f\x06\xb3\x9e\x98\x9a\xd7\x52\x14\x2a\x83\x50\x1b\xf0\x08\x4b\x56\x68\x76\x53\xb3\x73\xd4\x0a\x45\x46\x9f\x3c\x18\x50\x8e\xdc\x59\x1c\xff\xa0\x82\x86\xbe\xac\x75\xab\xcf\x55\x2d\x03\x11\x5a\x30\xd7\xdb\x80\xd5\xa1\x92\x15\x71\xfc\x32\x55\x1b\x3d\x73\xc9\xb7\x1e\xff\xdf\x50\x29\xc0\x52\xb9\xf7\xc4\x2f\x75\xf8\xc0\x99\x4b\x35\x14\x75\x8f\xa4\xd1\x90\x64\x4e\x54\x1b\xbb\xdb\xe6\x6c\xad\xb7\x38\x2e\x48\x07\x99\x92\xb2\xf1\x69\x7a\xe6\xde\x5b\xa6\x2d\x1d\x0c\x88\x7b\x39\x4f\x17\x86\xaa\xc6\x71\x22\x06\xac\xe3\x43\x6d\xbf\x35\x13\x83\x04\xfa\xb5\xe4\x59\x9e\x64\xc0\x80\x99\x52\xef\x49\x52\x55\x13\xf2\x8d\x9a\x8a\x81\x3a\xd4\xa3\xf7\x3e\xd0\x4c\x8b\x25\x2d\xd8\x4b\xb0\xac\x6a\xcf\xba\x31\xe2\x84\xaf\x7d\xc6\x5d\xb3\xde\x65\x46\xac\xa8\x4b\x7d\x6c\x16\xcf\xb1\x7b\x08\x76\xc7\x37\xcf\x36\xa8\xfc\x66\xb9\x1d\x96\xc3\x0f\xef\xc0\x36\x28\x22\x83\x7a\x42\xd5\x86\xfb\x49\x93\xff\xa8\x3e\x94\xe4\x43\xf9\x0d\x18\x11\x41\xae\x88\xd0\x77\xe1\x4a\x79\xab\x5b\xf5\x26\xe1\x84\xc2\x12\xa2\xdd\xc2\xc5\xcf\x60\x2a\x7e\x7f\xec\x65\x7c\xd3\xa1\xbe\xb7\x67\x47\xb0\xcc\xcc\xbb\xde\x5b\xa1\xc5\x73\x3b\xcf\xe8\x97\x52\xd4\x4c\x79\x6d\x95\x34\x97\x0b\xaa\x29\xb6\x7f\x30\x7c\xe9\x64\xd6\x87\x3b\x21\xbd\x26\x4b\x52\x20\xe9\x8d\x18\xcb\x60\xd7\xf9\x2a\x0f\x73\x84\x0b\x2a\xcc\x79\x86\x32\x70\x23\x95\x25\xb4\x7a\xa1\x40\x44\x10\x72\x50\x26\xbd\xbd\xa6\x92\xb3\x28\x9a\x46\xc0\x3d\xd1\x57\xc1\xe0\xbe\xba\x63\x8c\x8c\xdc\x0c\x85\xf7\xbc\xdd\xa6\xb9\x86\x20\x74\x0a\x68\xb0\x14\xd4\x5d\x97\xfc\x77\xa3\xef\x1e\x33\xb7\xe8\xea\x0d\xe6\xbc\x84\x60\x1e\xbc\x05\x4f\x25\xe3\xa7\x8a\x3d\x97\x89\x24\xa7\xe4\x56\xb2\x24\x83\x93\xb1\x58\x25\x63\xda\x1f\x13\x02\xfe\x40\xa8\xdf\x2c\xf4\xbe\x82\xc7\xe5\x66\x98\x8d\x94\x18\x2d\x37\x07\x5d\x32\x96\xf1\xc4\x94\x61\xe4\x14\xaf\x90\x5e\x31\x64\xd2\xaf\x75\xe8\xca\xd1\x85\x26\x12\xb4\xd4\x50\x09\x69\x24\xc3\x4a\xec\xce\xad\x7b\xfb\xbc\x63\x1c\xa1\x6f\x2b\xb1\xec\x29\x77\x18\x5d\x67\x49\x41\x0b\x24\x9b\x5a\x40\x0c\x4f\xa5\xbf\x27\xee\x8d\xf7\xd1\x1d\x50\x63\x5a\x74\x6f\xef\x82\xe9\xc1\xee\x15\xe7\x8d\x02\x41\x45\x1e\x56\x51\xd4\xe5\x32\x1e\x6c\xfe\x27\x75\x0f\xae\x44\xc2\xdd\x46\x39\xb6\x60\xc9\xe9\x70\x02\xb0\x8b\xdc\xae\x42\xfd\x7a\xe6\x32\x32\xf7\xab\x06\x24\x3b\x52\xd4\x82\x4c\xd5\xf9\x70\x02\xf0\x19\x5e\x59\xb0\x1f\xda\xa5\x59\x5f\x68\xea\xbd\x42\x00\x2a\x45\x27\xc4\xeb\xd1\x8b\xee\x39\x51\x5d\xeb\x9b\x4a\x06\x24\x58\x8a\x7d\xb1\xc2\x13\xc1\x2c\xda\x41\xee\x1f\x24\x0e\x0b\xc0\xd7\x5e\x4f\x8f\x68\xb5\xa9\xe6\xc9\x5c\x92\x9a\x64\x7a\x29\x30\x1f\x34\x61\xda\xd2\x70\x63\xcb\xbc\x43\xad\x5d\x11\x26\xd1\xf5\xd8\x04\x61\x35\xf8\xfd\x22\x95\x7a\x8f\x4e\x6b\x92\x07\x0a\x3c\xa4\x2f\xb3\x62\x3a\xa6\x2b\xb1\x34\x0d\x95\xa6\x4d\xf6\x71\xb0\xd6\x54\x77\xa0\x6a\x26\x90\x86\xfc\xe1\x54\x35\x18\x46\x8a\xe3\x8b\x1f\x0b\xef\xd4\x7a\x66\xc1\x85\x51\x6b\xb3\x75\x77\xef\xf0\x7c\xc5\xa5\xea\x12\xe9\x3c\xd9\x69\x9b\x15\xc3\x5a\x32\xd2\xc2\x9c\xbf\xa4\xae\x1c\x37\x1a\xb9\x8b\xfa\x8d\x90\xd9\x6f\x5f\x28\xd5\x4a\x5f\x93\xf1\xf8\x0f\xa7\x27\xba\x0e\xf7\xa6\x5d\xc9\xc6\xab\xa4\xc7\x13\x49\x28\x84\x16\xf8\x35\x4b\xba\x6f\x00\x9a\xf7\x1c\x2a\xf1\xee\x02\x68\xa4\x3b\x9d\x2d\xd3\x3c\x32\x9a\xb0\xac\xb3\x90\xcc\x9f\x4d\x5d\x46\xe6\xdf\x81\x44\xd0\x49\x51\x28\x53\x0c\x8e\xee\x86\x2f\x3f\xf1\xd5\xdf\xb8\x14\xc8\x3a\xf7\x27\xb5\x08\x55\x0f\x8d\xa5\xe3\x59\x61\xd8\x69\x37\x15\xf5\x17\xcc\x1f\x4d\xfe\x0c\x67\x8b\x9b\xcd\xdf\x12\x72\x5b\x3f\x7d\x1f\xf2\x0e\xb5\x60\x10\x9c\x6a\xf5\x6b\x0c\xc2\x93\x90\x16\x1b\x07\x1f\xd3\xd5\x0a\x00\xa3\xe2\xf8\x89\xaf\xb8\xb7\x57\x2d\x77\xe6\x21\xdd\x65\x1a\x03\x0f\xf7\x42\x33\xd6\xf9\xbc\xde\x11\xee\x83\xb1\xf7\x08\x7d\xde\x9a\x7c\x4f\x70\x0f\xa1\xba\x2a\x44\x81\x16\xef\x88\x02\x33\x01\x5f\x23\x6a\xd8\x65\x63\x52\x71\xcc\x5a\x81\x37\xac\x15\xcc\xcd\xdc\x81\xc2\x5d\xa7\xfa\x3a\x95\x95\x67\x6b\x88\x91\x2c\xbd\x55\xc3\x58\x31\xc3\x4b\x36\x32\xdd\x9a\xdb\x2d\xca\xbf\x38\x37\x2f\x7e\xff\xdc\xd4\x0b\xe6\x91\xef\x7d\xa3\x49\x35\x71\xb0\x99\xb6\x00\x2b\x6a\x52\x19\xbe\xc4\xa5\xda\xfb\x11\x2f\xb3\x5c\x58\x7e\x36\x3e\xcd\xce\xfe\x18\xc7\x45\xbf\xa3\x8c\xaa\x92\xfd\xae\x52\x10\xf1\xaf\x2b\x87\x3e\xd9\xba\x04\x91\x38\xfe\x41\xb3\xa1\xba\x76\x68\x36\xfd\xfa\x26\xd7\xbd\xff\xd1\xbf\x96\xab\x4f\x27\x30\x87\xaf\x87\x0d\x25\x74\xcd\x94\x16\x01\xdb\x15\xe8\x35\x92\xa2\x96\xc9\xe5\x08\x42\xd0\x21\x1f\x48\x3b\x33\x3d\x12\x4a\x89\xad\xc9\x65\x36\xbd\x1c\x5d\xc0\x5b\x97\xcf\xd7\x08\x05\x41\xf6\x4c\x6e\x9b\x41\xa7\x3f\x29\x45\x9e\xad\x4e\x94\x4c\x8b\x12\xaf\x4d\x22\x6a\xda\x01\x16\xdc\x90\x70\x96\x14\x6d\xbd\x6e\xc0\xa3\x46\x17\xb9\x58\x7e\x82\x46\x77\xa6\xdb\x84\x4d\x75\x3d\xec\x4c\x7c\xed\x8f\x06\x32\xc5\xd3\x2f\x36\x40\x37\x1b\x0b\xf7\xa7\x1e\x2c\x93\xf1\xa4\x7c\xc5\x3f\xab\xf7\xe2\x9d\x2d\xc5\x4f\xe5\x9f\xa7\x49\xd1\xd0\x28\x1f\xe9\x67\x47\xa2\x23\x9d\xec\x48\x89\x3d\xb4\xbc\x0c\xcc\xbe\xeb\xe7\x5d\xb5\x7b\x1c\xfa\x3f\x1a\x58\xff\xd6\xda\xa1\x18\x29\xb1\x9b\x39\x49\x5b\xb3\x9d\x4a\xec\xc8\x94\x77\x5c\xce\xf7\x0c\xdf\xb4\xce\x85\x66\xbc\x87\x7b\xe5\x76\x72\xe6\x97\x68\x56\x81\xfd\x31\x95\x03\xde\xcd\x10\x09\xf6\x30\x43\xd8\xe7\x14\x7f\x65\xd6\x02\xaa\x18\xf1\xa2\xdc\x4b\xc3\xd3\x95\xcc\x3e\x7b\x12\xc1\xbe\x7e\x69\xf8\xf7\x5e\x79\x26\x66\x89\x60\xa5\x2d\xee\x53\x96\x5c\xeb\xbf\x25\x21\x47\x9a\x40\xc8\x14\xfb\x9e\x15\xc9\x9e\x2a\x50\x9c\x69\x7e\x39\x21\xe4\x9c\xa5\x5a\x9e\x0f\x4b\xda\x13\x32\x3c\x52\x12\x4d\xd9\xde\x02\x21\xde\xea\x66\x4e\x05\x55\x62\xea\x86\x36\xa5\x62\x30\x21\x1e\x87\xf4\xf3\x31\x96\x55\x73\x78\x78\x2b\xec\x2b\xc9\xaa\xaa\x66\x66\x41\xa6\x00\x51\xf4\xc8\xba\xac\x5d\xd5\x25\xfb\x2e\x51\x64\xd8\x69\x51\x31\x40\xde\xd7\x63\x2f\xb2\x23\x1c\xb3\x60\x12\xd7\x27\x2a\x44\x8a\x40\x11\xb2\x4e\xfa\x05\xe8\x3a\xb2\xd5\x8a\x23\xe0\x52\xbb\x45\x71\x0c\x69\x2e\xcd\x43\xe2\x3d\x99\x65\x0b\x76\x45\xc2\xb9\x48\xe9\xef\xd0\xff\xf4\x22\x07\x80\x92\x5a\x2b\xb3\x67\xe3\xd3\xfd\x99\xd3\xc6\xec\x07\x03\x52\xce\xf7\x8b\xa0\x9c\xc3\x91\x56\x24\xaa\xa1\x52\x86\xe4\x72\x90\x19\x71\xba\x9e\x9f\x9f\x12\x1b\x40\x2e\x38\x1a\x8c\xc0\xd2\xb6\xe3\x42\xd5\xcc\xaf\x9e\x02\xcf\xa8\x79\x07\x0a\x68\xf3\x70\x42\xfc\x93\x02\x56\xba\xe9\x02\x58\x1d\x79\x4a\x52\x2b\xc8\x4a\x7b\xc9\xd2\xad\x7d\xf0\x38\x5c\xd2\xbe\x00\x41\x89\xeb\xa4\x7d\x1b\xc6\x73\x15\x11\x42\x85\x96\xa8\xdd\x42\x0a\xa6\x3b\x65\x99\xff\x3c\x14\x35\xe6\x59\xad\xab\x08\x88\x13\x10\xd4\xb6\xee\xd7\xad\x7e\x41\x83\xac\x7e\xe1\x29\x19\x4c\xea\xcc\xf6\x6c\x6b\x95\x35\x48\x69\x38\x48\x5d\x89\x66\x76\x44\xa7\xc3\x09\x3d\xda\xd8\xb0\x32\x5c\xd8\xaf\xf4\x39\xdf\x1f\x1f\x1c\x46\xa1\x5b\x07\xbf\xe2\xf1\x6d\x46\xc0\x3a\xba\x7b\x6b\xe1\x99\x90\xdb\x54\x57\x92\xe8\x1d\x05\x43\x5a\x2b\xda\x7d\x21\xf5\xbb\xc0\x55\xc4\x6d\xc8\x4b\xae\x1e\x69\x51\x34\x2b\x2e\x1f\x03\x45\x79\x0b\x18\xa3\xd6\x5c\x11\xcf\xf5\xbb\x12\xd5\x35\xfc\x25\x24\xf3\xf5\x62\x43\x56\x3f\xe3\xd7\x3b\x21\x95\x8d\x11\x76\x95\x01\x2a\x31\xfb\x47\x22\x51\xe5\x4b\x6d\x74\x51\xbe\xca\x94\x90\xcf\xcb\xef\x61\x4b\xb3\xbe\x74\x34\xcf\x5f\x26\x90\xd4\x7c\x70\xdc\x45\x27\xa5\xf7\x53\xda\x19\xee\x12\x5e\xd1\x40\x3c\x5f\x3d\xc1\x66\x63\xd2\x8d\x72\x80\x21\x70\xef\xcf\x4c\x84\xe9\x55\xb6\x2d\x99\xe2\xee\x23\x20\x36\x97\x6c\xbe\xa8\xc7\xe3\x5f\x8e\xb1\x5e\xa8\xac\x01\x22\x1b\xf6\xd5\xc5\x8a\x2f\x60\x41\x4c\xac\x13\x94\xae\x38\x8e\x95\x1d\x33\x38\x88\xce\x59\xe1\x2e\x82\xfc\x6f\x4a\x9c\x99\x2f\xef\x85\xb3\xac\x2f\xda\x77\x30\x55\xd5\xf1\xf2\xdc\x65\x25\xfa\x1c\x0c\xae\x85\xcc\xa7\x38\x1e\x33\x06\x2a\xa1\x9a\x0a\xfd\x84\x58\xa2\xd8\x6c\xe5\x8d\x8d\x3d\xa0\xa5\x21\x46\x12\x16\x14\x15\xf5\xde\x0c\x3b\x35\xac\xc9\x9d\x5d\x2f\x2f\x41\xf3\x47\xa5\xd5\x65\xa5\xcc\x1d\x9a\x19\xf5\xbb\x3d\x38\x96\x57\x33\xb5\x76\xa4\xce\x44\x1c\x8b\xa1\xf7\x7c\x7f\x0c\x07\xad\x6b\x8f\xa9\x87\xd6\x49\x34\xe3\x6d\x06\xe5\x3c\xd5\xa3\x82\xbf\x87\x29\xe6\x0d\xda\xe3\x46\x8f\xd0\xcf\x50\xee\x6f\x56\xeb\x2f\x74\xcb\xbf\xb7\x4f\xa9\x19\x99\x3d\x13\x7d\x6f\x1e\xab\x2a\xed\xbb\x19\xd0\x13\x14\x5e\xae\xf5\x6b\x93\x3e\x7c\xe1\x27\x81\xe5\xea\xa5\x80\xe7\xd3\xc0\xa6\xac\x6b\x6f\x8e\x19\x93\x50\x61\x1d\x44\xea\xdc\xbc\x81\x26\x9c\x99\x07\xdd\xbc\x59\x82\xbf\xd9\xdf\x94\x29\x8e\xd6\x1f\x99\x22\xd3\xa4\x7e\x3c\x57\xb3\x30\x71\xfd\x89\x58\x3d\x1d\xbe\x22\xd3\xfa\xd3\x99\x82\x98\x1f\x90\xcf\x34\x0b\xb5\x70\x05\x0a\x8b\x24\xac\x91\xda\x86\x9e\x15\xb3\x30\x97\xa9\x01\xea\xb6\x89\x68\x41\x6c\x5d\xef\xc5\x79\x71\xa4\xa6\x31\x85\xba\x0a\x42\x08\xe9\xd9\xd4\xac\x00\x6b\x2c\x41\x53\xbb\x18\xcc\x0d\x28\xf2\x66\xe6\xfc\xf5\x97\x4c\x2d\x94\xc1\xbd\xbe\x1f\x4d\xdb\xcb\x0f\xe4\x1f\x56\x42\x8e\x7b\x0a\x76\xfc\x1e\xf6\x58\x1e\xc7\xf5\xde\x3f\xb6\x17\xff\xf9\xfd\x1d\xf2\x10\x4b\xf6\x77\xe1\xf0\x47\x4f\xf2\xf3\x3f\x82\x29\x5c\x68\xaf\xe3\x58\x7b\x63\x1d\xf1\x85\xa5\x45\x33\xd6\xc9\xbc\x20\x12\x3e\x96\x4c\x53\x26\x3c\x3e\xc0\x77\x44\xaf\x83\x31\x8e\x0a\xfe\x59\xbd\xcb\x2e\xf2\xac\xb8\xb4\x2d\x2c\xe3\xf8\x46\xb3\x9f\x9e\x09\xa6\x16\x08\x7f\xde\x70\x9e\x9b\xd8\x5f\x0c\xd1\x2d\xda\x2d\x9f\xaa\x63\x56\x77\x0a\x40\x32\xad\x7b\x87\x59\x17\x74\xe9\x6d\x01\xba\x66\xe3\xd3\xf5\x59\x6e\xd9\xbf\xb5\x8d\x76\xb3\x61\xf9\x7c\x0d\x91\x21\x37\x96\x17\x3d\xb5\xc1\x57\x37\x10\xd6\x29\x8e\xf1\xaf\x57\x39\x63\xc2\x04\x7f\x4a\xfb\x0c\xbf\x9e\x92\x94\xed\x93\x14\xc9\xc3\x8e\x65\x56\xb2\x51\x71\xac\xce\xd8\x52\x17\x52\x8f\x65\x6f\x33\x42\x0f\xe1\x32\x8e\x93\x2b\x91\xb8\x47\x1a\x21\xbb\x15\x11\x50\x77\x27\x3b\xf0\x7c\x2e\x78\xc2\xe9\x86\x2e\xf5\xe2\xa6\xbb\x38\x4e\xde\xea\x2c\x75\x71\x84\xfa\x4f\x01\xdb\xd7\xb0\xda\x7d\xcf\x3f\x43\x07\x12\x9f\xe3\x5c\xea\x2d\x43\x53\xd3\x11\x7f\xd6\x30\x62\xab\xee\xd1\x8a\xe5\x75\x23\x7a\x22\x54\x6f\xad\x68\x4a\x0e\xcb\x01\xdb\xc0\x29\x71\xc0\x81\xb1\x03\x72\xd0\x9b\xb2\xbd\xa2\xcd\x71\x43\xe8\x17\xd6\x6c\xa4\x37\x6e\x68\xe6\x60\x66\x37\x8e\xf5\xd2\xef\xeb\xb1\x5d\x1a\x0e\xc3\xea\x50\x97\xce\x36\xfd\xad\x48\x0a\xcf\xce\x17\x9f\x7d\x63\x23\xe2\xa4\xe7\x32\x14\xb1\x43\xdd\x48\xad\xff\x1c\xd3\x3d\xb6\x37\xb4\x9f\x68\x50\x78\xda\x20\xf0\x0d\xfa\x8e\x37\xe2\x7f\x1c\x8f\xe1\x90\x3a\x62\x67\xe1\xe3\xd5\xfe\xb5\x19\xbb\x49\xb9\xc3\x92\x4a\xd6\x1f\x9f\x26\xf2\xb8\x3a\x4a\x35\xb9\xa3\x3e\xb2\x47\x55\x95\x84\x32\x3d\x78\xdc\xdc\x2a\xb1\xab\x05\xdc\xe3\x37\x1d\xc3\x1d\xb0\x58\x28\xfb\x83\x9a\xb1\x66\x0d\x6b\x62\x62\x48\x2c\xa1\xfd\xa4\xc9\x07\xd5\x54\xe0\x18\x3f\x14\xa6\xd0\xc4\x8f\xc4\x31\xb2\x67\xa7\x52\x6f\x8d\xdb\x1f\x12\x17\xc0\xeb\x85\xfe\xc9\xa1\x4d\x8f\x30\xea\xed\xdf\xe0\xcf\xc1\xc2\x2b\x25\x9c\x46\x38\xd4\x51\xa8\xbb\x74\x07\x93\x57\x61\xd3\x1e\xc7\x27\x5a\xe6\x6c\x39\x92\x5a\x1f\xbf\x89\x5f\xa7\x9d\x28\xbc\xa7\x8b\x28\xef\xa8\x9a\xb6\xba\x4a\x8f\xb7\xa5\x63\xe4\x8e\xa4\x7e\x2f\xda\x63\x58\x2f\xaa\x5f\x7c\x46\xb7\xe0\xd7\x28\x09\xc0\x59\xf6\x2f\x78\x94\xc2\xf8\xd2\xbf\xc2\x83\xb9\x8a\x69\x0c\xb3\xc4\x61\x96\x04\x6e\x2d\x8b\xac\xdc\x24\xbe\x3c\xfc\x37\x1b\x17\xbb\xf3\x72\xb8\xbe\x54\x18\xb9\xfb\x25\x94\xac\xea\x0c\x1d\x9a\x46\x05\x4e\x12\x47\x73\x74\x6e\x67\x3f\x7d\x87\xe2\xd5\x5c\x62\x85\x37\xd4\x3f\x84\x78\x95\xa1\xc2\xc5\xd2\x2b\x67\x3b\xee\x70\x2a\x3d\xae\x0c\xc0\x2a\x51\x2e\xa7\xa5\xd9\xb3\x73\x09\xc7\x4d\xbf\x74\xba\x0f\xf4\x18\x48\xcf\xfe\x8c\x49\xf7\xac\x44\x4a\xec\x8a\x1e\x04\x2f\x8c\x76\x3b\x63\xfb\x61\x41\x0b\xb6\xaf\xa9\x74\x6e\x73\x1e\x11\xfc\x7a\x19\xcb\x8d\x82\x6d\x98\xeb\x61\x3c\x20\x0f\x81\x04\xc3\x0c\xd5\x10\xd0\x42\xb3\xb3\xfb\x10\x2d\xea\xb9\x4a\x14\x21\x34\x59\x9e\x8f\xc6\xe3\x49\x55\x2d\xcf\x86\xfa\x87\x16\x1b\xde\x65\x09\x66\xd4\x7b\x8d\x73\xf3\x40\x28\x60\x71\x28\xe2\x34\x2f\x78\xf4\xe2\x5b\xff\xfc\x85\x2c\xfa\xe5\x7c\xbd\x20\x07\x6f\xd1\x70\xee\x60\xae\x9b\xb6\x35\x8a\x8d\x4f\xd5\x19\x6f\xda\xd6\x0c\x06\x8a\xb8\x97\x73\x65\x4d\x68\x58\xf0\xae\x71\x88\x07\xa3\x59\x57\x0e\xf2\xcf\x91\x59\xbf\x3d\x50\xa9\xff\xf3\x35\x5e\x28\x89\x82\x22\x4c\xb0\x2e\x6d\x1b\xa8\xbf\xc4\xa9\x60\xc2\x3f\x5a\xe9\x60\x90\x92\x62\xde\xb2\x31\x99\xa7\x8b\x05\x13\xa6\x6d\xa0\x6f\x13\x5e\x15\x83\x8c\xca\xa3\x79\x3c\x99\xd8\x5e\x42\x83\x16\xeb\x8d\x28\xa7\xdf\x69\x1e\x09\x93\xbf\x17\x2a\x75\x17\xca\x5d\x7a\x3b\x7c\x07\xf7\xc1\x45\x70\x55\x2b\xa9\x7f\x86\x75\x5f\x25\x7b\xd3\x08\x6c\x8b\x89\xe3\x17\xde\xc1\x28\xcb\xef\xb8\xc8\x4a\x76\x9b\xe8\x21\x34\xdf\xe6\xd9\xa2\x07\x10\xcd\x11\x63\x62\x26\x30\x7a\xe1\xd4\x32\x48\xfa\x5d\x59\x57\x30\x8d\xc0\xd0\x08\x5e\xa7\x3c\xd1\x09\x71\xe6\xf5\x9b\x38\xde\x73\x63\x94\x7e\x70\xc5\xa3\xd7\xa8\x6b\xac\xe4\x81\x9e\x05\x02\x11\x1b\xcb\x13\xb8\xa0\x84\x17\x5f\x67\x9a\x0d\x9e\x49\x60\x15\x52\x2f\x36\x7d\x7c\x34\x5e\x59\x2b\x27\x64\xd4\xb0\x06\x93\x51\x17\x00\xab\xd5\x67\xe5\xec\x27\x77\x49\x6b\xd2\x04\x46\xae\xf7\x89\xcd\x5b\x77\x2d\xe3\x9d\x0a\x8d\x96\xa1\x68\xaf\x0e\xb6\x88\xec\x18\x33\x64\x6e\x96\x1c\xcf\xc4\x8c\xfb\xbc\x35\x27\x2f\x9c\x89\x77\x31\xba\xd8\x67\xb9\x22\x53\x61\x0c\xc9\x5c\x83\x44\xd0\x20\x85\x03\xe3\x0c\xc5\xa8\x64\xa6\xc5\x3d\xfc\xa4\x9b\x81\x8c\x78\x62\x22\x44\x83\x9b\xa3\xe6\x38\xee\x1c\x52\x48\x65\x12\xd9\xc4\x98\x95\xca\xd1\xc5\x25\xdc\x37\x6a\xc1\xdb\xfc\xac\x2a\x34\xf9\x71\xef\xdd\xc3\x2c\x71\x89\x98\xcb\x49\xbd\x04\xcc\xcb\x49\x61\xf9\x91\x69\x01\xcd\x0d\xbb\xc6\x0a\x6f\x14\x52\xde\x8a\x69\x63\x29\x8e\xa9\x62\xe6\x7e\x0d\xa2\x93\x68\x60\xf4\x87\x75\x7b\xa3\x88\x4c\xc3\x77\xa0\x9c\xd2\x15\x37\x10\x01\x74\x9a\x8b\x74\xf9\xe9\x12\xcc\x57\x60\x81\xd6\x8f\x44\xcd\xfc\x47\xaf\xb9\x6a\x9a\x04\x5f\x8e\x88\x5f\x41\x61\x41\xd1\x68\x1c\xda\xb3\x02\x95\x9b\x73\xd8\x6d\xbd\x30\x65\x28\x53\x84\x5b\x4d\x11\x6b\x14\x05\x35\xa2\x93\x95\xae\x0a\x3a\xaf\xc9\x10\x0e\x18\x94\x1b\xd8\x23\x86\x09\xa6\xb8\x37\xfa\xcd\x9d\xed\x65\x89\x22\x52\x7b\x59\xbb\x15\xe0\xfd\x0e\xe6\xc2\xbd\x0d\x66\xc3\xbd\xed\xf1\xe6\x0a\x50\x3a\xa1\xe7\x85\xee\xd1\x48\x50\x2c\x5e\xd6\x57\x0e\x45\x4b\xcc\x35\x5f\xf5\x62\xbe\xac\xad\xf7\xeb\xc7\x47\x6e\x38\xef\x2e\xe0\x91\x37\x5d\xed\x77\xae\x50\xe8\x0b\x7e\xc5\xcb\x79\x7b\xc3\x00\x37\xce\x1d\x19\xbf\xe8\x53\x53\xcf\xf7\x49\x34\x68\x57\x40\x23\x74\x18\x84\xf1\xed\xba\x39\x95\x23\x77\xa2\x0d\xe5\xa8\x79\x9e\x91\xc0\x35\x22\x1a\xb4\x53\xe0\x7d\x0d\xcd\x1a\xe6\x19\xad\x9e\x58\xaa\x71\xb0\x67\x92\xd7\xd2\x97\xa9\xfc\xc4\xa5\x09\x4a\xd8\xa1\x27\xa9\x2a\x41\x6e\xed\x20\xa1\x3d\xb0\x9b\xae\x2f\x0e\x90\x39\x51\xa3\xff\x8e\x91\x88\xd0\x93\xb4\x61\x1b\x52\x72\xf5\x63\xc1\x57\x18\x98\x2d\x49\x5b\x83\x91\x7a\x14\xb3\x39\x3f\x00\x86\x16\xa0\x8e\x74\xcd\x22\xa1\xdd\xb7\x5f\x00\x0b\x23\x8e\x1b\xf9\x81\xd8\x54\xa7\x67\x69\xf7\x05\x96\xaf\xba\x28\xc8\xef\xbb\xc1\xaa\x87\xd5\x8e\x99\x66\x73\x8e\x37\xa9\xb1\xa0\x5a\x76\xb5\xde\x4d\x13\x0c\x38\x21\x54\x38\x5e\xb5\x64\xe3\xd3\xf2\xac\xc5\xad\xd5\x3c\x6b\x69\xf9\xfd\x36\x47\x57\x2e\x68\xce\x44\xd3\xa1\x70\x4f\xf4\x00\xee\x17\x3d\x80\x96\xec\xbe\xde\xcb\x17\x5d\xeb\xea\x8e\xce\xef\x9b\xbd\x94\xbe\xcd\x80\xf9\x1c\x91\x80\x43\x37\xfc\x54\x01\x90\x0b\xf6\xbe\x15\x01\x17\xec\x93\x21\xfd\xf5\x95\xb2\xa1\x47\x35\x15\x3f\x95\xa7\xd2\x46\xd1\xce\x98\x0c\xd4\x85\xcd\x19\x71\xcc\x9c\x67\x51\x1e\xc7\x1d\x24\x4e\x92\xc3\xd2\x36\xce\x8b\x9a\xe4\x91\x59\xac\xce\xb2\x18\x0e\x3d\x03\xb8\x03\xc3\x5f\x64\xc0\x24\x64\xf6\x54\x85\x8e\x59\x06\xc0\xbd\xd5\x3b\xc7\x11\x7a\x77\xd8\xdb\x44\xee\x37\x41\x86\x80\x7a\x94\x9e\x2e\x2d\x3b\x4a\x55\x83\x57\x73\x6d\xd7\xa7\xc1\x1a\x1e\x50\xc4\xd2\x39\xfb\x63\x0c\xc3\x50\x2a\x12\xda\xa0\xab\x40\xb6\xd2\x32\xa7\xc9\x0a\xd2\x95\x5c\x60\xee\x89\x37\x20\x6b\xd7\x1a\x9a\x99\x93\xa7\x29\x6a\x09\x4d\xc2\x0a\xa2\xc5\x17\x90\x5d\xcd\xf7\xd3\xf4\xcc\x5b\xc2\xa9\x13\x59\xe7\xa9\x5e\xb2\xf5\x3a\xdc\x43\xcf\xda\x37\xcc\x66\x26\x49\x6f\x3f\xda\x40\xd0\x79\x80\x51\x00\xf0\xa0\xb2\xaa\xf2\xb6\xad\x5a\x76\x59\x08\xc9\x87\x78\x51\x57\x3b\x58\x6e\x78\xb2\xa7\x79\x13\x6f\xa0\x8b\xc6\xe5\x84\x66\x71\xbc\x1f\xa5\x17\xe2\x8a\xcf\x1a\xba\xcb\xdc\xe9\xff\xaa\xaa\x40\xc2\x37\x15\xc1\xd6\xca\x09\xfd\x1b\x78\x43\x4b\xbe\x92\xe9\x75\x70\xdd\xbf\x09\x8f\x6f\xcd\x4c\x7c\x8f\xe6\x3f\xe4\x36\x29\xea\xcd\x50\x55\xfe\x13\x9b\x2f\x08\xb1\x28\xf9\xee\xa6\xcd\x97\xad\x7a\x2a\x30\x34\x70\xb4\xde\xaa\x3a\x3c\x9b\xa3\xaa\x4a\xb2\x21\x6b\x1f\x01\x54\x85\x66\x5d\x2f\xb0\xa4\x23\x27\xa2\x0a\xee\xba\xd1\xae\xe1\x10\xd4\x03\x2b\x3c\x90\x35\xbe\xad\xab\x30\x32\x10\x8b\x9c\x0c\x44\xbd\xb1\x40\x7d\x58\xd3\x1f\xa0\xe3\xd8\xb2\x94\xe6\x99\x07\xef\x7b\x2d\x92\x5b\xd4\xda\x75\x44\x07\xe6\xbe\x21\xf4\x39\xf7\x05\xd1\xc1\x04\xec\xee\x7c\x5b\x65\x97\xc0\xe8\x7c\x26\x70\xa7\x1b\xda\x26\x83\x85\x85\x31\x40\xf6\xac\x5c\x9b\xc6\x59\xcd\xef\xa8\x54\x61\x6a\x86\x26\x2f\xd3\x68\x1c\x99\x89\xe5\xa3\xda\xc8\x7b\x98\xa8\x99\x9c\x8e\x0d\xa6\x19\x64\xf7\x8c\x29\x02\x7d\x95\x67\x5d\x15\x76\x62\xd8\xe8\x44\x66\xb4\x56\x35\xb4\x7e\x57\xb3\xfd\x16\x1f\xab\x52\xb7\x19\x99\xf4\x96\xf9\x6f\x67\xf7\xfd\x04\x12\x75\xe6\x5e\xf7\xdb\x69\x60\x2d\x6b\x9e\x1f\xce\x9d\xfa\x0a\x4d\x98\x31\x42\xcb\x0e\x97\x60\x98\x14\xde\x60\x61\x41\xad\xa6\xe3\x7a\x0d\x96\xc1\x30\x5c\x06\xa2\x39\x3c\x9d\xfd\x0a\x9a\x7b\xa4\x16\x3d\x3e\x36\xbe\x7f\x97\x05\x35\x04\xee\xf0\xa6\xe6\x7c\x1c\xc7\xc9\x98\x31\x69\xf0\xdd\x7f\xb3\x09\xbf\x4f\x97\x9f\x92\xa3\x66\xd8\x63\x42\x6f\x25\x22\x9c\xe9\xfe\x53\x63\x10\x07\x2b\xe7\x00\x51\xd1\xdf\x39\xdb\xab\x69\x08\x0f\x5a\xf7\xce\xa5\xe8\x33\xde\xb0\xe7\xae\x31\x65\xac\x0d\xc4\x2a\x2b\x35\x59\xfa\x5e\x7f\x37\x6d\xe5\x40\xa8\x5c\xab\x1e\xa5\xd2\x2b\xa3\x9d\x8b\x78\xed\x7a\x2f\x76\xed\x66\xe1\x9a\xb4\xdf\xbd\x46\x85\x1f\x9a\x4d\xfa\x89\xbb\x78\xc9\xc7\x5a\xa4\x0b\x68\xe5\x21\x07\x1a\x8c\x76\x3b\x82\xf0\x4d\x1c\xf7\x37\xb3\x68\x72\x1f\x96\x2b\x98\xae\xf7\x5a\xcb\x63\xd3\x6d\xf2\x6e\x16\x5d\x7b\x85\xef\x44\x56\x28\x8e\x48\x78\x65\x2b\x5b\xf8\xd5\x78\x5b\xb5\x86\x92\x19\x5c\xbb\x66\x97\xcc\xfb\x03\x6d\x0f\x44\x33\x90\x7c\x77\x7d\x80\xd3\x80\xc6\xe0\xc9\x84\x3f\xa0\xb5\x9e\x2e\xa9\xef\x80\x8f\x29\x8e\xdd\x3d\x22\xcf\x39\xc2\xfe\x88\xed\x1b\x5d\x7e\x82\xd0\x57\x60\x8d\x65\x34\xcb\x13\xd2\x67\x7c\x76\xa4\x15\xf6\x26\xd7\xb6\xa2\x80\x08\xec\x60\xeb\xdf\x9e\x24\x6f\x80\x6b\xd5\x43\xaf\x21\xd3\xba\x34\x84\x76\x7c\xb9\x82\xd5\x70\xa0\xcf\x7c\x4c\xf8\xdf\xbe\x70\xbe\x58\x45\xe0\xad\xd9\x7b\x63\x8a\x1b\xf2\x8e\xfd\x47\x6e\x8f\x6d\x01\xfd\xa5\xd5\xbf\xc3\xc1\x6f\x04\xa1\x4d\xbf\x03\x76\x8b\xc7\xd2\xf4\x19\x88\x8a\xd3\xdf\x0e\xf4\x2f\x7e\x70\x22\x0c\x1c\x12\xce\x7b\x21\x0c\x00\xa0\x67\xd8\x84\x5c\x46\x8d\x42\x1c\x16\x83\x17\x36\x41\x1c\x70\xc3\xfc\x71\x36\x3e\xe5\x67\x7e\x41\x86\xe5\xe3\x83\x01\xf9\x6b\x66\xf0\x8d\xeb\x48\x26\x98\x68\xce\x17\x04\x61\x6c\x76\x9c\xbd\x1b\xbd\x11\x65\x3b\xa4\x41\x1b\xf5\x73\xc7\x03\xd8\xcf\x1d\xf7\x70\x3f\x41\x0d\xc9\x2d\xa9\x64\xea\x40\xc1\xef\x79\xb9\xdd\xb5\x0b\xf7\xa2\xdb\x17\x7c\x88\x7c\x73\x55\xf1\xd1\x72\x33\x54\xa3\xe5\xc6\x83\x1a\xdc\xfa\xca\x5e\x5d\x1f\xf2\xd8\x3a\xa9\xc7\x23\xdf\xf0\xa0\xdc\x15\x3e\x9e\x8d\x67\x6a\xea\x71\xec\x57\xc7\x52\xf1\xa9\x1f\x4a\x84\x7b\x0e\xd6\xd6\x9d\x23\x80\xc4\x0a\xa1\x39\xdf\x83\xa1\x16\xa8\x1f\x2e\x50\x94\xaa\x5b\xff\x31\xe0\xdd\xed\x09\xba\x12\x4b\xdf\x07\xd3\xba\x9c\x6b\xfe\x50\x32\x31\x2a\x79\x6e\xb5\x11\xb6\x15\x01\x16\x67\x55\x45\xf0\x1c\x31\x96\xd1\x52\x67\xd8\xe5\x19\x98\x24\x96\x5a\x7a\x41\x3f\x75\x08\x6e\x10\xc7\x72\x24\x7d\xed\xfd\xf9\x84\x64\xeb\xe4\x82\xc7\xf1\x85\x51\x77\x21\x26\xff\x87\x22\x22\x8c\xe1\xac\x37\xb2\xfc\xe1\x22\x70\xea\x64\x6c\x4c\x6e\xf7\x6c\xbe\xa8\x31\x3a\xd9\xf8\x34\x3f\x0b\x53\x9d\xe6\x83\x01\xd9\xe3\x8a\x0e\xda\x67\x92\xcd\xf3\x85\x96\x52\xe1\xa4\x2f\x5d\xc9\x8d\x9a\xe3\x38\xd9\xb3\x4b\x91\x94\xb4\x0d\xc5\x0d\xf0\xd8\x28\xb2\xe6\xcd\x7c\xc3\xc9\x69\x7e\xae\x1b\x35\x1c\xe2\x98\x2f\x5d\x0a\x2d\x72\xaf\x19\xb8\xbe\x6f\x13\x42\x37\x6c\x39\x52\x22\x21\xbd\xe5\x88\x6f\x77\xea\x26\x21\x71\x0c\xf7\xec\xe7\xe3\xd9\x9a\xed\x78\xb2\xc6\xd5\xb6\xd6\x0b\xb3\x00\xab\x79\x98\x0e\x07\xac\x1a\xc7\xfd\x74\xb6\xd1\x29\xd1\xac\x83\xba\xcb\xf8\xeb\x2c\x11\xc6\xd6\x23\xf0\x3b\xa5\x9b\xd1\x72\x33\xd8\x8a\xa4\x24\x16\x31\x92\x4c\xcd\x84\x80\x29\x40\x56\x1e\x9b\x9d\x38\x4e\xd6\x6c\xe3\x35\x6b\x4c\x88\x35\x62\x31\xae\xf9\xc6\x3e\xe1\xb9\x5e\xa0\x74\xc5\xd0\x4e\x7d\x4d\x95\x98\x6e\xa8\x2e\x70\xba\x9f\xed\xe7\xf9\x1f\xf6\xa6\xea\xc5\xb4\xa4\x18\x94\x69\x9a\x55\x55\x92\xce\xcc\xc2\x72\x1d\xf5\x20\x5f\x67\xd1\x72\xaf\xa2\x69\x34\x80\xd5\x1f\x91\x43\xef\x85\x31\x39\xa0\x2b\x10\xbb\x38\x8d\xe0\xd3\x5b\x9e\xae\x22\xca\xe9\x8a\x1c\x94\x1e\x9f\x38\x7e\x8a\x1b\x8d\xfe\x54\xa0\x26\xb8\xd5\x54\xb6\x73\x6f\xd5\xcd\x2e\x2b\x2e\x59\x7f\x4c\x3b\xd7\x3e\xeb\x68\x19\xf3\xad\x79\xaf\x1b\x37\x28\xcb\x3c\xdb\x5d\x88\x54\xae\x30\x8e\x5f\xe3\x85\x3e\x44\x11\x8a\xad\x0e\x30\x8a\xba\xb8\xa2\x0e\xd8\xbb\x93\x40\x32\x9f\x20\x7e\xbb\xe6\x06\x47\x59\xa9\x7b\xf9\xba\xc8\x6f\x12\x52\x55\xca\xe9\x84\x0c\x13\x00\x9d\xaa\xaa\xef\x54\xa2\x7c\x17\xb1\x8f\x3c\xd1\xb4\x60\x6c\xaf\xa3\x60\xac\xc9\x81\x04\xe6\x23\x66\xb0\x6e\x03\x9d\x25\x58\xc1\xc8\x6c\x09\x86\xd1\xbe\xf5\x48\xb9\x4d\xa5\xd2\x32\x5e\x51\x2b\x1a\x8c\xab\xb2\xa6\x23\xe0\x84\xd4\xdc\x1c\x52\x6f\x0e\x69\x37\x47\xe6\x52\xd8\xdb\xee\x24\x03\xdc\xc8\xd1\x72\x73\x3e\x19\x8f\xab\x4a\x82\x6d\x9c\x49\x32\x9c\x2c\xf0\x2b\xde\x3a\x65\xf5\x03\xa9\x09\x9c\xc1\xba\x78\xa8\x4c\x51\x84\xa6\x0c\x4d\x6d\x45\xd8\x95\xfa\x14\x43\x0d\x5c\xe3\xb3\xa5\x26\x25\xba\x21\x28\x17\x5d\xa7\x99\x6e\xb9\x49\xe5\x43\x95\x94\x10\xfc\x9c\xdc\xa6\xec\x3b\x7d\xd0\x78\x8d\xa3\x11\x8c\x54\x44\x7a\x17\x92\xa7\x9f\x0c\xe9\xa9\x8b\x81\x19\x8b\xe3\xc6\x0b\xc4\xe6\x76\xd6\x87\x7e\x67\x71\x7f\x5a\x7b\x46\x37\x62\x84\x80\xbd\xea\xd1\xea\x49\x2f\x8d\x63\xdc\x2c\x41\x4d\x7a\xc3\xf8\xc5\xfb\x1a\xbc\xcf\x8d\x6b\xee\xf9\x82\x16\xfa\x3f\x54\x28\xb9\xb9\x0e\xe7\xd9\x33\x67\x60\xcd\x24\x73\xe9\xcd\x21\x15\xec\x16\xf1\x42\xa7\x3b\x9e\x64\x74\x4c\x20\x9a\x0c\x3c\x00\xc0\xe8\xa1\x57\x18\x42\xae\x57\x3e\xfc\x82\x19\x86\xa0\x46\x2d\xb0\x51\xe7\x22\x03\xe4\x46\x51\xac\x31\x70\x1d\x7e\x67\x0f\xd8\x40\x7d\xa4\x79\xde\xa5\x90\x92\x2f\x55\x44\x23\xb1\x5e\x47\x06\xd8\xb4\x99\x26\xdd\x65\x2a\xcd\x01\xb2\xee\x48\xb2\x72\xc7\xf3\x1c\xa4\xb5\x88\x46\xeb\x34\x2f\x79\x00\x7a\xc6\x9d\xa8\xb3\xdc\x5a\x86\x45\xef\x71\x24\x45\x56\xbe\xdc\x89\x3c\xcf\x8a\xcb\x67\x69\xa9\x5c\xec\x6c\xf3\x2e\xe0\xfb\xb3\x22\x5d\x2e\xf7\x32\x55\xdc\x41\x38\xba\xf4\x9b\xb4\x6c\xbf\x5c\x8a\xed\x4e\x94\x50\x4c\x70\xad\xfd\x90\x3b\x66\xfa\xb1\x40\x82\x94\x4a\x9e\x7e\x11\x70\xca\x28\x8d\x00\xbb\xd1\x83\x9a\x72\x40\x54\x13\xbe\x6d\xc3\x6e\xf9\xde\xd9\xdc\xe2\x68\xe9\x63\x6d\x9d\x8b\xeb\xe9\x09\x9a\xbb\x9c\x9e\x74\x21\x78\x99\x3a\x1e\xf8\x75\x8c\x01\xdb\xca\x59\x8e\x3a\x89\xc2\x48\xe3\x93\xf1\x78\xac\x85\xb7\xe6\x44\x01\xfa\xb9\x9d\xc5\x55\x8d\x54\x63\x1c\x14\x59\x34\x71\x2e\x89\x17\x79\xba\xfc\x14\x11\xfa\x0e\xfd\x01\x3c\x94\x9c\xae\xe9\xcc\xd3\x52\x3d\x84\x75\x09\x36\xa0\x8d\x77\xc6\xb0\xd8\xbd\x05\xf4\xc0\x30\x21\xbc\x32\xe9\x6a\xd6\xb9\x6b\xfe\x2f\x65\xba\xe4\x6f\xb8\xcc\xc4\x2a\x38\x88\x5e\x06\x07\xd1\x8d\x72\xfa\x61\x03\xd9\x5a\x55\x85\xb5\x2a\xb2\x1c\xb5\x66\xdb\x50\xba\x73\x24\xc7\x64\xa1\x19\x5b\xa9\x44\xb3\x91\xf6\x85\x60\x2f\xb3\x04\x3c\xeb\xe0\xaa\x20\xea\x09\x20\x3c\x69\x9a\x08\xaa\x59\x68\xf2\x87\xfb\xb3\x08\x44\xa1\x68\x8a\x29\xac\xe7\xd5\xb5\xa6\xca\xdb\x74\x07\xc9\x68\x5a\xcf\x9a\xb1\x2c\x61\x26\x1b\x63\x7a\xad\xe6\x79\xba\x2b\xf9\x4c\x0b\xf5\x2b\x8c\x39\x25\x15\x2d\x3d\xf4\x9a\x90\xa7\xc6\x7b\xda\x8b\x74\x85\x00\x5c\x1e\x1e\x0d\x0f\x6c\x98\x41\x7b\xe5\x9b\xe5\x59\x48\x43\x94\x3b\x64\xfb\xcb\x68\xa9\x25\x45\x3d\x4b\xe5\xbc\x58\x38\x31\x44\xd7\x0f\x67\xfa\x1b\x51\x26\x3b\x1f\x47\xd6\xf8\x10\x4c\x08\x01\x9c\x10\x33\x8f\x05\x1b\x23\xed\x47\x70\x11\x75\x7a\x2a\x99\xf4\x44\x56\x6c\x80\xac\x2a\xd9\xd5\x3a\x7f\xa6\x80\x55\xf6\xcd\x46\x64\x60\x76\xdc\xce\x8c\x27\x4f\x68\x5e\x13\x36\xb7\xc3\xc6\x26\x4c\x30\xcf\x16\x78\x8a\xa2\xd1\x8b\x8b\xdf\xfc\x96\xeb\x69\xd7\x12\xba\x87\xb5\xc3\x9b\x56\xe3\x70\x64\x79\xd6\x4e\x19\xb3\xfe\x2f\x55\xd5\x7f\x25\x12\x59\xa3\xd6\xea\x71\xdd\xf1\xe4\x75\x66\x04\x2e\xa2\xcf\x05\x3d\x8c\x38\x6f\x12\x0c\xce\xfa\x63\xaa\x98\x0c\x27\x46\x0f\x30\xed\x2b\x8f\x19\x90\xbc\x54\xb3\xad\x48\xf0\x97\xbd\x78\xef\x35\xeb\x11\x84\x0a\x9f\x51\x26\x34\x43\xa1\x2a\x65\x0f\xac\x59\xc9\x7b\x88\xe5\x6e\x02\x08\x30\x05\xec\x7f\x5a\x55\x93\x3e\x98\x22\xd9\x56\x38\x37\x8b\x07\x7d\x16\xa8\x50\x6d\x11\x9a\xd5\x0d\xbe\x50\x0c\x37\x91\x42\x8a\x9f\xd2\x7c\xcf\x1d\x6f\x7e\x5a\x7a\xb3\xda\x67\xf2\x94\x94\xcc\x7f\xd5\xb3\xd7\x82\xd6\x96\x26\x67\x7b\xbd\xbb\xca\x5a\x08\x5c\x26\x2d\xcb\xaa\xe1\xe4\x34\x3b\x4b\xf2\x99\x35\x72\x9f\x8e\x09\x4c\x7a\x7d\xa1\x93\x9d\x8d\x67\x50\xd0\x34\x9f\x67\x0b\xe3\x97\x29\x6a\xbf\x4c\xf6\xc0\xfa\xce\x8a\x79\x3a\xb8\x0f\xcb\xa2\x64\x4c\x55\x55\xc9\x58\x61\xe5\x9e\xd7\x59\xa2\x0b\xc2\x21\x9f\xe2\x0c\xcc\xb3\x05\xa1\x6b\x9d\x6d\x31\x90\x66\x1a\x12\x79\x36\xae\xaa\xb2\xcf\x14\x01\x29\x43\x97\x99\xc8\xd9\x64\x3a\x26\x0b\x42\x77\x3c\x59\xd2\xb5\xe6\x49\xd0\x46\x70\x99\xa4\xb4\xa4\x05\x2c\x86\xb5\xb7\x60\xd6\x34\xf3\x81\x50\xcb\xc0\x88\x6e\xc7\xd2\x59\x7b\x80\x87\xc5\x74\x7c\xba\x39\xdd\xb0\x8d\x9f\x18\xaf\xd4\xd8\x32\xd1\xe2\x92\x37\x4d\xe3\xc6\xf2\xf4\xc5\xb3\x9d\x5e\x30\xbd\xdd\x80\x6d\xf0\x42\x0f\x21\x13\x4c\x35\x07\x34\x8c\xc7\x73\x3e\x13\xfb\xd2\x5e\x5e\xea\xd6\xee\x58\x71\xba\x3a\x5d\xb1\x55\xf3\xab\x6b\xc6\x8a\xae\xfc\x66\x68\x9a\x72\xac\x1d\x83\xbb\xdb\xe1\x21\x5a\x71\x2f\xd4\x22\x72\x49\x35\x33\x92\x6d\xf1\xde\xc6\x3b\xe7\x5e\xf9\xe9\x91\xe7\x72\x7a\x4d\x9e\xae\xfc\xa4\x7f\x0f\x65\xa0\xb9\x5a\xf4\xf8\xa8\x14\x52\x25\x9d\x5a\x18\x00\xa5\x33\x12\xb1\x32\x3f\xc0\x4a\x1c\xc0\x83\xf4\x3c\xd7\x57\x98\x13\xe0\x38\x3b\x58\x4c\x84\xd1\xe2\x20\x20\xe8\x75\xb1\xd2\xac\xa1\x96\xad\x69\x66\x8b\x3c\x67\x63\x1b\x84\xf1\x4a\x7f\x35\x55\xba\xef\xb4\x64\x37\x5e\x2e\xfd\x87\xd0\x3d\x13\x56\x36\x9f\xd9\x94\x56\xec\x98\x0a\xf7\x02\xb9\xcf\x9e\x3c\xd3\x62\xf2\x70\xa8\x28\xb7\x40\x42\xc3\xa1\xa4\xf7\xa9\x01\xd4\xdf\xcf\xca\x69\x4a\xf7\xb3\x74\x5a\x12\x72\x38\x78\xaa\x2c\x33\x1d\x1e\x0a\x54\x78\xb0\x99\x34\x73\x53\x10\xa7\xaa\xaa\x38\x59\x50\x1f\xa4\xec\x49\x98\xc5\xdd\x0b\x99\x9b\xf4\x5a\x39\xa0\x9b\x87\xde\x7a\xdc\xba\x0e\xfb\x58\x47\xb5\x04\x88\xa7\xfd\x99\x49\x4d\x7c\x35\x18\x16\x39\xae\x91\x36\xc2\x02\xeb\xdb\x72\x5d\xc2\x79\x31\xdb\xf1\xa4\xa0\x9a\xaf\xa0\x45\xa0\x90\x20\xd3\x2e\x74\x79\x3e\x5a\x6e\x7a\xde\x69\xc7\x98\x66\x58\xce\xd5\xac\x56\xc1\x29\x32\x2d\xce\xc6\xde\x8b\x31\x99\xf2\x43\xa2\xb0\x12\xd5\x56\x7d\x78\x5d\x7c\xd6\xe0\x1a\xce\x6d\xfb\xe3\x58\x9d\x85\x5d\xf1\x40\x6a\x78\xd3\xb3\xc2\x09\x41\xc1\x85\x7a\x31\x97\x0b\x86\x83\x38\x97\x8b\x1a\x9b\xcf\x03\xb8\x69\xde\x05\x2f\xc1\x69\x60\xb9\x0d\x95\x72\x55\xc5\xc1\x88\xb2\x58\xd5\xc8\x63\xb8\xf3\xbc\xc0\x96\x82\xad\xf4\xc8\x66\xe4\x6c\xdc\x13\x7d\xfd\x20\xe1\x61\x96\x64\xac\xa0\x05\x93\x64\x8a\xaf\x75\x6d\x67\x63\x38\x68\x24\xf1\x97\xde\x2b\x2d\x76\x15\xcd\x57\xb2\xaa\x8a\xc0\x30\xe2\x91\xd7\xe8\x5f\xf5\x6f\xbb\x24\xa1\x37\x1c\xe4\x3b\x4d\x39\x52\x79\xa3\x37\x32\xf8\x8c\x8f\x09\x95\x5e\x11\x3f\x3a\x96\xa0\xde\xd1\xf3\x05\xb5\xac\x48\x5b\x88\xd4\x67\x92\x9c\x67\x0b\xe6\xd5\x21\xad\xc9\x2f\xd5\x47\x09\x45\xdb\x11\x68\xd0\xdf\x39\x38\x1a\xdb\x86\x00\x09\x23\x41\x1f\xfe\xd1\x32\xee\x08\x6a\xb5\x70\x60\xbd\x6c\xae\x16\xac\xa0\xb6\xd4\xac\x5d\xaa\xdf\xad\x9f\x9b\x23\xf3\x1c\x14\x2d\x61\xa2\x9f\x5a\xec\xd0\x26\x2b\x95\x90\x37\xa3\x95\x28\x38\xcd\xd8\x56\x24\x92\xf4\xb2\x38\xce\x4c\x73\x66\x89\x9c\x4b\xa7\x36\x59\x30\x45\xbf\xb3\x65\x90\xe9\xaf\x6d\xcb\x15\xf7\xea\xd6\xa5\x6b\x38\xf0\xf9\xdd\x36\xb5\x53\xa1\x99\x29\x39\x42\x35\x5c\xaf\x60\x06\xde\xf5\x1d\xcf\x5f\xef\xc0\x0c\xab\x7e\x86\x24\x60\x24\x9d\xe0\xcb\x97\x62\xf5\x3e\xdb\x72\x2f\x8f\x7e\xb4\x59\x5c\xfa\xaa\x3a\xd6\x0c\x65\x35\x27\x63\xbb\x4d\xa2\x6f\x22\xc6\xb2\xaa\x8a\x06\x08\x63\xd8\x50\x1f\x75\x28\x69\x8b\x51\x29\xb6\x1c\xc2\x3c\xa2\xb0\xcb\x57\x9a\x22\xcb\xae\xd7\x5e\xb0\x95\x7a\xfc\xbd\xa6\x9f\x31\xd8\x8c\x33\xd8\x8b\x56\xc7\x65\xd2\x3d\x45\x25\x5c\x9e\xde\x4c\xbf\x1d\x8f\xc1\x59\x4d\xd0\xad\x48\x32\x98\x40\xa2\x79\xd7\x19\xfe\x9e\xe3\x1f\x7f\xea\xa6\xaf\x00\x7f\x04\x93\xf6\x82\xe1\xaa\x03\xeb\xd0\xe6\x50\x0b\xef\xcd\x8e\x15\x54\xc6\x71\x7f\xd2\x47\xcb\x26\x9e\xca\xb7\x7c\x25\xe2\xf8\x6d\x96\x64\xa3\x7d\x01\x25\x1f\xec\x2e\xa1\x75\x37\x50\xaf\x99\xad\xa6\xaf\xd2\x57\xc1\x7a\x71\xab\xe4\x36\x81\xfb\xa0\xe8\x02\xec\x5c\x9c\xc6\xc0\x38\x21\x11\xb8\x18\xd9\xc6\xb1\x4e\x34\x5a\x6e\x8f\xa6\x03\xff\x70\xd6\xed\x32\x7a\x6b\xf4\x30\xca\xcc\x1e\x6d\xde\xa3\x35\x38\x11\x4f\xbf\x5f\xb0\xf1\x69\x51\x53\xd8\x62\x30\x20\x5e\xca\x79\xb1\x60\x86\x62\x19\x92\x5b\x2c\x0c\x91\xc4\x90\x35\xf8\xc6\xe8\x86\xac\xb6\x19\xec\xd6\xf1\xf7\xc1\xd2\x67\x0c\xfd\xd2\xdd\x37\xca\xd1\x76\x48\x0f\x83\x4e\x77\xc7\x30\x40\x2a\x9d\xda\x2e\x54\x2d\x04\x98\x0d\xad\x09\x94\x1d\x80\xd6\xa5\x01\x99\xaa\x83\xdd\xde\xbd\x1a\x46\x67\x74\x91\xa5\x65\x55\x69\x86\x46\xd5\xf4\x15\x3a\xd4\x24\xba\xd8\xcb\xb3\xf1\x6c\x38\x99\x4e\x48\xef\x2f\xba\xf7\x7f\x35\xf6\x63\x00\x78\xa9\xe5\x8c\xfe\x84\x31\x87\x0c\x55\x55\x7d\xdd\xdc\xaa\xfa\xa9\x80\x4e\x79\xab\xe3\x2f\x96\xdf\x1b\xf1\x7f\xec\xd3\xbc\x4c\xa0\x32\x02\x17\x51\x25\xcf\x99\x32\xc3\x91\x78\x8b\xcc\x57\xa9\x7b\xaf\xcb\x70\x88\x00\x7e\x52\xe1\x62\x22\x56\x75\x8f\x8e\x97\x0f\x97\x2a\xbb\xca\xd4\x0d\x86\xde\xa9\x61\x16\x40\xc7\x52\xf7\x07\x97\x38\x7a\x3e\x06\xac\xcb\x5f\xbb\xfc\x48\xa8\x60\xe3\x53\x71\xa6\x1a\x67\x8b\xb0\xdc\x63\xea\x26\x68\x2e\x16\x60\xbf\xd6\x20\x39\x1d\x27\x93\x3e\xae\xbd\xc3\x48\x2c\xe8\x9e\xfd\x4d\x57\x9e\x5a\x7d\x64\x19\xc7\x96\x4f\x46\xcb\xb3\xdc\x26\x80\xa9\x83\xcf\xf0\x4b\x7f\x3c\x4d\xb2\xaa\xda\xf7\x99\xcd\x5d\x55\xb9\x7e\x80\xf9\xd4\xd4\xb6\xaa\x00\xbb\x34\x3c\xa6\xa8\x20\x84\x66\x73\xe1\x36\xc0\x9e\xe6\x4e\xff\x79\x92\xcd\xe0\xe0\x52\xde\xa1\xe5\xdf\x32\xfe\xd2\x71\x33\xe8\x33\x4e\x28\xe6\x6f\x53\xf9\x89\xaf\xde\xed\xd2\xa2\x89\x59\x1c\x7c\x6b\x19\xf9\x95\x2c\xf8\x3e\x4f\xf5\xf8\x94\xf8\x0a\x98\x17\xe3\xd4\x5e\x02\x03\x5d\x55\xc9\x7e\x04\x81\x62\xcb\xec\x8a\xbf\xe0\x6b\x35\xc3\x0f\x67\x70\x40\x4c\xcd\x83\xb2\xfa\x6d\x9b\x57\x89\x30\x27\x60\x98\xcd\xf4\xfb\x73\x9b\x51\x89\x73\xcc\x06\x8c\x56\x16\xc7\xc9\x5f\x31\x5c\x09\xec\x5d\x0c\xdc\xf3\xb4\x00\x37\x6a\xba\x1f\xf1\xcf\x9a\x67\xcf\x54\x7e\xf3\x58\xd3\x57\xbe\xc2\x6c\xe1\x38\xdc\x0e\x87\x69\x6f\x29\x0a\x95\x15\x7b\x7e\x40\xa5\x0a\xb8\xf4\x8f\x52\x25\xb6\xd9\x92\xd8\x6f\xc6\x3e\x0c\xee\x28\xe9\x92\xed\x11\x35\x56\x9e\x8d\x67\x93\xe9\x70\x02\x23\x0c\x4f\xcd\x1e\x4c\x1b\x83\x41\x20\xb2\xe6\x0f\x7a\xc2\x96\x74\x28\x29\x78\x31\x07\x4e\x37\x02\x54\x12\x84\xb4\x3f\xc5\x71\x92\x6b\xe6\x0f\x1c\xc2\xe3\x18\xea\xcb\xcf\xc6\xd3\xfc\xbc\x96\x65\x7f\xc1\x92\x15\x2c\x05\x23\x62\x7b\x8d\x45\x62\x52\xcb\xe9\xb3\x46\xf3\xa6\xcd\xf6\xa3\x08\x0f\xed\x5d\x53\x49\xd7\x47\xda\xba\x9e\xfd\x82\x49\xb0\x62\x8c\x10\x67\x57\xaf\xb7\x52\xff\xd6\xb1\x52\x65\x55\x4d\x68\xca\xdc\x22\x16\x34\x23\x55\xd5\xcf\xe2\xd8\x7b\xd5\x1f\x93\xaa\x72\xcf\xc3\x8e\x34\x43\x48\x64\x0f\x80\x14\x68\xdb\x32\x2d\xd4\xd3\x55\xa6\x34\x91\x0a\x04\x1d\x8f\xcc\xfc\xe0\x91\x19\xcb\x35\x6b\xd6\x7a\xcc\x60\xdd\xcd\x8c\xd0\x63\xf2\xce\xe0\x18\xda\x71\x23\x4d\x69\x61\x0b\x3a\x3b\x2d\xce\xc7\x71\xac\x33\x30\xa6\xd9\x6d\x7f\xfb\x05\x82\xcb\x2c\x14\xc3\x9c\x8c\x35\x73\x65\xc2\x45\x89\x29\x14\xed\x22\xac\x2d\xf0\x68\xb9\x19\xf8\x87\x3e\xb8\xe3\xb6\x50\x20\xcb\x8d\xb8\xae\x23\x40\x35\xbf\xee\x24\xdf\xa5\xde\x49\x97\xf8\x63\xa1\x54\x53\x2a\x32\x31\x22\xd1\xfb\x51\x1a\x97\xfa\xf2\xcb\x51\xc1\x00\x35\xc2\x9d\x15\x5f\x91\xde\x82\x85\xb5\xe5\x06\x8b\x1b\xa6\x99\x25\x65\x20\x57\x42\x06\xde\x01\xbf\x79\x54\x3c\x35\xf7\x8f\xa5\x11\xeb\x71\x16\x5b\x6e\xd1\x55\x55\x82\x72\xc0\x4e\x4a\xd3\xc1\x9a\xd4\xbe\xb9\x46\x73\x70\x9a\xec\x35\x13\xe5\x2e\x4d\x37\xe2\x1a\x49\xcf\xcf\x1b\x5e\xbc\xb3\x71\x4c\x35\x77\xaa\x07\xd3\x9c\x0b\x19\xa1\xfb\xaa\x92\xf0\x86\x8a\x5a\x5b\x20\x3d\xb7\x49\x15\x72\x59\x8f\xf1\xb9\xe9\x78\xe8\xf9\x58\x94\x59\x71\x99\x1b\xba\x87\xa6\x87\x6f\xb8\x7c\x61\x54\xfc\x45\xb7\x9f\x40\xf4\x7f\xff\x5f\x51\x47\x6c\x98\x88\x10\x04\xb5\x0f\xcc\x8f\x73\x6b\xaf\x49\x33\xcf\x05\x5b\xea\xff\xc3\xd7\x6d\xe3\x55\x67\x15\x06\xa9\xc9\x37\x1e\x6e\xa2\xd7\x5e\x2c\x45\x8e\x84\xda\x70\x27\x02\xff\xbe\x96\xfb\x1e\x1f\x25\x5f\x8a\x62\x95\xca\x9b\xba\x53\xa2\x6d\xf1\x29\xc2\x4e\x42\xdd\x5e\x57\x45\xd0\x55\xfc\xea\x3a\x2c\xc2\x0e\x8f\xfe\xfc\xed\x37\x89\x4d\xe4\x3a\xec\xf2\x18\x13\x5d\xcf\xdb\x54\xdd\x05\xbe\x02\xb8\x43\x5f\xb5\x55\x96\x41\x64\x84\x92\xa5\x18\xa7\x74\xef\xe3\x22\xd5\x21\x68\x28\xa0\x3e\x0c\xcd\x2b\xcf\xc7\x98\x0c\x53\xb4\xe0\xad\xf5\xcb\x79\x4d\x0c\x15\x28\x18\x20\x3e\x8a\xf2\x41\xb0\x15\x09\x41\xb1\x25\xa1\xe2\x2b\x11\xef\x4b\x23\xbc\x45\xdd\xb7\x8f\xd6\x4f\x85\xa3\x67\x0a\x04\x8f\x8b\x06\xaa\xe1\xa7\x62\x31\x74\x66\xfb\x21\x9f\x16\xc6\xf9\xab\x8e\x94\x93\xc8\xa1\xc1\x39\xf5\x29\x9b\xd3\x9b\x5f\x61\x28\x4e\xba\xd4\x1c\x52\x46\x15\x01\x1b\x1e\x8f\x40\xd7\x63\xb1\x49\xfc\x43\xe1\xbd\x32\x84\x1f\xbc\x8f\xa0\x7f\x4b\x5a\x2b\x5f\xda\x52\x31\xc0\x01\xda\x73\x59\x42\xfd\x51\xae\x64\xe4\x23\xd3\xf6\x27\x86\xa1\xe5\x35\xdb\x25\x2c\x27\xcb\xe7\x62\x71\x9a\xa4\xc8\x30\x15\x71\x9c\x02\x07\x54\x55\x8a\x31\xf3\xc4\x50\xc7\x2e\x93\x1a\x39\x12\x52\xeb\x6e\x39\x05\xa1\x4e\xa8\xdb\x3c\x61\xb0\x4e\xae\x78\x3e\x8b\xa4\xca\xa3\x29\xb6\x86\x66\x10\x1b\x35\xab\x2a\xbf\x8d\x87\xe4\x65\x96\x2c\x09\x2d\xaa\x0a\x4d\x4c\x18\x93\xb3\xf5\x54\x86\x4a\x08\x73\x86\x2f\xe9\x8e\xae\xe8\x96\x6d\x34\xf3\x6f\xee\x07\xb3\x75\xa2\xf9\x04\xb2\x64\x5b\xba\x63\x2b\xb6\x85\x25\xea\x02\xe8\x2f\xd9\x26\x51\xc3\x09\x35\xf7\x83\x84\x42\x93\x98\xf5\x0b\xba\x61\xdb\xde\x96\x2d\xe9\x92\xdd\x1c\x76\x26\x2f\x5d\xb1\x25\x2e\xd7\x83\x59\x01\x70\x48\x73\xc0\xcb\x29\x09\x5d\x42\x8c\xde\xad\xfe\xff\xfc\x81\xe6\x95\x92\x1d\x85\x27\x5c\x87\x5b\x8b\x65\x4b\x77\xac\x74\x4f\x67\x4b\x04\x40\xc1\xc4\xf8\x0e\xd3\xc3\x07\x2d\x66\x61\xe7\xe3\x58\x31\xb6\x8e\xe3\x64\xc5\xf6\x84\x26\x7d\x51\x55\x50\xf8\x99\xd0\xff\x9b\x07\xc6\x04\x16\x87\x2d\x86\x3b\x16\xe4\xf9\x04\xdb\xea\x5c\x69\x55\x2d\x4d\x2d\xe7\xa9\xf9\x51\xbf\xd2\x13\x64\x81\x66\x4d\x57\xcf\xcd\x0e\x45\x53\x90\x25\xa1\xbb\xb3\x72\x30\xb1\x5d\xd6\xad\x86\x76\xd2\xd5\x50\xff\x32\x3d\x3c\x10\xea\x02\xf9\xf2\x62\x35\x4d\xed\x65\x8b\xaa\x8d\xd5\x14\x1a\xab\x65\xeb\xc4\xf2\x74\xc6\xc0\x6c\xe9\xdf\x40\x80\x85\x19\x3a\xf2\xde\xa2\x71\x18\xec\x9a\xb5\xb9\xc7\x5b\xe1\xa3\xc9\x49\xb7\xec\x99\x4c\x76\x84\xe9\x3f\x2b\x42\x6f\x58\x58\xd6\x76\xb6\xf3\x37\xda\x60\x82\xdc\xe3\x88\x17\x2b\x7a\xc5\x96\xd6\xec\x6d\x3b\x1b\xe3\xad\x1c\xd4\x8d\xb7\xc4\x3d\x2d\x9c\xde\xc0\x78\x5f\xc1\x34\xdf\x9f\x25\x79\x72\x83\x63\x43\x6f\xea\x59\xbe\x71\xb3\x9c\x27\x25\x85\xb4\xf4\x0a\x97\xcf\x95\xfd\x44\xa6\xcd\xac\x98\x62\x58\xbf\xb4\x29\xdd\x4f\xac\x56\xaf\x93\xd2\xbd\xc3\x1a\xaf\x10\x08\x27\x3c\xb5\x7c\xb8\x95\x4c\x39\x58\x8b\xc0\x0c\xb4\x1d\x42\x1c\x14\x41\xcf\xb5\x04\x73\x95\xe6\x89\x1a\x5d\xe4\x59\xf1\x89\x4b\xab\x96\xef\x8f\x7b\xaa\x06\x35\x32\x27\x11\xe0\xe6\x40\x78\x3f\x7d\xb6\x35\x8f\xd9\x47\xba\x84\xb7\xa9\xe2\xe7\xe3\x99\x2b\x8f\x95\x5c\xb9\x5a\x3c\x93\xb2\x3b\x0b\x4f\x0a\xd6\x2f\x08\xc4\x0b\x41\x4b\x83\xe8\x70\xbc\x36\x32\x3d\xfa\x09\x0f\x95\x3b\xbb\x61\xca\xf7\xef\x9f\x85\x72\x80\x32\x26\xcc\x11\xae\x8b\x77\x7a\x40\x01\xa3\xc7\x8b\x41\x74\xd6\x64\xf2\x40\xc0\x87\xa1\x77\x61\xe4\xc1\x10\x5d\xd1\xa7\x22\x49\x55\xa8\x9f\x48\x55\x23\x86\x0e\x22\x3f\xba\xc2\x95\xbd\x5c\xf0\x5e\xda\x0b\x60\x84\x3b\xb2\x6f\xdb\xdc\xa6\x8b\xe1\xee\xd4\x84\x1e\x0a\xe2\xb5\x90\x9f\xde\x67\x00\x84\x50\xca\x44\x41\x2f\x69\x89\xb6\x1e\xb6\x48\xa2\xc9\xf5\x7c\x61\xe3\xf9\xd4\x1f\xbc\xfb\xa0\x00\x48\xb6\x05\x30\x34\xf8\x76\xec\x07\xb2\x17\xe6\x6a\xe8\x58\x9b\x81\x07\x36\xe7\x91\x61\x7e\x4a\xb0\x13\xf6\x36\xf2\x79\xdd\x87\x6d\xfa\xf9\x7b\x3b\xc4\x18\x59\x84\xee\xd9\x0f\x12\xd4\xab\xe5\xac\xee\x96\x24\x53\xd0\x62\x59\xfe\xac\x64\x7b\xf3\xc3\xa2\xeb\xe1\x23\xb8\x52\xf2\x12\x24\xee\x25\xfe\xee\x2d\x67\xe1\x47\xb6\x9c\xe6\x9a\xc2\x86\x2f\x43\x37\xd4\x35\xd3\xa4\x37\x75\x10\xba\xb6\x5a\x77\xbd\x9f\x03\xa0\x58\xd2\xcf\xab\xaa\xbf\xac\xaa\xbc\x06\x8a\x58\xd6\xc0\x0b\xb9\x0f\x14\xb1\xf4\x7d\x3d\x37\x6c\x7c\xda\x5f\xc7\xf1\xe6\x2c\xf5\x83\x75\xae\x59\x3a\xdf\x2c\xea\xea\xe6\x9b\x45\x6f\x1d\xc7\x99\x71\x02\xac\xa7\x15\x18\x4b\x17\x74\xab\x9c\xc9\xa9\x3f\x56\xd6\xc0\xd0\x1b\xf3\x33\x76\xd7\xa0\xc7\xb1\xd2\xf2\x27\xe6\xa0\xcd\xe2\xeb\x7a\xff\xf0\x2d\x63\xe3\x70\x5a\xac\x39\xca\x60\xe0\x2d\x2e\xb7\x5c\xcf\x9d\x81\x11\xec\xc8\x70\xf1\x82\x3e\x1d\x0c\x50\x21\xd6\xa0\x69\xc9\x77\x3a\x61\x87\xab\x01\x42\xfa\xd8\x74\xa7\x6a\x30\x20\x1c\x2c\x1d\xe7\x6a\x41\x11\x00\x86\x1c\x7c\x1a\x50\xb6\x99\x67\xb1\x44\xc6\xb9\x46\x49\x86\x48\xec\x01\x75\x08\x43\xfb\x8b\x96\x4e\xdb\xdd\x5e\xd1\x8c\x1a\x83\x7a\x9a\xb2\x62\x36\x9c\x4c\xd5\x30\xf1\x08\x4e\x56\x14\x1c\xbc\x34\x66\x13\xfe\x60\x0a\x61\xcd\x4a\xa6\x4e\xcb\xf3\xf4\x74\x38\x2c\x61\x1f\x95\x67\x16\x1f\xd1\x0d\x13\x3e\x1a\xcb\x0e\x30\xe4\x2e\x8d\xbe\x68\x1f\x86\x5d\xeb\x17\x55\x85\xf9\xdd\x5e\xb7\xc6\x54\x66\x4f\x2c\x45\xb2\xc7\x19\x85\x83\xc7\x8b\x9e\x95\x5e\xbc\xcb\x7e\xe3\xe4\xd4\xb0\xc6\x9a\x97\x3b\xcf\x41\xd9\xc8\xca\xe1\x84\x4a\x96\xd7\xaa\x44\xab\x97\xa6\x29\x13\xe7\xd2\x12\xb3\xeb\x2c\x91\x54\x0c\x27\xc4\x6b\x94\xd3\xa5\xb0\x54\xaf\x11\x1c\x59\x9a\x92\xe9\xde\x3e\x10\x2a\x91\x10\x09\xaa\x82\x10\xfa\xb0\xfc\xd0\xaf\x96\xa6\xd6\x58\x4c\xb3\xab\xc3\x49\x55\x09\x58\x76\x55\x25\xce\x59\xe6\x61\xc0\x89\x33\x1b\x1f\xb1\x57\x84\xbb\x21\xa8\x1c\xfa\x3e\x18\x88\x03\x68\xc0\x13\x59\x13\x61\x41\x68\xea\xf9\xaa\xab\x00\xd9\xc7\x45\xff\xac\xe1\xb5\x3c\x3f\xf1\x30\x2d\x42\x80\xfa\x38\x51\xc3\x76\x01\x4d\x00\xa9\x65\x7d\xcc\x87\x81\x07\x6b\xe3\xef\xf0\xbd\x81\x1b\x81\x08\xe4\xd6\xe0\x47\x8b\x4e\x3b\xc9\x23\x1a\x69\xf1\x85\x16\x0c\x23\x20\x8f\x9a\x71\x7b\x67\x47\xde\x27\x8a\x4c\x95\x45\xd7\x84\x37\x54\xb2\x5b\x90\xab\x76\xa9\x2c\xf9\xf3\x42\x25\x85\xef\x1a\x4c\x8c\x8b\x53\xfb\x2b\xaa\xff\xdc\x8d\x4a\x56\xbe\x4a\x5f\x19\xaf\x2f\x52\x55\xf6\x11\x99\x53\xa3\x6c\x0b\xc2\x2d\x4a\x42\x3d\xed\xc6\xda\x1f\xe1\x4c\x0c\xeb\x53\x26\xf4\xc3\xf5\x7c\xac\xc3\x39\xb9\x2b\xa6\xdf\x10\x4a\x1f\xb6\xa3\x6d\xd4\xa5\xed\xbe\xaa\x34\x33\xd9\x1d\xc5\x35\x67\x7b\xa5\x3c\x87\x7d\x6e\xb5\xa2\x66\xaa\x6f\xb7\xe9\x6e\xea\x26\x15\xec\x23\x61\x70\xbc\x77\xf0\x7c\x68\xc4\x94\xe3\x2d\x7f\x7e\x28\xdc\x78\xf3\xdf\x55\x7e\x39\x97\x8b\xee\x3a\xf4\x17\xac\xe7\x8e\x3a\xc0\x34\xcf\x54\x43\x1c\x8d\xff\xbd\xd5\x50\x54\xc4\x4f\xfb\x63\x8f\x6a\x6f\x55\x4b\xbd\x7a\xa9\x5f\x5d\x21\x47\x07\x1f\x3c\xdf\x2b\x55\x9b\xab\x1c\x41\x8a\x6c\x71\x77\xa4\x35\xab\x60\xdd\x68\x20\x88\x17\xad\xe8\x31\x77\xe0\x5f\xa9\x73\x86\x10\x58\xaf\x74\x45\xe6\xe7\x00\x21\x41\x67\xc5\x14\x62\xf5\x7b\xee\x15\xa6\x0f\x86\xa7\x7b\x9d\xa1\x6a\x04\xfa\x50\x90\x9e\x8c\xe3\x3e\x02\x44\xcd\x10\xb0\x67\x0a\x97\xf3\x35\x02\x2c\x00\xa5\x49\x5a\x50\xc4\xde\x76\x6e\x2b\x61\xc0\x72\x62\x7c\xb9\xba\x2c\x6b\x74\x95\x5a\xd8\x52\x24\x08\x17\xd0\x81\xd6\xc5\xaf\x4f\x7e\x51\xd6\x0e\x18\x5a\x87\x9d\x33\xa1\xb6\x32\x26\x11\xb6\x8b\x01\x6a\x97\x24\x35\x88\x3f\x00\x64\x20\x32\xc6\x1b\xd1\x08\x31\x58\x07\x72\x06\x60\x2e\x79\x40\xd4\x67\x53\xe4\x4a\x25\xd2\x54\x86\xeb\x09\x0c\x07\x31\xfa\xd9\x54\x52\xc9\x97\xc6\xfc\x52\xaf\xb3\xcc\xdb\x26\x26\x74\xab\x5d\x4f\xd9\x08\x7f\xd0\x4d\x5a\xe2\x3e\x2c\xa7\xfd\x89\xb7\xc6\x2e\x95\x7f\xab\xa0\x4c\x72\xb0\x8e\xd1\x67\x2d\x9c\x3e\x74\xcf\x8a\x41\x22\x01\xaf\xa9\xb6\x67\x82\x7a\xda\x70\x2b\xb3\x92\x99\x6f\xf3\xfd\x62\x9a\xa8\x91\x6e\x2b\xc0\x19\xe8\x1f\x06\xd0\x11\xd9\xb1\x23\x9e\xb3\x84\xaa\x51\xdd\xdc\xaa\x3a\x0a\xec\xdd\x19\xd2\x34\x63\x32\x8e\x81\x00\x1a\x48\x79\xbb\xd7\x36\xb6\x3c\x19\xc7\xf5\xdb\x6b\x04\x77\xcd\x6a\x2c\xbd\x46\x7a\x2d\x32\xa0\x95\x51\x23\x13\xcb\x7a\xf5\x55\xa0\x6a\x1a\xf5\xc2\xf1\xe2\x3a\x55\x26\x9a\xe1\x19\x9f\x96\x8e\xc7\x1d\x4e\xc0\x9b\xc6\x68\xc8\x53\x44\xaf\x49\xe7\xe5\x60\xb2\xe8\x81\x3c\x92\x5e\x94\xc9\xbe\x46\x9e\x34\x52\xf5\xf9\xfd\x38\x16\xc8\x02\xbb\xaf\x03\xc0\xa5\x24\xf7\xee\x0f\x0d\xb0\xec\xc1\xa4\xb0\x91\x61\xdc\x7b\x90\x87\x00\x0a\x18\x67\x23\x1c\x69\xd8\x30\x49\xc9\x8e\x18\xa9\x50\x30\x59\x57\xb0\xd6\xe0\x22\xd7\x82\x6e\xd2\x9c\x59\x83\xf4\x25\x03\x03\x75\xba\xf6\x6c\xd6\xf5\xe8\x3d\x60\x6c\xef\xcc\x7e\x6b\xbe\x11\x83\xf4\xff\xf1\x74\xa3\x47\x02\x30\x90\xf3\x38\x7e\x2f\xcc\xa5\x8d\xc1\x01\x33\x2e\x45\x08\xac\x01\x51\x82\x07\x39\x21\xa7\x64\x38\xcc\x61\x02\x4e\x83\x4f\xcb\x33\xf3\xf8\xb4\x58\x7d\x55\x59\x4b\x5d\xd6\x60\x00\xa2\x2a\xe0\x04\xfe\xbb\x85\x24\x5f\xa2\xe5\x3d\x96\x35\xf4\x33\x91\x8c\xed\x7d\x64\xb7\x63\x2e\xe0\x16\xc4\x4d\x1c\x03\x1a\x26\x46\x33\xf4\x49\x00\x32\xcb\x92\xb4\x96\x4d\x2f\x63\x3b\x7b\xfd\xb5\x9b\x3b\x97\x00\x39\xdb\xb9\x85\x34\x1d\x2f\xa6\x1f\x15\x0a\x3a\x59\x58\x54\x57\xab\xaa\xea\xa3\xc2\x0b\x0b\xcd\x8f\x54\x55\x86\x8c\x48\x55\xe9\x5e\xa3\x71\x7c\x6f\xc9\x72\x9a\x0f\xd9\x84\xae\xad\x17\xc2\x01\xc6\x66\x32\x01\xc6\xb8\xed\xa1\x6c\x78\xaa\x72\x29\x39\x2f\xaa\xca\xdc\x4c\xc3\xd3\x28\x17\x97\xd9\x32\xcd\x7f\x79\xf2\xe6\x79\x55\xb5\xdf\xb9\x74\x2b\x7e\x95\x2d\x39\x26\xeb\xfb\xae\xa6\xd9\x3a\x41\xc4\xe5\xbf\xba\x03\xeb\xaf\xc2\x63\x01\x81\xf5\x2b\x77\x69\x51\xf3\x7e\x47\x89\x0b\x95\x7a\x84\x14\x1d\xd3\xc9\xd1\x11\x72\x96\x30\x26\x58\x82\xde\x8a\x05\xaa\xb9\x0c\x13\x77\x3e\x39\xd4\x51\x21\x4e\x94\x39\x27\xdb\x7d\xbb\xd7\xea\x1a\x95\x8d\x64\xbf\xb6\x92\xe9\x37\x8e\xec\x6b\xf6\x53\x41\xa5\xdf\x14\x86\xdf\x54\x38\x61\xdf\x14\x54\x89\xdd\x54\xe9\xbd\xfd\x8d\x74\x98\x17\x66\xcf\x7f\x23\xf5\x76\xaf\x91\xf9\xed\x69\x43\x50\x22\xbe\xcd\x01\x6a\x63\xcd\x24\x73\x6a\xe4\x26\x88\x7d\x8d\x86\x9d\xec\xd8\xbe\xb5\x32\x89\xf3\x65\xbe\x6b\x61\xee\x8f\x0d\xf2\xc1\xdb\x6f\xfd\x5c\x0b\x71\x59\x55\xf5\x71\x51\xc6\x71\xdf\xac\x4a\xa3\xf5\x59\xb5\xf6\x5b\xd0\x94\xf9\x78\xd1\xcb\xd8\x6a\x86\xc3\xb5\x42\x9d\x25\x0e\x16\x3e\x0c\x82\xc8\xd5\x30\x6e\x2b\xd0\x5e\x9a\x51\x5b\x99\x51\x3b\xe8\x8d\x64\xa9\xd3\x16\x42\xd6\xee\x86\x48\x2b\x21\xf9\x0d\xcb\x2c\x4d\xf5\xde\x5e\xb1\x64\x3b\xb8\x21\xf7\xee\xd3\x4b\x7b\xbe\x35\x0e\x11\x8a\x94\xee\xd2\x0d\x4d\x1c\xf7\x93\xab\xb3\xcb\xf9\x66\x41\x80\xfa\x9d\x82\xdb\x3a\xdb\xcc\x2e\xe7\x9b\xe1\x64\x31\x1d\xd3\x8f\x4c\x7f\xa5\xd7\x46\x04\x49\xdc\x08\xaf\x67\x66\x6c\xa6\x38\x58\xc4\x36\xc5\xeb\x75\x82\x57\x09\x98\x18\xf2\xdb\xf1\x0c\x12\xeb\x71\xb8\xb0\x63\xf0\xf1\xd0\x6b\x91\x84\xe4\x7a\x74\x21\x2e\xf7\x70\x34\xf4\xbe\xe2\xf6\x14\x72\x48\x25\x76\x6c\x4b\xaf\x47\xd2\xa8\xe6\x6f\xdc\x8e\xba\x3e\xb8\x43\x85\x60\xc9\xc0\x19\x58\x76\x81\x95\x84\x50\xec\x6f\xe9\x77\xa7\x34\xca\x65\xdd\xde\x6c\x56\x42\x0d\x60\xd4\xe2\x26\x10\xde\x9a\xdf\xa5\x9d\xcc\xc3\x6b\xde\x40\xad\xc8\x8a\x4c\x75\x60\x22\xa9\x4d\x56\x6a\xa2\x81\xce\x6b\xd4\x04\x4f\x35\xe8\x52\xec\x21\x4f\x5c\xec\x53\xeb\x0d\x68\xc3\xbc\x34\x62\x39\x94\x2e\x96\x95\x48\x0a\xca\xd1\x6c\xa6\xd3\x30\x93\x5c\x70\x76\x6b\x1d\xcd\xa7\xfd\x09\xba\x85\x17\x7a\x69\x3b\xfb\x02\x88\x47\xa9\xba\x3c\x1b\x41\x83\x1a\xfa\x4a\x1e\x73\x80\xcc\x46\x57\x69\xbe\xe7\xac\xed\xca\x4e\x6f\x44\x92\x11\xe2\xee\x95\xfa\x45\xb8\xfd\xb3\x92\x3f\x16\xbb\x9b\xc7\x7b\x2b\x3b\x19\x6b\xbc\xcf\x3c\x29\x48\x2f\x6c\xff\x18\xdb\x8f\x2c\xef\x81\x82\x8f\x3a\x80\x01\xdf\xec\xf8\xac\x18\x95\x41\xaf\x9c\xed\x1f\x70\xb0\xa9\x20\xd3\x66\x6f\x6c\xa3\xe5\x91\x36\x1f\x82\x0a\x20\xb8\x40\x87\x3b\xfa\x98\x1c\x0e\xbc\x3b\xbc\xa8\xa4\xf5\x07\x0f\x24\x15\x9c\x1f\xb3\x06\x84\x11\xa0\x7d\x61\x1c\x59\xf4\xb9\xf7\x55\x72\x9a\x84\x9d\xb3\x7f\xd7\x2c\xa5\xef\x65\x0a\x13\x14\xb8\x9d\x5a\x84\xd0\x9d\xc8\xf3\xa4\x8e\x4c\x8b\xce\xe7\x01\xb2\x82\x59\x3b\x55\x05\x3e\xf4\x05\xc4\x1c\xe8\xf4\xc1\xd7\xa3\x3e\x5a\xa7\xa5\x7a\x03\x65\xd6\x85\xea\xc1\xa1\xa5\x7b\x12\xbb\x1b\xfb\x58\x87\xc3\x6a\x57\x2d\xc9\x6d\x59\x80\x04\x53\x55\xd0\x06\xf9\xa5\xaa\x11\x79\xc3\xd4\xeb\xa9\x79\x68\x84\xb7\xd5\xc0\x14\x7a\x35\x28\x53\x83\x22\x55\xf5\xbd\x16\xf9\xea\x16\xa3\x33\x2e\xac\x8f\x46\x26\xeb\x8c\x0b\x7b\x03\x69\x4e\x12\xad\xa5\xd8\x46\xa4\xa7\x6a\x2f\x5e\xb0\x20\xb2\x0f\xb8\xc0\x5c\x3c\x5c\xef\x0b\x33\xb7\x7b\x1c\x3d\xa2\xa7\x05\xd8\xb4\xbd\xe7\x9f\x41\xf2\xf4\xab\x50\x22\x22\xf4\xd6\x41\x27\x4e\x03\xfb\x09\x5b\x5c\x74\x20\x87\xae\x4e\xf0\x62\x15\x74\x21\x68\x68\x62\x57\x01\xfd\xba\x26\xc3\xd2\x39\x90\x03\x6d\x1a\x20\x1d\x81\xff\x59\x6e\x69\x47\xc8\x74\x4d\xd6\xac\x58\xe4\x29\xc0\xc5\x15\x1a\xaa\xfe\x9c\xa9\x0d\x76\xdd\x1a\xa5\x3f\xc6\x21\x69\x9b\xd6\xe2\x15\x3e\x01\xf0\x76\xbb\x89\x8e\xb1\x5b\xa9\x87\xfb\x7f\x94\xdd\x1a\x29\xfe\x5e\xec\x7c\x1b\x18\xef\x4a\xa6\x2b\xd0\xd9\x70\x32\x06\xcf\xa4\xdd\x20\x85\x23\x5a\x98\x0b\x67\x5d\x12\xe0\x74\x7d\x4d\x51\xa8\xff\x82\x92\x80\x47\x40\x4b\x90\xa1\xb9\x78\x26\xb5\x9d\x11\x0d\xcc\xc2\x8e\x9c\x1f\x9e\xd7\x4a\xef\x8d\xf0\xaf\xe9\x50\x39\x51\x0a\x59\x12\x0a\x5f\xfc\x60\x2a\x68\xc3\x8b\x8f\x78\x61\x8e\x48\xcb\xef\x21\xb4\x88\x7f\x0e\x79\xb6\x35\x26\x01\xda\xd5\x74\xa4\x31\xb0\x71\x38\x16\x26\xe0\x22\x95\xbc\xe4\xe1\xe1\x07\xf2\x31\xba\xc2\x17\x9a\xce\xbe\xe4\xc5\xfe\x0d\x87\xf9\x31\x3d\xd3\x27\xb5\x5b\x53\x19\x93\xf6\x4e\xaf\xd3\xa9\xc0\x58\xae\xfb\x84\xdc\x68\xaf\xb3\x86\x53\xcc\x9e\x25\x8a\xfd\x8b\x88\xe3\xc4\xb3\x20\x1b\x86\xe6\x66\x00\x79\x91\x14\x4c\x06\x47\xa2\xcf\x76\xf2\x07\x84\xcc\xa2\x61\x34\x2d\xaa\xaa\x99\xaa\x17\x9c\xd6\xe6\x34\xd9\x53\xd9\x0c\x0e\x7d\x23\x92\x20\x25\x62\xc5\x03\x41\x4f\xda\xd0\x01\x7b\x73\x9d\xa4\xf9\x9c\x46\x5f\xbb\xea\x8b\xa2\x3b\x4b\x43\xfb\xcf\xde\x51\xf4\x02\x75\x38\xd0\x4b\xae\x9e\x65\x3c\x5f\xb5\x81\xb6\x4e\x82\x1a\x0f\xb4\xdc\xef\x76\x42\xaa\xf2\xbd\xd8\x2f\x37\xed\xe4\xfd\xc9\x81\x42\xaf\xfd\x4f\xd9\x3a\x89\x0a\x61\x2c\xbe\xfa\x6e\x19\x5b\xda\x20\x0d\xb6\x8a\x66\xce\xb7\x55\x85\xb1\x83\xc2\xe1\x22\x4a\xde\xdc\x86\x7d\xb7\x91\xb4\x97\xa9\x5a\x6e\x92\x5f\x05\x20\x77\x5d\xe4\xfb\x00\xcc\x2b\xcc\xa2\xbf\x26\x76\x89\xbe\xb1\xd6\x4d\xcd\xe4\xed\x7d\x70\x6c\xe9\x8f\x75\x51\x4b\x9e\x5d\xf1\xd5\xb3\x66\x9f\x21\x4f\x99\x8b\x6b\x3c\x34\x0f\xd4\xfe\xee\x26\xa6\x3d\xee\x23\x50\x54\x95\x7b\xc4\x5b\xf0\xc6\x88\xe9\x6f\xd6\x3c\x20\x0c\x4a\x6e\x08\x3e\x78\x03\x34\xd6\x20\xf7\x9b\x43\x0e\xd4\x9e\xe8\xed\x06\x69\x36\x11\x5b\xa5\x42\x5c\x8c\x31\x55\x41\xbb\xee\x8f\x43\xac\x3a\x7b\xe0\x54\x15\x9f\x25\xaa\x85\xa9\xe1\x35\x80\x4c\x13\xde\x2e\xef\x4f\x63\x5a\x10\x3c\x82\x8e\x8e\x14\x1e\x3b\xc1\xc4\x5a\x9e\xda\x6d\x13\xb0\x07\xe8\xa6\x38\xe0\x82\xd1\xc0\xfa\xfa\x8b\x48\x14\x89\xe3\x7e\x11\xc7\xfd\x10\xb3\x43\x4f\x44\x08\xfe\xc3\x8f\x80\xff\xd8\x42\x3f\xf1\x9b\x77\xfc\x1f\x61\x28\x38\xa9\xc5\x35\xbd\x55\x81\xa6\x81\x55\x94\x6e\x44\x07\x69\x73\xd9\x8c\xd4\x8a\x2c\x5f\x6b\x4b\x33\x26\xab\xea\x26\x8e\xef\xcd\x3f\xec\xd7\xff\x36\x1e\x0f\xf5\x9f\xf5\x7a\x71\x0f\x11\x6c\xea\x7b\xc9\xa6\x69\x31\xac\xfc\xc4\x06\xc2\x74\x40\x31\x3e\x7c\x41\xc9\xf3\x67\x42\x3e\xae\x07\xae\x86\x81\x5e\x6e\x52\xf9\x18\x81\x7e\x10\x1a\xe0\xcf\xf7\xc7\x0f\xfa\x2c\xab\xaa\x02\x68\x68\xf4\x3f\xfe\xb7\xff\x23\x22\xf4\xcf\x7f\xfa\xd3\x9f\x18\xcb\x88\x4f\x40\x6c\xc5\x76\x25\xf3\xcf\x7c\xf9\x58\x6c\xb7\x69\xb1\x4a\xa2\x7d\xb1\x12\x11\x39\x78\xd8\x40\xce\x4e\x32\x2b\x5c\x54\x5d\x6a\x9d\xf3\xc8\x69\x79\xb6\x8f\xe3\xc2\x6f\x4f\x09\x2e\x68\xc1\x8b\x53\x32\x18\xd8\x7b\x59\x58\xcc\xa6\x3d\xcd\xdb\x6e\x00\x6d\x93\xc6\xcb\xa3\x24\xd4\xd6\x37\x34\x82\x43\x5e\x2f\x87\x59\xf4\x0d\xfe\xe6\x11\x1a\x46\xb9\x36\xe9\x63\x42\x1f\x0f\x16\xb1\x08\xa4\x88\xf3\xe1\x64\x66\x66\x9e\xe5\xc1\x81\x35\xf5\x1f\xa5\x5f\x45\x1c\x27\xf9\x51\x6e\xad\xf5\x85\xf1\x9a\xaf\xf4\x3f\xa2\x9a\x94\xff\x33\x7c\xa6\x01\xa8\xa2\x18\x8c\x5b\xef\x56\xbe\x6a\x11\x36\x6f\x67\x9b\xf5\x89\x1b\xdf\x1e\x40\xe1\xce\x27\x07\x2a\x8a\xbf\xf0\x9b\x37\x92\x97\x01\x91\xfc\xe2\xb1\x65\xc2\xc4\x3a\xd9\x43\x17\xe4\x2d\xcd\x3b\x64\x6c\x14\xb0\x0b\xcf\x7a\x57\xd5\xf4\x62\xcf\xf6\x05\x08\x3f\x34\x67\xb2\x2b\x34\x7a\xb6\x4e\xf6\x71\xdc\x5f\x92\xdb\xc2\x3b\xa6\x7c\xf1\xf2\xb5\xdf\x8e\x38\x1e\x4e\x98\xae\xcc\xe0\x2e\x69\xb2\x93\x66\x45\x09\xb0\xf0\x7f\x51\x49\x41\x7f\xe5\x24\x81\xef\xf4\x39\x4f\xf6\x44\x4b\xa3\x3d\xb4\x7a\xb1\x62\xe0\xb2\x2c\xf5\x34\x52\x2f\x20\x5d\xf8\xa5\x77\xe4\x3d\xeb\x30\xd4\x8d\x0c\x4e\xdc\x17\x19\x67\xdf\xa4\xfc\x8e\xf2\x6a\x18\xa0\xb1\x6f\xca\x8b\x4f\xc6\x08\x38\xb1\x18\xbb\xbf\x0e\x77\xc0\x2d\x7f\x6b\x0c\x7f\xbd\x78\x09\x98\xe0\x97\xe1\x0e\x79\x60\x9b\xe2\xb7\x21\xec\x9b\xe9\xc9\x64\x3c\x1e\x9f\x9e\xd4\xb1\x28\x20\x9b\x98\x45\xf2\xf2\x22\x4d\xee\x7f\xfb\x2d\x3d\xa9\xff\x1b\x8d\xbf\x25\xd1\x34\x52\x32\x2d\x4a\x54\xda\x45\x64\x10\x35\xb0\x8f\x4e\x4f\x10\x5b\x68\x68\xda\x3f\x6e\x7d\x6f\xa3\x20\x89\x5d\xba\xcc\xd4\xcd\x54\xd7\x70\x7a\xb2\xce\x72\xc5\xe5\xf4\x24\xcd\x77\x9b\x34\x31\xdf\xd8\xb7\xe4\x54\xcb\xba\xa8\x34\xac\xb5\xd2\x22\xcf\x7f\x45\xc6\x35\x04\x8d\x2c\xe3\x38\x48\xf4\x5e\x20\x42\xe7\x0a\xcc\x33\x02\xd2\xdc\xa9\xc6\xa9\xaa\xc4\xea\x2a\x02\x15\xc6\x49\x84\x22\x5c\xf3\x94\xd3\x47\xab\x6c\x93\xf2\x7a\x89\x22\xee\xe9\xfb\x6c\xcb\xc5\x5e\x25\x72\xb4\xe2\x0a\xbd\x22\xb0\xce\x87\x7a\xef\xb9\xdd\xa9\x79\xe9\x6b\x72\xfb\x8f\xcc\x86\xf4\xdb\xfa\xc0\xa4\xff\x92\x25\xd8\x37\x1a\x6d\xc5\xbe\xe4\xfb\x5d\x44\xb7\x84\x96\x5c\xd9\xe2\xaf\xe8\xfd\x31\x39\xf4\x7e\xed\x4c\x68\x50\x21\xfd\xd4\xdf\xfa\x28\x0b\x37\x89\xa7\x99\xcf\x6a\x29\x06\x6f\x48\x9c\xd0\xde\x31\x68\x54\xe0\x89\x34\x48\xf8\xcc\x8c\xde\x34\x8a\x48\xcf\x8e\x64\xf4\x3f\xfe\xf7\xff\xb3\xd6\x01\x09\xea\x8f\x2c\x07\x33\x4a\x9d\x9b\x36\xeb\x64\x13\xff\xd5\xd3\x62\xc5\x44\x7d\x42\xdd\x31\xe4\xde\x6d\xe8\x55\x62\x6c\xfa\xba\x66\x4e\x33\x4a\xdd\x1b\x7d\x43\x9b\x5b\x75\x4d\xad\x6e\x5b\xd6\x30\xb5\xe5\xc8\x87\xbb\x4d\xba\x08\x1c\xcb\xad\x10\xd8\x1e\x51\x30\x9c\xc6\x62\x09\xcc\x7d\xcf\xc0\xce\xd2\xd2\x9f\xf6\xae\xbe\xd6\x9d\x85\xcb\xad\x66\xd9\x71\x1c\x0e\xdc\xf9\x38\x8e\x61\x8c\x99\xbf\xaa\x67\x40\x30\x73\xeb\x9b\xa4\x97\x62\x52\x90\x29\x1f\x0c\xce\x26\xe3\x59\xd7\x52\x65\xde\xea\x29\xe9\xb7\xe3\x31\x99\x36\x76\xd5\xa1\xf7\xe5\x7c\xf7\xc7\x63\x72\x38\x68\x96\x1e\xb9\x3d\xe3\x3d\x1b\x9c\x31\xbc\xaa\x7c\x76\x06\x80\x85\xeb\x78\x06\xd3\x0b\x41\x0b\xce\x57\xa5\x41\x81\x71\xd0\x67\x53\x2d\x16\xf9\x5a\x62\x42\x3f\xfd\x4e\x9d\xb1\x51\x18\x8f\x56\xd9\x95\x89\x9d\xf4\x24\xbb\xaa\x35\xc2\xd9\x7f\xbf\x46\xb8\xa1\xfb\x2c\x6c\x08\xaf\x5a\xfc\x8d\xac\xff\x88\x4e\xf9\x7b\x15\xbc\xea\x2e\x05\xaf\xea\x52\xf0\x82\x13\xf9\x8e\xcb\x14\x2a\xf7\x96\x62\x53\xf1\xeb\xbc\xde\xc7\xfa\x9c\xa5\x5f\x6c\xf9\x01\x6e\x89\x5a\xe0\xa1\xfd\x15\xe9\x40\x03\x6d\x42\x8a\x02\x21\x05\x50\xd1\xf6\xb7\xb2\x03\x6e\x94\xb6\x35\xe4\x9e\xf5\xbe\xbb\x06\x08\x14\xff\x45\x60\xd2\x81\x26\x6e\x0d\x3d\x73\x57\x12\x5f\xe3\x7c\x5c\x3f\x6f\x8c\x2e\x9d\x53\x53\xba\x54\xd9\x15\x7f\x8a\x68\xe2\x3d\x50\x84\xfb\xc4\x3c\x18\xf7\x76\x9d\x61\xc4\x17\x2a\x9c\x9c\x0e\x54\xfd\x70\x78\xc7\xf5\xeb\x5f\xb3\xa4\x43\x33\xdc\xa1\x94\x3e\xd8\xb4\x77\x68\x6e\xb9\x67\x6e\x9a\xaa\xb4\x67\x28\x6b\xad\x89\xe5\xf9\xb4\x3e\xf8\x74\x92\xa9\xa4\x50\xc8\x13\xf8\x7d\xa8\x01\x32\x6a\x16\xae\xd6\x22\x09\x54\x09\xbf\xc8\x0a\x9e\x04\x90\xa0\x96\xd7\xb7\x96\xdd\xa0\x06\x74\xd0\xa0\x43\x27\xae\x90\x9e\x80\x98\xd1\xe2\x8c\xb9\xaf\x68\x61\x5f\xf3\xeb\x3c\x67\xcf\x01\x5b\xca\x47\x11\x15\x80\xc5\x15\xbc\x19\xd4\xa5\x5a\x8d\x70\x38\x38\x36\x8c\xae\x3f\x3a\x7e\x4d\xba\xfb\x66\xa0\xba\xb2\x87\x0a\x65\x5e\x47\x02\x74\x25\xf4\x0a\x00\x21\x80\x72\x58\x31\x72\xe3\x58\x55\xf7\x3e\xec\xef\x8f\xc7\x17\x46\x08\xc5\x24\xa8\xda\xf7\x2a\x3d\xbe\x96\x30\xe6\xcc\xaa\xaa\x14\x62\x98\x3f\xae\x5b\x95\x14\xa1\xa6\x9a\x15\xe1\xf8\x19\xd5\xb5\x5e\x62\xf5\x8a\x51\x62\xbf\xdc\xb4\xb5\xfc\x26\x00\xbc\x57\xfa\xd3\x62\x95\xd4\xd9\xda\x77\x2f\xca\xd7\x07\xf4\x8b\x40\x21\x10\xc7\xa8\xc1\x30\x14\x5f\x73\x6a\xdf\xa9\x04\xa8\xb5\x57\xc2\x0f\x2a\x01\x34\xfd\x7a\xc0\x77\x37\x11\xcd\xdc\xa3\xae\x30\xfb\x3a\xc5\xbb\x53\x06\xd1\xbe\x73\x13\x3f\x31\xba\x0c\xa7\x59\x0b\xf4\x1b\x94\x1f\xd7\x2c\x83\xc3\x86\x91\xe0\x3c\x38\x24\x0f\x9c\x30\x8e\x93\xc4\x14\x55\x55\x0e\xc2\x5e\x97\xf7\x06\x77\x88\xa7\x0d\xa5\xee\xdb\xcb\x7d\xae\xb2\x5d\xce\x3d\xa2\xcc\x09\xc1\x76\x34\xf3\xb5\x3b\x59\x5b\xce\x06\x85\xd7\xfa\xef\xd6\x1e\x95\xec\x31\x77\x03\xc3\x0d\xaa\xc3\x2b\x0c\xdb\x99\x7a\x20\xa0\x9a\xb2\x06\x29\xd7\x16\x0b\xd4\xfe\x36\xe9\x7a\x16\x16\x72\x74\x91\xae\xaa\xaa\x9f\x55\x55\x86\x3f\xc7\x80\xee\x74\x85\xb8\x4f\x35\x80\x9a\xfd\x70\xe3\x3e\x00\xa0\x99\xb5\xf7\x7a\x59\x57\xea\xb2\xd0\x34\x7c\x0d\x19\x40\xf3\x53\x55\x0e\xd8\xa1\x6b\x6a\xe8\x9e\x71\x3c\xe2\x1e\x8b\x7d\xa1\xe2\xb8\x06\xe8\x75\xaa\x19\xf4\x1a\xe9\x9b\x72\x72\x56\xce\x6b\xe8\x93\x85\xb3\xd3\x58\xb2\x1c\x8c\x46\x67\xf8\x67\x8e\x7f\xea\x84\x53\x78\xd1\x4b\xd9\x6d\x21\x56\x7c\xba\x9c\x2f\xeb\x6f\x14\x8d\xac\xfd\x97\xf7\x17\x43\xef\xe9\xc1\xe2\x60\x81\x97\x4d\xfe\x72\x3e\x5e\xf8\xc6\xaa\xf3\xfb\xae\x94\xf1\xa1\xa7\xe4\xcd\x2d\xca\xc4\x9f\x84\xc1\xbc\xa4\x36\xde\x2e\x4d\xeb\x1f\xfa\x43\xa0\xf7\x5d\x83\x6d\x7e\xbd\x8c\x83\xe5\x3f\xd3\x07\xbb\xb1\x11\x6b\x96\x4a\xe8\xda\x7d\x5b\x55\x15\x1f\xa5\xab\x15\xe2\x1c\xaf\x41\x43\x69\x4e\xb3\x87\x79\x0e\x6f\x4b\x38\xe2\xfd\x34\x74\x8f\x51\xda\x35\x8b\x52\x2f\xba\x99\x97\x68\x0f\xf1\x46\x71\x63\x68\x5a\xf4\x5d\x8d\x1f\x0b\x26\x88\xc8\x4d\x6e\xf9\xf6\x82\x4b\x6f\xb5\x6b\x46\xb4\x99\xfe\x88\xe6\x38\x90\xe4\x9a\x18\xb5\xa4\x8d\x5a\xdb\x4d\x7f\x79\x03\xd9\xd6\xbf\x30\x32\x9c\xb0\xa6\x76\x06\xa9\xa9\x83\x09\xbb\x1b\x80\xe6\x40\x0e\x20\x04\xd2\x6e\xea\x10\x30\xbe\x6f\x44\xd2\x5c\xf5\x47\x2f\xb9\x1a\xe9\x8e\x5e\x79\x69\xb6\xbe\x31\xc8\x5f\x49\x77\x7a\x5d\x08\xc3\x01\x89\xe9\x86\x1b\x0e\x09\x0f\xed\x40\x1f\xf6\xa9\x4f\x27\x12\x71\x40\x92\xb4\xac\x61\x1a\xf5\xbc\x78\xba\xca\x94\xe8\x08\xcb\xd2\xdd\x03\x90\x0b\x3c\x82\x11\x6a\xa7\x15\x6b\x90\x0f\x7d\xdc\x6d\x45\xf1\xb0\x58\xf2\x52\xa1\x80\x97\x66\x45\xed\x6c\xf2\xca\x8c\xfb\x2a\xbb\xa2\x8a\x74\xdc\xf7\x7c\xdd\x65\x8f\x2d\xa3\xe6\x10\x3b\x6f\x6f\x74\x0a\x7b\x71\xf3\xa5\x6b\xaa\x55\x76\xf5\xe5\x1b\xaa\xbb\x6e\x6d\xbc\x6d\x85\x5b\xb6\x39\xe4\x09\x99\x39\x05\xa7\x37\xc4\xd3\xef\xea\x73\xf9\x77\xec\x89\x00\x66\xfa\xeb\x6f\x7a\x4e\x94\x2d\xbb\x71\xc5\x93\xf0\x66\xc3\x68\x78\x91\xc4\x8f\x96\xad\xf0\xde\xa5\xd9\xcc\xaf\x5d\x62\x8e\x11\xa9\xf7\x45\xbf\x89\xc3\xad\x5f\x02\x91\xf5\xf6\x45\x2b\x11\xbe\xd6\xc9\xdc\xe6\xe8\x77\x40\x77\xbb\x04\xad\x62\x9e\xf9\x5b\x26\x18\x8d\xc6\x95\x64\xe3\xaa\xc7\xde\xfd\x78\x64\xd0\xd2\xed\x16\x1d\xfc\x4a\x46\xa5\x77\x8c\xba\x1b\x43\x4e\xcd\x89\xdc\xcd\xad\x48\x9b\xe6\x28\x9f\x52\xc4\xb1\x04\x0f\xbe\x20\xf4\xc4\xaf\x3c\x51\x56\xdb\x0c\x46\xd4\x5a\x0e\x4e\x0a\xe4\x60\x80\xa7\x21\xd6\xc7\xb7\x7b\x6d\x82\x5f\x1f\xf5\x38\xdb\xd6\x42\xa8\xbb\x09\xea\x09\xab\x67\x07\x1d\x45\x8b\x3f\x03\x79\x16\xfd\xda\x05\xa0\x93\x58\xcd\x33\x60\xba\x14\xce\x79\xa4\xaa\x84\x01\x30\xad\xf1\xbc\xfd\x3b\xb1\xcc\xb8\xf1\xf8\x39\xc6\x8c\x25\x9c\x15\x05\x00\xfe\x21\x9a\x0f\x41\x6b\xf9\xd7\x59\x82\x09\x35\xdb\x81\xfe\xef\x25\xab\xdf\x14\x10\xb2\x4a\xf3\x27\x7e\x52\xde\x4a\xca\x35\xc7\x04\xe1\x4c\xfd\x38\xa8\x68\x51\x0f\xd5\x8a\x1a\xc3\x6b\x6f\xdb\x56\xe3\xcc\x21\xff\x55\x77\x88\x2e\x8d\x07\xcb\x93\xec\x0a\x56\x2c\xca\xf8\xd0\x90\xdc\x6b\xc8\x7e\x30\x31\x4d\x31\x79\xea\xb7\xd0\x98\x2e\x6c\x63\x8b\x21\x00\x33\x50\x87\xe1\x69\x9a\xda\xd7\xc8\x4e\x51\x04\xb1\x3a\x68\x69\xa2\x46\x80\x20\xaf\x85\x90\x14\x88\x5d\xad\x60\xda\x27\x68\x82\x3d\xf1\xc1\xb9\x6b\xf1\xf0\xb2\x19\x1b\x14\xbd\x43\x7b\x4e\x73\x6b\x3d\x96\xa2\x08\xa5\x37\x1b\x5d\xde\x02\x26\x1b\x15\x4d\x62\x85\xc8\x4b\x1a\x45\x84\xd0\x2b\x91\xad\x12\x31\x60\x05\xee\x99\x9c\x2e\xbb\x2a\x43\xa0\x33\xac\x6e\x49\x0c\x13\x09\x41\xb4\x56\x2f\x53\xf9\x09\x90\xe2\x25\x1d\xa3\x38\x0d\xe0\x4d\x34\x59\xb1\xc1\xb2\x23\xd2\xd0\x09\x1f\x65\x2b\xc6\x56\x07\xe2\x88\x1a\xb4\x61\x5d\xcb\x43\x39\x5b\xeb\xe5\x03\x88\x5d\x80\xf2\x25\x06\xec\xa9\x45\xf0\xcf\x11\xdd\x23\x1f\x29\x41\x50\xc9\x52\x6a\x51\x3d\x5b\x27\x26\x34\x05\x6b\x77\x00\x87\xc0\x6a\x11\x23\x7b\x7b\xdb\x0b\xfd\x17\x3a\x30\xcf\xc1\xa6\x77\x9f\xf8\x5f\xc0\xd4\xf7\xde\x7f\x24\x3b\xc9\xab\x55\x76\x55\xed\xc8\xbf\xdc\xcb\x50\x22\xc7\x79\x7b\x95\x6e\x39\x42\x55\xe8\x5d\x6e\x5d\x07\x1e\xb4\xa7\x75\x67\xde\xfc\x64\x6f\xae\xfb\x3b\xdb\xb0\x14\x3b\x5d\xc2\xda\x21\x54\x0c\xd8\x0e\x21\xb7\xe1\x0e\xf7\x54\xaf\x15\xaa\xfa\xac\x38\x25\x10\xb8\xd7\xdb\x35\xd6\xe7\xf6\x90\x28\x5a\xd2\x25\x4d\x69\x4e\x08\xdd\xe8\xf1\x43\x82\xb5\xe3\x49\x6a\x66\x2a\xa7\xd7\xf6\x6d\x1e\x22\x0b\x93\xd3\xb5\xbb\x77\x8d\xe3\x8d\xfb\x7d\x4a\xb2\x75\xb2\x15\xc9\x9a\x30\xb6\x15\xc9\x86\x90\xf5\x68\x27\x76\x09\xa1\x1b\xf3\x37\x1f\x0e\x9d\x9e\x52\xcf\x62\x9f\x6d\xe6\xe3\x85\x71\x47\x58\x23\x0e\x30\x24\xb7\xbf\xd2\xc1\xc0\x5d\x4c\xef\xd8\x98\xae\xd8\x98\x6e\x61\x01\xd0\x1b\xc8\x4b\xaf\xea\xab\xea\xad\xbd\x08\xb8\x71\x57\xd5\xbb\xb3\xab\x38\xde\xfa\x37\xd3\x3b\xc2\xd8\x4d\xf8\xe2\x94\x0c\x06\x3b\x37\xdd\x97\x0c\xba\x40\x2f\xb0\x0f\xf4\x63\x5d\x81\xb3\xec\xd6\xfb\x70\xed\x1c\x36\xa6\x63\x42\x2f\xfc\x4f\x1b\xff\x13\x39\x5d\x9d\x7d\x8c\xe3\x4b\xbf\x4e\x57\xd0\x6a\x38\x21\x8c\x5d\xf8\xdf\x2e\xfc\x6f\xba\x69\xab\xde\x7a\xbe\xf6\xe0\x55\x2f\x1d\x24\x62\x5d\x0c\xa1\x7a\x4c\x70\x67\xe0\xd7\x1d\x6e\xd9\x6b\x06\x53\xba\x23\xf4\x29\x83\x49\x75\x6d\x83\xde\xb9\x02\xa6\x35\x32\x5c\x3d\xb9\x55\xa5\x0b\xac\xaa\x15\x4f\xae\xe9\x53\x32\x4b\x7e\x2c\xcc\x8a\x58\xd3\x6b\xfa\x94\xba\xf0\x54\xb4\x3f\x26\xd6\xf9\xef\xee\xab\xeb\x6e\xed\x4f\xd3\x6c\xed\xee\xc4\x1d\xaf\x5b\x59\x5b\x8c\x45\xad\x83\x33\x9a\x2e\x7b\xed\xdd\xd2\x76\x85\xc9\x09\xed\xce\x0e\xe6\x33\x21\x87\x4c\x9b\x3c\x35\x39\xd0\x66\xe9\xed\x08\xa0\xcb\x6d\xa0\xd2\x9a\xfd\xa5\xe6\x65\x7f\x50\xc4\xfe\x26\x53\x54\xe0\x01\x94\x47\xaa\xd2\x3e\xe3\xb5\xf2\x0f\x6e\xb9\x6d\xa6\x8f\x9c\x78\x1a\x16\x9d\x96\x8e\x51\x18\x6b\x5d\x98\x04\xaa\xdf\x91\x21\x84\x4f\xcd\x57\x66\x28\x66\xb7\xf5\x00\xe4\x68\xc7\xea\xea\xe8\x50\x55\x1d\x69\xdc\x3b\x25\xf5\x78\x6a\x82\xfd\xd8\x2c\xff\xc4\x4a\xf3\x76\x3f\xcc\xc0\xa4\x47\xff\x9a\xd6\x2f\x09\x1d\x93\xbb\x2f\x8a\xdc\x44\x34\xfb\x84\x75\x06\xf6\x70\xbc\x65\xd6\x70\x21\x1a\x36\x6a\xc7\x2f\x96\xc6\x87\xe0\x2a\x89\xd0\x77\x78\xf3\xf5\x0e\x31\x3b\x6e\xad\xcd\xc3\xf4\x35\xa7\x8d\x83\x66\xfa\x89\x1f\xe8\x1b\xff\x1e\xea\xd6\x70\x6c\xc7\xe4\x2b\x03\xdc\x17\x46\x2d\x58\x1c\x28\x42\xd6\x36\x8d\x3e\x39\x03\x0e\xb1\x46\x77\x80\x4b\x16\x97\xaf\xcf\xc2\x72\x34\x4b\x1f\xc0\x0a\x9a\x04\xc1\xbb\x9a\x1b\x0c\x41\x2a\xda\x29\x01\xae\xc2\xf2\x27\x7e\xe3\x17\xe0\x87\xeb\x9e\x74\xab\x50\x75\x57\x58\xfc\x58\x69\x11\x8d\xad\x52\xaf\x40\x7b\x64\x69\x70\x8d\x9d\xa9\x63\x2d\x51\xae\x38\xdf\x3d\x16\xbb\x60\xe4\xea\x88\x9d\xf3\x05\xbd\xb3\x99\x1c\xf0\xcf\x11\x55\x76\x6b\x54\x82\xae\x81\x0e\x5e\xb9\xfd\x05\x9b\xd3\x6b\xc5\x35\x08\xc6\x55\x6f\xba\xe6\x35\x60\x77\x33\x5d\x60\xd1\xb0\x85\xdc\xa0\x3b\xfa\x95\xf3\x85\x05\x5b\xac\xa7\xb7\xb6\x00\xb5\xf6\x2f\x0d\x4d\x33\xf8\xe7\x32\x4e\x9a\x58\xd3\xed\x2a\x0b\x3b\x77\x92\x85\xe0\xd3\x26\xd6\x84\xa2\xd2\x0b\x33\x11\xc7\x2b\xb4\xe1\x02\x0d\xea\x19\x1b\xbb\xc0\x3d\x66\x86\x86\x93\xc3\x81\xbe\x0a\x56\x3a\x86\x4a\x6c\x2d\xf3\x2b\x33\xc6\x66\x25\xb8\x78\x1b\xe4\x40\x95\xe8\x48\x7f\x73\x3c\x3d\x8c\xcf\xb1\x9d\xe4\xc5\xd4\xf3\xf2\x1b\x0c\xd9\x3a\xc5\x72\x13\x7e\x5f\x6e\x0e\x18\xc5\xf5\x42\xd1\x8f\xca\xf8\x6c\xb9\x18\xb8\xe0\xb8\xe4\xc2\x52\x8f\xbd\xb0\xaa\xd7\xaa\x13\x4b\x85\xa6\xc6\x5d\x98\xd7\xa1\xf7\x6c\xa4\x99\x3d\xe3\xe8\x2d\xcc\xd1\x5b\x38\x5b\x27\xea\x6c\x3f\x4b\x32\x36\xa6\x82\x4d\x5c\x24\x2a\x32\x55\x67\xf9\x4c\xb0\x24\x63\x6a\xb8\x27\x83\xc9\x34\x29\x35\x01\xb5\x4a\x60\x00\xc3\xcb\xe3\x58\x17\xf3\x60\x71\xae\x10\xf3\x24\x11\x2c\x1f\xee\xb5\x64\xa3\xce\xf5\xd7\x24\x75\x0e\x82\xce\x32\x01\xc3\x93\x42\xfd\xf7\x17\x74\x0f\xa5\x14\x8c\x25\xd6\xc7\x06\x90\x8b\xb1\x11\x53\x9b\x19\x4a\x2a\x08\xb5\x8e\x69\x08\x40\x97\x11\xf4\xe0\x85\x56\x0c\xef\x2f\x98\x2e\x74\xf8\x60\x81\xcf\x93\x85\x57\xe0\x29\xd1\x35\xde\x1f\x24\xe5\x90\x3d\x20\x8b\x3a\xe0\x96\xe6\xe0\xad\x6f\x5c\x11\xc7\x19\x83\x0e\x60\xb9\x67\x75\x77\x6d\x47\xa1\x8a\xc1\x1f\x17\x71\xdc\xd7\x3f\xbe\x6d\xd7\x91\xc0\x58\xeb\xae\xb9\xbe\xdb\x68\x85\xc6\x2b\x13\x74\xe6\xe6\xaa\x72\x9a\x01\x4e\x9c\xa0\x56\x5f\x3d\x4d\x69\xed\x29\x3c\xdd\x53\xeb\x41\x3c\xf5\x0d\x4d\x9e\xd6\x88\x27\x46\xed\x0e\x4a\xa2\x00\x17\x82\xdd\x1e\x28\x6f\xb9\xa3\x1b\xfc\x1a\x88\xe1\x44\x42\x5a\x1b\xe2\x53\x00\xfd\x6a\x22\x4d\xa8\x05\xbb\xf5\x43\x1a\x36\x50\x70\x1b\xe0\x07\x58\xd9\xdb\x23\xd0\x05\xa4\xd7\xac\xbe\x2b\x86\x96\x6e\xc6\x53\xd5\x88\x07\x36\x57\x0b\xcf\x92\xe8\x1d\xb4\x02\xda\xe2\x61\x6e\x21\x26\x8a\x3e\xff\x7f\x36\x11\xeb\xc3\x2f\xef\xf9\x67\xe3\x0d\xd2\xfa\xe4\x80\x54\x1a\x60\x3f\xbe\x57\x6b\x10\x49\x78\x9b\x7e\xd6\x02\xb9\xa7\x66\xa1\x61\x97\x5f\xed\x81\x13\x29\x1b\xb1\x02\x5f\xab\x9a\x7c\x18\x9d\xd3\x2e\xbd\xe4\xbf\x58\x65\x59\xe2\x2e\xef\xed\x0f\x73\x7d\x5f\x55\xee\xcb\x85\x58\xdd\x10\x2f\xc6\xbc\x17\x89\xb0\xbb\xf4\x5f\xff\xd9\xd2\x03\xdc\x9e\x4f\x2a\x80\xdb\x54\xa3\xeb\x6c\x75\xc9\x55\x8d\x6f\x8e\xd1\x48\xdc\xfb\x1a\x9b\x2b\x23\x7e\xfa\x79\xb6\x18\xa5\x17\xe2\x8a\x5b\xcd\xc5\x4f\x32\xf8\x48\x7a\x80\x3e\x30\x60\x82\x5a\x3c\x82\x01\x13\x20\x77\xeb\x81\x8d\xbc\xe8\x69\x45\x0f\xe1\x3a\xa2\x5c\x2c\xd3\x3c\xb2\xc1\x97\x3f\x65\x09\xde\xfb\x99\xf7\x8c\xc9\x59\x3a\x60\x7b\xdf\xa5\x77\x9a\x0e\x1b\x90\x27\x46\xbd\x1f\xe9\x11\x8b\xc0\x2e\x3b\xc2\x31\x84\x1a\xcd\x25\x1e\xef\x30\x94\x38\x66\x90\x99\x0e\x00\x6a\x7d\x37\x48\xbc\x82\x66\xe3\xa9\x9e\x25\xd2\xb3\x48\xc7\xe0\x49\xd4\x48\xf1\x1a\x52\xa0\x07\xf9\x80\xed\x69\x81\xee\xac\x03\xb6\x77\xb1\x66\x70\x88\x52\x6f\x88\x52\xea\x05\xca\x79\xe9\x43\xe6\x80\xf7\x15\x73\x8a\x1b\xe3\x7e\x2e\x99\x71\xea\x05\x83\x5a\x34\x95\xb5\x9d\x2f\x88\x1c\x32\xdd\x0a\x9a\x0d\xd9\x43\x1f\x99\xc0\x0d\x69\x51\x55\xfd\xa2\x1d\xec\x0e\x61\x6f\x8f\x3a\x6e\x0d\x98\x30\x95\x0e\x10\xbe\xd3\x44\x8a\xfb\x3d\xe3\xea\x7b\xba\xcb\x61\x5a\x7b\x26\x67\x43\x70\xee\xf2\xc8\xd5\xfb\x00\xac\xc4\xfa\x67\xc1\x9a\x69\x46\x6a\x24\x14\x16\xb8\xa4\x5b\xfc\x03\x41\x16\xb3\x30\x0a\xce\x63\xaf\x38\x2a\xc8\x6d\x8d\x63\x98\x28\xea\x2e\x7a\x01\x21\x25\xa3\x8a\xa6\x8d\x40\x8e\x54\xd4\x90\xe9\x33\x9c\x79\x66\x3c\x95\xad\xc7\xb2\x59\x10\xb6\x2d\x65\x50\x7d\xe9\xc3\xd1\xec\x91\xff\x2d\x10\x65\xf6\x0f\xf7\x9d\xe2\x9e\xb1\x1f\x44\x52\x90\x38\x56\x71\x6c\xbe\x9e\xed\xe7\x4a\x1f\x8e\x08\x48\x9b\x70\xc6\xd3\x44\x97\x30\x1c\xaa\x05\x19\x26\xae\x8c\xd9\x78\x3a\x21\x54\x6a\x72\x36\xe5\x0c\x52\xe9\x72\xce\xf6\x9e\x1b\xba\x57\xe4\xc0\x16\xa9\x8f\x22\xa8\x95\xed\xe7\x83\x81\x2e\xd3\x15\xa9\x4b\xd3\x65\xc6\x31\x28\x7b\x95\x88\x63\x7e\x5e\x00\xcb\x37\x4b\x13\x3e\x9c\x90\x69\x0a\x2e\xa4\x07\xc9\x0c\x94\x7b\x18\x3f\x13\x22\x38\x00\xf8\x8f\x74\xbb\x06\x23\x68\xe6\x80\x19\x0f\xfa\xac\xbd\x5d\xda\x69\x62\x42\xb0\x2f\x59\x99\xe4\x34\x4d\x31\xb6\x83\x1f\x11\xab\xcf\x7e\x11\x71\x9c\x2c\x11\x3a\x1a\x92\xfd\x22\x08\xa1\x4b\x2f\x02\x63\x80\x35\x34\xee\x29\x88\x4a\x85\xed\xf2\xdd\xda\x1b\xc7\x43\xc1\x02\xd4\x80\x6f\x20\x80\xc2\xf1\xc0\xa0\x9f\x74\x2f\x06\x01\x55\x0a\xd6\xb6\x85\x6f\x40\xd8\x86\xcc\x79\xae\x0f\xa4\x39\xdb\xfd\xa0\x74\xaa\x19\x21\xc8\x86\xf8\xb7\x30\x60\xa3\xcf\x6f\x79\xce\x24\xe0\xb8\x65\x23\xb1\x57\x65\xb6\x42\xc8\xa3\xcc\x8b\x55\xd7\x05\xfb\x87\x61\x27\x06\x9d\xe4\x92\x9c\x39\x16\xfd\x8d\x4a\xa4\xc5\xfc\xa7\xfd\x31\xb5\x68\x40\x19\x7b\x98\x25\x92\x16\x78\x61\x80\x78\x99\xd2\x06\x3b\xcb\xd6\x49\x76\x2e\xda\x45\xb8\x14\x14\xc1\xf2\xc2\x50\xec\xfd\x31\x9d\x90\x5e\x8d\x99\xed\xe1\xea\x40\xf2\x8c\x9c\x9e\xda\xdd\xf8\x77\xdd\xa5\x14\xf6\x63\x41\xe8\x9e\x3d\x91\x49\xfa\xff\xd0\xf6\xe6\x4b\x6e\xdc\x48\xbf\xe8\xff\x7c\x8a\x66\x85\xbf\x3a\x05\x13\xa4\x48\xcd\xf8\x9c\xef\xab\x6e\x34\x43\xd6\x62\x79\xac\xcd\x6e\x79\xd1\x50\x1c\x45\x35\x09\x36\x6b\x54\x04\x68\x14\xd8\x8b\x9b\x7c\x84\x1b\x71\x1e\xe1\xc6\x8d\xfb\x24\xf7\x51\xce\x93\xdc\x40\x26\x80\x42\x2d\x6c\x79\xe6\xc4\xd1\x1f\x6a\x16\xf6\x35\x91\x48\x64\xfe\xd2\xac\x9d\x5d\x1c\x5b\x5f\x0d\x63\xe7\x1f\xb3\xbf\xdb\xef\xfb\x49\x39\x5a\xac\xcf\x51\xf8\x3b\x5a\xac\xf7\xfb\x12\x78\x77\x1f\x10\xc7\x25\x0c\x65\xe0\x07\xa2\xec\xe5\xec\x6d\x9e\x64\xac\x18\x69\xe9\xdc\x40\xfb\x31\xfd\xa7\x6e\x0b\xeb\xf3\x21\x9c\x51\x4e\x62\xff\xf8\xeb\x6a\x6c\x3b\x4c\x4e\xe9\x8e\x59\xf4\xab\x10\x3b\xbc\x6e\x76\xbb\xb5\xcf\x43\x78\x46\x52\x4d\x77\x15\xad\x61\xfd\x31\x95\xe7\x0e\x88\xc2\x02\x3c\x0c\xcb\x54\x9e\x81\x49\xac\x0d\x18\x94\x69\x92\x21\x00\x00\xd8\xb3\x1e\x70\x1b\xbd\x86\x86\xae\x1c\x60\x91\x73\x86\xcf\x74\x66\xc2\xb7\x4c\xc0\xdf\x25\x2b\x92\x35\xa1\x1b\x96\xd1\x3b\x56\x24\x5b\x42\xaf\x19\xe8\xef\xa9\xf3\xbb\x60\x76\x05\xdd\xd2\x6b\x33\x77\xc0\x6d\x9f\xc2\xe9\xb4\x98\x6e\x19\x5b\xef\xf7\x5b\xc6\x76\x86\x8e\xae\xe9\x84\xa4\xdb\xe1\xfa\x8c\x4d\xaa\x4b\xce\x15\x53\x67\xcb\xfd\x5e\x0d\x97\x67\xec\x6e\xa8\xa6\xeb\x74\x4b\x2f\x99\x1a\x26\x57\x8c\xad\xa7\xcb\xf4\x8e\x9c\x02\x74\x4f\x88\xda\x73\x85\x40\x3d\x5e\x54\x0d\xf5\x5f\x51\xc8\xb1\x49\xaf\xe9\xe5\xd9\x70\x32\x1d\x4e\xd2\xcb\xf3\x09\x38\xcc\x84\x0e\x5b\x11\xed\x82\xe7\x45\xb2\x7a\xf4\x98\xd0\x1b\xb6\x1e\x7c\xb2\xcf\x11\x37\x6c\xed\x97\xda\x73\x36\x3e\x7d\x7e\xf6\xe9\x74\x30\x78\x4e\x6e\xb0\xe5\x37\x74\x82\x85\xdc\xb2\x22\xb9\x21\xbd\xdb\x73\x35\x4d\xb6\xec\x86\xde\xb1\x5b\x9a\x5c\xb3\xcc\x5c\x6a\xee\x06\x6c\xc2\xff\x62\x46\xf4\x13\x49\x93\x35\xbb\xa1\x4b\x76\x0b\x03\xb7\x1a\xb2\x4f\xe1\xc2\xf9\x5e\xd7\xb0\x6c\x78\x8b\x8d\x6d\x82\x1d\x56\x31\xee\xb5\x86\xb1\x4b\x4d\xee\x2f\xd1\x69\xf4\x56\xf1\xa8\xc9\x82\xff\xf5\xbf\x4e\x07\x03\x4d\x2e\x75\x0d\x51\xb9\x01\x8b\x6f\xca\x7d\x23\x97\x3c\x41\xb0\x9c\x46\x62\x53\xf4\x25\xe0\xff\xff\x2b\xa5\x1c\x6a\x50\x8c\x97\xda\xbd\xa4\x5e\xea\x1a\xe4\xe3\xa3\x6f\xc6\x9e\x76\x03\xd0\x78\xbb\xaf\xe6\x92\xf8\x53\x50\x18\xe0\xa8\x07\xfe\x9c\x9f\x75\x0f\xa3\xbf\x27\x34\x47\xd1\x47\x58\x9d\x8a\x10\x2b\xc8\xff\x8b\x08\x15\x7e\x50\xa9\xb9\x9d\xf4\x6a\x1d\x12\xc4\xf3\x58\xc7\x0c\xdd\x73\xe6\x20\x1d\x1d\x48\xd0\xa3\x89\xef\x6c\x7e\xfe\x38\xe8\x6c\x75\xa7\xc9\xe1\x44\x9c\x8c\x61\x99\xbd\xd2\xf4\x85\xa6\x7f\x58\x07\xc9\x2f\x35\x1b\x57\xf4\xe1\x5b\x7b\x51\x83\x77\x61\x76\xbf\xd8\xa4\x1c\xb0\xe0\x9c\x88\xd3\xd0\x1d\x73\xdf\xc4\x31\x4c\xf1\xcd\x10\x8f\x15\x1a\x60\xe2\x99\x74\x81\x73\x2a\x84\x90\xd3\x77\xe6\xc0\x33\x51\x88\xaf\xf7\xf6\xf2\x9f\x25\xc6\xd4\x9d\x51\xbd\x04\xf1\xb6\xea\x8c\x7b\x9a\x81\x4c\x7f\xdc\xd6\x53\xf0\x35\xbe\xc6\x3b\x16\x34\xd5\x5f\x76\xac\x0f\x61\x77\x3d\xa9\x7f\xbe\x93\xb6\x2e\x54\x64\x31\xb4\x6c\x99\x0e\x06\x2f\xf5\x81\xfe\xa1\xa7\x7f\xe8\x91\xdc\x96\xce\x11\x3e\x0c\x0c\x49\x1d\x0e\xa0\xbc\x11\xe5\x77\x4a\xee\xb6\xec\x0f\xcd\xee\xe5\xb6\x4c\x67\x36\x6a\x4e\x97\xbc\xc8\xee\xf8\xd2\x34\xf9\x32\x5b\x7c\x2e\xd3\xd9\x3c\xd8\xa6\x3f\xd7\x30\xac\x1b\xa5\x81\xb0\x05\x6c\x9e\x93\xb6\x45\x00\x1f\x35\x4b\xa6\x86\xdb\x58\x4a\x84\x36\x6b\xfa\x6e\x9b\x89\xf9\x68\x91\x15\x45\x52\x87\x5b\x76\x50\x93\xd2\xab\xfb\xd5\xfc\xbb\x9a\xf0\x99\x9a\xe3\x9b\x7b\xf7\xfc\xa0\xec\xa3\x19\x8b\x33\x74\x76\x2c\x93\xab\x8b\x1c\x4b\x30\xeb\x2e\x70\x30\x08\x7a\x41\x73\xf0\x9d\x76\xb8\x59\xe7\x05\x4f\xaa\x0e\x93\x03\x49\x34\x39\xac\x72\x91\x15\xc5\xdd\xbd\x5d\xe2\x2d\xcf\x76\x41\x97\x61\x84\xa0\xaf\x66\x94\xac\xae\x0e\xe4\x3a\xad\x8d\x7c\x45\xfe\x60\x64\x68\x87\x93\xbc\xdf\x75\x62\xc6\xba\x25\xdc\x0c\xd3\x28\x66\x92\x50\x65\x3d\xb7\x2d\x9f\x59\x97\x27\x6a\xb4\xd9\x95\x1a\xf7\x4e\x1c\x7f\x95\x28\xb0\xf6\xb0\xa9\x2c\x4d\x78\xa8\xdc\x5f\xff\x44\xdd\xbf\xfc\x89\x34\x1f\x6c\x1a\x1c\xc7\xc0\x8f\x67\x7d\xb1\xd6\x34\x3e\x4e\xbb\x97\xa8\x85\xa8\xe8\xeb\xc0\x2e\xe9\x69\x91\x6f\xb7\x7c\x19\xc7\xba\x32\x49\x42\xb2\x0d\x64\x0a\x34\x52\xea\x58\xb3\xac\x3b\xe5\x50\x77\x82\xcc\x52\x6d\x69\xd1\x0b\x43\x8a\x54\xdd\x11\x0c\x20\xc6\x5a\x28\x0b\x7b\xdf\xc4\xf8\x4d\xa6\xae\x72\xf1\x2d\x62\x48\x0d\x9b\x2d\xe8\xca\x81\x26\x85\x80\xbe\x8b\xad\xac\x97\xdd\xec\x2f\xaa\xd3\x18\x7e\x87\x8f\x6a\x34\x2a\x8e\xbf\xc7\xd0\x6a\xf6\x19\x1f\x05\xf4\x16\xb5\x9c\x3c\x59\x45\xc0\x3b\x78\x78\x73\x94\x0c\x0c\xcf\x2b\x3a\x06\xd4\x3f\xf8\x46\xf6\xb3\xa5\x64\x53\x4f\x63\xb9\xcf\x73\xaf\xa3\x42\xf6\x7b\xd1\x90\x55\x99\x39\xeb\xc4\xc1\x74\x5d\x62\xbc\xb6\x86\x05\xbf\x39\xf9\x01\x34\x97\xc2\xd0\x7b\x73\x25\x09\x5a\x6f\x5f\x6a\xd3\x5a\x7b\x0e\xb4\xd6\xe9\xd0\xf1\xeb\x03\xcb\xb0\xc7\x1b\x9b\x2a\x8e\xff\x86\x83\x7b\x99\x29\x27\x67\x7c\x65\x42\xda\x5d\xeb\x77\xf7\x0d\x06\x33\x5b\xfe\x73\x57\xe2\x34\xbf\x97\x6c\xa3\x13\x5d\x15\x50\xfd\xaa\x69\x27\x20\x5f\xfc\x17\xaa\xeb\xe2\x0d\x27\x5e\xac\x95\x58\x6b\x9f\x1d\x05\x4c\xe8\x6d\x4a\x44\xf7\x5a\x17\x2d\x5f\x41\x83\x46\xd9\x83\x95\x4e\x34\x19\xe8\x16\xe6\x32\x2c\xb9\xec\xf6\xc2\x1f\x8f\x21\x8e\xcd\x97\xcb\x1d\xae\x4d\xb9\x84\xd0\xa4\x39\xe6\xb0\xb2\x1a\x27\x33\x41\xb5\x44\xb4\x6c\x58\x06\xf6\xdd\xc7\xbc\x9d\x59\x05\xb7\xd0\xe1\xc3\x2f\x8d\x89\xef\xb9\x7d\x50\x6b\x17\xd0\x8f\xba\x44\xc9\xee\xf0\x5c\x74\x0e\x3e\xee\xd8\xc6\x58\x9c\x59\xed\x29\x1f\x10\xc7\x77\x22\x09\xbd\x79\xb7\xa1\xa9\xab\xc4\xcd\xd2\x40\x31\x21\x58\x09\x4d\x09\xf0\x24\x70\xe8\x6d\x7a\x1d\xc7\xce\x96\x83\xfd\x53\x82\x3d\x7d\xdf\x33\xc4\xeb\xac\x7c\x81\x76\x18\xad\xa0\x84\x90\x5e\xc7\x20\x9b\x5d\xfb\xb0\xe7\xb9\x56\x16\x73\xdd\xed\x9e\xd7\x8a\xef\xeb\x5b\x0d\x33\xa4\xac\x24\x8e\xbf\x85\x9d\x5e\x2d\xe4\x8a\xd2\x55\xbb\xf1\xef\x1d\x69\x9a\x6b\x25\x8e\x73\x0d\xba\x43\x6d\xec\x92\x80\x9d\x6c\xf7\x0a\xcd\x31\xc1\x4a\x10\x14\x26\x44\x1c\x5f\xf1\xa6\x87\xd5\x0f\x0f\x50\x0f\xa7\xb6\x88\x4f\xd4\xcd\xa6\xff\x08\x4d\xb7\xa7\xb1\xf5\x36\x24\x46\x37\x6b\xce\x0b\x78\x7d\xf9\xcd\x21\x91\x06\xa4\xad\xb2\x0b\x08\x57\x52\xbf\x46\xe9\xc0\x36\x2a\x28\xa6\x56\xe8\x07\x8b\x80\xd0\x2a\xd9\x10\xe7\x0e\x8b\xde\x7a\xe5\x7d\x4b\x43\x2f\xac\xdf\xd9\x24\x4c\xda\x85\x5a\xd5\x2a\xd3\x22\x60\xb5\xa8\x0f\x86\xd3\xa0\x36\x02\x46\xeb\x5f\xb0\x3e\x36\xe9\x68\x67\xc3\xeb\x29\x5a\x83\xd6\xd1\x5d\x20\x59\xed\x91\xed\xee\xf0\x51\x9c\xae\x56\xb1\xc8\x5a\x1c\x21\xb7\x61\x6d\x47\x3b\x6c\x22\x6b\x15\x77\x74\xf9\x15\xfa\xb4\x0b\x48\xc6\xaf\x00\x0e\x5e\x5b\x19\x8e\x0f\x6f\x63\x24\x7b\x5f\x57\x89\x0a\x45\x58\xf8\x8a\xf2\x0d\x78\x70\xb7\xd2\xa2\xfe\x84\x66\xd6\x45\x21\x28\xb3\xc6\xb1\xe8\x33\x3d\x45\xb8\x35\x92\x66\x74\xc7\x7e\x37\x05\x07\x5e\xc8\x40\x88\x8c\xb2\xe4\x86\x77\xb2\x2d\x85\x47\x09\x32\x0c\x8c\x1d\x3b\xd3\x43\xb8\x75\xbe\xe4\x10\x32\xc9\x00\xe4\xae\x3c\x20\xac\xe6\xf0\x5f\xd4\x42\xcc\x50\x54\xea\xa2\xbb\x70\x31\x27\x1b\xd3\xce\x5d\xb8\x4e\x3c\x60\x6e\xa3\xd0\x61\x41\xce\x27\xe0\xcc\x0b\x1d\x30\xd7\x0a\xc3\x95\x92\xdc\x85\xa5\xbd\xaa\xda\xde\x2c\xce\x44\x0d\x17\xb5\xf2\xfa\x12\x55\x05\xdd\x83\x4a\x76\x48\x34\x7d\x65\xfd\xe0\x37\xd8\x2e\xd2\x15\xa1\x65\x63\xa6\x2d\xfb\x69\xc8\x77\x18\x9a\x97\x88\xdb\x02\xbc\x72\x9d\x16\xb6\x50\x91\x39\x78\x13\xc7\xdc\x98\xeb\x7b\xa1\xe5\x2f\x39\xbf\xa9\x54\x49\xaf\xeb\x08\xfb\xf0\x04\xf0\xe0\xa3\x0b\xcd\xf1\xf2\x04\x8f\x3c\x03\xf0\x95\x78\x36\x9e\xe6\xac\x3f\xf6\xd8\xbf\x18\x7a\x6e\x41\x1d\xd0\xf9\x0a\x52\x87\xe0\x84\x6a\x3c\x19\xd6\x88\x08\xaa\x02\xf4\x27\x81\x9a\x70\x1e\xc7\xfd\xad\x5b\xc1\x95\x63\x49\x00\x62\x40\x8b\xed\x2e\x70\x12\x87\x40\x02\x8d\x1d\x8a\x40\xd2\x3c\xac\x09\xca\xdb\x9e\x08\x75\x85\xb3\x6b\xfa\x89\x8c\xbc\xa8\xdc\x49\x34\x20\x4c\xb4\xf7\x42\xe9\x11\x51\x1e\x6f\x6f\x4f\x23\x33\x7d\xed\xa7\xa8\xba\xbb\x31\x2a\xed\x0c\xbb\xd9\x49\xf2\xe6\xf3\x6f\xdb\x84\x5a\x92\x83\x59\x62\xd6\x51\xb0\x04\xbc\x9f\xbb\x4b\xfe\x12\xa0\x4a\x5e\x83\xda\x73\x49\x33\x17\xfc\xb3\x58\x87\x11\x68\x07\x18\xc0\x2a\x9d\x96\x67\xb2\x7a\x60\x2d\x89\x9c\x95\xa8\x62\x5e\x79\x59\xfa\x31\x4f\x4c\x28\x8d\xd6\xf9\x92\xa3\x46\x75\x06\x45\xd4\x71\xe5\x21\x7b\xd6\xcc\x0e\xde\xda\x01\x64\x3e\xda\x09\x5b\x80\xf0\xb2\xe9\x50\x42\x07\x6e\x61\xaa\x33\xe0\x28\x4f\x05\x9b\x9d\x8f\x2a\x89\x11\x54\xa1\x69\x64\x7d\x34\x44\x54\xd7\xa2\x2b\xce\xa3\x62\x1a\x46\xab\x5c\xe4\xe5\x3a\x09\x7d\xf1\x57\x4e\x2c\x9c\x4c\xc7\xbd\x72\x26\xa4\x07\x52\x30\x30\x47\xac\x02\xbd\x54\x01\x04\x37\xc1\xdd\xf8\x07\x5b\x54\xd3\xc9\x64\x67\xe1\xa8\xeb\x99\x70\x9a\xa9\x2b\xd8\x16\x65\x57\x6d\x1d\xa9\x9a\xd5\x07\xce\xda\x43\xb7\x29\xf5\xda\x51\xcf\x31\x6c\x00\xb7\x45\x03\xaa\x44\xbd\x0d\xa0\xaa\x17\x36\xe3\x48\xda\xb0\x25\x90\x27\x6c\xcc\x8f\x47\x1a\x53\xc3\xaf\x44\x87\x09\xfb\xbd\xfe\xf3\x6d\xfb\x97\x1b\x56\x6b\xd5\x6f\xfe\x7d\x0a\xad\x84\x72\xc1\x99\x76\xa6\x97\xa5\x66\x2d\x01\x06\x45\xdd\xfb\x53\xcd\x9e\xa9\x84\x93\x53\xc2\xc1\x7d\x9c\x58\x26\x13\xc3\xcf\xa3\x2d\x7e\x82\xa0\x67\xb3\x39\x21\x56\x3a\x58\x3d\x18\x1e\x80\x8b\x05\xe3\xa1\xfc\x0f\x8b\x5b\x67\xaa\x9a\xbe\xcd\x93\x8d\x35\x9f\x43\xd5\x9a\xa1\x18\x4c\xd2\x09\xa6\x15\x72\xc9\x2b\x64\x3b\x94\xcf\xa2\x2e\x18\xec\x6a\xf6\xad\x82\xa5\x16\xf8\xea\xee\x52\xeb\x62\xb3\x39\x95\x4c\x9f\xca\x33\x71\x2a\x9d\x0e\x42\x56\xf7\x2f\xe2\xdf\x15\x0d\x59\x22\x3d\xc5\xe4\x20\x43\x67\x74\xd6\xf1\x59\x16\x78\xa3\xf2\xd5\xfd\x4d\x37\xf9\x10\xf0\xb1\x67\x8f\x71\xeb\x5e\xcf\x3b\xfe\x4c\x44\x18\x31\xb0\x27\x6b\xfe\x07\x77\xee\x52\xc6\xee\xa5\xaf\xe6\x1e\x4c\xc5\xb1\xf0\x6e\xa6\xbc\xf7\xf9\xdc\xee\xe5\x57\xa8\x24\x73\xc9\x55\xb9\xdf\x77\x04\x5a\xfd\xb2\x76\x04\xd3\x95\xf7\x96\x40\xc2\x02\x4a\xd4\xce\xc9\xd5\x7b\x49\x6e\xe3\xf8\x0f\xe5\x1f\x6d\x83\x76\x68\xb3\x3a\xbc\x3e\x83\x38\x0b\xfc\x62\x99\x4c\x2f\x5d\x26\x31\x50\xe4\xbc\x8a\x9b\x42\xbe\x34\xa9\x42\x06\x4c\x51\x57\xec\x80\xa9\xaa\x4c\x7d\x56\xf3\xb5\x25\x82\x56\xd5\x2b\xaf\x25\x24\xf7\x89\x64\xca\x30\x03\xc2\xd4\x4d\x27\x84\x4c\x6d\x6d\x36\x95\x55\xc7\x97\x88\x57\x41\x68\x95\x97\xa1\xe0\xe7\x4d\xad\x3d\x29\x54\xe6\x0d\x43\xc2\x66\xe0\xb1\x7c\xea\x2a\xd4\x54\xd3\xe1\xd1\xfa\xc6\xb4\x51\xe3\x7b\xe9\xea\x0b\xeb\xb0\xab\x33\x2c\x90\x96\xf5\x0e\xf5\xb2\x38\x2e\x8f\x55\x92\xd9\x4a\x46\x0b\x29\x16\x99\x4e\x60\x4b\x64\xb6\x5f\xa5\xad\xcf\xc7\xd6\x32\x97\x36\x2b\xe9\xea\x3f\xaa\x0c\xe4\x6d\x57\x44\x3b\xb3\x26\xcf\x76\x58\xf2\xd4\xfe\x1d\x30\x95\x6a\x17\x38\xd8\xc1\x32\x87\x75\xd8\x76\xf3\x03\x68\xac\x81\x83\x78\xef\x6e\xa6\x7b\x75\xf6\xae\xbb\xdc\x50\x1f\xf3\x93\x94\xaf\x92\x1c\x7c\x24\xe5\x95\x8f\x24\xfb\x73\x90\xbb\x56\xa9\x23\xad\xa2\xfd\x44\x9f\xa9\x40\x4c\xa8\xcf\x99\xaa\xbb\xc5\x94\x36\xa0\x72\xdd\xe4\x39\x37\x34\xad\xaf\x1c\x51\xda\x03\x7a\xbf\x4f\xfc\x6f\x43\x2b\x4f\x87\x13\xc6\xae\x65\x92\x51\x41\xe2\x38\xb3\x1e\x64\x6a\xe4\x5a\x8b\xba\xb6\xa0\x5f\xae\x4d\xb7\x52\x21\x7d\x69\x78\xd1\x34\x44\xb0\x4b\xf3\x80\x05\xbe\xa1\x84\x38\xee\xc9\xaa\xf2\x59\xe5\xbc\x2d\x26\xba\xa9\xfa\x05\xdb\xaf\xd2\x64\x68\xbc\x35\xd4\xd3\x52\x7c\x6f\x11\x0d\xaf\x5e\xa6\x50\x31\x53\x73\xa4\x8b\x55\x59\x81\x5b\x36\xd5\x72\x90\x23\x99\x6d\x39\xcd\x1a\xb5\xc0\xc9\x7a\xbb\xdf\x0b\x76\x8c\xf4\x5a\x4d\x11\x84\xdb\x93\x14\x56\x46\x2a\x2a\x2f\x67\x88\xbd\xd9\xee\xa7\xe1\x1c\xc1\x93\xd0\x6e\x00\x5e\x84\xa0\x34\x30\x78\xec\x33\x1c\x42\x75\x3e\x86\xbf\x12\x7d\x58\x5b\xe3\xc7\xda\x20\xb2\xdd\x20\x9b\x49\xcc\x3b\xd4\x54\x0e\x06\xce\x9b\xcc\x6e\xa8\x7b\x7a\xc0\x72\x2a\x06\x2c\x47\x23\x32\x4f\x86\x05\x01\x4b\x32\x5b\x76\xa2\xce\xc6\xd3\x71\x1a\x54\x51\xab\x43\x0c\x98\xfa\x3a\x9b\xc9\x21\xa4\x9b\xa4\x63\x82\xd5\x51\xb3\xb7\x0f\x47\x7a\x1f\x38\xb1\x6d\xbd\xf6\xd4\x26\x51\xb0\xb1\x9d\x48\xdd\xf1\x68\xa6\xe1\xc1\xcc\x1e\xd6\xe6\x74\x32\x1b\x02\x7c\x8c\xf8\xbd\x30\x18\x08\xaf\x8b\x17\xf8\xb3\xed\x7c\x3a\xd1\x60\x1c\xfa\xab\xca\xb6\xf6\xc5\x9a\x75\x83\x94\x9b\x2b\xa2\x4b\x89\x62\xce\x56\x42\x08\xae\x5c\x60\x04\x2f\xc3\xba\xfd\x30\xae\x3b\xb5\x5b\x3b\xdf\x35\x10\x25\x42\x5f\xe4\x7f\xf0\x24\x24\x6a\x16\x7d\xff\xbe\xda\x0d\xbf\xe6\x89\x26\xa7\xa2\xcf\xbc\x3f\x84\x53\xc1\x44\xe0\x6c\x05\x2c\x0c\xc4\x7e\x0f\x38\x9a\xce\x10\x31\x8e\x23\xad\x76\xa0\x5a\xd8\x36\xfa\xcc\xaf\x84\x54\x7c\x08\x06\x40\x65\x04\x6f\x16\x55\x71\x20\x1e\x32\xf7\x5b\x90\x7a\x58\x7f\x91\xde\x54\x21\x70\x41\xd9\xdc\x5d\x0d\x5f\xa5\xa2\x6a\x02\x74\xa1\xdd\x0c\x21\xf5\xd0\x1a\xd6\x44\xf5\xb5\x78\x6d\xfd\xd8\x97\x96\x1a\x3f\xac\x9f\x68\x18\x5c\xc9\xb4\x87\xc8\xb4\x2a\x7d\x99\x0f\xfa\x30\x04\x11\x8c\x05\x3e\xa9\x6e\x1c\xa0\x2a\x0c\xc7\x15\x2d\x18\xa8\x62\x49\x9a\x11\xcb\x4a\x4d\x18\x2b\x40\xf1\x28\x8e\x93\x5d\xa5\x4e\x56\x58\x08\x2b\xc3\x67\x3a\x13\x3c\x93\x72\xb1\xb6\xee\xe2\xc1\x93\x29\x75\x1a\x7c\x1d\x8e\x4c\x87\x2e\xae\x57\x80\x59\x1f\xf2\xc4\x4d\x39\x1b\x80\x78\x26\x89\x1c\x2e\xc2\x6b\xb8\xd5\x5b\xa8\xa9\xbd\x91\xe1\xa2\xc2\xc2\x0f\x54\x9f\x8b\x2e\x2c\xbc\x70\x86\x12\x2e\x13\x0d\x90\x61\xc2\x42\x97\x01\xf0\x43\x1c\xbb\x07\x86\x1a\x1e\x44\x42\x08\x41\x64\xbc\x75\x0e\xe0\xf5\xf0\xf7\x07\x7e\x47\x4b\x44\x84\x25\x28\x95\xf5\xd7\xd0\xa5\xca\xae\xae\xc0\x72\xab\x3f\x39\x0a\x5d\xd5\x95\x7a\x7c\xa0\x93\xf1\x98\x54\x6c\x5b\x7f\x25\xa0\xa1\x4e\x4b\x6e\x87\x9f\xbd\xf2\x26\x37\x13\x6a\xa5\x28\x0e\x31\xf4\x97\x3c\x31\x49\x17\x59\xc9\x4f\x26\xa9\x13\x02\x59\x81\xb9\xb8\x32\xfb\x75\xda\x19\x6a\xd8\x4d\x35\xad\x0b\x0e\xc9\xbd\x9c\x06\x6d\x7f\x2e\x93\x2b\x4e\xc1\x8a\x2d\xad\x3c\x1a\x2e\x76\x25\xbc\x39\xf4\xdc\x3d\xc2\xbb\x14\xee\xbd\xd0\x71\xfc\x42\x8f\x74\xbe\xe1\xe7\xf9\xf0\xaf\xe3\x31\x58\x55\x2c\x79\xf2\x42\x8f\xb6\xb2\xa4\x82\x4c\x15\x8b\xb4\xca\xb7\x05\x8f\xd2\x57\x3a\x8e\x5f\x75\xa5\x7e\xe5\x53\x27\x8a\x45\x4b\xb9\xbb\x2c\x78\x44\x5f\x68\x76\x6f\xd2\xa6\x39\xdd\xca\x32\x15\x07\x92\x9a\x68\x74\xfe\x13\xd1\x57\xad\xe8\x9e\x5b\xec\xbc\x42\x33\x65\x77\x53\x3d\xda\x70\x9d\xfd\xc0\xef\x52\x3d\x5a\x68\x55\xfc\xc0\xef\x02\xa5\x4b\x33\x33\xcf\x94\xdc\xc6\xf1\xef\x12\xa4\xc5\x75\x14\x2f\x57\x1d\x8a\x56\x77\x2c\xc0\xf0\x15\x84\x00\x7c\x5b\xb2\xe4\x09\xc4\x58\x63\xa4\xdd\x9c\x38\x4c\x03\x41\xce\xc6\x66\xfd\x59\x0d\x3f\x4c\xbb\x03\x73\x24\x2a\xc8\xb9\x8f\x3b\x1b\x93\x69\x5b\xa4\xdb\xa0\x3b\x74\x57\x8d\x3c\x2d\xd8\x0f\x35\xb8\xea\x05\xb9\x2f\xd1\x77\x4c\xd7\x02\x05\xd9\x22\x2c\x09\x08\xb5\x2b\xc2\xac\xdc\xaf\x72\xaf\x58\x15\xa0\xaf\x16\xc4\x44\xe4\x81\xb3\x96\xa5\x92\x18\xee\x25\xa2\x15\x45\x5a\xb8\x5f\x64\xd0\x8a\xfd\xe0\x63\x3f\x90\xb3\xc9\x38\x8e\x93\x97\x79\xb2\x20\xb4\xaf\xe2\xd8\xf7\x66\xf8\x78\x3c\x3e\xdb\xc5\xf1\xb7\xdc\x1f\xed\xb4\x04\xac\xd1\xff\x62\x2c\x9b\x76\xef\xae\x9a\x89\x81\xdf\x1e\x79\x1d\x60\x17\xc0\x85\xd2\x46\x20\x39\x90\xde\xf1\xc1\x02\x4f\x53\x1d\x83\x55\xd0\x46\x7a\x5c\x35\x1d\x81\x09\xe9\x7d\x38\x36\xac\x1f\xba\x87\xd5\xf9\xa5\x5a\x90\xf4\x38\x26\x43\xb5\x12\x32\xab\x4a\x0b\x4e\x6c\x9c\x93\x4c\x5a\xb0\xcc\x2e\x7a\xb7\x16\x7b\x39\x3c\x62\x3b\x5a\x36\x4d\x76\x98\x24\x5c\xc4\xb4\x64\xbb\xf3\xe1\x64\xba\x98\xed\xe6\xa9\xb5\x35\x14\x54\x10\x92\x26\xa5\x4d\x1d\x7a\xce\xa8\x42\xd0\x88\xd0\xd0\xda\xeb\x69\x55\x07\x3a\xb7\x74\xfb\x2d\x2b\x4c\x18\x51\x2c\x52\x7c\xa1\x23\xd0\xbf\x2e\x59\x58\x0b\x15\xcc\x9e\xb5\x7d\xd0\x9c\xa5\x3b\x36\x9c\x54\xf6\x01\x96\x18\x78\x9b\x09\x07\xdf\xf0\xab\x54\xcb\x27\x3a\x11\xa4\x17\x5a\x51\x40\x23\xf6\xfb\x0c\x2e\x32\x62\x39\x7d\xc9\x93\x8c\x96\x74\xe5\xcc\xf0\x56\x68\x83\x97\xae\xfc\x35\xd6\x11\x27\x5f\xc1\xda\xb5\x6e\xcb\x13\x84\xe3\xa0\x63\x90\xd8\x67\xd4\x87\x00\x52\x04\xf9\x53\x55\xaf\x5d\xd5\x6b\x5b\xf5\xda\xe2\x1a\x33\x9b\x40\x90\x5e\x3e\x35\x77\x9f\x9d\x99\x1d\x87\x91\x46\x3f\x98\xd8\x7f\xf2\x64\xe1\x6e\xa8\xb3\x72\x4e\xe8\x8e\xd0\x7b\x5c\x3c\x69\x7f\x42\xa5\xca\xaf\x72\x91\x46\x5f\xc3\x02\x8b\x0e\x84\xa4\x8b\x00\xfe\xc0\x4c\xa8\x33\xc6\x6c\x10\xb2\xda\x9a\xa8\xaa\x72\x77\xe7\x9d\xbf\x17\xbb\xb0\xdd\x60\x42\xcc\xb1\xf0\x60\xf5\x6e\x01\x92\xf4\x77\x53\xe4\x8e\x96\xb4\x94\x24\x4d\x76\x6c\x8c\xfd\xb1\x86\xa8\xb3\x72\x6e\x8a\x2a\x65\x95\xc3\xc2\x92\xe3\x7b\xc4\x92\xc9\x2f\xfa\xf5\xd9\x84\xda\x89\x77\x89\x76\xd4\x72\x30\xd8\xd0\x45\xb0\xa2\x70\xdd\x99\xd9\x45\xa5\x5b\x6f\xd4\xbb\xa0\x5b\x52\xdd\xad\xab\x53\xae\xe6\x2d\xca\xa4\x86\x13\x6a\x4b\xb5\x7f\x32\xc9\x57\xc9\x96\xe9\xa0\xe4\xfb\xea\xb1\x0d\x44\x6c\x2d\xa6\x88\x02\xdb\x74\x93\x9b\x21\x08\x18\x2c\x2a\x46\x8b\x35\x95\x84\xae\x7c\xb4\x0e\xa3\xb5\x8d\x5e\x57\x38\x0f\x0b\xba\x22\x74\x59\x3d\x5b\xc2\xf7\xa6\xe6\x13\xc1\xac\x58\x67\x15\x70\x57\xc5\x70\xb8\x0b\x00\x58\x69\xf0\x24\x57\x4f\x4f\x4e\x37\x67\xec\xee\x74\xe3\xae\x2e\xd7\x0c\x1a\xb5\xb1\xed\xb9\x62\x2b\x99\x5c\x53\xd3\xa6\xde\x9a\xb1\xe5\xd4\xca\x04\xab\x0d\xb3\xa1\x57\x80\xd0\x61\xfe\x12\x92\x5e\xbb\xd5\x78\x65\xe8\xe4\xd1\xb4\x50\xea\x92\x4a\x02\x80\x28\xfe\xc5\xa1\x9e\x03\x89\x85\x5b\xab\x8e\xc0\x75\x2c\xd9\x1c\xb7\x49\x63\x75\x52\xbf\x6e\x0f\xd5\x43\x9b\x7f\x70\xd1\x81\xcc\xe9\x92\x95\xf4\x13\xbb\x74\xfb\xf6\x86\xc1\xeb\xa3\xdb\x3e\x7d\xa6\xac\x11\x54\x45\x98\x50\x7f\xbb\x46\x97\xb4\x65\xef\x30\xaa\xea\xb4\x6e\x51\x14\x5d\xa3\x28\x4b\x9e\x3c\x77\x35\x7f\x22\xe7\xe3\x69\x72\xc3\x9e\xa3\x91\xf9\x27\x76\xcd\x93\x4b\xc7\x59\xb8\x54\x86\x4c\x9b\x24\x2e\x0f\xbb\x33\x89\x80\xc1\x78\x6e\xcd\xc0\x0f\xb8\x34\x9b\x43\x46\x7a\xf9\x6c\xe7\xad\xcb\xa1\x39\x9f\x08\xbd\xa9\xc6\x38\x37\xe3\x58\xc2\x43\xd3\xc2\x39\x25\xf8\x3d\x31\x77\x88\xd3\x64\x61\x35\xc3\x56\x23\x2d\xf7\x7b\xfc\x3a\x5b\xe1\xf3\x66\x1c\x07\x07\xf6\x0f\x0d\xa7\x1a\x1b\xc6\xf2\x38\xbe\x43\xdf\x6b\x93\x6f\xc6\xc1\xc0\xaf\xab\x1b\xcd\x19\x78\xc7\x9c\x0e\x1f\x8f\x53\x1f\x76\xee\x9c\x64\x4e\x1f\x8f\xd3\x71\x6f\xfd\x27\xaa\x49\x64\xc7\xb3\xd1\x80\xad\xa9\xa9\xdf\x34\x00\xa0\x87\x3d\x19\xb9\x32\x5b\x9e\x77\xf1\xce\x86\x53\xda\xb0\xc9\xa3\x31\x85\x13\x17\x24\x98\x21\x8c\x7f\x9b\x8b\x32\xf7\xca\x88\x5e\x76\x45\x19\x4e\xe0\x13\xa1\xd9\x68\x9d\x97\x5a\xaa\x3b\xd8\x98\x17\xbc\x78\x0b\x2b\x96\xf9\x6b\xdb\x65\x83\xc5\xe3\xe4\x1e\x98\xff\xe9\x9d\x61\xe5\xaf\x12\x6e\x7a\xf0\x09\x13\x5d\x55\x4c\x4b\xbd\xe1\x9f\x68\x9b\x15\xf1\x6d\xeb\xe6\x52\x3e\x79\x6e\x44\xd1\x05\x39\x98\xcb\x08\x55\x24\xfd\xd5\xd4\x0d\xc8\xbe\x76\x48\xe3\xf8\x25\x00\xff\x5b\x97\xbd\xe6\x42\xf2\x38\x2d\x41\xd9\x0a\x5b\x62\xfa\xf5\x3a\x5f\x2e\x0b\xfe\x4c\xde\x88\x8a\x79\x05\xfb\xad\x6f\x1d\x12\x99\x3a\x8e\xfc\xdb\x66\xe5\x68\xab\xca\xbf\xa4\x37\xd3\x9f\xf0\xc6\xd4\xc0\x00\xb1\x3c\x1c\x2f\xb2\xbb\x5c\x5c\x7d\x5b\xec\xd4\xf3\x6b\x2e\xc0\x5b\xd1\x31\xa8\xcb\x23\x59\x50\x7b\xf2\x58\x71\x13\xfa\x54\x20\x8a\xad\xb9\xd7\x1d\x1a\x6f\x4c\x8b\x80\xa1\x77\x40\xa6\x79\x75\x9d\xa7\xd5\xd5\xfe\x43\xf3\x06\xdf\x9f\x1c\xc0\xa0\x09\x89\xf8\xaa\x90\x52\x05\x36\xc3\x57\x3b\xad\xb9\x2a\x8f\x9d\x90\xce\x7f\xad\xc7\xc5\xc0\xf9\xd2\xce\xaa\xb5\x62\x26\x0d\x97\xf7\x25\x17\x79\xf9\x2a\x91\xe7\x4e\x6d\x63\xbf\xef\x0b\x09\xca\x22\x4e\xac\xf1\x33\x14\x2c\x87\x68\xa1\x3a\xcc\x02\xc1\xaa\x97\x20\xee\xd8\xf8\x74\x77\x56\x9d\x8d\xae\xfd\xfe\xdd\x78\xe7\x20\x69\x33\x1f\x17\xc0\x57\xed\x40\xa4\x5c\xc4\x71\xf1\x70\x8f\xcf\x9d\x2f\xf5\x05\x7b\x12\x3c\x66\xad\x58\xab\x66\x53\xa4\xf3\xb4\x9c\xc3\xb3\x02\xa7\x0b\xba\xa2\x9a\x50\xe8\x4f\x38\x8b\x2b\x51\x7b\xcc\xb5\x93\x1a\x61\x49\x4f\x8b\x7c\xf1\x39\x32\xcc\x2b\xec\xdb\xb5\x08\x79\x93\x6d\x43\x4e\x01\x40\x15\x86\xb9\xa0\x7d\x2b\xa0\x88\xe3\x7e\x19\x68\x0f\x82\x24\x00\x96\x39\x95\x71\x9c\xac\xc3\x8d\x63\xd5\x35\x50\x42\x00\xdc\xb2\x03\x37\x7f\xaf\x32\x51\xae\xc0\x9b\x68\xc1\xa1\x12\x70\x5a\x55\xbb\xcd\x12\x14\xfd\x28\xff\x28\x6f\x45\x0b\x2f\xf2\x82\x9b\x54\x66\x4b\x07\x41\x81\x25\xb6\xcb\x42\x33\xf6\x44\xa9\xec\x0e\xa0\xdf\x41\x22\x1c\xdc\x56\x94\x45\x4f\xf4\xe3\x9c\x15\x85\xbc\x31\x17\x22\x53\xda\xfb\xbb\x2d\x2f\xf7\xfb\xe1\xa4\xcf\xae\x65\xf2\x50\x22\x8a\xa8\xfe\xfe\x65\xc1\xf4\xbe\x6a\x62\x4f\x8e\xa4\x28\x64\xb6\x34\x84\x4f\xb7\xdd\x74\xca\x91\xe2\xe5\xae\x80\x43\xfb\xd1\xec\xe3\xed\x78\x3c\xfc\x78\x3b\xfe\xcf\x8f\xb7\x63\x3e\xfc\x78\x3b\x59\xcd\xef\x1f\x1f\x1c\x12\x39\xa8\xa0\xb2\x28\x22\x34\x9b\xa9\x39\xe3\x74\x30\x28\x99\x5b\x3f\x3b\x8b\x05\x22\xd8\x2b\x47\xaa\x04\xa1\x5a\xa6\xc2\xb9\x22\x68\x80\xe9\x65\x08\xeb\xa6\xbb\xf0\xf2\x08\xf1\xec\x32\x82\xdb\x1f\x7a\xaf\x1c\x62\xd5\x8e\xd0\x5f\x6a\xb0\x8c\xef\x44\xb2\xb3\x30\xee\x12\x70\x51\x9f\x94\x56\x80\x73\x38\xd0\x82\x8d\x4f\x8b\xb3\xfc\x74\x30\x28\xc8\x2e\x51\xb3\x62\x4e\x8b\xca\xc5\x82\xee\xb8\xb9\x82\x5a\x64\xd3\x01\x91\x20\xe7\x95\x14\xbe\x2b\x97\x59\x7f\x80\x9b\xd5\x4d\x2b\x9b\x9a\x96\x21\x91\x06\x91\x65\xbe\x4a\xb2\xe6\xda\xbc\x72\x6e\x0f\xde\x03\x08\x20\x39\xde\xe2\x7e\x72\x37\xe5\xf6\xf6\x98\x72\x27\xb6\x41\xfc\xc6\x05\xb8\xf4\x2c\x6b\x5e\x29\xcc\x6c\x7f\x57\x1b\x44\xc3\x2d\x2e\x60\x09\xe3\x88\x2d\x2a\x42\x53\x10\x8f\x16\x16\x45\x74\x31\x2b\x1c\x94\x0e\xfe\xb6\x2e\x46\x55\x76\x05\x1e\x5e\x5b\x3e\x22\x32\x1a\x65\x20\xbf\x8c\x9c\xa7\x82\x50\x91\xb7\x3e\x1c\x96\xa4\x73\x72\x7f\x08\xc9\xc9\xb2\xf1\x92\x65\x2a\x73\x7a\x5d\xc9\x97\x54\x7f\xba\xb2\x85\x0a\x43\x55\xa8\x85\xbf\xf7\xd5\x6e\x2c\x15\x3b\xaa\x24\xa7\xc9\xd9\x63\x04\xa6\x08\x83\x99\xa6\x62\xbf\xff\x2d\xe1\x14\xf4\xf4\xf5\x21\xac\xad\xcd\x60\xf5\x99\xae\xf5\xa2\x43\xb5\x53\xb7\x4b\x68\x6b\x88\x6a\xd0\xd7\xfd\x0d\x08\xa1\xe1\x71\x40\x6a\x1a\xf8\xff\xf1\x32\xcc\x44\x4c\x35\x6b\xe9\x0c\xa6\xc7\x75\xf7\x4c\x37\x09\x60\x0e\x55\xca\xdb\xc7\xbb\x84\xea\x9f\x1d\xd1\xc1\x1b\x0a\xf4\xa7\x56\x09\xd3\xf4\xd7\x3a\xa0\x48\x87\xbe\xe7\x17\x86\x0a\xcb\xf9\xd2\x58\x81\x72\xa9\xb6\x7c\xfe\xb5\x60\x63\x7a\x85\x5c\x64\x4f\x4e\xaf\x04\x1b\x8e\xbe\xf9\x4b\x2a\xcc\xaf\xc9\x37\x69\x81\x21\xff\x23\x5d\xc5\x71\x62\x7e\x4e\x1e\xfd\x05\x4f\x95\x4b\xd1\x56\x77\x61\x1c\xf5\x8e\x9f\xf1\x42\x67\xbf\x81\x23\xdf\xea\xfb\x43\x68\x05\x0f\x1a\x1f\x86\x3b\xd2\x59\x5e\x98\x5f\xd9\x6d\x0e\x68\x3f\x2f\xdf\xfe\xf4\xfd\xdf\xdf\xbe\x79\xff\xe4\xd5\xa7\x27\xbf\x7d\x7f\xe1\xd4\x42\x20\x5d\xa0\x13\xd2\x95\xf5\x97\xe7\x3f\xbd\xff\xfe\xa9\xcd\x38\x15\x3e\x5b\x5a\xd7\x24\xa9\x5a\x44\xe8\xfd\x6d\xaa\xe9\x5d\x2a\x0e\x01\xc4\xd1\x27\x51\x59\xdf\x2b\x76\x09\x47\xaf\x39\xd1\x6e\xc1\x80\xfc\x2e\x7c\x2b\x45\xf1\x96\x13\xce\x15\x5e\x3f\x14\xa6\xf8\x7c\x57\xd3\xfb\x5d\xf9\x58\x7c\x1e\xf3\xd1\x95\xc9\x6c\x1e\xc7\x05\x48\x31\x57\xf8\x48\x19\xc7\x77\x71\x5c\x12\x9e\x56\xf8\x9d\x7a\xa4\x33\x75\xc5\x35\xdd\x32\x64\x9a\x4e\xd7\x7d\xb6\x3b\x5d\xb3\x75\xf8\x04\xe6\xd2\x2f\xd9\xf8\x74\x79\xb6\x75\x94\x6c\x89\x6f\xc5\xdb\xd9\x12\x91\x5f\x19\x5b\x87\x44\x65\xb1\x53\xa6\x84\x5f\xcd\xf8\xbc\x87\x5a\xd8\x1a\x39\xe7\x13\x7e\xc0\xe6\x81\x67\xcb\x05\xaa\xa4\xf7\xd9\x95\x87\xf4\x30\x6d\x8e\xe3\x4d\xa5\x05\x5c\xd7\x90\x0e\x34\x6e\x07\xf2\xeb\x2b\x41\xeb\x43\x31\xac\x0f\x85\x39\xfc\xee\xbe\x54\x14\xd8\x93\xe4\x61\x59\xb8\xed\x6a\x83\x0e\xb6\x25\xd6\x0b\xd5\x8a\x58\x7e\x16\xa1\x60\xb3\xba\xbe\x3c\x98\x34\xe2\x98\xfb\xbe\xc1\x0a\xd8\x30\x68\xf0\x75\x4b\xe9\xf8\x8a\x5d\x0f\xb2\xce\x77\xd4\xde\xe6\x6c\x3c\xbd\x0e\x55\xc5\xaf\x07\x9b\xe1\x37\x63\x92\x5e\x85\xe2\x95\xc0\xe2\xf5\x6a\xb0\x19\x7c\x33\x26\xd4\x93\xcc\x6b\x87\xb6\x70\x75\x20\x87\x6b\x71\xf6\x78\xec\x15\x98\x6a\x0d\x9f\x36\xfa\x11\x8e\x0e\xcd\x6a\x46\x00\xc1\x1c\xb8\x98\x67\xbf\xb1\xdc\xff\xfe\xc0\xe4\x91\x6b\x8e\xd7\xcc\xa8\xd5\xe5\xf8\xa7\xb0\xca\x61\x2d\x05\xd5\x61\xa5\xb5\xb8\x0f\x54\x18\x02\xe0\xeb\x8e\x63\xfd\xc8\x7f\xec\xf7\xbc\x8a\xfa\x2d\x8e\xb9\x8f\xfa\xad\x57\xef\x6e\xd6\x32\x73\x00\x7c\x89\x2b\xc1\x92\x2b\xf1\xf5\xb5\x18\x08\xf2\x28\xb9\x16\x83\x09\xa1\x83\xc1\xb5\x30\xec\xd0\x63\x73\x28\xa4\x89\x2f\x71\x10\x0e\xc1\x80\x49\x12\x5e\xf0\x6f\x44\x08\x63\x53\x02\xe2\x62\xc4\x98\xe1\x36\xe5\xea\x04\xd8\x0e\xcd\x0a\x35\xd3\xf3\xe0\xde\xd4\x74\x95\x1a\x82\x88\xba\x47\xb1\xa6\x1c\x98\xe6\xac\x3f\x01\x36\xa8\xf9\x9e\xe4\x2f\x92\xe5\x6e\xbb\x55\xbc\x2c\x9f\x2f\x73\x5d\x02\x70\x86\xa8\x1f\x05\xf0\x0e\xd9\x9f\x18\x62\x65\x98\xb1\x3e\x93\xd2\x6b\x32\x36\x93\x29\x7a\xa4\xd8\x49\xa5\xad\x77\x81\xa3\x02\x97\xd6\x77\xf9\x2d\x2f\xca\x0e\x82\x7f\x29\x02\x6d\x45\x3d\xba\xfd\x9a\x5d\x09\xaa\x47\x77\xf8\x17\x21\xe6\x9e\x0b\x60\xc9\x0b\x59\xd1\xd8\xdb\x8e\x57\xab\xd0\xed\x2d\x50\x43\x18\xf5\xad\x4a\xfc\xa5\x34\xb2\x80\xa5\x51\xef\x39\x78\xea\x4a\xbe\x19\xd3\x8e\xeb\x38\x16\x81\x02\x9d\x46\x98\xc5\xd7\xea\xf4\x65\x4b\x0e\x84\x6a\x96\x0f\xa2\x93\x68\xa0\xad\x96\x74\xf3\xf5\xb3\x69\xf4\xec\x0b\x7f\x9d\x75\x9a\x3f\xaf\x15\x30\x0a\xb5\x64\x33\x35\x37\x57\x47\xc4\x2d\x27\x7e\xb8\xbd\x4e\xaa\xbb\xe8\xf0\x5b\xad\xb2\x1f\xf8\x5d\x19\xc7\xb6\x98\x56\x0c\x45\x17\x57\x8d\x68\xac\x07\xe2\x50\x30\xa3\xdc\x0c\x45\x9b\x5d\xa1\xf3\x88\x31\xd9\x1e\x1a\x4d\xa8\x1f\x5f\x48\xf0\x77\x73\xc7\x8d\x3e\x73\x6b\x51\xbd\x8c\x28\x0e\x42\x95\xac\x6f\x92\xd9\x32\xfb\x4c\xee\xf7\xc9\xcb\x3c\x11\x84\xe6\x66\xfd\x11\x6a\xce\x0b\x19\xc7\x8f\x3e\xfe\xb7\xaf\xec\x05\x4a\x93\xa9\x4d\xd2\x1f\x93\xb4\xdf\x97\x01\xa6\x9a\x08\x31\x6f\x96\xa6\x47\x7d\x0f\xe4\xdb\xef\xa3\x9f\xa6\xea\xcd\xa8\x5f\x6f\xfd\x14\x16\x54\x74\x61\xe2\x87\xd1\x40\x50\x5d\x13\xcb\x3b\x4c\x32\x27\xe5\x27\x07\xb2\xdf\xdf\xa2\x6a\xa0\x6e\x0a\xf0\xdb\xfb\x7c\xfa\xe8\x1f\x57\x72\xf6\x64\xf8\xf7\xb9\xef\x47\xaa\x47\x1b\x69\x32\x91\x5a\xd9\xe4\x40\xd2\xce\x72\x9b\xa9\x90\xf9\x7a\x6b\xf9\xae\x0a\x41\xad\xe3\xf2\xaf\xdb\x4f\x0e\x4e\x12\x80\x8e\x6f\xcf\x26\x93\x38\x7e\xfc\x3f\x0c\x0b\x64\x11\x66\x61\x76\xb1\x4a\x00\xdd\xae\x99\x07\xda\x34\x3d\xdd\xa0\x09\x93\xff\x0e\xa8\x5a\x95\x26\x83\x25\x55\x17\x56\xbd\x60\x11\xc7\xc9\x5b\xc1\xd4\x54\x20\xc8\x41\x5f\xc5\xf1\x7f\xfe\x27\x3a\xa1\x06\xdf\xf8\xe6\x06\xe6\x5e\xf2\xaa\x2b\x98\xb9\x4d\x7e\xc1\x6d\x1e\xa1\x93\xff\xec\x9b\xba\x1f\x7d\xbc\x0c\x9d\x09\x2b\x59\x96\xeb\x2c\x57\x1f\x9d\x2b\x30\x5d\xbb\xe9\x3c\xcb\xaf\x47\xde\x0d\x31\xd9\xef\x1f\x30\x1f\x6f\xfb\x39\x84\x54\xa6\xda\x60\xd0\xdc\x05\x72\xbf\x4f\x9e\x99\x01\x8e\xba\x1a\x13\x35\x44\xb4\x9f\xf9\xdd\x6e\x1b\x99\x7d\xd1\x96\xdc\xca\x6b\xae\x22\xf0\x44\xfe\xea\xa1\xf2\x3e\x74\x97\xd7\x96\xb6\xba\xf2\x0e\x75\xab\xfa\xcf\xd8\x99\xff\x5e\x5f\x01\x88\x1c\x6c\xef\xf1\xd5\xe9\xc0\x51\x6b\x9c\x86\xf6\xd0\xaf\x3b\x96\x5d\x3f\x69\x08\x99\xf6\x7b\xaf\x20\xe3\x67\x17\x36\xa2\x1b\xb4\x3b\x33\x82\x76\x01\x10\xb7\x93\x7d\x8b\x40\xf2\xe4\x70\x8f\xe1\x6d\x0d\x40\x38\xdf\xfa\x1d\x64\x37\x03\x0a\x11\x50\x6c\x6b\x9a\xb1\x30\xd5\xdd\xac\xf3\xc5\xda\x1c\xb7\xf6\xe7\xd9\x64\x4c\xf6\xfb\xbe\x5d\x9a\x24\x69\xd2\x69\x5b\x24\x52\x85\xff\x16\x0d\xc4\x20\xfa\x6f\xd1\x97\x89\xc2\x81\x80\x9c\xec\x38\x9c\xb3\x59\xfc\x8a\x90\xfd\xbe\x79\x7f\xaf\x80\xa5\xeb\x46\x1d\xef\x1f\x96\x2d\x7f\x41\x50\x4c\x68\x0d\xde\xb9\xc3\xf7\x4d\xd2\xf2\x41\x9f\x80\x6c\x32\x82\xef\x88\xf2\x4a\x93\xc3\xa6\x60\xfd\x31\x7d\x15\x22\x64\x5a\x16\xb6\xb6\x3a\x6d\xda\xc8\xab\xba\x9b\x49\x38\xea\xd8\x9d\x55\x0a\x34\x35\x94\xca\xba\x3f\xe2\xb2\xf6\x00\x53\x3b\xb7\xbb\x32\x98\x09\xa1\x8f\xc7\x84\x74\x9c\xd7\x81\xd3\x9d\x84\xb8\xf3\x26\xc0\xc9\x7b\x78\xd0\xa1\x8d\x4d\x87\x37\x38\x6a\x97\xc5\x4e\x75\x0f\xda\x84\x3e\xfb\xd3\x83\x46\xd0\x29\xb2\x73\x89\x13\x64\xbb\x2c\x72\xf1\x99\x1f\x7d\xc1\x68\x4f\x66\x07\x7f\x77\x80\x67\xb0\xa0\xbb\x3f\xd9\xa3\xb3\x14\x55\x72\xaa\x6b\x04\xb1\x12\x45\xf7\x51\x14\xef\x24\xd1\xd5\x24\x46\x24\x8e\x1b\x62\xea\x20\x92\x9a\x8a\xa1\x1c\x20\x03\x90\xca\xfa\x1c\xde\x40\xe6\x70\x81\xb8\x2d\x11\x14\x90\x58\x40\xaf\x77\x82\x5d\x58\x2d\xd6\xe7\x62\xc9\x3a\xdd\x66\x98\x3c\xd3\x2d\x4f\x78\x05\x3a\x31\xa8\x01\x23\x0c\x27\x74\x63\x26\x23\x54\x3a\x1c\x24\x13\x70\xef\x5a\xa5\x9a\x72\x87\x99\x96\x1a\x96\x9f\x8f\xb4\x0c\x6e\xf9\x6f\x2a\x9d\x6d\xc0\x7c\x46\x67\x7a\x81\xe6\x34\xef\x55\x51\x5a\x86\x60\xd0\xef\x44\xa2\xab\xe3\x14\x9a\x57\x43\x27\x1b\x82\xf9\x20\x44\x0c\x75\xd5\x07\x32\x9c\x58\x1a\x58\x39\x39\xb2\xc0\xcd\x2e\x79\x1c\x27\x6a\xc0\xa0\xfc\xd1\x62\x0d\xa6\x84\xa3\xc5\x9a\x38\x74\xb5\x00\xd4\xad\xa5\x17\x3b\x9b\x53\xcf\x94\xf2\xa2\x81\x82\x5d\x03\xe4\xa9\xa2\x67\x6a\xde\x13\xb5\x47\xf3\x37\x22\xc9\x3d\x04\x35\xa1\xf0\x09\xe2\x4d\x73\x29\x77\x2c\xea\x3f\x4d\x6b\x78\x43\xad\x27\xc0\x0d\x6b\x52\xe1\xaa\x9b\xe6\xef\xb4\xd2\x93\xe1\xd8\xc9\xc5\x7a\x20\x4c\x37\xd3\x4a\x5f\x26\xe1\x6e\xf8\x50\x2f\xc1\xa4\x0c\xaa\x78\x26\xea\x38\x81\xf7\x8b\x4c\x2c\x78\x81\xe8\x4d\x20\x84\xc7\x71\xa7\x5a\xa6\x66\x10\x43\x5f\xc0\x4e\xae\xae\x47\xf8\x83\x62\xde\xb6\xdb\x05\x5b\x24\xeb\x8f\x0f\x07\x2f\xba\x02\xab\x07\x0b\x54\x52\x1d\x26\x4e\xed\x4a\xbb\x63\xd7\x54\x0e\xa0\x8d\x14\x6c\xbc\x5d\xb0\x96\x18\x28\x08\x3c\x69\x26\x95\x89\x96\xb2\xc2\xf3\x71\x1f\xef\x2d\x10\x83\x0d\x64\xb9\xb9\x99\x58\xfa\x04\x5e\x7a\xd1\xa8\x23\x82\x67\x56\x33\x34\x1b\xb0\x65\x04\x28\x82\x66\x0a\xc0\xff\x21\x54\xf9\xee\x4c\xcd\x41\x96\xe2\x4b\x85\xf2\x83\xa4\xfc\x20\xa9\xda\x20\x29\xdb\x86\xe0\x44\x7b\x15\xde\x89\x01\x19\x01\xdd\x45\x7b\xd4\x23\xb7\x4d\x7e\x40\x2f\x61\xf4\x95\x20\x36\x47\xcf\xe6\xe8\xba\x7a\xda\x5c\x07\xe0\x3c\x90\x44\xd5\xba\x82\x5c\xc7\x26\x8e\x4d\x5c\xbb\xa7\x04\xc5\xb3\xcf\xfc\x61\xee\xb5\x63\x9f\xa3\xd4\xaa\xc9\x21\x60\xa4\xb3\xc9\xe0\xa3\x5c\x73\xe5\xb4\x2d\xbc\xd2\x56\xd3\x0f\xc1\x08\xfc\x03\x2d\x2f\xb6\x99\x28\x5b\x58\xd6\x41\x5c\xf5\x74\xa0\x2b\x3e\x28\x88\x9f\xe9\x39\x7e\xaa\x5e\x5f\xf8\xd3\x7c\xbf\x57\x71\x6c\xdf\xbb\x14\x15\xa6\x47\x68\xdf\x56\x59\x06\x0a\x78\xe4\xe9\xab\x4e\x53\x91\x9c\xcd\x70\x5e\x35\xbc\x3a\x1d\xe6\x54\xb2\xf1\xa9\x3c\x53\x55\x73\x2a\x23\xde\x8c\xa9\x99\x9c\xc3\x5b\x2e\xa2\x50\x12\x8a\x0f\xae\x79\xc7\x03\x6b\x6e\x5f\x53\xfb\x86\x20\x16\x66\xad\x94\x8e\x5c\x82\x4b\x15\xeb\xab\x08\xac\xd2\xcf\xc7\xc4\xbd\xa7\xce\x76\x74\x32\xa7\x2b\x16\xa6\x40\x83\xf6\x35\xab\x0a\xd2\x92\x9c\x26\x2b\x53\x52\x3f\x1b\xe5\x62\x51\xec\xca\xfc\x9a\x5b\x30\x86\x95\x39\x95\xb0\xef\xd8\xb7\xc2\xaf\x59\x2c\xeb\x40\x68\xb2\x3e\x6f\x64\xfe\x09\xcd\x19\xfa\xeb\x66\xee\x12\xd6\xb9\x4c\x4d\xd5\x07\x42\x73\x78\x8e\x5b\x38\x3b\xd0\x9c\x2e\x08\xdd\x0d\x58\xe5\x9b\xf4\x50\x89\x43\xfc\x19\x81\xe7\x01\xa8\xc5\x77\xbc\x78\x0e\x27\xa7\xf9\x39\x1b\x9f\x0e\x87\x39\x79\x61\x56\x9b\xdd\x6a\xb3\x7c\x5e\xed\x36\xf3\xe1\x36\x5c\x3e\x9d\x45\xd1\xdc\x39\x2a\xb7\x6a\x40\x2f\xec\x3d\xb1\xda\x76\x2f\xaa\xf3\x6a\xd2\xaf\xa3\x61\xee\xf7\x51\xe4\x82\xc0\xc9\x0d\x2a\xac\x85\xad\x75\xab\xd0\x9e\x1b\xbd\x77\xb9\x95\xbf\x98\xad\x34\x0d\xbc\x0b\xe6\xcb\xf4\x4d\xf6\x86\xd0\x6f\x9d\x80\xe6\x09\x9a\x8a\x3a\xb9\xd5\x6c\xde\xbb\xcc\x6b\x4a\x26\x66\x33\x09\xff\x4e\xab\x28\x77\x6a\x2a\x66\xfd\xfe\x61\xc8\x92\xfd\x36\x07\x8a\x72\xf0\x77\x2e\x4d\x55\x93\x61\xfd\x5d\x65\x87\xb0\xe7\x7f\x84\x04\x07\xe8\xcc\x7e\xdf\x3f\x4a\x46\x6a\x06\xac\x55\xdd\x12\x0f\x3e\x9a\xb1\x68\x27\x96\xd2\x5c\xee\xa7\xf9\x68\x29\x05\x4f\xf3\x91\x09\x11\x9c\x96\xb5\x38\x0c\x4c\x31\x91\xdd\x1b\x59\xe5\xbb\x4b\xb1\x6c\xb6\x9b\x53\x31\xed\x2b\x7b\x9a\xee\xf7\x6a\x84\xfe\x4b\x12\xf4\x51\x93\xba\x18\x72\xba\x1b\x0c\xc8\x29\x1a\x39\xb9\x32\xb0\xa5\x39\x28\xbd\x58\x4d\x9e\xbc\x43\xb3\xe7\xd4\xd4\x84\x3e\xa7\x88\x2d\x0e\x4d\x98\xde\xe4\x89\xa2\x25\x1c\x2e\xfd\x46\xc5\x24\xf0\x37\x76\xf2\x01\x3c\x5a\xd0\x7b\x60\x49\x7f\xe2\x4b\x09\x2a\x6d\x3d\xc9\xd4\x01\x37\xf7\x6c\xde\x7b\x93\x27\xd2\x94\x65\xd1\x09\xef\xad\x99\x51\x5a\xd0\x2b\x2e\xac\x8b\xd6\x34\x1f\x55\x1f\xb0\x77\xaa\x4f\xa6\x82\x8f\xfd\x7e\x30\xc8\x47\x9b\xec\xf6\x3b\x1f\x64\x21\x91\xff\x0d\xb2\x0e\xc4\x6d\xc7\x94\xb3\x7c\xaa\x76\xd9\x0e\x77\xd9\xce\xa9\xf9\xfa\x24\x96\x56\xad\xdc\xf1\xa9\xe9\x22\x8e\xfb\x70\x32\xac\x0c\x1b\x1b\x8e\x4e\xe2\x66\x83\x8d\x49\xaf\xc0\xde\x3f\x85\xf5\x6d\x57\xfc\x9a\xed\xa6\xb0\x69\x56\x24\xdd\xc8\x24\x23\xbd\x6f\xb1\xa0\x35\x7d\xad\x30\x1d\xed\xef\xd0\x9d\xad\x75\x6a\xdb\x50\x15\xb4\x0e\x42\xfc\xe6\x7f\x27\x92\x15\x39\x38\x05\xd6\x8e\xfd\x84\xfe\x4d\xec\x7e\xda\x3e\xb0\x9f\x56\x84\x6e\x8f\xec\xa7\x15\xee\x27\xd7\x44\xb3\x9f\x82\x1d\xf5\xb2\xa2\x25\x63\xf7\xa2\x88\x06\x7e\x4c\x23\x63\xc7\xac\xe6\xed\x95\x4c\x42\x86\xb1\xcb\xcd\x5d\xa5\xab\xc8\x43\xe7\x23\x83\xca\x21\xa5\x63\x61\x79\xe5\xac\x04\x62\xad\x63\x12\x10\xbc\x36\xd9\x49\x20\x4c\x04\x1c\x9e\x73\xeb\x60\xdb\x1a\x67\xc2\xdf\xa1\x06\x34\xe2\xc0\x46\xb2\xf2\xdd\x0b\x90\x24\xde\xdc\x50\x9d\x39\x30\x3a\xe0\x82\xb9\xc0\xf2\x94\xbb\xe4\x44\x21\xa9\xf9\x56\xd4\x7c\x0c\xe0\xa4\x3e\xc0\xda\x7c\xeb\x58\x1b\x8a\xea\xc2\x9e\x91\x3f\xb3\xed\x24\x38\xd4\xf5\xcb\xcb\xb1\xfb\x41\x60\xe1\x93\x04\xe1\xe7\xa1\x26\xae\xd3\x81\xa8\xe0\xf8\x5c\x4d\x5e\x51\xac\x51\x97\x1f\xb1\xa0\xa6\x1e\x34\x2b\x27\x54\x5b\x9d\x15\xbc\x6d\x21\x78\x36\xe8\xac\x80\xa2\xa9\x6d\xe4\x20\xa7\xfe\x26\x02\x47\xd6\x6c\xe3\xb0\x8e\xc9\xbc\xc9\x4e\x1f\x3c\xbe\x48\xd5\xe8\x9e\x2f\xea\x1c\xb0\xd5\x6c\xa5\x15\x8f\xbe\xe5\x89\x04\x28\x81\x06\xd2\xb6\xab\xcf\x9f\x6d\xed\xea\x08\xd5\x56\xd9\x61\x09\xbe\x13\x6b\x87\x34\x45\x64\x05\x7b\xea\xe1\xa2\x6a\x59\x34\x5d\x57\x50\xe3\xa1\x4d\x34\x28\xda\x41\x51\x19\x5c\xd0\x68\xc9\xfa\x13\xba\xb3\xa6\xe7\xc7\x51\xd8\x77\xec\x6d\x9e\xbc\x50\x09\x02\x87\x3b\x3f\xa2\x54\x21\x87\xb9\xb3\x26\xe5\x1d\xcc\x25\x63\xb9\x43\x75\xf3\xc8\xde\x0c\x6c\x1c\xc0\x85\x64\x5d\x1d\x27\xec\x25\x18\x15\x69\x99\x70\xd2\x5b\x9b\x4a\xcd\x7a\x7c\x0d\x12\xf8\xa3\x8d\xf4\xad\x91\x1d\xf7\x57\xda\x16\xa4\xfe\x13\x90\x45\xce\x7d\x03\x5f\xb9\x63\xd0\x87\x30\x4e\x1b\xb1\x4c\x57\x21\x01\x48\x42\x09\x32\x0c\x10\x07\x39\x54\x93\x3a\x98\x25\x00\x24\xf5\xe0\x6e\x22\x74\xce\x55\xf5\x66\x5a\x85\xb9\x81\x45\x45\x8f\xbf\x8e\x2d\x02\x44\xd1\x58\xfe\x09\x0e\xf6\x50\xba\x0b\x78\x4f\x8f\x56\xbb\xa2\x98\xfe\x0d\xac\xdb\x30\xb8\x6f\xd5\x19\xf7\xfb\x36\x63\xb5\xf2\xb0\xf9\x04\xf2\xd8\x7a\xab\x49\x2c\x48\x0a\x86\xf7\x36\x3c\xb2\xde\x4a\xc3\xf3\xce\x01\xcc\x10\xba\xaa\x85\x20\x26\xce\x6a\xbf\x5f\x38\x43\x12\xdc\x16\xc0\xa0\x66\xb5\x2b\xab\x5d\xe0\xa9\x5f\xea\xad\x6d\xd0\x5b\xb9\x07\x9b\x85\xbf\x1c\xae\x89\x39\xf9\xfc\x20\x57\xd8\x36\x20\x57\x6a\x06\x06\xb7\x8c\x35\x39\x3c\x24\xed\x03\x85\x63\x24\x80\x9a\x2a\x92\xae\x73\xfb\xca\x44\xbf\x83\xcb\x2d\xcd\x64\x48\x54\x7f\xae\x59\x26\x19\xb6\x19\x2e\x35\x82\xd0\x25\x87\x7b\xce\xd9\xd8\x63\x02\xf4\x14\x13\x54\x30\x79\xe8\x7a\x6c\x05\x4d\x90\x40\x7f\xce\xec\xe8\x57\x15\x8b\x2d\x80\xb5\xb6\xe3\xe6\x06\x28\x3f\x04\x62\x83\xdf\xbf\x60\x23\xf5\x7d\xcd\x17\x82\x00\x7c\x7f\xe1\xd0\x45\x4a\x87\xae\xec\x34\x04\xdc\x10\xfa\x17\xee\x69\x2b\x24\xed\xd2\x27\xa7\x3b\xb6\x05\x6d\xb9\x82\xdd\x1f\x7a\xf9\x50\x9c\xef\x00\xbe\x4a\x0c\x76\x6e\xe1\x84\xca\x01\x83\x42\x27\xa0\x8f\x2a\xce\x32\xba\x66\xf9\xf9\x62\x08\xc8\xf6\xe2\xac\x24\x45\xa0\x22\xb5\x9a\x8e\x53\xe1\x4f\x90\xfc\xbc\x74\xd7\xb7\x6d\x60\xed\x41\x93\xf5\x74\x91\xe6\x64\xb8\x23\xbd\x6d\x9f\x99\x3d\x18\x96\xb1\x45\x21\xdd\xf2\xe1\xae\x82\xbb\xac\x76\x50\xbb\xb3\xa0\x85\xb0\x61\x6b\xd3\x5b\x73\x10\x39\x62\xb4\xca\x6f\xf9\xf2\x3b\x38\x7e\xa7\xd2\xeb\xee\x06\xb0\xbc\xe9\x98\xd0\x3b\xa6\x86\xfa\x7c\xe3\x24\x2f\x77\xc0\x73\xeb\xc1\x86\x50\x7d\x36\x19\x4f\x8b\x50\xe5\x69\x9c\xea\xb3\x65\x3d\x28\xd0\xbe\xd0\xc3\xe4\x6e\x3a\x4e\x27\x63\x42\x52\x75\xbe\x19\x2c\x87\x7f\x09\xfa\x8d\x30\x7a\x03\x97\x64\xb8\x21\x34\xb0\x1a\xfe\xd5\x1f\x13\x5e\x6b\xc9\x6a\x13\xed\xf7\x1f\x0c\x81\xb4\xc8\x70\x3a\xd8\x68\x41\xb9\x95\x17\xc8\xf6\xf8\x35\xb4\xcf\xda\x69\xc8\x40\xbb\xe2\x45\xab\x78\x33\x5d\x9d\xa5\xe3\x42\xac\xe9\xaa\xa4\xad\x14\x64\x10\x3a\x76\xf9\x05\x28\x3d\x74\x27\x74\xe4\x8f\x3a\x81\x09\xa1\x86\x87\x56\x4c\x3f\xe4\x79\x44\x8f\x16\xeb\x69\x65\xaf\x62\x3e\x87\x13\x92\x9a\x7c\xf5\x50\xb0\x0b\x6b\xb6\xe7\x9d\x2c\x59\x6d\x13\x23\x96\x5d\x5a\x55\x88\x8f\x20\xa8\xbf\xf6\x1a\x22\xa9\x43\xb6\x4b\xfb\xe3\x80\xda\x7c\x10\x6d\x38\xf4\xa0\x1a\x04\x44\xbf\xef\x6a\x80\x37\xb5\x17\x0c\x1d\xb0\x58\x59\x85\x72\x9f\x86\xa1\xc8\x1b\x50\x87\xe8\x24\x89\xaa\x26\xd4\x21\x38\x48\x02\x47\x82\x5b\x32\xd4\x16\x9b\x2f\x34\xa3\x02\xdd\x73\x6a\x11\xf8\x6b\x06\x56\x16\xf3\x50\x79\xcc\x43\xdd\x01\xed\xe7\x8d\x42\x61\x8f\xe5\xc1\xcc\x06\x63\xf1\x5d\x07\xe2\x07\xda\x81\x86\x1a\x71\x51\xb6\x5c\x46\x84\x46\xe5\x26\x53\xd6\x27\x5d\x22\x47\x1b\xb9\xe4\x00\x6b\x23\xf4\x34\x67\x25\x62\x93\xa5\x82\x45\x5b\xc5\xaf\xa3\xca\x28\xa0\x69\xb9\x56\xb2\x1b\x73\x99\xd4\x84\xee\xd8\x42\x26\xa5\x35\x5c\x33\xb7\x91\x8c\xf4\x4a\xbc\xb3\x3f\x59\x69\xae\xe2\x38\x09\x3f\xad\x0e\xd6\xb5\x75\xce\x8d\x19\x47\x1b\x50\x87\x7d\xf4\x8f\x8f\xe5\xd7\x8f\xc8\x6c\x0c\x37\x3b\xb5\xdf\x3f\xfa\x78\x61\x9f\x84\x31\x1d\xb1\x2f\xf7\x41\x17\x92\x82\xd5\x7a\x91\xe4\xd4\x96\x89\xf6\x4c\x0b\xcf\x63\xba\x22\x18\x93\x72\xbf\x2f\xce\xe1\x79\x05\x84\x0d\x4e\xce\xd6\x73\xfd\x3e\x1c\xac\x77\xf5\x31\x15\x2c\x12\x52\x47\x3d\x8c\x60\x4c\x4c\x0b\xa6\xcf\x25\x72\xd1\x53\xb4\xcf\x93\x54\x0f\x27\xa4\x36\x04\xe9\x38\x85\x01\xc7\x0c\xbb\x41\x35\x82\xd8\xcc\x9f\x45\xae\xd3\xa8\xdc\x5d\x6a\x95\x81\xb9\x20\x24\x1b\x76\x27\x13\x00\x49\x55\x1d\x92\x02\x9c\x8a\xef\x06\xc2\x1c\x2e\x01\x05\x2c\x9c\x39\x56\x14\xd1\x35\xb3\xfe\x53\xeb\x05\xfe\x9a\xeb\xf5\xfb\xec\xb2\x12\x6b\x6e\x43\x2b\x92\xe2\x51\x46\x4e\xb7\xa7\xc3\xe1\x96\xac\x07\x2c\xa3\xab\x01\x8b\x3e\xa2\x2f\xc3\xf5\x59\x11\xc7\xc9\x6a\xc0\xb6\x32\x29\x86\x6b\x42\xe8\xaa\xcf\x16\xde\xd0\x43\x24\x92\xae\xc0\x6e\xcd\x3a\xe3\xd6\xb4\x1a\xf9\xca\xeb\x72\x6b\x25\xd0\xfe\x18\xee\x77\x5b\x36\x3e\xdd\x9e\xc9\x8e\x47\x8d\xad\x7b\xd4\x58\xb2\x30\x7a\xb6\x45\xdf\x9e\x35\xcf\x98\x71\xbc\x74\xd7\x4d\xaf\xd8\x4d\xee\x7f\x37\xd7\x8e\x2d\xb5\x37\xd8\x35\x6b\xb4\x6e\x4d\x88\xf3\xa3\x18\xa0\xf4\xb5\x34\x97\xb4\xb9\x29\x38\x05\x9b\xe6\x8c\xe8\xa9\x04\xb0\x0c\xfa\xcc\x3e\x06\xa4\xe0\xab\xc7\xc3\x9b\xe5\x28\x8f\x4f\x54\x22\x69\x4e\xbc\x1c\xc1\xde\x52\x73\x70\x5b\x14\x50\xea\xaf\x5a\xef\x3e\xfe\xe5\xd5\x5d\xd1\x15\x9b\xcd\x29\xa2\xb8\x7a\x90\x20\x00\x73\x75\x79\x24\xd3\x89\x98\xe5\x73\x72\x5a\x19\x76\x2c\x79\x22\xf1\x46\xb1\x91\x89\x22\xf6\xc1\xeb\xd4\x81\x30\x29\x14\x40\xd9\x17\xb1\x0c\x53\x4a\xff\x62\x76\x8f\x3f\x19\x46\x78\xdf\x93\xc8\x4c\x4a\x72\xf8\xae\x61\x6c\x57\x49\xce\x03\xa9\xa9\x3e\x67\xe3\x53\x3d\x1c\x92\x9f\xad\x72\x24\x8d\x22\xaa\x66\xda\x8a\x4d\xe1\x97\x96\x34\x1a\x2c\x79\xc1\xb5\xe1\x9e\xe1\xd8\x0a\xf9\xbb\x1f\x3b\xf8\x3b\x7b\xf4\x00\xfa\xc9\x9a\x96\x4c\x50\x44\x2f\xa1\xb2\xe6\xcd\xc8\xe9\xfb\xd2\x92\x25\xf9\x74\x97\xa5\x45\x46\xcc\x65\x8d\x0a\xe7\x9d\x09\xe7\xab\xc4\xfb\x37\x70\xb0\x72\x20\x88\xbb\x7e\xef\xf7\xea\x9c\x71\x0f\x93\x54\xe6\x7f\xf0\xfd\x3e\x91\x4c\xd1\xbe\x85\x4b\xa1\x8a\x90\x40\x4b\x30\x63\xf9\x34\x11\x67\xe3\xa9\xc8\x52\x6d\xea\x22\xa9\xf9\xda\x85\xf7\x8f\x74\x8c\xe4\x26\x63\x65\xcf\x23\xce\x18\x3a\xb7\x58\x67\x0a\x2c\x49\x8b\xd0\x35\xde\x42\x16\xbb\x8d\xb0\xe1\x00\x4b\xe0\x62\x6e\xa4\x5a\x5a\x9f\x82\x57\x4a\xee\xb6\x90\xc6\xcd\xc2\x02\xf7\xdb\x8a\x55\x71\x74\xcd\x02\x81\xd6\x15\xd7\x2f\x79\xb1\xe5\x2a\xd1\x14\x8a\x02\xcf\x92\x11\xa1\x5b\xd6\x1f\x9f\xf6\x4d\x2f\xc8\x7e\x5f\x24\xfd\x2d\x39\xdd\x9a\xdb\x9d\xdd\x95\xbb\x9a\x3b\xa4\x8c\xec\xf7\xd1\x47\x11\xd1\x0d\x7b\x2b\x93\x25\x5d\x93\x69\x74\x13\xa5\xab\x38\x36\xa1\x8c\x2d\xa7\x91\x88\xd2\xfe\xca\x10\xf7\xd2\x12\xf7\x25\xc1\xed\x11\x6d\x81\xd4\x98\xc8\xed\x7e\xbf\xd9\xef\x93\x0d\x8b\x4c\x0b\x16\x71\xbc\xe8\xb3\x0d\xb9\x77\xcc\xfa\x84\x16\x89\xdf\xb6\xf9\x2a\xd9\xc4\x71\xb2\x60\x1b\x42\xc5\xf9\x38\x8e\xfb\xd0\x48\x8b\xbc\x6b\x1a\x79\xc7\xfe\xce\xd1\x7b\x95\xa4\x19\xa1\x9a\x96\x81\xd6\xd9\x09\xf8\x07\x06\xb9\xdb\xdd\x68\x9d\xeb\x0b\xe7\xb1\xec\x2e\x40\x84\x3c\x76\xc4\xc2\x8a\x2b\x2c\x14\xb1\x77\xea\xe8\xbc\x82\x85\x6a\xc0\x9d\x8e\xb7\x2c\x38\xf6\xbf\x8f\x88\xdb\xb3\x6e\x15\x07\xe2\xeb\xa4\x1c\xc2\x4a\x9b\x8c\xbe\x49\x47\xdf\x90\xaf\x6b\xd7\x1c\xb4\xa7\xf5\xae\x2d\xf1\x26\x72\x3e\x9e\x7a\x6c\xde\xbf\xa4\x08\x86\xfb\x97\xca\x6b\x16\x5a\x3b\xbd\xb1\x9e\xcd\xac\xef\x32\xe7\xd3\x0d\x47\x17\x6f\x28\xe3\x69\x7e\xc6\xc6\x69\x7e\xce\xa4\xc3\x78\xbf\xdf\x05\x43\xe9\xe6\x69\xc0\xbe\xf9\xda\xe3\x59\xed\x0e\x17\xa1\x7f\xe5\x85\x14\xa5\x56\xbb\x85\x96\x2a\xbd\xb0\x9e\x75\x02\x5a\xd2\x40\xbb\xb1\xee\xd2\x3b\x2d\x8d\x4a\xae\xdf\xc2\x99\xd7\xf0\x26\x7d\x5d\xb9\xf6\xb6\x67\x22\x55\x4c\xcc\xf8\xbc\x67\xfe\x83\xd3\x23\x32\x8c\x44\xd4\x67\x66\x53\x43\xa0\xa6\x7f\x13\xa3\x75\x56\xbe\xbd\x11\xef\x94\xdc\x72\xa5\xef\xc0\x3c\xcc\x3a\x88\xa7\x7f\x33\xa9\xd0\x41\x3c\x5c\x8d\xc9\x81\x5e\x75\x54\x5f\xf7\xe5\x6c\x6b\x9f\xf1\x39\xa4\x7e\x26\x17\xc7\xbc\x3e\x2f\xe5\xe2\x40\xb3\xe5\xf2\x07\x50\xf5\x6c\x7a\xc7\x06\xb8\xd0\x9a\xca\xa9\x9e\x46\x86\x18\x47\x69\xb4\x13\xa0\x48\x12\xcd\x93\x8d\x42\x23\x54\x14\x29\xb4\x4a\x0a\xc9\x74\xbb\xc4\xa6\xe3\x9a\xc1\x40\x80\x97\xd5\x99\x98\x33\x33\x4a\xe0\x2d\x48\x64\x1b\xce\x18\x0f\xac\xc6\xe0\xb5\x2d\x11\x74\x42\x68\x7f\x0c\x3d\x78\x7b\xcd\x55\x91\xdd\xa5\x5f\xe9\xa4\x6b\x56\xf8\x48\xcb\xcf\x5c\x4c\x79\x7a\x61\xe8\xd0\x6b\xb9\xb4\x7e\xb2\xdd\x4c\xa1\x96\x98\x40\xaf\x02\x17\xa6\x89\x44\xaf\x95\xbc\x01\xb9\xf4\x73\xa5\xa4\x4a\x22\x5b\x47\x79\xb2\xc9\xee\x4e\x84\xd4\x27\x97\xfc\x04\x7a\xb3\xda\x15\xa3\x88\xf4\x82\xee\x49\x9b\xd4\x3e\x84\x98\x69\x4f\x05\x35\x7f\x2e\xb6\x7c\x91\x72\x2a\xb7\xd9\xef\x3b\x9e\x6a\xf4\x63\x62\x7e\x1f\x1c\x40\x2b\x14\x60\x92\x7e\xc7\xc5\x60\x40\xff\xe6\x60\x6d\x89\x1d\xe2\xce\xae\x1e\x19\x66\xd7\x8e\xae\x71\x76\xfe\xcc\xcd\x10\xbb\x96\x01\x5f\x0c\x23\xdf\x92\x9c\xf0\x38\x56\x0f\x4f\x45\x67\xf3\xe1\xf1\xc8\xf7\xe1\x40\x28\xf2\x89\xe0\x12\xab\x31\x59\xe6\x7a\xec\xaa\xed\x07\x02\x1b\xc7\x0d\xf5\xeb\x42\x1c\x7b\x93\x9e\x86\xf3\x38\x02\xd6\xfd\x7b\xbc\x6f\x58\x3e\x3e\x45\xd6\x3a\xd5\x53\xe0\x98\x03\xae\x98\xd0\x17\xdc\xeb\x37\x82\x45\xec\x77\xc2\x6a\x35\x42\x6b\x7c\x6b\xbd\xc6\xe9\x17\x06\xbd\xc1\x43\x09\x06\xba\x3a\x0f\xe3\xf3\xad\x92\xdc\xbb\xae\xcf\x2b\x6e\xf3\xdc\x30\xe1\xae\x39\x41\xb8\xb5\xbf\x15\x2c\x0c\x53\xac\x5e\xbf\x7f\x00\x89\xe3\x5f\xb0\x08\xfb\x2a\xe0\x1c\x37\x3a\x38\x87\x8c\xe5\x08\xda\x50\x06\xfe\x5d\x9c\x54\xb4\x27\x02\x3b\x35\x00\x2a\xae\x90\x3c\xac\x44\x34\xc9\xcc\x85\x7d\x9c\x4e\x08\x19\x4c\x02\x93\xeb\xf2\x74\x77\x26\xe0\xe9\xdf\x75\x61\x47\xb9\x17\xae\xb6\x87\xaa\x37\x66\x00\xd1\x09\xd8\x81\x1e\xfd\xcd\xb1\x95\xc5\x4c\xcd\x6d\x8b\x47\x8b\xb5\x39\x81\x7f\x0f\xe6\x4d\x39\xce\x5b\x52\x48\x08\x4e\xf7\x51\x78\x78\x20\x86\x00\xbe\x37\x5b\xff\x89\x4e\xbb\xf4\xd8\x4e\x7e\x53\x7e\xc6\x91\xb8\x9a\x0e\x42\x8e\xf2\xe1\x0c\x5b\x9e\x70\x62\x35\x3e\x7d\x2d\xef\xef\xb6\xbc\x56\x13\xb9\xe7\x60\xc7\x5b\x2d\x32\x14\x8d\x50\xc1\x78\x8e\x05\xdd\xe4\x41\xb4\xf3\xe2\xab\xd8\x98\xe6\x2c\x11\x15\xac\xe4\xa3\xc7\xc0\x13\xa0\xab\x58\x33\x5c\x44\x33\x31\x7b\x3c\x47\xf6\x2c\x3c\x53\x33\xa6\x06\xf9\xf9\x39\xb8\x25\x4d\xb2\xa9\x98\x3d\xfe\x3a\x1b\x4e\xe6\xe9\x98\x9c\x33\x49\x72\x96\x79\xb3\xdd\x7e\x02\x91\x83\xc9\xfc\x4c\x12\x72\x0f\x05\x7e\x9d\x0d\x1e\xcf\xed\x89\xaa\x58\x36\x98\xe0\x53\x4c\x69\x76\x1a\x02\xd4\xbe\x5d\x01\xd0\xa0\xa5\x2d\x27\x11\x49\x87\x13\xc7\xeb\x94\x67\xe3\xa9\x4e\xc7\x8c\x95\xc8\x72\x69\x8f\x94\x52\x0e\x27\x38\x50\x86\xf8\x36\xc6\xa8\xb1\x85\x0c\xf5\xa8\x8c\x41\x80\x6b\x31\x99\xa6\x17\xd5\xef\xc4\xe2\x65\x57\xd3\x9b\x70\x82\xc4\x87\x40\xfe\x54\x43\x65\xc8\x71\x76\xcf\xa4\x2b\x00\xd3\xa0\x5b\xe2\xd9\x78\x1e\xe4\x6b\x2e\x01\xa7\x23\x07\xac\x4a\xa6\x9a\x27\xb7\xae\xf0\x16\xad\x9e\x43\x66\xee\x1b\x34\x67\xae\x2a\xec\xbb\xd5\x49\x6e\x91\xd8\x7c\xa6\xe7\x44\xcd\xcc\x9f\x79\x1c\x5b\x95\x3a\xfb\x5d\xb1\xe1\x90\xaa\xba\x85\x8d\x4f\xe5\x99\x09\x72\x04\x46\x3a\x02\x93\x31\xcc\x3a\x93\xf3\x79\x2f\xf3\xe5\x65\x0e\x4b\x79\xb4\x86\x3e\x22\xae\xa5\x9a\x85\xdf\xf3\x69\x55\x79\x18\x4c\x52\x13\x60\x0e\x81\x5a\xfb\x30\x04\x19\x3b\xa7\x2b\xf4\xe9\xaa\x90\x97\x59\xd1\x6a\x55\xc9\x7c\xdc\x4c\xce\x7b\xe5\x68\xab\xf8\x32\xc9\x61\x36\x49\x1c\x5b\x34\x5e\x41\xcb\xd1\x75\x56\x10\x5f\x0b\x7e\x56\x58\xa5\x66\x8e\x2e\xfc\x55\xff\x38\x27\xb6\x94\x0b\xbf\x34\x2d\x4f\x95\x70\xf6\x0c\x2c\xb5\x51\xea\x39\x15\xf6\xba\x25\xac\xaf\xde\x94\x1b\x62\x06\xe4\x00\xc5\x85\x4f\xa5\x54\xcb\xee\xa5\xd0\xa2\xba\x00\x57\xe6\x6a\x7c\x6a\x6b\xac\x6a\x32\x24\x3b\x8d\xe4\xe5\x3f\x11\xc3\xc9\x1d\xad\xd3\x3a\x89\x48\xa1\x51\x40\xef\x52\x81\xf4\x59\xef\xf7\xc8\xfd\x9b\x56\x81\x32\x79\x47\x9b\x6c\xb5\xef\x6d\xb5\xf5\x42\xeb\x45\x40\x76\x73\x01\xeb\x2e\xe2\x4d\x35\x56\xaf\xb5\x27\x90\xbe\x00\x44\xcc\xa4\x1c\xe4\x92\x07\xc0\xad\x7d\xe2\x7c\x70\x76\x96\x57\x15\x83\x2e\xd7\x28\x38\xb0\x18\x1f\x82\x32\x41\xd2\xf9\x24\xa4\x85\x83\x1a\x17\x1e\x78\x6b\x3e\x50\xbc\x05\x3c\x41\x36\xa2\x63\x62\xc0\x5f\x37\xec\xb1\xa6\x24\x85\xfb\xd3\xd7\x4d\x1d\xce\x7e\x35\x93\xe8\xd2\x99\x9f\xd5\x13\x4c\x79\x23\x47\xca\xcf\xc1\x32\x8c\xe5\xe8\x6a\x9c\x0a\x56\xa3\xe4\x76\x9b\x09\xe6\x49\xd9\x67\xb7\x1c\x70\x10\xc6\x47\x06\x61\x90\xa8\xa9\xaf\x0a\x3b\x3a\xfc\x9c\x27\x82\xa4\xe6\xa4\x59\xf2\x55\xb6\x2b\x74\x85\x8f\xdb\xc1\xdb\x7f\xaf\x93\x70\xe8\xaa\x5c\x1e\x67\xb7\x23\xd3\xb3\x56\xa6\x92\x6b\x7c\x5d\x41\xf7\x1d\x5d\xec\x9a\x53\x64\x10\x41\xc7\xbd\x4a\x44\xeb\x01\x58\x31\x6e\x9f\x69\xac\x43\x10\x78\x41\xac\x85\xb0\xfb\x83\xdf\x3e\x86\x76\x32\x41\xfb\x22\x8e\x9f\xc8\x44\xa1\x15\x63\x3d\xb5\xc5\x09\x1f\x1f\x0c\xaf\x06\xaa\x49\xd8\xe2\x26\x9f\x76\xdd\xc0\x6b\x35\x6c\x03\xb3\x1b\xbf\x27\xf0\x15\xdb\xa7\x17\xe4\x5e\xd4\xeb\x31\x64\xa8\x16\x30\x33\x04\x30\x69\x07\x5a\xcb\x40\x91\xe8\x50\x35\x84\x3e\x91\xcd\xb4\xa4\x9d\xdd\x42\xb1\xd3\xc1\x40\x41\x77\xcc\xae\xfa\x5e\xac\x64\xda\x78\xe1\xef\x5a\xd2\xe6\x3c\xaa\xf3\xb2\x2d\xe4\x5f\xcd\xb8\xc5\xa7\x6d\xac\xd3\x5a\xd2\x83\x63\x0d\x90\x66\x25\x9a\xbd\x05\xe0\xd7\x5a\x1a\xe7\xde\xdd\x6c\x3e\x4d\xd1\x8c\x2f\xe5\xf8\x64\xca\x2d\x66\x5b\xd8\xb3\xb4\x31\x6d\x90\xf2\x69\x91\x95\xa5\x4d\x0e\xbf\xe9\xe5\x95\x0b\xb3\xbf\xe8\x8d\xca\xb6\x2e\xcc\xff\xa6\x37\xf9\xf2\x8a\x6b\x08\xc3\x5f\x07\x38\x0e\x7e\xc9\xf9\xcd\x56\xaa\x8e\x0d\x61\xf5\x44\x9a\xd4\xe4\x85\x53\xed\x6e\x46\xbc\x97\x07\xb8\x54\xfe\x0a\xc5\x1f\x47\xc6\xa4\x19\x05\xfc\x4b\xba\xa0\x2b\x16\x96\x42\xd7\x2c\xe1\xec\x69\x27\x1d\x26\xc4\x3d\xcd\x6c\x19\xf7\xa2\x1d\x6d\x5d\x03\x3a\x6f\x42\x2c\x72\xde\x84\xc0\x85\xe7\xc3\x58\xd3\x14\x21\xa1\x3b\xc5\x16\x25\xd7\x3f\x0b\xbe\xcc\x75\x76\x59\x70\xf0\x81\x6e\xfd\x2c\x85\xce\x80\x34\xa1\x11\x18\x85\x31\xa6\xc8\x1a\x6e\xcb\xdb\x4a\xec\x97\x5d\xca\x6b\x6e\xe5\x7e\x82\x5b\x91\xa1\x15\xce\xf9\x5b\xc3\xaa\x5b\xf2\xd4\x20\x64\x15\x68\x20\x64\xc1\x96\xd4\xe0\x0d\x02\xf0\x91\xd0\x02\xff\xb4\xd6\x0c\xee\xa4\x4a\x75\x37\xdb\xe7\x4b\x10\x7d\x6b\xb9\x3d\xaf\x47\x4c\x6d\x9f\x86\xf5\xe0\xf4\x48\x39\x67\x6c\x19\xc7\x89\xc9\x63\xdf\xce\xe8\xd6\xa7\x40\x4c\x86\x4d\x1c\x27\x5b\xb6\x19\xd6\x42\xc9\xc1\xcd\xa2\x96\x5b\x56\x79\x6a\x85\xa0\x02\x30\x35\xec\x07\xbc\xd6\xb1\x28\xa2\x11\xfc\x8a\x18\xcb\xa7\xc9\x96\x75\x0c\x48\xbd\x06\xda\x28\x60\xbc\xbd\x8d\x48\x9a\x44\xa6\x70\x28\x64\xcb\xc6\x69\xb4\x01\xec\xb3\x08\x2d\x00\xb6\xac\x6b\x9c\x1b\x0d\x7f\xf4\x98\xd4\x1b\xba\x85\xc6\xa3\xc9\x81\x44\xba\x99\xb1\x2d\x2d\xd9\x9a\xee\x58\x63\x30\x68\xc1\xd6\x8d\x01\xb4\xcf\xcd\xc9\x82\xfd\x2e\x12\xbf\x4d\x08\x09\x9d\xa8\x6d\x4c\xcc\xa2\xe9\x6b\xaf\xcf\x5a\xae\x2e\xab\x54\xe8\xeb\xee\x40\xb5\xca\xaf\xae\xb8\x7a\x2b\x7e\xe0\x77\xcf\xe4\x0d\xdc\xca\x9f\x08\x52\x0b\x07\x23\x3a\x13\xf1\xba\x11\xf1\xf3\x36\xfd\x2c\x28\xbf\xe5\x8b\xa7\x72\xb3\xc9\xc4\xb2\x49\x5f\x8b\x16\x5f\x5f\x51\xd3\x42\xcd\x78\xe8\xf8\x19\xa5\x1a\xae\xfc\xe7\x05\x5f\x68\x95\x2f\x9a\xa7\xcf\x73\xee\x6d\x25\x09\x5d\xe5\x62\xf9\x4e\x96\x2f\x5b\x64\xc5\x31\x26\x93\x9e\x06\x29\x74\xce\x86\x13\xaa\xd9\x30\xd0\x50\x94\x6c\x4c\xb3\xc6\x7d\xf2\x54\x9e\x01\x82\x40\xc6\x7e\x0c\x4e\xe1\x8c\xe6\x50\x26\x71\x62\x52\xd0\xda\x3f\xf5\x6e\xe2\xe8\x46\x5e\xf3\x97\xc7\xc4\x65\x60\xbc\x29\x2c\xa4\x6c\x85\x77\xf4\xed\x5d\x95\x5a\x55\x9a\x9b\x4d\x2c\x5a\x01\x1b\x1e\x33\x83\x36\x33\x4a\x37\xa6\x3f\x8a\x44\xe0\xd1\x8b\xc6\x40\xd0\xef\xca\x18\x51\x17\xaf\xe5\x35\xff\x25\x2f\x77\x59\x51\xdc\x91\x94\x9f\x8d\xa7\xca\xb1\xc1\x0a\xd8\xe0\x03\xdd\x49\x33\x86\xf8\x76\xf3\x60\xf3\x3d\x14\xb7\xaa\x2e\x02\x62\x54\xca\x0d\xd7\xeb\x5c\x5c\x61\xa7\xf8\x32\x21\x53\xf5\x80\x5d\xb1\x7f\x25\x4a\xbf\xb2\x72\x8c\x90\x4b\xc0\xf9\xfa\x51\x24\x8a\x8a\xaa\x4b\xfd\x89\xe7\x60\x4c\x17\xf0\xf0\xc9\xc1\x96\x02\x12\x1d\xac\xd9\x8c\xcd\xa2\x65\x9a\x1f\x0e\xc1\xca\xf8\xe5\xf8\xca\xa0\x92\xa9\xe3\xab\x23\x63\x63\x5a\x36\x57\x47\x76\xa6\x4f\x07\x83\xcc\x49\xdb\xdd\x99\x54\x52\xf0\x64\x17\x3c\x49\xc9\xa9\x64\x3b\xd8\xfd\x29\xfe\x61\x92\x26\x25\xfb\xcd\xcb\x6f\x72\x2a\xaa\xe5\x54\x77\x3b\x58\xe2\x7a\xfa\xe5\xa1\x09\x09\x26\xc2\xf9\x84\xea\x37\x96\x0e\xaa\xa0\xc3\xba\x89\x63\xd4\x54\xec\x98\x30\x90\x51\x3e\xb8\x36\x33\xc4\xbd\x21\xc1\x2c\x64\x6e\x21\x65\xb0\x90\xac\x2a\xd6\x53\x9d\x08\x9a\x39\xe4\x2d\x18\x0f\x07\x51\x72\x25\xb3\xe2\x29\xbc\x84\x81\x82\x01\x0c\x48\x18\x4a\x9c\x67\x2a\xeb\x6e\x12\x41\xe0\xcd\x70\x09\x8a\xd2\x24\xf7\x96\x6b\x1f\x6d\x74\x1c\x67\x8c\xa9\xfa\x4d\x31\x8e\x7f\x15\xf6\x2a\x4a\xdf\x9b\xc6\xec\x6c\x3b\xe0\xb4\x42\x17\x97\x74\x07\xcb\x9e\x3a\x8b\x9a\xc0\xf6\x66\x7c\x9a\x9d\xa9\x8e\x37\xed\x6c\x30\x20\x61\xf8\x2c\x9b\x07\x4d\x67\xf9\x2c\x9b\xdb\xf5\x86\xb8\xb1\x1d\xc2\x98\x0e\xa9\x94\x55\x40\x00\x21\x94\x33\x41\x44\x3d\x98\xe0\x46\x55\xbd\xf2\xf1\xda\x2b\xdf\x69\xc2\x2d\xe4\xfc\x7e\xaf\xc0\x88\x0f\x3b\x13\xc7\x62\x3a\x1c\x8a\x74\x30\x50\x01\x99\xf3\xcf\x7d\x82\xd0\x8c\xbd\x95\xf0\xac\x3d\xed\x78\xf0\x78\x2b\x41\x03\xf9\x90\x56\xaf\x7d\xb2\x2b\x61\x15\xcd\xc9\xa1\xe3\xe5\xa4\x1f\x26\x88\xe3\xbe\x29\x97\x1c\x4e\xe1\xb9\x2f\x4b\xaa\xe6\x0c\x27\x84\x9c\x92\xe1\xd0\x3a\x64\xab\x04\xbb\xb5\x64\xca\x24\x32\x7c\x7c\x87\x72\x3b\x9a\x86\x59\x4d\x76\x94\xde\xc2\x99\x26\xaf\xae\x0a\x90\xed\xdf\xa8\x5c\xf3\x5a\x13\xad\xf6\x5c\x1c\x73\xd6\x14\xee\x43\xe2\xfd\x3e\x49\xba\xc2\x59\xbf\x2b\x94\x4c\x5f\xc9\xda\x55\xcf\x6a\x45\x3d\xcb\xaf\x6b\x76\xc8\x3e\x43\x44\xd2\x67\xff\x6a\x0e\xfa\xa3\x95\x6e\x46\x3e\xf0\x3d\xf4\x30\xa2\xf8\x98\xd5\xd5\x30\x73\xb1\xb7\x0e\xa4\x8f\xbe\x58\xd5\x98\xdb\x2b\xae\x5f\xe4\xbc\x58\x26\x04\xdd\x53\x1f\x68\x85\x7a\xd3\x2e\xa1\x9f\xf4\x6b\x6f\x05\x95\xf9\x7b\xdf\x9f\x18\x8b\x4c\xe8\xe7\xcb\x5c\x9b\xeb\xaf\xe5\x4c\xda\x44\xcd\xca\x73\x9c\x0e\x9f\x06\x1d\x3e\x60\x05\xa8\x9f\xaa\xc0\xd9\x61\xa8\xc9\x57\xd3\xf4\x6b\x25\x41\x8c\x3a\x94\x5a\x5f\x58\xfb\x8f\xf0\x02\xe8\xc0\x92\x6a\x43\xe1\xb4\x25\x7b\xee\x5a\x86\x6a\x80\x81\x5e\x57\xd3\xcb\xfd\xda\x71\xbf\x35\xf4\xac\x95\x7d\xa4\x19\xd6\x4a\xf7\x9e\x47\x29\xfa\x17\xad\x39\x85\x3f\x9e\x07\x39\xc3\xf0\x2a\x90\x6e\x6d\x5a\x1a\xf0\xa1\xe9\xda\xbf\x0c\xd1\xba\xc1\x4b\x7b\xd4\xfd\x49\xc5\xa7\x09\x67\xe1\x9d\xae\x29\x7f\xf3\x07\x2b\xdc\x56\x69\xe8\x1a\xb0\xb6\x00\xda\xda\x80\x84\xb4\xb5\xa1\xf8\x94\x07\xe6\x0d\xd6\xb0\x01\x4a\x4e\x9d\xe2\xe4\x0a\x3c\xe4\xf9\x56\x71\x9f\x82\x80\x8c\x0c\xc4\x1c\x5a\xda\x84\xe8\xed\x5e\x81\x4d\xd1\x7e\x3f\x76\x4b\x26\xb0\xab\xf0\xab\xa9\x63\x81\xbc\x93\x25\xe3\xd5\x5b\x8e\x30\x1c\x36\xec\xa8\x40\x17\x00\x4b\x72\x12\xba\xa6\x4e\xa1\x8d\xd7\x72\x8b\xd1\xa0\x5b\xc8\x5b\xba\x85\x36\x99\xb2\xde\xb5\xb5\x6c\xe9\x18\xda\x14\xf6\x36\x0b\x49\x9c\xae\x21\xf7\xba\x86\xb8\xd1\x9d\xba\xa1\x08\x97\xa5\xa8\xa9\x1b\x02\x98\xc1\x45\xfe\x47\xeb\x59\xb0\xc6\x94\x7a\x8d\x09\x55\xd1\xee\xf6\x8c\xed\xf7\x8f\xfe\xf1\x71\x39\x70\x78\x41\x08\xc4\x61\xd8\xf8\x29\x87\x8b\x4d\xca\x0f\xd5\x46\x15\x2d\xdd\x09\xbc\x08\xc1\x7a\x67\xf0\xba\x1d\xec\xd9\x63\xa9\x71\x4f\x31\x80\x99\x0a\xb8\xda\x50\xc3\x35\x8e\x6f\x9d\x5b\x53\x3c\x30\x45\x4b\x1c\xd1\x43\xde\x19\xe4\x51\x39\x15\x0d\xa9\x44\xdb\x90\xd8\x0a\x40\x5a\x46\xc4\x36\xdc\xf1\x03\x1a\x11\xfb\x7c\xf8\x4c\xcf\x47\x42\xbe\xc4\x95\x4f\xee\xb9\xe1\x41\x72\x1a\x61\x6c\xe4\xf4\x5e\x06\x83\xfc\x60\xfa\xe2\x70\x83\xd4\x82\xff\x8c\x26\xeb\xfd\xb1\xa1\xef\x82\x46\x8a\xaf\x14\x2f\xd7\x11\x75\x4f\xd4\xe6\xc6\x94\x1d\xd3\x4e\xf8\x4e\xfb\x7b\x10\xb5\x39\x6b\x93\xdd\x49\xde\x9a\xfe\xc0\x7a\xee\x31\x39\xdc\x1d\x8d\xc6\x5d\xd4\x92\xf8\xd5\x57\x51\x8b\x80\x36\xd6\xc3\xe0\x22\xfa\xc6\xe6\x76\xf4\x66\xbf\xaf\x30\x3d\x87\x4d\xe1\x2a\x39\x1f\x7d\x43\xe2\xf8\xbd\xcd\xe3\xcf\xbd\xd6\xd0\x94\x37\xd9\xf6\x99\x6c\x5d\x0e\xeb\x6f\x5f\xd5\xb3\xd7\x62\x83\xc2\xc4\x4f\xb9\x1b\xb4\x46\xb7\xba\xe1\x51\xea\x3d\xae\x1d\x03\xa1\x8b\xfc\xd6\xe0\xe1\x5a\x30\x83\xf7\x77\xd7\x03\xdb\x60\x77\x62\x13\xaa\xf1\x64\xfa\xde\x54\x08\xe7\xee\xbf\x7a\x4a\x83\x9c\xee\x57\xdc\x37\x56\xdd\xe8\x4b\x45\xd8\x5d\x76\xa8\x8e\xc4\x3f\x9d\xd5\x1d\x8c\x90\x17\xe5\xc2\x7f\x32\xa7\xb5\x25\x38\x1c\xa8\x92\xc9\x05\x6e\xd7\xbf\x0b\x76\x31\xb2\x72\xf4\x92\xdd\x1f\xe8\xdf\x4c\x00\xee\x73\x84\x36\x03\xe9\x75\x45\xa1\x80\x05\xb6\xf7\xb7\x2a\x27\x6a\xfd\x98\x4b\x05\xe8\xf6\xb0\x86\x6b\x2c\x73\xad\xee\x33\xad\xe2\xd8\x7d\x1f\x52\x81\xe6\x14\x5a\xb1\x8b\xd1\xf7\x22\xd7\xec\x5e\x4b\x24\x69\xed\x7e\x04\xec\x18\xa4\x8d\x0e\x87\x1e\x57\x49\x74\x9d\x15\x3b\x1e\xd1\x28\x6a\x98\x88\x82\xbf\x3c\x00\xf7\x4a\x0c\xcf\xd3\x1f\x13\x6a\x92\x83\x9e\x12\x5e\x4b\x9a\xe9\xdd\x03\x2d\x2a\x21\x31\x4d\x9f\x18\x4e\xd9\xe7\xac\xf4\x8a\x23\xfa\x98\x3e\x69\x84\x3b\xf5\x60\x00\x82\x81\xf0\x40\x61\x23\xf2\x89\xad\x16\x78\x44\xff\x5a\x23\x79\x9f\x13\xdc\x04\x9c\x50\xb0\xbc\xaa\x6a\xad\xc1\x5e\x77\x36\x1c\xc8\x5f\x80\x90\xcd\x74\xf8\xa0\x4b\x55\xe8\xa0\xb2\xc7\x2b\x2a\xdc\xa5\xed\x91\xb3\xb1\x7b\x6b\x97\x0e\x2c\xc6\xbd\x8c\x6b\xab\xc9\x36\x9c\x30\x26\x9d\x12\x1b\x93\x03\x6f\x15\x67\x1f\x34\xb7\x3c\x51\x54\x12\x72\x50\x83\xc1\x81\x04\xe0\x0b\xa2\x81\x00\x90\x87\xba\xac\x9a\x8a\x59\x3e\x07\x20\x97\x59\x3e\xb7\x77\x09\xf3\x6b\xb1\xf6\x35\x20\x82\x37\x8c\xed\x96\x2f\xf2\xac\xc0\x1b\x18\x7d\x34\xfb\xb8\x1b\x8f\xc7\xe3\xa1\xf9\x33\x59\x99\xff\xff\x07\xfc\x9f\x2d\x3f\xee\x1e\x8f\xc7\x97\x43\xf8\xb3\x32\xff\x3f\xfe\x4f\xf8\xff\xbf\x3e\xee\x56\x7c\xb5\x9a\x3f\xba\xa2\xcd\x97\x1f\x0f\xfc\x18\xd4\x01\xe6\xbe\x3f\xf1\xab\xe7\xb7\xdb\x44\x8f\x4a\xb9\x53\x0b\x0e\x4e\xf0\xcd\x21\x1c\x7d\xd4\x11\x99\x46\x51\x1a\xed\xcd\x2f\x1a\x5d\x45\x84\x8a\xbe\x5d\xd3\x71\xcc\x47\x96\x62\x26\xa4\xdd\xfc\x77\x45\xb6\xe0\x6b\x59\x2c\xbb\x9e\x95\x34\x38\xe6\x2f\xb7\x99\x00\xcf\xfc\xff\x4f\x44\x41\x44\x2e\xae\xb3\x22\x5f\x82\x8e\x6b\x00\x2d\xa9\x73\x5d\x70\x16\x7d\xfc\xb8\x8b\x06\x15\x90\xd8\x13\x9d\x8c\xcd\x9d\xdb\x72\x0a\x93\xff\x4e\x5a\x52\xf7\x4c\xe5\xd9\xb0\xc8\x2e\x79\x11\x51\x5b\x8c\xa1\x88\xb5\xd6\x84\x7d\xf0\x6b\x93\x5b\xa9\xa0\x9d\x86\x6a\x43\x6c\x77\xfa\xc2\xf0\x0e\x11\xdd\x4c\x23\xeb\xb2\xd1\x49\xea\xa3\x14\x6c\x00\x33\xc5\xb3\x88\xd6\x30\x65\x1a\x4a\x69\x55\x31\x27\x8b\x4c\x80\x5a\x5a\x72\xc7\x35\x39\xb9\xe4\x27\x68\x95\xb7\x3c\xc9\xc5\x49\x76\xa2\x76\x42\xe4\xe2\xea\xc4\xd4\x20\x55\x14\x34\xb0\x21\x79\x8b\x68\xff\x0a\x23\x6e\xd6\xb2\x00\x9f\xd5\x78\xb2\x7e\x0b\x26\xf5\xc1\x2e\x5d\xf3\x8d\xa1\x29\x96\xb4\xd5\x27\xe6\xa9\xd9\xa5\x3f\xd5\x36\x29\xea\xfc\x75\x67\x08\x6d\x68\x37\x0a\xb1\x92\x83\xc5\xb1\x51\x89\x20\xbd\x3c\x8e\x73\x00\x63\x5e\xac\xab\x5f\xa0\x12\x4d\xd5\x28\xd3\x18\xee\x7e\x25\x9c\xe6\xfb\x3d\x22\x91\xdb\x89\x70\x78\x97\x48\x20\x2a\xca\xe1\x18\x34\x43\x95\x1a\xf3\xd9\xc5\xc7\x4d\x93\x2f\x02\x9f\x99\xb0\xa8\x06\xa0\x0d\x12\x78\x64\x15\x37\xb9\x40\x67\xa7\x51\xd4\x4c\x81\xe1\xd0\xba\x34\xf9\x22\x52\x98\xad\xe5\x7b\x60\x51\xdf\x7b\xb2\x68\x49\x64\x37\x36\xd8\xb7\x30\x25\xe0\x31\xc4\x4f\x8c\x3d\xee\x22\x3a\x9b\xd7\xba\xff\xac\x32\xef\x68\xce\x65\x60\x7b\x67\x16\x44\xfb\x94\x68\x78\x0b\x09\x1f\x41\xa6\xdf\x05\x8a\xc3\xc8\x8f\x47\x63\x33\x14\x1d\x9b\x67\x21\xaf\xb9\x7d\xd3\x7d\xc3\x6f\xf5\x7b\x79\xe1\x90\xc8\x5b\x93\xf5\x6d\xad\x81\x1e\xb1\xdc\x6e\xb1\x48\x64\x3a\xbf\xe6\xf5\x45\xfa\xd2\x8c\xd3\xb7\x5d\x70\xe9\x6d\x58\x78\xde\xe4\x12\xff\x04\x3a\x7a\xd3\x3a\xaf\x71\x62\x59\x57\xf0\xad\x9e\x3c\x38\xee\x0a\x75\xf0\x30\x6f\x44\x27\xf4\xa7\x8e\x32\x5f\x48\xb5\xc9\xda\x8f\xf0\x4e\x20\x7a\x08\x32\x95\x6b\x79\x83\x16\x70\xbf\xae\xb9\xb8\x70\x5e\x7c\xa0\x51\x5c\x57\x44\xc2\xf0\x97\x5e\xdc\xfa\x56\xd4\x51\xdd\x82\x06\xfc\x9a\x97\xfc\xa9\xdc\xde\x3d\xdd\x05\x07\xba\x13\xb5\x34\xba\x6a\xd6\x4a\x05\x4d\xc8\x98\x9e\x26\x00\xba\xd7\xc2\xea\xbb\x2c\x76\x2a\xa9\x39\x1b\xc8\x4b\x43\x26\x97\xac\x0f\x3e\x43\xdb\xc1\x93\x0e\xbc\x3f\x6c\x83\x35\x22\x47\x57\x50\xa6\x71\x36\x13\xb0\xb5\x1d\x0d\xd4\x6d\x4c\x3a\xcb\x6c\x57\xd3\xe2\x5c\x30\xb6\xf6\x82\xc3\x9b\xd1\x7d\xd6\x4f\x04\x38\xff\x45\x9a\x46\x02\xc4\x80\xc0\x81\xc2\x0b\x9b\xb7\xa4\x39\xd3\xd3\x0f\x79\xfa\x55\xde\xcb\x3b\x90\xfa\xd1\x51\x04\x68\x2b\x47\x54\xa1\xda\x32\xa1\xc7\x53\x9a\xa3\x45\x99\x94\xf0\xe3\xa1\x94\x08\x0e\xaa\x40\x2c\xf7\x50\xba\x82\x67\x66\x3b\xa9\x11\xfc\x38\x9e\xd2\x0c\x8a\x1a\x99\xbf\x86\x2f\x01\x66\xb4\xed\x7b\x25\xa4\xc8\xb8\x1a\xbe\x2d\x72\xf1\xf9\xa7\x4c\xf3\x88\x7e\xf3\x97\x71\x18\x13\xca\x6b\x22\x5a\x8b\xc2\x1b\xa2\xd9\x14\xc1\xca\x45\x0f\x6a\x4f\x83\x04\xef\xb8\x32\x5b\x08\x26\x2b\x48\x78\x23\xd5\x67\x43\x31\x23\x20\x8f\x3e\xe8\x19\x2f\xb2\xbb\x20\x6c\x55\x98\x9d\x25\x00\x81\x0b\x8a\xf8\xec\x4b\xc8\x96\xcb\xd7\x72\xc9\x41\x4d\x01\x56\x52\x15\xb5\x45\xd9\x16\x20\x39\x06\x85\xed\xc4\x52\x3e\xe3\x5b\xbd\x8e\xe8\xe3\x71\x07\x19\x95\x0b\xef\xae\xcb\x27\x65\xda\x2e\x5c\x1b\x03\x68\x94\xae\x95\x8f\xbf\xb1\x25\x5f\x5b\x75\x08\x37\x50\x93\xf1\x97\x59\x95\x4d\x76\xfb\x32\xbf\x5a\x17\x66\x90\x10\x7d\x21\xa2\x13\xfe\xd7\xa0\x1b\x1b\x79\x8d\x1b\xc5\x70\xf2\x38\xa6\x1d\xf4\xff\xd8\x96\x79\x67\xb5\x1b\x3c\x8b\xa7\xb3\x4b\x60\x9c\x8f\xdd\x35\x8e\xdc\x23\x47\x3a\xbb\x04\xfd\x66\xa6\xf7\xfb\x28\xb2\x85\x65\x3b\x2d\x2d\x5e\x69\x65\x04\x2a\xcc\xad\xc9\xdc\x57\xe0\xce\xa6\xe0\x2b\xdf\xf0\xd7\x36\xa4\x07\x37\xb3\x5c\x40\x00\xab\xd7\x5f\x5d\xda\xa0\x80\xfd\x3e\x32\xc5\x46\x20\x10\x48\x1a\x91\x8c\x13\x9a\xa9\x2b\x30\xa4\x71\x62\x97\xf3\xc7\x80\x36\xbd\xe4\x5b\x6e\xee\x37\x8b\x9c\x97\xe8\xc6\xa8\xb2\x4b\x41\xed\x58\x7c\x50\xf6\xd9\xe9\x63\x42\xa8\x50\x70\x53\x3c\x50\xdf\xc0\xef\x5f\x3f\x6f\x34\x50\x55\x69\x14\x2f\x65\x71\xdd\xec\x45\x37\x10\x35\x8f\x63\xd5\xf5\xc6\xcd\x19\x14\xe8\x15\x3f\x78\x1c\xb7\xf3\x82\xae\x67\x67\x01\x10\x43\x1c\x4b\x6e\x8a\x42\xbd\xd0\xde\x11\x10\x86\x7b\x13\x0b\x5e\x5d\x12\xce\x3e\x59\x24\x6a\xb4\x30\xd0\xf0\xa7\x72\x96\xda\xd1\x83\x47\xff\x98\x7d\xbc\xf9\x38\x9c\x0f\x3e\x3e\x72\x3f\x06\xb7\x9b\xe2\x2b\xff\x88\xe3\x5e\xff\x6a\x63\x93\x44\xd9\x76\x5b\xe4\x0b\x10\x51\x3d\xba\xdd\x14\xfe\x6a\xd0\xae\x63\x8a\x0d\xe4\x87\x94\xef\xf7\xf8\x1b\x17\xc0\xc1\x0c\xb8\x55\xe6\x6d\xcc\x88\x66\xf5\xea\x3c\xc0\xa7\x50\x33\x6d\x87\x03\xdc\xb8\x57\xad\x73\xe6\x28\x16\xf5\xe3\xd1\xb6\xc8\x72\x11\x39\xa0\x34\x0b\xb4\x96\xaf\x92\xbc\xad\x6e\x1c\x8e\x78\xce\xf2\xaa\x0a\xff\x90\x66\x58\xff\x9c\xe4\xcd\x9c\x92\x00\x00\x65\x67\xe8\x2c\xfa\x14\x0d\xe4\x1c\x70\xfd\x08\x35\xff\xb3\xdc\xfc\x3c\xc0\xb3\x6b\x30\x3d\x54\xd7\x34\x88\x4d\x79\xfe\x93\x85\x71\xe6\x2e\x65\xf6\x88\xa9\xa8\x12\x55\x42\xdb\xc2\x08\xa8\x2a\x08\x98\x49\xef\x27\x4d\x05\xdb\x00\x66\x11\xe6\x81\xb6\x15\xbd\xc0\xca\xa7\xe9\x8f\xef\x73\xbe\x7d\x2f\x9f\x8b\x65\x82\x16\x01\xe1\x86\x4a\xc2\x31\xa7\x58\xac\x95\xce\x3a\xba\xf1\xfc\x56\x73\x51\x9a\x23\x19\xc9\x05\x3e\x3c\x77\xcc\xfd\x8d\x59\xc2\xed\x59\xe2\x64\x9a\x9b\x6d\x95\xc2\xff\xec\xfe\x40\xaa\xce\xf8\xb2\x5b\x94\xc7\x53\x88\x06\x15\x78\x26\x17\xc7\x32\xdd\xe5\x47\x73\x59\x59\x0d\x57\xd0\x35\x09\xf8\x7b\x2e\xce\x30\x23\x2f\xa5\xfc\x5c\x23\x1b\xd2\x21\xec\x11\xf4\xbd\x90\x99\xd1\xc0\x19\xb5\xc3\xa0\xf8\x55\x5e\x6a\xae\xf0\xb1\xb7\xe5\xe1\xa0\xad\x1c\xcf\xc9\x7e\x9f\x64\x30\x06\x17\x30\x10\x56\x0b\x3c\x9d\xcd\x0f\x86\x76\xce\xf8\x1c\xf4\x3d\x91\x9a\x61\xe1\xdf\x41\x8a\xce\x2a\x50\xaa\x56\x6f\x85\xc3\x8f\x81\xc2\xbc\x06\x3a\x9a\x60\x6d\x15\x5f\xa6\x82\x5e\x67\x45\xaa\x0e\xb6\x57\xa5\xe9\xd5\x42\x6e\xef\x40\x93\x9c\xb5\x04\x46\xfd\x31\x63\x4c\x7b\x63\x27\x8b\x3b\xea\xd2\x7b\xf5\x82\x2a\xa8\xda\xef\xf7\x07\xbf\x09\x15\x2c\xf4\xba\xd1\xcf\x49\x2e\x4a\x9d\x89\x85\x21\x34\x70\x24\x80\x46\x47\xee\x9d\x2e\xcf\xcd\x09\x30\x53\x73\x96\x07\x2a\xef\x3b\xd3\xdc\xca\x40\xad\x35\xe6\xf6\x95\x93\x07\x69\x00\x87\xdf\x7f\x25\x60\xd4\xd4\x0b\xcc\x28\x1a\x7d\x86\x37\x6d\x5e\x45\x9f\x56\xf6\x73\x81\xe5\x05\x5a\x6a\x8a\xfd\x5e\xe0\xd1\xc7\x9c\xb1\xa6\x66\x02\xa5\x42\x94\x33\x8c\xf3\xad\xdf\xef\xd1\x08\x8e\x53\x48\x90\xea\x03\x4e\x41\x81\x53\x00\x8a\x58\x25\xbb\x47\x27\xa2\x4f\x8a\xa2\xb9\x87\x83\xbb\x47\x52\xa1\x8c\x59\x63\xa4\xb1\x7b\x4d\xaf\xf0\xcd\xc0\xfe\x87\x22\xeb\x57\x59\x6f\x3d\x50\x68\x08\x55\x12\x21\xe0\x1c\x5c\xe0\x83\xd0\x35\xcf\x96\x91\x2d\xf9\x73\x5e\x14\x0d\xe5\x73\x72\x0f\x66\xf5\x3e\x40\x5b\x8c\x35\x67\xdc\x65\x87\xf2\xc6\x63\x41\x55\x06\x5c\x35\xb4\xb2\x4a\x56\x65\xa1\x06\x00\x88\x22\x48\x7d\x16\xf6\x74\xea\x40\xd0\xdc\x9b\x27\xe0\xa4\x54\x08\x79\x13\x3a\x26\x4e\xe3\xe8\x58\x22\xb3\x2a\x0e\x35\x55\x59\x67\x1f\x66\x81\x8f\x0d\xe5\x04\x2d\xf2\x82\x6b\xfe\xe5\x6e\x87\x45\x6d\x1d\x82\x68\x42\xbc\x0f\x62\x2d\xd3\x57\xce\xe5\xbe\x45\x88\xb3\xb1\xe8\x8f\xd8\x55\x86\x20\x60\x2b\xfd\x40\x6d\xbc\x55\x1b\xef\xa8\xcd\x85\xb9\x82\xf1\x09\x62\xf9\x27\xca\x0f\x2c\x48\x2b\xb3\x0b\x3b\x76\x81\xaa\xce\xe0\x9b\x5e\xd8\x0c\x43\x12\x9c\x81\x45\x82\x0f\xf2\x63\x78\x85\x17\x07\x9b\x09\x47\xf6\x68\xab\x7e\x6a\x98\x52\xfc\xdb\xcd\x42\x3d\x9d\x66\x63\x5a\x0e\x2d\x42\x7d\xce\xc1\x64\xdc\x68\x6c\xef\xd8\xda\x50\xd0\x74\x73\x31\x69\x6c\x2d\x13\x94\xc0\x2b\x5f\x2b\xca\x04\x25\x36\xd7\xb1\x9d\x59\x8b\x73\xe5\x1c\x4b\x5c\x8b\x83\x37\x26\xf9\x4c\x2e\xc0\x99\x53\x23\x65\x43\x67\xac\x8b\x90\xb8\xec\xcf\x1b\x7a\xa1\x47\x32\x87\x88\x8a\x26\xa7\xf9\xfd\x27\x6a\xae\x69\xab\x55\x56\x32\x2a\x4b\x78\x8d\x2c\x1c\x2a\x7f\xe2\x03\xeb\x3d\x39\xcf\xca\x74\x72\xa8\x57\x76\xb1\xf9\x77\x6b\xcc\xab\x1a\xff\x44\x65\x5f\x1c\x94\x23\xb5\x74\x1b\xe8\x54\x84\xd0\x42\x02\x08\xf6\x4c\x25\x8a\x9c\x12\x34\xcd\x10\xcb\x64\x62\xee\x9d\x16\xf4\xa9\x02\x56\xca\xd9\xeb\x3c\x51\x84\x4a\x96\x4f\xf3\xd9\x78\x3e\x2a\xf8\x35\x2f\xfe\xe3\xf1\x54\x67\x89\x22\xa9\x80\xff\x55\x17\x49\xdd\x3a\x07\x1c\x7a\xfa\xd6\x14\x91\x6a\x2a\xd1\x1f\xc1\x97\x07\x7d\x18\x0c\x44\x7b\x7b\x7e\x71\x28\xfe\x25\x2a\x72\xf2\xbf\xbf\x67\x51\x55\xd6\xb6\xb7\x45\xe4\xfe\xcf\x37\xf7\x4b\xcd\xf9\x37\xd6\xec\xff\x0e\xc5\xeb\xa6\x68\x27\x6a\xb4\x58\x9f\xc1\x21\x0f\xbb\x58\xd9\xd3\xb8\xe4\x99\x5a\xac\x93\x47\x1f\x2f\x1e\x91\x69\xb8\x47\x52\x55\xeb\xc8\xcf\xdb\x46\x0f\x40\x0b\x36\x19\x4e\x28\x22\x61\xf8\x84\xa0\xa5\xde\x95\xb4\x96\xf2\x5d\x76\xf5\x50\x91\xce\x78\x0f\x13\x3e\x54\x64\x95\xd2\x0c\x41\xc7\xec\x83\xf6\x37\x14\x8a\xef\x63\x2e\x69\xd7\xc2\xc6\xb4\xf5\xa4\xa0\x47\xfa\x70\xb9\x88\x22\x13\x24\x7f\xb8\xec\x20\xf9\xaf\x52\x2d\x1f\x2c\x1b\x70\x68\x20\xe9\x77\x4a\xee\xb6\x0f\x16\x8c\x60\x34\x55\xe2\x07\x0b\x0e\x12\x9b\x46\x3c\x58\xb0\x6b\xc4\x92\xc3\x0b\x25\x3e\x8e\x35\x12\x5b\x3d\xf5\xda\x40\xdb\xf4\x4d\xbb\xd5\x30\x79\x3d\xb5\x69\xc9\x17\x4b\x0f\x5a\x03\x2a\xbd\x0f\x97\x1e\xa4\x86\x41\xf9\x62\xf1\x7e\x60\x5c\x8e\x2f\x54\xe0\xd3\xe3\xb3\xff\x93\x9d\x6e\xb2\x01\x0d\x60\x05\x07\xba\xe6\xb3\xbc\x6e\x37\xa8\x95\x05\x10\xe7\x5c\x86\x57\xbc\x2c\xbf\x58\x87\x47\x7e\x30\xb9\x4a\xae\xf4\xfb\xec\xb2\xc5\x4e\x34\x8d\x01\x3e\x06\xe9\x2f\xe4\xaa\x95\xa7\x52\xbe\x9a\xcd\x29\xfa\x72\xa9\x7b\x89\x06\x92\xd4\x44\xb8\xeb\xc2\xd6\x42\x8d\x02\xe1\x40\xfe\x01\xa0\x61\x21\x93\x8a\x40\x79\xbc\x5a\x50\xc1\x26\x3d\x6d\x95\x09\x64\xa2\x86\xd9\x7f\x28\x42\x0e\xed\x0e\x94\xa0\xd9\xe1\xec\x46\x5b\xfd\xed\x32\x89\x38\x36\xd6\xa9\xa1\xd1\xde\x70\x26\x89\xfc\x18\x46\x60\x04\x93\x89\x72\x2b\x4b\x0e\x0f\xdd\xb5\x5a\x8e\x23\x77\x75\x0c\x56\xe0\x84\xe6\x18\x6a\x06\x52\x7d\x59\xb1\x10\x79\x70\x8d\x02\xff\xab\x04\x70\x35\xcc\xdd\x49\x56\x60\xfb\x39\x28\x28\x6c\x79\x82\xc9\x69\x8e\xf0\x92\x04\x7e\x9c\x8f\x49\x57\xfc\x60\x42\xa8\x1f\xd3\x9f\x32\x71\x65\x26\xc1\xaa\x79\xdb\xfc\x83\x7a\xc0\x63\xb8\x8d\x86\x55\x3c\x26\x34\xa7\xd1\xc0\x0f\x50\x14\x18\xf3\x3b\x6c\x6e\xaf\x7c\xe2\x8c\xf7\x1b\x7d\x73\x00\x80\xbd\x0c\x55\x25\xba\xda\x33\x26\x03\xde\xe5\x05\x7e\x90\x79\xf4\xac\x0a\x4f\xa2\x6a\xe4\x70\x42\x3b\xc3\xe9\x84\xd4\x5b\x7d\xa8\x7b\xf9\xc9\x69\x0e\x0b\x2e\xbc\x47\x97\x89\x20\x86\x4f\x12\xfc\x06\xac\xc2\xc5\x12\x75\x7b\xfe\xed\xe5\xe0\xd5\x66\x10\xc0\xe6\x54\xb8\x95\xa0\x3a\x12\xcf\xc4\xbc\xd7\x18\x9c\xce\x01\xa1\xca\x79\x27\xb2\xa6\x48\x15\x82\xa0\x5b\xfa\x96\x1f\x08\xee\x92\x83\x09\xb5\x88\x82\xe4\xe0\x30\xe3\xa8\xdc\x72\xd1\xba\x10\x77\x12\x11\x11\xd1\x08\xdf\xeb\xbe\xa0\xed\xcf\x47\x8d\x58\x73\x43\xa4\x0b\xc5\x2e\x2c\x6a\x52\x4d\xcb\x6c\xa5\x6a\x24\x08\xed\x53\xd1\x4f\xc5\xb6\xc8\x75\xf2\x68\x98\x4c\xfb\x5f\x91\x47\x86\x94\x24\x9c\xc9\x99\xf4\x53\x3d\xa7\x63\x72\x9a\x9d\x55\x01\x60\x37\x62\x51\x1a\xe4\x2c\x03\x51\xf5\xa3\x7f\x24\x8b\xcd\x72\xbf\xe1\x3a\xdb\x6f\xc8\x57\x8f\x72\x8b\x97\x49\x48\xce\xfa\x63\xbf\x8e\x1f\xfd\x23\x4b\x0a\x4d\xa6\x61\x02\x5d\x4f\x90\x2c\xf6\x0b\xad\x8a\xfd\x42\x0a\xad\x64\x51\x2b\x4b\xb8\xa4\x20\x76\x7b\xf4\x8f\x32\x59\xe7\x2b\x5d\x4b\xd2\xd2\x7c\xf9\x59\x28\xbe\x90\x57\x22\xff\x83\x2f\x4f\x36\x72\x99\xaf\x72\xae\x4e\x40\x4e\x7f\x12\x0d\x4a\xd2\x53\xe0\x73\xc9\x49\x53\x40\x3f\x3b\x7a\x52\xe8\x61\x34\xe0\xd6\xeb\x2d\x8b\x9e\x6a\x55\x60\x40\x6e\x03\x36\x4b\xfc\x56\xf8\xed\x7c\x81\x72\x42\xf9\x61\xa1\x46\x97\x59\x99\x2f\xd8\x3d\xb0\x11\x51\xc5\x5f\x45\x14\x99\x85\x28\xe0\xa3\x22\xfa\xf3\xd6\x04\x20\xa7\x18\x51\xe0\xd8\xa2\x8a\x21\x8c\xa8\xb9\x50\x45\xfe\x6e\x15\xd1\x97\x72\xc3\x5d\x40\x75\xb3\x8b\xa8\x65\x0c\x23\xc7\x22\x62\x88\x2b\xcf\xfd\x8e\xe8\x33\x38\x81\xd3\x28\xe4\x31\x22\xfa\x6d\xb6\xf8\x5c\x6e\xb3\x45\x15\xe1\x34\x79\x6c\xef\x7c\x82\xa8\x95\xc2\x9c\x17\x51\x75\x76\xf8\x2c\xe6\x77\x1a\x55\xa7\xbb\xe9\x8b\xe1\x08\xa2\xe6\xc6\x8f\xe8\xf7\x70\x48\xa4\x51\x63\x55\x47\xf4\x79\xb9\x48\xa3\x86\x88\x2e\x32\x2b\x7d\xb4\x5d\x3c\xc3\x2a\xd9\x3d\xce\xd0\x93\x28\x8d\xbc\x6c\x30\xa2\x18\xf8\x0c\x9b\x6b\x45\x52\x2e\xf4\xef\x80\x4e\xb6\x94\xbe\xa9\x3e\x54\x71\x08\x85\xef\x0f\x8d\x6f\x33\xf2\x91\x19\x4c\x27\x3a\x70\x11\x66\x5e\x6c\x38\x4c\x11\x86\xfe\xbc\x8d\xc2\x99\xb5\xed\x31\x73\x50\x9f\x60\x8c\x80\x05\x62\x22\x3c\x07\xea\x62\x70\x9d\xf8\x28\xbb\x6c\x60\x95\xfa\x4c\x7e\x31\xd8\x88\x2a\x8f\x5f\x37\x58\x58\x63\x1a\x03\xce\xce\xb7\x10\xad\x19\xab\x68\xbb\x42\x30\xf6\xc2\x0c\x32\x3c\xea\xe3\xf7\x8b\x28\x8d\xcc\x35\xdc\x7d\x7f\x67\xbf\xdf\xf0\x5b\x5d\x1f\x5d\x17\xf3\x4e\xf1\xeb\x7a\xcc\x0b\x18\x67\x20\x86\xf5\x88\x9f\xaa\x88\x60\x4a\x67\x7e\x51\x19\x76\xce\x85\xce\x7d\xe8\xeb\xa0\x33\x3f\xdb\x89\xae\xd6\x4e\xad\x82\x9f\xed\x0c\x87\xd1\x66\xf8\x3a\xc2\x57\x59\x51\x18\xf2\xb2\xbb\x5a\xa7\x11\x6c\x70\x5c\x86\x7c\x93\x2d\xca\x3b\xb7\x06\x5f\x44\x8d\xdd\x6d\x47\x3d\xaa\xd3\x01\x0c\x7d\xd7\xb1\x3e\xde\x34\x17\x87\x69\x0e\x96\xea\x6f\x1b\x36\xf4\x5b\x1f\x1a\x16\xfa\xa4\xb5\x1e\x70\x89\x76\x2d\x86\x5f\xa2\x3a\x69\x08\x87\xa6\x8a\x0b\x16\x6f\xd4\x24\x1b\x76\x63\xb4\x69\x02\xb4\xd0\xa6\xf7\x97\x0d\xd7\xf0\xfa\x1a\xac\xee\x2e\xae\xbc\x1f\xa2\x34\x72\xc2\x73\x17\xf6\x3e\x4a\xa3\x3a\xf7\xe8\x62\xde\x46\x69\xe4\x8e\x58\x9c\x93\x4d\x16\xd2\x86\xcd\xb2\x4d\x1a\x36\xcb\x0e\xca\xb0\x59\x76\x10\x06\x1b\xe8\xe8\xc0\x66\x59\x23\x0b\x9b\x65\x37\x55\xd8\x2c\xdd\xf6\x6f\x84\xb6\x49\x85\x69\x8a\x23\x0a\x3e\xb4\xb6\xb9\x43\x8a\x50\xdf\xdc\x35\x82\x60\x4a\xaa\x11\x04\xb7\x2c\x36\xcb\x06\x3d\xa8\xad\xa2\x2f\x12\x84\x63\xa9\xc2\x29\x3d\x4e\x34\x36\xcb\x1a\xcd\xd8\x2c\x6b\x24\x63\xb3\x3c\x42\x31\x82\x08\x4b\x30\x60\x1e\xed\x66\x68\x51\x8b\x76\x5c\x35\xd1\x6d\x7a\xb1\x59\x76\x90\x8b\xcd\xb2\xb5\x30\xeb\x2f\x00\x6e\xb2\x82\xae\x36\xa5\xf1\x6e\xea\x8f\x53\x1d\x1b\xdb\x24\x3a\xe1\x81\xd1\x3c\x5d\x5a\xab\x23\x24\x45\x33\x4b\x8b\x68\x84\x84\x28\x9a\xc3\x0e\xb0\xa7\x31\xbb\x9b\xd6\xb6\x43\x1a\x9e\x9b\xf4\x62\x24\xa4\xda\x64\x45\xfe\x87\x85\xe4\xec\x70\xba\x1f\xbc\x51\x8a\x93\x5c\x9c\x70\xb4\x11\x6a\xbc\xdb\x8a\x4a\x53\xcd\xb0\xd7\xc8\xca\x19\x2e\x6b\x1f\xb4\x75\x9f\x2c\xf9\x3e\xd3\x44\x67\x8b\x35\x71\x3a\x18\x82\x10\xc3\xeb\xe5\x62\x07\xc8\x33\xd1\x68\x34\x42\xe8\x10\xdc\x9a\x27\x50\x9e\x4b\x71\xa8\x34\xe0\xaf\xc0\x4e\x0c\xb8\xd7\xe8\x24\x22\x74\x05\xb2\x5e\xc0\x39\x6b\x83\x9c\xd1\xb2\x27\x19\xcb\x3d\x0f\x3b\x4d\x4a\x96\x8f\xfe\x29\x73\x81\x99\x33\xa6\x48\x0a\x61\x0e\x88\x4e\x0e\x26\xa4\x96\x00\x1a\xe6\x0c\xb8\xf5\xac\x84\x4e\xee\xe0\xf5\x6e\xd7\x67\x59\x9b\xf3\xfc\x5e\x2c\xa4\x28\xf3\x52\x73\xa1\x4f\x2e\x73\xb1\xcc\xc5\x55\x79\xb2\x92\x0a\xf8\x4e\x54\x5b\x31\xe5\xb0\xec\x10\x74\xd5\xf7\xb0\xc0\x07\x61\x3e\x2b\xe6\x4c\xcf\x0a\xaf\xe5\xc0\xf1\x49\x74\x6d\x38\xfd\x42\xca\xcf\xbb\xed\x0f\xfc\xae\xe3\xd9\x1b\x47\x29\xd1\xa8\x28\x4d\x40\x7b\x68\xaa\x51\x89\x88\x53\x45\x52\x3d\xb3\x6a\x26\x13\xc6\x58\x4e\x9c\x95\x9c\x84\x6b\x7e\x14\xcc\x45\x15\x89\xde\xf7\x1d\x1a\x40\x9f\xe5\x71\x2c\x92\xdc\x29\xd1\x78\x57\xfd\x08\x55\x13\x4c\x3c\x6a\x18\xcd\x10\xd1\x0c\x9f\xb2\xe7\x51\x9f\xbd\x85\xef\x40\xcf\xc9\xa9\xd6\x63\x2b\xeb\x45\xb8\x87\xf4\xb5\x42\x77\x09\x55\x14\x7a\xc4\xaa\x63\xdd\xd5\x12\x74\x80\xde\xb5\x4b\x99\xc9\xb9\x77\xad\x95\x11\x0f\x81\x71\x38\xd0\xad\x19\xea\xbc\x7c\x6d\x2f\x0f\xf5\xe1\x76\xdb\xa4\x43\x33\x88\xa7\x7f\x97\x33\xef\x92\xdc\x4d\x20\x6c\xe9\x08\xec\x81\x0d\xe1\xb4\xbf\x80\x38\xd8\xdf\xaf\xe5\xd2\xfc\x3a\xd0\xa5\xbd\xcd\xbd\xc9\x36\x1d\x7a\x07\x8b\x38\xfe\xcb\x5f\x59\xdd\xa5\xbc\xb9\xc0\x57\xb0\xdf\x28\x0a\xaf\x35\x82\x2a\x26\x7a\x01\x4a\x53\x9f\x29\xe7\x56\xfd\x3b\x95\x6d\xd7\xe0\x66\x3d\x71\x6e\xd6\xe3\x18\x9a\x88\x2e\x41\x94\xbb\x17\x29\x42\x93\x4f\x47\xdc\xef\x63\xef\x7c\x06\x7b\x71\x72\x39\x6c\xba\xb4\xf2\xdc\x6e\x72\x6c\x96\x41\x06\xb8\x58\x29\x42\xfb\x60\xec\x01\x80\x0f\xd8\x10\x1c\x21\x9f\xd0\xdd\xb8\x14\xa1\x8a\x04\x37\xdd\x4d\x68\xf2\xd9\x9e\x93\x05\x28\xd9\xf0\xc3\x05\xdc\xd9\xdf\xf3\x5b\xfd\x44\xf1\xac\x3d\xb8\x89\x66\x7a\x7a\x23\x13\x4d\xd2\xfb\x03\x19\x81\x61\x14\xe3\xf8\x97\xf6\xf5\xc8\xa9\x24\x02\x92\x90\x55\x33\x04\x3d\x3e\x17\xc1\xaa\x70\xd3\x99\xd1\xb6\xb2\x4d\x31\x79\x6a\x9f\x49\x2d\x9a\xd5\x62\x1d\x76\xbf\x1e\x79\xc5\x45\xef\x5f\x53\x82\xb7\x33\x1f\xce\x04\x28\x1d\x3a\x4b\xe1\xab\xba\x61\x8a\x57\x7b\x24\xe0\x0a\xdf\x03\x7b\x5f\xca\x65\x00\x31\xae\xc0\x31\x38\x76\x17\x60\x1a\xd0\xea\x0b\xf4\xba\xf8\x68\x25\xd5\x26\x8e\x93\x0f\xb9\xfd\x4d\xa3\x72\x77\xb9\xc9\x75\x44\x61\xc6\x50\xc9\xf7\x02\x82\x5e\x73\xbd\x96\xcb\x27\x85\x14\x95\xee\x99\xcd\x24\x0d\x99\x85\x44\x3d\xad\xee\xec\x86\x74\x41\x2c\x54\xd7\x4a\xc0\x6b\x2a\x86\x4b\xff\x33\x0c\xcd\x0e\x87\x05\x78\xed\xf8\x20\xc9\xfd\xe1\xa0\x47\xab\x5c\xe4\xe5\x1a\x0c\xe0\xc2\x57\x21\x3d\x32\xfc\x07\x53\x14\x14\x44\xdb\xf3\x1e\x6a\xbd\xeb\x91\x96\x5d\x29\x6a\xe1\x79\xf9\x26\x7b\x43\x51\xdd\x7c\x9b\x29\x2e\xf4\x1b\xb9\xe4\xd6\x65\x96\xc5\xcb\x1a\xb5\xec\x18\x13\x82\xde\xde\xef\x0a\xff\x50\x87\xf6\x1d\x76\x64\xbf\xea\x1c\xd9\xc8\x35\x22\xd4\xb0\x34\xa9\xec\x28\xa0\x4f\xc5\xea\x9b\x49\x42\x0e\x87\x76\x45\x42\x0a\x1e\x59\x50\x93\x8b\xda\xa3\x59\xad\x0f\x28\xaf\x45\x16\x30\xd1\x94\x8f\x04\xbf\xd5\x17\xf9\x65\x91\x8b\x2b\x72\xa8\x30\x4b\x4e\x4a\x3c\x8a\xee\x0c\x99\x42\xc2\x7d\xa1\x15\xcf\x36\x4d\x75\xc7\x75\x5e\x8e\xb6\xb2\xf4\xa8\x14\x4a\xb3\xb1\xc3\x76\x30\xb9\x18\xc7\x2f\x2b\xf4\x36\x44\xf0\x3f\xa9\xc7\x12\xc6\x77\xa1\x77\x2e\x7f\x15\x04\x4b\xd3\x95\x54\xb8\xfb\x0e\x1b\x1f\x7a\x77\x2a\x04\x75\xe7\xb2\x38\x66\xca\xb9\x95\xe5\x39\x0b\x5a\x62\x4f\x8a\x03\x2d\x1f\xcc\x63\x01\x36\x7c\x9d\x07\xba\xe5\xfc\xf3\xb1\x0c\xb6\x68\x2b\x5c\x75\x65\x90\xfd\x1e\x9d\x70\x1f\xa8\x19\xdf\x30\xb3\x39\x3e\x6d\xaa\xb3\x76\xe3\xc8\x97\xcb\x1e\x0c\xc8\x81\xf2\xec\x28\x7c\xee\x91\x16\x75\xc2\xcd\x72\x62\x0d\xeb\x99\x45\x14\x30\xbf\x61\xc5\x19\xf6\x6d\x8a\x7f\x0c\x9d\xe4\x86\xcd\x00\xde\xc0\xb6\x70\x30\x70\x25\x53\x0d\xcd\xf9\x75\x9d\x17\xfc\x21\xd4\xf7\xad\x2c\x4f\xe1\x07\xcf\x74\xc2\xc9\xa9\x87\xa2\xf2\x93\x85\x05\x01\xf2\x5b\xda\x21\x1b\xe6\x55\x39\x8f\x66\x1f\x4b\xb0\x5b\x1c\xcf\x2d\xa7\xf9\x50\xd7\x01\x89\xc5\x7d\xf5\x9a\xb5\xf2\x03\xf5\xfa\xa1\x2d\xdf\xed\xc1\xca\xae\x2f\x21\xc8\xf1\x85\x29\x70\x06\xa1\x76\x07\xb8\x59\xd0\xe7\xc3\x09\x69\x2e\x3a\x0d\x30\xf6\x97\xd9\xe2\x73\xe3\xf9\xd7\xa5\x18\x32\x7e\xa0\xf8\x46\x7a\x6c\x2d\xd6\x36\xd4\x59\xb5\x21\x1d\xce\x48\x73\x77\x2d\x64\x38\x6c\xb4\xca\x50\xdb\xb1\x1d\x9b\xb5\x19\x04\xc5\x91\xa3\xbb\xda\x9a\xa6\x74\x65\x1a\x26\xf5\xcd\x36\xed\x6a\x93\x8f\xad\xb5\x0b\xc1\x50\xf1\x96\xd7\xc0\x1b\xf0\xc3\xd2\x28\xcd\x03\xb6\xf9\x32\xfe\xb7\xeb\x07\xb7\x52\x69\x87\xbd\x4f\x0b\xc6\xde\x23\xa0\x86\x4b\x04\x6f\x24\x7e\x79\x58\x2f\x55\xbc\xd2\x4e\x88\x63\x85\xeb\xe8\x7c\xec\x1c\xfc\xc4\x71\x7f\xd2\x67\x15\x7c\x8c\xa1\x09\x4c\xa1\x16\x0c\xfa\x1b\x52\x68\x2e\x9e\xb3\x0e\xcb\x2f\x61\x76\xb5\x7c\x25\x6f\xb8\x7a\x9a\x95\x3c\x21\x29\x3f\x80\x72\x79\x6d\x0b\x95\xbb\xcb\x52\x2b\x5f\x3e\xe5\xde\xb2\x98\xb1\xbc\x52\xad\xef\x68\x88\x4f\x09\x0b\x7a\xb1\x53\xea\x01\x6b\xfb\xf6\x28\x04\xeb\xcf\x0c\xc8\x81\xae\xf3\x25\x7f\x91\xab\x52\x37\xdf\x14\xfd\xe9\xe3\xa7\x67\xc0\x38\x30\x1d\xae\x86\x84\x1c\x56\xb9\xc8\x8a\xe2\xae\x91\xd0\xec\x25\xab\x7d\x7a\xad\xd8\x98\x5e\x99\x43\xce\x9c\xfe\x88\x4e\xda\x75\xc4\x99\xbc\x25\x9b\xcd\xed\x12\x00\x05\x77\x8f\x1c\xe1\xce\xb8\x7c\xc9\x06\x83\x6b\x75\xe8\x29\x99\x5c\x29\x42\xaf\x82\xa3\x6a\x04\xd8\xb4\xac\x7e\x12\x20\xea\x10\xbf\xdd\x16\xf9\x22\xd7\xc5\xdd\x53\x93\x86\x2f\xeb\x28\x18\x72\x01\x0e\x32\x19\x47\x0f\xc2\x3b\xf5\x76\x0b\x64\x24\x8e\xbf\x05\x2b\x4f\x21\x2d\x5a\x03\xd4\x10\x91\x1a\x06\x1e\x28\x51\x91\x9e\x00\xa7\x9e\x61\x32\x8a\xf8\xd2\x54\x8c\xb4\x24\xfe\x62\x6a\x5d\x66\xe5\xf8\xc7\x5e\xb7\x7c\xff\x43\xf7\xff\x96\xb5\xab\x22\xcd\x1d\xab\x64\x17\x2a\xc9\x46\x1b\x33\x8c\x4b\x30\x8f\x42\xec\x8b\x1e\x77\x08\x4b\x0b\x59\x14\xd9\xb6\xe4\xcb\x29\x78\x3b\x7d\x9b\x27\x19\x71\xce\x4e\x53\xc0\x62\x01\x0e\xb7\x1c\x69\x09\xcf\xb5\x90\xc0\xa1\xaf\x94\x0e\x66\x47\xd9\x70\x42\x6b\x95\xb1\xb7\xcd\xda\x4b\xc7\x62\xbb\xac\xf5\x46\xc4\x71\xff\x5b\x15\x40\x26\x92\x38\xe6\x71\x7c\x91\x27\x19\x6d\xf8\xb6\x41\x63\x98\x56\xee\x6e\xf3\x60\x52\xc1\xa0\x3f\x30\x78\x3b\xf6\x42\x25\xb5\xf1\x23\xb4\x60\xff\x4c\x76\xa4\x57\x9c\x57\xba\x5e\x4d\x47\xb9\xad\x18\xb6\xa3\x47\x52\xb3\xa2\x1d\x53\x39\xd0\x25\x07\x7f\x49\xec\xe8\x1a\x38\xa9\x55\x34\x1f\x38\xb7\x1e\x61\x27\x1c\x63\xd6\x5a\xb9\xac\x6f\x63\x32\x2d\x37\xf9\xc2\x16\x1b\xc2\x6a\x39\x62\x11\x86\x81\xad\x66\x1c\x7f\x65\xdf\x6a\x0d\x1f\xed\x9c\xd0\xc2\x64\x2a\x5b\x7a\x44\x71\xa3\x11\xaa\xe3\xf8\x67\x58\xfc\x48\x29\x80\xbf\xb5\x95\xe1\x07\x6e\x37\x78\x37\xad\xed\x42\xb3\x1f\x58\xa7\x36\x62\xcf\x63\x7a\x45\x97\x52\x7e\x36\x15\x47\x96\x17\xd4\x68\xde\xc2\xd9\x24\x84\x69\x18\x9f\xe6\x9d\xd3\x5b\x79\x0c\xab\xe6\x36\x9f\xd3\xcc\xec\x0d\xd9\xb1\x37\xbc\xc4\x25\x73\xcb\x5b\x80\x03\xb9\xa9\x4c\xdf\xe6\x89\x34\x6b\x1c\x41\xa3\x86\x13\xc6\x02\x58\xe7\x30\x23\xec\x16\xd5\xcc\xa6\x25\xa1\xb5\x3c\x15\x1c\x5d\x1c\x87\x6e\x32\x9b\xa3\x64\x61\x03\x42\x6a\x15\x50\x24\xa0\x29\x43\xd0\xcc\xa4\x15\xa4\x76\x45\xab\xcc\x6e\x17\x71\xfc\x9d\x4e\x04\x6d\x94\x80\x4f\xf6\x82\x53\xd8\xd9\xdc\xe9\xb2\xb0\x3b\x93\x16\x61\x33\x4c\x4f\x9e\x83\xa7\x5a\x87\x3b\x54\x3a\x51\xaa\x5b\xbb\xdd\x80\x44\x55\x86\xa6\x17\x68\x0a\xbb\x1c\x81\x47\x89\x73\x45\xab\xbd\x23\x29\x4b\xc9\xec\x77\xcf\xfd\xa8\xd4\x4d\x4b\xf6\x8b\x4a\x34\x19\x66\xbd\x12\xa8\x03\x2a\x0d\x80\x4f\xdd\x12\x75\xb7\x6b\xa3\x87\xe8\x03\x50\x77\xc3\x10\xaf\xdf\x5a\x2f\xe1\x0e\xd9\xb4\xdc\x60\x38\x77\xf1\x3d\x3d\xda\x64\x77\x97\xfc\x65\xbe\x5c\x72\xe1\x21\xc9\xad\x6b\xff\xae\x48\x5c\x5b\xfb\xbd\x8b\xfc\x59\xac\xc3\xe8\xa3\x11\x81\xf3\x66\x44\x2d\x0a\x5a\xec\xec\x81\xea\xbd\x45\x0c\x86\xae\xde\x06\x59\xad\x93\xa0\x6b\x19\x04\x52\x4e\xc0\x7d\xd3\xbf\x39\x26\xa7\x9d\xfd\xae\x3a\xf6\xf2\xc1\x6e\x1d\x7a\xe6\xe4\xaf\x44\x4b\x97\xaa\xe9\x5b\x1a\xf0\x47\xd7\x70\x1c\x77\x28\x31\xbb\x94\x89\x62\x37\x32\x51\x84\xd8\xb4\xcc\x8a\xe6\x24\x9b\xd5\x8a\x34\xfb\x5f\xce\xc6\xe6\x88\x54\x16\x83\xeb\x4d\xe0\xe3\xe4\x32\x6f\x98\x34\x94\x60\x4e\x57\x25\x64\xe5\x68\x51\x48\xc1\xcd\xef\xa4\x3f\x26\x84\x4a\xec\x0e\xd4\xf2\x0a\x7d\x42\xe2\x5f\x41\xa0\x46\x12\x38\xe3\x19\x9f\xee\xce\x60\xb3\x7d\xe6\xcb\x8a\x50\xed\x50\xda\x8f\xc1\xb3\xdd\x7c\x94\x97\xef\x80\x78\x3a\x67\xa5\x19\xdb\xc8\x04\xe0\x76\x05\xbf\x39\xf9\xa4\xc0\xb7\xdd\x21\xe8\x95\xb5\x87\xda\x20\x67\x62\x27\xc6\x0d\xd7\x0f\x1a\x7d\x4f\x5e\x2a\x12\x66\xb1\x1a\x6e\xfc\xe6\xe4\x4a\x01\x72\x27\xcd\xd8\x12\x0d\x93\x7a\x38\xee\x66\x40\xa9\x04\x7c\xa0\xec\x7c\xbc\xdf\x8f\x19\xcb\x2c\xd3\x2b\x91\xae\xff\xba\xe6\xe2\xf9\x66\xab\xef\x5c\x5d\x12\x28\x87\x53\xba\x59\xfe\x9a\xc3\x51\x29\xab\x03\xcd\x50\x01\x19\x8e\x67\x05\x18\x33\xab\xe7\x9b\xd7\x01\x36\x2c\x20\x9a\xd9\xf1\x20\x01\x7f\x2d\x77\x25\x07\x7b\xeb\x72\xbf\x0f\x4b\xfc\xd3\x10\xed\xca\x0a\x61\x10\xde\x3a\xa9\x95\x51\xc5\x30\x3b\xc9\xbe\x07\xb0\x2a\x5f\xa1\x68\x1b\xf5\xe1\xa9\xa0\x92\xec\xf7\xda\x3a\x9f\x17\xf0\x37\x8e\x21\x8d\x08\xd3\x74\xbd\x5f\x98\x7a\x72\x71\x75\xe2\xcb\x3f\xc1\xa3\xf6\x64\x9b\x29\x9d\x1b\xa6\xf9\x04\xdd\xfb\x00\x47\x73\x92\x89\x13\x7e\x9b\x97\x90\x45\x0a\x1e\x91\xde\x2d\xeb\x8f\x0f\x72\x94\x2d\x97\xef\xe5\x4b\x34\x43\x8f\xe3\x77\xb9\xf7\xa2\xae\x01\x02\xd1\xb9\x4f\x87\x83\xdc\xb0\xd8\x11\xc8\xae\x78\x41\xdf\x64\x6f\x2c\x08\x2f\xdd\x39\xe7\x9a\x05\x78\x8b\xc4\x55\x05\xd8\x4b\x3b\xdb\x91\x41\x1d\x1e\xa3\x88\x63\x59\xe3\xc3\x8a\x23\x70\x7b\x2f\x54\xc2\x09\x63\x45\x93\x0b\x8a\xe3\xa4\x84\x23\xa3\x56\xcc\xae\x6f\x1b\x02\x54\x1e\x4c\x87\x9a\xf6\xe8\x21\xb7\x59\xfb\x9a\xd6\xbe\xbc\x19\x9f\x9e\x93\x74\xa6\xe7\x54\x63\xac\x0a\x0e\x07\x43\x4a\xcd\x4c\xf1\x9b\x93\x5b\xb3\xb5\x76\xcc\xd6\x3e\xd5\xa3\xc5\x1a\xd0\x23\x4d\x18\x0e\xc0\x54\xb8\x30\xf0\x0f\xb1\x3b\x34\x9a\x6e\xc7\xcb\x8e\x63\x7b\xd0\x34\xb9\xff\x16\xd6\x0e\x81\xbe\x69\x3a\x26\x58\x84\xd9\x4e\x6f\x05\xa8\xee\xc4\xf1\x87\x3c\x91\x34\xba\x04\xe9\x20\xda\xbc\x3d\x17\x75\x08\x11\x72\x2f\x3d\x6b\x65\xf2\x57\x08\xaa\xc9\x73\xb3\xc7\x12\xee\xd1\x0a\x96\x52\xb8\xcb\xe0\x7e\xcf\x6b\x20\x06\x3e\x02\x1d\xd5\x9a\xf2\xec\x12\x4a\x48\xa3\x63\x89\x74\xd7\x2a\x2a\x2d\x57\x09\x13\x57\xc0\x7e\x40\xbf\xf3\xdd\xa7\x7e\x7d\xf7\xfc\x4d\x27\x05\x6d\x0c\x4f\xa5\x84\x69\x3a\x95\x95\xe5\x9b\x6c\xc3\xcd\xae\x06\x6c\x27\xf3\xc3\x5a\x4e\xde\xe1\x17\x17\x4b\xff\x7b\x51\x96\x81\xe3\x53\x2c\xf8\x74\x71\x66\xa7\xeb\x74\x31\x18\x10\x2e\x92\x82\x2e\xdc\xed\xa6\x27\x3d\x53\xfc\x15\x4f\x0a\x60\x74\xe9\xdf\xf3\xa4\x70\x4c\xee\x93\xe5\xd2\xb0\xb8\x05\x95\xde\xcb\x91\x84\x7b\xfc\x27\x90\xc1\xc2\xf1\xf2\xf0\x25\x75\x63\x0f\x3b\x27\x70\x42\x34\x54\xa6\xab\x47\x5e\x50\xa1\xe4\xa1\x0f\x40\x3e\x13\x73\xcb\x33\xc3\x19\x1b\x3c\xb7\xdc\xa8\x10\x31\x06\xd8\x3e\x53\x77\x19\x58\x4d\x01\xf8\xc6\x68\x51\xe4\xdb\x77\xb2\x6c\x1b\x44\x75\x42\xcf\xd8\xda\x42\x7f\xbb\xcf\xeb\x2a\x8c\x16\xc2\x32\x80\xae\x74\x96\x1f\x66\x2b\x29\x36\x13\xae\x6f\x66\x14\xe7\xbd\xcb\x3c\xa9\x85\xd4\xab\xf5\x7c\x4b\x93\x79\x17\x6e\xc0\xba\x34\xb0\x5d\xdc\x2c\x9f\x9f\x5a\x97\x54\x66\x05\x9a\x59\x83\x45\x69\x87\x0c\x76\x69\x55\x90\xe5\x73\xf2\xe1\x90\x4e\x08\x09\xdd\x3d\xdf\x2a\x27\x1c\x0a\xa6\xca\xcd\x14\x38\x3d\x76\xe2\x25\xc9\x44\x95\xed\x42\x55\xe0\x75\xe4\x81\x69\x6c\x3c\xd0\x2b\x57\x41\x65\xbc\xac\x82\xc6\xbc\x55\x0d\xef\xcf\x56\xdb\x3a\x28\x52\x11\x3e\x53\x73\x8b\x78\x0a\x9e\xf9\x2b\x16\xca\xc4\x78\x11\x55\xd0\xd8\x27\x55\x63\xf5\x68\x65\x68\x55\xd3\x05\x8d\x60\x2f\xb8\xf7\x88\x8f\xdc\x7f\x1c\x83\x53\xe3\x30\xa8\x76\x49\x52\x2e\x8b\x96\x8d\x0c\x2e\x20\x4c\x8e\x86\xc9\x71\xec\x3d\xae\x9f\x04\x46\x63\xb6\x8e\xc5\x9a\x4a\xf0\x69\x6b\x7e\x65\x6c\xcc\x80\xff\x40\x71\x08\x3a\xe7\x2f\x5b\x96\xd5\xb5\xf1\x57\x56\x75\x9f\x77\x5c\xfa\x38\xde\xf5\xec\x45\x4f\x05\xe8\xfa\x50\xc1\x7e\x9f\x64\xa3\x5c\x2c\x8a\x5d\x99\x5f\x83\xe2\xc9\x14\x23\xce\x98\x4e\xed\x2f\x4d\x0c\x81\x81\x35\x01\x2e\x63\x83\xeb\x68\xe6\xee\xa2\x7d\xb1\xdf\xf7\x5d\x25\x01\xdb\x40\x9c\xf6\xae\xab\x14\xb0\x87\x83\x2a\x41\x93\x65\x6a\xc2\xcf\xa1\x46\x2d\xcf\x35\x39\x4d\x14\x38\xa2\xae\xa6\xd8\x9e\x4a\x99\x75\xce\x4d\xad\x33\x3f\x93\x9e\x78\x53\xe1\x13\x75\x00\xd8\xd8\x8c\xd0\xdd\xff\x91\x11\xfb\x53\x8d\xff\x73\x83\xf5\x67\xc6\xea\xcf\x4f\xd0\x03\x03\xe6\x47\xca\x24\x1d\x6a\x5a\xf5\xa5\x1a\xc2\xa1\xae\x0f\xa2\x61\x77\x33\x42\x0b\x36\x31\x3c\x40\x60\xb6\x48\x17\x86\x05\xc7\x20\xa7\x08\x3f\x48\x8a\x69\x9e\xa2\x2f\xf1\xea\x0c\x5a\xb1\xf1\xe9\xea\x2c\x10\x43\xac\x02\xbc\xec\x64\xcd\xca\xd9\x6a\x0e\xee\xd8\x93\x2d\xbb\x30\x8c\xd5\xda\x0e\x08\x21\xd3\x22\x8e\x93\x35\x10\x1e\x48\xbd\xf5\x6d\x35\xbf\x06\x0b\x92\x42\x64\x7e\x00\xa5\x18\x53\x21\x56\xb6\xab\x55\x06\x8a\x2b\x74\x5b\x49\x25\x92\x35\xdb\xd9\x4a\x6d\xf9\x03\xb6\x70\xf2\xb8\x35\xca\x34\xb0\x31\x65\xd0\x98\xfd\x3e\xc1\x38\xb6\xa0\xa6\x5d\xe6\x46\x17\x5e\xdf\xd6\xd6\x8f\xe9\x09\xa6\x1a\x1c\x4d\x76\x28\x81\xc9\xfb\xac\x92\x92\x10\xba\x03\xee\xce\x04\xed\x4c\xd0\x8e\x20\xef\xb9\x64\x56\xd9\xa7\x5f\x60\x0f\x36\xf4\xae\x3e\x03\xc3\xc7\x26\xfa\xee\x7c\x1c\xc7\x65\xd0\xf7\xda\x40\x5b\x11\xe3\x6c\x35\xc7\xbe\xa2\x5f\xf1\xd6\xda\x80\x04\xd8\x4f\x7c\x8a\x40\x76\xae\x57\x95\x7a\x07\xc5\x2d\x31\xd7\x86\xf4\xec\xaf\x9d\x67\x08\x96\x15\xb1\xfd\xfc\xd0\x99\x39\x18\xe8\xf0\xcc\xb4\x3e\x2d\x84\x15\x30\x09\xbb\x5f\x04\x34\x17\x2e\x56\xee\x08\x6b\xdc\xaf\x40\x4f\x03\xcf\x34\x0d\x67\xda\xc1\x9f\xe2\x58\xd3\x94\x23\xcc\xb9\x6f\xd6\x6b\x15\x22\x76\x77\x48\xda\x98\x9e\xc1\xc5\xab\xfc\x14\x0d\xf8\x28\x5f\x36\xe0\x70\x80\x5c\x57\xe2\xe8\x31\x78\x0a\x01\x43\xa0\x60\x52\xe0\x7c\xb2\xde\x37\xbe\xcf\x13\x61\xce\x23\x7f\x20\xe5\x07\xbc\x0c\x2b\x66\xcf\xa3\x7a\x05\x40\x60\x82\xe3\xa1\xc5\x14\xb4\x29\x94\x40\x0a\xa5\x66\xf9\xdc\x4a\xa8\x32\xc2\x53\x97\xaf\x64\xe3\xd3\xf2\x2c\xab\xf2\x95\xd5\xb4\xec\x58\x36\x2b\xe7\xb4\x60\xe3\xd3\xc2\x9b\x59\x9c\x0e\x06\x85\xb9\x7a\xcb\x59\x31\xf7\xe7\xf4\xce\xed\x00\xa7\x0e\x77\xc2\x7b\xd2\x4f\x3f\x7a\xef\x37\x47\xf1\x2c\x9f\xb3\x2c\x70\x83\xe9\x07\xfe\xbd\xaa\x5e\x21\x79\xf3\x48\x0c\xcf\xfa\xb6\x1f\x68\x74\x00\x8d\xf3\x5f\x89\x73\x12\x4e\x7a\xf5\x0b\x0f\xcc\x74\x55\xe3\xd3\xe0\xb8\xff\xd3\xe5\xd7\xee\x3f\x8d\xf2\x75\x50\xf8\x4f\x75\xe6\xb3\x4e\x91\x87\x93\x74\x5c\x25\x7d\x77\x24\x29\x9e\x16\xb5\xa4\x6f\x54\xdd\x27\x78\x28\x76\x1a\xea\xda\x27\x38\xd9\xed\x33\xd1\x74\xe8\xca\xed\x9b\x0a\x05\x7e\x02\x7f\x4a\xc3\x41\xa0\xa9\x10\x45\xcf\xca\x64\xbf\x87\x1e\x0c\x7f\x52\x16\x2e\xc5\x39\xa3\x19\x4a\xc4\xd3\xc1\x2c\x5a\xd2\xdc\x50\xe5\xfd\x1e\x7a\x31\x7c\x07\xc9\x9d\x86\x9a\xb9\xdc\xe7\xcb\xa1\xd9\x26\x55\x1f\xfe\xa9\xea\x56\xf4\xa0\xa7\xd4\x98\x6f\xe5\xcf\x85\x9c\x3a\x7f\xac\xc1\xfb\x43\x92\x23\xb8\x93\xdf\xf4\xd5\x7d\xcb\x79\xfd\x9b\x62\x3f\x52\x68\x9d\x3d\x43\xdf\x28\x73\xdc\xbb\x85\x7a\x36\x06\x17\x86\xcc\x07\x74\x70\x84\xdf\x87\x53\x03\x0d\xef\x8f\x03\xbe\xff\x59\x3b\x7a\x12\x44\xbf\x52\x2d\x87\x7b\x0c\x79\x3f\x42\x33\xd3\x6f\xd9\xec\x77\x46\x1e\xda\x95\xd5\x8e\x04\xfd\xce\x56\xef\x31\x45\xe1\xf7\x22\x4e\xef\x98\xd0\x85\x99\xac\xc2\x3e\x98\xe1\xd4\xfa\xfd\x6a\x66\x38\x27\x74\x85\x49\xb4\xa4\x0a\x27\xb3\x4a\xf0\xce\x24\x40\xcf\x8b\x8b\x73\x36\x8e\xe3\xd5\x19\x1b\xef\xf7\x8b\x33\xf8\x7d\xce\x60\x1c\xf1\xab\x6a\x54\x7d\x15\xc7\x71\xde\xd8\x02\xae\x36\x41\xce\xd9\x38\x0d\xbe\xc6\x64\xbf\xc7\x6a\xfe\xc5\xc2\xa0\x77\x8a\x9c\xb9\xe2\xdc\xf7\xd8\xfb\x7e\xec\x8f\xc3\x1b\xcd\x8b\xfa\x01\x74\xaa\x19\xcc\xf6\x29\xe1\x6e\x63\x0c\x2b\xf4\x86\x4a\xc3\xd5\xe7\xff\xa3\xb6\x17\xdd\xbc\x2a\xf6\x02\x90\x7e\xdd\x5a\x62\x4c\x4d\x75\x0a\x58\x0d\x55\xd6\x97\x01\xe5\x39\xaf\x5d\x39\x3d\x52\x53\x88\x31\xe1\xce\x00\x90\x80\xa8\x20\xd1\x17\x41\x27\x5c\x33\xa0\xfe\xc1\xa4\x6a\xc1\xb7\xb5\xc6\xdf\xc6\xb1\x6e\x2e\x45\xd1\x62\x7e\x6b\x47\x4b\xbe\x4a\x12\x05\x27\x4b\x7b\x17\x06\x9c\x1b\x12\x15\x3f\xfe\x78\x76\xb9\x0c\x95\xe0\x30\x8e\xc7\x2e\x6d\x1c\xab\xd6\xb4\xa3\xa8\xf1\x67\x07\x8f\x15\x4c\xa7\xef\xd0\xcf\x2a\x60\xdc\xb1\x6e\x78\x1a\xb6\x17\x4b\x51\xdb\x12\x30\x40\x6e\x6c\x20\x27\xe2\x26\xd0\x0b\x65\x11\x14\x6a\x57\x38\xe1\xb9\x3b\xc3\x42\x8a\x63\xab\xd2\xd4\xd7\xe0\x7f\xab\x8e\x37\xe9\x59\x6d\xbc\x43\xda\x66\x06\xd6\x90\xe6\x20\xfa\x08\xa9\xeb\xe7\x5d\x03\x99\xd7\x98\x23\x3b\x14\x39\x5c\x45\xcc\xff\x8e\x8b\x32\x7b\x36\xef\x1c\x68\x40\xc5\xea\xea\x21\xf1\x53\x90\x07\x53\xa0\x64\xf2\x49\x11\xfa\xe9\xdf\xd6\x15\x38\xfa\x12\xdb\xab\x34\xa7\xc6\xa7\xd6\x9b\x71\x43\xe2\x31\x18\x70\x12\x86\x83\x6f\x43\x14\xef\xf5\x1a\x0a\x03\xe4\x70\xa8\x37\xb2\xe3\x29\xb5\xa6\xd5\x64\xe5\x31\xb0\x60\xc0\xb7\x3e\xec\xc9\xdf\x15\xbb\x18\xbd\x02\x94\x60\x33\xe6\x5d\xd7\xc6\x60\xe7\x9c\xe4\xe2\x44\x10\xd1\xb4\x48\x00\x4f\xc0\xa6\x96\x99\x9a\x33\xe0\xfe\x7a\x4d\x5d\x0c\x21\x97\x9c\xe9\x40\x9a\xf5\xab\x5f\xe0\x9f\xf3\x44\x93\xb3\xc4\xea\x52\x80\x04\xb2\xee\x81\x09\xb0\x4b\x6b\x50\xcf\xe0\xa5\x8d\x5b\xae\x3d\x20\x44\xbf\x28\xfb\xd6\xe5\x14\x73\xed\x9b\xa2\x67\x46\xec\x9b\xa2\x63\xcb\xec\x03\x29\x4c\xa7\x4b\x84\x9b\xfa\x8d\x4c\x6a\x6a\xbb\x94\x43\x17\xbc\x36\x47\xe4\xfc\xc2\xa6\x27\x8a\x17\x80\x64\x7d\x1a\xf5\xf8\x28\x80\xc7\x36\xab\x75\xc0\x22\xf4\xbb\x33\x04\xd0\x93\x93\x61\x34\xd0\x2d\x28\xee\x10\x36\x26\xda\xde\x9e\x82\xd1\xb3\xf7\x06\x63\x8b\x41\x67\x4f\x27\x61\xfe\xba\x7f\xd7\x5a\xfe\x77\xe6\x96\xea\x85\xec\x3c\x2b\x77\x8a\xd3\xa7\x32\x01\xb0\x15\x3a\xc3\xce\xcc\xdd\x00\x06\xd7\x08\xfb\xd6\x8a\x09\x42\x4d\xd5\xd0\x9b\xa8\xd9\x24\xbf\x2b\x42\x7f\x7f\x70\x93\x74\x29\xcd\xf8\xc7\x45\xe7\xf8\xc6\x3d\x55\xa3\xdf\x35\xf6\x36\x4f\x44\xf0\x04\xaf\xe2\x58\xd7\xbd\x3c\xe4\x21\x2b\x9b\x13\x6d\xf8\x6f\x28\xc1\x90\xfc\x9a\xb8\xaf\xa7\xbd\xb4\x3b\x11\xae\x3a\x56\xe1\xd0\x4a\x78\x45\x86\x27\xff\x8b\x3c\x09\xfc\x2c\x8d\xc1\x77\x24\x78\xe0\x92\xa8\xfb\xd0\x34\x8f\x87\xb5\x2b\xe8\x50\x12\x0a\x6a\x33\xaa\xf2\xd4\x73\x30\xfb\xf2\xf7\x3f\xff\x78\xbf\xb6\x5e\x79\x6b\xe3\x14\x8c\x49\x2f\x48\x55\xbd\x80\x2b\xdf\xf6\x21\xef\x99\x85\x06\x3d\x70\xcd\x1e\x28\xd0\xc8\xf8\x4e\x27\xba\xe6\xa9\xa0\xdb\x35\xcf\xaf\x2a\x41\x33\x96\x03\xb1\x34\xe1\x83\xa3\x09\x2d\x6a\x80\x12\x51\x7e\xab\x19\xa7\x4f\xb1\x05\xd4\xa9\x12\xba\x36\x4e\xad\xaf\xac\x74\x12\xec\xf6\xef\x14\x1a\xd2\x87\x62\x5a\xb8\x21\x55\x7b\xf7\x87\xa6\x68\xf5\x34\x00\x3b\x44\x45\xbc\x47\xc9\x34\xfd\xc7\xfe\x63\x39\x20\x80\x92\x90\x5c\x66\x8b\xcf\x57\x4a\xee\xc4\x72\x48\xa6\xc9\xc7\x8b\x01\x79\xe4\x6e\x97\x88\x7f\xc8\x19\xf7\x56\x46\x02\x15\xf7\xc8\xc0\x05\xd9\x80\x81\x08\x74\xf5\x1c\xc8\xeb\x6c\x32\x9f\x46\xd6\xe9\xb5\xf5\xfc\x80\xbf\xad\x5a\x8a\x9e\xa9\xf9\x54\x23\xb9\x7b\x3c\x4f\x03\x37\x1b\x11\xb4\xb1\x24\xd1\xc0\xc4\x0c\xcc\xe7\x57\xe6\x93\x58\xc5\x58\x43\x1d\xf7\x7b\xf8\x3b\x60\xd1\x09\x26\xab\x36\x60\x35\x1e\x5f\x05\xe3\x31\xba\x2c\x32\xf1\xd9\x4c\x49\x45\xca\x7c\x90\xbd\xd0\x04\x88\x90\x6e\xdc\x02\x5c\xc9\x24\x70\x80\x79\x82\x50\x90\x55\x09\xd3\x66\x40\x62\x61\x23\x49\x6a\xf5\xa6\xab\x66\xfd\x18\x38\xd1\xa9\x6f\xcc\xc9\x18\x25\xf6\x0a\x40\x6b\xc7\xf3\x46\xf5\x82\x40\x25\x6e\xf3\xf1\x11\x40\xc3\xfa\x87\x66\x8d\x3a\xc7\x56\x3b\xd5\x3f\xb8\xb4\x9e\x4a\x4d\x69\x27\xd1\x00\xa1\x8c\x07\xd1\xc9\x2a\xcb\x0b\xbe\x3c\xd1\xf2\x24\x5b\x5e\x67\x62\xc1\x4f\x4a\x50\x8c\x1f\x45\xc1\xda\xfa\x2d\x6c\xb4\x0b\xcc\x03\xac\xc2\x12\x21\xe2\xac\xbe\x23\x17\xcb\x74\x05\x8a\x96\xa5\xf5\xea\x33\xb2\x9a\x93\x09\xa1\x66\x53\xa7\x12\x6d\x3f\x2c\x76\x26\x9f\x96\xa0\xe9\x26\x97\x9c\x2e\x48\xba\x38\xc0\x3b\x91\xa4\x19\x1e\x31\xb4\x64\x18\xd9\xd3\xec\x15\x4f\x32\xea\x9c\x93\xd2\xc2\xf0\xc3\x99\x7d\x07\x33\xf7\x9a\x52\x57\x0f\xca\xc2\xdc\x62\x4c\xcf\xef\x94\xb9\x4d\xf0\x5b\x4d\x5b\xa0\x35\x28\xad\x52\x20\x47\x9b\xcd\x51\x0e\xba\x42\x65\xf6\xd1\x62\x4d\xe2\xb8\xbf\x1a\x71\x59\x24\xe4\x94\xd8\xce\x31\xec\x98\x64\x3f\xaa\xa4\xa4\x2b\xba\x00\x60\x85\x1d\x8a\x36\x72\xd0\x65\xf0\xda\xae\xd3\x5d\x9a\x27\xc1\x30\xfe\x3d\xb8\x00\x82\x88\xd4\x09\x6c\x47\x21\x04\xbb\xdd\x22\x28\xef\xab\x5a\x1c\x26\xa9\xfa\x3f\xa6\x0b\xa4\x06\xbe\xab\x5d\xbd\xa4\xeb\xa0\xa0\x10\xd3\x3d\x8e\x67\x26\x37\x02\x2c\x47\xe8\xd4\xf5\x07\x95\x7c\x65\x6e\xc6\x8a\x50\x49\x4e\xab\x01\x30\x3b\x69\x85\x3a\xe6\xbe\xac\x36\xbe\xfa\x34\x29\x59\x7f\x42\xb3\x38\xd6\x39\xf2\xe7\x14\x32\x11\xfc\xe3\xfd\xa4\xd2\x9d\xf5\x0a\xb2\x63\x3f\xa8\xe4\x47\x53\xe1\x8a\x2a\xba\x36\x95\xd2\x35\x8e\xcc\x96\xad\x0d\x6d\x31\x2b\xb5\xb7\x85\x39\x8a\x36\xc3\x68\x90\xec\xa6\xdb\x81\xd9\xfa\xbb\x74\x8b\x3c\x78\xbf\xdc\xef\x17\x7d\xb6\xb3\x80\xaf\xc5\x99\x9d\xac\x53\x92\x27\x05\xf3\x8e\x02\xdd\xfa\x2c\x06\xdf\xf0\xbf\x12\xba\x20\xbd\x05\xdb\x1d\x6a\x13\x7b\xf0\x05\x6c\x65\x79\x5a\x77\x0a\x0f\x25\x98\xc9\xc7\xfc\xbd\x3c\x59\x9a\xe9\x2f\xd8\x32\xd8\xdf\x7f\x53\x4d\xbb\xc6\x99\xf3\x2c\x64\x96\xf0\x77\x5c\xcc\xa9\x64\xf7\x87\x1e\x2e\x06\xb7\x2e\x9d\x13\x2a\x2a\x9a\x6e\x9e\xec\x1b\x95\xe1\x38\xa9\x0c\xad\x07\xd1\x5b\x2e\x0f\x9c\x8e\x16\xd9\x5d\xc0\x0a\xfb\xe5\xd5\x4c\x32\xcb\xe6\x74\xc7\x26\x66\xf5\xd4\x5a\x81\xc0\xef\x6d\xf0\xfb\x4a\x14\xb6\x3b\x2d\xce\x1c\x86\xae\x62\xf9\x6c\x37\xef\xa9\x73\xb8\x64\x58\xd6\x61\x47\x27\x94\xd3\x7c\xb6\x1b\x4c\xe6\x66\x01\xed\x06\xec\x31\x0d\x66\xc0\xdc\x57\x0f\x20\x60\xcb\x57\x49\x39\x92\xdb\xec\xf7\x1d\x27\x3e\xbb\xa0\xbb\xa1\xa0\x1c\xdc\x1d\xd9\xd6\x1a\x8e\x8d\x98\xc5\x32\x78\x8c\x82\x72\xbc\xe4\x9e\xed\x4e\xc5\x80\x3d\x76\x62\x94\x7c\x26\x06\x93\x79\x0f\xff\xb0\x44\x4e\xa5\x59\x20\x69\x14\x91\x41\xa3\xac\xc3\xa1\x7a\x90\xbe\x07\xa3\xa3\x32\xcd\x29\x3c\x97\xf3\x32\x95\x23\x7b\x68\xc1\xb3\xb9\x3b\xb5\xa6\xd6\xf9\x65\x35\xcb\x3c\xaf\xf9\xc2\x40\xeb\xa5\x72\xbf\x77\xbf\x66\xe3\x79\x9f\x35\xe6\xdd\x0d\x1b\xd0\xa8\xb7\x39\xf8\x55\xcc\x99\x5d\x2f\xb5\x6b\xe2\xc3\x1b\xac\x54\x49\xb0\x5e\x14\x49\x01\x36\x0b\xaa\x02\x43\x76\xb0\x1c\xc3\x66\xb0\xdc\xfe\xa0\xf9\xc8\x76\x71\x6a\xe3\x9e\xe2\x27\xf3\x11\x69\x3d\x02\x4c\xfd\x6a\x29\xd1\xa1\x85\x60\xcc\x79\x16\x53\x52\xe8\x1c\x6d\x04\xc3\xef\xc1\xc0\x43\xd4\xd8\xda\xab\x71\xb3\x34\x21\xd8\x1d\x41\x57\xe4\x43\x24\x0c\x96\xbd\xd5\x60\x60\x12\x48\x89\xda\xef\xc7\xd4\x12\xad\xaf\xc0\xbd\x24\x39\xed\x4b\x47\xae\x7e\x34\x21\xd2\x9c\x02\xb5\x5c\x86\xf7\xfe\xa0\x08\xfd\x10\xf2\x98\xe0\x67\x46\x76\x98\xd8\xbd\xcd\xad\x82\x1d\x0a\x60\x72\x70\xb9\x90\xd7\xf0\x8a\xf2\xbc\x82\xd7\x46\x3f\x9d\xe5\xd7\x6d\xd0\xfe\xe0\xc9\x58\xd7\x28\xf0\x54\xe5\xa9\xc8\x3d\x67\x31\xe3\x73\xc3\x6f\xcf\xf8\x9c\x79\xd0\xa5\xe4\xd1\xc7\x8b\xc1\xa3\x2b\xd8\x15\x5f\xc5\x11\x09\x4e\x14\x99\x87\x72\x9b\x4a\x09\xcc\xbf\xc7\xd0\x72\x1a\x6d\xb3\xe5\x32\x17\x57\x43\x70\x77\x9a\x9e\x8c\x26\xdb\xdb\x08\x75\x6f\xa8\x62\xf7\x5b\xc5\x53\x93\x71\xab\x78\x44\x67\xa2\xae\x2f\x86\x50\x8e\xd4\xfa\xf2\x4a\x05\x5d\xc8\x22\x1d\xd3\xad\x2c\xd3\x31\x5d\x6c\x52\x4e\xc1\xac\x1d\x8c\x9c\xca\x34\x91\xfb\x7d\x09\x3a\x30\x57\x5c\x23\x44\x7b\xc3\x1f\x15\x39\xf4\xb4\xbb\x4f\x85\xe6\xfa\xc8\x01\xb1\x04\xdc\x6a\xe8\x29\xfe\xb1\xbb\x21\x1d\x93\x4a\x95\x21\xa3\x3b\x96\xdb\xf8\x59\x3e\x9c\xcc\x53\x6d\x25\x5b\xb0\x24\xc6\x54\xa1\x0a\xd7\x67\x2e\x58\x96\xd3\x5f\x42\x8f\x53\xb6\x5e\x73\xd9\xce\xd8\xeb\x3c\xd9\x11\xf4\x1a\xe0\x33\xec\xf2\xe0\x8b\x66\x84\x50\x35\xda\x64\x5b\x36\x9b\xd3\x45\x9e\xec\xa8\xa2\xb0\xef\x77\x54\xf7\x03\x2f\x37\xfc\x56\x73\x25\xb2\xe2\x35\x16\xbf\x8c\xe3\xb7\x50\x36\xa1\xbb\xe6\x8e\xaa\x07\x38\x5a\x03\x8d\xb0\xbf\xd9\x0b\x79\x24\x15\x55\x15\x6d\x8a\xa2\x56\xe9\x15\xb5\x82\xe2\xfc\x57\x47\x81\x3e\x8e\x06\xe9\xb0\x50\x42\x41\xf0\xb6\xc9\xb6\x5e\x79\x15\xbf\xe0\x10\x1a\x53\x33\xbe\x76\x31\x8c\xcc\xe5\x59\x2c\xd1\x7e\xf4\xd7\xae\x71\xc6\xd2\xf2\x69\xe2\xa7\x1c\x46\x13\x0a\xa4\x55\x18\xf8\x43\x65\xf7\x07\x92\x26\xf5\x94\x56\xfb\x35\x08\x08\x1e\x21\xa1\x14\x42\x93\x46\x39\xf5\x3c\x18\x14\xe4\xba\x3f\x20\xc3\x50\x3a\xd9\x78\xd5\x1d\x30\xe5\x32\x9d\x39\x4d\x1e\x7d\xbc\x5c\x6c\x86\x3a\xbb\xfc\x78\x69\x37\x72\x51\x29\x54\x91\xfd\xbe\x18\xfd\xbe\xe3\xea\x0e\x31\x31\xa4\x8a\xe3\x46\x40\x12\x8d\x30\x7f\x64\x57\x98\xab\xc3\x17\xc2\x22\x4c\x00\x1e\xcf\x86\xeb\x6c\xf1\x39\xf2\x77\x98\x1f\xc1\x52\x40\x71\xb1\x74\x5e\x7d\x3c\x4b\x6b\x68\x16\x27\xf8\xa7\x2a\xac\x3d\xe1\x8d\x04\xed\x79\xa6\xaa\xa2\x21\x59\x1e\x70\xa5\x25\xdd\xb9\x17\x30\x1c\x20\x0b\xbb\x86\x3b\x1c\x36\x9e\xa5\x49\x27\xf7\x7f\xa1\x87\x47\x57\xb4\xcc\x49\xaa\xe9\x02\x54\x1d\x3b\x5c\x28\xd2\x15\xeb\x4f\xcc\x05\x65\xe1\xac\x2f\xc9\xfd\x55\x65\xd2\xbd\x50\x3c\xd3\xfc\x99\xfd\x7c\xa1\xb2\x2b\xb4\x3d\xf6\x94\x61\x8d\xae\x29\x17\x30\x3f\xe8\x22\x67\xdd\x43\xe6\x70\x01\xd8\x8d\x89\x26\x74\xc9\xb6\xd3\x2d\x5e\x47\x87\xeb\xd4\xbf\x75\xc3\xa3\x97\x7d\x06\xd9\x34\xeb\x7c\xcf\x6f\x41\x32\x93\x14\xf6\x3e\xbb\xa6\xeb\xc1\x92\x90\x9e\x8c\xe3\xec\xec\xbf\xa6\x57\xb5\x05\x1e\xe8\xd7\x6e\xe6\x84\xa4\xf5\x58\xeb\x02\xdb\x6e\x13\x6e\x6d\xcc\xb6\xb2\x1c\x2c\x29\xc4\x2d\x64\x31\x60\x4b\x1b\xc6\x96\xc0\xb3\x6e\x9d\x33\xcd\x55\xb2\x1e\xb0\xe5\x60\x42\xa3\x8f\x3a\x62\x6c\x3b\x1b\xcf\xb1\xcd\x77\x38\xa8\x4d\xa0\xcd\x6b\x76\x37\x84\x22\xff\xe3\xee\x34\xd9\xb0\x63\x0d\xdd\xca\xe4\x9a\xd0\xc8\xaf\x44\xd2\x50\xe9\x55\x12\xdc\xc8\x6d\x15\x2f\x9d\xcd\x61\x44\xe8\xa6\xad\xf8\xab\x11\xec\xe6\x23\xa2\x09\x42\x57\xae\x2b\x57\x36\x1f\x95\x6d\xf3\x7e\x1f\x7d\x14\xbe\xfd\x0f\x34\xac\xca\x32\x8d\xfe\xd7\xff\xfc\xbf\xa2\x34\xfa\x5f\xff\xf3\xff\xed\xf0\x71\xd9\x6a\xb1\x6f\x0b\x54\xe1\xda\x32\x81\xb6\x98\x0a\x6b\xa3\xd5\xed\x6c\x33\x81\xac\x5f\x28\xf8\xdf\x5d\x01\xae\x39\xdd\x4b\x61\x82\x4b\x01\x6c\x9e\x0f\xd8\x66\x9b\xc5\xa3\x7a\x9b\x49\x6f\x6d\x8e\x6a\xa1\xe2\x03\x73\x47\xd1\xfe\x52\x75\xe5\x1a\x1f\xc7\xc9\x0a\x94\x46\xed\x92\x73\x29\xe0\xc5\x62\xbf\x57\xfb\x7d\xbe\xdf\xaf\xf6\xfb\x1d\xae\xb4\x4b\x26\x0c\x61\x00\x59\xd8\xe5\x80\x29\x44\x0f\xbc\x1c\x30\xab\xe1\xfe\x29\x54\x30\xbf\x9a\xd3\x4b\xba\xab\x4c\xeb\xe3\x38\xf9\x64\xdd\x90\x96\x38\x0c\xed\x03\xe2\x13\x39\x74\x47\x5c\x91\x80\xad\x2e\xf3\xba\x12\x48\x74\x12\xd1\xba\x76\xe0\xf0\x31\x3e\xc1\x0f\x98\xf8\x8f\xc7\x53\xe0\xf1\xff\xbf\xff\x3b\xf2\x56\xd0\x20\x12\xaa\xca\xdb\xe5\x35\x41\xbe\xe7\xef\xfc\x0d\xdc\xd2\x3b\x96\x4f\xf3\x41\x74\xb2\xd8\x0c\x41\xb8\x37\xbc\x94\x6a\xc9\x55\x94\x46\xcd\x10\x4f\x96\x0a\x26\x60\xfc\x17\xac\x18\xf8\xb7\xe8\xd3\xaa\xed\xa8\x00\xe3\x65\xad\x2b\xc7\xbf\xac\x99\x9e\xad\xe0\xbd\x76\x3d\xd2\xf2\xbc\x88\xe3\xb5\x55\xc7\x2a\x90\x1c\x1c\x5c\x14\x5b\x78\x59\x55\xa3\xbd\x3d\x08\xf0\x82\x39\x93\x7a\x58\x10\x48\x80\x2c\x1f\xdd\x11\x8a\xda\x4f\x54\x31\x97\xd0\x25\x2b\x98\xf9\x15\xbe\x7c\x16\x2d\xa6\xbc\xaf\xe2\x58\x84\x76\x1d\x39\x3e\xca\x77\x2d\x3d\x9a\x13\xda\x87\x4b\xc0\x62\xd3\xf0\x6f\x26\x38\x5f\x96\x4f\x71\xd2\xfd\x6e\x8b\xe3\x24\xdf\xef\x93\x9c\x75\xaf\x87\xc6\xe2\x77\x60\x14\xb8\xf6\x08\x40\xdb\xb6\xf6\x2e\xbe\xf6\x44\x54\x8c\xf2\x25\xb1\xc0\x97\xed\xd6\x94\x5c\xff\x2c\x9c\x3b\xda\x24\x3f\xb6\x52\x73\x52\x6d\x9a\x6a\x8c\x16\x79\xdd\xa5\x6b\xfd\x45\x30\xb7\x4e\x93\xa9\x64\xe3\xba\xbe\x02\xcc\x18\x2d\xe8\x82\xae\xe8\x9a\x6e\x3d\xae\x13\x5d\xb2\x31\xdd\xb0\xe4\x2d\x9b\xd0\x28\x22\xf4\x0e\x8f\xb9\x7c\x95\xdc\x31\xb6\x24\xf7\x3b\x56\xb0\x05\x5b\xb1\x92\x45\x11\x45\x07\xaa\xf4\x8e\x4d\x1e\x55\xaf\x60\xd7\xf4\xca\x30\xa6\x97\x6c\x7c\x7a\x19\xaa\x43\x5c\x62\x13\x3f\x31\x35\xbb\x9c\xd3\x1b\xf6\xc9\x29\x22\x86\xba\x84\x37\x56\x97\xf0\xff\x27\xef\xdd\xd6\xdb\xc6\xb1\x46\xc1\x7b\x3f\x85\xc4\xe9\x52\x13\x25\x48\x96\x6c\x27\x8e\x69\x23\xda\xa9\x24\xd5\x95\xea\x54\x92\xae\xa4\xfa\x24\xab\xd3\x14\x09\x59\x48\x28\x42\x4d\x42\x76\x5c\x16\xe7\xdb\xf7\xf3\x12\xf3\x04\xf3\x10\xfb\x29\xe6\x7a\x9e\x64\x3e\x2c\x1c\x49\x51\x4e\xaa\xbb\xfa\xdf\x33\xbd\x75\x41\x91\x38\x2e\x9c\x16\x16\x16\xd6\xe1\xbd\xbe\x1d\x4c\x7b\xbd\x1b\x6f\xbc\x27\x57\x6a\xa0\x6f\x50\xf4\x5e\x4f\xcf\xd4\x5e\x1e\xbe\x87\xcb\x43\xf9\x7c\x9c\x6e\xb7\x37\xfe\x15\xe4\x7b\xb8\xf2\x4c\xbd\x72\xd1\x44\x5f\x45\xbc\x87\xfb\xc7\xf7\x70\xe5\x98\xf6\x7a\xb7\x8f\x55\x40\x78\x0b\x31\x38\x23\xb2\x17\x6e\x6a\x44\xcd\x46\x31\x78\xbd\x40\x48\x51\x2a\xce\x58\x58\x4e\xca\x7e\x70\xae\x0e\xf9\x10\x2c\x63\x9d\x84\x7b\xad\x71\x61\x62\xca\x72\x09\x64\x72\x23\x02\x6f\x40\xbf\xed\xf5\xc2\xeb\xed\x36\xbc\xf6\x68\x46\x97\x0a\xbf\x07\x71\xda\x1b\x85\xec\x7a\xbd\xee\x02\xd0\xec\x8d\x71\x9e\x5c\xeb\x8b\xb0\xbb\x04\x11\x13\x23\x0b\x88\x6f\xb4\x88\xc9\x92\xbc\x47\xa6\x5f\x1f\xeb\xae\xd0\x9a\x92\xb2\x33\xe0\x36\x56\x62\x81\x6b\x98\x44\x6a\x7c\xaf\xcd\xf8\xce\xfb\xe4\x08\x5d\x4f\xe7\xfd\xf1\x4c\x41\x9b\xa9\x86\x5d\x4f\xe7\x33\xc5\xbb\x5f\x6e\xb7\x4b\xdb\xfb\xae\x84\x2b\x7f\x86\x64\xa0\x32\x81\xaf\x4c\xa6\x25\x48\x34\x2a\x79\xd1\x11\x82\x09\xc8\x16\x21\xa4\x0a\x8d\x80\xa3\xe0\x93\x75\x7f\x0c\xb2\x93\x68\x90\x5a\x11\xc7\xba\x00\x24\x76\xa9\x8d\xd6\xd5\xd2\xcc\x89\x70\x49\xba\x63\x54\xc9\xa6\xa5\x8f\x89\xa1\x7e\xcc\x74\x7e\xee\x98\x44\x6b\x7c\x8b\xf4\x62\xd0\xfa\x72\x9f\x48\xda\x5f\x79\x82\x4c\x5d\xcd\x20\x7c\x4b\x3e\x3d\x7e\x3e\x59\x59\x54\xf8\x7c\x90\xa2\x68\x75\x20\xec\x21\x2e\x14\xf8\x2d\x8e\x27\x71\x7f\x13\x6d\x70\x82\xd3\xfe\x5b\xa3\xf2\x4b\x6e\x27\x59\x14\x04\x78\x81\x4b\xe8\xed\x4f\x8f\xc9\x73\x74\xb7\x22\xa6\x30\x59\x14\x4e\xc9\xf3\x03\x85\x95\x53\xf2\x09\x27\x24\x08\xaa\x95\x35\xbc\xc6\x25\x8e\x9d\xbe\xee\xf7\x67\x08\xc7\x84\xb1\x50\x7d\x60\xe1\x51\x21\x48\x6d\xf4\x1d\xd3\xca\xd7\x64\x7c\xfe\xda\x49\x4e\xbc\x96\xa3\x59\x83\xb6\x51\xf8\x0c\x61\x5d\xf0\xb8\x51\xb0\xc7\x04\x58\xd4\x77\xb9\x11\x71\x92\xe1\x20\x48\xa1\x65\xc3\x7b\xbd\x20\x20\x9e\xfc\xad\x9c\xa2\x12\x4d\x6e\xb7\x35\xba\xa9\xd5\x47\xb6\x57\xdb\x92\xdd\x7f\x17\xd0\xc9\x27\xf9\x94\xce\x1a\x72\x94\x1c\x6e\xfc\x18\xba\x0b\x77\xcd\xbf\x29\xdc\x49\x04\xa6\x1e\x17\x0b\x70\xb8\xc7\xd4\xd2\xee\x54\x35\x47\x49\xc7\x02\x8f\x4b\xf3\xa5\xf4\x8d\x35\xec\xd3\x10\x0d\x6f\x3a\x16\xee\xca\x30\x48\xf8\xe5\xda\x1d\x1e\x29\x26\x32\x30\x1a\x1f\x30\x77\xd3\xad\x35\xa5\x18\xaa\x90\x02\x18\x17\xa0\xd5\x42\xc1\x81\x41\x7e\xa5\x0e\x63\x5e\x6f\xc4\x4d\x16\x29\xc5\x9c\x4c\x67\x60\xd9\x5b\x12\x2a\xdc\x89\xcc\xfe\xa5\x08\xb3\x69\x3e\xc3\x2c\xcc\x11\x2e\xdc\x35\x81\xd2\x8a\x29\xf5\xa0\x81\xf6\x18\x20\x44\xcd\x95\x4d\x94\xcc\x4f\xa9\xef\x38\x16\xea\x73\xa3\x3f\x97\x72\x40\x33\x24\x77\x96\x30\xf3\x6c\x9e\xa7\x44\xa5\x18\xe8\x6b\x50\xa7\xc3\x60\xb4\xf2\xc2\x11\x8e\xc3\x11\xce\xac\x29\x0c\x6c\x4c\x42\xd9\x82\x64\x77\xb3\x9f\xe9\xc0\xa6\xb1\x0a\x46\x7a\xca\x99\xa3\x95\x5f\xd0\x60\x8c\x0e\x78\xb8\xc0\x0b\x05\xfe\x1a\xe1\x54\x19\x78\x87\xa2\xf5\x4d\x75\x2a\x0f\x1a\x86\xc3\x60\x21\xd2\x91\x2b\x64\x4f\x17\x09\x21\x4a\xf0\x7b\x4c\x88\x85\x82\x87\x09\x4e\x14\xbf\xd4\x2c\xfc\x72\x98\x2c\x51\x7f\xd9\xaf\x05\x6f\x64\x20\x5e\x2b\xa8\x43\x09\xe5\xd8\x87\x12\xd5\x86\xa6\x3d\xaf\x1c\x27\xbc\xb7\xbe\x6c\x3a\x92\xc3\x39\x42\xca\xca\xba\xd7\x06\x20\xf6\x6d\x2b\xbe\x08\x78\x59\x58\x7f\xb1\x0b\x83\x29\xbf\xd6\x81\xfd\x31\x4e\x55\xbb\xee\xbe\x04\x3a\x39\x1e\xcb\xb6\xc2\xd7\xe8\x60\xa7\x5f\x0e\xd2\xc7\xe3\x9d\x11\x93\x15\x0e\xc6\x7b\xda\x79\xdf\x02\x59\x33\x6b\xf6\x47\x19\x1d\xa1\xbe\x91\x03\x52\x93\x8f\x16\x64\x04\xe4\x7e\x43\xf2\x9b\x4e\x45\x4d\xa7\x0b\xe7\x7d\x10\x03\xb7\x1a\xee\xfe\xf5\xb9\xab\x39\x75\x35\x27\x92\xb2\x2b\x68\x4e\x68\xb3\xae\x36\x4d\x21\xc3\x99\x9e\x16\xb3\x03\xd1\x27\x6c\x98\x2c\x37\xf9\x47\x79\xf4\x0e\x91\xac\x9b\x19\xa9\x03\x56\xd3\x34\x53\x06\x5f\xc0\x28\x58\xfd\x46\x7f\xa7\xc1\xd5\x9a\xf9\x46\xbf\x6c\xf1\x7b\x2d\x21\x79\x72\xbc\x15\x56\xe3\xf2\x22\xcf\x6b\xfe\x4a\x9a\x58\xa8\x20\xb4\x2f\xce\xf3\x8b\xc2\xe9\x53\x31\xdf\x84\x43\x3e\xf3\xfb\x6d\xe0\x1a\xf5\x3b\x90\xff\xfc\x2b\x0b\x19\xd6\x26\x87\x83\x9a\xda\xbc\xbe\xaa\x51\x17\x52\x86\xde\x69\xd8\xfb\x97\x0b\x4b\x12\xd5\xd9\xad\xb1\x16\x05\x79\xad\xd3\x91\x5d\xe0\xad\x74\x84\x16\xc1\x30\xbd\xa6\xe6\x8c\x5f\xbd\x9e\xe3\x14\x19\xa5\x54\xe1\xde\x9a\xc9\xa8\xa7\x36\xde\x70\xc0\x21\x07\x1a\x3c\x6f\xf8\x43\x88\x99\xa0\xc5\xab\x1d\xc0\x5c\x11\xb2\x4f\x29\xf4\x29\xd8\x96\xcd\x7d\x83\x27\x74\xe6\x4b\x22\xe2\xf4\x97\x8d\xb1\x9c\x38\xf7\x8d\xad\x4d\x34\xd8\x51\x80\xac\x4d\xf1\x16\x2d\xba\x5a\x3c\xec\x40\xa4\xf0\xe7\x34\x48\x3f\x5c\x58\x91\x64\x4b\x87\x09\xcc\x06\x14\x0c\xce\x9a\x95\x06\xaa\x78\x1e\x8c\x21\xc5\xbc\x26\xbe\x32\x20\xf1\xa0\xb0\xcb\x83\x10\x6e\xec\xa3\x58\xf0\xcc\x4d\x1f\xc8\x18\xe1\xc2\x5f\x16\xc0\x2e\x0e\xc5\x80\x70\x64\xe5\x4f\x46\x0a\x89\xd2\x81\xd2\xd7\x71\xbd\x20\x2e\x8e\x1e\xec\x14\xae\xaf\xcf\xc6\xdb\x6d\xb7\x1e\x33\x1d\xcd\x3c\x07\xa5\x6b\x86\xac\xb2\xd4\x54\xaf\x03\x33\x93\xc3\x52\x37\xc8\xe2\x8c\x29\xf8\x50\x61\x61\x89\x66\xb8\x59\x68\x6d\xf6\xec\x59\x0e\x75\x9d\x96\x3d\x83\x25\x50\xbd\x68\x31\x73\x10\xd1\x2f\x59\x37\xb2\x53\x1c\x9b\x07\xd7\xd7\x52\x73\x11\xb4\xc3\x50\xd4\xd0\x84\x05\xa5\x98\x81\x19\xcc\x9d\x09\x43\x38\xec\xcc\x6c\xe8\xc1\xa6\x41\xd2\x2e\x5e\xca\x5e\x8f\xd5\x90\xd7\xe3\x07\x23\xd7\x1f\x31\xa9\x47\x7e\x75\xf4\xa0\x7f\xf4\x00\x97\x24\x3e\x2f\x2f\xea\x51\xe7\x46\xd8\x5d\x0f\x05\xab\xad\xf2\x12\x97\x7d\x72\xf4\x00\xa1\x03\x66\xa7\xe1\xc6\x4a\x86\xb5\xcd\xbe\x7e\xbf\xc0\x23\xbc\x41\x78\x53\x1b\x40\x5d\x2c\x61\x0d\x5c\x13\xeb\x29\x01\x86\x38\xde\xae\x59\x96\x85\xa8\x52\xe7\x02\x3a\x20\xbc\xaa\xb0\x8b\x69\x18\x47\xec\xb6\xce\xd0\x0b\x32\x1e\x21\x5f\x8e\xed\x20\xe5\x5a\xd7\x45\xb6\x50\xee\x5c\x3b\x30\xd3\x66\x21\x83\x07\xf8\x01\xd2\xa2\x4b\xaa\x15\xe0\xfd\x48\xa1\x08\xf8\xc7\xd4\xf6\x87\xf0\x45\x37\x73\x72\xcd\x6d\x26\x5b\x2c\x06\x05\x96\x46\xa0\x5d\xaf\xfd\x31\x1e\x49\x94\x0f\x34\x87\x96\xf2\x6a\x82\x8a\x0e\xec\x7a\x96\x75\xbb\x15\x54\x60\x31\xc3\x94\x14\x95\xb0\xf1\x46\x6d\xfa\x66\xc9\xb2\x96\xc6\x3d\x1e\x8f\x3c\x68\x6a\x1d\xff\x79\x2c\xfd\xeb\xcd\x71\x6b\x18\xcc\x43\x8a\x7c\x40\x95\xff\x72\xb0\x51\xf0\x2a\xa4\x38\xc6\x39\xaa\xc9\xb4\x6b\x3c\x16\xb7\xe1\x31\x6e\x6c\xb5\xad\x18\x19\xe1\x5b\x46\xde\x0e\x9f\xf1\xa4\xc5\x2a\xb6\x9d\x3d\xbe\x6f\xe5\x5b\xe6\xae\x94\xe9\x4d\xe7\xd6\x1d\xc6\xb4\xd8\x50\x0e\x4a\x2c\x23\x24\xf7\x1f\x65\x9a\x5a\x52\x4c\x06\x87\x4d\x35\xb5\x1b\xa8\x2b\x62\x34\x43\x33\x3d\xb7\x41\xff\xdd\xec\xba\x56\x52\x98\x78\x9f\x60\xc6\x43\xdb\xc3\xf2\x4d\x5d\xa9\x80\x8c\xc6\xf9\xef\x68\x4e\x0b\xb8\x48\x20\x63\xab\x09\x0e\x32\x01\x24\xd7\x87\xae\x35\x0d\x73\x3c\xd2\xf2\xcd\x25\xcd\xc8\x0b\x60\xc5\x29\x74\xa5\x6c\x26\xc0\xbc\x7a\xc7\x42\xb5\x25\x08\x6b\x89\x6e\xc5\xf4\x2a\xe4\xa9\xf1\xff\x2d\x3c\x8b\x86\x74\x4d\x0a\x63\xc6\x4b\xd0\x3c\x95\xa0\xb5\xf9\xd9\x0f\xb5\xe4\x28\x5c\x6b\xc9\x73\x6e\x29\xc9\x04\xbc\xd4\xe2\xe1\xca\xda\x07\xc3\x82\xcb\x07\xfd\x24\x22\x5a\x21\xfc\x17\x65\xcf\x0f\x2b\x68\x63\x8e\xaa\x03\xdf\x3b\x39\x79\xcf\x43\x7f\xbf\xc7\x77\x09\xcf\x4b\x51\x6c\x12\xc1\x8b\xe8\x96\xc1\x8c\xdd\x99\xb0\xf9\x44\x35\x4e\xcd\xa2\x81\x1b\x06\x2c\x06\xf2\x9c\x1a\x79\xd1\x7e\xa4\x7d\xed\x5b\xcc\x8f\xdd\x1e\xb1\x97\x26\x1c\x35\x7d\x90\xc9\xd5\x90\xf7\x8d\xff\x31\x47\x4a\xd7\xf0\x79\x0d\x2c\x9c\x23\x43\xa3\xb4\x91\x27\x35\xca\xa0\x96\x11\x55\xd8\x18\x68\x6e\xb1\x32\xfa\x49\xf7\xfd\x67\x1a\x69\x4e\xcc\x60\x05\x9e\x4e\x44\x24\x94\xd5\x7b\xba\xdd\xfa\xd3\xc0\xf8\xc4\x42\x15\x2e\x4d\x9d\x7f\x10\xe1\x6e\xb5\x6b\xea\x77\xeb\x08\x61\x6b\x64\xb0\x56\xed\x60\x7c\xf0\x32\xf7\x27\x87\xd0\x0e\xa7\x73\x7c\xa3\x01\xcf\x6b\xfe\xae\x91\x9a\x37\xbb\xb3\xcc\x5a\x8f\x31\x70\x05\x58\x1e\xc9\xa3\xee\xa8\x02\xeb\x63\xde\x2c\x13\x08\x55\x08\xfb\x8e\xbf\xa2\x5d\x0c\xf1\x93\x06\x8b\x62\x10\x8c\x34\xe2\xc4\x39\xc9\x27\xe6\x53\xce\x22\x5c\xa8\xee\x6f\x2b\xc6\xd0\x88\xcf\x75\x4b\x4c\x3e\x8a\xb0\x2b\xb1\xd6\xf1\xf9\xa4\x88\x0a\xd5\xf1\xf9\xde\x8e\xd7\xee\xfd\xf6\x59\x94\xd5\xd1\xdf\x81\x09\x22\xcf\x3e\xa8\xe8\xf5\x14\xd7\xc3\x96\xa0\x92\x44\x0d\x53\x5c\xdf\x5a\x28\x0d\x32\x34\x23\x41\x5d\xe5\xaf\x36\xab\x79\xc3\xa5\xa3\x93\xea\xf1\xd2\xa9\x2a\xfe\xc8\xca\x4d\x9c\xed\xba\x3a\x36\xbe\x06\xa0\xb0\x26\x22\x71\xb5\x22\x0c\xfa\x63\x15\x96\x7d\xf1\x94\x6f\xee\x31\x12\x0a\x84\xbe\x75\xd2\xbc\x2f\x19\x24\xa8\xb0\xd1\x05\xbb\x37\x99\x3f\x57\x2b\xac\xcd\x97\xb4\x35\xdc\x8d\x2e\xb4\x5e\xd9\xc4\xd9\x6b\xf6\x97\x66\x46\xeb\x25\x44\xbe\x21\x7e\x30\xdd\xae\x9c\xc7\xc3\x3a\x04\x8f\x73\x91\xf1\x31\xaf\x82\xd4\x47\x14\xd0\x1c\x12\x6d\xb7\x81\xe0\xea\xc5\xac\x5e\xf0\x91\xee\x5c\x86\xe3\xba\xeb\xbb\xbd\xbd\x47\xb3\x61\x21\xe7\x71\x59\xe1\x1d\x47\x8f\xf7\x65\x6a\xf1\x0a\x09\xf8\x41\xf7\x41\x0d\x41\xa8\x85\xf1\x27\x5a\x5f\x12\xbb\x73\x60\xb2\x86\x73\xf0\x76\x3b\x42\x11\x45\x56\x9d\x06\x61\xdf\x81\xe0\x97\x14\xed\xaf\xb6\xed\x56\x16\x25\x4b\x69\x78\x0f\x6e\x2b\xe8\x9b\xdd\x82\x44\xaf\xe7\xe3\x82\x96\x82\xca\x66\x49\xe8\xee\x27\x9d\xe3\x67\xaf\x9c\xb6\x9c\xdf\xdc\x7e\x3e\xef\x95\xb1\x39\x6c\x87\x0a\xd6\x87\x68\x76\xcc\x0e\x18\xc6\xcc\x86\x41\xa3\x77\x2d\x7a\xf3\xd4\x77\xa0\xc9\x40\x81\x40\xf9\x6e\xb4\x3d\x20\x77\x33\x35\xfb\x5c\xa7\x52\xe3\x62\x13\x19\x32\x09\x0c\x77\x7a\x72\xa9\x96\xfd\x85\x6b\x73\x5f\x39\x45\x70\x98\xf9\x03\x0d\x99\xee\xd6\x0a\xe1\x38\xbd\x7f\x74\xbc\xe3\xb7\xeb\x0c\x73\xaa\x00\x62\xd9\x73\x3e\xb9\x6f\x2e\xd4\x6b\x2f\x70\xe1\x71\x79\x61\x74\xaf\xfc\xc9\xd6\x7a\xf0\x34\x1b\x9b\x37\x22\x8a\x14\xc8\x5b\xdc\x91\x9a\x9d\x40\x12\xc5\xc6\x69\x2b\xbc\xcb\xf5\x8a\x0e\x04\x11\x13\x61\x18\x2e\x0c\x45\xac\xfa\xa5\x9b\xf2\x15\x6d\x5d\xe7\xbb\x7e\x67\x7f\x35\x98\xc1\x24\x04\x5c\x3c\x1b\x4f\x3a\xfb\xa0\x43\x18\x94\x52\x98\x95\x60\xad\x70\xd3\xf3\xe5\x3d\xe7\x8e\xe9\x0c\x7b\x76\x54\xbd\x21\xf7\x0c\x32\x15\x53\x36\x23\x5a\x2d\x69\xd7\xb1\x6d\x21\x8b\xdc\x6e\xad\xf7\xce\xdd\xea\x5b\x57\x4d\x03\x04\x53\xbd\x75\x32\x54\x07\xc3\xf3\x2d\x63\xa2\xa6\x7c\x76\x50\x4c\xf9\x8c\x28\x0a\x27\x36\x9d\x28\x78\x14\x43\x27\xee\x21\x69\xc0\xca\xaf\xa6\x6a\xf2\xca\x5c\x64\xf4\x7a\x80\xf7\xc1\xda\xd2\x67\x40\xad\xdb\xde\xe2\x84\x61\x25\xd6\x6e\x89\x54\xcf\x83\xa7\x50\x82\xeb\x2f\xf2\xb0\xd4\xb6\x09\x30\x47\x38\x93\x01\x6f\xf2\xb0\x04\x09\x08\x75\x32\x03\x83\xcb\x98\x93\x0c\x07\x31\xe8\x37\x05\x84\xe8\xf5\x98\x10\xea\x8d\x8c\x2c\x11\x54\xdd\x13\xe5\x36\x35\x31\xa8\xe3\x62\x74\x50\x4c\x63\x8b\x5d\x16\x93\x2c\xda\xe0\xc5\x64\x13\x65\x9a\xad\xef\xc7\x6e\xb0\x33\x69\x22\x83\xde\xc8\x75\x4a\x1b\x48\xa4\x52\x53\xb4\xc0\x42\xcb\x32\x13\xb7\x92\xcf\xf9\x63\x39\x52\x83\x01\x32\x94\x26\xd8\x33\x38\x28\x27\x7f\xd4\x4b\xbf\xd4\xa7\x81\x64\xd5\xeb\xfd\x51\xb3\x1d\x93\x95\x5c\xfe\x9b\x3c\xe5\xb5\x39\x81\xee\x7e\xd6\x85\x28\xef\x70\x8a\x90\xdc\x9f\x08\xdc\xc3\x99\x92\xda\xf1\x59\xb3\x48\x30\x7b\xa0\x4a\xfd\x6c\x06\xe5\x7d\x4e\x65\x28\xa9\x78\x0e\x3b\x0a\x28\x05\x79\x2b\xdf\x3f\xb7\x51\x40\x11\x2d\xe9\xea\x9b\xba\x4a\x5d\x61\x7d\x6a\x6c\xf2\x56\x1b\x6e\x16\x74\x2a\xdc\x64\xfb\x7b\xc6\xfb\x00\xa1\xa8\x10\x89\x3a\xd4\x04\xd9\x6e\xfb\x7d\xc5\x6f\x35\x39\x6a\x06\xff\x74\x1e\x15\x56\xcf\x65\x7c\x17\xdd\xc1\x00\x09\x35\x04\x79\x25\xe9\x33\x67\x1f\x70\xc7\x43\x43\xe3\x0c\xec\x87\x0d\x57\xf1\x27\x77\xc2\x06\x63\xfd\xc5\xc7\xa7\xf2\xdc\xbd\x53\x4a\xf3\x34\xae\x99\x1d\x12\x36\x17\x1a\xca\x31\xc1\xcd\xd0\x36\xb2\x91\x1a\x46\xab\x81\x44\x52\xa5\xaf\xd7\x64\x27\xec\x2d\xcd\xda\x82\x5f\x03\x82\x20\xde\x81\xde\xc4\x5e\xd9\x7a\x2b\xcc\xca\x46\x63\x68\x7d\xc0\x77\xf3\x10\x62\x11\x79\xa3\xc5\x6a\x9b\x69\xe9\x64\x3d\x26\x72\xb8\xa2\x67\x8d\xfe\x95\x81\x6a\x15\xb4\x44\xaa\x60\x54\x01\xd1\xb8\x53\x70\x9d\x72\xfe\xf2\x41\x3c\x10\x50\x2b\x79\xa6\x7c\x63\xe7\x56\xdd\x12\x59\xd7\xcc\x58\xe8\xba\x55\x22\x3d\xfd\x76\x92\x55\x92\x1a\x01\x8b\xe8\x59\x5c\xb6\x6e\x12\xc6\x8e\xad\x3d\x34\x06\x4a\x81\x5a\x12\xb4\x13\xf3\x1e\x05\x20\x6c\x13\xe0\x66\xd3\x0a\xa2\x0c\x3f\x42\x62\xa7\xcf\x19\x05\x4e\x89\x54\xc5\x39\xad\xcf\xdd\xe2\x4d\xcc\x4d\x11\xaf\xb5\x3e\xa8\x24\xf8\xa6\xc5\x0c\x28\xbf\x17\x3c\xcc\xb5\x9e\x27\x84\x39\xf7\x60\xd4\xa9\x7b\x6a\x46\x1a\x90\x7e\x07\xf6\xbe\x45\xa1\xa3\x15\xbf\xa6\xff\xff\xeb\x03\xac\xef\x1a\xd9\x22\xec\x32\xd7\x66\x67\xb8\x02\xa9\xd6\x6e\xb2\xec\xc0\xb2\x5f\x39\x18\xaa\x11\xc9\x52\xf5\x9a\x92\xfd\xe1\x75\x87\x6a\x31\xe1\x5a\x47\x97\x3b\x1d\x5d\xe8\x4b\xdf\x7b\xa0\xd1\xeb\x0d\xf5\x5b\xaf\x17\x77\xad\x9c\xda\xc4\xa8\x51\x99\x0c\x31\x52\xaa\x9b\x55\xad\xeb\xf5\xdc\x53\x46\x10\xee\xe9\xf8\x5d\x1e\x86\x22\xe0\xe4\x4a\xf9\x87\xd2\x0a\x07\xdf\x88\x60\x37\xd7\xc8\x47\xf4\x7a\xac\xa6\xce\xcf\xad\x60\x5f\x9c\xb1\xab\xfc\x4f\x5a\x35\x5d\xae\x95\xdf\xab\x92\x8d\x3a\x79\xcd\x60\xac\xd1\xbe\xd1\xaa\xec\xa0\x28\x60\xd4\xda\xa7\x33\xe4\xfa\xdb\xdc\x68\x3c\x11\x13\xed\x1f\x9e\xa1\xc8\x72\xc2\xed\x99\x21\x77\x67\x06\x4f\xf7\xdd\x65\x46\x08\x8f\x30\x33\x77\x21\x44\x60\xae\xfc\x33\x38\xc1\x89\x82\x28\xdb\x0d\xd4\x31\x5c\x0f\xc0\x9a\xad\xe1\xd6\xf7\xff\x58\x80\x3c\x62\x01\x06\x1b\xb4\x78\xa7\xb9\xe4\x00\x83\xb0\x2d\x1a\xe9\xde\xc8\x60\x56\x59\x0e\x91\x3a\x2c\xb8\x35\xa2\xc7\xaa\x7e\x71\x6b\x6c\xe1\x62\x63\xdf\x78\x87\xda\x35\x16\xbe\x8b\x7b\xf8\x45\x38\xc7\x39\xd8\x3f\xb9\x5d\xcb\x93\x3f\xec\x89\x81\x3a\x6e\x7f\xa3\x65\x10\xa3\x36\x53\x6a\x77\xbe\xe1\xea\x48\x58\x89\x43\x01\xd6\x14\xde\xdd\xae\xe9\xc4\x0c\x59\x24\x10\x76\xa6\x0f\x23\x60\x1c\xb9\x6f\x5c\x37\xfb\x16\x75\xc7\x58\xd9\x33\x57\x09\xd5\x3b\xde\xb1\x80\xad\x62\x77\x82\xab\x83\x46\xa3\x29\xf1\x9a\x2d\xe7\xac\x13\xad\x44\x15\xb6\x86\x65\x9f\xb4\x39\xb5\x82\x93\x8d\xe1\x1b\x85\x7e\x49\xa8\xdd\xfc\xa7\x67\x3e\xa4\x7e\xfe\xf1\x2e\x33\xe4\x59\xe7\xdc\xce\x5e\x25\xc7\xc7\xb4\xe0\x26\x55\x8a\xcc\x3b\x96\x5f\x1e\x9b\x18\xa1\xe7\xb8\xb1\xf2\xa2\xee\x5c\x64\x22\x6d\xe6\xc6\x3b\x0c\xd9\xb6\xed\xcc\x8b\x5a\x9f\xf8\xec\xc8\x03\x8f\xda\xa7\x35\x2b\x44\x96\xbd\xad\x3d\x27\x68\x2d\x17\xdf\xce\xb3\xbd\x7f\xf9\x72\xd3\x58\xa5\x39\x30\x68\xd3\x58\x4a\x30\x6c\x03\xd2\xa6\x8c\x68\x10\x94\x03\xca\xc7\x10\xac\xf0\x19\x21\x1b\x2d\x85\x09\xe2\x60\x32\x91\xf1\x4f\x68\x23\x88\xb5\xa7\xad\x82\x1e\x13\x31\x4c\x96\xdb\x6d\xde\xeb\x75\x73\x67\x21\x6b\xbb\xd5\x27\xfb\x4d\xb3\x4b\x6d\x92\xaa\xdf\x67\x72\x35\x02\x99\xf2\x24\xcb\x1a\x7d\x6a\xae\x06\xa7\xb3\xdd\xbe\x6a\x43\x69\xbf\x64\xca\x68\xdb\x89\xe6\xa4\x0c\x1e\x1e\x81\x0d\x21\x43\x0c\x78\x08\xd3\x0a\xaf\x79\xf9\x6d\xc1\xd5\xf1\x65\x77\x26\xd7\xb8\xe5\xb8\x20\x6d\xe7\x69\xb3\xe5\xec\x6f\x84\x95\x3a\x60\x3e\x07\xbd\x0f\x56\x0d\xf9\x63\x6b\xae\x41\x10\x8a\xbb\xa3\x03\x3a\x20\x1c\xf7\xfb\x79\xe5\xb0\x0d\xf0\xe1\x05\xd2\xbe\xb3\x3e\x49\x80\x9b\xcc\x4f\xb5\xf0\x1a\x6b\x2d\x59\x1e\x18\x77\x01\xda\x96\x10\x34\x04\x84\x21\x97\x17\x23\x67\xcd\xe6\xda\x79\x1f\xfa\xd2\xd6\x79\xfd\xa2\x67\x76\xed\xac\xd3\xd7\xd2\xe2\xa6\xb1\xb2\x39\xa2\xc2\x09\x5f\xb7\x51\x94\xfa\x9a\xef\x4b\xef\x48\x9a\x77\x64\x3b\x19\x74\x23\x1c\xcf\xbd\xfd\xb6\xef\x1d\x5f\x63\xe1\xdf\xfc\x89\xfa\x4d\xa0\x8c\xa4\x99\x63\x35\x08\xef\xda\x0d\xce\x0b\x35\xca\xf9\x19\x5d\x8b\x25\xd9\x21\xa8\x21\x18\x4a\x32\x24\x75\x68\xee\x07\x9c\x01\x75\xe8\x1c\xe5\xd5\xe1\x19\x4f\xea\x1b\xd6\x76\x1b\x82\xea\xe0\x81\x47\x7d\xab\xb6\xb6\xdf\xe5\x1c\x18\x31\x51\x33\xf5\x61\x19\x2b\x66\x20\xf5\x44\x98\xbb\x60\x5f\x03\x3c\xa6\xf2\x0b\x75\xa5\x2a\x5f\xad\x7d\x93\xc6\x98\xe0\x1c\x14\xc0\x78\x6a\x8e\x23\x7e\xff\xb7\x77\x3b\xd5\xbb\x90\x6c\x27\x28\xf0\x99\x43\x83\xdf\x49\x08\x5b\x01\xa3\x8f\x34\x95\x14\x8b\xfb\xf2\xb5\x1a\x53\x9e\x44\x05\x76\x05\x46\x7e\xe9\x12\xcf\xd8\x3c\x90\x14\x80\x36\xde\x31\xa2\xee\x68\x6f\xce\xd9\x5e\x4b\x00\x35\xa3\x98\xb9\x41\xb9\x05\x11\x46\xbe\xc8\x9a\x92\x74\xf6\xd4\xb5\x29\x49\x30\xeb\xe1\xc2\x84\xe2\xd9\xa4\x14\xdc\x71\x18\x5e\x0f\xf8\x01\xe1\x38\x06\x5d\x47\xb8\x83\x70\x6f\x40\x57\xa0\x83\xc2\x5a\xff\x82\x4e\x28\x11\xb6\x42\x76\x45\x55\x55\x61\x81\x6f\xb4\x91\x1f\x40\xb4\x9b\x5c\xf6\x41\x73\x06\x49\x1c\xe0\xdf\xaf\xbf\x85\x7b\x1d\xe5\xb7\x09\x7b\xbd\x8d\x5a\xa4\x78\x9a\x0e\x48\x44\xcd\x4d\xcc\x47\x9a\x4e\xc5\x0c\x6c\x78\x11\x4f\x02\x52\xe6\x30\x26\x68\x31\x08\x54\x5a\xc0\x14\xb0\xf8\x79\x11\x5a\xc0\xb5\xf4\xb9\x72\x69\x6b\x66\x48\x7d\x8a\xe8\x4d\x60\xaa\x8c\xcf\xee\x78\x5e\xc9\x8d\xca\x0e\x4b\x91\xba\x65\xa4\xed\x17\xed\x75\x4f\x07\xa4\xed\x70\xac\xa6\x79\xfd\x44\xbc\x93\x50\x05\x03\x87\x1c\xae\xbd\x5f\x9a\x95\x5b\x47\xca\xf3\xfa\x85\xdd\x0f\x3c\xdd\x7b\xc7\x25\x17\x93\xe2\x09\xa5\x4c\xf8\xf7\x55\xf5\x64\xc9\xaa\xc2\x8e\x37\xb9\x97\x8d\xa0\x17\xe2\x44\x2b\xb6\x86\xb5\xd5\x19\xfd\x8e\xdb\x5b\x3c\x8b\xe9\xef\x13\xcb\x7c\x4b\xd7\x4a\xef\xb1\xaa\x10\xf6\x45\x02\x86\xd4\xb8\x11\xaa\x85\xca\x1e\x51\x9e\xfa\x18\x09\xe4\x47\x47\x51\xad\x1d\x45\x98\x77\xe4\x26\xd0\xb1\x4d\xed\x78\x62\x04\x81\xe7\x41\xde\xca\x73\x5d\xb1\x0e\xcb\x3b\x7e\x0d\xa8\x56\x5d\xc3\xd0\xdc\x15\x43\xbd\xde\x35\x0f\xaf\x19\xbe\x62\xe8\x62\xd4\xeb\x85\x6f\x5d\xea\xe9\x15\x9b\xb5\xf9\x58\xdc\x6d\x3e\xd5\xc2\x9d\xd0\x0d\xe0\x6a\xae\xb8\x02\xad\xad\x12\x55\x55\xe8\x43\x20\xcb\x44\xc8\x73\x4c\x64\xf5\xa8\x42\x67\x4c\x23\x04\xed\x36\xe5\xa7\xa8\xb9\xde\x14\x3b\xb8\xd8\x59\x6c\xd6\xba\x89\x89\x9a\xc6\x70\x82\x06\x78\xba\x84\x19\x1a\x90\xf7\x7a\xa5\x87\xd2\x0e\x24\xad\xb6\x91\x98\x54\xa5\xc4\x1b\x84\xa9\x7e\x2d\xf0\x06\x9c\x1c\x20\x63\x1a\xaf\x66\xdc\xf5\x3d\xf3\xbc\x01\x24\xab\x5d\x27\x34\xef\x96\xac\xec\x18\xf5\xb5\x0e\x2b\x3b\x71\x56\xd0\x38\xbd\x95\x23\xb4\x29\xe9\x30\x40\x07\x80\x57\x88\x00\x4d\x0e\x42\xf1\xbb\x90\x22\xfc\x44\x3e\xda\x1d\xef\x6d\xb7\x2f\xea\x91\x2b\xb0\x02\xe8\xef\x2e\xdf\x8b\x9a\x11\xb0\x1b\xe6\xb9\x05\x1f\x10\xcd\x5a\x47\x17\xa3\xed\x56\x48\x82\x1f\x48\x84\x16\xc8\x69\x41\x25\xc4\x39\xef\xc8\xfa\x3b\x41\x3f\x14\x7d\x93\xb9\x1f\x80\x7b\xff\x25\xb5\x8d\x1b\x7a\x33\x30\x27\xf4\xbc\xab\xbc\x84\x94\xe7\x35\xba\xb3\x76\x40\xf9\x9c\xa8\x95\xb8\xe0\xe8\x2e\x27\x4c\x23\x3c\x31\x20\xdc\x72\xd4\xb5\x7c\xad\x98\x79\x1e\x36\x1a\xea\x78\xea\xda\xa3\x6e\x9a\xf5\x33\x2e\x64\xa8\x35\xd8\x0f\xc4\xd8\x01\x23\xd6\xe5\x50\xc8\x09\xf7\xec\x9e\x25\x4b\xb0\xd4\x62\x89\x7f\x2f\x5a\xa8\x48\x4d\xef\x73\x84\x0d\x5d\x6f\x21\xfd\xb4\x03\x69\x13\xc0\x9a\xc9\x1f\xe7\xe0\x43\x29\xe9\xd4\x0b\x7b\x5b\x33\xf7\x21\x06\xd4\x13\xcc\xf5\x89\x7e\x7a\x5e\x9c\x17\xc4\x9c\x3b\x50\xe1\x24\x41\x3d\xa7\x19\xcc\xb3\xf5\x48\xac\x40\x5e\xab\xe1\x72\x27\xaf\x87\x73\xe5\xa2\xcd\xba\x3c\x2b\x88\x91\xe9\x3b\x2f\xce\x05\x29\xb0\x57\xaf\x6f\xdd\xa3\x70\x33\x80\xcd\xba\x44\x80\xf9\xc1\xbc\x4f\x6a\xe1\xb5\x59\x61\x00\xe9\x0b\x2d\x0c\x61\x41\x7f\xc2\xea\x66\xaf\x21\xfa\x80\x46\x29\x6f\x08\x01\xee\x88\x15\xd6\xe4\xfb\x77\xe6\xa4\xeb\x4c\x98\x8e\x94\xb0\x03\x67\xbe\x1c\xe6\xa4\x12\xff\xf7\xa0\x74\x96\xcb\x95\x20\x63\x57\x1b\xe1\x46\xb5\x3b\x83\x86\x4b\xc5\xc2\x9c\x6a\x75\x8c\x27\x80\x05\x75\xc7\x5a\x6c\x50\x0c\x48\x6c\x2b\xe8\x7b\xf3\xe0\x63\x43\x4f\x7a\x84\x73\x79\xbe\x01\x11\x14\x64\x46\xca\x9e\xfd\x5a\x2b\x67\x24\xb7\x95\xab\x3b\x33\x42\x4d\xb5\x4e\xc5\xc1\x7a\x52\xe5\x24\x37\xc3\xcc\xcf\x39\x09\x73\xc2\x91\x3f\xcc\xaa\x32\xbe\xbf\xbf\xe5\x11\xde\xeb\x6f\x38\xc2\x13\x92\xbb\x2a\x63\x53\xa5\xe5\x36\xd8\xe6\xfe\xc0\x7c\x5b\xf0\xa0\xd7\x55\x97\x47\x31\x04\xbc\x52\xf9\x4a\x62\xb3\x7a\xe4\xd1\xc1\x96\xf2\xce\xe9\x83\x00\xe1\x62\xbc\xdf\x6a\x3a\xc6\xff\x54\xc7\x95\xf1\xe1\xc8\x79\x79\xfe\x81\xa7\xef\xd8\x8a\x3a\xc7\xee\x6f\x69\x06\x01\x5e\x1a\x73\xf7\xe1\xae\x42\x9c\x8b\x66\xef\x1e\xa4\x96\xc6\x5d\x8d\x60\x7d\xf4\xa9\xdf\xda\xd4\xee\x0b\x08\xdd\x6e\x3d\xab\xcd\x4f\x6b\xeb\x40\x5d\xdd\xae\x8c\xef\x17\xb8\xbc\x7d\x93\x87\x42\xdf\xdd\x3e\x77\x6e\x69\x94\x5b\x18\xcb\xd6\xfa\xc0\x80\xf1\xea\xb9\xac\x71\xde\x68\xfa\x63\x84\x77\x68\xca\xcf\x64\x50\x64\xa6\x87\x6a\x7e\xb4\xd3\xf5\x9c\x3a\x89\x6e\xb6\x08\xbb\x2b\x49\x6e\xe9\x4b\x33\x23\x2b\x3b\x5c\xf3\x75\xe8\x5b\x05\x78\xd3\x62\x34\x4a\x53\x9b\x07\xac\x7e\x1f\x47\xd4\x79\x9d\xe3\x98\xf4\xe5\x06\xf7\x2c\x16\xa0\xfb\x16\x32\x33\x40\xa4\xd8\x6e\x99\x3f\x1a\x44\x0c\xd5\x05\x76\xaf\xe7\xde\xc2\xa0\x1f\xb8\x18\xe3\x82\x7d\xa4\xfc\x7b\xad\x40\xac\xdd\xcd\x89\xc7\xf1\xa0\xa6\x41\xa9\x61\x03\xe6\xe1\x33\x9a\xc5\xb7\xdb\x6d\xf0\x75\x6b\x71\x60\x1e\x86\xef\xb1\x3a\x3c\x09\x7f\x34\xb7\x42\x08\xaf\xb8\x79\x45\x51\xed\xd6\xb2\xd7\xeb\xba\x38\xdd\x93\x13\x17\x52\x4f\xfc\x78\x0c\xae\x0d\xe1\xb2\xb2\x16\x31\x38\x32\x57\x97\x13\x73\x11\x05\xa3\x50\xab\x57\xdb\xb2\x0c\x19\xf6\x7a\xd3\x69\x52\xac\x78\xc8\xf5\x25\x63\x89\x0e\x76\xdd\x10\x81\x2e\xaa\x0b\x2b\x65\xd8\x04\x1c\x44\xc1\x2c\x8d\x6c\x66\xb5\x01\xea\xc9\xed\x49\x9c\x6f\x64\x15\x4c\x41\x03\xe8\x75\xd3\xeb\x6d\xec\x8d\xeb\x2b\xd9\x59\x25\xcd\xb0\x4e\x81\x39\xb9\xd3\x05\x46\x53\x5d\xd8\x0c\xbb\xe5\x15\xb1\xfa\xed\xa3\x6e\xb5\xda\xc7\xcf\x59\xad\xdb\x98\xc3\x0a\xe7\x48\x47\x95\x4b\xb6\x10\x21\xd2\x19\xa7\x23\x77\xf7\x5b\x4f\x50\xf9\x25\x83\x6a\x84\xb7\xc4\xfb\x7d\x56\x5f\xe1\xb8\x36\xb3\x08\xab\xa1\x9a\xd8\x75\x3c\xf3\x90\x4c\x81\x6b\x13\x9a\x35\x70\x8b\x99\x76\xb8\xdc\x6e\x95\x6d\x21\x3d\x41\x95\x87\x36\x8f\x7a\x7c\x55\xc3\x27\x2b\x1e\x0a\x70\xb5\x9d\xeb\x96\xc9\x37\xfa\x8f\x4d\x9c\x95\x21\x05\x47\x8d\xc6\x13\x99\x2d\xe0\xc3\xce\x4a\x6d\x7a\x47\x01\x0b\x09\x9a\xf2\xb1\xb7\x26\x46\x02\x24\x47\xd8\x93\xc8\x52\xac\x1b\x45\xb3\xe2\xc2\x73\xbe\x96\xcb\x53\xad\xc7\xf2\xec\xf5\x42\x6d\x52\xa2\x59\x1b\xb9\xab\x10\x9a\xf2\x19\xa9\xa5\x97\x54\x1a\xf7\xfd\xb5\xbd\x30\xa4\x50\x97\xb6\x93\x3f\x78\x9f\xa7\x39\xcd\xdf\xdd\x31\x57\x3e\x11\xf2\x88\xe1\x5b\xcf\x45\x48\xdd\x2e\x68\x8f\x63\xb9\xf3\x38\x26\x26\x86\x91\x32\x11\xa0\x35\x1d\x79\x56\x6c\x9f\xb1\x16\xf5\x86\x1d\x61\x38\xbb\xcb\x72\x7b\x93\xc8\x0d\x56\xd5\x06\x24\xf3\xc9\x1b\x5a\x73\x73\x4b\xd7\x4f\xf9\xfa\x56\xe9\x08\x70\x14\x71\xe4\xee\x16\xd5\x5e\xad\x84\xae\x40\x43\x4a\x97\x61\xd7\x53\x59\x35\xdd\xb1\xc6\xbe\x1f\x56\x65\x3a\x0a\x27\x24\x9e\x6e\xf4\xa1\x4c\xe5\x87\x1d\x2a\xd1\x38\x81\x47\xc9\x50\x70\xb5\x39\x29\x05\xd6\x0a\x61\x47\x34\x2e\xe4\xa9\x23\x41\x61\x46\x16\xc6\x7c\xf1\xdf\xd4\xe0\x86\x97\x69\x1f\xfd\xe6\x10\xa9\xb3\xac\xc0\x4a\xd0\x37\xcc\xa6\xe3\x19\x42\x8f\x07\xe3\x5e\x2f\x5c\xf1\xb0\x44\xd3\xc5\x8c\x24\xd3\xc5\x0c\x2b\x35\xc6\x8e\x7c\x97\xe7\x3b\xeb\x58\xc7\xf6\xf2\x4b\x6f\xde\xe6\x9a\x5e\x9b\xa8\xbf\x3e\x29\x22\x71\x61\x6e\x0d\x34\xc3\x18\x74\xd5\x93\x25\xf1\xcf\x87\xdf\xb2\x7d\x86\x7d\xef\xf1\x12\xa6\xd4\x45\xec\x58\xdd\xf1\x61\xc2\xd7\x0c\x58\x7d\xa1\x4a\x44\xb8\x1d\xab\x10\x21\x1d\x4d\xba\x23\x37\x00\xea\xfe\x83\x37\x84\xbc\xca\x7e\x1f\xbd\x64\xb6\xe8\x69\x69\xa4\x22\x35\x8c\xb8\x11\x09\xe2\x4f\xda\x90\x35\x4c\x04\x59\xbc\x29\xda\x20\xe6\x5d\xef\x23\x36\x4e\x7b\x21\xc9\x2f\x36\x9e\xe7\x3b\xf5\x4e\xd6\x34\xf4\x42\xfb\x05\xde\x18\xfb\x04\x08\x6f\xe4\x06\x00\x09\x0c\x01\x51\x40\x98\x8c\xb4\xea\xe6\xe2\x82\xd8\x78\x74\x17\x93\xee\xd8\x30\xc6\xe2\xed\x36\xb4\x3e\x9d\x46\xca\xbf\x3b\x93\xe3\xe2\xd1\x0f\x3f\xd7\x4f\x4d\x1e\xd5\x52\x10\x4b\xb7\xc0\xf9\xd1\x77\x94\x15\x16\x83\x1c\x0d\xc6\x07\xdf\x9a\x4d\x58\x3b\x6e\xc1\xdf\x3a\x31\x0c\x1d\x54\x15\x3c\xbc\xd5\x96\x92\xbe\x63\xe4\xed\x90\xbe\x5f\x17\x54\x6d\xff\x8b\x78\x93\x09\xd2\x50\x8f\xad\x45\x4e\x9a\x01\xa1\xdc\xb5\xd5\x24\x05\x2d\x01\xd2\x1d\x57\xf8\x1b\x55\x6e\x29\xf8\xfa\x4d\xc1\xd7\xf1\x95\xda\x40\xea\x05\x37\x62\x27\x3b\x21\x50\x74\x12\xe7\x09\xcd\xbe\xd9\xcc\xe7\x19\xdc\x17\x3b\xee\xcc\x4f\x35\x3b\x0e\x9a\x0f\x9e\x2a\xa8\xde\x28\x18\x69\x3a\xd9\x0d\x8a\x46\x84\xd4\x40\x06\x49\xc0\x7f\x38\x90\x6b\x70\x7e\x27\x6b\xc1\xdf\x80\x10\xbe\xe7\xd0\x80\xd5\xdc\x1e\x89\xb8\xb8\xa2\x70\x1d\x53\x16\x89\xb6\x02\xe4\x39\x2a\xa8\x9d\x08\x6e\x96\x2c\x59\xee\x9e\x08\xc6\x3d\x3a\x9c\x6f\x84\xe0\xf9\x44\x90\x71\x74\xe4\x7f\x1e\x47\x27\xf6\x13\x0e\x0f\x47\x08\x61\xf0\x0f\x96\x88\x22\xfb\x3d\xbd\xed\xf5\xc6\xe6\x5c\x71\x2c\x8f\x11\xb2\xae\xbf\xc8\x06\xf1\xbc\xd5\x37\xe0\x30\x4e\x53\xa0\xf8\x5e\xb2\x52\xc8\xed\x1c\xed\x06\xc1\x59\xbf\xeb\xf9\x69\x35\xce\xd5\x21\x15\xaa\x7d\x85\x01\xcf\x83\x3e\x58\xf7\xf6\x54\xee\xe8\xf0\xbd\xba\x9e\x06\xd7\xe0\xde\x97\xdc\xe9\xce\xc3\x62\x2a\x66\xdb\x2d\xfc\xf9\xfe\xda\x50\x55\xe1\xdf\xc9\x3d\xc3\xf5\xf6\xef\x77\xec\x19\xd9\xa2\x64\x27\xd8\x8f\xa9\xb0\xfc\x8a\x7c\x02\x4e\xc4\x35\x49\x34\x9a\x18\xc3\x52\x28\xfa\x1d\x8b\x8a\xed\xf6\x77\x0c\x3a\xe9\x37\xd0\x49\x8b\x45\x7b\x2f\x29\x36\x67\xb3\xa3\x5a\x42\x5b\xfa\x4a\xf9\xf2\x32\x7d\xe5\x7d\x35\xfa\xaa\xe3\xb6\x4a\xdd\xcc\xae\xc2\x0a\xe7\xcc\x37\x94\x04\x4e\x6b\x40\x1c\x97\xe4\xe8\xae\xb0\xde\x0f\xf0\xd8\xb2\xdd\xf1\x1f\x64\x63\x4a\x76\x95\xc7\x59\xab\xf3\x37\x53\xbe\x72\x5f\x68\x4e\xbd\x1e\x27\xe6\x49\x51\xc4\xb7\xde\xbe\x0b\x5d\xa6\x36\x5d\xcb\x33\xc5\x47\xa8\xcd\xa5\x0e\x30\x44\x14\x9f\x55\x99\xf2\x42\x15\xfe\x33\xd3\x16\x13\xcc\x38\xfe\x95\xb5\x81\x33\xae\x83\xa3\xc6\x18\xb3\x2f\x85\xe6\xe0\x67\x31\x29\xc8\xcf\x62\x98\xca\xd3\x0b\x4d\x9f\xc6\x59\x36\x8f\x93\x8f\x65\xf4\x67\x36\x29\xc8\x9f\x59\x14\xca\xa7\x3c\x32\x97\x54\x48\xd2\x94\x6f\x44\xf8\x3d\xc3\x23\x4f\xdf\x5e\xc9\x1e\xe7\xbe\x2f\x1b\xcd\xda\x8a\xc3\x7c\xca\x67\xa8\x6e\x45\xa5\x8d\xdb\x4c\xfd\xe6\xb3\x1a\x4e\xff\x9e\xd9\x4b\xf2\x3f\xb3\x03\xdb\x2d\xfb\xdd\x07\xd2\xa9\x98\xf9\xb6\xd8\x29\xaf\x4b\xb4\xec\xa8\x0a\xaa\xb5\x7f\x07\xe6\xea\x05\xae\x63\xe8\x1d\x81\xcb\x26\x42\x94\x68\xb5\x42\x18\xc8\xed\x5c\x92\xca\xa0\x15\x08\x1e\xa1\x7e\x62\xa1\x00\xea\x39\xe1\x29\x5d\x81\x99\xdd\x17\xe0\x59\xdd\xb3\x92\xcc\x7d\xec\xd6\xbe\x30\x87\x09\x28\xae\x3c\x49\x04\xbb\x66\xe2\x56\x79\xc5\xf3\x98\xb2\x5a\x34\xa8\x9e\xea\x3b\x1f\x77\xdc\x97\x40\x62\x8f\x36\x75\x41\xed\x3a\x38\x07\x31\x79\x24\x0f\x04\x30\xa2\xf0\xe5\xe0\xcf\x79\xed\x24\xab\x66\x25\xb2\x98\xc3\x25\x2c\xb8\xd9\x10\xcd\x8c\xe4\x4d\x27\x8b\x7f\x61\x56\x82\x09\x55\xb8\x96\xb4\x81\x63\xd0\xdd\x6f\xfc\xb4\x80\x8c\x18\x27\xc7\x23\xcc\x39\x79\x3b\x7c\x13\x97\x25\xb9\x13\xfc\xad\x76\x49\xd0\xbc\xd4\xf0\xcc\x1e\x43\xda\xa0\xaa\x70\xcc\xc9\x9d\xba\xf2\x8e\xe4\x1e\x5c\x72\x72\x67\x54\xf8\xbe\x5e\xf1\x4d\x49\x83\x0a\x6f\xbc\xc0\xbe\x44\x63\x81\xb7\xa9\x65\xdc\xcc\x10\x96\x2a\xd3\x1f\x19\xf7\xd7\x5f\xc3\x63\x10\xba\x03\xc1\x25\xb3\xa2\x74\x46\xa7\x04\xeb\xad\x36\x81\xa9\xb6\x4a\x9d\xc8\xd6\x25\x7c\x93\x8b\xa7\x3c\xdb\xac\x9a\xdb\x93\xf2\x36\x67\x77\x45\x39\x82\xea\x64\x42\xe3\x42\x12\xd5\xd3\xbf\x5d\x96\x97\x9b\xd1\x28\x1e\xcd\x80\xa4\x86\x48\x63\xef\xc7\x2d\x66\x30\xb6\x1d\x13\xb6\xdd\x8e\x8c\x63\x91\x92\x50\x25\x31\xf8\x7a\x11\x06\x97\x22\xd0\xd2\xf7\xe5\xc5\x68\xbb\x2d\x1f\x3b\x57\xcd\x71\x3f\x14\x03\x8e\x0e\xe2\x3e\x29\x07\x1c\xc7\x7d\x92\x0f\xe2\xaf\x72\xcc\x49\xd9\x1f\x57\x15\x5e\xc8\x06\x2c\x58\x9e\xb6\xc2\xdf\x3c\xf9\xd8\xea\x79\xb3\xfa\x02\x81\x6b\x6b\x0e\x3c\x15\x5a\x73\x49\x12\x13\x3e\x50\x32\x25\x84\x38\x2f\xee\xac\x1f\x7b\x60\x16\x7d\x7b\xf8\x8c\xb1\x18\x28\x1f\x77\xac\x2f\x73\xe2\x82\xf0\xfe\x18\xcb\xaf\x7c\xc0\xbe\xca\xd1\xe3\x9a\x23\x6a\xbc\xe4\x64\x1a\x04\xde\xf6\xba\xe6\x96\xe3\xb5\xe4\x56\xe9\x9f\x9e\xa3\xa5\x36\x08\xb5\xe2\xe1\x92\xa3\x3e\x5c\xe6\xe9\x82\x96\x7c\x4a\xbd\x2b\x0e\x60\x8d\x59\x7a\x68\xea\x34\x94\x66\x30\xb3\x6f\x79\x93\xf6\x03\x41\xfc\xd0\x27\xa9\xae\x79\xdb\xb5\x7d\xed\x14\x0b\xe2\xb7\xf9\xcc\x73\xac\x6d\x84\x6a\x07\x1e\xa3\xf1\x6a\xa7\xa0\xe9\xac\x69\x39\xa7\xe8\xf7\x51\x3e\x2d\x66\x44\x09\xef\xe2\x56\x07\x8a\x73\xb9\x1e\xbc\x3b\x35\xee\xed\x5e\xd6\x39\xdd\xfc\x03\x4d\x8c\xfd\xc7\x49\x4e\x6a\xdf\x21\x45\x51\x38\xf7\xd6\x10\xa1\x38\x87\x8b\xec\x39\x07\xdd\xb7\x1b\x0e\x2e\x51\x7c\xf6\xe3\x0d\xdf\x99\x49\x70\xa3\x05\x47\xf4\xbb\x0a\x61\x8a\xba\x3b\x57\xa5\x05\xd2\xaa\x8a\xb9\x92\x09\xdc\x89\x04\xa4\x47\x6a\xbe\xc3\x3d\x02\xf5\xb9\x87\xc2\xbf\x68\xd7\x1d\xdb\x52\xf6\x5f\xb7\x2a\x2e\x31\xaa\xaa\x74\xb2\x67\xf8\x19\xcf\x41\x85\x95\x8c\xb0\x17\xf4\x3c\x4f\x09\x1d\x5e\x4b\xc2\xdc\x58\x11\x8a\xc0\xf6\x62\xbd\x10\x51\xdc\xfa\xf3\x28\x81\x43\xb7\x40\x77\x95\x96\xaf\xf9\xc4\xc9\xe1\x54\xa2\x8a\x74\x71\xb9\x19\x3d\x78\x74\x2a\x9f\x67\xa3\x81\xfc\x5b\x9c\x5c\x6e\x46\x0f\x47\xf0\xf1\x70\xb1\xb8\xdc\x1c\x8f\x4e\xe4\xc7\xf1\xe8\x0c\x3e\x62\xf5\x01\x31\x27\x90\xec\x24\x9d\x3f\xb8\xdc\x9c\x50\xf8\x38\x5b\x24\xc9\xe5\x26\x4e\xe0\x23\x3d\x8d\x17\xb3\x43\xfc\x56\xa2\x05\x56\xfe\x89\x17\xe9\xd3\xa5\xef\x1a\xcb\x2e\x8b\xc3\xcb\x1b\x6b\x68\x7f\xbb\xa5\x8f\x83\xff\xf1\xdf\x03\x38\xa3\x0b\xfe\xd3\x7a\x4d\x8b\xa7\x71\x49\x43\xa4\x64\x79\x5e\xf2\x1b\x13\xb0\xdd\x7e\xe2\xd6\x3e\xbf\xb7\x5c\x5e\xf3\x06\x03\xb6\xdb\x0d\xc5\xb0\xe4\x9b\x22\xf1\x31\xcd\xe5\x4d\xa0\xb8\x0c\x6f\xe5\x18\xc3\x56\xae\x0b\x8b\x20\xc4\xbb\xa7\xe2\xb5\x6b\x1a\x39\xe9\xc0\x6c\xd0\xce\x64\x13\xa8\xd7\x93\x04\x8a\x13\xdf\xb6\x32\xbc\x32\xe7\x47\x8e\x7f\xd0\x7d\x7f\xac\xba\xf8\xf8\xa1\x1c\x82\x93\x47\xc7\x03\xf8\x3b\x83\x91\x18\xc3\x48\xcc\x53\x78\xc2\x10\x25\x63\x78\x1e\xc1\xf3\x04\x9e\x0f\xe0\x29\x87\xee\xe1\x58\x8d\xd6\x38\x96\xcf\x93\x39\x7c\x3c\xa0\xf2\x79\x3a\x92\xcf\xf4\x21\x04\xa5\x09\x3c\x29\x7c\x50\x18\x67\x0a\xf9\xe9\x23\x78\xc6\x2a\x42\x56\x7b\x3a\x96\x15\x9e\x1e\x43\xc1\xa7\x27\xb2\xe0\xd3\x18\x4a\x39\x9d\xcb\x22\x4f\x29\xd4\x72\xba\x38\xbe\xdc\x8c\x1e\x8d\x21\xe6\xd1\xf8\x0c\x9e\x10\xf3\xe8\x08\x62\x8e\x1e\xa8\x8f\x53\x78\x9e\xa9\x0f\x59\xc1\x99\x6a\xfe\xd9\x48\x36\xe9\xec\x58\x42\x76\x76\x02\xed\x3e\x3b\x79\x04\x4f\x48\xf5\x40\x05\x3d\x90\x8d\x3d\x7b\x08\x69\x1f\xca\x82\xcf\x1e\x49\xf8\xce\xe6\x90\x6f\x2e\x9b\x7a\x96\xa8\xa4\xd0\x3b\x67\x09\xe4\x4e\x65\xb5\x67\x14\xb2\x51\x99\x2d\x1e\x8d\xe1\x29\x43\x62\xa8\x34\x3e\x81\x90\x13\x08\x39\x39\x85\xe7\x23\x78\x42\x33\x62\x00\x23\x7e\x00\x89\xa0\x33\xe3\x53\xf5\x2e\x21\x8a\x01\x8a\xf8\x11\x64\x06\x58\x62\x05\x45\x0c\xa3\x13\xc3\xe8\xc4\x09\x94\x07\x10\xc5\x00\x4b\x0c\xb0\xcc\x01\x96\x39\x40\x31\x3f\xa6\xf0\x94\x63\x3d\x57\xdd\x30\x3f\x39\x81\xa7\xcc\x36\x7f\xf0\x10\x9e\xb2\xb8\x39\xf4\xc2\x1c\x7a\x61\x0e\x35\xcf\xa1\xfd\xf3\x64\x04\x4f\x48\x0f\x0d\x4f\x8e\x61\xa4\x93\x93\x11\x3c\x1f\xaa\x8f\x47\xf0\x8c\xd5\x87\x4c\x9c\x40\xe7\x26\x50\x45\x02\x85\x27\x50\x78\x02\x0d\x4a\x60\xfe\x25\x30\xf3\x92\x04\xd2\x24\x10\x0e\x15\x25\x29\xe4\x4d\x21\x1c\xda\x96\x40\xdb\x52\x68\x4f\xaa\x5a\x92\x42\x4b\x52\xa8\x2c\x85\x36\xa4\x50\x4d\x0a\xd5\xa4\x49\x0c\x4f\x59\x4d\x9a\x1e\x41\x86\x14\x32\x40\xa9\x29\xa0\x28\x7a\x3c\x86\xe7\xc9\x00\xfe\x64\x0e\x7a\x72\x0a\x1f\x27\xb2\x26\x3a\x87\xf8\xb9\x8a\x9f\x9f\xc1\x73\x0e\x4f\x09\x2c\x4d\x1e\x41\x04\xc0\xbc\x18\x3f\x82\xa7\x4c\xb4\x38\x7e\x00\xcf\x53\x78\x42\xc8\x29\xc0\xbc\x38\x95\xc5\x2e\x1e\xc1\x24\x5d\x3c\x3a\x81\xe7\x43\x78\x42\x5a\x85\x2c\x17\x67\xea\x03\xe6\xf5\x02\xaa\x5a\xc8\x3e\x1a\x8f\x8e\xd2\x81\xfc\x3b\x1e\xc1\xf3\x48\x7d\x9c\xc2\xf3\x0c\x9e\x31\x3c\x53\x78\x52\xf9\x7c\xf0\x08\x9e\x10\xfb\x80\x42\x86\x87\x90\x1b\x00\x1a\x8f\x4e\x4f\xe4\x53\x0e\xf8\x78\xf4\xe8\x01\x3c\xa1\xa6\x47\x50\xc6\x99\x7c\x1e\x3f\x58\x5c\x6e\xc6\xa7\x63\xa8\xee\x74\x2c\x33\x9c\xaa\xba\x4f\x8f\xe1\xe3\xc1\x11\x3c\x8f\xe5\xf3\x14\xde\x4f\xe1\x7d\x7e\x0a\x89\x24\xc2\x19\x9f\x42\x03\x4e\x93\x33\x08\x4a\x21\x3e\x95\x11\x8f\x46\x72\x45\x8c\x1f\x8d\xe0\x23\x96\x80\x9e\x1d\xc9\x6e\x18\x9f\x1d\x1d\xc1\xf3\x14\x9e\xb2\x1d\x67\xc7\x10\x72\x0c\x85\x9c\x1d\xcf\x2f\x37\xe3\x78\x7c\x0a\x4f\x19\x1d\xcb\xc9\x36\x8e\x1f\xc8\x51\x19\xc7\x12\x53\x8d\x63\x68\x6c\x2c\x27\xc6\x38\x7e\xf8\x00\x22\x1e\x26\xf2\x79\x7a\x0c\x1f\xa7\xea\x43\xb6\x70\x0e\xb8\x63\x3c\x1f\x49\xe0\xe6\xd0\xb4\xf9\xf1\x43\x08\x82\x7e\x85\x35\x35\x9e\xcb\x35\x3d\x9e\x3f\x04\xa8\xe7\xd0\xd0\xf9\xa3\x11\x3c\xc7\xf2\x19\x43\xcf\xcc\xe3\x07\xf0\x7c\x04\x4f\xd9\xa8\xe4\x28\x91\x11\xc9\xf1\x31\x3c\x1f\xc2\x53\xc2\x9e\xa4\x50\x6d\x92\x1e\xc1\xf3\x04\x3e\xe8\x08\x9e\x47\xea\xe3\x11\x3c\x65\x07\xa5\x09\x24\x4e\xa9\xcc\x9f\x2e\x60\x3a\xa4\x72\xd3\x3c\x1a\x8d\x12\x78\xa6\xf2\x09\x45\x1e\x8d\x16\xa3\xcb\xcd\x51\x42\x17\xf2\x23\x59\x8c\x2f\x37\x47\x29\x85\x98\x54\xed\xc0\x47\x31\x6c\xba\x47\xf0\x71\x76\x06\xcf\xf8\x72\x13\x3f\x7c\x28\xb3\xc4\x0f\xe5\x60\xc6\x0f\x65\x17\xc5\x0f\x4f\x53\xf9\x94\x25\xc6\x0f\x65\x51\xf1\x23\x89\xee\xe2\x47\xa3\x87\xf0\x9c\xcb\xe7\xd1\x03\x78\x42\x88\x44\x98\xf1\x23\xa8\x2e\x7e\x04\x19\xce\x8e\x64\x67\xc6\x67\x12\x51\xc7\x67\xb0\xce\xe2\xb3\x07\x10\x03\x0b\x22\x3e\x93\xd3\x30\x3e\x9b\x1f\xc3\x53\x25\x96\x8b\x2e\x06\x84\x1c\xc7\x80\xe8\xe3\xf8\x88\xca\xa7\x5c\xba\x71\x2c\x27\x44\x1c\xcb\xe5\x16\xc7\xb2\x4f\xe3\xf8\xe4\x18\x9e\x90\x41\xee\x29\x71\x3c\x3f\x82\x6c\xf3\x13\x78\x9e\xc2\xf3\x11\x3c\xa1\x20\x89\x89\xe2\x58\xee\x84\xf1\x9c\x3e\x80\xe7\x23\x78\xa6\x97\x9b\x54\x13\x1c\x0b\xd9\x5f\x8b\xf9\x98\x5e\x6e\x16\x8a\x20\x59\xd0\x91\x0c\xa2\x47\xea\x43\xb6\x79\xb1\x38\xa3\xf0\x5c\xcc\x0e\x1d\xd1\xf0\xae\x46\xa6\xc3\xd5\xae\x3c\x48\xc2\xf5\xee\x63\x72\xfa\xf0\x51\xaf\xf7\x83\xa5\x36\xbc\xab\x7b\xde\xbc\x29\xdb\x63\xf8\x5c\xd9\x9a\xca\xc1\x3d\xaf\x73\x1f\x92\x83\x4e\x50\xa8\xdd\x3b\x0d\x93\xb2\x7c\x47\x3f\x09\x52\xa0\x5d\x93\x47\x02\xb1\xfb\x0c\xac\x5b\xef\x02\x02\x79\xfc\x76\x54\xe7\xe2\x88\x9a\x47\xe2\x5a\x71\x02\x14\x95\x77\xaf\x54\x7e\xac\xd3\x3e\x46\xda\x46\x56\x65\xef\x11\xc4\xe3\xd1\xf9\x60\x20\x2c\x03\x50\x95\xa8\x6f\xfe\xe0\x03\xb5\x38\xda\x7e\x53\x27\xd3\xa0\xa2\x3a\x48\xa8\xfa\xc8\x9b\xfd\x09\xc6\x6f\x26\xfb\xf4\xcf\xda\x12\x3b\x11\x24\x30\x39\xff\x3c\x4f\xc3\x62\xbb\xa5\xca\xbc\x5d\x49\x05\x10\xda\xca\xcb\x37\xab\xf6\x98\xd5\xa9\xf9\xc0\xf5\x7a\xdc\x54\x20\x49\xee\x62\x28\xdb\xfe\x8e\xeb\x11\x97\xd1\xa1\xef\x3a\xd6\x50\xe2\x7f\xe1\xb6\xcd\x85\xb9\xc3\x72\x0e\xa0\xc3\xee\x08\xdc\x15\xf1\x6b\x2a\x21\x0d\xe4\x44\x8c\x13\x01\x66\xf1\x4d\x84\x82\xd8\x8f\x12\x08\x17\x8a\x8b\xf0\x4a\x71\x11\x72\x11\xb3\xbc\x6c\x30\x25\xd8\x22\x3c\xf6\xb5\xb0\x80\x49\x20\x7c\x10\xb5\x2d\x7d\x99\xd7\x79\xd8\x34\x21\xa1\x40\x07\x29\x07\x2b\xbe\xe3\x96\x62\x96\xbc\x14\x08\x0b\x42\xa8\x33\x9f\xa9\x84\xa9\x1a\x95\x78\xa4\xfa\x07\x5e\x53\xf1\xb6\xdd\x1c\x27\x82\x5d\x9b\xb5\x73\x0e\x6a\x3e\x05\xe7\xc2\xfc\x37\xe2\x11\x25\x6d\xe1\x2d\x73\xee\x85\xbf\xca\x6b\xde\x4a\xff\xb6\xbd\xbc\x2c\x51\xd0\xa7\xda\x55\xa9\xfc\xba\xbc\x2c\xbf\x0e\x50\x05\x9e\x38\xc6\xe3\x5e\x2f\xfc\x50\xf3\x2d\x06\x83\xae\x8a\x6a\x07\x7c\x77\xc0\x6b\xf3\xc8\x9c\xc7\x9e\xc9\x21\x2b\x56\xca\xeb\x4f\x1b\x77\xba\xe6\x02\x88\xbc\xe0\xa1\x40\xca\x65\x8e\x72\x19\xea\x49\x82\x29\x4e\x7e\xa1\xb5\x45\x0b\xdf\xa3\x2b\xf5\xd1\x8e\xbd\xcf\x2e\xac\xd6\x28\x9b\x14\xd3\xf1\xac\xcf\xa2\x00\x7c\x6a\xbf\x94\x40\xc5\x69\xfa\x45\x50\x1d\x28\x98\x00\x3b\xe6\x48\x71\x25\x4d\x5c\x9f\x84\xb9\xd5\x3e\x15\xfe\xe0\x7f\xbb\xc3\x8d\xa0\x9e\x6c\x74\x9b\x99\x90\x7c\x5a\xcc\x7a\xbd\xee\x0b\x0e\x5a\x4e\xc6\x95\x2c\x30\xbb\x8c\x13\xd9\xf6\x63\xfc\xcf\x5c\x4b\x06\xd4\x17\xf2\x15\x15\x7a\xa8\xca\x6f\x6e\x9f\x5a\xef\x04\x0e\xdb\x7d\x49\xf2\xd0\xe3\x38\x06\x08\xdf\xaf\x53\x31\x74\x69\x0f\x8a\x5e\x8f\x86\x85\xe6\x70\x7e\xc7\x89\xd6\xf6\xfd\x86\xe3\x9f\x38\xfe\x07\x6f\x38\x5a\x57\xfe\x60\xea\x8a\xc1\x94\x18\x5f\xd6\xa6\xd1\x41\x5a\xc4\x57\x57\xf1\x3c\xa3\x81\x3c\xa5\x6e\xb7\x10\xf0\xac\xe0\x6b\xf8\xae\x42\x4f\x86\xfb\x4f\xbc\x26\x39\xfa\x0d\x37\x8c\x0e\xcf\xc5\xcf\xff\xf3\xdf\xff\x8f\x00\x1d\x00\xaa\xf6\x3c\xc7\x08\xbc\x6f\xf7\x09\x3e\x05\x68\x86\x10\x1e\x75\x89\x8f\xff\x6b\x6e\xb3\x7b\xbd\xf0\x1b\x4e\x84\xef\xef\xfb\x82\x8c\x41\x6c\xcb\x4b\xf5\xf8\xa8\xd7\xeb\xaa\x56\x3f\x42\xa8\x52\x13\xe4\x1b\x3e\x69\x02\x17\x79\x01\xff\xe3\xff\xd4\x2e\xf3\x02\xad\x59\x1c\x75\x58\x0e\xe6\xd3\xe7\x19\x4f\x3e\x9e\x77\xb4\xf7\xf0\xf1\xfa\xd3\x79\x47\x3b\x24\xd7\xde\xf4\x06\xe3\xf5\xa7\xc0\xf3\x0c\xbc\xcf\x7b\x52\x50\x63\x49\xfd\x91\xd7\x1c\xad\xff\x64\x14\xb7\x3b\x3f\x71\xad\xca\x04\x5d\xb7\xb7\xb7\x9e\xfc\xdf\xff\xd7\x93\x00\xc9\x49\xf3\x91\x83\x2b\x87\x31\x92\xb3\xec\x1b\xbe\x01\x9b\x19\x4f\xc1\xa3\xf9\x8f\xc0\xc7\x51\x0e\x9d\xb7\x5b\xb9\x20\x16\x82\x90\x7c\x58\x78\x3e\xdd\xf5\x84\x28\x54\x39\x63\x7c\xb4\xbf\x1c\x0b\x21\x29\x54\x11\x03\x5d\xd4\xc5\xb1\xba\x1d\xe5\xf8\x77\x72\xf1\x3b\x1d\x0c\x72\xdc\x25\xc1\x65\x7e\x99\xcf\x8d\xf2\xc2\xe1\x65\x7e\x68\x2e\x02\x26\x3e\x43\xa7\x2e\xcb\x0a\xdc\x45\xcb\x59\x14\x17\xa4\x38\x77\xa2\x7f\x8e\x13\x93\xcb\x0d\x0c\x78\xbe\x0c\x8c\xfb\xd4\x79\xbe\xdc\x8a\xdf\x08\xed\x72\x8a\x1a\xc9\x3b\x36\x18\xa3\x09\x1b\x8c\x23\x86\xb0\x55\x92\x7f\xad\x9c\x59\xc9\x02\xbb\x24\x9e\x84\xfa\x6e\x83\x7b\x66\x60\x11\x16\x7d\x12\xf7\xc7\x28\xb2\xb1\x72\xe7\x62\xfd\xb1\x27\x08\xdc\x6a\x41\xc3\xb6\xbf\xb8\xcc\x27\x5b\xd9\x0b\x15\xfe\x3d\x27\x37\x2c\x4f\xf9\xcd\xd0\x37\x89\x34\x69\xb2\xe4\x5c\x11\x35\x16\x5f\x97\xd4\x39\x7c\x3b\x9b\x46\x77\x5c\xd5\x61\x91\x85\x59\x21\xda\x9b\x9c\x16\xc6\xed\x9a\x2b\xa7\x4e\xff\x78\x45\x1a\xa5\xf2\xb0\x2b\x40\xf2\x0b\x76\x65\x43\xa3\xa2\x2e\xa1\xa8\xd7\x1b\x75\x89\x18\x26\x7c\x25\x23\x9f\xe7\xe9\x1b\xce\x72\x51\x86\x01\x40\xfb\x8e\x3f\xcf\xd3\x00\xee\x70\x7e\xc3\x49\xc0\xf3\x84\xaf\x6f\x03\x96\x87\x7f\xe1\x0e\x17\xc9\x1d\xe0\x2f\xbc\xb1\x84\x74\x52\x1c\x28\x08\xce\x03\x84\x03\xd3\x2a\x47\xe5\xfe\x85\x0f\x55\x42\x84\xff\xc0\x9d\xa3\xf7\x3f\x73\xfc\x57\x39\x27\x3f\xd2\x5b\x89\x72\x4b\x72\x77\x1c\x05\xcf\x73\xa0\x7d\x1e\x45\xc1\x37\x71\xf2\xb1\x5c\xc7\x09\x0d\xf0\x59\x14\xbc\x8b\xe7\x01\x1e\xbb\x04\xe3\x87\x51\xf0\x76\xc9\x16\x22\xc0\xe3\xd3\x28\x78\x2a\x8a\x2c\xc0\xe3\x47\x51\xf0\x24\x93\x41\x67\x51\xf0\x26\xde\x94\x34\xc0\x47\xa3\x28\x78\x1a\xaf\xcb\x97\x3c\xf9\x18\xe0\xa3\xd3\x28\x78\x5e\x26\x01\x3e\x3e\x8a\x82\xb7\xaa\xf4\xe3\x63\x99\xf8\x8a\xfe\xb4\x0e\xf0\xf1\x89\x7a\x7f\xc6\x6f\xf2\x00\x1f\x3f\x90\xf5\xa5\x01\x3e\x7e\x18\x05\xdf\xf1\x95\x4c\x7c\x1a\x05\x2f\xa9\xac\xf6\xf8\x51\x14\x40\x96\xb3\x28\xf8\x51\x2e\xb5\x00\x9f\x8c\xa2\x40\xe5\x3c\x91\xe5\x14\x2c\x17\x6f\x93\x42\x7e\x3e\x88\x82\x17\xa0\x4b\x14\xe0\x93\x87\x51\xf0\x4c\xd9\x6e\xc7\x0f\xce\xa2\xe0\x3c\xc0\x0f\xc7\x51\x40\x02\x7c\x36\x8e\x82\x1f\x78\x1a\xe0\xb3\x23\xf3\x72\xac\x5f\xc6\xa3\x87\x51\xf0\xb5\xfc\x3f\x85\xa4\xe3\xd1\x59\x14\x0c\x02\x3c\x1e\x8f\xa2\x60\x28\xff\xc7\x51\x70\x18\xe0\xb1\x6c\xa0\x29\x7d\x7c\x7a\xac\x12\x3d\x7a\x08\xd5\x8c\x1f\xe9\xcc\x8f\x1e\x45\x01\x96\xff\xba\x90\x33\x5d\xc8\x99\x2e\x44\xd6\xff\xf7\x00\x1f\xc9\x6e\x9c\x06\xf8\x48\xf6\xe1\xe5\xa5\x7c\x19\x47\xc1\x4c\xfe\x1f\x45\xc1\x6f\x03\xfc\xf0\xf8\x48\xf6\xa3\xec\x05\xf9\x7a\x6c\x5a\x2f\x3f\x4e\x4c\x3f\xc9\x8f\x07\xb6\x8b\x1e\x1e\x1f\x9d\x1e\x39\x10\xe5\xe7\xb1\xe9\x5b\xf9\x61\x7a\x5c\xbe\x3f\x74\xe3\x22\x3f\x4f\xfd\xa1\x79\x78\x7c\x3c\x3a\xb2\x9d\xea\x11\x20\xdf\xd7\xcf\x7c\x19\xbd\xa6\xd9\x57\x47\x13\x3a\x14\x3c\x52\x5a\xa4\xde\x3d\x73\xbc\x27\x2d\xc8\xc2\xc9\x2c\xde\xbd\x6f\xec\x2e\x0d\x40\xe6\xdd\x89\x08\x7e\xcf\x43\x31\x1d\xcd\x50\xe4\xdd\x9e\xe6\xfb\x93\xd3\x38\x04\xf1\x4d\x14\xd5\x54\x8d\xbd\x9b\xd7\xd8\x27\xc9\x6e\x94\x8c\x53\x02\xe7\x01\xf2\x6d\x21\x09\xc4\xa2\x4b\x94\x64\xcc\x6b\x16\x16\xc8\x38\x4d\xf9\x41\x7e\x60\x4e\xd8\x84\x29\x22\x51\x35\x27\x8f\xc3\x02\x45\x02\x9e\x23\x03\xc6\x5a\x62\x5e\xee\x1d\x7a\x59\xad\x52\x05\x82\xf6\x63\x52\x38\x18\x72\x1d\xa4\x2b\x53\x66\x51\xb6\xdb\x11\x21\xae\xca\xba\xad\x7a\x30\xbc\x51\x68\xef\x16\xfa\x5a\xf3\xf2\xed\x21\x92\xc8\x5d\x55\xe0\x74\x7b\xc4\x30\x59\x5e\x10\xae\x5e\x3c\x48\x55\x3c\x8e\x27\xa3\x88\x7b\xc8\xdc\xc2\xce\xe3\x86\xc0\x8c\x85\xc5\xf6\x3a\xc8\x96\xe7\x5d\x52\xf4\x7a\xe2\xc2\xcb\x1a\xeb\x66\xff\x99\xd7\xa5\x14\xf2\xcf\x39\x9f\x00\x23\xd3\x60\xc5\x41\xf4\x7a\x60\xb3\xc1\xdd\x3a\xba\x48\x42\x84\xb2\xe8\x40\x88\xf0\x68\x8a\xdc\x24\x05\xc8\x99\x82\x15\x83\xd4\xaa\xea\xc2\x89\xce\xdf\x05\xa3\x10\xbd\x5e\x28\xe1\x43\xb8\x40\x51\x4b\x44\x81\x70\x8e\x0e\x72\x52\x54\x2d\x7d\x53\xc6\x75\xab\xd5\x85\x55\xdb\xef\xe7\xf2\xe4\x07\x8a\x47\xfa\x48\xf7\x78\xd4\xeb\xbd\xe3\x5a\x41\xc3\xec\xc7\x02\xa1\x36\xea\x7b\x13\x37\xcf\xe9\x6a\x9a\xfb\x86\x72\x3a\x99\x4b\xe4\x5d\x57\xc7\xb1\x32\xd4\x18\x13\x36\xe5\x33\x5c\x12\x0d\x63\x6c\xa7\xec\x20\x8f\x64\x1e\xed\x68\xaa\x7c\x1c\x6b\x9d\xf0\xf2\x22\x76\xde\xab\x3a\x60\x4f\xa1\x24\x24\xd6\x56\x35\xe0\xd5\x45\x43\x35\x25\x22\x84\x4f\xca\x28\x7f\x3c\x22\x24\x84\x1a\xfb\x24\x9f\x21\x5b\x95\xcc\xa1\x6d\xea\x01\xec\x5e\x9a\x9a\xbc\x71\x49\xa0\x08\x07\x23\x00\x2d\x73\xe3\xc1\x58\x0e\x8c\xfe\x06\xf9\x59\x19\xe0\x3b\xf1\xdb\xe9\x2b\xd9\xf9\xd6\x17\xdd\x39\x6b\xed\x78\x86\xd0\x39\x62\x7d\x6b\x49\xa9\xc3\x2e\x46\xdb\x2d\x7b\x5c\xc3\x1a\x13\x10\x4a\x66\x95\x6f\xde\xcd\x9d\xbd\x47\xe7\xf4\x62\x3c\x3a\xa7\xfd\x3e\xfa\x2b\x9f\xd2\xfe\xc9\xa3\x19\x81\x97\xb3\x87\x33\xa2\x84\x2d\x42\x2d\xaf\x4f\xc9\xc3\x07\xe7\xf4\x82\x9c\xb9\xe4\x26\x09\xb4\xe9\xa9\x66\x9e\xb9\xf4\x63\x99\x7c\x7c\xe4\x4a\x1f\x8f\xc7\xba\x78\xc0\xf9\x33\x12\x7c\x1b\xf4\x69\x85\x42\x85\xa0\x92\x98\xec\x18\xd1\x08\xe6\xe6\x27\x4a\x71\x53\xce\x6b\xbf\xb2\x2c\xc5\xcd\xab\x57\x5f\x7d\xf5\xd5\x2b\xf8\xe1\x57\xf8\xd5\xd8\xfe\x54\xd8\xab\x97\x7b\x7f\x5f\x12\xaf\x2b\x9a\xef\xfd\x61\x59\x3d\xd4\xaf\xca\xfb\xea\xab\xf1\x18\x5e\xc7\x2f\xef\x2b\xfe\x9e\x6a\x55\x7c\x80\x05\x09\x0a\xef\x87\x8b\x57\xaf\x56\xf0\x2b\xfe\x99\xdf\xaa\xf6\xd3\x81\xb9\xfd\x7d\x95\xe7\x32\xd1\x3f\x55\xf4\xbf\x06\x0a\xfc\xa0\x65\x81\x36\xd7\x01\x77\xa5\x7b\xef\xa6\x47\xa7\xea\xe3\x51\x9c\xcc\x0e\x71\x41\x0e\xa7\x72\x12\xcc\x0e\x31\x23\x87\xd3\x97\x3f\x16\xb3\x43\xcc\xe5\xdb\x7c\x9c\xcf\x0e\x71\x4c\x0e\xa7\xf2\xc5\xed\xff\x65\xcd\xf3\x06\x2c\x56\xe3\xd6\x08\x10\xb2\x36\xf9\x20\x38\xc9\xab\xe6\xa5\xbe\x72\xaf\xdc\xcd\x15\x0f\x62\xe3\xd9\x38\xb3\xae\x45\x71\x42\x36\xc6\x8f\xc7\x42\x9e\x85\x96\x64\x74\xbe\xbc\x48\xce\xfb\xfd\x25\x5a\xa8\x73\xc7\x15\x09\x33\xb2\xf1\xd9\xcd\x4b\x84\x2e\xc8\xd1\xc9\xe9\xc4\x9e\x72\x32\x14\x8d\x4f\x8e\x4e\x2e\x48\xd6\xeb\x65\x17\x64\xfc\xe0\xe8\x64\x12\xfc\x18\x44\xe3\x07\xc7\x0f\x6d\xe0\xe9\xe9\xf1\xc4\xa2\x83\x6c\x20\xe3\x50\x34\x3e\x3d\xb5\xd9\x8e\x8e\x8e\x46\x93\xa0\x08\xa2\x47\xe3\xb3\x23\x13\xf8\xe8\x68\x74\x3c\x09\x6e\x82\xe8\xd1\xd1\xe8\x84\x90\x6c\x12\xcc\x83\x28\x78\x19\xa0\x83\x25\x71\x2e\x2a\xd7\x24\x78\x19\x58\xc8\xef\x82\x55\x40\x48\x78\x45\x16\xd3\xe5\x0c\x4d\xe4\x93\xac\xa3\x35\xb9\xaa\xfc\x3c\x69\x23\xcf\xd8\xcb\xd3\xeb\x05\xf2\x18\x97\xaa\xbc\x41\x1e\x44\x4c\x75\xe3\x15\xea\xf5\xc2\x94\x5c\x61\x88\xbf\xea\xf5\x42\x95\xe2\x47\x70\x96\xcf\x8b\x70\x49\xc6\x78\x4d\x16\xd3\xd1\x4c\x16\x3d\x18\xeb\xc2\xfb\xf5\xc2\x65\x5d\x6b\xfd\xbf\x98\x2e\xfb\xe3\x99\xae\x69\x1c\x48\x62\xb6\x4b\xae\xb6\xdb\x75\x57\x47\x6d\xb7\xc1\x38\xe8\x42\xfa\x5c\xfe\x6f\xb7\xaa\xd2\x35\xc2\xb2\x4d\xaa\x56\x37\x6e\x72\xd4\x03\xec\xd5\x87\x54\xd1\xaf\x02\xcb\x75\x0f\xbe\x92\xc0\x3b\xdc\xba\x22\xcb\xfe\xf8\x7c\x75\x91\xf4\x7a\x10\xb5\x98\xae\x66\xe7\xfd\xfe\x0a\x9d\x9b\x14\xb7\x64\xd9\xeb\x05\x5d\x05\xee\x40\xc2\xa4\x52\x8f\x75\xea\x09\x40\xfe\x2a\xc0\xd7\x64\x79\x7e\x7d\xb1\x3a\xef\xf7\xaf\xd1\x62\x7a\x3d\x23\xb7\x07\x4b\xb2\x1a\x8c\x2b\x03\x27\x6e\xf4\x3b\x18\x17\x00\x40\x0f\x82\x97\x01\xf8\x6f\x84\x52\xaf\x74\x8f\xbc\xdc\xe9\x7b\xb4\xd3\x64\x50\xe7\x87\x34\xaa\xc1\xd0\x30\xaf\x51\x36\x72\x35\x43\xaa\x5d\xd7\xe0\x8a\x18\x2a\x0c\x97\x13\xd5\x26\x98\x56\xf8\xbd\x0e\x5d\x5d\x24\x13\x99\x41\x4d\x36\x59\xe0\x2d\x99\x6f\xb7\xef\x27\x12\xa2\xe0\xc7\x7b\x5a\x2a\xcb\xbe\xc1\xcf\x41\x0a\xda\x03\x14\x81\xfe\x85\x0f\x25\x88\xba\x90\x25\xa4\xea\xf7\x97\x32\x55\xaf\xe7\x27\x81\xc6\x9d\x3f\x77\xd6\x9b\xcb\x70\x84\x3f\xe1\xa5\xaf\xab\xf6\x96\x2c\xf1\x6b\xf2\xdc\x98\x08\xaa\x95\x15\xbc\x0c\x60\x12\xcd\x54\x41\x30\x98\xe4\xed\xf9\xf5\xc5\x12\xa0\x89\x4d\x55\xd7\x12\x9a\xb7\x17\xd7\xbd\xde\x73\x23\x9c\xfc\x1a\x8f\xb0\xaa\x71\x8c\xdf\xe2\x6b\x4d\x96\x3f\x21\xd7\xba\x86\x6b\x59\x4a\xaf\xe7\x17\x01\x3d\x71\xde\x52\xc2\x11\x7e\x22\x4b\xc0\x6f\xb5\x37\xef\x7e\xff\xfa\xe0\xad\xcc\xbd\xa7\x36\xd9\x3e\x8d\xcd\xc6\x84\x3c\xb7\xf4\x6f\xaf\x17\xde\x90\x8d\xd5\xd1\xb9\x2c\xfb\x4a\x8e\x10\x52\x00\x3e\xbc\x71\xfc\x64\xfc\x7c\xb8\xc9\x95\x66\x9c\xe9\xb9\x11\xf6\xe2\x11\x42\x78\x0c\x5e\x2a\x9f\xa3\xb6\xe2\x2f\xcb\xbe\xd2\xfc\x09\x55\x12\xc1\x07\x8d\xe2\x6b\xa3\x92\x0c\xfc\xc8\x44\x96\x7e\x54\x87\xbd\x09\xcf\x18\x43\xac\xe0\xe6\x1f\x21\xec\xd2\x77\xeb\x90\xd5\x6a\x73\xa9\x70\x22\xab\xc2\xcf\xab\xca\xb1\xcd\xde\x0e\xaf\x69\x51\x32\x9e\x93\xe0\xc1\x70\xfc\x60\x78\x14\xe0\xb7\x15\xaa\xa9\xd5\x06\x1c\x24\xdd\x3c\x03\xf3\x9f\xd6\xbc\x10\x65\xaf\xb7\x13\xb3\xe2\xe9\x26\xa3\x13\x1a\x16\xf4\x1f\x1b\x56\xd0\x30\x18\x0e\x0f\x87\xc3\xc3\x8c\xcd\x0f\x9d\x5c\x71\x80\x50\xd4\xc2\x2b\x49\xe9\x02\x8e\x42\xea\x7f\x18\xaf\xd2\x89\x7a\x0d\xa7\xed\xc5\xcc\x30\x45\x11\x0d\x1d\x0b\x1a\x55\x35\x77\x1a\xc1\xa6\xa4\x9d\x52\x14\x2c\x11\x81\xdb\x25\x85\xbd\x3c\xda\x95\xae\x13\x68\xd7\x0a\xc5\x4f\xb9\x82\x22\xed\x80\xdb\xcf\x4e\xd0\x17\xca\xf4\x44\xc9\x56\xeb\x8c\xca\x36\x53\x5f\x5b\x31\xf7\xca\xd7\xbb\xe8\x61\x38\x89\xd0\xa1\xa6\x01\x02\xeb\x16\xbc\x66\xe1\x47\xdd\xdc\x4c\x42\x3a\x64\x20\x76\xfd\x34\x2e\x29\x18\x78\x0a\x58\x80\x30\x25\x54\x4b\x7c\xa1\x88\x3a\xf2\x15\x7b\x77\x3e\x21\x88\x05\x8a\x49\x10\x44\xc1\xdf\x02\x04\xf7\x3e\x70\xff\x83\x02\x9c\x7b\xf0\x15\x21\x95\xc4\x78\x48\x87\x39\xfd\x04\x9a\x2c\x72\xb2\xa0\x5e\x4f\x80\x75\xe8\x5a\x20\xd6\xf6\xc0\xaf\xe8\x27\x92\x83\x9a\xc4\x15\xfd\x84\x0c\x19\xf1\x91\xd6\x15\x7d\x76\x35\x15\xe5\xee\xb1\xe3\xeb\xc6\xdd\xc4\x69\xbb\x8a\xe1\xe1\xe5\xf0\xf0\x0a\xd7\x2c\xc8\x68\x8b\x84\x35\xc1\xd0\xbc\xdf\x47\x9e\xa6\x62\xaf\x07\xa7\xc6\xdd\x42\xbc\x33\x1b\x08\xdd\x7d\xa4\xb9\x86\x39\x8d\x45\x4c\xbc\xfb\xb3\xfd\x7e\xd8\xb5\xd5\x97\xb5\x32\xf6\x6c\xce\x2e\x36\xc0\x68\xd1\x9a\x9a\x46\xc4\x8b\x33\x1a\xd0\x2e\xbf\x71\x06\xab\xfc\x77\xd7\x6c\xca\x61\xa6\x20\xac\x94\x95\x19\x9e\xc4\x99\xb1\x38\x23\xdf\x87\x34\x4f\x7b\xbd\x5c\xe3\x19\x2f\x10\x19\x5e\x83\x17\x06\xde\x7a\x95\x79\xc0\x03\x7b\x13\x0b\xb1\x26\xd5\x5b\x39\x85\x95\x5a\xbf\xf6\xef\x7a\xe0\x4a\x90\x33\x59\x01\x03\x8e\xdc\x5d\x06\xd4\x28\x0d\x3c\x4f\x27\x71\x0e\x0e\xaf\x1b\x61\xfa\x26\x6f\x98\x6c\x8a\x02\x98\xb0\x80\x15\xa1\xe5\x24\x57\x6e\xae\xfb\xa5\xbe\xa5\xc3\xbc\x72\xea\x9a\x74\x5a\x28\xc7\xba\x33\x9c\x91\xd1\x79\x76\x61\x88\xcd\xf3\xcc\xdc\x39\x25\x64\x33\xcd\x66\x78\x41\xc2\x6e\x02\x63\x39\x2c\x79\xb6\xdd\xe6\xf2\x2f\x44\xc8\xf5\x53\xa2\x67\xaa\x9c\x80\xca\x51\xab\x4e\x2f\x67\xf7\x44\xd7\x43\xbc\xb0\x48\xbf\xcb\xc9\x35\x09\x43\x48\x91\x7c\xdc\x6e\xcd\x9b\xa7\xb6\xa4\x73\x23\xdc\x28\x06\x16\x8c\x2d\x87\xaf\x25\x21\x01\x79\xed\x8b\x3f\x31\x54\x56\x13\x01\x4a\xed\x08\xeb\xcc\x72\x1c\x7a\xbd\x38\x14\xb8\xf0\x83\x70\x62\xe6\xb2\x0e\x94\x9d\x98\x0b\x59\xbc\x7a\xd3\x58\x5f\x7f\x69\xc5\xba\xbe\xd0\xdf\x3f\xe5\x4c\xd8\xac\x29\x6d\x66\x05\xb5\xfa\x85\x51\x86\x38\x02\x83\x2f\x7a\xf2\x6a\xd2\x44\x8e\xc0\x92\x1c\x9d\x2f\x2f\x4c\xb2\xf3\x65\xbf\x0f\xf4\xa2\x2c\xc8\xcc\x7e\xa5\x52\x0b\xea\xb3\x32\x0a\x03\xcc\x91\x86\x1d\x48\xa7\xca\xbb\x97\x9a\xc7\xc9\xc7\x9f\xd6\xe1\xc2\x6d\x87\x83\x70\x31\x05\x0a\x77\x6c\x42\xa2\x11\xf4\x8d\x2a\x60\x34\x33\xbb\xbd\x0e\xe9\xf5\xf4\x0b\xb8\x50\x98\xb8\x74\xa6\x4e\xc7\x1a\x82\xa1\x0e\x95\x29\xbd\xaa\xee\x04\x5a\x61\x6c\x4a\x9c\xc4\xb9\xd2\x81\xed\xd2\xed\xd6\x6c\x73\x5d\x8b\xc2\xb6\xdb\xae\x68\x09\x6f\xdc\x5e\xe5\xde\xf9\xa1\xd8\x2f\x65\x5b\x20\x85\x3a\x5b\xc5\xb9\xbb\x5c\x89\xad\x8b\xba\xe1\xe9\xbc\xdf\xaf\xea\x52\xe3\xa8\x25\x7b\xaf\x97\x0f\x06\x1e\x8a\xf2\x99\x7f\x30\xbb\x18\x36\xf6\xaa\x14\xdf\x6e\x2d\x69\x81\x52\xf8\x46\x72\x36\x80\xd8\x4c\x30\xa0\x83\xf2\x7c\xd3\xeb\x75\xcb\xf3\x0d\xd9\x40\x8f\xa2\x90\x0d\xcb\x35\x4d\x26\x5c\xbf\xe0\x0d\xfc\xa1\x88\x29\xd3\x50\x92\x4e\xe2\x29\x45\x80\x2f\x36\x8a\x38\xcc\x48\x39\x51\x96\xa3\x74\x2a\xb9\xe9\x68\x8b\x6b\xca\xe1\xb8\x2c\x01\x27\x90\x0c\x56\x4b\x44\x8d\x97\xfc\x58\xd0\x30\x43\x07\x3e\xbc\x12\x20\x8d\x71\xeb\xb0\x92\x3b\xa8\x23\xc3\xb2\xbc\x48\xc3\xa7\xca\x4b\x30\x2c\xfd\xdd\x3c\xca\x34\xa1\xc3\x97\x89\xf9\xb4\x85\xd1\x3c\x8d\x98\xc6\xcd\x21\xbc\x20\xac\x11\xa0\x09\x07\xef\x1e\x4c\x19\x41\x7e\xee\x25\x04\xad\x3f\x83\xac\xa3\x58\x52\xc5\x30\x71\xe3\x69\xec\x74\x29\xa2\xd8\x9b\x9f\x65\xd8\x6a\xab\xba\x66\x9d\x4c\x42\x07\x6a\x90\x0e\x93\xab\x95\x8d\x1a\xa8\xdb\x8b\x0a\xfd\x46\x5a\x2f\x15\xea\xf6\xdc\x20\x86\xed\x56\x27\x92\x68\x36\xe5\xb9\x78\x01\xc1\xaa\x9f\xea\x6e\x34\xee\xb5\xc3\xc8\x16\xa1\x00\x85\x0e\x5f\x9c\xc6\xe0\x41\xbc\x5b\x34\x7a\x3c\x18\x3b\x42\xe1\x4d\x5c\x96\x5a\x61\xc6\x62\x2c\x6b\xe5\xba\x24\xc2\x6e\x1d\x07\x34\x02\xb6\xe2\xb9\x03\x46\x19\x02\xb0\xc2\x5d\x1b\xb3\x99\x64\xa4\xd4\x66\x00\xb2\x3a\x4e\x84\x81\xab\x85\xbd\x58\xbc\x64\xb9\x12\x53\x32\x1b\x51\xa6\x76\x18\xb5\xdb\x29\x9d\x9c\xa4\xd7\x4b\xa6\xa3\x19\xba\x8b\x07\x03\x1c\x66\x9a\x92\xca\x0c\x79\x15\x4a\x38\xeb\xa1\x33\x84\x99\x35\x79\x9e\xf8\xd2\x2d\x9e\x7d\xa7\x4a\xbb\xf4\x34\xac\xdd\x8b\xd1\x64\x14\x99\x5e\x98\xc6\xb3\xaa\x02\xc5\x67\x09\x20\x10\xa4\x72\x01\x39\xb2\x4c\x19\x41\xd6\x09\xf4\xda\x72\x91\xfe\x45\xb0\xcd\x1c\x2a\x9b\xdc\x15\xf6\x03\x89\x47\x1c\x71\x74\x27\x42\x8e\x03\x58\x8d\x81\xd1\x64\xba\xab\xf0\x86\xf0\xe1\x8a\x8a\x78\xbb\xbd\xab\x70\x46\x3c\xe6\x51\x22\x71\x14\x97\xb3\x20\xe9\x92\x8d\x3c\xb7\x36\x90\x55\x82\x9c\x85\x05\x12\x4f\x93\x99\x62\x30\xf1\x69\x32\xc3\x6b\x32\x3a\x5f\x5f\x2c\xcd\x08\xae\xcd\x08\xa6\x64\x39\x5d\xcf\x0e\x16\xee\xb4\x53\x84\x29\x96\x27\xa3\x30\xb5\xd3\x37\xd5\x63\x28\x47\x20\x23\xdd\x91\x12\xbd\x58\x91\x3b\x87\x4b\x5a\x1c\x31\x28\x04\xa1\x5b\x88\xf5\xd6\x06\x56\x30\x30\xac\x06\xef\x55\x15\xa1\x74\x41\xa1\xce\x28\x9b\x4c\x67\x91\xda\x63\xc0\x7a\x6e\xa3\x12\x67\x19\x49\xd5\x22\xf4\x22\x30\xb5\x08\xb3\x95\xea\xaa\x84\x5a\x80\xfb\x6a\x13\x96\x0e\x30\x6f\xd6\x0b\x43\x75\x20\xbc\x15\x0e\x64\x98\x87\xd5\xe8\xd0\x02\x17\x0a\x0f\x3b\x60\x3f\x13\x42\x58\x18\x32\x26\xcc\x35\x31\xa4\x43\x6c\x3d\xbe\x37\x6b\xb1\xbb\x5b\x28\xa3\x6f\xb0\x53\xe4\xfb\xf0\x73\xa1\xaa\x06\x24\x5d\xf8\x48\xda\x90\x4a\xc4\x87\x6a\xe2\x37\x24\xf2\x1b\xa2\xcb\xb1\x44\x1a\x60\xf8\xdd\x5a\x2b\xa7\x04\xa6\x09\x14\x16\xc6\x20\x42\x99\xe7\xb4\xa8\x5b\xfd\xac\xdd\x93\x2a\x3c\xab\x60\xa6\x7e\xa7\x99\x2d\xca\xc1\x55\x55\x66\x88\xca\x30\xc6\x1b\x54\x49\x24\xb1\xb1\xd3\x5c\x19\x60\x44\x9b\xe6\x4a\xb8\x05\x2e\xc2\xf4\x76\x46\x36\xd3\x5b\x27\xfd\xb5\xaa\xfe\x23\x8f\xe5\x74\xb8\xda\x64\x82\xad\x33\xfa\x89\xe5\x57\x0d\xdc\x65\x16\xca\x97\x6a\xaa\xd5\xce\xb8\xee\xe2\xaf\x45\xf6\x78\x47\x6a\x07\xb4\xf4\xcd\x56\xd9\xeb\xb1\xc7\x83\xf1\x84\xf5\xcd\x2e\x13\x29\x1b\x02\x9c\x08\x7d\xbc\x99\x18\x19\x9e\x1c\x45\xee\x78\xc4\x27\xc6\xb1\x45\xde\x0f\x8b\x89\xe7\xdd\x22\x1a\xa1\x68\x30\xae\x1c\x76\xd9\x8f\x7a\xf8\x46\xd0\xa2\x4e\xeb\x08\x3d\x2f\x41\x1d\xda\xae\xfe\x9c\x16\xf7\x60\x99\x7c\xa7\x40\x6f\xb5\xe3\x7c\x08\xa1\x8d\x72\x87\xde\x97\xa9\xc0\x0f\x03\x3b\x14\xb6\x94\x5a\x94\x5a\x04\x3a\x08\x55\x66\x55\x59\x70\x0c\xa9\xc2\xfd\x4c\xce\x04\x9f\x17\x78\x90\xc9\x2d\x11\x46\x0c\x08\xf0\x78\x98\x64\xbc\xa4\xbd\x1e\xd3\xc7\x3c\xd3\xd9\x7e\x26\x53\x84\x67\xb1\x4e\x1d\x64\x0d\x55\x13\x2e\x88\x2e\x68\x52\x84\x19\xd6\xef\x98\xc9\x73\x29\x8e\x87\xeb\xb8\x28\xe9\x33\x9a\xb1\x15\x13\xb4\x28\xe5\x60\x21\x49\xbd\xad\x79\xd9\xeb\x75\x77\xe3\xad\x04\xb6\x3a\x6f\xea\xe2\x10\xbe\x07\x28\x49\x4c\x64\x6c\xf5\x56\xdc\x66\xf2\x74\xe7\x7d\xf5\x83\x4e\xd0\xaf\x07\x0c\xa0\xbc\xe0\x60\xa1\xec\x06\x99\x0e\x21\x99\x95\xfa\x5a\x68\x26\x6b\x49\x62\xff\xe0\xce\x0c\x08\x4e\x6f\xb3\x59\x04\xc2\x0b\xdb\xb4\x9d\x96\x81\x1f\x93\x7d\x6d\x40\x38\x56\x5f\xba\x11\x61\x29\xa9\x73\x0d\xbe\x8b\x88\xfc\x0f\x84\x4b\xef\x90\x3f\x3e\x1c\x61\x37\xbe\x38\x21\xa3\xf3\xc4\x37\xc6\x90\xa8\x29\xb1\xc0\x4b\x92\x4f\x93\x99\x1e\x39\x39\x62\xcb\x21\x5f\xd3\x5c\x0d\x18\x32\x63\x63\xc6\x61\xd9\x6c\x86\x72\x13\x21\x87\x46\xe5\x6b\x8e\xcc\xd2\x7c\x93\xda\x42\x5b\x9a\x0d\x50\x21\xee\x89\x79\x09\xb9\x5a\x2f\x38\x08\x50\x34\x42\x78\x59\x1b\xcb\x65\x73\x2c\xeb\x01\x03\x09\x40\x00\xe2\x7b\x8b\x5e\x6f\x71\xb1\xe9\xf5\xc2\x0d\x59\xa0\x6a\xd3\x95\xfd\xd1\x3e\xbc\x1b\x3d\xbc\x6b\x30\x05\x64\x46\x56\x2d\x5a\x33\xb2\x2d\xf9\x11\x5e\xdb\x5d\xa7\xce\xce\x32\x22\xd5\x5e\x2f\x4c\x76\x57\x70\x24\x9c\x72\x81\xee\x03\xf3\x12\xb6\xe6\x8d\x34\x26\xc1\x05\x8a\x14\x9d\x5e\xe1\x79\x16\xe7\x1f\xeb\xde\x61\x0b\xc7\x41\xf3\x0b\x29\xda\x00\x80\x93\xa8\x2d\x43\xae\x7b\xfb\x11\xb6\x66\x8f\x0a\x83\xcd\x6a\xd1\x28\xb8\x94\xdb\x58\xbd\x4a\x83\x4c\xea\x25\x99\x34\x6a\x96\xd7\xad\xb5\xb4\x18\x0c\xd1\x68\x2b\x9f\xf2\xd9\x81\xae\x24\x86\x69\xb6\x53\x6e\x6c\x40\xaa\xcf\x33\xcd\xd0\xd9\xed\xe3\xa2\x36\xcf\x24\x1e\x05\x11\xc8\x82\x25\x4f\x97\x71\x51\x46\x62\x58\xfb\xfe\x1c\xb9\x02\xd1\x93\x3b\x43\x9b\xc0\x27\xd6\xb4\x4b\xb3\xe7\xab\xc8\xa6\x53\x30\xa8\xe1\xa8\xe4\xef\x57\xa4\x3c\xe6\xfc\x86\x16\xef\x13\xbe\x5a\xf3\x5c\xee\xdb\x1e\xe5\xb0\x43\x8f\xe0\x2f\xca\x15\xa7\x29\xcf\x0f\x25\xb4\x87\xea\xbc\xf2\x4f\x10\x32\xbf\x00\x2a\xfc\x0b\x81\xf9\x85\xe4\x90\x77\x52\x0b\x96\x62\x95\x29\xc3\x2a\xf3\xb8\x28\x83\xf6\x83\x5b\x93\x7e\x0a\x7d\x36\x0a\xb8\x03\x3b\x94\xe5\x04\x08\xdf\xc9\x29\x1a\x05\x77\x77\x01\x86\x55\x10\x05\x55\x15\x98\xe9\xe0\xe5\xf1\xaa\x44\xb8\x81\x58\x23\xed\x59\xcb\x02\xfa\xe2\x87\xe7\xa1\xaa\xe5\xd3\xc0\x65\x1c\x08\xba\x5a\x67\xb1\xa0\x01\x6e\xb6\x02\xfd\x47\xd2\xb1\xf5\xeb\x25\xc7\xae\x39\xfc\x5b\x38\x89\x24\x65\x1f\x0b\x5e\x6c\x4b\xbe\xd8\x7e\xa4\xb7\x37\xbc\x48\x3b\xc9\x36\x89\x4b\xba\xcd\xe9\xcd\x76\x7a\x39\xbd\xab\x2e\x43\x7c\x1e\xcd\xb6\xe4\x31\xfa\x8d\xb6\x1e\x20\xc0\x62\xe6\xbb\xdb\x35\x45\xdb\x6d\xf0\x8f\x4d\x5c\x32\x30\xd7\x6a\x42\x7b\xbd\xc3\xcb\xbb\xcb\xf2\x6b\x93\x9e\xea\x6d\xc0\x6e\x22\x54\xee\x91\x83\x30\xdf\x6e\x47\x08\xa1\xaa\x3e\xb9\x3e\xc4\xd7\x71\x99\x14\x6c\xed\xfb\x23\x73\x5b\x05\xe6\x38\x26\xb9\xc7\x3b\xc6\x25\xd1\xa7\x2a\x49\x6f\x2b\x5e\x0d\xde\x90\x62\xf8\xa1\xe4\x79\x96\xe2\x4c\xbf\x6e\xb7\x1b\x9c\x90\x02\x4c\x0b\xa9\xf2\xf1\x82\x14\xc3\x1b\x6d\x2f\x01\x34\xbc\xca\xed\xf6\x70\x7a\x79\xf3\x9b\xcb\x4f\xf1\x78\x70\xb9\x59\x2c\x16\x8b\xd9\x21\x5e\xfa\x42\x52\x4e\x52\xd5\x61\x34\x65\xf5\x48\x9e\xb5\x24\x95\x11\xe8\x9e\x0c\x94\xc6\x89\x20\x34\x34\x41\x9d\x18\x34\x57\xbc\x80\x39\x68\xe0\x78\x01\x49\x80\x30\x93\x01\x66\x70\x02\x30\xcd\x0a\x35\x04\xb1\xe0\xab\xc0\x54\x03\x1f\x15\x8e\xc9\x1d\x5b\x44\x34\x0c\xd8\x22\x40\x18\xc4\x06\x23\x81\x6f\xc0\x25\x18\x96\x3b\x46\x94\xe3\x94\x47\x39\x16\xc5\x6d\x94\xe3\x05\xcb\xe3\x2c\x93\x6f\x0a\xf6\xa8\xc0\xc0\xc7\x89\x0a\x6c\x98\x3b\x51\x81\x73\x7a\x23\x8b\xcc\xe9\x4d\x80\xb4\x3d\xc8\xa8\xc0\x70\x07\x19\x15\x38\xa5\xf3\xcd\xd5\x95\xdc\xe0\xf0\x75\x5c\xc8\x84\xd7\xb1\x84\x13\xdc\x2f\xb8\xcf\x8c\x7a\x1f\xa6\xdf\x64\x88\x5d\x04\x08\x83\xc8\xbc\x0c\x83\x17\x99\x8e\x43\x81\x0b\x68\x78\x79\xc3\x74\xb4\x7a\x83\x0c\x25\x55\xe9\x4b\x0a\xb0\x29\x0b\x53\x34\x0c\xf4\xab\xec\xbf\x3c\x62\x58\x2d\xaf\x88\x61\x77\x99\x29\x43\x8b\x0d\x8d\x38\x5e\xc4\xb2\x63\x94\x87\xb8\x88\xe3\x8d\xb9\x4b\x8d\x38\x7e\x15\xbf\x8a\x38\x7e\x91\x2f\x58\xce\xc4\x6d\xc4\x81\x6a\x97\xe5\xcb\x7f\x09\x00\x38\x4b\x94\x10\x80\x37\x42\x84\xcb\xcd\x9a\x02\xcc\x30\x20\x08\xdf\x32\x9a\xa5\x51\x81\x15\xbe\x90\x11\xea\x4d\x02\xb6\x32\x41\xea\x2d\x30\x2e\xc3\xcb\xa8\xc0\xf1\x4d\xcc\x84\xfc\x2f\x6f\xf3\x04\xca\x93\x2f\x81\x3a\x9f\x27\xc6\x86\x90\x9e\x09\xd7\x71\xc1\x40\xfd\xc8\xcc\x06\x13\x30\x38\x0e\x2a\xbc\x21\x77\x2c\x17\xb4\x58\xc4\x09\xf5\x41\x05\xcc\x0f\xc7\x52\x39\xc6\xf1\x8a\x82\x34\x7f\x04\x7b\xea\x26\x83\xa4\xea\x4d\x02\x96\x6f\x56\xb5\x80\xf5\x66\x9e\xb1\x44\x07\xb1\x05\xa3\x72\x84\xd6\x05\xbb\x86\xcd\xb9\x11\xca\x85\x72\x31\x5f\x0f\x8f\xe7\xa5\x90\x2b\xad\x19\x5c\x46\x0c\x2b\x1c\x11\x95\x58\xf9\x8d\x8f\x4a\x3c\xe7\x1c\x3c\x9c\x96\x38\xce\x6f\xa3\xb2\x72\x22\x5f\x8a\x45\x11\x4f\xb3\x19\xdc\xbc\x59\x1e\x64\x15\x22\xbc\x26\x87\xd3\xfe\xe5\xe0\xeb\xde\x57\xe4\xe2\x71\x77\xb2\xfd\xdf\xff\x36\x3b\xc4\x29\x39\xfc\xdb\x7f\x0b\xe5\x04\xa7\x9f\xc4\x96\xa5\x5b\xb0\xee\xb2\xcd\xe2\xfc\x6a\x13\x5f\xd1\x2d\xb8\xde\xd3\x0a\x98\xb4\xd8\x66\xac\x14\xdb\x92\x8a\x6d\x41\xaf\x69\x51\xd2\x2d\x9c\x9e\xb7\x73\x89\x18\xaf\x79\x12\xcf\xb7\x57\x45\xbc\x5e\xa2\xc0\x93\x72\x5b\x35\x5c\xfe\x31\x42\x31\x27\xb9\x6f\x52\xfd\x36\xa4\x56\x22\x1a\xdc\xbb\xa9\x7b\x1f\x39\xbe\xbf\x0d\x7e\x4b\x08\xdb\x6e\x83\xdf\x06\x84\x58\x61\xdd\x5c\xd1\xd8\xec\x67\x4a\xc2\x82\x30\xdc\xa2\x1f\x88\x19\x51\xce\x2f\x37\xbd\x5e\xf0\xdf\x40\x6b\x67\x4d\xe9\xc7\x10\x6c\x6f\xab\xa3\x46\x6a\xcf\xa6\xc2\x95\x77\x8b\x57\x61\xa0\x50\xe4\xc0\x20\x2c\x1c\xac\xa8\x88\xf5\x6d\xf7\xb9\x92\x8b\x06\x57\x4e\x0a\x4e\xb8\x30\xed\x82\x45\x70\x74\x8e\x18\xe9\xb2\x5e\x2f\xb8\xbc\x0c\x88\x27\x0f\x0b\x6e\x22\x5d\x25\x48\xd6\xa2\xd9\x1c\x56\xd7\x5a\xee\xb4\xae\x65\xd0\x27\x70\x23\x3f\x0c\x40\x33\x89\x3a\xd9\x98\xb4\x1f\x4e\xa2\x29\x7d\x3e\x93\x23\x3a\x9b\x5c\xa6\x7d\x34\x39\xb4\xad\x59\x85\x81\x9a\x2b\x01\x36\x2f\xad\x05\x05\xc3\x61\xe0\x67\x2a\xd7\x05\x8d\xbd\xd6\xb2\x45\x78\x38\xbd\x9c\x5e\xce\xe4\x66\x77\x89\xf0\xf9\x65\x74\x39\x9c\xe9\xcd\x8b\x79\x39\x15\x3f\x3d\x20\xa6\x78\x1a\x8b\x30\x78\x5c\x2b\x9b\x3c\x0e\xb0\x87\xba\x21\xfd\xc8\x4f\x7f\xf8\xe9\xd0\x15\x09\x41\x7f\x02\x49\xef\xc3\xe9\x65\x1a\x0f\x16\xb3\x43\x06\x7d\xd6\xde\xb0\x7a\x49\x7c\x5f\x49\xa3\xc1\xe9\x2f\x29\x67\xbe\xb7\x9c\xf1\xbd\xc5\x1c\x5e\xa6\x3b\x9d\xe4\x0f\xde\xd7\xe1\x24\xba\x1c\x5e\xa6\x5f\xa3\x49\xdb\x30\xee\x07\xef\xd0\x5f\x03\xba\x9b\xbf\x0e\xd0\x24\xf4\xd6\xc3\x35\xbe\x86\x99\x23\x8f\x77\x90\xe0\x50\x26\xa0\xc3\xf2\x23\x5b\x83\xf6\x54\x08\x15\x24\x7c\x25\xf1\x5d\x80\xed\x1b\x42\x91\x00\x7b\xfc\x63\x34\x09\x5b\x75\xea\x70\x4e\xba\x63\x5c\x90\xee\xd8\xac\x01\xe1\xd6\x80\xb6\xc4\xaf\x0c\x74\x02\xa4\xa2\xd7\xb3\x22\xfc\x07\xc1\x14\x9c\xd7\x16\xa4\x3b\x8a\x8a\x5e\x2f\x98\xa9\x04\xa1\x2c\x0d\x55\x39\xe9\xe6\x66\xcd\x88\xaa\x52\xde\x6a\x6c\x87\xcd\xc3\x70\x7a\xc5\x56\xb7\x9b\x19\x0a\x27\x5d\xfd\xfa\xf5\xe5\x11\x42\xfd\xcb\xb9\xea\x2f\xb8\xdc\x59\xdb\xa5\x34\x38\x92\xcd\x09\xbd\x41\x5b\x43\x32\x3b\x01\xbd\xb9\x88\xa9\x2f\xfb\x00\xfd\xfc\xf7\x3d\xb8\xe6\x0a\x5f\xb9\x55\xf9\xbf\xd5\x07\xa3\xd1\xbf\x54\x9f\x3d\xd4\x3f\xe4\x58\xef\xce\x89\x5f\x0a\x1e\xc8\x47\xd8\x62\xee\xbc\x02\x16\x4e\x59\xd1\x26\xc7\x31\x59\x0e\xd7\x9a\x4f\xfd\xa2\x7c\x9e\x6f\x56\xb4\x90\x7b\x61\xc8\x51\xaf\xb7\x04\x67\xfd\x7a\x83\xe8\xf5\x82\x61\xd0\x25\xb9\xa5\x55\x27\xab\x30\x56\xd6\x26\x63\x65\x1c\x02\x73\x14\xad\x42\x6f\x7f\xf5\x5e\xb9\xaf\x41\x70\xdd\xb8\x5b\xd4\x13\xc6\xce\x94\x73\x37\x43\xf2\x5e\xaf\x40\x77\x3e\x5e\xd4\x16\x53\x0b\x02\x9e\x0e\xac\xd8\x73\xfb\x84\xf5\x0c\xcb\xb5\xd7\xb9\x83\xa8\xf5\x24\x2d\x7a\x3d\x35\xc8\xf9\x76\x1b\xfc\x46\x01\xa2\x57\xcb\x5d\x80\xd0\x1e\x90\x64\x36\x8d\xd6\x3d\xb8\x14\x99\xef\x4d\xbc\xda\x80\x55\x5a\x14\x35\x9c\xde\x55\x33\xe4\x1d\x3b\xde\x2b\x88\xc5\x70\x11\x8b\x27\x45\xc1\x6f\x9e\x80\xa1\x50\xef\x53\xf3\x36\xac\x66\xba\x3a\x2a\x58\x15\x53\x89\x50\x35\x8f\x42\x69\xb2\x84\xf9\xc5\x08\x35\xad\x1c\x76\xc7\x72\xaf\x1d\x8c\xcf\xf9\x63\x32\x3a\x1f\x0c\xb8\x73\x19\xa3\x0b\xd4\x22\xdb\x1c\xe1\x92\xcc\x6d\xf1\xb1\x32\xc1\xf8\x98\x8c\x7a\xbd\xf2\xe2\xd8\xe8\xe3\xdc\xf5\xfb\x5c\xf7\x07\x5b\x84\x23\x42\x06\x83\x42\xf9\xdb\xa8\x8c\xf4\x71\xf9\x98\x1c\xcb\x3c\x0f\x51\xbf\x5f\x58\x99\x64\x3d\x69\x63\x24\xb7\xc7\x91\x32\x45\x0c\xdb\x4b\xf0\xdb\xcb\x43\xb3\xa5\xc4\x66\x65\x00\x4b\x09\xb0\x87\x57\x61\x55\x41\x50\xb3\x97\xb8\x56\x60\xbf\x21\x77\x92\xce\x8c\xba\x23\x43\x28\x75\x47\xd8\x4c\x51\x70\x4e\xa8\xe8\xa8\xee\x08\x2b\x64\x21\xdf\x80\x84\xed\x8e\x70\x73\xc3\x8f\x6a\xe6\xac\x9f\x3b\x0b\x98\x70\x97\x0a\x56\x34\xe1\x3c\x45\x53\x23\xb0\x9f\x28\x9b\x93\x46\x64\xff\x76\x4d\x89\xf6\x99\xb9\x2e\xe8\x35\x61\xda\xf6\x66\xbe\xe0\x84\x6b\xd7\x90\x85\x71\x87\x0f\xee\xa7\x49\xe1\xcd\xe7\x4f\xbb\x96\x09\xe0\x9e\xea\x8f\x71\x51\x9e\xe7\xe7\x39\x51\xa2\x31\x08\xac\xf3\x4a\x7a\xb5\x26\x06\xe3\x39\x70\x1a\x6a\xd2\xce\x38\x72\x2a\xe8\x35\x5c\x68\xe5\xa4\x18\x5e\x7f\x49\x61\x95\x92\x42\xd6\xac\x26\x60\x8c\xab\xa6\xaa\x77\xe5\x0e\x41\x87\x27\xea\x7a\xc3\xb3\x84\x57\xd3\xf0\xb1\x57\x3f\x56\x14\xe0\x9c\xca\x59\x49\x07\x03\xf4\x76\x98\x24\xda\xaa\xaf\x49\x35\xa5\xbe\x2d\xd8\x27\xce\x8c\xe1\x6b\xdf\x8c\xa1\xf3\x18\x87\xbb\x9e\x4e\xe3\x47\xd8\xb8\xdc\x19\xbf\xd6\x99\x62\x4f\xab\x9d\xa4\xc3\x81\x55\x7d\x56\x39\xde\xaa\x83\xb4\x9c\x97\x6f\xb5\x0b\x08\x22\xcf\x55\x01\xce\x4d\x0f\x2b\x8f\x6e\xe6\xc6\x56\x0e\x94\x9d\xcd\x5e\x18\xb9\x93\x55\x45\xd4\xdc\x73\xda\x88\xaa\x32\x6b\x42\x96\x71\x95\xf1\x79\xa3\x90\xc2\x0b\x84\xab\x5d\xf7\xd9\x2c\xd4\xc5\x54\x7a\x71\xfc\xa0\x93\xa8\xb3\x9a\x4a\xa7\x43\x6c\x07\x06\x95\x37\x72\xef\x42\x74\xa7\x1b\x6d\x1a\x48\xee\xe4\xec\x89\x1a\xa1\x72\x89\x95\x36\xd0\x35\x07\xef\x04\x91\x1f\x3c\xb3\x45\x5e\xf1\x2e\x41\xa3\x68\x98\xa0\xb8\x09\x45\x33\x91\x04\xca\x33\x17\xe4\x6b\x86\x36\x54\xb8\xec\x30\xe2\xc2\x32\x4a\x68\xaa\x65\x5e\x63\x11\x80\x72\x27\xfd\xc4\x92\x38\x53\xae\x41\x0b\x2f\xc0\x26\xaf\xf1\x9a\x99\x4b\x71\x2e\x89\x7e\x14\x80\x6b\x6c\xe0\xf5\x30\xb5\xae\xcf\x19\x61\x6a\xdd\x15\x84\xb9\x62\x6c\x3e\x30\x3a\xfa\x3c\x2c\xa0\xa1\x05\x8d\x57\x1a\x95\x84\xe0\x12\x5c\x4e\x71\x9b\x14\x0b\xe7\x6c\x09\x02\x89\x44\x76\x9e\x45\x23\xab\xab\x66\xe6\x2b\xb5\xf0\x4b\x08\xe4\xae\x87\x02\x65\xb9\xd6\x35\x13\x2c\x5d\x3a\x74\xb6\xd3\x62\x49\x8a\x19\x58\xeb\xe5\xf9\x2e\x5f\x5a\x2c\x6f\x77\x84\xbb\xd4\xec\xe4\x84\xd0\xc9\x93\x10\x45\xc1\xb9\x84\x60\xf2\x3a\x44\xd1\x93\x50\xf8\x84\xc3\x07\x5f\xb8\x17\xb8\x23\x2a\xcf\x8f\x40\x75\xc0\x6a\x33\xf7\xbb\x08\xc7\x14\xbf\x0a\x83\xf3\x00\xe1\x37\x28\xf2\xd8\x48\x36\xcb\x82\x17\xab\x00\xe1\x17\xf8\x43\x2d\xc5\x7c\x27\x85\x8a\xbf\x73\xe1\x55\x80\xb0\xa0\x10\x7a\x1e\x58\xb0\xd9\x02\xde\xc3\x40\x4e\x80\x80\xd8\x79\xe8\xba\x6b\xc1\x7b\x3d\x3b\x3b\x93\xa9\x7b\x75\x62\x62\x84\xbc\xf1\xd3\x28\x29\xce\x10\xe1\x1d\x88\xf1\x82\x36\xb8\xa2\x12\x8c\x6b\x2a\xc3\x78\xb1\xd3\x86\x25\xd5\xcd\xb0\x34\x99\x4d\x01\x53\x1b\xe1\xdf\xa3\xc8\xf0\x8a\x76\xbb\x08\x1a\x8d\x1d\x2f\xe9\x15\xd0\x41\xd0\x09\x50\x2a\xf0\x94\x54\xb6\x17\x32\x32\x02\x96\xad\xe1\x2b\xa9\x08\x1b\xac\x18\x56\xcd\x4a\xde\xc9\x7c\x61\x80\xf0\x15\x0c\x1c\x52\x1d\x8f\x9f\xca\x0c\xc0\x84\x69\x66\x98\xab\x11\xd0\x2c\xa2\x66\x73\x3e\xa9\x58\xcd\x2d\x6a\xc6\xbe\x55\xb1\x9a\x43\xd3\x2c\xb9\xa4\x58\x8f\x72\xb3\x9d\x8a\xb1\xa4\xd2\x7f\x40\xd1\x6b\xaf\xc8\x17\x6e\xba\x79\xe6\x9c\xbc\x59\xff\x32\xa4\x58\x1e\x65\x6c\xe4\xb3\x66\xa4\xef\xe5\xe5\xa5\x15\x61\x35\xb3\xc1\x23\x69\x88\x45\x05\xa5\x13\x61\xcb\x89\x98\xfc\x31\xfa\x13\xa0\xab\x30\x70\x9b\x55\xe7\x49\xf8\x4e\xb6\x47\xf6\xe8\xf7\x61\x49\x31\xbc\xbd\x91\xe0\x92\xc7\x01\xc2\x39\x7e\xaa\xce\x2b\xfe\xd4\x30\x79\x5f\x87\xef\x64\x77\xf8\x69\x2b\x2d\x16\x34\xf9\x26\xfa\xce\x20\x9b\x9b\xa6\xcc\x0b\x45\x93\x27\x61\xd1\x36\x41\x71\xe1\x2d\x36\xd3\x97\x62\xf2\x73\xf4\x2d\x8a\x14\xdc\x6a\x2c\x24\x90\xdf\xe2\xa7\x76\x32\xbc\x81\x8c\xf6\xd4\x43\x08\xdd\x6e\x0d\x43\xc2\x14\xf2\x2c\x7a\x81\x22\x38\x48\xea\x42\x66\x01\xc2\x3f\x50\x9d\x57\xad\x60\x4a\xc3\x3f\x60\x39\x9b\xb5\xaf\x83\xc8\xf2\xe1\x25\xce\xf9\x09\x42\x72\x7a\xa3\xcb\x68\xb9\x84\xdb\xbd\xb3\x01\xb6\x89\x98\x3c\x09\xe9\xe4\x77\xd1\x5f\xe4\xb4\xa0\x00\x4a\x55\x81\x65\x84\x27\xbe\x3b\x80\x6f\x6b\xd7\x79\xfa\x04\x3b\x3d\xbf\xac\x2e\xd1\xe5\x0c\xcf\x0e\x11\x20\xbe\xd7\xe1\x0b\x2f\xcf\xcf\x5f\x98\xe7\x99\x97\xe7\xbb\x1a\xae\xc4\x66\x71\xa2\xe8\x1b\xe3\xb9\xc1\xa5\xfd\xa6\x6e\x71\x60\x44\x48\x3e\xf9\x2e\xfa\x06\x33\xf5\xfa\x22\x7a\x66\x8c\x37\x91\xc7\xba\xa0\x77\x38\x97\x93\x0d\x96\xa7\x3f\x26\x93\xc3\xcb\xfe\x65\x7f\x3b\x18\x98\x1b\x0f\x33\x0f\x26\xba\x8b\x0c\x7a\xc0\x4c\x76\x0c\x6b\xed\xfe\xf3\xa0\x4b\xe8\x44\x4f\x06\x4a\xc3\x67\x72\xca\xe2\x20\x89\xb3\x2c\x80\x04\x43\x0d\xc5\x6f\xe0\xab\x31\xde\xdf\xca\x1a\x66\x66\xc6\x28\x5f\x72\xc6\xa5\x9c\x6d\xf2\x4f\xb5\xee\x51\x20\x74\xf5\xae\x13\xfc\xe6\x2e\xe8\x12\x61\x3d\xaf\x1a\xcf\x75\xb2\x29\x3f\x49\xa8\x5f\xe0\x7f\x78\xbd\xf7\x0f\xad\x29\x13\x54\xfe\xc2\x71\x54\xa0\x3b\xf7\x99\x95\xec\xb1\x0b\x64\x89\xae\xa8\x3f\x79\x03\xfd\x3e\x34\x8b\xdc\xe4\x43\xf8\x75\xa8\x27\xf1\x87\xc8\x9f\x1f\x7f\xfc\xf2\x6c\xfe\x14\xf9\x8b\x45\x31\x81\x72\x82\x13\x78\xd6\xd9\x1d\xfc\x96\xc7\xf9\x24\xfc\xce\xcb\xfd\xbb\x5f\x9c\xfb\x1b\x2f\xf7\xef\x1d\xc8\x41\xa4\xc7\xef\x0d\x06\x94\xfa\x5d\x1b\x22\xfd\x8d\xe9\xe4\x36\x24\xe5\x6a\x33\xbc\x0c\x59\x9d\x97\xfb\x0f\x4d\xc2\xc1\x16\xb1\xdd\x5a\x08\x15\x56\xbd\xcd\xe8\x24\x6c\x2f\x30\xd0\x8d\x94\x78\x47\xbd\x4d\xfe\x1c\xfd\x55\xee\x68\x9a\x07\xa7\x71\x92\x91\x4d\xf3\x0b\xda\x4c\x5c\x51\x91\xae\xa7\x1f\x74\xfc\xe2\xa1\xa4\xc6\x31\x53\x75\xcc\x5f\xd5\x56\xa5\x98\xfe\x2a\xe8\x0f\xde\xbc\x7f\x61\x26\xbc\x4c\x57\xc3\x88\x2f\xd0\xce\xc4\xff\xb3\xd7\xf1\xb6\x23\xd4\xcc\xff\x2b\x8a\xf6\xb4\xfc\x9a\xfa\x4e\x54\xfe\xda\x32\x76\xcf\x2c\xf2\x7e\x0d\x44\x48\xb3\xda\xef\xf5\x79\xd5\xe9\xd4\x81\xb7\x08\xa3\xab\x6c\xbd\xca\x35\x88\x26\x83\x77\x60\xe9\x13\x10\x5d\x5a\x80\xdb\x05\xd0\x3e\x52\x7f\xdb\xed\x08\xf5\xc7\xe0\xdf\x1a\xe7\x56\x73\xb4\x50\xd6\x4a\x14\xd2\x91\x8b\xf6\x95\xc4\xc5\x3b\x5a\xf2\x00\x45\x7b\x96\xd7\xaa\x3c\xcf\xc2\x0e\xdd\x75\x14\x71\x7c\x5e\x5c\x34\x8f\xad\x60\x09\xb0\xed\xbc\xea\x99\xfe\x93\xd8\x0a\xdc\x07\xa8\x8e\xa9\xcd\x75\xe1\x5d\x90\x2a\xa4\xa2\xe1\xf9\x80\x85\x6f\xda\x35\xa7\x7a\x51\x24\xbd\x9e\x1a\x08\xb7\xe3\x33\x3f\x61\x41\xdd\x5a\x25\xfe\x32\x7d\x52\xdb\x32\x18\xfd\xb2\x45\xe6\x5d\x98\xe1\x27\x21\xf7\x6b\xe2\xb4\xb6\xd2\x2e\x34\xd2\xff\x3e\x64\x14\x07\x92\x80\xe0\xd4\x9b\xb8\x7a\xda\xf2\x96\xf9\x12\x53\xef\x38\x2f\x89\x96\x9c\xe2\x8c\xe2\xc4\xaf\xac\xac\x57\xd6\x58\x21\x25\x6d\x52\xbb\xe1\xc7\x50\xc8\x69\x82\x9a\xcb\xa4\x74\x40\x51\x0a\x14\xd2\x2c\xf0\xe9\x85\x0d\x95\x04\xc3\x2e\x90\x1b\xda\x8e\x57\xba\x12\x0f\x58\x12\xcd\xe9\x2b\x7f\x1d\x1d\xca\x8d\x77\x52\xef\x60\xf0\x8d\xbf\xb3\xea\x10\x6e\x81\xb1\xf2\x4e\x46\x7a\x1b\x2d\x65\xbf\x20\x14\x99\xc6\x65\xb5\xa5\x9a\x7d\xd9\xc8\x27\x76\xe4\x71\x7d\x1a\xc5\x7e\x7f\x2f\xbc\xc2\x6a\xa7\xa5\x5e\xcf\x9c\x79\xbc\xf2\x0d\x39\x8d\x55\x9c\x3a\x46\xb9\xc2\x96\xb6\xca\x06\xad\xaa\x49\xbf\xb5\x23\xfc\xbc\x5c\x6b\x5a\x47\x5f\xba\x73\xdc\x59\x6f\x45\xbd\x43\xd9\x6a\x67\x0a\x3c\x09\x53\x0a\xd4\x95\x97\xde\x95\x9e\xd6\xc7\x93\xe5\x1a\xdb\xf3\x05\xcc\xe3\xb0\x75\x57\x7b\x01\x14\xde\x77\xf5\x92\x56\xf5\x92\x0c\x40\xb7\x12\xa0\x2f\x2f\xd6\x83\xf3\xd6\x2f\xfd\x16\x7a\x21\x40\x72\xa2\xf5\x7a\x4f\x6a\xb4\xe2\x75\xbd\xe6\xaf\xef\xa9\xe2\x1a\x4e\x90\xad\x4b\x44\x45\x85\x96\xd8\xb3\xc7\x87\x2b\x7b\x7c\xc8\xe5\x89\xf2\xe9\xee\xa2\xb8\xf2\x87\xa8\x36\x85\xaf\xa0\xeb\xd5\x5a\x2e\xfc\xf6\xcc\xbd\x89\xd5\x86\x7a\x34\x50\xef\xfd\x3c\xef\xeb\xed\xd4\xc2\x00\x96\xc8\x7c\x4f\x77\x8f\xec\x37\x70\xe8\x6b\xc2\x7b\xb3\x67\x11\xef\x23\x0e\xe0\xbc\xc7\x92\x7b\xfa\xf5\x06\xd6\x63\xdb\x4e\xda\x42\x41\x3c\x09\x9f\x53\x7c\x4d\xf1\x0d\x95\xd3\x48\xbd\xa0\xe8\xde\x71\x53\x29\xcc\x9c\xba\x71\x88\x41\xee\x12\xcd\xe6\x3d\xa7\xfb\x37\xfc\xbd\xfb\xbd\x8f\x42\x3e\x7d\xf9\x84\xfa\x68\x96\x61\xfd\xf0\xbf\x77\x8a\xbb\xd4\xaf\xc3\x0f\x5e\x95\x6f\x6b\x53\xc8\x91\x53\x6a\x17\x7c\x4d\xf1\x47\x7f\x26\xbc\xae\x03\x68\xb1\xf6\x6b\x8d\xb5\x9b\xd8\x16\x66\x93\x6a\x47\x0d\xf5\x1a\xc8\xe4\x54\x7b\x52\xc3\xa2\x4f\xbc\xf9\x19\x97\x9f\xa5\x73\x5f\xfb\xd0\x7d\xf4\xf2\x2e\x0a\xbe\xfa\x6c\x6e\x7f\x31\xff\xe0\x77\xc4\xcc\xeb\x83\x67\xf8\x9d\x5f\xc9\x3b\x3f\x9d\x61\xff\xbc\x0e\xd5\xe1\x79\x06\x4c\x17\x73\x02\xfc\x3e\xfc\x19\xab\xa0\xd7\xe1\xf7\xf2\x64\x35\x0b\xfc\xa6\x3e\x6d\x2b\xe9\x49\xb8\xa4\xf8\x29\x75\x3c\x2e\x39\x76\x4f\xdd\xae\xad\x9b\xf3\xc6\x70\x1c\x5b\xd5\x21\xac\x05\xc1\x3b\x73\xfc\x89\x6e\xb1\xb9\x4c\x8c\x82\x92\x2f\x02\x9c\x24\xd1\x74\x86\x35\xed\x17\x29\xbe\x67\x48\x25\x81\x37\x88\xf1\x08\x07\x60\x24\x37\x00\x7d\x4b\xcb\x14\x8e\x0a\xc7\x20\xc6\x9a\xe7\xeb\x87\xf5\x7a\x77\xd7\x8d\x64\x46\xa0\x9a\xa6\x91\x2c\xbc\x72\xca\xf0\x3e\x07\x7d\x47\x58\xb1\xc1\x60\x17\x3e\x83\xdd\x8f\x43\x58\xec\x68\x4b\x58\x7d\x64\xa5\xf2\x00\xd9\x0d\x63\xb0\xc1\x3a\x09\x80\x2b\x1c\x80\xe7\x27\x9b\x46\xdd\x00\xc9\x86\x0b\x9f\x15\x5b\x53\x0c\xc7\xea\xca\x10\x61\x77\x39\xd9\x25\xd7\xfa\xe2\x12\xec\x83\x86\x75\x33\x70\x9a\x6b\xe4\x0b\x94\x08\x6b\xa7\xd9\x5c\xa2\x12\xc2\x26\x79\xe4\x89\x2e\x12\x77\xe0\xef\x82\xe0\x4d\xbf\x1f\x74\x09\xef\xf5\x82\xc1\x40\xbe\x4c\x98\xdc\xe3\x92\x94\x26\x41\x4d\xec\xc6\x78\x88\xb3\xb7\xd0\x09\xdc\x43\x69\x8a\x9f\x50\xcb\xdf\x26\x0c\xdb\x95\x01\x4c\x1a\x49\x4b\x13\x8e\x35\x06\x06\x9f\xc8\x9f\xef\x3b\xda\xec\xbb\x11\x3a\x07\xb3\x37\xa1\xf1\x93\x36\xe1\x8a\xbd\x1a\x65\x93\x17\xd1\x07\x04\xa2\x92\xda\x97\x1a\xb7\x9a\xfd\x7c\xca\x1d\x77\x56\x16\x79\x8e\xb8\xe1\xca\x1e\x34\xd6\xf1\xc4\xbc\xd4\x76\xd5\xbc\xd7\xfb\x04\x16\x3a\x26\x8e\x72\x3e\x0a\x22\x51\x55\xe0\x7a\x94\x61\x8e\x25\xb6\xd9\x11\xf2\x37\xbe\x4c\xbd\xab\x66\x72\xdd\xd0\xa0\xad\x45\x77\xc9\xad\x89\x1e\x69\x2b\x9a\xe0\x54\x5d\x5f\xe0\x8e\x10\xe6\xc4\xce\x28\xb8\x11\x06\xa2\x54\x92\x67\x97\xf3\x43\x63\x1c\xdd\xd3\x13\x17\x3e\x6b\xfa\x7c\xa3\x2e\x88\x8d\xd7\x6d\x88\x35\xfa\xb6\x84\xbc\x41\x9c\x70\x60\xfa\xdb\x2b\xdd\xac\x4b\x16\x54\x5f\xfe\x9a\x0b\x14\xae\x6f\x14\x60\xc7\x62\xe0\x40\x4f\xe5\x42\xb8\xd4\xd7\x23\x36\x89\xcd\x22\xe3\xcd\x4d\x84\x4d\xaf\xcc\xf0\xe9\xd4\x78\x41\x18\x21\xc9\x81\xdb\xe7\x52\x2a\x51\x55\xa2\xf5\xb7\xe4\x72\xe9\x87\x3e\xa7\xca\xcd\xe7\xed\x16\x90\xa3\x0b\x98\xa8\x63\x66\x7f\x1c\x8d\x14\x37\x5d\x22\x6d\x79\xc6\xba\x83\xc5\xe0\x4a\x74\x91\x7e\x35\x71\x64\x20\xaf\xd7\x5e\xc7\x05\x1a\x52\x9f\x77\xd6\x84\xc8\x0f\x58\x1b\x01\x62\x3b\x98\x68\xbb\x3d\x9c\x62\x2b\x6d\xe5\xc7\xc0\xc4\x42\x93\x72\xbb\x8d\xa1\x09\x9a\x6d\xdf\xd5\xe7\xe7\xed\x76\x01\x56\x4e\x8b\x61\xca\x37\xf3\x8c\x6a\x2d\x6d\x48\x34\xe1\x6a\xb9\x4c\xb8\xbe\x65\xea\x87\x8b\xc9\x28\x1a\xa3\xa8\xd6\x94\xc9\x28\x8a\xeb\x41\x20\x16\x0d\xf2\xcf\x7a\xe3\x47\xde\x9c\x9a\xc4\xd1\xd1\xd7\x31\x72\xba\x0f\x2f\xf2\xf5\x46\x44\x30\xfd\x74\xb6\xce\xf0\xeb\x49\x64\xf2\x46\xdb\xcb\xbb\xed\x65\x85\x7e\x73\x88\x01\xe5\x3f\x55\xb8\x08\xf4\xb5\xa3\x4c\x99\x89\x0c\x0e\xbf\x0e\x6a\xb1\xcf\xf3\xd4\xc6\x7d\x7d\x18\xe0\x8c\xe5\x54\x47\xb9\x3c\x87\x01\x5e\xf0\x2c\x8d\x82\x79\x01\xf6\x92\x41\x6c\xfe\x9b\x22\x4e\x3e\x52\x51\x46\x41\x88\xa6\xb3\xbb\xea\xb7\xbf\xbd\x0c\x2e\x83\xbf\xff\x3d\xc0\x4b\x9a\xad\x69\x01\x3b\x54\x36\x01\xe6\x4c\x10\xd5\xe4\xac\x15\xbf\x06\xf4\x35\x36\xf0\xf1\x83\x36\x27\xf0\x69\x5d\xd0\xb2\x64\x3c\x7f\x92\x65\xfc\x86\xa6\x91\xc0\xe5\x47\xb6\x7e\x6e\xc3\x5b\x76\x46\xb8\x15\xaa\xdf\x07\x1d\x88\x2e\x79\xd1\xeb\x89\x2e\x79\xb6\xdd\xba\x1b\x21\xd0\xe0\x00\xeb\x3d\xac\x14\xb4\xf8\x0e\xc0\x0c\x03\x23\x92\x5d\x06\xb8\x06\x25\x88\x66\xcf\x0e\x5b\x85\xfc\xfd\x74\x7e\xa6\xd6\xc4\x34\x59\x7d\x51\xe2\x78\xbd\xce\x58\x02\xfb\xd2\x17\x57\xe0\xe7\xf9\x34\xf8\x67\x72\xfd\x53\xd0\xc9\x31\xc5\xfa\xaa\xbb\x39\xb2\xa0\x1b\x71\x3f\x98\xff\x4a\xf6\x2c\xed\xdf\x9b\x3f\x4b\xdb\x4a\x80\x81\x70\xb2\xf8\xad\xb9\x5d\xf4\xe7\x60\xf8\x65\x05\x55\x20\x37\xce\x72\x1a\x06\xbe\x02\xcd\x74\x86\xbd\xab\xf4\x9a\x1a\x85\x96\xf3\x37\x0b\xdb\xe9\x5e\x54\x5e\x59\xff\x8d\xae\xe6\xb4\x38\xe4\x45\x4a\x0b\x9a\x0e\x4a\x2a\x0e\x41\xce\x28\xc0\x53\x7d\xbf\x57\x06\x33\xbc\x57\x55\x43\x3b\xee\x54\xa5\xb9\x2b\x28\x1c\xbc\x7f\x4f\xcb\x1f\xd4\x1d\x1f\xbe\x03\xc1\x65\x68\x85\xf6\x7c\xa0\xa8\xd7\x03\x41\x9e\xcb\xda\x87\xef\xdf\xbf\x56\xf5\xbf\xa5\xe2\xfd\xfb\xed\x56\x85\xba\x30\x6c\xdd\xd1\x13\xe1\xc1\x0e\xa0\x0f\xe2\x0f\xf1\xa7\xc3\x81\x96\xe9\x3e\x5c\x17\x7c\xc5\x4a\xfa\x85\xe0\xfb\x9a\x26\x66\x63\x08\x05\x69\xd1\x78\x79\x7b\xbb\x9a\xf3\x4c\x6e\x8d\xf0\xd2\x8c\x18\x32\xa1\x76\x93\x49\xcb\xb5\x95\xd1\xc5\x69\x77\x1b\xd0\xeb\xdd\x53\x1d\xc8\x52\x94\xa2\xd8\x24\x82\x17\x84\x10\x1b\xde\x35\xef\x4e\x95\x7b\x62\x60\x8b\x6c\x85\xa8\xe6\x90\xea\xf3\x96\x45\x3c\x6f\x24\x07\xc5\x90\x5a\xa1\x44\xe2\x7f\x6c\xb7\xdd\x31\x2e\x24\x60\x0b\x76\xb5\x51\xf1\xdd\x11\x0e\x60\x94\x03\x06\x3a\xdf\x61\x31\xbc\x29\x98\xd0\x71\x08\xef\x9b\x27\xc5\xf0\x23\xbd\xad\x5b\x39\x2e\x94\xc0\xb9\x96\xf2\xc9\x7d\xd3\x40\x44\xee\x68\x7e\x7f\x59\x6b\x41\x75\x97\x0a\x6c\x11\xaa\x19\x06\x26\x52\x9c\x15\xba\x1f\xe9\x82\x16\x34\x4f\xa8\x36\x47\x27\x96\xac\xec\x2c\xe3\x32\xff\xad\xe8\xcc\x29\xcd\x3b\x2c\x67\x82\xc5\x19\x2b\x69\xda\x19\x74\x40\x49\x22\x44\xb5\x14\x49\x9c\x65\x34\x0d\x3c\xa7\x55\x21\x45\x51\xde\x30\x83\xe6\x1a\x10\x32\x12\x58\x4d\x0d\x07\xef\x8f\x74\x21\xf7\xe3\x5e\x4f\xbf\x0c\xaf\xa8\x98\x78\xef\x7b\x7c\x4d\xed\x9a\x88\x39\xef\xea\xae\x75\x1a\xfd\x75\xc2\x5c\xa9\xf6\xcb\xf4\xbd\x9e\x92\x6d\x23\x21\x25\xe0\xd6\xf4\x1c\x9d\x7b\xad\xc0\xa2\xee\x31\x48\x97\x7b\x45\x85\x57\xda\x33\x8d\x92\x78\x11\x16\xee\xc4\xd2\x61\x00\x3f\x3c\x55\x7d\x39\x8a\x98\xf2\x46\x5b\xc9\x49\x28\xdb\xb0\xdd\xd6\xd8\xd5\xde\x82\xe3\xa6\xae\x92\x8a\x37\xa6\x19\xaf\x17\x13\x07\x81\x17\xda\xae\x9c\xf9\xfe\x3d\xb4\x5f\x22\x8f\xd6\x5c\x72\x1d\xd4\x17\x43\xec\x13\x83\x61\xdc\x0e\xc2\x76\xdb\x46\x3a\xfa\xf5\xc9\x23\x91\x6a\x21\xaa\x7e\x29\x32\xf4\xd0\x9a\x46\x88\x4a\x5d\xa6\x26\xe0\xed\xeb\xc2\xb5\x18\x2e\xb2\xf6\x11\xc3\x9a\x05\xc4\x9a\xf1\x45\x49\x44\xe9\x19\xff\x34\xce\x73\x2e\x60\x16\x77\xe2\x0e\x48\x77\x74\xe2\xb2\x13\x77\x9c\x7a\x53\xa5\x1c\xac\x0b\x84\x0b\xf5\x06\xfe\x9b\x60\x54\xb5\xe7\xf5\x5c\xcb\xce\x96\x78\x83\xb3\x1d\x97\xc6\x8e\xe7\xb2\xb3\x4a\x85\x9d\x82\xa2\x1d\xbc\xb7\x72\xc5\x75\x1c\x05\xd7\x59\x6d\x4a\xd1\xa1\x4c\x2c\x69\xd1\x99\x53\x38\x3b\x77\x78\x51\x83\xf7\xc0\x73\x18\xdf\x70\x24\x0d\x76\x5c\x6c\x24\xbe\xf3\x70\x69\xa4\xc7\x81\x62\x83\xa7\xa2\xee\x08\xfb\x38\x2d\x52\xfe\xfd\x45\xaf\xa7\xa6\x8a\x24\xed\xd5\xc6\xf4\xe3\xdb\x3f\xbe\x19\xbe\x51\x1b\x0d\xc2\x25\x11\x38\xdc\x90\xe9\xdd\x47\x7a\x1b\x05\x62\x49\xf3\x00\xab\xb2\xbd\x2e\xb1\xba\x80\x31\x61\x21\x0f\x3d\xa8\x10\xd6\x79\x64\xe7\x36\xfa\xd9\x73\xb0\x1d\x0f\x3f\x2d\x0b\x02\x22\xa9\x9f\x96\x05\x8e\xab\x0a\x7c\xf3\x87\xa5\xd7\xbe\x0d\xc2\x19\x84\xe1\x0c\x61\x51\x85\xe8\xc0\x4d\xb0\xf2\x33\xfb\x26\x50\x1b\x4d\x72\xe2\x33\x79\x36\x82\x65\xe5\xe1\x15\x15\x83\x25\x8d\x53\x5a\xfc\x9b\x68\x06\x6f\x99\xec\x4c\x32\x35\x20\xac\x7c\xc5\xe1\x4a\xce\x90\x0e\x3a\x40\x58\x09\x4d\xb5\xdf\xa9\xc8\x27\xa1\x86\xe0\x23\xbd\x2d\x25\x1e\x04\xc7\xf4\x6d\xf2\x26\x0d\xa7\xd2\x84\x00\xc7\xc6\x0b\xf1\xac\xef\x4d\xe8\x34\x9f\x19\xb6\xdc\x17\x75\x1c\x2b\x07\x46\xcb\xe8\xbf\xae\xdf\x76\x99\xbb\x96\x58\xf8\x22\xa0\x41\x85\x79\x50\xd0\x72\xcd\xf3\x92\xea\x81\x2f\xff\x6b\x5b\xa0\x2d\x3e\x55\x07\x75\x23\xa9\x07\x4e\xdf\x03\x1c\x31\x09\x34\x2c\x68\xba\x49\x68\xd8\xa6\x82\x56\x10\x61\x3c\xca\x81\x4c\x4c\xd3\xfa\xaa\xb2\x93\xc3\x4a\xf8\x97\xb3\xc4\x6d\x95\x39\x29\x90\xbf\x33\x28\x59\xb1\x3a\x1d\xd8\x61\xc6\xcb\x3d\x4c\xcb\x60\xaa\x88\x98\xce\x13\x73\x25\x3d\x0b\x08\x21\x3b\x7b\xb7\xe0\xda\x57\x82\xda\xb5\x6d\xad\x0a\x9a\x45\xc1\x57\x72\x13\x03\x47\x7a\xde\x3a\x6d\xc5\xa5\x2f\xf2\xeb\x38\x63\x69\x27\x16\x82\xae\xd6\xa2\x23\x78\x27\xa5\x0a\xfd\x6d\x0a\xda\xc9\x79\x3e\x00\x60\xe7\x99\xdb\x39\x24\xf6\x07\xd7\x2f\xd3\xd1\x0c\xc7\xd6\x9c\xda\x18\x1d\x70\xc2\x87\xa2\x60\xab\xd0\x59\x4a\xf9\xc0\x59\x0e\x9d\x67\x22\x34\xac\x65\xaf\x17\xd2\x29\x9f\x91\x12\x61\x5a\xe1\x1c\xac\x9f\x3d\xfd\xf1\xe5\xb7\xfe\x2e\x27\x48\x70\x59\x5c\xe6\xc1\x81\x8e\xfa\x1c\x5d\xaf\x66\xdf\xa6\xc8\x06\x8a\x31\xf0\x6f\x9c\x72\x30\xc5\x7f\xfa\xf1\x25\xc9\x31\x1d\xb2\xf2\xdb\x4d\x96\xc9\xaf\xdd\x35\xd4\xed\x1a\x91\x30\x01\x6d\x5c\xc6\xd7\xf4\x6d\xbc\xa2\xdf\xf1\xb2\x89\xaa\x14\xf9\x26\xf3\x62\x46\xf2\x50\x78\x56\x60\x61\xf0\x13\x9e\x11\xb0\xc3\xa2\x3f\x7a\xbd\x02\x9c\x66\x2a\xe1\x77\xc2\xec\x07\x58\x07\xe5\x85\x50\xa9\x79\x21\x2a\xdd\x9d\x87\x7f\x0b\x97\x42\xac\xb7\xf2\x51\x22\x4f\xc7\xd3\x71\x39\x40\xd4\xd0\x11\xa3\x76\xe9\x7f\x1b\x97\xe2\x1b\xce\xad\x30\xe3\x1e\x37\xb5\x41\x1c\xa0\x83\x7c\xb8\x2c\xe8\x82\x50\x2c\x48\xae\xf4\x4a\x04\x31\xf9\x87\xd6\x94\xc0\xa6\xc8\x02\xa4\x3a\xd2\xf9\x2c\xba\x93\x39\x23\x01\x05\x60\xd3\xd0\x48\xd8\x36\x63\xd3\xc6\x48\xd8\xe6\x62\xd0\x3d\x16\xd0\x52\xbc\x8e\xc5\x52\xc7\x9b\x57\xac\x7c\x01\x45\xc6\x29\x10\x5e\xc6\xa5\xfc\x92\x7f\xd5\x1e\x8c\x26\x1f\x03\x09\x2a\x2d\x85\x3f\x8b\xb0\x9f\x68\xc5\x3e\xb1\xbc\xac\xa7\x9d\x35\x74\x59\x7f\x2d\xdc\xe6\x2d\x0b\xb3\x47\xe9\xd2\xd4\xdd\x6a\x28\x4c\x52\x7f\x47\xcf\xdb\x5b\x07\x4a\x6d\x5f\xba\x3a\xfe\x97\x3c\xff\xfe\xba\xd4\xf2\x7f\xd4\xb9\xf5\x3f\x8c\x70\x2f\x15\xe1\x5e\x3f\x74\xea\xdd\x67\x77\xce\xfd\x10\xaf\x27\xb2\x59\x3f\xc4\x6b\x4d\xc7\x1d\xd8\x03\x6a\x63\x94\x94\x5d\x57\x42\xb7\xdb\x30\x27\x14\x0f\xc6\x84\x90\x6f\x75\x92\xc6\x1e\x9e\x23\xa7\x17\x38\xcd\x63\xc1\xae\x69\x27\xe1\x29\x9d\x05\xc8\xd1\x14\x6a\xed\x1f\xb4\x77\x3e\xfd\x15\xbb\xdc\xce\xb0\xae\xf1\x24\x06\xb8\xd2\xa3\x34\xe0\xe4\x2c\x91\x36\x9c\x85\xe1\xf6\xcc\x9f\xe3\x76\xdd\x82\x9b\x2a\x6b\x30\x70\x13\xea\xe3\x8b\x1b\x28\x27\x0f\xb8\x77\x98\xe9\x67\xc6\xb8\xc0\x8e\xeb\x14\x75\xc7\x9f\x1b\xf1\x32\x2c\x70\xfb\x39\xdf\xe3\xc7\xc4\x0d\xdf\xb9\x6d\x1b\xa2\x66\xc4\x6c\xb7\x5d\xc3\x92\xb1\xc0\x39\xb3\xd1\x6c\x11\xee\xc4\x0e\xcb\x65\xbc\xaa\x25\x69\x99\x67\x6f\x0a\xfe\xe9\xd6\xa9\xb3\x79\xfe\x3f\x9f\xc5\x82\xee\x25\x06\x77\x2a\x0b\x65\xf2\x9d\x13\x1b\xe8\xda\x29\xa7\x9e\xd4\x77\x13\x1a\xa2\xc9\x4e\x09\x7b\xb8\x4c\x53\x39\x75\x66\x07\x05\x08\x51\x6a\x85\x3e\xe0\xf6\xe8\x9b\x4d\x7a\x13\xda\xc9\x3e\x67\x79\xaa\x93\xc8\xa9\xe2\xce\x43\x72\xf5\x31\x9c\xfb\x07\x5d\x56\xa1\x76\xf5\x40\xdf\x3c\xb3\xcf\x95\x29\x7f\x0d\xae\x8c\x93\x19\xf4\xf6\xb8\xcd\x7f\x21\xcb\xe9\x9f\xa0\x0c\x58\xf9\xe4\x43\xfc\x09\x16\x3a\x79\x0f\xdf\x3f\xe5\xf1\x46\x2c\x79\xc1\x7e\xa6\xa9\x0a\x6f\x01\xea\x7d\x48\xd1\xa4\xb6\xb3\x2d\xa2\x93\x91\x44\x4e\xb4\x52\xb4\x2c\x2f\xe6\x2c\x4d\x69\xfe\x0b\x8a\x58\x46\x27\xa3\x63\x57\x84\x3e\x56\xfc\x82\x02\x92\xe8\xe4\xe8\xc8\x15\xf0\x4d\x9c\xfe\xa8\x08\xaa\x5f\x50\xc6\x3a\x3a\x19\x8d\x5c\x19\xaf\xb8\xf8\x96\x6f\xf2\x5f\x02\x45\x1a\x9d\x8c\x4e\x5c\x09\xbf\xe3\x39\xfd\x05\xb9\x57\xd1\xc9\xd8\xab\xff\x1d\x5b\x51\xbe\xd9\xdf\x80\x5a\xde\x5b\x95\xe7\xc9\x9c\x17\xbf\xa4\xc9\xd7\x91\x57\xe1\x53\x9e\x2f\x32\x96\xfc\x92\xfc\x57\xd1\xc9\xe8\xcc\x95\xf0\x96\x16\xd7\xb4\xf8\x05\xf9\xe7\x11\x7d\x4c\x1e\x8c\x46\xbd\x1e\xbd\x78\x38\x1a\xe9\x52\x36\x49\x42\xcb\x72\xe7\x38\x2e\x08\x3d\xd8\x65\x29\x80\x6f\x51\x38\x05\xbc\xc8\xe5\x56\x32\x1e\x79\xfe\x44\x1e\x93\x23\x59\xb8\xb8\x38\x1e\x8d\xb6\xdb\x63\x18\x1c\x21\x6b\xf1\x21\xa5\xc3\x7a\xcb\xe9\xd0\xeb\x46\x3a\xac\x8d\x03\x1d\xba\x41\xa5\xc3\xfa\x14\xa1\xc3\xe6\xb4\xa3\xc3\xc6\x62\xa0\xc3\xdd\x35\x46\x87\xb5\xe9\x4e\x87\x6e\x59\x7a\x44\x7b\xb6\x97\x63\x6b\xed\x7f\xed\x28\x58\x3f\x1e\xf7\x7a\x76\x27\x76\x72\xea\xe3\xd9\xc4\xff\x88\x02\x59\x61\x47\x89\x2a\x80\x20\x70\xcc\x24\x19\x87\xe3\xdd\x02\x8f\xbc\x9c\x47\xb3\x3a\x05\xd3\xc9\x2d\x53\x37\x64\x44\xf3\x75\x37\x75\xbe\x2e\x47\x48\x1e\xd9\x6e\x33\x1e\xa7\x84\x62\x06\xc2\x41\x9b\x92\xc4\x98\x99\x9d\x9c\x85\x02\xf3\x10\xda\x8f\x2c\x87\xd1\x75\x49\xa6\x05\x43\xf6\xf7\xc6\x0e\x34\xed\xa0\x50\x1c\xe8\xb1\xea\xdc\xc4\x65\xa7\xa0\x1f\xc0\x30\x53\x67\x4e\x93\x58\x1e\x5f\x98\x0a\x67\x6a\x6c\x02\x7c\x72\x74\xe4\x14\x0c\x24\x90\x8e\xff\x59\x1b\xbf\xe4\x40\xd9\x44\xff\x35\x00\x84\x81\x31\xf3\xa5\x3e\x38\x27\xa3\xf1\x3e\x70\x5a\xd0\xf8\x81\xf2\x05\xf2\x6f\xef\xb4\x4d\x49\x8b\x0e\x2b\x3b\xf2\x44\xb3\xa6\xc5\x8a\x09\x19\x2b\xb8\xfc\x58\xf0\x62\xd5\x81\x53\x85\x9d\x6a\x43\xd9\x8e\xe3\x7d\xed\x68\xac\x9d\xa5\xb6\xaf\xfa\x6b\x37\x42\xc2\x15\x03\x9c\x2c\x4f\x78\x51\xd0\x44\x64\xb7\x00\xd9\x68\x1f\x64\xcd\x75\xbe\x3e\x50\xe6\xed\x7f\x1d\xd0\x94\xdf\x28\x80\x4d\xf6\xe3\x42\x62\x18\x80\xe7\x64\x1f\x3c\x75\x3c\x94\x1e\x28\x8b\xf9\xbf\x2a\x34\x30\xa8\x9d\x8c\xe7\x57\xb4\xe8\xc4\xd7\x31\xcb\x24\x51\x2c\xc1\x1a\xef\xed\x26\x87\x2a\x57\x07\xca\xcd\xe0\x1e\x90\xbe\x18\x22\xa0\xe9\x82\x77\x4b\xda\x89\xeb\x38\x4b\xb0\x15\x4d\x3b\x7c\x23\x02\x3c\xd8\xbb\x30\x6a\x98\xfc\x16\x40\xba\xfe\xf7\x81\x24\xc7\x2f\x96\x1b\x89\x5c\xae\x7b\xfb\xc8\xdb\x6a\xae\x0f\xb4\xb7\xc4\x5f\x61\xdc\x5a\xe0\x51\x98\xa3\x93\x6e\xa8\x5c\x90\x71\x27\xd1\x9b\x9e\x9c\x59\x67\xfb\xc0\xab\xef\x8c\x57\x07\xca\x9c\xcd\xde\xcb\x43\xf6\x2f\x63\x12\x0d\x5e\x09\xfb\x73\x47\x5b\x51\x62\xed\xe0\x39\x6d\x81\x7d\x64\x51\x56\xd5\xb7\xfa\x79\x3b\x3f\x6b\x47\x1a\xa5\xc6\xa6\xfb\xf7\xb0\xe6\xf6\x66\x30\x92\xf5\xf8\xce\x3f\x98\x8e\x70\xed\xc6\xde\xf1\xbd\x0c\xaf\xae\xaa\x89\xef\x7c\x86\xcb\xb8\xaf\xa9\x86\xb1\xe7\x87\x29\xae\xb8\x7c\xad\x87\x7f\xe1\xa5\xcd\x17\xde\xea\x7d\x29\x43\xfe\xcb\xee\xba\xee\x15\xdb\x99\xb5\xc8\x2d\x63\x8e\x63\x5c\xee\xe3\x5c\xd6\x4f\x75\xff\x59\x9c\xcb\x5f\x87\xa7\x9c\x69\x9e\xf2\x3b\x5a\x0a\x9c\x90\xc3\xbf\x79\x42\x68\x97\x87\xe1\x24\xba\xce\xd3\xcb\x61\xbc\x66\x97\x7d\x34\xf9\x50\xf2\xfc\x90\xb9\xee\x5d\xf8\xd7\x1d\xe1\x08\x2c\xef\x2b\x56\x74\x48\x51\xaf\xe7\xae\x40\x12\x5f\xc3\xcc\xbb\x67\x3c\x0c\xe4\x19\xc4\x89\xc8\x7a\x1a\x65\x7b\x53\x51\x2b\x85\xe9\xab\x88\xd5\x4e\xdf\xe5\x66\xae\x26\x54\xe8\xa7\x59\xd5\xd3\x68\xd3\xbd\xb5\x62\x6e\xbd\x24\x4b\x68\x43\x48\x89\x2c\x1b\xe1\xb5\xf9\x5c\xc1\x27\xad\xd4\x2e\x34\x3a\x50\xfd\x27\x68\x29\x58\x7e\xd5\xeb\x65\x56\xfa\xf3\x4f\xb1\x9c\x3d\xe1\xee\xd2\x97\x47\xb7\x6b\x2d\xee\x76\xa5\xfb\xff\x07\xb9\xd8\x0d\xeb\xeb\x0e\xf4\x25\x72\xad\x82\x51\x97\x6c\xbc\xb9\xb9\x19\x48\xca\x67\xb0\x29\x32\x9a\x27\x3c\xa5\xe9\x79\x47\x76\x4d\x49\x05\xf9\xe9\xdd\xb7\x83\x47\x01\xd6\x6b\x58\x93\xf9\x70\x75\x62\xde\x9d\x8d\x54\x1d\x20\x8a\x4d\x29\x68\xfa\x1d\x2f\x85\xcd\xa0\xb1\x4d\xd4\x72\x35\xaa\xa4\x0c\xf8\x5a\x06\x2b\x7e\x0c\xd6\x92\x07\xef\x57\xf1\x47\xaa\xb7\x86\x30\x87\xab\x2c\x7a\xd3\x29\xcd\x94\x68\xca\x59\x0f\xc5\x92\xe6\x2e\xd0\x95\x3f\x34\xa8\xe8\x80\x86\x39\xaa\xe4\xde\x23\xa7\xd0\xee\x1d\x2f\x75\x29\x45\xa8\x1c\x29\x79\xe8\x23\xea\x04\x72\x91\x25\xb1\x08\x73\x25\x8b\x1e\x74\x02\xe4\x82\x36\x45\x86\x83\x8e\x29\xc1\xf3\x65\xc9\x40\x98\xa2\x00\x49\x0a\x56\xe1\x22\xbe\xf9\xb2\x7e\xb0\x67\xd7\x96\xce\xa8\xb0\x1f\xb0\x23\x62\xcc\xa1\x34\x1c\x13\x3a\x5c\x51\xb1\xe4\xe9\x76\x4b\x01\xe6\xed\x36\xf8\xdd\xf3\x77\x01\xce\xc8\x9d\x8a\x88\x62\x10\xfd\x8c\x62\xbc\x29\xb2\x88\xca\x56\x54\xe7\x6d\x57\xd8\x44\x0c\xbd\x49\x04\x17\xda\x69\x2c\x62\x50\x35\xd0\xd3\xc3\x48\xe5\xcb\x1a\xba\xa0\x82\xd5\x0d\xbb\x0b\xb8\x8c\xe8\x2e\xc2\x70\x84\x99\x5b\xce\x1c\x07\x4f\x55\x71\x03\x59\x5e\x00\xce\x26\x9d\x26\x0e\xd9\x84\x05\xaa\x50\x18\x63\xb5\x48\x94\xff\xcf\xef\xdf\xbe\x7e\xa5\xad\xd5\xb1\xc5\xad\x0e\x45\x08\x5f\xf7\xc9\x58\x9f\x06\xc3\x11\xce\x3d\xa4\x01\xa3\x42\x11\x5e\xee\x9f\x3b\x39\xba\x4b\x86\x29\xcf\xbd\x8b\x7b\xa6\xb6\x00\xa5\x1c\xc1\x87\xca\x04\xfa\x8f\x7a\x64\xc3\x52\x9f\x55\x71\x38\xc2\x85\xab\xab\x1c\x5e\x51\xf1\x24\xcb\x4c\xba\xef\x54\xa7\x84\x08\x61\x86\x33\xe5\xca\x64\x84\x85\xcf\x6d\x43\xe1\x06\x19\xb7\x64\x77\xfa\x30\x1c\x31\x2c\xe8\x27\x50\xaa\xda\x94\x51\x8c\x3f\xfc\xe3\xcf\xdf\xfd\x18\x95\xd8\x4c\xac\x68\x53\x69\x0c\x51\x6c\x94\xe3\x44\xc5\xdf\xcc\x71\xe2\x79\x8b\x5e\xfc\xcb\xe5\x51\xbc\x40\x55\x85\x86\x92\x58\xf4\xbb\x0b\x1c\x0f\xda\x0c\x2f\xf2\x67\x74\xbe\xb9\xf2\x71\x12\x50\x9c\x9a\x6a\x53\x13\x82\xa6\x9d\x38\xef\xd0\xd5\x5a\xdc\x76\xd4\xe8\xc9\xa3\x96\x5b\x4e\xd9\xee\x72\xca\xd4\x72\xc2\x9d\x9b\x25\x4b\x96\x9d\x44\x5d\x8d\xcd\x69\x07\x88\x0b\x79\x40\x03\xca\x55\xc9\x1c\xc0\xb4\xe8\xfc\xa8\x11\xb1\xba\x92\x30\xf7\x11\x77\xd5\x30\x40\x38\x80\x6c\x85\x22\x22\x89\xb6\xec\x6a\x7a\xe0\x1d\xfd\x24\x34\xf2\x2c\xc1\x11\x1a\x24\x86\x01\xb2\x63\x5e\x4f\x8d\xb6\xdb\xf8\xa0\x24\x81\x50\xc7\x08\x28\x11\x2e\x73\x44\xed\x64\x11\x05\x40\xf5\xfb\xd1\x8e\xc8\x8f\x76\xe6\x15\x6d\x9f\x57\x74\xff\xbc\xda\xe0\xcc\xa8\xc7\xd8\xe1\xde\xf8\xc3\xcd\xf4\x70\x53\x0c\x4d\x7f\xb7\x2c\xf8\x4d\x1e\xc5\x6e\xf0\xcb\x7b\x26\x13\x1a\xc6\xd9\x4d\x7c\x5b\xfa\x83\x7b\x3d\x20\xe3\xfd\x78\x91\xee\x0e\x24\xac\x40\x87\x0b\x97\x80\x0b\x13\xbc\xac\xf0\x9a\xef\x6c\x08\x3e\xc2\xd3\x5b\x46\xa8\xad\x2a\xbe\x8f\xd3\x54\x22\x8a\x77\xfc\xb5\x42\x91\xdf\xf2\x22\x14\x38\x78\xf3\xfa\xed\xbb\x00\xa1\x0a\xaf\x37\xbf\x46\x69\x3f\xe9\xc2\xc0\xe6\xfa\xbf\x5e\xdc\x93\x77\x4f\xbf\x83\x02\x53\x9a\xfd\xeb\xc5\x3d\x7b\xfe\xf2\xf9\xbb\xe7\xa6\x3c\x5a\x53\xba\x6c\x16\x99\x52\x25\x86\x5b\xd5\x4f\x0b\xea\x42\x71\x97\x3d\xb8\xdd\x0e\xc6\x12\x65\xbb\xdb\xc3\xc3\xa0\xe6\x51\x1b\x26\x89\x91\xf5\x11\x9d\x92\xd2\x55\xd9\xb9\xe5\x9b\x8e\x28\x98\x62\xec\x48\x7a\xf9\xef\x72\xae\xfe\x5d\x7e\xc9\xdd\xa9\x13\x77\x74\xcb\xba\x9d\x9f\x4a\xda\x11\x4b\x99\x42\x07\xfd\xbd\xa3\x36\x20\x38\xa4\xd1\x38\x1d\x06\x8d\x0d\x0f\xee\x95\xf5\x0d\x8e\xda\xcd\xdc\x0d\x0e\x6e\xeb\xa2\xd6\xde\x08\x29\xa1\xdb\xed\x5d\x85\x94\x25\x4e\x81\x69\x85\xdf\x5f\x51\xf1\xed\x26\xcb\xf4\x4a\xfa\x2e\x2e\x97\x2d\x4a\x3a\xaa\xc9\x57\x54\xa8\xda\x03\x73\x8e\xb1\x60\xaa\x04\x71\x59\xb2\xab\x3c\xbc\xab\xb0\xc0\x14\x55\x58\xef\xe0\x2d\x05\xfe\x93\x4c\xd9\x3b\xa3\xb6\x1a\x1a\x98\xbc\x2a\x11\x92\xeb\x4b\xd3\x4b\xf3\x0d\xcb\xd2\x9f\x7e\x54\x16\xc5\xb0\xd0\x2d\xae\xed\xfb\x6a\xd3\x7e\xa7\x22\xcc\xeb\x76\xab\x34\x9e\x70\x6d\x8b\x27\x46\xb8\xf1\xb9\x44\xdc\x61\x2d\x0e\x4d\x9a\xbd\xe3\x45\x06\x28\xaa\xd3\x0a\x7a\x3c\x97\x7c\x93\xa5\x6f\x69\x9e\x1a\x0c\x26\xd0\xc4\xd2\x0e\xba\x09\xbb\x23\x13\xda\x24\xb2\x58\x9b\xda\xbc\x81\xc3\x4a\x51\x61\xdb\xf8\x5f\xb5\xe3\xd5\x9e\xcd\x9d\x5c\x16\xf2\x65\xf3\xb4\x0c\xcd\x74\x06\xd4\x90\x24\x8a\x8d\x44\xa8\x37\x6b\x78\x29\xe4\x94\x01\x03\xd7\xeb\xb0\x40\x93\x55\x58\xa0\xa8\xc0\xb9\xf6\x49\x8d\xcc\x45\xa7\x18\x5a\x52\x7a\xb7\x18\x1b\x15\xa0\x03\x26\xcb\x9a\x30\x72\x1b\x32\x14\xad\x43\x26\x09\x24\x46\x56\x21\x43\x35\xaf\xf2\xc1\xdf\xc2\x43\x34\xb1\xb8\x59\xa6\xc6\xb0\xaa\xb5\xcb\x11\xb4\xdd\x6a\x18\x98\x87\x9f\xe1\x50\x22\xfb\x25\x77\x3e\xaf\xcd\x89\x45\x27\xa7\xf2\x4d\x89\xe3\x1d\x06\xa8\xc2\xf5\x6d\x2c\x6a\x1e\xa9\xeb\x78\xc9\x5e\xea\xe8\x4b\xe0\x49\x1e\x85\x9a\xf6\xcd\x79\xb1\x8a\x33\xf6\x73\x73\xeb\x85\x74\x7a\x12\xa9\xf3\xcc\x53\xc5\x9c\x55\xe8\xc8\x54\x23\xb1\xc2\x6e\x74\x43\x2c\xda\xea\x25\x83\x46\xad\x02\x68\x87\x4b\xae\x25\xa8\x11\x27\x6a\xd3\xde\x4d\x50\x20\xab\xfc\xaa\x0b\xa9\xb3\xa8\x9b\x25\x34\x62\x77\xb3\xfb\x17\x07\xcd\xcc\xb5\xb8\xdd\xac\x0d\x16\x74\x33\x77\x33\x7a\xb7\x80\x1a\xcf\xb8\x99\xbd\x1e\xb9\x9b\xd9\x72\x76\x9b\x19\x5d\xc4\x6e\x26\x47\x05\x35\x73\xb9\x98\x66\x9e\x1a\xff\xb1\x99\xad\x1e\xb9\x5b\xa1\xc7\xf9\x6b\x66\xf5\xa3\x0a\x4c\x55\x56\x2d\x3c\x0f\xb9\xaf\x68\x4e\x8b\x58\xd0\x67\x54\x00\xdf\xf4\x07\x5a\x96\xf1\x15\xb5\xf3\xe9\xc0\xc2\x6e\xc8\xfa\xb0\xc0\xf2\xdc\x62\x18\x95\x1c\x0e\x6b\x22\x59\xaa\x23\x71\xdb\x2e\xd5\xc6\xec\x08\x85\xcf\xbf\x54\x8b\x7a\x22\xcc\xe2\x8d\x76\x5d\x63\x4e\x04\x21\x84\x46\x61\xc2\xf3\x92\x67\x74\x78\x13\x17\x79\x18\xf8\xc7\xf1\x0e\xcf\xb3\xdb\x8e\x5a\xaf\xa5\x26\xc5\x4b\x49\x25\x83\x1d\x6c\x5a\x0e\x3b\x01\x16\x38\x00\x16\xbf\xa2\xa3\x25\xf1\xdc\x1d\xc3\xda\xda\xc1\xdf\x2d\x98\x56\xf1\xc1\x89\x3a\x76\x15\x84\x02\x52\x3c\xc8\xc1\xba\x7a\x80\x0b\x52\xec\x43\x90\x32\x5e\xe3\xc1\x66\x02\xbf\x01\x81\x95\xb9\x7f\x02\x46\xed\x01\x39\x1b\x09\x5a\x14\xe6\xc8\x8a\x72\x1a\xbb\xcd\x4d\xf4\x9d\xa3\xed\x36\xec\x76\xd9\x5e\x29\x7c\x31\xf4\x06\x0b\xce\x9f\x95\xcc\x22\x8b\xf1\x25\x6e\xb5\x15\x01\x49\x5e\xb5\x4e\x8f\x16\x34\x08\x78\x47\x01\xed\x1d\x84\x45\xf3\x20\xbc\xdd\x06\xb0\xe3\x76\x6a\xc1\x07\x9c\x78\x1e\xc1\xc0\x6d\x5d\x4d\x37\xa0\xd7\xcb\xed\xd5\xec\x83\xd1\x24\x98\xbe\xd6\x57\x6e\x2f\x21\xf0\xb6\xf3\xdd\xbb\x1f\x5e\xce\x82\xa8\x71\x84\xce\x8d\x80\x75\x60\x37\x8a\x62\x97\x88\x2f\x80\x88\xc7\x1b\x12\xbc\x51\xa7\x8c\x4e\x68\x93\xc7\x60\x27\x48\x77\xf7\x34\x80\xd1\xe9\x3c\xf9\xfe\xc9\x9f\x3b\x86\xab\x6f\x93\x96\xc0\x1f\x31\x27\x42\xff\x90\x20\x8f\x32\x7c\xa6\x37\x95\xcb\x5c\xee\x2a\x2d\x78\x79\x47\xc5\x45\xd3\x45\xea\x54\xbd\x93\x1c\x98\x9a\xb8\x89\x9a\xef\x2f\xa4\x9e\xd6\x94\xe0\x63\xe0\xfb\xf3\xfb\x29\x4d\xee\x06\x06\xbe\xbf\x80\x46\x62\x53\x46\x0d\x0d\xdf\x5f\x42\x2d\xa9\xc9\x6f\xb1\xf1\xfd\x79\x6d\x32\x93\xcf\x3b\xaf\xde\x9b\xd1\xa5\x33\x39\x6b\x28\xf9\xfe\xcc\xb5\xa4\x26\xbf\x87\x97\xef\xcf\xed\x25\xb4\x79\x15\x89\xf1\x99\x7c\x2a\x91\xca\xb3\x7b\xe4\xaf\x61\x37\x4f\x6a\x0e\x16\x90\x91\x35\xd7\xa2\x6f\x9e\x54\x58\x55\xe1\x76\x3a\x66\x47\xfa\xcd\x5c\x8f\x55\x95\x2f\x67\x7d\xf5\xf9\xab\x9b\x72\xb3\x06\x5b\xc7\xff\x76\x2d\x98\x9a\x02\x45\x1b\x57\x59\x82\x23\xbb\x9f\x25\x34\xd2\xa7\x85\x5c\xcb\xb9\x41\x60\x18\xc0\x65\x11\x52\x0c\x63\x95\x22\xe1\xab\xf5\x46\xd0\x74\x18\x67\x2c\x2e\x55\x0a\x5d\xc6\x50\xed\x05\x1e\x4b\xf9\xf3\x59\x3c\xc2\xd8\x72\xa9\xbf\xa0\x22\x73\x96\xc3\xc0\xc1\x68\x17\x4c\x54\x1e\x19\x3e\xc4\x9f\xf4\x11\xb3\xfd\x2c\x5a\x3f\x0d\xba\x6d\xcb\xab\x2e\x40\xde\x09\xbf\x40\xf5\x01\xdf\xa3\x8a\xa2\x07\x3c\xa3\x57\x71\x72\x7b\x68\xa7\xd4\x00\xf8\x38\xf6\x72\x6d\xef\xf5\xdd\xde\x0b\xb1\x7b\xaf\x2e\xeb\x5a\x1c\x7a\xb5\xe4\xff\x61\xd7\x5c\xbe\x08\xbd\x33\xcf\x62\x19\xcf\xf9\xaf\x77\x15\xc6\x5a\x17\xcd\xe7\xd1\x43\xee\xdd\x9e\x37\x38\x37\xdd\xc2\x1d\x40\xbb\xe3\x03\x23\x0c\x67\xa8\x48\x31\x54\xf7\xb6\xbd\x9e\x39\xbc\x2b\x85\x32\x13\x8e\xaa\x90\x91\x9a\xd2\x22\x43\x93\xbb\x2a\x62\x68\xc2\x74\x92\xe1\x2a\x5e\xd7\x6e\x51\xd8\x22\x2c\x42\x81\xcc\x35\xc0\x2e\x0b\xc2\x39\x22\xd0\x32\x5c\x8e\x96\x10\x3a\x08\xe1\xdc\xf3\xa0\x2e\x36\x65\xe4\xd2\x50\x84\x05\x13\x19\x38\xac\x45\x51\xc8\x09\xc3\x75\xe0\xb9\x04\xae\x09\x95\x91\xf6\x0e\x05\x9a\xdc\x57\xe6\x10\xfe\xb7\x5b\xe0\x4a\xcf\xe3\xe4\x23\xcd\x53\x7d\x49\x93\xd2\xb4\x73\xc3\xc4\x12\x98\xd3\x4a\xbc\x20\x05\x22\x2e\x12\xda\xa3\x6e\x7b\x99\x5e\xf3\x10\x80\x2c\xf7\x13\x4b\xcf\x31\x34\x99\xde\x93\x99\x55\xb3\xe8\xde\xf8\x7f\x0a\x60\x56\xcd\xb4\xd7\xa7\x3a\x72\x61\xed\xc8\xa5\x88\x6f\xf6\x62\x8e\xff\x12\x1d\xa4\xfa\xf5\x4b\x53\x80\xc1\x2c\x15\x34\x2c\xe2\x1b\x6d\x9c\xb7\xbd\x1d\x9f\x11\x62\xf8\xff\x56\x5b\xec\x16\xb0\xb7\x3d\x7a\xdb\x34\x32\x16\xbf\x96\xb2\xd8\xff\x72\x68\xdd\x3b\x58\x8b\x9a\x66\x94\x44\x1d\xad\x9a\x51\xe2\x7f\xae\x66\x94\xa8\x69\x46\x79\xd6\x3c\xfe\x27\x98\xaa\xe0\x35\xf6\xf9\x1e\x6b\x19\xff\x76\x53\x15\x4f\x1c\xf9\xf4\x34\x8b\xcb\x92\xb4\xee\xb0\xb1\xde\x8e\x0c\x5d\xb7\xa3\xc1\x88\x4b\x12\xfb\x76\x09\x0e\xd4\x9d\xee\xe7\x44\xfd\xea\x8d\xfb\xf7\x1a\xbc\x60\xa1\x40\xed\xa4\xe5\xae\x15\xf3\xff\x3c\xa5\x39\x6e\xad\x5d\xc4\x35\x19\xef\xda\xd8\x6f\xda\xd1\xa5\x2f\x8f\xe6\xe3\xca\x0f\xff\xd8\xd0\xe2\xf6\xbf\x46\x81\xf6\x3e\x0d\xe7\x89\xdb\x05\xe0\x98\xb1\xab\xb9\x9c\xab\xf3\xd1\xbd\x7a\xb6\xf3\xb8\x64\xc9\x20\x2d\xf8\x3a\xe5\x37\xf9\xa1\xe7\xbc\xbe\x1e\xd3\xb6\x5f\x34\xf2\x1a\xd7\xee\xe5\x7d\xa5\xb4\x67\x55\x7d\x6d\xce\x54\x83\x45\x9c\x65\x92\x38\x19\xb0\xc5\xc0\xf5\xc0\xfd\x79\xe3\x2c\xd9\xc8\xda\x07\x6b\x5e\x32\x98\x5f\x38\xd0\x3d\xd1\x2a\x89\xf7\x6f\x19\x31\x8b\xcf\x14\x05\x5b\x37\xac\x60\xfd\x9b\x92\xd1\xb9\xb8\xd8\xb9\x26\xbd\x20\xe3\xc9\x28\xda\x75\x5e\x87\xce\x85\xb1\x66\x95\x13\xd1\x1f\x5f\x8c\xb7\xdb\xdd\xbc\xa2\x3f\x9e\x68\x27\x25\xee\x9a\x49\xf4\xc7\x60\x58\x33\x47\xce\xd5\x80\x6f\x2f\x04\xc4\x9e\x46\xe7\xec\xa2\x30\x86\xb3\x98\xa9\x8a\x93\x62\xca\x66\x07\x60\xfb\x20\x9f\xf2\x59\x55\xd9\x2d\x05\xc7\x64\x1a\x08\xbe\x0e\x70\x90\xd1\x85\x90\xfd\xcc\xae\x96\xf2\xff\x86\xa5\x62\x19\xe0\x60\x49\x21\x60\x86\x4b\x8d\x41\x9f\x9a\x09\x61\x70\xe8\x5d\x16\xdf\xf2\x8d\x88\xec\x1c\xc6\x22\xbe\x7a\x05\x76\xe3\x02\x5c\xd0\x3c\xa5\xc5\x8b\xfc\x4d\x26\x4f\xe9\x75\x99\x9b\xee\x18\xe1\x6b\x5a\x08\x96\xc4\xd9\x1b\x3d\xd2\x8d\x24\x41\xbc\x11\x1c\xd8\x02\x05\xfb\x99\xe7\xe2\xb3\x09\x0b\xce\xc5\xf3\x6b\x23\xc0\xd6\x48\xb3\xe2\x9b\x92\xc2\xdc\x45\x18\x58\xb7\xef\x0a\x76\x75\x45\x8b\x3f\xc9\xb6\xb6\x00\x27\x54\xb4\x6d\x71\xb3\xbc\xe6\xa2\x51\xc9\x95\xf3\x76\x41\x73\xf1\xa5\x19\x75\x72\xf0\xc8\xae\xa7\xfe\x9e\x66\x3a\x69\x0f\xe5\x3b\x5d\x76\x73\x19\x4d\x5b\x57\x53\x30\xc3\x82\xaf\x95\x9f\x45\x39\xb8\xea\x0d\xc6\x57\xbd\xc2\x10\xab\x57\x35\xca\xea\x9d\x4b\x3c\xff\x56\xdc\x66\xb4\x8c\xee\x2a\x2c\x29\x15\x5f\x88\x58\x5f\x75\x88\x30\xa8\x8d\x6d\x20\xc9\x25\x79\x2c\x76\xf1\x7a\x1a\xc8\x18\x08\x2c\xfd\x40\x1c\xa4\xec\x3a\x30\xb7\x75\xf7\x5c\xe1\x63\x97\x57\x79\x4d\x7f\xf2\xe6\x45\x80\xef\x2a\x3f\xc2\x03\x19\xa2\x0e\x94\x4b\x3b\x48\xb0\x59\xa7\xb1\xa0\x60\x7a\x3a\xbc\xdb\xe4\xec\x1f\x1b\xfa\x22\xd5\x9c\x9f\xab\x0d\x4b\x41\x64\x62\xc9\x4a\x84\x59\xf9\x7a\x4d\xf3\xc8\x35\x40\x13\x69\xd9\xad\x0c\x97\xb4\x18\x98\x98\x4b\x59\x29\x77\xa6\xd4\x4b\x68\x82\x74\x8a\x38\x51\x37\xfb\x77\xdc\x96\x27\xdf\x40\x29\x55\xd7\x05\x56\x46\x55\x14\xbc\xfa\x71\x82\x5f\x5d\x65\x3a\x52\xbd\xfb\xb1\x05\x35\x58\x31\xd2\x22\x21\xe6\xdb\x4b\x25\x0f\x77\x4a\xba\x43\x4f\x86\xff\x97\xbd\xbf\xef\x6e\x1b\xc7\x12\xc4\xe1\xff\xf5\x29\x64\xee\xac\x8a\x18\xc1\x8a\x9c\xea\x73\xe6\x3c\x72\x18\x6d\x2a\x49\x75\x65\x3a\x89\xb3\x49\xaa\x67\xea\x51\x6b\xdd\xb4\x04\xd9\xe8\xd0\xa0\x06\x04\xed\xb8\x2d\x7e\xf7\xdf\xc1\xc5\x0b\x41\x12\x94\x28\xc7\x4e\xa7\xba\x33\x67\xba\x62\x11\xef\xc0\xc5\xc5\x7d\xbf\xaf\x96\x51\xed\xf7\x66\xe3\x85\x9a\x43\x0d\x8c\x87\x8e\xad\x8e\xd9\x35\x13\x26\xb1\x5c\x78\xca\x5e\x31\x2a\x02\xd4\x93\x8f\x3c\xc8\x47\x97\x74\xf9\x9e\x2c\x08\xbd\x22\xcf\x84\x70\x55\x3f\x1a\x72\xb6\x1d\xb5\x3e\xb6\x83\x03\x55\x33\x4d\x96\x2f\xf4\xc6\x62\x61\xbe\xd6\xf6\xbb\xd7\xa8\x1a\x09\x49\x2d\x1c\x90\x69\xcd\x5c\x49\x11\x53\xb0\x07\xaa\x26\x9a\x1c\x88\xc1\x80\x18\x09\x88\xa7\x22\x61\x50\xaf\xc0\xd7\x34\x49\x5e\x90\x4c\xf0\xf4\xe6\x2e\x0b\x72\xaf\x8c\x32\xd0\x95\x30\x8c\x7a\x64\x30\x20\x60\x46\x05\x76\x3a\x99\xa0\x0c\x4c\x6d\x6b\x62\xc9\xf0\xb6\xc5\x8c\xdf\xd8\x41\xbc\x28\x9b\xbe\x5a\x86\xa8\xc0\x19\x69\xb1\x70\xb2\xbc\x8a\x98\xb6\xb5\x06\xe1\x4a\x09\xc1\x4a\x05\xf8\x73\xba\xc8\xdb\xb4\x78\x06\x10\xa0\x8e\x81\x84\xb2\xa0\xbc\xb3\x08\x13\x54\x14\x18\xee\x44\x5d\x58\xe5\xdc\xb9\x4c\x6f\xb4\x3c\xdd\xe6\x38\x4e\x77\x10\x66\x49\x98\xd3\x5c\x0e\x06\x07\x62\xa4\xae\x70\xc5\x50\x56\x4f\x4f\x7e\x0f\x50\x8f\x0d\x06\x07\x47\x20\xbc\x13\x98\xa0\xcd\xa6\x89\x22\x34\x16\x80\xd8\xa6\x45\xa1\x2f\x6a\x93\xcc\xdf\x3a\x63\xb6\x65\xc6\xcc\x99\x31\xab\x4c\x98\x57\x26\xfc\x5c\x0e\xac\xdb\x84\x5c\x4f\x9b\x87\xac\x9c\x76\x73\xf4\xcd\x26\x34\x48\x51\xd3\x3d\x94\x64\xe1\xed\x85\x7d\x4d\x00\xc1\x5f\x55\x7f\xde\xe5\x91\x30\xd8\x77\xcd\xc9\x15\x4d\xf3\xec\xcf\xb5\x67\x3c\xaa\x94\xfe\xd2\x78\xbd\x55\x14\xf7\xf6\xcd\x3f\x92\x03\x20\x64\x62\x3e\xda\xc8\x3f\x40\xaf\x7f\x80\x98\xd1\x92\x53\x99\x2d\x63\x11\x1f\x92\xb3\xe5\x21\x5d\x46\x8e\xd1\xb5\x41\x58\x38\x38\xd4\x8f\xf2\x3c\x40\x60\x0f\x43\x47\x22\x3e\x7b\xc5\x96\xe4\xf3\xd3\xc3\x23\xf9\x73\x25\xc1\x16\xc2\x27\x17\x06\xf1\x56\xf4\x39\xcd\x73\xd4\x67\x16\xa0\x69\x89\xbe\x81\x35\x37\x78\x1e\xf0\xa0\x83\xa6\x5d\xab\xc8\x1a\x3e\xa8\x01\x07\xa9\xc0\x83\x28\xd7\x7d\x4e\x84\x0e\x77\xf4\xd3\xcd\x2b\x85\xe3\x1d\x54\x8e\x30\xdb\x73\x8b\x48\xeb\x16\xad\x24\xbf\xc6\xf4\xc2\x1d\xa4\xa4\x87\x8f\x5a\xbe\x6f\x36\x5b\xe7\xaa\xb0\x76\xd9\x2a\xd0\xc6\x4c\x25\xc8\x3b\xf0\x1a\x34\xa9\xbd\x00\x07\x75\x4a\x31\xc0\x41\x83\x86\x0b\x70\xd0\x0e\x73\x4e\x61\x1d\x5c\x81\xbf\xa8\x10\x33\x3d\x6e\xf7\x17\xa6\x68\x4c\xaf\xec\x62\x1a\x94\x5a\x80\x42\x86\x75\x2e\xef\xe6\xfe\x38\x21\x13\x95\xb6\x48\x3e\x17\xef\x2d\x8c\x40\x53\x0a\x08\xa7\x56\xd2\xa2\x72\x72\xef\xf4\xa8\xb9\x5f\xee\x1d\x1f\xd5\x77\xae\x42\xe1\x39\x28\xc7\x21\xa2\x10\x58\xb4\x31\x95\x5e\x61\x30\x28\x83\xb3\xe8\x4f\x23\x91\xae\x21\x9a\xae\x48\xd7\x8e\x14\xdf\x29\xc5\xc1\xfa\x73\x80\x10\x6e\xb4\x94\x58\x66\x1a\x72\xf8\xd7\xd3\x54\x7e\x56\x6d\x31\x1f\x01\x1e\x52\xb8\xa2\xd1\x0f\x94\x41\x56\x6b\xe7\xb7\x66\xe0\x90\x49\x44\xe2\xa9\x6f\x7a\x6d\x0e\x0d\xdf\xed\xd8\x30\x3f\x78\x9c\x9b\x63\x03\x52\x54\xd1\x84\xe5\x5f\x9e\xbe\xe0\x7b\xeb\x1e\x28\x4c\x0a\x1d\xa8\x3f\x3d\x3d\xa8\x02\xd3\x45\x85\xd5\x53\x35\xd0\x68\x95\xf2\x97\x71\xcd\x41\x05\x62\xfe\xc4\xd6\x3a\x97\xa0\xc1\x80\xcf\xc8\xbc\x1c\x7c\x46\xe6\x30\xb0\x73\xdc\x33\x32\x77\x4a\x51\x81\xb0\x0e\x24\xe4\xd0\xf2\xe9\x3a\x28\xf1\xf1\x6c\x6e\x13\xc6\xa7\x7d\xaa\x14\x3a\x72\x46\xf5\x85\xce\x52\x39\x56\x99\x0c\xd1\x44\x97\xb2\xa5\x53\xaa\x2c\x05\xcb\xe5\xa7\x38\x98\x54\xbc\x65\x4c\x55\xbd\x13\x93\xee\x2d\x10\xd2\xd1\x82\x24\x25\x4a\xcf\x72\x41\xc2\x00\xca\x02\x4c\xb5\x05\xc9\x71\x50\xca\xce\x3c\x2f\x27\xaf\x3d\x73\xbe\x87\xcc\x77\xfb\xb6\xbf\x8d\x9e\x1b\xc9\x0b\xc3\x56\x74\x7d\x2d\xcc\x53\x31\x18\x90\x91\xa6\xd6\xf4\x53\x84\x3c\xef\xaa\xe5\x59\x80\xac\xc1\x8a\xb0\x6d\x90\xb2\x2d\x4d\xc0\x8e\xdf\x29\x6b\x35\x81\xce\xac\x4e\xdb\xe1\xd4\x52\xd0\xfd\xb5\xd0\x83\xf2\xe5\x6a\xa3\x8e\xcb\x88\x3d\x2c\x14\x90\x41\xa7\x41\xae\x36\x37\xcb\x2a\xd7\x4f\xae\x19\xd1\x8c\xdd\x88\x93\x2c\x4d\xae\xc8\x7b\xe8\x5e\xb9\x36\x87\x81\x92\x32\x4e\x08\xbb\xa2\x3c\x65\x90\xd8\x46\x25\x3d\x16\x24\x13\xca\xed\xcf\x29\x1b\x0c\xb6\x46\x28\xb4\x01\xab\xdb\x58\xf1\xc1\xa0\xb5\xc8\x7d\x2d\xda\x98\xb2\xeb\x94\x5f\x5e\xa4\x09\x09\xaa\x5a\xbb\x66\xf4\xdc\xae\x32\x40\x23\x73\x38\x24\xea\x7d\xfa\x87\xd8\x88\x34\x45\x49\xb1\xb9\xa9\x3f\x51\xb6\xa4\xec\x3c\x9b\xcc\xcc\x95\x0d\x96\x94\x07\xf3\x1d\x16\x11\xfb\x2e\xff\x7e\x44\xa1\x65\x6f\x5f\x55\x24\xba\xa5\x7e\xb6\xe0\x69\x52\xba\x40\x77\x10\x9a\xba\x5a\x9d\x36\x9b\x82\x46\xec\x59\x57\x0e\x8a\x19\x58\xb7\xea\x32\x93\x74\xff\x58\x3c\x31\x7f\x83\xec\x93\xcd\xc4\x3c\x22\x33\x31\xef\x95\x56\x4d\x60\x61\x5e\x1b\xea\xab\x86\xad\x25\x77\x0b\x5b\xab\x52\x19\x6e\x89\x58\x5b\x89\xf6\xa6\xe3\xe2\x4b\x6a\xea\x80\x8c\x40\x7a\xf7\x9a\x66\x62\xb3\x71\x7f\x81\x37\x44\x4c\x59\xe6\x07\xe8\x43\x2b\x29\x44\xc7\x88\x44\x10\x13\x96\x30\x43\x6e\x97\x9a\x42\x3b\xae\x8e\x5b\x76\x4d\xd9\x32\xbd\x36\x8a\xe5\x67\x8c\x5e\x02\xb6\xf9\x99\xc7\x97\x24\xac\xe1\x50\x16\xe9\xda\xe7\x04\x04\x98\x12\x64\x81\x4c\x08\x89\xc2\x8f\x2c\x65\x04\x54\xa4\xa3\xd8\x74\xf4\x16\x22\xc0\x06\x3c\x67\x4c\x59\x1a\xbb\x85\xef\x92\xf8\x06\xde\x0d\x74\x4b\x46\xf1\x72\x09\xe2\x59\xb9\x58\x22\x31\x74\x60\xeb\x11\xb6\x2c\xd3\x83\xf5\xe5\x74\xc8\x88\x93\xcb\xf4\x8a\x6c\x6d\xc1\x10\x16\x21\x2a\x90\x8e\xfa\x0a\x7f\xde\x0f\x9a\xca\xef\x24\xf1\xa6\xd9\xc7\x34\x5f\x5c\xbc\x20\x60\xec\xf6\x53\x9a\x26\x24\x66\xe1\xc1\x81\xda\xd5\xc1\x20\x48\x99\x90\x15\x20\x23\x5e\x40\x59\x5f\x15\x20\x7c\x11\x67\x6f\xd2\x2b\x78\x70\xb1\x5d\x22\xa8\xb5\x64\xb7\x82\xc7\x4c\xdd\x7c\xca\xce\x5f\x99\xef\x5e\x20\x39\xac\xd4\x3d\xa4\xcc\x6d\x4d\x96\x9d\x1b\x93\x65\xad\x2d\x65\xe7\x27\xb9\xd8\x63\x68\x08\xae\x72\x6a\x3c\x7c\xf4\x1e\xd5\x64\xe1\x4a\x0c\x6c\x17\xfc\x92\x29\xaa\xa3\x26\x03\x6b\x88\xbf\xd4\x33\x7d\x10\x7d\xe1\x8b\xef\xbe\xf1\xf0\x9a\xd4\x19\xb7\xfa\x44\x2a\x5c\x2c\x6e\x4a\xe5\xf6\x65\x83\x0b\x84\xe1\x81\x6b\x8c\xd3\x45\x2b\x83\xab\x92\xef\x06\x35\x24\xe1\xc6\xcb\x61\xef\xdf\x39\x50\x6a\xc0\xd8\x71\x48\x19\xb7\x12\x98\x46\x42\xf3\x4c\x69\x24\x34\xc7\x13\x83\xc3\x15\x7c\xcc\x22\xe1\x32\x19\x12\x77\x64\x83\x81\xcb\xc8\x64\x1e\x16\x46\xa0\x5b\x32\x74\x0d\xc3\xaa\xd4\x7d\x36\x13\x73\x2c\xc9\x76\xc9\xa4\x0c\x06\xa1\xac\x2b\xd2\xb5\xeb\x72\x0f\xc5\x08\x73\x5d\x0a\x52\xad\xb2\x98\xeb\x62\xaa\x8b\x95\xa8\xab\x2c\xa7\xba\x3c\xd5\xe5\x4a\xfe\xd5\x77\xb9\x0d\x28\x8f\x75\xb9\x16\x8a\x95\x15\x62\x84\xb0\x79\xf2\x9e\x8e\x51\xc5\xe8\x53\xbf\x46\x17\xe2\x32\xf9\x10\xaf\xc0\x2e\x18\xf9\x15\x2c\xbb\x35\x22\xda\x99\x2a\x4d\xc5\x9b\x34\xcf\xc8\x0b\x23\xa9\xf0\x15\x54\xb4\x0b\x4a\xad\x90\x2f\x2e\x20\x79\xda\x2f\x50\x5b\xcb\x61\x1a\x9f\xfd\x0d\x25\x9a\x6a\xb6\x73\xbe\x36\x9a\x5d\x5f\x10\x92\x54\x9a\xb8\x5f\x9c\xea\x0d\x89\xb9\xa5\x93\xb5\xa8\x5f\x51\x36\x12\x47\x3c\x63\x0b\x92\x89\x94\x67\xd1\x6c\x8e\xeb\xca\x8e\xfd\x75\x1b\x0e\x8f\x52\x47\x46\x55\x0d\x56\x15\x37\x07\x4e\x3b\x1f\x8e\x96\xb0\xa2\xf4\x34\x39\x4b\xd2\x74\xfd\xec\x3a\xe6\xa4\x14\xef\xb8\x51\x5f\x6b\x7a\x88\x92\xaf\x2b\x65\x89\xa8\xa8\x28\x23\x0c\x8e\xda\x1f\x7a\x4e\x05\x89\xb9\xdc\x93\xf0\x7e\x74\x36\x8e\x18\x29\x59\xbe\xb0\x67\xa6\x9c\x2e\xbd\xc7\xe9\x70\x7e\x3b\x31\x53\x4d\x38\x87\x79\xc4\x00\x15\x51\x70\x3e\x5c\x49\x04\xc4\x34\x2a\x8a\xe5\x5f\x6e\xf5\x63\x49\x6e\x29\x5e\x79\xb3\xd1\x72\x0d\xae\x4c\x60\x94\x7f\xbf\xfe\x2b\xd5\x22\xf6\x58\x1e\xb6\x6e\xe0\xe8\x90\xb2\xc5\x05\x91\x74\xc3\x09\x03\x6b\xf5\x95\x20\xfc\x3d\x0c\xa3\x00\x00\x5b\xe9\x2f\x9a\x94\xac\xb9\xd5\x48\x68\xf8\xa9\x30\xe8\x59\x7d\xb7\xc0\x09\xbb\xaa\x1e\x69\xca\x00\xea\xf7\x41\x0b\x6f\x2b\xe2\xd9\xea\x37\x47\x34\xfb\x45\xb2\xe1\xea\x1d\x33\x03\x76\x15\x51\x37\x54\x87\x15\x4d\x7d\x80\x7a\xb6\xa3\x06\x89\x28\x5a\x11\x1e\x3e\x18\xbb\xf7\xb6\x42\x7a\xc9\x4b\x1b\xb6\x77\x1a\x38\x44\x58\x0b\x4e\x84\xde\x77\xf5\x00\x34\xe8\xb6\xf9\xa1\x5e\x53\x19\x05\xba\xb2\x57\x5a\x1f\xe5\xdb\x56\xcf\x68\xa0\xa8\xa0\x2e\xcd\x21\x9c\xc8\x69\x60\x1b\x55\x97\xa9\xdb\xa1\x4e\x72\xed\x5a\xbc\xcf\x58\x40\xbc\x79\x2d\xa9\x9d\xc1\x68\x65\x30\x58\xf8\x4b\x26\x08\x57\xde\xc7\x1d\x87\x03\xbb\x0c\x02\xcd\x7c\x03\x52\x77\xc0\xb4\x39\xe0\x6b\x12\x5f\x49\x08\x4a\xf7\x1b\x30\x81\x66\xbe\x01\x53\x77\xc0\xb8\x32\xe0\x9f\xc8\xcd\x0b\x75\xfb\xe2\xce\xa3\x7d\x22\x37\xea\x7e\x7b\x86\xd2\x39\x9c\x24\xc9\xd0\xc4\xf6\x16\x53\x78\xde\x3c\x33\xa9\x0f\xcd\x32\xd3\x2c\x5e\x2e\xff\x08\x29\xa8\x61\x3e\xee\x67\xd5\x08\xc0\x9c\xb2\x73\x3b\x8c\x84\xfd\x93\x33\xb0\x2d\x66\xe7\x2f\xd2\xcb\x37\xb9\x4a\x24\x6d\x9b\xb6\xbe\x8e\x7b\xe2\x49\xd5\x05\x79\xc5\x50\x43\xc1\x6a\x9e\x9c\xf2\x7d\xea\xf2\x30\xeb\x0e\x4f\x72\x11\xfa\x0e\xa5\x05\x77\x81\x26\x13\x7b\xee\x6d\x53\x05\x68\x98\x33\xad\x7a\xad\x1f\xba\x65\xdb\xc9\x48\xc4\xfc\x9c\x08\xa3\xa3\xad\xa2\x62\x3d\xdb\xea\x47\x4f\xe3\x69\x65\xcc\xe8\xe0\x68\x72\x60\x19\x63\x12\x3a\x6a\xa0\x38\xac\x65\xc7\x8b\xc3\x56\x64\x1f\x73\x1a\x1f\xa6\xd7\x2c\x8b\x1c\x0f\x4e\x2b\x70\xcb\x46\x74\xa9\x32\xe3\xa9\x04\xf0\x65\x50\xaa\xc1\x80\xfa\xaa\x49\x26\x7f\xb3\x21\x21\xc5\xcc\x88\xd0\x0f\x8e\x0a\xbb\x86\x3a\x45\xa6\xd7\x54\x7b\xc3\x6a\xa2\x6b\x22\x11\xe6\xa4\xbe\xf8\x02\xd7\x20\xd9\x85\x16\x2d\xac\x68\xde\x3a\x4e\x32\xfa\x77\x12\x6c\x23\xbe\x10\x6e\x6d\x9d\x72\x6a\xd2\xa8\x2f\x2e\x62\x76\xbe\xa3\xa3\x02\xb7\x5f\x1e\xff\x6b\xae\x5e\xef\x4b\x5d\x49\x35\x24\x1c\x44\x68\x6f\x6a\x1f\x2b\xcc\x51\x28\x66\xe3\xb9\x9c\x30\x59\xbe\x4d\x97\xc4\x58\x0d\x6e\x36\xf0\x5d\xc9\x4b\x2a\x25\x08\x22\x18\x79\xa7\x1d\x22\xa3\xc7\xaf\xcf\x63\x94\xaa\x3f\xbc\xb7\x09\xdf\x2e\x2e\x68\xb2\x94\x9b\x35\x39\x18\xe3\x2c\x3f\x13\x9c\x10\xad\x5a\x50\x33\xd8\x71\x5a\x5e\xb1\xce\x3e\x07\xe6\xed\xe0\x0e\x67\x96\xae\x77\x1e\x99\x77\x7f\x06\x83\xd0\xbf\x6f\x4b\x9a\x2d\x52\xc6\xc8\x42\x84\x2d\x5b\x1b\x69\x83\x1f\x8b\x03\x5b\xe0\x23\xf3\xef\xbd\x53\x99\xf8\xf9\x11\x52\x67\x46\xac\xc8\x07\xc4\x0d\x76\xe4\x93\xbc\x19\x0e\x0e\x64\xc3\x15\x8d\x4c\x85\xf0\x9e\xd6\x24\x8e\xd5\x5f\x93\x5a\x29\xa6\x11\x91\x17\x9b\x11\x09\x8f\xe1\xc1\x18\xf5\xe8\x48\x52\x9a\x25\xb3\x3d\xa2\x92\xc8\x3c\x84\x4a\x41\xf3\xbd\xf5\x33\x54\xc7\xa1\x88\x68\x29\x33\x45\x1a\x1a\x0c\x7f\x82\xd3\x30\x36\x29\xd4\xfa\x12\x93\xe1\x90\x55\xeb\xc7\x4b\x93\x1b\x82\xe1\x34\x6c\x19\xce\x48\xba\x02\x54\xed\x0c\xf8\x20\xc2\x96\xcf\xe5\x1d\x08\xa9\x4b\xcc\xd7\x4f\x22\x46\x38\x0b\x69\x45\x48\xa4\xe7\x6a\x1a\xcb\xe3\x68\xd0\x9d\x2e\x40\xec\x22\x3f\x65\x67\x81\x9f\x35\x97\xb8\x54\xf7\xee\x7c\x6d\x80\x76\x89\x68\xc7\x25\xb1\xeb\xbd\x5f\xdd\x06\x74\x19\xfb\x36\x93\xb1\x1a\x50\x83\xd5\x89\xff\x0d\x05\x3d\x9c\xfe\xa9\xc5\xd3\x10\x15\xe1\x9c\x88\x67\x26\xa2\xb4\xa2\x66\x90\xf3\xf4\x48\x0e\xd1\x54\x53\xa5\x2f\x48\x22\x62\x70\xe1\xc6\x69\xc4\x47\x4b\xf9\xf3\xbf\x71\x6c\xfe\xfc\xad\x97\x3e\x61\xfa\xeb\x5b\x72\x0e\xe9\x70\xa6\xa1\xe4\x2a\xab\xdf\x30\x01\xb5\x2e\x61\xe2\x85\x8e\x0f\x88\xd0\x24\x7d\x6a\xaa\x29\x7d\x6e\xb5\xa9\xf9\xe6\x6d\x1a\x9b\x51\x7f\x2b\x47\x8d\xa3\xfa\x37\x7f\x53\x33\xea\x6f\x66\x84\xc1\xc0\x69\xbb\x6d\xd8\x52\xdc\xfd\x4e\x15\x91\xe5\x60\x10\xa6\x9b\x8d\xe4\x7d\x55\xd0\x09\x9a\xe9\x07\xdf\x6c\x6e\x8a\x63\xec\x6c\xb0\x92\xb6\x37\xfb\x86\x28\x62\x1e\x9a\xb4\x89\xe4\x66\x73\x1b\x59\xa7\x4a\x0f\xa1\x52\xa9\x04\xf1\xed\x6c\x87\xef\x00\xb9\x20\x5f\x1b\x8d\x78\x24\x9e\x41\xc7\x62\x30\x08\x7e\x3a\x79\xf1\x1b\x64\xb8\x1a\x69\xd1\xfc\x48\xa4\xbf\xae\xd7\x65\x10\x8c\xe0\x97\x8f\x6f\x5e\x6f\xa9\x71\x8c\x88\x32\x34\x90\xc4\x63\xdb\x44\xdc\x61\x7b\x8e\x51\x7d\x9d\xc2\x76\x57\x7f\x30\xae\x18\x56\xe8\x0d\x54\xf5\x03\x34\x0d\x0d\x8d\xfe\xce\x2d\x80\x9b\x68\x5e\x14\x75\x39\xab\x23\x44\x4e\x49\xb3\x25\x9a\x84\x55\xd2\xbf\xca\x11\xec\xea\xd0\x6d\x63\x9f\xf8\xf6\x15\xc2\x06\x34\x27\xd1\x11\xad\x01\xfe\x08\x9a\x62\x43\x7c\xbb\x88\xd7\x22\xe7\xe0\x22\xb4\x8e\xb3\x8c\x5e\x11\x6d\x9b\xd0\xb6\x6c\xef\x88\x5e\xd4\x76\x87\x41\x6b\x7b\xd9\xf2\x8a\xb7\x12\x98\x8a\xa7\xdb\x41\xed\xb4\x71\x7f\x5e\xb1\xb9\x6f\x33\xcd\x28\x6d\x14\x20\x2a\x6a\xe7\xd9\x65\x31\xde\x1d\x7c\x88\xf5\x6c\x1d\x68\xeb\x92\x2c\xfb\xd8\x78\xee\x9a\xf4\xe9\xb6\x5b\xb0\x8d\x03\x37\x52\xe7\x56\x2a\x32\xf4\xd8\x7f\xb7\x09\xbd\x7c\x4b\x25\xf7\x20\xf7\x6a\x7f\xc8\xf7\x10\x7d\xb5\x77\xb2\x5b\xfa\x55\x35\x58\x69\xfa\xe7\x75\xb6\xd8\x30\xde\x35\xf7\x63\xb1\x61\x7b\xfb\x02\x8b\x8d\xba\x55\xc5\x83\xd8\xca\xf0\x68\xa7\xea\xb8\xe7\x73\x09\xee\xd7\xf4\x89\xc4\xa3\xab\xb4\x10\x44\xd0\x34\x10\x3c\x27\x81\x36\xee\x2e\x94\xa4\xad\xb3\xfa\xbb\xaa\xf3\xe6\xbb\x7d\x93\x8c\x5c\x39\x98\x63\x9e\x26\x0d\x9d\xf0\x59\x2e\x44\xca\x02\x84\x63\x4e\xe3\xf7\x69\x43\x3b\x3a\xe2\x24\x5e\x9e\xb0\xe4\x46\xde\xa8\x84\x04\x08\x8b\xf8\x0c\x4c\x1e\x27\x63\x4c\xac\xfb\x97\xe3\xf0\x05\xbc\x9e\x3c\x84\xf8\x5c\xf9\x58\x1c\x1c\x95\xb3\x74\x8c\x8d\xa8\x62\x75\x34\x01\x1f\x58\x2b\x5b\xf3\xe1\xaa\xfa\x61\x8e\x7d\x16\x4b\x76\xd6\x30\x39\x6c\x2d\x98\x84\xbc\xf4\x38\xb0\x4e\x48\x8e\xf8\x5d\x96\x6a\xc3\xf4\x89\x59\x4b\x80\x83\x52\x7e\x32\xb1\xe2\x9b\x00\xc3\x00\xaf\xe3\x33\x92\xa8\xaf\x89\xfc\xd3\xfd\x9c\x90\xe5\x4f\x37\x4e\x59\x42\x96\x67\x37\xba\xc2\x0b\x92\x2d\x38\x3d\x2b\x6b\x2c\xcd\x07\x5b\xe5\x30\xce\x45\x2a\xf7\x3a\x21\x82\xd8\x6f\x0b\x49\x4e\xca\xca\x84\x2d\x63\x30\x76\x52\xcd\x8d\x2f\x8e\xfe\x4d\x3e\xaf\x63\xb6\x2c\x7f\x5f\xc4\xd9\x3a\x5d\xe7\x6b\xf3\xdb\x66\x47\x52\x3f\xc1\xc9\xb8\xac\xad\xdd\x3c\x61\x3f\xa8\x48\x48\x30\x6f\xe8\x47\xeb\x32\x94\x9d\xda\x29\xbf\xfe\x49\x35\x36\x67\x51\x09\x45\xd2\xd4\x7f\x04\xa8\xa1\x61\xac\xfd\xee\xec\x4e\x25\xea\x2a\xc7\x53\xbf\x4e\xb5\xf1\xb9\xa1\x54\x3d\x05\xf0\xce\xd7\xa6\x59\x67\x6a\x47\xb7\x93\x6f\x68\xad\x8f\x2a\xde\x3f\x4b\x97\x37\x8e\x6d\x92\xea\xab\xc5\x32\x49\x90\xcf\xe2\x30\x03\x69\x63\x09\x12\xa8\x00\xe5\xe2\x2b\x96\x11\x2e\xee\xae\xac\x8c\x97\xcb\x37\x31\x5b\xc6\x22\xe5\x37\x7a\xa2\xae\x34\x5b\x45\x5d\x8a\x93\xb2\xe8\xcb\x95\xa4\xfb\x71\xc2\x8d\xb3\xda\xd5\x81\x3d\x01\xdf\x41\x2a\x3e\xba\x76\xbb\x26\xb4\x04\xde\x51\xb9\xc1\xf5\x4b\x57\xa9\x66\x1c\x55\x6a\x37\x4f\xd6\x91\x1f\xb4\x49\x9b\x2d\x37\x57\xd1\x94\xbf\xd3\xbf\x51\xfd\x6e\x9a\x0a\xef\xcd\x07\xc0\xbf\x0a\x79\x35\xcc\x65\x1a\x73\x06\x4c\xa7\x11\xdc\x16\x45\xa7\xad\x64\x38\x2b\xd0\xce\x12\xd7\xf7\xc9\xb3\x1f\xc6\x71\x9a\x6c\x36\xe3\x02\x95\xef\x04\xc2\x2e\x66\x6f\xcc\xb2\x2a\xe7\x72\xa7\x65\x78\x54\x9f\x38\x4c\x1b\x77\x6c\x7d\xe1\x0e\x0f\x29\x3b\x5c\x43\xfd\x02\xe1\xea\x7b\xd2\x98\xc6\x45\xe9\x90\xb2\x65\x67\xca\x5a\xca\x69\xa8\xdb\x34\x9c\x08\x42\x05\xc2\x57\xdb\x27\x72\xd5\x69\x22\x57\xf7\x30\x91\x9a\xa7\xa1\x5f\x05\xb3\x05\x8b\x57\x9d\x00\x7d\x9e\x7f\xb6\x4b\x55\x3b\x3c\x60\x9b\xcd\xc1\xd1\x81\xf1\x01\x44\x83\x81\x43\x27\x54\x78\x73\x52\x52\xea\x00\x08\x63\x08\x7c\xae\x88\x13\xbd\xd6\x5e\x05\x3e\x6a\x44\x46\x00\xb2\xf7\xda\xc7\x52\xdb\x96\xae\x3f\x92\xcf\x42\x69\x68\x68\xca\x7e\x65\x82\x26\x6f\x14\x26\x08\xad\xb9\xcd\xf9\x79\x42\x5e\x65\x3f\x11\xca\xce\x15\x7a\x58\xfe\x74\x03\xc4\x96\x66\xc7\x1d\xcf\xce\xb0\x5b\x93\xe8\xe0\x08\xf5\x84\xd5\xbc\xa8\xfa\xf2\x30\x0a\xa3\x0b\x7b\x9e\xd0\xc5\xa7\x3d\x0e\x40\x80\xa5\x43\xe9\xd6\x18\x2c\x64\x07\xdb\xf7\xf2\x6e\x9b\xf6\x75\xf7\x43\x6f\x87\xaa\xcb\x96\x4d\xad\x60\x87\xbe\xc7\xdb\x48\x10\x15\x2f\x46\xae\xb7\x2e\x8f\xdb\x6c\x1c\xa0\x76\x3c\x4e\x8d\xb4\xd6\x07\xe8\x66\x9e\xaa\xe3\xaa\xa7\xab\x01\x57\xdf\x3a\xeb\xfa\xb6\x2f\x7f\xfc\x8c\xa0\xd0\x78\x57\xe2\x8c\x08\x9d\xef\xa2\x6e\x6e\x2c\x94\xdf\xa3\x16\xf1\x0a\x7e\x73\x1b\x3a\x46\x25\x2a\x84\x8c\x92\x7e\x05\xca\xba\x00\xf6\x35\x40\x68\x24\xe9\xc2\xf2\x53\xa8\x81\x0e\x1f\x8c\xe5\xff\x6b\xa3\xda\x32\xe3\xb4\x00\xd5\x5a\xa5\x2a\x2a\x56\x94\xc5\x49\x72\x73\x6b\xe7\xbb\xa4\x19\x64\x74\x50\xf5\x84\x84\x81\x31\xf2\x88\x50\x2d\x6c\x68\x7b\x80\xfb\xc3\x56\xa5\x81\x41\xdd\x55\x39\x3c\x82\x74\xc7\xa3\x4f\xe4\xe6\x79\xba\x24\x53\xcf\x51\x4e\x7e\x7c\x5c\xa9\x12\x36\x67\x8e\x3d\xcd\xd0\xe4\xf1\x7f\xb8\xed\x06\x03\x51\x57\xcc\x22\x40\x0f\x8d\xa3\xbe\x47\x6d\x42\x13\x8c\x94\x82\xae\x15\x47\x76\x94\x27\xee\x24\xb5\x5a\xe9\xdd\x78\xb9\xdc\x8f\xd8\xc5\x3e\x42\x75\x1b\xeb\xd2\x22\xbd\x81\x32\xd2\x6a\x4f\xe2\x8a\x6f\xf6\x56\x15\x11\xdf\x46\x6b\xec\xba\x63\xc8\x8a\x81\xbe\x1b\xca\x76\x94\x11\x26\xa9\x97\x0a\xb6\x04\x73\x36\xb4\xb3\x67\x87\x45\xdf\xd9\x75\xf9\x92\x2b\x9b\x99\x1d\x5d\x6b\x84\x50\x31\x2d\xf6\x3a\xcd\x57\x47\x79\xae\x9a\x75\x19\x61\x9b\x65\x4f\xb5\x53\x73\xad\xa1\x5b\x00\x94\x3a\xd7\xd2\xcd\xe8\x0f\x8b\x76\x83\x2b\x63\x5e\xb2\x63\xb3\xeb\x86\x56\x4e\x2c\x42\x15\x72\xd0\x67\xb1\x56\x31\xb4\x62\xdd\x06\x6a\x37\xb0\xda\x65\xaf\xe6\x18\xab\xb5\x8f\x01\x6f\xcb\xbe\x16\x6a\x3f\x25\xb9\x6b\x9b\xd6\xde\xfb\x99\xac\xb8\xa7\x35\x5a\x69\xd6\x97\x76\x9b\x7d\x8b\x39\xdf\x16\xfb\x33\xc7\x9c\x2f\xee\x36\x46\x9b\x19\x5f\xec\x0e\x92\xd5\xdf\xa0\x5f\xd7\x01\xea\x65\x3b\x47\xf8\x44\x6e\x24\x6a\xf5\x74\x9f\xe9\xee\xab\xf2\xdf\x74\x97\xfc\xb7\x53\xe0\xb1\x4e\xae\x8a\x64\x54\xca\x59\xe5\x6b\x54\x4e\x42\x31\x3b\xbf\x7c\x7c\xf3\xfa\xa7\x98\x67\x23\x33\x64\x78\x4b\x97\x93\xe0\x97\x3f\x7c\x5e\x9c\xff\xed\x71\x12\xe0\xb3\x24\x5d\x7c\x9a\xfc\x70\xab\xc3\x48\x66\xc1\x64\x16\x0c\x4c\xa6\xd5\x39\x0e\x32\x11\x0b\xd8\x17\x59\x32\x3b\xfa\x03\x3e\xc2\xb3\xd9\xe3\xff\xc0\xc1\x45\x9c\x5d\x04\x2a\xc9\xef\x6c\x66\xa5\x7d\x01\x0e\x34\x3f\x8e\x03\x57\x66\xa6\xde\x59\xc9\x15\x5b\x91\xb4\xf1\xf2\x9a\xcb\x0e\x7f\xc4\x33\xd7\x9d\xb6\xec\x6f\x3e\xc7\xcd\x52\x3d\x84\xb7\xcc\x8e\xea\x2d\x35\x13\x81\xc2\xff\x90\x93\xd0\xfb\x1f\x98\x59\xd4\xc3\x61\x05\x73\x59\x77\x16\x38\x11\xe1\x1c\x06\xd6\xde\xe5\xba\xf9\xb6\x23\x44\x55\x2b\xfc\x0f\x59\x23\x5e\xa6\x2c\xb9\x09\x9a\x2b\x96\x83\xc8\xbd\xd4\xd3\x6a\xd4\x2c\x87\xac\xd5\x54\x0b\x82\x7a\x8f\xf1\x18\xcf\xe6\x73\x1c\x38\xe1\x6c\x82\xed\xdd\x56\xe7\xbc\x6b\x12\x57\xcd\x49\xcc\xdb\x37\xb2\x1e\x1e\x6c\xc7\x46\xd6\xb7\xaf\xaa\x32\xc6\x35\xa5\x92\xbb\xbd\xb8\xea\xad\x74\x07\xb7\x9f\x87\x3c\xa0\x2f\xdc\xf3\xea\x36\xec\xec\xbb\xb2\x49\x77\x38\xcf\x96\x9a\xee\x06\xef\xaa\x2b\xb7\x7f\x57\x1d\x38\x9c\x9d\x8b\x51\x31\xf9\x76\xd4\x52\x07\xbb\xf3\x78\x48\xa7\xce\x2a\x40\xe1\xc0\xf8\x5c\x01\xfa\x18\x07\x7f\xf9\x0b\xe0\x1d\x89\xfe\x5e\x5e\xc5\x49\x30\x59\xc5\x49\x46\x8a\x1f\xf0\x25\x11\xf1\xe4\xf6\x12\x30\xb1\xf2\x92\xbc\x2b\xea\x1f\x5d\x9c\x65\x81\x2f\x6b\xf5\x97\xf8\x6c\x3f\xe4\x6b\x32\xfc\xf8\xf3\xdf\xaf\xfe\xfc\x7c\xb5\xef\x6b\xf2\x07\x1c\xd0\x55\x09\x63\x25\x5e\xb0\xf8\x5d\x9d\x00\xbe\xad\x35\x1c\xe3\xa0\xdf\x97\xb7\xf6\x3f\x54\x80\xbd\x39\x9e\x1d\x1d\xe1\x60\xa1\xd5\x57\x5b\x55\x14\x26\xc8\xc0\x61\xca\xe9\x39\x05\xe4\xfc\xff\x73\x8e\x16\xd7\x66\xe5\xbf\xad\x8d\x19\x55\x1b\xa5\x57\x84\x27\xf1\xcd\x8e\x05\xa8\xff\xdb\x73\x19\xb6\x6b\x35\xed\xa3\x71\x15\x2c\xd7\x31\x8f\x2f\x89\x20\x5c\x0e\x33\x2f\x0c\xb0\xff\x01\xb7\x44\x63\x2c\x23\x23\x98\x97\xbc\x0c\x5d\x08\xea\x2b\x33\x99\x4a\x7c\x02\xb3\xce\x9a\xd3\x6b\xf9\xe4\x96\x1a\x23\xe7\xa5\x65\x8b\x58\x01\xe2\x96\xe3\xe9\x07\xba\x07\x35\xae\x5c\x92\xfd\xa4\xe1\xe8\x79\xb5\xe4\x3f\xb6\x1e\xd7\x0e\x60\xb0\x62\xeb\x7e\xf5\xa1\x74\x7a\x74\x11\xfb\x3e\x2b\x39\x3c\x34\xf3\xf6\x3c\x0d\x66\x30\xdf\x12\xae\xbe\x78\x40\xdf\x3b\x5d\x19\x50\x56\xaa\x99\x71\xba\x98\x51\x16\xab\xf3\x2e\x0f\x54\x1e\xbb\xac\xb3\x03\x92\x25\x81\xd8\x01\x22\x3d\xdf\x7d\x37\x8a\x39\x81\x3b\x1a\x0f\x91\xd6\x78\x19\xb2\xe2\x3c\x07\x78\x65\xe4\xb3\xf8\x40\xcf\x12\x95\xdc\x63\x16\xfc\xef\x45\xce\xb3\x94\x4f\xc6\xff\x3b\x30\x43\x7f\xbf\xbb\xdf\xef\xee\xf7\xbb\x7b\x9f\x77\xb7\xe5\xbb\xea\x4c\x77\xbe\x03\xd8\xbb\x3c\xf1\x8f\x15\x5c\xcf\x1e\x1f\xe1\x3a\x94\x76\x7e\xfe\x01\x62\x2e\xd2\x64\x09\x66\x39\xd0\xae\xbc\x1e\xd9\x3a\x89\x6f\x26\x7d\x96\x32\x72\xdc\xf1\x96\x3e\x30\x2d\x68\xee\xfa\x7d\xd2\x84\x1e\x1b\xb3\xfb\xa7\x09\xff\x78\xf3\x69\xfc\xf8\xef\x7f\x4f\xef\x22\x61\x78\xe8\x3d\xd5\x1b\x50\xee\x69\x6f\xeb\x9e\xb6\x07\x27\xea\xb4\x81\x4e\x42\x05\x9b\xfb\xd0\x18\x7f\xd3\x88\xfb\x22\xab\xa5\x11\x6f\x46\x4f\x8b\x23\x3e\x6a\xc4\x82\xc4\x59\xc4\xb7\x04\x6e\xc3\xb9\x53\x5c\x0f\xd1\x86\x13\x13\x04\x67\x1d\x9f\x93\xff\x3e\x59\xad\x32\x22\xf0\xc2\xfd\xf8\x9b\xfe\xb8\x8a\x40\xa6\xfc\x53\x9a\x83\xf9\xd7\xf3\x84\x12\x26\xde\x2b\xff\x9f\x8b\x68\xa5\xdc\xd3\xd7\xd1\x0a\xfc\xd5\x97\xd1\x4a\xc7\xc9\xb8\x8c\x56\x26\x4e\xc6\x4d\x24\x5a\x7b\xb8\x8a\x6e\x4c\xb5\xf3\xe8\x46\xb7\x3d\x8b\xea\x1a\x0b\xd9\x02\x16\xbd\xd9\xe8\x29\x52\xc6\xcc\x3e\x9c\x46\xb7\x05\xbe\x8e\x98\x63\xac\x8e\x5f\xb6\x06\xf9\xb9\x46\x23\x73\x8a\xc7\x01\x27\x09\x38\x20\x40\x9c\x95\xc1\x20\x88\xcf\xb2\x34\xc9\x85\xfd\x6d\xac\xec\xaf\xdb\x6c\xe8\xaf\xa3\xeb\xbd\x87\x85\x20\x43\x76\xe4\x28\x8a\x5e\x6e\x36\xe5\xc8\xf2\xb7\x12\x90\x7f\x8e\xae\xdb\xf6\xad\x77\x71\x18\x7d\xd6\x5b\x2f\xff\x92\x7b\x7f\x3d\x4a\xe1\xc4\x94\xf1\xfe\x60\x10\x5e\x1c\x46\xd5\x6f\xda\xca\xf7\xb5\x6e\xe6\x2d\xfc\x98\xae\x51\x71\x1e\xc5\xd3\xe5\xe4\x1c\x62\x80\x9c\xea\x10\x90\xe7\x4a\x90\xfa\x21\xba\x18\x26\xb0\x02\x08\x48\x1f\x45\x11\x95\xb3\xcf\x45\x7a\x08\x9c\xbd\xfc\xa0\xa6\x7f\x12\xbd\x89\xc5\xc5\xe8\x92\xb2\xf0\x0c\x5f\x0c\xcf\xd1\xa1\xfa\x1d\x7f\x0e\xc7\xf8\x02\xe1\x67\xd5\xf2\x65\xb5\x7c\xb8\x3c\x3c\x47\x3d\x1a\x9d\x3f\x3d\x19\x0c\x9e\x3d\x3d\x99\x6a\x99\xc0\xe4\xfc\xe9\xb3\xc1\xe0\xe4\xe9\xb3\xa9\x92\x24\x4c\xb2\xcd\x46\xfd\x55\x98\x4c\xb7\x6a\x36\xaa\x7a\x39\x9d\x4f\x3b\xa6\xf3\xa6\xe3\x74\xde\x0c\x06\x9f\x9e\xbe\x31\xa3\x9f\x3f\xfd\x34\x18\xbc\x79\xfa\xc9\x4e\x4f\x4e\x47\xfd\x59\x04\xe5\x14\xa6\xa7\x3a\x28\xe7\xd9\x61\xf8\x61\xb8\x44\x93\x53\x1d\x1e\x74\xa1\x94\x15\x50\xe7\xc3\x30\x94\xa3\x3c\x7a\x3c\xf9\x00\x5b\xfd\x31\x5a\x37\x40\xa5\x0d\xbc\x2a\x17\x06\x39\x31\x27\x6e\xfe\x1c\x27\x39\x09\x03\x8b\xb9\xd0\x66\x13\x7e\x1c\x46\x0b\x84\x83\xf8\x2c\x55\xbd\xa6\xe8\x14\x02\x9d\x7e\x3c\xbc\xb2\xf9\x82\x83\x33\x92\xa4\xd7\x95\xd2\xe1\x65\x99\x12\xf8\xb9\xfc\x39\xbc\x7a\xb2\x18\xba\x17\xf2\x17\x75\x95\xdf\x47\xeb\xa7\x57\xbd\x34\x2a\xfb\xc8\x07\x83\x83\xe7\x83\xc1\xfb\xa9\x1e\x74\x52\x0e\x2e\x8b\xde\x0f\x06\xcf\xa7\xba\xf6\x24\xdf\x6c\xc2\xf2\x97\xae\x88\xb0\x99\x84\x3b\xb3\xe9\xe5\xe4\xf0\xca\x78\xe7\xde\x7a\x92\x28\xd0\x66\x02\x86\x54\xc7\x23\x3a\x2d\x0a\x37\x1d\x94\x9b\x9b\x96\x02\x1a\xf6\x60\xe7\xd8\x87\x9d\xb3\x48\xe5\x47\xb7\x37\x22\x55\xbd\xe4\xed\x98\xb3\x47\xdb\x71\x22\x9c\xbd\x0f\x3f\x0f\x1b\xa8\xaf\x97\x79\x26\x19\xe5\x00\x5b\x43\xaa\x2e\xee\xd3\xc4\xc2\x66\xfd\x9e\x94\xc0\xa7\x67\xbc\x68\x9f\xb1\x46\xcd\xab\xf6\x79\xab\x1a\xbd\x4c\x85\x27\x8d\x6e\x21\x2e\x51\xb8\x38\x5c\xa1\x47\x8f\x8b\xb6\xcb\xa9\x07\xbe\xd8\xf2\xc8\xac\xb7\x6c\x95\x77\xfd\x17\xea\xae\x3d\x5d\xab\x19\xf9\x96\x5f\x5e\xcd\x74\x30\x08\xbd\xbd\xe8\x2a\xc6\x38\xaf\x84\xd7\x78\x1a\x66\x0d\x20\x88\x62\x4c\x25\x26\x6c\x7f\xe9\xec\xbe\x88\x74\x3d\x39\xa4\xfa\xd5\x2b\xd0\xc4\xd3\x99\x86\x70\x9c\x7d\x49\xa0\x37\xc7\x76\x9f\x63\x8a\xd3\x52\xfb\x56\x8d\x1f\x33\x65\xda\x44\x54\x59\x16\x3a\x46\xa2\x13\xd1\x56\x52\x60\x32\xb2\x54\xd1\x7f\x69\xb1\xda\xb2\x0c\x8e\xee\x16\xeb\x61\xca\xe8\xb0\xca\x81\xd7\xf5\x34\x8b\x9a\xd6\x25\xed\x31\xfa\x30\x8b\x2a\xaf\xa5\xb0\x0f\x2b\xe6\xd1\xa3\x50\xc2\xd7\x46\xbd\x65\xe8\x11\x5c\xcb\x15\xfd\x0c\x31\x4d\x9d\x9a\xa8\x1e\xcc\x4c\xa2\xcd\x5e\x49\x9a\x91\x63\x1a\xd1\xaa\xb3\xef\x31\xa2\xab\xb0\x7d\x5e\x14\x61\x30\xbc\x03\x9a\x96\x2e\x94\xe3\x9d\x1d\x6e\x30\xe0\x2a\x5d\xb9\x18\xa5\x57\x84\xaf\x92\xf4\x7a\x58\xfe\xf9\x9b\xf3\xf7\x7f\xdb\x18\x8e\xb4\xe7\x9b\x64\x33\x5f\xde\x9d\x62\x71\x3e\x74\x30\x54\x4f\x06\xb6\x6e\x49\x1f\x48\x2d\xbb\x83\x9b\x20\xd8\x66\x77\x60\x53\x32\x61\x45\xe1\x49\x1e\xd8\x25\x58\xe8\x83\x2d\xbe\xe6\x8c\xdb\x80\x6a\x0a\xa9\xdb\xb4\x63\xae\x5d\x0c\x9d\x8e\x27\x14\x67\xa6\xec\x37\x9c\x97\x65\xd9\x74\x3c\xc9\x70\x62\xca\xde\x48\x1a\x73\x51\x16\x27\x53\x31\x01\x62\x6c\x01\xc9\xce\x6e\x17\x72\x6f\x06\x83\x30\xfe\xf7\x88\xe3\xfc\xdf\x23\xae\x1e\x93\x55\x94\x86\xa8\x17\xff\x7b\xb4\x92\x1f\x57\xe6\xb9\x54\x53\x99\xc4\x58\x8d\x3b\xc9\x8b\xc2\x5d\xc4\x6b\xca\x88\x7a\xcf\xa3\x54\x7d\xaf\x39\x24\x47\xd5\xa4\x11\x60\x53\x21\x51\x4d\x74\x5b\xf5\x29\x9e\x8c\x71\xd5\x53\xd8\x7c\xf8\xad\x5e\xe3\xb7\xb2\x46\x01\xb7\xf1\xd8\xf5\x9a\x36\xee\xd2\xc7\x88\x45\x44\x93\xab\xf0\x0c\x1e\x12\x97\x45\x80\x6c\xfb\xaa\x54\x4d\xdf\x16\x6b\xea\x84\xd6\x7c\x9e\x87\xd1\x21\x71\x49\x63\x5a\x73\x6c\x1e\x46\xcc\x5b\xe1\x37\x4f\x07\x1f\xd3\xb5\x2d\x2e\xdb\xf3\x4a\x79\x19\xd7\x54\xf2\x0c\x36\x0c\x89\xdc\xfc\xba\x5b\x72\x54\x0f\x6b\xeb\xf0\x8f\x38\x8d\xaa\x31\x53\x54\xd0\x5b\x65\xb5\x51\x4f\xba\xf5\xf4\x0f\x83\x81\x0d\x5e\x5e\x26\xdd\xfa\xc3\x7c\xea\xfe\x98\xcc\xe6\xda\x24\xe3\x56\x0b\x18\x27\x1c\x97\x0b\x9f\x8c\xb1\x5d\x85\x3c\x21\x65\x58\xc1\x2b\x47\xc1\xdd\xa3\xd0\x51\x46\x79\xf5\x38\x78\xe5\x38\x34\xb9\x53\x87\x99\x43\xee\xee\x78\x0d\x7e\x32\x4f\xe9\x6f\xcd\xa6\x72\xb3\x6b\x70\x95\xbb\x85\x6a\x05\x8b\x56\x9c\xce\x51\x2f\xb8\x80\x1c\xf8\x12\x9d\x2f\x4a\x1c\x2d\xaf\x98\x33\x81\xc8\x9d\xcd\x50\x60\xf1\x34\xa9\xfb\xcb\x8b\xc3\xa8\xfe\x6d\x22\x9e\x24\x75\x8f\x7c\xa7\x9a\x5d\x8e\x88\xc6\x2d\xf3\xf8\xcd\x99\xc7\xc7\x74\x1d\x39\x4b\x1b\x32\xcc\xcc\x2c\xec\xea\xa7\xcc\x76\x5f\xee\x08\x33\xb3\x28\x3d\xf4\x9d\x6a\x76\x16\x4c\xce\x82\xae\x42\x7e\x00\x31\xe5\x42\xb1\xd9\x30\xfb\x54\x69\xf0\x73\x39\x61\x8a\x53\x63\x06\x3f\x8b\xe7\x65\xb4\x9d\xca\xd7\xc2\x82\x35\x8e\xa3\xf1\x71\xfc\x24\x35\xa1\x94\xe3\xe1\x10\x85\x34\x4a\x65\x2d\x6b\x9e\xe3\xec\x38\xad\xde\xc7\x6a\x0d\xb9\x17\xd4\x39\x66\x4c\x46\xaf\x5f\xbd\x7d\xf9\xe1\xf4\xdd\xcb\xf7\xa7\xef\x9e\xfd\xf1\x65\x44\x46\x2f\x4e\xde\x9c\xbe\x78\xf9\xfa\xe3\xb3\xe6\x07\x59\xb7\x5a\xe3\xd5\x7f\xbf\x7c\x5d\x8d\xef\x3d\xee\x35\x2b\x88\x5e\xa3\x97\x23\x6d\x69\xf6\xb8\xd7\x18\x91\x69\xdb\xb0\x1f\x7b\x8d\xd9\x71\x6d\xd7\xc5\xf2\x24\x71\xe3\x56\x2b\x33\x69\x6a\xcc\xe7\xea\x46\xc4\x6a\x0f\xc2\x80\xae\x38\x64\x25\xeb\x91\x51\xc6\x17\x51\xf0\xbf\x02\x4c\x74\xce\x05\x1b\x95\xb1\xa4\xa0\x6c\xd9\x15\xcd\xe8\x19\x4d\xa8\xb8\x89\x0c\xb4\xd9\x32\x9d\x05\x62\xbc\xfe\x5c\x7e\x33\x89\x1d\x2a\x1f\xcf\x52\xbe\x24\x3c\x52\x31\x94\x6b\x86\xa7\x6e\x58\x11\x62\x3c\xd7\x20\xe1\xad\x00\x84\x01\x97\xd0\x34\xe9\x09\x95\x6a\x06\x61\x31\xba\xe6\x54\x90\x30\x78\x72\xb0\x4c\x17\xe2\x66\x4d\xfa\x17\xe2\x32\x79\xfa\x44\xff\x97\xc4\xcb\xa7\x4f\x1e\xa9\x7f\xe4\x38\x4f\x9f\x64\xeb\x98\x3d\xfd\xef\x27\x8f\xe0\xdf\x27\x8f\xd4\xc7\x47\x50\x3d\x90\xfd\x99\x28\x85\x92\x09\x83\x99\xad\x28\xcf\x0c\x9d\x07\xf3\xd3\x92\x11\xfd\x60\x54\x97\xe1\x06\x38\x21\x36\xb9\x02\x6d\xd2\x22\x8b\x84\xca\xff\xad\xcf\xd2\x98\x2f\x5d\x99\xe4\x22\x5d\xdf\x1c\x6a\x17\x50\x8f\xb7\x6f\xb5\x9d\x57\xaa\xe9\xf6\xb0\x77\xc2\xe3\xef\x51\xcf\xbf\x30\xea\xf9\x7d\x39\x3e\xcf\x82\x2c\x5f\x2c\x88\xd2\x5c\x40\x16\xf3\x39\xa6\x77\x88\xc9\x6d\x40\xa9\xe2\x95\xac\x40\x44\xb0\x16\x17\x5e\x0b\x60\x1f\xc9\x67\xa1\x1c\x75\xed\x27\x30\xff\x06\x25\xa2\xa9\x03\xce\x03\x8d\x5a\xf0\xd5\xad\xf7\x0c\xf6\xba\x5e\xcf\xd8\xa9\xe9\x79\x82\xe7\xb2\xf6\x14\xae\xfb\xd6\x1a\x47\x5f\xe3\x1a\xeb\xb4\xb0\xab\x74\xf2\x76\xc8\xd7\x5d\x3e\x50\xca\xa4\x59\x85\xc4\x38\x18\xe3\x53\x85\x10\x9f\x9b\x19\xb4\x58\x1e\x57\xb6\x00\xdb\xcc\x4f\xf5\x1e\xa7\xc1\xff\x2a\x7d\x5b\x1d\x6b\xd1\x57\x4b\x1d\xc9\x8d\x54\xa3\xd3\x4b\x08\xd3\x14\x85\x9d\xc1\x7f\x7e\x08\x05\xbe\x95\xdb\x3a\xf1\x24\xff\x26\x53\xa2\xd3\xf9\x40\x68\x07\x9b\x25\x44\x7b\x8e\xf9\x5d\x2f\x30\x2d\xe9\xb8\x1e\x6f\x06\x98\xe0\xe8\x96\x8c\xe4\xbf\x35\x67\xbf\x86\x7b\x06\x89\xc4\x8c\xcf\x2b\x57\xa5\xe8\x05\x19\xdc\x30\x77\x8e\x02\xec\xbd\xd5\xa4\x6c\x28\xaa\x19\x99\xdb\xb8\xd4\x21\x45\x08\x4d\x48\x55\x66\x00\x5f\x41\xd3\xe2\xac\xcc\x7b\x32\xd5\x33\xb1\x01\x65\xf5\x6f\x48\x22\xc2\xd3\x9b\x6a\xcc\x89\xfa\x49\x87\x26\x5f\x62\x6d\x0f\x43\x82\x70\x3d\x85\x8b\xed\x3a\xc0\x3a\xaf\xe3\x97\xba\xf1\x36\xd7\xa7\x83\x0f\xff\x0a\xb9\x65\xf6\x8f\x3d\xbc\xad\xdb\x0e\x0e\xc0\x1d\x36\xb3\x6a\xbd\x4c\x77\xbc\x61\x9a\x83\x7e\x44\x33\xe7\x7a\x67\xf9\x5a\xbe\x5f\x5f\x43\xaa\x40\x46\x34\xb3\x9b\xf0\xc1\x8c\x5b\xa5\xcc\x4c\x2c\x89\xe6\x15\x9c\x36\x3f\x8d\x68\x66\xbb\x69\x0a\x23\x0e\x8e\x8a\x5e\xcb\x90\x42\x13\x76\x5a\x11\x0a\xfb\x32\x52\xdb\x13\x8a\xed\x59\xac\xf7\x7c\xde\x1f\x54\x55\xfb\xec\xd7\x9b\xa3\xab\x93\xdf\x9e\xdd\x49\x55\x7b\x37\xa3\xc8\xfd\x96\xdf\xaa\xfc\x96\xdd\x48\x9a\xcf\x6d\x27\x7f\x1f\xaa\x67\xb2\x8d\xae\x82\x26\xde\x41\xdd\xc6\x0f\x95\x2f\xbd\xed\x69\x77\xb2\x6b\x34\x5e\xf9\xec\x22\xcd\x93\xe5\x47\x12\xf3\x17\xe9\x35\x3b\x81\x7c\xb4\xf2\x91\x93\xf3\x6d\x49\xe1\xd0\x94\xaa\x79\x73\x48\x24\x69\xfa\x29\x5f\x87\x41\xa6\x12\xcc\x4f\x0e\x0d\x9d\x1b\xa0\x91\xec\xfd\x4e\xa1\xfb\xed\x48\x1a\xcb\xfa\xa6\x6f\xa3\xda\x42\x14\x23\xf9\xfd\x17\x12\x03\x52\xab\x7c\x98\xd4\x1f\x2e\x68\x42\xb3\x9f\xe3\x4c\x9c\xa5\xa9\x08\x51\x83\x13\xaa\x86\x84\xfd\x41\xc2\xe0\x8c\xc5\x97\x24\xaa\x81\xc0\xa1\xf2\x2e\x9b\xff\x80\xb0\xb8\x43\x6b\xc2\x96\xb2\x2d\x78\x76\x0e\x06\xa2\x24\x98\x59\x44\x46\x8e\x19\xda\x31\x1b\x0c\xd8\x41\x14\x89\x63\x64\x07\x91\x1d\x54\x78\x08\x86\x70\xad\x59\xaf\xbd\x32\x71\xbc\xf9\x1a\x85\x42\xf9\x30\x96\x3b\xd4\x44\x69\x4e\x92\xaf\x83\x7a\x92\xaf\xad\xd7\x4c\x03\x89\xbe\x27\x92\xc2\x7b\x78\x74\xaf\x73\x4a\xa8\x91\xed\x65\xd9\x36\xcb\x9d\x37\xfb\x41\xb1\xe9\xff\xff\xdd\xbb\xf7\xe3\x93\xbf\x3d\xf2\x62\x53\xaf\x09\x74\xd3\xca\xd1\xb9\xd6\x5f\x6e\xde\xe8\x5a\x52\x49\x68\x36\x66\x4f\x4c\x59\x0a\xfa\xef\x84\xb6\xa8\xb2\x19\xbf\x2a\xd6\x50\x47\xca\x04\x0b\xea\x97\x5e\x3c\x80\xf3\xbb\x0e\x03\x97\x67\xeb\x20\x1d\xcc\xd0\xf6\x7a\x6e\x3a\x81\xc6\xd6\x97\x46\x51\xc3\x46\x83\xf0\xe8\x70\xcd\xe9\x55\x2c\xc8\x23\x45\x7e\x56\x8b\xff\x21\xca\x15\xd7\xd9\x51\xfb\x1c\x86\x0c\x1f\xa1\xd9\xd8\xb2\xe4\x95\x0c\x2d\x34\x93\x30\x0c\x39\x5a\x38\x1a\x0c\x42\x1e\xf1\x91\x5a\x05\xc2\x44\xfe\xda\x6c\x82\x00\x15\x85\x26\xaa\x9a\x2f\x4a\xf5\x81\xf4\x49\x11\x8c\x6c\xb0\xb7\x83\xef\x47\xde\x1e\x15\x36\x9d\xcd\x31\x97\x17\x90\x46\x07\x47\x38\x35\x84\x9e\xe0\x37\x16\xe3\xc6\x38\x8b\xc8\xac\xd6\xff\x3c\x44\xc7\x07\x21\x8f\xc2\x38\xca\x00\xb1\x86\x08\x8d\x96\x29\x23\x08\xf2\xa9\x42\xd8\xcb\x58\x45\xf9\x46\xf8\x40\x6c\x36\x4c\x0b\x33\x40\x8d\x72\x2c\x87\x44\xc7\xda\xb5\x3e\x47\xb7\x54\x4e\x21\x8d\x72\xeb\x4e\x2f\x27\x70\xc0\x07\x83\x6c\xa4\xe6\x5e\xfe\x15\x96\x3e\xf7\x74\x15\x52\xa4\x84\x0e\x69\x51\x58\xb9\x08\x2c\xaf\xd7\x55\x18\x01\x84\x7a\xbe\x10\x39\x27\xad\x12\x89\x22\xec\x04\xb4\xe6\xdf\x45\x7c\x49\x12\x08\x44\xed\x27\x91\xf6\x82\xf5\xfb\xa6\x94\xcc\xe4\x5c\x9a\x5e\xbe\x8e\xf6\x7b\x38\xc6\xa2\x0c\xa4\x56\x81\x69\x53\xc7\x25\xbf\x7d\xf4\x39\xdb\x73\xbb\xd6\x54\xc4\xdf\xf0\x86\x99\xe9\x35\xb7\xcc\x96\x6c\xdd\x34\x53\xeb\x9e\xb7\x2d\x89\xb3\x8c\xae\x6e\xbe\xcd\x4d\xd3\x93\x6b\x6c\x99\xf9\xbe\x6d\xc3\x74\x9d\xfb\xdd\xae\x65\x9c\x5d\x10\xfe\xad\x02\x99\x9d\x5d\x7d\xc3\xca\x82\x2d\x3b\x66\x2b\xdd\xef\x96\x5d\x88\xcb\xe4\x30\x8b\x57\xdf\xe6\x96\x99\x14\x68\xf5\x1d\xb3\xdf\xb7\x6c\x98\xa9\x73\xcf\xfb\x95\x5f\xc6\xac\x06\x61\xf7\x4b\x9f\x98\x11\x22\xfa\x9d\x6c\xf8\x5d\x90\x0d\x98\x45\x8f\x4e\x87\x9b\xc3\xe1\xa3\x73\xcc\xa3\xa0\x1f\xd4\x22\xad\xea\xf0\x12\x21\xd1\x94\x24\x5d\x85\x6d\x54\x24\x95\x7b\x44\x23\x6a\xa9\x48\x95\x75\x8c\x9a\x90\x69\x81\x0e\x27\x41\x47\x22\x7d\x9d\x5e\x1b\x0b\xea\x11\x27\xe0\x96\x11\x32\xcc\x5d\x1d\xf1\x45\xcc\x9f\x89\x70\x8c\xaa\xf6\xd6\xc3\x74\x94\x25\x74\x41\xc2\x23\x54\x6c\xbf\x1a\x74\xaf\xab\x91\xc8\x09\x2d\xe2\xac\x2b\x2a\x51\x66\x45\x4e\xab\xfb\xc1\x3a\xf7\x11\x61\xd7\x4e\xaa\xaa\x6a\x72\x0b\xaa\xb1\x68\x4b\x24\xb4\x03\xdb\xf0\xbd\xb6\x14\x34\x38\xdd\xdf\x33\xb5\xa3\x65\xa3\x6f\x67\x43\xcd\x9c\xea\xfb\x69\xbf\x7f\x9d\xed\xe4\xf4\x72\xbf\xad\x84\x06\xdf\xd0\x36\x72\x7a\xd9\xd8\x42\xf9\xed\x2b\x6d\x5f\xce\x16\xb1\x78\xc0\xb7\xcf\x8c\xa0\xed\x3a\xbe\xbf\x7d\xdf\xfa\xdb\x57\x33\x8d\xd0\x11\xa1\x42\x82\x7f\x84\xf4\x9b\xb3\xf1\x1c\xd3\x88\xcd\x8e\xe6\x76\x13\xc1\x56\xf3\xe8\x0f\xe3\x09\xc5\x71\xc4\x66\x8f\xe7\x38\x2b\x4b\xe2\xcd\x26\xc6\x79\x94\x4d\xd3\xc3\x1f\x27\xe9\xde\x32\x17\x3e\x18\x70\x63\xaa\x97\x4f\xb3\x29\x1f\x65\xf9\x99\x2a\x0c\xc7\x38\x47\xc3\x60\x34\x1a\x05\x93\xfa\xe7\x09\xdf\xf1\x0e\xee\x47\x22\xe6\x6c\x49\x78\xb6\x48\xf9\xb7\x49\x53\x97\xd3\xab\x53\xd5\x4e\xc9\x16\xba\xba\xac\x75\xbf\x94\x75\x2e\x29\x94\xbd\xc9\x07\xa7\xd5\xb7\x83\xa6\xed\xa4\xea\xb8\xba\x2c\xf8\x2a\x08\xfb\xfa\x0e\x1e\x96\x26\xde\xa6\x46\x2b\x22\x22\xb8\x8a\x61\x05\x9a\x8a\x89\x63\x24\x24\x10\xd2\xf4\xe4\x18\x8d\x2e\xe3\x75\x15\x5a\xae\x25\x71\xba\xcc\x17\x24\xac\x42\xb1\x0d\x7f\x67\x6c\x42\x50\x81\x67\xf3\x3b\x59\x05\x5d\x83\xa7\xc4\xb6\x5d\x13\x9d\x76\xad\x41\x8f\x7e\x35\x09\xb4\xd1\xc0\x35\xec\x8d\xc7\x5e\x7b\xe3\xb1\x6b\x6f\x3c\x9e\x4f\x82\x00\x3c\x34\xb4\xb1\x89\xd5\x48\x11\xe4\x45\xf6\x2f\x3f\xaf\xc9\x42\x90\x65\x3f\xee\xab\x16\xb8\x7f\x9e\x8a\x7e\xdc\x0f\x86\xa1\x45\xc4\x64\xea\xe8\xb8\x26\xf0\x5a\x96\xa9\x8b\xaa\xcc\x87\x91\x6e\x7b\x4c\x72\xd4\xeb\x38\x18\x68\x05\x4e\xbd\xc0\x3e\x9b\x53\x8f\x2c\xde\x2c\xa2\x98\x78\x0a\xc9\x60\xb0\x65\x38\x00\x2a\xf5\x7c\xa5\x3c\x8a\x22\xfb\xfd\xc0\xfc\x5d\x9a\xc1\x4d\xcd\xdc\x26\x76\xc0\xee\xb0\xe2\x23\xcf\xbf\x83\x4a\x3b\xa8\x58\x3e\xf5\x51\x38\x9d\xfc\xbf\xcd\x5f\xb2\xcd\xe1\xe6\x2f\x8f\xd0\x5f\x3e\x3c\x3a\xc7\xbe\x53\xae\xf2\xad\xc5\xbf\x34\xa8\xd5\x58\x97\xef\x60\x56\x05\x33\x4e\x2f\xff\xa5\x51\x91\x97\x7a\xfa\x0e\x24\x35\x5c\xe4\x62\x93\x7f\x7e\x58\x49\x2f\xd7\x29\xd8\xa8\x7a\x08\xe1\x24\xcd\x72\x4e\xac\x55\xf1\x43\xc3\x4c\xc5\xb8\x50\x91\x68\xa7\xa7\x49\x1a\x2f\x09\xc7\x2c\xba\x7d\xf6\xfc\xe3\xab\x93\xb7\x2a\xad\x54\x4f\x4f\xff\x42\x5c\x26\x67\x31\xcf\x1e\x7d\x22\x37\xd7\x29\x5f\x66\xf5\x49\x53\xd6\x17\x23\x65\xd5\xc9\x6f\xa6\x2c\x92\x3f\x20\xd3\x48\xd8\xb5\x07\x64\xec\x1b\x78\x9a\x0b\xb8\x53\x7b\x8d\x29\x79\xfa\xe6\xa8\x9d\xfb\x42\x26\xb0\x31\x1b\xa9\xf5\x3b\xb4\x3f\xdf\xef\x34\x15\x5b\x73\x99\x27\x82\x1e\xc6\x92\x34\xdf\xcf\x8a\xa2\x4a\xff\x7f\x65\x0f\x83\x87\xf0\x8f\xd5\xe4\xbf\x31\x76\xd2\x36\x7d\x0d\x1b\x70\x86\x79\xb4\xcb\x8d\xc3\x7a\xd4\x86\x2c\x02\xe7\xc9\x90\xdd\xcd\x23\xa2\x8b\x44\x05\xdc\x69\xb8\x65\xa7\xaa\x02\x90\xd2\xe8\x1a\x8e\x38\x0b\x30\x05\x7e\xab\x75\x17\xca\x55\x4c\xd5\x87\x67\x21\x41\x13\x52\xa0\xa6\x81\xa1\xb1\x21\x42\x05\x86\x9d\xce\x5e\xd0\xe5\x73\xc8\x8e\xad\xcd\x22\x53\x93\x65\x5c\x0f\x3e\x9a\xcd\x2b\x61\xe5\x8d\x8d\xb5\xde\x6a\x18\xf8\x4f\xe4\xc6\x64\x37\x94\x3b\x5d\x1f\x53\xaf\x02\x59\x6f\x8d\x5a\x91\x6c\x1e\xa0\x9e\x59\xcb\xcb\xcb\xb5\xb8\x09\xb9\x59\x4b\x0d\x5e\xaa\xcb\x90\xac\xe4\xa4\x4b\xbd\x9a\x9d\xfd\x57\xf2\xe9\x61\x11\xfd\x12\x48\xda\xe9\x5b\x83\x24\xbf\xab\xd7\xd8\x7e\x90\x26\x32\x96\xef\x24\xed\x41\x82\x55\x8c\xe7\x5c\xfd\xde\x20\x58\xb4\x9f\x72\x0b\x00\xa8\x53\xde\x6c\x66\x73\xf0\x24\x93\x00\xcd\x54\xf6\xe5\x15\x4d\x84\x9b\xd6\xde\x82\xf7\xe1\x51\x14\x45\x74\x04\x79\x9f\x4e\x56\x90\x20\xa8\x97\x7a\x93\x83\x36\xee\x0f\x08\x78\x20\xb3\x3a\xc2\xa2\x6b\x13\x06\xd9\x7d\x65\x13\xef\x45\x84\x15\x60\x0a\xfe\x19\x5a\x96\xd6\x9c\x73\x70\x7a\xaa\x10\xb3\xf5\x82\xd1\xbb\x91\xd3\xe5\xcf\x29\x57\xa9\x33\xee\x80\xf3\x19\x21\x4b\x59\x1c\xdf\x64\x22\x5e\x7c\xfa\xfa\xd6\x73\x5f\x48\x04\x8a\xde\x76\xc4\x0d\x20\xda\x48\x3c\xa5\x56\x0d\x90\x1b\x98\xa5\xab\x5f\xe9\x5a\xf8\xf2\x51\x35\xe1\x52\x75\x11\x20\xcc\x1a\x45\xa6\x47\x2f\xd0\xea\x01\x4a\xb2\x52\x79\xed\xa2\x6a\x1a\xb1\xb6\x17\x47\x65\xce\x0f\x59\xf4\xe3\x4e\x5c\x53\x3e\x3c\x22\xaa\x3a\x01\xfe\x2e\xd4\x14\x7c\xb3\x51\xca\x6b\xa3\xa1\xd8\x6c\xf6\xd0\x55\x08\xfc\xa0\xaf\x2c\x3c\xb3\xb3\xf1\x5c\xe2\x99\xd9\xd1\x1c\xc7\x11\x9f\x3d\xae\xd9\x78\x9a\x17\x07\xb2\x9d\xc7\x51\x8a\x53\x70\x25\x6e\x22\x01\x0d\x49\x98\x36\x8b\x2c\x24\xe1\xb8\x59\x68\x40\x35\xdd\xfa\x1c\x77\x45\xe3\x3b\x70\x78\x29\x3c\x71\x3d\xd4\x1a\x91\xfb\x3c\x18\xc7\xfc\xab\x1c\x8f\xbd\xc2\xf9\x3b\x91\xa6\xdf\x3d\x6e\xbf\xb6\xc7\xad\xdd\x54\x1e\x96\x7b\xd5\xc4\xdc\x58\xb8\x5b\x27\x71\xe0\xf8\x98\x3f\x21\xc7\x7c\x38\x44\x62\xc6\xe7\x0e\x36\xe7\x73\xed\x64\x1f\x8a\x48\xc8\x37\x1c\xb5\x50\xa4\x65\xde\x54\x82\x03\x89\xa9\xe5\x9b\xed\x0d\x69\xd3\x74\x7c\xb4\xb1\x0e\xea\x6f\x0e\xe6\xc6\x87\x53\x34\x86\xad\x23\x7d\x8e\x09\xaa\xdf\xef\x52\x9f\x31\x12\xa9\xfa\x81\x26\x33\x31\xb7\x53\x0b\x49\x24\x97\xa4\xc6\xd7\x13\x23\xda\x19\x73\x8e\xee\xc4\xba\xa8\x5b\x14\x71\x3f\x6f\x4c\x6b\x8a\x37\xbe\xc3\xaf\x70\xcb\x6d\x95\xcb\xd9\x9f\xfd\xfb\xc2\xd7\x7c\x56\xc3\xa1\xcf\x42\xa2\x99\x99\x3b\xee\x96\x5c\x45\x45\xbd\x53\x51\x59\xde\xc5\x6f\xb0\x7d\xcb\x16\x17\x39\xfb\x74\xa7\x98\xa4\x9d\x31\x54\xf9\xa6\xff\xcb\xbd\xe8\x72\x8d\x0f\xf8\xa2\xdf\x05\xba\xe0\xc0\x23\xda\x06\x5d\x26\x72\x25\xe6\xea\xcf\x05\xa1\x49\xc5\xb4\xcf\x9c\x1a\x8d\xd6\x31\xcf\xc8\x2b\x06\x36\x7e\x63\xc9\xbd\xb0\x90\xe2\x31\xc4\x63\x29\xcd\xfd\x4a\x84\x03\x04\x85\xf3\xe6\xe3\x40\x1d\x46\x80\x10\x3e\x88\x37\x9b\xf4\xc9\x91\x06\x95\xd9\xdc\xc6\x53\xcb\xa2\x31\xce\xa3\xc3\x23\x9c\x38\xe8\x99\x87\xf1\xa3\x14\xa1\xe3\xec\x49\x7c\x8c\x92\xd9\x70\x98\xcf\x23\xa1\xaf\x5c\x86\xb3\x61\x94\x5a\xac\x97\x54\xd2\xb5\x77\x25\xb4\xf3\xcb\x40\xb3\x39\x75\x3e\x51\x21\x0a\x2f\x4f\x57\x52\xc7\x34\x6c\xd0\xdd\xf9\x65\x80\x30\x51\x1c\x6a\x8b\x58\x06\x2c\x48\x1e\xd7\x2c\x48\xb6\x0a\x43\xbc\xd4\x17\x4c\x9e\x7f\x1d\xea\x6a\x6b\xf6\xaa\x6d\x48\x27\xbd\x5c\xc7\x8b\xae\x2e\x75\xdf\xd1\xce\x3f\x01\xda\xd9\xfd\x94\xed\x94\x5b\x3a\xd6\xc4\x5e\x9a\x86\xa1\x69\xd8\x72\x4f\xd8\x96\xfb\x60\x64\x66\xcf\xc2\x19\x9b\x97\xb7\xa3\x86\x15\x8c\x60\xc6\xf4\x68\x86\x7e\xc7\x49\x46\x98\xe8\x2e\x79\xda\xe7\x52\xed\xf7\x92\xab\x4e\xee\x24\xfd\xfe\xfa\xbc\x06\xff\x0a\x14\xff\x3e\x6c\x54\x15\x5b\xdc\x79\x76\x1d\x2f\x90\xc3\x94\x7c\x7d\x5e\xab\x69\xa8\xcf\x23\xb9\x2f\x8e\x78\xc0\xda\xca\xdb\x27\xad\xca\xa1\x88\x30\xbd\x1b\x6d\xab\x81\xb4\x8d\xfe\x48\x5b\x2c\xf2\xef\xfe\xd0\xa8\x08\x90\x77\x64\xe0\xdb\xe4\x8c\xed\x3d\x28\xbd\x34\x65\x8b\x24\x5f\x92\x6c\x97\x95\x9d\x0b\x06\xe5\xcb\x56\xb5\x92\x33\xc8\x49\x00\xfd\x50\xa7\xc4\x74\xb4\x91\x03\x0f\xb1\x55\x57\x87\x0c\x06\x25\x0a\x24\x25\xf1\x35\x25\x1e\x5b\x35\xe6\x6a\x6f\x79\xc8\xb0\x40\x05\x3e\x18\xa3\x89\x9a\xe8\x1d\x8f\x5e\x9d\x45\xfb\xd9\x57\xd9\xc0\xbb\x9f\xfa\x92\x2c\xbe\x93\x16\xbf\x53\xd2\xa2\xcd\xb4\xba\x41\x18\x3b\x1c\x86\x12\x59\x6a\x37\x22\x8e\xb9\xde\x6e\x89\xd0\xde\xe6\xb2\x4e\x48\x11\x3e\xa0\xd9\xdb\xf8\x6d\x48\x11\xaa\x87\x04\xe6\x60\x50\x7d\x84\x30\x3d\xe4\x77\x23\x6d\x16\x10\x99\xda\x1b\xa8\xcd\x6f\x22\xbc\xaf\xd2\xdb\x42\x36\x4f\xd7\xdf\x41\xfb\x77\x0a\xda\xff\x40\xaa\x79\x7f\xb6\x92\x6a\x12\x80\xa3\x02\xc3\xd7\xe7\xbb\xe8\x5b\x2f\xbf\x7c\x9f\x04\xae\xa2\xc0\x0f\xcf\xfc\x8e\xe1\xad\x6f\x71\x76\x48\xfe\x27\x8f\x93\xee\xa2\xf7\xef\xb7\xe5\x9f\xe7\xb6\xf0\xfd\x6e\x8b\x90\x84\xb0\x72\xe3\x11\xea\xb6\x08\xe5\xc6\x23\x4a\x4d\x59\x8d\xd6\x4a\x2d\x61\x65\xbe\xc0\x43\x94\x46\x14\x53\xfb\x10\xb5\xdc\xb3\xb4\x59\x72\x76\xf3\x2e\x16\x17\x8e\x04\xa7\x2c\x82\xb5\x3a\x32\x1f\xaf\x6c\x47\xb5\x6f\xbf\xa5\xa6\x7f\xd3\xdb\x4e\xd9\x96\x6e\xe0\x53\x19\xab\x2e\x50\xf3\x29\x26\x08\x75\xb4\x57\x29\xb3\xc2\xf0\x9e\x39\x2b\xcb\x54\x4b\x8e\xde\x63\x3a\xc8\xa6\x1e\xd3\x05\xe6\xca\xdc\x30\x41\xc8\xb1\x45\xe4\x0e\x65\xdd\x70\xf0\x31\x7a\x12\xcc\xdc\x26\x0d\xd2\xda\xf4\x5b\x68\x95\xc5\x36\xe9\xc0\xe8\xff\x90\x78\x71\x31\x2a\xb5\x3f\x08\x73\x63\xd2\xb3\x7d\x47\xc0\x9e\xe2\x41\x44\x09\x7b\x91\x19\x6a\x35\xdf\x09\x8d\x7f\x69\xd4\xf9\x95\x08\x8d\x46\x6c\x55\x9d\x75\x64\xa7\x10\x5b\xd7\xdb\x72\x4b\x6c\x4f\x3b\x91\x9c\xad\x7a\x4f\xc8\x4c\x6c\xc5\x0f\x01\x26\xdd\xd0\x81\x78\x30\x74\xb0\x27\xe1\xc5\x96\x35\xb2\xeb\x3b\x3e\xf8\x8e\x0f\xba\xe0\x03\x8f\x47\x34\x6b\x18\x1d\x7d\x4b\x74\x51\x67\x7a\xa8\x57\xc7\x12\xf7\x6a\xa2\x5b\x57\x49\xb6\xd1\x15\x2d\x64\x5c\x8b\x45\xea\x56\x2a\xae\x66\xc3\x20\xd0\x48\xde\xfb\x9f\xc0\xf8\x03\x15\x7b\x59\xd7\x3e\x1c\x26\x4a\x24\xf4\xdf\x2d\x87\xea\x77\x4c\xf4\x8f\xc7\x44\x5e\xd5\x4c\xc3\x6e\xdf\x27\x91\xf6\x78\x4f\x4b\x2a\x5d\x39\x50\x4f\xc8\x5d\x70\x9c\x06\xa6\x8e\xb2\xbb\x5d\xf8\x8e\xb7\xa9\x27\x1b\xd8\x8d\x23\xcc\x1e\x58\xae\xb2\x17\xb5\x7f\xce\xd3\x7c\xfd\xfd\x7d\xff\xfd\xde\xaa\xfb\x7a\xdf\xbb\xda\xb9\x78\x1c\x1e\x1a\x52\x02\x3d\x27\xa5\x48\x0b\x1d\x7f\xc4\x86\xfb\x81\xbd\x3f\xae\x7a\x4a\x54\x1d\x64\x58\xc9\x40\x97\x52\x96\xcd\x26\x34\x75\x9e\x85\x08\xb3\x59\x69\x6f\xc9\xd1\x3c\x02\x21\x26\x9c\x3e\xd8\xdd\xb0\x02\xef\x79\xa3\xef\x8b\xa3\x69\x90\x2e\x5f\x89\x40\x21\x9d\x28\x92\xae\x94\x06\x43\xdd\x28\x17\xe3\x68\xf2\x0f\x17\x62\x5c\xc4\xd9\x21\x83\x6c\x34\x9d\xa4\xc5\xe6\x5f\xd5\xe4\x2b\xe8\x88\xfd\x72\x69\x95\xa9\xcf\x8f\x70\xa9\xd2\xcc\x2a\x01\x54\xc3\x58\xf5\xb1\xd7\x58\xf5\xf1\x7c\x30\x70\x7f\x61\xad\x66\x95\xcb\x44\xb2\x3f\x4c\xcd\xe5\x3c\x08\xc7\x98\x97\xe2\xb1\x14\x13\x4c\x1d\xe1\xa6\x11\xca\xa5\x77\x42\x38\x17\x71\xf6\x96\x7c\x16\x5b\x95\xbf\xec\x3e\x94\xbf\xf2\xd8\x4d\xee\xfa\x3d\x8f\xbe\x6c\xf6\x4f\x7f\xfc\x66\xa9\x5f\x19\x04\xde\xe9\x61\x1f\x1e\x0c\x28\xfb\x6e\x03\xf0\x7b\xa5\x67\xfe\xa1\x36\x00\xc3\x3b\xd9\x00\x50\xf6\xd5\x6c\x00\x28\x13\x84\x67\x64\xd1\xf5\x61\xfb\x52\xaf\xa4\xfb\xa2\x2e\x7d\xca\x17\x2b\x1f\xb5\x8b\xba\xb3\x68\x80\xb2\xab\xf4\xd3\x83\x5a\x3f\xb6\xdd\xf8\xdf\x8d\xb3\xd4\xc3\xb1\x13\x6a\xf3\xdb\x1c\x7c\x0c\x4f\xf0\xfe\xc3\x9f\xdf\x8d\x62\x37\x31\x29\xaf\x70\xcf\x5e\x0b\x44\x1c\x47\xe9\x68\x9d\xae\xc3\x16\x4f\xa6\x18\x4d\x9b\x6e\xb9\xdb\x43\x04\x08\x7e\xf3\x0a\x26\x1c\x42\xb2\x59\xc7\x2b\x4b\xd6\x2d\x3c\xa9\xc5\xeb\xed\x62\xd5\xae\x70\x75\x81\xf5\x98\x75\x77\x75\x62\xfa\x5b\x4a\xbf\x0b\xb8\x7e\xaf\x4f\xd7\x37\xab\x7a\x33\xc7\xcf\xcb\x17\x32\xc0\x41\xab\x65\x02\x30\xcf\x12\x12\xbf\x25\x03\xa0\xcb\xf8\xbb\x98\xea\xfb\xdd\xf8\xd7\x12\xe2\x7c\x45\x2d\x93\x7c\x34\x7f\xba\x71\x74\xd4\xdf\x84\xca\xe7\x32\xfe\x6e\xf1\xfa\xfd\xc6\x7f\xc3\x86\x28\xbb\xee\xfc\xdd\xcc\x50\xbe\xf2\xbd\xff\xd6\x6e\xfd\x1e\x82\x5b\x25\x4f\x3b\x27\xe2\x10\x62\x23\xdd\x83\xf0\x6e\x1f\xaf\x1d\x9b\x34\xef\xae\x02\xb9\x7a\xf4\x03\x86\x89\x04\xb8\xb4\xa2\xfd\xb0\xde\x3a\x87\x47\x3d\xba\x0a\x0f\xea\x52\x0f\x83\xc4\x68\x14\x45\xe9\x94\x58\x8f\x46\x86\x46\x8a\xf1\x7c\x26\x42\x3a\x3c\xba\xd3\x8d\x94\x47\xb1\x35\x74\x03\xbb\x8f\xd0\x0d\x6a\x9a\x87\xf1\x77\xa7\xe0\xdf\x2b\xb2\xaf\x9b\xd0\x7b\x42\x00\xd8\xed\xaf\xc7\x0e\x70\x8c\x4e\x2c\xbc\xde\x2d\x4a\xa2\x69\xbe\xb7\x56\xdf\x1f\x0a\xc0\xa0\x14\x2f\x6f\xe3\x33\x3d\x06\x44\xab\x5a\x35\x5f\x0d\xad\x3f\xbd\xbf\x30\x00\x7a\x7a\x1e\xa3\xa8\xfa\xbb\xf6\xd5\x02\x01\xec\x25\xcb\x54\xd1\xa0\xe2\xe4\xfb\xa5\xff\x27\xb8\xf4\x6d\x6e\xfa\x5e\x13\x7e\xe6\x0d\x15\x5c\xdc\xe9\xca\x6b\x20\xfa\x5a\x02\xf8\x35\x5d\xfb\x62\x08\x77\x51\x30\xd2\x35\xe9\x46\x9f\x54\x83\xe6\xde\x7f\xb2\x0e\xef\x36\x89\x91\x9c\x60\xcf\xbe\xe7\x83\x41\xc8\x67\xf6\xd7\x5c\x42\x6b\xef\x21\x24\x9e\x6a\x5b\xf6\xf3\xe9\x5a\xf3\xf4\x92\x66\x64\x0f\xaf\x2e\xe6\xf7\x02\x01\x7b\x33\x71\x41\x58\xc8\xd0\x84\x55\xfc\xe3\xf9\xfd\x45\x86\x72\x6e\x60\x19\x43\xa1\x11\x83\x8c\x3b\x21\x15\xc0\x02\x66\x7c\x4c\x9f\x88\x63\x3a\x1c\x22\x3e\xa3\x6e\x0c\x32\x3a\x2f\x2d\x6a\x3c\xc6\x72\x98\xda\x3b\xa5\x72\x0f\x89\xaa\xff\x3e\x87\xa5\x82\x57\xb7\xd6\x93\xdd\xe9\xe6\x29\xb1\xff\xcf\x7a\x60\xb8\x7f\xf2\x2c\xdb\xa9\xc5\x7b\x86\x9b\xfd\xd4\xfc\xff\x94\x8c\xc2\x56\x76\x40\x9d\x7d\x0b\x3b\x70\x78\x37\x76\xc0\x6c\xfa\xc3\xb3\x04\xff\x93\x93\xfc\xc1\xf1\xc2\x43\xde\x70\xb6\xfd\x86\x33\x73\xc3\xd9\xfe\x37\x9c\x35\x6e\x38\x6b\xdc\x70\xb7\xfa\x2e\xdc\xe7\xa1\x6a\xeb\xfd\x15\x68\xd2\xfc\xa6\x8c\xc3\xbf\x08\x89\xc0\x31\x7f\xad\xb7\x9b\x4b\x32\x77\x2f\x98\x82\x58\x55\x9c\x66\x8d\x67\xf8\xbb\x07\xf1\xef\x85\x36\xe5\x95\x38\x37\xf8\xc7\x96\x40\xb8\x71\x14\x9c\xa5\x69\x42\x62\x49\xa8\x6a\xb8\x93\xf4\xea\xc9\x0a\xc2\xe1\xc6\x3d\x15\x90\x6e\x06\x76\x27\xf4\x49\x8a\xcc\xfe\xe7\x51\x3c\x15\xa3\x44\x90\x89\xfc\x2f\x4e\x22\x7a\x9c\x87\x09\x4e\xd1\x71\x32\x1c\xa2\x4c\xed\x75\x02\xa8\x9a\x3e\x2d\x9b\x2d\xa0\xd9\x39\x34\x3b\x17\x78\x15\xd1\xe3\x45\xb8\x92\xcd\x56\x87\x87\xa6\xd9\xaa\x0c\xc1\x13\x45\x51\x3a\x18\xc4\x83\x81\x2e\x4a\x11\xce\xee\x72\xe1\xe0\x0e\x7c\xad\x37\x5a\xa1\xae\xef\xfc\xdd\xef\xf4\x0e\xfd\x7e\x5c\xc7\x3c\xe2\xfa\x2e\x7e\x65\x94\x51\x41\xe3\xe4\xcf\x5d\x7c\xc8\xf6\x71\x39\xad\x75\xdc\x10\xfd\xb7\x24\x0e\x28\x35\x00\x1e\x4f\xad\x4a\x97\x1e\x4f\x55\x71\x17\xb7\xfb\xc8\x6f\x00\xee\x17\x75\xb9\x26\xfa\x46\x9a\x65\xa8\x13\x01\x6e\x62\x9d\xfc\x5a\xf9\x43\xfa\xb5\x76\x0f\xee\xcd\x09\xc8\x9c\xbf\x07\x14\xf9\x8e\xca\xbe\x07\x14\xf9\x1e\x50\xa4\x1a\xf7\xa3\x53\x40\x91\x83\xbb\x44\x14\xa9\xf6\xfb\x2f\x11\x50\x84\x93\x35\xf9\xae\xda\xfb\xdd\xa2\xce\xce\x06\xf9\x5a\xe0\xcf\xc0\xe2\x3e\x38\xa8\x71\x51\x1c\x4d\x67\x74\xae\xd3\x28\x2b\x49\x82\x5c\x34\xbe\x55\xdb\x35\xe1\x45\x2d\x93\x82\x3d\x7b\x5a\xdc\x09\x7f\x2b\xb0\xfb\x6a\xb2\x05\x72\x45\x78\xe7\x5c\x94\xdf\xa1\xfc\x5b\x83\xf2\xdf\x6f\x54\x6b\x90\xec\xda\x74\xe4\x1a\x0e\x43\x84\x26\x33\x36\xff\x66\xac\x77\xb3\x8b\x7c\xb5\x4a\xbe\x5f\x8f\xdf\xeb\xf5\xa8\x73\x34\x24\x22\x65\xce\xc6\x2b\x95\xee\xb0\xe2\xb4\xed\x04\x19\x86\x7c\x0e\xd5\xb4\xb3\xd5\xa7\x41\xa0\xc1\x40\x6c\x36\x90\x72\x82\xc7\x6c\x99\x5e\x1e\xd3\xa7\x47\xc7\x48\x27\xa4\x58\x25\xa9\xec\x20\x44\xff\x4e\x0f\x0f\xe5\xa3\x43\x66\x74\x8e\xe5\x7f\x22\x32\x63\xf2\x2f\x36\x8f\xb8\x15\x98\xdf\xe5\x2a\x6b\xf0\xbc\xd7\x68\x10\x8f\x6b\x92\xc6\x5e\xdd\xed\x2c\x6d\x21\xec\x4b\x5e\xa0\xf5\xf2\xa7\x08\xb3\x30\xc5\xd4\x8d\x5f\x9f\xce\xbf\x9d\xa8\x12\x00\x1a\xdf\x2f\xfb\xef\xf4\xb2\xff\x7e\xe4\x7e\xe5\x75\x48\x4d\xc8\x5a\xc9\xf5\x7c\x33\xaf\x5e\xca\xeb\x12\xa6\xef\x17\xe1\xfb\x45\xd8\x75\x11\x6c\x06\x31\x79\x17\x94\xfb\x23\xa6\x91\x08\x59\x85\x54\x0c\xdb\x1f\x54\x8a\x36\x9b\xba\x14\x09\x0e\x2d\xf2\x98\xba\x97\x81\x89\xea\x25\x12\x7c\xe5\xaa\xb3\xed\x39\x54\x0a\x6c\x2b\xb6\xdf\x35\xa7\xaf\x9d\x42\xa2\xb2\x6e\xd3\x14\xde\x88\xc7\x76\xca\x82\xb0\x47\xd6\x73\x97\xa0\x28\x23\x39\x1b\xd7\x42\xfe\x2e\x46\xf6\x95\x3e\xdc\xf5\x7d\x13\xf6\xf6\x22\xbe\x93\xef\xf4\x77\x1c\xf5\x2f\x8c\xa3\xbe\x2c\xb0\x3c\x98\x8f\x7c\x2b\xaf\xb4\x48\xcf\xcf\x93\x3b\x1a\x75\xaa\xb6\xdf\xb4\x59\xa7\x9a\xe2\xd7\x37\xec\x34\x5b\xf3\x3d\x26\xc3\x03\x49\x60\x3d\xa4\xb2\xbe\x5e\x8f\x91\xc7\x30\xad\xfe\xd6\x52\x6d\x40\xd8\x8c\xef\x63\xb4\x57\xa9\x93\x70\x1e\xbb\x29\xde\x4b\xcc\x0f\x89\xe9\xc5\x66\x23\x86\xf2\x0f\x32\x1d\x4f\xc4\xf0\xa8\x70\x74\x21\x69\x29\x07\xc0\x02\x35\x31\x04\xc5\x1c\xa7\x90\x7b\xcd\x5b\x74\x40\xee\x66\x57\xa6\x80\xef\x6b\x09\x7f\x73\xd6\x1d\x73\xfc\x2e\x22\xb2\xc0\x82\xee\x8c\x50\xaf\xa9\xb8\x48\xf3\xbb\x86\xa8\xf9\xc7\xe4\xdd\xfa\xa2\x2c\x5a\xa2\x61\xa4\x29\x30\xf7\xa0\xb1\x6e\x69\xbe\x40\x7f\x38\x15\x13\x51\x06\x34\x2c\x1c\xef\x4e\x70\x94\xd2\x5b\x2c\x31\xd2\x5d\xae\x87\x6e\xfe\x70\x49\x99\xb5\x91\xf5\x5e\x6f\xa9\x49\xb7\xde\x39\xd5\x73\xe7\x04\xc7\x7b\x24\x25\xdd\x23\xd5\xe2\x3e\x19\xe8\x3a\xe6\x2d\xeb\x9a\x04\x6a\xaf\x7c\x39\xdd\x53\x3e\xec\x11\x0d\x7e\x9f\xc8\xb2\x1d\x03\xb6\xed\x15\xfd\xaa\x7b\x4c\xa8\xae\x41\x77\xba\x87\x20\xe9\x18\xb7\x60\x1f\x0f\xb8\x2f\x77\x1f\xf2\x3a\x28\x75\xb6\x89\xee\x6e\xcb\xb9\x97\x65\x55\x77\xe3\x80\x3d\x54\x48\x7b\xc8\xdd\xba\xf2\xbe\xf7\x41\xe8\xb7\xb0\x13\x9d\xa9\x87\x3d\xde\xd5\x3d\x62\xa5\xef\xe5\x7c\xdd\x59\xb0\xff\xe5\x91\x54\x9b\x6e\x3c\xfb\x04\x75\xdd\x37\x12\x68\x57\x7f\x93\x66\x3c\x4e\x4c\x71\x8a\x63\x9c\xe1\x1c\x27\x78\x81\x57\xf8\x02\xaf\xf1\x12\x5f\xe2\x1b\x7c\x85\xcf\xf1\x19\x3e\xc5\xd7\xf8\x25\xfe\x8c\x3f\xe0\x13\xfc\x0c\x7f\xc2\x6f\xf0\x47\xfc\x1c\xbf\xc7\xef\xf0\x5b\xfc\x37\xfc\x0a\xbf\xc0\xaf\xf1\xcf\xf8\xef\xf8\x97\x2f\xa5\xe3\x5a\x1b\x3c\x83\x77\xf3\x17\x4d\x26\xdd\x12\x96\x5f\x2a\x36\x62\x72\x30\xc6\xe7\x44\x78\x42\x9a\xd9\xb7\xbd\xd8\xda\xb1\x7c\x66\xf7\xea\x97\x75\xea\xf7\xb9\x7c\x95\xf7\xea\x97\x77\xeb\x57\x3d\xe2\x7b\xf5\x4c\x3b\xf7\x9c\x0b\xb2\x57\xcf\x69\xc7\x9e\x15\x89\xb0\x57\xd7\x71\xa7\xae\x5f\x90\xc5\x5e\xbd\x66\xdd\x7a\xe5\xe9\x7a\xaf\x6e\xf3\x4e\xdd\xfe\x0c\x24\xc8\x4f\xfb\x81\x5b\xb2\x47\xd7\x7b\x75\xbc\xe8\xd8\x31\x5b\xee\x39\xe3\x55\xa7\x8e\xff\x28\x49\xa7\x3d\x7b\xbe\xe8\xd4\xf3\x2b\xb6\x1f\x4c\xac\x3b\xf6\xaa\xe9\xb2\xbd\xfa\x5e\x76\xec\x5b\x92\x71\x7b\x75\x7c\xd9\xa9\xe3\xff\x4c\x29\xdb\xab\xdb\x9b\x4e\xdd\xbe\x89\xf7\x3d\xb9\xab\xae\xfd\xee\xd5\xeb\x79\xa7\x5e\x4f\x34\x05\xba\x57\xd7\x67\x9d\xba\x7e\x47\xd7\xfb\x1d\xdb\x69\xe7\x6e\x9f\x41\xcb\xbd\x3a\xbf\xee\xd4\xf9\x7b\x49\x0d\xef\xd5\xef\xcb\x6e\xfd\x02\xf1\xbc\x57\xc7\x9f\x3b\x76\x2c\x0b\xf6\x04\xb8\x0f\x1d\xbb\x96\x94\xf9\x5e\x1d\x9f\x74\xea\xf8\x83\x22\xe4\xf7\xea\xf9\x59\xb7\x9e\x53\xbe\xef\x5e\x7c\xea\xd4\xf1\xc7\x78\x4f\x14\xf4\xa6\x5b\xb7\xc0\x2a\xec\xd5\xf1\x47\xa7\xe3\x76\x1a\x52\x75\x7c\x87\x6b\xf2\xbc\xd3\xbc\x7f\x65\xfb\xf6\xfb\xbe\x53\xbf\xff\xa5\x18\x9c\xbd\x7a\x7e\xd7\xed\xa9\x56\xfc\xd0\x5e\x3d\xbf\xed\x86\x41\xb5\x4f\xfd\x5e\x5d\xff\xad\x1b\x38\x4b\x66\x6b\xaf\x7e\x5f\x75\xea\xf7\x2d\xf9\xbc\xdf\x74\x5f\x74\xc3\xcc\x9a\xdd\xda\xab\xeb\xd7\x9d\xba\xfe\x45\x25\x90\xd8\xab\xe7\x9f\xbb\xf6\x7c\xa7\x79\xff\xbd\x53\xef\xff\x57\x72\x95\x7b\xf5\xfb\x8b\xd3\x6f\x17\x41\x6b\xc3\x4f\xbd\x9b\xbe\xed\x0e\x32\xe3\x44\x10\xaf\x0a\xa8\x4f\x9e\x44\xa2\x80\x0a\x6d\xe5\x50\x7c\xde\xda\xfe\x69\xa4\x2b\xb4\x95\xc3\x26\x77\xdc\x0a\x27\xc4\xc7\xbd\xfb\xf5\x7d\x81\xee\xc5\xe9\x15\xb2\x7c\x28\x31\x3b\xeb\x71\x88\xc8\x6c\x24\xfb\x44\xe5\xdd\xf3\x44\x2f\xaf\xc5\x6e\x80\x4e\x0a\x84\x74\xe2\x0c\xa7\xbd\x51\xd9\xd9\xb4\x1e\xfd\xf4\x69\x34\x9e\xa6\x13\x96\x27\xc9\x1e\xfb\x68\xd5\x29\x0f\x06\x50\xcd\xad\x71\xe3\xe3\x40\x5a\x05\x98\xc1\x66\x03\x59\xdf\x80\x4d\xc6\xbb\xc2\x6a\x3c\x3d\x9a\xb2\xc3\xa3\x09\xe4\x7e\x38\x72\xc3\x6b\x1c\x1e\xf9\x03\x6c\x98\xe0\x38\x44\x3b\xa6\x76\xdd\x1e\x03\x30\x5f\x71\x7b\x9c\x3b\x71\xc7\x38\x32\xd3\xff\xfc\x70\xf2\x76\x94\x81\x4a\x9b\xae\x6e\x42\x82\xa2\x28\xaa\x7d\x13\x46\xd1\x44\xb3\x97\x72\x85\xda\x82\xa5\xfa\x0d\x9c\xd7\xf6\xda\x2d\x25\x66\xfc\xba\xd0\xa4\x3d\x92\xf4\xd0\x75\x2b\x39\xb0\x03\xb0\x9a\xf6\x66\xe9\x7e\xeb\x33\xb1\x67\xf6\xc4\x3a\x7a\x6e\x0f\x8f\x76\xda\x82\xc0\x0c\x06\x0d\x1b\x81\x3b\x86\xc3\xb9\x2d\x3c\x31\xdf\x6a\x9b\x0a\x01\x67\xd0\x60\xb0\xad\x0a\x58\x63\x81\x51\x85\xef\x04\xd8\x22\xe7\x9c\xb0\xc5\xcd\xa3\xc3\xb3\x7c\xb5\x22\xfc\x70\x9d\x26\x74\xd1\xd5\xc8\x76\xdf\xbd\xec\x29\x6c\x54\xc7\x51\xc7\x64\x14\x2f\x04\xbd\x22\x1f\xe3\xec\xd3\x2b\x0d\x43\x66\xbf\x9e\x90\xd1\x65\xfc\xf9\x79\x39\xd5\x63\x63\x51\xa1\x03\xde\x2c\xab\xad\xb2\x0b\xba\x12\xa1\x8a\xe6\x24\xd0\x19\x27\xf1\xa7\x9e\xbf\x7f\xb0\x67\x13\xa8\x28\x7a\x55\x9b\x10\x1b\x2c\xa8\x3a\xee\xa1\x7f\x3c\x35\xcb\xc3\x6d\x4b\x28\xc8\x88\x30\x68\x2b\x4b\xb3\x77\xb0\xc5\xd1\x2d\x27\xff\x93\x53\x4e\xb2\x5f\xd9\x59\x9a\xb3\x25\x59\x3a\x83\x49\x9a\x26\x5b\x5c\x10\xb9\x85\x15\x83\x31\x88\xe6\x29\xc9\x1d\x49\xc2\xbd\x23\x7c\x95\xf2\xcb\x0f\x22\x16\x79\xe6\x0b\x03\x28\xff\x7e\x3a\x9e\x06\x59\xbe\x58\x10\xb2\x0c\x26\x81\x9e\x48\x50\x48\x22\x61\xc9\xd3\xf5\xff\xb5\x6b\xb2\x13\x5b\xc8\xc9\x27\xef\x49\x9c\xa5\x6c\x12\x50\xd1\x3f\x23\x49\xca\xce\xb3\xbe\x48\xfb\x71\xff\x07\xd9\xea\x87\xbe\x6c\xd1\x17\x17\xb1\xe8\x5f\xc7\x59\x3f\x4e\x38\x89\x97\x37\x7d\x9e\x33\x46\xd9\x79\xd0\x3e\x79\x4c\x46\xd9\x5a\xd2\xe2\x95\x9d\x02\xe3\xb6\x91\x3b\x30\xf6\x6e\x37\x1e\xfb\xbf\xeb\x9d\xfe\xa2\xad\x01\x6d\x30\xec\x8b\x9a\xc7\x09\x3b\x4f\x29\x3b\xdf\x67\x6b\x38\xc9\x44\xcc\x85\xc4\x4e\xf5\x1d\x1a\xad\xd5\x8c\x42\x44\x96\xfd\xf8\x3c\xa6\xac\x65\x93\x0c\x70\x7b\xe0\x09\x33\x3f\xd0\xf7\x04\x00\xb3\x7e\x7c\x05\xde\x65\xeb\xe5\x50\x06\x63\xcc\x22\xfd\xdd\xec\xe1\xb1\x78\x62\xfe\x3e\x16\xc3\x21\x62\x33\x31\x8f\xc8\x4c\xd8\x57\x9e\x15\x7e\xc3\x2d\x86\x10\x36\x26\xa1\x91\x31\x0e\x02\xaf\xa3\xcb\xf8\x33\xa0\x4a\x7b\x59\xaa\x57\x0b\xf5\xba\x02\x85\xc0\xca\xda\xf1\xee\xa7\xac\xba\x3b\xb5\xea\x2c\x7b\x11\x7e\xca\xc5\x9f\x08\x59\xbf\x8e\x05\xc9\x44\xc7\xf3\xfe\x64\x1b\x7c\xa3\x17\xe2\xf0\x08\x15\x3b\x10\xbf\x1a\x03\x1e\x54\xfd\xec\x9a\x87\xd5\xff\xfc\x3a\x4d\x45\x9c\x7d\x3a\xb4\x8f\xbe\xaf\x0a\x3c\xcd\x0f\x60\x9e\x79\x11\x67\x17\x11\x19\xf1\x78\x41\xe4\x55\x49\x92\x0f\x44\x88\x84\x2c\xd5\x8f\xaa\x79\x1a\x27\xe7\x84\x29\xc3\xc5\xf7\x39\x13\xf4\x52\x82\x1f\xff\x14\xa6\x92\xac\xcd\xb4\xbd\x10\x64\x54\x7a\xa7\xd6\x8f\x83\x38\x49\x02\x1c\xa3\xf2\x61\x48\x1d\x98\xf2\xf4\x77\xcd\x5d\x67\x6b\xa1\x9f\xb5\x63\x94\x5d\x53\xb1\xb8\x08\x55\x96\xc0\x48\xe7\x8a\xbc\x5d\xc4\x19\xe9\x8f\x27\x25\xcd\x7c\xc6\xf3\xb5\x08\x03\xfd\xe0\x63\x82\x7a\x50\xe5\x68\x22\xff\x09\x08\x5b\x06\x65\xe5\x4c\xa4\xeb\x10\x15\x05\xe6\x58\x82\x08\x2a\xd4\x8a\x6b\x57\x7e\x1c\x45\x91\xbd\xd0\xe6\x41\xeb\x99\x6b\xcf\xa3\xf1\x31\x2f\x2f\xf9\x70\xa8\x79\xa8\x38\x22\x33\x0e\x41\xb9\x0e\xe2\xcd\xe6\x20\x9e\xb1\xd1\x0d\x25\xc9\x52\x02\x87\x32\x01\x9d\xdb\xf8\xe8\xf2\xc6\xab\x30\x5e\x07\x47\x38\x8f\x48\x23\x51\x94\x36\xad\x34\xe4\x91\x49\x60\x7b\xbb\x62\x93\x14\xc7\xfc\x3c\x9b\xcc\xc8\xbc\x40\xa3\x53\x40\x99\x65\x52\xaa\xa3\x83\x28\x62\xa3\x53\x49\xe7\x25\x44\x76\x26\x6f\x37\x19\x0c\xc2\x2c\x3a\x18\x23\xcc\xca\x1c\x53\xd9\x94\x86\x39\x9a\xe4\x6d\x39\xaa\x88\xb2\x55\x2f\x90\xbc\xe2\x0e\x8c\xb8\x67\x0e\x67\xad\x0b\xe4\x91\x63\x0d\x54\x7e\xb8\x90\x45\xba\x16\x40\x60\xb5\x27\xf9\x29\xc0\x9e\x89\x68\x00\xff\x44\x6e\x32\xc9\x55\x5e\xd6\x80\xc5\x4c\x77\x26\xe6\x60\x7a\x6d\xa1\x2e\xae\x44\xf4\xb5\x9f\x33\xc3\xf7\xd6\x6d\xe2\xa8\xda\xf5\x34\x82\x1c\x7d\xb1\x9b\x2c\x6c\x49\x56\x84\x87\xa8\x47\x66\x6c\x1e\x52\xa4\x62\x15\xc6\x23\x4e\xb2\x34\xb9\x22\x58\xfe\xf5\x37\x48\x1a\xe7\x9c\xa9\x43\xcb\x66\x9b\x0d\xec\x3f\x4e\xbd\x69\x87\xe5\xf1\x94\x86\xb6\xe9\xaa\xd4\x89\x4f\xcd\x6b\x1a\xa2\x89\xcf\x89\x64\x74\x7a\x4a\x16\xa7\x1a\x29\x9f\x0e\x06\xb5\x0f\x21\x82\x84\xf9\x38\x89\xe2\x91\xc6\x4e\x23\xed\x24\x10\xe6\x16\x10\x92\x6a\xa3\x28\xc7\xc9\x2e\xac\x47\xd8\x22\x5e\x67\x79\x12\x0b\xb2\x04\x3c\xb6\x27\xb2\x7b\x28\x1e\xa3\xbc\x2f\xc6\x6d\xe0\xf4\x32\xfe\x44\x5e\x69\xcb\xeb\x49\x83\xbf\x80\x77\xe2\x9c\x88\x30\xd0\x04\x46\xe0\xa4\x88\xd6\x04\x01\x44\xc8\x92\xf5\xe4\xb5\x43\x05\xd6\x35\x95\x14\xc3\x27\x19\x73\x96\xed\x79\x0b\xee\x97\xd7\x94\xfb\xaa\xa4\x7a\xcf\x95\x51\x7f\x54\x37\x1b\xb1\x02\x1e\xe5\xff\xcb\x6c\x46\xbb\xaa\x05\x34\xcf\xd9\xe8\x8c\xb2\xa5\x0a\x85\xe1\x6c\x14\x5d\x85\xb4\xca\x25\x69\xe8\xa3\x33\x31\x2f\x89\xa1\x26\xaf\x56\xd2\x46\xf2\x36\x8d\x8f\xe3\x27\xe4\x38\x06\x8a\x28\x76\xe5\x1f\x31\xa0\x4c\x3e\x18\x70\xed\x1c\x73\xab\x2e\x91\x76\x37\xeb\x69\xd7\x99\xd2\xdc\x35\xc3\xa6\xa6\xb5\xd4\x96\x53\xd1\xc7\x45\xff\x51\xf4\x5b\x8a\x8c\x91\x2c\x43\x92\x5d\xdc\x71\x85\xd6\xfa\x78\x0f\x2f\xd3\x25\x5d\x51\xc2\xb3\xc3\x4b\xfa\x99\xb6\xd8\x6e\x3b\x0d\x0d\x29\xc4\xfd\xc5\x55\x4e\xf4\xfe\x69\x07\x33\xef\x37\x66\xda\x9a\x5c\x80\x30\x27\x80\x0e\x3f\x98\x09\x36\x24\x8d\x54\xf2\xd4\xa7\x12\x64\xc1\xac\xe0\x5d\x2c\x2e\x2c\x74\x2a\x4b\xe6\x7a\xa9\x0d\x3a\x39\x3a\xb5\xeb\x2e\xea\x96\x43\xf6\x71\x54\x6b\x57\xd4\xe7\x84\x8c\x4e\xdd\xdf\xb8\x4a\x34\xcb\xe2\xea\x97\x02\x15\x3d\xdf\xf2\x6e\x2b\xdd\x4c\x98\x87\x1b\xc5\xb5\xae\x26\x47\x8f\xc6\xb8\xba\x12\xc0\x16\xf8\xf4\x22\xce\x7e\xcd\xc8\xd2\xf4\x3e\x39\x38\x82\x6f\x1f\x88\xf8\xc9\x1d\x44\x7f\x7e\xc9\x24\xed\xb0\x7c\x79\x25\x2f\x8a\xfc\xe8\x70\x48\x3e\xd3\x24\x85\xab\x58\x2b\x07\x26\x9f\x72\x35\xf9\x6d\xad\x9b\xeb\x43\x05\x96\x34\xfe\xb6\x46\x5e\x66\x18\x15\xb8\xa4\xf1\x77\xb5\xf6\x70\x10\xa8\xa8\x9f\x9a\x87\x3c\x00\xd4\x5c\xdf\x58\xf9\xd8\xaa\x82\x6a\x07\x11\xc1\x14\x06\x45\x50\x5c\x60\x30\x0d\x6e\xef\xb6\x72\x86\x8d\xc6\x44\x1e\x0c\x59\xfa\xac\xda\xcc\xa4\x2a\x47\x68\x66\x55\xe0\x25\x39\xcb\xcf\x5b\xdb\x41\xa9\xad\x5c\xb4\xf8\x09\xc8\xe7\xbf\x09\x3b\xb2\x19\xf1\xee\x47\xed\x42\x44\x02\x53\xc5\x40\xd5\xf7\x28\x8a\x8e\x1e\x8d\x25\x4d\xd2\x28\x39\x42\xd8\xa1\xa4\x64\xf3\xdb\x1d\x68\xce\xc1\x56\x0f\x29\x14\x1b\xdb\x28\x6e\xba\x03\xf3\xfe\x27\x71\x66\xf8\x5c\xb2\x54\x97\x50\x7e\xfa\x20\xaf\x91\xfb\xe1\xbd\xe2\x34\x9d\x1a\x92\xe7\xcd\xb2\x55\x9e\x94\xdf\x9e\x2b\xaa\x9a\x94\x5f\xc0\xa1\xca\xed\xe7\x39\x5c\x3d\xf7\xcb\x2b\xb6\xa8\x34\xd3\xe4\xc3\xf3\x34\x67\x62\x32\xc6\x20\xbd\xfa\x25\x66\xcb\x84\xfc\x9c\x27\x2b\x9a\xe8\xf1\x9c\xef\xca\xb2\x42\x7d\xa6\x8c\x56\x6e\x92\x02\x98\x2c\x5f\x13\xee\xd2\x2b\xf6\x79\x45\x9a\x74\x69\x8a\x43\xa2\xd9\x5c\x95\x79\xf8\xdf\x68\x36\x2f\xb0\xc2\x22\xcf\x92\xc4\x23\x60\x99\xcd\x7b\xd0\xd6\xc7\x7b\x93\xd6\x21\xf1\xb8\xb5\xc8\xd0\x0c\x42\x4f\x78\x4b\xc7\x7e\x3e\xbe\xad\xc8\xe9\x98\x87\x02\x15\xd8\xd3\xf3\xa4\x69\x6a\x5b\x52\x09\x69\xc4\x8e\xd3\x27\x6c\xc8\x8f\x87\xc3\xd4\x70\x7a\x62\x96\xce\x7b\xb1\x64\x63\x34\x24\x6d\x36\x31\xd0\x62\xa3\x25\x59\x70\x22\xb7\xde\x02\x6f\xc0\xf2\x4b\x85\x1a\x03\x84\x63\x43\xd0\x13\x84\xe9\x60\x40\x8d\x5f\xb0\x6c\x8b\x0a\xa1\xd7\x1d\x82\x4e\xcd\x2f\xf5\xa8\xbb\xb4\x56\x20\x5c\xb2\xbf\x6a\x2b\x28\x6b\xcc\xc3\x85\xbc\xc0\x10\x8f\xbe\x8a\xee\x84\x5b\xf7\x15\x26\x6e\x46\x3b\x5d\x25\x79\x76\x01\x8d\xb2\x10\x15\xd8\xfd\xed\x82\x6b\x49\x2d\x4a\xe8\x8b\xc6\xc7\xe2\xc9\x0e\x88\x38\x1e\x0e\x05\x22\x5a\xdc\xdc\x52\x55\x52\x7f\xb0\x81\xbd\x56\x60\xf7\x6b\xf6\x66\x73\xcc\xa2\x31\xe6\x96\xdb\x3f\x66\x4f\xe4\x39\x33\x43\x96\x48\x86\xaf\x77\x70\x64\x35\x03\xca\x5b\x31\xa0\xd9\xcf\x94\xd1\xec\x42\xee\xd0\x60\xa0\xe4\x87\x21\xb5\xe4\xa8\x28\x5a\xa7\xaa\xf7\xcb\x45\xc4\x23\x73\xcc\xea\x6d\xe9\x95\x61\xfb\xd5\x8d\x57\xd9\x37\x76\xee\x92\x65\x5f\x5b\x77\x89\xce\x7b\x69\x05\x64\x43\x8d\x3d\xe4\x6f\xb7\x6a\x98\x22\xcc\xa2\x14\xc8\x3d\x88\xf0\xad\xc1\x93\x19\xaf\xb3\x2a\xf4\xe9\xfe\x9c\xd0\x0c\xd5\xf2\xf7\x46\x8a\xc7\xca\xc5\x29\x86\x60\xc7\xa5\x3d\x1e\x0e\xe3\xca\xd9\x7b\xaa\xce\x62\x73\xf6\x5c\x42\x63\x23\x1c\x73\xf9\x18\x05\xbb\x90\x8f\x84\xdb\xc6\x5e\x78\x90\x9f\x22\x5a\x22\x75\x7f\xc0\x9b\x79\xeb\x0d\x62\x2d\x57\xcc\x6c\x0b\x3c\xc1\x5a\x8c\x33\x3a\x4d\xd9\xcf\x92\x43\xa7\x7f\x27\x6e\xfc\xc1\xb6\x41\x6c\x1f\x5a\x5a\x47\x1a\xa2\x9f\x9e\xb3\x23\xea\x38\xcc\x2b\x06\xb8\x42\x82\x36\x9f\x36\xea\x94\xaf\x9f\xac\x35\x09\x1f\xfb\xab\xe9\xe7\x0f\xea\xfc\x28\xab\x54\x00\x44\x0f\xa7\x5f\x44\x18\xae\x51\x5a\xbe\x8e\x10\xd1\x02\x97\xcc\x68\xca\x20\x98\xb3\xa8\xe0\x16\x04\x7c\x55\x2d\x71\xbb\x18\x0e\x9d\x4b\xd3\x7e\x9d\x53\x75\x9d\xd3\xd1\x69\x46\x08\x7b\xc5\x96\xe4\xf3\x13\x31\x18\x84\xee\x07\xa0\x8a\x52\xc9\xc0\x55\xc9\x1c\xd7\x1a\xa0\xdc\x77\x80\x02\x7b\xd6\x30\x30\x08\x13\x80\xaa\x0c\xd0\x31\x3f\x46\xe5\x8a\x39\x76\x4f\x4c\x3e\x48\xf5\x32\x0d\x32\xf2\x1e\xf1\x88\x57\xba\x2a\xb6\x3b\xc0\xd6\x25\x2d\xaa\xd5\x0e\x56\x52\x89\x97\xdb\xc5\x35\x99\x00\xaf\x60\xc5\x95\xee\xc5\xc3\x36\x9d\x57\xda\x3c\x5f\xa9\x4d\xd2\x77\x50\x93\x81\x21\xe4\xf5\x5d\x7f\x1e\x33\x96\x8a\xfe\x22\x4e\x92\x7e\xdc\x5f\x24\x71\x96\xf5\xe3\xac\x1f\x5b\x39\x5e\x70\x27\x37\xd4\x8f\x96\xd0\xd7\xd5\x23\xe7\x9b\x91\x88\xbb\x9f\x7c\xd4\xa6\xf5\x39\xc1\xb7\x34\xb3\x55\x27\x92\x90\xd7\xce\xfb\x4d\x92\x3f\x78\x52\x56\x0c\x86\x0a\x21\x9b\x7d\x7d\x1b\x5f\x92\x61\xf0\x34\x28\xf0\x69\x09\x39\x27\xfc\xad\x81\x94\x5a\x9a\xc0\x91\xdc\x1f\x17\xc4\x2a\x68\x88\x66\x86\xc6\xad\xb5\x3a\x4b\xd3\x24\x0c\xfc\x23\x40\x3b\x3d\xd8\xc1\x51\x61\x8c\x7c\x7c\xfb\xd5\xdc\x23\x5b\x94\x56\x9f\xdf\x52\x5f\x5c\xfa\xbe\x68\x4e\x10\xd5\x04\x83\x12\x2e\x88\x03\x08\xef\xc9\x8a\x48\xe0\x33\xd0\x20\x5b\xf5\x2f\xe2\x8c\xfd\x20\xfa\x67\x84\xb0\xbe\x8e\x4d\x4f\x33\xb2\xec\x1f\xf6\x81\x2e\x0e\x51\xa5\x86\x84\x1c\xb9\x30\x13\xf5\x5a\x6c\x36\xc6\x2c\xe3\xc0\x88\xb6\x84\x2b\xf0\x2a\xbf\x4e\xc9\x44\x3f\xed\x38\x64\xa3\xd3\x53\x08\xce\x70\x7a\xba\xd9\x68\x30\x38\x27\x12\x3b\xab\x78\x0d\x27\xab\x90\x21\xe4\xa7\xc9\x2d\xa1\xd0\x58\xac\x6f\xd4\xc1\x40\xd2\x01\x10\x25\xc6\x7b\x23\x3e\xc8\x45\xf6\xc9\xe7\x35\x27\x59\x26\xf7\xf5\x32\xcf\x44\x9f\x50\x71\x41\x78\xff\x8c\xf4\x65\xeb\x7e\xca\x9d\x2b\x82\xfb\xf2\x0a\x05\x43\x33\x02\x52\x82\x0f\x35\x71\x13\x79\x42\x0b\x55\x04\xd0\x37\xa6\x10\xdf\x2e\x52\xa6\x22\x45\xa4\x7c\xa2\xaf\x10\xc1\xae\x39\xe1\x11\xbe\xe6\x54\x18\xd3\xc2\x45\xca\x56\xf4\x3c\x37\xa6\x86\x92\x5b\x94\x28\x57\x8f\x91\x55\x36\x6c\xea\xfd\x0a\x7b\x33\x21\xe5\x76\x47\x02\x15\x21\x93\x0f\x83\xf6\x85\x5a\x1a\x40\x43\x98\x15\x21\xc2\xa0\x2c\xd5\x09\xa6\xb2\x8c\x9e\x33\x14\xa6\xce\x12\x78\x53\xc8\xb3\x43\x8a\x5b\xd3\xd4\x75\xc1\xaa\xf7\x2d\xe1\x7e\xf7\xf2\xfd\xcf\x27\xef\xdf\x9c\x7e\xfc\xed\xdd\xcb\xd3\xd7\xaf\xde\xfe\xe9\xe5\x8b\xa8\xf6\xf5\xd7\xb7\xfe\xef\x2f\x5e\xfe\xfc\xec\xd7\xd7\x1f\x4b\x39\xdd\x39\x31\x24\x99\x21\x72\x22\x8f\x63\xd7\x2c\xb6\x5a\xd0\x39\x68\x79\xe9\x52\x3d\xe5\x51\x26\xfb\x48\xa3\x15\x56\xaa\xbb\xa8\x49\x21\x35\xcc\x76\x8e\xbc\x66\x3b\x47\xae\xd9\xce\x91\x63\xb6\xd3\x39\x8b\xd5\x7e\x19\xac\x56\x2a\x76\x0a\xdc\x46\x8e\x21\xef\x5c\xa1\x63\x50\x04\x12\x6b\xa9\xf5\xc5\x70\xff\xe0\x31\xf7\xee\x63\xe0\xfb\x1a\x60\xda\x7a\x1e\x81\xf7\x73\x80\xd3\x7a\x0b\x6f\x7d\x53\x3b\x96\x4c\xb7\xab\xc5\x2a\xe5\x40\x83\x01\x19\xb1\xf8\x92\x44\x51\xc4\x4a\xba\x25\xf7\xc5\xaf\xd1\x27\xd4\xab\xcb\xa9\x3e\xe4\x67\xd9\x82\xd3\x33\xb2\x8c\x0e\xc6\x38\x14\x8e\x66\xe4\xd4\xd8\x93\x21\x34\x23\x73\x6b\x26\x51\xa2\xb3\x02\x54\x99\x49\x74\x6b\x22\xdc\x68\x61\xe7\x92\x66\xeb\x34\x23\xe6\x67\x8d\x30\x9d\x8c\xb1\xbc\x57\xaa\x50\x69\x34\xe7\xb8\x3a\x15\x90\x83\xf2\x9c\xbd\x4e\x53\x78\x45\x95\x60\xac\x55\x3a\x5a\x31\x37\x50\x63\x6a\x96\x57\x62\xcb\x09\xc7\xa7\xe4\xf3\x9a\x2c\x44\xf6\x9a\xb2\x4f\x64\xf9\x1b\x25\x09\x0c\xa1\x2e\x1a\x34\x20\x12\xa5\x6a\x49\x4b\xe6\x88\x80\x0e\x8e\x30\xcd\x00\xdf\xaa\x3f\xad\x98\xa7\xf6\x96\xc6\x6c\x19\x06\xa6\x58\xbd\xc1\x2e\xaf\x88\x9d\x22\xd9\x51\xc9\x8c\xa9\x6e\x4d\x4d\xf5\xab\xe5\xbd\x66\xa9\x08\xab\xbd\x02\xa1\xd6\xcc\x19\x9c\xbd\xe0\xe9\x7a\x2d\x09\xca\xda\x94\xca\x61\xab\xf3\xdb\x9a\x69\x45\xe7\x7e\xb1\x9d\xa2\x29\xd8\xfc\xc8\x3f\x27\xcd\x5a\xe5\x70\x68\xaa\xad\x46\xfc\x15\xcb\x65\x4c\x83\x95\xf9\xbb\x51\xcf\x99\x31\x9a\x06\xc6\x2c\x64\x12\x5c\xc7\x54\xc8\xbf\x0a\xb9\xb5\x7a\x66\x9e\x8d\x68\x5b\x7c\x97\xf5\x3a\x2b\x19\x0c\x0e\xb6\x4d\xac\x40\xf8\x14\x6c\x9e\x27\x47\x9a\x91\x6c\x93\xf0\xba\x4c\xb8\x92\xd6\x94\xc3\x4c\xe5\x87\x49\x23\xdc\xae\x3b\xed\x83\xb1\x11\xbb\x18\xd1\xc1\x3b\x9e\x2e\x08\x59\x86\x62\xf4\xdb\xab\x97\xaf\x5f\x3c\xfb\xe9\xf5\xcb\xd3\xe7\x27\x6f\x3f\xbe\x7a\xfb\xeb\x4b\x93\x15\x4f\x37\x11\x9c\x9e\x9f\x13\x0e\xd7\x26\x0c\x32\xd3\x67\x29\xd7\x46\x85\x97\x5c\x05\xb1\x8d\x11\x8f\x45\x81\xa6\x55\x81\x05\x36\x9a\x31\xe0\xbd\x82\xd2\x56\x2b\xc0\x21\x89\xa8\x0d\x09\x8e\x45\x74\x78\x84\x86\x21\xdf\x6c\x82\x00\x0d\x4d\x6c\x49\x31\x64\xc8\x48\x1b\x9b\x1a\xda\x3b\x5a\x80\x06\x56\x71\x0e\x06\x45\xe4\xf3\x3a\xa1\x0b\x2a\x92\x1b\x43\xff\x29\x13\xc7\xda\xde\x7b\x0e\xd8\x85\xd0\xa6\xf0\xad\x02\x5a\x26\x7c\x59\x33\xa1\x08\x08\xda\x2a\x64\x7d\x80\x36\x9b\xe0\x49\xce\x3e\xb1\xf4\x9a\x3d\x0d\x7a\xcd\x34\x52\x25\x2e\x0b\x70\xe0\x4a\x24\xfa\x3f\x04\x43\x36\x0c\x7e\x80\x85\x99\xab\xd5\x3f\x23\x8b\x58\xd2\x18\xc1\x90\x0c\x83\x51\xff\xe7\x94\xf7\x2f\x53\x2e\x59\x2a\x79\x16\xb1\x22\xfb\x32\x42\x26\xfd\x0b\x21\xd6\x93\x47\x8f\x1a\x94\x8b\xbc\x31\x8f\x96\xe9\x22\x7b\x04\xf4\xce\xa2\x7c\x0c\x41\x8d\x6d\x64\x81\x25\x20\x4e\x2d\xb7\x22\x61\xef\x43\x9a\xb2\x2a\xfc\x3d\x7b\xfb\xfc\xe5\x6b\x2c\x91\x29\x9a\x68\x29\xa1\x11\x6d\x00\x86\xfd\x11\x15\x85\xc4\xe9\x2b\xfb\x44\xe8\x97\xa6\x7e\x83\xdb\xf5\x24\x2b\xc2\x3d\x76\x1a\x56\xf5\x73\x73\x46\xde\x2b\xa5\xe4\x8b\x4a\x09\xd4\x33\x26\x11\xf2\xda\x36\xaa\x36\x65\xec\xd0\x66\x30\x50\x3f\x9a\xf6\x35\x10\x7d\xcc\x57\x36\x75\x87\xd4\x2a\x52\x25\xcd\x52\x4a\xec\x49\xb5\x1c\xe2\xc2\xc1\x27\x78\x8b\x90\xbc\x8d\x17\x84\x4d\x72\xc9\xec\x10\x16\x20\x0c\x46\xc9\xf2\x37\xfc\x11\x20\xac\x4d\x3a\xe4\x27\xfd\x67\x80\xb0\xdd\xeb\x49\x95\x10\xd5\xb1\xf8\x24\xb9\xa2\xa4\xa5\x0a\x65\x0d\x87\xb8\x79\x19\x42\x1e\xfd\x88\x29\xf8\x34\x28\x5e\xa3\x61\x56\x87\x70\xe8\xa8\xac\x8c\x69\xfe\xcb\xb7\x7f\x1e\xbd\x78\xf9\xd3\xaf\x7f\x3c\xfd\xf8\xec\xc3\x9f\x3e\xa0\xc1\x40\x72\x0d\x69\x42\x46\x49\x7a\xee\xeb\x84\x2a\xf2\x85\x61\x0a\x08\xc5\x92\xa5\x0a\x29\xd5\xef\x46\x7d\x87\xbd\x11\x63\x4f\x39\xc9\xf2\x04\x52\xcf\x68\x21\x57\x03\xa5\xba\x2f\xbc\x42\xaa\xad\x99\x89\xd0\xe4\x71\x5b\x1f\xb0\x33\xfe\xe6\x44\x15\xc9\xe6\x4d\xe9\x58\xb5\x46\x33\x21\x9c\xf3\x2c\x97\xf8\x5e\x93\x54\x16\x90\x79\x6e\xc5\x85\xcf\x75\xca\xb6\x2c\x74\x2b\x4b\x10\x31\x35\x14\xa5\xa4\xc4\xf3\xf5\x46\xfa\x02\x96\xd2\xc7\xaa\xa5\x65\xe5\xf6\xda\x46\x56\x82\xdc\x28\x89\x66\x73\xab\x19\xa8\x97\xd5\x34\x07\x8d\xab\xb4\x6d\x65\x05\xf6\x16\x4c\xaa\xf6\x2a\xbb\xae\x7f\x63\x4a\xae\x62\x42\x3e\x53\x6d\x33\xd7\x52\x45\xf2\x44\x1c\x0f\x87\x04\xb5\x54\x9b\x91\x79\xa8\x55\x11\x9e\x9d\x01\xb3\x21\x67\x86\x1f\x25\x4f\xff\x2b\xbb\x00\x55\x1f\xc8\xb6\x01\xa2\x5e\xc7\x42\xce\xb8\xc0\xbb\x6b\xf9\xcd\x9a\x7a\x1e\xda\x7e\xb3\x79\x7c\xd0\x82\xa6\xcc\xdd\xe5\x39\x2b\x15\x12\x8e\x69\x50\xbc\xf8\x74\x96\x73\x46\xb8\x12\xc2\xcb\x37\x2c\x9b\xed\x28\x2f\x19\x48\x97\xd2\x22\x8d\x49\x65\x21\xd1\xd8\xce\xcc\x02\xb0\xb9\x46\x86\xa6\xac\x90\x9b\xe1\x87\x69\x77\x07\x8c\xd5\xa8\x6f\x91\xda\x7a\xf4\x68\xe2\x25\x85\x94\x95\xb3\x25\x86\x7a\xca\xfd\x01\x5a\x3c\xf6\xb6\x20\x46\xfc\x0d\x57\xb6\xfe\xe8\xab\xbb\x8d\x2a\xfd\xfc\xe8\xed\xc7\xd2\xc7\xfe\x8e\x2a\xb4\x00\x52\x8f\xa6\xc2\x03\x5e\xb8\x37\x6c\x57\xc5\xc6\xcd\x7e\xed\x55\x7f\x2a\x1d\x13\x01\x9b\xd8\x53\x9a\xfd\xd1\xd8\xe6\xbe\x48\x19\x69\x31\x97\x3b\xb5\x06\xbc\x4a\xc1\xa0\xe5\x98\x2f\x4e\xde\xbe\x0c\xa2\x28\x22\x9b\x4d\xf0\xf2\xfd\xfb\x93\xf7\x2f\x5f\xc0\x4f\x79\x65\x49\x96\x5f\x12\xdb\x77\xed\x45\x12\xfc\xe6\x36\x2e\x95\x3c\x86\x86\x32\x63\x09\x63\xbd\x17\xa2\x99\x98\x87\xc4\xdc\x2c\x3b\x0b\xc8\x43\x19\x31\xf5\x9c\x62\x06\x31\x97\xa7\xbe\x99\x46\x6a\x8e\x13\x7f\xd9\x2f\xcf\x3e\x9c\xbe\x39\x79\xff\xf2\xf4\xcf\xcf\x5e\xff\xfa\xf2\x43\xa0\x43\x31\x73\x83\xfd\x6a\xe3\x71\xec\xef\xc6\x2c\xbd\x8c\xdb\x0c\xd5\x9a\x9c\xe7\x60\x10\xfa\x3a\x36\xf8\xaf\xfa\x75\xe4\x72\xb2\x51\x14\xa5\x9b\x8d\x79\x52\xaf\x63\xce\xc2\xe0\xb7\x34\xef\xaf\x8d\x16\xb8\x1f\xf7\x47\x09\x8c\x14\xa2\xbe\x7c\x50\xfb\x3a\x5e\x57\x9f\x5e\x5e\x92\x25\x8d\x05\x49\x6e\xfa\x60\x9c\x4c\xd9\xf9\x23\x75\x80\x94\x9d\xf7\xa9\x18\xf5\x3f\x5e\xd0\xac\x4f\xb3\xbe\x22\x0b\x25\xc5\x9c\xb3\x2c\x5f\xaf\x53\x49\xf2\xf5\xc3\xb3\x5c\xf4\x2f\xe9\xf9\x85\xe8\x9f\x91\x7e\xf9\x9d\xb2\xfe\x2a\x87\xe8\xb1\x57\x84\x83\x14\x32\x5d\xf5\x1b\x24\x26\x1a\x19\x2a\xd2\xb3\x21\xd1\xc1\x11\xc2\xb1\xb2\xfa\x93\xd0\xe8\x1c\x7d\x1b\x1f\x65\x04\x0e\xe6\x21\x32\xbf\x23\x83\x5f\x4b\xdb\xcf\x10\x19\xc5\xb8\xfe\x00\x98\xd5\x6f\x1b\xea\x0e\xb1\x62\x8e\x0c\x17\x9c\x3f\xc9\x67\x51\xb1\x07\x3d\x8d\x97\x57\xf2\x86\x82\xfe\x68\x52\xb3\x3e\x74\x48\x2c\x79\x19\xb4\x01\xf8\x70\xe8\x7c\x2f\xb0\x4b\x42\x7b\xc8\x35\xe6\xe2\x73\x77\x30\xb7\x77\x87\x22\x78\x9d\xa6\xeb\x69\x89\x9a\xff\x96\xd2\x4a\x62\x75\x0f\x9e\x0f\x54\x88\xb8\x2c\xc0\x0c\x33\x4b\xd1\x2b\x09\x19\x9a\x64\x44\x7c\xa4\x97\x24\xcd\x85\x37\x3f\xbb\xa9\x0e\x13\x2e\xf0\x11\x2a\xb0\xfe\x32\xa9\x1b\x1f\xb6\xbc\x3c\x9e\x95\x11\x64\x2e\x42\x85\xbd\x80\x2c\xef\x75\xae\x77\xd7\x96\x35\xc6\xd3\x8c\x9f\xd9\x2b\xf7\xe9\xd3\x50\xff\x5e\xef\x62\xad\xde\xc1\x8e\x8a\xee\x4e\xec\xbd\x6d\x13\xdb\xb9\x63\x73\x5c\x39\x0b\x54\x82\x4a\x1d\x87\xb6\x2c\xd4\x62\x65\x1f\xb2\x9a\x1a\x0a\x41\x19\x19\x01\xa1\xb4\x7c\x0f\xf3\x23\x4b\x40\x3b\x6a\x21\xbe\x6a\xcf\x53\x26\x28\xcb\x49\x59\x4d\x4e\x6e\x4b\x57\xee\x84\x99\x7d\xa5\xcd\x8b\xec\x93\x5b\x4c\x1a\x25\xef\x5f\x7e\xfc\xf5\xfd\xdb\x06\x2f\x89\x8f\x2a\x6f\xac\xdb\xe2\xe3\x2f\xef\x4f\xfe\xab\xd9\xe0\x71\x6b\x03\xc5\xb4\x4e\x76\xf1\xf9\xb8\x9d\x9f\xad\xee\xf1\x24\xf8\xe9\xe5\xcf\xf2\x55\x79\xfe\xfe\xe5\xb3\x8f\x2f\x03\x5c\x43\xec\xd6\x2e\xb4\x75\x73\x6b\x1b\xa7\xf5\xfc\x3d\x2e\x0f\xb5\x31\x71\x1b\x29\x78\xcb\xd4\x79\xd4\xdc\xd3\x06\x7f\xa1\x83\xef\x3a\x08\x46\x5f\xa6\xda\x5b\x0e\x96\x4a\xd8\x73\x81\x21\x59\xac\x7d\x0d\x0f\x3a\x40\x20\x3c\x02\x06\xf0\x1a\x12\x03\xdf\xab\x88\x1f\x3b\x50\xe7\x36\x6f\xca\xad\x94\xd4\xca\xd7\x49\x8f\x4e\x69\xd5\xf9\xe2\x7d\x7c\x0d\x25\xd5\x4b\xfd\x5f\x54\x5c\x7c\xa0\xf2\x82\xa9\x19\x52\xc3\xbf\x87\x66\xf5\xcb\x17\x9a\xa8\x0a\x69\xd5\xa5\x02\x61\x3a\x13\x0d\x67\xa0\xa9\xd9\xdc\xab\xf4\x93\x9a\xbd\x2c\x0c\xa9\xd7\xd5\x83\x82\xcf\xc9\x34\x24\x11\xc5\x0a\xb9\x61\xee\x9e\x0e\x56\xfe\xcc\x15\xbf\x12\x36\x32\x28\x86\x63\xaf\x60\x90\xa0\x02\x77\x69\x00\xb7\x48\xd6\x46\xe6\x58\xda\xf6\x64\x77\x85\x12\x85\xd5\xca\x9a\x0c\xa7\x99\x8c\xbb\xcc\xd6\x75\xb8\xfb\x5f\x7f\x84\x7d\xae\x33\xae\x31\x4f\x3b\x75\x2c\xa6\xae\x1c\x28\x44\x40\x29\x4f\x08\x10\xcb\xd5\x73\xab\x4e\x9f\xdf\x98\x04\x3a\x9e\x83\x77\xd1\xbb\x7a\xbb\x7b\x4d\x10\x62\xa8\x24\x40\xe5\x70\x2e\xc7\xe0\x27\x32\xea\x2a\x11\xb3\x42\xaf\x30\x52\x13\x32\xde\xf4\xc7\x3e\x69\x65\x4f\x0e\x33\x18\x88\x91\x9e\xc7\x60\xc0\x4a\xa6\x99\x37\x55\x73\x54\xab\xe6\xf8\xd3\xa3\x29\x57\x51\x30\xd2\xe8\xe8\x38\x7d\xc2\x8f\xd3\xe1\x10\xd1\x59\x5a\x8d\x82\x91\xce\x7b\xb6\x6f\xab\x62\x9a\xb1\x61\x30\x09\x86\x64\x6e\x3c\x2b\xfe\x41\xae\x1d\x14\x49\xae\xab\x28\x7a\x89\xe7\x34\xa3\x26\x7e\x56\x36\x78\x36\xe8\x89\x47\xc1\x96\xb6\x19\x7a\xa9\xed\x4c\x9b\x66\x5c\x4a\x86\x45\xec\xa5\x60\xfe\xab\x90\x1a\xac\xf4\x78\x6b\x7d\x75\xa3\x53\xcd\x59\x1b\xe9\x54\x6b\xef\x8e\x24\xb7\x40\x35\xe7\xa0\xb4\xc2\x9b\x1c\x44\x11\xf5\x7c\x96\xfd\x37\xe1\x91\x6c\x05\xc6\xb4\x5e\xaa\x61\x90\x0d\x06\xe2\x20\x8a\xe4\x3f\x23\x9a\xbd\x20\x99\xe0\xe9\x0d\xc8\x2b\x2b\x6d\xad\xfe\x2c\x40\xc6\x6a\x37\xf8\x6b\x30\xd4\x56\xaf\x35\x1b\x9b\xbf\x06\x38\x83\xe2\xb4\xa5\xb8\x57\x61\xb7\x7e\x68\x70\x36\xfd\x25\x11\x64\x21\x80\xf7\x5a\xa7\x82\x30\x41\x25\xf7\xd7\xbf\x88\xff\x1e\xf3\x65\x9a\x67\xfd\x20\x23\xc9\x4a\x4b\xd5\xfb\x49\x9a\xae\x83\xfe\x19\x11\xd7\x84\xb0\xfe\x3a\x96\xa4\xa4\xe2\xd4\x7e\x18\xc6\xc3\xa0\x1f\xb3\x65\x7f\x71\x41\x93\xa5\xfa\x18\x0c\xb3\x61\x30\xea\xbf\x5a\xf5\x6f\xd2\xbc\x7f\x1d\x33\xd1\x28\xed\x8b\x54\x72\x64\x56\x1f\x70\x7d\x51\xeb\x38\x80\x8e\x69\xa9\x32\xc0\xfd\x75\x42\x24\xfd\xb3\x80\x6c\x37\xfd\xbf\x96\x8a\x9b\xbf\xca\xde\xfe\x6a\x79\x48\xa7\x60\xf7\x24\x3e\x11\xb2\x36\x8e\xdb\xfd\x78\x25\x08\xdf\x35\x0d\x3d\x3e\x15\x6a\xd4\x9c\x79\xc6\x0d\x50\x51\xa4\x56\xa7\x53\x68\xbd\xfd\xc2\x6b\x86\x95\x38\x06\x82\x2b\x97\x27\xe8\x1c\xaa\x66\xea\xfe\x70\xcc\x12\x16\xc6\x2a\x46\x0f\x18\x83\x79\x49\x78\x0b\xea\x6b\x82\x57\x6c\x22\xb0\x06\x57\x78\x07\x0b\xcc\x50\xe9\xa3\xeb\xd8\xf0\x2d\x3a\x18\x9c\x18\x10\xbc\x07\x47\xf2\x2f\xb5\xe7\xdb\xd3\x7a\xb0\xe9\x1e\xea\x8f\x66\xfd\xe5\x66\x31\x1f\xe3\xec\x53\xcd\x62\xcf\x75\x5f\x8f\x5d\xc3\x16\x0b\x13\x8a\x5f\x71\x0c\x4b\xc6\xc7\xec\x89\xb0\x26\xa3\xc3\xa1\xd5\x92\xcc\xd8\xbc\xc7\x47\xa5\x75\x53\xe4\xfe\xd8\x6c\x0e\x8e\x30\x1f\xb9\x16\x4e\x12\xb5\x6b\xa5\x01\x65\x7d\x3e\x18\x84\x7c\x64\xac\xa1\xc0\xff\xba\x6d\x89\x7c\xf4\x89\xdc\x40\xd8\xa7\xba\xc1\x86\xa8\x38\x2b\xb3\xc1\x80\x84\xae\x3d\x16\x43\x98\xc3\x37\x20\xc3\x8b\x22\x34\x3e\xc8\xce\x6a\x75\x17\x2a\x73\x58\x24\x06\x83\x50\x44\x3f\xeb\xe2\xb2\x2b\x43\xf2\x97\xb6\x6c\x27\xd7\xcc\x4c\xf1\x05\x91\x8f\xd7\x5a\x12\xfc\x92\x07\x97\x98\xd8\x26\x8f\xb5\x86\xe7\x7e\x2b\xb8\x32\xd5\x8e\x9e\x40\x3a\x55\x4d\x27\x24\x4c\x55\xf0\x30\x49\xa2\xd9\x5d\xa3\xd6\x49\x5e\x3d\x65\xfa\x20\xa9\xec\xb7\x9a\xb8\x56\x5e\xda\x69\xac\x6c\x7a\x38\x9a\xa8\x8f\x8e\xb7\x54\xfe\x10\xb6\xa5\xb6\xf7\xe4\xeb\x12\x21\x80\xee\x54\xd0\xf7\xc8\x43\xcf\x2a\x62\x64\x30\x08\x32\xf8\xa3\x5e\x60\xa5\x5e\x53\x9f\xab\x9b\x26\x89\x0b\x9f\x1f\x1c\xf1\xfa\xfe\x9a\xe1\x20\x1c\x9a\xb1\x07\x8c\xa2\xc8\x7e\x3f\x30\x7f\x97\x00\x36\x35\x73\x9b\xd8\x01\xf1\xd2\xef\xb5\x75\x5a\x5a\x06\x55\x4c\x78\xd4\x17\xf5\x3c\xa8\x26\x15\x9f\x2a\xbf\xa7\x49\x83\x36\x15\xa5\x5f\xb2\xba\xfb\x04\x2e\xbd\xbc\xed\xce\x2b\xc0\xe6\xbd\x86\x2b\xa0\xa5\x69\x3e\x5c\xc4\x5c\x72\x26\x46\x48\x53\xce\x51\x7f\x71\xe7\x08\xae\xc0\x97\x06\x3d\x6d\x37\x1c\x0e\x17\xd1\xed\x4a\x5b\x2f\x99\x97\x44\xab\xe6\x54\x1a\x3a\xa3\xa9\x93\xd8\xf6\xe6\x99\x7c\x77\x9a\x9b\x92\xf9\x7d\xc5\x2c\xa7\xb0\xcd\x5d\xcc\x09\x51\xb6\x0e\xb5\x04\x14\x35\x52\x76\x9d\x5c\x33\xc2\x2b\x22\x51\x84\x45\x44\xa6\x64\x94\xca\x92\x57\x4c\xf6\x01\xa3\xca\xd7\xb3\xdc\x40\xa3\xd9\xfd\x39\x96\x00\x73\x13\xa5\x75\x87\x7d\xbd\xa3\x2b\x86\x8a\x70\x8c\xe9\xe8\x74\x91\x90\x98\xe5\xeb\x13\xa6\x09\x3d\xd4\x14\xc4\x1a\x0d\xc9\xb3\x24\x09\xf0\x2d\xd7\xe1\x66\xc4\x05\xe9\xeb\xcc\x6a\x54\xf4\x13\x7a\x45\xb2\x7e\xca\xc0\x68\x62\xa9\xba\x22\xcb\x7e\xca\xfb\x39\xe3\x84\x2d\x09\x27\xcb\x00\x34\x4c\xb0\xb1\x7e\x48\xd2\x52\xb6\x24\x65\xa0\x81\x6d\xf7\x78\x17\x08\xab\x28\x21\xe2\x98\xc3\x1d\xe7\x2e\x64\xf1\x79\x19\x63\xa0\x3c\xc7\x68\x66\xd9\x9c\xc4\x68\xaf\x4c\xd9\x66\x33\x9b\x23\x9c\x40\x8c\x20\x52\x60\x75\xd6\x4d\xf5\x0c\x18\xbe\x36\xad\x3b\x91\x0e\xe8\xe5\x1a\x52\x6b\x8c\xf7\x5b\x9a\x4b\x42\xac\x9f\x32\x6d\x19\xe3\x28\x0e\x24\xe6\x01\xc5\x01\x65\xfd\x18\x88\xb7\x51\x19\x1d\x61\x69\x9d\xae\xd5\x5d\x85\x73\xa8\xdc\x55\xe1\xb3\x6d\xac\x5d\x5e\x88\x2e\x62\xe8\x3d\x6f\x5c\xf6\x3d\x47\x31\xc6\x95\xea\x24\x93\x9a\x12\xcb\x06\x65\x77\xa2\xa9\x68\x70\xab\x90\x6d\x16\xba\x4e\x53\x4e\xcf\xa9\xae\xa4\x7f\xd4\x1d\xbb\x4b\xe0\xb6\xdf\x4a\x09\x35\xd7\xc5\xf6\x37\xae\x70\x16\xa5\xb0\xc4\x7e\x2a\x5a\xcc\xaf\x5c\x6f\x81\x6d\x8e\x02\x9e\x5b\x36\xb1\x9e\xf2\x7b\x22\x4a\x27\x80\x83\x0e\x7a\xb3\x1d\x9c\x2b\xc8\x50\xa3\x48\xc9\x49\xfa\x0c\x66\x35\x37\x89\xab\xd5\x27\xf5\x90\x01\xae\x18\xd2\x5e\x87\xe9\x96\xab\x22\xaf\x09\x41\x68\x42\xb0\xf6\x84\xf3\xed\x88\x0f\x00\x80\x86\xa7\x7e\x38\x00\xa4\x56\xfd\xe4\xc0\xa3\xb2\x4a\x15\xa5\x1d\x8c\xc7\x3c\xd5\x2f\xa2\xa9\x00\x58\xed\xa9\x2b\x23\xf5\x30\x10\xf5\x7a\x6e\x13\xd0\x97\x5e\x4d\x9a\x91\x50\xeb\xd9\xd6\xf8\xe4\x92\x91\xaa\x99\x11\xf2\x52\x25\x94\x22\x9c\x16\x05\x5e\x45\x74\xf4\xea\xed\x9f\x4f\xfe\xf4\x12\x5f\x78\xac\xc4\x95\x9c\x4e\x4d\xdb\xff\xa0\x14\x78\xd5\xa7\xac\xbf\x98\xfa\x49\x5f\x49\xd2\x68\x92\xfe\x02\x57\xa3\x12\xd7\x5c\x07\x5c\xb7\x82\x02\x4d\x16\xb3\xd5\x3c\xba\xc0\x0b\x84\xb0\xa1\xfc\xeb\xae\x28\x96\x54\xbb\xaa\x32\x1d\x74\x15\x32\x54\x75\x44\x64\xae\xc7\xa1\x09\x40\x32\x8b\xe7\x38\x8f\x24\xf7\x21\x9f\xbd\x53\x87\xc5\xd1\x22\x67\x7e\x1a\x0c\xcf\x86\xc3\x9e\x98\xe5\xf3\xe8\x3c\x54\xdd\x63\x49\x70\x67\x00\xde\x38\x77\xfd\xc8\xce\x8d\x16\xcc\x6f\x93\xcd\x4b\x93\x6b\x82\x7a\x6c\xda\x54\xd3\x9d\xb0\x85\x09\x4a\xa3\x6d\xf9\x67\xa5\xe2\x8e\x63\x61\x2f\x85\xa2\x1c\xcb\xd4\xa1\x60\x67\xa9\xe8\x64\xc7\x09\x05\x4d\x78\x19\x36\x85\x57\xec\xb9\x6b\xfb\x79\xe3\xf7\xdf\x11\x4e\x66\x15\x2d\xd3\xfc\xfd\xf8\xef\x88\xdd\xfe\x3b\xe2\xbb\xff\xce\x83\xf9\xef\x08\x49\xdb\x35\xfd\x77\xe2\x50\xe0\xd9\xed\x27\x72\x33\x09\xe4\x39\xc3\xd6\x7c\x20\x22\x5f\x07\xda\x4a\xdf\x35\xf4\x71\x19\xe1\x0e\xa7\xe9\xb0\xba\x38\xc8\x54\xa7\x60\x70\x32\x18\xdc\x5b\x57\x2d\x38\xb0\x98\x4b\xe6\x5c\xb9\x26\xd1\x9a\x6b\xd2\x8d\x7b\x3a\xd0\x97\x4f\xb7\x5b\xdd\x0d\xad\x1b\xaf\x7e\xdc\x16\xff\xc1\x1b\xe2\xc3\x28\xde\x9b\x41\x44\xea\xd6\x25\x1f\x2f\x48\x3f\xcf\x48\x3f\x5d\xf5\xab\x1d\x85\xc8\x9a\x96\xc4\xfd\x6c\x4d\x16\x74\x45\x89\x96\x08\x1a\x21\x52\x9f\x4a\x8a\x7b\xcd\xc9\x22\x06\xf9\x28\x5b\xf6\xaf\x53\x75\x9d\xb7\x19\x90\x64\x5e\x0b\x92\x51\xff\x9d\x12\x5a\xaa\xc1\x6e\x34\x65\xea\x0c\xc6\x32\x41\xe2\x25\xee\x93\xd1\xf9\xa8\xff\xd7\x60\x28\x86\xc1\x04\xea\x84\xa3\xd1\x08\x99\xe8\x36\x21\xaa\x45\xd1\x0c\x0d\x4d\x55\xfd\x3c\x0c\xd0\x5f\x03\x84\xaf\xb4\x5a\x35\x5e\x2e\x5f\xd3\x4c\x10\x46\xc0\x7f\x08\xcc\x74\xe5\x4b\x0e\xe6\x6e\x58\x60\x1b\x46\x0c\x1f\x1c\x6d\x6d\xa5\x1e\xe0\x97\x95\xb6\x0e\x17\x53\x6b\x7d\xa2\x53\x90\x9b\xd6\x96\x19\xac\x0e\x39\x46\x05\x76\x2d\x48\xaa\xcf\x74\x39\xd1\xa8\xf6\x5b\xb2\x17\xf5\xc5\x54\x62\xa2\xd6\xd6\x59\x83\x2e\x63\xbc\x7f\xd2\x3a\x74\x7d\xb5\x91\xf7\x6b\x39\x8d\x7a\x49\x63\x32\x8d\xed\x6b\x4c\xc9\xb2\xcb\x0f\x29\x13\x30\x83\x44\x42\x8f\xea\xa1\xaf\x1b\x3c\xd7\x33\xd6\x04\x6b\x05\xc4\x86\x9c\x07\x26\x55\xa2\xf8\x8c\x08\xc9\xb3\x52\x91\x19\x56\xf6\x8a\xc6\xfd\x1f\xaa\x34\xd4\x0f\xa3\xfe\x07\x42\xec\x15\xa3\xc0\xe4\x2a\x7b\xae\x55\xca\xfb\x4b\x22\x62\x9a\x64\xa3\x00\xc4\x10\x3b\x10\x90\xcf\x37\x12\x04\x70\x67\xd1\xb8\x83\xc8\xba\x22\x61\x7e\xc8\x78\x3f\x75\xb7\xab\x84\xc6\x99\x93\x18\x58\x15\xbf\x91\xf3\xb0\xa4\x7e\xab\x3f\xd5\xb9\xa8\x7a\x4d\x8f\x1d\x9f\x67\x7f\x55\xe3\xa7\x0f\x35\x5f\x2d\x13\x9f\xef\x55\xe9\x84\x6d\x3a\xf3\xb8\x1b\x1d\x58\x92\xcf\x55\x57\x0d\x06\x95\xef\xc6\x13\xbb\x68\x77\xf4\xea\x34\x58\xdf\x3b\x98\xe3\x4d\xe5\x1b\x74\x1a\xa8\x98\x1b\xc1\x24\xa0\xcb\x84\x04\x05\xaa\x71\xb0\x5a\x38\xa5\xd8\x18\xf8\xc1\x80\xb1\x55\x7e\x83\x8e\x06\x19\x3b\xe0\x32\x11\xb5\x08\x18\x49\x9c\x09\x68\x53\x72\x22\x6e\x64\x11\x54\x89\xd1\xd4\xac\x57\xed\xa8\x8c\xf7\xd4\xac\x59\x46\xca\x41\xf5\x30\x4f\x9e\xe1\x4b\xf7\x00\x54\x0d\x00\xd5\xac\x6b\xa3\x6a\xa0\x4a\x60\xa8\x66\x45\x13\x33\x03\x55\xe3\x45\x79\x7a\x34\x56\xc1\xa8\x1e\x47\xaa\x59\xd7\x09\xa3\x81\xaa\x11\xa6\xaa\x75\x6b\x21\x80\xca\x33\x98\x8c\xb1\x05\xec\xc9\x18\x97\x01\x31\x26\xe3\xad\x81\xa0\xc8\x66\x73\x5b\x60\x16\x89\x91\x92\xbb\x81\x75\x11\x27\x19\x11\x4a\x6d\xcd\x22\xb6\xd9\x18\x67\xac\x67\x49\xab\x3f\x96\x44\x73\xe2\x82\x40\x1c\xe8\xa0\xc1\x95\x96\xcd\x95\xbe\xc3\x9a\x22\xe9\x61\x42\x64\x22\xb9\x75\xf4\x1c\xaa\x88\x6b\x0c\x35\xa5\x79\x65\x63\x08\x51\x8f\x45\x28\x41\xbf\x94\xeb\x28\xb8\x2f\xa7\xd0\x70\x18\x52\x54\xb0\xbc\x00\x94\x64\x2a\x10\xd9\xb6\x70\x63\xf5\x80\x64\xbe\xa0\x65\x5f\x27\x24\x19\x84\x58\xd9\x8e\xec\xaf\x63\x2a\x0e\x57\x29\xbf\x07\x5f\x78\x27\x1a\xc4\xb7\xca\x31\xd6\xc3\xef\x7d\xe7\xf3\x3a\xf3\x79\xdf\x5c\x9c\x17\x09\xb9\x3f\xa7\x1c\x10\x9d\x27\x25\x09\xcc\x22\x83\x2c\x11\xb6\x2e\x50\x99\xfe\xdc\x37\xb2\x76\xae\x0d\x78\x6d\x7d\x2b\x36\xa9\x5b\x3f\x3b\x8d\x12\xfd\xad\xd0\x01\x55\xfe\xf5\xd4\xd4\xb8\x4d\x37\x8f\x6e\x75\x30\x18\x62\xc5\x2c\x69\x48\x8c\x54\x00\x7c\x20\x9b\xb2\x00\xa0\xea\xf5\xfd\x0e\xb5\x22\xc4\x1a\x6a\x7d\x4c\x75\x08\x72\xa5\x3b\x42\x2a\x7e\xb7\x4d\xb6\x54\xe3\xd3\x89\x9c\x5c\xe6\x97\x78\x41\xd4\x05\x3d\xbd\xcc\xd0\xa2\xda\x5c\x3b\xcc\x76\x0b\x0e\xe4\xd8\x36\x04\x05\x42\x65\xe2\x27\xeb\x33\x15\x11\x2c\x0a\x1b\x1e\x35\xc3\x31\xc2\x69\x98\xe9\xd5\x37\x8c\xcf\xea\x1b\x01\x16\x68\x1e\xfb\x7e\x78\x90\xec\x18\x55\x67\xac\x1d\x06\x65\xda\xe8\x0b\xb6\x26\x93\x5b\x93\xb7\x6e\x0d\x5c\xf0\xca\xe6\xf0\x7b\xd8\x1c\xae\xd9\x95\x48\x82\x9f\x65\x42\x23\x81\xf9\x17\xee\x53\x29\x74\xc5\xd4\x85\xc5\x02\xa7\xd1\xc1\x91\x0b\x9f\x1c\xdd\xa6\xf2\xce\xd0\x50\x47\x40\xde\xb6\x61\x1c\xf9\x92\x0f\x19\x14\x2e\x0f\x22\xd5\xc6\x43\x4b\xa5\x05\x30\xa2\x81\x69\xb8\xad\xb4\xc6\x84\xcb\x05\x57\x66\x6d\xb6\x69\xc4\xc9\x65\x7a\x45\xaa\x6d\x79\xa5\x61\x61\x6c\x96\x75\x8b\x94\x11\x4f\xef\x4e\xdf\xe9\x66\x63\xbb\x4f\x57\xab\x46\x77\x25\x70\x24\x5b\x81\xc3\x6f\x2b\xda\xd1\x0a\xeb\xa7\x34\x4d\x48\xcc\x7a\x55\x08\x4b\xef\x01\xc2\xd2\x12\xc2\x52\x89\xe0\x22\x81\xd3\xd1\x9a\x93\x25\x5d\xc4\xc2\x7a\x6e\xfa\xac\x2e\xf8\x94\x7b\x6d\x26\xa2\x28\xe2\x05\x4e\x1f\x08\x40\x95\x4e\xac\x34\x76\x34\x67\xa3\xd0\x33\xe8\x7a\x79\x73\xfe\x21\x45\x36\x97\xc5\x2e\x18\xa6\x08\x1f\x8c\x0b\x50\x1a\xd3\xd0\x36\xab\x81\xa7\x11\x4a\x29\xd8\x91\x0f\x83\xb2\x3a\xa8\x80\x4e\x0d\x2c\x6d\x1b\xee\x36\x28\x2c\x00\x6d\x25\x3b\x4d\xc6\x32\xc5\x0d\x1c\x42\x9a\x91\x1d\xa6\x71\x26\xfe\xfe\x7d\x87\x63\x52\x53\x50\x81\xf7\x23\x6e\x62\x08\x49\x06\xe6\x87\x72\x76\x3f\xf4\x05\xb9\x5c\x27\xb1\x20\x7d\x35\x0f\x60\x7d\x94\xdd\xf8\x32\xa8\x05\x31\xd4\x7e\x1d\xb3\xb1\x11\x31\x1d\x70\x79\xeb\x2c\xe7\xa3\xa2\x5a\x35\xc2\xfd\x23\xe3\x3d\xaa\xb6\xc3\x95\x21\xce\xb8\x35\x86\x60\xc5\xdc\xb5\x3e\x54\xa0\xa3\xfa\x19\xa9\xa9\x85\x1c\x15\xa8\xb7\x7b\xef\xad\xb0\xf1\x3e\x36\xbe\x42\xfb\xb3\x4a\x5a\x38\xdf\x42\xed\xd8\xe5\x5f\xb2\xd9\x5d\xc8\x40\xdd\x81\x3e\x40\x86\xb7\xef\x0d\xeb\x06\x97\xf5\x44\x18\x0f\x93\x55\xd0\x37\xc1\x06\x5f\x8e\x59\x14\x4a\x7c\x56\x35\x4e\x13\x68\x2a\x26\x8e\x59\x99\x40\x08\x73\x95\x18\x82\x7a\x12\x43\x70\xad\x56\xb7\x2a\xc2\x7f\x9c\xf9\xfd\x0e\x86\x74\x4b\x96\xd5\xee\xe1\x2e\x4b\x7b\xdb\x2f\x31\xb2\xd5\x91\x37\xf7\xcd\x15\xb5\x9d\xcb\xfe\xc2\xe0\x9b\x98\xe2\x14\xc7\x38\x6b\xbb\x7e\x6e\xa4\xb0\x9a\x00\x85\xdc\xe9\x7a\xad\x52\x4e\xae\x08\x8f\x9a\x3c\x51\x8d\xab\xaa\x31\x64\x64\x24\x94\xc7\x64\x99\x9d\x4a\xe7\xaa\x2a\xa3\xcf\xb5\x26\xac\xd2\x01\xad\x3d\xe1\xe8\x72\x5f\x7e\x23\x85\x63\x7e\x66\xa3\x25\xcd\xd6\x49\x7c\xa3\xa8\xef\x61\xd0\x0f\x21\x9c\x70\x80\x19\x28\xc1\x2b\xa6\x22\xba\x49\xc5\x48\xa4\x66\xc3\x51\x33\x0e\xda\x62\x19\x14\x8e\x71\xd6\xc8\x99\x81\xb4\x05\x1c\xa6\x65\x1c\xcd\xba\xc8\x95\x58\x93\x93\x2d\xf6\x26\x4d\x63\x13\xc8\x8e\x54\x5b\x7c\x44\xb0\x9f\x99\x17\x7a\xf9\xe6\xe0\x5c\x8d\x27\xa4\x48\xb6\xcb\xea\xba\xdf\xce\x82\xbe\xc5\x3d\xdd\x73\x77\x68\x33\xcc\x69\x63\x8b\x24\x68\xa6\xf2\xbf\xd5\x04\x5a\xa9\xf3\xa3\x12\x57\x91\x97\x7f\x9b\x14\x59\x10\xaf\xfb\xc2\xa4\xd5\x4a\xe1\x1f\x5c\xde\x12\x61\xfe\xaa\x4b\x36\xe2\xca\xcf\xba\x2c\x23\xae\xfc\xf4\x48\x2e\xe2\xfa\x17\xe7\x4e\x0b\xf3\xd7\x0e\x8c\xac\xa4\x72\x7f\x97\x0f\x63\xa3\x78\x07\xaa\x7e\xa0\x97\xf3\x16\x34\x13\x9e\xe1\x70\x39\x5b\x57\xa8\xb0\x23\x0b\x96\x7e\x4f\x3a\xbd\xf7\x8e\xcd\x4c\x55\x18\x24\xfa\x94\xf5\x49\x8b\x71\x94\xac\xaa\x97\xc2\xf6\x32\x8e\x92\xaf\xaa\xa4\x6a\x8a\xba\x74\x55\x98\xb8\x05\x91\xd6\x24\xab\x10\x5a\xe2\x2e\x48\x9e\x66\x2f\x55\xfe\x13\xd5\xd6\x27\x4d\x23\x83\x81\xd7\xf9\x52\xb2\x9c\x5e\xbb\x72\x22\xf9\xcb\xcd\xc6\x5b\x52\xe7\x88\x5b\x3a\xf0\xf0\xbf\x20\x9d\x7b\x66\x98\x49\x20\xf7\x1a\x76\xc5\x0d\x69\x5d\x27\xe7\xc6\x1f\xa7\xfc\xf0\x47\xe5\xdc\xf8\x63\xc5\xb9\xf1\xc7\x9a\x73\x23\x88\xb5\x47\xd7\x34\x49\x8c\x1d\xb3\xda\xa2\x66\xc1\xc8\xd8\x9b\x01\x8f\x96\x65\x24\x3b\x35\xf6\xca\x3c\x3b\x3d\xb5\xb9\x06\xdd\x36\x38\x8b\x66\xf3\x5e\xe5\x53\xe4\xd1\x7b\x2b\xb2\xcc\x86\x31\x12\x4f\x18\x10\x62\xd9\x4c\xcc\x43\xd4\x8b\x7d\x12\x31\xbc\xcf\xdc\xa2\xac\xd8\xa7\xba\x8a\xf9\xe2\xea\x4d\x66\xac\x8c\x2f\x4a\x91\x4a\x3d\x68\x70\x5d\xf3\x99\xd1\xcf\x3e\x53\x01\xca\x2e\xeb\x09\x07\xcb\x9e\x19\xba\x35\x74\x33\xcf\xd9\x28\x81\xd0\x4a\x0c\x1c\x9a\x7b\x65\x3c\x86\x4a\x12\x3c\x67\x56\x4e\xcc\x07\x65\x35\x29\x50\x81\x99\x9c\x9a\x71\x14\x8f\x72\xc0\xd0\xd7\x6d\x02\xe5\x5c\x0b\x94\x79\x7c\xfd\xd1\xb3\x1a\x83\x0a\xc2\xdb\x02\xa7\xd8\x15\xa9\xd6\x64\x00\xfe\x88\x12\xc2\xe1\xe6\x63\xcc\x47\x3a\xf2\x99\x1c\x11\x79\xe2\xe9\x5e\x53\xb6\x4c\xaf\x47\x12\xfe\xf9\x2b\x26\x08\xbf\x8a\x93\x90\x82\xce\x07\x13\x8f\xd0\xd4\xb3\xf1\x9e\xcc\x88\xf6\xe5\x34\x79\x06\xab\xdb\x49\x66\xe9\x3c\xbc\xf5\xc4\xae\x50\x9e\x49\x51\x14\x6f\x36\x2c\x8a\xb2\xa9\xb0\x21\xf2\x38\x9a\x08\x13\x02\x8a\xa3\xa2\xc0\x63\x84\x6d\xf7\x05\x76\x3c\x97\x4c\x93\xa8\xe1\x41\xee\xc6\xec\xab\x06\xe0\x23\x90\xed\xcb\x35\x84\x88\x2a\x3e\x7d\x9b\x4d\x8d\xd9\x51\xce\x4b\x64\xbb\xb2\x22\x65\x57\x84\x8b\x7e\xce\x14\x1e\x05\xff\x02\x50\xeb\x88\x54\x1b\x70\x04\xa8\x67\x34\x37\x21\x29\xd3\x61\x88\xe8\xe8\x58\x3c\xa9\x23\x1a\xb8\x9d\x75\xdf\x45\xc9\x30\xe9\xf9\x1c\x44\xa5\x1d\x2b\x97\x0f\x09\x43\x7a\x11\xe5\xde\x5c\xc4\x99\xe3\xc7\xa5\xc4\x5f\x72\xd3\x07\x83\x90\xcc\xf8\x3c\x62\x33\x3e\xb7\x82\x76\x22\x37\x45\x99\xfb\x46\xc1\xa9\x76\x71\x3f\x55\x6e\x3b\xa7\xa7\x81\x93\x02\x75\xa6\x1f\xc4\xf3\x84\x5e\x5e\x12\x6e\x79\x60\x65\x8f\x6a\x1f\x75\x9e\xe6\x82\xb2\xf3\xc3\x0b\x71\x99\x9c\xc5\x3c\x7b\xf4\x89\xdc\x5c\xa7\x7c\x99\x3d\x5a\x28\xb6\xfe\xd0\xdf\xa0\xb5\xde\x5c\x47\x7a\xe6\x66\x8b\xa8\x44\xb8\xab\x90\xcf\xe8\x9c\x1a\xee\xe5\xf4\x34\x49\xe3\x25\x9c\xf6\x39\xcd\x04\xbf\x41\xb7\x76\x59\x8d\x1a\x90\x46\x1c\xda\x23\x5d\x47\xc5\x06\x29\x4c\xa8\xfb\x9a\xa8\x0e\x0c\x82\x17\xa7\xf6\xeb\xe9\x69\x80\x25\x3a\x6e\x8a\xd1\xa2\x80\x91\xcf\x22\xc0\x59\x14\x92\xba\xef\x75\x14\x00\x20\x05\x98\x34\x62\x71\x44\x26\x95\x2d\xea\x91\x86\x13\x76\xa4\x25\x3c\xb2\x61\xc3\x7e\x52\x2f\xae\xfe\xb9\xe7\x10\x6f\x35\x1c\x83\x6e\xdd\x6c\x1a\xb9\xbd\x38\xf0\xd0\x47\xc4\x47\x00\xad\x6f\x1e\xc9\xff\xf8\x49\x38\x5d\x28\xf7\xe5\xc1\x92\x7c\x3a\xbd\xaa\x9c\x82\xa5\x32\x37\x2a\xbd\x12\xc9\x34\xb0\xd7\x30\x98\xc8\x5b\x8c\x36\x1b\xed\x81\x48\xca\xa4\xbe\xf2\xf9\xad\xcb\x31\x06\x83\x32\xb5\xa0\x72\xeb\x96\xad\xad\xec\x54\x2e\x30\xe4\x0d\xd4\xda\x27\xa1\x66\xb4\xdb\x27\xc5\x6b\x93\xe2\xce\xa4\xb8\x19\x81\x6b\x0f\x4e\xfd\xbc\xe5\xc6\x9c\x5d\x25\xe2\x0c\xf3\x28\x1d\x81\xbc\xe3\x64\x25\xdb\x3f\x8d\xc6\xc8\x86\x6c\xcf\x01\x35\x54\xd7\xc3\x11\xcc\x27\x8b\xb8\x16\xf0\x20\x4c\x01\x6b\xe4\x25\x25\x70\x78\x98\x3f\x8d\xc6\xc7\x28\x9b\xe5\xf3\x88\x84\xf2\x1f\xbd\x94\x82\x24\x19\xe9\xd3\x55\xd8\xd8\x12\x8e\x90\xec\x13\x76\x43\xd5\xed\x99\xba\xdc\x55\xf0\xbe\x88\x05\x41\x19\xbc\xd1\xf2\xcf\x10\x64\xd6\xf2\x19\x0b\x91\x6a\x71\x9b\x45\xb7\x4a\x0f\x6a\x53\x4f\xcb\xe9\x25\x12\xa1\xf1\x6e\x08\x8d\xe3\x04\x0d\x06\xc1\xe9\xa9\xdc\xee\x64\x94\xe5\x67\x19\x38\xd0\x84\x63\xfc\x58\x62\xba\x6c\x96\xcc\x23\x3a\x95\xd7\x3c\x31\x2b\x9b\xc8\xbf\x51\x41\x21\x01\x0c\x50\x22\x1c\xc2\x8f\xc9\xbf\x1c\xe5\x40\x56\x48\x38\xc3\x7c\x3a\x9b\x2b\x63\x09\xfb\x17\xb2\xb1\xe3\xff\x59\xdc\x31\xdb\x6f\x3b\x5c\xe8\xaf\x24\xda\xac\x9a\xed\xc9\xd1\xdb\x53\xed\xae\xb7\xca\xfe\x2c\xaa\xea\x80\x9f\xbe\x3c\x37\x6a\x6b\x03\x35\x87\xdb\x2a\x03\x77\x4e\xbc\xd1\xc1\xcd\x5e\x14\xdb\x3a\x7c\x6e\x4f\xa4\x53\xa7\xcc\xe9\xb4\xb1\x87\xcb\x58\xc4\x87\x97\xe9\x92\x24\x87\x2b\x1e\x9f\x03\x89\xf1\x28\x96\x98\xe3\x91\xf9\xed\xdb\xdc\x2d\xcd\xc0\x48\x11\x42\xea\x6e\xab\x5b\x76\xbe\xad\x96\xe4\xb1\x1f\x19\x64\x72\x98\xae\x0e\x25\xac\xee\x9b\x5e\x48\xe5\xf3\x53\xcf\x79\x25\xf8\x08\xb8\x75\x05\x65\xae\x6f\x1d\x39\x24\x13\x29\x27\x01\xc2\x59\x2d\x54\x89\x1c\x1a\xe1\xbc\xd6\xc7\x5a\x39\xe0\x20\x9c\x54\x0b\x98\xb6\x7a\x34\x38\xcd\x0a\xd5\x2b\x09\xcc\x39\x5e\x19\x0e\xa3\x32\x8c\xc4\xe3\xe1\x18\xb3\x11\xcd\x7e\xd6\xbb\x81\x00\x95\x2f\xb4\xba\xe9\x22\x52\xc5\x92\x82\x67\x71\xf2\x46\x6e\xdc\xcf\x29\x47\xe1\x02\x8d\x4e\x61\x61\xbd\x8b\xcd\x06\xea\x64\x44\x98\x3e\xc0\x6f\x17\x85\x0b\x9c\xe2\x44\xe1\xf6\x70\x11\x89\xd9\x6a\x8e\xa6\x74\x5a\xaf\xfc\x22\x16\xb1\xac\xcb\x51\x19\x0f\xcd\x31\x69\x83\x82\x85\x9a\x86\xba\xad\xe5\x4c\x63\x9c\xc9\x21\x70\x8e\xcb\x87\x72\x51\xec\x2f\x4b\xd6\x3a\xde\x66\x5e\x6f\x61\xdd\xc1\xf5\x01\x68\x83\x3c\x96\xf2\x4b\x10\xe4\xc8\xc9\xfb\x10\xa8\x56\x1f\x37\x62\xac\xa6\x4c\x10\x95\x16\x51\xd9\xd1\x9f\xaa\x25\x7d\x60\xf1\x3a\xbb\x48\x5b\x23\xf9\xb7\x26\xcf\xaf\xb5\x0f\x55\xf8\x5a\x48\x65\xf6\x1c\xe2\x9d\x2c\x9f\x09\xc1\xe9\x59\x2e\xaa\x36\xea\xde\x5e\xc9\xa8\xa5\xa5\xee\x36\x5e\xc6\x6b\x41\xf8\x0b\xba\x7c\x9e\x5e\x5e\x52\xe1\x09\xde\xbc\x33\x45\x68\x23\x33\xbd\x8a\xd8\x38\x6a\x74\x1e\x92\xc1\x80\xcc\xd8\xbc\x3e\xb4\x4a\x8f\x71\x2f\x23\xd7\xc6\x55\x5c\x16\x81\x01\x2f\xe2\xec\x05\xe5\xe2\xc6\xd9\xbd\xba\x3d\xf4\xff\x21\xf1\xe2\x62\xd4\xac\x18\xe0\x40\xcb\x95\xe3\x44\x07\x0e\x6f\xb3\x0f\xdd\x32\x67\x9b\xb1\xe1\x19\xbb\x09\x03\xcf\x28\x12\xc7\xf2\x54\x29\xdd\xb7\x9c\xf1\xee\x7d\x51\xec\x57\x18\x34\x3b\x0b\x50\x81\x33\xc2\x9b\x22\xcb\x4a\x70\x54\xdd\xdc\x56\x94\xad\x38\x59\x27\xf1\x82\x3c\x57\xe0\xde\x08\xd0\xa9\x98\xbb\xf6\xcb\x91\x46\xfa\xfe\x18\x62\x92\x60\x32\x14\x08\x33\x47\x69\xa8\x87\x80\x2e\x53\x54\xe0\x78\xb9\x34\x88\xa1\x35\xd1\x32\x98\x13\x68\xa6\x58\x4e\xf2\x32\xbd\x22\x3b\x1b\x19\x93\x02\xdb\xae\x8a\x85\x3c\xd6\xca\xf5\x85\x99\x07\xa0\x12\x03\xad\x7c\x00\x9a\x3b\xa1\xdf\x00\x1a\xd5\x51\x5e\xc8\x1d\x69\x8b\xf2\x8a\xcd\xb3\x0b\x3d\x37\x8a\x0a\xec\x88\xc5\xee\x00\x0a\x8d\x2b\x02\x48\x41\x0b\xd3\xc0\x6c\xc2\x75\x51\xd7\xe0\xbd\xbb\x55\x51\x20\xc7\x6b\x22\xdd\x87\x38\x28\x5f\x79\x3f\xe5\xb5\xfd\x5d\x87\xd6\x75\xeb\x80\x2f\x26\xc1\x7a\x2e\xf8\x02\xf7\xf3\x8e\xa7\x9f\x6f\x6c\x6c\x89\x91\x21\x9c\xf0\xad\xf2\xe8\x2e\xfd\x15\xbe\x24\xb9\xf2\xe9\x9a\xb0\x25\x65\xe7\xf2\xc9\x31\x5c\x5b\x23\x1d\x41\x0d\xf1\xcc\xe6\x12\x5e\xf5\x2d\xdc\x69\xb4\xae\x57\x04\x07\x0d\x04\xf1\x96\xd7\x48\x00\x4b\x06\x08\x42\xe4\xeb\xc6\x33\x68\x83\x80\x38\x93\x3e\x90\x2c\xf1\x6d\x73\x2d\xa4\xe7\xc6\x48\xac\x3c\xad\xda\x37\xed\x32\xfe\x44\xac\xfa\xdf\x13\x4a\xd0\x62\x8e\x46\x82\x93\xfa\x86\x48\x24\x62\x51\xc7\xd8\x79\x9f\x19\x0e\x14\x97\x1a\x20\x9b\x1d\xda\xb3\xe3\x45\xd1\xe1\xf1\x27\x9d\xdf\x75\x91\xaa\x65\x75\x7b\xb4\x77\x3d\xc1\x3a\x94\xa8\x3d\x91\x90\xa0\x46\x88\xd9\xc6\x86\x54\xa6\xb1\xf5\xa9\x95\x13\xe8\xf0\x2e\xce\xe6\x9d\x5e\xc0\xf1\x41\xe4\xf8\x57\xc5\x5c\x1b\x07\xda\xa9\x34\x68\xa7\x5a\x97\xa8\xe3\x03\x98\x11\xa1\xc3\xd5\x84\xbb\x7b\xdc\xfd\xdc\x39\x27\x06\x18\x4a\x3f\x71\xf2\x40\xe0\xe8\xf6\xba\xd8\xbd\x5a\xbc\x9b\xda\x7b\xd1\x7c\x49\x14\xb5\xdf\xf3\xa4\x87\x6a\x90\x07\x8a\xce\x36\xb8\xf0\x05\x5d\x42\x0d\x04\x18\x10\x0c\x13\x27\xf5\x0a\xef\x49\x46\x04\xd2\x76\xe6\x26\x38\xc8\x4b\x89\xd4\x32\xea\xf3\xf7\x54\xf3\x0c\x83\xa1\x77\xfe\x23\xba\x0c\xd0\x30\x40\x41\x15\xfb\x37\xf5\xb9\x7e\xec\xef\x90\x53\x77\xc1\xfc\xfb\xf0\x88\x75\x36\xb4\xc3\x8b\xf2\x15\x79\x4e\x23\xec\xfb\x52\xe9\xc7\xca\xe5\xcd\x22\x32\x82\x55\x47\xe5\xf7\x67\xb5\xdf\x6e\x80\xbb\xec\x9f\x47\xf8\x54\x8b\xdb\x56\x52\xa3\xc1\xe1\xe5\xea\x30\x18\x92\xe3\x50\x0c\x06\x21\x1f\x46\xc1\xbf\x05\x40\x73\x0e\x06\x6c\xb4\x4e\x93\x9b\xcb\x94\xaf\x2f\xe8\x02\x95\xa5\x21\x1b\xc9\x7e\xff\x44\x6e\x36\x1b\x4d\xb3\x95\x04\x6a\x25\x84\x9b\x11\x1f\x28\x9b\x5a\xc5\x56\x12\x4c\x33\x7b\x61\x27\x07\x63\x5c\xf2\xe0\xf2\x97\x61\x38\x45\x24\x36\x9b\xdb\xc2\x06\x87\xac\xa1\xdb\xdb\x8a\x30\xc6\x92\xa0\xe1\x18\xa7\x1e\xae\x1d\x2e\x3e\x36\xf6\xf2\x23\xa0\x40\xb1\x76\x83\x28\x95\x6b\xa7\x16\x4a\x67\x64\x1e\x71\x78\xe3\x3d\xd1\xef\xe9\xf6\x51\xe2\xad\xa3\xc4\x11\xd7\xfe\x17\x38\x96\x0f\x2e\xad\x8d\x1a\x17\x05\x1a\x5d\x12\x11\x4b\xb2\xd6\x6e\xe5\x42\x09\x5a\x2c\xa8\xa8\xad\x75\xa6\x46\xb1\x0d\xac\xd2\x32\x39\x0a\xbe\x05\x61\x26\x87\xc5\x01\xdc\x02\x90\xaa\x64\xee\x04\xe2\xb9\x12\x98\x9b\xd9\xe6\xae\xa8\xd9\x0a\xba\x06\x83\x83\x64\x9a\x44\xf9\x24\x1f\x0c\xf2\x83\x28\x4a\xa6\x61\xb2\xd9\x84\x49\xc4\x43\x39\x0f\x84\xb3\xd1\xa9\xbc\xfb\xb3\x78\x1e\x25\x38\x71\x1e\xe6\x1c\xa1\x49\x12\xe5\x38\x29\xea\xf7\x7d\xd7\xf4\xcb\x1d\x54\x80\x60\xe4\xef\x31\x9a\x86\x6c\xb3\x09\x59\xa4\xdc\xc7\x90\x12\xb2\x98\xa7\x2f\x46\x68\xa2\x35\x00\xf1\x60\x10\xaa\xa4\xff\xe5\x04\xc5\xfc\x20\x8a\xd8\x66\xc3\xdc\xe8\xb6\xac\xfd\x61\xa1\x2d\x0f\x0b\x83\x57\x85\xb6\xbc\x2a\x98\x15\xce\x59\xae\x42\x1d\x2f\xbd\x94\x20\x82\x95\x8a\x9a\xd2\x54\xff\x3b\x63\xf3\x96\x68\x4d\xa5\xbe\xc2\x83\x2d\xec\x19\x81\xe6\x1c\x49\x4e\xca\xfd\x10\x96\x5a\x84\xc0\xfd\x1e\x80\x76\xb3\x5e\x5b\xe9\x0f\x64\x5d\x05\x2e\x07\x8e\x1a\x05\xa0\x84\x46\xb3\x79\xd1\xea\x8d\x51\xed\x6c\x4a\x27\x60\x7a\x0c\xe4\x73\x48\x41\x0c\x14\x8e\x61\x1f\x0a\x07\xfb\x56\xaf\x9b\x05\xf7\x3c\x0c\xca\xe7\x85\x60\x8d\x1c\x90\x7b\x09\x58\x29\x88\x8c\xdb\xa0\x88\x83\xef\x51\x18\x63\x2a\x2f\x81\xd1\x19\xe3\x3c\x8a\xdd\x5b\x60\x53\xda\x1e\xe4\x83\x81\xea\xc9\x11\x13\x66\x68\x9a\x47\xd9\x24\x1b\x0c\xb2\x83\x28\xca\xa7\xf9\x34\x8c\xf5\x99\xd1\x79\x94\x63\x68\xd0\x90\xf3\xe5\x38\x43\x68\x12\xe6\x6a\x66\x75\x81\x1e\xc3\x04\x5e\x3c\x81\x25\x02\x71\x7a\x43\x93\x3c\xca\x70\x5e\x54\x97\x09\xc6\xa6\x72\xa1\x79\xc4\x34\x9a\x49\xda\x96\xac\xc2\x89\x66\x48\x49\x3c\xeb\x4b\x41\x7a\xab\x9a\x42\xcc\x0c\x60\xce\x82\x40\x8c\x2a\xd7\xaf\x2a\xab\x8c\x61\xda\xbd\xd8\xbf\xb8\x1c\x2b\x80\x97\x8b\x53\x0a\xaf\x38\x72\x91\x4c\xa2\xd7\xcb\xe7\x10\x72\xb4\xe5\x9a\xc1\xba\x5b\xaf\x19\xe4\x49\x88\x95\x91\x45\xf5\x65\xf7\x02\x94\xd8\x6c\x42\x11\x49\x00\x5a\xb8\xa0\x75\xa8\xe0\x1c\xb2\x81\x54\x41\xab\xbc\xac\xdc\x0a\x4b\x8d\x0e\x45\xbf\x6a\xf6\xe1\x52\x2c\x2f\xd5\x61\xcd\xe4\xdd\x87\x69\xc5\xad\xd3\x71\x82\x42\xb6\x69\x58\x33\xc9\x01\x4e\xc1\xe8\x9c\x68\x0c\x80\x26\xb5\x55\x98\xc9\xa3\xea\xd3\xc0\x9b\x9a\x0a\x3b\xf5\xda\x9c\xb9\x9e\x33\x31\x73\xae\x12\x4f\x6d\x9c\x73\x3b\x6b\xbd\xed\xa1\xd4\x72\x74\xf3\xdc\xdd\x96\x80\x09\xa3\x01\xfd\x36\xe2\x24\x5e\x9e\xb0\x44\xf2\x1d\xdd\x08\x68\x30\x09\xf0\x2b\x54\x1e\x29\xc1\x53\xe5\x13\x34\xaf\x7e\x3a\x5c\x73\x7a\x05\xcc\x5b\xa5\xad\x61\x90\x78\xf6\xe8\x6f\x99\x63\x52\xf1\xc0\xe4\x72\x8d\x48\xef\x6c\x7d\x7e\x07\x4a\xf9\x3f\x3f\x9c\xbc\xfd\x60\x97\x19\x91\x11\x1c\x58\x44\x46\x1f\xe4\xbe\xb9\x74\x71\x1e\xf1\xd1\x2b\xf7\x54\x4b\xd2\xb3\x57\x27\xff\x4a\xdf\x1b\x31\xef\x81\xe5\x64\xcd\xd7\x8a\x44\x6d\x5c\xa2\x05\xdb\x32\xaf\x78\xd5\x9f\xb4\x54\x5c\x70\x92\xae\x09\x0b\x6f\x5b\x65\x94\x65\x98\x72\x46\xae\xfb\xb5\xe9\xcb\x07\x36\x4f\x12\x45\xab\xc9\x47\xc9\x06\x61\x35\xb0\xba\x48\x99\x88\xa9\xfc\xd0\xb3\xc9\x89\x54\x4a\x32\x27\xc6\xea\xe5\x5a\xdc\x60\x36\x3a\x55\xd9\x36\x41\xf8\xa5\x81\xdc\xfc\x02\xb3\x98\x25\x90\x42\x26\x20\x34\x83\x90\xa2\x64\x91\xf2\xa5\x63\xe8\x35\x18\xd0\x1a\x8e\x05\x5a\x51\xa7\x70\x08\x03\x79\x2f\x24\xfd\x46\x47\xa7\xe5\xbd\x01\x27\xca\xc2\xa5\xa7\x6b\xa2\xa9\x40\xee\x33\x55\x51\x6c\x4c\x32\xb9\x43\x3d\xfd\xc0\xb1\xdc\x38\x38\x72\x45\x53\x97\xfa\xde\x3a\x34\x58\x5c\x37\x57\x10\xae\x0c\x81\xff\x5c\xd3\x54\x58\xda\xbc\xb1\xb1\x98\xa9\xcf\x56\xb6\x04\xe7\xf1\x36\xbe\x24\x2e\xc9\xa7\x55\x02\x56\x1a\xcc\xd0\xd4\x77\xb2\x64\x94\xa4\xe9\xa7\x7c\xed\x08\xe5\xf9\x44\x32\x33\x8d\xc0\xd6\x6c\xca\x26\xf6\x47\xd8\xd2\xd2\xde\xc2\x00\xa1\x29\x9b\xb4\xd5\x32\xfb\x07\x61\xd7\x98\xc9\xd0\xb2\x45\xfa\x21\x31\x19\x6b\x42\xee\x36\x09\x98\x1b\x20\x77\xab\xc0\x54\xee\x66\xdc\x86\x71\xcd\x36\x68\xdc\xf0\x89\xdc\x64\xa1\xcb\xf5\xa0\xa6\x48\x9b\xa1\x5b\xa0\x4e\xc5\xe8\xb4\x14\x4d\x80\x71\x1b\x9b\x47\x92\x84\x83\x88\xb9\x77\x95\xbe\xf7\x6c\x60\xdd\xd6\x39\x63\xc7\x10\xd5\x31\x5f\x11\x9a\x64\x2e\xe7\x0e\xa7\xe8\x10\x71\x62\x2e\x39\x56\x56\xca\xe3\xf1\x92\x24\x44\x90\x7e\xbd\x56\xa5\xbf\x25\x10\x6b\xaa\x2f\xcd\x21\x20\x87\x05\xb2\x70\xbf\xd9\x30\x97\x35\xca\xcc\xf7\xf6\x31\x4d\x6f\xbe\xd3\x7f\x9e\xc4\x59\x16\xde\xae\x28\x49\x96\x0d\xc1\x62\x03\x0c\x24\x02\x7b\x13\xaf\x2b\x97\x83\xc4\x8b\x8b\xba\x61\x5a\x4d\xd7\xe8\x2a\xbb\xa7\x44\x89\x46\x71\x49\x55\xa3\x89\xac\xf0\x5e\xe7\xa4\xce\x2e\xe8\xda\x56\x62\xa3\x4f\x94\x2d\x55\x05\x0b\x9f\x83\x81\xed\xc3\x42\x46\xa0\xe0\xa1\xf2\x6c\x23\x9c\x84\x39\x0e\xaa\x72\xe1\x00\x37\xd1\x03\x71\x41\xcc\x0b\xaa\x1e\xf8\x24\x36\x21\xdd\x8c\xcc\x7b\xcc\x2b\x41\x61\x75\x6d\xf1\x60\x10\xca\xea\x51\xa3\x20\x44\x7a\x01\x6a\xce\x1e\xcd\x20\xf6\xd8\x7d\x13\xb8\x20\x2a\x9f\x96\x05\xc7\xda\xef\x19\x99\x9b\xb8\x3a\xee\xb7\x51\x73\x88\x72\xcb\xfc\x82\xf1\xca\x14\x14\x40\x38\xf7\x02\xb6\xd2\x37\x9f\xd0\xa0\x8f\xda\x0d\xd9\xaa\xfb\x56\xf3\xa8\xcb\xde\x03\xec\x43\xbe\x62\x36\x96\x4b\x9c\x8d\xe7\xa3\xf2\x18\xad\xab\xb8\x26\x38\x15\xf7\xcd\xeb\x33\xa6\xde\x19\xf3\xc6\x8c\xa9\x9c\x31\xf7\xe8\xcc\x99\x2c\x6a\xce\x57\x27\x8f\x6e\x9b\xee\x83\xcf\x4e\x69\xd6\xc1\xbf\x95\x36\x10\xbe\xe0\x31\xcb\x56\x29\xbf\xac\xbf\x96\x46\x51\x20\x1f\x64\x6b\x8b\xa8\xc4\x74\xd5\x77\xcf\x11\xe2\xd9\xce\x26\xc1\x90\x81\x02\xf5\x12\xd2\x5b\x3d\xfa\x7f\xb2\x5d\x68\x26\xb9\xa9\x72\x3a\x1b\xf8\x2f\x0a\xa7\x93\xbf\xfc\x5b\x38\xfb\x7f\xff\x36\x1f\x4a\x26\x03\x7e\x8d\xe4\x9f\xff\xf6\x08\x74\xd2\xb3\xa3\x39\x8e\x23\x3a\x7b\x3c\xc7\x59\x44\x67\x3f\x1a\x7f\x8b\x8b\x38\x7b\xaf\x4c\x80\x63\x65\x6d\x83\x0c\x57\x4a\x46\x2b\x15\x0a\xfa\x67\x08\x2a\xe4\x4c\x2e\x45\xbd\x3c\xca\x07\x83\x7c\x04\x41\x67\x30\xd1\x56\xc4\x84\x87\x1c\xe7\xd6\x00\x05\x48\xf5\x89\xc0\xc0\x5b\xc5\xd8\x91\x43\x7e\xbc\x59\x03\x3d\x3b\xc9\x8a\x32\x52\xac\x7d\x99\x39\x2a\x42\x2f\x9d\xe1\x48\xe4\x48\xc7\x37\xda\x10\xbe\x65\x7c\x6f\x43\x12\x33\xe7\x4b\x8d\x6a\xb6\xe7\xdc\x8d\x5d\xd9\x66\x04\xb6\x5b\xda\x2f\x99\x9d\xfb\xb6\xb3\x23\x72\xeb\x9e\x2d\x44\x1e\x27\xe6\xb5\x80\x14\x53\x14\x93\xc6\x1b\x1d\xa5\x98\x34\x44\x07\x51\x5c\xfd\x08\x5a\x44\x79\xd0\x55\xda\x3c\x6a\x30\x32\x29\xce\x15\xfc\x24\x11\x0d\x05\xfc\xc4\x8b\xa8\xde\x2e\x4c\x4a\x2a\x34\x5c\x80\x90\x02\x67\xe1\x02\x2a\x17\xe0\x37\xe5\x19\xc1\x95\xb1\x13\x97\x64\x2e\x4c\x20\x15\x75\xb2\x06\xfe\x4a\x4b\xef\x18\xac\xff\xb0\xab\xdc\xd6\x7a\xbb\x89\x57\xb2\x40\xa2\x28\x12\xd3\xf1\xe4\xa8\x68\xa8\x92\x4b\x22\x4e\xe7\x18\x74\x25\xfa\x98\x47\x1e\x64\xd4\x63\xf0\xb2\x5b\xac\x5c\x21\xcc\xb8\xa4\xc1\x1c\x99\x9a\x6b\xe7\xc6\xe4\x4b\x66\x39\x8c\x4b\x43\x54\x9b\x98\xb4\x95\x83\x2c\x8b\x2b\x24\x05\x5c\x96\xfa\xe6\x53\xcc\xbb\xe9\x6c\x53\xcd\x38\xb5\x3e\x2e\x3b\x74\xba\xa6\x7d\x03\xd5\xdf\x96\xaf\xcb\x84\x78\x31\xf8\x76\xc3\xa9\xb2\xeb\xd3\x2c\xbe\x22\xff\x25\x71\xd8\xdf\x20\xb7\x58\xb8\x4b\xfd\xa7\x0e\x30\xb5\x84\xa9\x02\x26\x65\x0d\x68\x76\x6e\xea\xd3\x0e\xe2\xc0\x28\x05\x27\x41\x50\x00\x7d\xe4\x92\x7d\xee\xed\x29\x39\xbe\x9d\x74\xe0\x6c\xfe\x25\x24\x20\x8c\x06\x49\xe9\x20\x35\xb8\x8f\x72\xab\x1b\x7a\x3a\x7e\x95\xae\x66\x08\x72\xc6\xb1\x99\xa8\x2b\x85\xe6\x9b\x8d\xe3\x22\x99\x56\x28\xbd\x0a\x00\x3a\x5c\xef\x81\xcb\x8f\x48\x3a\xcd\xf9\xe9\xbb\x20\x08\x3b\x01\xe4\xe2\xea\xa3\x98\x3a\x1c\x24\x37\x8c\xb8\xc0\xdc\x30\xe8\x8e\xa6\xbd\xa2\x5c\x2b\x89\xe2\xda\x89\x04\x1e\x02\x54\xa0\x5b\x32\x62\xa9\xa0\xab\x1b\xb3\xe9\x0a\xda\xcd\x96\xda\xd9\xe9\x28\x3d\x72\x56\x8e\x46\xc4\x05\x67\x51\xb8\x61\x44\x3a\x6a\x8c\x5b\x0d\xb4\xbd\xb5\x75\xf4\xe7\x07\x90\x4c\x6d\xad\x6b\x29\x80\xae\x9d\x7b\x1a\x18\xe1\x6c\xc7\x66\x1d\x6a\x3b\xca\xf6\x07\x93\xab\x69\x79\x99\x02\x35\x08\xa6\xbc\x8e\x17\xc4\x0a\x60\xff\xfc\xf2\xfd\x87\x57\x27\x6f\x9d\x1c\x22\x56\x76\xc3\x1a\x9f\x40\xa0\x3d\xe1\x8d\xef\x1f\x2d\x7d\x45\xfd\x6d\xca\x0a\x56\x5a\x85\x6b\x05\x96\xb3\xc5\x66\x7f\x26\x99\x15\xff\xe2\x8a\x48\xdd\x29\x80\xdf\xca\x20\x64\x92\x29\x09\x37\xae\x5c\x1e\xa7\xee\x89\x92\xf6\x6a\x23\x8e\x84\x9e\xf1\x98\x53\x92\x19\xcd\x9b\xfd\x50\x12\x84\x01\x60\x87\xbe\x59\x4a\x16\xe0\x7c\xa4\x37\xcc\xf5\x6b\xc8\xbb\x5d\x14\x23\x93\x6d\x11\x0e\x5b\xb1\xef\x7d\x3b\x56\xd5\x55\x19\x40\x34\xd5\x35\x18\x51\xfc\xcf\xe6\xed\x82\xb9\xc7\xb5\xd5\x3c\x97\x18\x04\x2c\x12\x0d\xf7\xc4\x60\x90\x42\x7c\x43\x82\x0a\x4c\xa3\x5b\x9a\xbd\xbc\x5c\x8b\x9b\xc9\xc1\x11\xa6\xd9\xeb\x34\x5e\x52\x76\x5e\xfe\x20\x4b\xf5\x37\xec\xa4\xfa\xf3\x43\x7c\x65\xab\xbc\x00\x71\x8b\xae\xf3\x96\x5c\xab\x3f\xfe\x1c\x27\x74\x39\x39\x18\xe3\x25\x5d\x7e\xb0\x42\xd5\x9b\x89\x18\xbd\x4f\x53\x25\xc6\xd5\x92\xd9\x91\x24\x09\x96\xa3\x6a\x3d\x6c\x42\x59\x00\xad\x90\x55\x9d\x40\x0a\x7c\x46\x16\xe9\x25\x51\x13\xaa\x14\x48\xde\x9e\x2c\x7f\x8a\x17\x9f\xaa\xdf\x41\x4e\x3c\x29\x17\x3a\xc6\xa5\x58\xb8\x6a\xd7\x36\x02\x7c\x46\xe5\xef\x8f\x69\x18\xe8\x39\x2a\xdc\xb1\x0c\x50\x81\xe5\xdb\xdd\xbd\x21\x2c\x2e\x40\x45\xa1\x07\x9c\xdc\x76\x6c\x6f\x1a\x62\xf8\x63\xd2\xc8\xa3\xb0\xed\x78\xeb\xc4\xa6\xc3\x30\xb3\xb9\x4d\xa8\xae\xc8\x24\x36\x0c\x7c\x86\xe5\x68\xb3\x89\x81\x80\x69\x59\xb1\xdc\xd4\x65\x93\x8a\x6c\x3d\x1c\xcf\x0a\xf3\xf5\x52\xef\xa9\xb1\x73\x5e\xca\x13\xd2\x60\x36\x36\xd0\x34\x56\x66\x9f\x13\xee\x1b\x6f\xcb\xc6\x15\x58\x0f\x50\xe9\xd4\xf4\xd5\x80\x2f\x0f\x60\xea\xf6\xa3\x9c\x2d\x60\x58\xf9\x77\xbd\xdd\x9e\x93\xf2\x02\xe8\xb6\x45\x14\x8e\x15\x51\x6a\x68\xad\x8a\x77\x8d\xbd\x81\xf2\xcc\xc2\x3a\x9d\xe7\x0a\xf8\x74\x08\x8d\x51\x26\xd9\xad\xc0\x39\xa6\x00\xa1\x1a\x45\x87\x6e\x4b\x29\xea\xb6\xfe\x70\x6d\x2a\x6f\xc9\xb5\x9c\x86\x19\xa3\xbe\x5b\x01\x16\xa8\xa0\xd5\x4c\x9e\x60\x41\x60\xe4\x3e\x69\x9f\xb2\xb0\x6e\x91\x60\xe3\xc5\x82\x50\x08\x81\x1c\x5c\x38\x99\x0b\x48\x11\xf2\x69\x95\x50\xe5\x68\x72\x5b\x60\x81\xd0\x48\x65\xea\x55\x7a\x23\x8e\xc5\x08\x9e\x24\x88\x8c\x44\xb1\x40\xa2\xe6\x7c\x19\xa6\x68\x30\x08\x9c\x36\xc1\x41\x14\xa5\xf2\x1d\x30\xcd\xcc\x87\x52\x7f\xcc\x42\x31\x4b\x41\xf2\x2d\xff\x8d\x08\xfc\x83\x05\xa6\xc3\x60\x14\x0c\x53\x27\x28\x6a\x11\x52\xa5\xf4\x0a\x78\x9a\x82\x67\x8e\x7d\x50\x69\xb7\x07\xb5\x49\x6c\xb5\x3c\xad\xb6\xe2\xfd\xbe\xad\xfa\xc5\x6c\x7a\x2f\x29\xe1\x91\xd2\xe8\x59\x47\xa6\x25\xf1\xd8\xb8\x56\x83\x0f\xb8\xa6\x2d\x2d\xc9\xdd\xed\x4a\xec\x46\x1a\x33\x56\xd7\x56\x1b\x8b\x29\xd1\xd6\xe2\xce\xb0\x10\xc0\xd9\x6b\x6a\x7b\x2f\xd3\x20\xc6\x46\x77\x4a\x4a\x6b\xdd\x09\x71\xe6\x52\x9f\x49\x29\x97\xab\xdb\x32\x03\xff\xd6\x14\x34\x0b\x9b\xc2\xa0\x74\xa3\x3b\xd8\x3a\xe1\x32\x93\x25\xb2\xca\x33\x57\x1c\xe8\xe8\xf8\x20\x44\x54\x09\x84\x6c\x6f\x20\xac\x33\x0a\x1d\x59\x22\x1f\x6f\xf2\x75\xe0\xb4\x0d\x24\x4b\xdd\x6b\x35\xb7\x2f\x99\xca\x7f\x27\xa4\xcd\x2d\xae\x02\x6d\x1f\x28\x3b\x4f\x20\x12\x87\x32\x7b\xde\x02\x78\xde\x23\x2c\x65\x40\x65\x3a\xcd\xd6\x71\x2b\xaa\xdf\x90\x94\x12\x25\x54\x16\x29\x0f\xb3\x7b\x3a\xe3\x0e\xb8\x66\xab\xf9\xc6\x61\xbc\xa6\x0f\xe4\x1f\xd3\x11\x1f\xf9\x44\xda\x5b\x11\x95\x0f\x14\x74\xe8\x15\xdf\xa1\x6f\xed\xc4\x78\x4c\x80\x88\xaf\xe3\xe1\x29\x37\x71\x6c\x4b\xfd\x4a\xfe\x16\x97\xae\xa6\xef\x8a\x67\xfd\x0e\x36\x03\x99\x12\x51\x14\xa2\x88\xc0\x1f\x12\x8b\x02\x37\x96\xda\x72\x6f\xb4\xa4\x9f\x39\x06\x0c\x7a\xca\x2a\xdb\x66\x1d\x62\x19\xc2\x34\x12\xa5\xa5\x03\x43\x38\x8d\x1c\xab\x84\x90\xe2\xba\x01\xaa\xf6\x66\x96\xd0\xe5\x28\xbc\x02\x74\x27\xb3\x7f\xbf\x51\xfc\x83\x47\x04\xf0\xdb\xc6\xb9\x8a\x6d\x4f\xd4\x82\xed\x72\xa5\x87\x9e\x72\xf0\xe3\xe8\xc7\xd1\x38\xf0\xce\xca\x31\xdd\x6a\x62\x07\xca\x56\x09\x91\xac\x6c\x80\x83\xff\x03\x9f\x1e\xa5\x1c\x12\x13\x1f\x02\x31\xe8\xf6\x63\x56\xb3\xd3\x13\x9e\x45\x60\x26\x5f\xa3\xdb\x02\x6b\x12\x32\xb5\x42\x9c\x09\xc3\x3c\xe2\x83\x01\xdf\x52\xd9\x4a\x76\x26\x5c\x8b\xee\x5d\x6d\x73\x49\xa7\xfe\x53\x27\x2e\x68\xcd\xd6\x60\xec\x49\x2e\xe3\xb5\x31\x81\x28\xdc\x88\xdb\x3a\x80\xc9\x22\x5d\xdf\xd4\x4d\xcc\x04\x34\xa8\xaa\x37\x64\x3f\x1e\x7b\x02\xe5\x95\x9d\x81\x19\x38\x01\xcf\xcf\x02\xbb\xdd\x6b\xae\xdd\x63\x0b\x39\x8e\x22\x8d\x7b\xe8\xdf\x49\xb5\x11\x44\x03\x6b\xd8\xbd\x95\x09\x15\xec\x84\x90\xaa\xda\x12\x2a\xae\xec\x50\x31\x44\xdd\x7a\x54\x75\x77\x76\x49\x98\xe0\x94\x64\xdd\xfa\xd4\x95\x77\x76\xaa\xf7\xb7\x5b\xa7\xba\xf2\xce\x4e\xcf\x89\xe8\xd6\xe1\x39\x11\x3b\x3b\xbb\x88\x3b\x2e\xf9\x22\xde\xbd\xdc\x4f\xe4\xa6\x63\x6f\xb2\xe6\xce\xee\xb2\xae\x0b\xcd\x3a\x2c\x14\xee\x75\xc7\xd9\xa9\xba\xde\x2e\x69\x99\x2c\x44\xc2\x79\xf0\xff\xb1\xf7\xae\xdd\x6d\xe4\x56\xba\xf0\x77\xfe\x0a\xaa\x4e\x0e\x53\x38\x82\x69\xaa\x67\x66\xad\x73\x68\x57\xb4\xdc\xbe\xa4\x9d\xf8\x96\x96\x3b\x3d\x09\xc3\xd1\x94\x59\x90\x85\x98\x42\x29\x28\xd0\xb6\x22\xf2\xbf\xbf\x0b\x1b\xf7\x4b\x15\x29\xb7\x3b\x6f\x66\x75\xbe\xd8\x62\x15\x0a\xd7\x0d\x60\x5f\x9f\xdd\x87\xb4\x62\xb7\x18\xec\x06\x9b\xf9\xa3\xee\x0d\x1f\x56\xcf\x35\x2a\x1e\xbc\x01\xa4\x1a\x7c\x7b\x45\x44\x1d\x67\x8a\xe3\xa4\x6e\xba\xd2\xc4\xbf\x82\x03\xb1\xca\xe0\x16\xe4\xff\x3f\xa4\x7e\x14\x05\x46\xd9\x11\x74\x56\x47\xaf\x41\xf1\xe6\x29\x06\xa2\xc3\xbb\xc3\x02\xf9\x31\x1e\xeb\xa0\xaa\xfa\x0b\xaa\x92\x8b\xb3\xaa\x3a\xcb\x43\x66\x66\xc1\xb7\x08\xee\x10\xe6\x64\xdd\xd6\xb9\x34\xef\x4e\x6a\x3b\x7f\x47\xd6\x2d\x7b\xdf\xbd\x6d\x75\xe4\xe7\x54\x7d\xa4\x33\x55\xef\x7c\x93\xdf\x85\xc7\x2e\xc6\xc7\xa9\x21\x9a\x94\xdd\xb3\x11\xc9\x68\x41\x1c\xd8\xa4\xef\x57\xa1\xd0\x55\x6a\x3b\xb0\xe1\x6e\xcb\x83\xb8\xd0\xb3\xa6\x83\x76\x61\x24\xb6\x1d\x3b\x02\x9b\x2c\x13\xa6\x5a\x39\xd4\xce\x2f\xca\xc2\xff\x5d\x20\x48\xe0\x59\x16\x2d\x83\x3f\x89\xfa\x5b\x32\xa8\xda\xb3\x56\x3e\xd0\x7f\xca\x12\x17\x17\x50\xe2\xe2\xa2\x40\xf8\xb2\xee\xe4\x8f\xcb\x1a\x30\x28\xe0\x82\xbe\xee\xcb\xdc\x6c\xdd\x8c\x42\x0e\xeb\x9f\x30\xfb\x96\x76\xab\xce\x25\xee\x08\xe3\x77\x9c\x5c\x03\x3f\x31\xfb\x57\x96\xe6\x9f\x9e\xa5\x99\x68\xd0\xcd\xdc\xcd\x26\x1c\x9a\xc0\x65\xdd\x95\x22\xcc\x2f\xe2\xbe\xf0\xbc\xe3\x85\xd5\x35\x68\x48\x4e\x17\xf8\x25\x42\x67\x6a\xed\xd8\x89\x30\xdb\x61\xb1\x2b\x5b\x84\x9b\x3d\x27\xb3\x46\x23\xc6\xb7\xe7\xc6\x3e\xf7\x9d\xca\xd2\xde\x25\x30\x27\xd0\x42\xcb\x40\xad\x5b\x5f\x91\xe7\xec\x63\xbd\xa6\x8d\x09\xab\x09\x5f\xfe\xd1\xbc\x62\xf2\xbe\x92\xc4\xd0\x7d\xeb\x74\xff\x00\x1e\xbe\x17\xbf\x41\xd2\xd2\x75\x79\xeb\x8f\x37\x73\x9e\x38\x94\x07\xc0\xe9\x52\x6d\xf5\xf8\xde\xc5\xc7\x5a\xb6\x63\x05\xd2\xe9\xe4\x77\xf8\x8a\x74\x5d\xfd\x3e\xf1\xd9\x98\x5e\xd5\xd7\xdf\xde\xb8\xd3\x0a\x17\xba\xa0\xca\xd7\x79\x77\x74\x8a\x0d\xfb\xc0\x5a\x27\x3c\xf4\x49\xbf\x76\x6c\x25\x01\x1d\xdd\x4c\x6e\x3c\x93\x28\xc2\xea\xdb\xb0\xb1\x40\x45\x9d\x66\xad\x28\x2d\x28\x84\xe7\x10\x82\xeb\xa6\xc9\x46\x54\xc4\xb3\xa5\xeb\x2d\xd0\x48\xb1\x01\x75\xd3\xe8\x38\xc8\xc9\xe4\xa8\xb7\xb0\xf6\x8f\xb5\x21\x0e\x21\xf1\x28\x9f\x9e\xb8\x7d\x03\x9e\x71\x41\x59\xf3\x9a\x3f\x86\xdd\xfe\x52\xaf\x45\xe9\xc8\xcd\xe2\xdf\x40\x18\xc5\xdd\x16\x37\xfa\x18\xea\xcb\xfa\x7b\x10\x70\x8c\xca\x74\x64\xde\x63\x41\x48\xd7\xca\x42\xe2\x38\x65\xb2\x00\x38\x1c\xf2\x69\xac\xe1\x26\xcd\x2a\xe2\xb6\x9a\x3d\x68\x1d\x50\x6b\x6b\xe4\xbe\xba\xe2\x8b\x76\x89\xbb\x8a\x4d\x65\x67\x24\xf9\x19\xa2\xc3\x35\x1a\xd1\x45\xbb\xac\xba\xed\xd6\xf9\x9d\xcc\x89\x21\xdf\x79\x6d\x05\x38\x6a\x60\x82\x02\x12\xeb\x5d\xbb\xed\x56\xc3\x9e\xa8\x8f\xe4\x50\xee\xb8\xce\xea\x1c\x00\x20\x8e\x4c\xc3\xf2\xe2\xec\xad\x30\x20\x7d\x05\x69\x2c\x47\xed\xbc\xd2\x31\x49\x01\x52\xec\x96\xbc\x03\x41\x28\x49\x0a\xf4\xfb\x03\x54\x30\xf0\xd2\xee\xaa\xdd\x0e\x83\xa0\xe7\x1f\x53\xfb\x27\x17\x3e\xd1\xbc\xda\xc0\xfc\x25\x35\x1f\x30\x7b\x29\x18\x47\xcf\x24\x58\x70\x8e\x47\x25\x1a\xe5\x30\x90\x94\x00\x0d\x4e\x65\xe0\xf8\xac\xa5\x5f\xd9\xed\xac\xfb\xfe\xf0\x86\x52\xae\x76\xc9\xcd\x14\x89\xd6\x1e\xf7\xb2\xdb\x29\x46\x2d\xa3\xa5\x8e\x77\x9b\x49\x90\x36\x0b\xf8\xde\x2b\x7d\xb2\x68\x90\x5e\x79\x70\x1a\xb8\x14\x15\xc7\x5c\x3a\x6b\xa4\x6f\x7e\x9c\xb2\xfa\x8a\x2c\xf1\x80\xb5\x11\x4a\x20\x34\xd7\x55\xc3\x99\xdc\xae\x1b\xa8\x55\x45\x53\x24\xa6\x50\x4c\xb4\xe1\x57\xf1\xaf\x30\x03\x5d\xa9\xa4\x83\x9b\xea\x56\xb3\x87\x2a\x43\x6e\xe1\x99\x86\x0b\xec\x99\x99\xbd\xe7\xf3\xdb\xc8\x05\xe2\x0a\x5c\x01\x34\xd6\x4f\x68\x3a\xef\xf7\x7a\x80\x09\x02\xd1\x39\xe3\xd8\xe9\x0c\xae\xce\xbc\x3c\xe8\xaa\xa0\x06\x98\xa9\x09\x0f\x35\x31\xe8\xe0\xd0\xef\x93\xf1\x89\xae\xd7\x07\x98\xc8\x29\x7b\xb6\xa6\xef\x2f\x85\xc2\x74\x93\xb5\x1b\x81\x22\x17\x4a\x60\x64\x37\x50\x2c\xeb\x90\xda\x11\x2b\x89\xd6\xaf\x9f\xfb\x35\x40\x40\xee\xe1\xb6\xf7\x70\x60\x98\x98\x6d\xff\x02\x40\xf6\xa3\x29\x0e\x6e\xcc\x3d\xe3\xb3\xb7\xaa\x89\x40\x89\xca\xe7\x02\x53\xd2\xe6\x55\x14\xe2\x6e\x87\xcd\x84\xcd\x6f\x9d\x43\x4e\xe2\x6f\x73\xd5\xbf\x2e\x7d\x6e\x1d\x1b\xe6\x4d\xfe\xd3\xec\xf2\xf5\x78\x7f\xf4\x3b\x32\xd8\x3d\xaa\x20\xfc\x5e\xd0\x0b\xb2\xba\x59\xad\x6d\x2a\xbf\x4e\x0b\x9a\x8d\xec\xa6\x94\x51\x86\x97\xeb\xab\xae\xc7\xfe\xbe\xd9\x7a\x53\x40\xc8\xc4\xa9\xc5\x3b\x10\xd2\xc5\xf3\x6a\x91\x37\x24\x2c\xa2\xea\xe9\xad\x75\x99\x3a\xd1\x01\x6c\x09\xf5\xa7\x8d\xa9\x82\x81\x83\x8a\xec\x6b\x44\x02\xf1\x19\xa2\xd3\x89\xc8\x4e\x68\x76\xe9\x19\x6f\xaf\x9c\xbf\xbb\x3e\x34\xb1\x3a\x95\xd5\x89\x00\xa5\xe1\x18\x80\x65\xf2\xee\x3f\xb8\x32\x7a\x66\x7d\xd0\x55\xab\x8f\xfc\x7a\x8f\x0b\xb8\x76\xfc\x6e\x9b\xed\xd1\x7b\x8a\xf4\x11\xd0\x41\x35\xed\x3b\x06\xf4\x3e\xc4\xde\x5c\x1c\x4e\x19\xb0\xf0\x59\x62\x1b\xa4\xf5\x58\xb8\x43\x81\x7f\xd0\xc7\x43\xdd\x65\xec\x17\xef\xbd\xbb\xfa\x63\xe9\xbb\xe5\x98\x83\xf6\x76\xd7\x17\x9c\x85\x78\x25\x16\x74\x89\xd9\x82\x2e\x2b\xee\x7b\xc4\xd8\x54\xa2\xe0\x87\xc3\x5d\x32\xbc\xf2\x06\xc9\x3e\xcb\x3a\xde\x55\xef\xcb\x5b\xbb\xdb\xe7\x85\x71\xb0\xb3\x5e\x5f\x3b\x34\x7a\x37\xd5\xbb\x63\xea\x56\xb2\x3a\x64\x3f\x1c\x78\x74\x07\x8e\x5d\x3f\x47\x13\xa0\x19\x38\x8f\x46\x6a\xdc\xde\x7c\x06\xe8\xd3\x61\x4d\xed\x3d\xa6\x6c\x85\x4f\x65\x85\xbb\x70\x84\xfe\xb1\x52\x7d\xc2\x6e\x76\x93\x17\xf1\xbc\xbc\x8b\x67\xe5\x26\x5b\xa4\x27\x40\x7a\xcf\xb8\xe2\x85\x70\xe7\xc2\xe0\x42\xf4\xfb\xe8\x65\x56\xa5\xa1\xcd\x8b\xb6\xce\x35\x16\x31\x5c\x61\xd6\xe4\x73\x3b\x45\xde\x26\x3f\xa4\x57\x76\x68\xb2\x06\x75\x20\x4d\xfd\x6b\xb5\x7a\x8a\xcf\xfb\xd7\xe6\x0b\x8e\xfc\xf3\xfd\x5b\xe5\xab\x1c\x7a\x09\x75\x7f\x0e\x9d\xf9\xc0\xf2\xe8\x9f\x13\xa5\xa8\x3e\x96\x2c\xf2\xce\x63\x59\xef\x3c\x16\x78\xe7\xf1\x9c\x77\x1e\xcd\x78\xe7\xd1\xd8\x3b\x8f\x66\xce\x22\x79\x52\x81\x83\x1e\x55\x0e\x7a\x74\x89\x05\xe6\xe0\xa0\x47\x03\x07\xbd\x9f\xd5\x17\xba\xcf\x3b\x39\xe0\xb8\xfc\x55\x1b\x92\x08\xfa\xdd\x9a\x13\xd1\x42\x5f\xfc\xe7\xd7\x9e\x25\xa6\x12\xd9\xc5\xa7\xec\xbd\xa4\xa7\x2f\xf2\x8e\xde\xb3\x09\xed\x8d\xf9\x45\x1e\xd4\xfd\x7b\x7a\x80\x45\xd6\x23\x92\x33\x64\x97\x72\x86\xc9\xe7\x84\xb7\x08\xa7\x46\x79\xdd\xfc\x83\xba\xa9\x13\x26\xae\x49\xcd\x94\x62\x7e\x0f\xb7\x39\xc4\x4f\x62\xd6\x8a\x67\xed\x86\x0d\x73\x22\x44\x69\x21\x3c\x9f\xf4\x50\xa8\x55\x43\xf1\x28\xbe\x87\xac\x24\x05\xf6\x7a\xa7\xf7\x09\x92\x52\xea\x76\x81\x82\xb0\x8f\xca\x94\x67\xbd\xea\x65\x0f\xef\xe8\x5d\x1e\x1f\x94\x07\x0a\xa3\xe6\xeb\x9f\x5f\x28\xfd\xa9\xcc\xfe\xc0\xd9\xd1\xe3\x9f\x9f\xd2\x08\xba\xf5\x5c\xf0\xdf\x59\xbf\xf9\x73\xd3\xbb\x84\x42\x02\xb5\x87\xc7\xdb\xe8\xe2\x85\x7f\x14\xce\x02\x42\x4a\x5c\xf1\x73\x8a\x89\x48\xf3\x12\x6a\x53\xbe\x44\x9d\xf0\x15\xe4\xed\xbb\x11\x24\x4c\x7f\x76\x65\xfb\xa2\x54\xbe\x40\x11\x61\xcf\x8f\x81\x4b\xba\x4f\x4d\xf0\xff\x8f\x90\xff\xb3\x09\xd2\x5f\x28\xf7\xef\x95\xae\xcc\xf9\xe6\xdd\xf8\x39\xb2\x35\xf0\xfe\xed\xd5\x73\xf6\x91\xf0\x8e\xf8\x98\x2e\x40\xc2\x5f\x24\xee\x35\xb4\x51\xdb\x08\x10\xe6\x32\x6f\x0d\x38\x08\xe9\x39\xd9\x06\x4e\x81\x1e\x72\xee\xd1\x48\xfc\x8f\xd0\x28\xf4\x6f\xb8\xbe\xb9\xf9\x67\xd6\x10\xec\x0e\x22\x1a\xf0\x94\x37\xc2\x33\xe0\x20\xe4\xc8\x04\xde\x4b\x32\x99\x67\xde\xfe\x00\x67\xee\x01\x24\xb6\x0b\x82\x57\x9c\xf4\x7a\x96\x58\x71\x55\x40\xff\xb4\xa9\xbb\x4b\xc2\xb5\x1f\xba\xbc\x23\x5f\xff\x02\xbd\x2b\xdd\x3c\x3d\x72\xd0\x49\x61\x06\x25\x56\x9d\x01\xfc\x95\xac\x61\xbb\x05\x9f\x36\x04\x80\xb8\x2f\x6b\x76\x03\x20\x71\x80\x06\x05\x60\xba\x62\xda\x51\xf6\x7e\xb3\xae\x61\x5e\x19\x42\x98\xc1\xd4\x7e\xd8\xe3\xc3\x79\x45\x44\x6d\x52\x24\x9f\x83\xbf\x46\xa1\x75\xae\x90\x15\x53\x1e\x5a\xbf\x27\x37\xe9\xc3\xe7\xdd\xa3\xee\x86\xad\x2a\x0b\xd6\xa7\x3c\xb6\x01\x47\xa1\x22\x5a\x80\x93\xb7\xbf\x07\xf7\xa2\x18\xe8\x8c\xeb\x84\xdf\x52\x48\xc3\x1a\x95\xb3\x30\x0e\x9d\x7e\xa7\x0c\x8a\xd3\xaa\x5e\xaf\x36\xeb\x5a\x10\x7d\xc8\x7a\xd6\x66\xbf\x78\xe8\x83\x17\x8f\x23\xd7\xac\x76\xf0\xaf\xb2\x23\xbf\x4b\xeb\xfa\x93\xa8\x07\xf1\x97\x55\x86\x79\x34\xc1\xef\x06\x79\xcd\x4b\x96\x08\x01\x22\xc6\xad\x9e\x88\x1a\x97\xbc\x62\x86\xbd\x44\xca\xcb\xa7\xaa\x2a\x3e\xd5\x9d\xd8\x6e\xcb\x4d\x25\xcc\xaf\x67\xad\x8a\x05\x02\x82\x26\x08\xe1\xcd\x69\x59\x57\x1b\x38\x91\x6d\x2b\x55\x55\x95\x6d\x55\xd2\x6a\x83\x4c\xc5\x93\x09\x35\x7f\x4e\x6b\x39\x28\xb4\xdd\xb6\x68\x5e\x2a\x1c\x59\xdc\x55\x47\x27\x99\xb9\xaf\xea\x1e\xf2\xe9\x76\xf8\xb5\x73\x63\xfc\x40\x6e\x06\xbd\x18\xe5\x30\x65\x87\x77\x3b\xac\x3f\xa0\xac\x39\xe0\x0b\xca\x1a\xfb\x89\x72\xe7\x1f\x72\x95\x84\x28\x6a\xf7\xe7\xbc\xf4\x36\xc7\xa3\xd2\x56\x8b\xbc\x4d\x83\x6c\xf5\x26\x4b\xda\xde\x4e\xe9\x82\xf6\x43\xc8\xab\xb0\xf7\x2b\x59\xca\x7e\xe2\x36\xd9\xfe\x0f\x5d\x59\xeb\x01\x0a\x8a\x9a\x97\xd5\x21\x18\x77\x7b\x5d\x7a\x16\xcb\xdd\x2e\x13\x95\xa1\xec\xd7\xdc\xe7\x7a\xbe\xbd\xd1\x26\xfc\x3c\x7e\x07\x7c\x05\x27\x1e\xea\x85\x43\xc1\x6f\xf7\x76\x5a\xef\x12\xdf\x42\x7e\x38\x40\x8b\x3a\xc9\x23\x08\x3e\xb8\x24\x3e\x90\x9b\x8a\x61\x49\x06\xf2\x18\x9f\x52\xb6\x5a\x6f\x1a\xd2\x95\x44\xf2\x2b\xaa\xbf\x04\x29\x57\xf5\xa0\xc3\x8f\x0f\x9a\xe5\xf6\x4b\x40\x64\xa2\x3e\x32\xe8\xa3\xc0\x0c\x48\x05\xb4\x39\xca\xc1\x2c\x63\x86\x97\x6d\x7e\x90\x77\xb0\xbc\x2f\x32\xd3\xfc\xbd\xe9\x35\x88\xeb\x0e\x7c\x05\x08\xe7\x4d\x3c\xa4\xc2\xc7\x62\x2d\x72\xed\x85\x74\x11\x47\x10\xfb\x9f\x83\xbf\xbf\xdf\x95\x57\x81\x37\x71\x9f\x3b\x5c\x50\xa1\x0a\xe1\xf2\x02\xbe\xce\xcf\xd5\x7d\xfe\xaa\x65\x4f\x9d\x83\x61\xec\x00\xb1\x20\xca\x7d\xa0\x82\xfc\x51\x2b\x4e\xaf\x45\xcb\x95\x9b\x80\x73\xd3\x7a\xe3\x29\x01\xdf\x38\x41\xf6\xcd\x21\xc9\x69\xfc\x71\x4e\xb5\x00\xd1\x9b\x9f\x4d\x79\xd8\xe6\xbe\x00\x24\x3b\x23\xb9\xbd\xf1\x24\xeb\x37\x5a\xc7\xf8\xc6\xaa\x18\xdf\x78\xb2\xb8\x7c\xaa\xa4\x2c\xd0\x41\x7e\x4f\xd6\x4e\x97\xe9\xb7\x33\xff\xac\x41\x74\x95\x9b\xc6\x5e\x04\x24\xa3\xed\x73\x1b\x0d\x14\x1b\xa1\x7b\x62\x6e\xdd\xfd\x91\x6b\x7f\x48\xed\x7b\x11\xba\x9c\x0d\x15\xd3\x1e\x37\x29\x05\x6b\x8d\x92\x1a\xb0\xa2\x87\xa1\x58\xbc\x2c\x59\x46\xb0\x94\x61\x14\x25\x16\xed\xef\xce\x5e\xbf\x1a\x8c\x7d\x8b\x02\xdc\x1c\xcc\x2f\x32\x51\x71\x7b\x9a\x1c\xa5\xc1\x9d\x2a\x24\x06\x83\x2c\xa1\x63\x15\x95\x42\xd1\xfe\x50\xec\xbb\xfd\xa9\x78\x7d\xfb\x53\x11\x8b\xfa\x19\xca\x54\xde\x23\x6f\xda\x3c\x89\x48\x4f\x23\x8b\x95\x5d\x03\x73\x08\x6b\xa5\x93\xfa\x78\xa2\xcd\xa1\x4b\x10\x88\x43\xa4\x57\x39\x66\xa2\x92\xc2\x8f\xfd\xb2\xa0\x51\x54\x80\xb0\x19\xcd\x98\xdf\x83\xf0\x2b\xcd\xc3\xd6\x2a\x9d\x7e\x8f\x6e\x4d\x37\x2f\x37\x22\xb4\x40\x9a\x3c\xc4\x9b\xff\x35\x80\xaf\x05\x1e\x57\x94\x74\x7d\x01\xc8\xdf\xfb\xbb\xce\x49\x45\xfa\xaa\xe3\xd5\x0c\xd3\x8a\x18\xf1\x88\x3f\xa4\x0f\xf8\xf1\x31\x62\x15\x59\xf0\x25\x16\x79\xbf\x2e\x06\x08\x6d\x83\x78\xc7\x43\x5b\x23\x87\x25\x77\x48\x42\xc8\xb0\x9a\x2c\xf0\xea\xa1\xe9\xcb\xf6\x6c\x9d\x83\xb2\x48\xe5\x6a\x32\xec\x7d\x58\x3d\x6d\x94\xea\x67\x4f\x8c\x78\x1a\xb0\x92\xdd\x15\x8a\x9e\xa6\xe2\x92\xb0\x8c\xb3\xb1\x50\xc8\xff\x71\x50\x46\xd0\x20\x8e\x44\xc6\xc4\xc0\x45\xac\xb7\x3f\xf1\x34\xec\xaf\x0d\x2f\x5f\xb2\xea\x36\x7c\x36\x8f\x0b\xed\x10\x3e\x6c\x38\x3a\xfa\x83\xed\x1b\x90\x0d\xef\xc8\x8e\x68\x41\x96\x3d\xf9\x54\x02\x55\x80\xb5\x23\x6b\x7a\xc7\xdc\xf3\xcc\x65\xf7\x4e\x10\xa6\xd5\xc9\x03\xfa\x90\x3d\xa0\xc7\xc7\x88\x2f\xe8\xbd\x93\xa5\xfb\x68\x41\x97\x23\xe1\x9b\xa5\x39\xda\x89\xbd\x38\xa4\xb8\x16\x82\xc7\x3a\x27\x1d\xc4\x73\xe8\x51\xc6\x4d\x98\x09\xdc\x04\xf6\x73\xa5\xaa\xd3\x92\xfd\x97\xd5\x65\xd4\x02\x50\xd3\x79\x43\xde\x6d\xde\x3f\x67\x17\xed\x3c\xb9\xa9\x17\x05\x6d\x8a\x25\x16\xd5\xed\x0e\xb3\x6a\xb1\x1c\x59\x6e\x33\x83\x6d\xe9\x23\x0d\x7a\xf8\x84\x3a\xbe\x7e\x71\x0b\xb9\x2a\x0a\x1f\x12\xf9\xda\x9d\x63\x04\x93\xcf\xd7\x35\x6b\xe6\x47\xb3\x5d\x0a\x90\xe8\x33\xae\xbe\xd3\xaa\xcd\x60\x2d\x16\x14\x44\xb7\xe5\xc8\x4a\xa3\xed\x64\x52\x7a\x2f\xaa\xc5\x12\x73\xd5\x2b\xd5\x13\xaa\xe4\x57\xaf\x0f\xad\xd7\x07\x84\x70\x6b\x98\x74\xcc\xcc\x5f\x3b\x14\xd6\x51\x3c\x5b\xd7\xef\xc3\x81\x2c\x0a\xc3\xe2\x15\xd9\x84\x44\xb8\x30\x9c\x58\xe1\x03\xef\x80\x6b\xaf\xd2\x45\x6b\x0c\x1c\xf9\xbf\x62\x56\x96\x3b\x84\x6f\x8d\x15\x17\x16\xea\x56\x4b\x13\xaf\xc5\x65\x80\x3d\x79\x34\xc3\xef\x79\xbb\xb9\xee\xe6\x5c\x8e\x45\x1e\x62\x1f\x3d\x66\x7c\xce\x76\x3b\x30\xde\xd0\x8b\x9b\x6f\x0d\x3d\xc5\x89\x00\xf7\x3a\xf7\xc6\x0b\x12\x3b\xf7\x47\x10\xa9\xe9\x02\xaa\xdb\xdd\x97\xf4\x0e\x8a\xe7\x08\xc1\x1e\xf3\x82\xa2\x89\xec\x70\x9a\x8b\xde\x1d\xe2\x77\xd1\x53\x74\xf8\x4a\x28\x64\x26\xeb\x3b\xb5\x61\x1e\x35\x92\x73\xbf\xdb\x4c\xb9\x9c\x69\x07\x4c\x93\xdb\x55\x30\x47\x3b\xd4\x13\x73\xff\xca\x53\x17\x02\x96\x41\x01\xd1\x51\x5e\xb8\xd3\xc9\xa0\xda\x22\xc2\x63\x92\x35\xf4\xe7\xd6\x0f\x1a\xa3\x4d\xa6\xa9\x8e\xe4\x92\x6b\xc7\x7c\x9d\x78\xae\xf4\xf2\x07\x77\xac\xf7\x5e\xdd\x21\xfc\x2a\x04\x63\xa5\x9d\x92\xe3\x8e\x66\x0e\xe9\xc2\x41\x77\x3c\x6b\xf9\x00\xc1\xe6\xa3\x61\x86\xe8\x6b\xe4\x54\xb7\x3e\xfa\x84\x52\x45\x58\xe2\x7b\x59\x5f\xef\x0f\x13\xca\x02\xe1\xe6\xc9\x77\x20\x72\xc7\x36\xa8\xc0\x7d\x5c\xc2\x8c\x05\x59\x5a\x90\x18\x79\x5d\xe6\x53\x59\x1f\x30\xd6\x23\xbe\xdd\x72\xa7\xd8\xb3\x0a\x43\xa3\xdf\xd3\x5d\x38\x65\x80\xd0\xbf\x59\xaf\xe7\xf0\x97\x8b\xf3\x79\x1e\x6c\x31\x13\x74\xf3\x7c\x78\xa0\x2a\x64\x22\x5d\x41\x28\x03\x30\x46\x2c\xc1\xc0\xe1\x4e\xcd\xf9\xac\xe5\x4e\x21\x2f\xaf\x79\xdb\xdf\x91\x05\x6e\xaa\xa8\xe9\x7b\x52\x53\x6b\xf8\xe5\x9c\x4a\xd5\xe5\x73\x73\x15\xb4\xae\x32\x5c\x57\x65\x57\x05\xd9\xe9\xfa\x67\xb9\x45\x08\x2e\x29\xbc\xa9\x3a\xdb\x43\x48\xe1\xc5\x3d\x65\x1c\x68\x95\x60\x17\xfa\x4f\x3d\xdc\x97\x91\x42\xe1\x8e\xbd\xa9\xdc\x2d\x49\xb7\xdb\xc5\xd2\x06\x73\xe7\xba\xa5\xc1\xa1\x6c\xda\xb0\x56\x27\xd4\xac\xb5\xb2\xcd\x03\x99\xb9\xa0\x6b\x41\x78\x92\xd3\x41\x54\x2c\x9d\x7b\x65\xbc\xb3\x43\x33\x41\xaf\x66\xb2\x5c\x98\xa9\x53\x40\xf3\xca\xfb\xe9\xf4\x85\xdd\x64\xa2\xee\x65\xcd\x78\xb5\xb8\x43\x58\x4c\x81\x17\x03\x68\x7a\x65\x4d\x71\xbf\x15\x46\x39\xc2\xad\x8e\x99\x95\xc2\x30\x04\xd7\x55\x55\xb5\x8e\x82\xeb\xec\xca\xaf\xaa\x75\x32\x3e\x61\x4c\x48\xe9\xf8\x44\x76\x7c\x00\x2a\xce\xbd\x21\x9c\x54\x55\xb5\xd2\x4d\x4e\x26\xe5\xba\x5a\x21\xdc\x56\xeb\xc5\x6c\xa9\x58\x91\x5a\xfd\xad\x29\x01\xfe\x36\x9a\x5f\x55\xa3\xca\x59\xc6\x54\xd6\xaf\x16\xcb\x82\xf3\xda\x66\x30\xdb\xec\xc2\x4b\xb5\x9b\xbf\x0c\x7e\x03\x8c\xed\x5e\xe5\xcc\xad\xe1\x2c\x17\x4b\x8f\x65\x5d\x2c\x77\x3f\x5d\xe1\x48\x16\x2a\x25\xc9\x32\xd4\xd6\xaa\x4e\x92\x46\x52\x73\x37\x7f\x8b\x33\xfb\x64\xfe\x18\xdf\x21\xcb\xca\x4f\xd6\x8d\x7e\x95\x14\x2a\xfb\xf8\xa4\x2f\xd4\x7c\x83\xc2\xd9\x04\x7e\x63\x8e\x95\x58\x6e\xdb\x52\xd3\xd8\x1b\xbb\x98\x6d\x54\x4f\x3d\xe4\xf6\x9f\x3d\xe0\x0f\x99\x55\x0c\x18\xbb\x29\xad\xd8\x82\x2f\x47\xb6\x59\x8a\x76\x3b\xdc\x10\x41\xf8\x15\x65\x81\xa7\x42\xa6\x75\x93\xe5\x09\xcc\xa1\xda\x0e\x89\xa9\x3a\xa5\x3d\xc6\x8b\x61\x17\xec\x4c\x4f\x3d\x79\x07\xce\x68\xf9\x51\xf4\x90\x9f\x16\x2d\x23\x6f\xdb\xd7\x8c\x14\xf3\xe2\xaa\x66\x37\xe6\xef\x6c\x31\x90\x78\x4c\x39\xfd\x23\x5b\xf0\x55\xeb\x55\x08\x3f\x94\x38\x97\xd7\xd1\x7e\x3d\x0a\xf4\x08\xac\x4c\x54\xf2\x2c\xa7\x74\xb7\xa8\x69\x81\x42\xe6\xcb\x3a\xd8\x27\xd0\x29\xae\xc6\xd1\xbc\xe1\x72\xb2\xe4\xde\xc7\xec\xc6\x64\xe7\x23\x6f\xdd\x85\xc4\xdf\x66\x06\xbc\xa7\xa9\xec\x1c\x1d\xde\xaa\x51\x09\xa5\x1c\x6b\x01\x77\xe1\x3c\xcd\x27\x6e\xef\x48\x85\x2a\x26\x27\xfd\xaf\xd5\xfd\xff\xfa\xcb\xfd\x53\xc9\x67\xff\xe5\x7e\xe9\x25\xda\x09\x36\x3d\xfa\xcb\xfd\x72\xfa\x7f\xd0\x7d\xfc\xdc\x15\xbf\x8f\x9f\x54\xc5\xbb\xba\x23\x85\x73\x02\x78\xe1\xee\xda\x58\xb7\xf1\x9b\x93\xc9\xc4\x72\x7f\x4e\x87\x71\xb2\x3c\xf5\x7f\xcc\x8b\x47\x4a\x6f\x33\x96\xc4\x08\x1d\x18\x5f\xd4\x74\x4d\x9a\x62\xa4\x15\x93\x8f\x3c\x6d\x78\x75\x34\xd3\xb1\x9c\xf0\x33\x40\x2e\xc0\x5e\x7c\x66\x45\xb6\xdb\xc5\xad\xa0\x62\x4d\x5c\x0b\x5a\xa8\x6d\x88\xa8\xe9\x7a\x2e\x76\x4b\x17\x61\xf0\x6c\x00\xab\xa4\x2a\x93\xa1\xcd\xb2\x43\x9b\xf9\x43\x9b\x2d\xe7\xb7\x90\x99\x12\x1c\x6e\x0c\x8d\xff\x5d\x4b\x53\xb6\xe1\xbf\xfb\x07\x53\x9e\x00\x14\xab\xc0\xb7\x5b\x81\x76\x0e\x59\xa3\x0f\xa9\xc2\xb3\xd5\x23\xcc\xb4\xc9\xa9\x7a\x56\x02\x52\xc3\x8b\xde\xcf\xfc\x49\xf5\x2a\x78\xe1\x2a\x78\xa1\xe8\xe7\xbb\xea\xef\xe5\x0b\x5c\xbc\xbd\x24\x63\xad\x71\x1b\x73\x9d\xfe\x62\x2c\x2e\xc9\x58\x39\xfd\x8c\xdf\x91\x55\xbd\xe9\xc8\x98\x8a\xf1\xa7\xba\x1b\x3b\x37\xb5\x6f\xd3\xef\xdd\xca\x0b\x7a\x45\x9a\x71\xbb\x11\x05\xc2\x3f\x0c\x15\x94\x75\xd6\xef\x5a\xae\xfc\xe9\xfe\x36\x54\x94\x76\xe3\x0d\xab\x37\xe2\xb2\xe5\xf4\xef\x50\xfc\xc7\x3d\xc5\x2f\x5a\xfe\x8e\x36\x0d\x61\x05\xc2\x7f\x4c\xcb\xae\xda\xcd\xba\x01\xec\x10\x29\x36\xc0\xa0\x39\xe9\xda\x0d\x5f\x91\x02\xe1\x3f\x0d\x55\xae\x28\x7b\xdc\x6c\xc8\x58\xb4\xe3\x7a\x2c\xa5\xd7\x35\x85\x0c\xc2\xbf\xbd\xcb\x77\x1d\xe1\x1f\x09\x1f\x03\xad\x17\x6a\x5d\x7e\xdf\x87\x24\x93\xd2\xf5\x3f\x3b\x92\x4c\x56\x8f\x89\xfe\x85\x16\xf3\x95\xd0\x62\x54\x27\x33\xf8\x73\x72\x8e\x04\x40\x20\xf9\x90\x32\x75\xd3\xfc\x48\xc5\xe5\x73\xd6\x90\xcf\x39\x5f\x1f\xc3\xc8\x6d\x68\xe3\xd0\x31\xe5\x49\x2c\xe7\x56\x12\xd4\x19\x11\x86\xc7\x5a\xd3\x4e\x80\x54\x27\x0f\x4e\xbe\x60\x56\x23\xc0\x55\x36\x48\xac\x04\x61\x71\x4a\x8d\x9a\x73\x4e\xa7\xdd\xf5\x9a\xae\xa4\x00\x39\xc3\x06\x1b\xa1\xa3\x7f\x27\xc7\xd5\x89\x06\x6c\x12\xbb\x92\xa9\x4d\xf0\xab\x5f\xa0\x47\x1e\xfe\x43\xff\xa0\xfd\xac\xef\x3c\x74\x80\x02\x78\x52\xf3\xc4\x83\x52\x1d\x69\x95\x85\x5c\xd4\x0e\x18\xb4\xdf\xab\x39\x5f\xd5\xac\x65\x74\x55\xaf\x5f\xa6\xef\x94\x9f\x9c\xd6\x57\x7e\x20\x37\x95\x1a\x9f\xfa\x49\x59\x23\x7f\x4b\x56\xdb\x67\xb4\x7f\x0f\x4e\x29\xfa\x89\xa7\x55\xab\x04\x36\x17\x3f\xf8\x5a\x59\x2d\x3a\xdd\x6e\xa9\x79\xf5\xc6\x75\xb8\xb2\x37\x71\x3b\x99\xb4\xaa\x80\xcf\xcb\xbc\x24\xa2\xae\x78\xdc\xf4\xb3\x96\x3f\xbf\x92\x84\x45\x45\x95\xf6\xc1\x29\x17\x8e\xad\xb7\x19\xfc\x71\x41\xc4\xea\x52\x03\xae\x79\x4e\x84\x69\xc0\x0d\x76\x6e\x8a\x5e\x31\xe3\x47\x06\x7d\x32\xce\x3e\x30\x81\x97\xf2\x52\x79\xd6\xf2\x15\x51\xbe\x0d\xd5\xd1\x49\x3a\x94\xe7\xdd\x99\xa8\x25\x65\xe9\x59\x78\x45\x3e\xa9\x42\x97\x75\xf7\x88\xdd\xf8\xc2\x0f\x44\x1c\xe6\xeb\x50\xf0\x93\x47\x33\xfb\xe9\x33\xb8\x5d\x5e\xb4\xb5\x64\x4b\xc9\xd5\xb5\xa8\x8e\x4e\x86\xfc\x1d\x9f\x77\x67\x81\xef\x61\x98\x5d\xd6\x1b\x62\x80\xee\x6d\x53\x02\x93\x90\x10\x93\xd4\xba\x90\xc4\x29\xc2\xcc\xf4\x17\xe7\x09\x6d\x9e\x90\xab\x5a\x18\xa7\x82\x7c\x47\x46\xd1\x82\x6b\x0d\xee\x45\xcb\x1f\xad\x0d\x09\x07\x1a\x15\x01\x11\x2d\x8e\x05\xd6\x69\x9d\x5c\x0d\xc8\xfc\x1d\x77\xa0\x8c\x3a\xa8\x53\x9f\xfb\xdd\xcf\x7e\x57\x25\x8a\xea\x1e\xf2\xea\x88\xf8\x3e\x25\x83\x52\x1e\x30\xfe\x56\x31\x30\x2f\xca\x81\x3d\xc8\x4f\xfd\x8c\xb7\x57\xaf\x3f\x31\x0b\x2e\xa3\x8a\x3c\x36\x5b\xba\xa7\x6c\x34\x0c\x15\xce\x02\xb4\x9b\xf4\x5c\x39\xe4\xee\x01\x2d\xb5\xf9\x4e\x2b\xff\x90\x81\x5b\xe1\x01\xb1\xbc\xf5\x03\x9b\x0c\x64\x31\xd3\x66\xbe\xcc\x88\x4a\x81\x76\x11\x10\x52\x7c\x42\xa9\x8a\x59\x5c\x31\xaf\x58\x54\x71\x7e\x1e\x4a\x79\x3c\x07\x03\x52\xa5\x1f\xad\xc3\x72\x9d\x9e\xb0\x2a\x76\x18\x30\xe3\x0b\x50\x77\x22\xaf\x8a\x6c\x84\x50\xb6\xcd\x7c\x27\x7b\x1b\x4f\x26\x23\xe8\x85\x4a\xaa\x67\x8a\x28\xff\xf8\x6c\xc3\x61\x63\x99\x84\x3c\xb0\xd7\x72\x30\x3e\x1e\xb8\x7b\x6e\xf9\x48\xb2\x4b\xea\xa6\xe9\x6d\x2d\xd4\xc3\xf7\xb4\xc7\x92\x2a\x94\x57\xb3\x7f\xb2\x88\xe3\xe3\x4c\xbb\x3d\x73\xdb\x97\xb9\x03\x18\x08\xe2\x33\x10\xae\x09\xe5\x82\xdb\x5b\x27\xe4\xbd\xc6\xec\x58\xe8\x14\xa2\xc3\x05\x0f\xed\x69\x95\x33\xe8\xc5\x04\x70\x59\x2b\x8f\xcf\x32\xff\xda\xe7\xf3\x3c\x6f\x70\x08\x10\xca\xc4\x01\xc9\xe3\x61\x80\x96\xec\xc7\xdf\x65\xaf\x26\x79\x76\x25\x50\xb5\xd9\x76\xb2\x70\x86\xde\xa1\x6c\xa3\x15\xc3\xd3\x1b\xf3\x8a\x29\xd4\xc3\xa8\x3c\xd6\x09\xf3\x93\x17\x0f\x4a\xae\x3d\x9f\x02\xf6\x02\x4d\x26\x74\x60\x95\xd2\x3d\x8d\x76\x60\x2e\xd1\xce\x00\xd3\x73\xaa\xd9\x8c\x20\x88\x0a\xd7\x55\xbb\xe8\x67\x49\x96\xa3\x7a\xbb\x2d\xf7\x94\x51\x90\xd4\xa5\x63\xc0\xb0\xb0\x0c\x18\xbe\x35\xaa\xf8\x5b\xb8\x64\xe7\xfe\x3d\xb1\x53\x49\x04\x14\x93\xee\x1c\xac\x11\xc2\xf5\x1d\x47\x9a\x3b\x31\xbe\xfa\x5e\x1a\x3c\xa3\xa3\xed\xb4\xb7\x6c\xf6\x90\xfb\xc9\x9b\x6a\x32\x29\xef\x70\xad\xc6\xbc\xe8\xfe\x61\x7a\xb1\x78\x25\x84\x3d\xe5\xa9\x6a\x88\x5a\x54\xda\xda\xbb\x7e\x35\x3c\xa1\x19\x92\x38\xfc\x7e\x89\xcf\xea\x2a\x54\xf6\x06\x37\xa8\x82\x2f\x35\x47\xd7\x55\xee\xc4\x02\x2c\x52\xcf\x07\x42\xdd\xa9\xfe\x40\xc1\x65\xc2\x2b\xe7\x2f\x40\x8e\xf7\x8b\x0f\x88\xf4\x76\xc9\x8c\x7f\x5e\xf6\x6d\xf9\xa1\x69\x96\x23\xfb\x82\xcf\x7e\x86\x13\xe0\x4b\xba\x71\xd0\xc4\x1c\xcc\xfe\xdc\xfd\xea\xc8\xb0\x17\x39\x06\xb5\x7f\xc3\x7e\xc1\x3e\xfd\xa7\xda\x9e\xfb\x27\x7f\xef\x84\x79\x43\xc8\x67\x5d\xdc\xbf\x3f\x46\xa0\xf6\x1a\x98\xd1\xdc\x0d\x72\x48\xbf\x02\xf6\x36\x5e\xcf\x08\x52\xf3\xcb\xd8\xeb\xbd\xa7\xee\xd7\x98\x93\xe1\x6b\xe1\xc0\xc9\x19\xac\x24\x9d\xa5\xe4\xbe\x8a\xa6\xeb\x60\x39\xe0\x71\x7b\x75\x2d\xbf\x5c\xdf\x64\x67\x25\x90\xbc\xfb\xb8\x34\x91\xcb\xbf\x6c\x82\x09\xc2\xe8\x0a\x4f\x6c\xb4\x0a\xac\x50\xcf\xc8\x91\xf3\xaf\xd4\x78\x38\x7c\xbf\x04\x9f\x1b\x8c\x9c\x7d\x79\x27\x2c\xe8\xb2\x92\x67\x4b\xa0\x01\xb3\x82\x06\x47\x79\x35\x58\x52\xc0\x0a\xe3\xaa\xb8\x92\xba\x76\x49\x56\x0b\xa7\x85\x08\x15\xf7\x9a\x2f\xea\x9b\x2b\x50\x5d\xc6\xc2\x73\x4e\x95\x19\x97\x91\x7c\x52\x66\x0e\xe5\xa8\xe5\xed\xa3\x06\x8f\x49\xc9\x91\x93\xab\x15\x42\x70\xbf\x6c\x9d\x81\x0e\xee\x2f\xac\x30\x85\xc3\x0e\xd4\xb2\x03\x9d\xea\x40\xa7\x3b\x50\xa3\x1e\xbe\x32\x5e\xb4\xbb\x53\xfb\x57\x3a\x33\xc2\x4d\xd3\xa3\x07\xf3\xe7\x5e\x51\xd4\x27\xba\x5e\x83\xe2\xec\xe8\x64\xe4\x96\x79\xb1\xc4\x19\x1e\x58\xb2\xaa\x4a\xc1\x57\x22\x30\x26\x80\x36\x5c\xf2\xaf\xa1\x7e\xb6\x47\xd4\x6f\xaf\x6f\x4a\x64\x1b\x51\xae\x14\xc2\x77\xa5\x88\xf9\xa8\x52\x2c\x78\xcc\x1b\x67\xce\x86\x44\xcb\x60\xc6\x64\x58\x33\x37\xc6\x99\xa7\x19\x9e\x9e\x9b\x49\x75\xbb\x13\xc2\xb5\x74\xbe\x80\x9c\x9a\xe9\x05\x65\x1f\xd2\x15\x5e\xcb\xa7\x64\x50\x17\xdb\xaf\x2c\x8b\xa9\x0a\xf4\xac\xbd\x5e\xeb\xbe\x4a\xd7\xb8\x7f\xfa\xcf\x54\x90\x1b\xed\xde\x10\xa6\x70\xa6\x4e\xd3\x32\x3a\x08\x57\xf1\x32\x89\x9a\xb5\xb4\x41\xc7\x1d\x11\x67\xb1\x06\xd8\xa9\xf7\xde\x13\x01\x8c\x0f\xc1\xf6\x51\xd0\x4a\x2c\x49\x43\x4d\x2f\xeb\x0f\xe4\x7b\xf2\xb7\x0d\xe9\xd2\x14\x30\x55\x9f\x66\x19\x6b\x65\x78\x4e\x29\x6c\x0e\xea\x7a\xbd\xb6\x62\xba\xdc\x23\xdd\x23\x4e\x94\x97\xb9\x31\xfc\xe4\xb5\xd1\xc6\x06\x94\xa8\xba\x71\x9b\xeb\x0f\x68\xa9\x71\x5d\x95\xfe\xa1\x8a\x9d\xe2\x1b\x61\x4d\xfd\x3e\x19\x18\xcb\x23\xd8\xe5\x27\x13\xe3\x57\xd9\x4d\x26\xe5\x91\x36\x21\xc0\xff\xe4\xf4\x48\xcc\x8f\xb4\x4a\x48\x59\xa3\x5a\xf3\x07\x97\x65\x8e\xaa\x8a\x21\x14\x53\xa6\x26\x63\x1d\x42\x69\x48\x6f\x20\x9e\xcc\x5f\xa5\xd3\x32\xd0\x43\xa5\xf4\xd4\xf9\x69\x49\x5c\x34\x7e\x5a\xc6\x66\x33\x01\x2c\xe8\xa4\x90\xd6\xc3\xab\x8b\x03\x9e\xf8\xc1\xfd\x7e\xc9\xdc\xbe\x4b\xb5\x8b\xda\x7d\x22\xdd\x8c\x83\x2c\xba\xbe\x2d\x95\xeb\x8f\x72\x44\xef\x94\x27\xba\xd7\xe4\xa0\xa8\x16\xa2\x17\x46\xba\xa2\x7c\xc3\x69\x1f\x7b\x2c\x23\x24\x57\x61\x6a\x07\xc9\x55\x97\x96\x4a\x2b\xcb\x1c\x40\x69\x5d\x39\xcb\xce\xbe\xaa\xa2\xd4\x61\xf9\xaa\x54\xa1\xb4\xaa\xe4\x88\xc9\x2c\x69\x52\x24\xaa\x46\x5e\x44\x59\xbd\xec\xd1\x09\xe6\xf2\x66\xa3\x17\x25\x01\x6b\x80\xa6\x71\x67\x34\xd0\xcf\x3d\x7d\x2c\x99\x36\xb5\xa8\x11\xb3\xb7\x85\x2a\xac\x0e\x3b\x78\x87\x05\x02\xef\xe3\xb1\xef\x4a\x4e\xa6\xe7\xd7\x35\x17\xb4\x5e\xcb\x92\x28\xfd\xd2\x7f\xed\xd7\x70\x74\x62\x60\x31\xf4\x79\x82\x6e\x65\xdb\x3a\x55\x9e\x0f\x51\xa2\xa4\x68\xca\x9a\xd3\xc5\x12\x9c\xf7\x47\x71\x2b\x14\x92\x3f\xcb\xc1\xca\x3b\xa9\x93\xf2\x1b\xfc\x31\xd5\x7e\x8c\xc6\xd1\xd9\x9f\xe2\xee\x13\x15\xab\xcb\xd2\x04\xb9\xa1\xdb\x55\xdd\x11\xe3\x22\x31\x37\x16\xb7\x11\x3c\xed\xc0\xd7\xcb\x3c\xbd\xbd\xe4\xe4\x62\x4e\xac\xb9\x18\x20\x49\xca\xb8\xc9\x51\x3b\x99\xb4\x53\x59\xd4\xfc\x7f\x54\x55\xf6\xde\x94\x1c\x72\x34\xd3\xf2\x92\x2d\x55\x49\x04\xa3\xd9\x7b\x5d\x31\xc3\xe8\xe9\xa3\x55\x2d\xd3\x76\x0b\x9c\x92\x9c\x56\x95\xc0\x58\x2d\xec\x64\x32\xb3\x45\x34\xf7\x31\x3a\xf4\xe4\xe8\xbb\xc6\x4f\xfa\xde\x03\xd5\x97\xb5\x52\xbf\x82\x2d\x7e\x0f\x3b\x80\x85\xd1\xf7\x06\xfc\x5f\x36\x84\xc6\x68\x55\x92\x1b\xc1\x3b\x65\xfb\xcf\x2b\x47\x36\xfd\x65\x74\x80\x6f\x58\xe0\x57\x0e\x64\x44\x47\x62\x0d\x44\xac\x44\xb1\x29\x8a\x79\xb4\xa8\x1b\xbe\x5d\x36\xa9\xc6\xee\xae\x04\x36\x46\x16\xb7\xde\x9a\x72\x1f\xf4\x0b\x77\x1e\xbf\x67\x03\x51\x92\xd3\x49\xd6\xa7\xdc\x36\x47\x41\xc6\x88\xa1\x98\x84\xb8\xbd\x5d\xda\xc5\x8a\xec\x82\x8b\xd7\x7f\x77\x57\xe0\x91\x1e\x4f\x00\x07\x40\x62\x7d\x2c\xfe\x33\x94\xd8\x92\xe8\x4e\x56\xe9\x14\x2c\xbf\x39\x39\x15\xf7\x4e\xe6\x33\x84\x79\x75\x22\x79\x71\x15\xe4\xbc\xe0\x61\x7c\x27\xb7\xe1\x86\x69\xd7\x8c\x5b\x94\xf6\x1a\x60\xbe\x13\xe1\x9f\x43\xef\xe6\x0b\xca\xea\xf5\xfa\xc6\x77\xb7\x15\x25\xda\x6e\x4b\x36\x3d\xef\x36\xef\xba\x15\xa7\x4a\x34\x81\x5e\x56\x33\xe4\x62\x1a\x98\xab\xf4\x77\x8e\x23\x3e\x2a\x93\x1c\xfd\x3a\x56\xbc\x40\xdb\x6d\xfe\x1d\xb0\xc4\x1e\x86\x33\x21\x26\xb9\x93\x6e\xea\xcf\xa5\x97\xc3\xce\xe5\xae\x4b\x02\x71\x1d\x4f\x45\x76\x28\x03\x38\xf1\xbb\x32\xcc\x9c\x27\x12\x77\x1f\xe2\xa2\x6d\x8d\x10\x84\x69\xf5\xb2\x16\x97\xd3\x2b\xaa\x9c\x2d\x71\xab\x24\x88\xba\x9a\x3d\xa8\x1f\xd2\x07\xf5\xf1\x31\x92\x87\xfb\xa2\x5e\xca\x23\x74\x51\x2f\xd1\x6d\x5b\xd5\xa3\x77\x9c\xd4\x1f\x76\xfa\xec\x6b\x27\x13\x2e\x19\x45\x88\xee\xa4\x48\xc7\xa7\xcc\xf0\xa6\x9a\x99\xa0\x1e\xc9\x58\xba\xae\xac\x2b\x7a\xaf\xc5\xab\xea\xe4\xc1\xea\x61\x45\x1f\xac\x4c\x23\xec\xde\x4a\x35\xc3\xef\xad\x96\xe8\x76\x5d\xad\xee\x9d\xe8\xa6\xba\x8a\xdf\x5b\xdf\x6b\xf1\xa6\x62\xf2\x7f\x13\x7d\x71\x41\x79\x27\xd4\xd9\x04\xea\xef\x79\x8b\x6b\xc9\x33\x3d\x6e\x37\x4c\xcc\x3b\x9d\x7a\x47\xff\xdc\xa8\x9c\x79\x8c\x0c\xa0\x91\xbc\xdc\x80\xd3\x12\xd0\x2b\x8e\x00\x4a\x28\x0b\x91\xe6\xd4\x16\x1b\x88\x39\x36\x6c\xba\x12\x0b\xaa\xe0\x17\x78\x51\xa9\x3b\x49\x93\x9f\xfa\x75\x9d\x08\x72\xe0\x52\x60\xff\xda\x6e\xdd\x9b\xd0\xff\x27\x7d\xe4\xda\xf0\x0f\x95\x54\xca\xf0\xeb\xf4\x51\x44\xa4\x50\x9e\x51\x8f\xc9\xcb\x67\x87\xd5\x75\xfd\x28\x13\x66\xe8\x57\x3d\x3d\x87\x6f\xb5\x70\x08\x11\x9b\x72\x6a\x15\xbc\x45\xa7\x51\x8c\xf4\x99\xe9\x37\xad\x03\xc9\x9d\xa8\x60\xb3\x6d\xc9\x1d\xe6\xe0\x17\xc2\x9e\xa5\xe1\xd2\x47\x87\x3b\x2d\xa3\xed\xd6\xff\x29\x9b\xff\x9d\x16\xcc\xc3\xbc\x48\xde\xe8\x02\xed\x53\x07\xfe\x79\xa0\xc9\xd3\x37\x65\x00\x8a\x23\xd0\x48\x6f\x05\x36\x8d\xe9\xd6\xdc\xd2\x90\x70\xff\xb1\x92\x7d\x7e\xa4\xeb\xb5\x01\x7a\x48\x3e\xc0\x6c\xea\xd3\x36\x06\x9b\xbf\xfe\xe1\x38\x03\x9b\x27\x09\xdb\xa4\x65\x99\x55\xd6\xc6\x12\xbf\xed\x27\xb4\xf9\xc2\xa6\xc9\x64\xe2\x3f\x90\xb3\x9d\x4e\x5b\x10\xc2\xab\x1b\x42\x0a\xd6\x54\xdd\x39\xdf\x93\xeb\x75\xbd\x0a\x03\x09\x20\xf4\x41\x9e\xde\xd5\x62\x89\xd2\x2e\x7b\xd3\x05\x85\xfb\x07\xac\x3d\x29\xbd\x3d\x1b\x2e\xd4\x82\x60\xb1\x9c\xae\x5a\xb6\xaa\x05\x60\xf1\x65\xa6\x33\xa9\x33\x68\x2d\x3f\x95\x41\xb7\x6c\x7a\xae\x50\xd0\x9c\xe7\x95\xa0\xb3\x07\xc2\x29\xc6\x84\x51\x33\xb2\x74\xdf\x4c\xa9\x5c\xa2\xd7\xf2\x34\x15\x46\x49\x16\x4d\x6a\xc9\xf0\x89\x9c\xeb\xf3\xc4\xd1\x24\x8e\x12\xb2\xac\x10\xe4\x8e\xdf\x33\xe6\xb8\x15\xe5\xa7\xba\xc3\xbc\x67\x29\x95\x46\x4e\xc7\x6c\x02\x9d\x94\x3c\xd3\x86\xda\x54\x04\x93\x63\x81\xbc\xb4\xa5\x3e\x39\x15\x28\xeb\xa4\x53\x72\x04\x89\xf2\x7a\x3f\x4a\xc6\x5f\xb2\xe9\x55\x7d\x9d\xf3\xdd\x21\x51\xc8\xf3\x0e\xe9\xb1\x25\xe8\x1e\x3e\x07\x15\xd0\xbc\x06\xd8\x90\x9f\x85\x18\x24\xbe\x32\x0a\x8b\xaa\x78\x72\x36\x1f\xdb\x83\xf2\x7f\xc9\xb2\xe3\x34\xa2\x05\x70\xf0\xe4\x51\xe3\x31\x0f\x26\x4a\x62\xaa\x10\x46\x15\x82\x6f\x81\xb0\xe8\xc5\xf4\x20\x06\xfc\x33\xd3\xa6\x2e\x62\x9f\x5a\x7f\xf6\x4c\x16\x5e\x06\x38\x34\x41\xbe\xd8\xc4\x4e\x14\x8f\x00\x38\x64\x6f\x08\xc9\xd8\x24\x97\xe2\xd7\x29\x57\xc7\x30\xa1\x98\x84\x88\x70\x52\x1c\x57\xd7\x79\xc9\x11\xe6\x3b\x08\x61\xfc\x05\x3a\x41\x2b\x11\x9e\xf4\x66\xd3\x0d\x83\x8f\xff\xc7\x44\x42\x78\xe1\x4d\x7a\x04\x76\xf9\xdb\xa9\x8d\x18\x94\x12\x4d\x45\x55\x3c\x76\xeb\xac\x01\x96\x95\x69\xa7\xe7\x57\x86\x9a\x15\x7f\xd5\x4e\xcf\x39\x11\x35\x65\xa4\x79\x99\xbc\x49\x7d\x99\xdb\xe9\xf9\x27\xba\x5e\x2b\xe6\xc5\x7d\x70\x74\x02\xc5\xf3\x2c\x8e\xfe\xf2\x5f\x51\x1b\x5f\x3d\xc7\x6f\x5e\xe7\xe0\x2b\x9f\x2f\x93\x83\x8a\xd8\x6c\xb1\x02\x42\x09\x33\x46\xf7\x14\xe9\xdb\x3f\x47\x72\x66\xfa\xf4\x0b\x2f\x8d\xa2\x56\x37\x5b\xc2\x33\x9c\x9e\x7b\x62\x54\x1e\x65\x52\xb6\x52\xd6\xce\x03\xed\x30\xb6\x9a\x70\x5c\x39\x6f\x65\x11\x0e\xc4\x15\xc9\x04\x12\xfa\x5d\x8f\x7b\x0e\x3c\x11\xe4\x8c\x57\xe8\x70\x77\xf3\xd1\x74\xfe\x4d\x59\x77\x32\x70\x74\x72\xb8\x19\xa7\x61\x49\x9f\x93\x2b\x19\x9e\x61\xe3\xfa\x16\x95\xd0\x71\xed\x87\xf9\x8f\x86\x07\x0d\x8a\x86\xb4\xd7\x7d\x3d\x9a\xd6\x9e\xf2\x99\x39\xa6\x06\x94\x38\xa6\x0d\xfb\x24\x3d\xa6\xa2\x92\x83\xb4\xd3\xe3\x50\x62\x2b\xeb\x6b\x04\x0b\x14\x38\x93\x45\x1c\x7b\xb2\xe2\x77\x77\x64\x1b\xf2\x84\x8b\x56\x43\xb3\xe1\xab\x4b\xd2\x6c\xd6\x24\x3a\x67\xcb\xcc\x7a\xf5\x14\xed\x77\xa7\x36\x3a\xbd\x60\xfe\xf5\xa3\xbe\xe3\x7d\xf0\xed\x76\xbb\x58\x6a\x20\x5c\x30\x3d\x29\x53\x1b\x7c\x91\xb9\x48\x90\x51\x29\x64\x2f\x99\x99\x0f\xa5\xa2\xcd\xc9\xef\xea\xd5\x87\x77\x1b\xce\x08\x1f\xf1\xe9\x5f\x5b\x1a\xf2\x78\x76\x02\xca\x42\x52\x57\x70\x42\x15\x98\x61\x36\x2c\x9c\xa3\x9d\x94\x12\x82\x13\x77\xa8\x78\x15\xea\x51\x8f\x4e\x06\x87\x1a\x84\xca\xf4\xcc\xde\x68\x78\xe6\x8d\x72\xa2\xe7\x4e\x1e\xf5\x4a\x4f\xd5\x37\x56\x47\xb8\x10\x4b\xcc\xe5\x7f\xc7\x27\x3a\x12\xc2\x1d\x6e\xa9\x7c\x54\x2e\xd8\x12\xf8\xb4\xdc\xcd\x71\xa0\x47\x92\x27\xfb\xb0\xd1\xd0\xe1\x37\x99\x38\x5d\x34\xf7\x84\xa3\xf0\x78\x33\xe2\x9e\xdc\xa8\xfc\x37\xf7\x4e\xf4\x19\x9d\x3f\x26\x39\x3e\x41\x77\xf5\xa5\x1a\x3e\x12\x7f\x9e\xa8\x8c\x7c\xef\x67\xd9\x97\x46\x06\xfd\x82\x58\x11\x3f\xd9\x71\x6e\x41\xfb\x1d\x6d\x44\x8e\x11\x48\xca\x07\x07\xfd\x28\x17\xa0\x13\xaf\xe1\x83\x7b\x27\x4a\x91\x3a\x78\xd7\x9d\x20\xff\x28\x70\x87\x95\x3c\xbf\xbc\x30\xc7\xac\x5a\xc0\xb4\x41\x27\x13\x9e\x88\xec\x54\x29\x06\xc4\x41\x3e\x3e\xfd\x2e\x32\x83\xdc\x4f\xcc\x42\x44\xaa\xc5\x1e\xa6\x6c\xef\x8e\xca\xdc\x2e\x93\x49\x79\x98\x53\x65\xf6\x9e\x39\xf0\xce\xf4\xee\xdf\xbb\x7e\x9a\xbb\x6e\x07\x76\xd8\xde\x8d\x75\x78\x84\x56\xb2\x40\x6e\x39\x82\x7d\x98\xf6\xd0\xac\x5f\xf2\xc2\x3a\xf8\x85\x17\xc6\xbe\x99\xa8\x12\x05\x9f\x85\x3b\xf5\x59\x3f\x12\x12\xb3\x1e\x9d\x28\x19\x88\x09\x59\xe5\xcf\x42\x2c\xe3\xa9\x3c\xd0\xcb\xc2\x45\x39\xe4\x0c\xa2\x3e\xee\xa0\x97\x82\x21\xe1\x7f\x43\x8f\x8f\xd4\xf5\xe8\x0b\xb1\x34\xe4\xa5\x97\xf7\x76\x03\x34\x50\xcc\x33\x1e\xba\x10\xa0\x0c\x0e\x09\xc8\x53\x7b\x00\xf0\x8f\x51\x7b\x3c\xe4\xa0\xfa\x10\xe0\x03\xa7\xfc\xeb\x5c\xf6\x44\x82\x46\xf9\x8c\xf3\xdc\xc6\x52\xf9\x70\x9c\x5a\xf5\x35\x10\x03\x53\x32\xe7\x94\x47\xab\x19\x6e\x5d\x4f\xe8\xc3\x16\x30\x5f\xb5\x75\x9d\x00\xd6\xeb\xbe\x0a\x4b\x93\xcd\xa1\x3f\x6a\xa7\x56\x00\x49\x22\xf4\x04\x79\xae\x34\x18\x03\xc1\x7d\x86\x93\x89\xec\xfa\x68\x32\x51\x1e\x18\xfa\xfa\x39\x40\x55\x2b\x79\x8d\x81\x0b\x9f\x0d\x46\xa4\x95\x2c\x72\xdd\xf4\x9f\xf5\x86\xa6\xc9\xc3\x24\x73\x93\xf4\x78\x4b\x8a\x56\x0d\x2e\xe5\xfa\x88\x58\x5d\x6a\x27\xb7\x9e\xc8\xc7\x60\x7f\x5a\xef\x33\x63\x45\x4f\xbc\x69\x4e\x7d\x26\xd6\x70\xa9\xcf\x64\x33\x72\x6f\x81\xa8\x3f\xf7\x8a\x5c\x50\xd6\xd8\x17\xb9\xce\x25\x4e\x92\x29\xa8\x73\x54\x9d\xde\xc6\x19\x77\x73\x6d\x94\xa3\xec\x43\x3e\x86\x1e\x27\x98\xcf\xbe\x9a\x38\x4a\x6d\xaa\x84\x63\x70\x5d\xcd\x38\x00\x89\x94\x8f\x4f\xb8\x78\xb1\xcf\x1f\xad\x34\xc8\x4f\xe1\xc4\x68\x67\xc9\x9e\x59\x31\x4e\x8c\x01\xef\xe0\xad\x95\xe7\x35\x59\xa2\x48\x57\xcf\x2b\xc3\x8b\xca\x49\xd2\xde\x9e\x76\x19\x4a\xb3\x74\x01\xd9\x94\x04\xf5\x2a\xa1\x5b\x52\x0a\x3f\x43\x00\x09\xde\x60\x77\xa6\x04\x8e\xae\x1a\xc9\x20\xeb\x8a\x58\x02\x54\x54\xe0\xcb\xa0\x04\xec\xd3\x32\xc8\x09\x94\x53\xa9\x64\xeb\xcb\x58\xe8\x19\x72\xf7\x7d\xe0\x84\x3a\x67\xb9\x5b\x27\x90\x9c\x13\x76\xf8\xe0\x8b\x26\xab\xdb\x89\xd6\x39\xc2\xea\xd4\x24\x26\xcf\xe7\xef\x35\x3c\xcf\xf3\x86\x30\x41\x2f\xa8\xc9\xe9\x80\xe5\x09\x7f\x6a\xce\x92\xec\xa1\x28\xaf\x5a\x28\xb0\x8f\x1a\x59\xd4\xc5\x8c\x3f\x8f\x5e\x11\xe7\x20\x01\x0e\xef\xe9\x37\x1e\x9b\xe2\x9b\x89\x3d\x86\x17\x0c\x53\xfb\xf4\x67\x3e\xe7\x1d\x2c\xd5\x88\x01\xac\x5b\xfc\x79\xa2\xf7\xb5\x4a\x1a\xeb\xee\x51\x1d\xcd\x76\x98\x4b\xea\xd4\x5e\x49\x61\xf2\x94\xc1\x6c\x3e\xce\x60\x6c\x1d\x72\xfa\x5d\x89\x93\xba\x3c\xb1\x39\x62\x89\x9a\xcd\x8a\x94\x59\x35\x28\xd9\x6e\xc5\x54\xe7\x3e\x91\x1c\xda\xd1\x89\x55\xc8\x13\x4d\xf6\xc6\x5f\x5d\xf2\xcc\x59\x19\x65\x4f\xfd\x47\x71\x03\x08\x1f\xb9\x4c\x47\x76\x41\x72\x0e\x57\x47\x89\x88\x70\x94\x10\x48\x30\xee\x9c\xef\xa9\x8d\x58\x7e\x45\x3e\xe9\xbf\xfb\x27\x75\x94\x90\x09\xb1\x8a\xe2\x70\xd8\x39\x8d\xa2\xce\x49\xe3\xf6\x56\x80\x8e\x39\x57\x62\x84\x8d\x2a\xcc\xf9\x81\x05\x06\x0b\x84\xb9\xb2\x98\x65\x6e\x22\x79\x4b\xcc\x35\xd9\x88\x1a\x07\xbe\x1d\x26\x8e\xd1\x7b\xe4\x32\xd9\x90\x1d\xc2\xc6\x84\xd0\xc7\xc8\xf7\x09\x21\xc9\x7e\xc8\x5b\x48\xc2\xf3\xd5\x4d\x26\xb8\x87\x89\x5d\xf9\x07\xcf\x3f\xac\x25\xa1\x63\x56\x70\xeb\x30\x13\x40\x10\x38\x53\x79\x85\x94\x96\xd9\x41\xb8\x1f\xcd\xa4\xb4\x9f\x46\x3d\xe4\x7d\x7b\x95\xa7\xa4\xb6\xa3\xf4\x7a\x38\x2b\x3f\x48\x97\xfb\x66\xc8\xf5\xb3\xcf\xb3\x59\xf9\x85\x82\x8b\x51\xfd\x8b\xb5\x3d\x76\xbf\x2c\xdb\xa3\x41\x02\x0a\xf4\xde\xda\x56\x18\x31\xdd\x03\x66\xc5\x7f\x19\x07\xbf\xba\x71\x10\xf8\x98\xbe\x40\x68\x62\xc1\x49\x62\x2c\x16\x73\x0a\xa7\xab\x6a\xdd\x98\x7a\x03\x8d\xd3\x6f\x0e\x09\xe1\xfe\x49\x5e\xde\xe0\x88\x17\x0d\x7b\x2f\x88\x83\x3f\xfe\x3e\x84\x88\xac\x2d\x2d\x98\x82\x21\x28\x84\xf0\xb3\xe1\x10\xdb\xbc\x44\x7e\xc8\x20\xcc\x15\x96\x95\x97\xe3\x50\x47\xff\x59\x76\xd3\xe6\xe4\x64\xb2\x1f\xfa\xe5\xee\x46\xcf\xbd\x26\xcf\xaf\x3e\xf3\xb1\xf4\xff\xe5\x54\x69\xa9\xee\xee\xe6\xd4\x3b\x1b\x53\xef\x6c\x4b\xdd\xb3\x0b\xb3\x39\x56\xf2\xfa\xe6\xaf\xab\xf9\xcf\x2e\x82\x76\xaa\xcb\xbc\xf1\x25\x8e\x1c\xa1\x7a\x5f\xf6\xdf\x3e\x43\x23\x3e\x60\xc8\x99\xb8\xf6\x03\x43\xe1\x13\xd5\x72\x6f\x1f\x0f\xb5\x33\xec\x3b\x91\x73\xaf\x5c\xc8\xf0\x51\x66\x8a\xcd\x1e\xcb\x7d\x69\x38\xe6\x78\xff\x0d\x4c\x78\x4e\x46\xe8\x91\x24\x87\xd7\x65\x20\xea\xd8\x9b\xd6\xc3\xad\xee\x83\xe0\x31\x5f\xf9\x8e\xcb\xcf\xcc\x20\xd0\x4d\x66\x93\x1c\x46\xb1\x9d\x71\x00\x4f\x23\x4f\x1d\x28\xc5\x7b\x3f\x8a\x14\x61\x66\x1e\x99\xa0\x51\x34\x72\xfa\x8e\x60\xa0\xa7\x22\xf2\xf5\x9c\x5b\x4f\x98\xac\x6e\x88\x25\xaa\xff\x83\x8c\x56\x7d\x26\xab\x43\x36\x76\x86\xb0\xee\x6e\xe9\xba\xd3\x94\xff\x43\xac\x50\x77\x1f\xf5\xe1\x07\x7b\xb6\x50\xe4\xb2\x10\x48\xcc\x81\x4e\xcf\x57\x3f\xe4\x7a\x39\x1a\xa0\x8f\x0d\x00\x2c\x90\x53\xe2\x07\x2e\xcc\x95\x08\xdd\xab\xfc\x8b\x47\xd3\xa3\xff\xbb\x9b\xe7\xc1\x30\xe7\x31\x70\x1d\xfd\x64\x86\x61\xf6\x93\xdc\x0e\xbe\x82\xd3\xc1\x4f\xf3\x0e\xc8\xde\xe0\xe9\x1d\xe6\x6b\xbc\xfb\xec\x24\x39\xea\x31\xca\xf8\xc4\x4c\x02\x4a\x79\x5f\x04\xf7\xd5\x6c\x52\x10\xbb\xac\x3b\xd5\xdc\x69\x10\x16\xe3\x7c\xcd\x7d\x25\x14\x64\x77\xfa\xf6\x26\x3a\xee\x30\xb1\x9a\x9c\x9c\x96\x1b\xc8\xf4\xab\x58\x5c\x2c\x49\x7f\x6d\x9b\x8b\x9c\x88\x8c\x28\xf7\xa5\x26\x91\xdc\x0a\x9d\xf6\x73\x1a\xf1\xa6\xbe\xab\x21\xe5\xce\xb6\x94\x21\x53\xca\xba\xd7\x94\xb2\x36\xa6\x94\x81\x89\xcc\x1c\x51\x5f\x60\x7a\x71\xf1\xd3\x36\xb8\xdc\x65\xf6\xea\x3b\x5b\x69\xb5\x21\x03\x3c\xc6\xd0\xf9\x4a\x63\x5b\x4f\x08\xed\x60\x03\x3a\xef\xe8\x3b\xbc\xb2\x2a\xe1\x73\xab\xaf\x75\x3a\x61\x7c\x80\x43\xf1\x4f\x36\xce\xf4\xdb\x66\x7a\x44\x40\x63\xa3\xe9\xd5\x02\x80\x75\xa6\xf6\xec\x16\x5f\x66\x79\xc8\x5e\x81\x26\x44\xd6\x4f\x58\x6b\x0f\x2b\x94\x53\x0b\xc3\xcd\x68\x18\xb6\x91\xdb\xce\x64\x6a\xd3\xb3\x97\x70\x2d\x01\xd2\x81\x4f\x33\x38\x73\x54\x25\x51\x2e\xfb\x28\xdb\x85\xca\xae\x23\xfd\x74\x76\x7c\x80\x71\xf0\x4f\xad\x75\x5e\xfd\x62\xb5\xce\x17\xbd\x23\xcf\x19\x58\x8d\x5e\xc7\xe8\x90\xff\x4e\x9a\xd0\xdf\x3f\x97\x01\x32\x83\x03\x7f\x59\x77\x19\xd8\xa4\xa3\xa3\xc1\xca\x17\x64\x99\x60\xa0\x3d\xad\x57\x97\xfd\x0c\x43\xbe\x1e\x93\x86\xf4\x03\xb9\x91\xdc\x5b\x26\x79\x12\xba\x05\xe1\x04\xc0\x5e\x23\xb8\x86\xf7\x44\xdc\xb5\x3d\x79\x3d\x2e\xc8\xd2\x60\x1b\xd1\x78\x6f\x1c\xb1\x08\x9f\x8e\x08\x93\x1b\x71\x38\x99\xa5\xfc\x96\xea\xe8\x5e\x9d\xe3\x91\x9b\x73\x31\xf8\xf0\x4d\x7d\x23\xb7\x56\xa7\xab\x76\xb1\x60\x7c\x4a\x1b\x79\x4c\xaa\x1e\x26\x2e\x65\xfe\x9d\x8b\xa9\x42\x6f\x48\x14\xee\x4e\x70\x8c\x32\x22\x96\xc2\xa6\xd6\xb4\xb9\x0f\xd1\x4e\xf1\xcb\xb4\x22\x53\x5f\x3b\x05\x16\x3e\x20\x6d\x86\x10\xa6\xe0\xb4\xab\x72\x1a\x23\x1c\xa0\xaa\x28\x48\x15\x46\x3e\x8d\xa9\x5c\x23\x82\x39\x16\x68\x2e\x7f\x77\xee\xf7\xae\xe4\x98\x62\x3d\x17\x08\xb7\x93\x89\xf6\xb2\x6a\xf1\xd1\x0c\x79\x17\x1b\xc4\x47\xea\x03\x5d\x19\x13\x0f\xc7\x75\xb0\x68\x0e\xf8\xf2\x97\x78\x7a\xe0\xeb\x81\x93\xe3\x27\xe5\xf3\xba\xd5\xf8\x89\xe7\xe7\x2e\xb7\x98\x2f\xcc\x5a\xa6\x62\xef\xd1\x13\x7f\xf0\xbc\x19\x2a\xa6\xc9\xec\xd0\x5a\x75\xf1\xe1\x3a\xe3\xd3\x93\x38\xc1\xc3\xb8\xcd\xb8\x41\xea\xb3\xb5\x91\xf7\x68\x63\xdc\xf2\xfc\x94\xf4\x95\x88\x1e\x98\xd3\x18\xf2\x67\xc3\x2e\x83\xbf\xb4\x02\xdf\x6c\xf3\xca\xcb\xab\xaa\xfb\xb5\x02\xe1\xd8\x4b\x22\x57\x91\x69\xf2\xac\xcc\x9e\xdd\xb2\xbf\xb1\xa3\x1f\x19\x53\xc3\x42\xba\xe1\xa0\x80\xb5\x74\xcf\x17\x64\x39\x72\xf6\x37\x2f\x6d\x58\x59\xc0\x34\x8d\x7f\x6d\x82\x76\x29\xeb\xae\xc9\x4a\x18\x0c\x18\x39\x6b\xe8\xb8\xf8\xf5\xf8\xb2\xee\xc6\xac\x1d\xdb\x2a\xc7\xf2\xa0\x68\xe4\x77\x44\xbe\x56\x64\xdf\x4c\x8b\x18\x2f\xda\x8d\x36\xdd\xe0\xaa\xc5\xba\xeb\xe8\x7b\x56\xde\xee\x70\x32\x9a\x28\x33\x45\x32\x81\xfe\x66\xb0\x59\x2a\xb2\x94\x51\x05\x17\x50\x7e\x3d\x00\xa9\xd3\x83\x1b\xb1\x8e\xa6\xfa\xaa\x80\x33\x83\x2c\xa8\xc9\x4a\x9c\x54\xb0\xa0\x4b\x03\xab\xb0\x73\x31\xcb\xfe\x10\xec\xb6\xc8\x31\xd9\xb2\x69\x29\x1e\xd2\x06\x53\x2f\x3d\xb0\x3c\x04\xdc\x5a\xfb\x1b\x2b\x5c\x6d\xff\x8d\x06\xa4\x38\xea\xf9\x36\xd8\x6f\x3d\xb5\xc4\x7c\x00\xd4\x57\xb2\x2a\xb3\xc9\xb2\x08\xae\x08\x6d\xb7\x5e\x7e\x4c\x00\x92\x48\x30\x85\x20\x3b\xea\x57\x21\x4c\xdb\xd2\xd8\x6f\xa4\x97\x4a\xf5\xdd\xcd\x70\x5d\xb5\x7d\xd0\x87\x5d\x95\x37\x99\xdb\xc8\x72\xb8\x54\xbb\xc9\xe4\x48\xf9\xff\x40\x22\xfe\x12\x9d\xf2\x53\xc7\x54\x74\x90\xf1\x1c\xcd\x3b\x4d\x8f\x67\xac\xbe\xee\x2e\x5b\x61\x94\x6a\x98\x9f\x66\x57\xaf\xa2\xf3\x3d\xeb\x51\x51\x4c\x43\xe2\xd2\xa7\xe3\x30\x69\x75\x03\xb4\xe5\x8e\xd7\x90\x26\xdc\xf3\x3c\x5d\xe5\x4e\xf1\x6c\x0d\x5f\x85\xa6\x0c\x6b\xf2\x73\x53\x94\x6e\xe7\xeb\xd2\x93\xd6\xa0\x87\x24\xb4\x58\xe2\x2e\xeb\xb2\x4e\x7c\xba\xda\x6e\x4b\x6e\x53\xac\x4d\x69\x83\xe6\xf6\x47\x4c\x5b\x08\xed\x90\x23\xad\x60\xf9\x2c\x61\xf5\x2c\x49\x4a\x56\x41\x5e\xd6\x5c\xe0\x81\x9a\xba\x28\x09\xac\x8a\x31\x88\xeb\xc9\xe7\x08\xc9\x56\x95\xa4\x6b\x8f\x91\x11\x73\xf9\x98\x42\x3c\x0b\xa8\x4b\x31\xe7\xb6\x38\xb7\x8e\x6d\x5e\x2a\x72\xfb\xd6\x28\x31\x76\xf8\xf2\x6e\x6c\x6a\x44\xbc\x3e\xea\x8f\xc5\x72\xf3\x92\xd6\x0e\xa8\x2b\x7c\x16\xcc\xcb\x32\x4f\x22\x58\x1f\x59\xf9\x28\xf3\x49\xfe\xfa\xeb\xcb\xd0\xeb\x80\xbd\xc8\x82\x2d\x03\x68\x37\x48\x5f\x6b\x6f\x31\x33\x08\xb1\x0f\x87\xed\x3c\x03\xc4\xf6\x78\x5d\x77\x5d\x06\x89\xad\xf1\x18\x57\xa3\x65\xf4\x39\x83\xf7\x44\xbc\xfe\xc4\x08\x3f\xf5\xf0\x38\xe0\x81\xc2\xeb\x5f\xb5\x0c\x7c\xfd\xb8\xd6\xba\xd8\xdf\xe0\xa6\x23\xa6\xeb\xb6\xfd\xb0\xb9\x7e\x56\xaf\x44\xcb\xc1\x51\x73\x7a\x1e\x3d\x2a\xe3\x47\x49\xe4\x8b\xee\x50\x49\x2a\x81\xc2\x0a\x35\x20\x0f\xf1\x10\xb4\x76\x58\x4c\x39\x79\x4f\xbb\x08\x74\x59\xaf\xae\x7e\xc7\x6f\xb6\x5b\x48\x5d\x61\x7f\x38\x9d\x8a\xf9\x3a\x57\xb9\x14\x02\x64\x4d\x57\xd9\x4d\x18\x24\xf3\x8b\x52\xf3\xed\x46\x57\xbe\x8f\x54\xe0\x06\x75\x45\x76\x70\x76\xdd\x0c\xb9\xc2\x19\xa9\xe9\x7f\xa6\x1b\x9c\x73\x81\x53\x22\x7e\xc5\x02\x71\xfc\x9c\x36\x15\x93\x4c\x17\xff\x97\x67\xdb\x57\xf7\x6c\xa3\x4d\x86\xef\xd7\x07\x45\x93\x1a\xca\x04\x01\x58\x94\xe4\x93\x82\x82\x9e\x59\xdc\x14\xe1\x37\x11\xb0\x6d\xce\xb0\x93\xc3\x2b\xec\x57\xbe\x9a\x20\x17\x1b\x20\x16\xb6\x07\x33\xdb\x37\xa2\xf0\xe4\xf3\xac\x5d\xe9\xcb\x44\xbf\x1b\xb4\x12\xa2\xfc\x86\x8d\x38\x13\x95\xae\x00\x9e\x02\x11\x98\x69\x4d\x0c\x90\x71\x7d\xde\x6d\x03\x03\x2a\xed\x06\x21\xa7\xa6\x7c\xa9\xb5\xf3\xea\x6f\x48\xd7\x7a\x45\x14\x9b\xf3\x71\xd8\x6b\xd6\x88\x4b\xff\xd3\x0f\x0b\x3a\xcd\xf2\xde\x15\xc7\x0a\xb5\xa7\xe2\x79\x8c\x54\x4c\x75\x76\x1e\x60\x4f\x55\xf8\xa6\x1e\x2b\xa6\xff\x3a\x62\xbe\xfa\x11\x33\x74\x6e\xa8\x3d\x93\x5d\x47\x65\xc3\x2c\xe4\xbf\xc5\x5c\x0a\x69\xbb\x81\x83\xcb\xdb\x31\xf9\xca\x86\xe4\x44\x65\x24\x8a\x4e\xbb\x75\x60\x92\x3e\xb4\xbf\x61\x1d\x57\x24\xc4\x26\xde\x5f\x87\xfc\xe2\xe7\x3a\x41\x95\xc2\x35\xe4\xe3\x58\x25\xc5\xc4\x4e\xd4\x6c\x25\xe9\xed\x95\xdc\x77\xe1\x09\x8b\x45\x4f\x57\x07\xcc\x82\x11\x93\x89\x30\xdb\x7b\x4e\x7f\x85\x05\xd4\x21\x1d\x25\xca\xd9\xe7\x06\xce\xef\xac\xdd\x3e\xdb\x09\x3b\x6b\x2e\x79\x84\x8d\x8c\x61\x81\x35\xef\x34\xfc\xd9\x67\x61\x17\xe6\x7c\xdf\xa1\x79\xce\x08\xe9\xdd\x00\x7b\x2e\x8d\x7e\x9f\x89\xfc\x74\x5a\x9f\x8e\x81\x9b\xd6\xf6\x2d\xb8\x5d\xde\xff\x52\x6e\x97\x8c\x00\xfe\xaf\xbb\xe5\x7f\xdc\xdd\x92\x59\xc5\xf8\x66\xe9\x8a\xc3\x8f\xfe\xbe\xea\xe2\xcb\x29\xa7\x4e\xef\xad\xe0\x2a\x8e\x99\xef\x07\x0e\xa5\x4d\x7c\x94\x0e\x5d\x32\xf9\xc6\x7e\xee\x2b\x86\x8c\xcc\x46\xac\x0c\x39\xc3\x09\xdd\xd4\x02\xd2\xc7\x98\x0c\x15\x0a\x77\xc6\xca\x7e\x55\x2f\x5e\x6a\x74\x25\xa5\xe8\xa9\x22\x3b\xd2\x28\x4d\x0a\xef\x2b\xe7\xa2\x0d\x63\xe7\x34\x0b\xb6\x9d\xcc\xef\xd1\x51\x88\x33\x9a\xab\x18\xac\xb4\x19\x45\x23\x44\xf0\x1f\x4e\x0b\xe4\x23\xe1\x37\x99\x69\x51\x39\x77\xbc\x7b\xef\x4e\xc2\xd0\xb9\x77\x5f\xf6\x77\xc6\xcc\xcc\x21\x97\x68\x5f\xed\x7d\x17\xdb\x60\x83\x5a\xba\xc9\x95\x71\x77\xef\xde\x2b\x71\xdf\x5e\xf0\x50\x74\xd5\x0d\x87\xdf\xfd\x22\xed\xd6\xe7\x79\xab\xdc\xa7\xfc\xe3\xa7\xd9\xc7\x4e\x6d\xf8\x99\x78\x73\xff\x94\x2c\xc8\x72\xbb\x2d\xe1\xff\x4a\xe1\x4e\x89\xb2\x98\x06\x69\x0c\xce\x88\xd6\xa6\xfb\xfb\x3a\x8e\xce\x29\x11\x06\xe0\x64\xc5\x07\x76\x67\x37\x6c\x55\x2a\x58\xa6\x61\xcf\x70\xf8\xee\x40\x37\x5d\xc9\x67\xc9\x85\x7c\x4d\xaa\x13\xfc\x48\xfe\xf3\x61\x80\x20\xd4\x3c\x1b\x0b\xb5\x8a\x84\x5a\x28\x72\xff\xed\x0f\xcf\x9f\x9c\xff\xfe\xe9\x9f\x96\xd5\x6b\x72\x7c\x7c\x5c\x98\x91\xdd\x03\xcd\x56\xe1\xa5\x71\xab\x58\x62\x9a\x1e\xf6\x50\x3f\x57\x8c\x85\xff\x24\x00\x13\x38\x31\x00\x03\xc0\x29\xd8\xdf\x06\xf9\xce\xcb\xc1\xf7\xb2\x66\xf5\x7b\xc2\x9f\xad\xe5\x05\x60\xcb\xc9\xca\xdc\xb4\x03\xa0\x82\x79\x65\xc0\x55\x1a\xdd\x9c\xd7\x07\x4e\x3a\xc7\x73\x63\x9b\x28\xe6\xfc\x5c\x1e\xf5\x15\xb7\x68\x0a\x56\xdf\xec\xf7\xff\xbc\x91\x5c\x12\x27\xcd\x5b\x4e\xdf\xbf\x27\x3c\x7c\xc9\xbd\xac\x81\xe1\x3c\x68\xd6\xaa\x4b\x67\xc7\xb2\x5d\x51\x4d\xbe\x1f\x83\xff\x26\x9b\x24\x36\xf0\xb0\xb8\xe8\x9e\x37\xd5\x2c\x67\xfd\xa7\xdd\x77\xb4\x69\x08\x93\x34\xe4\x67\x38\x1c\x38\x7a\xa3\x19\xd6\x20\x03\x97\x75\x77\x16\xcd\x70\x89\x2c\x18\x81\x5d\xe2\xed\xb6\xe0\x6d\x2b\x74\xc2\xc5\x66\xda\xd5\x1f\x49\x63\xf3\x2b\x85\x78\xe7\xf2\x5f\x49\x54\xb6\x16\x0b\xab\x10\x8e\x20\x4a\x81\x15\x76\x38\xc4\x7e\x53\x65\xe3\x0a\xb4\x8b\xe5\x81\x55\xe8\xd2\xb9\x4a\x72\xb7\x6d\x6f\x1d\xa4\x49\x4c\xac\x4f\x28\x17\x37\x79\x1f\x84\xde\xca\xd2\xcf\xe2\x9e\x9d\xd5\x1f\x0f\x1f\x9d\x2a\x1c\x57\xa1\x0d\x85\x07\xd6\xa1\x4b\xc7\x95\xbc\x22\x9f\x0e\xac\xe0\x15\xf9\x14\x7f\xfc\xc7\x7a\xdd\xaf\xef\x8d\x3e\x87\xb2\x51\x32\x25\x39\x45\x43\xbc\x76\x50\x85\x2d\x9d\x38\x0b\x66\x62\x1a\x1c\x72\x07\xd7\x8e\x40\x47\x3d\x5b\xc5\x70\xa7\xb7\x09\x70\x46\x1c\x67\x25\x45\x3a\xbf\x47\xf3\xa4\x8f\x58\x9f\x91\x73\xff\xc0\xc4\xda\x9d\xc8\x7b\x43\xe4\x9f\xbb\x20\x83\x88\x0f\x7e\x06\x65\xde\x13\xf1\x8c\x92\x75\xd3\x95\xc8\x78\x35\x86\xc7\x0d\xa6\x81\x8f\x0b\x41\x58\x25\x82\xa5\x99\x7c\xaf\x54\xa5\x75\x55\x60\x16\x35\xc2\x9b\x8a\x2c\x6a\xb0\xc6\x17\xb4\x29\x8e\xaa\xaa\x46\x3a\xeb\x59\xa7\xd3\x9d\x59\x03\x63\x61\x9d\xb6\x43\x8a\x2e\x6b\xbc\x41\x2a\xfd\x8d\x4a\x85\xe6\x5c\x3f\xc2\x2f\x5c\x64\x85\xfc\x02\x73\xdd\x87\x3d\x01\x3b\x7e\xb1\x9e\x28\x5f\xbf\x71\xe3\x23\x10\x36\x6d\x60\xb4\x7e\x9e\x86\x1b\x72\x51\x6f\xd6\x62\x2e\x16\xf5\xb2\xda\xa8\x84\x66\xa6\xf9\xe7\x4d\xb9\x41\x3b\x75\x75\x77\xc6\xaa\x19\xfe\x2c\x05\x6e\xfc\xac\xf0\x08\xcd\x85\x33\x69\xfa\x0e\xf8\xf6\x61\x78\x5f\x7b\x25\xd4\x35\xa8\x0d\x95\x39\x83\xb7\x11\xc3\xcd\xb5\x29\xd4\xbd\xf8\x24\xba\x26\xcb\x28\x56\x41\xb5\x94\x6c\x38\x45\x98\xbd\x0e\x5e\x56\x86\x71\x97\x33\x2e\x2e\xe0\x9b\xd8\x5d\xcc\xbb\xe5\x93\xa8\xda\x94\x2f\xa1\x9d\xf2\x5f\xf7\x79\x08\xd8\x4b\x55\x4f\x86\xa0\xcf\x53\x02\x09\x4a\x53\xab\x79\x70\x57\xb3\x67\x6b\xfa\xfe\x52\x3c\xca\xbe\x06\x7e\x43\x89\x2b\x21\x0a\x94\xc7\x4a\xf6\x8d\x20\xc3\xfa\xcc\x70\x78\x2e\xf9\xbf\x62\x70\x1b\xfd\x33\xe0\x21\x4a\x94\xe3\x8f\xe0\xd1\xfe\x9c\xc8\xea\x86\xef\xe9\x6d\x47\x58\x53\x16\x7e\x91\x78\xb5\x24\x63\x90\x11\xec\x55\x7e\x0e\xb9\xd6\x26\x1f\x88\xd6\x7c\x7a\x92\x1a\x30\x64\xa5\x40\x99\xf0\x2b\xc3\x04\x9e\xd5\x5a\x92\xc3\x0c\x13\x84\xd9\x54\xf3\xab\x51\x1f\x44\xcd\x05\x78\x7f\xa7\x0c\x42\x4a\x24\x7a\xb6\x3d\x87\x50\xbb\x09\x4b\x7f\xe6\x71\xe1\x7d\x06\x20\x3e\x91\x1b\x3c\x65\xb4\xbb\x3c\xb8\xd9\x93\x2f\x6c\xf6\x64\x7f\xf6\x63\x3d\x71\xe1\x24\x04\x99\xaa\x30\xf3\x57\x44\x55\x31\x6e\x2f\xf4\xb2\x58\x9d\xb3\x75\x96\x82\xf5\x31\xf1\x4a\xbe\xa7\x88\xd0\x24\xa1\xaa\xd0\x24\x81\x6f\xb5\xd0\x3d\x67\x58\x3b\xa3\xcf\x21\x96\x2d\x49\x09\xe7\xa9\x5b\x1a\xda\x3c\x5e\x93\x9a\x29\x5d\xa3\x94\x12\x71\x38\x26\xde\x7e\x52\xc5\x54\x09\x88\x8f\xc3\xe9\x28\x56\x3a\xa8\x1f\x8f\x15\xad\x8f\x2f\xd6\xf5\xfb\xae\x40\xd9\x64\x7a\xe9\xa2\xc9\x96\xf3\xbb\x24\x4e\x18\xd9\x50\x4e\x56\x62\xad\xb6\x1e\x69\xfa\x20\x38\x8d\x9d\x61\xb1\x1c\x45\xe7\xa6\xef\xca\x96\x78\x7a\x81\x87\x05\x51\x1e\x2c\x90\xc5\x29\x00\x5e\xc3\x2c\x9f\x9a\x5d\x01\x29\x86\xfd\xac\xd7\xeb\x83\xbb\x88\x75\x1a\xf3\x47\xe4\xf8\x18\x00\x4e\x75\xc2\x72\xe1\x41\x21\x2b\xa9\x84\x3d\x10\x16\xf7\xf5\x81\xd5\x44\x4c\xbb\x4b\x7a\x21\x4a\x50\xf3\xca\xef\xb8\x0f\x93\xca\xf7\xcc\x59\x99\xb0\x27\xc7\xc7\xad\xcf\x9e\x8c\x6a\xdd\xfa\x43\x06\x7e\x3a\xd0\x44\x8d\x70\x6d\x3b\xe5\x34\x13\xd1\x2c\x6c\x98\xa3\xcf\x7e\x24\x3f\x29\xe7\x94\xde\x41\xe7\x7f\x55\xd8\x03\x37\x39\xd4\x4b\x65\x91\xb1\xd1\x81\xb1\xc8\x6a\x05\xd3\x44\x96\x55\xbb\x8b\x6f\xd8\xd4\x03\xd0\x74\xa0\xf7\xfa\x70\x57\xa2\x3b\x2e\xce\x57\x97\x64\xf5\xe1\x59\xcb\x5f\xf3\xeb\xcb\x9a\xc5\xf3\x57\x24\x69\xae\x33\xc2\x5d\x4e\xad\x98\xef\x5c\xe4\x68\x5d\xb3\x15\x59\x67\x2a\x19\x10\xe0\xdd\xe8\xd4\xd7\x3d\xb3\x80\x86\x24\xfd\x6c\x6e\x55\x48\x4c\xbf\xbf\x0f\x0e\x85\xdc\x75\xdd\x82\xc2\x0d\xcf\x65\x99\x42\x26\xc6\x42\xb1\x93\xa1\xbd\xbc\x25\x61\x4a\xd9\xc1\x26\x0e\x9c\xc4\xbd\x5a\x90\xb4\x8b\xe7\x2b\x79\x90\x6e\xae\xfb\x86\x16\x77\x73\xa8\x74\x8f\xc1\xb4\xf7\x54\x29\x21\x1e\x2a\xb0\xd6\xe5\x81\x85\x8f\x8f\x85\x0f\x2c\x6c\xae\x3b\x70\x6f\x9c\x4c\x8e\x72\xa0\x7a\x99\xc7\x2a\x39\xa9\x26\xe4\x93\x9d\xd1\x52\xef\x4a\x82\xd0\x61\x0d\x8f\x58\x38\x83\x1e\x9c\xe6\xee\x4e\xce\xaa\x01\x48\xa6\xe5\x6a\x0f\xf1\x5b\x3d\x14\x61\xd4\xe7\xe6\x43\xb5\xa5\xe9\x7e\x70\x50\xef\xb9\x61\x82\x4e\x7b\x83\x46\x39\x05\xdf\xec\x70\xff\xdf\x81\x79\x18\x72\x05\x76\x11\x68\xbd\xea\x74\xaf\x36\x2f\x5e\x2d\x4e\x45\x0f\x60\x57\xf9\x1c\xf2\xd9\xb9\xa3\xf2\x80\x27\xf4\x23\x49\x64\xbd\x50\x42\x32\x61\x41\xa0\xd9\xf5\xbd\xda\x47\x81\xb7\x6a\xcc\xd5\x99\xbc\x83\x26\x34\xe4\xf7\x20\x89\x7b\x41\x30\xc8\x04\x03\xeb\xa0\x17\x27\x52\xe0\xa0\x98\x6a\x5f\xde\x79\xa4\x81\xee\xa1\x84\x83\x0c\x04\x85\xf3\x20\xff\x35\x25\x5d\x19\x4f\xf9\x7b\xe2\xe4\x99\x3f\x86\x86\x1b\xcf\xfe\x97\x8b\x29\x3a\x8d\x1f\x2c\xc8\x72\xee\x95\x4c\xc5\xa5\xd3\xbe\x17\xf2\x4b\x37\xe4\x24\xb8\x34\x92\xd3\xfb\x03\xd1\xb3\xb1\x01\x23\x66\xf3\x01\xb0\x4c\xb6\x44\xd1\x67\xfd\x0b\x32\x21\x87\xf4\x52\xa0\x5d\x7c\xcd\x26\x6a\x8c\xb8\x97\x61\x1a\x4a\xed\x7f\x3d\x99\x08\xe0\x86\x4f\xfb\xbb\x9f\x00\x05\x95\x02\xcd\xc5\x9e\x0f\x22\x78\x8c\xd8\x31\x66\x7e\xa7\xaf\x7b\x46\xda\xb7\xf7\x1d\x70\x82\x0d\x51\xe8\x0b\xbc\xd0\xa1\xe1\xa4\x19\x8b\x76\xdc\x11\x61\x03\x28\x44\x2b\xff\x14\xf2\xcf\x56\xd2\x13\x19\x6b\xa5\xf3\x58\x11\xb6\x16\x52\x02\x54\xe4\x84\x92\xa5\x78\xc0\x23\xc7\x23\xa1\x53\x3c\x67\x68\xb7\x12\x98\x57\x5f\x89\x7e\xb1\x2f\x29\xd3\xe6\x0c\x7c\x0c\xc0\x82\x56\xe0\x5b\x56\x5f\x91\x39\xc1\xed\xba\x81\x6e\x4a\x01\x89\xd3\xf7\x52\x32\x51\xbf\x39\x56\x9e\x0e\x62\x87\x40\x04\x0a\x58\xb0\x20\xa2\x23\xb7\x57\xe5\x24\x5f\x7b\x01\x0b\x24\xb2\x9d\x52\xf6\xbe\xe7\x60\x84\xde\x7a\x45\x8a\xec\xf7\xea\xe0\xe9\xd1\x0a\xb8\x02\xb1\x4e\x80\xb5\xe2\x59\xbb\x61\x7d\xea\x04\xf3\x3a\xfe\xcc\x1d\x75\x3d\x1f\xba\x02\xf1\xa7\x0a\x7b\x6c\x28\x36\xb0\x6f\x39\xab\x98\x3a\x92\x08\xc4\x0c\x5b\x7a\x59\x77\x83\x8d\x99\xe5\xf1\xe1\x99\xbc\x1a\x27\x93\x34\x12\xd1\x0f\x79\xb4\x82\x56\x24\xd3\x80\x94\x3a\xd8\xb0\x8b\x80\x54\x9c\x70\x1a\x5a\x1a\x85\x41\x12\x64\xbc\xd1\xfc\x29\xe0\xd5\x0c\x53\x17\x03\xc9\x1f\x52\x48\x7b\xaf\x81\x70\xc5\x82\x2f\x71\x5d\x11\x90\xd0\x16\xb3\x65\x55\x55\xf5\xe2\x64\x39\x99\xa8\x7d\x3b\x66\x8b\x76\xb9\xfb\xa2\xb0\x4d\xef\x2a\x14\x69\xaf\x5c\x8c\x58\xbc\x88\x98\x57\x71\x1c\x29\xc3\x02\x39\x75\x78\x60\x5b\x6e\x83\x19\xe0\x08\xd7\xd5\x0c\x02\xb3\xf4\x70\xeb\x87\x1d\xa4\x91\x87\xe1\x6e\xaa\x16\xd4\xe2\x8b\xcd\xb2\x5a\x90\xc5\x66\x89\xf9\x62\xb3\x5c\x1a\xb1\x33\x8a\x93\xd2\x7a\x7d\xc8\xec\xdc\x5e\x5d\x51\xd1\x43\xc9\x9f\x6c\x81\x24\x58\x56\xd5\xf0\x84\x36\x70\xf0\xf6\x7c\xff\x8e\xac\xda\x2b\x02\x25\x8a\x83\x35\x7d\xf2\xd3\xfe\xfb\x34\x93\x0f\x63\xcc\xc0\xae\xae\x66\x7d\xc3\x2e\x6b\xd6\xac\x49\x03\xd9\xe5\x21\xe6\x5f\x20\x2c\x4b\x18\xd0\xab\xe4\x10\x88\x72\x02\x24\x38\x07\x83\xec\x4c\x26\xa7\x80\xfa\x2c\xd7\x4c\x2f\x4c\x9a\x0b\x8e\x19\x6e\x27\x86\x2f\x4b\xf9\xd5\x80\xbb\x4a\xd2\x22\x90\x83\x5a\x09\xbf\x4e\x38\x59\xde\xae\xd7\xef\xea\xd5\x87\xfc\x36\x51\x5b\x24\xe2\x3a\x93\xd3\x40\xb9\x2b\x64\x42\x9d\x13\xce\x32\x3e\xe2\x0c\x5b\xea\xd2\x1a\x6b\x6b\x55\x61\x91\xd6\x86\xd5\xe2\x91\x46\xcf\x4a\xd4\x1a\xd8\x52\xab\xa8\xaf\xda\x8f\xc4\x83\xdf\xcc\x2a\xb2\xb5\x69\xb0\xdc\xdb\x30\xf2\x2f\x5f\x39\x7d\xa4\xf9\xb6\x5e\x7d\x28\x20\xab\x3b\xf1\x12\x15\xed\xe1\x94\xe3\x95\x10\xbc\x66\x1d\x95\xfd\x0a\x98\x3b\xa3\xdd\xce\x5c\xc5\x9f\xb4\x0f\x0a\xfc\x5f\x81\x7b\xca\x62\xb6\x44\x3b\xef\x84\x0d\xcc\x82\xbc\x62\xce\x72\x7e\x5c\xdc\xfb\x4d\x71\x4c\x46\x4d\x7b\xcb\xa6\xe4\x33\x15\x93\x89\xfa\x5f\xcb\x77\xac\x62\xda\xe7\x13\x3e\xde\x7d\xba\xa4\x6b\x52\x1e\x31\xc8\x98\xae\x94\x6d\x1a\x2d\xa4\x35\x7f\xd4\xe6\x8f\xce\xfc\xb1\xa9\xce\xc9\x82\x83\x85\x6f\x83\x68\xb5\x51\x82\x53\x87\xdb\x6a\x33\x25\x92\x0b\x94\x27\xec\x46\x75\x6a\x44\xd6\x1d\xb9\x85\xa8\xd4\xb6\x5a\x2c\xa1\x8d\xb5\x1a\x15\x28\xf8\xd4\x89\xb9\x8e\x4f\xcc\x92\x55\x6c\xb1\x5e\xd4\xcb\x25\x52\x55\x4e\x26\xad\xd2\xda\x31\xc9\x90\x43\x83\x93\x09\x35\x8f\x46\xd0\xa1\xea\x56\x75\x64\x4e\xb1\xea\xc6\xbc\xc5\xd0\x89\x39\xdb\xed\x5c\x63\xc9\xf1\x2c\xcf\x65\xd5\x8a\xce\xb8\x71\x61\x8c\x5c\x81\xbd\x87\x1d\xac\x77\x0f\x53\x62\x30\x73\x2f\xd0\xb8\x61\x2a\x1b\x86\x3e\xeb\x86\x0f\x3c\x7f\xa3\x23\xb4\x07\xf6\x25\x64\x94\xd5\x07\x63\x22\x3f\x18\xff\x37\xb0\xc9\xff\x3d\x2e\x34\x8e\x03\x3f\xae\x8a\x96\x8d\x8b\xe3\x33\xc1\x29\x7b\xaf\x7a\x73\x5c\x8c\x81\x3c\x24\x73\x0b\xd3\x38\x2e\x30\x3f\xae\x88\x4f\x6d\xd3\x71\x81\x5d\xb2\xb2\xc9\xa4\x94\x35\x3d\x06\x67\xe7\xf1\x27\x2a\x2e\xc7\x71\x78\x34\x43\xc7\xc5\xb4\x40\x38\xe6\xea\x79\xb2\x6f\xc0\x68\x08\x58\xd9\xf9\x2b\x3e\x06\x27\xc1\xa2\x32\x19\xaa\xb0\x72\x79\x23\x2a\xb1\xd7\x82\x2d\x3d\xb0\x12\xb6\x1c\x9d\x58\x7d\x6b\xec\xc9\x63\x52\xe6\xea\x6d\xae\xa5\xfe\x4c\xde\x17\x93\x3a\x31\x58\x95\x1e\xbb\x67\x04\xb5\x19\x12\x51\x86\x69\x89\x3e\xb7\x0c\x8c\xa6\x2e\x56\x09\x33\x3b\x9a\xbd\x22\x31\x7b\xc5\x74\xc4\xa7\xc0\x72\x5b\xa0\x91\x29\x50\xcd\x76\xb1\x09\x68\xe8\x10\xcd\x19\x4d\xf7\x2b\x86\xc4\x10\x46\x32\x18\x49\x4c\xbe\x3c\x75\xe2\x98\x71\x67\x9d\x9a\x0c\x90\xcc\x80\xc7\x53\xc8\x84\x66\xec\x21\x91\xce\x6e\xb8\x77\xcc\xf5\x2e\xab\x6a\xfb\x0a\x13\xa4\xcf\xf9\x33\x00\x2c\xfc\x87\xcd\xc1\x19\x29\xe5\x04\x24\xe3\xba\x56\xd6\xaf\x01\x74\xc8\xd1\xbe\xda\xed\x89\xe3\x2b\x3f\x18\x1a\x09\x5f\xef\x76\x45\x44\xfd\xac\xe5\xd6\x27\x94\x21\x65\xd5\xb4\x43\x39\x15\xd3\xf3\x6b\x63\x0d\xf4\x33\xb9\x61\x8e\xe6\x42\x0b\xc9\x6c\x59\xf1\xc4\x9e\x96\xf9\xaa\x9f\x3b\x1d\xe8\x12\x48\xfe\x0c\x42\x23\x46\x3e\x66\x15\x53\x98\x55\x6a\x19\x74\x63\xc6\xfb\x43\x9e\xb8\xdc\xa8\x46\xf4\x3b\xe7\x94\xa2\xde\xe6\xbb\x9b\xd3\x4b\xc9\xc3\xdb\x9c\x07\x1c\x92\x17\xea\xa4\x99\x36\xd7\x2b\xad\x66\x0f\xa8\x73\xe6\xa5\xbe\x30\x45\x97\x23\xee\x01\xca\xb4\x92\xa8\x85\x3a\xd1\x5f\xf3\x57\x1b\xb9\x38\xcf\x99\x68\xc3\x83\xac\x95\x8c\xf0\x80\x66\x67\x5f\xd2\xab\xbe\xe1\xe5\x55\x5a\xee\x76\xba\x53\x27\x05\x90\xd3\x1d\xd4\x4f\x49\xaf\x0e\x6b\x28\xab\x90\x2e\x3a\xf8\xc8\x8b\x0f\xd8\x6e\x0b\x06\x15\x78\xcf\x4e\x7b\xf5\xc4\xcf\x5a\xfe\xbc\x51\x89\xfd\xe2\x57\xa7\xf1\x83\x79\x6c\x7d\x4c\x78\x81\x54\x8e\x83\x26\x79\xe2\x28\xab\x1f\x3d\xa1\x8d\x07\xa4\x9c\x6a\xe5\x9e\xe7\xe2\xb2\x88\x51\x36\x50\x9d\x31\x8a\x36\x15\x01\xc5\xe3\x9d\x45\x13\x40\xac\x89\x5d\xf3\x94\x25\x3e\x15\x7a\x94\xbf\x0d\x89\x7c\x82\x53\x3f\x8b\xa0\xd9\xce\xea\xc9\x24\x03\x7e\x6b\xdc\xe4\x8e\x66\xa1\x73\x1c\x49\x4e\x74\x5f\xca\x48\xa6\x35\x76\xfd\x89\x3d\x94\xef\xda\x9b\x93\xb0\x37\x1a\x87\xb3\x47\x62\x8f\x45\x7e\x3f\xe7\xc7\xcf\x63\x8a\xc0\xa4\xca\xd8\x0c\x22\x41\x2c\x48\x45\x17\x58\x25\xd0\xa8\xcf\x12\xd1\x27\x75\x81\x60\xd5\x6b\xbe\x40\xbd\xdf\x05\xa8\xdc\x5a\x53\x6a\x14\x20\xfd\xfa\x0b\x4c\xee\x6c\xe3\xa8\x1b\x45\xa5\x2f\x49\xd7\xd5\xef\xc9\xdb\xb6\x4f\x75\x1d\xf9\xa5\x79\xd1\x9c\xb8\x00\x2a\xea\x0a\x04\x19\xd5\x33\xba\x00\xc5\x8c\xf8\xed\xc0\xd9\x9a\x69\xe9\xd0\x76\x54\x8d\x89\x1c\x0a\x5c\x8d\xdf\x4e\x70\x90\x1c\x56\xb5\xcd\x73\x1c\x69\x30\xa1\xda\x03\x3c\xf6\xf2\xd5\x82\x59\x56\x5d\x67\x05\x8a\x35\x95\x6e\x4b\x3c\x67\x1f\xa5\x24\x5f\x8b\x9c\x93\x98\xd6\x65\x80\xdc\x26\xc5\x15\x82\x92\x74\xa4\x96\xa9\xef\x5f\x57\xe0\x97\xa5\x20\x1c\xea\xc7\xea\x2b\xa2\x1b\x2f\xac\xc3\x41\xfd\x91\xfc\x28\x0f\x00\xc9\x18\x41\x34\x53\x4f\xaf\x7b\xce\x39\xbf\x6e\xad\x19\xb1\x1b\xce\x3a\x29\x1d\xd4\x54\xfc\x3e\xd5\xf3\xa4\x0a\x9c\xcc\x66\x54\x10\xbf\x46\xcb\xe1\x19\xc0\x33\xba\x53\x10\xad\xfc\x68\x22\x67\xa5\x5a\x90\x05\x5b\x2e\xe5\x49\xa5\xfe\xea\xd5\xb3\xaa\xd7\xe6\x4e\xef\xd9\xe5\x89\x53\x84\x3d\x70\x32\x24\xb0\x58\xaa\x34\xcf\x16\xa2\xcc\xa2\x9e\xa6\x0a\x8d\x48\x6f\xdd\x55\xb5\x91\x21\x37\xd5\x80\x3e\x0c\xaf\x7d\x42\xdb\x4c\x26\xe5\x3a\x99\x1f\x29\x7b\x66\xc3\x90\xfc\x93\x8e\xe1\x83\x0e\x48\x5e\xcd\x1e\xf0\x87\x1d\x88\x74\xb4\x22\x8b\xb6\xaa\x17\x7c\xb9\xc4\x10\x4b\xb7\xf1\xa0\x38\xd7\x8b\x76\xb9\xdd\x6a\x41\xbb\x7b\xfa\xb7\x4d\xbd\x2e\xd9\xa2\x5d\x62\x8a\xb6\x5b\xed\xed\xd4\x3a\xef\xdb\x48\xd2\x6e\x15\x53\x94\xc1\x49\x79\xa8\x0c\x66\xee\xfa\x38\x2e\xe6\xfa\x11\x6d\x8e\x8b\xdf\x14\xf1\x61\xa6\xc3\x58\x42\x53\x7c\xc4\x80\xbb\x40\x18\x29\x8f\x79\xf0\xb9\x59\x47\x74\x75\x7a\xa0\x91\xe7\x01\x5e\x55\x15\x39\x65\xc0\x1d\x7f\xf4\x7d\x9c\x95\xaf\x13\x47\x73\x9f\x77\x27\x10\xc3\x29\xcb\xbe\xcf\x95\xb5\xfe\xae\x5e\x9f\x2a\xe6\x01\xcc\xbe\xf3\x90\xbb\x9c\xe8\x30\x0c\x5a\xe5\xca\x19\xa7\x30\x3f\x92\xc8\xbb\xc4\xc3\xdc\x98\xce\xa3\x1a\x1d\x8e\x90\xe5\x43\x62\x61\x1f\x60\xcc\xc6\x14\xf5\x7d\x1e\x38\x9e\x45\xdf\x78\x29\x32\xa3\xf8\x24\xf2\x69\x7c\x93\x4c\x24\x42\xf9\x70\x26\x87\x56\xe6\x47\x45\x1d\xd4\xa1\xe0\x0b\x17\x9f\x15\x46\x57\x91\x4f\xe3\xdf\xa3\x5c\xe0\x95\x37\x17\x66\x61\x0f\x9c\x06\x53\xdc\x9b\x01\x1b\xb7\x95\xd9\xd7\x28\x89\xee\x72\x63\x8e\x15\x39\x87\x8d\x3b\xfe\xca\x8b\x4d\x8b\xf5\x4a\x8b\x25\xea\x0b\x49\x3b\x08\x27\x2e\xdb\xbe\x6f\x5c\x4c\x2d\x8a\x43\x73\xe0\x15\xdb\xe1\xce\x6f\xca\x5c\x7b\x41\x4d\x01\x75\x78\x3b\xfe\x50\xf2\xf0\x3e\xf1\xe9\x23\xd0\x8d\x90\x4f\xe3\x0b\x2d\xf8\xa0\x6c\x58\x9d\xeb\x43\x7a\x00\x1f\xd6\x91\xf4\x3b\xd7\x9b\xcc\xbd\x36\x34\x7f\x69\xf1\xde\x79\xcc\xd4\xec\xcd\x67\x03\x76\xf8\x83\xa8\x4d\x45\xb9\x7b\xbf\x06\x7b\x28\x0b\xf4\xf6\x09\xbe\xf6\x7a\x91\xd5\x57\x1d\x38\xa9\xb9\x4f\xbd\x79\xcd\x6a\xc2\x06\xa7\x36\xf7\x85\xed\xaa\xef\x2b\x38\x0c\x47\xe8\x0a\xda\x8f\xad\x20\xd8\xf3\xe9\x51\x10\x2b\xe6\x40\xc7\x5f\xfe\x22\x83\xb7\xdf\xee\x4b\x57\x90\x46\x16\xd3\xe6\x6d\xab\xb4\x33\xfd\x30\xdd\x57\xca\xe5\x74\xb1\x34\xbf\x89\xa8\x5d\x6c\x4d\x26\x0c\x36\x4e\x03\x10\x81\xc9\xe9\x16\x13\xa7\xb2\xc1\xbc\x07\x03\xdf\x75\x44\xe4\x4c\xc9\xc1\x17\x95\x48\x04\xd0\xf8\x1b\x67\xc5\xb4\xdf\x89\x65\x45\xc2\x59\xb0\x70\x73\x19\x49\x33\xaa\x50\xfb\x59\xa4\x75\x06\x89\xe3\x75\xb5\x94\x35\xe4\xf3\x6b\xc9\x63\x3f\xb8\x77\xa2\xcc\x3d\xc1\xfb\xee\x1a\xd0\xaa\x19\x8e\x03\x4d\x74\x88\x59\x6e\xe6\xa0\xa2\x9e\x56\x32\x02\x6c\x9f\x4f\xb1\xfa\x76\x14\xd1\xc2\xa8\xc7\x8f\x57\xc8\x4d\x04\xae\xc3\xbe\x9b\x7e\x69\xd4\xa0\x21\xed\xe0\x97\x1e\x07\xa8\xc5\xd4\xfd\xdc\x9f\x31\x4a\xb9\x3c\xf0\xca\xd1\xfe\x80\x2f\xdd\x27\xba\x1f\x7b\x3e\xd2\xa5\x1c\xab\x69\xba\x9f\x3b\x0f\x87\x19\x4b\xcf\xe1\x4e\xb9\xda\x05\xca\xd1\x97\xf5\x35\xe8\xc6\xc7\x14\x10\x8d\x25\x3b\x4e\xf8\xb8\xfe\x58\xd3\xb5\x3c\x42\x0a\xe4\xce\xb6\xc7\x7d\xbb\xdc\xd0\xfd\x55\x7d\x7d\x68\xaa\x11\x4e\x04\xa7\x24\x1b\x1b\x66\xeb\x5a\x10\x1b\x23\x13\xb9\x4c\xfa\x45\x80\x1f\x78\x2b\x8f\x9a\xd4\x43\x2e\xa6\xae\xd8\x2a\x77\x55\x5f\xe7\x1c\x9e\xd2\xc3\x99\x2c\xe4\xc1\xbc\xb4\x66\xa4\x5d\x04\x53\xfb\xbd\x05\x63\xc0\x14\xb7\x1e\x58\x0e\x6b\xf9\x95\x0e\x0d\xe9\xae\x5b\xd6\x91\xd2\x95\x72\xe0\x13\x6f\x48\xa4\x46\xf7\xc0\x88\x93\x29\x80\x33\xbe\x8a\xf1\x8a\x19\x32\x51\x27\xea\xfd\x2d\xf9\x2c\x78\xbd\xf2\xef\x74\xd5\x82\x95\x82\x76\x08\x73\x40\x9a\x78\xf5\x4b\xbc\xb3\xdc\xda\xfd\x55\x0f\x94\x78\xb2\xb7\x41\x0a\x72\x74\x67\xa0\x83\xd4\x1f\x06\x3f\x08\x27\x05\xc2\x5a\xce\xaf\x6b\x2e\x68\xbd\x7e\x62\x3e\xf6\x1f\x44\xef\x41\x9d\xe9\x7d\x2b\xb7\x7c\xd0\x03\xf5\xa0\x54\x7f\xe8\x02\xf1\x47\x6b\xca\x3e\x74\xc1\x57\xfa\x49\xa9\xff\x32\x65\x14\xc8\xc8\xf3\x3d\x5b\x5a\x4e\xde\xc1\xe9\x83\xde\x27\xd7\xa1\x77\xdf\x40\x4d\x41\xfc\x3a\x5b\x90\x25\xf2\x3c\xc9\x16\x62\xcf\xf5\x1a\x99\x99\xa0\x46\x4c\x2b\x2e\xcf\x09\x3b\x60\x0a\x70\xe9\xf2\x59\x9e\x75\xa4\x4a\x17\x90\x89\x71\xdd\xd7\xf7\xa0\xe3\x9e\x37\xa3\xe9\xb9\x3c\x22\x9f\xec\x63\x84\xa4\xa0\xf2\x9c\x5d\xb4\x86\x0f\x5a\x5f\x76\xe7\xd7\x3a\x0f\x10\x9c\x64\xcf\xf5\x0b\xee\xbf\x20\x60\x55\xbd\x58\x93\xcf\xf4\xa3\xb6\x49\xf9\x1f\xce\xfd\x0f\x0d\xc8\x8a\xc9\x2e\x54\x2d\x96\x87\x2c\x96\x77\x34\xa8\x6a\xc0\x67\xf6\x8d\xaa\xab\x74\x41\x20\x2f\xbe\x3b\x03\x3b\x70\xda\x0b\x6d\x22\x16\xda\x6e\xca\x73\xaf\x52\x8f\xde\xa8\x13\x16\xcd\x26\x1e\x86\xe2\x7f\x16\xba\xd0\x12\xe5\xe2\xf9\xf2\x1e\x84\x5f\x30\x12\xb5\xb6\x7d\x83\xf1\xde\x46\xca\x4c\xa8\x74\x38\x26\x41\x2e\x3e\x18\xa4\x69\x77\x46\xd6\x17\x5a\xab\x22\xcf\x80\x91\x87\xa9\x55\x0a\xb0\x50\xcb\x4e\xf9\x92\x2d\xe8\x91\x26\x93\x12\xca\xf0\xed\x96\xd8\x52\xef\xea\x8e\xbc\x34\x4c\xf6\x76\xab\x58\x39\x78\x63\x59\x6f\x9f\x0b\x4b\x3b\xfe\xfd\x57\xed\x38\x3f\xa8\xe3\xbc\xb7\xe3\xfc\xd0\x8e\xfb\x6b\x1b\xb9\xe4\xcc\x5c\xea\xdb\x88\x94\xb4\xd9\x3d\xe6\x06\xe2\x62\x9a\xf5\x9d\xe5\xf7\x95\x35\xde\x0f\xc7\x93\x2d\x66\x4b\xcc\xd5\x5f\x27\x4b\x4c\xd5\x5f\xdf\x2c\x71\xab\xfe\xfa\xb7\x25\xae\xab\x5b\x79\x75\xcc\x6f\x69\x33\xe7\x58\x0e\x6b\xce\x76\x3b\xdf\x31\x4f\xff\x61\x14\xd5\x78\x15\xb8\x79\x6a\x52\x66\x98\xa2\xd3\x52\x6b\x22\x93\x7d\x29\x37\x96\xd1\x83\xfb\x2f\xb1\x56\x76\xfb\x04\x8e\x57\x66\xd5\x2f\xbb\x10\xcf\xe2\x65\xcd\x6e\xd0\xdc\x34\x92\xec\x70\xbf\x11\x9e\x69\x64\x9d\x6b\x64\x9d\x6d\x44\x65\xc1\x33\x96\x86\xee\x65\x2d\x56\x97\x94\xbd\xf7\x72\x49\xb6\x93\x49\x0b\x77\x2e\xee\x26\x93\xce\xc0\xf9\x99\x33\xba\x35\xf7\xf5\x85\x71\x50\x36\x49\xa4\x95\x4f\x10\xc7\x1d\x96\xd7\xc1\x5f\x49\xd9\xe1\x16\x61\x70\x77\x94\x03\x90\x3f\xec\x37\xd7\xed\xf5\x66\x0d\x8e\x12\xea\xab\x16\xd7\x78\x8d\x57\x71\x24\x60\xb6\x83\xf9\x30\x38\x32\x99\x88\xc9\x44\x65\x59\x83\xeb\x59\xfe\xa1\xc0\x7f\x55\x42\xb6\x66\x32\x39\x02\x75\xe7\x94\x76\xc6\xf3\x2d\x79\x94\x1c\x3c\x51\x47\x33\x87\x2a\x98\x82\x60\x92\xe8\x45\x19\x35\xa0\x9e\x23\x17\x9a\x3d\x7b\x40\x1f\xaa\xa7\x8e\xaa\xa9\x71\x49\x51\x2f\x16\x74\xa9\xc9\xaf\x6e\x9a\xb7\xad\x99\x21\x81\x5b\x68\x0f\xb0\x4d\x74\xac\xb6\xfa\x20\x5f\xba\x56\xa5\xe3\x18\x75\xaf\x50\x66\x2c\x3a\xd7\x52\x70\x32\x99\x7e\xa9\xf4\x7b\xfe\x7d\xb9\xdd\x1e\xb5\xdb\x6d\x3b\xa5\xcd\x91\x9a\x61\x13\x43\xae\x82\x47\x85\x46\x46\x97\x2f\xe4\xc7\x30\x41\xba\x91\xae\xaa\x55\xa5\xdd\xa9\x11\xc0\xd5\x5c\xcd\xcb\x3a\x64\xe5\xc2\x9f\xdb\xed\x62\x89\xc3\x47\xc1\xe7\x6a\x7a\x24\xe7\x59\x2b\xdc\x8a\x2e\xec\x08\x26\x08\x5c\x6c\xc7\xfc\x34\x7d\x77\xeb\x57\x3b\x5f\xa8\x2a\x97\x3b\x34\xcf\x55\x13\xcf\x6c\xb0\x0b\xfa\xb8\xab\xc9\x44\x71\xb3\x98\xaa\xbf\xfd\x06\x71\x2b\xcf\x6f\x2a\x67\xaa\x4d\x49\xa9\x75\x54\x54\x57\xb3\x07\xf5\xc3\xd6\x11\x50\x6d\xe6\x14\x22\x26\xfc\x4d\xe9\x3b\xeb\x11\xdc\x61\x86\x3c\x68\x9c\x6c\x19\x9e\x38\xfa\xa7\xc5\x7a\x46\x97\xae\xba\xe4\x21\x27\x13\xae\x86\xdc\xaa\xbf\xfd\x21\x3f\x28\xe9\x76\xdb\xca\xeb\x2b\x1c\x2c\x45\xa7\xea\xa3\x8a\x4e\x2f\xe8\x5a\x10\x1e\xf8\xe6\xd9\x58\x5a\x20\x3c\xb2\x43\xf3\x78\xae\x4e\xc3\x76\xaa\xf6\xb0\x6a\x74\xa3\x3a\x95\xf5\x2b\x4f\x93\x91\x3f\x4c\x07\x53\xc9\xe8\xfd\x93\xb0\x1a\x2f\x89\xa8\x47\x61\xa0\x12\x99\x4c\x02\x23\x1c\x38\xd0\x79\xfa\xfe\x2f\x6e\x3b\xe6\x16\x0e\x6f\xdb\xa8\x26\x5e\xec\xe5\xbb\x83\xe4\x27\xe7\xab\x7a\x75\xd9\x93\x06\x4e\x1b\x6e\x81\x84\x5e\x40\x36\x97\xc7\x50\x58\xf1\xd8\x87\xb2\xd2\xbe\xe9\xf3\x7d\x08\x0b\x65\x18\x08\xc9\x7c\xe2\xa3\x13\x97\x79\x44\xd2\x9d\x66\x94\x13\xf2\xce\xb0\xca\x7e\x23\x23\x16\x06\x8d\xb1\x8c\x43\xa7\x3d\xc0\xf9\x50\x97\x28\x3e\x9a\xa1\x51\x6b\x3d\xf3\x65\x53\x14\xb3\x05\x4d\x9d\x4c\x33\x4c\xb7\xcf\x35\x5a\x0c\xb2\xc8\x2c\x6a\xdd\x8a\x20\xed\x69\x5f\x32\xd5\xa4\xfb\x1c\xdb\x01\xb0\x3d\x03\x38\xd1\x03\x50\x1d\x54\x43\x48\x01\x5b\x7a\xaa\x18\x5a\xca\xe8\x13\x49\xbc\x30\x6a\x93\x84\xe9\xa8\xaa\xa2\xeb\x09\x08\x6d\xc1\x61\x7b\x7d\x20\x37\x46\xa1\x75\x44\x27\x13\x66\x63\x48\x4d\x82\xda\xec\x88\x38\x9a\xd3\x5d\x06\xc0\x2e\xec\xc6\x00\xef\x9e\xd2\x72\xb8\x32\x98\xea\x33\xd1\x8c\xc4\x32\x51\x26\x8b\xed\x98\xda\x3c\xb6\xde\x2a\xe2\xda\x73\x0d\x6e\x7b\xd6\x11\xae\xe3\x7a\x7a\x59\x77\xa5\x40\x56\xda\x87\x8b\x0a\xa6\x17\xf6\x1c\x64\xb0\x35\xf7\xad\x72\x0d\xb0\x5c\xef\x68\x53\x75\x26\x85\xad\x4d\x5c\x6b\x9f\x98\xc0\xff\x53\xf9\x62\xde\x06\x79\x6b\x31\x47\x3a\x30\xc5\x0e\xc8\xab\x09\x24\x11\x57\xcf\x75\xbb\xbe\xb9\x6a\xf9\xf5\x25\x5d\xe1\x55\xa5\x44\x7e\xe8\xfb\x46\x4d\xe6\x45\x75\xab\x97\x70\xae\xfd\x25\x70\x28\x5c\xcd\x17\x64\x89\x13\x49\x6c\x4e\x70\x4e\x86\x9b\x8b\xe4\xb1\x3c\xf3\xe6\x1d\x3c\xa6\xdd\x1b\xd7\x9b\xf9\x1a\x73\xdd\x70\x51\x60\x1e\xb5\xb9\xc4\x89\x0c\x35\x5f\xe1\x9c\xf4\x65\xbe\x4e\xda\x04\xcf\x3b\x9e\x34\x7b\x74\x82\x2f\xeb\x4e\x5f\xa5\xf2\x57\x22\xf6\xa9\x87\x96\xcd\x9a\x1f\x9d\xec\x46\xc9\x02\x5f\x20\x7c\x01\x9a\xa6\xcb\x6a\x03\x89\x83\xf1\xb5\x47\x35\x9b\xbd\xf9\x94\x2f\x11\x6e\x2a\xa5\xa1\xc6\x57\x95\xe4\x91\x57\x72\x59\x0c\xc9\x36\x58\xa0\xed\x56\xfd\xbd\xc2\x97\x86\xc2\x4a\x9a\x0a\xc5\x55\x55\x35\xa7\x34\x12\x89\xe7\x34\x12\x35\x91\x4d\x3a\xe1\xc6\x40\x11\x56\x1b\xe0\xc6\x11\x41\x73\x17\x22\x68\xbe\x22\x11\xac\xa0\xe1\xcb\x9f\x42\x09\x97\x79\x42\xb8\xce\x50\x81\xdd\x39\xd7\xd1\xce\xb9\xce\xee\x1c\x9f\x62\x66\x19\x8a\xb9\x0a\x08\xe6\x6a\x32\x11\x55\x55\x5d\x46\x64\xd3\x60\x81\x6f\xfc\xf9\xb7\x3f\x56\xf8\x52\xfe\xb8\x89\xa5\xaf\xc1\x03\x34\xe7\x08\x6d\x8e\x63\xcc\x2a\x32\xd5\x33\x6b\x0f\x45\x75\x64\x6b\x2f\x26\x05\x70\xee\xc6\xa5\x87\xaf\xbe\x0a\xe6\xca\x53\xc3\x96\x61\x55\x6c\x89\xc2\x54\x97\xa6\x85\x8a\x63\x3e\x4a\x6f\x0b\xa1\x6c\x1a\x4f\x20\x9c\x2e\x00\x5a\xf7\xfb\x51\x86\x4d\x54\x92\x4a\x63\xb3\xc4\xb3\xc8\x2c\xa1\xf8\x72\xb5\xff\x1e\x95\xb4\x1f\xe3\x3f\xca\x16\xd9\x9a\xdc\x9a\x3b\x84\x70\x57\x09\x77\x0d\x30\x40\x06\x85\x64\x53\x10\x39\x21\x70\x87\x39\xae\x11\x5e\x2b\x44\xb9\xef\x54\x80\x9a\x8e\x2b\xf8\x5f\xa6\xdc\xb8\xbd\x18\xff\xba\x38\x66\xc7\xc5\xaf\x0b\x77\xe5\x54\x55\xb5\x41\x89\xb9\x4a\xfb\x5d\xda\x36\xc6\xaa\x97\xa4\x19\x6f\x98\xce\xae\x89\x61\x62\xc7\x9f\xea\x6e\xfc\x91\xf0\x9b\xf1\x9a\x7e\x20\xeb\x9b\x71\x3d\xbe\xa2\x9d\xa8\x3f\x10\x9b\xa2\xa3\xdc\x54\x84\x94\x1b\x2c\xa4\xf0\x1f\x81\xcf\xd9\x9b\xfb\x7b\x52\xbe\x01\xb7\x51\xcc\x10\x56\x03\x82\x43\xb2\x30\x3d\x28\x1c\x26\xe1\xf4\x1c\xce\x0b\x8a\x76\xba\x8c\x1c\xf4\x53\x65\x7a\x19\x6b\x5d\x87\x42\xd2\x63\x9e\xbd\xe7\xef\xde\xba\xd8\x48\x8f\x60\x52\xeb\x4a\x4c\xaf\x09\xf9\xf0\x68\xbd\x96\x3f\xe5\xc5\x78\x1e\x2d\x0a\x95\x53\x9f\xe2\xf1\x59\x84\xfb\x5e\x70\x3d\xb5\x5c\xb2\x66\x29\xad\x73\xdc\xa1\x5d\x3a\x3f\x7d\xab\xf7\x68\xbd\x56\xe3\x69\x0f\x9e\xc0\x36\x98\xc0\x47\xeb\x75\x6e\xfe\xb0\x98\x9e\x37\xb4\xf9\x01\xdc\xbc\xf5\xa8\xeb\x3d\x93\x6a\xfa\xf3\xab\x5b\x7b\x12\xee\x0a\x6f\x9a\xbf\xf3\x51\xe0\x15\xeb\x40\xb6\xdb\x42\xfb\x1a\x4a\x8e\x21\x8d\x02\x39\x95\x37\xe5\x31\x71\x95\x7c\xeb\x65\xa0\xcc\x62\xce\x1b\xfb\x98\x72\x51\x86\xc0\x44\x02\x16\x31\xe3\x98\x29\xdf\xfe\xf0\x4b\xb4\xb1\xe1\xbf\x0d\x8e\x5a\x8d\x38\x49\x47\xff\x4d\x36\x1d\xfd\x37\x7e\x3a\xfa\x6f\xbc\x74\xf4\x9d\xde\x0f\x19\x04\x76\x90\xb3\xad\xa5\x45\x05\x4b\x92\xd0\x35\xdd\x80\xdb\x42\xce\x47\xfb\x3d\x18\xd8\x44\x36\xd7\x3b\x1b\xcc\xf5\xce\xcc\x5f\x39\x39\xd1\xf5\x34\xef\x29\x65\xf5\xd5\xb6\xe0\x69\xf4\x7b\x5e\xc6\x63\x4e\x86\x3b\x3d\x97\x07\x9e\xcb\xf3\x8b\xa3\x2f\xd0\x0e\xff\xe0\x69\x0c\xf6\xba\xa2\xc2\xd4\x58\x37\x04\x98\xa7\xb4\x4d\x98\x52\xa8\x0a\x79\xfe\x02\x3f\x12\x73\xd5\xc8\x42\x90\x43\x60\x4a\x3e\x0b\xc2\x9a\x52\x07\x09\x7f\x24\x4c\x90\x06\xdf\xca\x1b\x7c\x9e\x84\x5d\x42\xca\x25\x13\xf4\x2a\x05\x4a\x97\xe9\xd4\x84\x8a\x88\xb2\x58\xb5\x4c\x10\x26\x74\x3e\x03\xfd\x6b\xbb\xf5\xa4\x79\x0b\xea\x1e\xfc\x82\x3d\xa3\x9f\xc0\xa9\xe3\x03\xec\x29\x6d\x81\xfb\x53\xd5\xa7\xe7\x72\xa3\x4b\xeb\x03\x57\x7b\x94\x70\x72\xbd\xae\x57\x64\xd0\xf3\xe2\xed\x25\x19\x73\xd2\x6d\xd6\x42\x1e\x5f\xf5\xb8\x23\xfc\x23\xe1\xe3\xbf\x6d\xe4\xa5\x55\x5e\xb4\x7c\x5c\xaf\xd7\xe3\xd4\x3f\x7b\x0c\x16\x48\x34\xa6\xdd\x98\x5e\x5d\x6d\x60\x13\x4f\xc7\x6f\xdb\xf1\x55\xdb\xd0\x8b\x9b\xb1\x1e\x75\x87\xc7\x9b\x8e\x8c\x6d\xde\x96\x02\xed\x94\x3d\x41\x4d\xb7\x4e\x46\xd3\x94\x85\xad\xba\xc0\x43\x1e\xc8\xb2\x84\x1f\x01\xd7\xe7\xd9\xac\xe3\x9e\xa6\x9c\xd4\xcd\x6b\xb6\xbe\x29\x11\x56\xd9\x77\x1e\x89\xc7\xaa\x67\xf3\x94\x09\x8b\xd1\x24\xcc\x3a\xa2\xa9\xf9\xd6\xb1\x3f\x63\x50\x43\xfa\x19\x93\xb1\x8a\x07\xca\x6b\x96\x24\x47\x91\x82\x55\x98\x45\x2e\x22\x6e\x2c\x5a\xce\x91\x23\x2d\xef\x1b\xd0\x8a\xf8\xfe\x29\xaa\xfd\x32\x8b\x23\x4b\xf2\x34\x82\x49\x0e\xad\x70\xbb\x8d\x1f\x93\x46\x3d\x4d\xfb\x70\xe2\x6e\xea\x7c\xe7\xe5\xa1\xb5\xc3\xe7\xe9\xe4\xa4\x18\xca\x96\x07\x08\xd6\x12\xdf\xaa\x40\xcf\xf9\xd1\x6c\x87\x76\x18\x6e\xe7\x30\x4c\x74\xde\x1f\xbd\xe4\x2f\xa2\xfc\x50\x5d\x31\x0a\x3e\xc3\x6a\x9e\xbf\xa0\x2e\xf5\xa9\x5f\x5b\x57\x7f\xec\x59\x7b\xac\xc1\xa5\xbd\x48\x31\x1f\x62\xda\x1b\x29\xcb\x31\x4f\x26\x13\xdb\x94\xb2\x8f\xed\x07\x52\x16\xf2\x5b\x79\x4d\xf4\x73\x53\x3e\x93\x92\xb4\xaa\x0b\x79\xcf\x1d\xf3\x53\x1b\x46\xe2\x56\xc3\x56\xcf\x21\x49\xe1\x79\x43\xbb\xae\x5d\xd1\x5a\x10\x9d\x12\x46\x7d\xdd\xf5\x10\xbb\xd1\x4c\x95\xde\x8c\xf5\xc7\xcb\x8b\xc8\xa9\x7e\xc4\x26\x13\x66\x4d\xda\xa0\x25\x3b\xdf\x30\x93\x64\x5a\x76\x40\x47\x9e\x26\xe7\xf3\x95\x8e\x48\x75\xa5\xbd\x51\x9a\xb8\xd4\x4f\x74\x6d\xe0\x28\xd3\x03\x3e\xdb\x8e\xbd\xb2\xfa\xa6\xa1\x34\x71\x37\x5d\x42\x2a\xd8\x0f\xcb\x71\xaf\x8d\x83\xdf\xcc\xde\x86\xfd\x37\xcb\x0e\x47\x7c\xf6\x3c\x23\x20\xc9\x23\xfd\x6f\x1a\x58\xcd\x4d\xbf\xe4\x1a\x0a\x04\x48\x69\xc1\x25\x9c\xd9\x87\xfd\xb4\x7e\xa8\x48\x26\x57\x6a\x87\xf0\x1f\x49\xf5\x23\x31\xb7\x6a\xfe\x1e\xcd\xdc\x92\x21\xb5\x98\x20\xa3\x47\x16\x94\x67\xff\xd5\x0b\x57\x56\xe5\xfe\xf4\x2f\x48\xe5\x67\xe4\xfe\x54\xef\xbe\xc6\x0d\x09\x68\x26\xf1\xe5\x18\x5d\x8b\x05\xca\x1e\x80\x6a\xc3\xc4\xf3\x0e\x47\xa1\xdc\xde\xc9\x1b\x68\xd1\xed\x55\x32\x3d\x87\x27\x49\xe4\x2d\xd6\x84\x7e\x1e\x47\xab\x77\xf3\x8c\x6b\x70\xb4\x4d\x3b\x22\xdc\xa9\x66\x79\x9a\x30\xd2\x58\x71\x2b\x4a\x9f\x62\xae\x82\xf9\xd1\x09\x96\xd4\x36\xff\x96\x68\x77\x30\x84\x61\xaa\xd5\x03\xed\xe0\xa5\x6b\x34\xfb\xf4\xbc\x36\xfb\xe9\x47\x2a\x2e\xfd\xbd\xaa\xe3\x7d\x3c\x80\xe6\x96\xad\x34\x79\x17\x1a\x95\xa4\xc0\x45\x43\x1b\xd9\x99\x02\x08\xef\x4f\x24\x8b\x56\x8d\x7f\xbb\xcf\x12\xa3\x0d\x31\x5e\xa0\x51\x04\x6c\x7b\x92\xe0\x18\x3b\xdc\xe3\x35\x04\x43\x7b\xd1\x42\xfd\x26\x1c\xed\xae\x31\x50\x42\x33\xf2\x6f\xb4\xed\xbc\x09\x2a\xce\x7b\x4d\x45\xd1\xf7\x69\x0c\x68\x1c\xc0\xdd\x07\xe5\x05\xf5\xfc\x58\x27\xe9\x86\xee\x58\x4f\xbe\x58\x56\xe5\x65\x69\x16\xf4\x5a\x64\x5f\x32\x2e\xe0\x62\xf6\xe5\xeb\x9a\x05\x1e\xe5\xba\x34\x20\xf1\x94\x0c\xd4\x58\x0b\xb1\xdc\x6e\x17\x4b\xab\x55\x9d\x4c\xfe\x44\x3c\x40\xf3\x1a\x7a\xd9\x69\x40\x73\xe1\xbc\xb5\x12\xbb\xb5\xef\xe7\x13\xc1\x56\xb4\xdc\xe9\x78\xc3\x2d\xe7\xc4\xea\xc5\x52\xc7\x5d\x3a\xd0\x42\x23\x5b\x53\x00\x2c\x1c\xd1\x43\xb2\x93\xd1\xde\x44\x5b\x25\x92\xd7\xa8\xd1\x05\x69\x8d\x4e\x96\x64\x17\x64\x39\x6a\xb5\x93\xbd\x3a\xa6\x5e\x84\x25\xca\x16\x90\xf3\x3c\x74\x32\x7f\x39\x87\xbc\xdf\xdd\x78\xc9\x42\x2c\xc1\x59\x2b\xb8\xeb\x55\xae\x00\xe5\xde\xc1\x7d\xb0\x11\xbe\xa0\xcb\x69\x96\x43\x2b\x17\x6c\x89\x46\x71\x3d\xd6\x0d\xba\x4c\xcc\xf0\xb0\x50\x7d\x1e\xfd\x86\x42\xec\x20\x1c\xc4\xea\xd0\x76\x25\x48\x24\x8e\x7c\xfd\x44\x60\x02\xbe\x73\x98\x1b\xd1\x54\xe7\x7d\x74\x06\x89\x68\xb1\xdc\x83\xd6\x82\xeb\xaa\x1d\x20\x13\x80\x2a\x0b\x39\xb0\x1a\xbc\x53\x4c\x5a\xb4\xed\x16\x22\x95\x4b\x82\xb6\xdb\x92\x99\x30\x5f\x0c\x21\xee\xe0\xe4\x5e\x83\x2e\xc7\x3d\xb7\xbc\x1b\xda\xf9\x44\x43\xa6\x19\xe6\xbd\x64\x68\xc4\xc3\x42\xd9\x55\xe7\x56\x21\x68\xaa\xdc\x6e\xcd\x77\xe8\x37\xb3\x5d\xce\xf9\xb1\xbb\x61\xab\xe1\xf9\xcd\x1c\x16\x8a\x4e\x43\xc7\x08\x86\x30\xad\x8e\xf8\x76\x3b\x53\xee\x8d\x2a\x88\xbb\x0d\xb2\x17\xd1\x78\xf9\x4b\x91\x18\x24\x8d\x8e\xa7\xaa\x02\x0c\x23\xfb\x5c\xb9\x0a\x6d\xb7\x47\x35\xba\x75\xd9\x02\x0f\x26\x32\x86\xb0\xf5\x01\x16\x4b\xa7\x08\x34\x4a\x99\x8f\xb4\xa3\xef\xd6\xd1\xcc\x7e\x0b\xf9\xc8\x94\x81\x73\xb1\xc4\xeb\x6a\xf6\x60\xfd\xd0\x28\xa7\x1e\xac\x0d\x29\xad\xaa\x6e\xb1\x5e\xe2\x8b\x6a\x15\xd1\xca\x91\x3c\x5c\x2f\x34\x81\x4c\x26\xe5\x85\x26\x0b\xbc\x51\x14\xb1\x42\x68\xb7\xd1\xd5\xf5\xd1\xc0\x26\x39\x5d\x7d\xc5\x6b\x6f\x44\x46\xee\x20\x13\x01\x5c\x1e\x4e\xa4\xd5\x10\x32\x38\xac\x20\x86\x76\xdf\xd7\x16\xbd\x28\x85\x3e\x08\x32\xa4\x06\x50\x3c\x23\xeb\x75\xc6\x0e\x58\x04\x82\x46\xba\x3d\x75\xda\x84\x2c\x11\x43\x3d\x3c\x87\x0a\xea\xca\x87\xdd\x0f\xb5\x57\xe5\x8f\xf1\x61\xaa\x26\xc8\x44\x10\xe1\x43\x6e\x31\x20\x8f\x43\x6f\x29\x17\x0f\x9f\xc2\x4a\xef\xdb\xc4\x3f\x12\x2b\xbc\x5e\x79\xc6\x6e\xcd\xda\xce\x8d\x40\x21\xe0\xf6\xc7\x49\xa2\x3c\x9f\xad\xd5\xfc\x29\xbc\x76\xea\x8d\xd8\xe1\x71\x32\xf9\x95\xde\x74\xd9\xfe\x3e\xea\xe7\xe5\x7a\x1d\x08\x43\x38\xf0\xf8\x0c\x3a\xfd\x15\x29\x19\xa6\xd5\x1f\xf3\x23\x05\x69\x60\x2e\x92\x11\xb3\xcc\x68\xfd\x11\xe2\xfd\x1c\x3d\x8f\x39\x7a\x6e\x39\x7a\x34\xbf\x73\x87\xf6\xf4\x67\x77\x08\x37\x6c\x48\x06\xd3\xd8\x03\x28\x23\xfa\x1f\xc0\x7d\xe6\x28\x8a\x58\x2f\x6f\xe5\x85\xa2\x3c\xc1\x91\x65\xc2\xbd\x40\x44\x7c\x64\x56\xed\xe8\x64\x57\xee\xef\x3e\x26\x28\xbc\x7c\x92\x2d\x2d\x96\x23\x36\x99\x80\x57\xba\x8d\xec\xe8\x2d\x9a\x78\xab\xf6\xc8\x55\xd1\xc6\xf9\x55\x2e\x64\xc0\xd3\x8f\xe4\x99\xa6\x51\x8a\xf4\x12\x77\x29\xaf\xee\x71\x82\x6b\x66\x08\x99\xfc\x1e\x83\xeb\x6f\x1a\xf8\x3d\x49\x13\xe1\x24\xd9\x40\x0e\xcd\x5f\xb2\x4f\x14\xf0\xe6\x06\xc5\x96\xed\xdf\xeb\x74\xcd\x6e\x1c\xf6\xd5\xaf\x52\xa3\x1a\xe6\x0e\x4e\x93\x3d\xe4\x26\xa6\x8f\x2d\x23\xbe\x56\xde\xa5\x02\xed\x80\x7f\xff\x83\x72\xf9\x53\xdb\xe8\xfc\x5b\x2b\xe1\x96\x8b\xc2\x0b\xea\x0b\x82\xe0\x0b\x79\x2f\xc5\xcf\x4c\x4a\xb1\x62\x89\xf0\x7f\xe6\x85\x66\xed\x0f\xf7\xf4\xd5\x1f\xdd\x00\xff\x4c\x02\x9e\x74\x53\x92\x34\xd7\xbd\x5d\x62\x5f\x33\x8e\x24\x8d\xd9\x6a\x7e\x47\xe2\x53\x8f\x47\xd7\x0c\xb6\x6e\x5d\xa0\xd0\xa8\x7d\x43\xb4\xe4\x2f\xbf\xcc\xc4\xbc\x60\x4b\xf0\xee\xe6\xb2\x43\x9b\x4a\x9b\x83\x5b\xeb\x17\x60\xac\xb9\x35\x6b\xc6\x0a\xb4\x6b\x5c\xbf\x6b\x37\x62\x0c\x4e\x01\x26\x6b\x9b\x1c\x01\x18\x9b\xa9\x61\x47\xbb\xea\xcf\x65\x57\x11\x52\x76\x60\xc3\xc7\xff\x59\xfe\x0e\x53\x94\x98\xa2\xfd\xc4\xfd\xe7\x5e\x2e\xad\xbf\xb6\x34\xe8\xae\x62\xdb\x23\x28\xe4\x11\x99\x4c\xca\xb2\xad\xbe\x57\x96\xf0\x1a\x13\xcc\xa7\xb4\xc1\x0c\x21\x63\xde\x6b\x94\x5b\xb4\x3c\x15\x55\xf0\x06\x68\xbf\xcc\x4b\x70\x44\x53\x7f\xee\x14\xc3\xaf\x82\x05\x21\x5d\xdd\x59\x6d\x76\x63\x49\xb1\xfa\xb8\xdb\xc9\x59\xa2\x61\x86\x3b\x7a\x51\x92\x31\x65\x9d\xa8\xd9\x8a\xb4\x17\xe3\xef\xcc\x11\xb6\x99\xea\xd0\x4e\x85\xd0\x55\xba\x1e\xa2\x91\x70\x9a\x05\x8d\x6e\x55\x52\xe7\x4e\xed\x5e\x2a\x6d\x1b\x95\x2c\x93\x52\xc1\x91\x1d\x5e\x7b\x64\x63\xbd\x50\x7d\xf3\xb3\x3c\xb9\x55\x24\x41\xc9\x2b\xa1\xe0\x40\xa5\x90\xc2\x2b\xa6\x7f\xe0\x23\x8e\x3c\x83\xa6\xf6\x6d\x69\x08\x00\x8c\xda\x54\xa3\xa7\x7c\xba\x5a\xd7\x5d\x37\xe7\x23\xea\x28\x6f\x32\xa1\x31\xba\x97\x67\xa7\x92\xed\x78\x85\x2b\xc9\x9d\x29\xdc\x50\xe3\x3d\xeb\x3a\x2f\x84\x7f\xaf\x34\x9e\x1b\xcd\x98\xf9\xdd\xf0\x7f\xe8\xb6\xe6\xc5\xb1\x40\x73\x36\x3d\x5f\x83\xb7\xa4\x4e\x8f\xea\xbf\x74\xcd\xb0\xb4\x19\x97\x63\x84\x5e\x94\x7e\xf5\x66\xf3\x45\x4d\xd2\xcf\x94\x41\xad\x23\x5e\x51\x39\x01\x30\x2f\x6a\xb5\x40\x7a\x8f\xbb\xe1\x3e\x70\x41\x0a\x6d\xf5\xca\x28\x80\x39\x1a\xb5\x53\x4e\xda\x6b\xc2\x00\x3d\xa8\xbc\x3d\x3f\xa7\xdd\x4b\xf8\xea\x68\x86\xcf\xcf\x55\x05\x7c\x87\x30\x9b\x9a\xab\xdb\x1b\x1d\xf6\xf0\xa4\x74\xc0\x9e\x1d\x2e\x17\xee\x24\x09\x5c\x8d\x23\xcc\xc1\x01\xc7\x63\x11\xc1\x40\x41\x10\x01\xc8\x32\x14\x6d\xb7\x31\x9b\xe6\xfb\xfb\x06\x9f\x2d\xf8\xd2\x85\x7a\xb4\x36\xdb\xd7\xe8\xa3\xce\x0c\x28\x1c\x9d\x2c\xa5\x70\x5d\xc6\x0f\x7d\x65\xaf\xf6\x40\xd4\x8e\xa3\x2f\xeb\xeb\x02\x21\xe3\x8b\xaa\xe1\xd0\xad\x73\x52\x37\x99\x94\x9d\x8e\xd9\xf1\x5d\x4d\xb9\x64\x30\xf0\x51\x17\x76\x65\x53\x75\xe0\xf1\x38\xca\x45\x49\xd8\xdb\x49\x49\x80\x5e\x98\xc4\xda\x48\x80\x59\x79\xa0\x5d\xac\x97\xd0\xbe\x72\x8f\x84\x9f\x3a\x70\x65\x35\x99\xac\x62\x9c\x2d\x39\xb7\x1b\x9b\x10\xcd\xa4\x8e\x3f\x3a\xd9\x29\x9f\xd6\x7c\x13\x7e\xfd\x50\xb9\xd1\x8b\x4c\x26\x17\xf9\x06\x76\x7a\xcd\x28\xe6\xc8\x45\xd7\x84\x8b\x46\x97\x23\xe5\x46\x46\xb5\x36\xb0\x06\x09\x71\xa7\xb4\x65\xd4\x68\xe0\xcf\x08\xff\x48\x57\x7b\x4c\x1a\xfb\xed\x13\xde\xa1\x5f\xfd\xc1\x84\xd4\x26\x8a\x3d\xb8\xe1\x7f\x4b\x4a\x2f\x93\xb7\xcb\x77\x06\x91\x5c\xe2\xe6\x65\x7d\x0d\xc5\x1e\x47\xf1\xb5\xf2\x1c\xf7\xa0\x49\x5a\x97\x4d\xf9\xf1\x9e\xe0\x82\x60\x5e\xde\xf8\xc1\xbf\x2f\x48\x90\xb1\x2d\xdb\x92\x52\x64\x35\x21\x4a\x8e\x7d\xab\x72\xe0\x44\x39\xfb\xe2\x6f\xfb\x5e\xeb\xf6\x9e\x11\xb1\xba\x84\xfe\x5c\x97\xb7\x3a\x65\xb5\x4a\x47\x94\x5c\xf4\x8b\xe5\x2e\x66\x20\xf7\x8d\xde\xc1\x16\xf4\x96\xdc\x19\x54\xd5\x79\x71\xef\xaf\x5d\xcb\xee\xd5\xd7\xb4\xc0\xba\x27\x5a\xd2\x4b\x7c\x1a\xf4\x27\x81\x47\x43\xde\xe8\x63\x4a\x86\xa6\x74\xfd\x54\xa7\x90\x43\xd8\x97\x83\xe7\x7d\x7a\x2c\x53\xc3\x7f\x92\x84\xb5\xb0\x37\xce\x3e\xfe\x83\x57\x67\xf2\xea\xa0\x49\x8e\x1a\x61\x02\x25\x68\xf7\xaa\x65\xa4\xa4\x72\x33\x4e\x26\xf0\xbf\x8a\x81\x60\x84\xd7\x82\x3c\x6f\x20\x38\x02\x61\x78\xf1\x9d\x2e\x38\xb2\xb1\x12\xef\x36\x74\xdd\x44\x48\xca\x98\xfa\x3b\xbb\xf5\xd2\x39\x95\x08\xb7\x1e\x43\x09\x81\x13\x68\x87\xbd\xd6\x7a\x67\x23\x9c\xc3\x91\x73\x14\x63\x53\xf7\xf5\xb3\x56\x0b\x8b\xa7\xd9\xa7\x3a\x5b\x15\x16\xda\xab\x04\xfb\xd9\xa5\x03\x5b\x6c\x98\x9b\x1a\x7c\x42\x3c\xe0\x97\xa8\x68\x84\x09\x83\x2f\x28\x6b\xfa\xa0\x31\x60\x28\xb2\x80\x2e\xae\xa4\x36\xf7\x20\xf9\x2e\x58\x45\x7d\x7a\xa4\x58\xd1\x1c\xbb\x5c\xd6\xac\x62\xdb\xad\x5c\xe2\x4b\x1f\x74\xd8\x95\x3b\xfd\x33\x31\xea\x48\xd7\x0f\xc9\xc9\x29\x37\x83\x33\x79\x5c\xfd\x2f\xf7\x6a\x5c\x1c\xf3\xe3\x42\xe5\x66\xa0\xcd\x7c\x0c\x5c\x8c\xfb\xfe\xdb\x9b\x70\xf5\x81\x25\xc4\xe7\x3d\x23\x52\xf9\x0c\x74\x22\xe9\xd0\x55\xc6\x88\x6b\x70\x42\xa8\x78\x11\x23\xbc\x47\xe6\x69\x81\x8c\x3f\xb5\x4f\x13\x9e\xcf\x90\x8d\x7a\x9a\x76\x97\xed\x66\xad\x33\x2e\xfb\x34\x60\x22\xf3\x33\xad\xce\x41\xcf\x25\x40\x84\x7a\xcf\xdb\x0d\xd3\x9f\x9f\x0e\xc8\x2a\x04\xcd\xcb\x32\xfd\x64\xbb\x35\x3d\xf8\x36\x7a\x13\xf6\xc5\x00\xcd\x66\x7a\x83\x07\x5b\x35\x33\x1d\x2d\x42\xc6\x23\x2a\xf1\x84\x3c\xc9\x7a\x42\x9e\xf8\x9e\x90\x27\xe0\x09\x69\x65\x1d\x0d\xd3\x3e\x99\x04\x29\x00\x4a\xfb\x02\xe1\x80\xb0\xc0\xe4\x10\xd2\x06\x0c\xa8\x8f\xc8\x48\xe0\x94\xe6\x91\x1b\x91\xa7\x89\x1e\x68\x5a\xe9\x3c\x1f\x0a\xed\x6c\x1e\xfd\x0b\x4d\xb4\xbf\x1e\x40\x37\x9c\x02\x10\x3d\x4c\x30\x78\x13\xce\x07\x27\x5e\x6d\xd9\x6f\x6f\x9e\x37\xb1\x29\xde\x69\x06\x72\x60\xfc\x76\x27\x27\x56\x1e\x66\x71\xf8\xbd\x5d\xc9\xb1\x58\xd0\xa5\xa5\xe7\x75\xe9\x75\xaa\x06\x3f\x66\x25\x9b\x6a\x7d\x9c\xe7\x2c\xe4\x26\x18\x3a\xa9\x24\x5d\xee\xa4\x5f\xf0\xa6\xc4\xe7\x17\x72\x36\x06\xee\x21\x5f\xb9\x96\xb1\x60\xc5\xde\xff\x34\x71\xee\x47\x90\xc5\xc6\xa9\x00\x7e\x8a\x57\xb9\xd9\x34\xd0\x6a\x7d\x17\xc7\x72\x4d\x64\x2a\x30\xa0\x3b\x2e\x7e\xed\xe8\xeb\xd7\x30\x2d\xbf\x2e\x12\x31\xdf\x4a\x08\xce\xe3\x5c\x32\x4f\x8a\x13\x55\xee\xe6\x26\x5b\x77\xec\x71\xde\xa2\x5c\x42\x79\x6a\x93\x13\x96\x70\x9d\x1a\x02\x95\xb2\x59\x78\x85\xd8\x6c\xf3\x19\xbf\x74\x3d\x80\x02\x69\xe5\xa4\x77\x04\x6a\xab\x02\x56\x08\x00\x98\x40\x94\x36\xdc\x2f\x21\xf5\xbf\xac\xd9\xcd\x01\x54\x4b\x3c\xaa\x9d\x3d\xe0\xce\x1e\x0c\x09\x63\x16\x7c\x59\x65\x77\xd6\x82\x2f\xbd\xcb\xa8\xc7\x0d\x8e\x25\x9d\x4a\xaf\x89\x68\x43\x3a\x6d\x6d\xf0\xd8\x5e\x12\xb4\x01\x4d\x9c\x23\x35\xea\x93\x1a\xc0\x9d\x96\x05\x34\x45\xd9\x7b\xb5\x19\x7e\xed\x1f\x33\x0c\xe1\xb6\xba\x8d\x72\x2b\x60\x4d\x9a\x7c\x4e\xb1\x0e\x4a\x9a\x8b\x1d\x96\x94\xae\x3b\xe1\x9c\x78\xbc\x94\x96\x65\x8d\xf0\xac\x8a\x20\x42\xa0\xed\x69\x47\xff\x4e\x26\x93\xff\xdc\xa3\x9e\x04\x43\xe1\xa3\xf5\xfa\x8d\xf7\x29\x89\x79\x77\x55\x21\x44\xba\x22\x6b\xb3\xad\x77\x38\xff\x71\x22\xe8\xec\xcb\x37\x5e\x66\x1a\x33\xf2\x77\x6a\xce\x84\xf7\xcf\x5a\xfe\x16\x42\xdf\x53\x41\x43\x7d\xaf\x8d\xfb\x70\xf4\xf4\x7c\xdc\x4b\x99\x42\xc5\xfd\x32\x9f\xe4\x21\xd1\xe2\xd1\x91\x0b\xe0\x99\x4c\x24\xdf\x5e\xaf\x49\xb7\x22\xcf\x60\x8b\xfe\x6d\x43\x3a\xd1\x01\x86\x83\xb6\xf6\xd6\x1e\x91\xc3\x01\x95\x13\x28\x36\x50\xe8\x47\x52\x7f\x78\x59\x5f\x6b\x5b\x6a\xeb\x1b\x51\x89\x31\xa2\x06\x24\x33\xaa\x17\xeb\x65\x75\xa1\x31\x3f\x2e\xf0\xca\xc4\xb2\x21\xdc\x2d\x2e\xa6\xb4\x59\x56\xab\x9d\x19\xd3\x65\x35\x7b\x70\xf9\xb0\x7d\x70\x29\x6b\xad\x17\x97\xcb\x5c\x16\x7d\x79\x40\xc0\xbb\x28\xb7\xbc\xd3\x9e\x5c\xbb\x6b\x9e\x4d\xfd\x23\xbd\x8c\x9c\x78\x30\xb1\xbd\x19\xd9\x53\x97\xdb\xe3\xd7\xd7\xc8\x34\xf1\xec\xe7\xe6\xa8\x27\x99\x94\xc1\xf2\x50\xb9\x3a\xbb\x85\x14\xf4\x41\xd9\xc1\xd4\x9f\x55\x8b\x6b\x54\xa7\xed\xb7\xc8\xce\x8c\x31\x60\xe3\x95\x4b\x05\xba\x7e\xb8\x72\xf3\x7f\x51\x89\xc5\x7a\x39\x62\x6a\x4e\xb7\x5b\x6d\xa2\xbe\xf0\x2d\xd4\x57\xe5\xc6\x1b\xd1\xd5\x61\x9a\x7b\xa5\x4b\x23\x0b\xb6\xc4\x6d\xd5\x2d\x28\xf4\x1d\x22\xbe\xbd\xfe\xca\xa9\x28\xc5\x76\xeb\x39\x17\x3e\xfd\x7c\x0d\x70\xfa\x70\xa3\x50\x9d\x5c\xf8\x1d\x19\x5f\x73\xd2\x11\xa6\x9d\x51\xc8\x58\xd3\xee\xf8\x9a\xb7\x1f\x69\x43\x1a\x73\xb4\xe3\xf1\xbb\x8d\x18\x53\x01\x71\x66\xac\x15\xe3\x0b\x79\x51\x4c\x21\xe6\x81\x5e\xc8\xcb\xc8\x74\xfc\x26\xa4\xde\x8f\xd5\xec\xc1\xc7\x87\xed\x83\x8f\xa6\xf3\xef\xab\x7a\xf1\x71\x39\xba\x59\x7c\x5c\x56\xef\xe3\xfb\x78\x03\xc7\xc5\x7b\xe4\x66\xfa\x5d\xc5\xa7\x92\x33\xbd\xd6\x1e\xb0\xcf\x5a\xfe\xcc\x06\xdc\xc9\x1d\x77\x83\xf0\x79\x35\xc3\x9f\xaa\x77\x66\xae\xce\x1f\x7e\x7a\x70\xee\xfb\x04\x3d\xad\xde\x2d\xce\x97\xf8\x33\xfc\x67\x76\xd9\x99\xd7\xcf\xcf\x08\xbf\x0e\x7f\x3e\xaa\x66\x0f\x1e\x3d\xfc\xfc\xe0\x91\xe9\xf6\x87\xea\xe9\xe2\xd1\x32\x12\x6e\x46\xaf\x17\x8f\x96\xd5\x07\x7c\x06\xff\x4d\x69\x23\xe7\xe2\xf3\x6f\x4e\x50\xa0\x8d\x7f\x46\x4a\x8e\x19\x16\xf8\x0c\x13\xbc\x89\xef\x71\x81\x6e\x55\x2e\x9d\x1d\x9a\xae\x6a\x11\x59\xb2\x14\x55\x48\x31\xb4\x7c\xad\x71\x51\xe8\x45\x29\x25\x80\x33\x73\xfd\xdd\x5e\x97\xdd\xe2\xf5\x62\xb6\x94\xa4\x80\x76\x3b\xa5\x42\x35\x63\x7f\x59\xcd\x1e\xbc\x7c\xd8\x3e\x78\x79\x7c\x8c\xae\x4b\xb2\x78\xb9\x44\x3b\x0c\x22\xae\xc6\xf7\xce\xf2\x55\x67\x7e\xfc\x41\x9f\x50\xc7\xb0\x40\xd3\x18\x20\x1d\x5f\x13\xf2\x61\x80\x63\x4b\x6a\x8e\x24\x40\x59\xe9\xe9\x70\x93\x9e\xc5\x47\xcb\xc9\xe7\x9c\x64\xa5\x5f\x80\x36\x9c\xd2\x66\x94\x72\x8b\x29\x73\x32\xda\x23\xee\xed\x70\xd8\xd5\xde\xe1\x61\x5e\x7d\x47\xd4\xd1\x9f\x19\x48\xa7\x5a\xd3\xf7\xa2\xb1\xe5\x1e\x81\x0a\xdc\xd8\xc7\xa5\x94\xce\x7b\x5b\xda\xb7\x2e\x24\x9a\xa4\x1d\xce\x94\xca\xf6\x5e\x75\x9b\xf7\x76\x5b\x6b\x46\xdd\x5c\xf1\xd3\x92\xf7\x5d\x0a\x3c\xbe\x11\x5c\x5a\xb1\x8c\x56\x86\x28\xb9\xfc\xc0\x24\x40\x89\x1a\x62\x40\xbb\xe8\xb0\x3c\x32\x2d\x18\x0e\x23\x03\xff\xed\x81\xea\x34\x2f\xeb\xeb\x32\x31\xff\x02\x17\x32\xd4\xb0\xc1\xe0\xf0\x98\x3e\x2d\x2c\x1a\x76\xe0\x2b\xb2\xb9\x7d\x32\xed\xc1\xfc\xae\xac\x40\xa7\x70\x9b\xa7\x6e\x23\x07\x48\x57\x2c\x2b\x5d\x79\x26\x55\xaa\xb4\xeb\x36\x6a\xda\xa4\x9c\x03\x63\x29\xa6\x43\x81\xd3\xba\xa8\x89\x9d\xf6\x65\xf1\x5f\x8f\xd5\x9d\x06\x95\x43\x50\xb5\x15\xbb\xfe\xec\xc7\x3c\x83\xbd\x94\xa5\xf6\x52\xab\xc4\x72\x82\x94\xe9\xa8\xc0\x1d\x66\x5e\xfc\xae\xee\x45\x21\x59\x71\x23\x4c\x71\x4f\x93\x08\xb1\x93\xca\x85\x05\xb7\x7b\x02\x78\x73\xc3\xd0\x28\x3f\xe1\x70\x32\x92\x94\xaf\x4c\xc2\x46\x69\xa8\xd0\xc4\x94\xe0\x6f\x52\x8b\xfc\x83\x16\xd2\xe5\x07\x3c\x60\x29\x6d\x61\x1d\x1b\x1e\xe8\x55\xa4\xa4\xa3\x6a\xff\xf9\x56\xd1\x76\xa0\xf0\x34\x71\x4d\x2d\xea\x53\xb7\xa6\xfa\x62\xd9\x17\xd7\xde\xd3\xf7\x3b\x2e\x99\x72\x5f\xca\x6b\x56\x6f\x77\x2a\x4a\x29\x8c\xbc\x05\x37\xd8\x3d\xd1\xb9\x26\xfd\x71\x7a\x97\xab\x68\x0e\xaa\x31\x68\xa0\x0b\xe7\xb9\x3e\x78\xe4\xb2\x2e\x87\x08\x26\x8c\xdf\xef\x22\xef\x32\xa2\xc2\x64\x8c\x66\xef\xdf\xb6\x5b\xf3\xe4\x13\xaf\xaf\xaf\x49\xf3\x4c\x57\x3d\x99\xf4\xbc\xb0\x9f\x9e\x96\xb4\xa2\xdb\xad\xc8\x65\x07\xdc\xeb\x0c\xa7\x30\x1a\xbf\xd0\xa9\x63\xaa\x43\x60\x14\x7d\xe3\x16\x1c\xd2\xbe\x42\x5d\x68\x87\xb0\xf3\xea\xc8\xed\x19\x15\xff\xa3\x71\x14\xe2\x4a\x5b\x03\x2c\x17\xe1\x0e\xd4\xb8\xd5\xc4\xab\x83\x79\xf0\xc6\x9e\x58\x9d\x25\x07\x7a\x4a\xa7\x69\xf0\x4e\xb9\xc1\x1d\x9a\xd3\xea\xcb\x67\x19\xcb\x1a\x30\xdd\xb3\x7f\xd4\xc0\x00\x1d\x22\xdd\x2e\xd1\x26\x31\xbb\xe4\x60\x2b\x84\x57\x17\x07\xcd\xc9\x2e\xb0\xc9\x24\xdb\xa9\xdd\xbb\x9d\xf0\x26\xb3\x07\xfa\x10\x2c\x7e\x02\x5d\x58\x35\x62\x0b\x0d\x38\x35\x62\x2d\xa9\xa4\x1e\xa2\x12\xa7\x47\xcc\xd1\xca\x7e\x8c\x0a\xaf\x92\x2f\xc0\xf9\xf0\xbb\xa0\x56\x95\xea\xac\x54\xb2\x91\x7e\x37\x25\x72\x4a\x52\x9e\x1e\xe9\xab\xec\xd1\x3a\x56\xa1\xf7\x49\x28\xa0\x58\x00\xf4\x0c\xc5\xa7\x79\x10\x22\xc2\xea\x92\xfb\xaa\xfb\x62\x24\x86\x9c\xa9\x67\x88\xf3\x27\x68\x6a\xf2\x19\x4c\x3b\xca\x56\x44\xb9\xcb\x84\x16\xa7\x7e\xbf\xf2\x19\xc2\xeb\xf2\xef\x52\xa0\xd4\xdb\x83\xca\xcb\x70\x64\x7d\x4c\xa2\x8b\x9b\xf5\xd8\x9a\x4c\xf0\x33\x6e\xd1\x69\x79\xd7\xd6\xb4\x09\x8a\xa5\x26\xa8\xc0\x00\x10\xd3\xbd\x40\x68\x5e\x96\xe9\x57\xfd\x56\x28\xaf\x97\x68\x32\x19\xee\x67\xd2\x4b\xbc\xaf\x33\x2a\xdc\xd8\x39\xff\xa7\x22\x40\xe6\xf8\x0b\x71\x5a\x08\x52\xf2\x6e\xfc\xb5\x52\x76\x25\x24\x9a\xa9\x2f\x8d\x0b\x00\x80\x5b\x25\x39\xc4\xd5\xd2\x8b\x72\x56\x55\x09\xad\xa2\xc4\x69\xc3\xe8\x31\x5d\x4c\x80\xee\x4d\x1f\x55\x0a\xe4\xa5\x77\x50\x40\x9c\xbe\x3e\x76\x87\x8d\x38\x7c\x16\x04\x9f\x07\xa7\x6f\x62\x07\x65\x68\x44\x94\xa6\x38\x97\x7a\xd0\x26\x95\xfc\x91\xae\xd7\x2a\xdf\x69\x99\x71\xfe\x50\xd2\xdb\xad\xc1\xf0\x98\x73\xa7\xf2\x16\x3b\x84\x3d\x45\xf5\x6b\xb6\x1a\x50\x56\xbf\x71\x55\x22\xad\x82\xf6\x1e\xf5\xa1\x74\xfa\x1d\xe9\xc0\x07\xdb\xcc\x61\xe8\x9f\xe2\x27\x66\x01\x60\x2d\x13\x9a\xf6\x90\xa9\xf0\x34\x3d\x45\x0b\xb1\xc4\xb4\xe2\x16\x0e\x05\x1c\x50\xcd\x80\x40\x6d\x1f\x39\xa8\x76\xc9\xe9\x52\xfb\x8c\xa4\x45\x0a\x2c\x78\xdb\x0a\xed\x14\xd0\x4c\xbb\xfa\x23\x69\x0a\x79\x72\x4d\x57\x1b\xce\x09\x13\x67\xa2\x16\x64\xda\xc9\x7f\x01\xd9\xa2\xdc\x54\xf5\x94\x76\xaf\xc8\xa7\x12\x9d\x16\xbe\xbf\x47\x31\xaf\x41\xc4\x85\x9a\xe4\x4b\xdf\xd3\xa0\x98\x17\x7e\x32\xda\x02\x5b\xb5\x63\xf9\x3b\xe0\x60\xe4\xa4\x6f\xc0\x2b\x75\xee\x5e\x49\xa2\x0a\xbc\x3f\xb3\x47\xb0\xc1\xf5\x86\xfc\x86\x42\xbb\x8d\x32\x13\x9b\xa4\xb3\x76\x37\x7e\x74\x4a\x47\xc4\xe6\x3a\x70\x06\x32\x61\x4a\xda\x25\x33\xcd\x40\x0c\x92\x6e\xec\x27\x9a\x68\x8c\x72\x49\x5a\x61\x5f\x86\x4e\xa4\x03\xdf\x29\xad\xab\xb0\x60\x1d\x3d\x0a\x97\xac\x59\xe8\x3b\x52\x5a\x44\x66\x0d\xfa\xc8\x54\x1c\x39\xe0\x52\x6a\xf5\x04\xf9\x4c\x3b\x11\xc7\x69\x19\x2f\x0a\xda\xbf\xd5\x7d\x41\x04\x0e\x53\x8a\x89\x9c\x29\xc8\x9c\x2d\x2f\xf9\x58\x47\x22\xbf\xca\x01\x01\xa4\xa7\x8e\x49\x6c\xa3\x40\x2f\x00\x4a\x23\x7b\x2a\x6a\xb9\x8c\xf5\xfb\x8b\x08\xa5\x28\xc1\xbc\xd2\x57\x4d\x40\xc6\xda\x34\x19\x40\xe7\x6d\x54\x72\x68\x82\x30\x3f\xed\x3b\x6c\xe3\xfc\xe1\xcc\x64\x38\xe8\x2b\x6a\x83\x94\x4b\x15\x7b\x73\x6e\x98\x3c\xe5\x56\x9a\x43\x47\xd0\x8e\x56\x67\xca\xfb\xc1\x94\xcf\xcc\x43\xea\x3b\x17\xba\x0e\x09\xe5\x10\x7b\xaa\xff\x9f\x0b\xaf\xf9\xde\xe5\xf0\x20\x4a\x6d\x71\x5b\x79\xcf\x15\x25\xcf\x2b\xe1\xe1\x39\xa4\xfe\x7c\x1e\xca\xab\x5c\x0c\x1f\xa6\x4e\x39\xef\x2b\x13\xc3\x2b\xc0\xe4\x21\x6b\xb0\x11\x80\x7d\x60\x7c\xd1\xf2\xf1\xaf\x8b\x63\x01\x7a\x8c\x91\x0b\xba\x1a\xea\x59\x40\x5e\xe9\xfc\xec\xf0\xf9\x65\xdd\xbd\xec\x9f\x58\xff\xda\x35\x08\xca\x7b\xc7\xb7\xc3\xf2\x9e\xe9\x5d\x26\x1d\xc2\xdd\x17\xa0\x75\x2a\xfa\xb1\x2b\x82\xf8\x84\xb9\xc9\x0a\xa8\x20\xd8\x22\x5c\x9f\xf3\x81\x3e\x84\xbc\xee\x1e\xb7\x3a\x15\x51\xa4\xbc\xf0\xd3\xc4\xc1\xb0\x96\x80\x55\xae\x0c\x64\x2c\x36\x90\x89\x4c\xe8\x64\xc9\x16\x7c\x89\x52\x7f\x5e\x83\xea\x7e\x4b\xab\x00\x35\xdf\xb8\xe0\x59\x3d\x26\x55\x51\xa2\x4a\x89\xa9\xda\x69\x41\x7b\x99\x6b\x4c\xe3\xec\x73\xe7\x5b\xd2\xee\x02\x2c\x3b\xdd\x98\x99\xc6\xde\x2a\x50\x1e\xc9\x27\xf2\x90\x03\x7d\x53\x10\x83\x09\x7a\xdb\xd8\x24\xd0\x7f\xdd\x08\x48\xf0\xae\x90\x30\x7a\xca\xc4\xe7\xbf\x11\x2e\xc4\x34\xca\xfc\xf9\x8d\x33\xcc\x67\x1c\x5a\xad\x36\xdb\x3a\x65\x79\xb4\xe0\x6c\xf6\x7d\x61\x3a\xde\x36\x48\xbb\x8a\xb2\x03\xf0\x79\xa3\x24\x6d\x48\xa6\x87\xd8\x64\x2f\xc7\x59\x1b\x66\xf5\x0d\xba\x15\x95\xd8\x6e\xb3\x16\x5b\xbd\x51\xc1\xbe\x49\x16\xec\xf8\x64\x29\x37\xa7\xa9\xa2\x9a\xa9\x7d\xaa\x35\xec\x03\x6c\x44\x10\x8d\x20\xd0\x2d\xaf\x84\xaf\x0e\xd3\x57\x4f\x98\x46\x8c\x22\x13\x7d\x40\x70\xb6\x40\x51\x5f\x5f\xaf\xe9\x0a\xa6\xa6\x40\x23\x15\x4d\xaa\xfb\xa2\xfa\xcd\xa5\x8c\x6c\xa6\x7e\xc8\x40\x94\xa9\x9d\x59\xb1\xd1\x53\x25\x38\xf1\xcd\x56\x2b\xa5\x6a\xb9\x52\xa9\x11\xa5\xc7\x2a\x32\xc0\x29\x58\x37\x46\xe5\x0e\xfe\x41\x45\x4c\x69\xb7\xbf\x01\x03\xa0\x11\x65\xeb\x46\xf9\x6c\x62\xbe\xc3\x03\xed\xf4\x7b\xcd\xf6\x1b\x99\x44\xe8\x44\xdb\x63\x64\x2a\x99\x09\x83\x3b\xbb\x61\xab\x52\x5e\x66\x1a\x57\xdb\x63\xd6\x74\xd0\xe9\x21\xf2\x5d\x7c\xef\x7b\xf0\x5d\xd6\x12\xd4\x7b\x4b\x0c\x33\x5b\x58\xb1\x7b\x10\xa7\x24\xeb\xd3\x26\x2f\xc7\xda\xf7\xdf\xcf\xa9\x93\x39\xe6\x00\x30\xa2\x42\x61\x0c\x8d\xb8\x98\x23\x70\x70\x09\xf0\xcc\x4b\x5e\xd1\xa9\x0a\xa9\xb1\xfe\xe2\x10\x4d\x83\x52\xa5\x03\x37\xe0\x40\xda\x51\x86\x19\xbc\xde\xa8\x42\x36\xf5\x36\xc4\x76\x9b\xd6\x1f\xec\x97\xc3\x1b\x0a\xea\xb5\x40\xc1\xad\xc5\xa1\x2f\x53\x37\xf6\xa0\x5b\x90\x3c\x3e\x37\xda\x16\x05\xea\x8e\xbe\xe6\x17\x2d\x0c\x17\xcd\xa1\x32\xcf\x0f\x3f\x5b\xad\x7b\xed\xa3\x6f\xf5\xd6\xed\x57\x07\xad\xec\x70\x70\x0e\xec\xa3\x82\x28\x86\xe0\xa7\x11\x82\xab\xec\x67\xa3\x05\xaf\x89\x9f\x83\x1c\x42\xbd\x5b\x84\x82\xa1\xc3\x26\xce\x6c\x17\xfa\x08\xa6\x5e\xf6\x74\xb9\x38\xae\x0f\xa4\x99\x3a\xa4\x19\xdd\x74\xd1\x57\xb1\x2d\x70\x20\xd1\xd8\xfa\x34\xcd\x0c\x82\xcb\xed\x0f\x11\xca\xc6\xca\x38\x18\xb3\xcc\xc9\x68\xa3\x8d\x87\x23\x79\x1c\x54\x68\x10\x13\xe3\x3d\x8f\x83\x60\xdc\x2b\xab\xf5\x2a\x1d\x8e\x99\xcf\x8a\x80\xf4\xd7\xc7\x1f\x9f\x58\xb6\x29\x17\x25\xe4\x40\x98\xf6\x32\xd0\xa2\x87\xa5\xca\x04\x38\x0b\x2c\xb4\x97\xe1\x0f\x99\x36\x15\xef\xd9\xfb\x7a\x88\xaf\xca\x0d\x01\xf7\xe8\x96\x20\xef\xaf\x52\xb3\xd5\xac\x65\x74\x55\xaf\x4b\x34\xf2\x59\x26\x5d\x5d\x3f\x07\x9c\xcc\x5d\x96\xe7\x44\xfb\xfd\x42\x83\xd1\x86\x95\xc4\x73\xd1\x07\x18\xd7\x3b\x19\x09\x97\xd9\x3f\x1b\xe7\x1a\xb8\xed\x09\xb9\x20\x9c\x93\xe6\xad\xfa\xd9\xc5\xf3\x22\xc7\xf5\x3d\xe9\xda\x0d\x5f\x11\x97\xbd\x2c\x75\xf5\x3d\x0a\x62\x91\x44\x04\xa2\x9a\xd3\x5f\x78\x29\x96\x7a\xdb\x89\x5d\xf3\x73\x0d\xed\xf5\xd7\x4f\x20\x51\x3c\x97\x90\x7c\xb3\xb2\x31\x5f\xb2\x62\xbb\xdd\x0e\xe1\xd6\x04\x21\x42\x4e\x85\xeb\x7a\xe5\x90\x36\xfe\xf8\xf4\xfb\xb3\xe7\xaf\x5f\xcd\x39\x66\x90\x4c\xe3\xc9\x59\xb1\x33\xe1\x59\x6b\xfa\x8e\xd7\x9c\x92\xce\x80\xe1\xd8\x07\x36\xc6\xf6\x71\xcb\xc9\x0b\x78\x7a\x53\x16\x50\x68\xfc\x04\x92\x40\xb7\x62\xaa\xab\x56\x3c\x68\x6d\xba\x00\xda\x15\xdb\x3c\xf0\xb9\x3f\x7c\xff\x22\x31\x4e\x63\x8a\x6e\xbb\x4f\x54\xac\x2e\x4b\x8e\x6e\x57\x75\x47\x7c\xaf\xf7\xb9\xbf\x46\x1b\xbe\xd6\x8e\x83\xd6\xba\x26\xb9\xaf\x91\xfd\xe8\xd1\x7a\xdd\xf7\x05\x28\xfa\x6d\x61\x65\x4e\xcd\x14\xfd\x83\x36\xaa\x13\xbf\x60\x7f\x5f\xfe\xe0\x99\xfa\xdc\x47\x16\x65\xbf\xa7\x2f\xda\x5d\x26\xec\xbb\xf1\x4a\xe9\xf9\xc6\x79\xd9\x84\x9f\x39\x37\x88\x9e\x0f\x7d\xaf\x0e\xf7\x69\xa8\x2b\x4e\xbf\x7c\xec\xbd\xf7\xe6\x2d\x50\x1b\x67\x3e\xfb\xc1\x7b\x1f\xb4\x17\xaa\x9f\xd3\x0f\x9f\xf8\x81\x70\xfa\x43\x7d\x59\xce\x43\x9d\x89\xa6\x23\xe5\xcc\x67\x04\xa8\x98\xb0\x12\x31\x12\x40\xcf\xe2\x30\xca\xcb\xb6\x13\xca\x0b\x48\x77\xe4\x0d\x27\x17\xf4\x73\xe9\x30\x33\x95\x16\x1b\xec\x90\xb5\x30\xbe\xe3\x25\x41\xe0\x18\x07\xe7\x29\x43\x58\xd8\x1f\x84\xad\xda\x86\xfc\xf0\xfd\xf3\xc7\xed\xd5\x75\xcb\x08\x93\x02\x10\xc2\xad\x2c\xb0\x91\xe7\xff\x05\x78\xe1\xf0\x4a\xdf\x57\xc5\xfd\x02\xe1\x23\x3a\x99\xf0\xc9\xa4\xb8\x5f\x1c\x55\x15\x9f\xae\x2e\x6b\xfe\x48\x94\x33\x04\x49\xb0\x8b\xfb\xc5\x31\x07\xc1\x2c\x26\xfe\xc1\xd8\x3f\x37\x4d\xe0\x93\x8a\x83\x7d\x30\xe4\x88\xe8\xa6\xd7\x7e\xf5\x87\xc4\xa7\xa4\xb7\xad\xf0\x9b\xac\x95\x60\xdf\x97\xcf\x72\x3e\x75\x03\xc3\x0b\x3e\xcc\x3b\xbe\x1d\x3a\x35\x7d\xfe\x56\x87\x7c\xff\xb8\x3f\xd6\x76\xdf\xfc\xfa\x7b\xe6\x0b\x5a\x7e\x92\x8f\x2e\x3d\xe8\x73\x45\xef\xd9\x9d\xd3\xb3\x57\x78\xf2\x82\x99\x9b\x46\xc1\xd1\x31\x43\xc9\x6c\xbb\x2d\x59\x55\x00\x9c\xb0\xea\xc6\xfd\xff\xfa\xcb\xfd\xbf\xdc\xbf\x3f\x15\xa4\x13\x00\x0e\x78\xff\x52\x88\xeb\xb2\x43\xa7\xf3\xe0\xc5\x29\x99\x17\xf7\x55\x8e\x3c\xbb\x19\x4e\x8b\xe2\x98\x1d\x93\xb9\x38\x96\x3b\x82\x68\xd1\x68\xb1\xf4\xb4\x0b\xd4\x6e\x48\x6e\x7f\x70\x84\xa9\xdb\x6a\x3b\xec\xed\xe2\x84\x03\x35\x63\x3e\x83\x84\x1a\xd3\x55\x7d\x45\x40\x51\xe3\x2b\xf3\xaf\xd7\x1b\xae\xd4\x37\x0c\xed\x76\x1a\x66\x41\x54\xf7\xff\xc2\x4f\xff\xc2\xee\x2b\xd0\x04\x73\xff\xc9\xeb\x51\xfb\x75\x58\x2c\x80\xf7\x44\x3c\x03\xbb\x6c\x97\x89\x44\xbf\x55\x17\x33\xd8\xf3\x0a\xdc\x90\x6e\x35\x2f\xe4\x9f\x3b\x6c\xdf\xbc\x6c\x1b\x79\xfb\x37\xe6\xb5\xfd\xed\x95\x79\xbc\x26\x35\x33\x05\xd4\x8f\xdd\x72\x87\x1b\x22\xc8\x2a\x8b\x05\x4d\x8e\xaa\xea\xd5\x64\xf2\x6a\xaa\x8a\x00\x69\xae\xda\xf5\xe6\x8a\x75\x7d\x73\x25\x2a\xdb\x5b\xdb\x97\xe7\x4d\xb1\x5b\x6a\x6d\xa1\xaf\xeb\x0e\x90\x0b\x6b\x6b\x3c\xce\x61\x7c\x13\xc9\x0c\x48\x22\x3a\x3e\xfe\x0d\x9f\xda\xb2\x2f\xe8\x15\x15\x21\x34\x45\x1b\x2f\xd6\x35\x15\x6a\x61\x82\xe7\x1b\xd6\x10\xde\xad\x5a\x4e\x4a\x8a\xa6\x1a\xbe\xb9\x2c\xce\x0b\x5c\x8c\x0b\x84\x46\x42\x1b\xa6\x61\x2c\x54\x0d\xa4\x05\x2c\x1b\xa1\xfd\xeb\x23\xdc\x72\xc3\xe2\xc5\xd6\xfb\x87\xdf\x38\x9d\xfd\x79\x43\xde\x6d\xde\x3f\x6e\x99\xa8\x29\x23\xfc\xf7\xe4\x46\xe9\xea\x6d\xfa\xce\x2b\x08\x10\xb8\xaf\x40\x4b\xca\xe9\xff\x41\xf7\xd1\xc8\x24\xdf\x9b\x4c\x4a\x51\xf1\xc5\xc9\xd2\xa5\x2f\x71\x0a\x13\x0d\xf6\x6c\x9d\x62\x04\xf2\x7a\xf9\x18\x96\x0c\x60\x0e\xba\x1e\xf1\x4a\xaf\xce\x2d\x6d\xe6\xc1\xaa\xd0\xa6\x40\x3b\xe7\xe8\x47\xea\xd5\xa5\xb5\xf2\x07\xb1\x8a\x7a\x6d\x44\xef\xda\xf0\x05\x5d\x06\x58\x95\x54\x4e\x26\xf7\xba\xf9\x7b\x72\xf3\x29\x9a\x53\x4b\x53\x4b\x0b\x69\xff\xa8\x5c\xc8\x5e\x2d\xd1\xde\x5e\x79\x56\x3b\x23\xe1\x00\x38\x4c\x42\x5c\xde\x71\xa8\x0a\xfa\xdd\x64\x28\x5e\x74\xb5\x4f\x33\xd3\xa9\x2a\xb9\x85\x6d\x3a\xb7\x99\x0f\xe4\x46\x45\xd8\xed\x50\xf3\xe6\xb2\xee\x9e\x50\x2e\x6e\x1e\x79\x84\x3f\x99\x1c\x25\xdf\xc1\x46\x9d\x1f\x0d\x7c\xb5\x0b\xd7\x3a\xab\x63\x2a\xde\xad\xeb\xd5\x87\x62\xe4\xdb\xad\x6c\x2b\xa7\xa2\x2a\xde\x73\x42\x58\x31\xdc\xb9\x12\xea\xd9\x00\xaa\xf8\x0e\xb7\xef\x00\xc1\x7c\xc0\xe4\xef\x70\xfa\x78\xb8\x7a\xd8\x9c\x65\xb9\x86\x96\x52\x8a\xdb\xbb\xa6\xdc\xad\xa9\x97\x67\x6c\xc4\x33\xd9\x35\x8d\x13\x9f\xaf\x04\x28\x29\x38\xa1\x1a\x3e\x16\xa1\x9d\x96\x78\xea\xa6\x79\xad\x06\xc6\x21\x19\x6f\x2b\x49\x46\x05\x77\xb9\xcf\x35\xd2\x99\xce\xdd\x10\x94\xde\x79\x79\x2c\xbc\x2f\x32\x64\xe7\x9d\xb3\x0a\xf2\x7e\x27\x07\x0e\x52\x66\xf5\x0a\x13\x65\x76\xed\xaa\x06\x93\x29\x84\x53\x57\x54\x60\x32\x7d\x72\x56\xb5\xf2\xff\x77\x86\x27\xc9\x62\x58\xc6\x56\x92\x42\x25\x1e\xf1\x93\x41\x95\xac\x22\xb6\x00\x9a\x4b\x76\x16\xf3\x8a\x20\x9c\x24\x8e\x82\x0c\x4b\xd5\x59\xc9\x91\x99\xea\x5b\x48\xbd\xc2\x21\xe5\x9d\x53\x61\xcc\x8f\x66\x36\x4a\xd5\xa0\x40\x7c\xa0\xac\x99\x17\xb6\xb3\x85\x96\x31\x35\x47\x35\x96\x4f\x3e\x90\x1b\xe5\x13\x18\xde\x0b\x16\xfe\xe4\x36\x48\xe1\xe3\xef\xea\x18\x53\xcb\xaa\x9e\x0a\xb9\x68\xf1\x5b\x72\xf5\x8e\x34\x0d\x69\x0a\x97\x09\xd7\x13\xec\x63\xf4\x1f\x95\x15\x4e\xfe\xa7\x90\x43\x76\xb8\x0b\xba\x31\x1c\xa9\x33\xed\x88\x00\xba\x76\x42\x16\xa0\x0f\x7c\x49\xc3\x3b\xe5\x52\x08\x0e\x9a\x90\x27\x4f\x72\xb2\xd1\xaa\xa7\xeb\x0b\xbb\x95\x60\x62\x16\x18\x83\x51\xee\x76\x97\x2e\xaf\x2c\x4a\x40\x09\x6d\x20\x2f\xd4\xf2\x12\x17\x72\x9c\x59\x68\xb5\xb0\x26\x6f\xb1\x5e\xd6\xef\xea\x6e\xac\x7e\x7f\xe9\xa2\xfe\xe3\x56\xc6\xc8\xcd\x3f\x79\x5d\x14\x4e\xf8\xb7\x9a\x87\x06\xe5\x46\x55\xcb\x2d\x6a\x3c\xe5\x2a\x88\x86\x97\x17\xe3\xde\x55\x3b\x0d\x17\x6d\xae\x17\x2d\x5a\x17\xda\xd9\xa3\xd1\xdf\x73\xe2\xe0\xc9\xee\xb5\xd0\xe5\x50\x16\xdc\x6c\x42\x1a\xb8\xe9\xb9\x63\xd5\xb6\x5b\xf3\x8c\xb2\x67\x6b\xfa\xfe\x52\x3c\xca\xbc\x6b\x6a\x51\xef\x4a\x86\x09\x02\x5c\x1c\x57\x06\xee\xd0\x92\xa0\x1e\xe9\xa4\x30\x8f\xdd\x04\x41\x52\x37\x0b\xda\x74\x1a\xfe\xd4\x1a\x71\x50\x38\x3b\x8d\xf8\x3c\x2c\xb4\xd3\xae\x22\x20\xe9\x7c\x11\xe1\xb8\x6b\x49\x69\x1a\x02\x32\xd0\x7c\x3d\x9c\xdd\xd5\x0b\x4c\xa6\xda\xc3\x4c\x3d\xf8\x0e\x93\xe9\x0f\xac\xde\x88\xcb\x96\xd3\xbf\x13\xfd\xf4\x6f\x98\x4c\x9f\xb5\xfc\x1d\xe0\x1a\xab\x47\x3f\x62\x32\x7d\xa5\xe1\x1a\xd4\x93\x3f\x62\x32\x7d\xdc\xb2\x8b\x35\xd5\xe8\x88\xd5\x9f\x24\x89\xc1\xd5\xa3\x7e\xff\x16\x93\xe9\x5b\x7a\x45\xda\x8d\x2e\xf0\xad\xec\xcf\xbb\x96\xeb\x9f\x3f\x60\x32\x25\x70\xa7\x7c\x57\x77\x97\x6f\xdb\x3e\x44\x5b\x27\x3b\x19\x6d\xe5\x1b\x15\x44\x0c\x2a\x62\x1f\x1f\x8f\x64\x38\x75\xe6\x74\x9a\xe6\xd2\xbf\xaa\x3f\x10\xed\x4d\xb2\x60\x4b\x94\x43\xe9\xd7\x37\x74\xa1\x67\x6b\x6c\xe7\xb8\xc0\x75\x55\xdc\x97\x14\x74\xdf\x91\xdd\xfd\xe2\x98\x8d\x58\x55\x55\x4f\x26\x93\xd2\xfb\xea\x49\xbb\x82\x45\x77\x1f\xc9\xb3\x5e\x73\xf2\x82\x8a\x35\x99\xb7\x52\xdc\xa9\xe9\x7a\x2e\xf9\x51\xac\x74\xa7\xf3\xdb\xeb\x16\x96\x7a\x5e\xef\x54\xea\x19\x80\xbe\x56\x73\x05\x1d\x7f\xdb\xca\x29\xcb\xcc\xd5\xed\x6e\x68\xae\x48\xf6\xd2\x07\x6c\x09\xd5\xb2\x2c\xa2\xfe\x9a\xea\x2e\x38\x61\x21\x7c\xae\x45\x83\xbf\xa2\x11\x3b\x65\x15\x5b\x7c\xb3\x9c\x03\x8a\x70\x52\xae\x23\x35\x5f\x5d\x96\xcf\xc1\x78\x5e\x3d\xd1\x2e\x96\x0b\xb6\x04\xa0\xcb\xed\x76\xb1\x04\x74\x49\xcd\x3d\x4d\xd5\x6c\x6c\xb7\x64\x0a\xf3\x83\xdc\xf0\xad\x43\x82\x4b\x41\x71\xa6\xd2\x7c\xbd\xfe\xc4\x08\xaf\x1a\x79\xa8\x81\xa4\xf2\x5d\xed\xce\xa3\xd7\xfc\xfb\x28\x27\x6f\x93\x00\x84\xef\x15\xff\x2e\xeb\xce\xe4\xdc\x33\x09\x7c\x74\xb1\x7c\x36\x65\xaf\xbc\xec\xf9\xaa\x25\xa0\x11\xaf\xbe\x93\x5d\xbc\xae\x79\x47\xbe\x27\xdd\x75\xcb\x3a\xf2\x1d\xa9\xa5\xdc\x97\x59\xc9\x5c\xfe\x4b\xc8\x26\x62\x8d\x01\x23\x2f\x07\x05\x40\x36\x8b\xb2\x13\x46\x47\xcf\x02\xd8\x72\x53\x92\x56\x6c\xc1\x97\xb8\xad\x66\xb8\xae\x8e\x4e\x1e\xb4\x0f\xa9\x29\xd7\x1e\x1f\x23\x7a\x51\xfe\xc7\xff\x05\x54\xf3\xd5\x65\xcd\x1f\xb7\x0d\x79\x24\x00\x41\xb1\xae\x8e\x66\xa3\x77\x9c\xd4\x1f\x76\xb2\x0f\x72\xa1\x6b\x13\x09\x44\xa7\xdd\xe6\x9d\xba\xc3\xcb\x19\xc4\x5d\x70\x7a\x55\x22\xbc\x09\xde\xb4\xc7\x27\xd8\xb4\x65\x8a\x8c\x36\x40\x0a\xdd\xb2\xda\x78\x32\xa4\x9c\x31\xda\x3d\x65\xf5\xbb\xb5\x9f\xad\x45\x3b\x4a\x9b\xe0\x14\x03\x35\xf7\xec\xe9\xa3\xb7\x3f\x7c\xff\xf4\x0c\xb9\x6f\xf4\xb1\x4b\x82\x4c\x53\x64\xfa\x7d\xdb\x2a\x7f\xce\xea\x33\x1c\x83\xde\x51\x5a\x7d\x90\x0b\xa3\x7d\xf6\xd5\x31\x54\xbb\x07\x6a\x25\xaa\x6e\x64\x9f\xc8\x7b\x5a\x15\xbb\x94\x15\x7b\x30\xd4\x3f\x12\x77\xe6\x66\x01\xd2\xff\x28\x0b\xb8\xef\x19\x09\x2b\x30\x60\x89\xbf\x55\xcf\x1d\x71\x55\x7f\x80\xef\xae\xab\x56\xfd\xff\x23\x15\x97\x4f\xd4\x35\x52\x5d\x4b\x36\x5c\x4a\xf2\xba\xe1\x6a\x23\x6f\xfb\x86\x5e\x5c\xa8\x46\x44\x5c\x99\x31\x9f\x9a\xd6\x5e\xf4\x15\xa8\x9e\x10\x8f\x6f\xf0\xc7\xf1\x37\xd2\x9b\xd5\xb4\x38\x3f\x27\x52\xba\xdc\xac\x49\x81\x6f\x21\x2f\xaa\x4a\x71\x87\xb0\x2a\xab\x58\x5f\x7e\x4f\x9d\xa2\x06\x4b\x70\x51\x90\xcf\xd7\x2d\x17\x5d\xb1\x0c\xd0\x82\x8a\x4d\x47\xc6\x92\x8a\x56\xa2\x18\xdd\xb5\x4d\x39\x0f\x7a\x96\x14\xbd\xe8\x0a\x8c\x9a\x2b\xb1\xd8\xcf\x9d\xe9\xdb\x87\xa1\x83\x3b\xdc\xc4\x07\xc1\x0f\x15\xc0\xe8\xfe\xf4\x0b\x66\xb0\xf6\xd4\x0b\x2b\x10\xf4\xc1\x74\xd9\x02\xa0\x31\x09\x70\x11\xa1\x02\xdf\xac\xa1\x9e\x04\x98\x7d\xf0\x24\x87\xf7\x22\xd9\x32\x1b\x04\xae\xfa\x98\x07\xb9\xc8\x76\x6c\x21\x96\x3b\x9c\x62\xc7\x65\xcb\x1e\x9d\x84\x45\xfb\xd4\xf8\x47\xc6\x8a\x68\x8a\xe7\x31\xe1\xf2\xdf\xce\xfa\x3e\xea\x6d\x6d\xb6\xdb\x43\x80\xdd\x7d\x75\xbf\xfa\x84\x88\xfd\x72\xf7\xae\x39\xfd\x58\x0b\x12\x90\x27\x70\xcd\x3f\x89\x40\x7b\x3f\xf0\x39\xb7\x02\xdf\xba\x0c\xc4\x72\x2d\x7b\xb2\xc8\x06\xec\xde\x6e\xa8\x76\x9f\x0d\x3c\xb8\x76\xff\xa3\xc1\xda\x13\x9e\xf2\xe0\x26\x92\x2f\x07\xdb\x09\xb9\xd4\x83\x1b\x09\x3f\x1b\x6c\x21\x60\x7a\x0f\x6e\x20\xf8\x6a\xb0\xfe\x80\x85\x3e\xb8\xfe\xe0\xab\xc1\xfa\x3d\x86\xfc\xe0\xda\xbd\x6f\x06\xeb\xf6\x99\xfb\x83\x2b\xf7\x3f\x1a\xac\xdd\x49\x0a\x87\x53\xbf\xfd\x64\xb0\xe6\x44\xe8\x38\xb8\x81\xe4\xcb\x03\xda\xf1\x18\xf6\x3b\xb6\xe3\x7d\xb9\xff\xf4\x72\xe0\xbd\x3d\xe7\x97\x2d\xc9\x49\x27\xec\x2b\xca\x2e\xd6\x64\x25\x5a\x1e\x1d\x6b\x52\xea\xfd\x49\x07\x9b\x76\xf3\xb5\xc2\xee\xe0\x95\xeb\x3a\x5f\xff\xb5\xfe\xac\x23\xa0\x7b\xe2\xfe\xf6\xba\x9c\x8d\xb8\x49\x4d\x2d\x39\x7d\x80\x2e\xf0\x7e\x57\xbe\x57\xf5\xfd\x8f\x4c\xb2\x8b\xf4\x58\x76\xa0\x30\xda\x44\x3e\x7d\x47\x2e\x5a\x4e\xce\x08\x6b\x9c\x43\xb4\x7b\x56\x85\xde\xfc\x1d\x11\xfa\x9a\x55\xdc\x7c\x59\x3c\x5a\xad\xc8\xb5\x9c\xe3\xfe\xa6\x30\x9d\x4c\x28\x18\xb0\xf8\xae\xe7\xc6\x3e\xc9\xc3\xb6\xf8\x09\x26\x60\x2e\x9c\xb5\xd4\xcf\xb8\x6b\x40\x19\x15\x80\x48\x08\xbf\xfc\xd7\xfa\x73\x49\x71\xf1\xdb\xa7\x6f\x0b\x9d\x16\xe1\x56\x07\x61\xde\xd2\x66\xce\xb4\x1d\x12\x17\xa0\x03\x1e\xb6\x45\x8a\xd0\xbc\xd5\xd4\xdd\x25\xe1\x81\x31\xb2\x9c\x61\xe6\xcc\x91\xc8\x0b\x52\x1b\x0c\xae\xbf\xdd\x8d\x48\xe4\xb1\x2e\xc2\x50\x32\xfd\xea\x39\x13\xb0\x45\x4a\x0e\x73\x73\xab\x03\x51\x9e\x37\x8e\x0c\x07\x27\x0a\xd2\x4d\xe0\xd0\x61\x24\x3f\x5f\x6f\x1e\xbd\x7d\xfc\x9d\x99\x31\x0e\x92\xf9\xc8\xf1\x97\x7c\xcf\x06\x55\xdb\x6e\x78\x73\x1e\xc4\x71\x7c\xad\xad\x99\x86\x2b\x63\x9a\xee\x57\x16\x6a\x12\x71\x76\xff\xaa\xb1\x5d\xd4\x9d\x78\xd7\xb6\x22\xc6\x0b\x4f\x4f\x38\x2b\x43\x83\xe8\xae\xbc\x86\x7d\xaf\xd5\x8f\x74\x45\xe6\xa6\xba\x42\x1e\x7d\x5d\xcb\x05\xf8\x6a\xbc\xa9\x79\x7d\x95\xb3\xc9\x85\x8a\x20\xcc\x2c\x52\x1e\xd8\x34\x1f\x7e\x63\x01\x33\x47\x4e\x1f\x74\xbb\x83\x21\xcb\xca\x4b\x24\xc5\xe2\x07\xed\x43\x06\xa2\x30\x5f\xd0\x45\xbb\x5c\x56\x44\xfd\x6f\x8f\x81\xe1\xcd\x9a\xa5\xe8\x3b\x6d\x57\x43\x80\xc6\xd7\x07\x4a\x2b\x5f\x2f\xbe\x77\x17\xb7\xbb\x1e\x14\x83\x7c\x27\x4c\xb5\x41\x5b\x49\xcf\x00\xb2\x05\x5b\xaf\x35\x3f\x4c\xa2\xa4\x0a\x53\xa0\x32\x21\xb2\xd0\xa7\x36\xe8\x13\xdd\xed\x41\x9c\xd9\xd3\xb4\x8f\x2a\x12\x07\x89\x44\x44\xe1\x7c\xa0\xa2\x17\x25\x43\x7e\x07\x79\xd0\x41\xb6\x3b\x08\xec\xe3\xf0\x6e\x9a\x58\xe5\x9f\xad\xb3\xff\xc0\x6b\x81\x36\xdd\x9c\xed\x76\x7b\xe1\xba\x74\xbb\xf2\x2c\xb5\xe0\x24\x3e\x4a\x32\x8b\x3d\xd7\x34\x68\x86\xed\x64\x8b\x29\x16\x11\xea\x95\x3f\x0d\x4c\xf5\xeb\x00\xc0\xa9\xaf\xd9\x15\x0f\xba\x29\xdf\x99\xde\xcc\x05\xfe\x45\x06\xa0\xa0\xfd\x57\xd9\xfe\xed\xc7\x70\xe8\x06\xe9\x00\x75\x0e\xbd\x06\xc3\xed\xf9\xe6\xf5\xd9\x5b\xff\x1e\xfb\x19\xef\x63\x73\x01\x33\xbd\x1e\xbd\x03\xa5\x87\x5c\xc2\xb2\xef\x3f\x84\x5d\xef\xc9\x59\xe0\x77\x5d\xb6\x9d\xd6\xd5\xdf\x15\x2e\xbb\x12\xf8\x81\x22\x5c\x3c\x79\xfa\xe2\xe9\xdb\xa7\x90\xf1\x5c\xde\xbb\xd7\xcf\x9f\x3c\xe3\xed\x55\x8f\x3b\x27\xe6\x78\x68\x17\x02\x71\x0a\xa4\x95\xb6\xe0\x5b\xd9\x56\x74\x61\xf4\xa3\xf7\x4e\x96\x90\x1b\xcc\xf5\xba\x21\x89\xbb\x66\x8b\xaa\xaa\xaa\x4f\x83\xaf\xaa\xa2\x98\x97\xac\x6a\x31\xaf\x8a\x53\xda\x54\xc5\x71\x8d\x4b\x67\xb5\x3a\x32\x56\x2b\xcd\xac\xb9\x34\x72\x84\x35\xdd\x8f\x54\x5c\x9e\xaa\x4c\x80\x36\x3d\x20\xb7\xb9\x91\xef\xd9\x94\xb4\x73\x66\x8b\x97\x1c\x80\x52\xc2\x3e\xb4\xa1\x3e\xd8\xbc\xa9\x6d\x11\x84\x22\x5f\xb7\xab\xfa\xf3\x0f\xdf\xbf\x78\x01\xaf\xe7\xdf\xcc\xfe\xfd\xff\x1e\xa8\x9c\x72\x81\x84\x2c\x52\x89\x1e\x96\x4b\x45\x2d\x91\xa1\x4a\xbf\x17\x23\x91\xcd\xf3\xa7\x94\xed\x74\x1a\x51\x80\x0a\x6b\xe4\x1a\xab\x52\x59\x32\x84\xf1\x03\xa9\x3d\xfb\x55\xc6\x19\x04\xc8\x34\xf8\x89\xad\x7f\xc8\x4c\x21\x74\xa4\x8d\x2d\x66\x4b\x84\xbb\x6a\xb1\x70\x8c\x49\xa6\xc3\x2e\x25\x64\xea\xec\x0b\x70\x07\x7a\x45\x8e\xf9\xc8\x2c\xce\x71\x7b\x2c\x7e\x53\x31\xb0\x62\xcd\xb0\x0e\xc4\x58\x2c\x11\xc2\xed\xb1\x8d\x68\xed\xec\x4a\x8e\xba\x05\x5d\x7a\xbe\x4c\xdd\x0e\x01\x8e\x54\x31\xa1\x4d\xf7\xbf\xff\xe3\xdb\xff\xfd\x1f\x4f\xaa\xc2\x2a\xfd\x07\x1c\x4e\x6a\x57\xc9\x0e\x30\xbb\x2f\x01\x6d\xca\x58\x49\xc2\x7d\xcd\xb5\xef\x1d\xac\x1a\xed\xce\x36\xab\x15\xe9\x3a\xf5\x0a\xb9\x98\x34\x57\xc2\xa4\x67\x0b\x4b\x28\xba\xf1\x55\x5a\x25\xd7\x82\x37\xf2\x23\xbe\xac\xdd\x09\xca\x98\x2e\xe9\xca\xe4\x3e\x55\x4e\x6f\x4a\xe3\xdb\x3c\x01\xfb\x15\x69\x5e\x92\xae\xab\xdf\x13\xdb\xe1\x91\x8e\x1c\x20\x2a\x72\x60\xfc\xef\xb3\x93\x79\xd0\x91\x44\xf1\x55\xb6\xb8\x56\x3e\xe9\xe3\x7f\x9f\xfd\x5b\x58\x38\x54\x60\x05\x25\xff\x3d\x2c\x19\x68\xa2\x82\x82\xff\x2f\x2c\x18\xa8\x94\x54\x41\xe3\xd6\x4e\x2f\x4a\xf2\x9b\xea\x3f\x66\xb3\x70\xea\x3c\x35\x11\x94\xdf\x05\x6f\x7d\x4d\xa4\x7a\x8d\xed\x5a\xf5\x79\xff\x92\xdf\x54\xdf\xcc\x66\x93\x09\x79\xf8\x6f\xb3\xd9\x76\xfb\x6f\xb3\x7f\xaf\xaa\x8a\xc8\x0f\x73\xc8\x29\xde\x87\xff\xfe\xcd\x37\xaa\xa4\x3c\xd9\xc3\x42\xd4\x82\x06\xca\xbd\xde\x55\xb7\x1b\xbe\x9e\x13\x7c\x45\xc4\x65\xdb\xcc\xc5\x0e\x6f\xaa\x7a\xea\x69\x1d\xf4\x47\x23\x6f\x30\xbc\x0c\xcf\x9d\xcd\xb4\x53\xe3\xa8\x82\x7d\xab\x5b\xda\xc4\x49\x70\x6d\x0f\x5a\x2f\xc0\x3a\x5f\xa6\xb5\xa8\x34\xfc\xe6\xb6\xad\xc8\x34\xdc\x07\x92\xdf\x16\xb5\xd8\x74\x98\x4e\x2f\x95\xe5\x50\xc1\xcc\x2a\x20\xe7\xda\x73\x46\xd3\xa0\xdc\x6e\x55\x00\xb3\x9b\x76\xfe\xb2\x9c\xda\x62\x2d\x9a\xb7\x2a\xb1\x18\x95\x2b\x05\xa8\x6f\x14\x77\x26\xea\x86\x6f\xb4\x4e\x00\xb8\x11\x82\x37\x92\x65\x50\x7b\xc5\x1f\x2c\xef\x99\x02\xee\x4f\x81\x40\xa3\x5a\x7d\xfa\xf6\x92\xb7\x9f\x58\xc5\x75\x0a\x38\x6d\x19\x0d\x77\x99\x98\x72\xfd\xe7\x5b\xf2\x59\xe4\x67\x8f\x27\xb3\x47\x2f\x4a\xea\xb7\xe1\xe7\x76\x84\xfa\x51\x5b\x05\x05\x2c\xd2\x75\x21\x94\x7a\xb2\x00\x2b\xa8\x20\x9f\xc1\x64\xb8\xe9\x50\xab\xef\x19\x5f\x7d\xe9\xbe\xaa\xdf\xb5\x3c\xf9\x46\x25\x55\x37\x4b\x66\x6b\x70\x4a\x4a\xf5\xfd\x1d\x96\x7a\xbb\x0d\x7a\x8d\xb9\xb7\xf2\x6d\x55\xdb\xa5\x96\x4b\xd9\xd9\xa5\x24\xfd\x4b\x29\x60\x29\xeb\xe9\x39\x70\x44\xf2\x6f\x00\xdb\xfb\xfe\xe9\xd9\x5b\x03\xf4\x27\xdf\x8c\x01\x52\x65\x2c\xda\x71\x71\x0c\x11\xea\xf2\xa1\x96\x7d\x03\x49\x5c\xb5\xf1\x2b\xc5\x60\x41\x49\xd6\x57\x54\x4e\xdb\x86\x29\x9d\x45\xe3\x1c\x6a\xa0\xbc\x8f\xf8\xa2\xb0\x5e\xe0\xf1\xb8\x69\x89\x42\x83\xef\x08\xb9\xd2\x80\xf2\xba\x86\x31\x65\xe3\x9b\x76\xc3\xc7\xf5\xf5\xf5\x74\xfc\x84\x36\xf2\xd7\xb8\xfd\x48\x38\xa7\x0d\x19\x53\x31\xfe\x48\xeb\xf1\x7f\xd7\x4d\xf3\x9a\xbf\xd6\x4f\xcf\x6a\xd6\xbc\x6b\x3f\xff\x76\xdd\xbe\xab\xd7\xdd\x7f\x1b\x4c\x7a\xa3\x77\x18\x2b\x3f\xca\xd3\x02\x8d\x98\x1b\x50\x74\xc2\x98\x31\xbb\x30\x03\xf3\xf9\x94\x76\xcf\xea\x4e\x7c\x0b\x1a\x0c\x0d\x31\xee\xcf\x46\x49\x0c\x3c\x75\xf8\x70\x77\x80\x0e\x14\x7c\x19\x47\x1c\xa2\xfe\x2a\x81\x15\x9c\xac\xd2\x6e\x82\x7a\x11\x6b\x95\xe7\x67\xed\x4d\xad\x0a\x4c\x26\x20\xb6\x1c\x55\x95\x18\xd6\x8a\xca\x3a\x1e\x8c\x57\x97\x72\x3f\x8a\x6a\x23\x2e\xee\xfd\xdf\x42\xd7\x51\xfd\xee\xec\xf5\xab\xa9\x62\xef\xe8\xc5\x4d\xc9\x35\x1e\x8b\xe6\x0d\x92\x60\x0c\x45\xba\x99\x38\x68\x0a\x5d\xe8\x51\xaa\xfa\xba\x1c\xba\x27\xe7\x72\xa2\x7e\x15\x98\x2e\xc4\x52\xb1\x12\x5c\xca\x79\x95\x9b\x66\x15\xd0\x02\xf0\x11\xfa\x67\x4c\x94\x07\x2d\x67\xa8\xfb\xcc\x14\xe6\xaa\x47\x8a\xc5\x5e\xb5\xeb\x02\xe1\x34\x52\x25\x29\xad\x42\x57\xe4\xf1\x15\x45\xa0\xe8\x8b\xb7\x90\xfb\x50\xa5\xf5\xbe\xff\x5f\x97\x42\x5c\x77\x51\x40\x0a\x92\x87\x89\xe1\x08\x8f\x8b\xfb\xf7\x21\x16\x45\x1f\x12\xdc\x64\xde\xf1\xf6\xd5\x9f\xda\xcd\xb8\xe6\x64\xbc\xe9\x28\x7b\x3f\x76\xd1\x92\x2a\x13\x0c\x6b\xc7\xb2\x4b\xe9\x1e\xd3\xc1\x22\xe3\xb7\x97\xb4\x1b\x7f\xa2\xeb\xf5\xb8\x16\x82\x5c\x5d\x0b\xb9\x29\x37\xf2\x50\xbb\x24\xea\xd3\xf6\x02\xfe\x36\x53\x37\xd6\x43\xc5\xe3\x4f\x97\x74\x75\x39\xa6\x6a\x3f\xaf\x5a\x76\x41\xdf\x6f\x38\x51\x10\x4e\xf2\x0b\x8d\xc0\xe5\xd5\x42\x3b\xf3\xf5\x74\xfc\x66\x4d\x24\x17\xd3\x11\x61\x9b\xfa\xf1\x92\x0a\xb2\xa6\x9d\x18\x5f\x6b\x15\x28\xd4\x65\xfa\x4c\xd8\x47\xca\x5b\x76\x45\x98\x98\xfe\xb5\x9b\xba\x1e\x29\x68\xb5\x71\x71\xcc\xa7\x57\x8a\x69\x73\xce\x28\x64\x87\xd3\x4b\x29\xa3\x7b\x24\x70\x61\x0b\xb5\x39\xe0\x0b\xb9\x91\xd5\xb4\x33\x74\xeb\xf9\xb6\xe4\xb9\xc9\x3e\xbe\x86\x4d\x26\x89\x4f\x26\xc0\x93\x28\x3e\xf5\xd4\xfc\x31\x5f\xdc\xaa\xdb\x62\x5e\x14\xc7\x04\x2b\xd7\xb2\xe2\xed\x25\x19\xbf\xab\x57\x1f\x08\x6b\xc6\xea\x1a\x6d\x48\xa3\x56\xb6\x66\x63\xa2\x4c\x6b\xda\xfd\xac\x28\x8e\xd9\x6e\xb9\xc3\x7d\x8c\x6c\xaf\xa2\x45\x7b\x76\xb7\x95\x58\x14\x8f\xd5\x81\x72\x4f\x9e\x28\xc5\x72\xbb\x2d\x00\x37\x6d\x1c\x3c\xb6\xaa\x8b\xaa\x90\xe7\xd3\xfd\x4b\x71\xb5\x96\x37\x67\x2b\x87\x65\xc0\x50\xff\x63\x76\x5a\x2c\x5e\x5f\x51\x21\x48\x33\x56\x22\xd9\xcd\xf8\xbb\xb7\x2f\x5f\x2c\x8b\x39\xc3\x0b\x2f\xac\x77\xac\xf7\xfe\xb8\x38\x56\xc9\xfc\x2f\xdb\xe6\xb8\x80\xd5\xdc\xf0\x35\x3a\x2e\xc6\xaa\x3d\xd2\x8c\x6b\x79\x7b\xe1\x42\xfb\xb6\x8c\xcb\xe2\xb8\x3d\x2e\x50\x81\xe9\x52\x0b\xa3\x7f\x61\x52\x1a\x75\xaa\xd1\xcc\x42\xdf\xee\xe4\xee\x23\x09\xec\xd5\x08\xbc\xda\xcc\xaf\x8a\xb9\xdc\xbe\xbb\x9d\x97\x4a\xbd\xf5\xc2\x32\xf4\x82\x11\x73\xcf\x3b\xc6\xc1\x3e\x93\x3c\x0f\xd6\x47\xe8\x5c\xd9\x51\x32\xce\x63\xa8\x04\x2f\xb8\x47\xeb\x75\xf4\xa2\x44\x68\xb7\x73\x06\x0a\xda\x63\xa0\x10\x82\xff\xd3\x38\x3d\x58\xdf\x9b\x03\x0d\xa5\xb2\xf3\xbd\xb6\x51\xd0\x62\xec\x1f\x5a\xf0\x14\xf0\xa8\xee\xad\x4c\x48\x54\xf8\x92\x32\x2a\x94\x92\xeb\x1e\x04\x38\xdd\xd3\xa6\x8a\xb0\x94\xe0\x35\xeb\x2e\x5a\x7e\xd5\xb9\x3f\x7b\x4b\xb0\x8d\x7c\xdc\xfb\xba\x49\x3a\xe8\xbd\xd4\x8e\xf3\x7d\xaf\xdf\xb5\xad\x0a\xb0\xdb\x6b\x68\xca\x18\x91\xf7\x5b\x8e\xf5\x74\x59\xa8\x93\x9e\xe7\x7d\x95\xc6\x25\xfa\xdf\x0e\xb5\xda\xdd\x37\x51\x14\xf7\x14\x86\x48\x77\x0f\xf2\x6e\x47\x03\x00\x12\xdf\x6b\xf1\x56\x48\xeb\xb8\xc6\x1d\xde\xe0\x35\x5e\xe1\x0b\x7c\x89\xaf\x71\x83\xaf\xf0\x0d\xfe\x18\xd1\x3c\xbd\x28\xef\x4c\xf6\x8a\x01\xd0\x20\x04\x26\xb8\xee\xbf\x4e\xfe\x32\x2d\x17\xb3\x7b\xff\x6f\xb9\x3d\x59\xcc\xee\x7d\xb3\x44\x7f\x99\xde\x47\x7d\xa0\x87\xde\xc9\x27\x2f\xc3\xff\x8f\xbd\xbf\xfb\x92\xe4\xb8\x0e\x03\xf1\xf7\xfe\x2b\xaa\xf3\x47\x17\x32\xdc\x51\x35\x55\x33\x03\x82\xaa\x9e\x44\xff\x06\x5f\xc2\x98\x00\x06\x07\x33\x14\x4d\x15\x8a\x73\xb2\xab\xa2\xba\x83\x93\x15\x59\x8c\x8c\xec\x99\x46\x57\x9d\x23\xcb\x34\x4d\xcb\xb2\x56\x82\xbc\x96\x8f\x0f\xc9\xc3\xe5\x6a\x65\x5a\xab\x95\x45\x1f\xad\x16\x94\x64\xf9\x81\x10\x08\xff\x19\xc0\x23\x5f\xf6\x5f\xd8\x13\xdf\x11\x99\x91\x55\xd9\x3d\xdd\x03\x80\x9c\x79\x98\x8e\x8a\x8c\xcf\x1b\x37\x6e\xdc\xb8\x71\x3f\x30\x45\x45\x27\x65\x1d\x7e\x1c\x32\x75\x7e\x0f\xfb\xc3\x1b\xfd\x81\x8c\xa0\xc4\x99\xe0\xe3\xf4\x04\x75\xa2\x3d\xaf\xf3\xbd\xc8\x9c\xa1\xe5\xf2\x88\xa6\x33\x24\x4f\xc9\x13\x44\x0b\x41\xa8\xe6\xb2\x31\xc8\x8f\x57\x62\xca\xd8\xde\xfb\x11\xd8\x61\xfd\x57\xee\x29\x53\x20\x26\xff\x42\x91\xe5\x29\x52\x32\xef\xa7\x57\x40\x29\x56\x32\xff\xb7\x57\xc4\x6a\x4a\xb2\x5a\x96\x2c\x28\x15\x38\x99\xfc\x2b\xb3\xac\xa6\x27\xb3\x69\xf9\x49\x18\x3d\x9c\x68\x92\x28\xf3\x94\x5d\x13\x53\x09\x99\xe9\xeb\x87\x32\xff\xb7\x2c\x62\xcc\x29\x98\x49\xca\x0f\x5a\x0d\x33\xf3\xfb\xf1\x54\xf1\x7d\x55\x2d\xdd\xa7\xa3\x9a\xef\x6b\x5b\xc9\x02\x9e\x36\xbd\xaf\x4a\xa3\xba\xb0\xda\xf5\xae\x36\x8c\xfc\x58\x57\xf4\x0f\xa8\x5b\xc9\xa2\x15\xed\xff\xaa\xc6\x94\x2c\xe4\xdb\x03\x54\x94\x9e\x64\x11\xdf\x40\xa0\xa2\xb7\xa4\xa0\xe8\x58\x0c\x78\xaa\x47\xf2\x73\xdd\x40\x20\xa0\x85\xe3\x16\x75\xf5\xe3\x03\x8a\x34\xa6\x53\x45\x40\x92\x63\x7f\x91\x3c\x3d\x5a\xe6\xfd\x54\xc8\xe5\x28\xc1\x32\xf7\x97\xb7\xc8\x41\xdd\x5f\xb6\xe9\xab\xc2\x66\x07\xdf\x2b\x88\x1e\xd0\x12\x66\x81\x4c\x55\xd8\xde\xe0\x93\xb9\x3f\x43\xdf\x30\x88\xf9\xbf\x77\x4c\x6d\x07\x44\x0b\xbf\x01\xce\xe4\x3a\x5f\x67\xf5\xaf\xb7\xdf\xbe\xa3\x3b\x9f\x06\xbf\x3a\xd5\x97\x7e\x81\xfb\xfa\xfc\x4a\x70\x65\x61\x52\x86\xec\xc7\xd4\xff\x28\x1f\x34\xec\xe7\xc2\xff\xfc\x96\x38\x64\xed\xe7\xbc\x02\x11\x79\x50\xda\xef\x65\x85\x40\xa8\x23\x46\x3d\x48\x48\xc0\x9d\xfa\x65\xac\xf9\x23\xb3\x69\xf9\x49\x5b\xc8\x31\x9d\xd2\xeb\xe9\x68\x77\x33\xef\xa7\x2c\x20\x7d\x63\x1a\xeb\xec\x84\xf8\x3d\x3e\xb0\xdc\x88\xa0\xbd\x2a\x9a\x7f\x42\x4d\xb1\xf0\xf9\xc4\x2b\xc3\xa8\x6e\x4d\x51\xe3\xb9\x1e\x51\xcc\x64\x7a\x08\xf5\x05\x4d\xff\x96\x87\x1a\x0b\x18\x65\x78\x3a\xd7\xbc\xaf\x26\xde\xac\x89\x95\xba\x6a\x3d\x70\xb7\xcd\x18\x29\xad\x93\x03\x34\x42\x7d\xc3\xf5\xd5\x75\x51\x94\x3d\xfb\x3a\x3c\x19\xf1\xb2\xf7\x85\xe5\xa1\xc5\xd2\x35\x32\xd1\xd4\x77\x41\xf6\x39\x99\xa3\x63\xc0\xdb\x72\x96\xa6\xc6\x46\x95\x4d\x63\x3f\xda\xb2\x55\x55\x5e\x40\x6f\x27\x00\x3d\x97\x3f\xfe\x4c\x0c\x1c\x1c\xc7\xbc\x4a\xd4\x50\x31\x44\x90\x0a\x06\x0d\x3e\x64\x9d\x4b\x6c\x18\x3b\xda\x70\xe2\x4f\x67\xde\xbe\x13\xaf\xf0\x84\x82\x4a\xa4\xea\x83\xef\x7d\x16\xc9\x70\x33\x15\xca\xef\x78\xf5\x16\x04\x01\x22\xe1\x1b\xf1\x21\x3a\x15\x76\x1e\x8e\x41\x72\x83\x01\xa9\x35\x08\x4f\x92\x84\x28\xe7\x80\xc7\x69\x61\xce\x43\xd5\x91\x94\xfe\x0a\xd7\x33\xd1\x0c\x35\xd5\x7a\xc5\x7e\xa9\xd6\x93\xf2\x66\x39\x30\xd7\x3e\x54\xbb\xa0\xf7\xa6\xbe\x5a\x21\xc7\x29\x68\xb3\x73\x21\xad\x4d\xf1\x50\xfa\x09\x51\xaf\xa3\x66\xec\xb2\xf3\x7b\x4b\x34\x15\x7e\x25\x62\x0a\x40\x00\xcc\x26\x44\x88\x52\x90\x70\x67\x7f\xc7\xcc\xc0\x2a\xa5\x35\x43\x47\xbc\xbe\x3a\x8e\x07\x62\x2a\x44\xa7\x58\x1b\xa6\xc9\xce\x8f\x10\x7b\x53\x04\xf7\xfa\x2a\x3a\x8d\xc5\xd8\x55\x40\x70\xb0\x53\x08\x57\xff\x0f\xd1\xa9\x02\x69\x7d\x1d\xbb\xdd\x58\xb5\x53\xff\xa6\x1a\x23\xfd\x87\x98\xcc\xa0\x6b\xeb\x0f\x60\x7a\x20\xed\xda\x52\xa1\x5c\xaa\xa3\x0c\xf7\x97\x79\x76\xba\xc8\xe9\xf2\x18\x4f\x55\x97\xa6\xd6\xdb\xf6\x93\xf4\xdc\x25\xa0\x05\x46\xa2\x19\x61\xb8\x2e\x1e\x8b\x72\xed\x50\xd2\x54\xd4\x28\xea\x19\xf6\x43\x22\x3c\x8e\x35\x17\x6a\x8c\xa9\x62\xa1\x29\xa6\x67\x43\x0b\x6d\x80\x23\x6e\x03\x47\x7c\x11\x38\x52\x0e\x47\x3c\x49\xa8\x63\x18\x15\xd4\x6c\x92\xae\x2f\xf4\x34\x5f\xcb\x29\xc2\x47\x84\x8f\x54\x6a\xf3\xf0\x46\xc0\x93\x2e\x04\x56\x0b\x61\xb7\x4a\x93\x17\xaf\x4b\xdb\x28\x1d\x5d\xbb\x69\x97\x78\x1a\x7f\x9f\xcd\x1a\x09\xc0\x18\x3f\x10\x31\x85\x42\x69\x50\x18\xfc\xc9\xf7\xcd\x6d\xbb\xf8\xa0\x01\xa3\x1d\x87\x08\x86\x6e\x55\xe0\x70\x9b\x08\x6b\x5e\xdb\x56\x6d\x7b\xa8\x46\x6e\x17\x4e\x69\x1b\x9c\x75\x63\xb1\x4d\x47\x47\x95\xb2\x4a\xf8\x78\x0e\x3f\xb0\x03\x14\xb9\x97\x76\xd8\x98\x4e\x8c\xe3\x19\x0c\x1a\x82\x38\x9c\xe1\xd9\x48\x04\x6a\x91\xde\x15\xac\xde\x98\xd0\xc3\x6c\x84\xd3\xc6\x93\x6e\x03\x66\xd0\x36\x98\x41\x2f\x86\x19\xc6\x35\xa8\x7e\x56\x30\x8b\xe7\xac\xae\x58\x89\xc6\x02\x15\x8e\xc4\xb5\x79\xd6\xd0\x65\x92\x52\x59\x9f\x3e\xc2\xb5\xbd\xf5\x5f\x6a\x54\xd7\x94\x86\x37\x75\x6d\x9e\x95\x62\x02\x1d\xe7\x13\x58\x24\x69\x33\xa1\xd9\xd9\x46\x68\x52\xc8\x44\x18\xc2\x71\x3e\x49\x0a\x2d\xff\xc7\x6b\xd8\x54\x25\xf0\xa4\x82\xe7\xb1\xc3\xda\xca\x85\xc1\x64\x66\xc2\xb0\x8b\x25\xeb\x63\x72\x82\x68\x81\x84\xc7\x7e\x01\x7d\xcb\x91\xb8\x27\x60\x9e\xe0\x3e\x49\x17\x48\xeb\x28\x89\x02\x9b\x54\x38\x03\xab\x9b\x43\xac\x56\xd6\x65\x43\xc0\x4e\xda\xed\x4a\x05\xc9\x0e\x1d\xa7\x93\xf5\x5a\x04\xab\xd6\x53\xbc\x9d\x3d\x4a\x4f\xd5\x9e\x6c\x72\x5e\x9f\x32\x46\x2d\xbb\x62\x98\xaf\x6e\x37\x4a\x45\x6d\x3e\x79\xd6\xd7\x2c\xa5\x68\x3e\x4c\x40\x9a\x3a\x68\x18\x8f\xe3\xda\xbc\x61\x08\xab\x15\xe9\x76\x23\xc5\xc3\xca\x35\x30\x33\xf7\xc7\x71\x67\xdb\x18\x1a\x27\x19\x47\x78\xa6\xa6\x68\xda\x5e\xad\x22\x3c\xab\xe4\x81\x5a\x87\x3e\xc5\xbb\x58\xc7\xbd\x94\xcc\x7a\x1c\x93\x82\x43\x30\x5f\xeb\x63\x69\x3e\xc3\xce\x35\x90\xdd\x98\x89\xd7\x32\xa7\x5f\xbb\xd4\x40\xce\xb9\x89\xb7\x7d\x1a\xcb\xed\xa0\xfa\x1a\x3a\xd5\x9a\xfa\x96\x21\x02\x78\xb9\xc8\x83\x35\x1b\x37\xf9\x69\x9c\xac\x56\x6c\x8c\x26\x40\x44\xb1\x08\xdd\x34\x36\xaa\xf6\xdb\x40\x54\x28\x9d\x1e\x7b\xfb\xd5\xba\x3d\x81\x39\x38\x43\x1b\x6f\x09\x04\x70\x7c\xd0\x37\xde\x24\x49\x72\xb1\xd5\xbb\x5d\x5c\xbb\xff\x58\x9f\xbe\x44\xba\x20\xf3\xa9\x54\x73\x45\xd7\xa7\xaf\xac\xaa\xbc\xec\x35\xf4\xd0\x38\x6f\xab\x3b\x41\x60\x24\xe2\xfe\xf8\xde\x90\x84\x86\x52\x5f\xba\x58\x51\x34\x50\x1f\x15\x5e\x54\x20\x73\x14\xa4\xc9\x60\x3f\xb5\xee\x2f\x52\x7d\x14\x14\xb0\x4c\xf0\x38\x9d\x40\xad\x36\x62\x5f\xec\xcd\x12\x39\x00\xe7\xfc\x65\x09\xe0\x34\xc9\x44\xe7\x70\x9e\x64\x26\x14\x92\x0c\xb5\xa9\x7f\x25\x36\x29\xbc\x9e\xd8\x9f\x52\xf9\x75\x0a\xe0\x1c\xc4\x85\x53\x4c\xaa\x12\x2b\x23\xc7\x02\xce\xc1\x4e\x3e\x4e\x27\xc2\x29\xe2\xd4\xf0\x07\x53\x71\x26\xac\xd7\x7c\xec\xc7\x89\xb6\x03\xda\xb1\x4e\xfe\x1b\xe1\x05\x8f\xc5\x25\xa1\x69\xc5\x2e\x73\x29\xc4\x32\xe8\x73\xa8\x05\x44\x31\x10\x67\xb1\x80\xa8\x88\x1c\x78\x21\x88\x16\x00\x96\x20\xce\x9b\x20\x9a\xc3\x52\xaa\x2d\x65\x89\xb1\x76\x19\x15\x06\xb0\x85\x02\x6c\x2b\x50\x66\x02\x94\x1b\x27\xd6\xc4\x9f\xc9\x68\x50\x2c\x7c\x37\x11\x91\x2e\x24\x9f\xa6\x59\x00\x13\xad\x87\x3a\x2e\x27\xfd\x53\x9d\x02\x2f\x7c\x8f\x0c\x46\x2e\x14\x70\x43\xa2\xec\x0d\xce\x39\xc2\xcf\xb8\x75\x19\xa0\x7d\x53\x3d\xc7\x1b\x6f\xa3\x79\x23\x47\xb5\x27\x37\x70\xc4\x56\x60\x6e\xa4\x61\x76\x85\xb4\x6b\xa6\xd7\x51\xb6\x44\xb4\xa6\x99\x68\x94\x6e\x14\xb6\xf3\x25\xb8\x3b\x37\xd1\xc7\xe4\xdf\x2a\x3a\x6b\xdf\xf7\xb2\x4d\x5d\xd8\x5c\xe4\x1a\x02\x99\xd9\x50\x9e\x96\x4c\x79\xa1\xcd\xf8\x09\x36\xd8\x27\xb7\xbc\xcc\x7d\xe2\x84\xf9\x94\xd1\xcb\xc8\x64\x47\xfa\x55\xda\x38\x2a\x0a\xd6\x7a\xf4\xeb\xc0\xa0\xcc\x4e\xf1\x9c\x06\xe9\x81\x29\x06\xda\x16\x0b\x70\xd2\xf6\xa3\x64\xa9\x37\x0f\x27\x35\x0e\x65\x0b\xe3\x0b\xb9\xe0\x43\x34\x9b\x1c\x3b\xca\x58\x0f\x82\x71\xc6\x5e\x49\x59\x1a\x58\x47\xb3\x39\xa4\x96\xe4\xb1\x8e\x74\xc5\x99\xdd\xd7\x68\xbe\x50\x8a\x40\x82\x79\x57\x21\x22\x2b\x5d\xb8\x23\xad\x1f\xfe\xe2\x6a\xdf\xae\xdd\xa8\xa1\x40\x04\x77\x1d\xd6\xdc\x0d\x34\xe8\x44\x7d\xe0\xf0\xd9\x71\x3c\xe4\xc9\xc2\x0b\x5b\xd0\x37\x33\x0c\x71\xf9\x2e\x3d\x20\x10\x01\x81\x00\xdb\x63\x9b\x55\x96\xce\xdf\x33\xbc\x63\xa4\x3d\x59\x57\xe0\x16\x52\x6a\xd3\x21\xfc\x3d\x39\x6b\x53\xdb\xc4\x0d\x6c\xe6\xf8\x68\xaf\xb7\xed\x07\xd0\xdd\xe8\x16\xc0\xa0\x91\x3a\xf2\xac\x6f\xc0\xc6\xd9\x43\xea\xb8\x54\x73\x9c\x09\x17\xdd\xee\x26\x9f\xb0\x9a\xfe\xd4\x05\xb0\x95\x7b\x94\x13\x96\xcf\xb6\x3d\xc6\x13\x4e\xf9\xc7\x68\x52\xcd\x56\xcc\x93\x1a\x7f\xc3\xe9\xd2\x86\x82\x75\xbb\x71\x13\x0d\x0b\xed\x2b\x43\xad\xe0\x67\x46\xc4\x82\xc3\x72\x89\x59\x6d\x79\x1b\xa2\xdf\x6c\x5e\xe1\x4a\x70\x44\xb4\x81\xc5\x46\xd6\xee\x80\x84\xee\xce\xa8\xe1\xee\xec\x46\xb2\xaa\x74\x38\xce\x27\xc6\x5c\xa5\xf6\x65\x47\x60\x04\xe9\x07\xa6\x17\xa7\xe2\x69\xd2\xe1\xab\x2b\xce\x1a\xaa\xae\x24\x9b\x08\x96\xe4\x46\x74\x24\xd9\x7a\x81\x00\x81\x8d\x07\x90\xf5\x0b\x4c\x8e\xca\x2c\xa5\xc2\xc3\x43\x3c\x80\x34\xf0\x32\x0c\x64\x8c\xda\xa5\x69\x8c\x37\x6d\xbe\x36\xb5\xec\x78\x8e\x40\x1b\xa2\x1d\xfa\x7b\xd3\x37\xdc\xfa\x1a\x1f\xdd\x2b\x68\x9a\xa5\x14\xcd\xde\x4c\x97\x4b\x4c\x8e\x78\x2d\xa7\x0a\x80\xb5\xa5\x6f\xd9\x86\x57\xcb\x38\xac\xc5\x33\x29\xaf\x54\xab\xa1\x42\x1f\x4a\xc6\xd2\x7b\x61\xd2\x32\x66\x00\xed\x60\xbc\xaa\x4e\x10\x73\x51\xcc\xeb\xcf\x2b\xe9\xe1\xbb\xf4\x05\xea\x5b\xbd\x72\xaa\x68\x94\x1c\x78\x09\xe2\x41\x40\x5b\x98\xeb\x07\x2d\xeb\xd3\x35\x88\x47\x8d\x7e\x3f\xce\xf1\x20\xb6\xa9\x91\x26\x5f\x69\xee\xd1\xd4\x82\xdc\x13\xe7\xf8\x6f\x40\x3d\x3f\x6c\xa2\x05\x83\x19\x41\x18\x12\xee\x9d\x48\xd2\x57\x23\xec\x7f\x30\x4d\x89\x11\x95\xc4\x04\xf8\xf8\xe9\x51\x75\xe3\x4e\x37\x4f\xa4\x4f\xde\x98\xa8\x5b\x93\x7a\x00\x33\x1a\x9d\x32\x66\xa8\x23\xa0\xcc\x21\xd5\xb7\x06\x6d\x6b\x1a\x92\xf6\x1a\x49\x6f\x2a\x9f\x0f\xe3\xb4\x41\x86\x5d\x15\xdf\xba\x67\x4f\x3a\x49\xf2\xf5\x85\x5f\x09\x7d\x78\xd8\x67\x0b\xff\xf5\x0e\xe6\x09\xe6\x4c\xa0\x14\xc6\x74\xbb\xbb\x3a\xe9\x39\x87\x77\x42\x43\xe3\xd5\x2a\xe7\xa0\xf5\xf6\x44\x95\x72\x1a\x00\x07\xa1\x43\x3d\xe8\xd0\x2a\x74\x3c\x22\x4b\x3d\xbd\x03\x0f\x58\xca\x86\x4d\xb0\x6a\x62\xf1\x0a\xe5\x1c\x79\x23\xde\x61\x17\xef\xf0\x6c\x84\xfb\x78\xb6\xde\xa9\x52\x7e\x7e\xe5\x17\x38\x59\xac\xd7\xeb\x0b\xbe\x3e\x49\x6f\x79\xf7\x2a\x55\xe5\xeb\x98\xb3\x1a\xe6\x11\xc7\x3f\xa5\x70\x7b\x20\xe7\x9b\x81\x9c\x4b\x20\x37\x3f\x34\xe4\x9b\xa0\x6f\xb4\x33\x7c\xd8\x6b\xe6\x23\x4d\x70\x5f\xfa\x31\x0a\x87\xc6\x36\x78\x85\x42\x78\xb5\x06\xb0\x70\xb8\x17\xcb\xb8\x94\xc9\x60\xbf\xbc\x65\x78\x96\x52\xf3\x2c\x59\x82\xc7\xe5\x04\x4e\x37\xd3\x96\xcc\x59\xe3\x9d\x62\x5c\x4e\x14\x62\x4c\xf9\x82\x67\x7c\xc1\xd7\xf5\xa3\xde\x5d\x70\xcf\xc9\x50\x83\x0e\x7f\xfd\xa2\xdd\xa0\xa7\xd3\xa4\xaf\xfd\x54\x5c\x0d\xa5\x45\x81\x8f\x88\xf6\xa0\xbb\x40\xf4\x28\xe8\x71\xe8\x6c\x49\xf1\x22\xa5\xa7\x9c\xdd\x10\xc1\x19\x44\xc9\x99\xea\x0d\xa3\x62\x34\x56\xd2\xd6\x09\xac\x9c\x69\x9b\xb8\xbc\x46\xf7\xbe\x7e\xe0\x0e\xd3\x18\x9a\x85\x78\x7b\x65\x7b\x6e\x19\xb8\x31\x9a\x58\x2e\xb0\x42\xab\x61\x9a\xa8\x1e\xc1\x0e\x2f\x28\x14\x0f\x1d\x17\x9f\x63\x34\x81\xa9\x21\xe1\xca\xd3\x71\x9b\x7b\x94\x09\x44\x87\xb7\x04\xa2\x33\x8d\xd9\x70\x5c\xba\xd9\x86\x63\x73\x73\x30\xb9\x4d\x77\xb2\x4d\x0d\x06\x63\xde\x79\x83\x73\xcc\x57\xb6\x35\xd4\x10\x49\xce\x6b\xce\x94\x69\xdb\x68\x30\xaa\x9d\xd7\xa4\x2a\xd1\xb6\xc1\x2d\xad\xb5\x6d\x2a\x10\x00\xb0\xba\x08\xdb\x1b\x69\x0e\xa2\x67\xda\x72\xe3\x82\xb5\x69\xb2\x39\x4e\x9e\xbd\xd3\x3b\x45\xda\x34\xd9\x1c\xb3\xcf\xb2\xe1\x4e\x91\xcd\x4d\xae\x9d\x9d\x54\x47\xfe\xe0\x9e\x0a\xf6\x78\x0f\x93\x23\x6b\x96\xdd\xd0\x57\x4b\x59\xc5\x25\xf7\x55\xd9\x36\xed\xfb\x11\x27\xdc\xb9\xba\xa9\x6d\xa7\x2b\x9d\x54\x65\xa7\x5d\xe5\xc4\x9e\x46\x3f\xde\x36\xbd\xaa\x4e\x42\xfb\xf7\x1c\x8b\x94\x9e\xb4\x5f\xa2\xd0\xbe\xbe\xa2\xae\x42\xfb\xfd\x8a\xba\x72\x0b\x5f\x19\x76\xfb\xc5\xb7\x76\x53\x17\xaa\x3a\xb2\xd4\xdd\x81\xdb\xb2\x87\x2d\x4f\xd8\xf0\xf0\x3c\xf2\x5c\xc9\x79\xab\x5b\x73\x99\x65\x50\x4b\xee\x47\xe3\xc9\x5a\xcb\xff\x95\x88\xe2\x4d\xc4\x52\xad\xdf\x86\xe7\x71\xc1\xaf\x5b\x22\x5a\x49\x52\x00\xdd\x56\x59\x71\xbb\x23\x5c\x24\xc1\x2c\x29\xe5\x73\xe0\x34\x29\xed\x73\xa0\x7c\x22\x4c\x32\x38\x15\x2d\x99\x37\x83\xa9\xd4\x3d\x33\x62\xc9\xb9\xc3\xd8\x13\xc3\xd8\x1f\x27\x03\xb8\x4c\x4c\xa4\x84\xe3\x5b\xcb\xfd\x63\xcd\xdc\xcf\xe0\x22\x21\xe3\xe3\x09\x3c\xad\x0f\x67\x01\xe0\x49\x72\x2a\x87\x73\x94\x9c\x7a\xaf\x93\x47\x20\x9e\x39\x0f\x96\xde\x83\xe3\x0c\x1e\x81\x9d\xf9\xf8\x78\x92\x9c\xac\xd5\xc8\xe7\x5a\x6c\x99\x36\x8b\xb6\x24\x17\x2b\xae\x96\xae\x72\x41\x2b\xf1\x14\x80\x4d\x82\x60\xd6\xcf\x30\x79\x58\x80\xd6\x82\x2e\x59\x1c\x6e\x11\x6e\x39\xa2\x94\x2b\x91\x68\xc1\x36\xa2\x2c\x57\x88\x63\x06\x19\x74\x1e\xa6\x55\x34\xac\x53\x06\x7b\xf9\x88\xc0\xc4\x75\x61\xab\xa3\x78\x80\x98\x82\x73\x3e\x21\x28\x1b\x79\xec\x48\x9a\x37\x46\x94\x6b\xf1\x72\x00\x9d\x1b\x08\x9d\x08\x27\x6c\x68\x22\xd2\xfc\x22\x8b\xb7\xbd\x11\xa8\xe0\x90\x0d\x71\xc6\xb5\x18\xa3\x11\x77\x84\x40\x0b\xcf\xa4\xcd\xfb\x2c\xa9\xc0\x47\x84\x21\x37\x0e\xa0\x03\x4f\x56\x6e\xa0\x52\x26\x7c\x34\xef\x8a\x26\xda\x46\x6f\x01\x42\xd3\x53\x09\xab\x37\xbf\xc0\x29\x81\x36\xbf\x59\x59\xed\xca\xea\x78\x35\xee\x5a\x74\x71\xb4\x80\xdb\x88\x31\x9b\x90\x56\xe1\xec\xc5\x1f\x24\xda\xbe\x3f\x88\x10\x53\x4f\xf0\x0c\x31\x4e\x27\x5a\x6d\x5e\xc6\x99\x10\x59\x3b\x35\x7d\x44\xd9\x14\x28\x12\x1c\xd2\x57\x38\x30\x8f\x13\x0d\xf0\x8b\xb1\x0c\x54\x5f\xc2\xb3\x87\xe8\x74\x84\x20\xd5\x6f\xac\x69\x71\x3c\x62\x1e\x29\xe0\x67\xc5\x08\xaf\x85\xbf\xc1\x00\x64\x75\x4b\xf6\x7d\xdd\x55\x65\xc2\x4a\x23\xc9\x0f\x70\x5f\x02\x70\xe6\xca\x78\x4a\x7d\x14\x18\x11\x52\x96\x0c\xc4\x09\xa3\x8e\x84\xec\xd6\x74\x3f\xd3\x47\xc2\x3c\x29\xc7\xd9\x64\xa7\x18\x67\x4d\xaf\x30\x6a\x4c\x73\xb0\x5e\xe7\x56\x84\x23\x35\x73\xf4\xda\xbc\x81\xc9\x43\xb3\x26\x62\x15\x14\x69\xed\x76\x9d\x57\x21\x91\x33\x3e\x56\x8b\xb2\x74\x72\xf6\xe3\x3c\xc9\x57\xab\xb3\x35\x90\x59\xc9\x99\x00\x1a\x9a\x8d\x96\xeb\x75\xae\xdf\x0d\x73\xf5\x52\x78\xae\x67\x1c\xd2\xf0\x68\xe3\xc9\x24\x5a\xa2\xb0\xf6\x63\xd6\x24\xe8\xdb\x8a\xd8\x68\x37\x49\x62\x7a\x2e\x94\x06\x2e\x08\x25\x55\x64\x9a\x2a\x2a\x3f\xa1\x1d\x45\x21\x5d\x16\x33\x70\xe0\x6d\x88\x1e\x6a\x4f\x0a\xa5\xf1\xe7\xd2\x77\xeb\x7f\x8c\x00\xa3\x7e\xd6\xc1\xa4\x43\x00\x4d\x82\x5a\xfa\x39\x44\x1e\x2d\x17\x4f\xbf\x9b\x23\x51\xe5\xa0\xaa\x90\x6d\x8f\x89\x1c\x68\x2f\x03\x5b\x03\x54\xd5\x9b\xf1\x35\x7f\x01\x80\x58\xc7\xf9\x15\x8a\xdc\x63\xec\x40\x11\x4f\x80\x54\xdb\xb6\x73\xb9\x10\xd0\x1c\x6f\xd2\x64\x8c\xf8\xe4\xf9\xa2\x8f\xd1\x04\x48\x95\xf4\x98\x26\x54\xaa\x77\x07\xc3\x80\xa2\x84\x02\xa9\xb6\xe1\xbe\x30\x34\x7a\xa9\xaf\x8d\x43\x6b\xa4\xb2\xd5\x6a\x97\xe3\xca\x6a\x25\x82\x5b\xf1\xa4\xab\xf5\xfb\x60\x51\x16\xec\xe2\xcd\x73\x86\x8d\x89\xd9\xed\x0e\x92\x7a\xeb\x61\xe1\x7c\xa3\x89\x8e\xd0\x01\x9f\x21\x86\xe8\x02\x13\x6f\x47\x8a\xc7\x44\xe2\xa9\x83\xab\xf9\x49\x35\x13\x7f\x1a\x31\x03\xab\x55\xe0\x79\x86\x09\xbd\xd0\x45\x4a\x4e\xef\xe7\x9c\x6c\x72\x7a\x4a\x57\x2b\x95\xa3\x29\x2c\x6d\xf5\x44\x27\x0f\x33\x4e\xe4\xba\x5d\xe3\x1e\xe7\x8e\xa3\xd0\x8e\x67\x3b\xc2\x13\xd8\x66\x3e\x2c\xc1\xc6\xa1\x4e\x23\xe3\x24\x5c\x3d\x3a\xba\xda\x2e\xef\x44\x85\x4f\x47\x61\x35\xd8\x4c\x76\x44\x03\xa1\xe3\xee\xc0\x69\xd5\x35\xb3\xe2\xb7\xaa\x51\xe8\xd4\x71\xca\xbb\x2f\x2d\x3a\xc2\x74\xcd\x55\x72\xf5\x66\xc5\x2f\x6b\x3c\xe9\x19\x26\xc5\x3c\x1f\xb4\x7c\x95\x6c\x7e\x88\x74\xdf\x2b\xe1\x53\x7b\x73\x0c\x11\xab\x73\xbc\x44\x3e\x8d\xe7\x47\xc8\x39\x43\x61\x51\x76\xa5\x6f\x58\x4d\x2f\x88\xd0\xe3\x54\x30\x38\x60\xe3\x5c\x1a\x9c\x8d\x44\x0a\x3f\x89\xf9\xda\xd3\x7a\x36\xb4\xb6\x5f\xd5\xf7\xc3\xcf\xe8\x6d\x10\x4a\xd8\x79\xef\xa6\x15\x10\xb9\xaa\x64\x86\x55\x17\xcc\x67\x15\x42\xfc\x58\x77\x58\x0c\x22\x24\x17\x4e\xb0\x7c\xc4\x52\xeb\xb0\x5b\x9c\x93\x32\x13\x52\x7b\xb1\x90\x3e\x66\x02\x0e\x8d\x2d\x80\x8c\xb7\xe8\x80\xf3\x37\xda\xed\x6a\x27\xc5\xe2\x6c\x14\x5c\x5b\xcd\xc9\x09\xb0\x9e\x8c\x61\x8b\xdb\xbd\x70\x64\xcc\xb6\xa8\xb3\xb1\x24\xdf\xae\xce\xc6\x76\x93\x04\x39\x20\xa2\x63\x66\x54\xd9\x78\x1a\x1a\xa3\x21\xe1\xa0\x51\x75\xda\xc0\x05\x56\xfb\xad\xb0\x80\x4f\xd6\xb5\x20\xc4\xad\xf4\x5c\xd0\x79\xf4\x59\x4c\x61\xce\xe6\x37\xb6\xe7\x92\xd7\xa0\x58\x42\x2c\xab\x0e\x8f\x02\x2a\xf1\x51\x4c\xed\x51\xb4\x67\x6f\xd2\xf4\xdc\x0f\xc5\x4d\x01\x69\xbe\x28\xca\xdc\x12\xd0\x8d\xbb\x39\x70\x43\x0f\xe1\x11\xd8\x8b\x84\x5f\x42\x57\xe2\x29\xb6\xd2\x46\x13\x1c\xa8\xef\x77\xe3\x89\x2f\xef\x4c\x13\x4f\x35\x17\x16\xf5\xd0\x0f\xc0\x0f\xd1\x6b\xa3\x11\x93\xb0\xa7\x53\x19\x51\xa0\x4c\xb0\x23\xb5\xf5\xee\xd7\xd3\x9c\x2a\xe7\xe6\x30\x85\x45\x83\xac\x74\x3f\xce\xa5\xea\xa5\xd0\xd8\xcd\x00\x9c\xca\x88\xbc\x79\x58\x56\x49\xe0\x94\x6f\xd0\xdc\x05\x4b\xad\xd3\x1a\xdf\x62\xe5\xc1\x39\x2c\x12\x2c\x3c\x95\x0a\x6d\xc0\xf6\x92\x1d\x0c\x38\xa7\x28\x4e\x04\x57\x1c\xbc\x45\xbe\xb3\x53\xd1\x9e\x2e\x81\xe0\x2e\xaa\xb0\x2f\xe5\x82\x2c\x6c\x31\xc3\x57\xa6\x8e\x88\xb7\xd0\xf6\xc1\x5b\x65\xe0\xc2\x5f\x9c\x96\x9c\x34\xc9\xc0\xcb\x46\x19\x78\xd9\xed\xc6\x85\x14\x80\x97\xae\x10\xc2\xf5\x7f\x4b\x00\x9c\x26\x03\x61\x58\xa4\xa4\x12\xd3\x5b\xf3\xfd\xa9\x96\x4a\x1c\x27\xd9\x78\x3a\x81\xcb\xe4\x18\xce\x92\xdd\xe1\x4e\xf4\x80\x73\xa2\xc7\x22\x82\xef\x6d\x16\x0f\x38\x20\x66\xc9\xee\x80\x97\x50\x91\x19\xe2\xa1\x92\xce\x2d\x36\xc3\x76\x29\x4e\xf1\x0a\x64\x17\xea\xdc\x3f\x4d\x76\x67\xea\xb0\xc6\xc5\xdb\x92\x59\x57\x1c\xc7\x02\x32\x00\x4f\x84\xf8\x5c\x2b\x6b\xed\x26\xc9\x09\xe0\xd8\x70\xba\x5a\xf9\x2a\xc4\x27\xaa\xbd\x23\x78\x08\x1f\x54\xd5\x7e\x95\x22\x31\x5c\xc0\x13\x78\x0c\xe0\xa3\xe4\x81\x44\xec\x57\x93\x07\x9e\xd4\xfd\x55\x10\x1f\x25\x45\x18\x93\x8f\xe0\xab\x62\x1e\x29\x78\xb4\x21\x46\x02\xbf\x6a\x0e\x84\xdb\x64\x2d\x15\x14\x21\x12\x38\x53\xbf\x73\xda\xed\xee\xe2\x6e\x77\xb7\x10\x9d\xaf\x56\xec\x40\xa6\x12\x34\x2a\x2a\x26\x47\x08\xac\xad\x40\xea\x14\xa8\x72\x8f\x4c\xd6\x23\x10\x1f\x36\x0d\xf4\x10\x3e\x52\xcf\x16\x7c\x48\x8f\xe1\xbd\x2a\x34\x42\x9b\xfe\x04\x1e\x43\x26\x0e\x79\x00\xef\x26\xf7\x24\x78\x6e\x27\xf7\x2c\x78\xd4\x18\xee\xc2\xdb\xdd\x6e\xfc\xb8\xa9\xf3\xc7\xf0\x36\x58\x1b\xbf\xb7\xc5\x1a\x7a\x8b\xda\x78\xdc\xb9\xb4\x8e\x73\xfa\xdb\x6d\x0a\x82\x64\xd3\x86\xe4\x12\x4e\xb8\x3d\xaf\x06\x4d\xd8\x49\x43\xd8\x89\x81\xe6\xa4\x9c\xa1\x61\xe9\x28\xc4\x27\x05\xb9\xab\x97\x55\xa5\xc4\x42\x4a\xd4\x8c\x2d\x10\x27\x2e\xb9\xc8\x85\x1f\x18\x4e\xf0\xb4\xc5\x1a\x76\xc8\x2e\x71\xc8\xae\xb0\x48\xeb\x76\x63\xd6\x64\x93\x26\x1c\xb2\x0b\xaf\xad\xc6\xb0\xe2\xea\x34\xb1\xb7\x44\x23\xde\xaa\x62\xdb\xe2\x26\x4b\xc1\x19\x1a\x6f\xd4\x8f\x73\x2d\xd0\x95\xda\xbf\x7b\xe5\xa5\xe7\xd2\x18\xef\x34\x19\xdc\xb6\x61\xff\xeb\xf7\x20\xe8\x39\xc4\xa8\x5e\xad\x28\x94\xba\xc5\xbe\xdb\x87\xbc\xea\x92\xc6\xbb\xd7\xe5\xfc\x5e\x87\xcd\xbd\x0e\x4f\x92\xf0\x88\x5d\xec\x3c\xf7\xa3\x84\x3f\x03\xd2\x77\x85\xec\x30\x17\x19\xbe\x98\x3d\x74\xb1\x84\xe9\xe6\xb9\xd7\x18\x70\x1b\x67\xc2\xde\xfb\xc6\xe9\xc4\x5e\x62\x4c\xf8\x21\x76\x20\x9e\x10\x1d\x6d\xf8\xa6\x3d\xce\x1b\x00\xeb\xd1\x76\x4c\x6c\xc7\xfb\x56\x5c\xfb\x9e\xd3\x31\xf0\x55\x7a\xb4\xbd\xb8\x07\xde\xa7\xeb\x4b\x78\x9b\xcb\xdc\xab\x71\xd3\x37\x4f\x10\x9c\xf7\x29\x3a\xc2\x05\x43\x34\x16\x46\xb8\x3d\x05\x93\xd1\x22\xc5\x24\x82\xbe\xab\x4e\xe0\x39\x1a\x43\x4e\x55\x7b\x79\x32\xee\x91\x8d\x8b\x4a\xde\x7d\xa8\xa4\x04\x5c\xb9\xad\x98\x06\x7f\xb1\xad\xa0\x86\xb5\xf1\x0f\x0b\xd6\x31\xf2\x87\xac\xdc\xca\xf7\x31\xe1\x00\x5c\xad\x74\x0a\xe7\x64\x87\xf5\xa7\x69\x96\x71\x28\x72\x5c\xa6\x79\x96\x89\x45\x97\x2e\x0a\x61\xd5\x65\x21\xb4\xc5\x69\x5e\x0a\x0c\xd8\x5e\xd2\x05\x70\x73\x85\xe0\xa8\x39\x7f\xad\x27\xad\x82\x58\xa8\xd8\xb1\x7c\x16\xb9\x97\xb3\x53\x98\x1e\x5d\xc5\xe4\xb3\x42\x68\xc9\xb0\x9c\x8c\x76\x87\x6b\x00\x6d\x29\x33\xa4\x6a\x11\x17\xd0\xb6\xa9\x91\x8d\xe5\x4f\xc3\x8b\xe2\x96\x95\x7b\x0b\x87\x0b\x6a\x6c\x53\xa5\xd2\x2d\xa5\xec\x36\xce\xb7\x77\x6c\x0b\x13\x5b\xb8\x4c\x10\xcc\x92\x0a\xc8\x61\x5c\xf6\x8f\xd3\xe2\x40\xfc\x1f\x67\x60\x24\x12\xef\x88\x56\xa9\x20\xe9\x71\x06\x00\x07\xb4\xd7\x93\xdb\x82\xf2\xd4\x2c\x2f\x00\x25\xcc\xf8\x22\x8a\xf4\xbc\xc1\xb9\xa5\xaa\xf7\x39\x71\xfc\x78\x5e\xe7\x96\x62\xb2\x8d\xee\x0b\x1d\xff\xec\x0d\xf3\x0b\x3a\x73\xff\x9c\xce\x55\x95\xdf\x3e\x5b\xc7\x37\xfc\x67\x37\x6d\xd7\x4b\x6c\x3d\x46\x78\x13\x6f\x5a\x55\x5a\x41\x40\x3f\xaa\xf5\xd3\x2c\xcb\x1f\xbd\x55\x66\x59\xc8\x70\x5a\x72\x1e\x3a\x08\x68\xa4\xe7\xcf\xef\x2c\x07\x68\x64\xdf\x16\x13\x72\x70\xed\x9b\x31\xa3\x25\x5a\xb1\xd5\x10\x7c\xe9\x1a\xd6\xb1\x55\x46\x91\x22\xf0\xf2\x45\x63\x28\x03\x8e\x6d\xe1\xa1\xb7\x8e\xf5\x40\x70\x82\xca\x03\x31\x67\x54\x5b\x2c\x9e\x3c\x8f\xbe\x48\x2b\x67\xdc\xe5\xe8\x65\xc0\xf3\xd8\x81\x39\x73\xe3\x69\xc8\xc8\x93\xd1\x9e\x61\x29\x65\x4c\xca\x6e\x17\xe9\xb8\x83\xcf\x8b\x65\x8a\xc9\x5e\x72\x03\x12\xf4\xa8\xf3\x4a\xca\x50\x8c\xfa\x45\x86\xa7\x28\x1e\x40\x02\xf6\xa2\x51\xb4\xa7\x33\x08\x00\x60\x64\x8b\x69\x81\x8f\xb3\x9a\xec\xc0\xf9\x3c\x92\xb6\x65\xe8\x40\xba\x46\x0d\xaf\xb0\xbd\x00\xbb\xa1\xc5\x78\x0b\xdd\xee\x2e\x2e\xde\x4a\xdf\x8a\x11\x38\x40\x7d\x96\xdf\xb9\x77\x57\xf2\xf6\xb1\x6c\xb9\xcd\xfa\x6a\x46\xe2\xd2\x56\x58\x7f\xea\x78\x43\x17\xf2\x72\xb4\x9b\x24\xc3\x6b\x03\x99\xe8\x0d\xaf\x0d\xd6\x4f\x11\x1d\x3c\x15\x80\x88\x2f\x05\x5a\xad\x34\xfc\xc5\xc6\x20\x31\x4b\xa4\xf7\x6e\x7e\x65\x3d\x60\x1b\xd7\xe4\xc9\x1a\x6d\xb1\x30\x9a\x71\xfb\x62\x6d\xbd\x30\x29\x92\xa0\x50\xb8\xd9\x64\x6f\xdb\xb6\x72\x0b\xd8\x05\x8f\xda\xa7\xe8\x08\xb9\xe2\xf1\xd8\x05\x96\x58\xfe\x86\x19\xa8\x80\x18\x57\x3f\xe8\xe8\x46\xff\x66\xff\x66\x54\x1b\xc5\x1c\xb1\xe9\xf1\xb5\xf4\x5b\x69\x25\x92\x8d\xc8\xbf\x32\xec\x72\x5a\x25\x9e\x78\x49\xf3\xa7\xe2\x43\x9f\x1d\x23\x12\x57\x3c\x4f\xa0\x7e\xfe\xd0\xc4\xda\xef\x73\xde\x36\x06\x3b\x32\x9a\x09\x5a\x07\x3c\xa8\xcb\x09\x0a\x5f\xd1\x85\xbe\xe8\xca\xcc\xd0\x84\xa1\x57\xab\x64\x38\x2b\xae\x2d\x4a\x72\xd4\x53\x37\x8b\xde\x3c\x37\xb5\x03\x45\x8d\xda\x4c\xef\x30\x9f\x9d\xf6\x96\x32\xa4\xc8\xf6\x47\x2b\x43\x41\xb1\x17\x0b\x4a\x4f\x93\x1f\x4e\x75\x69\xa1\xfb\xfc\x34\x26\x93\x04\x09\x03\xbf\x0b\xac\x8a\x0a\x01\x75\x3f\x57\x11\x53\xf0\x16\xef\xd7\x3a\x64\x94\xd2\x4b\x6b\x8c\x27\x68\xcd\xd7\x85\xfd\x2e\x16\xc1\xf2\x10\xc4\x4a\xaf\x56\x19\xf4\x36\xc7\xf4\xcb\xbb\xdd\xd8\x84\xa7\xf4\x8c\x3c\x6d\x36\x6f\x19\xe6\x40\x2b\x8b\x88\x97\x4d\x83\x44\x26\xce\xaa\x08\x4c\x98\x24\x49\xaa\x42\x78\xad\x56\xbb\x69\x9f\x2f\xd1\x6a\x65\xa4\x49\xa9\x6e\x52\xe8\xfa\xab\x74\x3d\xe8\x98\xf3\x49\x05\x38\x94\xde\x0c\x27\x60\xb5\xb2\xf5\x6c\x6b\x62\x80\x8d\xed\x6d\x0f\x8c\x28\xe2\x15\xd7\xe3\xce\x92\xea\x73\x61\x35\xee\xac\x92\xaf\x55\x43\xcf\x56\x3d\x91\xbb\xc1\x21\x53\xd0\x97\x31\xe5\xaa\x3d\xc9\xed\x85\x45\x63\x32\x50\x10\xe6\x1f\x64\xec\x78\x04\xd6\x81\x9d\xea\x11\xf6\x77\xee\xfd\xd6\xdb\xfc\x26\x79\x1c\x9f\xe9\x78\xab\x23\xa4\xe5\xae\x23\x21\x45\x76\x36\x7e\x2e\x62\x2b\xd6\x9b\xd4\x42\x0b\xdd\x04\x24\x22\xa8\xab\x68\x44\x2a\xba\x5a\xca\x20\xc7\xaa\x63\x37\x8b\xd1\xc2\x5c\xd3\x89\xda\x44\x64\x97\xcd\x71\x47\x3d\x88\x89\xfd\x6e\xe2\x69\x72\x9c\x86\x22\x72\xa7\x9b\x3f\x6a\x47\xe0\xe4\xc2\x86\xa3\x16\xdb\x38\xdd\xb5\xd8\xad\xcc\xc4\x6e\x8d\x99\x46\x2c\x20\x6a\xec\x6c\x88\xc6\xeb\x2c\x85\x1b\x96\x57\x46\x20\x7c\x4d\x0e\x5e\x76\xf0\x5a\x2e\xab\x34\xc8\xed\xf9\xfd\xdf\x06\x90\x93\x73\xa8\x97\x57\xfe\x18\x39\xc9\xce\xf5\xaa\xe4\x3b\xda\x87\x57\x73\xa7\xb1\x8b\xa3\x2d\xa7\x1e\x8c\xed\x9b\x82\xd5\x4a\x08\xf8\x03\x67\xaf\xa4\xd9\xd2\x47\xe9\x95\x1d\xbd\xb8\x78\x3b\x4b\x31\x51\x44\xb5\x8e\x4f\xd1\x58\x4a\xae\x3b\xb2\xc4\x84\x13\x28\xd5\x8d\x0d\x9d\xcf\x72\x23\xbb\xcf\x32\xc9\x0b\x05\xe7\xb2\xf1\xfc\x79\x8a\x41\x4f\x5c\x4d\x14\x11\xac\x38\xae\xee\x64\xfb\x82\x20\xa2\x5a\x52\x37\xaa\xa5\x89\x35\x2d\x11\x67\x37\xce\xdd\x0b\xd0\xbd\x53\xc2\x14\xaa\xe9\x00\x66\xb9\xf1\x5b\x28\xf1\x62\x67\x97\xf3\x07\xab\xd5\xf5\xc1\x4d\x19\x04\xf6\xfa\xe0\x79\x99\x88\x5e\x7f\xf5\xf6\x2b\x22\x38\xad\x3a\x03\x0e\xa6\x39\x29\xf2\x0c\xf5\x1f\xa5\x94\xc4\xd1\x7d\x19\x00\x54\x22\x4f\xe7\x51\x5a\x74\x4a\x92\x1e\x66\x48\xc5\x01\x16\xe3\x9b\x75\xd2\xa2\xc3\x89\x74\x3f\x82\x04\x8c\xb4\x92\xf1\xda\xe8\xc8\x6c\x59\x9e\x26\x4e\xa2\xce\xf0\xbb\xb5\x0c\x27\xd9\x13\xc6\xda\xbd\x65\x4a\xd3\x45\xb5\xa8\xc4\xe5\x4b\x76\xaf\xd0\x20\x2f\xaf\x3b\x5d\x88\xcf\xa6\x14\xcd\x10\x61\x38\xcd\x8a\x51\x54\xa4\x0b\xd4\xcb\x29\x3e\xc2\x24\x5a\x43\xe9\x35\x5a\x47\xcf\x4c\x4c\x6a\xb5\x92\x6a\xa2\xab\x95\x38\x9e\x41\x9f\xe5\x5f\x5b\x2e\x11\x7d\x39\x2d\x50\x0c\x54\x40\x60\xc0\xaf\xf2\xea\xf4\xb6\x15\xe5\x62\x3a\x59\x02\x5d\x5c\xb5\x06\x55\x5b\x5b\x60\x18\xbd\xd4\x92\x66\x56\x08\x70\x10\x81\x17\x7b\xc3\x83\xa8\x1b\x8d\xa2\x83\x68\x47\x7c\xdd\x4b\xa2\x68\x0f\xef\xc9\xc7\x4e\x0d\x79\x61\x62\xfb\xb6\x80\x3b\xd0\x4d\xaf\xc5\x63\xba\x60\x38\xbc\x9d\x6e\x0a\x1c\x50\xc1\x62\x34\x84\x34\x1e\xa9\xaf\xf2\xa7\xab\x66\xb5\x01\x81\x9a\x50\xa1\x09\x81\x42\x58\xf1\xe4\x38\x11\x02\x4b\x82\x95\x28\x2c\xd2\x7d\x59\xad\xc2\x7b\xa7\x8b\xc3\x3c\xeb\x76\xa3\x42\x24\xaa\x1f\xfa\x98\x21\x9a\xb2\x9c\x1e\x84\xce\x5c\x25\xd2\x59\x07\xc5\x23\xdd\xee\x86\xee\x44\xc4\xa5\x82\xd1\x72\xca\x72\x9a\x24\x89\xc9\xdf\xd5\x69\x4b\x67\x0f\xf4\xd8\x46\xa6\x43\x48\x93\x6b\xef\x8e\xdf\x9d\x7c\xe9\x5a\x80\x3d\xc7\xc9\x78\x52\x8d\x16\xdf\x41\x71\x0a\x0b\xa5\x56\x04\x33\x38\x95\x6a\x21\x35\x2f\x98\x05\x10\xc6\x1b\x65\x32\x80\x59\x52\x18\xbf\x2f\xb7\x32\xe1\xfb\x85\x4a\x81\x60\x0a\x0e\xf2\x18\xc3\x14\x16\xe3\x72\x02\x46\x28\x4e\xf7\xa2\x71\xb4\xe7\xda\xcc\x91\x58\x7c\x3b\x28\x47\x51\x04\xf6\xa2\x49\x24\xcb\x1a\x65\x10\x81\xc2\x15\xd4\x54\x7d\x4f\x3b\x98\x74\x0a\xa0\x5b\x9d\xaa\xda\x53\x5d\x5b\x75\xdd\xe4\x5c\x74\xf3\x0c\x78\x65\x3e\x12\xe9\x1d\x5e\xa4\x04\xfa\xa8\xd6\xbc\xfe\xa7\xaa\x57\xe3\xce\x3e\x8e\x22\x88\x80\x8a\x98\xdb\x8d\x40\x9f\xa2\x65\x96\x4e\x51\x7c\xed\x9f\x5c\x1f\x5c\x3b\x82\xd1\x5e\x04\xd6\x06\xe2\xb9\xe1\x85\x8d\xd6\x6c\xb7\xab\xdd\x37\x89\x64\x12\x89\xd8\xd8\x01\x34\x21\x07\x24\x06\x23\x02\xd1\x58\x4b\xfe\x26\x09\x22\xd3\x7c\x86\xbe\xf6\xce\x9d\x97\xf3\xc5\x32\x27\x88\xb0\x98\x81\xbd\x28\x89\xf6\x02\x5f\x08\x00\x1b\xc3\xdf\x1a\x45\xc7\xe6\x48\xb1\xb6\x48\x86\x0f\xaf\x15\xa7\x05\x43\x8b\x86\x8f\xe8\x31\xd3\x02\xa2\x2b\xba\x95\xbf\x53\x66\x48\xe8\x13\x5a\x15\x0f\xce\xa9\x69\x07\x79\xda\x0c\x89\xf5\xef\xe8\x81\xf9\x35\x99\xf7\xb3\xe1\xdd\x41\x86\xfd\x8c\xee\x58\x25\xd0\xb3\xf0\x7b\x83\x3c\x5e\x66\x68\x49\xd1\x94\xdf\x3a\x65\x68\x52\xdb\x77\x07\x17\x1d\xf3\x75\x66\xc2\x8d\xa2\xc7\xfc\x3a\x85\x59\x76\x3a\xea\xe0\x05\x87\x76\xc7\x56\x99\xd3\x7c\xd1\x79\xae\x02\xdd\xe7\xf6\x23\xb8\x3b\x14\xea\xf9\x55\xc0\xf7\x8f\x64\xec\xfe\x08\x96\x84\xe1\x6c\x14\xdd\xe8\x0f\xfa\x83\x48\x68\x16\x9b\x56\x9b\x03\x7e\xb9\xba\x17\x30\x72\xc0\x7a\xde\x49\x2b\x16\xd0\x69\x21\x06\xed\xe7\x7f\xd6\x71\x2a\x76\xd6\x97\x0a\x05\xa7\xe5\xb6\x70\x30\x08\x75\x41\x28\x98\xfa\xe7\x83\x81\xa9\x76\xc9\x10\x30\xed\xae\x2b\xf2\x53\x83\x20\xd0\xdd\x44\x4e\x05\xe8\x6f\x35\x0f\x98\xd5\x5d\xe9\xef\xad\x0d\xa4\xa6\x42\x2a\x38\xcd\x69\xa4\x34\x21\x7a\xe2\x53\x93\xfd\x58\x3c\x28\xa9\x10\xc1\x6f\xfd\x56\xff\xd5\x7f\x7e\xff\xd5\xb7\x5e\x79\xf0\xf6\x3b\x77\xef\xdf\xbd\xff\x8d\xb7\x5f\xbd\xa7\xdd\x6d\x05\x3f\xaa\x25\x03\xdd\x6e\x43\x30\x63\xbd\xa4\xfa\x18\xbe\x10\x76\x54\x1b\xf9\x7c\x61\x48\x6d\x02\xf1\xc0\x45\x08\xa5\x7d\xbf\x6e\xde\x3d\x75\x18\x5d\x88\x92\xd4\xa0\xf4\xb9\xa3\x26\x61\x48\x79\x0a\x87\x06\x56\xf5\x2b\xbd\x8f\xe0\xc7\xc2\x81\x6f\x71\xcd\x41\xa7\x36\x96\x08\x7e\x23\xea\xd2\x96\x3e\x44\x3d\xd9\xde\xb6\xfb\x95\xe1\x4b\xa8\x12\x56\x57\xdc\x19\x7b\x9e\x8c\x07\x90\x24\xda\x93\xb1\xba\xa5\xec\xb3\x5b\x3a\xbd\xcf\xf6\xf6\x00\x19\xb3\x49\x82\xc6\xcc\xb0\x9a\x44\x5f\x35\x65\xc3\x1c\xf6\x31\x02\x4f\xf2\xa6\xe6\x0b\x4c\x7d\xb1\x95\xf1\xce\x1e\xbf\xa6\xf2\x1d\xf4\x39\xc4\x64\xa6\xb4\xe5\xa4\xef\xf6\x31\x67\xbb\x26\x9c\xe7\x9e\xa6\x2c\x16\x6f\x5f\xc0\x30\x76\xd7\x85\xf9\xa2\x9c\x9a\x71\xc4\x7e\xf6\x08\xb3\xe3\xbc\x64\x2f\xe7\x25\x61\x23\x32\x8e\xd4\xef\xde\x94\x67\x44\x13\x9f\xbe\xaa\xce\x14\x17\x22\x74\x71\x03\x92\x9d\x30\x1a\x78\x3b\xe6\x29\x20\xc2\x15\x2c\x48\xb3\x16\x2e\x1a\x0f\x26\xdb\x41\xa1\x99\xcb\x76\x4c\xe8\xb5\x6d\x20\xf1\x4f\x90\x36\x4d\xe1\x9c\xd4\x05\x14\x4f\x6c\xbe\x53\x67\x5f\xed\x59\x5b\x65\x65\xcd\x89\x6c\x59\x59\xfd\xc8\x69\x06\x2e\xdc\x37\x98\xfc\xd8\xd3\xeb\xb2\xf5\x4d\x81\xca\x19\x4e\x2a\x67\xb8\x1d\x0b\xf1\xce\x7d\x6f\xc8\xa6\x8f\x56\x2b\xe8\x81\xf3\xca\x05\x7b\x67\x72\xd4\xc5\x68\x3c\xbe\xf6\xa5\x6b\x30\xe2\xfd\x8c\xaf\x15\x5f\xba\x86\x75\xfa\x9b\x71\xfa\x78\xc5\xaf\xac\x00\xcb\xec\x2f\x0d\x91\xfc\x12\xe7\x53\x96\x2f\x57\x27\x98\x82\x52\x7f\xc2\xd5\x2f\xd8\xff\x90\x66\x38\x2d\x56\x52\x96\xb7\x3a\xcc\x49\x59\x80\x4a\xa3\x87\x25\xd0\x8d\x15\x36\x6f\x3e\x4f\xb3\x15\xcb\x17\x29\x03\xb9\xfa\x9a\xeb\xaf\x63\x86\x27\xa0\x5c\xa8\xec\xd4\xc9\x4c\xbd\xbc\x42\x4d\xc0\x34\x7b\x30\x8a\xc7\xdf\x9c\x4f\xc0\x1c\xad\xe2\x71\x46\x27\x60\xae\x07\xf3\xa5\xeb\x27\xba\xd0\x31\x3e\x41\x3a\x5b\x77\xf8\xcd\x14\xe1\xbc\x3c\x9d\xac\xbe\x5d\x82\x53\x3d\x41\x5d\xe1\xf1\x6a\x7a\xbc\x2a\x8a\x55\x71\x5c\x9d\xda\x22\x65\x74\x75\x82\x28\x5b\x61\x32\x03\xf1\xc1\x08\x3f\x5e\xa1\xc7\xba\x14\x9e\x22\x0d\xf1\xc5\x2a\x03\x79\x59\x20\xfb\xc5\xf9\x80\xa7\xf5\xfc\xdc\xb4\x82\x88\xc9\x42\x44\x67\xca\xee\xbf\x5d\xe2\xf7\x74\xce\x7b\xbc\xaf\x09\xd4\xd8\xcc\x97\x5f\x02\x47\x16\x2d\x0a\xbf\x2a\x01\xe8\x91\x59\xfd\x47\x45\x00\xc4\xe5\x42\x66\xc6\x29\x20\x69\x76\xba\x8a\x0f\x41\xba\x8a\x67\x00\xa7\x47\x24\x5f\xc5\x4b\x90\x52\x44\xd8\x31\xe2\x49\x9a\x8b\xbc\x02\x9c\x92\x7c\xb9\x8a\x19\x38\x46\x20\x2e\x70\xb1\x2a\x90\xe9\xb7\xc0\xaa\x97\x6f\xa6\xbc\xbd\xe6\xef\x62\x05\x4f\x90\x1e\xdd\x1c\x39\xcb\x56\x78\x93\x60\xf5\x2c\xb1\xea\x4e\xe5\xc0\xfa\x62\xf3\xf5\x54\xc1\x06\x20\x6a\x33\x45\x5a\x2d\x2f\xc8\x4f\xec\x07\x9e\xae\x21\x04\xf2\xba\xaf\xae\x27\x5f\x72\x8d\xf0\x05\x88\x51\x01\x0e\xbc\xd1\xe6\x95\xfa\x71\x71\x9c\x57\x67\x34\xa5\xb8\x90\xdb\x35\xc6\xc5\xca\xc2\x0b\x9b\xdd\x0c\x1e\x8f\x31\x9a\xe8\x5a\x8f\x71\x6d\x33\xc7\x65\xb1\xc2\xba\x5e\x59\x34\x6e\xdc\xda\x00\x05\x1e\x22\xe2\x0e\xc7\x60\x3b\xc7\x6e\x0d\xb2\xc7\x76\x3b\xb8\xf9\xf8\xb1\x83\xa7\xef\x55\xa6\x3a\x4b\x59\x7a\x98\x16\xee\x74\x27\x10\x53\x8a\x04\xfe\xbe\x9d\x62\xca\x69\x58\xc4\xb9\x01\xa1\x3a\xbf\x44\xf9\x32\x13\xd0\x8c\x16\x29\xcf\x58\xc8\x9d\x11\x4d\x8f\x71\x36\x8b\xa0\xfc\x4b\x55\x66\x81\x1e\x0b\xfd\xe4\xc7\x72\x2d\xa3\x45\x7e\x82\x78\x9d\x5c\x91\x81\x68\x9a\x3f\x8a\x60\xf4\x10\x13\xd9\xe4\x7b\xf9\xe2\x10\xf3\x12\x32\x21\xf6\x52\x49\x04\x5b\x23\xb4\x2c\xc7\x11\xfa\x76\x89\x97\x0b\x44\x58\x04\x23\x4c\xe6\x39\x5d\x88\x27\xe0\x08\x46\x54\x84\xa9\x8f\x16\x39\x41\xc2\xdc\x7c\x89\xa6\xbc\x05\xa9\xc3\x2c\x12\x73\x5c\x1c\xf3\xdf\xc7\x08\x2d\x23\x18\x7d\x0b\xa5\xfc\x28\x88\x96\x79\x26\x76\x7c\x5d\x84\xbc\xed\x84\xbf\x92\x53\x64\x47\xb2\xb9\xd7\xbe\xf9\x6e\xf1\x4f\xbf\x74\x0d\x92\xe4\x5a\x3c\x7e\xf7\xd1\xbb\xd7\x7a\x93\xbd\xf1\x83\x77\xaf\xbd\x5b\xf4\x26\x20\x1e\xa7\xbd\xf7\xde\x9d\x4d\xf6\xbe\x04\xae\x41\xaa\x4b\xf0\x4f\x7b\x20\x1e\xdf\xee\xfd\xf6\x44\x15\xf8\xa7\xbc\x00\x4e\xae\xf9\x79\x8e\x64\x36\xaf\xc6\xef\x1c\x40\x7e\x4c\xeb\x40\x20\xb7\xa8\x08\x06\x82\xfa\xce\x2a\x8c\xd9\x98\x4c\xfa\x2c\x7f\x23\x7f\xa4\x1f\x1d\x26\xc9\xee\xc0\x4a\x17\xd3\x6a\x9b\x9a\xf7\x4c\x06\xc2\xb1\xb4\x6a\x9c\xde\xc2\xfb\x94\x73\xeb\xd2\x13\x10\xea\x1b\xb4\x1b\x93\xf1\xa0\xd6\x03\x19\x0f\xab\x85\x86\x5b\x0b\xdd\x91\x31\x39\x1b\xca\x0e\x1a\xca\x86\x3a\x1f\x4c\xec\x04\x0b\xbe\xc8\x31\x4a\x90\x74\xf8\xe4\xc0\x26\xf1\x20\xb5\x5a\x95\x31\x70\xbb\x10\xfb\x29\xa9\x66\x88\x62\x6a\xd9\xc5\x5b\x39\x15\xfc\x8d\xe1\x21\x34\x3f\x54\x88\x70\x6a\xe6\x6c\xb1\x2c\x94\xc8\x37\x6d\x8e\x78\xa7\xd5\x59\x89\x4c\x77\x2b\x95\x31\x58\xef\xe4\x31\xe7\xc4\x9c\x6c\x00\x53\x91\xe5\x0f\x50\xb9\x2b\x40\xe2\x61\xef\xe5\x74\x7a\x8c\x62\xb0\xc6\xf3\x78\x57\xe1\xb6\x54\x70\xe9\x76\xfd\xdf\x42\x9e\x2c\x9c\x1a\xdd\x7d\x44\x34\xe2\xab\xf7\x47\xce\x2d\xca\x67\x6b\xf9\x80\x78\x48\xf3\x47\x05\xa2\x9d\x59\x8e\x8a\x0e\xc9\x59\xa7\x28\x97\xe2\xda\x1c\x68\x11\x76\x96\xf2\x96\xbd\xcc\xb3\xd3\x39\xce\x3a\xfc\xfa\xd3\x41\xc5\xf3\xbd\xe2\x38\x5d\x8c\x3a\xc7\x8c\x2d\x47\xd7\xae\x1d\x61\xd6\xc7\xf9\xb5\xd3\x97\xbe\x76\x9d\x1e\x45\xc0\xa2\x7c\x69\x82\x13\x05\x1a\xb7\x2f\xe8\x0f\x66\x78\xca\x12\xa5\x95\x26\x7c\x14\xa8\x3c\x88\xd6\x85\xbd\xd0\x25\x67\x0e\x58\x5c\x81\x82\x34\xaf\x2b\xe9\x91\x86\x98\x72\x1c\xe3\xb0\xbd\x8d\xba\x12\x53\x5e\xe3\x6b\x05\x12\x16\xc2\xca\xcc\x4a\xb4\x22\x7c\x21\xc5\x95\x1c\x1d\x75\xc3\x11\x4c\x08\x43\x42\x39\x02\xc3\x4a\x87\xcc\x3e\x8d\xad\x96\xda\x94\x2f\x5e\x77\xec\xc4\xcc\xc7\xf1\xf5\xc9\x81\xfb\x63\x74\xb6\xde\xa9\x0f\x54\x79\x16\x1c\x8b\x0b\x4a\xdf\xbd\xa3\x4e\x7c\xdd\x99\xa5\x1c\x38\xb5\x53\x31\x39\x6a\x2a\x56\x12\xa5\xe2\x7c\xaf\xd7\xd0\x82\xb2\x06\x65\x77\x18\x43\x0f\x5e\x49\xa9\xe1\xae\xfa\xe0\x19\x6b\x38\xc3\x45\xf3\x9a\xe9\xaa\x62\xe9\xbd\xba\x36\xa7\xd5\x2a\xfa\x0b\xd2\xbc\x1e\x95\x6a\xd5\x9b\x7b\xdd\x83\xb6\x2c\x51\x0d\xb5\xe3\x43\x42\x19\x81\xd7\x11\x50\x10\x17\x4d\x51\xa4\x40\x81\x2f\x59\x85\xe2\x81\xb5\x25\x34\x4f\xd2\x8f\x6e\x64\x53\x47\x2e\x59\x72\x81\xd9\xa2\xa7\x3c\xb6\x7d\xc1\x31\xaa\xb7\x6d\xa9\xe2\xb9\x67\x91\x7a\x6d\xf3\xa1\x4f\x78\x8b\x66\x79\x42\xc6\x1e\xad\x16\x10\x3e\x08\xb4\x71\x29\x9b\x52\x0d\x43\x16\x16\x2a\xf4\xd2\x13\x80\x64\x59\xb4\xef\x2a\x0f\x03\xdc\x2c\x03\x2c\x30\x8a\x87\xbb\x49\x22\xb5\x8d\xb2\x3c\x65\xc2\x48\x42\x87\xd5\xd3\xcd\xb1\xd6\xcd\x81\x0a\x41\x38\x60\x23\xb4\x17\x75\xa2\x3d\xe6\xe0\x59\x83\x8e\x73\x78\x2f\x3d\x68\x53\x2b\x38\x6f\x5d\x31\x38\x52\x75\x5a\x72\xc4\x91\x75\xdd\x05\xb2\x3e\x25\x60\x09\x33\xcd\xd5\x4c\x75\x62\xae\x13\xc7\x3a\xb1\xd4\x89\x99\xe3\x82\xb0\x48\x76\x45\x64\x65\x65\xbf\x22\xcc\xd2\x75\xba\x30\x1a\xba\xbc\xe4\x3c\xa9\x20\x34\x8c\x8f\x85\x8b\x4b\x34\x8d\x11\x58\xad\xa8\x4e\xf2\xb5\x59\x26\xc7\xe3\xeb\x15\xbe\xc5\xdb\x89\x2e\x07\x37\x9f\x28\x17\x73\xf5\x4f\xcb\x89\x1d\x03\xe7\xe0\x66\x1d\x4c\x3a\xe2\x35\x7e\xde\x5f\x08\x1d\xa3\xd9\x5e\xf4\xa5\xc8\x38\xa5\x9d\x26\xe9\x78\x36\x81\x65\xb7\x9b\x8e\x97\x93\x6e\x37\x9e\x56\x6d\xa7\x97\x98\x49\x5a\x3e\x05\x70\xd6\xf8\x71\x06\xa4\x25\x9e\x7c\xb5\xe6\xfc\xc1\x3b\xe8\xe8\xd5\xc7\xcb\x78\x06\x23\x1c\x01\x38\xb5\x8e\x38\x16\x49\xae\x79\xc8\xc5\x8b\x83\x6e\x77\x37\x9e\x25\x71\x96\xe4\xe3\x45\x6f\x38\x01\xe3\xc1\x04\x68\x80\xee\x2f\x7a\x3d\xb0\xaf\x9d\x3f\xf1\x42\x19\xe7\x95\x78\x19\x38\x4d\x32\xc9\x2c\xea\x3e\x67\x70\xca\x89\xab\x15\xe2\x6c\x7b\x2f\xaa\xc8\xf2\xce\x2d\x21\xbc\x74\xfd\x92\xcd\x0f\xd0\x28\x7c\xf6\x08\x56\x48\x7b\x54\x46\x49\x40\xb6\x07\x6a\xc2\x64\xe4\x91\x33\xb4\xf5\x38\xac\xb7\xd9\xaf\x6c\xe8\x2d\xa0\xae\x4b\x92\x9f\xa2\x6e\x9e\x63\xde\x26\x03\x1c\x02\xef\xb1\x48\xe6\xf5\x8f\x55\x48\x46\xa1\xb5\xa5\xbe\xdc\x7f\xf3\x8d\x97\x52\x5a\x54\xca\xab\x5c\xe1\xd8\xe2\xa5\xbc\x24\xb3\xd7\x4d\x55\xbf\xa0\xd0\xe1\x3c\x0c\x17\x0d\x41\x2c\xc3\x04\xf5\x8a\x93\x23\x23\xbf\xb7\x59\x61\xf4\x34\x15\x24\x7c\x8f\x10\x41\x34\xcd\x2e\x1d\x31\x65\x47\xf7\x4e\x8e\x3c\x03\x06\xab\xe7\x2e\x35\x7c\x73\xc6\xf0\xfc\x14\xc4\x04\xc0\xdc\x0b\x0b\x84\x75\x40\xce\x24\x49\xf2\x6e\xf7\xda\xbb\xfd\xe2\xe4\xe8\x4b\xd7\xe4\x26\x17\xe1\xd2\x2b\xe5\x8d\xcd\x59\xef\xa6\xf3\x96\x92\xcb\x7e\x04\x06\xbf\x9c\xa5\x45\x01\x84\xdb\xc4\xa9\x48\x42\x8f\x2e\x1d\xb3\x45\x76\x2f\x9d\xa3\x38\x17\x3e\x0c\x1a\xe1\xec\x83\xed\xea\x50\x52\x82\x26\xb0\xb5\x62\xb4\x5a\x45\xae\xb6\xcf\x37\xdf\xbd\x76\xed\x08\x7a\x59\x32\xa7\x1f\x89\x9d\x6a\x67\x9f\xd4\x2c\x38\x77\x99\x25\xfd\x4e\x74\x2e\xd9\x4c\x74\x4b\x60\xd1\x73\xfc\x4f\x47\xc0\x2c\x89\x9e\xdb\x63\x7b\xcf\x45\xcf\x05\x70\x31\xcb\xd3\x59\x0f\x13\xcc\x8c\x73\x85\x9a\x2e\xcf\x06\x10\x99\xab\x1a\xb3\xfa\xeb\x14\x7d\xbb\xc4\x94\x5f\x08\xa4\xfe\x3c\xff\x6f\x77\x20\x36\xdb\x2e\xab\xdd\x2a\x39\x77\xb1\x28\x0b\xd6\x91\xbd\x75\x52\xd2\x71\x46\xd3\x8f\x74\x44\x48\x43\x99\x6c\x5c\x42\x92\x2e\xd0\x6a\x15\xcb\x44\xa2\xcd\x15\x51\x3f\x4b\x0b\x76\x47\x6b\x40\x5e\x8b\xc0\xde\x90\xb3\x35\x6b\xd7\x88\xcf\x2a\xf1\x0a\xe3\x48\x6b\x36\xc9\xaf\xd4\xca\x4a\x52\x8b\x3f\x9e\xe8\xf5\xd1\x59\x3a\xea\x46\x84\xa6\x7b\xd1\x35\x0f\xea\x11\xcc\x55\xa6\xd4\x06\xee\x55\xbe\xa6\xc9\x78\x02\x0b\xfe\x5f\xe9\x79\xb7\x52\xd0\xfe\x56\xd1\x7f\x80\xd2\x87\x0f\x0a\x84\x44\xb0\x87\xc1\x7e\x76\xcb\x7a\xe1\xd6\xbe\xae\xa6\xd2\x03\x37\xdf\x9e\x53\x0f\x4c\x18\x0e\xc0\x01\x89\xa7\x30\xea\xf1\xbd\x1a\x81\xd5\x2a\xd5\x51\xf5\x47\xf5\xe2\x39\x14\x6e\xb1\xfc\x0a\x85\xae\x00\xd6\x95\x67\x56\xe3\x9c\x28\x19\xec\xd3\x5b\x26\x5e\x04\x15\xf2\x2a\x67\x9e\x31\x8b\xc9\x98\x4e\x00\x58\x03\x7e\x70\xb9\xbe\x11\x5a\x34\x23\xe1\x76\x27\xd4\x5c\x8c\x60\x11\xc0\xfd\x45\x3a\xa5\x79\x4f\x93\xe0\xde\x61\x89\xb3\x59\x6f\x9a\x2f\x96\x25\x43\xb3\x0b\xed\x80\x2f\xc4\x8b\x78\x55\xd3\x99\x24\xa8\x3f\xcd\xb3\x2c\x5d\x16\xe8\xab\xe8\xb4\x80\x34\x41\x9c\x40\xff\x16\xaf\x0c\x71\x82\xfa\xf3\x2c\x65\x0c\x11\xf1\x31\xe7\xbb\xa5\x78\x23\x7d\xef\xb4\xaa\x1e\x1a\xdb\xa9\xa2\xda\xd5\x08\xa6\x7a\xe6\x00\x16\xc9\x60\xbf\xb8\x85\xf6\x8b\xbd\x3d\x90\x8e\x8b\x89\x73\x55\x2a\x26\xd2\xaf\x42\x80\x82\x9e\x71\x7c\x1f\x59\x33\xe5\xde\x10\xc0\x69\x9a\x65\x87\xe9\xf4\xe1\xc8\xea\x38\xf6\x86\x93\xf5\x3a\x4e\xa5\x17\x3f\x5e\x45\x78\xf1\xd3\x05\xe1\x3c\x21\x71\x26\x89\xca\x71\x10\x12\x98\x4c\xf3\x05\x26\x47\x2f\xeb\x1a\x1c\x1a\x52\xf0\x74\x9b\x1e\x15\xd6\x49\x79\x50\xe3\x12\x87\xb8\x2a\xe2\x5e\x2f\xa9\xfc\x83\x00\x58\x8f\x62\x9c\x9c\xad\xa5\xa7\x4a\x61\x09\x76\x84\x42\x66\x14\x1d\x51\xa0\xa1\x0d\x7e\x61\x2b\x54\xf5\xc2\xab\x6e\x9c\xa2\x6a\x96\x31\x4f\x44\x51\x20\x80\xa1\x9a\xcb\xa1\xf0\x2e\x05\xb1\xd1\x6b\x60\xb1\x6d\x9d\xb7\xef\xaa\xae\x9e\x55\x81\x33\x9a\x42\x0b\x9a\xe0\x15\x99\xdf\x45\x96\x9e\x6d\x84\x5a\x4d\x61\x5b\xf6\x98\x8d\x10\x14\xdb\x70\x44\xe0\x43\x74\x3a\x62\x7c\x97\xe2\x8a\x6f\xf3\xfc\x20\xc6\x7c\xec\x62\xe1\x01\xe8\x17\x4b\x85\x02\x03\x48\xc1\x88\x7f\xe2\x7d\x50\x00\x31\xe7\x01\x3c\xce\x4c\xef\x66\x5f\xb7\x82\xc5\x38\xce\x00\xd0\x53\x1e\x1f\x4f\x80\xbc\x50\x08\x12\xf0\x72\x49\x29\x46\xb3\x97\x55\xd5\xd0\x8a\x98\x2c\x56\xcf\x72\xcc\x43\xbc\x4e\xe5\xfe\x75\xd4\x93\xf8\x24\xa4\xd5\x8b\xe5\xd1\xcd\x90\x98\x18\xd2\x56\x9a\x25\x14\xc0\x53\xc2\xae\xea\xa5\x7c\x07\xf5\x6f\xbf\xf3\xce\xed\x6f\x3c\x78\xf5\xf6\xcb\xaf\x27\xd1\xff\x1f\xa5\xd3\xe3\x7e\x04\x75\xee\x1b\xaf\xbe\xf5\x9b\xf7\x5f\x4f\xa2\xf1\xa4\x6e\x78\xeb\x8f\x54\x13\x98\xde\x43\x74\x1a\x62\x71\xfd\xd2\xe8\xf1\x32\x25\xb3\xde\x52\x0d\xb0\xa1\x94\x33\xfb\xf3\xea\x2d\x69\xe7\x09\xc6\xa7\x16\x52\x1c\xd5\x18\x4d\x76\x5c\x5e\xd7\x58\xb3\x49\x07\xdf\x5a\xd0\x33\x04\xd5\x65\x77\x03\xa5\x4a\x74\xec\x53\x34\x2b\xa7\x5e\xf0\x4b\xeb\xdb\xbd\x16\x68\xd5\xe1\x48\x12\x8f\x23\x01\x6b\x47\xd6\xad\xd0\x83\x80\x35\x1c\x4f\xc0\x3a\xc6\xc0\xc4\x3e\xd6\x15\x88\xb3\x62\xd6\x05\x84\xe4\xc8\xe3\x50\x41\xb9\x88\x00\x40\xc1\xb6\x1f\x8c\xa3\x68\x32\xca\x5f\x1c\x1c\x8c\x2d\xad\xcd\x7b\x43\x30\x19\x55\x21\xf2\x24\x87\x10\x3d\x07\xbe\x04\xed\x3f\x36\xa0\xd7\x39\x7c\x39\xc8\xd5\x18\x4f\x20\x75\xec\x1d\x42\xb6\xc8\xfe\x0d\xc8\xc1\x0a\x92\x10\xbd\x2a\x66\x31\x14\xf9\xca\x13\xaa\xf0\xe5\x80\x8e\xa9\x3d\x9f\xf6\x86\xa3\x01\xa4\x09\x35\xf5\x7c\x1a\x69\x10\x29\x97\x6a\x80\x67\x7a\x72\x33\x7e\x00\x4b\x42\xf9\x66\xba\x1c\xd1\xf5\x45\x16\xc0\x3d\xe9\xbf\x8e\xd9\xf1\x9b\xe9\x32\x21\x0d\xdc\x81\x3e\x7f\x62\x04\xfa\xde\x20\xb6\xd1\x25\x4d\x76\x7b\x25\x29\xd2\x79\x50\x25\x6d\x0b\xf3\x15\x2c\x75\x84\x58\x4f\x4c\xc6\xb4\x1b\x2c\xa6\xd8\x15\x81\x3a\xba\xe4\xe5\xbb\x55\xf6\x34\xda\x1c\x9c\x38\x73\x21\x1c\x34\xea\x59\x43\xcd\x5d\x8d\x8c\x26\x1c\x74\x78\xac\x91\xa3\x30\xd5\x12\xd0\x97\x05\xe1\xca\xb6\xdb\xbc\x0a\x2d\xc0\x1f\x74\x78\x77\xa9\xba\x84\x8d\x90\xb7\xa0\x35\xd0\xa6\x41\x68\xe3\xf6\xd0\x16\xbc\x4e\x4f\x5c\xaa\x83\x17\x85\x8b\x01\xac\x0d\xd0\x3d\xa0\x9e\xfb\x38\xbc\x5c\xa8\x3b\x6d\x97\x21\xfe\xc7\xfa\x61\xae\xdd\x02\xa6\xea\x16\x90\x01\x38\x4f\x06\xfb\xf3\x5b\xd9\xfe\x7c\x6f\x0f\x4c\xc7\x73\xf7\x16\x30\x9f\x28\x06\x5d\x05\x1a\xab\x51\x2c\x10\x4f\x81\x70\xc8\xec\x51\x25\x38\x4b\x8e\xfb\x92\x38\x2a\xf7\xcc\xe3\x89\xa5\xf7\xa7\x71\xdd\x07\xf9\xa2\xc2\x9d\xc2\xdc\xee\xd2\x71\x3e\x11\xf6\x55\x35\x1c\x93\x7c\x2b\xf6\xf8\x56\xba\x16\x32\x06\x00\xd3\xa4\x74\x39\xf5\x5c\xfb\x2f\xad\xc0\x59\x7a\x82\xb0\x28\x94\x02\x11\xe6\xea\x24\x39\x5b\xef\x2c\x03\x5e\xcc\x9d\xf8\x35\x63\x32\xd9\xa1\xab\x55\x5c\x35\x4a\xf6\x5c\x42\x19\xae\x46\x9d\x70\xd3\xf1\x6c\xcc\x26\xc2\x9d\xb4\x74\x07\x65\xb8\x00\xec\xb2\x0b\xab\x55\xc3\x57\xcd\x23\x54\x2f\xa5\x68\x2d\xc6\xa6\x0f\xbe\x90\x99\x74\x7d\x50\x07\x91\x02\x62\x3f\xda\x43\xa3\x88\xe4\x44\x4a\xf3\x8a\x7e\xb4\xc7\x64\x83\x3b\x0b\x29\x4d\xc8\x01\xa4\xdd\x6e\x7c\x32\x8e\xf8\xc1\xbe\x47\xf6\xa2\x57\xf0\xec\xe5\xe3\x94\x1c\xa1\x48\xfb\x7e\xcd\x0f\x0b\x44\x4f\x10\x8d\x73\x78\xca\x0f\x4c\x31\x96\xa3\xa4\xd0\xae\x6b\x4e\xe0\x59\x4e\xee\x10\xcc\x46\xaa\x3c\x89\x23\x4c\x30\x8b\x5c\x85\xfc\x53\xc9\x89\x4b\xfd\x7b\x4e\x07\x0e\x93\x4d\x37\x88\x8a\xcc\xf9\x29\x5d\xfa\x63\xdf\x93\xc4\xd4\xb9\xc2\xd4\xaf\xb2\x2a\x7c\x50\xd8\xe9\x02\x4e\x52\x1d\x58\x1d\xaf\x56\xb1\x50\x82\xef\xe4\x30\xe5\x17\x44\x71\x75\x94\x50\x2c\x12\x71\x29\x55\xbe\xa2\x8d\x78\xbc\xd8\x29\x12\xa3\x8d\x21\x22\xd1\x11\x68\xef\x73\x76\x3d\x47\x9e\x27\x21\x55\x5e\xc4\x57\x14\xfd\x50\x58\x00\xe8\x79\x00\x93\xe5\x8d\x05\x62\xb7\x8b\xfa\x39\x27\xc6\x8f\x70\x96\xbd\x82\x0a\x46\xf3\xd3\x57\x33\x24\xb5\xca\x9c\xc5\x2b\xfa\x33\xf9\x31\x76\x98\xe5\x62\x2d\x77\xd9\x11\x44\xf0\x90\x5f\x2a\x97\x35\x86\x5c\x45\x60\xf5\xf1\xd4\x5c\x09\x64\x5c\xa5\xdc\x78\x28\x88\xc1\xa4\x89\x18\x10\x45\x0c\xb0\x20\x06\x48\x85\xc7\x38\xab\xde\x46\xe5\xa4\xa3\x25\x45\x27\x88\xb0\x57\xf2\xf2\x30\x43\xef\x20\x32\x43\x34\x82\xbb\x03\x2d\xda\x2e\x10\xb3\xb1\xfa\x63\xda\xb7\xf0\x84\xd8\x29\xd3\xdc\xd2\xd0\x8d\x61\x46\x1d\x32\x03\xd6\x13\xc0\xaf\x25\xe9\xec\x2e\xc9\x4e\x63\x33\xba\xc3\xf5\xda\xf3\x55\xf3\x75\x94\x3e\x7c\x33\x5d\xc2\x54\xa2\x85\x42\x85\xa0\x5b\x28\xdd\xb6\xd9\x96\xa3\xca\xa6\x74\x88\x5c\xf5\x2d\x4b\x3e\x52\x2b\x18\x42\x66\xfc\x25\x43\x89\xbc\xfd\xc0\xec\x76\x50\x1f\x17\x0a\x13\x30\x39\x92\xaf\xe6\x66\xf1\x47\x64\xb5\x42\x7d\x92\x33\x3c\x3f\xd5\xa4\x56\x8e\x4a\x5c\xa3\xb6\x9f\xef\xf2\xe6\x7f\x8e\xa3\xbd\x2d\x57\xa5\x3e\x5f\xa9\x55\x05\x0b\x8a\x2f\x40\x6c\xad\x2d\xb6\x4c\xbf\x72\xeb\xee\x65\x38\x1c\xe0\x64\xf3\x5d\xfd\xea\x5d\x6a\x39\x37\xed\xfa\x15\xdb\x75\xae\xaf\x88\xa3\xbf\x69\x09\x50\x97\xe7\xf3\x41\xe3\xe9\xbe\x63\xca\xa3\xc3\x5e\x49\xe5\xa6\x92\x43\x72\x88\x03\xf2\x06\xc2\x38\x51\x96\x53\x46\x22\x3a\xd0\xb6\x29\x86\x2e\x4a\x5b\xd7\x7b\x03\x7b\x7f\x95\x8b\x5d\xbd\x78\x87\xa5\x2b\xce\xa3\x0e\xb3\x6e\x30\x3a\x91\xf0\xe9\x2b\x38\x0a\x26\xc2\x1d\xb6\x58\x7f\x9f\xe3\xde\x06\x15\xec\x5c\x08\x5a\xcb\x1f\x54\x50\xac\xea\xd4\x6c\x60\xb0\x07\x33\xb4\xe4\x74\x8f\x30\xce\xdf\xda\x98\x60\x49\x92\x60\x75\x18\x1b\xc7\x1a\x31\x86\x44\x28\x7b\x36\xca\xb6\x3a\x68\x87\x98\x30\x1b\xae\x48\x8c\x0f\x32\x2c\xf4\x90\x33\x58\x5f\xea\x7b\x83\xc4\xeb\xd8\x97\xe4\x33\x1d\xa7\xc8\x93\xe4\xcb\xa0\x7a\x3a\x48\x6f\x8c\x79\x31\x21\xc6\x92\x22\x73\x22\x13\x90\x01\x98\x4b\x29\x38\xcf\x29\x44\x8e\x09\x4c\xb3\x75\x17\xd4\xa5\x0a\xed\x2f\x74\x57\x8e\xff\xfa\xa8\xac\xa9\x9a\x0d\x82\xaa\x66\x03\x57\xd5\x6c\x30\x19\x9d\xad\x61\xf5\x06\x63\x95\x17\xac\x4f\x89\x03\x32\x42\x7d\x31\xc7\xd6\xc0\xba\xc4\x2d\xf1\x79\x81\x13\x32\xbc\x08\x4d\x14\x38\xc4\xf3\xd7\x43\x74\xba\x13\x22\x42\x14\x1c\x50\x11\x8d\x8f\xf1\x7b\x02\xbf\x3e\x10\x11\xd1\xb2\xba\xff\xe8\x01\x1d\x69\x07\xa0\x2f\x65\x29\x79\xc8\x6b\x92\x91\xe5\xd1\x94\x17\xaf\x8d\x80\x6f\x74\xb1\xd1\x24\x10\x3a\x8f\x04\xa3\x25\x37\x14\x2c\x96\xa5\xef\x9d\xb6\x2b\xd3\xb2\x3d\xe1\x2d\x27\x6b\xf8\x4a\xd3\x47\x4d\x5f\x50\x3a\x6b\x82\xca\x23\x8a\x85\xd2\xdc\x96\xf8\x0b\x57\xe6\x89\xdc\x4e\xf9\xdc\xae\xc8\x37\x34\x2a\xd6\x52\xa8\x88\xbc\x7c\xbe\xf6\x49\xbb\xf6\x7d\x46\xb2\x65\xdb\xb4\x55\xdb\x1c\x21\xce\xd9\x30\x6e\xdf\xf0\x85\x06\x9e\xb7\x6b\x5f\x63\x67\xab\x36\xd3\x56\x6d\x0a\x9c\x6e\xd5\x5e\xd1\xae\x3d\xb9\x13\x5a\xb5\x58\xb6\x6a\xd1\xec\x9f\x76\x8d\x66\xfd\x0d\xae\xf4\x9b\x0f\x89\xa7\xca\x61\x87\x1c\x90\x5b\xf1\x03\x1f\x8f\x6e\x7b\x1b\x65\xae\x10\xc0\x67\x82\xf8\x27\x16\xc4\x43\xa9\x60\x22\x3a\x69\x05\xfc\x2b\xba\xb7\xfb\x2b\xfb\xf9\xbe\xbc\x1b\xc2\xb4\x6d\xea\x9c\xda\x7c\xf1\x02\x70\xf8\x73\x30\x21\xd9\x7a\x29\xa5\xe9\x69\x3b\xa5\x82\xc6\xf7\x91\xab\xbb\xc2\x07\x4c\x44\x86\x41\x7e\x74\xe8\xf2\xa3\xc3\xc9\x68\x3c\xd9\xd9\x72\x93\x93\xaf\x01\x4a\x1c\x8d\x5d\x85\x01\xef\xfd\x5f\x0b\xfc\xb1\x75\xb6\x5b\x2c\x33\xcc\xe2\xa8\x1f\x01\x98\x26\xf9\x38\x77\xae\x5b\x34\x19\x08\x27\xd2\xe6\xe6\x7c\x16\x81\x83\x54\x85\xbd\xc4\xe4\x28\x1e\xc2\xd4\x14\x07\xba\x25\x18\x81\xd1\x38\x9d\xac\xa5\x2f\xbd\xc0\x50\xd4\xeb\x81\x7c\x64\x17\x97\xd7\x03\x94\x44\xd1\x08\x73\xee\x3c\xb6\xba\x9b\x03\x88\x7b\x42\x59\x33\xfc\x00\xaf\xc1\x86\xba\x5d\xa1\xd0\x40\x4d\x47\x08\x74\xbb\xd4\x89\x20\x29\x05\x96\xbe\x16\xd1\x40\xd4\x50\xef\xf1\x45\xe2\x8f\x6d\x14\xdb\x1c\x0e\x38\x38\xf4\x4a\xef\x25\x94\xdf\x12\x8a\xbd\x24\x3a\x8b\xf6\xa8\xf2\xde\x07\x23\xb0\x17\xad\x23\x1b\x7a\x5c\x32\xf7\x08\x1c\x14\x23\xb4\x17\xf5\xa3\xbd\xad\x0f\xe5\xe2\xe8\xff\x0c\x8e\x3d\xff\x6d\x23\xa0\x7b\x80\xd6\xae\xa0\x78\xeb\x34\x24\xc7\xb1\x6d\x07\x36\xb0\xe1\x5f\x3c\xfa\x63\xf9\xa1\xd6\xf7\xb1\xa7\x10\x69\xc0\xbc\xed\xf8\x2e\xb3\x5c\xcd\x83\xb5\x13\x1c\xdd\x75\xb5\x69\xe5\x4a\xf4\x20\x2a\x89\x1c\xc8\x2c\x1a\x91\x98\x02\xb1\xb7\x0a\xc4\x0e\xa4\x86\xa1\x48\x8f\x2a\xda\x86\x0e\xfb\x1f\x36\xa5\x03\xb0\xea\x1d\x1c\x83\xf5\xaf\x9a\x47\xd5\x3a\xd6\xe4\x7c\xfa\x06\x09\x38\xdf\x91\x16\xe7\xc0\x9a\xb0\xf6\xca\x95\x52\x86\xc0\x3b\x7e\xfd\x14\x83\x34\xd1\x21\xb7\x21\x4e\x06\xfb\xf8\x16\xd9\xc7\x7b\x7b\x80\x8e\xb1\xfb\x8e\x8f\xad\x3d\xb1\x31\x2c\xf2\x9d\x5c\xd5\xdf\x2f\xdd\xa7\xd3\x5a\xb7\xfa\x25\x95\xf1\xb3\x64\xb0\x4f\x6f\x31\xe9\x98\x60\x4c\xdd\x6e\xa9\xa3\xc9\x65\x5e\x75\x21\x11\xaf\x5f\x21\x95\xca\xea\x22\x4d\xd3\x0c\x91\x59\x5a\x89\x20\x24\x8b\xd9\x05\x0b\x2f\xed\x25\x33\x89\xea\x98\xaf\xef\xb3\xda\xdb\x7f\xed\x09\xda\x35\x50\xac\xec\x9a\x0e\x26\xca\x5e\xdf\x29\x18\x52\x53\x14\x8a\x71\xbb\x9c\xbf\xd8\x1d\x42\xa3\xd7\xc6\xe8\xa9\x59\xa4\x14\x16\x09\x1a\x57\xda\x9f\xc4\x60\x7f\x37\xa6\x49\x9c\x26\x45\x9f\x08\x1f\xe9\xa0\x3f\xcb\x89\xb0\x4d\x55\x22\xe8\x54\xf9\xcc\x85\xbb\x6c\xb5\xd2\xca\xfc\xbb\x49\xc2\xc0\x3e\xef\x12\xec\x2b\x47\xe9\x25\x38\xc3\x7c\x08\x79\x52\xae\xe7\x98\xa4\x59\x76\x7a\xc6\x07\xb0\x4b\xbb\xdd\xa2\x2f\xc7\x6e\x53\x31\x30\x85\x84\xe8\x58\x39\x51\x37\x81\x99\xc9\x5a\x4c\x6f\xc7\x9a\xa1\xdc\x3f\x5d\x22\xe5\xe0\xe0\x0e\x39\x49\x33\x3c\xeb\xf0\x1b\xc9\x62\xc9\x3a\x2c\xef\x88\xa7\xc5\x72\xca\x4a\x8a\x3a\x24\x27\x3d\x31\xc3\xc3\xcc\xde\x1a\x23\xb0\x5e\xc7\x15\x65\xb0\x06\xf7\x66\x4f\xc4\x10\x9e\xad\x85\x01\x0d\x5a\xad\x90\x8d\xe4\xf5\xe2\x0d\x10\x9c\x88\x8b\xa1\xa3\x8e\x9e\x96\x0c\xd9\xd4\xc9\xe7\x1d\xd3\x32\xec\xa4\xac\xb3\xc8\x0b\xd6\xb9\x11\x69\x01\x3c\x8d\x11\xbc\x01\x60\x9e\xe0\xf1\x60\x02\xd3\x04\x8f\x87\x13\x58\x24\x78\x7c\xdd\xb1\x3d\xd1\x9e\x18\x00\xcc\xd4\xbb\xf0\x02\xd1\x23\x14\x97\xb0\x00\x41\x59\x69\x2e\xd4\xce\xc5\xb6\x8a\x53\x98\x05\xdf\x62\xab\x3b\x6a\x56\x52\xe5\x33\xe6\x33\xdf\x87\xe7\xf0\x5f\xe7\xd0\x3a\x3d\x01\x7d\x26\xda\x5b\xef\x67\xa3\x3e\x82\x82\x1e\x05\x6b\x10\x94\xce\x7a\x3e\x07\x50\x7f\x46\xfd\x7e\xd5\xa8\x1f\x27\x2e\xd7\x39\xcf\x20\x7c\xfa\xe4\xc2\x0d\x90\x20\x6c\xb9\x2c\x91\x5a\xfb\xd0\xbb\x8f\x08\x92\xa6\x28\xe2\x16\x9b\x76\xbb\x69\x35\x58\x6b\x20\x2b\x8e\xa6\x39\x99\xe3\xa3\x11\x22\x27\x98\xe6\x44\x60\x2d\xd0\xa1\x75\x53\x11\xcb\x3b\x3b\x41\xdb\xab\xec\x14\x15\x73\xd5\x42\x6f\x82\x7e\x5e\xb2\x65\xc9\x5e\x93\xbb\x84\xb3\x14\x21\x82\x87\x45\xfc\xfb\x45\xca\xe2\xbc\xdd\xa6\xa3\xf9\xa2\x47\xf2\x47\x9f\x83\x6d\xd7\x8a\xd8\xb9\x0e\xa3\x2c\xbb\x65\xcf\xb4\x58\x04\x2f\xca\x97\xc2\xb9\x41\x98\xfb\xfb\xec\xa8\xa0\xf8\xf1\x56\xfe\x28\x26\x62\x6d\x76\xb6\xac\xcd\x71\xb9\x48\x49\xcd\xb5\xea\x33\x92\xf8\x8c\x24\x5e\x15\x49\xac\xfb\x63\x28\x5e\x51\xcc\x44\x8c\x81\xd0\xd8\xac\xb3\x19\x31\x06\x00\xe2\xbe\xc6\xd6\x96\x84\x27\xcb\x39\x63\xf6\x0c\xb5\x9f\xa1\xf6\xe7\x06\xb5\xab\x27\x29\xc7\x6a\x89\xa6\x2d\x71\x5a\xe3\xef\x67\x8e\xd3\x17\xbb\x37\x7c\x4e\x4e\xc9\x36\x90\x66\xf9\x33\xa6\xe5\x69\x31\x2d\x2c\xb7\x2c\xcb\xd6\x75\x79\xef\x73\xb0\x26\xcf\x28\xfa\xaf\x11\x45\xaf\x5d\x7f\xd8\x7b\x2d\xa9\x75\xc9\xa6\x9f\x03\x64\xbd\x18\xa9\x2e\xd9\xf4\x0b\x21\xdd\xb1\x8a\x0f\xe9\xd3\x88\x97\xe9\x39\xdc\xd2\xb6\x22\x4a\x20\xa9\x5e\x4b\x89\x68\xbc\x40\xf4\x44\xb8\x75\xd0\xae\x3e\xef\x10\x86\xe8\x49\x9a\x8d\x76\x87\x50\x46\x52\xb9\x9d\x65\xf9\xa3\x57\x17\x4b\x76\x3a\xaa\x98\x64\x1d\xe6\x79\x16\xeb\x5b\xf9\x83\x07\xf2\x1a\xff\xe0\x41\x3f\x35\x35\x22\x00\x95\x83\xda\xe2\x37\xab\x8d\xed\x0e\xa0\x64\x2a\xee\xd2\xfb\x78\x81\x7e\x3b\x27\x48\x1a\x8b\xcc\x6a\x36\x2c\xaa\x0b\xcd\x2a\xeb\xdf\x4c\x55\xf3\x4c\x5b\xa4\xbb\x3e\xa4\x06\x29\xcc\x9d\x54\x3a\xe8\x20\x43\x99\x69\xb1\x3e\x56\x13\xdf\xa9\xc6\x8b\xae\x00\x26\x02\xda\x1b\xeb\x34\x43\xa9\x18\x3a\x8d\xa5\x99\x9c\xf2\xa5\x28\xcb\x89\x0f\x49\x81\x18\x4f\xe4\x25\x73\x1f\x79\x65\x17\xb4\x24\x81\x97\x5f\xe2\x0f\x5e\xc5\xcf\xbd\x43\x58\x4c\xe1\x70\x20\x9c\x82\xc0\x45\x4e\x97\xc7\x6f\xca\xe5\x0c\xbb\x37\x90\xa0\x12\x13\xd3\x50\x82\xb8\x16\x0a\x5b\x6d\x74\xa3\x91\x4c\x12\xa2\xe3\x2d\xf1\x42\x18\x46\x0a\xe4\x00\xd2\x84\x56\x3e\x19\xe8\x03\x48\x84\x4c\x5c\x14\x55\x0a\x05\x8a\x5d\x24\x40\x40\x06\xf5\xd9\x7b\xea\x03\x7b\x2f\xa6\x40\xd8\x00\x58\xf0\xb9\x8f\xc1\x26\x97\x83\xac\x0e\x50\xb0\x86\xca\xdc\xa8\xe6\x8e\xd6\x5b\x0e\xe5\x0c\xb3\xe4\xf8\xdf\xe0\x1d\x76\xeb\x5e\xc5\x45\x2f\x9d\x33\x44\x83\xef\x85\xc1\x6d\xed\x7f\x94\x4e\xcf\x64\x11\xad\xc6\x74\x85\x54\xd3\x12\xc5\x8a\x71\xd8\xa8\x31\x06\x8f\x46\x18\x81\x27\x4b\x8a\xa6\xb8\xc0\x39\x91\xbe\xc7\x25\x02\xe5\x0e\x02\xed\x6c\x05\xea\x4e\x45\x86\x58\x41\x33\x7e\xda\xeb\xa7\xc4\x92\xb3\x07\x99\x63\x62\x33\x4c\x92\xa4\x38\xc8\x94\x16\xc9\x78\x30\x01\xa3\xeb\x3c\xab\xdb\x8d\x4b\x27\x13\x9a\x12\xc3\x09\x00\x30\x56\xb6\x6a\xce\x8e\x88\xd3\xbe\xa2\x0f\x72\x8c\x29\x2c\x01\x3c\x93\xf3\x19\x61\xa8\x67\x33\xca\xd7\x00\xf0\x63\x81\x2f\xb1\x2a\x4a\x60\x66\x5e\x44\xa5\x23\xac\x56\x58\x72\x88\xe6\x39\x0d\x3f\x2b\x6f\xc0\x84\x8d\xa8\x74\x75\x68\x42\x36\xa1\x09\x7b\x86\x26\x0d\x68\xf2\x92\x58\xe3\x27\xc5\x13\xf6\x08\x21\xf2\x6b\x89\x28\x98\x4c\xb3\xb2\xc0\x27\x98\x9d\x0a\x6c\x51\x88\x93\x9e\x1f\x71\x8a\x66\xc4\xe1\xd8\x62\x4d\xf0\x60\x66\xf0\x88\x5f\x63\xb2\x5b\xd7\x57\xab\xec\x12\xde\x6c\xd1\xe3\x25\x9a\x32\x34\xeb\x5c\xef\xe4\xd4\xbc\xdc\x4e\x1d\x24\xcd\x5e\xbc\xde\xed\x4e\x25\x06\x96\xfd\xe2\x18\xcf\xf9\x25\x26\x88\x85\x85\x8f\x85\x05\x9c\x5a\x2c\xcc\x2d\x16\xa6\x1a\x0b\x05\x06\x19\x34\xfc\x8c\x58\xdd\xd2\x1a\xbe\x53\x88\xdb\x6f\x00\x15\xb7\x7b\xeb\xb1\xfa\xab\xbb\x0d\x7e\x6d\xe8\xe5\xbd\x74\x81\xee\xd2\x4b\x38\x5c\x35\xce\x3c\x3b\x64\x7f\x5d\x90\xe6\x32\x8e\x5a\x8e\x35\xcf\x70\xe5\x57\x1d\x57\x9e\x00\x47\xe4\xcf\x5e\x3a\x0b\x5b\xab\x5c\x11\x9a\xb8\x56\xdf\x5f\x10\x77\xb5\x4f\x82\x9e\xd8\x43\xcf\x2b\x64\xfb\x0c\x7a\x72\xcc\x84\xd3\x0a\x7a\x96\x07\xd3\x2a\x7a\x96\xdd\x6e\x44\x04\x73\x17\x99\xf8\xd3\xec\x74\x89\xee\xce\x65\xa1\x6e\xd7\xfa\x4d\xaa\x7e\x1e\x4e\x80\x6a\x50\x0d\x77\x0a\x45\x34\xda\x51\xec\xee\x02\x58\x2f\xa2\xcc\x2c\x86\x00\xb4\x65\x06\xb3\x66\x66\x30\x9d\xcd\x0c\xfa\x4f\x0d\xfa\xb7\x65\xc6\x14\xfa\x87\x55\x6d\x3f\x5f\xa4\xf2\xd9\x2b\xc6\x17\xed\x15\xe3\xfc\x24\x43\x7b\xa6\x78\x22\xed\xdc\xad\x74\x04\x5e\xbd\xfe\x2e\x69\xa6\x52\x0d\xa7\x33\x4c\xb5\xca\x6f\x91\xa4\xe3\xc1\x04\x96\x49\x3a\x1e\xf2\x33\x36\x1d\x5f\xe7\xb4\xcc\x57\xf9\x65\x60\x47\x45\x59\x9b\xea\xd6\xcc\x6f\x43\x51\xf9\x48\xe6\x6a\x24\x69\x51\xe0\x23\x12\x4f\xa1\x8d\xd9\x56\xa3\x3b\x44\xd1\x9d\xb8\x68\x3a\x71\xad\xf6\x70\x09\xe7\xe7\xa1\x30\x33\x3c\x9f\x3f\xa3\x2e\xcf\xa8\xcb\x67\x49\x5d\xdc\x87\x11\x9f\x5b\x9e\x67\x79\xca\x1a\x19\x93\xf3\xd0\x94\xeb\x22\x8e\x85\x62\xd3\x9e\x94\xaa\x88\x88\x1c\x87\xa8\x73\x3d\x6a\xc1\xfb\xa8\x37\xe1\x2c\x29\x65\xb4\xa6\xd2\xd5\xf2\x69\xe2\x30\xe2\x46\x31\x53\x9f\xef\xd8\x38\x83\x04\xe2\x73\xed\xf3\x73\x18\x0b\x7c\xf6\x37\x2b\xdf\x61\x99\x24\x01\x44\xe3\x00\x4e\xc8\x79\x99\xd3\xbc\xf9\x69\x2d\x60\x36\x72\xfd\xd2\x8e\x1d\x8d\x20\x69\x92\xeb\x85\xfd\x5c\x9b\x3f\x34\x1f\x41\x69\xff\x01\x36\x18\x49\x2d\x46\xe2\x35\xb0\x1a\x95\x6d\x5e\xed\x14\x3e\x86\x8c\x28\x3e\x5f\x27\xcf\x46\x44\x55\xbf\xa5\x92\x7b\xb3\x73\x47\x75\x5d\xf0\x4a\xb7\x7d\x0d\x6f\x27\x5d\x30\x7b\xe2\xdc\x17\xb6\xe6\x3d\x01\x53\x4f\x30\x9f\x9e\x8f\x0f\x23\x1b\x65\xf2\x55\x86\x4c\xc5\xec\x11\x42\x8b\xf0\x78\x2a\xd0\xb3\x0e\x4c\xdd\xcb\xdc\x90\xf3\x9f\xfa\x01\x1c\x17\x42\x83\x21\xce\xc0\x01\xbf\x4b\xa6\x07\xa5\x23\xdb\x18\xa5\x2f\x5e\xef\x76\x63\x53\xfb\xfa\x04\x40\xf7\x3b\x18\xa9\x5f\x59\xf8\x0e\x98\xfb\x77\xc0\x1c\x3a\x3c\x99\xbf\x2f\xb4\x85\x83\xb9\x06\x96\xe7\x21\xd8\x61\x83\x87\x2f\xd0\x16\x39\xcf\xa9\x7f\x8c\x67\xe8\x5e\x39\x9f\xe3\xc7\x02\xa9\xf9\xcf\xdb\xe2\x57\x93\xc8\x4c\x7b\x8d\xe6\xec\x02\x67\xbb\x23\xdb\x42\x07\x17\x1d\xf3\x41\x44\x7d\x9c\xa7\x27\x79\x29\x30\xd2\x34\x1c\x41\x63\xd1\x4d\xe0\x19\x9e\x8d\x3c\xa8\xf1\xcb\x7b\x4e\x54\x24\x3c\x7d\x24\x3b\x2b\x52\x12\x86\xb3\x51\xf4\x95\xfe\xa0\x3f\x88\xd6\x2d\xb4\x19\xb6\x0b\xf0\xc8\x6a\x45\x37\x10\xdf\x8a\xe4\xed\xb3\x3b\x21\x9a\xee\x1f\xda\x62\xa4\x38\x2f\x8e\xff\xea\xe3\x37\xa4\x10\x27\x31\x4d\x10\xf4\xd7\x89\x82\x03\x3a\x72\x20\x4c\x81\x6b\x56\x6a\x84\x51\xb0\xf0\x76\x44\x69\x77\x44\x76\x7e\xa2\x3f\xdd\xa6\x63\x14\x22\x79\x53\xcd\xbb\xe4\x76\xf9\x4b\xbb\xfc\xd9\x5a\x59\x0c\x7d\xd6\xcf\x9e\xa9\x7d\xf6\x2c\xce\x27\x67\x2b\xca\x43\x46\xd3\xe9\x53\xe5\x47\x9e\xc9\x9a\x9f\xc9\x9a\x2f\x49\xd6\xac\xd1\xf7\xc9\x05\xce\x2c\xef\xcd\x52\xf6\xeb\xf2\x34\xc7\xa9\xea\xdb\x14\x6d\x62\x34\x9e\xf4\x68\xdf\x40\x56\xf5\xa9\x1e\x37\x3f\xa3\xb1\xfc\xb3\xa6\xa9\x08\x5c\xf4\xe9\x2e\x64\xfa\xf2\xab\x88\x49\x3e\x1e\x3d\x01\xfb\x2a\x5b\xb8\x32\xf6\x55\xaf\xc7\x33\xe6\xb5\xc6\xbc\x4a\xcb\xa1\x73\xb1\xae\x2c\xff\xd5\xc7\xec\x5f\x0b\xc6\xf5\xb3\x27\xb1\x17\x66\x5b\x5b\x2b\xbe\x5f\x95\x7f\xac\x66\x95\xf6\xd6\x56\x0f\x2d\x97\x7f\xbb\x6d\x44\x6d\xf1\xb1\x4f\x77\xf0\xe7\x81\xee\x10\x8b\x7c\x74\xdd\x46\x5a\xda\xd2\x78\xf4\xb3\x27\x26\x01\x7f\x81\x5b\x9f\x66\x9a\x96\xb4\x2e\x2a\x27\xf9\xa3\x18\xb4\x81\x57\x49\xf0\xe3\xcf\x1c\x60\xcf\xde\x2c\x7f\x75\xde\x2c\xc3\x36\x9e\x43\x30\x1e\xf8\x8f\x78\x97\x84\xe8\x1c\x7f\x45\x08\x9e\x16\xa8\xde\xce\x2c\xf4\x19\xa6\x3f\xc3\xf4\x27\xc0\xf4\x46\xff\x14\x17\x47\xfa\x92\x4d\x63\xcf\x42\x38\xc6\x30\xdf\x88\xf2\xca\x0a\x76\xa3\xe3\x8a\xab\xe2\x71\xe4\x34\xee\xc9\x11\x68\xa0\xc9\xcc\x57\x4f\x10\x61\x68\x06\xcf\x1e\x98\x53\x9d\x94\x59\x06\xf5\x61\x6f\xd3\x77\x97\x7c\x60\x85\xcc\xf2\xde\xb3\x64\x96\x35\xce\x1d\x35\xbb\x1e\x96\x11\x5c\x42\x0e\xc0\xfa\xf3\x74\xca\x72\x7a\xfa\x5a\x4e\xc3\xde\xba\xfa\x22\xa2\xc9\x6a\x75\xb6\xf6\x23\x66\x89\x18\x87\x76\x69\x78\x01\xcf\xb1\xb1\x65\x57\x2a\xc3\x8a\x1e\x58\xe3\xde\xb3\xb0\xbf\xe0\xea\xfa\xdb\x1a\x60\x0d\x0b\xcf\x03\xaf\x0a\xf4\x64\x91\x82\xbd\x07\xbc\x56\x8a\x40\x2b\x90\x00\x48\x76\xa6\x39\x29\xf2\x0c\xf5\x1f\xa5\x94\xc4\xd1\xd8\x45\x9b\x89\xde\x29\x68\xc6\xf7\x4a\x81\x58\x87\x57\x7e\x2f\x27\x08\x76\x0e\x4b\xd6\xd1\x57\x39\x95\xc9\x6f\xde\x24\x67\xbc\x60\xb9\xec\x47\xc2\xab\x73\x81\xd8\x1b\x72\x35\xdd\xed\x21\xed\x59\xc5\x93\xaf\xfc\xca\x19\x3d\x58\x2e\x67\x29\x43\x81\xe2\x4f\xaa\x3b\x17\xe8\x0e\x32\xb0\x86\x6e\x56\x60\xfb\x5e\xbc\xc3\x50\xa0\x45\x01\x7e\xcd\xc7\xa2\x2a\x5e\xaf\x5d\x87\x20\x2e\x20\xc4\xe2\x4a\x19\x03\xa3\xf8\xe8\x08\xd1\x58\x19\x2d\x2b\x63\xf2\x08\x22\x89\x0f\xda\xc8\xbc\x09\xd2\xfa\xbb\x80\xb5\x9f\xe5\x55\xa9\x62\x8c\x45\x18\x54\x1d\x08\xf3\xed\xda\xe5\x50\x70\x51\xb3\xdc\x0e\x38\x36\xd0\xa5\xc4\x68\x16\x95\x0a\x26\x80\x63\xd8\x47\x8a\x43\x24\x1d\x7d\xc4\x2a\xac\x23\x63\x4e\xef\x58\x72\x37\xa9\xc1\x58\xb7\xd5\x61\x43\x6f\x7e\x45\xc7\x55\x43\x6f\x2c\x0d\xbd\x4b\x36\xdd\x34\xf4\x90\x0b\x87\xf3\xcd\x00\xa8\x51\x98\x9b\xd2\x26\x73\x74\xb4\xe1\x1c\x08\xcb\x55\x3e\x03\xff\xf0\x26\x8b\x29\xd2\xc5\xb9\x04\xd6\xed\x0e\x92\x84\x5f\x73\x2f\x47\xcb\xcc\xd5\x99\xc8\x50\x5a\xb0\xce\x30\xd2\x1c\x17\xe3\x27\x32\xc7\x00\xeb\xcb\x61\xb5\x22\xe3\x48\xfc\xec\x21\xe1\xdb\x41\x78\x8e\xe4\xc7\x4b\x92\xe0\x6e\x37\xae\x5f\xa1\xab\xfe\x23\x22\x50\xf5\xd5\x4f\x01\x90\x8c\x8a\x9c\xb7\x4f\x6d\x9f\xf3\xe7\x92\x92\x8e\xe8\xb7\x23\x80\xd8\x11\x3d\xc3\x8e\x71\x96\x0e\x3b\x39\xed\x44\x11\xe8\x3c\x4a\x8b\xce\x32\x2d\x0a\x49\x95\xdd\x36\x3a\x72\x65\x9f\x33\xb1\xe9\x50\x93\x6f\x80\x9a\x4f\xc2\x65\x7a\x84\x7a\x0c\xb3\x0c\x19\x86\xd7\x66\xb5\x44\x11\xf3\x20\xc7\xc2\x64\x44\xb4\x84\x9c\x78\xb7\x4f\xf4\x96\xa6\x98\x55\x57\x29\xb9\xe2\x0f\x84\x4f\xe0\x3e\xef\xf5\x0d\x5c\x34\xba\x05\x39\x46\xe9\xec\x95\x94\xa5\x4d\xdf\x31\xc1\xac\xe6\x8a\x41\xf2\x6d\x71\x9d\x47\xf3\xba\x8c\x80\x64\x85\xcf\xb0\xf6\xf8\x71\x54\xe2\x19\xe7\x31\x74\x18\xe8\x90\xe7\x0e\xa3\xaf\xb7\xa5\x6d\xe3\xee\x42\x29\x40\x9f\xad\x21\x31\xc2\x1c\xdc\xc7\xb3\x24\xd0\x27\xc4\x7d\xb1\x0e\x09\x52\x31\x26\x38\x49\x94\xa3\x34\xb1\x7f\x69\x49\xfa\xc5\xf4\x18\x71\xe0\xdf\x25\x53\x14\x47\xc2\x9c\x55\x87\xff\xad\x0e\x4b\x03\x30\x02\x90\x41\x0a\x60\x14\x05\x5d\x58\x54\x98\xaf\x86\x39\x91\xd0\xa0\x77\x50\x9f\xa2\x45\x7e\xc2\xe9\xdb\x4e\x05\x36\x2e\x13\x97\xe5\xf9\xc3\x72\x19\x47\x34\x2f\x19\xa2\xa3\x45\x8a\x89\x00\x53\x4c\xfb\x0f\x64\xde\x9b\x78\x4a\xf3\x0c\x1f\xae\x56\xb4\x2f\x73\x38\xc7\x06\xfa\xe9\x94\xe1\x13\x74\x9f\xa6\xa4\xc0\x4c\x3e\xaf\x36\x4f\x73\x07\x1f\xe0\xfe\x92\xe6\x0b\x5c\xa0\xbe\xba\x8d\xb8\x6c\x66\x6e\x43\x08\xa3\x99\x56\xa9\xda\x02\xd4\x1c\x32\x7e\x76\x82\xd1\x79\x4a\xaf\xbd\x7b\x49\x8d\xe6\x3b\x5b\xda\xf0\xff\x36\xaf\x31\xfa\xee\x34\x5f\x5e\x5d\x90\xdd\xc0\xa6\xad\xdc\x0c\xce\xda\x6c\x38\x87\xaa\xe4\x0f\x11\x29\x34\x56\xde\x8e\x41\xbd\x88\x3c\x4d\x22\x38\xd0\x4f\x35\x12\x99\x5e\x7d\x8c\x0b\x86\xc9\x91\x40\xbf\xfb\xe9\x51\x2c\x5c\xaf\x88\x61\xde\x43\xcb\x54\x5c\x74\x47\x51\x67\xd5\x89\x74\xf6\xdb\x54\x44\x4b\x1d\xed\x0e\x74\xce\x3b\x68\x99\xa5\x53\x75\x53\x91\x43\x91\x69\x41\x76\xef\xf3\x8c\x57\x64\xc9\x22\xc0\xd0\xd6\x1c\xf1\x54\x7a\x8f\x3c\xe6\xc0\x2f\xa4\xc6\x22\x38\x9a\x86\x22\x6a\x70\x11\xd8\x91\x67\x18\xea\x17\xba\x65\xce\x35\xd8\x5f\x09\x03\x50\x17\x59\xca\x76\xbb\x5d\x9e\xb1\x9b\x10\x51\x52\x65\x26\xc4\x96\xa3\xb2\x71\x5d\x4e\xb6\xa8\x32\x13\xca\xb9\x40\x72\x8c\x28\x66\xaf\xd1\x7c\xf1\x36\x45\x27\x38\x2f\x43\x20\x10\x6d\x8b\x8f\x3b\xac\xdb\x8d\xb7\x0e\xd4\xa6\x03\x43\x76\x46\xca\x74\x0a\x80\x35\xe4\xe4\x2d\xc0\xde\x4b\x56\x56\x2c\x1a\xdf\xc6\xb3\x97\x4e\xe3\x08\x73\x1e\xb6\x8f\x67\x42\xad\xd9\x50\x62\xb7\xa4\x0e\x09\x24\x22\x53\x88\x17\x20\xbe\x61\x40\xec\x94\x01\xfc\xaa\x6f\x27\x66\xce\x62\x9d\x93\xe4\x10\x09\xb1\x49\x42\xc4\x1f\xa8\xdc\x00\xd5\x00\x16\x6b\x86\xbb\x8e\x4e\xfc\x13\x16\x01\x92\xa6\x28\xa6\x70\xc8\x79\x73\xb1\xb9\xb6\x6d\x10\x0c\xc0\x5a\xbe\x47\xba\xb3\x92\x4f\x4e\x3d\x29\x96\x4b\x35\x28\xe5\x68\x53\x98\xca\xd1\xa2\x4d\x03\xdd\x34\x52\xa5\x73\xd2\x00\xad\x1d\xad\x4a\xba\x7d\x77\x17\x1b\xb6\x77\x75\x17\xa8\x7c\xb0\x37\x04\x6b\x28\xb7\xfc\x79\x90\x40\x5e\x15\xc4\xf2\x60\x6f\x35\xbb\xdd\x98\x5a\xe0\x60\x71\x2d\x88\xb1\x84\x10\xc7\x4a\xfb\x8d\xa8\x45\x2e\xb3\xcc\x53\x18\xbe\x1d\x37\x40\x02\xec\xe4\xea\xa4\x53\xd2\x3b\xb2\x1d\x24\xf9\x05\x40\xd2\xe3\x20\x39\xc1\x05\x3e\xcc\xd0\x7d\x49\xb5\xaa\xe2\x09\xdd\x4d\x55\x36\xa1\xe5\x82\xf5\xa3\x5c\xd5\x00\x90\x25\xe8\x40\xbf\xf4\x8c\x06\x90\x24\xe3\xc9\x3e\xeb\xf5\xf6\xf5\x6e\x12\x6f\x3e\x78\x1e\x53\x4d\x2f\xc0\x19\xe9\x97\x44\x7a\x11\xa1\x60\xe7\x90\xa2\xf4\xe1\xda\xcd\xb2\xd2\xbd\x35\x80\x45\x4e\x19\x9a\x35\x0c\xdb\x9b\x54\x7d\xf4\xe1\x91\xfb\x95\x38\xd1\xdd\x1d\x88\x58\x62\x86\xc5\xba\x2d\x94\x37\xec\x4e\x0e\x85\x0f\xc3\x73\x4b\x7f\xc0\x19\x11\xce\x3e\x77\x87\xaa\x1d\x89\xe1\x14\x68\xcd\x71\xca\xf7\x59\xde\xed\xc6\x31\x72\xb7\x05\x02\xc0\xa1\x76\xb9\x4b\xed\xa8\x81\x07\x02\x32\x12\x1a\x59\xad\x62\x67\xa8\xa6\x0b\xe8\x44\x2a\x83\x78\x53\x1c\x73\x1b\xc2\x9e\xd9\x98\xf5\x9a\x3d\x6f\xb7\xea\xee\x6a\x88\xb5\x1f\x4f\x20\x49\x06\x22\xc2\xb1\x7a\xec\x23\xb7\xe8\x3e\xd9\xdb\x33\x51\xc7\xc7\x64\xb2\xa3\xd8\xd0\x6e\x37\x66\x8a\xfb\x94\x19\x00\x92\xbd\xe1\x2d\xda\xed\x9a\x6c\x0b\x02\x1b\x71\xdb\xf0\xae\x6b\xd8\x70\x98\xbb\x83\x17\xb7\x4b\x71\xf0\x1f\xa7\xc5\x6b\x69\xc1\x0e\xf3\x9c\xc5\x00\xd8\x49\xcd\xf2\xa9\xb8\x19\xf1\x79\xbd\x9a\x21\x71\x49\x7a\xe9\xf4\x7e\x7a\xf4\x56\xba\x40\xb1\xba\xb9\xf0\xc9\x0d\xaa\x8f\x98\x8a\x8a\x08\x94\x26\xfd\x65\x4a\x11\x61\x6f\xe5\x33\xcd\xb0\xbe\x7c\x8c\xb3\x59\x4c\xc0\x7a\x0d\xdd\xce\xeb\xc2\xbe\xdd\xdd\x8d\x1c\xad\xe2\xdf\x46\x73\xd5\x40\xb4\x9d\xf9\xcb\x1f\x21\xda\x2b\x50\x86\xa6\xd2\xb3\x65\x4e\xf8\xac\xae\xb9\xf9\xbd\x45\x99\x31\xbc\x0c\x87\x19\xf3\x1a\x60\x68\xb1\xcc\x52\x86\x8a\x16\x4d\x85\xea\x4b\xb9\x83\x89\x3a\x35\x4f\xb3\xec\x30\x9d\x3e\xec\xe1\x79\xcf\x06\x03\xbb\xba\x57\x57\x87\xeb\xd4\xdc\xd2\xcb\x7a\x1e\x86\xef\x64\x72\xb9\x47\x51\x04\xb3\xf4\x34\x2f\xd9\xc8\x8a\x6b\x94\xc0\xcb\x54\xaa\x78\x9c\x8b\x82\xa0\xb8\xa6\x6a\x45\x00\x4a\xdf\x2e\x4a\xd8\xd7\xd4\x0a\x3f\x27\x00\x94\x1b\x12\x91\x94\x6f\x2b\xd5\x6d\x96\x16\x01\x0a\xed\x7c\xf4\x4c\x62\x24\x4e\x8f\x03\xeb\x60\x86\xd6\xd3\x43\xf3\x9f\x23\xf8\xb6\xf6\xdb\x05\xdd\x2e\x92\x3b\xb1\xa9\x00\x87\xb3\xdc\x8e\x9d\x08\x08\x81\x6f\x26\x84\x2e\xd5\xf1\x86\x85\xdc\xe3\x49\x4d\x94\x6d\xa9\x93\x64\xf0\xd8\xc1\x78\x32\x12\xe1\x83\x75\x5b\xf7\xd3\xc3\x3b\x9c\x0b\xab\x83\x24\x3d\x54\x61\xcc\xa3\x02\xa5\x74\x7a\xfc\x2a\x49\x0f\x33\x11\x7e\xb5\xba\x82\x1e\xc4\x64\x7f\x5b\x56\x31\x49\x92\x3a\x0c\x4c\x73\xa0\xdb\xdd\x1d\xee\xba\x45\xfc\x11\x80\x83\xa8\x37\x8c\x46\x4e\x0b\x7a\xac\x1c\x68\xe9\x54\x8a\x81\xcf\x8e\x53\x32\xcb\xd0\xdd\x25\x22\x8d\xce\x3c\x65\xf5\x9c\xe4\x4b\x44\xa4\xf9\x1d\xe1\x7d\x27\x49\x22\x8b\x2a\x51\xd3\xee\x50\x8a\xbd\xe7\xf9\xb4\x2c\xee\x90\x65\x29\x25\xad\xb2\x83\xd7\x78\xe6\xd6\x1e\x44\x55\x7e\x7d\xe8\x76\x65\x19\xd8\xdc\xe2\x57\xd1\xe9\x2c\x7f\xb4\x7d\xd4\x0f\x65\x39\xc7\x25\xa7\x37\xf8\x83\x98\xf5\x0b\x96\x2f\xf9\xfe\x4e\x8f\xa4\xd3\x76\x00\x77\x87\x60\x34\xbc\x21\x44\x83\x0f\xd1\xe9\xcb\xf9\x4c\x18\x1b\xe2\x82\xc3\x29\x5c\xc3\xc6\xf2\xec\x1f\xe3\xa3\xe3\x0c\x1f\x1d\x33\x34\x3b\xe0\x77\x09\x89\x9e\xdd\xae\x08\x5b\x6a\x33\x6c\xac\x4f\xb7\x06\x38\x88\x51\x5f\xad\x4e\x7f\x9a\xe5\x05\x8a\x99\x1c\x8f\x9b\x7f\x9c\xf3\x0f\x5e\x45\x18\x28\xe6\x54\x07\x23\x39\xc2\x35\x14\x61\x79\xef\x89\x41\xe0\xbc\x0a\x3f\x1b\x21\x8f\xcf\x52\x8d\x74\xb5\x1a\x4f\x80\x8e\x68\xca\xd9\xd4\xde\x50\x07\xc9\xd3\x47\x13\xde\xdb\x03\x78\x1e\x1b\x6b\xae\x6f\x97\x69\x16\x93\x31\x9e\x40\x04\xc0\x19\x4d\xb0\x62\xb2\xb4\xd4\xfb\xc5\xde\xf0\x80\x38\xb7\x09\x30\x22\x86\x27\x27\xeb\x35\xb4\x4b\x3e\xaa\xb2\x3c\xfa\x26\x67\xce\xd0\x6f\x97\x88\x9e\xca\x09\xe5\x34\x8e\xfe\x7f\x01\x32\xa4\x76\x8f\x25\x47\x98\x37\xdd\x8b\x8c\x6b\xbb\x7e\x49\xf0\xb7\x4b\x74\x67\x06\x00\xbf\x17\x32\x89\x73\xb1\x14\x5c\x5a\xba\x4e\x9f\xec\xd8\x33\x5b\xfb\xf2\x8e\x3f\xd3\xe4\x53\x11\xa0\x3c\xc2\x64\x96\x3f\xea\x76\xe5\xdf\x3e\x49\x4f\xf0\x91\x88\x5a\x59\xcd\xe8\x97\x05\xa2\xb7\x8f\xf8\x99\x13\x45\xe2\x62\x63\x22\xf0\xbe\x79\xef\xce\xab\x9d\x08\xbc\xd8\x1b\xae\x56\x4e\xf6\x7d\x8a\x67\x88\xb0\x6b\xe2\x0b\xc4\xc9\xee\xae\xee\x2c\xca\x09\xcb\xcb\xe9\x71\xc1\x52\xca\x22\x4c\x3a\xf2\x83\x11\x99\x9d\xf3\x64\x45\x8f\xd9\x9b\x28\x2d\x4a\x8a\x68\x93\x08\xf6\x41\x96\x16\xec\x8e\xd8\xed\xa3\xdd\x21\x9c\xe1\xd9\x1d\x52\x20\xaa\x59\xb5\xc0\xdb\xcb\x31\x2e\x5a\xea\xc5\x31\x8f\x62\xf3\xb5\x8c\xc0\x8e\xba\xe6\x2e\x4b\x16\x62\x0d\x5f\x3a\xbd\x33\x0b\xe1\xdb\x56\xb4\x66\x2e\x5a\x3b\xa4\x51\x14\xd3\x6b\x76\x84\x98\x8e\xce\x7d\x8f\x9d\x66\x28\xb6\x45\x80\x90\x2d\x39\xa3\x7b\x2d\x27\x2c\x21\x07\x91\xe9\x81\xf4\xe7\x39\x61\xa2\x1e\xe4\xe7\xb1\x9f\xff\x5b\x29\xc5\x29\x61\x81\x2f\x5f\x47\x9c\x6a\x05\x3e\xdc\xc3\xef\x21\x18\x5d\x73\xb3\x33\x4c\xd0\xeb\x4d\xe5\x5f\x4b\x17\x38\x3b\x55\x03\x95\xfc\xd6\x79\x20\x68\x20\x97\x4b\x56\x29\x0c\x3b\x98\xdb\x27\x25\x47\x39\x92\xa5\xf4\x08\x89\x6e\x6e\x33\x46\xf1\x61\xc9\x50\x1c\xcd\x52\x96\xf6\x34\xe5\xec\xa9\x13\x57\x09\x77\x42\x07\x87\x10\x1c\x9d\x20\xc2\x94\xf8\x22\xd6\x12\x67\xe4\xe3\x88\x08\x89\xad\xdb\x55\xb7\x75\x6a\x32\x84\x24\xbe\x7a\x3e\x60\xb0\x5e\xef\xe0\x6e\x97\xf6\xd3\xd9\x4c\xa8\x3e\xbc\x81\x0b\x86\x88\x78\x48\xb5\x3b\x0a\xe6\xfc\x06\x57\x2f\xb2\xc8\xcb\x02\x89\xb3\x13\xe6\x60\xcd\x77\xc1\x3b\x68\x8a\xf0\x09\xe2\xb3\x2d\xc2\x9b\x40\x9d\xba\xfa\x80\x91\x0a\x0a\x50\xe1\x7c\xe1\x7f\x83\xf5\x8d\xc0\x69\xad\x3c\x65\xbb\xdd\x5d\x66\x92\x8d\x32\x6a\x39\xdf\x08\x4a\x71\xa8\x99\xbf\xe4\x84\xa0\xb8\xaf\xa9\x3d\xf2\xa6\x5a\x68\x71\xa6\x08\x7c\xad\x31\x73\x72\x10\xfd\x33\x59\xfb\x3e\x7a\xac\xdf\x05\x0d\x8b\xa9\x7e\xaf\x03\xdc\x6f\x60\x53\x9b\xf3\x70\xc3\xc0\xed\x61\x4d\xd1\x32\x97\x6f\x01\x9c\xfa\x5a\xae\x81\xf3\x14\x8e\xea\x87\x5d\x71\x23\x5c\xd1\x07\xe2\xc0\x63\xad\xcd\x7e\xe5\x57\x5e\x97\x91\x74\xe8\x5f\x04\xfa\x8f\xf0\x8c\x1d\x8b\x66\xf5\xa4\xa1\x5f\xdd\x48\x7b\xe4\x25\xbd\x7f\xcc\x16\xd9\xbd\x74\x8e\xe2\x48\x54\x1d\x75\xec\x8e\xd9\xbb\xfe\x3c\x8c\x96\x8f\x23\x7b\x71\xde\x5c\x73\x38\x18\xfc\x93\x7d\xc1\x8e\x2e\xd2\xd3\x43\xf4\x76\x96\x4e\xd1\x71\x9e\xcd\x0c\x61\xb6\x6b\xb3\xb4\xdf\x04\xaf\x9d\x49\x82\xed\x2d\x8b\xb7\x2a\xfc\x0e\x4e\x37\x2c\x8e\x91\x47\x9c\x07\xd2\x07\x91\xcb\x50\xbb\x63\x02\xab\x55\x14\xad\x5d\xc6\x3a\x27\x75\xf6\xa5\x4a\xff\x55\x99\x48\xf0\x1c\x82\x29\xe5\x1c\xee\x6a\x55\x1f\xaf\x41\x13\xce\x84\x0b\x2e\x38\x27\x75\x0e\xb8\xda\x83\xf3\xbc\x1f\x99\xf2\x06\x7e\x42\xf0\xc4\xfa\xe6\x03\x94\xe2\x6e\xfe\xa9\xc2\xe4\x5b\xdd\xbf\x20\xaf\xcc\x4b\x7f\x25\xe1\xbc\xad\x62\x96\x95\x6c\xaa\x5e\xb6\x12\x57\x5e\x53\x50\xa9\xb8\xa7\xe5\x35\x96\xaa\x8d\x69\x75\x8d\x7b\x32\xba\x22\x16\x3d\x50\x67\xc3\xf3\x52\xce\x95\xd1\x67\x72\x23\x10\x63\x48\x01\x44\x00\x5a\xc3\x40\x15\xe4\x1a\x03\x5a\xa1\x1b\x31\x06\x3b\x28\x2b\xd0\x99\x94\x9c\x55\x2f\x58\xaf\x61\x94\xcd\x22\x97\xdc\xaa\x6a\xae\x2f\xff\x9c\xef\x81\xda\xa2\xad\x85\x1c\x2d\x36\x70\x7a\x31\xb9\xf9\x15\x7e\xb1\x50\x3f\x6f\x25\xbf\x31\x58\xad\x6e\x5c\xf7\x40\xc9\xbf\xd7\x00\xb9\x5e\x43\xff\x28\x08\xdf\x67\x51\x5f\x06\x44\xbf\xcd\x0e\x6c\x32\x66\xfa\xd1\x4f\xea\x92\xb1\x8a\x68\x27\xbf\x10\x8f\xfb\xe4\x2c\xed\x13\x08\x72\xda\xd4\xd4\x07\xfc\x22\x65\xd3\x63\x41\x45\x1a\xeb\x1c\xd1\xbc\x5c\xf6\x44\xda\x79\xa4\x24\xd3\x92\x52\x44\xa6\xd5\xb7\x4a\x28\xac\x6e\x60\x7e\x25\x2c\x77\xaa\x9d\x95\xc9\x37\xf7\xd5\xca\xdd\xec\x8e\xf5\xc3\x3e\xbb\x15\x57\xb5\xc7\x6e\x25\xc3\x83\xc1\xa8\x9a\xdb\x1b\x02\x57\x90\xc8\xf6\x86\xb7\x86\xab\x55\xbd\x2e\xdb\x1b\x1e\xc8\x81\xd8\x26\xc6\x6c\x4f\xee\x3f\x62\x64\x99\x54\x0f\xf0\x21\x3a\x2d\x6c\xf4\x74\xea\x5e\x0c\xcf\xb4\x08\x1a\x4f\x76\xd0\x38\x9f\x24\x64\x9c\x4f\x8c\x06\x2d\x5a\x5b\x3d\x8e\xc2\x43\x5f\x66\x65\x41\xbe\xd0\xc7\x94\x2f\xdd\x40\xf8\x7d\x96\x0b\x5d\xe5\x03\x93\x8a\xc1\x08\x89\xb7\xa7\x2c\x39\x53\xeb\x3f\x1a\x4f\x20\x45\x85\x78\x20\xb5\xc9\x97\xf3\x92\xb0\xd1\xc0\xca\x92\x94\xde\x97\x73\xbf\xd6\x59\xf6\xa0\x94\xd7\x8b\x82\xdd\x13\x39\x68\x66\xf2\xf2\x74\x86\xc9\x11\xbf\x39\xe0\xe2\xb6\x78\xe8\xe7\xe9\x07\xe8\xf1\x12\x0b\x5d\xdf\x7b\x5e\x13\x0f\x28\x5a\xa2\x94\x61\x72\xf4\xf2\x71\x4a\x47\x51\xb4\x86\xd3\xc6\x9b\x4d\xfd\x3a\x63\xaf\x3a\x9e\xfc\xa7\x22\xea\xdb\x1d\xf0\x43\x96\x4d\x8f\x95\x84\xef\xeb\xe2\x04\xae\x97\x51\xbc\xe8\xbd\x29\xcd\xb3\xac\xfa\x7d\xa8\xda\x40\xb4\xf2\x05\xeb\xe4\x9b\xf2\x33\xd0\x30\x78\x13\x15\x45\x7a\x54\x8d\x97\x11\xbd\x21\xbf\x76\xd4\x9a\xf4\xfb\x7d\x7e\x16\xe5\xb2\x76\xd1\x50\xe9\xad\xbc\xa3\x56\xab\x33\xcf\x4b\xf1\x12\x2d\x67\xdc\x50\xfe\xfe\xe9\x12\x49\x2d\x52\x5e\x28\x02\x50\x88\x43\xee\x12\x79\x2a\x04\xe6\xae\x7e\xbc\xee\xac\x79\xc3\x34\x9d\x22\x00\xf2\x73\xe4\xf6\x31\x4a\x67\x6f\x6e\x86\xcd\xfd\x4a\x39\x60\xb1\xeb\x2e\x79\x3d\x3f\xa9\xd5\xe4\x63\x12\x5a\x18\xad\xc4\xb8\xad\x24\xbe\x9e\xc4\xf1\x9a\xac\xa2\x29\x63\x04\x60\x7e\x9e\xda\xb6\x9a\xa0\x97\xed\x2a\x79\x97\x2f\x51\x2f\xb2\x12\xdc\x3b\x0c\x2d\x36\x4f\xf2\x3c\x62\x71\x47\x1a\xee\xe1\x49\xbb\xca\xb2\x4a\x6f\x21\xeb\x44\x00\x3a\xdc\x5e\xcb\xa9\xba\xec\x61\x55\xea\xb6\x35\x20\x17\x5a\x03\xf8\x40\xcd\x40\xbd\x0b\x55\x7b\x9b\xe1\x93\x08\xc0\x07\xd3\x9c\x30\x44\xd8\xc6\x42\xcb\xf2\x30\xc3\xd3\xdb\x6f\xdf\x19\x65\x35\xfd\xb2\xf3\x48\x30\x94\x3e\x8b\x69\xee\xb6\x64\x70\x12\x75\x67\xaa\x3e\x82\xa9\x2b\xac\xd1\x4e\xe2\x8c\x97\x67\xb5\x57\x3d\x76\x20\x49\x08\x7a\x24\xed\xf1\x38\xd1\xa7\xc9\x60\x9f\xde\x62\xfb\x54\x98\xef\xd1\x89\xa3\x04\x4d\x27\x2e\x0f\x4f\xb4\xeb\x5e\x04\xc7\x8a\x4f\x8b\x4c\xe0\x0a\x61\x9d\x63\x77\x5b\xe8\x9d\xf1\xaa\x86\x62\x3a\xf5\x47\xa3\x50\xfe\x69\x8e\x44\x31\x59\xfe\x30\xa4\xa0\xe0\x69\x0e\x43\xf6\x58\x85\x86\x38\x6e\xee\xe7\x57\x38\x90\xf0\x4d\xdc\xd7\xf2\x1e\xfb\x4a\x6f\x08\xca\xd1\xc3\x48\x8f\xaf\x82\x52\x6b\xf8\x08\x67\xd9\x2b\x0d\xd1\xb3\x5a\xec\x23\xad\x7a\x21\x9d\xcf\x15\x77\x88\x22\xdf\x71\x63\x81\x7b\x8a\x54\x2a\x29\x91\x7b\xb5\xa5\x22\x02\x3c\xa2\xb7\xdf\xbe\x13\x81\x1d\xd4\xed\x22\x49\x34\xd7\x10\x93\xfb\x48\x3c\x56\x6f\x30\x55\x51\x2f\x52\x0c\x15\xcc\x3a\x4d\xa9\x3c\x0e\xb7\x0e\x35\xdf\x77\x7e\x9d\xfb\x85\x4e\xbc\xc2\x35\x3f\xd2\x09\xbd\x6d\x63\x2d\x95\xcf\xd5\xca\x4a\x2e\xf4\x6d\x9a\x3f\x3e\x5d\xad\x76\x1d\xa5\x01\x18\xb1\x63\x44\x22\x70\xb0\x55\x16\x23\xd6\x48\xc0\x53\x9a\x43\x18\x6a\x0d\x19\x70\xae\xfd\x0f\xdc\xaf\x68\x76\x3f\x2d\x1e\x46\xa0\xbf\x44\x74\x9e\xd3\x05\xc7\x47\xf1\x74\xa8\xd9\xcd\x0b\x3f\x4a\x42\x62\xf9\x60\x7e\x0b\x3f\x60\xa3\x98\x69\x51\x98\x3f\xb3\xda\xd8\x14\x1a\xd5\x86\xd6\xac\xec\xd9\x04\x03\xd5\x92\x78\x8a\x03\x76\x5e\x0e\xab\x43\x9d\xc3\xc6\xdc\xad\xea\x0c\xa1\xe1\x92\xee\x6e\x6a\xa0\xca\x4b\x39\x2d\xd5\xd9\xa7\xa6\x87\x6b\xb4\xed\xe9\x3a\x32\xe7\x57\x5f\x33\xe8\x6d\xdf\xb3\x37\x3c\x63\x07\x1a\xb5\x8f\xd9\x9b\xa4\xf7\xbd\x54\x95\x86\xe2\xfa\xd3\xf4\xec\xbd\xf6\x67\xfc\x0a\xcd\x97\xb3\xfc\x11\x69\x9a\xf2\xcc\xfd\xfe\x44\x73\xd6\x2d\x5d\xca\xa4\x75\x63\x8d\xb3\xf6\xc7\x2d\xa6\xbd\x28\x0b\x76\xef\x38\x7f\x74\xcf\x63\xf7\x6b\x22\x42\x33\x94\x33\x75\xfb\x70\xee\x6a\xde\x45\x6f\x6d\x9e\xeb\x4d\x42\x35\xba\x51\xb0\x6b\x3a\x30\xe2\xc3\x5d\xd4\x57\x5d\x49\x43\x12\x57\x8c\xaa\x0e\xab\x6e\x77\x77\xb7\x2a\x41\x12\x6f\xf7\xb5\x5c\x3d\x04\xa0\xdb\xf2\x86\x6c\xa1\xf0\x56\xae\x4a\xd6\xd7\xdc\x4c\xca\x85\x45\xe5\x86\xea\x41\x42\xdf\xd3\x36\x4b\xb4\xdb\x4c\xdc\x6d\xb5\xdb\x8d\x03\x73\x5e\xad\x50\xbf\x3a\x18\x6d\xe7\x36\xf0\x74\x12\x9c\x93\xac\xf1\xf5\x37\x8d\xcf\xd6\x30\x38\x44\x88\xc0\x8e\x79\x0a\x90\xe5\x8c\x94\xbd\x81\x7f\x55\xc7\xad\x6f\x3e\x77\x66\x99\x66\xa6\xc9\xf9\x1d\xe3\xb7\xc7\x43\xea\x4d\x8f\x47\x6b\xef\xe5\x2d\x70\x52\x0b\x65\x07\x4e\x5c\x61\x4e\x2e\xac\x87\x11\x86\x84\xa7\x9b\xa1\xc3\xa9\xca\x57\x98\x25\x22\x98\x1c\x89\x17\x9f\x88\x53\xf7\x48\xeb\x49\xec\x26\x09\x13\xde\xd2\x56\xab\x1b\x5f\xd9\xf5\x34\x20\x6e\x0e\xdc\xdf\xab\x55\xfd\xe9\x4a\x01\x92\xa2\x02\xb9\x97\xe4\x58\xc8\xab\x5f\xce\x3c\x5e\xb3\x61\x76\xe2\x96\x7e\xa1\xe9\x35\xcd\x4e\x5d\x1d\x9d\x83\x9d\xa5\x0c\xc5\x67\x75\xe1\xce\x5a\x8c\xb3\x41\x6e\x0f\x49\xe2\x0b\xac\x21\xf5\x06\x8e\xa5\x28\x1f\xe2\xa6\x9d\xa3\x66\x13\xb3\x84\xc6\x04\x62\x88\x00\x58\xad\x70\x55\x8a\x5c\x13\x50\xb3\x03\x36\x22\x20\x78\x7f\x41\xe0\x0c\xb9\x2c\x01\x32\xb1\x75\x67\x91\x7e\x46\x68\x9c\x32\x5a\x07\xee\x21\xc1\x45\x71\x67\x51\xd1\xf0\xb0\x8f\x24\xfe\xbb\x45\x4e\xa4\xbd\x67\x04\x62\x04\x89\xb0\x7d\xad\x5e\x11\x8d\xc5\x96\x79\x0e\x50\x9c\xcc\x03\x81\x3e\x92\x4c\xc4\x2e\xe7\xa5\x29\x89\x2a\xa6\xf8\x1a\x55\x10\xa9\x92\x3a\xfb\x35\x9c\x31\x44\x95\xe9\x69\x5e\xc7\x3c\x7e\x3f\x75\xc9\x94\x61\x92\x39\x01\x16\x2a\x20\xd3\x0c\x23\xc2\xbe\xa1\x10\xcb\xc5\xa9\x40\x96\x2d\xfd\x66\xca\x8e\xfb\xe9\xa1\xb4\xa8\x0c\x96\xe9\x99\x14\xb8\x75\x1d\x6c\x86\xb7\x89\x61\xdc\xfe\xa9\x43\xda\xef\x02\x87\x3a\x7a\x92\xaf\x08\x1c\xc4\x24\xac\x62\xa4\x76\x01\xdf\x04\x8a\xa1\xba\xa8\x96\x55\xbc\x4b\x56\x2b\xa1\x9f\xb6\x61\xf3\x8a\x73\xa2\x3f\x65\x34\xfb\x2a\x3a\x15\x0f\xbe\x0b\xc4\x52\x91\x8e\x99\xff\x46\xc2\xfc\x37\x12\xb9\xd2\xb8\x78\xab\x5c\x2c\xd3\xd9\x57\xd1\xa9\x80\x6f\xcc\x80\x14\x59\xd7\x78\xa8\xfb\xa7\x4b\x4c\x8e\xea\xfc\xb0\x78\x6b\x31\x6d\x1f\x68\xa5\x5d\xa5\x5f\x76\x6f\x99\x4e\x39\x6c\x14\x62\x09\xfb\x2d\x05\x90\x98\x89\xb0\xd1\x6d\x1e\xe1\xc2\xe0\x61\x0a\x3c\xac\x01\x3c\x88\x83\x27\xd0\x2f\x0a\x5e\x97\xe5\xe1\xa8\x15\x1f\xba\xdd\xc0\x20\xdc\xc6\xdd\xb5\x33\x77\x5b\xad\xa4\x60\x25\xfb\xb5\x8b\x77\xee\x5c\xbc\xe9\x8b\xc3\x03\xda\x1b\x8e\x06\x00\xa6\xc9\x70\x3f\xbd\x45\xf7\xd3\xbd\x3d\x90\x8f\xd3\xde\xd0\xbd\x82\xa7\x13\x07\x87\xbd\xdb\x36\x82\xcc\xdc\xa7\x73\x65\x24\x52\x9c\x4b\x7b\x63\xa3\xd2\x06\x9f\x4e\x21\xe1\x50\x26\xf1\x00\x62\xad\x6b\x24\x6f\x20\x20\x66\x9a\x69\xe1\x1c\x03\x9e\xc7\x42\x3f\xaf\x94\x35\xb2\xa4\xf0\xf5\xca\x6e\x67\x59\x1c\x8d\x85\x72\x87\xec\x55\xaa\x76\x4c\x22\xd0\xc7\x0c\x2d\xe2\x52\x34\x91\xc9\xda\xd3\x24\xeb\xe7\xf3\x79\x81\xd8\xfd\x7c\xd9\x2b\x6c\x1a\xce\x93\xe9\x9e\xfe\x26\x75\x5a\x76\xe6\x2f\x16\x5e\xc6\x5e\xd1\xd7\x6b\xb2\x3c\x70\xd2\xc9\xbc\xe7\x17\x1c\x4d\x6f\x39\x9f\x85\x87\x74\x5b\x78\x0a\xd6\xfc\x9f\xdd\xc9\x21\x0d\x4c\x75\x62\x92\x99\xbc\x01\x9e\xa4\x0c\x45\x75\x76\xa5\xa2\x97\xd9\xb4\x9d\x79\x5f\xd5\x4e\x36\x75\xc1\x82\x5d\x70\xda\xda\xb8\x25\x9c\xe9\xbc\x94\x95\x34\x34\x1b\x57\xd6\xa8\xe8\x84\xec\x7d\x86\x36\x4e\xf1\x30\x2b\x69\x9b\x19\x56\xfa\x3d\x77\xaf\x2c\xd4\xeb\x96\x49\xeb\x26\x5c\xc1\x41\xbb\x9b\x7c\x54\x20\x76\xc7\x5c\xf7\x76\x07\xc2\xe2\xf0\xd2\x9a\x1b\x72\xa6\xb5\x46\x61\xf9\x9d\x3e\xef\xb3\xb4\x78\x08\x62\x8a\x8e\x10\x91\x2e\x7c\xde\x29\x09\xc3\x0b\xd4\x5f\xa4\xf4\xa1\x11\x3c\x75\x50\xec\xb8\x2e\x4c\x61\x01\x4b\x98\xc1\xa9\x71\x8e\x50\xaf\xfe\x88\xa6\xcb\xb8\xfa\x08\xba\xbf\x0f\x8a\x47\x98\x71\x2e\x40\xb0\xa4\x89\xb4\x76\x03\x67\xd3\xb4\x40\x9d\xc1\xc8\x04\xe3\x1f\x7a\x3c\x9b\x0b\xe7\x34\xa1\x7d\xff\x25\x4e\x38\x43\x54\x27\x03\x6c\x3c\x70\xf8\xb6\xeb\x25\x37\xbf\x02\x60\x96\x28\x3d\x97\x39\xcd\x17\xbc\x01\x5e\x31\x2e\x00\x8c\xcb\x24\x4b\x92\x5a\xfb\x07\xd9\x88\xf6\x43\x8f\x82\x7b\x19\x30\xfe\x3f\x0e\x62\x92\x0c\x60\x9a\x44\x11\x18\xa5\x49\x06\xa9\xd1\x89\xa2\x9e\x9e\x31\xd9\x0b\x92\x38\xda\x57\x24\x12\x7a\xc5\xc1\x68\xd7\x6d\x48\xf3\x70\x6d\x5a\xd1\x65\xc1\x88\x0f\xac\xce\x61\x06\x5f\x39\x9b\xe6\x59\x7d\xfb\x4c\xd7\x8e\x22\x75\x3c\x95\x4b\x35\xc7\x64\xf6\x75\xcc\x8e\xef\x0a\xd2\xe7\x0c\xa6\x84\x84\xa3\x34\x10\xf6\x71\x5a\x37\xdb\x2a\x5d\x98\xf9\xc6\x53\xce\x0d\x39\xea\x1a\x8a\x48\x8a\x7c\x30\xaa\x69\x91\x88\x6c\x6d\x30\x39\xbc\x09\x25\x3e\xe3\x05\xca\x4b\x06\xe2\x21\xba\x01\x76\x04\x5e\x0d\x6f\x8e\x5a\xce\x3f\xf8\xca\xab\x5b\x79\x7e\xc4\xff\x46\x88\xcc\xa2\x91\xa7\x66\x23\xd4\x3c\x24\xea\x81\x35\x10\xe2\x57\x96\x52\xc6\xdb\x8e\x01\x0c\x88\x21\x2f\xb8\xf3\xae\x68\xb7\x29\x00\x5e\x87\x4c\x4e\xf4\xfa\x88\x08\x01\x09\x61\x41\x21\x6b\x4c\x14\x40\x6e\x3e\x11\x3c\x1c\xd1\xe7\xe7\x0b\x1c\x01\x99\xb5\x60\xa4\x84\xc8\x5a\xb1\x7a\xde\x14\x62\xa6\x98\x77\xf9\xbe\x17\x81\xd0\x1d\xd6\xe8\x1a\x48\x0d\x12\xd1\xff\x75\x8d\xbb\xcf\x6b\xd0\x3f\x1f\x04\xbd\xee\x47\x03\xfe\x85\x91\x67\x38\x9c\xbc\xb0\xa9\xbf\xa1\xe8\x6f\x8e\x09\x2e\x8e\xe3\x17\x34\x2e\x0f\x5a\xac\x1d\x1c\x8f\xaf\x43\xf8\x02\x1c\x0e\x26\x93\xc0\x3a\x4a\xee\xfb\x76\x71\x4a\xa6\x6a\x07\x5d\x60\x29\x8d\x4f\x0b\x98\x5f\x19\x76\x8b\x8f\x21\x12\x58\x59\x13\xb1\x14\x37\x21\xd1\xd8\x4d\xf5\x52\xe4\x49\x19\xd3\xd0\xa2\x6a\xfd\x94\x1c\x3e\xa0\xa9\x92\x7a\xbe\xa3\xf2\x68\x5d\xe5\xc4\x17\xe9\x8d\x04\x05\x9f\xf2\xa4\x5a\x60\x10\x5b\x85\x0c\xb9\x70\x0d\x42\x1a\x43\xf3\x6e\x48\x6b\x0d\xb3\xa8\x6a\xb2\xc3\x01\x44\x7d\x36\x48\x50\x5f\x7a\xd2\x1b\x04\x31\xb2\x3e\x3c\xb7\x6f\xd5\xe6\x8d\x0a\x1c\x87\x37\x60\xa4\x57\xc2\x8a\x3e\x48\x7f\xca\x37\x4c\xd6\xed\xea\x54\xec\x60\xdd\xd0\x10\xe2\x2f\xb7\x43\xbb\x01\x1c\x0e\xe0\xf0\x06\x1c\x7e\x39\x88\x79\x0e\x73\x53\xe7\xf0\xbc\x39\x1a\xb5\x1e\x21\x43\x99\x0b\x49\x43\xf0\x8a\x5c\x73\xe8\x75\x3d\xe8\xd0\xeb\xfa\xa4\xdb\x75\x7f\xe9\x5b\x22\x5f\x49\xd9\xba\x59\x4a\xb4\x5a\x8d\x27\x90\x39\x97\x7b\xef\x45\x86\x5f\xee\xc4\x90\xdc\x33\xb3\xf6\xae\x14\xbe\xde\xbd\x78\x23\x38\xb8\x1b\xde\xe0\x6e\x54\x06\x47\xd4\x83\x8e\xed\x2d\x34\xc6\xf0\xeb\x0f\x1f\x2c\xa4\xc6\x0f\x9b\x76\x4d\x56\x83\xfd\xa6\x77\x52\xe1\x8f\xaa\xdb\x45\xfd\x74\x36\xd3\x05\x84\x37\x01\xe7\x77\x1c\x8d\x27\xee\xd3\x96\x7f\x54\xdc\x26\x33\xb5\xb9\xf4\xab\xab\x8a\x06\xa6\x06\x5b\x24\xda\x29\x42\x53\xbd\x18\x01\x33\x89\x90\x61\x55\xe3\x34\xec\x6b\xae\xd1\x8c\xd5\xde\x36\x0f\x2e\x3a\x2b\xdd\xa6\x68\xa8\x3a\x23\xfd\xb1\x3a\x25\xaf\x92\x88\x86\x81\x3c\xd3\x42\x87\x53\x76\x14\xa6\xeb\x1b\xc3\xbc\xf4\x22\x58\x13\x35\x56\xe9\x4d\x4d\x07\x05\xb6\x11\x57\xd4\x35\xb0\x22\xb0\x83\x92\x10\xf1\x38\x20\x31\x03\x23\xb2\x45\xf2\x2b\xc6\xd6\xb4\xb2\x55\x09\xcb\x6e\xd5\x1a\xbd\xaa\xda\xa2\x25\xc5\x65\x2c\x65\x0a\x75\xe1\x25\x50\xb3\xf4\x06\xa4\x5f\x8b\x89\xd1\x4d\x24\x5b\x89\x3a\xf1\x89\xba\x54\x59\x6e\x00\xa1\x67\x89\xac\xe5\xad\xcc\x79\xad\x02\x07\x64\xa4\xb8\x6d\x21\x36\x25\xd0\xfb\xba\x13\x1a\x34\x35\x47\x52\x6d\xf8\x6d\x4f\xa2\xb5\xb5\xf1\x68\x7a\x38\x58\x57\x39\x5d\x81\xa3\x01\x31\x72\x60\x51\x9a\xc4\xe0\x06\x4d\x4b\xe1\xb3\x40\x18\xf5\x1b\x91\xf3\x26\xc3\x16\x77\x1f\xa8\x49\xef\xd8\xaf\x41\xd6\x25\x02\xea\xe8\xba\x9d\x65\xf1\xa6\xd3\x1e\xb5\x50\x2d\xdd\x06\x5e\x54\x01\x2f\xf4\xa5\xe1\x4d\x52\x4a\xb5\xe8\x1b\xe7\x29\x9e\xd5\x1a\x07\xcf\xdc\xc1\xa3\xfa\xd8\xd1\xd6\xa1\x33\xd0\xcc\x98\xd8\x79\x54\x97\x28\x20\xe8\x34\xfa\x9e\x24\x80\xb3\xee\x28\xd7\x00\xd2\x84\x09\x71\xb9\xf0\x0e\x62\x0d\x58\x79\x3b\x54\xab\x57\x80\xed\x0b\xac\x25\xca\x08\x52\xcf\x74\x80\xf3\x77\x1b\x80\x96\x5f\x04\x4e\xf9\x26\x38\x49\x37\x1d\x81\x79\xd7\x3b\x92\x68\xef\x88\x96\x43\xde\x33\x6f\x78\x66\x1d\xab\xd5\xcd\x81\xfb\xbb\x2a\x2f\xff\xda\xf2\x15\x29\xa2\x96\xb6\xd3\x8d\xe5\x5e\x25\xf2\x65\x66\xf4\x1b\x9b\x4a\xdd\x4f\x0f\x79\x99\xeb\x2f\x6c\x6c\xea\xde\xcb\xbc\x90\xb6\x6d\xae\x8e\x65\x23\xa2\xb8\xf4\x51\xf8\xb2\x95\xa4\x08\x9c\xa1\xda\xbb\x26\x0c\xd8\x60\x28\x21\x62\x05\x24\xc3\x51\x6f\x08\xa9\x14\xa3\xa4\xb3\x13\xbe\xf3\x25\xe1\xe2\x4c\x66\x5d\xf2\xcc\x3c\x13\x6e\xe2\xbc\x5c\x3b\xf2\x0b\x2a\xfc\xa0\xd6\xe5\x17\x54\x2d\x38\xab\x5b\x07\x55\x80\x7d\x11\x38\x38\xcc\xa0\x37\x4a\x60\x9c\xa2\x54\xcc\x0d\xfd\xb9\x20\x00\x77\x87\xee\x40\xc4\x6b\x4a\xf5\x40\x1d\x47\xf7\x5f\xfd\xe7\xf7\x6f\xbf\xf3\xea\xed\x08\x46\x77\xde\x7a\xfb\x6b\xf7\xa3\x49\x1f\x93\x69\x56\xce\x50\x61\x0d\x84\x48\x3e\x43\x6f\xa5\x0b\xe4\x3c\xf8\x6e\x9a\x85\x19\xe1\xe6\x99\x1c\xc4\x81\x95\x6e\x33\xad\x10\xc2\xdd\x4f\x0f\xeb\x2c\x5f\x8d\x98\xfa\xcf\x6e\x95\x95\xba\xf7\xf2\xc5\x5a\x68\x62\x8f\xeb\x2a\x89\x15\xce\x56\xbf\x30\x55\xb2\xfb\x7e\x83\xad\xd9\xe7\xd0\x50\xf4\xa9\xdd\x3c\x96\x7b\x3e\x3f\x59\xcb\x6f\x37\x1a\x9f\xed\x5d\xc3\x9a\xac\x36\x44\xde\x1c\x43\xac\xdf\xf8\xb2\x67\x88\x35\x1c\x3c\x6f\x38\x7a\x96\x06\x7c\xad\x6b\x67\x7a\xd6\x07\x96\x5d\x24\xb8\x51\x39\xc5\xe7\x67\x7d\x5d\x10\xeb\xa2\x82\x68\x4d\x42\xc7\x32\x6b\x7a\x21\xcb\xac\xaa\x9a\xff\x13\x1b\x6a\x55\x1b\x7c\x8a\xae\x1b\xcf\x67\xea\x9f\x96\x2c\x17\xef\x4a\xc2\x81\xe2\x06\x23\x7e\x89\x48\x5b\xf5\x75\xc5\x82\x99\x46\x23\xfd\x40\xeb\xb8\x27\x01\x9e\x4a\xf0\x13\xf6\x54\xf1\xe7\xd2\xc2\x0c\xda\xee\x8a\xb0\xf1\xa8\x6b\x17\xed\x18\xaa\xb6\x7b\xc3\xfe\xaa\x79\xc3\xe6\x17\x21\x6d\xac\x6a\x09\xb2\x7f\xe6\x2b\xd8\x84\xc7\x61\x68\x57\xd8\xd1\x87\x7e\x54\xf3\xfd\x21\xf8\x6e\x3e\x9e\xeb\x07\xde\x83\x95\xd1\x86\xa8\x38\x4e\x29\x4e\x7b\xd3\x9c\x30\x9a\x67\x45\x12\x3d\x67\xde\x88\xcd\xb8\x32\x5c\xb0\xc3\xfc\xf1\x9d\x59\x04\xe0\x73\xd1\xe4\x39\x2d\x61\x15\xf5\x5d\x70\xf3\xed\x40\x1d\xbf\x08\x30\x92\x18\x00\x07\x97\xe2\x16\xeb\xda\xe5\x6d\xcd\xa7\xb9\x27\x21\xdd\xee\xa4\x63\x27\xb2\x56\x9a\xe6\x66\xfe\x5a\x5a\xb0\x97\xf2\x9c\x75\xbb\xb1\xbd\xb7\xef\xaa\xaf\xb1\xf6\x32\xd2\x57\xdb\xa7\xbf\xa4\x39\xcb\xf9\x47\xd0\x97\x0a\xc6\x85\x08\xfa\xa1\xd2\x09\xe9\x2f\x0a\x65\x39\xa6\xb1\x63\xb5\x22\xfd\x45\xfe\x5e\x20\xf7\x11\x3a\x7c\x88\x59\xe5\x03\x80\xf5\x61\x74\x88\xc4\xd2\x42\x78\x09\xd5\xe9\x24\x6c\x7e\xc9\x31\x63\x9f\x75\xbb\x62\x53\x08\x66\xe5\xfe\xe9\x12\xed\xab\x10\x09\x6a\xa0\x8e\x19\x35\xe3\xf7\x69\xc7\x79\xdb\xda\xd5\x7c\x07\x7e\xfc\xac\x3a\xc9\xc3\xc5\x7d\x0e\xe9\x57\x90\xf0\xd0\x46\x03\x2e\x4e\x34\x4d\x2c\xb3\x08\xa6\xda\x35\xc5\x4b\x98\xf0\x8b\x61\x31\x1a\x47\x34\x17\x7e\xd3\xbc\x1d\x12\x4d\x20\xcf\x1e\xe9\x5d\x11\xb5\x75\x7b\xa2\xa5\x1c\x1b\xa9\x5a\x24\x6d\xbd\x3c\xa1\x92\x18\x85\xf1\x5e\xe0\x3b\x68\x97\xf2\x0a\xa2\xf9\x3f\x05\xfe\x06\x0d\x0c\x71\x7b\xeb\x76\x77\xa9\x53\x4e\xcc\x4d\x2b\xc3\x25\x8c\x96\x68\x12\x39\x16\xe6\x01\x9f\x1d\x6e\xa3\x11\xd8\x61\x31\xea\x3f\x90\x79\xaf\xd1\x7c\x21\xfc\x7f\xc5\x58\x88\x57\xd7\x66\xce\x48\xa1\x68\x83\xf3\x8c\x72\xe9\xe8\xd5\x3a\xfa\xfc\xb1\xe7\xdb\xa3\xc2\x70\x4a\x11\xae\x7b\x10\x54\xed\x04\xcd\xc9\xb3\xa5\x7b\x51\xf6\x3c\x03\xb0\xd6\x4a\xb5\x31\x78\x48\x67\x06\xf0\x20\x9d\xcd\x44\xbe\xe8\xbe\x88\xb7\x2f\x34\x09\x39\x63\x20\xf5\xbb\x0d\xf1\xae\x1c\xeb\xf5\xba\x8a\xae\x4d\xee\x3b\xb4\x02\x50\xc8\xdf\xda\x06\x25\xfc\xa8\x7e\x3c\x54\x1b\x14\xba\xe8\x95\x19\x87\xf7\x04\xb4\xe8\xdc\x61\x31\xbf\x50\x1e\xa7\xc5\x9b\xf9\x09\x9a\x25\xbb\x03\x88\xf4\xba\x71\x8e\x53\x2f\xa1\xf2\x2a\x19\x70\xd2\xc2\xf3\x23\xc8\x80\x8a\x2a\xd2\xbc\xe6\xae\x4b\x17\x67\x58\x68\x5b\x15\xd3\x81\x5a\xef\x2d\xc5\x11\x71\x61\x5b\x77\x87\xb3\x7d\xaf\x12\x20\xe8\x62\xe0\x92\xad\xc1\x04\x5c\x88\x0d\xad\x48\x85\x93\x84\xed\x5b\x77\xf3\xee\x0a\xed\x6b\xaa\xcc\x5b\xd6\xb0\xfa\x69\x14\xa6\xf8\x48\xf8\x2e\x63\x71\xd4\xaf\xc8\xa7\x8d\x55\xec\x78\x99\xd2\x02\xdd\x21\x2c\x16\x91\x1f\x86\x03\x30\x81\x34\x19\xee\xd3\x5b\x5a\xeb\x5d\x1a\xac\x25\x44\x4b\xd8\xdc\x1a\x54\xd6\xd8\x71\xfc\xd0\x3a\x6c\x06\xbe\x18\x9b\xe1\x39\x51\x79\x62\x56\xc3\x6d\xed\x33\xbd\x02\x6c\xb0\x89\xbf\x0c\xe6\x2c\x60\xb2\x7c\x09\xc0\xab\x37\xfa\x79\x85\x21\xd4\xa7\x68\x85\xe2\x8a\xa0\x53\x45\x2c\x09\x7e\xdf\xea\x9d\x4b\x73\x70\x51\x79\x53\x05\x53\x2a\x02\x97\xb1\x4a\x15\x7b\xed\x27\x5f\xa1\x4a\x83\x9f\xd7\xd5\xb9\x0c\xd8\x5d\x9a\x57\xc2\xa7\xeb\x8c\xf0\x22\xb8\x6c\x6e\xbd\xd3\x0c\xa5\xb4\x66\x5d\x14\xf2\xcf\xb6\xe9\x3a\x2d\xf4\xc5\xa4\x7d\x89\x7b\xfc\x8a\x8b\xb0\xb8\xb1\xe8\xdb\xf1\xfa\x5c\xf7\x44\x1d\x10\x27\xc0\xaf\xe0\xa2\x25\x0d\xaa\xbb\xb2\xd9\xb8\x28\x86\x5f\xf1\x3d\x08\x55\x00\xd4\x18\x13\x72\x2d\xfc\x56\x85\x54\x20\x3e\xc7\x11\x1f\xf9\x8d\x50\x78\xfc\xd5\xc1\x1e\x57\xab\x73\x86\x7d\x74\xa6\x0c\xce\x2e\x33\x04\x64\xec\x38\xb9\xa1\x5a\x1e\x43\x85\xcf\x5a\x37\x92\xa9\xf0\xe4\x8e\x8b\xdf\xe4\xab\x0c\x62\x7a\xa1\xf0\x46\x02\x77\xde\xe6\xa8\x23\xef\xc3\x77\x64\x73\x09\x0d\xef\x3b\xec\x87\x3e\x92\xa8\x1a\xd3\x73\xb0\x27\x9b\xb1\x5b\xbf\xcd\x5e\x20\x04\xd4\x33\xbc\xfd\x5c\xe1\xad\x1b\xf4\x42\xc6\x25\xa5\x32\x2e\x29\x96\x71\x49\x6d\xac\x33\x2b\x44\x74\x7c\x08\xcb\xb5\xc2\x8e\xbf\x90\x3c\x19\xec\xe7\xb7\xb0\x66\x9f\xf3\x90\xcf\x61\x3c\xce\x27\x90\x1a\xb1\xa4\xf6\x89\xb8\x3b\xf4\x5d\x12\xea\xe2\x14\xe2\x4b\xda\x34\x46\xb5\x86\x6c\xf6\x03\xef\xef\x1b\x72\x0e\xef\xc2\x1b\xf6\x0d\xa3\x25\xea\x49\xc3\xc1\x1e\x9e\xf7\x96\x14\x15\x95\xa8\xab\xcf\xb6\xd0\x17\x76\x0b\xe9\x80\x0d\x4c\x13\xff\x6e\x37\xe2\x0b\x1e\x5d\x06\xe2\xde\xa7\x25\x92\x76\x0b\x77\xe6\x6f\x4b\xb4\xb9\x3a\x0c\x3e\x4f\x54\x87\x56\xa8\x8b\xfa\x76\xa6\x52\xb4\xe2\x07\x01\x7e\xfd\xfe\x9b\x6f\xbc\x94\xd2\xa2\xaf\x7b\x16\xa1\xf1\xa2\xaf\x9f\xee\x3d\xfc\x67\x47\x37\x5f\x8b\xe0\x61\x96\x4f\x1f\x8e\x9e\x3b\x8b\x0a\x81\x83\x45\x34\x1a\xab\x2b\xbc\x75\x93\x09\x03\x39\x5d\xd5\x0f\x4f\x62\x72\x82\xa8\x88\xd4\x1d\x15\x2c\x65\x32\x9a\x47\x34\x1a\x8f\x6f\xc2\x08\xcf\x23\x38\x1e\x5f\xbf\x09\xbf\x3c\x99\x48\x2f\xb5\x67\xf5\x42\xbe\x17\x44\x51\x6a\x3c\x8e\x2a\xde\x9f\x6c\x48\x81\x77\x94\xf4\x36\xe4\x1a\x8c\xe7\x67\x59\xfe\xe8\x65\xce\xde\x2a\x11\xef\x2b\xa8\x98\x52\x7c\x88\x66\x2f\x9d\xaa\x1c\x85\x99\xea\xd7\x1b\xe9\x21\xca\xdc\x74\xa6\x8a\x86\x5d\x8a\xf1\x0f\xbe\xc9\x29\x8c\xa6\x69\x36\x2d\x39\x7c\xdf\x56\x3e\x6c\x79\x9e\x72\x3c\xe1\x1b\x9f\xc2\x90\x06\x1f\xcf\x2c\x18\x26\xa9\xaa\x3a\xc3\x34\x72\x4c\x99\x61\xcd\x99\x05\x7a\xcc\x68\x1a\x29\x61\xa3\x3b\xb2\xe3\x9c\xe2\xf7\x72\xc2\xd2\xcc\x19\x09\x26\x98\x61\xbe\xa1\xef\x2e\x91\x74\x17\xe9\xbb\xa7\x8b\xa0\xf5\x5c\x12\xd5\xbc\xe4\x45\x30\xaa\xba\xa6\xe3\x28\x21\x6d\xb7\xa0\xb5\x74\x86\xc6\x78\x1d\x1a\x7b\x36\x68\xec\xc2\xa1\x63\x05\x0a\xb5\x11\x3f\x34\xe2\x22\x93\x72\x27\xe3\x3b\xbd\x0d\x39\x20\xe3\xd9\xae\xc7\xbe\x08\x7a\x0f\xca\xfc\x17\x99\x21\x7a\x87\x08\xdf\xba\xe2\xf7\xb7\x4b\x4c\x05\x0c\x8c\xe1\x67\xcd\x19\x86\x0d\x62\xe1\x7a\x3c\xad\xb9\xca\x50\xbf\xdf\x0e\xb8\xe6\x55\x95\x03\x6e\xdd\x38\x1a\xdb\xa0\x19\xcc\xe0\xb6\x98\x04\x27\x9e\x91\x09\xdc\x59\xf5\xda\x52\x8f\xa8\xa1\xb3\xee\xf0\xee\x4e\x10\x65\x78\xea\x2c\xfc\x84\xef\xbc\x1b\xb0\xbe\x93\x26\x13\x28\x3f\xb8\x1b\xca\x64\x86\xf7\x95\xfd\x6c\xb7\x97\xcd\xab\xec\x32\xef\x83\xde\x6c\x5e\xa6\xdc\x73\xf5\xac\xcc\xaf\xdf\xb0\x03\xc5\xf7\x17\xa0\x7a\xf8\x15\x14\xe6\x3a\x1c\xc0\xf1\x64\x52\xdb\x9b\x92\xea\xe8\xf6\xea\xfb\xd4\x74\x25\xb7\xab\xf3\xd3\xdd\xb5\x26\x3b\xb0\x79\x9d\x6f\x76\x0f\xdb\x4c\x4c\xdd\x1f\x6a\x47\xdb\x1c\x6f\x63\x9b\x6c\xb9\xbf\xcd\xcf\xca\x36\x37\xf9\x81\xdd\x6e\xbe\x55\x37\xbd\xf9\x50\xd9\xfb\x26\x5f\x93\x00\x3f\xc3\xa3\x04\xe6\x53\x8d\x20\x98\x2f\x8a\x2e\x38\xbf\x15\x79\x70\x73\x04\x95\xd8\xb4\x88\x4e\xd0\x94\xca\x0a\x6a\x7a\xb2\xbd\xb6\x7e\xaf\xb7\xf5\x37\x16\xe7\x60\xaa\xf6\xa5\x1f\x93\x2b\x19\x81\x95\xf0\x84\xc1\x81\xcc\x50\x15\x8f\x70\x6d\x98\x8f\x2c\xee\xd2\xb5\xc9\xc4\x1f\xa8\x4f\xe5\x9c\x2a\x8a\xd8\x99\x1c\xeb\xc8\xcd\xe4\x28\x5f\x81\xfe\x6f\x4d\x01\x2b\xd9\x92\x10\x56\x32\x6b\x28\x50\x27\x8b\xce\x27\x45\x1d\x6b\x39\x3e\x91\xb4\xdb\xb0\x12\x81\xc8\xa1\x5d\x55\x62\x66\x29\xa8\x2d\x23\x08\xa9\xd3\x58\xd8\x61\x96\x01\xfe\xd4\x92\xd6\xb1\x47\x21\xdd\x91\x71\xb2\x6a\x69\xb8\x21\xb2\x36\x67\x32\xa9\x12\xd8\x3b\xce\x84\xeb\x64\x9a\x17\xaf\x72\x45\x03\x18\x75\x3a\x9d\x0e\x6f\x7e\x78\x13\x3e\x2f\xd1\xe1\x86\x42\x87\xeb\xf0\x26\x4f\xf1\xf4\x00\x46\xef\xbe\x2b\x76\x7d\xb4\x4c\x69\xba\x40\x0c\x51\xde\xc0\x0d\x78\x73\xb2\xde\xd2\xea\x97\x37\xd4\x9f\xac\x03\x59\xcf\x78\xb7\x67\xbc\xdb\x33\xde\xed\x19\xef\xf6\x8c\x77\x7b\xc6\xbb\x3d\xe3\xdd\xea\xbc\x1b\x45\xe9\x2c\x27\xd9\xa9\xe1\x1e\x9e\xf1\x6c\xbf\xf6\x3c\xdb\xd0\xf0\x6c\xd7\xb7\xf1\x6c\x43\x78\x7d\xb2\x96\x38\x12\x66\xc7\x8e\xd3\xe2\xd5\x93\x34\x8b\x46\xf3\x34\x2b\xd0\xfa\x39\xb8\x40\x2c\x1d\x9d\x2d\x84\xf8\x4f\xbe\xf0\x3e\x91\xd0\xb1\x7f\x7c\x58\x44\xeb\x35\xb8\x2c\x21\x66\xe8\x61\xfd\xf2\x85\x99\x0f\xa7\x0f\xbf\xbc\x78\xbc\x37\x6c\x14\x66\x72\x2e\x6a\xf6\xd8\x15\x5a\xd6\x24\x95\x2f\xc0\xa8\xcc\xc4\xc2\x5d\x87\x22\x1a\xf9\xf8\xfa\x57\xe0\xe6\x80\xae\xc6\xf7\x96\xb7\x29\x22\x18\x19\x7d\x39\x85\x54\xc3\xa1\xe5\x27\x5b\x34\xc8\x47\xf1\x1b\x0e\x96\x40\xce\x65\xa3\x94\xb3\x38\xe3\x4a\x4f\xce\xce\x6c\x10\xae\x3a\x28\xf9\x02\x8c\x32\xac\xa7\xa8\xc6\xd3\x76\x96\x9d\x48\xee\x35\x25\xcd\x15\x58\xed\x1d\x88\x2d\xda\xe8\xf5\x6c\x05\x85\xe4\x93\xd0\x54\x4b\x92\x21\x31\xb6\xca\x64\x9d\xee\x36\x4f\xd6\x99\x70\xb1\x4c\x45\xb3\x7c\x09\x94\xce\xef\x61\xc9\x58\x6e\x32\x85\x4a\x65\xa6\xee\x10\x52\x05\xb1\xa3\xd4\xff\xa2\x73\x2c\x9d\xac\xd9\x3b\x64\x44\x03\x38\x14\x05\xcf\xa1\x02\xee\xbc\x3b\xe6\xdf\xcf\xff\xc4\xf9\x29\x5a\x1a\x6c\xbc\xa2\xe9\xf3\xc4\xca\xd9\x37\x51\xe7\x76\x50\x1b\x36\x51\xd5\xe6\x66\xc7\x63\x73\xa7\xa9\x3e\x14\x08\x4a\x1b\x3a\x19\x35\x93\xe4\x1d\xf0\x5e\x29\x45\x3a\x9b\x0b\x38\xd8\x61\x8a\xf1\x84\x20\x8e\x9b\xe1\xb6\x0d\x06\x37\xf9\x55\xdb\xa5\xde\x7e\x5f\x9b\xef\xcd\xd0\x3b\x08\x36\xad\xa0\x24\xf8\x81\x4b\xb5\x5a\x4d\xce\xf3\x90\x99\x99\x6c\x8d\x4f\x79\x81\xdf\xee\xdc\x15\xf2\xd9\x00\x0d\x13\xf7\x4f\xf3\xd4\x03\x5b\x66\x03\xea\xfb\xca\x8f\x02\x9b\x39\xe6\x0c\xfd\x8b\x9f\x5d\x8c\x56\x98\x1c\x04\x66\x15\xb9\x43\x73\xdc\x42\xf7\x14\xd7\xb9\x75\x52\xe1\x70\xa2\x86\x56\x94\x2c\xe7\xdb\x22\x43\x4c\x5c\x93\xe7\x73\xff\x0b\xa5\xea\xb1\xac\xf2\x21\x5d\x62\x96\x66\xf8\xbd\x4a\xa5\x62\x89\xb2\x6c\x7a\x8c\xa6\x0f\x23\x18\x09\x30\xb5\x3a\x7f\x9a\x42\x9e\x6e\x3d\x85\xae\xc3\x48\x3c\x84\xd6\x4a\x5a\x93\xf0\xc8\x94\xf4\x55\xcd\xe5\xc2\x5a\x6b\x21\x5d\xaa\x60\xa7\xe2\xa5\x92\x7f\x6d\x0c\x33\x69\x4a\xfb\xda\xb7\xbc\x4e\x35\xea\xa1\x29\x6a\xa5\x27\x9b\x0e\x01\x51\xd4\xc8\x28\x1a\xaf\x08\x3a\xc8\xa0\xd9\x07\xaa\x9e\x92\x72\x88\x91\x28\xcf\x8d\x91\xfd\x2a\x25\x24\xea\xe3\x4b\xfa\x5a\xc4\xbf\x59\x11\x80\x9c\xb8\xe5\x21\x75\x5d\x23\x2b\xd9\x30\xa6\xca\x0d\x47\x21\x05\x93\x42\x04\xcd\xe0\xab\x8d\xd5\xee\x14\xf0\x8a\x9d\x67\x2f\xf3\xad\x53\x16\x3d\x3c\x95\xe7\x62\xa8\xcb\xab\xe6\x3c\x35\xa7\x78\x49\x1c\xe8\xd5\x32\x9c\x37\xbe\xf5\x55\x9c\x9e\xbe\x7e\x1a\x66\x38\x4d\xb4\x00\xe7\x34\x64\x88\x2e\xe4\x6f\xfb\xa3\xed\x0b\xfa\x61\x5a\xe0\xa9\x8d\x41\x60\x44\xac\x62\x41\x39\xe8\x8b\x26\xd1\x61\x48\xb0\xe9\xcb\x2a\xeb\xc2\xc5\x90\x04\xb1\x2a\xa5\x53\x9e\xcc\x45\xea\xae\x14\x05\x6e\x16\xdc\xd5\xae\x4f\xee\x46\x6e\xe2\x10\x9c\xf9\x6d\xe3\x02\x82\xa2\x94\x56\xc2\xa3\x50\x6b\xbe\x28\x68\x73\xcf\x75\x41\xcd\xe6\xf2\x21\xb1\xcc\xe6\x1a\x55\x49\xc3\x56\x89\x88\x5e\x9d\x16\x05\x2b\x62\x93\x86\x72\x9e\x10\x63\xe3\x58\xab\x22\x8d\xcd\xa5\x43\x97\xea\x8d\x15\x6a\x37\x80\x86\x4b\xb8\xbd\x4b\xf8\x5c\xac\xbc\xb6\x18\x15\x6d\xc9\xb9\xaa\x6b\x81\x15\xe6\x3e\xd1\xab\x03\xcf\x78\xc7\x8a\xa9\xb5\x30\x78\x5a\x11\xfd\x8b\x86\x5c\xa9\xb1\x38\x0f\x5e\xd1\xf2\xf5\xd7\x8c\xfc\xfd\x25\x29\xa7\xf7\x25\x17\x21\xd8\xf8\xd2\xe0\xcd\x70\xac\x8b\x94\x37\x97\xaf\x4b\x88\xb7\x97\xb7\x82\xe3\xed\x65\xb5\x3c\xb9\x65\xc9\xac\xd5\x20\x1c\x39\xda\xe6\x82\x5a\xde\xb4\xb9\x54\x73\xac\x9d\xad\x55\xb7\x5f\x75\xaa\x52\x27\xaf\x64\x4e\x6d\x4b\xae\xb4\xcc\x09\x4f\xde\x62\xab\xfb\xee\xec\xcf\x51\xa3\x2a\xc7\xdd\x56\x5e\xb2\x4a\x9b\xa7\xea\x48\xdd\x1a\xf7\x71\x6d\xf7\x6e\x92\xec\x79\xcf\x86\xb5\x07\x3e\xbd\xeb\x2c\x03\x1b\x78\x44\x0b\xec\x3a\xcd\x38\xb6\x7c\xcc\xf2\x03\x4c\x6f\x7e\x8b\xaa\x08\x70\x2a\x77\xea\xa6\x4d\xee\x3d\xdf\x6c\x86\x71\xf5\x25\xe5\x52\x70\xd4\x04\x81\xd9\x5a\xb2\xf6\x4e\xd1\x02\x81\x5a\x63\x5a\x1d\xc5\x5a\xb0\xfd\x4d\xc7\xab\x77\xfb\x68\x5d\xb6\x2e\x57\xd9\x38\x92\xe0\xb6\x0b\x08\x33\x82\xf7\xf7\x8d\xa5\xb5\x74\x7f\xcb\xc8\x8d\x03\x96\x76\x02\x95\x26\xe1\xd1\x06\xa9\xb7\xd5\x2a\x90\x73\xbf\x69\xe4\xde\xcf\x6f\x93\x7b\xdf\x84\xcf\x37\x4b\x00\xf4\x68\xb7\x9e\xeb\xda\x4d\xb0\x22\x09\x95\xb0\xa0\xe6\x10\xb6\x0f\xab\x95\x02\x8d\xfc\xe0\x86\xa0\x63\x6d\x00\xb3\x51\xa8\xd6\xf8\x46\x2a\xc9\x1a\xc1\x0b\xc1\x87\x5a\x42\x12\xa2\x65\x96\x4e\x6d\x22\x41\x01\x02\xd7\x8a\xac\x35\x3f\x94\x5f\x80\x80\x55\x27\x74\xc5\x74\xa9\x35\x5d\xb8\xb2\x6d\x7b\xe9\xa4\xee\xca\x29\x58\xc3\xfc\xde\x3e\x4f\x37\x97\x47\x6e\xea\xe2\xdc\xaa\x44\x30\x18\x1c\xaf\x85\xb8\x7b\x8b\xb0\x3b\x14\x30\x59\xef\xcb\xba\x2e\xc9\x66\x61\x77\xf5\xcd\xf5\xdc\xd0\xbb\xa0\x58\x3b\x0c\x28\x1b\x3f\xaf\x19\x4a\xae\xe6\xfe\x0b\x6d\x5f\x0e\x78\xd1\x27\x18\x5f\x40\x2f\xa1\xf5\x43\x8f\x7a\xbc\xdb\x2c\xe7\x72\x1e\xd8\x9c\x07\x21\xed\xee\xa5\xe1\x4d\xc6\x7f\x3a\x6b\xd3\x41\xa7\xf1\x4b\xaf\x47\xf2\x9e\xf2\x86\xe3\x18\x56\xbb\xa3\x51\x22\xa3\x86\xc1\x58\xac\x1d\x06\x14\xbb\xaa\x38\x52\xa9\x35\xa8\x7d\x08\x66\x9f\x4b\x3c\xdf\x6e\x91\xeb\xfb\x2b\xa0\x8c\x31\x31\x42\xad\xaa\x8e\xdc\x1d\xa5\x70\x55\xe3\xd9\xc5\x35\x7a\xa3\x16\x5a\xcd\x73\x4c\x40\xed\xce\xee\xde\x4d\x48\xd3\xf2\x80\x8a\x9a\x0a\x6e\xe6\x88\x9f\x80\xd5\x76\xdc\xee\x45\xca\xab\x66\xdb\xd6\xdb\x9f\x01\x35\x38\x6e\xab\x50\xd3\x7a\xba\x00\xcd\x6b\x41\x70\x14\xb3\x79\xdd\x30\x9b\x37\xb6\x31\x9b\xd7\xe1\x0d\x8f\xa9\x6c\x42\xf9\xed\x2f\x7b\x4d\x67\x47\x93\x0e\x9e\x3a\x3a\x14\xe7\xa4\x10\xa7\xe9\xc8\x68\x7f\x84\x56\x30\xb0\xe5\x51\x11\xdc\xd0\x43\xe7\xc3\x15\x49\xfc\x2f\x49\xc0\xbf\xc1\xa7\xe3\xe5\xcb\xfb\x5f\x7e\xf8\x8d\x17\xc8\x57\x87\xd3\xa0\xbc\x7f\x83\xd1\xdb\x79\xdf\x2b\xd5\x51\x33\xc3\x27\x6d\x1e\x6d\xbc\x27\x22\x4b\xc0\x43\x4f\x9e\x4f\xe7\xe5\xd2\x1e\x62\xd3\x7c\x71\x98\xab\x33\xb5\xd5\x34\x9c\x87\xd6\x2b\x78\xa6\xac\x3f\x3c\x86\xb5\xdd\x2a\xcf\x89\x43\xe7\xae\xf0\xc4\x8f\x86\x57\xf9\x28\x78\x0e\x5d\x91\xab\xdb\xd8\x95\x1d\x79\x59\xfb\xfc\xa9\x6c\xf0\xe2\x5b\xe4\xcb\x2f\xbd\xf1\xda\x6c\xa3\x06\x99\x62\x42\xcc\x9b\x5e\xb3\x32\x59\x48\x1d\xc7\xb2\x2f\x6d\x98\xee\x0d\x0c\x43\x3b\x15\xaf\x27\xe5\x53\x55\xe7\xad\x98\x54\xc5\x8e\x56\xc7\xfb\xa4\xaa\x1f\x8e\x72\x93\xa7\xfd\x66\x15\x7b\xb7\x82\xf1\x85\xe0\xec\x1d\x0f\x32\x55\x2d\xa3\xe6\x16\xeb\xc7\x7c\x80\xc3\x19\xab\x5c\x57\x42\xb2\xe1\x9c\xbf\x90\x86\x53\x5b\x2e\xe0\xc9\xf8\x70\xcb\x54\x9b\x89\x78\xac\x78\x80\xd5\xae\xf1\xd5\x9a\x87\xd7\x87\x82\x15\xbf\x05\x01\x51\x5b\xd8\xf3\x41\x44\x4a\xe9\xfc\xd5\x71\xb4\x8f\x35\x8f\x18\xf5\xb7\x88\x53\xce\xcd\x1a\x9f\x93\xd3\xad\x5d\x18\x34\xc6\x6c\xba\xb0\xb6\x61\x85\x6f\x42\xcf\x46\xac\xb5\xc6\xda\x8d\x6d\x5b\xb0\xbd\xfe\xdc\xf9\x69\x50\xe4\x1e\xe4\x8e\xe7\x9b\xeb\x5f\xd9\xb8\x7f\x9d\x92\x0d\x5a\x7a\x01\xe5\xd8\x89\xcf\x36\xb8\x3a\x46\xe1\x8e\x1a\x9d\x8a\x04\x34\x60\x7d\xe5\x22\xc9\x97\x94\x94\xca\xf2\x76\x36\xdf\xde\x34\xe2\x63\xcf\x30\xa5\x3a\xe8\xba\xa3\x47\xdd\xf0\xd0\xdb\x9c\x9e\xb2\x79\x5b\xe1\x82\x8f\x43\x5b\xb4\x1e\x5b\x6a\xa7\x6e\xd1\x6f\xbf\x2a\x3e\xe4\x92\x19\x90\x06\x9f\x91\x97\xcf\x84\xdc\x7f\xe7\x15\x7c\xe3\xeb\xbf\x7d\x78\x91\x5b\x46\x48\x06\xbc\xf1\x8e\xf1\x19\x6b\x79\x5e\xd5\xda\x3b\xa3\xba\xb4\xf5\xdf\xe8\xfd\xf2\xf2\xd1\xe0\x1b\x2f\x9d\xbc\xfe\xce\xec\xc6\xeb\x61\x5e\x74\xa3\x05\x43\x2b\xba\xab\x7d\x6d\x5e\x12\x21\x6c\xd0\xcb\x69\x41\x76\xce\x87\x89\xd2\x8f\x1f\x11\x0f\x75\x1e\x22\x5a\x37\x9a\x41\x34\x34\xa4\x6d\xe8\x3d\x21\x0c\x07\x57\x8a\x86\xb5\x91\x5f\x16\x36\x36\x7b\xf9\xbc\x7c\x4c\xfc\xea\xbd\xdf\xb8\xf7\xf8\xf9\xe7\x1f\xb6\x23\x48\x57\x22\x84\xbf\xdc\x4b\x4d\xcd\xa3\x69\x9b\xb3\xd1\x11\xb8\x57\x9e\x71\x6a\xd2\xf6\xda\x99\x78\xd5\x78\xe6\x4f\xe8\xb2\x70\xec\xa9\x18\x6d\xdd\xf9\xe7\xc7\xf3\xe5\x6b\x5f\xfd\xca\x79\xc9\x5c\xc3\xdd\x7a\xbb\x25\xd4\x65\xd8\xc8\x7c\xae\xec\x63\xb6\x30\xbb\x4f\xc5\x60\xe6\x9c\x7a\xe6\xc6\x1c\x8a\xa1\x85\x21\xe3\x37\x39\xbb\xd9\x3c\x9d\x10\x1b\xba\x8d\xf1\x84\xcd\x36\x34\x55\x0b\xf8\x9a\x09\x4d\x93\xb5\x59\x3b\x33\x9a\xf3\x01\x44\xf8\xe0\x75\xad\xc6\x72\x62\x95\xfa\x9a\xe5\x84\x53\x39\xfc\x8a\x39\x83\xeb\xfd\xbe\x75\x55\x45\xeb\x7e\xfe\x27\xe7\x91\x20\xb6\x42\x8e\x8d\x7b\xa5\x51\x0f\x61\x5c\xe1\x65\x1b\x18\xdc\x56\x48\xfb\x05\xb1\x81\x38\x9f\xe9\x83\xf4\x6a\xac\x2d\xac\x7b\xf3\x34\xcb\x0e\xd3\xe9\x43\xce\x96\xd9\x40\x33\xed\x28\xf7\x13\xb8\xa1\x0e\x84\x12\xab\x44\xa3\x38\x3b\x42\x5e\xbc\x14\xe3\x2c\x13\x7a\xf1\x98\x45\xac\x13\xf5\x4d\x7a\x5a\x4c\x92\x84\x1c\xa0\x11\xe1\x90\x38\x17\x28\xb4\x3d\xae\xf1\x86\xf2\xf4\x80\xe0\x38\x0d\xad\x07\xe5\x70\x14\x3f\x11\xac\x44\xcb\xb0\x81\x13\x54\xd7\x18\x15\xbc\x73\xb7\x96\xf4\x1a\x8b\x84\xd7\xd8\xbe\xf3\x41\x87\x46\xc0\xdd\x2e\x4d\x92\x84\x1d\x04\xc7\x43\x9d\x88\x9e\x08\x62\x11\xe6\x61\xd4\x50\x12\xa9\x18\x10\x6d\xc0\xee\xfa\xd5\x3e\xbf\x97\x55\xeb\xd3\x13\x75\xbb\xbb\xbb\xee\x10\x1d\x86\x1e\xd4\xbe\x99\xe0\x12\x41\x27\xbb\xda\xd7\x6d\xc7\x89\x84\x4f\x65\xd8\x62\x0a\x9c\x08\x43\x3b\xda\xfb\x2a\x4e\x06\xfb\xf8\x96\x17\xf2\x54\x3a\x52\x8d\xc0\x3e\xde\xdb\x03\x2a\x8a\x29\xed\xe7\x02\x4b\x6e\xb3\x03\x9b\x8c\x31\x18\xd1\x31\x9e\xec\xb0\x38\x07\x07\xc8\x01\x73\xee\x8c\x13\x8c\xc8\xde\xde\x7a\x1d\x23\x00\x89\xe7\xd0\xda\xc6\xf8\x09\x8d\x1a\xcb\x51\xe3\xe0\xa8\xa5\x17\x60\xdb\x1f\x76\x46\x9d\xeb\x51\xa7\x09\xb6\xa3\xb6\xc9\x38\x07\x23\x3c\xce\x85\xef\x61\x16\xa7\x2a\x26\x4d\x91\xb8\xe3\x4f\xdd\xf1\xf3\x82\xc5\x8b\xbd\xa1\x1e\x49\x21\x22\x6e\xf2\xd1\xa5\x7c\xa7\xea\x6c\xba\x43\xf9\x3c\xe5\xaf\xde\x90\x4f\xd8\x4e\x17\x6f\x9d\x2e\xcc\xd5\x84\x57\x2b\x72\x6b\xa0\x1a\x3d\x33\x71\x17\x76\x87\x2a\xc2\xb2\x0e\x3b\x69\x60\x91\x26\x03\x58\x24\x61\x58\xd0\x5b\x09\xe9\x76\xd3\x5b\xc5\xbe\xec\xbb\x6c\x00\x49\xca\x41\x92\x2a\x90\x94\x0a\x24\x99\x07\x92\xd2\x01\x09\xcc\x57\x2b\x17\x2d\x4b\x87\x59\x90\xf0\xca\x34\x54\x32\x03\x2c\xea\x00\xcb\xce\x6b\x53\x4b\x7a\xc6\xe5\x5a\x80\x36\x95\x68\x04\x77\x87\x60\xb5\xda\x00\x19\x0b\xf5\xdc\xf5\x44\x7c\x66\x63\x52\x20\x1b\x79\xc2\xc4\xad\x66\xeb\x1d\x13\x11\xf2\x38\x2d\xee\x3e\x22\x86\x14\x3a\x43\x12\xde\x87\x4d\x48\x29\x64\x92\x1e\x6e\xa7\x22\xc6\x7e\x6e\x9d\x56\xa7\x09\xdf\xa2\xb0\x48\xde\x4c\xd9\x71\x7f\x81\x49\x2c\x13\xe9\xe3\x58\x92\x9c\xbd\x1c\x0e\x00\x4c\x7b\x43\x00\xcb\x84\xe3\x4a\x01\x60\x96\x94\xa6\x79\x38\x4d\x4a\x15\x22\x66\x7f\xda\xed\x66\x6a\x39\xe7\xb2\xec\x5e\x92\x83\x9d\x2c\x99\xbb\xc5\xe7\xaa\xb8\xf6\x58\x3c\xbd\x88\xa3\x60\xe5\x55\x3e\x61\x10\x79\x11\x88\x85\x77\x60\x21\x80\xbd\x3b\x97\x59\xc2\x53\xbc\xec\xf1\x36\x13\x42\xd8\x04\x43\xd4\x9f\x63\xa2\x02\x8a\x7e\x1d\xb3\xe3\xbb\xf3\x79\x81\xbc\x43\x83\x40\x0a\xb1\xa2\x31\x30\x85\x45\x62\xc2\x85\x29\x77\xce\x2f\xde\x74\x02\xb7\x9a\x8f\xe3\x9b\x93\x6e\xd7\xfd\x05\xcb\x64\x00\xb3\xa4\x76\xd8\xee\xee\xa6\xeb\xc0\x66\x9b\xc2\xb9\x5d\x9c\x63\x67\xef\x4c\xed\xde\x81\xcb\x64\xb0\xbf\xbc\x75\xbc\xbf\xd4\xf4\x64\x96\x4c\xed\xe6\xb1\xc9\x78\x09\x46\xd3\xf1\x72\x02\x17\x89\x8b\xc9\x33\x17\x93\x45\xb8\xc4\x62\xb5\xda\x5d\xc8\x78\x70\xf1\x0c\xc8\x60\x13\xb1\x57\xc1\x6e\xb0\xf9\x6a\xb5\x00\x30\x8b\xb5\x8b\x6d\x19\xe4\x97\xc6\x33\x48\xc0\x8b\xc9\xe0\x20\x2e\x6f\xe1\x83\x7c\xb5\x8a\xf3\x64\x06\x46\x69\x32\x83\xe5\xde\x1e\x18\x95\x7b\x7b\x62\xf7\xd9\x7a\x7a\xc7\xc0\x74\xb5\xca\xd7\x62\x49\x32\xab\x9b\x93\x38\x40\x71\xd6\x22\xad\xaf\xc3\x8d\xe0\x3a\xdc\xf0\xd6\xe1\xc6\x64\x47\x92\x52\x39\xa9\xdb\x2a\x3e\x72\xe9\x00\x98\x58\x00\x1b\x02\x96\x25\x83\xfd\xec\x56\xb9\x9f\x69\x40\x4f\x13\x62\x01\x6d\x93\x71\x06\x46\x64\x9c\x09\x2a\xb5\x9b\xae\x56\xbb\xde\xba\x39\x04\x48\x40\x78\x0a\xf4\x1e\x71\x81\x3c\x75\x81\x4c\x21\x86\x29\xd8\xb1\x5f\xe7\x76\x74\x2f\x0e\xba\xdd\x42\xfa\x19\xcf\x05\xbe\xa8\x38\xcb\x38\x9e\x42\xca\x97\xc0\x7c\x9e\x82\xb5\x39\x18\x2c\x6b\xe4\x78\xd8\x4a\xea\x31\x35\x91\x09\xfe\x4c\x12\xe4\xc5\x16\xc6\x09\xea\xeb\xab\x1f\xcc\x13\xb2\x5a\x61\x3e\x5f\xc3\x18\xe6\xab\x55\x6f\x98\x24\x09\x8d\x39\x85\xd1\x54\x36\xe5\xbf\xe0\xd0\x04\x8f\x15\x2b\xdd\x10\x7a\x3a\x49\x45\x24\x6b\x8a\x97\xaf\xe0\x74\x4a\x31\xc3\xd3\x22\x29\xed\xc8\xa5\x46\x25\x0d\xf3\x76\x65\x8c\x40\x9f\xe5\x5f\x5b\x2e\x11\x7d\x39\x2d\x50\x0c\x34\x1d\x88\xcb\x98\x55\x3e\x01\x07\x1e\xf7\x4f\x97\xe8\xf6\x31\x4a\x67\xe7\x6d\x5e\x5c\xe7\x0a\x4e\x3e\x42\x3d\x88\x58\xdb\x6b\x85\x76\x67\xd1\xa7\xef\xff\x4d\x34\x8a\x6e\x47\x30\xfa\x7f\xff\xfe\x7f\x53\xa9\x9f\xff\x8e\x4e\xfc\x0b\x9d\xf8\x5d\x95\xf8\xe4\x6f\xff\xcc\xa4\xfe\xd4\xa4\xfe\xdc\xa4\x7e\xa2\x2b\xfc\x4b\x95\xf8\x50\xb7\xf5\xa1\x6d\xe2\xaf\x4c\xea\x2f\x4d\xea\xaf\x4d\xea\xbf\xa9\xd4\xc7\xba\xa7\x5f\xfc\x48\x37\xfa\x1d\x9d\xf3\x43\x53\xfa\xc7\xfa\xdb\xbf\xd2\xdf\xfe\x56\x27\xfe\x9d\x6e\x48\x0f\xe1\x63\x3b\x84\x1f\x99\xd4\x5f\x98\x94\x06\xc4\x27\x1f\x98\x31\xeb\x0e\x3f\xd6\x8d\x7e\xfa\xd3\xff\xaa\x52\xbf\xfc\xbe\x18\xa8\xe8\xfb\xbb\x3c\xf5\x2a\xef\xf3\xef\x4d\xea\xc7\x3a\xf5\xcb\xef\x8b\xb9\xdd\x15\x49\xd1\xc7\xd7\x44\xf2\x03\x9e\xfc\x2d\x91\xfc\x5b\x9b\x14\x0d\x7c\x83\xf7\xf4\xfe\xff\x13\x8d\xa2\x97\xc4\xc2\xfc\x58\xa5\x3e\xf9\xe0\x77\x4d\xea\x3b\x26\xf5\x5d\x95\xfa\x9f\xff\x52\x25\x3e\xd2\xa5\x3e\xfa\x17\x2a\xf1\xe9\xfb\xbc\xb7\x97\x45\x63\xff\xbb\x4a\x7d\xf8\x5d\x9d\xf8\x9e\x4e\xfc\x9e\x4e\xfc\xbe\x4a\xfc\xfc\x5f\xab\xc4\x27\x1f\xe8\x42\x1f\xe9\xac\x8f\xff\x4e\x25\x7e\xf9\xfd\x7f\x50\xa9\x4f\xdf\xff\x59\x34\x8a\x5e\x11\xdd\xfc\xa9\x4a\x7d\xf2\xc1\xef\xa9\xd4\x87\x7f\x60\xb2\x7e\xdf\xa4\xfe\xd0\xa4\xde\x37\x29\x5d\xee\x43\xfd\xf1\xa3\x7f\xab\x13\xba\xad\x8f\xfe\x8d\x4a\xfc\xf2\x07\xba\xcb\x5f\xfc\x94\x27\x7e\x9b\xa7\xbe\x63\x52\x7c\x8d\x5e\x79\x8f\xa7\xfe\x95\x4e\x7d\xfa\x3e\x07\xf7\xab\x62\x90\xff\x87\x4a\xfd\xfc\x7b\x3a\xf1\x6f\x74\xe2\xf7\x54\xe2\x93\xbf\xfb\x1d\x9d\xfa\xdb\x7f\x30\x79\xdf\x31\xa9\xdf\x35\x5f\xff\x5e\xa5\x3e\x7c\x5f\x67\x7d\xf0\xef\x4d\xea\x3f\xe8\x8f\x3a\xeb\x43\x9d\xf3\xf3\x7f\x6b\x5a\xd0\x03\xfb\xf0\x3f\xa9\xc4\xc7\xba\x9f\x8f\xbf\x6b\x0a\x7d\x60\xba\xd6\x79\x1f\xff\xc4\x74\xf3\x7d\xdd\xc2\x7f\x34\x59\x36\xa5\x5b\xfd\xe8\x0f\x75\xe2\x0f\x54\xe2\xd3\xf7\xf9\x62\xbe\x26\x60\xf2\x67\x2a\xf5\xc9\x07\x3f\x54\xa9\x8f\xfe\x48\x25\x7e\xf9\x03\x5d\xec\xd3\xf7\xf9\x6c\x7f\x53\x54\xf8\xcf\x2a\xf5\x8b\xbf\x56\x89\x0f\xbf\xaf\x12\x9f\x7c\xf0\x23\x9d\xf5\x43\x9d\xd0\x39\xbf\xf8\x33\x9d\xf3\x63\x9d\xf3\xa7\x2a\xf1\xd1\x1f\xab\xc4\x2f\x7f\xa8\x4b\xff\xf2\x07\xff\xdd\xa4\xfe\x41\xa5\x3e\x7d\x9f\xe7\xbd\x2e\xc6\xf0\x13\x95\xfa\xf0\x4f\x55\xe2\x93\x0f\x7e\x6c\x52\x7f\xa6\x52\x1f\xff\xd0\x64\xd9\x62\x3f\x31\xa9\x3f\xd7\x6d\xe8\xf2\x9f\xfe\xf4\x3f\x9b\xd4\xff\xad\x52\xbf\xfc\xe1\xbf\xd3\x79\xef\xf3\x81\xdc\x11\xdd\xff\x17\x95\xfa\xf9\xef\xeb\xc4\xbf\xd3\x89\x3f\x50\x89\x0f\x7f\xa2\x13\x7f\xae\x13\x7f\xa1\x13\x7f\xa5\x0b\xff\x2f\x2a\xf1\xc9\x07\x7f\xa9\x53\x7f\xf7\x3d\x95\xfa\x85\xfe\xf8\xb1\xce\xf9\xf8\xf7\x4c\x21\x9d\xfa\xd0\xd4\xfb\x40\xb7\xfe\xd1\x9f\xa8\xc4\xa7\xef\xff\x8f\x68\x14\xfd\x33\x31\xe0\x3f\x57\xa9\x0f\xff\x5a\x25\xfe\xe7\xf7\x54\xe2\xd3\x3f\xe6\xf8\xfe\x55\x51\xea\xff\x54\xa9\x4f\x3e\xf8\x2b\x95\xfa\xc5\x4f\x4c\xd6\x7f\x53\xa9\x0f\xff\xc6\x64\xfd\xb5\x4a\x7d\xf4\x1f\x55\xe2\xd3\x9f\xfe\x17\x95\xfa\xe5\x0f\x7e\xc7\xa4\x7e\xd7\xa4\xbe\xa3\x53\x3f\xfc\xb1\xae\xf1\xc7\x9c\x66\xbd\x21\xba\xff\x0b\x95\xfa\xf0\x7f\xe8\xc4\xcf\x74\xe2\xbf\xab\xc4\x27\x1f\xfc\x8d\x49\x7d\xa0\x3f\xfe\x9d\xc9\xfa\x7b\x93\xfa\x5b\x95\xfa\x47\xdd\xfc\xc7\xba\x89\x4f\x7f\xfa\x63\x93\xfa\x91\x4a\xfd\xf2\x07\xdf\x33\xa9\xef\xea\xd4\x0f\x7f\x47\xa5\x7e\xc1\x49\xe0\x1b\x1c\x58\xbf\x10\xc5\xbe\x25\xc6\xcd\x67\xf5\xa6\x18\xf7\xff\xa5\x52\x9f\x7c\xf0\x0f\x3a\xf5\xb3\xdf\x31\x29\x5d\xee\xd3\x9f\xfe\xa5\x4a\x7d\xf4\x7d\x9d\xf5\xc7\x9c\x84\xbf\x25\x1a\xf9\x4b\x95\xfa\xc5\x07\x2a\xf1\x8f\xfa\xdb\xcf\xff\x48\x25\x3e\xf9\xd9\x77\xf4\xb7\x7f\x6d\xb2\xbe\xab\xb3\xfe\x95\xc9\xfa\x3d\x93\xfa\x9e\x4a\x7d\xfc\x23\x95\xf8\xe8\x07\x2a\xf1\xcb\x1f\xfe\xa1\x49\xfd\xa9\xee\x5a\x54\x14\xf3\xe4\x34\xea\x2d\x39\x4f\xde\xe7\x5d\x31\xc4\xff\xaa\x52\x3f\x7f\x5f\x27\xfe\x58\x27\xfe\xbd\x4a\x7c\xf2\x77\xef\x9b\xd4\x1f\x9a\xd4\x7f\x30\x29\x5d\xee\xe7\xff\xab\xce\xfa\xd9\xef\xab\xd4\xc7\x7f\x61\xb2\xfe\x40\xa5\xfe\xf1\xf7\x4d\x96\x69\xec\x67\xba\x83\x7f\xd4\xa5\x3e\xfe\x4b\x9d\xf8\x2b\xdd\xba\xee\xf0\xe3\x3f\x37\x3d\x9b\x36\x75\x4b\xbf\xf8\x23\x5d\xc8\x8c\x40\x97\xf9\xe8\x47\xa6\xda\xf7\x4d\xea\x3f\xfd\x7f\xec\xbd\x6b\x77\x1c\xc7\x75\x28\xfa\x1d\xbf\x02\xe8\x23\x4f\xaa\xa6\x6b\x1a\xdd\xf3\x02\xd0\x40\x61\x8e\x44\x52\x96\x62\x91\x92\x45\x4a\x96\x3c\x1a\xf3\x34\x66\x6a\x30\x2d\x36\xaa\x47\xdd\x35\x78\x88\x98\xb3\x92\x38\xb6\xe3\x38\x3e\x89\x43\xbf\x63\xca\x71\x6c\xc7\x71\x9c\xc4\x96\x1d\xc5\xa2\x14\xdb\x6b\x5d\xbd\xa8\xf3\x41\xf9\x0d\xe4\x47\xfe\x8a\xbb\xea\xd9\xdd\x33\x3d\x00\x28\x51\xc9\xcd\xba\x5e\x5c\xc4\xec\xae\xe7\xae\x5d\xbb\x76\xed\xaa\xda\xb5\xcb\x40\x59\xec\x2b\x06\xfa\x3b\x03\x19\x9c\xdf\xfc\xb6\xae\x49\x63\xf1\x9e\x6e\xe2\x5b\x26\xea\xb7\xba\xca\x2f\x6a\xe0\xfb\x0a\xb8\x77\xf3\xcf\x0d\xa4\xcb\x7c\x57\x54\xf3\xb8\x08\x13\xc8\x0a\xb4\x45\xe0\x33\xa2\xb3\x38\x13\x3c\x25\x3a\xeb\x17\x0a\xba\x73\xeb\xeb\x06\xfa\xa6\x82\xde\xfd\x91\x02\xee\xbe\xfa\x43\x05\xdd\xbb\xf9\x57\x06\xfa\x6b\x03\xe9\xac\x77\x6f\x70\xf4\x3e\x2d\x0a\x7e\x55\x41\xf7\x6e\x7e\xd3\x40\xdf\x56\xd0\xfb\x7f\xae\x80\xbb\x37\x38\x87\x3e\x2d\x32\xfc\x52\x41\xef\x7c\x5d\x01\x77\x6e\x7d\x5b\x07\x69\xe0\xf6\x5f\x69\xe0\xaf\x4d\xa2\xef\x1a\xe8\x7b\x3a\xf9\x37\x4d\xd0\x2b\x0a\x7a\xff\x2f\x14\x70\xf7\xd5\x1f\x29\xe8\xde\x4d\x9d\xf3\xde\x2b\x7f\x6f\xa0\x3f\xd1\xe9\x6e\xf0\x41\x71\x59\x60\xf6\x2b\x05\xdd\x79\xe3\x15\x05\xbd\xf3\x5d\x1d\x74\xeb\x47\x3a\xe8\x7b\x26\xe8\x6f\x75\xd0\xdf\x9a\xa0\xbf\x37\xd0\xdf\x19\xe8\x1f\x14\x74\xfb\xdb\x3a\xbd\x2e\xfe\xee\xab\xbf\x55\xd0\xbd\x57\xfe\xc1\x40\x7f\xaa\x63\x6f\x70\x6d\xe4\x8a\x40\xed\x5f\x15\x74\xe7\xd6\x3f\x2a\xe8\x9d\x1f\x99\xa0\x7f\x52\xd0\xed\xef\xea\xb8\xbf\x33\x71\xbf\x30\xd0\xbf\xe8\xc8\xbf\x57\xc0\xbb\x3a\xdf\xbb\x3a\xea\xf6\x6f\x15\x70\xef\x95\x2f\x6a\xe8\x7b\x1c\xb1\x2b\x9f\x15\xf8\xf0\xee\x7c\x46\xe0\xf3\x9a\x82\xde\xfa\x8e\x06\xbe\xab\x81\xbf\x51\xc0\x3b\xff\xa0\x80\x3b\xb7\x5e\xd7\x41\xff\x68\x82\xde\xd0\x41\xff\xa4\xf3\x7d\x4f\x01\xef\xe9\x02\xde\xfb\x96\x06\xbe\xa1\x01\x5d\xdb\x9d\x37\xff\x5e\xe7\xff\x17\x0d\xfc\x42\x27\xba\xa1\x80\xdb\x5f\xd7\xc0\x37\x15\xf0\xee\xcf\x4d\x7e\x83\xc9\x9b\x06\xcd\x37\xff\xc5\x40\xff\x64\xa0\x5f\x18\xe8\x47\x06\xf7\x5f\xea\x2a\x7f\x69\x82\xfe\xcd\x40\xff\xaa\xa0\xf7\xff\x54\x01\x77\x6f\x70\xe9\xf9\xac\x20\xdb\xbf\x29\xe8\xce\xad\x7f\x37\xd0\x6f\x15\xf4\xee\x2f\x15\x70\xef\xe6\x2b\x0a\x7a\xff\x0b\x26\x88\xb3\xd8\xb3\x62\x61\x70\x83\xb3\xf8\x67\x44\x71\xbf\x56\xd0\x9d\x37\xfe\xc8\x40\x7f\xa2\xa0\x77\xfe\xd5\x04\x7d\xd1\x40\x7f\x6a\xa0\x3f\x53\xd0\xdd\x57\x7f\xa9\xa1\x1b\x5c\x69\x79\x4e\x14\xfc\xba\x82\xee\xbc\xf1\xe7\x06\xfa\x0b\x05\xdd\xbd\xc1\x45\xcd\xf3\x22\xdd\x2d\x05\xdd\x79\xf3\x97\x0a\x7a\xeb\xa6\x02\xde\xf9\x37\x13\xf7\xba\x82\x6e\xeb\x44\x77\xde\xd0\x45\xbc\xf3\xba\x49\x95\xa5\xff\x57\x05\xbd\xfb\x2b\x05\xbc\xff\x7f\x4c\xdc\x6f\x15\x74\xf7\x06\xd7\x87\x3e\x2b\xb0\x78\x43\x41\xef\xdc\x52\xc0\x9d\x37\xfe\x4a\x07\xbd\xa9\x81\xdf\x98\xb8\xbf\x36\xd0\xd7\x15\xf4\xee\x6b\x0a\xb8\xfd\x23\x05\xdc\x7d\xf5\x77\x06\xfa\x99\x82\xee\xdd\xfc\x3b\x1d\x76\x83\x97\x1f\xf0\xca\x7f\xf3\xc7\x0a\xba\xf3\xc6\x77\x15\xf4\xd6\xdf\x6a\xe0\x07\x1a\xf8\x3b\x93\xe8\x27\x06\xfa\xb1\x81\x7e\x66\xa0\x9f\xea\x0c\x3f\x54\xc0\xdb\xba\xf8\xb7\x3f\x6f\x12\xbd\x6a\xa0\x9f\x1b\xe8\x35\x03\xfd\x4a\x41\xb7\x75\x4d\xef\x19\x2c\x7e\xa4\x43\xbe\x6f\x52\xeb\x7a\xde\xd2\xd8\xbc\xf7\xa6\x06\xfe\x8f\x2e\x48\xa3\x70\x3b\x43\xe1\x07\x06\xfa\x67\x03\xfd\x5a\x43\xaf\x1b\x9c\xbf\xa0\x80\xbb\xaf\xea\xe2\xdf\xd7\x84\xbb\xf7\x3d\x81\xa8\xa8\x9b\x8f\xe5\x80\xf0\x3a\x7f\x63\xa0\x1f\x6a\xe8\xde\xf7\x44\xdb\x62\x01\x8a\x3a\x26\x02\xe4\x7d\x1d\xec\x0b\xf0\xcd\x0c\x14\x05\x1c\x89\x2e\xe2\xf3\xf9\x8e\xe8\xa2\x3f\x51\xd0\x9d\xd7\x3f\x6f\xa0\x2f\x18\xe8\x4b\x0a\x7a\xf7\x8f\x34\xa0\x53\xbd\x7f\x43\x01\x77\x6f\x70\x9e\xe9\x8b\xc2\x3e\xaf\xa0\xb7\xbf\xa4\x81\x2f\x6b\xe0\x2b\x1a\xf8\xaa\x02\xde\xfa\x89\x02\xee\xbc\xae\x13\xbd\xfb\x67\x0a\xb8\xfd\xef\x0a\xb8\xf7\xbd\xdf\x29\xe8\xee\x17\xff\x54\x43\x37\x78\xd5\x03\x51\xe1\x9f\x2a\xe8\xce\xeb\x5f\x51\xd0\xdb\x7f\x69\x82\xbe\x6a\xa0\xaf\x19\xe8\x86\x81\x74\xba\xb7\x75\xe4\xbb\x7f\xa1\x80\xf7\xbf\xa9\x81\x6f\x29\xe0\xde\xcd\x37\x14\xf4\x1e\xef\x99\x81\x58\x35\x7f\x51\x43\x77\x6f\xf0\xb1\x42\x04\x42\x5f\x50\xd0\x5b\xff\xa0\x81\x9f\x6a\xe0\x1f\x15\x70\xe7\xcd\x3f\xd6\xd0\x1b\xbf\x33\x61\x5f\x30\xd0\xe7\x4d\xec\x6f\x14\xf4\xf6\x0d\x1d\xf4\xfa\x37\x0c\xf4\x2d\x1d\xa9\x83\xde\xd6\x21\x6f\xfd\xcc\x94\xf0\xa6\x8e\xfb\x1b\x05\xdc\xd6\xf5\xdc\xfe\x92\x49\x74\xcb\x54\xad\xc3\x6e\xff\xd4\x54\x73\x53\x97\xf0\x1d\x13\x94\x41\xba\xd4\xf7\x75\xc6\xf7\x75\xc8\x7b\x3a\xdf\xdd\x1b\x1c\xbf\xa1\x20\xce\x17\x15\x74\xe7\xf5\xef\x2b\xe8\xdd\xbf\x56\xc0\xbd\x9b\xff\xae\xa0\xbb\x37\x38\xf9\x77\x45\x86\x2f\x29\xe8\xbd\xd7\x14\xf0\xf6\x4d\x05\xdc\x79\xfd\x07\x3a\xe8\xfb\x1a\xd0\x21\xef\xfd\x44\x87\xfc\x50\x87\xfc\x58\x01\xef\xff\xad\x02\xee\xbd\xa2\x53\xdf\x79\xed\x96\x0e\xbb\xf9\x3b\x05\xdd\xbd\xc1\x69\x39\x12\x38\xfc\x99\x82\xde\xfe\xb1\x02\xee\xbc\xfe\x43\x03\xfd\x44\x41\xb7\xbf\x6f\x82\xb2\x64\x3f\x35\xd0\xcf\x34\xf4\xc6\x37\x75\x69\x3a\xe7\xdd\x57\xff\xc1\x40\xff\xa6\xa0\xf7\x75\x19\xef\x72\xda\x8d\xf6\x05\x46\x5c\x41\x0a\x05\x46\x5f\x56\xd0\x5b\xff\xa4\x81\x7f\xd6\xc0\xbf\x28\xe0\xed\x9f\x6a\xe0\x67\x1a\x30\x69\x7e\xae\x80\x3b\xaf\x1b\xe8\x4d\x5d\xe4\x7b\x7f\xa5\x80\xdb\x3a\xe4\xf6\x57\x4c\x22\x0d\xbd\x9d\x95\xa0\x0b\x7d\xff\x1f\x74\xdc\xab\x0a\xb8\x7b\x83\xb3\xc9\x8b\x02\xe1\x3f\x57\xd0\xdb\xaf\x29\xe0\xbd\x5f\x28\xe0\xfd\x2f\x2b\xe0\xee\x0d\x3e\x43\x5c\x13\xc9\xbf\xa2\xa0\x3b\xaf\xbf\xaa\xa0\xf7\x7e\x6a\x82\x7e\xa5\xa0\xb7\x7f\x6d\x82\x5e\x53\xd0\xbb\xdf\x51\xc0\xdd\x57\xff\x51\x41\xf7\x6e\xfe\xb1\x81\x3e\x6f\xa0\x2f\x68\xe8\x95\x1f\xea\x1c\x37\x38\xe3\x46\xa2\xfa\xbf\x50\xd0\x3b\x7f\xa4\x80\xb7\xdf\xd0\xc0\x6f\x15\x70\xe7\xf5\x5f\x1b\xe8\x96\x8e\xfc\x77\x13\xf4\x1b\x03\xbd\xa9\xcb\xfa\x9d\x06\xfe\x44\x01\xef\x7e\x57\x01\xef\xff\x4c\x01\x77\x5f\xfd\x81\x82\xee\xdd\xfc\xb2\x86\x5e\xf9\x63\x13\xf6\x25\x05\xbd\x27\x22\x25\xd1\xb8\x5e\xb8\x27\xb0\xfe\xaa\x82\xee\xbc\xfe\x3b\x0d\xdd\xfa\x63\x03\x7d\x5e\x41\xef\xbf\xaa\x81\x9f\x2b\xe0\xee\x0d\x3e\xa4\xa8\x28\xe3\xff\x28\xe8\xbd\x5b\x0a\x78\xe7\x4f\x15\xf0\xd6\xab\x0a\xb8\x73\xeb\x0b\x3a\xee\xcf\x4c\xd0\x97\x74\xd0\x17\x4d\xd0\x57\x0c\xf4\x65\x05\xbd\xfb\x8a\x02\xde\xff\xa5\x4e\xae\xa3\xee\xbd\xf2\x35\x03\xfd\x58\xe3\xc0\xbb\x81\xca\x56\xf2\x9c\xb1\xc0\xf0\x2f\x15\xf4\xd6\x2f\x35\xf0\x2b\x0d\xfc\xab\x02\xee\xbc\x79\xc3\x40\x5f\x33\xd0\xb7\x0c\xf4\x0d\x9d\xe1\x35\x1d\x74\xeb\xab\x0a\xba\xfd\xcf\x26\x48\x57\xf4\xce\x57\x4d\x90\x29\xec\x96\xae\xe0\x1d\x9d\xea\xf6\xcf\x35\xf0\xaa\x2e\xfd\xdf\x74\xc8\xcf\x4c\xcd\xa6\x4c\x5d\xd2\x7b\x7f\xad\x13\x19\x0c\x74\x9a\x77\x7f\x60\xb2\xdd\x34\xd0\xdf\x18\x28\x8b\xfd\xbe\x81\x7e\x68\x20\x83\xf3\x9b\xdf\xd1\x35\x69\x2c\xde\xd3\x4d\x7c\xeb\x75\x1d\xf2\x3b\x05\xbc\xff\x75\x05\xdc\xbb\xf9\x15\x03\xe9\xa2\xde\xd7\xd4\x7a\x57\x54\x23\x24\x83\x80\x84\xc2\x71\x53\xa0\x1d\x8b\xce\xe2\x08\x8d\x45\x67\xfd\x95\x82\xee\xdc\xfa\x86\x81\xbe\xa5\xa0\x77\x7f\xac\x83\x5e\xfb\x8d\x82\xee\xdd\xfc\x9a\x81\x6e\x18\x48\x67\xbd\x7b\x83\x8b\xee\x97\x44\xc1\x5f\x53\xd0\xfb\x5f\x51\xc0\xbd\x9b\xdf\x32\xd0\x77\x14\x74\xf7\x06\x27\x52\x22\x32\xfc\xb5\x82\xde\xf9\x86\x02\xee\xdc\xfa\x8e\x0e\xd2\xc0\xed\xaf\x69\xe0\x86\x49\xf4\x37\x06\xba\xa9\x93\x7f\xcb\x04\x7d\x5f\x41\xef\x7f\x55\x03\xbf\x51\xc0\xbd\x9b\x3a\xe3\xbd\x57\x7e\x62\xa0\xcf\x2b\xe8\xee\x0d\xae\xf1\xa6\x02\xb1\x1b\x0a\x7a\xeb\xfb\x0a\x78\xe7\x6f\x14\x70\xe7\xd6\x8f\x75\xd0\x4d\x13\xf4\x03\x1d\xf4\x03\x13\xf4\x13\x03\xfd\xd0\x40\x3f\x55\xd0\xed\xef\xe8\xf4\xba\xf8\xdb\xbf\x53\xc0\xbd\x57\x7e\x6a\xa0\x2f\xe8\x8c\x6f\xe8\xca\xef\xde\xe0\x85\x31\x81\xe2\xd7\x15\x74\xe7\xd6\xcf\x34\xf4\xc6\xb7\x14\xf4\xce\x8f\x4d\xe4\x3f\x2b\xe8\xf6\xdf\xe8\xb8\x1f\x9a\xb8\x57\x0d\xf4\x73\x1d\xf9\x13\x05\xbc\xab\xf3\xfd\xdf\x3f\x53\xc0\xdd\x57\xff\x5e\x41\xf7\x5e\xf9\x92\x86\xbe\xc7\xb1\x65\x52\xd9\xe2\x9a\xfa\x44\xa0\xf6\x0d\x05\xbd\x75\x4b\x03\x6f\x68\xe0\x4d\x05\xbc\xf3\x53\x05\xdc\xb9\xa5\x13\xbd\xf3\x33\x13\x64\x52\xfd\xb3\xce\xf7\xef\x0a\x78\xef\x7b\x1a\xf8\xb6\x06\xbe\xa9\x81\xef\xea\xfc\x6f\xfe\x44\xe7\xff\xb9\x06\x5e\xd5\x89\xbe\xae\x80\xdb\x1a\xc9\xdb\xdf\x52\xc0\xbb\xbf\x30\xf9\x0d\x26\x6f\x1a\x34\xdf\xfc\xb9\x81\xfe\xd9\x40\xaf\x1a\xe8\xc7\x06\xf7\x5f\xe9\x2a\x7f\x65\x82\x7e\x6d\xa0\xd7\x14\xf4\x7f\xbf\xac\x80\xbb\x37\x78\xce\x7d\x41\xb6\x6f\x2a\xe8\xce\xad\xdf\x18\xe8\x77\x0a\xfa\xbf\x5f\x51\xc0\xbd\x9b\xdf\xd7\x41\x7f\x61\x82\x38\xdb\xed\xcb\x15\x04\xef\xa4\x03\x51\xdc\xb7\x14\x74\xe7\x8d\x3f\x36\xd0\xe7\x15\xf4\xce\x6b\x26\xe8\x4b\x06\xfa\x82\x81\xbe\x6d\xa0\x2f\x2b\xe8\xee\xab\xbf\xd2\xd0\x0d\x4e\xdd\x43\x51\xc5\xb7\x15\x74\xe7\x8d\xaf\x18\xe8\xab\x0a\xba\x7b\x83\xeb\x1e\x47\x22\xdd\x77\x14\x74\xe7\xcd\x5f\x29\xe8\xad\xdf\x28\xe0\x9d\x5f\x9b\xb8\x5b\x0a\xba\xad\x13\xdd\x79\xe3\x2f\x75\xf2\xdf\x99\x54\x26\xfd\x1b\x59\xa9\xaf\x29\xe8\xdd\x7f\x55\xc0\xfb\x7f\x69\xe2\x74\xce\xbb\x37\x78\x5f\xbe\x2c\xf0\xf9\xae\x82\xde\x79\x43\x01\x77\xde\xf8\x9a\x0e\xfa\x77\x0d\xfc\xd6\xc4\xdd\x30\xd0\x37\x14\xf4\xee\xbf\x29\xe0\xf6\x8f\x15\xf0\xfe\x1f\x29\xe0\xee\xab\xff\xa4\xa0\x7b\x37\x7f\xa8\xa0\x0f\xf8\x04\xfc\xc1\xd7\x38\xc4\x87\xd3\x07\xdf\xe0\x10\x27\xed\x07\xdf\xe2\x10\xd7\xc3\x3e\xf8\x0e\x87\xfe\xd1\x40\xbc\x73\x3f\xf8\x3e\x87\xf8\xec\xff\xc1\x8f\x39\xf4\x33\x03\xf1\xe6\x7d\xf0\x53\x0e\xf1\xca\x3e\x78\x95\x43\x9c\x2d\x3f\x78\x8d\x43\x5c\xdb\xfc\xe0\xd7\x1c\xe2\x4c\xfb\xc1\x2d\x0b\x59\xff\xf1\xe7\x1a\xfa\xe0\xaf\x4c\x98\xa8\xe3\x77\x1c\xe2\x9d\xf6\x1f\x5f\xe0\xd0\x57\x34\xf4\xc1\x2f\x4c\x18\xc7\xf4\x3f\xbe\xcc\x21\xae\x25\xfd\xc7\xe7\xad\x69\x66\xe4\x38\xc9\x8c\x1c\x2d\xcb\x91\x97\x93\x01\x81\x4e\x42\x84\x29\x33\x58\xed\x7e\xee\x85\x89\xeb\xba\x6e\x8d\xff\xac\x5d\xe8\xad\xee\xa2\x12\xab\xda\xb4\x4b\x7a\xc7\xc7\xa4\xcc\x28\x33\x21\x69\x1c\xed\x93\x64\x75\x48\x02\x36\x49\x48\x6a\xa1\x6e\x2f\x6f\x60\xba\x38\x87\xbe\x3e\x6a\xcc\x36\xd1\x6c\x0a\x0d\xa4\xab\xc2\x66\x3a\xec\x17\x2c\x3b\x11\xfb\xa8\x56\xb4\x0b\x33\x18\xa7\xe8\xd7\x09\x9d\xec\xc9\xc7\xe1\xfd\x15\x17\x95\x9b\x13\x33\x6d\x61\x51\x66\x37\x3d\xd7\x98\xff\xff\xb5\xd8\x34\x66\xb5\x1f\x53\x16\x84\x94\x24\xb5\x01\xd9\x99\xec\xd6\x82\x41\x30\x66\xf7\x4b\x92\x55\xed\x84\xfa\x04\xc2\xe4\x0d\x73\x11\xcb\xec\x3e\x99\x23\x0c\xb3\x01\x25\x07\xcb\x4f\x93\xdd\x0b\x87\x63\x60\x7d\x6e\xb5\x63\xd9\xd4\xb6\x56\x81\x63\xc3\x55\xcb\x26\xb6\xf5\x90\xb2\xa1\xa4\x93\x28\x5a\xc1\xd8\xd8\xed\x26\x5d\xaf\xf7\x61\xac\xf8\x8a\x97\x91\xce\x69\x2a\x9c\xe7\x44\x78\x58\xd2\xc0\x21\x87\x8c\xd0\x01\xb8\x7e\x55\x9a\xf2\x3f\x2d\xfc\x9d\x27\x47\xbe\xb8\xe8\x11\xd2\xb0\xd0\x0f\xc2\x60\xfb\x6a\x3a\x19\x93\xc4\x09\xc6\xe3\xe8\x08\xf0\x10\x64\x0c\xc1\x20\x92\x29\x8a\x65\x1d\x1f\x83\xb2\x60\xcc\xa9\xc1\x9c\x8b\x85\x40\x38\x45\xfd\x80\x9e\x0b\x58\x10\xc5\xbb\x17\x28\x4b\x42\x92\x3e\x72\x74\xe5\x68\x4c\xfc\x79\x09\x61\xed\xc5\x03\x12\x59\x18\x63\x72\x7c\x7c\x2a\x6e\xbc\xe4\x53\x8a\xd5\x86\x69\x0c\x97\x21\xec\x64\xb7\x1d\x52\x00\x51\x92\x59\xbb\xa1\x50\x66\xa0\x3c\x6a\x1c\xf4\x89\x4a\xfa\x54\x42\x86\xe1\x21\x8a\xb1\x8b\x02\xcc\x94\x45\xdd\x66\xbc\x15\x64\xb6\xca\x29\x66\xca\x24\xb9\xe6\xad\x60\x9c\x1a\xab\x2a\x02\xb5\xe5\x2e\x67\xa6\x14\xcd\x54\x30\x8e\x07\x17\x73\x75\x1c\x1f\x87\x70\x69\x72\x7c\x0c\x26\x38\x75\xd2\x71\x14\x32\x40\x6c\x2b\x5d\xb5\xa0\x33\x8e\xc7\x00\x42\x94\x38\xc1\x60\x20\x99\x08\x4c\xa0\x36\x57\x5e\x4e\xc4\x58\x5a\x3a\xf3\x58\x3a\x5d\x7c\xaa\xab\x09\x3c\x7d\x6d\x18\xf4\x59\x9c\x1c\x2d\x4a\xb4\x17\x5c\x23\xb5\x41\x28\xe8\x1f\x24\x47\x33\x83\x8b\x8f\x9f\x8f\x7a\x5f\xa1\xc8\x5d\x58\x5a\xd3\x21\x63\x54\xa7\x1c\xa5\xbf\x98\x3a\x44\x32\x45\xa5\x02\xe6\xc2\x72\xa9\xae\x92\xe0\xda\xd5\x94\x10\x2a\x0d\x1c\x13\x3c\x57\x43\x6e\xb4\xe4\x4c\x2c\x19\xbc\x0e\x8a\x72\x23\x1c\x82\x15\x40\x96\x43\x9a\xb2\x80\xf6\x49\x3c\x5c\x66\x10\xb2\x51\x12\x1f\x2c\xf3\x71\xc1\x59\xf3\x42\x92\xc4\x09\xb0\xce\x05\x94\xc6\x6c\xb9\x1f\x44\xd1\x72\xb0\x2c\xe8\xba\x1c\xa4\xcb\x81\xb1\x6b\xb5\xe0\x14\x4a\x66\x27\x7a\x00\x6a\xcc\xd9\xf1\xf1\x5c\x73\xa6\xc6\xda\x79\x9c\xc4\x2c\x66\x47\x63\x92\xe7\xec\x79\x5b\xda\x65\x45\xf7\x6b\xe4\x28\x05\x85\xf2\x85\x9d\x5f\x56\xca\x28\x48\xcb\x6e\xc7\xf0\x56\x2e\x17\xf2\x15\xb3\xed\x92\xd2\x4b\x35\x0a\x71\x40\x78\x2d\x53\x65\x52\x1a\xaa\x41\xa7\x50\xd2\xd2\x4b\xf1\xd5\x93\x6c\x44\x12\x7f\xd6\xea\x52\x5d\x34\x19\x86\x54\x0d\x19\xde\x4e\x40\xa4\xa8\x35\x22\x5a\xe2\x77\xc8\x92\xa0\xcf\xce\x4b\xc1\x79\x41\xb0\x38\xa0\x48\xa6\xcd\xb8\x26\xd7\x51\xaa\x93\x96\x2f\x1c\x8e\x85\xe9\xe6\x32\x8b\x97\x79\x4d\xfe\xf2\x1f\x58\x36\x71\x86\x93\x28\xe2\xd5\xd9\xd6\x1f\x2c\x1f\x84\x6c\x14\x52\x1e\x4e\xf9\xe7\xce\x84\x2d\xef\xc6\x6c\xf9\x0f\xcc\xdd\xa5\x3f\x70\x96\xcf\x87\x83\xe5\xa3\x78\xb2\x3c\x8c\x93\x5d\xc2\x78\x61\x7f\x20\x07\xda\xb2\x12\xe6\xb3\xc5\x74\x2c\x63\xfb\x29\x9a\x90\x8e\xe2\x49\x34\xf8\x4c\x12\x8c\x1f\x97\x8e\x9a\x1f\x95\x43\x10\x24\x88\x40\xce\xdd\x18\xb8\xc8\x4c\xa4\x10\x24\x5c\x34\x4c\xa7\x68\x1c\x24\xa9\xbc\xc8\x95\x27\x1f\xe7\x52\xde\x62\xe2\x88\xf8\x01\x4f\xa0\x67\x25\xb2\x24\x45\xa5\x1a\x53\x54\x03\x89\x06\x84\x45\xab\x10\x45\xd6\xff\x94\x96\xd0\x75\x8c\x71\xa8\xc4\xa0\xbe\x60\x12\x76\xdd\x9e\x4e\xe6\x67\xc9\x62\x9d\x4c\xd8\xbe\x76\xbd\x9e\xfa\xee\x00\x8a\xe3\xae\xdb\x43\x09\xb6\xfe\xa7\x65\x87\x5d\xaf\x07\x7d\xc0\x44\x12\x64\xa2\x44\xf0\x92\xb8\x80\xa0\x2e\x84\xf0\x12\x72\xb5\x30\x51\x2f\xa2\x38\x90\x19\x02\x3e\xc5\x5a\xfa\xbe\x1a\x9f\x52\x68\xa5\xc2\xab\x66\x4e\x14\xa4\xd2\xb0\xfd\xc9\x21\xb0\x72\xf7\xd8\x2c\xe4\x4a\x82\x16\x02\xed\x04\x31\xcc\x9c\x34\x0a\xfb\x04\x78\x9e\xb6\x1e\xa6\x18\xe4\xc8\xe1\x5b\x10\x66\x88\x2a\x23\xd6\x04\xe5\xed\xa5\xc5\x78\xb6\x8c\xbc\x37\xbd\x7c\x3d\xeb\x08\xae\x28\x69\xfe\xf2\x09\x1a\x8b\x89\xc0\x67\x6a\x2a\x94\x9f\xe0\x3a\x1f\x62\x3e\x9d\x42\x24\x01\x93\xe3\x33\x21\x1b\xc5\x13\x61\x9e\xeb\xa7\x88\x57\xe4\x27\x28\x89\x63\xe6\x4f\x90\x1a\x4e\x17\x09\x1b\xc5\xb2\x2a\x4b\x05\x59\xb6\x44\xf1\xb2\x70\x88\xe0\xc8\x59\x61\x78\x04\x28\xe4\x3c\x14\x4d\x12\xe1\x32\x6f\xc0\x4b\x4d\xa5\x0e\x51\xa6\x57\x70\xb9\x7f\x25\x96\x65\x94\x5f\xc8\x3a\x61\x3a\xb5\x79\xbf\x33\xdb\xf2\xad\x29\x5a\xc4\xed\xf3\xca\xe3\x8a\x37\x3d\x49\x9d\x01\x4a\x72\xca\x8a\x1e\x09\x52\x32\x78\x5a\xcd\x55\x78\xc5\xbd\x6f\xb5\x26\xd1\x82\x98\xc6\xc9\x9e\x20\xc9\xb9\xa0\x3f\x22\x7c\xec\xd1\x6c\xec\xa9\x44\x33\x64\xc3\x65\x81\xc7\xc7\x67\xc9\xca\xd7\x5a\xc3\x70\x57\x63\x56\x1e\xcb\xf9\x95\xff\x5a\x1a\xc7\x01\x19\x27\xa4\x1f\x30\x32\x78\xaa\xa8\x54\x60\x4e\x34\xd3\x82\x12\x05\x6c\xb9\xac\x91\x62\xd5\x06\x16\xc4\xe0\x99\x70\xae\xe6\x4c\x35\xbf\xcd\x49\x6e\xa5\x87\x19\xd9\x24\xae\x92\x61\xe6\xcc\xf1\xa7\x11\x3a\x6a\x94\x58\x66\x6e\xc4\x98\xf3\x3d\x9f\x5e\x47\x61\xda\xa5\x3d\x31\x62\x15\x0c\x18\x84\xe2\x62\x2f\xc6\x89\x09\x77\xf2\x73\x89\x48\x91\x4c\xd1\xd5\x72\x2a\x68\x9b\xfe\x9c\x60\x31\x4b\x15\x75\x7d\xc2\xeb\x58\x23\x12\x8d\x49\xc2\x65\x0a\xeb\xba\xbd\x0e\xff\xc3\xb9\xd7\x66\x5c\x26\x99\x35\xf1\xd5\xd5\x5d\x64\xd5\x2c\xe8\x9b\xf8\xc2\x48\x1b\x04\xe9\x88\x24\x9c\x62\xc5\x6c\x2f\x38\x3c\xdf\xaa\x05\xa1\x4f\x72\x23\x70\x61\x67\xcd\xf0\x44\xae\xb3\xe6\x63\x30\x57\x21\x2d\x38\x45\xe3\x78\x20\x86\xc4\x13\x71\x7c\x6d\x32\xe6\x92\x43\x32\xc8\xcc\xd8\x55\x93\xad\x53\x22\x62\x74\xbf\xe4\x25\x2c\x73\x78\xd7\x54\x2a\x80\x62\x9a\x35\xe8\x73\x99\x34\x7d\x61\x75\x15\x59\x16\x84\x88\xd8\xd6\xaa\x5c\x2c\x59\xb6\xcc\x95\xe1\x94\x4d\xe9\x8b\xd8\xe7\x04\xa5\xf9\x04\x31\x53\x98\x55\x17\x11\x00\x30\x44\x72\xf4\x31\xf7\xb9\xd3\xc7\xe9\xe5\xc9\xce\x20\x9c\x57\x46\x3e\x1a\x4e\xe1\x10\x30\x1b\x5b\xb9\xeb\xd4\x56\xfe\x8a\xb9\x98\xa9\x39\x79\x8e\x8f\xf3\x74\x5c\x75\x18\x49\x19\x20\x65\x1d\x63\x6e\x92\x9c\xa5\x9d\x6a\x68\x5c\xa0\xbb\x21\x2d\x1f\x09\x25\x35\xd8\xd6\x2a\x11\x19\x2c\x81\x7e\xd9\xc2\x6a\x14\xa4\x7c\xa4\x15\x84\x4a\xa9\x2a\xc6\x32\x24\x9e\x8e\x27\x8c\x5c\x0c\xc6\x67\x45\x83\x0b\x0e\xdb\x5a\x4d\x78\xb6\xf4\x64\x54\x28\x3c\x8b\x56\x68\xc6\x3a\x57\x9f\x14\x52\x57\x14\x7b\x2f\xea\xf6\x82\x6c\x21\xa6\x04\x29\x83\x58\xa5\x02\xf4\x62\xfd\xca\x85\x8b\x4f\x3d\xf1\xf0\x95\x0b\x97\xbb\xa5\x8d\xe9\x41\xc4\xa6\x68\x2f\x08\xe9\x02\xf6\x0f\x87\xc0\xe2\xd1\x92\x25\xca\xfa\x3d\xb7\x0a\x90\xb3\xea\x2a\xd7\x57\xe5\xd8\xd2\x17\x82\xca\xcb\x2e\xcb\x59\x94\x20\x40\x16\x04\x55\xa1\x25\xd5\x4f\xb5\xba\x72\xea\xf8\x58\x38\x26\x4d\x92\xae\xac\xcd\xb6\x64\x22\xab\x27\xe8\x78\x4a\x1a\x49\x40\xd3\x40\xc9\xf0\x4f\x05\x8c\x91\x84\xa6\xfe\xcc\x4d\xf6\x39\x6d\xa2\x5b\x18\x2d\x19\x9d\x50\x21\x7c\x5e\x1c\x28\x25\xa3\xd0\x6f\x32\x6c\x8e\xe4\xbd\x29\x74\x12\x12\x0c\x9e\xa4\xd1\x11\x80\xa8\xb8\x7a\x99\x11\xbc\x7a\xdf\x22\xbb\x52\x0f\xac\x45\x6d\x13\x77\xea\x8d\x86\xee\xa2\x18\x53\xbd\x31\x11\x6e\xc5\xd9\xd5\xef\x00\xd3\x6e\xd8\x73\xf8\xb2\x53\x2f\x2e\xf9\xa0\x09\x2a\x15\x10\xc8\x6a\xfa\xa3\x38\x4e\x49\x6e\x49\x15\x20\x02\x21\x0a\x2a\x95\x85\x23\x2b\x90\x1a\x73\x00\x91\x56\x53\xaf\x46\xf1\xae\x44\x90\xaf\x50\x50\x00\x51\xb6\xed\x35\x9d\xa2\xd9\x3a\x4a\x67\x9c\xc2\x44\xc9\x57\x53\x49\xda\x8f\x13\xbd\xc4\x23\x2b\x42\x99\x5f\x88\x13\x5f\x16\x9d\x24\x0a\x4a\x17\xe5\x0f\xef\xed\x84\xbb\x93\x78\x92\x2e\xcb\x4c\xcb\x82\xd3\xe4\xa2\x8f\x2f\xee\x02\x3a\xd0\x2b\x34\xb9\xa6\x39\xa1\xfa\x6c\x41\x75\x8a\x50\xd2\xd2\xc2\xec\x3d\x64\x5a\xc0\x6a\x0d\x74\x3f\xf7\xc2\x6a\xaf\x0a\x1f\x5a\x45\xd6\xea\xd5\x87\xbc\x99\x75\x61\x59\x91\x09\xec\x24\xfa\xee\x34\x8a\x44\x27\xc8\xa7\xee\xe4\xad\xea\x33\x68\x63\x85\x2a\x66\x16\xd8\x0c\xad\xb8\x70\x8a\xb2\x0e\xf6\x67\x37\x77\xc2\xa1\xba\xa0\x79\xe1\xd2\xb3\xce\x13\x4f\x7e\xf2\xea\xc5\x27\xcf\x3f\xf3\xc4\x85\xab\x4f\x5f\xb8\xfc\xe4\x13\xcf\x5e\x78\xfa\xf8\x98\x39\x7c\x45\x22\xe2\x74\xa0\x16\xcd\xd9\x22\xb3\x63\x75\xef\x7e\xef\x46\xcf\xf2\xad\xee\x72\xcf\x5a\x4a\x72\x1a\x88\xd6\xc2\xda\x6e\xc7\x72\x2c\x9f\x77\xe2\xc3\x49\x12\x1c\x81\xb6\x5b\x9b\x4b\x05\x9d\x17\xe3\x90\x02\xcb\xb1\x20\xa2\xc7\xc7\x40\x8d\xa6\x39\xc2\x08\xa5\xb0\x1f\xd3\x34\x8e\x48\xa5\xa2\x00\x27\xa4\xc3\xb8\xf8\x05\x42\x94\xd5\x81\x12\x24\xd6\x48\xd7\x68\x7c\x40\x1f\x8d\x93\x8f\xba\xf7\x38\xbb\x1c\x90\x43\x99\x2d\x18\xca\xac\x1b\xf6\x90\x5a\x59\xb0\x24\xa0\x29\x9f\xa4\xae\xc4\x66\x4b\xf8\xd1\x49\x14\x51\xd1\xa5\x28\x80\x4b\x62\x17\xac\x9b\xf6\x30\xef\x40\x33\x18\xd1\x49\x19\xcb\x35\xc1\xb9\x75\x28\x99\x0a\x8f\x1e\x7c\x5e\x40\x21\x16\xb3\x83\xc0\x5a\x6f\x7a\x26\x50\x6c\x94\xea\xcf\x50\x0c\x1d\xb1\x03\x50\xa9\x04\x72\x35\x2e\xda\x57\xd3\xbb\x08\x95\x8a\xd1\xb4\x13\x05\xd8\x66\x87\x41\x8f\x2b\xa9\x6d\xab\x35\x79\x6c\xeb\x84\xbc\xa9\x72\xe9\x4d\x4b\xe7\x30\x31\x7d\x69\x0e\x97\x7b\x01\x1a\xb1\x14\xe6\x2a\xd6\x57\xa5\x3b\xc5\x8a\x74\x30\x34\x43\xac\x54\x91\x28\x19\x66\x66\xe7\x4b\xba\x5b\x12\x7f\x56\xdc\x6c\xb0\xf1\xba\x55\xd7\xcb\xa9\xce\x30\x02\x62\xd3\x29\x5c\x0a\x9d\x84\xc4\x63\x22\x57\xc4\xe0\x7a\xc9\x9a\x76\xf6\x84\x20\x5c\x7c\x9c\x52\xba\x9d\xfb\x9f\xef\x63\xe7\x7a\x3f\x21\x05\xc5\xca\xec\x15\x94\xac\xf5\x88\xda\x18\xec\x68\x00\x30\xbe\x3c\x9a\x9e\x70\x90\x58\xbe\x21\xfd\x9f\xd7\x50\xd9\xf7\x04\xab\xb2\x64\x6b\xc5\x49\x10\xcc\xdc\x53\x5c\xe5\xa8\x61\xc1\x0f\x03\x12\x11\x46\x74\x18\x22\xa5\x4d\x1b\xc7\x34\x0d\xf7\xc9\xaa\x5c\x81\xa6\xab\x7b\x64\x10\x06\x1f\x53\xa3\xd4\x6e\xe0\xfc\xee\xf1\xdc\xbe\xb7\x90\xc0\x4e\x98\x4a\x49\x3c\x33\xff\x5d\x16\x8e\xf0\x9c\x90\x91\x24\x60\x71\xb2\x1c\xea\xed\xe7\x5c\xc2\x32\x59\xd3\xed\x21\xb1\x53\x13\xe2\x15\x0f\xc5\x7a\x37\x80\x25\x47\x99\x2f\x0e\x94\x62\xd2\x9d\x29\xbf\x07\xe0\xe6\x0a\x48\x30\x08\x70\xea\x50\x72\xc8\x00\x84\xce\x20\xa6\x44\x3a\xfc\x10\xf7\xfc\x03\x47\xb4\x12\xa2\x15\x76\x7c\xac\x95\xa5\x15\x8c\x19\xdc\xe4\x55\xc2\xcd\x69\x5f\x9c\xee\x4d\xe0\xf5\x90\xa3\x10\xe3\xc9\x74\x18\xd2\x20\x8a\x8e\xae\x73\x04\x56\x92\x4a\x85\xab\xfe\x1c\xf7\x0c\x02\xd0\x24\x0a\xb9\xa4\x93\x6a\x46\x6c\x0e\x66\xe8\x54\x34\x6f\xa9\x54\xfd\x50\x2f\xcc\x2e\x73\x9d\x6e\x6f\x2c\xf6\x89\x07\x24\x65\xc9\xa4\xcf\x26\x09\x59\xa6\x31\xad\x89\x16\xee\x44\xd9\x11\x83\x05\xa7\x53\x00\x97\xe6\x7c\x14\x0a\xde\x30\x3b\xe9\xb3\x7b\x64\x92\x2b\xb9\x68\x5c\x3a\xe3\xe9\x9f\xd4\x3e\x05\xa7\x41\x27\xa6\x0a\x3e\x37\x0a\xe8\x2e\x19\x58\xf9\x43\x7a\xae\xc0\x28\x1d\x1b\xc0\x29\x9c\x22\x91\x52\x29\xdf\x21\x15\xfc\x97\x92\x64\x9f\x4b\x53\x3e\xe3\x8a\x94\x65\xdb\xfb\x80\x20\x0f\x76\xdd\xde\x52\xc1\x11\x55\xb6\x8d\x2a\xca\x75\x2c\x9b\xc2\x05\x27\xc7\x7a\xa0\xa8\x27\xad\xc3\x97\xf9\x68\xc9\xc2\x3f\x94\x97\x27\xde\x3a\xf9\x78\xb4\xf2\xb9\xa1\x66\x7d\x60\xed\x24\x24\xb8\x36\x8e\x43\xb1\x7c\xbf\x2e\xfb\x87\x85\x5c\xba\xad\x78\x53\xf8\xa1\xfc\xb5\x18\xbc\x85\xcb\x16\xdd\xc3\xd7\x69\xce\x33\x5b\xd6\x9c\x5a\x01\x81\x2c\xaf\xcf\x4e\x94\x22\x5c\xee\x48\x0f\x63\xb5\x8f\x53\x90\x94\x4b\x47\x35\x0b\xa8\x07\xc4\x38\xa1\x4e\xc4\x55\xb1\x4d\x89\xc8\x43\x67\x68\xd8\x03\xb5\x7e\x58\x92\x4c\x5a\x32\x4d\x49\x59\x54\xa9\x28\xef\x9f\xb3\x11\x46\x48\x75\xca\x36\xf3\xd4\x4c\x37\x2d\x5d\x9a\x57\x2a\x27\x54\x47\x1c\xae\xa5\x0a\x61\x11\x27\x18\x63\x13\xbe\xa2\xe1\xec\x70\xae\xa3\x71\xf3\x4d\x85\x73\x12\xe4\xb2\xa4\xb5\x16\x21\x4a\xa5\xdf\x27\x94\x91\x01\xba\x7e\x75\x2f\xee\x5f\x23\x03\x35\xaa\x99\x78\x5f\x7e\x17\xa9\xd0\x47\x0c\x23\xfa\xd6\x80\xa4\xd7\x58\x3c\xb6\x90\xee\xe3\xd3\x16\xe1\xcb\xfa\xfc\x3d\x13\x3b\xaa\x58\x0b\x76\xba\x73\x81\x59\x5d\x16\xec\xf9\xdd\x1e\x17\x04\x11\x1f\x9f\x94\x24\xa9\x7f\x7d\xaa\xea\x55\xf0\x4b\x51\x5e\x0a\x86\x43\x60\x49\x6f\x34\x16\xc6\x18\x58\x99\xbb\x41\x43\xdd\x83\x90\x0e\xe2\x83\x4e\x2e\xca\xa7\x40\x06\x42\x58\xa9\x48\x48\xda\x81\x5c\xe4\x4c\xa6\x27\xb3\xb9\x88\xa5\x39\x6b\x17\xae\xde\x2f\x14\xcb\x88\xe1\xcc\xcd\xcd\x93\x07\x94\x24\x82\x1e\x10\x95\x05\xaa\xc5\x4c\x41\x04\xf9\x62\x9f\x08\xc2\x25\x56\xa9\x14\x4e\x7a\xa1\x33\x8c\x93\x0b\x41\x7f\x94\x91\xde\x1c\x97\x5a\x61\xba\xf8\x28\x48\x39\xd6\x99\x1b\x21\x09\x9a\xf5\x10\xa8\xba\xda\xe9\xf6\x0a\x13\x43\x7e\x55\x29\xa7\x13\x99\xce\xca\x9c\xce\x50\xb8\x5d\xf3\xa6\x50\x37\x73\xae\x2e\x3a\x5b\x57\x72\x52\x05\x09\xe4\x45\x11\x6d\xa6\x83\x58\x97\xf6\xc4\x8c\x24\x5a\x25\x56\x5d\xb3\xec\xf8\x21\x70\xdf\x0b\xc6\xa0\xcc\x8a\x85\xf7\x7a\x6d\xe1\x7e\x3f\x81\x53\xbd\x32\x5d\xb6\x38\xd3\xea\x27\xec\x2f\xe6\xe6\xd5\xb9\x63\x2d\x95\x66\x76\xf6\xbd\xce\x1b\xa5\x0b\x10\x63\x34\x9f\x53\x62\x90\x4c\xa8\x13\xd3\x3e\x91\x93\xa7\x9c\xf5\x4b\xaa\x84\x6a\xc4\x2c\x5c\xfa\x09\x77\x4d\x25\x63\xb3\xb0\xb9\x2a\x49\xf4\x52\x64\x41\xc0\xf8\x2a\x36\xaf\xdf\x53\x19\x1b\xa6\xe7\xb9\x6e\x13\x1f\xf1\xcc\x7c\x5d\xee\xa4\x19\x5d\x93\xd4\xe1\x8b\x48\xbe\xf4\x71\x14\xa5\x3b\x74\x96\xf0\x99\xe5\x0b\x81\xfe\x5c\x6c\x42\xf6\xe2\x7d\x62\x12\x20\xea\x14\x08\x04\x20\x9c\x2e\x65\xb8\x1a\x91\x61\xc1\x2e\xe9\xe1\x50\x1a\xd6\x3c\xa1\x42\x2b\x95\xc2\x67\xa1\xbb\x0d\x75\x81\x34\xae\x42\xbc\x67\x51\xc8\x99\xaf\x4c\x2d\x61\xe4\x90\xd5\xf6\x48\x90\x4e\x12\x92\x64\x13\x5a\x21\xf8\xe3\x9f\x82\x95\x22\x2d\x95\xfb\x52\x79\x3f\xa7\x32\x9e\x51\x4f\xec\x07\x74\x3f\x48\xf1\x20\xee\x8b\x60\xb5\xe4\xb9\x10\x09\x5f\xba\xc0\x92\xd1\xfa\x90\xb2\xcf\x0e\x71\x2e\x17\xef\x8a\x73\x31\xe5\xb4\x00\x56\x7d\x60\xc1\x29\x3a\x08\x07\x6c\x54\xb2\x98\x9e\x73\x68\xe6\x95\x3a\x34\xf3\x7a\x9d\xfc\x87\x38\xa7\xce\x2d\xb8\x81\xc6\xc2\x19\xc6\x94\x61\x96\xa1\xe5\xa8\xbe\xb8\xc2\x71\x21\xd0\x11\x78\x4c\x51\x14\x52\x92\x96\x0e\x8d\x39\x84\xea\xa5\x08\xd5\xf3\x08\xd5\x15\x42\x74\x0e\x13\x9a\xb9\x53\x4b\xcc\x49\xe4\xea\x0b\x74\x95\x0f\x26\xb3\xd3\x21\xdd\x66\x26\xc6\x02\x2d\xdb\x19\x4a\x94\xf5\x99\x65\xf1\xda\xb3\x6d\xa8\x14\x07\xfa\x58\x73\xd9\x82\xca\xcd\x9e\xbb\x19\x6d\x69\xb4\x6b\x5e\xde\x6f\x5b\x29\x35\xd2\x6e\xd4\xb3\x79\x76\x49\x94\x4d\x30\xb1\x71\x1f\x6e\x73\x72\x86\xb6\x8d\x26\xb8\x0f\xa7\xd2\x53\xdb\xc2\xec\xf9\xac\xc3\x7c\xd6\x61\x66\xc2\x16\x4e\xd1\x30\x64\x3c\xcb\xe5\xe2\xc9\xe7\x03\xa1\x39\x52\x82\x4a\xe0\x21\x9c\x79\x6a\x6b\x3f\xdd\x07\x6a\xd6\x58\x7d\x61\x60\xaf\xe6\x57\x21\xc2\xd5\xe3\x30\x8a\xe3\x04\x88\x3d\xd3\x47\xa3\x38\x60\x20\x84\x55\xb6\xca\x87\x7c\x7e\x29\xc6\xe6\x47\x7f\x32\x61\xa3\x9a\x5e\xb8\xeb\x5f\xe9\xcd\x7b\x4e\x97\x2d\x26\x96\x5b\x19\x32\xac\x1f\xd3\x7d\x92\xb0\xb3\x9b\xad\xe6\x0f\x13\x5c\xc4\x59\x4a\xf1\x0c\xdd\x4a\x36\xa9\x6d\x43\x2e\xd4\x3d\xae\x04\x15\xcc\x88\x08\x9f\x30\xcd\x42\xbe\x4b\x0d\x11\x48\x97\x18\x86\xf9\x50\x46\xac\x01\x1d\x08\xaf\x93\xa5\xab\x56\xd9\x64\x40\x4b\xa4\x67\x29\xfd\xc8\x4b\x93\x20\xfa\x08\x3e\x7b\x97\x49\xd7\xed\x61\x8c\xc9\x87\xb4\xc8\x15\xf5\x17\x96\x68\x65\xcd\x61\x67\x6d\xce\x2e\xfb\xf8\x26\x80\x5d\x86\xe9\xef\xf7\x74\xfe\x7b\xec\xe9\x14\xec\xce\x33\x93\x46\x40\x50\x5d\x4c\x03\x5d\xb7\x87\x62\x9c\x74\x3d\x33\x2c\x29\xd7\xed\xfb\xe4\xd2\x84\x73\x57\xa5\x02\x2c\x2a\x20\x6b\x45\x2f\x67\x42\x2e\x69\xb1\x8c\x07\x21\x84\x68\x2e\x45\x5c\xa9\x80\x58\xa7\x88\x21\x84\x28\xdc\x8e\xa7\x0f\x68\xa0\xee\xb2\xb3\x6e\xba\x7c\x28\xd6\x26\xbf\xe7\xed\xdf\xf3\xf6\x7d\xf2\x36\x7e\x60\xcc\x1d\xa6\xb5\x80\xf3\xd2\x87\x9a\x88\xb2\x73\x42\x57\xf8\x90\x55\xd3\x33\xdb\xa2\x9b\x2c\x37\x3d\xab\x4d\x54\xcd\xb4\x5d\x66\xa6\xe7\x15\x4f\x11\x6a\xc5\xfd\x70\xae\xa1\x45\x91\x0f\x6e\x12\x0b\xd3\x1a\xe7\x89\x8f\xeb\xb0\xe5\xf7\xe3\xfc\xbf\xc7\x38\x3f\x99\x9b\xce\xbc\xe9\x1f\xa6\x17\x38\x33\x89\xc1\x78\x1f\x0c\x78\x1f\x7a\xe1\x87\x1a\x33\x17\x84\xe2\xf7\xfb\x49\xe7\xbf\x09\x33\x96\xbd\xb0\xa1\xa6\x9c\x04\x53\x3e\xe5\x84\x98\xe6\xa6\x1c\xc3\x7b\xbc\x9b\x41\x82\x42\xf8\xa0\xe6\x8a\xe8\x63\x54\xf1\xa3\xdf\xab\xf8\xff\x2d\x39\xf2\xbf\x52\x0d\xda\x7a\x60\x5a\x50\xf4\x71\xaa\xf8\xd1\xef\x55\xfc\xdf\xf3\xf6\x7d\xf3\xf6\x83\x53\xf1\x69\xcc\xee\x4b\xa9\x58\xb8\xd9\xb4\xf2\xe1\x37\x9b\x68\xcc\xc4\x7c\x24\x9b\xf0\xe0\x14\x76\xf9\x66\xe0\x7f\xf9\x26\xa4\x7b\xe2\x26\xe4\x47\x5c\xe5\xd0\x98\x3d\xb8\x5d\xc7\xb8\xd4\xd5\xc0\xff\xb7\xe8\xf5\x60\x37\x6d\xe3\xe4\xc1\x51\xef\xf0\x3f\x81\x7c\x4a\xfe\xcd\x50\xc7\xed\xc1\x95\x79\x9a\x79\xbd\x0f\x65\xa2\x73\xf8\x20\x68\x52\xd6\xcc\xff\x54\x63\x4c\x75\xc1\xa6\x52\x29\x3c\x4d\x17\xa6\x57\x38\x4a\x47\xd2\xd4\xdd\xda\x89\xe3\x88\x04\xf9\xbb\x77\xe6\x6a\xcf\xac\xc2\xac\x27\xdc\x8e\xbb\x82\x71\xa1\x4c\xfd\x1e\x8f\xbf\xb2\x52\x30\x6e\x0c\xf7\x8f\x6a\xfd\x78\x40\xf6\x42\x3e\xef\xe4\x1f\x96\x2c\xc6\x7c\xfc\x74\xd1\x6e\x35\x14\x02\xe6\x3c\x94\x05\xbb\xf2\xce\x2c\x23\x87\x2c\x48\x48\x60\x21\x8e\xd6\x45\x81\xd6\x22\xeb\xb6\x41\x38\x78\x9c\xa6\x24\x61\xea\x00\xf4\xc3\xb8\xdd\xc8\x6a\xc9\x9d\xad\x67\x81\x16\x74\x86\x49\xbc\x77\x85\x1c\xb2\x87\x13\x12\xe4\xcc\x66\x88\xac\xf3\xf1\x81\x95\xb7\xe1\x53\xa1\x16\x54\x81\x29\x61\x93\xf1\x39\x53\x9c\x38\x1c\x7f\x2c\xa0\x83\x88\x24\xc0\xea\x0b\xa3\x00\x0b\x65\x36\x03\x69\x7f\x44\x38\xf9\x9e\xe5\xb4\x7b\x66\x3c\x08\x18\x19\x3c\x2c\x9a\x04\xa7\xbc\xb9\x4f\x13\x3a\xc8\xdf\xd6\x3f\x73\x3b\x27\xa2\xac\x0c\x11\x65\x5e\x07\x16\x44\x8b\xfa\x01\x9c\xa2\x30\x7d\x36\x4c\xc3\x9d\x88\x9c\x0f\x07\xd2\x86\x41\x75\x46\xbc\xc3\xfb\x81\xb7\xc2\x24\x29\x98\x74\x48\xbc\x0e\x02\x1d\xc9\x15\x2d\x43\xa5\x2c\x0b\xd4\xa3\x22\x99\x50\xd3\xfa\x27\x69\x9f\x00\x2b\x11\x6d\xcd\x53\x87\xc5\xbb\xbb\x11\x11\x59\xc3\x28\x64\x47\x7c\xe4\x2f\xa6\xd8\xcc\xa1\xe6\x42\x3b\x8d\x94\xd0\xc1\x7c\x6e\x24\x7c\x2c\x28\x3a\x20\xf1\xd2\x25\x3a\xa1\x33\xe7\xee\x69\x48\x7d\x2c\xab\x74\x27\xa4\x03\xf1\x7a\xe9\xd2\x2c\xdf\x39\x22\x93\xbe\xfd\x1c\xf3\xf1\x7a\x10\x46\x91\xb2\xdf\x50\xac\xad\xc8\x30\x47\xe0\x7c\x31\xc3\xa1\x28\x67\x2a\x30\x2d\x6b\x53\x9e\x6f\xf4\xe4\x47\xe6\xce\x79\x11\xc3\x5a\xc2\x20\x8a\xdd\x4d\xba\x45\xc4\x7c\xc8\xba\xb4\x97\x3b\xf7\xa5\xbd\x25\x43\x3e\x59\x7c\x9e\xff\xba\xd6\x7e\xae\x7a\xab\xa7\x3d\x5a\xcd\xdc\xb7\x9b\x5b\x43\xcc\x6c\xd5\xaa\x70\x7d\x2b\x60\x93\x6d\x65\x9b\xb7\xb6\x0d\x69\x97\xf5\x30\xe9\xb2\x4c\xc7\xd5\x6a\xb7\x2c\x98\x0f\x5d\x40\xe0\x14\x30\x08\xe1\x14\xcd\xf2\x4f\xb9\x71\xd8\x1c\x8b\x2e\x95\xf0\x32\xd1\x46\x05\xb9\x60\x4c\x10\xd1\xd7\xa2\x72\xfd\x92\x90\x61\x42\xd2\x91\x78\xe1\xab\x7c\x18\xce\x70\xea\x5c\x09\xbb\x44\xbd\x25\x08\x08\x9f\x5c\x59\x49\x25\x69\x96\x44\xb0\xea\x82\xf1\x7e\x52\x8b\xcd\x53\x6f\x4b\xa4\x68\xd4\x46\x4a\x8c\xda\x34\x9a\xe5\xf5\x00\x86\xc4\xee\xf9\x54\x70\x6d\x09\x3a\x82\x37\x4f\x42\x46\x70\x0f\x47\x45\xcb\x8d\x19\x7a\xa8\x81\x59\x4e\x09\x19\x49\x8e\x8f\x2d\x69\xe4\x32\x3b\x98\x3e\xda\x3c\xe1\xb0\xd8\x4c\x07\x79\xd1\x5f\x98\x34\x26\x54\x1b\x32\x3f\xae\xd6\x6d\xe5\x53\x07\xd4\x97\x12\x66\x6b\x29\x5a\x37\xcd\x4c\xe0\xc6\xb0\x89\x87\xd5\xe6\xe7\x6e\x64\xe5\xe6\xf4\x07\xeb\x96\xec\x14\x43\xd6\x0f\x6b\xd8\x74\x55\x2f\x6f\xd3\xb2\xdb\x1c\x53\x94\x9f\x84\xf3\xc3\x85\x16\x8d\x07\xe7\x88\x4e\x32\x3d\xb4\x38\x91\x53\x3e\x1c\x75\xa5\x8f\xc6\xc9\x62\x4f\x0d\x06\xb3\x2e\xe9\x4d\xd1\x6c\x0d\x27\xb8\xe2\x28\xe4\xc4\x0c\xb1\x29\x4a\xc3\x5d\x1a\x44\x33\x0d\xc8\x6c\x91\xe6\x44\x71\xa8\x24\x60\xb2\x5d\xef\x24\xb5\xba\xef\x42\x14\xe3\xfa\x66\xbc\x95\x08\x7b\xa4\xb0\x1b\xd7\xea\x79\xa1\x1c\xf7\x96\xb2\xf6\xca\xca\x34\xd5\x75\x30\xea\x12\x44\xff\xab\xe5\x71\x28\xe4\xf1\xfc\x20\x29\xf4\x42\x61\x64\x14\x7a\xa1\x30\x36\xf6\x62\xde\xf6\x32\x27\x5b\x2a\x26\x0a\x77\xee\xc3\x05\x9d\xbc\x63\x99\x51\x31\x4c\x2f\x8a\x62\xe4\x9d\xd7\xf9\xe0\xec\x8e\x29\x71\xc2\xf4\x11\x32\x8c\x13\x02\x28\xec\xd4\x3c\x9f\x07\x5c\x0e\xf6\xc4\xa7\xeb\x7b\x4b\x73\x1e\x90\x1e\xd6\x1d\xb7\x3c\x4e\xe2\xfd\x70\x20\x5d\x21\xfd\x2f\xae\x9f\x07\x09\xf9\x5f\xcb\x81\xd8\x04\x62\xcb\xb2\x21\xcb\xd2\x9a\x3a\xb5\x3e\xc4\x5a\x2a\x43\x3c\xf3\x21\xa5\xaa\xc1\x34\x17\x5b\x16\x96\xcb\x11\xc5\x94\xcc\xef\x0d\x16\x57\x7b\x4a\xe4\xe7\x0c\xb5\x8c\x51\xf6\x5c\xa7\xf1\xae\xf9\xd8\xd7\x1c\x29\x89\x86\x8e\xac\x70\x0a\x91\xb2\x2f\x77\x0e\xc8\xce\x38\xe8\x5f\xfb\xc3\x34\xa6\xe3\xab\x62\xdd\x78\x35\x98\xb0\xf8\x6a\xb8\xc7\x71\xb9\x8a\xcf\x96\xec\xf8\xb8\xdb\x83\x72\x7f\xb1\xdb\xad\xf7\x50\x77\x56\x0f\x2c\x34\x42\x8e\x72\xce\x00\xe7\x03\x46\x50\x68\xc0\x8c\x05\x63\x99\x11\x05\x39\x5f\x68\x69\x76\x71\x6f\x99\x00\x66\x72\x01\x9b\xf1\x75\x86\x79\x51\x55\x1a\xce\xe1\x14\xa5\x4e\x9f\x84\xb9\x17\x7e\x69\x2e\x3b\xcd\xb2\xd3\x9a\xc7\xf3\x03\x8a\x3c\x88\x38\x97\x22\x3a\x45\xa9\x93\xc4\x13\x5a\xf6\x0e\x6b\x2a\x35\x42\x59\x78\xee\x22\x33\xa9\xb1\x2d\x5a\x23\x1d\xe6\x8b\xec\xf1\xfc\xc3\xc5\x99\x5c\x04\x24\x87\x3d\xd1\x9e\x64\x68\xc7\xf3\x73\x96\x7f\x14\x42\x44\x04\x26\x7c\xc1\x91\x6b\x46\xe1\x01\x64\xdc\x15\x46\x98\x06\x21\x61\x64\x28\xcb\x0b\x8b\xe5\x85\x10\xad\x00\xba\x95\x54\x2a\xe1\xb6\x9b\x3d\x03\xbb\x34\x88\xaf\x07\xea\xd5\xda\x1c\x56\x54\xd1\x24\x94\x34\x99\x1e\x8c\xc2\x88\x80\x78\x8b\x56\x2a\x74\x2b\x31\xad\x0e\x38\x82\xf2\x7d\xe0\x32\x42\xc7\x05\x5d\x89\x4b\x94\x6d\xcc\x20\x97\xa6\x9b\x04\x30\x88\x56\x78\xf8\x26\xe4\xcb\x59\x76\x25\xdc\x23\x80\xd5\x3c\x3e\xcf\x65\x54\x93\x2f\xd1\x93\x6d\x4c\x60\x38\x04\xc9\x96\x2b\x73\xdb\x76\xb2\x85\xdd\x4d\xf9\xc1\x57\xfd\x35\x4f\x94\x46\xe0\x26\xdc\x14\x7e\xb3\x44\x4c\xad\x96\x6c\x17\x92\xe5\x52\xf1\x15\x02\xad\x54\x40\x2a\xdf\xa9\xce\xd9\x8f\xa3\x38\x73\x25\x67\x30\xb3\x19\x44\x61\xf6\x15\x73\xba\x24\xfc\x4f\x08\x51\xbe\xd7\xc4\x19\x1e\x5f\x7c\x38\x64\x9f\xe4\xdd\xfa\xe5\x76\x67\x71\x2e\x03\x81\x28\x4c\x1f\xe5\x0a\x03\x11\xc2\x95\x6c\xbb\x1d\xb2\xed\x75\x34\x59\x41\xd0\x99\xbf\xb9\xba\x1c\x00\x06\x3f\x41\x30\x76\xa7\x25\xf7\x5a\x97\x55\x93\xb8\x44\x52\xa9\xa0\x2f\x9d\x6a\xf1\xb5\xe2\x54\xda\xef\xc6\xf9\x7b\x31\xd3\x99\x99\x81\x64\x2d\x25\x36\x83\xb3\xd1\x9a\x91\x6b\x64\x0a\x97\x82\x8f\xd8\xd2\x22\x93\x64\xbc\x90\xcb\xca\x56\x09\xac\x92\x3c\x1a\x42\xac\xb0\x5c\xef\xd8\xb4\x24\x81\x92\xcc\xb4\xc6\xe0\x2a\x99\x42\x3f\x90\x44\x50\x97\xb7\x03\x34\xc1\x20\x90\xe3\x0b\xb5\x49\x13\xa2\x08\xb7\xdd\xe6\x3a\x69\xa1\x7e\x9e\x3c\x24\x4f\x0f\x52\x13\x6b\xe2\x8b\x61\x14\x85\x29\xe9\xc7\x74\x90\x8a\x45\xcd\x09\xf4\xf3\x48\xa3\xba\x88\x86\x80\xd5\x08\x5c\xf5\x48\x63\x5a\xe6\xc8\x58\x54\xf5\xcc\x95\x73\x97\x75\x45\x53\x88\x86\xb8\x8f\x46\x18\xf4\x15\xde\xf7\x85\x67\x8d\xa3\x22\xc2\x2f\x9f\x0d\x75\x56\x9d\x9c\x88\xf8\x64\x31\xda\x17\x43\x3a\x61\x44\xe0\x0c\xd1\x18\x8f\xd0\x00\x83\xd1\x03\x42\xba\x56\xac\xa1\x04\xc9\x42\x2b\x1a\x6d\xd2\x3a\xa5\x07\x78\x92\xc5\x6d\x79\x2c\x9e\x24\xaa\x25\x7b\x78\x80\x8e\x30\x18\x2c\x6e\x89\x4c\xec\x22\xf1\xaf\x1c\x31\x21\x63\x45\xc9\x02\x82\x0b\x87\x18\x47\xae\x06\x18\x4f\xc9\x1b\xf3\x72\x4c\x89\x7c\x12\x5f\xd3\x60\x36\x94\xd3\x62\x75\xbd\xdd\x3c\xa9\x35\xb2\x4e\x79\x09\x6a\x1f\x1f\x65\xd3\xee\x6e\x2e\x65\xc9\xa8\x14\xf9\x58\xae\x04\xfd\x71\x04\xa0\xbd\x56\x23\xf0\x13\x6b\x5c\xc7\xfa\x90\x24\x58\x3b\xb1\x87\xee\x9f\x08\xd1\x14\x4e\x8f\x64\x2f\x89\xf1\xbe\x83\x77\x81\x0b\xd1\x55\xbc\x0b\x3c\x88\x0e\xf0\x2e\xa8\x43\x74\x01\xef\x82\x06\x44\x87\x78\x17\x34\x21\xba\x8c\x77\x41\x0b\xa2\x27\xf1\x2e\x68\x43\xf4\x30\x06\x3b\xaa\x97\xaf\xaa\xdf\x03\xf5\x7b\x41\xfd\x1e\xaa\xdf\xcb\xea\xf7\xc9\xc5\x5c\x21\x5a\xc9\x35\x8c\x33\xd2\xe7\x62\x4c\xd9\x48\x12\x48\x82\x8b\x99\x64\x99\xe5\x52\xd5\x0a\x59\xbc\x7a\x55\x12\xee\xd1\x49\x14\x3d\x4f\x82\x44\x27\xc8\xbe\xe1\x09\x43\x58\x96\xc2\xf9\xe4\x1a\x7e\x18\x5d\xc4\xe0\xe1\xc5\x0d\x94\x89\x5d\x74\x1f\x6d\x34\x48\xcc\xa0\x74\x4a\x4b\x17\xb7\x65\x71\x53\x72\x69\x20\x5c\xba\xb8\x78\xca\xca\xa6\xa8\xe2\xdc\xa5\x26\xac\x92\x61\x61\x8a\xce\x4f\x58\xc5\x3a\xe5\xf4\x25\xc7\x46\x8e\x4e\x27\x8f\x95\x6c\x8a\x33\x05\xcd\x14\x2b\xe7\x3c\x98\x9b\xd4\xae\xe0\x8b\xe8\x1c\x06\x17\x17\x77\x53\x6e\x36\x59\xd8\x2f\x0f\x40\xfa\x3f\x73\xe5\x5c\x61\x02\x78\x1a\x9f\x43\x4f\x61\x70\xee\x44\xc4\x74\x8e\x13\x58\xe6\x81\x89\xf4\x67\xae\x9c\xcb\x49\xf5\x4b\xf8\x29\xf4\x22\x06\x4f\x9d\x88\xde\x19\x38\xfa\x99\x2b\xe7\x32\xc1\xa6\x3f\x4e\x16\xef\xa7\x8a\x6b\x53\x8c\x94\xd8\x8f\xe3\x17\x33\x89\x7d\xfe\x64\x89\xad\xb3\xb2\x62\x39\xb9\xef\x39\xd1\xfd\x91\xda\x79\xb2\x0c\x97\x32\xf9\xc5\x9c\x4c\x7e\x02\x9f\xe7\x32\xf9\x51\x7c\x9e\x8b\xc6\x97\xf1\x79\x2e\x93\x1f\xc3\xe7\xb9\x4c\x7e\x04\x9f\xe7\x32\xf9\x19\x7c\x9e\xcb\xe4\x97\xf0\x79\x2e\x93\x3f\x83\xc1\x13\xaa\x8f\x1e\x55\xbf\x2f\xab\xdf\xc7\xd4\xef\x23\xea\xf7\x19\xf5\xfb\xd2\x89\x7d\x5a\x10\xcb\x67\x6e\x7b\x4e\x38\x9b\xaf\xd3\xa4\x56\x96\xb0\x36\x9b\xd1\x48\xe9\x67\xae\x9c\x9b\x15\x6e\x85\xa0\x13\x04\x5c\x56\x1c\x67\x92\x67\xf1\x67\xd0\xf3\x18\x7c\xe6\xe4\xe1\x36\x23\xb1\xcf\xdc\xfc\xa2\xdc\x2e\x60\x78\x3a\x11\x4e\x6c\xe0\x89\xed\x2b\xca\xf0\xe7\x1f\xa4\x0c\xcf\x97\x3e\x2b\xc6\x0b\x35\xe7\x25\x79\x91\x84\xa7\x8e\x9e\x4c\x9e\xe7\x4b\x9c\xaf\x62\x5e\xaa\x7f\x12\x3f\xbf\xf4\xbc\xea\x4a\xea\x0c\x00\x43\x56\xbf\xec\xea\x78\x3a\x85\x3a\x9e\x9e\x12\xbf\x5b\x16\x3f\xcc\xe2\x93\x53\xe2\x07\x65\xf1\xe3\x2c\x7e\xa7\x2c\x7e\x2f\x8b\x0f\xca\xe2\xf7\xb3\xf8\x17\xcb\xe2\x77\xb2\xf8\xd1\x29\xf1\xa4\x2c\xfe\x6a\x16\x1f\x96\xc5\x1f\x66\xf1\xc3\xb2\xf8\x6b\x59\xfc\xb5\xb2\xf8\x2b\x59\x7c\x5c\x16\xff\x74\x16\xbf\x57\x16\x7f\x29\x8b\x8f\xca\xe2\x1f\xcf\xe2\x27\x65\xf1\x4f\x64\xf1\xe9\x29\xf1\xe3\xb2\xf8\x47\xb3\x78\x56\x16\xff\x48\x16\xff\x52\x59\xfc\xb3\x59\xfc\x7e\x59\xfc\x27\xa7\x33\xc2\x61\xc1\xde\xe0\x6c\x92\x9c\xcf\x7f\x9c\xdb\x89\xc5\x14\xd1\x82\x47\x12\x92\x7b\x4a\x28\xcc\x1b\x54\x16\x4f\x53\x72\xc5\xe5\xee\x40\x8b\xb7\x06\x20\xed\x26\x3d\xcc\xba\x49\x6e\xf3\x3e\xb7\x2b\x09\xaf\xab\xcd\x13\xeb\x85\x17\xd2\x2a\xe8\xda\xb5\x5e\xe7\x85\x17\x06\x36\xe4\x9f\x16\x4a\x67\xc2\xab\x2f\xbc\xe0\x88\x78\xd0\xf1\xbb\xe4\x42\x2f\x4b\xdf\x51\x39\x26\xf7\x91\xe3\x13\x32\x4b\x84\x57\x3f\xf7\x3f\x40\xd7\xad\x6d\x04\xb5\x61\xef\x7a\x63\x0a\x1f\x5a\x45\xfd\x62\x60\x5b\x04\x0e\x71\xe1\xd9\x98\x64\x77\xe7\x85\x17\x80\x65\x77\x03\x14\xa0\xa0\x67\x5b\x2f\xbc\x00\x1f\xb2\x20\x1a\x2d\x48\x36\x41\x13\x34\xc9\x92\x8d\xe7\x92\x05\xb9\xe2\x50\x9a\xa5\x1c\x2c\x4a\x29\x4a\xcc\xa7\xdc\x2b\xa6\x1c\xa5\x91\x4c\x98\x16\xab\x3e\x9a\x4b\x16\xe4\xd2\xe5\x0b\xdc\xc7\xd7\x83\x28\xec\x93\x9d\x68\x42\x7c\xaf\xb5\xb6\x51\x6f\xac\x37\x50\x40\x59\xf8\xd2\x84\x1c\x8c\x42\x46\x7c\xaf\xdd\x6c\x36\x1b\x6b\x2d\x14\xbc\x34\x09\xfc\x76\xab\xd5\x90\xe0\x5e\x90\x84\x94\xf8\xeb\x8d\xf5\xf5\x56\xbb\x89\x82\x97\x27\x89\x2c\xa2\xe9\xad\xb5\xd0\x0e\x09\x77\x79\x5e\xcf\xdb\xa8\xb7\x5d\xb4\x13\xa6\x2f\xf1\x1a\xda\x6b\x6b\x6e\xbd\xd9\x44\x3b\x51\xd0\xbf\xe6\xbb\xfc\x97\xf6\x47\x64\x10\x44\x7b\x31\x1d\x88\xf8\xba\xdb\x6c\x21\x81\x4f\xbd\x25\x81\xfd\x30\x8e\x08\xf3\x37\xdc\x56\xab\xee\xd6\xd1\x4e\x12\x1f\x50\xdf\x73\xd7\xeb\xcd\x7a\xa3\x89\x76\x26\x49\x74\x74\x10\xc7\x03\xdf\x6b\xb6\x36\xda\xf5\x86\x87\xfa\xc1\x80\x30\x51\x44\xbb\xde\x6e\xb7\xea\xeb\xa8\x3f\x0a\x12\x96\x90\x49\x2a\x11\x6e\xb4\xea\xa8\x3f\x8a\xfb\xb1\x70\x21\xec\x35\xd6\xd6\x37\x9a\x6b\x2e\xea\xc7\x49\x10\x71\x24\x9a\xcd\xfa\x5a\x9d\x7f\xd2\x61\x14\x1f\x90\x44\x96\xd5\xda\xf0\x36\xd6\x3d\x11\x9c\x86\xd1\x35\x81\x6d\xab\xb1\xbe\x8e\xfa\x49\xb8\x97\xc6\xd4\xf7\x9a\xcd\x7a\xc3\x73\x5d\xd4\x3f\x0a\xa8\x22\xd5\x20\x48\xae\x49\xea\x36\x36\xc4\x87\x88\x6b\xb4\xd6\xea\x0d\xf1\xb9\x1b\x47\x03\x42\x13\x8e\x7e\xdd\xdd\xa8\x6f\xa8\x54\xbb\x49\x70\xe4\x7b\x9e\xe7\x6d\xb8\xde\x9a\x0a\x21\x84\xfa\xf5\x56\xdb\x75\xf5\xf7\x4c\x8a\x6b\xa3\xe0\x5a\xe8\x7b\xf5\x66\xa3\x51\x6f\xc9\x62\xf6\x82\x5d\x42\x59\xe0\x6f\x78\xee\x46\xbb\x29\x6b\x8c\xa3\x70\x9f\xc8\xd2\x5a\xad\x8d\xb5\x8d\x0d\x99\x34\x16\xf3\xa5\x68\xfd\x5a\xab\xee\xaa\xb0\xfe\x28\x1c\xf8\x9e\xeb\x36\x5d\xd7\xab\x8b\xb0\x84\x0c\x44\x71\x2d\xb7\x29\xbe\x53\xd1\x77\xbe\xd7\x6a\xb8\xeb\x4d\x4f\xe6\x4b\x49\x20\x2b\xd8\x68\x7a\x1b\x1b\x9e\xac\x40\x78\xb4\x14\xa4\x68\xae\x35\x9a\x8d\xe6\x5a\x16\x2a\x5a\xcb\x29\xd7\xdc\x68\xe5\x43\x49\x31\x94\x4d\x92\x97\x26\x71\x98\x12\xbf\x55\xdf\x68\xca\x30\xcd\x1c\xed\x8d\x8d\x16\xa7\x1d\x21\xe3\x71\x48\x45\xe7\x78\xed\x0d\x5e\x09\x21\xe3\xf4\xda\x91\xac\x78\xc3\x6b\x79\x68\x10\xee\x89\x0a\xdb\x1b\xee\x7a\xbd\xdd\x92\xdf\x24\xf7\x1d\x0f\x76\x55\x9f\xd7\x5d\xb7\xe1\x6d\x6c\xa0\x61\x98\x90\x9d\x24\xec\x5f\xf3\x3d\x4e\x20\xaf\xd9\x46\xc3\x88\x73\x8b\x1e\x23\x6b\x6b\xad\x8d\xba\x8b\x86\x71\x42\x52\xa6\xba\xaa\xde\x6e\xac\x37\xeb\x68\x38\xe9\x8f\xd2\x30\x10\x18\x79\x1b\x8d\x16\xda\x0d\x42\x9a\xee\xc4\x49\xcc\x19\x66\xad\xd9\x6c\xbb\x68\x77\x14\xa7\x4c\x97\xd5\xf0\xda\xed\x35\x0f\x71\xce\xe0\x99\xda\xed\xb5\xba\x8b\x72\x7c\xd2\x6c\xd4\x37\x3c\x1e\xc4\x1b\xb1\xde\xac\x7b\xbc\x2b\x64\x9d\x8d\xfa\x5a\x7b\x5d\xc2\x47\x24\x8a\xe2\x03\xdf\xf3\x9a\x6e\xc3\x6d\xb5\x90\x68\xa2\x4e\x3d\x8a\x29\x39\x1a\x90\x03\x35\x60\xdb\x2e\x1a\xc5\x4c\xd3\xad\xb1\xbe\xd6\x74\x51\x48\x07\x61\x40\x79\x6f\x7b\x8d\x66\x6b\xbd\x55\x6f\x8a\xa0\xdd\x58\x50\xb1\xd1\x70\x51\xb8\x1f\x27\x47\xa2\xed\x6b\x75\xd7\x45\x8a\xfd\x5a\x6b\xeb\x6b\xed\xb6\x8b\xa2\x60\x5f\xda\x9d\x79\x2d\xaf\x51\xe7\x9c\xa1\x43\x76\xa2\x49\x3a\x12\xf9\x1a\x8d\x76\x0b\x45\xc1\x01\x95\xd8\xaf\x7b\x1b\xee\xc6\x5a\x1b\x45\x64\x2f\xa6\xfd\x51\x38\x1c\x72\xc6\xe2\xb4\x5d\x5f\x6f\xa1\x28\xdc\x1d\xc9\x51\xed\x79\x8d\x8d\x46\xbd\xd5\x94\x41\x6a\xd4\xb6\xd6\xda\x5e\xab\xd1\x56\x61\x7c\x90\x79\xcd\xb5\x66\xab\xb5\xb1\x21\x83\x0c\x01\x35\x61\xda\xcd\xe6\x7a\x9d\xa3\x25\x62\xc5\x78\x6b\xac\xaf\xd7\x1b\xf5\x86\x0e\x92\x1c\xbc\xb1\x5e\x6f\xb5\x4d\xd0\x6c\x2a\x4d\xb4\xd6\x7a\xb3\xad\x70\xd4\x23\xa2\xbd\xd6\xaa\xaf\xb5\xeb\x2a\x50\x0f\x89\xba\xd7\xac\xaf\x6f\xa8\x6a\x35\x63\xae\x6f\xb8\x6e\xa3\xa9\x6a\xc9\x86\xc4\xda\x7a\xa3\xb1\xd6\x6a\x14\x82\xc9\x6c\x30\x23\x24\x52\x64\x69\xad\xf3\xa1\x25\xc3\x4d\x33\xd7\xd6\xd6\xbc\x75\x1e\xb8\xc7\x65\x58\x7d\xdd\x15\xa0\xe2\x97\x46\x7d\x83\x77\x65\x14\x52\x42\x05\x49\x5a\xed\x35\x17\x69\xb1\x61\x58\x76\x2f\x48\xe2\x98\x0a\xd9\xd9\x76\xd7\x85\xfb\xc0\xc9\x5e\x6e\x16\x68\xaf\x35\xd6\x1a\xf5\xba\x8a\x50\x43\xa7\xa5\x3e\xb5\x14\xa9\xd7\x3d\xce\xd9\x2a\x74\x3c\x49\xc6\x11\xf1\x37\xda\xed\x7a\x7b\xbd\xa1\x02\x0d\x95\x1a\x1b\x6b\xeb\xee\x86\x4e\x9b\x89\x8e\x75\x77\x7d\x6d\x6d\xc3\xd5\xe1\xe3\x24\xa4\xbb\x32\x47\xbb\xe9\xb5\x9a\x2a\x3c\x13\x14\xcd\xb5\xb5\x7a\xc3\xd5\xe9\xa5\xb0\x90\x3c\xed\x36\xd7\xbc\xb5\x06\xda\x0b\x07\x34\x63\xac\x76\xb3\xb9\xe1\xd5\xd1\x5e\x48\x19\x57\x7e\xf6\xf8\x0c\x56\xf7\xd6\x5b\x2e\xda\x0b\x53\x76\x94\xc4\xa9\x9e\xc4\x78\xd6\xb8\xdf\x0f\xd2\x90\xaa\x90\xfa\x06\xa2\xc1\x7e\xf0\x62\x6c\x64\x42\x7b\xbd\xbd\xde\xe2\x81\x47\xbe\x57\x5f\x47\x71\x34\x88\x82\x3e\x8f\x69\x37\x1b\xad\x16\x0f\x08\xf7\x89\x18\x93\x8d\xb5\xb6\xfc\x1a\x24\xc1\x8e\xbf\xe6\x36\xd7\xd7\x1a\x1b\x28\x13\xc9\xad\x06\x97\x2e\xf2\x5b\xa0\xdf\x5e\xab\x6f\x34\x9a\x4d\xa4\x69\xdb\x6c\x78\x2d\xde\xf5\xe3\x20\x22\x39\x51\xd1\x6a\xb7\xd6\xbc\x86\x2b\x83\x05\x99\x3c\xd7\xad\xb7\xd6\xd7\x65\x50\x46\x27\xcf\x6b\xd5\x37\x36\xda\x6d\x11\x9c\x23\x53\xb3\xb1\xee\xd5\xdd\x06\x1a\x07\xe3\xe0\x28\x38\x18\x85\x63\x39\x70\xdd\xb5\x35\x34\x26\x41\x7f\x34\x9e\x0c\x87\xa2\xad\x6b\xed\xb5\x06\x1a\x93\x64\xc2\xe5\x45\x7b\x7d\x63\xc3\x43\x7a\x6c\xb4\x3d\xb7\xd1\x42\xe3\x68\xb2\xc7\xe7\xe8\x7a\xb3\xdd\x58\x43\xe3\xf8\x60\xa0\x84\xac\xe7\xf1\x99\xd5\x73\x91\x62\x09\xce\x65\x6b\x8d\x36\x4a\xc8\x0e\xe9\xf7\x03\x15\xda\x6e\x6f\xac\xad\xaf\x7b\x48\x35\xdf\xf3\xda\xeb\x2e\x4a\xe2\xf4\x48\xe9\x03\xf5\x46\x6b\xad\xe5\x6d\xa0\x24\x3e\x0a\xe4\x78\x68\xd6\xd7\xdb\x7c\x9a\x48\x83\xc1\x20\x22\x32\xd9\x86\x57\x5f\xf3\xd6\xd7\x90\x19\xa3\x4d\xaf\xbd\xbe\x5e\x47\x69\x40\x07\xba\xa4\xb6\xdb\xa8\xaf\xb7\x9b\x28\x63\x46\xb7\xe5\x36\xea\x6b\x3c\x20\x1d\x91\x48\xa8\x08\x6b\xcd\x76\x63\x1d\xa5\x21\xa1\x34\xf0\x3d\xb7\xe5\xb6\xd7\x36\xd6\x50\x1a\x0a\xa7\xbf\x5e\xbd\xdd\xa8\x73\xa9\x51\x18\xdf\x0d\x0f\x65\x8c\xdc\xde\x58\x73\xdd\xb6\x0a\x91\x83\xbd\xb1\x56\xdf\x68\x36\x51\x6e\x9c\xeb\x10\xaa\x06\x72\x6b\xa3\xe1\xa2\x02\xd3\xb7\x9a\xee\x1a\xca\x44\x40\xb3\x5d\x77\x37\xd6\x5d\xc4\xb8\xf8\x6b\xf0\xc1\xc2\x3f\x48\x10\xf9\x8d\xfa\xfa\x46\x5b\x98\x4d\xb1\x88\xf8\x5e\xb3\xee\x36\xd7\xd7\xd7\x11\x8b\xf7\x02\x16\x0b\xa9\xbf\xe6\x6e\xb4\x50\x6e\xe4\xd4\x5b\xde\x7a\xab\x8d\xd4\x04\xeb\xb5\xda\x0d\xcf\x5d\x6f\xa3\x83\x11\x09\x98\xd0\xec\x1a\xbc\x45\xd9\x04\xb8\x56\xf7\x5a\xf2\x33\xdd\x8b\xaf\x69\xe5\x6f\xbd\x85\x72\x92\xa8\xbd\xd1\x76\xd5\xb7\x66\x47\xaf\xd9\x72\xd7\x9a\xd3\x99\x53\x15\x61\x3c\x60\x6c\x05\x30\x20\xb6\x65\x41\x87\x25\xe1\x1e\x80\x0e\x8b\x9f\xe0\x5a\xd9\xb9\x20\x25\x00\x22\xc0\x70\xe4\x90\x43\xd2\x07\x04\xc2\x0e\xd7\x7c\x0f\x01\x60\x58\x78\x02\x7a\x9c\x32\xf1\x8c\x0b\xf2\xda\x10\x6e\x6f\xaf\x57\xbc\xd6\x31\xdb\xde\x6e\x56\xea\x4d\x17\x09\xc0\x6b\x1d\xd7\x9b\x6e\x85\x21\xe0\xb5\x2a\x0c\x6e\x6d\x35\x8f\x39\x80\x3c\xf1\xd8\x55\x3f\x2b\x78\x07\xcc\x97\xc8\x93\x0c\x67\xeb\x16\xb1\xac\x5b\xe7\x7f\x1a\x3d\x55\xd0\x68\x36\x55\xbd\xd5\xaa\xf2\x94\xab\x5c\x5f\x94\x1f\xf5\xfc\x47\x43\x7e\xc8\xdc\xe3\x2c\xf7\xd5\xd9\xf2\x59\xb7\x29\x1f\xe6\x1a\xe4\x13\x9d\xb1\x78\x93\x79\x2f\xcb\xfc\x64\x56\x83\x4a\x53\xc0\xe5\xe8\x0c\x29\x65\xb1\xfb\xce\x28\x48\x9f\x3c\xa0\x99\xe1\x0d\xa7\xe2\x7e\x97\xf4\xa0\x6f\x09\x1f\xe7\xe3\x20\xd1\xaf\xa9\x28\xb2\x5c\x0a\x2e\x21\xfd\xdf\x55\x7b\x3a\x86\x33\x76\x72\x7b\x56\x32\x39\xd9\xde\xf6\xda\x15\xbe\x50\x20\xbc\x77\x39\x50\x6f\xb5\x2a\x04\x79\x30\xcb\x76\x55\x59\xc7\x24\x99\x99\xc2\x16\x76\x2b\x15\x40\x30\xc3\x14\x5f\x0a\x2e\x41\xa4\x8a\x53\xe9\xb2\xbc\x07\x33\xcf\xeb\x99\x47\x04\xe3\xe3\x63\x40\x30\xe7\x55\x88\x34\xf2\x80\x60\xe2\x24\xbb\x3b\x00\x42\x27\x41\xc4\xd9\x45\xc4\xd9\x41\xc4\x89\xc7\x41\x3f\x64\x47\x50\xb8\xc5\x3f\xcc\x0a\xbf\x30\x87\x98\x87\xf1\x9c\x3d\x5f\xe7\x40\x38\xd3\xcb\x21\xa8\x5e\x52\xea\x78\x7e\x1e\xd5\x0c\x7d\x69\x3f\x99\x60\x5b\x3d\x79\xb1\x8b\x6d\x26\xa1\x1d\x6c\x53\x65\x32\x2e\x71\xc2\x76\x92\x95\x70\x39\x77\x43\x47\xef\x05\xee\x05\x87\xc0\x95\x16\x1b\x7b\x21\xe5\x7c\x25\x3f\x84\xbd\x0f\x20\xf0\xf8\xd8\x85\x10\x6e\x79\xed\x8e\xe5\x5a\xbe\x65\x41\x9b\x38\x4c\xbd\x38\x06\xbc\x76\x0e\xbf\x27\x4b\xbb\xa1\x63\x3a\xc1\xa7\x5b\xd8\x3d\x3e\xa6\xdb\xd8\x13\x81\x3c\x88\xe9\x8e\x32\x9d\x74\xad\xa4\x93\x1e\x3e\x1b\x1d\x67\xcc\x16\x0b\xdd\x79\x0d\xe6\xf8\xea\x1a\x20\xce\x08\x11\x27\x45\xc4\x89\x72\xfd\xb7\x34\x9b\x2b\xcf\x04\x2b\xa4\x50\xc4\x5c\xda\x6b\xb3\xcf\xf9\x15\xb8\x65\x95\x13\x96\x62\xe2\xec\x0a\x28\xc1\xc4\xd9\x11\x50\x88\x0d\xed\x65\x13\x51\x90\x75\x8c\x0a\x49\x39\x79\xd0\x04\x07\xb5\x10\x45\x18\x04\x76\x08\x57\xeb\x5a\x78\x4e\x3a\x20\xc5\x8c\xd3\xa3\x03\x68\x2d\x81\xab\x13\xbb\x5d\x05\x74\x2b\x81\x3e\x95\xa1\x49\x8d\xf1\xd0\xba\x0f\x58\x8d\x72\xa8\x89\x26\xab\x38\xda\x72\x5a\x9d\xc0\x0e\xfd\x7a\x8d\x97\x9b\x56\x71\xdb\x85\xfe\x04\x47\xdb\x6e\xa5\x12\x6d\x79\x1d\xd7\x4f\x55\x8f\xa4\x68\x82\xf2\x74\x9a\x6a\x86\xbd\x76\x22\xc3\x5e\x9b\x61\xd8\x91\x61\xd8\xd4\x30\x6c\x74\x22\xc3\x5e\xd4\x3b\x5e\xaa\xad\x5c\xb6\x01\xb2\xd5\x76\x3b\xcc\x16\x56\x2c\x55\xb2\xda\x76\x7d\xb2\xe5\xad\xbb\x1d\xea\x93\xad\x7a\x33\x8b\x02\xf5\xa6\x5b\x23\x90\x27\x60\x70\x9a\x80\x18\xed\xa2\xeb\x83\x30\x1d\x47\xc1\x91\x78\x1e\x79\x7e\x43\x4e\x8e\x2b\xde\x65\x4e\x2e\x21\x80\x53\x34\x22\x87\x27\xa7\x1f\x91\x43\x20\x6e\x13\xcc\x3e\xc6\x57\x92\xd8\xb6\xac\xe9\x14\xa2\x04\x1c\xa2\x0b\x28\x04\x31\xba\xbe\x93\x70\x1d\x95\x94\x1a\x1c\x13\x65\xbf\x46\x3a\xde\xaa\xb3\x26\x4d\xd8\xc6\xf1\x01\xe0\x5f\x88\x68\xd1\x26\x4b\xaf\x6a\x89\xa0\x81\x1d\x0d\x98\xbe\x13\xab\xea\xd3\x6a\xca\xd7\xf3\xe1\x6a\x49\x76\x77\x16\xd0\x60\x8a\x4e\xee\x04\x77\x4b\x3d\xf1\xa4\xec\xf8\x93\x2d\xcc\x65\x7e\x45\x87\xef\xaa\xf0\xdd\x99\xf0\x1d\x15\xbe\x33\x13\xae\x70\x52\xb1\xea\x6b\x0b\x7b\x0b\x3a\xd5\xfa\x1f\x96\x7d\x59\x35\x14\x6a\x68\xd7\x40\x3b\x0b\x3a\x39\x77\x57\x41\x55\xa1\x06\x28\x10\x3e\xfe\x08\x0e\xd3\x4b\xc1\x25\x3e\x45\x2a\x2b\xc4\x19\xc1\xeb\x21\x02\x21\xec\x58\x9c\x41\x2c\x9f\xff\x04\xc0\x82\xf6\x19\x64\xb4\x42\x55\x08\x6a\xdb\x42\xcb\xd6\x99\x33\xed\x7e\x98\x4c\x3b\x2a\x93\x68\x17\xe9\x58\xd0\xf2\x45\x7e\x62\x5b\xd0\x82\xd3\x29\xe4\x8c\x7d\x0d\x3d\xfc\x60\x18\xfb\x9a\xac\x74\xa4\xe4\x86\x12\x1a\x0f\x92\xa9\xcf\x5a\xc3\x0c\x43\xe7\xfa\x7b\xf4\x89\x46\xdb\xb5\x1b\x6d\xb7\xaa\x8a\xda\x72\x21\x62\xa6\xc3\x8f\x8f\x25\x24\xcb\x87\x1d\xd7\x57\x35\xe9\x67\x71\xc4\x43\x2e\x80\x72\x79\x4c\x7d\xaf\x46\x61\x95\xa1\x10\xd7\xab\xb4\x96\x2c\x15\xb4\xa1\x8b\x80\x6c\x63\x2e\xe2\x48\xad\xde\x74\x7d\x62\x7b\x75\x17\x85\x7c\x86\xe0\x82\x52\x03\x5b\x5e\xdd\xed\x10\x5b\xa4\xa8\x99\x14\xb3\xf4\x3a\x69\x08\x02\x3d\x74\x52\x35\x68\xd2\x2d\xec\xcd\x34\x03\x66\x03\x2c\x52\xa9\xa2\x2d\xec\x9d\x61\xd8\x4d\x21\xd4\xb6\x19\xbc\x37\x9e\x7a\x7c\xd5\x5b\x77\xd1\x39\xec\xad\xbb\xab\x2a\x04\x3d\x8d\x9d\x8d\x76\xb3\x5e\x47\x4f\x61\x0f\x5d\xc2\xce\x7a\xbd\x55\xf7\xd0\x8b\xb8\xb9\x5a\xdf\x40\x8f\xe3\x36\xff\x39\x8f\x1b\xd5\xc7\xab\x8f\xa3\x27\xf0\xe3\xfc\x37\x5b\x60\x3c\x5a\xa6\x00\x3c\x96\x9f\xbd\x1f\x03\x72\xe2\x0f\x66\x14\xb8\xb9\x49\xfd\x79\x51\x90\xea\x49\x67\x04\xe7\x0b\x71\x91\x9b\x2f\x40\xbf\x9b\x37\xaa\x5e\x59\x9a\x4b\x2b\x5a\xd7\x8f\x53\xc0\x27\x2e\xa7\x2f\xbf\x53\x3e\xf3\xcb\xef\xdc\x0c\x5b\xc0\xe2\x50\xa8\x21\x5c\x4d\x54\x3e\xf0\x51\x82\x42\xfc\x19\x40\x9c\x04\xa2\x58\x00\xbb\x5c\x6f\xe0\xc0\x0e\x57\x17\x1e\x01\xc0\xa9\xd7\xeb\x2d\xb7\xd9\xaa\x86\xb6\xb3\xe6\xb5\xd7\xd7\xd6\xdb\xd5\xd8\x76\xdc\xb6\xdb\xf6\xda\x1b\xd5\x00\xae\x3e\x65\xac\x96\x43\xf9\x2e\x50\x2c\xd4\x05\x8a\x13\x9c\xfa\x80\x8a\x42\x9a\x8d\xb6\xbb\xd6\x5c\xe3\x85\x34\xd6\x5b\x6e\xbb\xb9\xc1\x0b\xf1\x9a\x0d\x77\xdd\x6d\xf2\x42\x9e\x86\x28\x11\x29\x5d\xb1\x67\x57\xe7\x29\xdd\x8d\x35\x8f\xd7\x1c\xf3\x9a\x9b\xde\x5a\xa3\xc1\x53\x5e\x82\x72\xbc\x3d\x06\x3c\xaf\x5d\x4d\x6b\x5e\x1b\xb5\x5c\xb7\x0a\x68\x2d\x85\xa8\xce\xa1\xb4\x96\xc0\x3c\x0d\x4c\x87\xbe\x7c\x36\xfd\xef\x51\xad\x96\x3c\x76\xa2\x5a\xf2\xd8\x8c\x5a\x12\x19\xb5\x24\x38\xa3\x1e\xfd\x48\x5e\xbc\x6c\x3f\xd1\x31\x52\x85\x20\x6f\xb5\x01\x7d\xb2\x7a\xde\x7e\x31\x4b\xfe\x4c\x21\xf9\xe3\x1d\x52\x25\x55\xe2\x9f\xaf\x02\x52\x7b\x31\x87\xd7\x4b\xb9\x64\x4a\xd1\xc1\x8e\xeb\x36\xbc\x86\xbb\xde\xf1\xea\xce\x46\xbd\x4a\x7c\xcf\x71\x5b\xad\x6a\xa1\xc2\xba\xd3\x84\x35\x1e\x9c\x2b\xeb\x33\x39\x4d\x9f\xac\xf2\xf9\x10\xf2\xc2\x9a\x6e\xb3\xd5\x21\xab\xa2\xb0\x4c\x16\x02\x62\x8b\xec\xab\xa2\x70\xc4\xcb\xcb\x4a\x7a\xf6\xa3\xeb\xde\xcf\xe7\x47\xcd\xf3\x4a\xf7\xee\x9f\xa6\x7b\x3f\x26\x98\xfe\x51\xa1\x7b\xcb\x97\xb3\x03\xf9\x90\x34\xe7\xf1\x42\x81\x62\x2d\x39\x5b\x9c\x1c\x88\xa2\x8d\x01\x0b\x68\x1d\xc8\x91\x1e\xc0\xea\xb9\xa5\x42\x6e\xb6\xc5\x55\xc6\x06\xd7\x12\xd5\x80\x7c\x29\x61\x80\x38\x41\x95\x38\x81\x4d\xb8\x6e\xc3\x07\x55\xb1\x78\xa3\x01\x3f\x7f\x22\xab\x3d\xbf\x50\x03\xee\x9f\xac\x01\x27\xe0\x31\xf4\xf2\xe9\x33\xa8\x64\x76\x59\x8c\xed\xad\x57\x81\x99\x50\x7d\xfd\x82\x7d\xa0\x18\xfa\xec\x13\x66\xbe\xd0\xda\xfd\x15\x5a\x3a\x47\x1a\xfc\xda\x70\xd5\xf3\xda\x66\x66\x94\x25\xc1\x0e\xf1\x89\x7c\x31\x2c\x58\x6d\xb9\x2e\xa2\xf9\xe8\x1d\x11\x5d\x93\xf0\x6a\xdd\x75\x8b\x13\xe2\x4b\xa0\xe1\x78\x8d\xc6\x7a\xab\xed\x55\x01\xc3\x4f\x57\x9f\x01\x0c\xc2\x9a\xe7\xb4\xbd\xf6\x7a\xbb\xbd\x56\x05\x04\x3f\x55\xe5\xe3\x0f\xd6\x9c\xe6\x86\xdb\xf6\x9a\x7c\x6d\x84\x2f\x55\x9f\x01\x14\x42\x88\x5e\x02\x35\x67\x63\x6d\x7d\xad\xbd\xde\xac\x32\xdb\x73\x36\xbc\xb6\xd7\xf4\x5a\x55\x3e\x22\x1a\x8d\x66\xab\x59\xa5\x3c\x91\xe3\xae\x79\x1b\xcd\x56\xa3\xca\x6a\x4e\xbd\xbe\xbe\xb1\xe1\x35\xab\xc4\xf6\x9c\xa6\xdb\xaa\x37\xeb\x6b\x3c\x51\x91\x12\x52\x0b\x7a\x1e\x3d\x7b\xb6\x3e\x7c\xbe\xa0\x83\xf4\xd1\x89\x3d\x7a\xd6\x3e\x2c\x2f\x74\x41\x8f\x9e\xa6\xb8\x3f\xaa\x9e\xbd\x10\xeb\x17\x33\x85\x7f\x12\xd7\x1c\xaf\xb9\xde\xf6\xd0\xa7\xb0\xe7\xac\xad\xd7\xd7\xd6\xd0\x43\xb8\xe6\xd4\x37\xea\xf5\x35\xf4\x69\x5c\x73\x36\xf8\x9c\x81\x9e\xc3\x9e\xb3\xb1\x56\xdf\x68\xa2\xcf\xe2\xe7\xaa\x9f\x46\x7f\x88\x9f\xab\x7e\x0a\x11\x82\x3f\x55\x7d\xa8\xf6\xe9\xea\x27\x73\x5e\x7b\xc8\x47\x97\x37\xb4\xb0\x52\xa7\x64\xd1\x6a\xff\xc4\x39\x96\x4f\xe2\x27\xad\xda\x01\x21\xd5\xc4\xfe\x6c\x95\xd5\xfe\xb0\x4a\xe1\x2a\x20\xc4\xfe\x6c\xed\x0f\xf9\x74\x9c\xd4\x42\x14\x60\xf0\x1c\x9f\xda\x42\x58\x7b\xa8\x1a\xc3\xd5\x4f\xa3\x14\x67\xc2\x25\xa8\x06\x76\xcc\x83\xc1\x73\xd5\xb0\x0a\xbc\x5a\x08\x21\x9a\xe0\xb4\x93\x13\x57\x01\x8a\x61\xf5\x1c\xd7\xdf\xfc\x4b\xc1\xa5\xa5\x62\x83\x26\x5b\x6e\x67\x22\x64\xd6\x04\xa5\x28\x2c\x13\x4c\x94\x9c\x28\x99\x28\xf9\xb0\x8b\xf3\x04\x50\x82\x18\x79\x30\xea\x3d\x25\x1f\xbb\x7e\x7f\xe6\x2a\x4a\x85\x57\x4e\x16\x8d\xb8\xea\xae\x40\xae\x79\xc3\xea\x15\xc4\xb0\xad\x74\xf8\x82\xd8\xca\x69\xf9\x55\xc6\x3b\x98\x71\x35\xc9\xa8\x7f\x04\xea\x6d\x1f\xae\xfc\xe5\x5e\x2f\x36\x3b\xc7\x80\xd9\xb4\x0a\x3e\x59\x4d\xec\x4f\x55\x39\x73\x64\x61\x0f\x55\x13\xfb\xd3\x33\x61\xcf\x55\x13\x58\x26\x81\x4e\xb2\x2d\xdb\x3d\xc5\xb6\xeb\xc2\x29\xb6\x6d\x0f\x9f\x62\x5b\xf6\x72\x16\x5f\x6a\x9b\xf7\xec\x29\xb6\x71\x8c\x9c\x6a\x1c\x45\x9d\x04\x30\x58\x62\x23\x95\xf1\xc6\x16\x13\x57\x6e\xb7\x19\x17\x75\xdb\x98\x75\xc4\x68\x9a\xe6\x9f\x47\x99\x3d\x8c\x10\xcb\x5a\xf3\x28\x26\x60\x98\x20\x52\x7e\x6f\x31\x01\xf2\x95\x13\x38\x85\xe8\x7a\x44\x86\xb9\x2b\xee\x62\x64\xa1\x50\xde\x94\xce\x3f\x8c\xef\xea\xdb\x8d\xd2\xaf\x1a\x33\x97\xa6\x93\xad\x70\x53\xdd\x62\xc4\x89\x1d\x6e\x6f\x6f\x7b\x4b\x04\xb0\x6e\xdc\x43\x14\x6e\xb9\x9d\x04\xc7\xb6\xe7\x87\x38\xce\xbd\x23\x2a\x06\xdf\xc7\x56\xe9\xb6\xdb\x09\x71\xec\x8b\x8a\xb3\x4a\xa7\x53\x14\xe3\x50\xbe\x2f\x1a\x3b\x02\x03\x94\xe2\xd8\xe1\xed\x47\x13\x1c\xa0\x68\xa6\x2b\xf2\x4f\x72\xf7\x33\xfb\xb2\xa2\x7f\xad\x9a\x87\x42\x4c\xa4\x7b\xba\xec\x6d\xd9\x64\xcb\xed\xb8\x7e\x02\x85\xf7\x2d\x18\x77\x69\x0f\x33\x10\x8a\x94\xb6\x4d\x7b\x66\xdc\xc4\xb9\xd3\xa5\x7e\x9e\x01\xba\x04\xb1\x9e\x7a\x19\x63\x96\x95\x04\xdb\xa0\x10\xc5\x48\x38\x0f\xd4\x97\xeb\x27\x86\x3c\x28\xca\xa1\x92\x56\x27\x12\x77\x75\x37\x55\x3c\xb6\xdf\xe7\xa3\x3a\xc6\xee\x66\xb2\x95\x6e\xda\x76\x22\xee\x55\x06\x98\x74\x93\x1e\x0a\xb1\xbb\x19\x6e\x4d\x36\x6d\x3b\x44\xb6\x1d\xc3\xa8\x1b\xf7\x30\x05\x01\x62\xdd\x30\xc3\x3c\x9a\xa2\x51\x39\xeb\xb2\x2d\xc2\x59\x97\x6d\xf3\x59\x9a\x6d\x63\xa2\x59\x77\x5c\x66\xe1\x2b\xb1\xc2\xa4\x73\x29\xb8\xe4\xdb\x64\x8a\x06\x33\xa5\x66\xcb\x46\x92\x7b\xca\x04\x05\xb8\xe6\xa1\x14\xbb\x68\x82\x5d\x71\x6f\x56\x76\x96\xbe\x54\x1a\x70\xfe\x90\x72\x8d\xe2\x31\x20\xdd\xa0\x07\xe1\xf1\x31\x98\xd8\x18\x24\x98\xaf\xdc\xf8\x24\x07\x52\x1b\x27\xab\xbc\x91\x10\x2e\x65\x97\x4d\xe7\xb2\x33\x51\x00\x12\x8f\x5b\x9f\x52\x4a\x38\x04\xf1\xb6\xa7\xa7\xf1\xc9\x2a\x88\xc5\x45\xd8\xbd\xb2\x56\xe1\x81\x74\xa6\xa8\x49\xd1\xc9\x26\x5a\x0a\x7d\x3a\x45\x47\x8b\x68\x81\xe2\x8c\x1a\x9c\x12\x79\x0a\x5c\x37\x6d\x88\x37\xa1\x0a\x5f\xc1\x80\x62\x41\x84\x4a\x85\x6e\x63\x2a\xc8\x94\xe0\x10\x53\x9d\x70\x36\x15\x48\xb6\xa9\x18\x82\x14\xa2\x70\x8b\x8a\xe1\x47\x21\x9c\x16\xa9\x34\x53\x43\x9e\x4e\xa7\x56\x54\x4c\xbc\xa0\x3e\x45\x9b\x6e\x82\xc2\xde\x14\xed\x4b\x8f\x0d\x99\xd5\x27\xda\xc5\xfb\xf2\xad\x5d\xb4\x83\xf7\x9d\xbd\x60\x8c\xae\x96\x71\xd9\xbc\x94\x26\xd3\x29\x3a\x28\xbd\xe9\x3a\x45\x17\xe6\xed\x56\x85\x8e\xc1\xd5\x0b\x8a\x41\x38\xa7\xd4\xc1\xad\x7a\x47\xc9\x5b\x71\x18\x19\x6e\x35\x3a\x9e\x6f\xd3\xdc\xbb\x3c\x42\x4e\xb8\xc7\xb3\x7b\x95\xe2\xaa\xb7\xbc\x52\x41\x21\x2c\xc8\x90\x10\x8a\xcb\xd1\x21\x97\x1f\x49\x0f\x13\x3b\xa9\xd2\x4c\x6e\xa0\xc3\x9c\x5a\xd6\x72\x21\xba\x9c\xfb\xf6\x5c\x88\x9e\xcc\x7d\xd7\x21\x7a\xf8\x14\x31\xa2\x78\x88\xeb\x4d\x80\xb7\x16\x62\x0c\x78\x83\x45\x3f\xba\x50\x4b\x25\x71\x47\x1d\x24\x98\x6d\x09\x5f\xa4\xa1\x68\x33\xe3\x2b\x23\xb9\xd6\x05\x01\x56\x87\x27\x7c\xa0\xac\x18\xfb\xfd\x40\x6f\x40\xc9\x5b\xee\xc1\xb6\xbc\xfe\xad\x8e\xf2\xe4\x0d\xfc\xd5\x00\x22\x86\x0b\x97\x85\x83\x19\x92\xe4\x92\xb3\x1a\xb1\x3d\xc8\x69\x94\x4a\x1a\xa5\x3d\x0c\x88\x9d\xc2\x6a\x90\x0d\xe5\xe2\xb5\x81\x6a\x56\x81\x2c\xa2\x7a\x42\xf9\xa4\xc6\x4a\xca\xaf\xa5\x70\xd5\x3c\xcf\x97\x54\x2a\xb1\x93\x90\x7d\x92\x88\xe3\xfe\xbc\x30\xbf\x56\x74\x9c\x25\x7b\x38\xd7\xf9\xd4\x28\x52\x12\x37\x01\x46\xf1\x2e\x48\x54\xb2\x27\x2e\x79\xc2\x3b\x4a\xb2\x9a\xa9\x9f\x2e\x0a\xb3\x9d\xaf\x6d\xec\x76\x40\xbc\x8d\x0f\x3b\x9e\xeb\xc7\xdb\xf8\x72\xa7\xc5\x7f\x9e\xec\xd4\x7d\x0f\x56\x8b\x99\xfc\x5a\xfe\xbb\x16\xc2\xd5\x85\x39\x4b\x8e\xb0\x64\x13\xa4\x86\xbf\x93\x9e\xd0\x14\x55\xfe\xa9\xcd\x92\xed\x0a\x0d\x33\x73\x54\xc2\x2a\xd6\xd8\x84\x55\x2c\x11\xe2\x0c\x56\xc5\x75\x88\xc4\x94\x12\xfa\xe1\x54\xee\xbe\x96\x8c\xda\xac\xdf\x4c\x95\xc6\xad\x8b\xae\xb9\x0e\x6d\x6f\x8a\xce\xcd\x3f\xb8\x7c\x80\x18\x3e\x42\x14\x5f\xc9\xfa\x2f\x01\x89\x8c\x15\xe3\x23\x7b\x45\x2b\xcd\x71\x4b\x20\xe7\x55\x39\x5f\x06\x7c\xbe\x84\x69\x37\xec\x61\x02\x92\x6e\xd8\x13\x9b\xd7\x42\xc5\x8b\x30\x03\x29\x44\x7d\x1c\x71\x35\x61\x88\xa3\xae\xd7\x43\x23\x4c\x41\x8a\xfa\x68\x08\x97\x8a\x5e\x6a\x46\x7c\x82\x19\xe1\x8b\xa0\x8f\x86\x68\x04\xd1\x08\x5f\x00\x59\xeb\xfa\xab\x23\x58\x1d\x89\x98\x4c\x23\x19\xe3\x91\x76\x5b\x33\xea\xba\xbd\x2d\xdc\xdf\x84\x23\x27\x1d\x85\x43\x06\x20\xaa\xd5\xc6\x22\xe5\xe6\xa8\x3b\xae\x79\xbd\xed\x21\x8f\x1c\xc7\x63\x15\xc5\x0b\x18\x28\xfb\x6d\x89\xc1\xd8\xf6\xf2\x2d\xc3\x63\xd1\x34\x30\xc0\x7b\xbc\x75\xdd\x1e\x74\x0e\x5d\x1c\x6e\xbb\x9d\x51\x37\xac\x79\x3d\xbf\x8f\x06\xce\xa1\x87\xc3\xad\x31\x0f\xe9\xf9\xc3\x39\xb2\xf4\xb7\x30\x88\x31\x27\x0e\xac\x54\xe2\x2d\x3c\xac\x54\xf6\xba\x13\x30\x42\x31\x72\xd1\x18\xf6\xa4\xd7\x8a\x24\xaf\x5f\xec\x19\xc5\x4d\xfa\x39\x2e\xbc\x0a\xa8\xa2\xe6\xd6\xd6\x80\x94\xbd\xb1\xca\x3a\xcc\xbf\x0a\xf8\x42\x06\xfa\x64\x8a\x12\x67\x10\xef\x05\x21\x2d\x63\xa3\xf9\x12\x59\x59\x89\xa4\x43\xfc\xab\xa0\x2b\xd4\x3e\xd2\xf5\x7a\x3d\x51\x36\xe3\x65\xb3\x51\x42\xd2\x51\x1c\x0d\xd2\xb3\x95\x5f\xfa\x2a\x2c\x2f\x7f\xd6\x77\x51\xe7\x2a\xd8\x75\xfa\x41\x14\xf1\x85\xbe\x7f\x95\xeb\xef\x89\x50\x12\x92\x29\x7a\x7a\x4e\xb8\x1b\x7d\x40\xea\x7b\x63\x98\x53\x59\x45\xac\x14\xee\xc2\xae\x21\xd9\xaa\x2b\xe1\x6c\x53\xe1\xf2\x14\xb9\x88\x08\x4d\x86\x6d\x63\x2f\x1f\x95\xd4\xbc\x1e\x4a\x6a\x1e\x8f\x56\xd3\x07\x06\x49\xcd\x83\x55\x86\x62\x5c\x74\x51\x12\x60\x91\x25\xee\xa1\x18\x65\x0b\xc5\xc0\x06\x32\xd8\xf6\x7a\x28\xb6\x79\x49\xb5\x00\x56\x41\x58\x8b\xe1\x74\x8a\x9e\x9a\x6b\x88\x59\x2b\xef\xa8\xc6\xa3\x31\x74\xd2\x38\x61\x5c\x91\xcf\x4d\xa1\xc2\x33\x04\xa8\x57\xc1\xd3\x80\x20\x67\xad\x05\x6b\x02\xa8\xb7\x60\x4e\x18\x1a\x9d\xa9\xe6\xad\x36\x84\xcf\xa6\x4b\x8b\x2a\x9c\x2b\xba\xe1\xb4\xaa\x7b\x80\x9c\x58\xda\x8b\x67\xd1\x5d\xcb\xb5\xb5\x58\x68\x9c\x05\x6d\x2d\x9e\xd1\xd6\xa8\x4e\x36\x9f\x26\x51\xaa\x53\x41\x3d\x9b\x2b\x92\x65\xfd\x71\x5a\xc9\xb3\x49\x75\x05\x4b\xd9\x1a\xee\xf1\xf2\xc6\x66\x4d\x0d\x71\x22\x9a\x8b\x82\x52\x15\x3d\xe6\x4b\xa3\xbc\x8a\x1e\xf7\x20\xec\xd4\x6a\xa1\x1f\xd8\x98\x2e\x15\x5b\x92\xcc\xaa\xe3\x1a\xb9\x5c\x0e\xe1\xb0\x5c\xf3\xd9\x6a\x38\x45\xe7\x4b\x31\x9c\xe9\x8c\xcc\xf3\xce\x2c\x7a\xe1\x3c\x7a\xc7\xc7\xca\xc3\x0e\x85\x4b\xf3\xa4\x2e\x47\x30\x9f\x47\x5f\x1f\x03\x81\xe1\x61\xa7\x05\xa7\xe8\x89\x82\xb0\x30\x4e\xca\x50\x09\xf3\x70\x6a\xea\x1a\x03\x5b\xb0\x80\x8a\x96\xab\xbc\xc2\x04\xb5\x59\xab\x85\xc6\x6f\x0e\xe3\x8b\x16\xc2\x85\xac\x9e\x2d\x6a\x35\x26\x62\x69\xb7\x56\x0b\x7a\x38\x29\xb8\x3a\x43\x8f\xfe\xd7\x70\x73\xb6\x10\xf8\x98\xb8\x39\xab\x20\xc7\xcd\x2f\xcf\x34\x36\x5b\xed\x9b\x55\x75\x92\x23\x2d\x85\x9b\xb4\x56\xdb\x84\x09\x5f\xda\x93\x2e\xeb\xd2\x5e\x2f\x57\xda\x63\x33\xa5\x09\xd5\x3a\x93\xbf\x8a\x11\xd5\x42\xd6\x15\x4f\x00\x04\xbd\xdc\x2a\x5d\x6e\x3a\x24\x50\xb4\x84\x6e\x42\xc0\xb8\xaa\xcd\xdb\x90\xc2\x2d\xf7\xf8\xd8\x5d\xc1\x5c\xa9\x40\xe2\x34\x1b\xa4\x38\x44\x01\x8e\x4d\x73\xb8\x22\x2e\x63\x3b\x81\x2f\xdf\x1c\x98\x4e\xd1\x23\x73\xa2\xce\xac\x4e\x04\x2a\x7a\xc2\xe8\x68\x3c\x7d\x0a\x6b\x80\xa9\x4d\x4a\xd6\x71\x7d\x9b\xc1\x4d\xbe\xe2\x93\x92\x3e\x09\xe8\x20\xde\x03\xb0\x1a\xd7\x6a\xc7\x62\x4b\xa4\x1b\xdb\x8c\x4f\x88\xfc\x87\x33\x9a\xfc\xe2\x3f\xd8\xd8\x03\x90\x29\x7a\xe6\x74\xc1\x51\xf3\x38\x6d\x4a\x46\x65\xc8\x25\x01\x5f\xa6\x10\xa9\x4c\x80\xd8\xc6\x33\x63\xd1\x24\xe1\xbd\x2e\xf4\x30\xb9\xc0\x94\x29\xb3\x05\xd4\x4b\x78\x66\x2b\x7e\x05\x64\x9c\x9d\x5b\xae\x64\x2e\x03\x6b\x1e\xa2\xf8\x51\x40\xd0\x67\xe0\x2c\x33\xd8\x36\xe3\xfd\xa4\xd3\x86\x7a\xa8\xf2\x21\x35\xbb\xa6\x93\x43\xb7\x1b\xf7\x44\x8f\xe6\xc6\x5c\x92\x5b\x40\x7c\xa6\x70\x6d\x5a\x22\x25\xd4\xdf\x67\x4b\x1e\xb3\x78\x09\x64\x0e\x28\xa7\x4b\x7a\x73\x32\x4c\x49\xbf\xf4\xf6\xe7\x24\xb7\x83\x29\x12\x3d\x1d\xee\x8e\x4a\x53\x06\xb3\x29\x9f\x20\xc3\xd2\x84\xb9\x0b\xc9\x41\xda\x27\x74\x10\xd2\xd2\x8b\xc9\xc9\x6c\x81\x71\xe9\xfd\xe4\x30\xb7\x07\x9b\xc4\x69\xe9\x1d\xd8\xfc\x1d\x66\x72\x52\x9d\xa3\x7c\xc2\xfd\x30\x10\xba\xd6\xc9\x97\x9a\x85\xfb\xcf\xd2\x86\x1e\xe5\x6e\x2e\x87\x29\x8b\x77\x93\xa0\xf4\x06\xf0\xb9\xdc\x0d\x5c\xad\x12\x3e\x9a\x10\x32\xd8\x0b\xe8\xf9\x30\xe8\xc7\x34\x2c\x6d\xd5\x53\x25\xf9\x2e\xf7\x63\x56\x8a\xcc\xa5\xb2\xc4\x6c\x92\xec\x92\xd2\xb2\x73\xb7\x9a\xf7\x82\xc3\xb2\x14\x2f\xe6\x52\x90\xa0\x94\x4a\x8f\xe7\x93\x0c\xc2\xf2\x44\xe7\xf3\x89\x92\xdd\xd2\x7d\xf6\xdc\x1d\xe6\xbd\xb0\xb4\x94\xdc\x2d\xe6\x71\x10\x26\xa5\x6d\x8a\x72\x69\x48\xb2\x37\x61\xa7\xed\xe9\xbf\x34\x09\x28\x0b\xa3\xd2\x64\xb9\x6b\xdd\x89\xf4\x65\x7e\xe2\xf1\x42\xda\x2f\x6f\xfd\x63\xb9\x24\xa3\xc9\x70\x58\x5e\x59\xee\x0e\x76\x3a\x29\xe5\xa1\x67\x72\xdd\x1b\xf6\xaf\x95\xb6\xff\xe1\x62\x9a\xc7\x69\x3f\x51\x1e\xb6\xe7\xd3\x5e\x2b\xa6\xbd\xcc\x48\xe9\xe5\xf1\x8b\xb9\x64\xc2\x16\x3e\x4e\x4b\x1b\xf0\x52\xee\x92\x78\x90\x84\xe2\x35\x97\x92\x64\x83\x2c\xd9\xcb\x61\x69\x85\xcf\xde\xdf\x81\x89\x35\x62\x6c\xec\xaf\xae\x1e\x1c\x1c\x38\x07\x0d\x27\x4e\x76\x57\xbd\x8d\x8d\x8d\xd5\xc3\x11\xdb\x8b\x2c\x14\xe2\xeb\xe9\xfe\xae\x5f\x92\xaa\xee\xba\xee\x6a\xba\xbf\x6b\x21\x91\xd4\x4f\xd0\x61\x14\xd2\x6b\x65\x49\x65\x81\x3c\xd6\x42\x87\x7b\x51\x59\x92\xe7\x2e\x3e\xc1\x93\xad\xaf\xd2\x60\x8f\xa4\xe3\x80\xb7\xfe\x70\x2f\xa2\xe9\xc2\xaa\x45\xec\xaa\x35\x45\x71\xd9\x83\x0a\x36\xb6\x2c\xc4\xd5\x0d\xe1\xfa\xf5\xc9\x21\xb0\x7c\x2b\xdb\x1b\xde\xc6\x6e\xa5\x62\x89\x12\xac\x15\xb1\x37\x47\xe4\xc6\xa7\xd8\x81\x81\xc2\x14\x5d\x87\x50\xdb\x83\x10\x85\xb3\x97\x1c\x18\xec\x5c\x17\x78\xfa\x61\x97\xf5\x50\x14\xf7\x83\xc8\x27\x53\xbe\x26\x0e\x4a\x10\x8a\xb3\xf3\x3d\xc0\x1c\x91\xba\x73\xa6\xad\x55\x79\x9c\x77\x40\x49\x72\xbe\xf4\x61\xf7\x4b\x97\x01\x71\x04\x22\x88\xc8\x72\xe1\x74\x5a\x76\x40\x3a\xb3\x51\xc3\xf0\x7c\xc9\xda\x14\xd1\xf4\xc1\x33\x4f\x3f\x6e\x68\x86\xc5\x31\x12\x73\xf4\xfb\xf2\xaa\xfe\x42\x62\x9e\xa6\x33\xfb\xf2\x3c\x81\xfe\x3c\xce\x14\x11\x38\x9d\x42\xc0\x60\x6e\x9a\x4e\xb5\x27\x81\xc9\xe2\xc3\x0d\xd2\x49\x17\x19\x55\xbf\x34\x21\xc9\xd1\x65\x12\x89\x89\x10\xf0\xf2\xb3\xa2\x23\x93\xb6\x2b\x4f\x82\xfa\x27\x55\x11\x9d\xa9\x8a\x87\xc5\xf6\xc1\x74\x8a\x86\x67\xdb\x25\x17\x25\x88\xb7\xcd\x49\x2a\x33\x8e\x4a\x91\x30\x0a\x8e\xd1\x9f\x72\x0d\x19\xe7\xfc\xc0\x17\x3a\x0f\x93\x99\xce\x9c\xeb\x4a\x4c\x0a\x9f\xca\xb9\x36\x25\x87\x52\x2d\x55\xdf\xf2\xb2\x0e\x56\xe7\xe2\x57\xaf\x0e\x02\x16\x5c\xbd\x8a\xd9\x74\x9c\x73\x31\x71\x3d\xe7\x5f\xc2\x1f\xa3\x60\x3c\x26\x74\x70\x6e\x14\x46\x83\xc5\xbe\xb2\x65\xc1\x4e\x28\x5e\xe5\x50\xbe\x90\x49\x0e\x09\xe9\x73\xdb\xc4\x9d\xe4\x3c\x7b\x41\x51\x70\x8a\x0a\x1d\x74\x2a\x2e\x73\x1c\x83\x66\x3b\xf8\xfe\x8a\xd0\x1c\x21\xf7\x01\xb1\xf5\x50\xce\x7f\xf4\x9e\xb6\xb4\xe0\xeb\x03\x58\x78\xb2\xcc\x2d\x1e\x37\xc6\x7a\x45\x99\x6e\x45\x9b\xb6\x9d\x42\x10\x60\xd6\x4d\x7b\xb0\x03\x82\xac\x43\xe2\x6e\xda\x43\x49\x37\xed\xe1\x00\xfa\x94\xff\x72\xc6\xe1\xec\xc1\x63\xe4\x9e\xe3\x66\x2a\x8e\x1e\xb3\x12\x2a\x15\x10\xca\x2c\xd9\xd6\xf4\x51\x1e\x31\x14\x48\xf1\x20\xef\x7a\xf4\xf1\x75\xce\xdd\x06\xb7\x91\xc1\xad\xb0\xc7\x39\x94\xb5\xa5\xd8\xdd\x4c\xb7\x86\xb2\xc2\x89\xa9\x70\x8f\x57\x18\xe1\x81\x1d\xc8\x4d\xa7\x09\x9a\x98\x56\xa0\x14\x31\x88\xa2\xe5\x90\x2e\xf7\x3b\x02\xb3\x89\xdf\xef\x46\x3d\x3c\xc9\x17\x39\xd2\x45\xf6\xbb\xb9\x72\x64\x43\x51\x8a\x62\xc8\x49\x23\x48\x91\x2f\x5b\x52\x48\x94\x26\x1c\xc5\x2f\x22\x52\x39\xda\xfd\x2e\xc7\xbb\x87\x31\x9e\x68\xa2\x4d\x72\x44\xdb\x3f\x93\x81\x01\xa7\xe4\x6e\xe9\xb9\x58\x71\xac\x56\x2a\x33\x01\xda\x3f\xf5\xb3\x21\x39\x38\x3e\x26\x46\xe8\x56\x2a\x44\x7c\x66\xb1\x39\xd1\xb0\x53\xc4\xc9\x49\xd9\x51\x24\x9c\x44\xe9\x49\x4b\xbe\x7d\xc0\xe0\xf1\xf1\x2e\x20\x90\xc7\x9c\x8b\xf7\xc6\x13\x46\x06\x97\x79\x52\x40\x84\x7d\x00\x2c\xcb\x52\xb8\x66\x97\xab\x43\x5d\xd5\x4c\xc7\x51\xc8\xc0\xea\xe7\x8e\x5f\x48\xed\xd5\x45\xf7\xea\x9c\x7e\x14\xa4\xe9\x13\x61\xca\x8e\x8f\x85\xa3\x73\x3e\x56\x4c\x52\xfe\xa5\x5e\x04\xa0\xf1\x80\x18\x01\x24\x44\x16\xbe\x2a\x9d\x6a\x3d\xcc\x58\x12\xee\x4c\x18\x01\x96\x28\xcc\x82\xf2\x21\x07\x53\xca\xe1\xec\x86\xc3\x81\xd8\xdb\x95\x27\x86\x9a\x8f\xf5\x51\x20\x75\x82\xc1\x00\xb0\x6e\xd2\x83\x85\xdb\x71\xf7\x53\x42\x42\xf6\xe2\x7d\x32\x5b\xc8\x93\xfa\x75\x03\x46\x0e\xd9\xb9\x98\xf2\x05\x10\xb6\xac\xfc\x5d\x36\x95\x20\xa4\x94\x24\x8f\x5d\xb9\xf8\x44\x21\xfa\x9a\x8e\xe6\x82\xf1\x72\xb8\x13\x85\x54\xdf\x77\x91\x72\xe7\x52\x3c\x20\x4e\x4e\xec\x2a\xcf\xea\xb9\xf3\x26\x55\xc0\x38\x21\xfb\x61\x3c\x49\x17\x16\x52\x10\xa2\xcc\xbc\x7c\x93\x4b\x31\x0c\x93\x94\x89\x5a\x72\x15\x5c\x01\x85\x59\x33\x8b\x38\x57\xbc\x15\x91\x95\xb3\x44\x38\x9b\x4b\x7a\x95\xe2\xfc\xf4\xcc\x54\x79\x12\x92\xd2\xdd\x3c\x8f\x03\x2b\x9e\x32\x7a\xca\xd1\x2a\x57\xea\x53\x1f\xb2\x54\xb7\xac\xd4\x0b\xf9\x39\x30\x18\x14\x67\xbb\x1c\xbf\x1a\xb5\x93\xc0\x2d\xd7\x3c\x07\x23\xa3\xc4\xf6\xa5\x36\xb8\x14\xbc\xee\xa4\x25\x9c\x9d\x67\x7f\xe7\xc5\x38\xa4\xc0\x5a\xb6\xc4\xc6\xb8\x24\xa1\x3f\xaf\x64\x96\x23\xb0\xc4\x84\xba\x5b\xc0\x81\x8f\xd7\x3e\x01\x0c\x79\x1f\x01\x8f\x7e\x4c\x59\x10\xe6\x1f\x8e\x99\x9d\x23\x67\x51\xd9\xc6\xae\x9a\x1c\x2f\xf1\x99\xe5\x45\x21\x98\x33\x01\xf6\xf8\xdc\x39\xc5\x79\x15\x82\xf2\x07\x56\x7a\x27\x31\x21\x51\xc0\xc8\xe0\x4a\x90\xec\x12\xb6\x24\xcf\x66\xe4\x8b\x30\xc7\xc7\xeb\x15\xaa\xdf\x2b\xd0\x32\xf5\xa9\x38\x0d\x65\x11\x9c\xed\x20\x97\xa3\x62\x1e\x91\x3c\x0f\xa7\x19\xcb\x9c\x9f\xc1\xc3\x54\xae\x8f\x31\xf1\x8b\x4b\x2f\xe2\x44\x3c\x3d\x5a\x28\x24\xaf\x31\x89\x12\xcc\xfb\x9f\x2f\xe2\x70\x9a\xab\xe1\x89\x53\x15\xf3\xab\x57\x63\xb1\x09\x9f\x17\x45\x28\xc1\xae\xde\xcf\x33\x92\x28\xd9\x8a\x85\xd1\x11\x15\xfe\xb9\x10\x71\x38\x73\x56\x2a\x54\xfc\xae\x60\x2c\x03\x8e\x8f\xa9\x50\xfe\x44\x00\x07\x3a\xac\x6b\xdb\x61\x0f\x53\x69\xa0\x28\x79\x4a\xbc\x5a\xc5\x05\x34\xa1\x24\x01\xb2\x08\x44\x9d\x48\x85\x20\xea\xf4\x83\x31\x9b\x24\x04\x6e\xda\x76\xd8\xd1\x38\xe0\xd0\x2f\xbc\xc7\x71\x35\xa6\xf9\xc6\x3e\x5a\x3c\xfb\xbe\x34\x77\x5f\x5c\xd4\x03\x3b\x8f\xfb\xe7\x97\x66\x69\x52\x54\x49\x32\xd2\xa0\x08\x27\x80\x89\x48\x4e\xa5\x89\xd9\x2c\xec\x63\x17\x0d\xf1\x44\x53\xa7\x2f\x26\xf6\x3e\x0c\x87\x00\xa4\x78\xd2\xed\xf7\xa0\xa8\x0d\x6b\xc2\x54\x2a\x52\x49\xc6\x9a\x30\x30\xcf\xc1\x65\x64\x49\x25\x59\xd2\x8c\x2c\xa9\x21\x8b\xb2\x8b\x1f\x0c\x4e\xc9\x82\xa3\x2c\x13\xa6\x10\xed\xc7\xe1\x00\xa4\xea\x70\x96\xa9\x57\xa5\xe6\x8a\x91\x18\xa3\x88\x0f\x88\x14\x5f\xe7\x1f\xbe\x0a\xe3\x98\xfb\xb2\x01\x48\x3e\x74\xc1\x90\xae\xcc\x8f\x90\xaa\xca\xa7\x53\x34\xe9\x4c\xa4\x08\x4a\xa1\x6f\xc8\x89\xbb\x69\x6f\x5a\x7a\xd3\x46\xf3\x3b\x71\xd2\x78\x92\xf4\x25\x2d\xf0\x8b\xe8\x45\x4c\x04\xff\x6b\x6a\xa9\xa7\x64\xe4\x8d\xed\x3c\xd3\x9b\x42\x1f\x2b\xb2\xc1\xae\xb4\x7f\x4d\x9c\x73\x93\x94\xc5\x7b\xa2\xdc\xa5\x92\xe3\xdb\xb0\x23\x9f\xc2\x08\x85\xa7\x48\x1f\xf0\x2c\x83\x99\xa5\x30\xcf\x0b\x2c\xf1\x63\x41\x44\x3b\x20\x74\x42\x1a\x32\x19\xce\x10\x75\x76\x26\x3b\x3b\x11\x49\x05\x03\xd3\x3e\x89\x82\x9d\x88\xd7\xee\x0c\x08\x0b\xc2\x08\x53\x05\x40\xbf\x98\x71\xc5\x43\x2b\x7c\xf5\x4f\xc4\x3d\x60\xbe\x72\x93\x31\x21\x9c\x5a\x13\x2a\xdf\x1b\x19\x64\x4f\xe0\x66\x5a\x1a\xb0\x62\xba\x17\x4f\x52\x42\x28\x23\x89\x15\x52\x13\x37\xbb\x7e\x3e\x3e\x06\x97\xf0\xf5\x2c\xad\x6f\x09\x38\xde\x27\x89\x85\x04\x18\x91\x60\x9f\xe8\xe0\x09\xb3\xb4\xd5\xfd\x23\xb8\xcb\xc5\x67\x2f\x93\x9f\xcf\xe4\xdf\x08\xdb\x4d\xe2\xc9\x38\x35\x6a\x94\x9c\xf6\x52\xcc\xf2\x37\x8d\x0a\x6b\xce\x67\x40\xb7\xbb\x08\xcb\x5e\x0f\x3d\x02\xa7\xcf\xe4\x66\xbf\x97\x16\xad\x06\x9f\x41\xa9\x58\x0d\x15\x66\x85\xac\x5f\x0d\xb1\x88\xd8\x65\x99\x08\x4b\xfb\xec\x54\x20\x8f\x3b\x5a\x78\x5c\xa4\xcc\x2a\xa9\xb0\x87\xd0\x99\xa5\xe9\x15\xeb\x86\x3d\x14\x61\xf3\x4a\x52\x1f\x27\xdd\x30\x7f\x6a\x10\x41\x34\xc4\xee\xe6\x50\xac\xad\x86\x50\x98\x52\x0c\xc5\x42\x25\xc0\x4a\x98\xc7\x28\xce\xc4\xf8\x50\x9d\x0b\x59\x3a\x84\xf7\x66\xcc\x93\xe7\x56\x1a\x06\x84\xa8\xdf\x1d\xf2\xf5\xd5\x52\x81\xb2\x49\xb1\x17\xc4\x2b\x7c\x9c\x48\xb3\x2b\xcc\x85\x74\xea\x9f\x99\x4e\xdd\x1e\x0a\xf9\x9f\x18\xbb\x9b\xb1\x20\x51\x0c\xf3\x8b\x4d\x61\xd6\x3b\xc9\x08\x14\x61\x77\x33\x12\xcb\xc4\x88\x2f\x13\xd3\x6e\x24\x2d\x16\x95\x9e\x22\x29\x12\xa0\xac\xb5\x28\xe2\x14\x41\xa1\x7a\x39\x1b\xce\x35\x35\x84\x53\x24\x5f\xe9\x38\x5b\xdb\x86\x0f\x94\x07\x24\x07\xa4\x38\xc8\x4c\x79\x13\x69\x6a\xa3\x9a\x9a\xca\xa6\xc6\x38\x90\x4d\x2d\xeb\xf4\x08\x05\xb0\x52\x51\x82\x32\x3e\xb5\x33\x79\x2e\x7f\xee\x90\x32\x73\x15\x31\xc8\x61\x2e\xef\x03\x84\x2f\x13\x00\x21\xea\xf3\xc9\x5c\x84\x90\xc2\x13\x7a\x04\x5e\x1f\x74\x6d\xbb\xdf\xc3\x64\x0a\xd1\x40\x5f\xf7\xc4\xac\x73\xe4\xef\xf1\x75\x48\x1e\x01\xae\x0d\xe4\x48\xb6\xb4\x80\xd0\xb4\x68\xc2\x9e\x8d\xfd\x69\x46\xfc\x20\x5b\xe0\x17\x8d\xb3\xd0\xa4\xf8\x19\x15\x3f\xfb\xd8\xdd\xec\x0b\xfb\xa4\xbe\x94\xef\x43\x1c\x76\xfb\x3d\x34\xc2\x31\xff\xc9\x6c\xaa\xd0\x40\x0f\xb2\x21\x1a\x56\x2a\xc3\x8c\xe4\x7d\x14\x42\xb4\x8f\x07\x3a\xe1\xae\x98\xad\x73\xd5\xec\x43\xb4\x83\xd3\xd9\xb0\xa5\x04\x0c\xd1\x08\xed\xa2\x1d\x14\x15\xe3\xc6\x10\x0d\x10\xcb\xda\x76\x15\x1d\xa0\x0b\xd8\x45\x87\xd8\xdd\xbc\xb0\xb5\xbf\x69\xdb\x17\xb8\x5a\x70\x15\xef\x76\x2f\xf4\xa4\x96\x75\x61\x1b\x1f\x56\x2a\xe0\x10\x5f\xb0\x3d\xb8\xb9\x02\x0e\xf0\x4e\xf7\x90\xf3\x88\x6d\x1f\x6e\xed\x6f\xc2\xcd\xab\x6a\xbf\xec\xe0\xf8\x58\xac\x7a\x94\x5d\x15\x90\xc4\x7a\x06\xa4\x28\x84\xd0\xb9\x2a\x24\x39\x9e\xa0\xd4\xb9\x4a\x0e\x43\xc6\x67\xfb\x29\x92\xe2\xbd\x84\xfe\x22\xa7\xec\x41\x91\xe6\xf8\x38\xdf\x9d\xce\x5e\x30\x06\x23\x38\xc7\x73\xbc\xe0\xd3\x4a\x3b\x0c\xd9\xd9\x0a\xe3\x7a\xfd\x82\x67\x4a\x25\x77\x72\xbc\x00\x54\x9c\xa7\x19\x8e\x97\x0f\xb2\x73\xff\x05\xc6\x57\x20\x81\x7e\xa2\xd6\xaa\xd2\xc1\x13\x92\xb6\x04\x4c\x5e\x43\x10\xcf\xc9\xeb\xe3\xf2\x58\x2f\xa8\xa1\x4f\x41\x0c\x51\x52\xa9\x84\x9d\xc4\x11\xe7\x5e\x20\x84\x4e\x9c\x0c\x38\x22\x7e\x38\x45\x22\xcc\x2f\x35\xf5\x98\x15\x21\xc4\xc0\x49\x26\x4e\x42\x4c\x33\xcb\x0b\xe3\xeb\x80\x8b\x2f\x14\xe4\x6f\x1f\x70\x5d\xcb\xdd\x4c\x85\x9a\x9d\x1a\x49\x33\x41\x91\xd8\x2a\x42\x7d\x4c\xf9\xcf\x10\x47\xd9\x2e\x59\xa0\x77\x9a\xf4\xfe\x18\x1a\x63\x77\x73\x2c\x74\xd1\x31\x04\x13\x1c\x75\xc7\xbd\xe3\xe3\x7e\x77\x2c\x64\xed\xa8\x3b\x36\x3b\x5e\x9b\xe9\x56\x22\x2a\x12\x65\xf0\x1a\x8a\xc2\x27\x98\xeb\x3b\x41\x92\xf2\xe7\x5b\x0b\x64\x50\x47\xee\x24\xdb\xc2\x28\x9c\xb2\x0b\x53\x94\x2e\xe3\x13\x47\x98\x5d\xc7\x08\x70\xd8\x8d\x7b\x9b\xb5\x5a\x2c\x6c\x5b\x40\x22\xbe\xc5\x6c\x59\xa9\x34\x3f\x97\x2c\x5c\x64\x71\xf9\x19\x2c\x5c\x6c\x27\x28\xe0\x54\xce\x5e\xcc\x62\xc2\x23\x48\x1a\x27\x45\xbd\xc1\xe8\x2a\x2c\xff\x72\xd1\x32\xab\x54\x68\x87\x00\x96\x49\x0f\x9a\xcd\xc0\xfe\x0a\xab\xad\xd0\x29\x11\x37\xf9\xf6\xf3\x57\x4d\x0a\xe4\x48\xb2\xee\x0f\x8b\xdd\x2d\x67\xce\x44\xcc\x9c\x85\x7d\x5a\x3a\x37\x75\x86\xe2\x3a\x87\xc9\x3c\xd1\x92\x70\x22\x24\xa1\x98\x4e\xfb\x82\x5a\x42\x36\x05\x70\x29\x92\xa6\x4a\x0c\x4e\x0b\xbd\x1a\xce\xf4\xaa\xe6\xf3\x29\xe2\xb2\x72\xfe\x3e\x5a\xf6\xaa\xa3\x6b\xf8\x23\x1f\x26\x87\x29\xd1\x4a\xf9\x24\x8a\x66\x5f\xd5\x9c\x22\xbe\xe2\x2f\x79\xf4\x75\xc1\x4c\xc5\xb9\x27\xdf\x59\x33\x13\x16\xbc\x4e\xba\xb6\xcd\x64\xc5\x53\xf1\x44\x1b\x2f\xff\x4c\x6c\xe9\xe6\xb9\x92\x89\x19\x9d\x65\x6c\x29\x99\x32\xc4\x2e\x8a\x8d\xe5\xf0\x66\x28\x46\xa3\x7a\xef\x2d\x10\x13\xbc\xb0\x84\x37\x16\x6b\xd3\xfc\xde\x14\xe2\x8d\x98\x6f\xa9\x7b\x62\x7b\x6c\x9b\xc8\x76\x90\xbd\x71\xf1\x39\x60\x99\x6b\x45\xee\x0e\xc5\x03\xe1\x18\x88\xe7\x3e\x9b\x2c\x72\x73\x32\x48\xdc\x68\xb2\x6d\x5a\x30\x75\x61\x5d\xda\x53\x86\x4c\xe6\x24\x20\x10\x5a\x4b\x00\x41\x88\x63\x79\xa5\x44\xcd\xa2\x21\x0a\xb3\x41\x10\xa0\x78\x66\x40\x05\x8c\x25\x7e\x89\x81\x90\x3c\x8f\xe4\x14\x9b\xb1\xa1\xdd\xaa\x17\xe4\xbe\x6c\x9e\x91\x40\xea\xe0\x32\x29\x6c\xc5\x5e\xba\x0c\xa8\x3a\x81\x54\x09\xb8\xbc\x2f\x6c\xd6\x52\xc3\xee\x19\xa9\xb5\x31\x52\x87\x9e\xe9\x38\x34\xb7\x1c\xcf\xd7\x7c\xdf\x67\x9f\x65\xe5\x88\x33\x1b\xbf\xd4\xd8\x79\x1e\xb9\xdc\x16\xfb\x0c\x47\x71\x55\xb5\xf4\x19\xdb\x25\x3d\xbb\x9d\xb1\x11\xea\xce\x68\x91\xc6\x33\x89\x10\x2d\xb6\xf5\x41\xa3\x25\x8e\x6d\x67\xd1\x10\xf7\x1e\xa7\x53\xff\xac\x54\x39\x4b\x3b\xd8\x59\xda\x51\x86\x09\x13\x07\xc8\x14\x31\xf1\xae\x20\x3b\x8a\xc8\x9c\x06\xb3\xc0\x50\x7c\xdb\xeb\x94\xf0\xe1\x19\xf8\x46\x9e\xa8\x48\x4a\xe5\xdc\x1d\x2e\x62\x9e\x05\xe8\xcc\xf4\x4f\x72\x4a\xff\x24\x9d\x93\xea\xf6\x73\x91\x69\x76\x6e\x03\x08\x4a\xe6\x59\xa4\x1c\x89\x85\x25\x88\x1d\xcc\x29\x94\x90\xe2\x15\xcb\xf2\x29\x84\xfe\x0e\xc8\xc9\x07\x44\xe0\x14\x8d\x55\xbe\xf2\xbe\x7c\x10\x5d\x90\xdb\x63\x14\x0f\xfd\x9e\x4e\xf4\x0f\x3f\x24\x8a\x75\xf9\xea\x17\xd3\x33\xf2\xaa\x78\xd4\x59\x91\x0e\xaa\x3e\x92\xb4\x12\x0f\x45\x8b\x9d\x75\x32\x28\x95\xcc\x57\xa5\x8e\xbc\x48\x38\x67\xf3\xe2\x41\xbe\x0b\xa0\xde\x17\xa6\x99\x7a\x17\xaa\x1b\x85\x2b\x5c\x4b\x93\x5b\xf5\x80\x76\xc3\x9e\x36\xc7\x5c\xd1\x13\xfa\x8a\x5b\x22\x9e\x3f\x14\x71\xc1\x02\xba\x76\x0e\xfd\xcb\xf2\xf5\x5f\x61\xf7\xe1\x9f\xd6\xd5\x87\xb9\xb4\x27\xa7\xbc\x9c\xa5\x34\xc2\x80\x91\x43\x56\x96\x6d\xee\xc2\x48\xd6\x5c\x6d\xf9\xf1\xa4\x5f\xd6\x70\x72\x0a\xba\xda\x53\x44\x39\x4f\xcd\x1d\x04\x6a\x76\xb7\x2c\x9f\x9d\x6d\xc2\xca\xe7\x26\x82\xaf\x8a\x5c\x95\x4f\x30\x45\xc2\x1e\xeb\xc3\xb5\xff\xe1\x8f\xab\xfd\xd9\x39\xe7\xfd\xb7\x3e\xcb\x5b\xda\x76\x13\x3d\x45\x49\x10\xa6\x0b\x3d\x3a\x8a\x86\x5e\x83\x53\x24\x1e\x7b\x38\x31\xd5\x45\x38\x55\x46\x2d\x25\xc7\x6c\x0b\xee\x18\x05\x39\x17\x0e\x6a\xbe\x8a\x48\x9f\x81\x05\xf5\x14\x0e\x6f\xcb\x29\x07\xa7\xc6\x26\xa6\x54\x54\x9c\x80\x08\x5f\xde\x28\x3a\x5f\x29\x97\x93\xcc\x9f\x00\x76\x3f\x08\x17\x16\x70\x74\xc1\x83\xfd\x0b\x1e\xf2\x97\xdb\x25\xa2\x3d\xb3\xa7\x97\x25\xd4\x3f\xc7\xd7\x3d\x51\x4c\xc9\xc2\x93\x45\x85\x29\xe9\x3c\xe5\x3f\x2d\xf7\xdf\x26\x7b\x67\xe7\x78\x3d\x55\xe5\xf6\x74\x11\x29\xf2\x94\x8e\x98\xa2\x78\xc1\xc6\x88\x30\xf3\x2f\x35\xed\x28\xb5\x89\x10\x3b\x2f\x25\xbc\x64\x89\xc5\x8f\xb1\x52\x74\x66\xad\x14\x73\xb6\x89\xd4\xf6\x20\x22\x45\x53\x45\xa4\x4e\x81\xe4\x01\x10\x9f\x72\xa6\x6a\x8f\x25\xdb\xca\x5b\x12\xe6\xf8\x25\x93\x89\x9c\x4d\x52\xcc\x3a\x8f\xfa\x4f\xa0\xfc\x15\xb7\x15\x8f\x73\x90\xbb\x99\x88\x3d\xbd\x04\x66\x7d\x93\x82\xb8\x9b\xf4\xe4\x9d\xe4\xc2\x5a\x43\x3e\x1e\x5c\xa4\xa1\x3c\xc2\x2c\x6e\x9a\xb8\xa8\x6f\x56\xd0\x9b\xd1\x56\x5f\xec\xc6\xca\xbb\x26\x2e\x5f\x5c\x77\xa3\x9e\xa9\x36\x1c\x02\xb1\xe2\x49\xb2\x53\xbb\x89\x3a\xb5\x0b\xf5\xa9\xdd\xa4\x70\x6a\x37\x91\x67\x68\xd2\xb3\x61\xc0\x0a\x8b\xb2\x59\x33\xb2\x8f\x30\xcf\x69\xdb\x64\x35\xf9\xa0\x85\x03\xf8\x74\x75\x61\xae\x28\x68\xf4\x06\x75\x56\xfe\x19\xfc\x12\x7a\xb6\x84\xd5\xac\x54\xb8\x1f\xcd\x0f\xfe\xb9\x73\x9c\x59\x0b\xb7\x5e\x0f\x2d\x3e\xe4\x91\x2e\x83\x78\x7e\x22\x0f\x7c\xd0\xf3\x65\x1c\xfe\x2c\xe0\x12\x46\xae\x3f\x17\x95\xc5\xa7\xe1\x4f\x62\x37\x3b\x9b\xfa\x54\x71\x8b\xf2\xa1\xec\x18\xea\x21\x2d\xe6\xaf\x62\xeb\x7f\x5a\x36\xb0\xed\x4f\xc2\xcc\xb7\x74\xa3\x0d\xa7\x0f\xe5\xce\x9a\x3e\xb5\xe8\xdc\xe9\x21\xb4\x4b\xd8\x89\x4b\xf0\xcd\x15\xc0\x96\x43\xba\x4c\xa0\x54\x8b\x84\x91\x6f\xb6\x43\xa5\xd5\x22\x73\xb9\xa6\xcb\x7a\x53\x94\x92\x59\xd9\x9b\x45\x8b\x52\xb9\xa2\x57\x66\x92\x51\x30\x84\x10\xd5\x56\x2a\x4a\xab\x34\x59\x4f\x77\x14\x7c\x55\xf1\xc0\xa7\x71\xd9\x4e\x0a\x62\xf8\xc5\x4d\x82\x59\xfe\x6c\x76\x13\x32\x4c\xcc\xc8\x9c\xa2\xe7\x4a\x9d\x65\x28\x7b\xb3\xcb\xcf\x7e\xd2\x9c\x43\x12\x71\x43\x48\x1d\xa9\x5e\x7e\xf6\x93\x4f\xc5\x21\x65\x7a\x89\x32\x1b\x9e\xdb\xf6\x75\x0e\x31\x73\xfa\x51\x48\x28\x7b\x0e\x25\xce\x91\xf9\x7a\x1e\x75\x41\x82\x13\x67\x2f\x60\x49\x78\x78\x25\x09\x68\x3a\x8c\x93\x3d\x69\xc9\x75\xb9\x9f\x10\x42\xcf\x5d\xb9\x28\x26\x70\x75\xeb\x1f\x42\xe7\x90\x17\x21\x4d\x74\x43\x2c\x52\x3e\x12\x4f\xc4\x6d\x94\x73\xa2\xd0\xa7\xb9\xdc\x37\x9e\x2c\x4c\xc5\xb5\x50\xb8\x9e\xa9\x11\x15\xf0\x04\x19\x32\x64\x10\xa9\x85\x0e\x8b\xc7\x26\xf2\x4a\x3c\xee\x4d\xd1\x67\x4b\xcc\xb4\x3f\x9d\xb5\x8b\x39\xfd\x51\x40\x77\xc9\xe0\x4a\x3c\xe9\x8f\x48\x2a\x44\xf1\x6c\x60\xd7\xed\x41\xf4\x9c\xb2\x3d\xfd\xc3\xfb\x1a\xa3\xe5\x43\x54\x5a\x90\x9e\x69\x90\x6a\x95\xad\xdb\xf3\x89\x1c\xad\x84\xcc\xdd\x4a\x9b\x93\xfa\x0d\x21\xdf\x19\x12\x6d\x9d\x69\x4d\xee\xd9\x37\xb5\xe1\xc6\x8c\x8d\x87\xef\x9a\x4d\x37\xe5\xb4\x42\xdc\x7d\x0c\x07\x84\xb2\x70\x18\x92\x04\x63\x4c\xb5\x14\xe6\x14\xc9\xf6\x76\xe5\x1e\x1c\x23\x27\x78\x04\xfa\xb4\x78\xee\x61\x06\x09\xb5\x57\x96\x43\x61\x66\xa7\xd6\x6c\x9f\x85\x5d\xda\xc3\xa2\x1b\xba\x39\x7f\x40\xa1\xb9\xbd\x25\x79\xb7\xec\xb6\xc4\xf3\xf9\xbb\x51\x24\x58\x70\x83\x2a\x77\x73\x4b\x6c\x5a\x94\xa5\xf9\x54\xfe\x3e\x10\xeb\x8f\xc8\x69\x6f\x45\x8a\x03\xfd\xb2\x34\x9f\xcd\xbd\x57\x99\xdd\x86\x98\x4f\x17\x97\xa4\x2b\xbd\xd6\x92\xbf\x00\x26\x06\x80\x18\xc2\x65\x29\x9f\xcb\x5d\xa3\x11\x1c\x79\x8a\xcf\x2e\x73\x8a\x5d\x96\xee\x0f\x67\xd3\x2d\xb8\x2a\xf6\x99\xd9\x74\xe5\x9d\x30\x99\x4f\xb6\xa0\xe2\x7e\x2e\x25\x3b\x2a\xbf\x30\x94\x7b\x14\x53\x30\x5e\x59\x1a\x42\x66\x12\x95\x93\x97\xe5\x92\x1d\x84\x74\x10\x1f\x9c\xe2\x69\x8d\xec\x2f\xb8\x53\x94\xbb\x31\xd6\xcf\xac\x62\x16\xdc\xc1\x3a\xd3\x9b\x91\x14\x78\x70\xe6\xf5\x47\xed\x1e\x4c\xfa\xfb\x22\x55\xc2\x55\xc5\xaa\x9e\x32\x00\xf0\x6a\x8d\x2a\xb1\x1b\xd5\xb8\x16\xc0\x2a\xb3\x41\xb3\xd6\xae\xc6\x76\xa3\x1a\xc0\x2a\xb5\x81\x67\xeb\x58\x11\x92\xd8\x41\x35\x84\xab\xed\xa9\x2c\xed\xe4\xc5\x9c\x26\x6b\xfe\x62\x46\x50\xae\x17\xe5\x8c\x00\x6d\x5a\x65\x39\x33\xa2\x34\x3f\x8d\xb1\x1a\xc9\x1c\x3e\xf1\xa2\xe8\xb6\xb7\xee\x1e\x1f\xd3\xad\x9a\x78\x0b\xa0\xd6\x68\xbb\xd5\x9c\xeb\x72\xba\xda\x68\xbb\xd0\xa7\xd0\x8f\x81\xf1\xc4\xce\xfc\xbc\x1d\xf2\xe4\xe4\xf2\xe7\x73\x4a\xaf\x24\x26\x3f\xc9\x4c\x14\x4b\xa8\xe1\x09\x27\xf0\x36\x81\x9d\x49\xc1\x63\x5b\xa6\x1c\xd5\x16\xee\x1b\x12\x9c\x73\xf8\x4b\x8d\xf7\x1d\xfe\xcd\x93\xd5\x08\xa2\xd8\x5b\xa5\x19\x5b\x64\xce\x33\xb3\x8c\x76\x52\x95\xdb\x7a\xc2\x4f\x1c\xc9\x9a\xc3\x60\x87\xfa\x4c\x44\xcc\x72\x8c\xb6\x02\x13\xcf\x85\xc8\x47\x43\x41\xe2\x0c\xc5\x4a\xdc\x49\x10\x60\x85\x40\xc6\x03\x85\x2b\x20\x3e\xd3\x23\x26\x9d\x52\x53\xe1\x79\x97\x49\xc7\xd4\x13\x60\x5c\x55\x22\x96\x79\xe2\x9c\x65\x82\xbc\x31\x7b\x82\x43\xc0\x20\x22\xce\x2e\x8e\x25\xb0\x83\x03\x09\x68\xaf\x94\xa9\xf8\x14\xaf\x2a\x68\xc1\xe7\xec\x06\x7b\x7b\x01\x26\x28\x9c\x16\x06\x42\xbf\x8c\x41\x59\xfe\x2e\x39\xcb\x3c\x82\x65\x53\x4e\x0c\x0b\x66\x11\x71\xd1\x2c\x22\x56\xae\xe1\xb0\xbb\x49\xc5\x54\x49\x61\x58\xa4\x0c\x9f\x9d\x50\xc0\x27\xab\xd0\x49\x8e\x8f\x5d\x94\x4a\x78\x97\xc3\x13\x09\xef\x1c\x1f\x9b\x83\xa9\x00\x13\x10\xf0\x3a\x09\x48\x79\x5d\x04\x4c\x20\x0a\x4d\x83\xbd\xb2\x67\xa1\x43\x27\xc1\x62\x07\x20\x74\x76\xb1\x74\x32\xe9\xec\x08\x3b\x2b\x14\x0a\xda\x4c\xfb\x25\xeb\xd0\xcc\x03\xdf\x5c\x2f\x18\x4b\x00\xba\x85\xdd\x0e\xc5\xae\x2f\xde\x6e\x01\x14\x7b\x88\xd5\x3c\xe8\xe7\x5c\x95\xd0\x2a\xe3\x3d\x2f\x5c\xdf\x09\x0f\x78\xb6\xd7\x43\x29\x4e\xb6\xdd\x8e\x74\x78\xe2\xd7\xb9\x5c\x41\x13\x9c\x6c\xb1\x9a\xc7\x03\xed\x3a\x0f\x0c\x6a\xb1\x99\xb6\x01\xa0\xb5\x64\x95\xc1\x2a\x43\xa9\x70\xa8\x35\xe1\x4b\x22\x74\x12\xda\x8b\x91\xce\x21\x07\x00\xfd\x04\xf6\xe0\x96\xdb\xb1\x6d\xea\x53\xa8\x71\x05\x89\xcd\xdb\xf1\x09\xa6\x70\xe6\x40\x2a\xc3\x65\xe8\x44\x7e\xd4\xf9\x47\x19\x96\xc2\xf2\x4c\x62\x29\xc4\xee\x10\x8d\xd0\x18\x0d\xe6\xfc\xd4\xe9\xf9\xa2\x86\x85\x0b\xb4\x52\x61\xc7\xaa\x74\x3a\x45\x47\x78\xb5\x5b\xb3\x7b\x1d\xd0\xf1\x5f\x18\xd8\x2f\x38\x9d\x17\x06\xd5\x63\xf1\x63\x43\xfd\x06\x2e\x8f\x17\x4f\xe0\xae\xee\xa2\xfd\xfc\x53\xb0\x47\x6a\x39\x80\xac\x5d\x0b\xa2\xdd\x13\xdc\xde\x1d\x39\x51\x90\xb2\xc7\xe9\x80\x1c\xe2\xfd\x1c\x6c\x3c\x02\x76\x79\xe3\xd5\xb5\x7d\x79\xa7\x92\xf1\xbf\x9b\x80\xe6\x1e\x88\x12\xfe\x1f\xf6\xe5\x27\x83\x70\x13\x0a\x1b\x4d\xb1\xa5\x01\xb7\x63\xe5\x6b\x52\xee\x59\xc4\x28\x84\x28\xed\x06\xbd\x0e\xff\x63\xe3\xd0\x4f\xbb\xb6\x1d\xf4\x70\x08\x11\xa0\x98\x72\x7d\x1a\x63\xcc\x97\x0d\x1c\xec\xe4\x92\x26\x3a\x69\xe2\x03\x05\x89\x73\x6d\x65\xa4\x75\x3d\xf4\x03\x74\xe8\xef\x49\x0b\x54\xe1\x15\x2b\xd7\x22\xe3\xa9\x60\x8b\x65\x3e\x3d\x73\x68\x2d\x44\x2a\xdb\x2d\xe9\x4c\xba\x6e\xef\xc4\x7d\xd0\x9c\xb8\x02\x4c\xbe\xee\x02\x78\x26\xe7\x10\x9e\xb2\xcb\x99\x4d\x8c\x80\x89\xd7\xb7\xb4\xfd\x32\x2a\x5b\xcf\x52\xb5\x35\xc3\xc4\x1e\x49\xda\x05\x14\x4f\xc4\x16\x49\xd8\xc3\xd4\x39\xcc\x6d\x43\x6a\x83\x7d\x4b\xec\xbc\xed\x2c\xf0\xe0\xa2\x77\x3d\xf2\xfa\x3a\xc6\xec\xf8\xd8\xda\x89\xe3\x88\x04\xd4\xc2\x18\x87\x9d\x58\xe0\x66\xd1\xc9\xde\x0e\x49\x64\xd0\x9e\x9f\xad\x6f\x70\xc8\x45\x82\x11\x77\x81\x98\x08\x3a\x80\x61\x8a\x22\xe8\xef\xfa\x2c\xef\x66\x39\x71\x82\x4e\x54\x0c\x3a\x1f\x30\xd2\x29\x5b\xaa\x72\xce\xe6\x91\x4b\x8b\x86\x4f\x36\xcd\x51\x27\x25\xec\x4a\xb8\x47\x00\x1f\x48\x09\x44\x74\x3a\x9d\xf1\xfd\xc4\x60\x59\x25\xf3\xeb\x0c\xd2\xc9\x99\x04\x99\x8b\x98\xbe\x3b\xe3\x55\x70\xc6\x54\x28\x37\x01\x84\x62\x02\x10\xde\x4a\x77\x00\xe9\xd2\x9e\x5a\x9c\x08\x23\x1f\xbd\x70\x11\x73\x01\x0f\x9f\x13\x60\xaa\xbf\xf3\x65\x89\xc4\xbc\xc0\x5c\x0f\x07\x85\x63\x30\x63\xef\xc7\xe4\x36\xd8\x93\xc3\x4a\xa5\x34\x56\x6f\x3b\x98\xd7\x3c\x16\x51\xe5\xfa\x14\x85\xf8\xfa\x54\xb6\x6b\x39\x94\xcc\xb1\x82\x31\xa9\x54\xac\x58\xf4\x75\x6e\x69\x2b\x2c\x6e\xae\x4f\xb5\x7d\x17\x5f\xdb\xcd\x25\x62\xc7\xc7\x80\x89\x44\x0c\x8a\x02\x49\x27\x99\xa5\x91\x1f\x9e\x4a\x16\x9e\x33\x91\xeb\xbe\xa4\x48\x91\x70\x3a\xf5\xf7\xa0\x5a\x92\x5f\xbd\x6f\x09\x9c\x7f\xf5\x8c\x0b\x63\x28\x5c\x5b\xe6\x1f\x25\xb9\x80\xaf\x8b\x9b\xfc\x51\xc0\xc8\x73\xbe\x8b\xcc\xc7\xf3\xbe\x8b\x92\x98\x05\x8c\xf8\x2e\x4a\xaf\x91\x03\x1e\x9b\xf6\x83\x88\x3c\xe7\x7b\x12\x78\xde\xf7\xa6\xe8\x70\x66\x95\xae\xaf\x84\x2a\x33\x23\x34\xd1\xaa\x78\x90\xf3\x3a\x49\xaa\x1c\x1d\x26\x2f\xa7\xaf\xe2\x00\xb1\x55\x1c\x40\x04\x26\x98\x54\xa9\x60\x76\xbe\xb0\xaf\x61\x52\x9d\xa0\xa4\x86\x59\x75\x02\x11\xc8\x7b\x1b\xa7\x55\x6a\x27\xd5\x44\x14\x40\x57\x71\x8a\x12\xfe\x67\xb2\x8a\x53\x88\x48\x35\xd9\x62\x55\x2a\xac\x71\x6b\x04\x31\x5c\x63\x68\x82\x6b\x13\x3e\x0d\x04\x10\xe5\xdb\x1b\xe6\xdb\x1b\xeb\xf6\xe6\x3c\x96\x33\x44\x60\xf5\x40\xb5\xdf\x84\x83\x89\x08\x94\xc4\x08\x34\x31\xd2\xfc\x4a\xe0\x72\x76\xe9\x20\xaf\x7e\xe6\x74\x40\xb5\x87\x4f\xa4\xc3\x3d\xdb\x5a\xb6\x7c\xcb\x9a\xce\xb2\x48\x76\x61\xc4\x4c\x5f\x5a\xfa\x63\x21\xea\x95\x56\x95\xeb\x04\xe3\xb9\x53\x7a\x91\x5f\xc1\x38\x3c\x3e\x4e\x56\x30\x56\xbd\x32\xc1\xca\xeb\x94\x65\x1a\x0f\x2c\x24\x2f\x4d\xcb\x1f\x0a\x97\x52\x33\x11\x4d\x6a\x4d\x31\x15\x11\x61\x0a\x2d\x02\xea\x22\x20\x41\x31\x97\xc4\x24\x4a\x09\x08\x8f\x8f\x63\x69\x23\x37\x5b\xb0\x1d\xda\xcc\x8e\x6d\x0a\xa7\x20\x76\x32\xd2\xa3\xdc\xc7\xf3\x28\xc8\xc7\x04\xf9\x18\xae\x89\xcc\x2c\x0d\x39\x77\xf1\x56\xb1\x0e\x20\x35\xc6\x97\x48\x1d\x66\x63\xf1\xd8\x45\x8d\xf0\x4f\xde\xf3\x22\x00\xe6\xe6\x53\x2a\xa1\x10\x50\x68\x5b\xb2\xa3\x75\xab\x13\xa8\x5a\x24\x86\x19\x84\x3e\xab\x54\x4a\x93\xdb\xcc\x4e\x44\x3b\x64\x00\x0a\x34\x90\x2e\xc6\x71\x01\x06\x82\xa3\x16\x20\x30\x57\xbf\x4a\x6c\xaa\x17\xdf\x28\x50\xbf\xf3\x95\x27\xf2\x9e\x91\xea\x7d\x7a\x7c\xcc\x56\x30\x4e\x34\x1f\xc5\xba\xe8\x98\x17\xcd\x79\x57\xe3\x61\x21\x0d\x40\x0b\x2e\x05\x06\xf3\xd4\xb0\x00\x95\x2c\x90\x2a\x7c\x99\x50\x4f\xa4\x33\x2e\x0f\x8b\xf3\x16\xfe\x93\x1c\x1f\x97\x55\x62\x53\xdb\x42\x96\x9d\xc8\x47\xb5\x78\x3b\xc4\x08\x42\x0a\xe0\x6c\xa0\x42\x02\x1d\x22\xba\x3f\xc6\x81\xd4\x8e\x4a\xf7\xc3\x11\xe5\xda\x5d\x92\xdd\x92\xb2\x6d\xe1\x5a\x3b\xed\x72\xd5\x83\x4b\x60\xae\x4a\xb0\x45\xaa\xc4\x54\x2c\x79\x9f\xc4\x97\x41\xc9\x7e\x27\x8d\x29\x91\x2f\x7d\x5e\xf0\xc1\xf0\xf8\x18\x0c\xf1\xec\x6d\x1d\xe5\x17\xc2\x3a\xff\xf8\xb3\x16\x44\x23\xbc\x68\xab\x13\x8d\x73\x51\xd9\x8d\x67\x88\x86\xca\x5a\x85\xe9\x2d\x65\x61\xd9\x3e\x9e\xbf\xd0\x3c\x2a\x9c\xb2\x0e\xe1\xa2\xfb\xcd\x96\x29\x89\x23\x54\xb8\xa3\x3a\xcc\x1f\xb9\xad\xa1\x9a\xa7\x0f\xf6\x2c\x64\x41\x74\x08\x6c\xe1\xe3\xd1\x26\x5d\x4f\xfc\xad\x8b\xbf\x0d\xf1\xb7\x29\xfe\xb6\x7a\x10\x4e\x91\x35\x3e\x44\xcb\x16\xff\x81\x16\xb2\x06\x64\x17\x5a\x10\x3d\x5c\x4a\x42\xe3\x85\xe2\x82\x0f\x06\xc7\xc7\x60\xb0\x80\x80\x97\x2e\x83\x13\xdd\xb2\x70\xed\x1f\xa2\xc1\xcc\xa5\xce\xac\xa5\x88\x40\x04\x08\x1e\x64\x64\x74\x76\x82\x94\x3c\x1b\x44\x4e\x3f\xa6\x69\x1c\x85\x03\x3e\x84\xb9\x12\xc7\x29\x20\x77\xf1\xd1\x21\xc8\xde\xcb\xea\x23\xe2\x0c\x10\x71\x08\x22\xce\x10\x42\xff\x02\x6f\xa8\x68\x26\xb4\xe4\x80\x30\x82\xfc\x5a\xa9\xc2\xac\x0f\x53\x43\x4c\x40\x7e\x17\x61\x20\x77\x11\x46\x28\xaf\x51\x0e\x20\xa0\x3c\x90\x73\xf7\x04\x30\x27\x45\xd4\x49\xb9\x34\xe7\x1f\x11\xa2\x4e\x24\xb7\x16\xcc\x86\x02\xa2\x8b\xb7\x16\x72\x07\x34\xce\x08\x87\xe2\x3e\xae\x93\x0a\xb3\x48\xc4\x9c\x48\xae\xa0\x59\x6e\x6b\x81\x7f\xca\xe5\xb3\x69\xd3\xc5\xfb\x6a\x53\xbf\xac\x4d\xfd\x99\x36\xf5\x11\x75\xfa\x0f\xb4\x4d\xfd\xfb\x6b\xd3\x95\x92\x36\x2d\x33\xae\x1f\xe5\xe6\x64\x96\xdb\x3e\x2c\xb4\x71\xc7\xb4\x31\x2c\x04\x86\xb2\x8d\x81\xea\xb7\x90\xf7\x5b\xaa\xda\x18\xf2\x36\x46\x85\x36\x86\x67\x6d\x63\xac\xfb\x2d\xd0\x6d\x4c\x41\x61\x8f\x2c\xdf\xde\x28\x6b\xaf\x1e\x68\xd8\xa6\x48\xef\x11\x31\xb9\x47\x34\x15\xf9\x2f\x7f\xfa\xe9\x2b\x75\x74\x0d\xa4\x10\x5d\x03\x13\x88\x2e\x72\xe8\x22\x87\xae\x80\x54\x2e\xf2\xcf\xe1\x2b\x60\x02\x97\x4e\x7a\x5c\x63\xe7\x94\xc7\x2f\xf6\x4e\x79\x3c\xe3\xea\x29\x8f\x73\xe4\xb6\x94\x4b\x7d\xb5\x3d\x99\x73\xaf\x76\x8a\xbb\xab\xd2\xc7\x3d\xa2\x53\x1e\xe7\x38\xf7\x51\xde\xe6\x08\x87\x00\x50\x0c\x08\x66\x1d\xe2\xb0\xf8\xc2\xe1\x38\xa6\x84\xb2\x30\x88\x80\xd8\x55\x9a\x0d\x84\x30\xb3\x92\x20\x16\x84\x5b\x2e\xcc\xc9\xcb\xa5\xcc\xef\x61\x66\x1d\x61\xfc\xdd\x67\x46\x87\x49\xd7\xed\xd9\x89\x4a\x53\x87\x7e\x82\xec\xbc\x79\x45\x6f\xf6\x4d\x10\xa5\x89\x13\xac\xdc\x6f\x07\x3b\x7c\xd8\x40\xd8\xe1\x02\x5f\xbe\xc4\x10\xe3\xd5\xcf\x81\x8e\x0f\x1c\xd8\x01\xdd\xad\x6d\xfc\xb9\x1e\x17\x99\x5d\xfb\x85\x1a\x58\xee\x71\xe8\xa1\xff\xc1\x7f\x5c\xd8\x01\x62\xbb\x06\x20\x0e\x39\x12\xfe\xdf\x3c\x41\x50\x7b\xf9\x13\x3d\xd8\x79\x68\x35\x2c\xec\x8b\x17\x0e\xcc\xd3\x82\xb3\x8c\xd4\x78\x59\x64\x38\x36\x1b\x31\x90\x8d\x92\xf8\x40\x24\xbf\x90\x24\x71\x02\xac\x90\xee\x07\x51\x38\x58\xe6\xd2\x3d\x60\xfe\xb2\x65\x2b\x67\xc3\x4c\x5a\x65\x0d\xc3\x28\xc2\xac\xeb\xf5\x8e\x8f\xad\x65\x75\xd5\x3f\x88\xc2\x5d\x8a\x59\xb7\xce\x03\xb7\x55\x60\x2a\xc3\x1a\x3c\xac\xa6\xc3\x8e\xf6\x76\x62\x9e\xbd\xc9\x43\x55\xe0\xcb\x24\x89\xf1\xca\x0a\xeb\xb6\x7a\x32\xe0\x20\x1c\xb0\x11\x66\xdd\x76\xaf\x52\xb1\xf9\x8f\x7a\x88\x2a\xe6\x83\x8e\x27\x5c\x53\x21\xe3\x84\xf4\xc3\x34\x8c\x79\x3d\xeb\x32\xf1\x7a\x4f\xf5\x8d\x76\x53\xc0\x92\x70\x4f\x64\xda\x50\x99\x84\x1d\x00\xeb\x7a\xae\x40\x61\x1a\xe4\xac\x03\xd2\xdc\xcb\x06\x39\xd8\xac\x7d\x4b\xae\xc2\x19\x9a\xd8\x19\x25\x6c\xd3\x7e\x3b\xd7\x6a\x1b\x98\xd6\x9a\x17\xb1\xb5\x19\xab\x69\x75\xc7\xb2\xb2\x47\x5e\x3d\xe4\x1e\x67\x51\x10\xaa\x12\x04\x1d\x3a\x16\x9a\x2f\xc2\xd0\x83\x17\x63\x39\x85\xa7\x59\x55\x51\x26\x89\x29\x8e\x13\xa8\x63\xfd\x6f\x59\x9a\xa1\x90\xb4\x21\x10\x1e\x7d\xd0\x70\xc6\xeb\x14\xf1\xf3\x7a\x21\xc9\x2e\x5b\x7a\xc2\xa4\x74\x33\x11\x17\x32\x12\x98\x1e\x84\xac\x3f\x02\xa4\x9b\xf4\xe0\xf5\x7e\x90\x12\xcb\xb1\xfc\x10\x33\x9c\x2c\xed\x24\x24\xb8\xb6\x24\xc2\x5c\xcb\x77\xb1\x7e\x61\x26\x81\x28\x8b\x56\x1a\x9c\x1f\x0e\x41\xb8\xed\x4a\xee\xb5\x45\x69\x22\x7e\x99\x2c\x85\xd8\xcd\x76\xee\xb7\xdd\x4e\x36\x94\x43\x68\x46\x29\xb3\x3d\xe1\x78\x7c\x5c\x6a\xd6\x90\xc8\x37\x40\x78\xd9\xe6\x30\x9a\xd8\x96\x3c\x0d\x0b\xc5\xfe\x22\x8a\x31\xed\x7a\xd9\x9a\x70\xcb\xed\x58\xae\x63\xd9\xd9\x36\x4e\x2d\x86\x4a\xd9\x75\x2d\x68\x87\xbe\xbe\x0e\xb5\x1d\xdb\x5e\x27\x34\x48\xc5\xb6\x07\x6d\xde\x2f\x3a\x88\x07\xf8\x61\xae\xa0\xb8\xa6\xb3\xda\xf5\x5c\x91\x53\x34\xc0\xd7\xad\x4f\x58\xa5\x76\x25\xc0\x73\xdd\x2a\x81\x0e\x8b\x1f\x0d\x0f\xc9\x00\x30\x38\x45\x3b\x65\xdb\x87\x85\xe7\xd9\x33\x7b\x99\x3a\x9c\xa2\x7e\xe9\x03\x59\x7c\xe6\x43\xa5\xfe\xb9\x16\x14\xe5\xb9\x70\x8a\x16\xf8\xe1\x9a\x13\xd9\x7c\x26\x58\x9c\x34\x6b\xcb\xee\xe2\x44\x4f\x69\x6e\x16\x09\xe3\xfb\xc0\x74\x1d\x4e\xd1\xb8\xbc\xe0\xb1\x24\xa8\xd8\x0d\x4a\xfc\x31\x4a\x4b\x2d\x29\xcf\xce\x37\x28\xc0\x71\x0d\x4c\x70\xa3\x6a\x86\x63\x6d\x3d\x7b\x2a\x79\x3d\xff\x60\x43\x2c\x3c\x99\x43\xdb\x43\xa9\xb9\x53\x97\x1d\xed\x60\x9c\x76\x42\x3f\xd8\x4e\x3b\x79\x9e\x09\x6a\xa9\xed\xe5\x98\xc5\x0f\xb6\xdd\x1c\xd3\x05\x45\x96\x0b\xa0\x3f\xc3\xbc\x5e\x2d\xc8\x73\x2f\x6f\x58\x4e\x6e\x30\x3b\xa8\x79\x10\x76\xdd\xde\x14\x3d\x77\x3f\xac\xd0\xe6\x1f\xcf\x8c\xc7\x24\x39\x17\xa4\xe2\xc6\xd3\xe1\xfd\x65\x9f\x16\x9f\xed\xc9\xed\x79\xa3\x23\xdc\xb5\x8e\x2c\x64\xbd\x6c\x09\x3d\x8a\xeb\x3a\xd6\xd8\x42\x16\xb5\x90\xf5\xff\xbc\x66\x21\x6b\xcf\x42\x96\x85\xac\x6b\x16\xb2\x2e\x5a\xc8\xfa\xa4\x85\xac\x2b\x16\xb2\x9e\xb2\x90\x75\xc1\x42\xd6\x67\x2d\x64\x3d\x6f\xfd\xbf\xec\xfd\xfb\x76\xdb\x38\xb2\x28\x0e\xff\xef\xa7\xb0\xf9\xeb\xa8\x01\xb1\x28\x91\x4e\xd2\x17\xda\xb0\x96\xdb\x49\x26\xe9\x89\xe3\x74\xec\xf4\x8d\x66\x7b\xd3\x12\x24\x31\x96\x48\x35\x2f\xb6\xd5\x16\x1f\xed\xac\xf3\x48\xe7\x15\xbe\x85\x1b\x09\x52\x94\xed\x74\xcf\xcc\x9e\xd9\xdf\x9e\x35\x1d\x8b\x40\xa1\x50\xb8\x15\xaa\x80\x42\x95\x0f\xd7\xeb\x06\x3d\x20\x44\x02\xfe\xf8\x8a\x7b\x3f\xa2\xbd\x6c\x1a\xe7\x69\x10\x8d\x52\x1e\x64\xa6\xcc\xe2\xbc\xaf\xcc\xab\x1d\x0e\x55\x9a\x73\xcd\x59\xb7\xa7\x5e\x69\x65\x6c\x76\xe4\xc4\xde\x0b\x0f\xec\x4e\x27\x65\xff\xa0\xdc\x4c\x4d\x87\x3b\x7a\x4f\x89\xb6\x05\x24\x56\x8e\x31\xc4\xea\x6d\x7d\x9a\x5f\x8a\xf3\x73\x14\x5a\x24\x85\xd0\x4c\x31\x86\x1d\x84\x72\x93\xb0\x59\x70\x90\x60\xbc\x87\x59\x05\x01\x41\x01\xbf\x8c\x92\xd5\x57\xec\xab\x0a\x99\x22\x46\x3d\xc2\x05\x76\xe7\x3c\xa4\xd1\x30\x4f\x12\x1a\x0d\x97\x3c\xae\xd5\x88\x0e\xc3\x79\x30\x83\x19\xa1\xbd\x28\x9f\xd3\x24\x98\xa5\x8f\xbc\xcd\xc8\x7a\x09\x5d\xcc\x82\x21\x45\x7d\xcf\xb6\xbe\xf5\xfb\x13\x68\xbb\xf3\xf0\xcc\xcc\x2f\x70\x51\xa0\xaa\x02\x46\xc9\x90\xd0\xde\x82\x26\x43\x6e\x63\x66\x3c\xd1\x3c\xe2\x8d\xab\x7b\x3c\x44\xb9\x08\x8f\xf9\xe6\xcb\x87\x82\xef\xbd\xdc\x3b\x3a\xdb\x7a\x61\xcc\x7e\xf0\x9d\x17\x16\x84\xf2\x7d\x17\xe6\x84\x8a\xcd\x14\xae\x59\x6b\xd9\x46\x0a\x13\x56\x9b\xe2\x23\x70\x49\x84\x35\x2e\x5c\x48\x6f\x2f\x5b\x06\xbf\xcc\xb8\x18\xa0\x6b\xb2\x63\xc3\x05\x61\x4a\xb2\x3b\xf2\x2e\xfc\xd5\x4a\xee\xbd\x93\x4e\x07\x4d\x88\xb3\x8b\xe1\xb2\x02\x01\xb4\x58\xad\x0c\x9b\x95\xcd\x3a\x1d\x83\x18\xdc\xda\xa9\xd3\x41\x0b\x06\x93\x11\xc3\x36\x20\x22\x06\x31\x84\x74\x75\x43\x8c\x2f\x18\xc8\x78\x10\x7b\xb6\xef\x1a\xff\x1f\xff\xe8\x74\xfa\xde\x65\x7c\xfb\xb3\xdf\xef\x65\x34\xcd\xd0\x05\x66\xa2\x83\x79\xd1\xcb\xe2\xb7\xf1\x8d\x5a\x59\xae\x61\xc0\x4b\xad\xbc\xe3\xbb\x7d\xef\xc9\x42\x2b\x34\x64\x20\xb7\x84\x51\x0d\xa7\xa4\xef\x8d\xe8\x78\xb2\x48\xd2\x27\x15\x48\xd5\xc7\x27\xaa\x8f\x63\x08\xd8\xe6\x4f\x6e\x60\x44\x5e\x32\x46\x67\x0c\x79\x4f\xe0\x11\xb9\x45\x14\x9b\x23\xa0\xc4\x30\xb8\xef\xef\x3b\x71\xbc\x23\xec\x14\xf6\xb9\xe3\x70\x4a\x6e\x75\xf9\x17\x26\x18\x2e\xf9\x69\xf1\x94\x07\xe6\x3d\xe1\x21\x79\x4d\xda\xe9\xa0\x13\x6e\x3b\x3c\x26\xe8\x64\x60\x20\x71\x2d\x14\xba\x86\x65\xb0\xff\x08\x3f\x57\x55\xc9\x86\xe1\x86\xd8\x1c\xc3\x88\x20\x23\x15\xa3\xb2\xf4\xbe\x31\xf3\xfe\x53\x9f\x4b\x2f\x23\x13\x9d\x74\x3a\x25\x34\xe6\x32\x0d\x9c\x72\x5b\x61\xe9\x10\x5c\x7b\xcb\x1c\xef\x07\xdc\xaa\xf3\xd9\x37\x07\x88\x4d\xb9\xe1\x34\x48\x8e\xe2\x11\x3d\xcc\x50\x8c\xf1\x6a\x35\x3c\x78\xfe\x35\xbe\x1b\x11\xf4\xec\x2b\x42\xc8\x70\x90\x96\x12\x05\xdf\xb6\xcb\x0f\x2c\xba\xa2\x92\x3d\x62\x2c\x04\x98\xa2\xb8\xee\x74\x76\x16\xbc\xd5\x09\x8f\xb8\x6c\x4b\x47\x2c\x87\x64\xac\xb6\x79\x45\x90\x59\xba\x31\xb8\x22\x87\xfb\xf3\x41\xc5\x9f\xe7\xd6\x61\xc9\xdf\x33\x36\xd8\x5b\x52\xb0\xba\xee\x74\x14\xf2\x2b\x93\xc2\x95\x3a\xed\x9e\x5b\x0a\x97\xcb\xaa\x84\x2b\xc2\x5f\xd0\x4b\x19\x6c\xdf\x70\x29\x19\x9b\xd4\x1c\x99\x57\xba\x1c\x46\x44\xfa\x15\xcb\xd1\xd3\x7f\x63\xe9\x57\x65\xe3\x0e\x89\xaa\xe7\xe0\xc0\xc1\xa6\x44\x24\xb3\x0f\x71\x43\x74\xa3\xe4\x4a\x80\x28\x29\x8d\x7b\xbb\x54\xca\xa8\x7c\x70\x30\x19\x7c\xe5\xf6\x3d\x36\x21\xb5\x29\xab\xb1\xc0\x72\xab\xdc\x75\x60\x82\xb1\xdb\x0c\xe2\xc5\xb3\x6c\x96\x05\x27\xf7\xc9\xea\x42\x9e\x39\x91\xd5\xdf\x49\x0d\x67\x0c\xe2\xc7\xfb\x84\x8e\xc3\xdb\xd6\xbd\x7e\x8c\x50\xc9\x6e\xb8\xa2\xc0\x36\x1c\x36\x8b\x93\x47\x6d\xea\x21\xca\x30\xdf\xd7\x95\xd7\x00\x15\x08\x8a\x3b\x0a\x60\x33\x38\xe9\x3f\x6d\xbd\xb8\x52\xda\x1c\x8a\xbb\x14\x9b\x69\x51\xe8\xb7\x1f\x13\x0d\x62\x46\xae\xd9\x22\x1b\x92\x59\x4f\xb4\x86\x7b\x17\xd0\x1b\x06\xb3\x62\x82\xee\x24\x4f\x67\xca\x01\x94\x5b\x97\x6b\x80\x01\x6a\x57\x73\xbd\xa7\x3e\xa8\x7d\xc0\xf5\x8c\x2f\xd8\x4e\xea\x4b\x33\x85\xcb\x8d\xb1\x9f\xc4\x70\x58\x61\x5d\xe7\xdd\x78\x9d\xa6\x95\xf9\xac\x1e\x5c\xaf\xe0\x66\x43\x00\x4f\xa2\x33\x9f\x4c\x0b\x9f\x85\xad\x9a\x7c\xc3\x50\x5b\x21\x43\x66\x3a\xa5\xf5\xa7\xe8\xb8\x17\x62\x12\xbf\x8d\x87\x41\xbb\x45\xa0\x1e\x0a\x95\x97\x78\xc0\xb4\x50\x1f\x8f\x07\x4c\x3d\x05\xe8\xe6\xaa\xaf\x9b\xa0\xa7\x0b\x3a\xe4\x56\xb5\x0f\x58\xa3\x96\x5b\x1d\x17\xb0\x1f\x38\x83\x2a\x81\x37\xd3\x7c\xd1\x02\xfd\x81\x89\x73\x6d\xc0\x37\x9f\x77\xfc\x13\x21\xbb\x6e\x58\xc6\x75\x40\x7b\x9f\xd0\xde\x92\x09\x66\xcb\x7d\xc7\xb6\x95\x40\xa0\x2e\xfd\x91\xe5\x00\xed\xcd\xe5\x41\xf3\x6b\xa0\xbd\x63\xa0\xbd\x53\xa0\xbd\xb7\x9a\xa5\x76\x4a\xb3\x57\xf9\x6c\xf6\x0b\x0d\x12\x44\x7b\x4b\x0c\x99\xee\x5e\x81\xe3\xa1\xbd\xe5\x46\x44\xd5\xb9\x4a\xfc\x48\xaa\xd8\x3f\xbd\x8f\x67\x47\xf7\x91\x57\xa7\xef\xe3\xd9\xd1\x43\x24\x96\x48\xef\xa3\x55\x23\x56\x3b\x22\xba\x5b\xba\x14\xe6\xae\x0d\x23\xd7\x81\xd7\xae\x0d\xc7\xae\x0d\xa7\xae\x0d\x6f\x5d\xbb\x68\x1c\x1b\x29\xcb\xa9\x51\x90\xd1\xb3\x70\x4e\xb9\xb8\x35\xe2\x77\x72\x4c\x4a\x62\x29\xb9\x90\xd9\xc2\x78\x94\x72\x81\x71\x14\x2c\x53\x2e\xc8\xa5\xd3\x38\xc9\x5e\xb0\x2f\x26\x90\xcd\xe3\x28\x9b\xa6\x30\x55\x19\xc7\xe2\x7b\x44\x2e\x51\x8e\x61\x4e\x2e\xd8\x9f\x25\xb9\x44\x33\x0c\xd7\xe4\x82\xfd\x99\x90\x4b\x34\xc4\x70\x4b\xc9\x05\xfb\x7b\x4a\xc9\x25\x1a\x63\x38\x61\xdf\x63\x0c\x87\xec\x7b\x8a\xe1\x8a\x7d\x4f\x31\x1c\x53\x72\x17\xb4\x29\x1a\x43\x8f\xbf\x0d\x78\x11\x2c\x11\xf6\x0b\x38\x6c\x83\x99\xd5\x61\x5a\xb5\xe8\xa9\x80\xe1\x94\x73\xa8\xef\x5a\x4d\x75\x9a\x50\x43\x97\xdf\xae\x8d\xdc\xd7\x40\xdd\xd7\x30\x76\x7f\x84\xd7\xee\x77\xf0\xc6\xfd\x08\x9f\xdc\xdf\xe1\xad\xfb\x13\xcc\xdd\x5f\xe0\xd8\xfd\x5b\x4d\x2f\xad\x6c\x99\x3d\x53\x3c\x83\x78\x1d\xe7\x49\x8a\xf0\x01\x13\x38\xfd\x02\x7e\x70\x6f\x28\xa4\xee\x4b\x0a\xa7\xee\xdf\x21\x77\xbf\x80\x8f\xee\x0f\xf0\xa3\xfb\x33\xdc\xb8\xbf\xc2\x4f\xee\xf7\x70\x2b\x6a\xfe\x59\xfc\x59\xba\x94\xc2\x2f\x6e\x46\xe1\x57\x37\xa2\x60\x3c\x31\xdc\x0b\x5a\xc0\xd9\x03\xdd\xf6\xf1\xec\xe8\x31\x3d\xa7\x81\xdd\xd7\x79\x1f\xcf\x8e\x1e\xd7\x7f\x35\xc0\xb2\x0b\x13\x0a\x94\xfd\x33\x76\x73\x0a\xaf\xdd\x90\xc2\x1b\x37\xa6\xf0\xc9\x0d\x28\xbc\x75\x53\x36\xaf\x67\x14\x8e\xdd\x21\x7d\xa0\x2f\x3f\x9e\x1d\xdd\xd3\x9d\x63\x0a\xb9\x3b\xa5\xf0\xd1\x5d\x50\xf8\xd1\x1d\x51\xb8\x71\xe7\x14\x7e\x72\x97\x74\xad\x53\xaf\x59\xa7\x4e\x58\xa7\x5e\x56\x9d\x7a\xd4\xe8\xd4\x9a\x33\x43\x69\xfd\xa6\x8e\x92\xab\xc5\x9f\x0c\x10\xed\xdd\x90\x5b\xea\x25\x9e\xed\xd7\x45\x7d\x1f\x22\x93\xa7\x2a\xeb\x22\xcb\xa9\x0f\x88\x5e\xc5\xf2\xa1\x2a\xae\x1f\x5b\xc3\xe5\x86\x1a\x0e\xe9\xfd\x55\xcc\xc9\xd5\xa3\x5b\xf1\xdd\x86\x3a\x4e\x1f\xac\xe3\xe4\xd1\x75\xe8\xc7\x5c\xc2\x6e\x44\x62\x7a\x57\x45\xb5\x2f\x60\xe4\x1e\x01\x75\x8f\x60\xec\xbe\x80\xd7\xee\x7b\x78\xe3\xbe\x87\x4f\xee\x07\x78\xeb\xbe\x81\xb9\x7b\x06\xc7\xee\xbb\xc6\xd9\x51\x45\xed\xe8\x7e\x62\x17\x64\xfe\x58\x5a\x7f\x70\x5f\x41\xea\xfe\x01\xa7\xee\x27\xc8\xdd\x97\xf0\xd1\xbd\x85\x1f\xdd\x53\xb8\x71\x6f\xe0\x27\xf7\x04\xea\xa2\x6a\xb3\x2d\x11\x4f\xaa\x1f\xd9\xd4\x4c\xc3\x39\x54\x2a\x1c\x36\xc0\xd2\xbd\x82\x5f\xdc\x43\xf8\xd5\x3d\xe6\x93\xf7\xad\x26\x66\x7e\xa0\x1b\xed\xed\xaf\xab\x10\xb6\xc4\xf3\x79\x14\x5b\xc8\x89\xcd\x37\x00\x3d\x26\x5a\xd3\x68\x8f\x69\xce\xd5\xce\x68\x46\x32\xcc\xeb\x6c\x0f\x3f\xfd\x9a\x7b\x55\xd5\x54\xb1\x94\x7b\x8e\x2a\x8f\x3f\x78\xaf\xe6\xdc\x9d\xa0\x0c\x2f\x16\x92\x85\x97\xc8\x32\x87\x19\x32\xcd\x14\xfb\x78\xd0\x48\x71\x43\x62\x70\x23\x83\x64\xc0\x6d\x80\x6c\x03\x50\xcc\xdd\xdf\x0a\x5b\xd4\x18\x45\x10\x62\x0c\xb2\xa2\x04\x43\xce\xcf\x53\xca\xb3\xb7\x36\x02\x02\xcd\xc0\xa1\xec\xae\xf7\xf7\x77\x57\x08\x29\xe4\x24\x40\xce\xb7\xb6\xcd\x4f\x0f\xdf\x31\x6c\x14\x22\x6e\x2a\x6b\xe3\x9d\xd2\x1d\x43\xed\xae\x8a\x69\xdf\x3f\x18\x61\xb4\x9d\xe3\xa6\x0c\x90\xf7\x7e\xe0\x88\x8c\x05\xcf\xef\x74\x50\xde\x7b\x4d\xf2\xde\xeb\x27\xce\xae\xe9\xec\x76\xf3\xde\x02\x83\xf1\xa3\x28\xcc\x24\x95\xbc\xf7\xe3\xbe\xb3\x5a\xe5\xbd\x1f\x0f\x9e\x3f\xad\xd5\x62\xdc\x70\xa8\xd5\x0a\xe5\xbd\x1b\xe2\x60\x30\x7e\xe5\x09\x03\x94\xb2\x7e\x8e\x51\x80\xf2\xde\x12\x63\xac\xb3\x7a\x08\x49\x7a\xf0\x6c\xb5\xb2\xf9\xf1\x64\xd2\x5b\x88\xb0\x8d\x21\x76\xcb\xfb\xdc\x05\x46\xa1\xf0\xdc\x3a\xeb\xc5\xe3\x71\x4a\x33\x14\xc2\xd7\x5d\x46\x89\xe5\x60\x0c\x79\x6f\x49\x42\x89\xb3\x14\x79\x58\xf2\xbc\x4c\x96\xbb\x00\xe4\xbd\x51\x99\xc6\x9b\x8f\x4d\x46\xac\xf9\x15\x7e\xf2\x35\x76\x05\x9d\x59\x8d\xce\x56\x22\xe9\x3a\x91\xb4\x24\x32\xb8\x9f\xc8\x36\x0a\xd7\xc8\x5b\xa3\x4d\x98\x70\x19\x3f\xc9\x1e\x36\x3e\x8a\x01\xe9\x74\x50\xbd\xd7\x8d\x5c\x74\x79\xde\xcb\x9f\x7c\xed\x4a\xf8\x81\xe3\xda\x4c\x57\x54\xe3\x51\x8e\x84\x3e\x10\x6e\xa6\xa7\x8a\x66\x33\x02\x6d\x4e\x95\xc2\x54\x52\x64\x7e\xdd\xcd\x7b\x3f\x59\x28\x35\x9f\xe3\x27\x5f\xbb\x2c\x99\xa5\x7c\x64\x29\x9c\x62\x39\xf7\xcb\x39\x90\xf7\x5e\x9b\x24\xef\xfd\xda\x77\x6c\x7b\xc5\x90\x1e\xf3\xcf\x27\x8e\x6d\x43\x8c\x72\xcc\x08\xc8\xf5\xa5\xa0\x31\xd5\x3b\xcd\x5d\x95\x3a\x03\xad\xbc\x6d\x46\xba\xd3\x2a\x3e\x47\x93\x03\xa2\x66\xba\x88\x70\xc8\x19\x03\xb7\xbf\xd6\x78\x43\x60\x9a\x18\x73\x78\x95\x21\x13\x61\x07\xc5\xe4\x88\x7a\xe1\x76\x18\x6d\x2f\x06\xb5\x3c\x37\xf4\xf1\x6a\xc5\xd7\xbc\xd8\x03\xaa\x7b\x61\xcb\x11\x56\x56\x0c\x21\x5b\x88\x5a\x55\x09\xab\xaa\x84\x52\x2c\x5d\xfd\x38\xa6\xbd\x5b\xf2\x81\xa2\x08\x8e\x29\x13\x41\x7b\x3f\xb3\xaf\x54\x7d\x0d\xd9\x57\xc6\xbf\xce\x4a\xc8\x33\xf1\x25\x21\xe5\x97\x84\x64\x5f\xe5\xf9\xc4\xda\x13\x06\xc6\x91\x39\xbb\x38\xd6\xdc\x47\xdc\x7b\xf0\x51\x40\x56\xc0\x22\x48\xd2\x36\x1f\xf0\xef\x15\xba\xf0\x73\xb0\xe5\xd9\xf0\xd5\x83\x04\x9e\x7d\x16\x81\x79\x36\x7c\x7f\x0f\x8d\xba\xab\xb2\x07\x91\x09\x8b\xb3\xf2\xfe\x12\x16\xe4\x8e\x1f\x29\x1a\x70\xe1\x1a\xdb\x06\xd8\x6c\x0f\x28\x60\x44\xfa\xbf\x9d\xa7\xdd\xf3\x91\xd9\x87\x39\xe9\xff\xf6\xa4\xcf\x1f\x52\x9c\x9f\xff\xf6\x45\xd7\x1c\xac\xbc\x73\x1f\xe1\xde\x5d\xe1\xf7\x27\xd5\x86\x78\x5d\xdf\xf1\xe9\xbe\x3d\x90\xa8\x43\x82\x92\x81\x45\x5d\x8a\x4d\xc3\xd0\xbc\x22\x96\x22\x80\x89\xe2\xfd\x48\x3b\xda\x8b\xac\x58\x3b\xda\x33\x43\x37\xd4\x94\xb5\x49\xcd\x92\x55\x1d\xa8\x2f\xc1\x38\x3f\xff\xa2\xa3\x47\xb0\xb8\x6c\x5c\xfc\xcb\x47\x1d\xc6\x6f\x68\xe0\x1a\x26\xe5\x7e\x24\x26\xea\x8a\x67\x65\x60\x93\x1b\x5b\x85\x46\x33\x44\x47\xf5\xfa\xfd\xae\x50\x06\x7f\xb4\x61\xf0\x97\x79\xd4\x8b\x9a\xe2\x0b\x89\xaa\xd7\xe3\x25\xca\x9b\xfb\x05\x23\xe0\x51\xb2\x1a\x02\x29\x97\x82\x5a\x84\xa1\x12\xe9\xcb\xcf\x46\x9a\x3f\x8c\xf4\xf6\x41\xa4\xbb\x0d\xa4\x1f\x1f\x46\x7a\xfa\xd9\x48\x7f\x7c\x18\xe9\xc9\x67\x23\xfd\xe9\x61\xa4\x87\x0f\x22\x7d\xd6\x40\xba\x7c\x18\xe9\xd5\x67\x53\x2a\x91\x9a\x88\xff\x39\xf8\xea\x9b\x01\x93\x91\xdc\x5d\xfa\x14\xdf\x57\x51\x23\x4c\x7e\xff\x37\xf4\x2b\x5e\x21\xcf\xb4\xfc\xf3\xd1\xf9\x08\xa3\x81\xeb\x0e\x10\xff\x89\x07\xfd\x75\x2a\xbe\x6a\x50\xf1\x2b\x49\x3c\xc7\x1f\xd8\xae\x85\x12\x6f\xd7\x37\x51\x22\x2c\x58\x6c\xdb\xc0\xf7\xd2\x71\xf6\xd9\x0d\x9e\xf3\x17\x4b\x96\x73\x1f\xd6\xa3\xcf\xc6\x3a\x7a\x78\x6c\x3e\x3c\x88\xf4\xe9\x1a\xa9\x36\x3c\x0a\xf5\xfb\xcf\xa6\xf7\xf5\xc3\x48\xdf\x7d\x36\xd2\xe3\x87\x91\x7e\xfa\x6c\xa4\xa7\x0f\x23\x7d\xf3\xd9\x3d\xfb\xf6\x61\xa4\x2f\x1e\x44\xda\x9c\xc4\x6f\xf5\x37\x8c\x0c\x6f\xdf\x79\x60\x15\xbd\xad\xd7\x31\x7f\x80\xaf\xd6\x30\xd5\x10\xbd\xfa\x2c\x75\xf8\x87\x87\x5b\xff\xc7\x67\x22\x74\xe8\xd3\xee\x83\x48\x5f\xd7\x74\xb4\x6b\x44\x2b\x91\x1d\x32\xd8\xd5\x36\xc6\xef\xda\x20\xe5\x99\x51\x03\xf4\xe3\x3d\xa0\x4f\x9c\xdd\xd5\xca\xd9\x6d\x94\xf8\xbd\x51\xc2\x31\x99\xf2\x31\x8c\xf3\x28\x43\xa5\x5e\x72\x85\x11\xc5\x40\x59\x6d\x4f\xb5\xb2\x3f\xb5\xd5\x76\x1c\xce\x66\x61\x4a\x87\x71\x34\x12\xf4\xe9\x25\x7e\xac\x95\x10\xe5\x4d\xc3\xb6\x6d\x2d\x8a\xd4\x2f\xad\x58\x85\x72\x63\x3a\x0d\xf2\xff\xd6\x4e\x42\x94\x67\x74\xbd\x77\xfe\xde\x06\x7c\xaa\x91\xaa\x03\x7f\xa1\x9f\x3a\x2b\x65\xa6\x16\x5e\x7b\xf0\xb5\xab\xc9\x1a\x3f\x34\x90\x27\xbd\xe9\x3d\xdd\xa8\xd7\xf4\x73\xdd\xc5\x4d\xb3\x2e\x4a\xa2\x03\x22\xf5\xc6\x68\x50\x22\x0b\x19\x32\x37\xe9\x85\x42\x8d\xa4\x18\x58\x9d\xe1\xa6\x3a\x4d\xf4\x8c\x10\x52\x4f\x2e\xab\x6a\x52\xf4\x6b\x4d\xec\x53\x50\x55\xfe\xf7\x6b\x6d\xa5\x8f\x6c\x2b\xa5\x6d\x63\x50\xa9\xb3\x5c\x93\xab\x17\xc9\x1e\x2c\x42\x9f\x41\x06\xcf\xb4\x22\x11\x6d\x0c\xde\x59\x38\xa7\x7f\xc4\x11\x3d\x11\x4a\x75\x15\xd4\xf4\x40\x08\xce\x28\xeb\x32\x59\xd3\x30\x0d\x8c\xcd\x6b\x94\xf5\xbf\x62\xea\xa5\x61\x1b\xb0\xcb\xbf\x9f\x7c\xa5\xbe\xaa\x4a\x92\x56\xba\xca\x33\x81\x46\x2b\xc2\x4d\xd0\xed\x0b\x39\x7e\x00\xbc\x7d\x31\x07\xcd\x52\x6c\x35\xcf\x9a\x43\x73\xdd\xbe\x9a\xd3\x4d\x55\xde\xbb\xa2\xf3\x7a\x29\x89\xa4\xb9\xa6\x67\x1b\x71\x6f\x58\xd7\xc3\xcd\xc4\xb4\xaf\xed\xf1\xa6\x02\x9b\xd6\xf7\xb4\x39\x47\xd4\x19\xc6\x3d\x6b\x7c\xd1\xac\x24\xe9\xa5\xf7\xf4\xae\x5e\xdd\x88\xae\xad\xf2\x66\x85\x1b\x16\x7a\x26\x17\x7a\x56\x5b\xe8\xd9\xa6\x7a\x1b\x0b\xfd\x5a\x2d\x74\x55\x5b\x93\xb0\x39\x6d\x2e\x76\x05\xa9\x05\xdb\x5c\x6f\xf7\xe2\x91\xed\xbe\xde\x34\x2e\xf7\xae\xf9\xc9\x63\x4a\xad\x2d\xfb\x4b\x5a\x6a\xe0\x86\x69\xd7\x67\xe0\x85\x96\xf7\x44\x4b\xbf\xd1\x9a\x6f\x52\x4d\xcb\xa3\x4d\xf3\x02\x21\xca\x98\x94\x0b\x32\x9a\xe6\xa6\x03\xe6\xe2\x7d\xca\x8c\xe4\xca\x06\x62\x48\xf2\x1e\x3f\xf5\xe0\xf1\xbd\xca\x13\x0b\x98\x8a\x2f\x7e\xd8\x00\x79\x71\x4b\xd1\x9d\xba\xda\x74\x8d\x27\xb7\xb0\xfd\xe4\x67\x03\x58\x8a\x6b\x3c\xb1\xe6\xfd\x27\xd6\xa8\xff\xe4\x17\x03\x32\x91\x6f\xbd\x71\x9f\x1c\xbb\x4f\x4e\xb7\x9f\x2c\x0c\x90\x77\x9e\xae\x67\x1c\x1e\x1b\x60\xbc\x3f\x36\x7c\x18\x05\x4b\x96\x70\x9a\x47\xa3\x60\x69\x80\x71\x1c\xcb\x1f\x67\x39\x4d\xc5\xaf\x9f\xe8\x28\x52\xbf\xcf\xa6\x79\x22\x7f\xbe\x4a\x42\xf1\xe3\x34\xc8\xf2\x84\xfd\xf4\xa1\xbc\x40\x15\x28\x05\x3e\x81\x4c\x20\x12\x28\x44\x69\x51\xd4\xf0\x41\x5c\xb4\xba\x9e\xf1\x7d\x10\xe5\x41\xc2\x91\xd3\xcb\x44\xfe\x3c\x0e\x92\xe1\xd4\x00\xe3\x70\x91\x84\x33\xfe\xcd\x52\xbf\xcf\x23\xca\xff\xcc\xd8\xd7\x61\x3e\xc9\xd3\x8c\x21\xa4\x8b\x8c\xf2\x17\xfc\x60\x9c\x0c\xb3\x58\xfc\x7a\x17\x5f\xab\xc4\x17\x74\x28\x7e\x4a\x62\x8f\xb5\xba\x45\xbd\xa2\x4a\x51\xa1\x5e\x9d\xa8\x4d\x54\x26\x6a\x12\x75\x08\xfc\x02\x75\x69\x7c\x72\x4a\x09\xbf\xef\xd6\xed\xf2\xdf\x9c\x9e\x88\x73\xa0\x36\xc3\xc4\x1a\x00\xc2\x85\x3b\x46\xc6\x93\x5f\xac\x27\x73\xeb\xc9\xe8\xec\xc9\x6b\x31\x8a\xbd\x27\x6f\x7f\x35\xf8\x75\xb2\x59\x1e\xa9\x1b\xbb\xb6\x6d\x5b\xb6\x63\xd9\xce\x99\x6d\xbb\xfc\xff\x3d\xdb\xb6\x7f\x35\xf0\x60\xfd\x6c\xaa\x32\x18\xa8\x5e\x94\x97\xfe\x71\xf2\xd9\xcc\xcd\x0a\x77\xba\xb1\xe6\xad\x32\x22\xfc\x9c\xbe\x7a\x9c\xd9\xc9\xad\xee\x64\xaa\x2c\xf6\xc0\x73\x1c\x06\xc8\x27\xfc\x03\x36\x2a\xe5\x2a\x79\xc0\x40\x45\xad\x9f\x36\xb0\x69\x1b\x7d\x9b\xdb\x93\x56\xe0\x61\x1a\x6f\xae\xfd\x94\xd6\x00\x37\x56\x7f\x42\x0b\x5c\x00\xc0\x63\xbc\x5d\x69\xa5\x2b\x39\x09\x35\xe2\xb9\xda\x7b\xd1\x7e\x15\x80\xc1\x34\x4b\x2f\xec\xdc\xdf\x40\x8f\x0a\xe3\xd5\xcb\x19\x25\xfa\xc7\x6a\xb5\xe3\x00\x77\xa4\x3d\x0e\x27\xb9\xc8\xdf\xb1\xc1\xe0\x7e\x16\x8c\x30\xda\x4e\x78\xd0\xac\x9b\x24\xcc\x64\x1e\x06\xc1\xd1\x7b\x22\x4e\x9c\xee\x99\xbd\x77\x45\x97\x90\xe0\x62\xed\xed\x7a\x56\xbb\xc7\x8c\x3a\x1d\x8a\x32\xed\x19\x4b\xc4\x03\xe2\x50\xfe\x88\x18\xb2\xa2\xe0\x57\x21\x9e\x77\x37\x8c\x67\x71\xe2\x1a\x36\x6c\xb3\xff\x1b\xc2\xbf\xb8\x6b\x04\x51\x1a\x5a\x97\xb3\x60\x78\x65\x14\xa0\x80\x9c\x6f\xbe\x6e\x03\x4b\xe8\x48\x03\xb2\x61\x5b\xc0\xd5\x81\x26\x09\xa5\x51\x13\x57\x1b\xe0\x92\xce\x66\xf1\x4d\x1d\xa1\xc0\xd9\x24\x2e\xa7\x2d\xb4\xad\xc1\xcd\x83\x09\x8d\xb2\xa0\x85\xc2\x35\xd0\xe1\x32\xd0\x49\xdc\x7d\xfe\x1c\xe4\x7f\x75\xb8\x9b\x69\x98\x51\xa3\xf0\xa1\xec\xbe\x6f\x9e\xc3\xb6\xf8\xaf\x41\x64\x12\x4e\xa6\xd9\x5a\x47\x32\xac\xf7\xc1\xaf\xf5\x28\x2f\xd0\x1c\x1d\x01\xdb\xec\x58\x0e\x2a\x2b\x68\x2d\xb0\xd6\xc1\x8a\xf8\xb5\x76\x96\xd4\xd7\x7a\xba\x24\x7e\x13\xfc\x7a\x8f\x7f\xa3\x48\xda\x54\xa4\xa5\xe7\xef\x2f\xa0\x86\xc0\xd7\x3d\x29\xd7\x96\x2e\xbe\xdb\xa9\x1b\x04\x0a\xbf\xad\xfa\x15\x74\xa6\x3f\x7b\x3b\x5b\x2e\xa8\x7c\xfa\x76\x14\x44\x51\x9c\x6d\x0f\x83\xd9\x6c\x3b\xd8\xe6\xb5\x6f\x07\xe9\x76\x50\x2e\x36\x03\x17\xca\x77\xbc\x78\x4b\x36\x9e\x88\x87\x57\x97\xf2\xef\x78\x72\x91\x25\x39\xe5\xcd\x51\x39\x5a\x4a\x15\x33\x5f\x34\x87\x94\x5e\xf4\x13\x19\x49\x1b\xbc\xbb\x2b\xba\x74\x0d\x9a\x0e\x83\x05\x63\x9c\xaf\xb3\xf9\xcc\x90\xf1\x39\xab\x35\x5f\x3e\xfd\x61\x2d\xa0\xb8\x57\x03\x47\x19\x2e\x0a\x10\x78\x66\x61\x74\x15\x8e\x97\x0f\x63\x90\x80\x7a\x59\xd6\xef\x67\x71\x3b\x01\x95\x21\x81\x42\x50\x41\x23\xe1\x2d\xae\x86\xe5\xfb\x94\xc9\x2c\x8f\xc5\xc2\xa0\xdb\xb0\x9c\xd1\xdb\xec\xe1\xa6\x54\xb0\xbc\x35\x3e\x06\xd6\xbb\xb2\x63\x53\x9a\xe5\x8b\xf7\xc1\x8c\x66\x19\x5d\x43\x25\xbd\x0a\xbf\x3f\x7c\xfb\xf2\xec\xec\xe5\xc5\xd1\xc9\xdb\x93\x0f\xa7\xca\x99\x95\x8c\x00\xb4\x47\xf7\x77\xf7\x4c\x93\xe2\xea\xb6\xc4\xde\xcb\xf6\xbf\xe1\x21\x88\x5a\x8a\x4b\x17\x0d\x1e\xf5\xbd\xcc\xef\xf1\x79\xa0\xfb\x2b\xf5\x6c\xf8\xf6\x39\x38\x4f\x9f\x83\xf3\xf5\x73\xd8\x75\x38\xdb\xf1\xa1\xfe\xf4\x55\x67\xf0\x1e\xf5\x4d\x03\xb6\x0d\x33\xf2\xb2\xf2\x57\xe2\x17\x32\x06\xd5\x57\xf5\xe8\x8d\xc4\xde\x0b\x78\x5a\x50\xa6\x89\xd0\x64\x5f\xf1\x88\x61\x1b\xe9\x4d\x90\x70\x6e\x52\x91\x9a\x93\x6f\x64\x34\xc4\xdd\x67\x7b\xa6\x39\x83\xdc\x24\x8e\x7d\x1f\x86\x1c\x72\xc8\x71\x35\x86\xf7\xcf\xe9\xb6\xbb\xae\xbe\xd7\xd9\x3f\xf0\xfb\x93\x79\x8b\xd7\x3a\xa3\x63\x10\x42\x07\x46\x27\x98\x2f\xf6\x0c\xd7\xd8\x97\x9f\xb3\x8c\x7d\x1d\xc8\xaf\x09\xff\x32\x8a\x87\x57\x44\x6b\xfd\x68\x9a\x65\x8b\x74\xe0\x9e\xf7\xcf\xfb\xde\x6f\xe7\xa9\x6f\xe2\x76\x6a\xbe\xdc\x0f\xb6\xa7\x09\x1d\x13\xe3\x4b\x93\x9a\x5f\x1a\x07\xec\x8f\xb1\xdf\x0f\x0e\xf4\xba\xef\x59\x51\x6b\xae\xc6\x17\x49\x3c\xa4\x29\x77\x5d\x09\x3b\xf6\xa3\xd6\x93\xfe\x26\x30\x23\xd9\x6a\x75\x57\xe0\xde\xa7\x34\x8e\xf8\x8b\x93\xde\x70\x46\x83\xe4\x6d\x18\x51\xb2\xe3\xc0\x23\xea\x68\x5d\x6d\x74\x13\x95\x77\x05\xec\x38\x15\x0a\x99\xd1\x46\x63\x3d\x50\xa0\x78\xb0\x23\x1c\xdf\x9f\xdb\x4f\x9f\x9e\x7b\x7d\xcc\xaf\x4e\xd3\x69\x38\xce\x90\x8a\xaf\x22\x9c\xfe\x72\x27\x50\x5a\x43\xfa\xe7\x89\x7c\x31\x20\x1f\x29\x07\x24\x5c\x73\x9b\xaf\x58\xac\x22\xf6\x68\x9a\x47\xea\x7a\xaa\xe0\xa6\x33\x59\xa7\x93\xf1\x8e\x52\xde\x5b\xf4\xb6\x71\x70\xce\x91\x0c\x43\xf3\x6d\x32\x94\xb1\x35\x62\x48\x35\x82\x34\xe2\x20\xe8\xe5\x91\x68\x44\xca\xa8\x16\x2e\x42\x2e\x78\x6c\x30\x1e\x3a\x36\xe8\x89\x90\xa7\x2d\xc4\xee\xd0\x5e\x98\xbe\x64\x90\x88\x7b\xa6\x2b\x83\x93\x55\x38\xe3\xba\xfd\x51\xbd\xdb\x4b\x9a\xef\xef\x7f\x94\x91\xeb\x38\x1c\xc9\xd3\x96\xbb\xc2\xcd\x70\x2f\x4f\xe9\x85\x08\x36\x93\xca\xcc\x1d\x42\x32\x3d\x99\x75\x96\xf6\xc9\x3d\x5f\x5e\xd1\x25\x49\x06\x32\xfe\xbb\x6b\x70\x36\x67\x40\xc0\xfd\xad\xb3\x6e\x72\x29\x8c\x27\xc2\x56\xf2\x52\xfe\xd5\xf7\x4a\x95\xd3\x4c\x29\x3b\xd3\xd5\x3b\x76\x44\x87\x71\x12\xb0\xe6\x08\xa8\x9b\x20\xbd\x90\x0d\xa7\x23\x77\xc7\x01\xd9\x77\x2d\x11\xd8\x02\x35\x6e\x45\xc1\x6d\x97\xb9\xdf\x65\xd4\xff\x0d\x79\x3b\xe7\xb7\x4f\x87\xd6\xf9\xed\xd3\xb1\xdf\xc5\xc8\x3b\x1f\xed\x89\xbf\xb7\xbb\xb6\x75\x7e\xbb\x3b\xf4\xbb\xde\xf9\xed\x33\xf6\xfb\x6b\xea\xb3\x8c\xf4\xfc\xd4\xef\xe2\xfe\x5c\xbc\x01\x4d\xcb\x38\x72\x5b\x65\x1d\x24\xf5\x9e\xf9\xe2\x1d\x35\x49\xbd\x5d\x5f\xb9\x81\xd9\x13\xb1\x7a\x0c\x63\x87\x90\x54\xbc\xa4\x9f\x8b\xdf\x4f\xfd\x0a\x4d\xed\x65\x69\xc0\xf9\x30\x9f\x96\x55\xeb\xb9\x3c\xb1\xa7\x5c\xf2\x1c\xd8\x7b\x62\x5c\x67\x24\x57\x8b\x07\x86\x84\x9f\x7f\xbc\x89\x32\x34\xe3\x95\x0a\xcd\x74\x88\xc5\x49\xd7\x10\xb7\x8a\x31\x8d\x2a\xb6\x94\x51\x8c\x53\x15\xd1\x40\x8c\xcb\x78\x36\x32\x4a\xa0\xdd\x76\xa0\x51\x38\xaf\x60\x9e\xb6\x82\x84\x59\x30\x0b\x87\x15\xd4\xb3\x56\xa8\x3c\x1a\xd1\x64\x16\x46\xb4\x02\x7c\xde\x4e\x16\x63\xf5\x15\xd0\xd7\xed\x74\xc9\xc7\x90\x15\xdc\x37\xed\x70\xd3\x70\x34\xa2\x51\x05\xf6\x6d\x3b\x18\xd3\x2e\xaf\x28\x13\x2f\xf3\xc9\x54\x6b\xf0\xb7\x7a\x67\xd7\x3a\xf5\x59\x95\x75\xd9\xc8\x1a\x1e\x90\xa7\x76\xa7\x33\xdc\x7f\xfa\x4d\x59\x36\xf4\x6c\xdf\x1b\x3e\x71\x6c\xdf\x8b\x7d\x1d\xf2\x5b\x0e\xf9\xad\x0e\xe9\xb4\x43\x3e\xe3\x90\xcf\xbe\x29\x2b\xdd\x88\xd3\xb1\x39\xa8\x63\xeb\xb0\x6d\x58\x9f\xf2\x5e\x5b\xad\x9e\x89\xde\x93\x01\x7d\x45\x2a\x8f\xb6\xaf\x26\x29\x71\x44\xe6\xb4\x9a\xa4\x7c\x2d\x3c\x37\x08\x21\xd3\x4e\x67\x0d\x70\x51\xcd\xe0\xb2\x04\x2f\xb2\xe0\xc1\x4e\x16\xfb\x64\xf7\xf9\x73\x1c\x8e\x91\x74\xbd\x35\x22\x8b\x03\xe2\x7c\x35\x10\x6a\xc3\x42\x48\x7a\x96\x61\x2e\xdc\xd0\x5b\x1c\x7c\x3d\x70\x5c\xdb\xf7\x16\x4f\xbe\xf1\x7b\x9c\x59\x6d\x8d\x07\xaa\xbf\x46\xae\x6a\xe3\x48\x98\x81\xb5\xc8\x36\x32\x36\xae\x2e\x45\x22\x0c\x15\x8e\x96\x22\xde\xc2\x77\x6b\xab\x6b\x2d\xbb\x34\x3a\x33\x76\xd7\x7a\xe1\xa9\x68\xd5\xbc\xad\x17\x60\xd9\x9a\x7a\xbd\xa9\xc7\xe6\xbc\xc7\xe6\xbc\xc7\x3a\x9d\x25\xff\x5a\xca\xaf\x6b\xfe\x75\x2d\x7a\x93\x57\x39\x21\x73\x21\x5e\x2e\xc5\x9f\xeb\xad\x64\x30\x1e\x20\xd5\x52\xd1\xbf\x25\xbf\x36\x60\x5d\x01\x9a\x60\x17\xa9\x96\xb7\x83\x5f\x36\xc0\xab\x8e\x9c\x94\x7d\x36\x29\xd8\xff\x34\x33\x55\x42\x94\xb2\xd5\xe9\xe8\xdf\x97\x8d\xef\x6a\x59\x0e\x02\x17\x05\xe5\xf0\x8c\x27\x10\x94\x83\x71\xc9\x3e\xd6\xd5\x36\x3d\x85\x43\xdf\xa7\xd7\x41\xa0\xb3\x80\x46\xdd\x10\xf4\x6a\xfb\x13\x93\xc5\x82\xf6\x0d\xfb\x61\x61\x69\x4b\x8a\x75\xd2\xc9\x40\xbb\x98\x22\x4a\x71\xb9\x46\x08\x35\xea\x50\x92\xf3\xff\x4a\xb0\x90\xe9\x86\xc1\xb7\x9a\xb0\x4e\x66\x59\x48\x6d\x66\x5b\xc2\x7b\x53\x7d\xeb\x97\x66\xdf\xdc\x69\xe2\x5d\x01\xb3\x96\xf8\x18\x9e\x0f\x91\x14\x24\x2a\x97\xa0\x14\xd3\xde\x34\x48\x4f\x6e\xa2\xf2\x8c\x2b\xc2\x4c\xae\x10\x9e\x0d\x47\x41\x16\x58\x86\x19\x99\x5f\x32\x79\x3a\x69\xa8\xb7\xd4\x8b\x7c\x6c\x7e\x69\x7c\xa9\x99\x03\xaa\x2d\x70\x60\x6c\x1b\x66\x26\xe5\xa2\x6d\x03\x33\xd9\xbf\x3c\x94\xe5\x33\x06\xc5\x03\x24\xfd\x2e\xb2\x04\xd3\xb0\xc6\x93\x32\xbe\x34\x09\x6b\x23\xdf\xe9\xa0\xdc\x6b\xcc\x5c\x06\xee\x37\xe0\xa0\xfe\xc9\x99\x38\xc6\xae\x72\xd4\x28\x04\x9a\x64\x72\x89\x0c\x53\xd4\x89\x0d\x1e\x0e\xff\xb2\x49\xcf\x25\xa3\xe7\xb2\x46\xcf\xe5\x43\xf4\x5c\x0a\x7a\x2e\xeb\xf4\xac\x9d\x3b\x68\xf4\x5c\x06\xc3\xab\x09\x77\xb9\x60\xd5\x49\xbb\xac\x48\xab\x26\x30\x27\x51\x52\x28\xea\x66\xa0\x55\x3e\x76\x85\x00\x40\x18\xb5\xfa\x9a\x93\x45\xc6\x71\x94\x59\x37\x34\x9c\x4c\x33\x97\x03\x62\x97\x0b\x03\x9b\xe0\xa5\xf3\x2d\xd7\xee\x3d\x67\xa0\x52\x28\xb8\x17\xbb\x08\xe5\x29\x21\xb1\x5b\xee\xe9\x1b\x0b\x71\xb9\xdb\xe5\x41\x64\x32\xe4\xd8\xf6\x13\xcc\x8a\xc9\x2d\x7e\x53\xa9\xeb\x30\x0d\x2f\xc3\x19\xa3\x4d\x42\x62\xb7\xb1\xdf\x6f\x2a\x9a\xd1\xdb\xcc\xd2\xc4\x56\x26\xbe\x58\xaa\x50\x35\x30\x4d\xb0\x46\x47\x63\x88\x07\x5f\xee\xa7\x8b\x20\x12\x87\x53\x6c\x71\xa4\xd5\x5c\x67\x4b\xc2\x9c\xa1\x1c\x9b\xc6\x01\x2b\x29\x17\x2e\x53\x43\x59\x99\x03\xc3\x95\x85\x79\x77\xb1\xc2\x4a\x81\xd8\x7b\x44\x61\x7e\x90\x42\x0b\x84\xb7\x68\x8f\xde\x2e\xe2\x24\x4b\x49\xbc\xfe\x98\xb3\x8c\x21\xb1\xdb\x1e\x12\x20\x22\x95\x6a\x3a\xa2\xb3\x70\x1e\xf2\xf0\xf5\x46\xcf\x80\x90\x64\xbd\x79\x70\xfb\x82\x2e\xb8\xb3\x8c\xbb\xa2\xf9\x22\x7a\x9b\x22\xe1\x35\xfd\x2e\x27\xf9\x6a\xe5\xa8\xd3\xf2\x2b\xba\x4c\x51\x80\x7b\xe3\x38\x79\x59\x0b\xc9\x3c\x13\x75\x0e\x49\xe0\xcd\x7c\x18\x93\xac\x97\x06\x63\xda\xe9\xd4\xfd\x3b\x0f\x31\x4c\xe5\x9d\x6d\x8b\xcf\x27\x11\xb4\x6a\x88\x61\x41\x12\xf6\x67\x44\xd2\x41\x6a\x46\xe6\xcc\xe5\xaf\x32\x76\xc6\xf2\x89\xbf\xe1\x09\xbf\xc5\xdb\x02\x93\xcf\x77\xf2\xd5\xaa\x4c\xe6\x75\x89\x54\xdc\xe9\xe8\x94\x0f\x71\xe5\x60\x7c\xa7\xea\x82\xd5\x2a\xdf\x0f\x71\xe9\x5a\x06\x0d\x61\x04\xb9\xe9\xe0\xad\xd8\x1b\xf9\x64\xc8\xc3\xb6\x61\x88\x8b\x6a\x38\x42\xc6\x87\x66\x41\x96\xd1\x88\xff\xce\x23\xf5\xa5\xf5\xa0\xe6\x6d\x10\x45\x24\x6a\x1d\x89\x98\x44\xbd\xf8\x9a\x26\x37\x49\x98\x89\x6b\x8c\x80\x0d\x07\x13\xb2\x50\x86\xb5\x46\xa9\xb6\xee\x90\x87\x3a\x30\x2b\x5b\x92\x55\xf3\x42\x7b\x5c\xfa\x8e\xfb\x08\x6f\xb9\x42\x5b\xad\x2c\x67\x87\x34\x02\xde\xad\x56\x51\x4f\x90\x30\xa0\x6e\xf9\x2c\x56\xef\xd4\x0c\x8b\xb0\xe9\xad\x07\x2c\x65\xe8\x02\xb5\x71\x14\x2d\x93\x47\x7b\xb4\x90\x93\x44\xea\x6e\x21\x86\x19\x49\x75\x69\x6b\xc8\x3e\x79\x50\xa7\x31\x09\xf6\x4a\x8d\x79\xb8\xa7\xe4\xdc\x07\x3a\x66\xec\xcd\x7c\x36\xb9\x3e\x63\xfe\xf0\x79\x17\x8b\x79\x57\x56\xc8\xf1\x88\xf6\xed\x21\x9e\xb9\x5a\x31\x20\x21\x11\xf1\xdc\x4e\x87\xd7\x46\x94\x43\xf6\xd2\xbb\xf7\x50\xeb\xcf\xbb\xc2\xf5\x78\x63\x18\x28\x54\xca\x65\xa7\x83\x36\xb5\x1c\x17\x1c\x2d\x45\x99\x97\xf8\xfc\x50\x05\x82\xa2\xce\x1a\xf0\x5d\x35\x4d\x5b\xce\x66\xc4\x6e\x47\x05\xb5\x3b\xdc\x35\x4b\x19\xa6\x4d\xf7\x47\x5e\x39\x0e\xd7\x21\x7a\x61\xfa\x5d\x3e\x1e\xd3\x84\xc7\x38\x6f\x49\xe7\x01\x97\xd7\x58\x55\x3b\x45\xca\x00\xbe\x9a\xa5\x7c\x2a\x30\x69\xca\x4b\x4a\xf5\x9c\xfd\x56\xc5\x95\x30\xe6\x25\x3e\xb9\x0b\xdd\x04\x66\xee\x8e\x03\x32\xd3\xbd\x2b\x8a\x2a\x3c\x5c\xe2\xcb\x18\xec\xaa\x2c\xb0\x75\xaa\x7e\x47\x6c\xe3\x9d\x31\x01\xb1\x4c\x2b\xe5\xde\xde\x9c\x50\x88\x7a\x43\x92\x41\xd4\x1b\xad\x9d\x0e\x47\xbd\x98\x77\xf3\x6a\xb5\xe9\x06\x31\x83\xbb\xea\x6a\xd2\xdd\xb1\x79\xec\xbb\xa4\xc0\x05\x44\xbd\xa4\xd6\x03\x5c\xc3\x66\xa5\x47\xd5\x0c\x39\xe5\x8e\x74\x3a\x1d\xf1\xb7\x9c\xc2\x67\xc1\xa4\xe4\x65\x6b\x35\xae\xc3\xc2\x9d\x10\x70\x8d\xe3\x78\x94\xcf\xa8\x51\x6c\xbe\xf0\x34\x2e\x2e\x68\x2a\xc1\x54\xb1\x1d\x5b\x90\x9b\xad\xfb\x85\x74\x3a\x19\xf7\x84\x12\x71\xe7\x32\xdf\x74\xb2\x92\x6f\xb2\xc5\xf2\xac\xd3\xe6\x57\x9e\x76\x3a\xec\xff\xbd\xaa\xa6\xaa\x90\xd8\xc6\x24\x71\xc2\x87\x2e\x77\xf6\x83\x45\xc4\xbb\x04\x25\x9b\x48\x4f\xc0\x90\xce\x4f\x8c\x66\x8f\x8b\x56\xd0\x02\xc3\x2e\x27\x48\x06\x42\x28\x3b\xb9\xba\x53\x08\x85\x90\x1c\xf5\x46\x28\x81\xb0\xdd\x77\x52\xe6\x17\xbd\xcb\x30\x1a\x71\xba\x20\xd4\x0c\x61\x59\x1f\x45\x2d\x93\xba\xd1\xda\x41\xcb\xd3\x19\xe5\x35\xb9\x68\x89\x2e\x48\x8b\x2a\xaa\xbf\xf2\x60\x9a\x61\xc8\x58\x75\x71\xbb\x17\x8e\x35\xde\x57\x17\xfa\xc5\x62\x10\x9e\xd6\xa2\xde\x82\x87\x36\x45\x51\x2f\x25\x0e\x2e\x90\xf7\x19\xfc\xa3\xb6\xa1\x0f\xea\xdb\x3b\xc5\x6e\x0b\x13\x7d\x80\x2b\xb7\x32\x8c\xca\xfa\x50\xf3\xf3\x99\xb4\xc5\xd4\x55\xcb\xc5\x10\x0e\xa8\x9a\x19\x3d\xb6\xd5\x06\x59\x9c\xb4\x59\xad\xa8\xc9\xd0\x1a\xe7\x98\xb6\x72\x43\x55\x5d\x8d\xfb\x11\x42\xca\xf4\x1d\xf5\xbb\x6a\xf0\x40\xd1\xe6\x96\x15\x62\x24\x63\x53\x85\x24\x42\xbb\x22\x1e\xd3\x37\x22\x12\x13\x7f\x7d\xd8\x7e\xe1\xaa\x8b\x7d\x3c\x40\x3f\xd7\x7a\xc3\xea\x64\x39\x19\xd8\x6e\xc2\xb0\xf4\x46\xa1\xb8\x83\x85\xb4\xca\x0d\x06\x8e\x6d\xbb\x01\x7f\x05\x98\x4d\x13\x9a\x4e\xe3\xd9\x08\x66\x15\x40\x3e\xe8\x7d\xe5\xe6\x30\x24\x11\x13\x8d\xde\x33\x81\x26\x89\xde\xca\x58\x27\x15\xd8\x70\xf0\x74\xd7\x1d\xc2\x94\x44\xbd\x61\x90\xd2\x53\x1a\xa5\x61\x16\x5e\x53\x58\x54\xc7\xd8\xd3\x4e\x67\x0a\x23\x56\x51\x7c\x45\xa3\x53\xba\x08\xf8\x28\xc0\xbc\x42\x33\x1a\xf4\xb7\xcd\xfe\xc4\x1d\xc1\x92\x44\xbd\x71\x18\x8d\x0e\x67\xb3\x63\x1e\x9d\x2f\x85\xeb\x0a\xd5\xb2\xd3\x59\xc2\x84\xd1\x14\x46\x3c\xfb\x68\x1a\x24\x92\xaa\xcb\x0a\xdd\x64\xe0\xb8\x13\xb8\x20\x51\x2f\x1c\xc1\x4d\x95\x7e\x21\x2c\x83\x2e\xe0\x25\x89\xb8\xc0\x02\xb7\x55\xe6\xcb\x81\xe7\xbb\x2f\xe1\x94\x44\xbd\x74\x1a\xe7\xb3\xd1\x69\x9c\x64\x70\x52\x01\x9c\xae\x56\xa7\x70\x48\x22\x6e\x8b\x1b\xc1\x55\x95\x73\x38\x88\xdd\x43\x38\x66\x25\xe3\x84\xe5\x9d\x55\x79\xc7\xed\x31\x6a\x69\x2f\x1d\xc6\x09\xb5\x32\xf1\xb7\x70\x8f\xe1\x48\x75\x51\xf8\x07\x85\x0f\x55\xa3\x8f\x3a\x9d\x23\x78\xcf\x07\x22\x1b\x4e\x0f\x67\xb3\x33\x06\x94\xc2\xbb\x0a\xe4\x7d\xa7\xf3\x1e\x3e\xb1\xf6\x46\xc3\x59\x3e\xa2\xaa\xeb\xde\x54\x20\x9f\x3a\x9d\x4f\xf0\xa2\x02\x39\x65\xd5\xc2\xdb\x0a\xe0\x45\xa7\xf3\x02\x5e\x91\xa8\x77\x4d\x93\xcb\x38\xa5\xf0\x47\x95\xf7\xaa\xd3\x79\xb5\xf5\x2f\xbc\xe1\x8f\x17\x2c\x39\x25\x77\x6a\x66\xbb\x21\xa8\x69\xec\xa6\x50\xce\x58\x77\x06\xcd\xd9\xe9\x8e\x21\x4c\x8f\xf4\xb9\xe8\x2e\xa0\x3e\xf3\xdc\x39\xd4\xa7\x98\x7b\x0d\xeb\x13\xca\xbd\x84\x70\xe4\xde\x00\x9b\x27\xee\x2d\xd4\x7b\xd6\x7d\x03\x7a\x3f\xba\x6f\xa1\x9a\x33\xee\x09\xf0\x19\xe2\x5e\x81\x98\x0e\xee\x19\xc8\x3e\x75\xff\x00\x35\xc2\xee\x07\xa8\x8f\xa7\xfb\xae\x00\x75\xcc\x79\x14\xcf\x64\x1c\x46\x94\x09\xe6\x90\x95\xf6\xdb\xa4\xba\x53\xaf\xc0\x1e\xba\x31\x9c\x85\x69\x46\x28\xd0\xf2\x04\x2c\xa5\xc2\x18\x71\xbd\x98\xd8\xb5\x9a\xf1\x48\x0f\x1c\x4d\xea\x2d\x33\x3d\xc7\x1f\xe8\x1f\xee\x1d\xd7\x68\xdc\x1d\xa7\x10\x7e\x8b\x2f\x66\xf1\x04\x7d\x69\xa9\xff\x9d\x47\xa7\xbc\xde\xed\x85\x18\x32\x77\xdb\xf8\x92\x71\xcf\x61\x90\x21\x0a\x5f\x1a\x5f\x4a\x4f\x6d\xf2\x3c\xef\x62\x91\xb0\x31\xa3\xa2\x10\x4d\x52\x19\x30\x5d\x71\x12\x99\x0a\x21\x63\x1a\xf9\x6c\xa6\x52\x20\x96\xe5\x45\x2b\xd9\x6e\x2e\xe2\x6c\x8b\x03\x91\x14\x52\x12\xf7\x12\x9a\xe6\xb3\x2c\xad\x05\x56\xbf\x18\x8a\xb0\x04\x7c\x50\x99\xda\x5b\x9f\x8f\x1a\x63\xe8\x74\x64\x0d\x4c\xdd\xe1\x37\x8d\xbc\xe5\x9d\x4e\x15\x77\xa9\x0c\xe2\x23\x73\x50\x4a\xd2\xd2\xa1\x9b\x4c\xc5\xb2\x82\x0b\x61\x3b\x8b\xd2\xea\x8c\x72\xad\xf1\x2d\x86\x13\xc2\x3a\x62\x6d\xac\xec\xd6\xb1\xb2\xf5\xb1\xb2\x7d\xd7\x30\x20\x23\x9e\xcf\x8f\x2c\xf5\x46\xaa\x19\x8a\x2b\x7b\x09\x75\x57\xbc\x0e\x57\x2e\x2a\x1e\x87\x9c\xeb\xb0\xd2\x62\x2f\xd9\x8f\xf7\x12\x93\x38\x58\x9e\x2f\x32\xa6\x10\xa2\x88\x07\x25\xd7\xd0\x94\x12\xd4\x5d\x7d\x50\xdd\x0c\xf4\x21\x75\x45\x71\x5a\x2f\x5b\x54\xbd\xb5\x61\x42\xff\xc5\x3e\xf2\x7c\x68\x5b\x0b\xf5\x49\x2f\xf0\x80\x9c\xb4\x6c\xa9\xa9\x80\x4c\xa2\x77\xd7\x62\x0b\xf3\xf0\x69\xa5\x9e\x1b\xf3\x30\x6e\x65\xbf\xc5\xfb\xc1\x5e\xcc\xfb\x8d\x4f\x8c\x20\x0a\x66\xcb\x3f\x28\x12\xcd\x54\xed\x8b\xbc\xd8\x87\x84\x0e\xe3\x64\xe4\xc6\xc0\x95\x74\x37\x2e\xe0\x4e\x4c\xea\xe3\x60\xe1\x26\x20\x27\xb8\x1b\x42\xa3\x67\x69\xbd\x67\xb3\xa2\x1c\x02\xb9\x3e\xc4\x05\x6f\x59\xbe\x28\x2a\x2b\x96\xbb\x42\xfa\x1a\x29\xe9\xcd\xf7\x67\x7b\x39\xa3\x57\x01\x0d\x49\xe4\xe5\x3e\x8c\x89\x0d\x53\x52\x9b\x31\x8c\x95\xaa\x62\xe3\xfd\xe9\xde\xd8\xac\xee\x9b\xd6\x00\xbd\x71\xad\xf3\x4a\x79\x7d\xc1\xb7\x9e\xd4\x5b\xf0\x78\xf2\x3e\x91\x44\xbb\x8e\xb5\x90\xeb\x7b\xb5\x72\x0a\x50\x1f\xfb\xc4\x5e\xad\xd4\xc7\x81\xb3\xee\x7a\xfd\xef\x74\xb9\x2d\x72\xb7\xa7\x41\xba\x9d\xc5\xdb\x97\x74\xfb\x60\xdb\xde\x0e\xa2\xd1\xf6\x3e\xd9\x76\x0c\xbc\xb5\x20\xa2\x36\x71\x67\x94\x7a\x0b\xad\x5a\xc5\xe9\x6a\x03\xb5\x90\xe3\x54\x6b\x15\xdf\x15\xd0\x10\x16\x58\x0d\xdd\x50\x0e\x5d\xfe\xe7\x87\xae\x68\x0c\x5d\xaa\x8f\x5b\xb9\x3a\x24\x71\xed\xc6\x2b\x6a\x8d\x73\x63\x57\x42\x7b\x01\x93\xd7\x79\x38\xbe\xba\x40\x69\x39\x6e\xc2\x1d\xd6\x72\x24\xfc\x26\x5f\xb4\x83\xfb\x21\xe3\x2d\x81\x19\xc9\x9a\xdc\x79\x58\xe1\x98\x31\x19\x6b\xc6\xcf\x04\x6b\xfc\x7a\x5a\x81\x8c\x19\xc8\x18\x16\x24\xeb\x95\x3d\x02\xa3\x2a\x7f\x31\xb8\x2b\xdc\x05\xcc\xcb\xfc\x14\x96\x55\xee\x9c\x95\x9e\x73\x75\x91\x9f\x69\xc8\xb8\x50\xd7\x64\xc7\x81\x09\xb1\x1c\xb8\x24\x76\xeb\x92\x8c\x55\x6c\x7b\xb6\x61\x19\xe7\xd1\xdf\xe9\xd2\xdd\x36\xd4\xde\x64\x70\x3f\xb2\xfc\xdd\x54\x24\xb7\xa8\x0b\x32\xed\xc9\xed\x25\xc6\x25\x0f\x15\xfb\xdd\xab\x7c\x36\xdb\xce\xe8\x6d\xa6\xef\x6f\x31\x7c\x69\xc0\x36\x97\xf6\xdc\xed\x2f\xb1\x4a\xbe\x10\x02\x20\x6e\xec\x34\x25\x13\x2e\xd9\xc4\x0d\x89\x1f\xc3\x85\x5f\x12\xcf\x87\x5b\x62\xef\xdd\xee\x0f\xd5\x5a\xbb\x2d\xd7\xd9\x29\x19\x7a\xb7\xbe\xbe\x37\x9f\x47\xef\xd7\xf7\xe2\xd3\x9e\xdc\xa0\xe5\x9e\xac\x68\x38\x61\xfd\x78\x48\xec\xbd\xc3\xfd\x1b\x85\xfc\xb0\x44\x7e\x45\x6e\xbc\x43\x1f\x8e\xc9\xa9\xea\x99\x2b\x0c\x67\xe4\xae\xd8\x3a\xee\x85\x29\x97\x9c\x06\xe8\xcc\xbb\xf2\xc9\xb1\x68\x34\x70\xe7\xbe\x27\xec\x9f\x97\x62\x93\x38\x56\xbd\xe1\x0a\x40\xa7\xde\x2b\x75\x89\x69\xb5\x92\xa5\x9c\x72\x1b\xe5\x4d\xe2\xb9\x7a\x73\xae\xda\xbb\x9e\xd5\x80\x71\x71\xd2\xe9\xa0\x4b\xd6\x88\x62\x42\x5e\x7a\x76\x65\x77\x78\x44\x5e\x2a\x6f\x29\x1f\x88\xb3\xf7\x61\xff\x68\xef\x03\x83\x9b\x98\xe4\xa5\xf7\xc1\xdf\x9a\xf4\xc9\x91\x56\xaf\xc1\xeb\x15\xd5\x6c\x07\xd7\x34\x09\x26\xd4\x35\x60\x22\x04\xb8\xf7\x44\x8e\xf4\xd6\xe4\xc0\x72\x3a\x1d\xf4\x9e\xa0\xf7\xe6\x04\xf7\x77\x75\xda\x8d\xd3\x46\xe9\xf7\x62\xb6\xbd\x23\x3b\xad\xd3\x63\xb5\xda\xb9\xb7\x83\x2e\x0f\x88\x9a\x05\xf5\x39\x6a\x9c\x47\x47\x53\x3a\xbc\xda\x56\x02\x6d\x35\xd9\xdf\x61\x0c\xe8\x7a\xb5\xba\x50\x83\x86\x3b\x9d\x77\x62\x84\x3f\x91\x91\x97\xfb\x5b\x9f\x06\x9f\x7a\x71\x9e\x2d\x72\xb9\xb5\x73\x26\x13\x41\xc5\x37\xdc\x50\x32\x9a\x18\x44\xaf\xbf\x17\xc2\x2e\x1d\xbd\x89\x46\xe1\x90\xa6\xee\x45\xaf\x9e\x50\x60\x17\x31\xdc\xe4\x2e\xcc\xe8\xdc\x4d\x41\xe0\x77\xbd\x7f\x04\x6e\xbf\x80\xa5\xa0\x94\x55\x81\x71\x51\xde\xfd\x07\x28\xc6\xe5\xc6\xf5\x86\xd8\xf0\x82\xc4\x6a\x62\xbf\xd9\x7f\xb1\xf7\x66\xc3\x46\x5c\x23\xe8\x8d\x22\xc8\x7b\x53\x6e\xca\x69\x2b\x67\x1f\x95\xcc\x79\xd9\xe4\xec\xc3\x3a\x67\x9f\x16\xba\x70\xa3\x8b\xa5\xed\x3c\xbc\x36\xb2\xe7\x91\x08\xaf\x15\x46\x13\x39\xeb\xcf\x23\x63\x2d\x5e\x7f\xf9\xb4\x62\x3f\xd9\x8b\xf8\x22\xae\xdc\xa7\x67\x5e\xe4\xcb\x21\xd6\x3c\xaa\x40\x40\x1c\x48\x09\x77\x37\xb6\x97\xef\xc7\x62\xdf\x97\xe6\x4f\x74\x40\xbd\xd0\xcb\x7d\xb6\x8d\xf8\x3d\xb5\x3b\xc2\x90\x70\x03\xa6\xd9\x80\xe7\x09\x6a\xaa\x9f\xab\x55\xcf\xb6\x1d\xdc\x9d\x6d\x39\x3b\x0c\x48\x39\x61\x0f\x23\x94\xc2\x10\xbb\x88\x83\x46\xbc\xe1\x64\x08\x41\x97\x0c\x71\xc1\x89\xe3\xc5\x89\xc3\x3d\x4b\x05\x5c\x27\x54\x1d\xc0\x43\x53\xea\x92\x61\x9c\xb4\x5a\x54\x36\xba\x8c\x49\xf5\x61\x34\xe9\xf5\x7a\x3d\x03\x03\x15\x17\x19\x75\xe9\x9f\x6b\x73\x9a\x84\xae\xdc\xcf\x6e\x52\xa2\x5a\x84\x6b\xa9\x08\xaa\x4d\xd7\xd3\x79\x31\x27\xe3\x44\xcc\x7b\xf6\xd3\x80\xef\x4f\x4f\xde\xf5\xc4\x56\x15\x8e\x97\x88\xc2\x9a\x0a\x5e\x9d\xaf\x92\x04\x65\x58\x9d\xe5\x13\x91\xcb\x2f\x71\xa2\xf2\x12\xa7\xbc\x0e\xda\x92\x31\xf8\xb2\xd2\x2b\x74\x56\x60\x0c\xc2\xf0\x4c\x1e\x46\x29\xd2\x14\xe5\x75\x05\xb8\xd3\x09\x05\x8a\x76\x51\x42\x4c\x9d\xad\x4c\xae\xc4\x54\x37\xe7\x66\x7a\x42\xa8\xeb\x09\xa1\xd0\x13\x64\xa4\x2a\xa6\x21\xb0\x6e\x63\x82\x79\xdc\x58\xc9\xca\xad\x80\x08\xc1\x49\xee\x42\xb9\xe2\x9b\x70\x6a\x41\x0a\x49\xa5\xd8\x8a\xd9\xa4\xe4\x1e\xed\xae\xe8\x92\xf0\x2f\x0c\x71\xd3\x18\xc2\xa8\xd6\xb4\x81\x3b\x9d\x58\x13\x84\x04\xcb\x0e\xb4\x14\xa2\x67\x33\xfd\x4f\xb6\x54\xf4\x4a\xc0\x26\x60\x63\x4b\xd7\x0f\x0c\x36\x74\x9f\x3c\x0d\x22\xf2\x74\xa8\xa8\xd6\xac\x50\x12\xe8\x9a\x92\x20\x4d\x67\xa9\x17\xaf\xcf\xb5\x70\xc4\x94\xce\x1e\x63\xa8\xa4\x45\x10\x15\x39\x0d\x1a\x47\x98\xdf\xaa\x85\x65\x4f\x57\xb7\x71\x92\x33\xf3\x52\x05\xcc\x88\x0d\xc3\x92\x33\xec\xcd\xf6\x87\x7b\x33\x46\x50\xe8\xcd\x7c\x94\x42\x8e\xb7\xe4\xe6\x90\xcb\x20\x8a\xf2\x53\x94\xd7\xe6\x5d\xb9\x9a\x66\xf1\x64\x93\xfa\xb6\xd5\xb6\x86\xf8\xd5\x83\x88\x80\x47\x71\x6f\x16\x4f\x7a\xc1\x62\x31\x63\xab\xa4\xd4\xce\xf8\x43\x84\x4e\xa7\xde\xc9\xff\x9e\x2f\xcc\x90\xf6\xc4\x12\xb2\xb5\x4b\xff\x74\xf3\xa5\xff\x53\xcc\x96\x13\x7a\x26\x8e\x8e\xbf\xc6\x10\xfc\xc7\x9c\x19\x37\x4e\xea\xfe\x0d\x4e\x8d\xff\xff\xef\x94\x53\x9e\x3a\x4a\x81\xbf\xce\x28\x1a\x75\x0c\x32\x37\xab\x3b\x21\xab\x95\x55\x21\xd8\xc9\xb8\xd3\x41\x7a\xc6\xe1\x6c\x31\x0d\x2e\x69\x46\xe2\x5a\x32\xde\x7c\xb4\xb9\xe9\x70\x72\x8d\xc5\xd5\x09\xe4\x81\xad\x69\x9d\xc4\x3a\x8d\x84\x10\x75\xe1\x78\x27\xc5\x5b\x77\xc7\x96\x92\xa4\xdd\x94\x24\x3d\xcf\x2e\x63\x8a\x5b\x8e\xef\x0b\x13\xc0\xac\xd6\x49\x10\x09\x0b\x9a\xfa\x7c\x8f\x2b\x3d\x58\x8e\x47\xc9\x9e\xeb\xbd\x75\x50\x5a\x0a\x26\xea\x74\x4b\xe9\x5e\xb1\x7a\x5d\x51\xab\x2e\x25\x41\xb5\x78\x73\x12\x54\x6b\x75\x46\x02\x6d\x61\x0e\xf9\x53\x87\xda\x9a\x18\x93\xa0\x65\x0d\x94\xb6\x1f\xcd\xfa\xdb\x86\x10\xaa\xc9\x9a\x56\x93\x35\xaf\x4d\xd6\xc6\xb4\x1b\xb6\x4d\xbb\x71\xf1\x3f\x87\x37\x07\x4d\xab\x0b\xd1\x82\xbe\x77\x6e\x9d\x7b\xe7\xfe\x79\xff\xfc\xee\xbc\x38\x47\xe7\xf8\xbc\x7b\x6e\x9e\x0f\xce\x7b\xe7\xe7\xe7\xbf\x9d\x7f\x71\xbe\xf2\xfb\x93\xad\xb6\x1b\x56\x85\x23\x59\x3f\x7a\xdc\x6d\x3d\xb6\xdc\xd5\x8f\x2d\x77\x7d\x97\xf3\x45\xb6\x2b\x54\x7e\x09\xab\xe0\x40\x91\xf2\x65\x58\xa6\x24\x60\xac\x0c\x1e\x28\x43\xbd\xcd\xe0\xe7\xe5\x3b\x3b\x31\x37\x33\x65\x33\xb7\x7a\xc9\x26\x8e\xff\xe2\xb5\xe3\x3f\x69\xf4\x15\x33\x05\x51\x4a\x41\x5e\x65\x3f\x34\xc4\x30\xac\x16\x52\x79\x6a\x25\xd6\x5d\x30\xe8\x3d\x77\x1d\x50\xeb\x31\x68\x2e\xc3\xb4\x68\xb9\x17\x56\xdb\xdf\x73\xb1\xfd\x7d\x85\x37\x74\xa5\x88\x58\x5d\xbd\xcd\x8b\xab\xd5\x53\xdb\xdc\xc4\xd6\x16\xeb\xcb\x49\xdb\xd9\xd8\xd6\xc7\xb6\xb6\x58\x5b\x61\xb5\x3d\xad\xf7\x15\xdf\xd3\xe2\xe6\x9a\x5b\xdf\xd2\xe2\xb6\x7d\xa8\xb6\xad\x39\x7c\x4b\x4b\x79\xb8\x24\xa9\x79\x4d\xc8\x98\x47\x49\x2a\x45\x79\x58\x62\xb8\xa8\xdc\xb9\xde\x10\xcf\x87\x97\xc4\xde\x7b\xb9\x7f\xbd\xf7\x92\x8d\xc7\x8d\xf7\xd2\x17\x87\x5d\x5c\x0b\xb8\x14\x3d\x76\xcb\xd4\x04\xb8\xa3\x6c\xcf\x4a\x5d\x5b\xc6\x1c\xe1\x6e\x02\xf8\xa2\xbe\x04\x7a\xbb\xa0\xc3\x8c\x8e\xca\xa4\x65\xb5\xce\x67\xe2\xe5\xd6\xa4\xd2\xd2\x6e\x61\x82\x81\x57\x80\x18\x79\xb3\x20\xcd\xde\x54\x24\x9a\x17\x18\xab\x83\xa7\xbf\x5a\xaf\x56\xe9\x29\x4c\x70\x51\x5c\x12\xcb\xd1\x4e\xa6\x3c\x1f\x0e\x89\x03\x57\xe4\xc2\xbc\x86\x63\xe2\xec\xef\x5f\x58\x0e\x9c\x11\x7b\xef\x6c\xff\x62\xef\xac\xa6\xe0\x1e\x11\x1b\x3e\x90\xab\xbd\xa3\xfd\x0f\x7b\x58\x27\xec\x6c\x8d\xb0\xa5\xf9\xe1\x21\xd2\xf6\xc9\x64\x70\x44\x3e\xb8\x57\xe4\x03\x7c\xd0\x9d\xc0\xa1\x2b\xeb\x08\xf7\x77\xcd\x23\xbc\x75\x45\x3e\x6c\x89\x63\x20\x2d\xc4\xce\xd2\xfa\x60\x3a\x18\xde\x91\xc5\xe0\xda\x2d\x5b\xc7\x6a\xbc\xc6\xe6\x05\x7c\x22\xc2\x96\xe2\x9d\xb9\x8b\xb7\x3e\x79\xef\x4c\xc7\x27\xc8\xd9\xdf\x3f\xc3\x5a\xc3\xdf\x90\x77\x7b\x6f\x0e\xc8\xfb\xbd\x37\x96\x5a\x84\x2f\xc8\x1b\xcb\x81\xb7\x24\xf2\x4a\x6f\xdc\x2f\x30\x5f\xc5\x6f\x3b\x1d\x74\xe3\xbd\xf0\x89\x83\xe1\x93\xf7\xc6\x27\xe8\x93\xf7\xc6\x74\xfc\xfd\x7d\x67\xe5\xe0\xce\x5b\x60\xd3\xf4\xac\xd3\x61\xc9\xfe\x8a\xa0\x13\x9e\xbb\x3a\xf1\xde\xf8\x98\xc3\xac\x44\x8a\x28\xdd\x39\xee\x74\xd0\x21\xb9\xbf\xff\x5e\x3c\xd4\x7b\xac\xfb\xf8\xc6\x3e\x21\x87\x80\x2e\xc9\x0b\xbc\x4f\x96\x22\xd6\xe4\x56\xad\xb7\x76\xbb\x4b\xeb\x12\x17\x85\x30\x88\xac\xaa\x34\x9d\xf5\x41\x7b\xa8\xd2\x83\x89\xac\xe1\x84\x7c\x2a\x1a\xe2\xc0\xe5\x01\x29\x05\x02\x7e\xb9\xdf\xb3\x6d\xc7\x3d\x6c\x32\xa5\x10\xdd\xc0\x1c\x37\x39\x53\xbb\xc9\x4c\xb5\x29\x64\x3d\x41\x36\x24\xd5\x82\x8f\x06\xb6\x1b\x71\x43\xdc\x46\x3b\x20\xae\x80\xc2\x81\xed\x86\x10\x30\x04\x8d\xa6\xb5\xb1\xb1\xec\x01\x36\x96\xf4\x4b\xce\x32\xae\xa2\xf4\xa4\x56\xe5\xec\x77\x36\x18\x9a\xe3\xfe\xcc\x1d\x0f\x1c\x77\xf8\x98\x46\x56\xab\xeb\x1f\x7d\xdb\xf6\xa8\x9b\x67\x07\x22\xc6\x02\x12\x62\x89\x78\xa8\xf0\x18\x8d\x39\xed\x74\x2c\x1e\xd5\x7f\x90\x90\xd8\x4d\x57\x2b\x4b\xc6\xf8\x47\x28\x24\xb1\xe5\x60\x2b\x31\x9d\x03\x92\x75\x3a\xf2\xc0\xc4\x4b\x20\xf4\x31\xaf\xa5\x54\x61\xa9\x17\x5b\x8e\xdf\xe9\xc4\x56\xd2\x00\x65\xe9\x18\xa2\x47\x5a\x65\x36\x1c\x01\x6b\x11\x5e\x6d\x1e\xdc\x55\x5c\xa6\x56\x6b\x3a\xc1\x8c\xbf\x57\x67\x76\xf6\x5e\xb8\x1f\xed\x85\x0d\xa8\x10\xfb\x2b\xc6\x0c\x23\x2b\xb4\x9c\x2d\x4d\xeb\xde\xb4\x9f\xda\x9b\x36\xd2\x35\xef\xfa\x42\xa5\x84\x90\xaf\xde\xa8\x3c\xbf\xa9\xd9\x0c\x33\x6d\x12\x52\xf1\x66\x92\x6f\x13\x31\x7f\x85\x1b\x69\x61\xdb\x58\xb6\x16\xe2\x0d\xcb\xb7\x9b\x99\x17\xf8\xd5\x45\x4e\x8e\xc3\x31\x4a\x57\xab\xb5\xeb\xc0\xbc\xba\x72\xaf\xd2\xf8\xcb\x34\x94\x57\x47\xbb\xe2\xb4\x22\x5f\x3b\xad\xa0\x28\xf7\x66\x3e\xa4\x10\x62\xf1\xaa\x2e\xed\x74\x78\xa0\x81\x32\x41\x9e\xd3\xe4\x55\x90\x4c\x2c\x0f\x34\x42\x75\x86\x56\x0a\xd0\x05\xef\x4b\xcf\xe7\xa2\xed\x7a\x0f\x23\xdd\xa2\x50\xb0\x03\xe3\xe2\x62\x16\x8f\x82\x74\x7a\x31\x65\xff\x94\x36\xa0\x17\x17\x06\x24\xe4\x5b\xdb\xfe\xda\xf9\xf6\xdb\xdd\xe7\xcf\xbe\x7e\x66\x7f\xfb\x2d\x9b\xd8\xa5\x51\xdd\x2b\x89\xcb\x37\x20\xae\x52\xff\x46\x23\x61\xe3\xa6\x65\x07\xa4\xff\xdb\xb9\x02\xe8\x99\x83\xa3\xca\x5a\xed\xdc\xff\xa2\x0f\x29\x59\x33\xd2\xcc\x3a\x1d\xfe\x3a\x5b\x88\xc6\xa5\xe1\x5e\xa7\x93\x41\xbe\x0e\x9d\xd2\xd9\xb8\xd3\xa9\xfe\x5d\x2f\xc6\x52\x61\x46\xd2\xd5\x2a\x5f\xad\x14\x69\xc8\xd0\x4c\x2f\x0c\x8c\xb4\xa7\x0b\x43\x7d\xbe\xed\xa0\x1d\x26\xd7\xab\xf5\xd0\xd0\x19\x58\xc7\x32\xcd\x6a\x87\x94\xd6\xa7\x0d\xe9\x6f\x53\x5c\x50\xcb\xe1\xe1\x08\x43\x1e\x8e\x30\x43\x8c\x21\x40\x0c\xb4\x34\x99\x8f\xe5\xb8\x5a\x0e\x1b\xd7\x29\xd6\x0e\x30\x39\x8f\xd1\x9c\x74\x27\x12\x0b\xf5\x12\x9f\x90\x8a\x92\xa4\x86\x22\xc3\x07\xba\x3b\xd4\x71\x53\xe5\x11\xae\xbf\x07\x0a\xaf\x6b\x43\x28\x25\x80\x04\x2b\x4f\xe0\xa1\x17\xf9\x24\xe3\xaf\xb1\x20\x02\xcd\x70\x5f\x73\xf3\xa7\x5b\x2e\xee\x10\xcd\xc3\xdb\xa2\x61\x82\x36\x0d\x52\x65\x5f\x34\x82\xb9\xa8\x4b\xd3\x74\x96\x44\x0d\x95\x96\x78\xbd\x66\xc4\x09\x13\x32\xf3\x8c\x8b\x0b\x6e\xcf\xf6\x29\xbd\x48\xa7\x41\xc2\x67\xb0\x0f\x97\x04\x8d\x48\xdf\xfb\xad\xe7\x9b\x5f\x48\x37\xd0\x93\x4e\x67\xc2\xef\xf7\xd5\xdf\xde\x9b\x97\x17\xef\x3f\x9c\x9c\x9d\xac\x56\x86\x81\xf1\xc0\x10\x36\x93\x28\x4d\x86\xf8\xc2\xe9\x19\xe6\x88\xfb\x8f\x27\xcb\x72\x05\xc2\x0d\xb9\x6e\x9c\xdd\xc2\x4b\x72\x5d\xe5\xdf\x92\xd2\x19\xbb\x61\x5e\x08\xdb\xd2\x1b\xac\x39\xb8\x38\x3f\xff\xed\x8b\x5e\xd7\x1c\x20\xec\x9d\xfb\x77\x05\x53\xc4\xd6\x94\xa2\x7e\xbd\x86\x55\xb9\x7a\x71\xaf\x3b\x40\x03\x72\x7e\x7e\x8e\xf0\x6a\x7b\x1c\x27\x6c\x51\x89\x04\x1f\x33\x44\x5f\x38\xbd\xee\xc0\xc0\xa6\xf1\x85\x81\xe1\x94\xcc\xf9\xb5\xed\x90\xc2\x49\x29\xcd\xc0\x61\x29\xcc\xc2\x15\x79\x81\x66\x60\x1c\x07\x0b\x03\xc3\x31\x79\x21\xfd\x0b\x82\x21\x0c\xa0\x0d\x6d\x59\x9c\x55\x57\x0b\x16\xdb\xef\xf4\xb9\x52\x3d\x55\xe7\x4f\xf6\x11\x9b\x31\xd9\x7e\xb4\x57\x3a\xcc\xf7\x32\x79\xa0\x9f\xd2\x8c\xbb\x27\x86\xc4\x63\x9a\x58\xcd\xed\xf5\x3f\x13\xfd\x87\x7f\x2e\xfa\xf7\x8f\x42\x7f\x71\x31\x0a\xb2\xe0\xe2\x42\xa8\xc6\xaa\x16\x9e\x15\x8c\x46\x88\xd5\x83\x1b\x3e\xb0\xb5\x25\x0a\x89\xbe\xee\x43\xcb\xe2\xab\x1e\x45\x84\x7a\xa1\xef\xd9\x3e\x26\x84\xa0\x84\x64\x78\xb5\x8a\x76\x48\xd4\xe9\x24\x3b\x24\xa9\x5e\x82\x96\xcc\xa0\xac\xe0\x53\x5b\x44\xdf\xfb\x92\x76\x76\x68\x9b\x51\x7d\x81\x68\x8d\x2f\xae\xbf\xf1\x68\xf1\xe5\xd2\xb4\x54\xa3\x9d\x0e\xe5\x17\x1d\xf4\x89\x43\x88\xdd\xe9\xd0\x7d\x92\x14\x48\x63\xbc\x3b\xaf\x11\xe5\x2f\xa0\xd8\x7f\x03\xea\x7a\x7e\xc3\x0b\xb7\xdc\xd7\x64\x3f\xa9\xce\x56\x07\x7c\x95\xd5\x05\xeb\x24\x5e\x29\x8a\x48\x86\xf1\x6a\x55\x11\x93\xb0\x4d\x5e\x19\x70\xb3\x8f\xcb\x38\x9e\xd1\x20\x32\x78\x18\xa1\x8b\x0b\xce\x77\x2e\x2e\x8c\x1d\x42\x84\x27\x0a\x1e\xe2\x77\x10\x7a\x6b\x36\x1d\xd9\x40\x25\xb9\x06\xdb\x5e\x0d\xdf\xe5\x7e\x4a\x1a\x4e\xbe\xcb\x78\xa3\x6d\xb2\x8e\xa8\x80\x0e\x84\x04\xea\xf2\x07\x00\x22\x06\xf9\xe6\x21\x42\x3b\xdf\x21\x8a\x57\x2b\x94\x11\x0a\x97\x9d\xce\xe5\x76\x18\x6d\x67\x18\x77\x3a\xe8\x35\xcf\x58\xbf\x29\xdc\x71\x2a\x51\xa7\x66\x6d\x5e\x3d\x53\x28\xd9\x1b\xce\x92\xe5\x5d\x46\x76\x76\x10\x35\x0d\x03\x17\x43\x7e\x62\x43\xf1\x5d\x75\xa7\xc2\x46\xe7\xd6\x0d\xb0\xf0\xd2\xd2\x38\x40\x95\xb5\xe0\x3b\x86\x47\x16\xb9\x28\x0d\xf0\x2b\x6c\x5a\x36\x8f\xe1\x5a\xe5\x14\xea\x0d\x33\xab\x48\xc8\x6b\x59\x81\x22\x3c\x88\xa4\x2d\x5c\x71\xa6\xd9\xf8\xf3\x15\x4d\x9a\xee\x9e\xca\x85\x78\x3c\x38\x16\x8f\x3c\xdc\xbb\xa2\x00\xbd\xe0\x88\xce\x68\x46\xdb\x5e\x1e\x70\x0c\x6c\xf7\x62\xb3\x5e\x80\x6d\xd7\xb0\x7a\xd4\xaf\xe3\x9a\xd0\xac\xe5\x6d\x46\xad\x0c\x1b\x81\xe3\xea\x98\x91\x96\xb1\x61\x13\xae\xa3\xc9\x19\x50\x46\x9f\xb9\x91\x4f\xec\x80\xe2\x01\x83\x56\x4d\xaf\x55\x3b\x0d\xda\xde\x39\xd5\xab\x55\x1e\x57\x07\x95\xe3\x17\x86\x4e\xc3\x5f\xc7\x99\xd2\xe6\x53\x9c\x9a\x09\x6b\xd5\x03\xe4\x58\x69\x4e\xdc\xd3\x4c\xe4\x66\xfc\x48\xb7\x80\xa3\xc7\x8f\x8e\xe7\xd7\xc1\x5b\xc6\xa4\xa5\x4d\x10\x91\x77\x9c\xf2\x2d\xb5\x24\xa2\x7d\x9b\xc7\x1f\x2b\x4f\xac\x2c\x67\x90\xf5\x16\xf1\x02\x61\xf7\x54\xb5\x34\x02\x07\x83\x8d\x71\xbd\xca\x47\x0c\x5d\xb3\xbe\xed\x68\xdf\x56\x03\x96\x79\x91\xef\x39\x8d\x66\x34\xc7\x45\x16\x7b\x57\xdf\x24\x80\x72\x89\xad\x56\x72\xbd\xf7\x75\x83\x65\x55\x30\x21\xef\x90\x2e\x9e\x25\xfb\xf6\x40\xe9\x85\x14\x32\x1f\xbb\x91\x97\x30\xb2\x88\x1a\x93\x0f\x8f\x1f\x93\x3b\xc6\xcc\xb8\x41\xec\x19\xcc\x83\x05\xfb\x85\xae\x56\xab\x23\x0c\x82\xdd\x89\xac\xa2\x8e\x73\xf3\x62\x7a\xa3\x6e\xa5\x24\x0c\xe3\x02\xb5\xa2\xcd\x01\x58\x2b\x37\xa1\xd9\x5a\xa1\x0d\x3d\x5c\x15\x12\xcb\xb7\x5e\x68\xe3\xd4\xae\x8a\xb1\xfd\x9f\x1f\xc2\x8b\x6e\x7b\xaf\x95\x0e\x46\x23\xa2\x7f\xb3\xee\xde\xc8\x3d\x54\x6f\x4a\x84\x51\x1b\xc2\x0d\x6d\xa8\x97\x97\xed\xe0\x5c\xf0\x2d\xbc\x82\x3f\x08\x7a\xdb\x32\x5f\x99\xb4\xff\x69\xcd\x77\x42\xa7\x93\x79\x36\x53\x19\xa8\x67\xfb\x83\xb5\xa7\x4f\xa5\xc2\x31\x64\xfb\x69\x15\x57\x81\x9f\xd4\x97\x36\x39\x31\xa4\x52\x4f\x88\x31\xe4\xc4\xe9\xdb\x30\x23\x9e\xbf\x17\x30\xf9\x44\x3a\x85\xa1\x4c\x9b\xce\xc9\x21\x1a\x97\x01\xc0\x30\xa4\x5e\xe0\x93\xf0\x80\x38\xbb\x76\xa7\x33\xae\x7c\xc0\xec\xda\x3c\x5a\xd2\x7b\x14\x74\x3a\x63\xac\x18\xdb\x98\x53\xb0\x25\xde\xd7\x5a\x0e\x8c\x48\xca\xbe\xa9\xcb\xc8\xdc\x33\xcd\xe9\x7e\xd8\xe9\xcc\xd4\x25\x60\xbe\xa7\x7c\xa8\x8c\xbd\xa9\x0f\x4b\xc2\xad\x32\xe7\x84\xf1\xb7\xf9\x60\xee\xda\xb0\x83\x46\x83\x05\x1a\xc1\x12\xbb\x09\x9a\xc1\x12\x22\x8c\x45\x9b\x03\x12\xef\x59\x56\xb0\xa7\x8c\x37\x53\x79\x14\xb0\x83\xae\x07\x0b\x74\x2d\x4a\xb0\x16\xc9\x42\xc3\x38\xca\xc2\x28\xa7\xdb\xb4\x18\x75\x3a\x23\xb1\xce\x96\x18\x66\xe2\xd7\xbc\x72\xe0\x3a\x2b\x50\x86\x99\xd8\x02\xaf\xc8\x09\x2a\x99\xe3\xab\xc1\xdb\x92\x2d\xb9\xaf\xc0\xc6\x70\xff\xb1\x16\x48\x19\xf3\xa4\x14\x8e\x2c\x5e\x2a\x91\xe3\x10\x95\xf2\x6b\xe2\x65\x3e\xa1\xde\x2b\x93\xc9\xaf\xfa\x81\xb5\x52\xed\x5e\x99\x8e\x00\x7e\xc5\x94\x3b\x0e\x9c\x95\x3b\x4f\xe8\xbd\xf2\x49\xb2\x76\x90\x20\x23\xd1\x97\x31\x0b\x79\x88\x79\xb6\x37\x29\xc5\x4e\x3e\xfe\xe6\xa1\xe4\xb7\x9d\x66\x3a\x70\xfb\x73\x91\xb9\xdb\x9a\x09\x11\x13\xae\x05\xc4\xd3\xcd\x10\x10\x79\xbb\x7e\x75\x0e\x26\xed\x2f\xb8\x87\x37\xf4\x96\xaf\x27\x08\x71\xa1\x29\x30\xaf\xab\xf5\xc0\x44\xa4\xc1\x4b\x25\x76\xb8\x86\x51\x2e\x0d\x42\xc2\xd5\x2a\x23\x24\xae\xc5\x03\x29\xf9\xbe\x14\x87\xb6\x34\x79\x58\xb3\x82\xca\x56\xab\xda\x53\x3d\xac\xbd\xd4\xff\xa3\xc0\xb2\x09\x8c\xb2\x08\x39\xcf\x31\x6e\xbd\xba\xdb\x8a\x5a\x02\x9c\x71\xf6\x80\xf0\x16\x13\x8b\xf8\x13\x7e\xb6\x44\x36\x9e\x65\x54\xd2\xd2\x9a\xb0\x7e\x13\x46\xa3\xf8\xa6\xd3\x41\x11\x11\x3f\x75\x1a\xa3\x0d\x07\x73\x10\x6a\x96\x09\x31\x04\xf8\x8e\x3f\x3a\xdc\x4e\x49\xa6\x9b\x2c\xa8\xe4\x4c\xbe\x3c\x44\x46\x44\x6f\x68\x62\x60\x88\xca\x94\x78\x36\x62\x29\x5b\xfa\xc3\x4a\xd6\xf4\xb5\x63\x34\xca\xbd\xff\x51\xa0\xc4\x96\x97\xe8\x69\xf8\x07\x25\x36\xc8\x77\x0e\xf3\x90\xe5\x8a\xcb\xe9\xd9\x88\xa6\x72\x53\x66\x35\xa6\xca\xc7\x9d\xb4\xcb\xbb\xa2\xcb\x79\xb0\xe0\x4a\xd7\x71\xb0\x80\x4c\x19\x08\x04\x69\x1a\x4e\x22\x94\x61\xa0\xfb\x8e\x4a\x14\x98\xcb\x0a\xf5\x50\xda\x21\xa2\x90\xc8\xfd\xf0\x8a\x2e\x55\xf5\xfc\x7a\x97\x24\xfc\x83\xad\x21\xad\x6e\x2f\x52\x9f\x8d\xe8\xe1\xbc\x20\x8d\xb2\x64\xa9\x1f\x91\x04\x9b\xb3\xd2\xb5\x2c\xda\x7b\xfb\xe1\xe3\x71\xb0\x20\x09\x24\xda\xb6\x71\x31\x0f\x92\xab\x97\x0c\xe6\x30\xfd\x98\xd2\x51\x6d\x37\xa0\x3b\x44\xef\xa6\x4e\x87\xeb\x9c\xdc\x96\x49\x66\x88\xbe\x54\x9d\x21\x7b\x96\x2b\xa6\xc0\xfe\x65\x0d\xe2\xce\x78\x80\xfd\xcb\xcb\x47\xbe\x62\x1c\x02\x44\xb5\x9f\xf2\xc3\xa2\xaa\x32\xa8\x57\xac\x7d\xf1\xf2\x58\xcf\x27\x6c\x6f\xd6\x5b\x25\x86\xaa\xd6\x96\x19\xcd\xb6\xcb\xc7\x56\x7c\xd4\x56\x2b\xe1\x52\xa2\x77\x7c\xf8\xf3\xc5\x8f\x87\x6f\x3f\xbe\xdc\xd2\x27\x80\xd2\xee\xb7\x58\xc9\x80\x50\xaf\xf1\x32\xd7\x47\xe2\x94\x8d\x65\xa7\x24\xe8\x45\xf4\x36\x43\x78\x6f\x27\xed\x8d\xe2\x88\xee\x55\x49\xa2\x6e\x4a\xc4\xab\x20\x39\x01\x18\x5b\x52\x3f\x19\xfb\x2a\x0d\x9e\x65\xe5\x7c\xa7\xe7\x97\xfa\x14\x43\x32\x40\x82\x37\x8b\x5e\x4a\xb0\x5b\xeb\x6e\x48\x08\x05\x9b\x90\xd8\xb2\xd6\x9f\x8c\xc4\xd7\x34\x19\xcf\xe2\x1b\x03\x17\x7a\x8f\x25\xda\x22\xa9\x57\x1c\xfe\x41\xeb\x9d\x79\x9f\x4c\x2b\x0b\x09\xa1\x8a\x37\x02\xd7\x04\x8f\xc6\xec\x62\x8b\x27\x93\x86\x8e\xb5\x3a\x1a\xc2\x54\xa2\x0e\xe8\xdb\x6a\x51\x47\x9e\x03\x14\xd7\x16\xd3\x7a\x6d\xb1\x98\x25\xca\xc9\x58\xad\x6f\x21\x26\xea\x99\x56\x82\x6b\xb3\x69\xd0\x9c\x6c\x31\xc4\x8d\xc9\x59\x1f\x80\xb8\x36\x17\x63\x30\xcd\xb2\x6f\xab\x5e\x3e\xa8\x26\x9e\x7c\x8f\xa7\x3c\x30\x72\x12\x1b\xdd\xc1\xb2\xc8\xda\xc3\x30\xad\x52\xd6\xd7\xb4\xd6\xd7\x22\xdd\xcb\xfc\x01\x5a\x63\x73\x65\x9e\xce\x01\x2b\x6e\xa3\x3a\x48\x16\xd1\xb9\x61\x8d\x41\xca\x15\x4b\xab\x92\x35\x96\x59\xca\xe4\xc2\x66\xd5\xb2\xaa\x6e\xf0\xe4\x5c\x16\x03\xe6\xd7\x5b\x3b\x0e\xa3\xd1\xda\x5a\x6d\x9f\x61\xaa\xc1\x03\x39\x8b\x4a\x45\x36\x79\xac\x28\x2c\xf1\x29\x89\x3e\x79\x58\x5f\x4c\x36\xcd\xf5\x04\xb7\x61\x96\x9d\x90\x88\x4e\x48\x38\xc3\x4c\xbc\xc8\x67\x6b\x58\x30\x3f\x96\xc6\x33\xf8\x62\x66\xec\xd1\x4d\xf8\xb8\xa9\x34\xbd\x6f\xe5\x98\xb0\x2c\x06\xa6\xe3\x69\x19\x27\x81\xed\x31\xdb\x1c\x1b\x16\xcb\x82\xa4\x6d\x35\xb6\xeb\x74\x8f\x40\x48\x1a\x13\x42\xb2\xd0\x02\xe2\x0a\xfb\x1a\x1f\xdd\x24\xbf\xe8\x85\x38\x2b\xd5\x01\x05\x4b\xad\x76\xb8\xd2\x83\x8a\x9c\xfd\x72\xdb\x63\x3d\x7d\xc7\xf8\xb1\xbb\xe3\x48\x13\xbd\xe6\x54\xc4\xae\x04\x50\xee\x37\xe4\x94\x2a\x20\xf8\x33\x44\x07\xff\x14\xa2\x39\xcd\xf7\x90\x9a\xfe\x19\x52\xd3\x7f\x12\xa9\x62\x46\x6d\x26\x56\x9f\x6a\x57\x74\x99\xb6\x10\xc8\x58\x73\xa0\x33\xa5\xc6\x52\xe5\x18\x37\x15\x4c\xef\x29\xc8\xe8\x0e\x5b\x4b\x8a\x3e\x49\x3e\xaf\x23\x59\x75\xf1\x3d\xd5\x49\x9f\x51\xfa\xde\x16\x55\x62\x76\x29\xbd\x46\x5c\xc2\xe6\x1b\x01\x17\x37\x92\x1a\xab\xe7\x3a\x6b\xb2\x87\xa5\x52\x13\xa9\x45\x2b\xad\xfe\x78\x31\x48\x38\x8b\xa8\xd7\x9e\xc5\xdf\x9f\x9e\xbc\x6b\x37\x7b\xa8\x42\x0c\x57\xc2\x2b\xc8\xd7\x36\x55\xdd\xbc\x5a\x2f\x32\x4d\x9f\x70\x73\x57\x51\xa3\x18\xcf\x8a\x75\xf0\xaa\xcb\x19\xd2\xa4\x61\x3d\x0c\x73\x45\x85\x61\xa8\xa7\xc8\xb2\xbe\x68\x0f\x53\x93\xc8\xdb\x6b\xee\xf8\x02\x9b\x86\x6b\x98\x91\x6c\x32\x8a\x48\xc4\x58\x21\x93\x25\x4d\x62\x6c\xef\x6f\x57\x2e\xb7\x69\x51\xa0\x14\x43\xa9\x29\xa3\xb0\xc5\xf3\x0a\x4a\x48\x8a\x07\x49\x75\x8c\x97\x01\xc5\x6e\x82\x57\x2b\xa4\xf9\x49\xc3\x05\x6a\xb9\x14\x6f\x89\x0e\x13\x21\xe7\x1b\x61\xd4\xe7\x7c\x2b\x8c\xda\x77\x6d\x4d\x5d\x09\xea\x87\x9e\x3d\x1a\x0d\xe3\x11\x1d\x64\x3d\x81\x65\x90\x30\x7d\x52\x24\x7e\xfc\xf0\xe6\x28\x9e\x2f\xe2\x88\x46\x19\x4f\x6d\x48\xf3\xd2\x43\x4f\x65\xb1\x30\x28\x5b\xce\x2d\x41\xb2\x81\x61\xb8\x54\x1a\x27\x64\xa6\xa3\x47\x81\x6b\xbf\x3a\x90\x38\xb7\xa4\x8a\x2e\x1f\xd3\x8a\xe8\x3a\x42\x4f\x37\x78\x65\x86\xbb\x7e\x59\xcd\xaf\xaa\x33\xd2\x3f\xf7\xd0\xf9\xa8\x8b\xcf\x7d\x75\x67\x4a\x31\x50\xa2\x39\xc8\x3f\xf7\xce\x47\x5d\x7e\x77\x6f\x18\x18\xb2\x41\x75\x90\x91\x78\x94\xa9\x04\xec\x0f\x77\xdb\x9e\xf0\x08\x08\x9e\xe3\xfb\x24\x62\x5b\x1d\xf5\x49\x54\x70\xbd\xde\xb8\x4c\x82\xe1\x15\xcd\xee\x23\x04\x9d\x7b\xe7\x3e\xbe\x87\x8a\x8a\x84\xf2\xec\x9a\xd5\x31\xe0\x15\x79\xbe\x7a\x51\xc8\x3e\x41\xd5\xef\x45\x7e\x49\x88\xf4\x7b\xd4\x42\x82\xd0\x7c\x15\xd2\x88\x21\x8d\xea\x48\xd9\x27\x64\xd8\xe5\xc9\x59\x51\x14\x28\x23\x21\xba\xd3\xfa\xdb\x35\xa2\x38\xa2\x46\x01\x19\x66\x6b\xb9\xcd\xaf\x94\xbc\xc8\x58\xf3\x09\x35\x48\x5c\x61\x49\x9e\x84\x73\xa4\xdd\x09\xff\xe6\x0d\xfe\xbf\x8e\xcf\x1b\x8d\x07\x48\xb9\x45\x30\x3a\x46\x8b\x2b\x3b\x6d\x7e\x55\x7d\x66\xf6\x27\x60\x6c\x1b\x58\x95\x24\x06\xe6\x96\x5f\x4a\x70\x0d\x88\xe6\x56\x55\xb9\x54\x25\x86\x3a\x84\xdb\x0a\x74\x5b\x2f\xee\xcd\x26\x46\x01\x86\x08\xc5\xdc\x66\x17\x12\x5c\xb9\xf7\xe2\x2e\xf9\x12\xe9\x92\x8f\x35\x62\x94\x0f\x69\xeb\x83\x2d\x9d\xd7\x7c\x27\xae\xdb\xb8\x6b\xd8\xb5\xb3\x8b\xa8\xd3\xd9\xa9\x3b\x7a\x8a\xf0\x80\x0b\xb0\xba\x51\x50\xbb\x87\x28\x94\x61\xb6\x48\x39\x31\xee\xba\xc9\xc9\x80\xa2\xba\x2b\xc1\xfb\x7c\x09\x96\x8e\x0b\x2d\xf9\x2b\xc3\x05\xde\x14\x83\x20\xf3\xb8\x48\xc2\xaf\xa8\xf8\x0d\x1e\x89\x80\x16\xd0\x32\x1f\x30\x76\x93\x22\xeb\xd1\xdb\x2c\x09\x86\x19\x49\x21\x13\x91\xec\x48\x0e\x59\xf5\x0e\xaf\x71\x44\xbd\xc3\x38\x85\x98\x7c\x82\xeb\xf0\x07\x05\x9c\x17\xb1\x5f\x1b\x26\x24\x6f\x1c\x53\xc2\xf9\x0f\x9d\x93\x17\xca\x07\x8a\xde\x94\xcf\xe7\x27\x8d\x10\x55\xf2\xa2\x74\xe0\x05\xfc\xa2\x04\x0c\xcf\x80\x04\x0c\xdf\xf0\xcb\x78\x06\xae\x9e\x17\xa0\x84\xff\xf4\x09\xfb\x1d\x01\xc5\x15\xe0\x43\x1c\x44\x0b\x31\x53\x55\x2c\x70\x6b\x75\xb4\x63\xde\xc4\x12\x1e\x85\xb3\x0d\x23\x63\x0c\xd5\x76\x36\xd0\xe7\x18\x95\x53\x4c\x8c\x41\x63\xfe\x24\xca\x61\x27\x95\x0f\x12\x2b\x53\xcc\x9a\x0f\x67\x49\x4c\x58\x06\x0d\x40\x09\x64\x5c\x97\xa9\xcf\xfe\x10\x2b\x05\xdc\xab\xce\x77\xe5\xd6\xb2\x81\x7b\x28\xf6\x47\x3b\x9d\x58\x3a\x51\x61\xa3\x02\xca\xf8\x1e\xb3\xc5\x1e\xcb\xa6\x76\x8c\xf2\x24\x56\x90\x60\x1a\xc4\x30\x03\x14\x02\x5f\x1b\x1b\xa3\x5e\x94\x7e\x39\x0f\xec\x02\x57\xb8\x5c\x83\xcd\x53\x31\xfd\x3f\x26\xb3\xd6\x6b\x99\xbb\x3c\x99\xb9\x25\x13\x1c\x18\xd8\xb3\xfd\xd5\xca\x30\xe0\xf7\x9c\x26\x4b\x37\x47\xdc\x61\x4f\xb6\x66\x24\xbb\xb6\xef\xdf\xeb\x66\xae\x75\x2b\xd7\x8c\x79\x76\xbe\x44\xb8\xeb\xf7\x27\x6d\xe1\x6a\x9e\x18\xa6\xb0\x84\x3c\x8a\x47\xf4\x30\x43\x36\xae\xec\xf8\x9c\xaf\xd8\xc7\xc7\xc5\x42\xbd\x14\x2a\xda\xdc\xcf\xb5\xc8\x27\x72\x0a\x4d\x68\xa6\xd9\x07\x09\xc1\x36\x85\x70\xdd\xc9\x5d\xc3\x54\x29\x5e\x87\x58\xc8\xbc\x37\xe9\xcb\xf2\x29\x4b\x5b\xa7\x88\x3b\xfb\x70\x8c\x76\x24\x0a\x71\x28\x27\xa7\xde\x8e\xb3\x55\xc9\xa1\xb2\x91\x46\x70\x39\x14\x81\x2f\xa8\xf7\xdc\x27\xc6\x88\x1a\x20\xdc\xfe\xb7\xb6\xe2\x5d\x30\xa7\x6c\xd0\x3c\xdb\xaf\x90\x36\x0c\x53\xed\xbd\x68\xdf\xb1\xf9\x9b\x9c\xcc\x33\x2e\x0c\x53\xba\xf0\x1b\x27\xf1\xfc\x48\x76\x35\x8a\xb0\x4f\x22\xee\x69\xc3\x76\x76\x9f\x3e\x7b\xfe\xd5\xd7\xdf\x7c\xab\x39\xac\x6d\xab\xb5\xb9\x00\x9b\x0c\xbc\x5c\xd2\xf5\xe6\x26\x95\xcf\x62\xd6\xd8\x11\x1d\x4f\xa6\xe1\xa7\xab\xd9\x3c\x8a\x17\xbf\x27\x69\x66\xa8\xf9\xb9\x61\x8f\xe6\xb2\x08\x2d\x30\xb4\x97\xae\x7a\x8a\xb3\x8c\x5a\xbf\xa3\xbb\x02\x12\x5c\x11\x56\x1d\xfa\x2b\x0a\x8b\x02\xe1\x41\xad\x8c\xbb\xe1\xc1\x13\x04\x50\x9f\xfd\x25\x6b\xa1\xed\xef\x0d\x6b\x58\xb7\x87\xe2\xf5\xe1\x25\xe5\x0f\x10\xe9\x68\xfb\x26\xcc\xa6\x9c\x51\x6e\xc7\xc9\x76\xe5\x5b\xb4\xe4\x84\x32\x8a\xad\x30\xe5\x81\x9c\x38\x7b\xf9\x7e\xd3\xf4\x7a\x2f\x37\xcd\x8a\xc4\xd9\x76\x18\x6d\x47\x2a\xce\x6e\x65\x7c\x9d\xfb\x18\x87\x4a\x8d\x9a\x31\x2d\x22\xf5\x66\x3e\x89\xbc\x99\x2f\x8f\x74\xee\x02\x92\xa0\xa8\x32\xa0\x1c\x12\x7b\x6f\xb8\x1f\xa8\x5a\x86\xa6\x89\x63\x85\x20\xf0\x86\xbe\xc0\xc1\x7e\x31\x34\xfc\x6f\x75\x85\x97\x3e\x6e\x91\x6a\x4f\x9f\x8c\x27\x5e\x60\x8d\x6d\xeb\x5b\xff\x6e\xb7\x30\xc0\x98\x84\x5c\xe8\xd2\x21\x90\x0e\x82\x4d\x09\xb4\xa5\xdf\x18\xf0\xf7\xd9\x95\x49\xcc\x88\xae\x73\xa5\x6a\x86\x6a\xc6\x32\x32\x82\x4b\x69\x45\xa5\xb8\x9a\x88\x2a\xe0\x6c\x95\x1e\xb6\x94\x67\x30\xcc\x9d\xf0\x48\x9d\xa3\x1c\xaf\x86\x71\xa6\x94\x82\x45\xaf\x79\x3e\xc4\x28\xc2\x10\xa3\x44\xbf\x2c\x11\x77\x19\xf7\x93\xac\x28\x0d\x75\xfb\x73\xf5\x0a\x2c\x61\xda\xab\xd3\x7c\x88\x97\x11\x44\x49\xcc\x37\xe4\xaa\xc1\x65\x09\x4d\x71\x6c\xe7\xea\x6d\x3e\x9d\x36\x4c\xf1\x97\xf2\xa5\xc3\xf6\x7f\x89\x3d\x60\xf4\xf1\xc3\x9b\xff\x92\x1e\x9a\x98\xc8\xb8\x5c\xd0\xed\xff\x12\xb8\xfe\x0b\xb6\x27\x71\xb6\xfd\x5f\x86\xa9\x50\x9a\xc6\x7f\x19\xe2\xb6\x4e\x51\xd4\x2a\x88\xc3\x7d\xbd\xb2\x6e\xf3\xde\x30\xd4\x37\x9e\xbc\x7a\xf9\xe4\xd5\x2b\xc3\x35\xfe\xdf\xff\xfd\x3f\xff\xef\xff\xfe\x1f\x03\x8c\x27\xaf\x5e\x3d\x79\xf5\xb2\x4a\x61\x2c\x33\x54\x1a\x14\xd3\xc5\xf9\x90\x64\x5e\xe4\xd9\xbe\x4f\x5a\x6a\xe7\xb7\xb3\xd5\x04\x92\x0f\x01\x45\xf2\x56\xc2\xb5\x21\x9b\x29\x79\x0a\x45\x82\x0b\xad\x86\x22\xf3\x8c\x27\x47\xbb\x4c\x6e\x63\xb5\x6b\x0e\x04\xea\xd2\x35\x88\x88\x74\xe5\x3b\xbe\x54\x3d\xb1\xcc\x49\xec\xa5\xfe\x96\xde\x5b\xda\x4a\xc9\xc1\x98\x30\x85\x8f\xad\xfa\xf2\xe2\x97\x5b\x04\x16\xc5\x43\xb1\x5f\xa3\x1e\x93\xd3\xe5\xfa\xe4\xf6\xaf\xef\xdf\x40\x48\x76\xbb\x09\xc4\x24\xb4\x1c\x6a\x7d\xa5\x6b\xf9\xca\xec\xe5\xd6\x96\x87\xc5\x4b\xf5\xe3\xd6\x51\x29\x8e\x16\xdd\xf1\x82\x18\x86\xae\xdf\xd7\x0f\xbe\x0a\xed\x10\x91\x68\xa7\x74\xe4\x4e\xf3\xde\xea\x06\x30\x8f\xaf\xe9\x59\xdc\xea\x5d\xc5\x24\xc6\xb1\x61\xa2\x06\x55\xb7\x0e\x31\x29\x67\x19\x2a\xab\xa4\x73\xe9\x10\x33\xc3\x05\x0c\x67\x71\x4a\xdf\x07\xd9\x54\x77\x6c\xa0\x1c\x75\x48\x24\xea\x3e\xae\x6a\xdc\xad\x3a\xf8\x5d\x96\xcd\x55\x29\x26\x31\x7e\x35\x70\x01\xb3\x30\xba\x87\xd8\xb7\x15\xb1\xeb\x34\x4a\xd2\x7e\xcf\x83\x51\x12\x64\xe1\xf0\x28\x4f\xd6\x1a\x2e\x0f\x02\x14\xbe\x1f\x0c\x73\xdb\xa4\x1c\xcb\xb6\x99\xe9\xd8\x18\xfe\x68\x0d\x7f\x82\x0b\xb8\xa4\x7f\x84\x34\xd9\x84\x1c\x42\x88\xb5\x0a\x8e\xd6\x2b\xd8\x36\x23\xf9\x37\x69\x56\x18\xae\x55\x18\xe3\x02\x82\x64\xb8\x5e\x11\xaf\x86\x12\x93\x42\x46\xcc\x0c\x22\x62\x46\x10\x12\x33\x84\x98\x98\xb1\xfe\xc8\xfa\xe2\xd6\x81\xb4\x1c\x3d\xc8\x49\x64\x51\x98\x91\xd0\xca\x60\x48\x02\x8b\xc2\x98\xa4\x56\x06\x53\x32\xec\x0e\xcd\x71\x77\xcc\xf6\xb7\x78\xdf\x5e\xbf\x22\x8c\xe8\x24\xc8\xc2\x6b\xba\x9d\x04\xa3\x30\x4f\xdd\x6d\xc3\x14\x6e\xc2\xf4\x58\x39\x17\xb7\xca\xb9\x50\x7d\x6a\x39\x64\x6d\xb0\x32\x5c\x46\x7d\x9a\x1e\xb0\x95\x82\xc3\x31\x2a\x1f\x6e\x8d\xbb\xb9\x35\xeb\x0e\x31\xcf\xe9\x74\x62\xe5\x54\x2f\xb2\x02\x18\x91\xd0\x4a\x61\x4e\xf2\x6e\x6e\xce\xba\x33\x58\x92\x45\x77\x61\x8e\xba\x23\xb8\x16\x8b\x30\xfd\x3d\xc9\xd0\x1c\xc3\x44\xfb\x9c\x62\xb8\x24\x71\x97\x27\x64\x41\x84\x50\x62\x89\xca\x86\x71\x8a\xd0\xdc\x9c\x5a\x4b\xdc\x47\xbb\xdd\xeb\xee\x04\x63\xee\xc3\xea\x82\x5c\xf6\x27\x70\x43\x2e\xfb\xd7\x5b\x25\x5d\x17\x96\xa3\x68\x42\xb5\x69\x49\xcd\x8b\xee\x50\xb5\xd1\xbc\xe8\x8e\x4b\x0f\x5e\x26\x31\x0e\x0d\x33\xe6\x59\xec\x5f\x1b\x6c\x3e\xfc\x68\xdc\x5d\x1c\x0c\xbb\x23\xdc\x98\x06\xd4\xbc\xe9\xe6\x6b\xbd\x65\xde\x74\x67\x58\x8b\x27\xb5\xb6\x1c\x5a\x3a\x98\xcf\x9d\xe6\xcc\x91\xa1\x2f\xca\xb9\xb3\x25\x5e\x13\x21\x36\x85\xb0\xe8\x1f\xd6\x25\x01\x86\x21\x89\xc4\x77\x1a\x46\xec\x7b\x4c\xa8\x39\x83\x29\xc9\xcc\x21\x2c\x88\xf3\x5b\x0e\x23\x92\x0f\x02\x2b\x75\x53\x8b\xc7\x99\x8b\x1e\x39\x6f\x22\x15\x8d\xb1\x9c\x34\x03\x7d\xd2\x8c\x79\x43\xa6\x6e\x35\x1b\x14\x98\x35\x16\x9d\xbf\x5a\x35\xb2\x96\x8e\x35\x15\x59\xb8\x31\x30\x12\x19\x86\xa8\xd3\x41\xa3\x7d\x9b\xfd\x4b\x46\x4f\x42\x33\xc4\x30\x3a\x88\x07\xfa\x18\x89\x85\x19\xf1\x31\x72\xc0\x30\x17\xa2\x47\xa9\x35\x53\x7d\x6b\xb1\x21\xde\x0c\x59\x0e\xc6\xb8\x39\x18\x53\xec\x8e\xd6\xe6\x4d\x03\x11\x9f\x14\xa3\x03\x92\x88\xc2\x4d\x9c\xd4\x8c\xaa\xe1\x49\xf1\xfa\x0c\xd1\x46\x2b\xc5\x18\xe3\x02\x12\x3a\xcc\xee\xe3\x7f\x7f\x86\xf9\x9b\xc6\x54\x32\xb1\x6b\xc9\xc4\xa6\x86\x69\x45\xa6\xf1\x2b\x53\xaf\xa5\x2a\xda\xe2\xf6\x5d\xe0\x28\x0a\x15\xc8\xb0\x11\xe5\xa9\x29\x95\x68\xee\xe2\x0b\x18\x96\x2f\x3a\xcb\xc7\x9d\x59\x10\xed\xc2\x94\xa8\x0e\x81\x45\xf5\x14\x65\x54\x3d\x45\x99\x13\xd5\x25\xb0\xac\x98\x01\x5c\x13\x87\x5a\xce\xae\x62\x10\xef\xdf\xc0\x25\x99\xf4\x77\xe1\x82\xec\x76\x27\xd5\x8e\x7d\xa3\xeb\xec\x07\xc4\x19\x5c\xba\x74\x9f\x58\xce\xc0\xba\x14\x8f\x9b\x03\xd6\xd7\x54\x13\x50\x5f\xd6\x4e\x21\xc2\x28\xa2\xc9\x07\x3e\xed\x2b\x90\xdb\x1a\x48\x9c\x67\xeb\x20\xa7\x35\x90\x34\x0b\x92\xec\x30\x9a\xcc\xb4\xb3\xfe\x93\x1a\x04\x8d\x46\x8d\xfc\xc3\xba\xaf\x77\xda\x5b\x04\x4d\x90\x2b\x7d\xcb\x82\xa0\x7c\x45\x6a\x45\x90\x93\xcc\x4a\x60\x46\x50\x30\x88\x5d\x2b\xc6\xfd\x25\x4a\xbb\xa9\x99\x77\x73\xc6\x14\x66\xdd\x1c\xc6\xc4\x9a\x75\x53\x98\x12\x6a\x0e\x61\x44\x32\x73\x0c\x73\x12\x99\x43\xb8\x26\x89\x39\x86\x09\x41\x53\x73\x8e\xfb\xbb\x70\x49\xd0\xc8\xbc\xc6\xbc\x6f\xe7\xd6\x14\x6e\xc8\xb5\x35\x82\x97\xe4\xa2\x7b\x61\xde\x74\x6f\xe0\x96\x84\x56\x0c\xa7\x64\xda\xbd\xb6\xe6\xdd\x11\x9c\x10\x74\xb3\x6f\x0f\x2c\xc7\x75\x70\x77\x89\x16\xc8\x86\xdb\xee\x6d\xf7\xa5\x75\xda\x3d\xc5\x18\x0e\x09\x3a\xed\xde\x58\x17\xdd\x13\xdc\x7f\x09\x57\x04\x59\xa7\xdd\x0b\xeb\x46\x7c\x1e\xf3\x4c\x53\x66\x9e\x89\x4c\x53\x66\x1e\x91\x43\x6b\x02\x1f\xc8\x95\x75\x09\xef\xc9\xb1\x35\x81\x77\xe4\xcc\xba\x54\xc2\xfd\x51\xf7\xc8\xfc\xd0\xfd\x70\xf0\xbe\xfb\xde\x7c\xd7\x7d\xc7\x9f\x81\x1f\xc3\x15\x39\xc3\x70\x37\xbc\x75\x0f\x61\xb8\x74\xaf\xe0\xd6\x76\x5c\x6b\x08\x4b\xf6\x67\x0c\xb7\x8e\xe3\x1e\x76\x51\xd8\xbf\xb5\x1c\x0c\x4b\xc7\x71\xaf\xd4\x57\xc1\x9f\xa0\x1d\xaf\x1b\x67\xbc\x84\x8c\xdc\x42\x44\x66\x88\x1b\x57\x8a\x98\x0b\xe4\x14\x62\x72\x02\x01\x39\x94\x0f\x4b\xab\x29\xb8\x90\x25\x67\xb0\x80\x97\x70\x4b\xcc\xd2\x26\x71\x1a\xa6\x9a\x5b\x28\x38\x25\x66\xb6\x21\xeb\x84\x84\xed\x39\xd6\x25\x1c\x92\x78\x63\xde\x31\x19\xa2\x43\xeb\x04\xc3\x19\x39\x3c\x38\xd9\x12\xcf\x55\x51\x4a\x66\x24\x47\x18\xc3\xe9\xfe\x6d\xa7\x83\x16\xe4\x14\x4e\xc9\x2d\xdc\x92\x05\x86\xd3\x83\x6b\xbe\x8b\x1f\x5c\x58\xd7\x38\xed\x09\xc9\x13\x9d\x76\xa7\xe8\x04\xc3\x69\x77\x8e\x4e\x30\x86\xb4\x17\x24\x43\xc4\x76\xc1\x53\x38\x81\x43\xd8\x39\xc3\x70\x7b\x70\xcd\x3d\x7b\xc9\x12\xb7\xdd\x29\x3a\xc4\x70\xdb\x9d\xa3\xc3\x5a\x89\x5b\x38\x84\x13\x38\xc3\x42\x76\xe0\x3d\x73\x04\x1f\xe0\x3d\x39\x81\x77\xe4\x10\x3e\x91\x13\x78\x43\x0e\xe1\x05\x39\x86\xb7\xe4\x18\x5e\x91\xa0\xbd\x75\xfd\x5d\xf8\x83\xbc\xe2\x95\x26\x03\x33\x69\x07\x72\x97\xe8\xb6\x7b\x6b\x8a\x99\xf7\x9a\x8c\xd0\x10\x9d\x5a\xb7\xac\xac\x19\xb5\x97\xc0\xf0\x1d\x79\x0d\x1f\xc9\x6b\xd6\x59\x7f\x1c\x5c\x8b\xb1\xfb\x9d\xdc\xa0\x3f\xfa\xac\x31\xaf\x30\x86\x9f\xf8\xd7\xa9\xf8\xda\x43\x2f\x2c\xb2\xdb\xfd\x1d\x1f\x5c\x0f\xd0\x27\x93\xfc\xde\x25\x67\x03\xc7\xb5\x1c\x78\x63\x91\xdf\xb1\x8b\x5e\x10\x1b\x3e\x91\x37\x04\x9d\x98\x87\x5c\x2a\x41\x6f\x59\x81\x9f\x78\x81\xf7\x26\xf9\xa9\x2c\xf0\xce\x22\x3f\x61\x17\xbd\x25\x36\xbc\x27\xef\xca\x02\x7c\x22\xfe\x48\xd8\x18\xbc\xc7\xf0\x0b\x61\x15\xbf\xc7\xf0\x37\xc2\xfa\xf8\x0d\x86\xbf\x13\x46\xd8\x1b\x2e\xc9\xbd\x56\x14\x7f\x01\x3f\xf0\x12\xef\x30\xfc\xcc\x4b\xbc\xc3\xf0\x2b\x2f\xf1\x09\xc3\xf7\xbc\xc4\x27\x5e\xe2\x78\x7f\xd2\xe9\xa0\x2f\x9a\xee\x49\x24\x4f\x81\x54\x29\x60\xbf\x5a\x3f\xc2\x8c\x7c\x6f\xfd\x02\x43\xf2\x37\xeb\x07\x18\x93\xbf\x5b\x3f\xc3\x94\x30\x31\x6f\xd8\x15\x11\xb0\xd0\xb4\x3b\xdd\xbf\x56\x67\x61\xde\x8f\x26\x9a\x12\x34\xec\xa2\x5f\xac\x9f\xb1\x35\xee\xa2\x1f\xad\x1f\x30\xee\x4f\x71\x37\x87\x5f\xcc\x69\x77\xe6\x17\x48\xf9\xe2\xa0\x94\xfc\x68\x7d\xe1\xd9\x3e\x64\x94\xfc\x62\x7d\xc1\x2d\x79\x29\xf9\x41\xa4\x25\x94\xfc\x2c\xd2\x42\x4a\x9c\xfe\x1c\x21\xf4\x92\x20\x4a\xbb\x11\x35\x33\xda\x4d\x28\xee\xa3\x25\xfb\xa6\xfc\x3b\xa3\x8c\xf3\x44\x3c\x3b\xe1\xd9\x18\x1f\x38\x03\xdb\x7d\xb9\x6f\x39\x83\x89\x5b\x89\x8d\x2f\x85\xa0\x18\x53\xb2\x44\xac\xa6\x2e\xfb\xc7\x64\x35\x75\xbf\xe0\xf6\x7a\xdf\x91\x11\x7a\x0d\xe8\xd6\x8a\x59\x1d\x21\xb5\x1c\x8c\xe1\xa3\x48\x3c\x55\x89\xa6\x83\x71\x51\xbc\x3d\xb8\x1e\x7c\x64\x83\x7a\x44\xae\xd0\xaf\xf0\x3d\xfc\x08\xbf\xc0\x29\x7c\x84\x33\xcc\xb8\x16\xfa\x01\x7e\x86\xbf\xc1\xdf\x55\x52\xb9\x54\x8e\x7a\xc3\x5b\xf3\xa8\x77\x6b\x3b\x70\xd4\x1b\x2e\xcd\xa3\xde\xd2\x76\x30\x7c\xdc\x7f\x3d\x10\xcb\x86\x01\xf0\x2c\xf8\x08\x63\xc4\xb3\x81\xc3\x63\x18\xa3\x0f\xfc\xf3\x83\xf8\xdc\x39\xc3\x2e\x7a\x44\xa1\xa3\xde\xd2\xe1\x9f\x8e\x28\x54\x5b\xd1\x2c\x5b\x90\xc1\x61\x04\x71\x8e\xac\x6c\xb8\x34\x3f\xf0\x8c\x0f\x2c\xe3\x43\x13\x03\x4b\x65\x59\xa2\x56\x05\x59\x96\xae\x93\x8a\x39\xb1\xb2\x17\x7e\x84\x5f\xea\x64\xbc\x87\x77\x1c\xc8\xad\x83\x70\x3e\xf3\xe2\xe0\x7a\xf0\x9d\xea\x6a\xd6\xa7\xac\x6f\x6f\xc1\xfa\x4e\xf5\x35\xeb\x7a\x36\x04\x2a\x2d\xed\x09\xb5\x74\x53\x67\x7f\xd7\xd2\xd9\xdf\xfd\x99\xce\x6e\x29\x74\x4f\x67\xdf\xfe\x89\xce\x6e\xe9\xeb\xef\x1e\xd5\xd7\x7a\xb5\x6f\xe0\x13\x9c\xb1\x24\xd9\x2d\x7f\x83\xbf\x4b\xd5\xa4\xec\x6d\x1b\x6c\xce\x20\xd2\x5e\x79\x54\x80\x30\xcc\xd4\x59\xa1\xd8\xe6\x60\x66\x1a\xc6\x6a\xc5\x5d\x74\xca\x8c\x45\x6f\x48\xa3\x2c\x89\xc3\x51\x73\xef\x8c\x08\xda\xb4\xf9\x31\xdd\x7a\x03\x43\xee\xef\x42\x42\x90\xb9\x61\x03\x34\xb7\xcd\x0d\xdb\x1f\xee\xef\x5a\x93\xfe\xae\x14\x0f\xbc\x29\x4a\x70\x37\x82\x39\xff\xe3\x17\xb0\xd0\x65\xbb\x8a\xd2\xea\x74\xad\x79\xf0\x3c\x40\xb4\x2d\xc0\x4f\x36\xc8\xdc\x19\x32\x33\x0c\x0b\xec\x52\x86\x57\x13\x08\xdb\xe4\xe3\x75\xbc\x59\x1b\x5e\x3a\xa0\x0c\x2f\xe5\x78\x33\x86\x77\x18\x27\x2d\x04\xdf\x87\x38\x7a\x10\x71\xc4\x10\x2f\x82\xd1\xe7\x60\x15\x32\x0f\x21\x54\xdc\xf5\x3f\x54\x45\xc2\xaa\xa8\x24\xe0\xc7\xd5\xd1\x66\xd1\x53\x47\x1b\x32\xb4\x4a\x6c\x7e\x1c\xd2\xf8\x41\xa4\xb1\xec\x8e\xcf\x40\x1a\x3c\x88\x34\x10\x83\x17\x65\x35\xd3\xbb\xfb\x70\xa6\xf5\x1e\xa6\x0c\x4b\x5a\xc0\xa2\x68\x3c\xbb\x17\x0a\x99\x42\x4d\xf5\x17\xae\xe4\x2e\x48\x68\x70\xca\xba\xdd\x5d\x7b\xb4\xc7\x16\x3d\xb1\x0b\x60\x20\x2f\xa3\xd1\x06\x80\x77\xc1\x3b\x71\x9a\xb7\x01\xcb\x22\x0e\xa3\x8c\xa1\x61\x30\x0d\x34\xa8\xc2\xb3\x5a\xd9\xe5\x91\x22\xfb\xee\x74\x9c\xf2\xd8\x80\xa3\xc0\x2a\x6e\x89\x6c\x48\x8d\xdf\x68\xf4\x38\x56\xf5\x51\x00\x2f\xda\x38\x65\x54\x06\x09\xe5\xa1\x9a\x5e\x8b\x7a\x90\xa4\x13\xef\x68\xf8\x07\x75\x22\x24\x63\x64\x78\xdd\x7a\x8e\xe4\x8f\xfc\xc1\xb5\x70\xd8\x24\x9f\x34\xe9\x98\x77\x4b\xa3\x81\x8d\x68\x0b\xa9\x49\x1f\xb5\xc6\x41\xa4\x37\x7c\x8c\xb5\x21\xff\xa0\x6b\x84\x9e\xed\x37\xdc\x0c\x94\x39\x8e\xcf\x25\xc6\x77\xeb\xaa\xcb\x07\xc8\xc8\x7b\xae\xba\xec\xe8\xba\xcb\x11\xc4\x0d\x9d\x25\x40\x4a\x9b\x84\x19\x0c\xb9\x8f\x46\xf9\x42\x6f\x4a\xe4\xe5\xab\x98\xa1\x49\xa7\x83\x62\x12\xa2\x21\x57\x28\xd4\x01\x3e\x19\xef\x99\x66\x8a\x77\x50\xba\x3f\xee\x74\x22\x34\x23\x81\x97\xfa\x90\x42\x80\xb1\x08\x6b\x8e\xd0\x94\xec\x4c\xf1\x20\xee\x95\x13\x0c\x61\x57\x7c\xbd\x8c\x46\x4c\x39\x99\x72\x03\x03\xd6\x99\xc8\xa4\x68\xc6\x4b\x83\x99\xc9\x5f\x7c\x6b\x1a\x96\x6e\x51\x44\x53\x86\x6b\x9b\x51\xd0\xbb\xfd\x87\xf0\xf6\x80\xf3\xf6\xa0\xb7\xfc\x87\x70\xf4\x80\x73\xf4\x40\xba\x77\x1c\xfd\x65\x66\xbe\xb3\x23\x90\x46\x0c\xe9\x30\x4f\xae\x1f\xcd\x65\xa9\x0c\x2f\xad\xc6\x31\xc1\x1c\x51\xc8\x11\x7d\x0e\xcb\x52\x0c\x2b\x21\x62\x2c\x5c\x8e\x8d\x08\xba\x92\x02\x82\x02\x3e\xb5\x4f\x48\x3e\x72\xa5\x3a\xfd\x1e\x42\x39\x3d\xe5\x98\x06\xe4\x68\x4d\xa5\x1e\x96\xf1\x7c\x61\x0c\x53\x58\xc0\x08\xe6\x44\xbd\xf2\x84\x25\xd9\x71\xe0\x5a\x33\x7c\xe5\xe7\xc8\xfa\xa7\x36\x81\x63\x1e\x03\x29\x40\x23\x39\x81\xc5\x35\x30\x99\xef\x99\xe6\x50\x7a\xda\x1d\xee\xcf\x3b\x9d\x10\x2d\xc8\xcc\x1b\xfa\x30\x84\x19\x9f\xc4\x4b\xa6\x26\x2f\xc9\xce\x12\x8f\xc9\x90\x4b\x64\x92\xdd\x22\x25\x6d\xca\x2f\xa1\xe7\xb2\x1a\xd3\x6a\x7a\xd7\x41\x60\x4a\x86\x96\xb3\x37\x3d\x20\xe3\x3d\xcb\x9a\xe2\x54\xce\xfb\x6b\x6f\xea\xc3\xc4\x9b\xfa\x78\xab\x5e\x56\x32\x6e\x84\x8b\x65\xa7\x83\xae\xbd\xa1\x4f\x4c\x8a\x16\x9c\x38\x98\xf0\xcf\x48\x7d\x2a\x64\xd9\xc0\xcc\x64\x9a\xcb\x4a\x00\x53\x9b\x55\x02\x2b\x83\x71\x11\x8e\xd1\xa8\x21\xe0\x8d\xaa\x35\x55\xf6\xff\x18\x69\xaf\xd3\xb1\x9a\xc6\x28\xc4\x62\xf2\xa1\x00\xab\xc9\x83\xe2\xf2\x46\x6e\xa8\x2f\xc5\xe8\x73\x97\x62\x34\x88\xd8\xe2\x89\xb0\x9a\x31\x43\xbe\x22\x87\xbd\x5b\xfb\x1f\xb2\xc0\x4b\x74\xce\x63\x57\xf8\xe3\x85\xa0\x21\x5f\xee\xc3\xc7\x32\x8f\x07\xa4\xb6\xa4\x6c\x7f\xc4\x91\xda\xff\x10\xac\x25\xba\x47\xb6\xff\x73\x84\xc0\x21\xe7\x00\x43\x3e\x83\x7f\xb6\x89\xf8\xf1\x8b\xdd\x62\x66\x3f\x46\xb8\x77\x8b\x28\xee\x2d\x51\x84\x55\x91\x5f\x9c\xfb\x21\x93\x12\xf2\xe7\xcd\x90\x59\x85\xf3\xb3\xb8\xee\x3d\x82\x28\xe7\xba\x43\xce\x2c\x87\x9f\xc3\x75\x83\x92\xeb\x2a\xe6\x13\x63\x8e\x28\xe0\x88\xfe\x0c\xd7\x8d\x89\x58\xad\x2e\xc7\x46\x04\x5d\x71\x01\xc3\x02\xde\x6c\xf0\xcb\xb1\x4f\x07\x96\xe3\x66\x07\x74\xc0\xfe\x25\x74\x60\xbb\x5c\xe0\x7b\xd1\x6a\xee\x56\xc0\xdb\x75\xee\xfd\x02\x32\xf2\x46\x06\x68\x80\x44\x70\x70\xc6\xbd\x2f\x18\xf3\x66\x5f\xad\x02\x45\x2e\x44\x0a\x98\x56\x42\xc5\x82\xd8\x30\xd2\x38\xf4\x14\xc3\xbc\xfe\xb9\x24\x9b\x8e\xf8\xd4\x8d\xe1\x3c\x8c\xd0\x05\x94\xae\x39\xad\x0b\xd8\x74\x64\xba\xc4\xe5\xbd\x22\x2b\x54\xde\x43\x5d\xe3\xfe\x14\x36\x29\x93\x70\x49\x26\x5d\x74\xad\x0e\xb6\xf9\x0e\x22\x84\x9d\x29\x97\x75\xd0\x98\xcc\xbd\x91\x97\xfa\x24\xe5\xbc\xb8\x12\x78\x78\xc0\xec\x85\x49\xc6\xd5\xb6\xb3\x43\xb2\xc1\x68\xcd\x92\xb8\xe2\x89\x19\x9a\x7b\xd4\x87\x39\x0f\x1a\x82\x5d\x51\x24\xea\x74\xd6\xcb\x68\x4e\x81\x50\xc0\xca\x04\xdc\x59\x14\x17\xc4\x60\x46\x16\x03\x74\x6d\x4d\xbb\x97\xb8\xbf\x70\x4b\x5a\x61\x49\x86\x38\x27\x8c\x58\x18\x92\xa5\x89\x38\xed\xb9\x8f\x0f\xec\xc1\xb8\x3b\x73\x6d\x6c\x5e\xc2\x9c\xc7\xbd\x19\x05\x59\xe0\x06\x5e\xee\xcb\xc8\x31\x2a\x88\xc5\x18\x2a\x85\xce\x5d\x82\x52\xc3\xdc\x21\x28\xe5\xc9\x9d\x94\x31\x82\xe7\x95\x30\x26\x9e\x71\xfe\x23\x05\x32\xd6\x21\x3f\x36\x1e\x09\xdd\xcf\xb7\xa9\x9a\xb1\x4a\x0a\xab\xdb\x3a\xdf\xcf\x43\xa9\xda\x7e\x94\xb4\xf5\xb9\x8a\x6d\x6b\x90\xe0\x9a\x64\xc8\x84\xa5\xcf\x54\x6c\x1f\xd0\x96\x95\x40\xf7\x79\x8a\xed\x03\xda\x72\xc0\x19\x4c\x50\xc0\x2b\xf2\x1a\x1d\x69\x4b\xfd\x0f\x4d\x33\xe5\x4c\x51\xbb\xb1\xe2\xbe\x16\xca\xaf\x4c\x9b\x00\x6c\xb5\xff\x81\x28\xca\x70\x15\x86\xa3\x44\x00\x59\xab\xdb\x05\x2a\xb8\xee\x56\xe5\xeb\x81\xb7\x8e\xf6\x6e\x41\xfa\x5f\x62\x3f\x69\x4f\x5c\x5b\x13\xda\x5b\x56\xe9\x4b\xa0\x9f\xc1\xb3\x33\xee\x24\x0b\xbb\x19\xc2\x92\xa8\x02\x68\xf1\xc7\x23\xd5\x6d\x5e\x40\x17\x10\xef\xd1\xbc\x2b\x58\x21\xdf\xdd\xa7\x80\x0b\x58\x4d\x8e\x6c\x55\xc5\x9b\xb0\x12\x6f\x9b\xfe\xac\x83\x4a\xa1\xb1\xba\x90\xa6\x18\xb2\xae\x55\x5e\x5f\x53\x8c\xa5\xfe\xfa\xb1\x65\xd3\xfd\x0e\x31\xc1\x50\x48\x83\xaf\x30\x2e\xe0\xf7\xf5\xed\xe3\x93\x06\x01\xe5\x68\x0a\x2f\xb3\x5c\x52\xe0\x36\x87\x62\x5f\x17\x2e\xee\xb8\xd8\x20\xfc\xcc\x70\xb9\xe0\xc1\x91\xd7\x56\x27\xed\xdd\xda\x5a\xa6\x0d\xd5\xa5\x2b\xcb\x73\xb4\x3c\xe7\x9e\x39\xa3\x1f\x1a\xd2\xde\x52\x43\xb9\x64\x28\xf5\xb3\x3f\xda\x5b\x6a\x58\x97\x0c\x6b\x39\x56\x8d\x75\xa8\xf5\x5b\x84\x58\x77\x95\xc5\x64\x4f\x94\x43\xb7\xb9\x60\xd2\x52\x50\xd5\xf9\xa6\xed\xa8\x53\x2b\x1b\xae\x97\xfd\x45\x55\x7a\xd2\x76\x9c\xa9\x95\x8d\x5b\xca\x3a\xff\x80\xd5\x05\x3f\xb5\x4a\x2e\x1e\xca\x88\x99\x69\x66\x2e\xd4\x52\x26\x00\x3c\x6c\x9d\x3e\x61\xfd\x02\x7e\x6c\x7a\x10\x15\x46\xac\x15\xbb\xfa\xa5\x7e\x53\x1f\xe7\xc9\x50\x63\x58\x7f\xab\xe5\x66\x41\x32\xa1\x1a\x2f\xfa\x7b\xc5\x8b\x7e\x81\x88\xfc\x0d\x12\xf2\x01\x42\xf2\xbe\xe5\x3c\x45\x86\x87\x82\x94\xfc\x28\xec\x63\x35\x09\x66\x46\x6a\x67\xdf\x29\xb7\xdb\xa9\xa7\x70\x9b\xae\xd5\x0a\xc5\x24\x10\x57\xb7\x14\xc5\x50\x17\x89\x50\xea\xd9\x3e\x99\x01\x13\x56\xea\xa7\xe5\x29\x6e\x05\x1d\xb6\x82\x32\xce\x5e\x3f\x55\x09\x5a\x4e\x55\x44\x3f\x3d\x7e\xcb\x55\x7b\xad\xe8\xc1\xc7\xef\xb6\x6a\x9b\xbd\xfd\x87\xee\xae\x8f\x54\xc4\x1e\xb9\xad\x7e\x96\xc4\x1e\x37\x8f\x76\xd5\x3e\x5a\xce\x95\x2f\xaa\x1b\x58\x7c\x47\xd5\x69\x63\x06\x11\x06\xda\xab\x99\x2e\xa2\x8c\xa0\xcc\x4c\x70\x7f\x97\x3f\x6f\x0d\x79\x91\x0a\xd1\x0f\x9f\x81\x08\x22\x82\x22\x33\xe4\x97\x2d\xb2\x48\x85\xe8\x67\x1d\x91\xb0\xdb\xfd\x49\xe0\x09\xc4\x0f\x55\x96\x89\x9d\x3f\xa1\x84\xe5\xe4\xfc\x47\x88\xb7\xca\x8a\x63\xcf\xf6\x21\xf6\x1c\x7f\xbd\xfa\x80\x65\x05\x9e\xe3\x43\xca\xfd\xa5\xb0\x5f\x39\xfb\x95\x73\x7f\xaa\x25\x21\xbf\x56\x7c\xe7\xef\xe8\x0b\x2d\xe3\x7b\x3d\xe3\x07\x2d\x83\xd2\x72\xbb\xf9\x3b\xfa\x19\xff\x59\x51\x41\xc4\x04\xa2\xe4\x6e\x94\x04\x37\xad\x91\x6a\x2b\x33\xc5\xac\x3f\xd1\x5a\x1d\x81\xcd\xda\xab\x6e\xde\x22\xb0\xe1\x02\x17\x05\x44\x8f\x45\xf6\x1c\xf7\x77\x2b\x74\xd6\xd3\x6e\x04\x16\x1f\x41\x79\x92\x6c\xb5\x7c\x3f\xed\xea\x29\x6d\x09\xfa\xe7\x1a\x4a\x96\x50\x87\xaf\x7f\xd5\xb1\x59\x2d\x09\xb5\xcf\x12\x9d\x76\xae\x5f\x14\x90\x50\xad\x9d\x4e\xff\x29\x86\x90\x92\xdd\x6e\x42\x21\x7e\x6c\xdf\x84\xe2\x38\xa4\x9b\xd0\xaa\x87\xec\x7a\x5b\x12\xd1\xff\xf2\xcb\xae\x53\x26\x33\xeb\x74\x05\xb4\xb4\x38\x43\x93\xbe\x63\xe3\x7e\xf9\xf9\x75\x97\x27\x40\xaa\x81\x5c\xb0\x94\x6e\x40\x21\xa7\xa4\x92\x8e\xca\xd4\xd9\xe3\xda\xd2\xfb\xe6\x5b\xfb\x1b\xe7\xa9\xfd\xad\xf3\x7c\xf7\xdb\xdd\x6f\x9e\xef\x76\xf9\x93\x8b\x94\x76\x23\x08\x49\x4e\xbb\xd1\x3d\x2d\x0c\xf5\x90\x7c\xce\x5e\xbc\xff\x7c\xcf\x34\x63\x15\x90\xf0\xa2\x1b\xf7\x9f\x43\x4a\x74\xbb\xd0\x9c\x68\x56\xa1\x5b\x25\xaa\x9c\xcd\x84\xb4\x36\x98\x69\x37\xb1\xf2\x6e\x08\x79\x37\x31\xd3\x6e\x88\x8b\x66\x77\x0d\x1f\x39\x58\x3c\x40\x41\xc4\xe7\x72\x42\x87\x19\x4a\x38\xa3\xe1\x91\x2b\xc7\xfa\x4c\x78\x8a\x61\x7a\x1f\x4a\x4b\x9f\x00\xe8\x69\x77\x4c\x31\xd6\xfb\x66\xb7\x3e\x17\xc7\xb4\x39\xbb\xb5\x94\x7a\x4b\x16\x75\x32\xfa\xbb\x30\xa2\xc4\xe9\x6b\x93\x74\x17\xc3\x9c\x92\xa7\x5d\x34\xa2\xfd\x5d\xd3\xc1\xb0\x7c\xec\x4c\x9d\x8b\x99\xda\xdf\x85\x90\x44\xdd\x11\x85\x98\xf0\xa0\x76\xdd\x11\x35\x23\x48\x89\x15\x43\x4e\x82\xaa\x1d\x6c\x50\x2b\x92\x63\x08\xf4\x21\x81\x5c\x6f\x61\xef\x79\x37\xb1\x16\xb4\x1b\xc2\x82\x76\x13\x93\x7d\x87\x8d\xfc\x98\xe5\x07\x2c\x3f\xe6\xf9\x41\x23\x3f\x65\xf9\x39\xcb\x4f\x79\xfe\x1a\x7e\x93\xe3\xe7\xa8\x19\x68\xd2\xc4\x6f\x72\xfc\x1c\x35\xcb\x8f\x9b\xf8\x4d\x8e\x9f\xa3\x66\xf9\xe9\x7a\xe7\x5f\x53\xe2\x65\x14\x22\xb6\xfa\x61\xc8\xd6\x0d\x4c\x29\x2c\xa9\x0f\x13\xba\xae\x3a\xcc\x50\xc6\xd4\x11\x32\x43\x5f\x3d\x53\x21\x42\x75\xdf\x71\xf2\x85\x0a\xb7\x68\xe6\x2e\x5e\x13\x29\x35\xb5\x9f\xee\xf4\xd8\x18\xa2\x08\x36\xda\x20\x40\xe9\x02\x48\x9d\x76\xad\xc9\x44\x49\x8f\xeb\x81\x7f\xf5\x6c\x83\xad\x13\x7e\xb4\x91\x08\x47\x3b\xff\x88\xeb\xa6\x84\x0b\x5f\xc9\x67\x1e\x2d\x36\x05\x95\x84\x8b\x62\x49\x01\x97\xb5\x01\xd1\x2e\x28\x2f\xa8\x7a\x62\x43\xab\x0b\xcf\xfa\x4e\x8f\x76\xbb\xb4\x77\x71\x6b\x9b\x94\x3f\x34\xe8\x3f\x05\x91\xb2\xe4\x29\x4b\x91\x22\x20\x04\x64\x99\xb2\x94\x29\x35\x98\x67\x02\xc6\xcc\x70\xff\x2b\x05\xf5\x4c\x40\x99\x11\xee\x7f\xa5\x49\x02\x37\xb4\xed\xc6\xfc\x86\xfe\x4b\xaf\xcc\x6f\xd7\x5f\x0b\x69\xa6\xd9\xef\x82\x77\xf0\xf0\xd5\xba\xbc\xe4\x5e\xbf\xda\x7e\xea\x5e\x50\x31\x73\xcb\x67\x23\x0a\x75\xe9\x58\xb3\xf5\x32\x7a\x1d\xbc\xf8\xdf\xfb\x7b\x3d\x6b\xb7\x96\xf5\x14\x5a\x6b\x42\xcf\xbb\x6a\x90\xcd\xf2\x25\x0d\x9b\x96\x2a\x7d\xa9\xd2\xd9\x14\xfe\x0a\x97\x06\x02\x6a\xd4\xb8\x4d\xc0\xda\x3c\x81\xea\xf5\x00\xac\x4d\x19\xed\x31\x96\x3c\x8c\x79\xd9\xca\x32\x22\x7a\x23\x16\x80\xb6\x5a\x6f\x5b\x17\xc4\xed\x86\x05\x71\x49\xcb\xa9\x7f\x49\x3f\x6f\x8a\xdf\xee\xaa\x1f\x4f\xd5\x8f\x67\x2d\xb3\x5f\xfe\x50\xc0\x4b\x05\xbc\x7c\xf6\x57\x17\x86\xd3\x3e\x01\x14\x75\xaa\x13\xcb\xa0\xf7\x2d\xf3\xb8\x6d\x36\x34\xd0\x95\xf8\xcc\x5d\x35\x11\x9e\x72\x56\xa5\xd0\x97\xe9\x4b\x96\xde\xac\x4c\xcd\x22\x55\xb4\xc2\xb2\xab\x63\xa9\xd2\x97\xbb\x2d\x58\x36\x90\xfc\x54\x90\x2c\xcf\xf4\x36\xb4\xbb\x96\xab\x26\xf9\xf2\x69\x5b\xee\x33\x95\xfb\x8c\x0b\x4e\xff\xc8\xa5\x7c\xbb\x5b\x4d\xf4\x5d\x92\xdd\xb3\x42\xa1\x9c\x55\x65\x81\xa7\xf5\x02\xed\xeb\xf6\xf6\x59\x55\xe0\x19\xc9\xe0\xde\xd1\x64\xfb\x89\x9a\xcf\x26\xe5\xeb\xb9\x5c\xcd\x2a\x67\x29\x36\x20\xd5\xe3\xff\x94\x75\x7d\xba\x71\x5d\xdf\x36\xd6\xf5\x49\xeb\xba\x3e\xf9\xcf\xdb\xe8\xee\xdd\x83\x9e\xfe\xfb\xec\x41\x7f\x6e\x13\x91\x6f\xec\x37\xcf\xb3\x84\x6c\x9c\x69\x5b\x0f\xed\x7a\x11\x24\x1b\x76\x3d\x96\xd3\xc2\x19\x24\x55\xcf\xfe\x39\x93\xf7\x70\xe3\xe4\x3d\x69\x4c\xde\x2b\xaa\xdf\x44\x5c\x06\x69\x98\x92\x72\xf3\x92\x88\x2f\x69\x16\x90\xac\xb8\xaa\xcd\xe8\xfb\xe6\x22\xf1\x7c\x45\x53\xf5\x93\xe3\x7e\xf0\xf2\x44\xf3\xc7\x7a\x71\x0b\xca\x57\xe9\x52\x0b\x85\x67\x89\x28\x29\x07\x76\x19\xd7\x2d\x91\x7e\xf1\x21\x26\x19\x3f\xd8\xe2\x8e\x54\xad\x10\x52\x1e\x28\x98\xab\x7a\x3c\xce\x57\xbe\x4f\xa2\x3d\x9c\x90\xbc\x1f\xd5\x88\xd2\x59\x2d\x6b\x6c\x97\x7a\xb9\x6f\x22\x35\x77\x59\x12\xee\xa2\xd0\x4c\x98\x22\xa7\x81\x65\x6d\x60\xb1\x99\x74\x53\x8c\xb7\x54\x5f\xa8\x8e\xd0\xde\xa8\x57\x5d\xf1\xe0\xdd\xd0\xad\x70\xf9\x63\x96\x83\xb1\x94\x09\x99\xba\x0d\x3a\xa6\x0d\xb7\x5b\xe5\x97\x3e\xf6\xc2\x91\x5d\x39\xb2\x3c\x3a\x84\x1c\x7b\xa5\x50\x45\x3d\x3e\xd0\x2d\x0a\x15\xe5\xd5\x41\x54\xa0\xde\x37\xcf\xf5\x50\x54\x0f\xeb\x1f\x42\x5d\xa0\xbd\x8b\xab\x2e\xff\xbd\x6b\x71\x45\x82\x69\x86\x6c\x71\x95\x19\x4b\x9e\xb1\x14\x19\xb7\xbb\x5a\x09\xc7\xca\x04\xb4\x96\xb8\x74\xc4\x79\x02\xdb\x54\x79\x96\xa6\x77\x1c\xd5\x66\x74\xc9\x90\x95\xff\x54\xc2\xc6\x0b\xf7\xbf\x2a\x8e\xfe\xbb\x19\x74\x29\xa6\xb5\x0a\x65\x7f\x51\x04\xbb\x5f\xf3\xd0\x44\x91\x3a\x6f\x3a\xdb\xa8\xd0\xfc\xaf\x86\xb2\xdb\xc2\x84\x9d\x7b\xe5\x9f\x92\xb9\x9f\x3d\x92\xb9\x37\x86\x47\x17\xcd\x5a\xd9\xbd\x1c\x44\x4d\x7c\x93\x4c\xe1\xc3\xa3\x98\x02\x63\x02\x47\x4d\x26\x90\xd1\x28\x0d\xe3\xe8\x7e\x3e\xa0\x9b\x1a\xbd\x7f\xe4\x82\x7b\xff\x2f\xd5\x74\x6e\x9f\x7f\x9e\xca\x23\x7f\x3c\xff\xe7\xea\x3e\x6b\x52\xfe\xe7\xea\x3e\xf5\x75\xfc\xd9\xe8\xda\xf4\x92\x47\x6b\x1e\x2d\xb9\xcf\x55\xee\xf3\x7f\xbc\x5e\xb2\x59\xcd\x68\x5f\x97\xed\x3d\x5e\xd7\x3d\x5a\xfb\xb6\xa1\xad\x3c\xaf\x4a\x3c\x2f\xeb\xfd\x6f\x5b\xc9\xef\x1e\xbd\x92\xdf\xff\xe5\x95\xfc\xe9\x91\x2b\xf9\xd3\xff\x84\xad\xf3\x7f\xb6\xb6\xf3\xe0\x2e\xb8\x2e\x09\x3c\xf6\xd0\xe6\x31\xda\xcc\xbf\x7c\x99\xbc\x79\xf4\x32\xf9\xf4\x97\x97\xc9\x0b\x5a\x0f\x97\xcd\xa5\x54\x11\xeb\x72\xe9\x70\x6b\x29\xd6\xa2\x80\x7f\xef\x72\xaf\x8b\xbd\x8b\x99\xed\x5c\x04\xea\xad\x78\x4a\xf8\xc9\x3a\x4b\xdb\x0d\xcc\xa7\xea\x77\xc0\x7f\x38\xbb\x17\x81\x29\x7f\xec\x06\x90\x13\x2d\xbf\xc4\xa4\x00\x02\xbc\x95\x10\x94\x74\x53\x21\x56\x77\xcb\x72\xfc\xbc\x5f\xab\x05\xf7\x73\x08\x09\x0a\x05\xe4\xb2\x01\xb9\xac\x43\x16\x92\xe6\xdd\xa7\x15\xcd\x33\x49\xf3\xee\xd3\x8a\x66\x96\xdf\x46\xf3\x90\x68\xf9\x25\x26\x8d\xe6\x98\xa0\xb8\x3b\x13\x77\x12\x15\x56\x2b\xab\xa8\xc2\xfd\x21\x04\x04\x05\x02\x6a\xa9\x43\x45\x35\xa8\x62\xa3\xea\xa1\x5e\xd4\xb7\xab\x09\x6f\xef\xe5\x75\xc1\x6c\x31\x65\x3a\xef\xdb\xff\x14\x4e\xc7\x67\x85\x62\x61\xac\x93\xd5\x6f\xd6\xf3\xa4\x82\xd9\xd5\x81\x76\x75\xa8\xf2\xe3\x5f\xa9\x6f\xac\x4b\x14\x1a\xe8\x7f\x93\xca\xc1\x26\x7f\x3b\x7b\xd6\x83\x3c\x32\x4d\x56\xb9\xf4\x67\xda\x6b\xb6\xa5\x77\xb8\x76\x15\xad\x77\x30\x4f\x5e\xc4\x37\x28\xea\x46\x66\xd2\x4d\xf4\xd9\x86\x71\xb1\xb1\x77\xff\x1d\x2e\x61\x4a\xde\xfe\x62\x9d\xb7\xaf\xcd\x3e\xd8\x30\x13\x61\xe3\x4c\x84\x8d\xd3\x12\xfe\x15\xfb\xc7\xab\x47\xed\x1f\xe2\x04\x45\xb2\x0e\xb7\x54\x9f\x6c\x6d\x37\x11\x9c\xe3\xfe\x43\x14\xfd\x0c\xe5\x8f\x47\xf1\xa1\x3f\xfe\xd3\x74\xa7\xff\x6e\x7e\xf4\xbf\x6a\xd8\x7f\x28\x53\xfb\xf7\x54\xfb\xfe\x47\xf2\xbc\xd7\x9f\xc1\xf3\xfe\xd0\x78\xde\xfb\xbf\xca\xf3\xbe\x7b\x14\xcf\xfb\xee\x7f\x65\xaf\x7f\x03\x85\xf5\xdf\x9f\x71\xfc\x47\x2a\xc8\xff\x23\x19\xca\xc7\xcf\x60\x28\xdf\x69\x0c\xe5\xd3\x5f\x65\x28\xbf\xb7\x5e\xc1\xff\xfe\x57\x85\xa6\xfb\x56\xa3\x06\x71\xcf\x5a\x6b\x5f\x53\xad\x0b\xea\x1e\x49\x1e\xb5\x6d\x94\x2d\x82\xbd\xba\x12\xfc\x69\xe3\xf5\xef\xef\x8d\xeb\xdf\x1f\xa9\xfe\xde\x46\x3e\xb6\xad\x94\xe4\x5f\xda\x4e\x3a\xc4\x51\x03\x84\x24\xb3\xc4\xc9\x47\x4c\xe4\x9d\x9c\xb8\xc1\xeb\xa3\x64\xb5\x0a\xf7\xed\x4e\xc7\xb2\x31\x53\xe2\x23\x4b\x9a\x11\xa2\x70\xb5\x4a\x54\x46\x4a\x50\xdc\x0d\xcd\xa0\x9b\xb0\x12\x66\xa8\xde\x0a\xa0\x1f\x29\x8a\xb1\xf9\x23\x45\x01\x96\xaf\x8e\x6a\xaf\x86\x63\x0c\xe5\xef\x00\x43\xef\x79\xb7\xfc\x4c\x31\x5e\xad\xb4\x10\xbf\x7f\xa3\xba\x79\xb0\x46\xbc\x7a\x96\x10\x0d\xd0\xd3\x6e\x9d\xf8\xc8\xca\x70\x7f\xd7\xd5\x1f\x1d\xb5\x74\x82\x2d\x8f\x7b\x6c\x79\xdc\xe3\xc8\xe3\x1e\x87\x37\xcb\x4a\x70\xff\xe9\xd6\xe6\x83\x09\x33\x85\xd0\x4c\xbb\x19\xc4\x56\x0a\x81\x95\x76\x23\xee\x4e\x54\x7b\x92\xd2\x3a\x9f\xab\x87\x26\x2d\xd9\x6c\x74\x7f\xa6\x35\xcf\xaa\x3f\xdf\x8f\xe5\x57\xda\x98\x1c\x5f\xd4\x8b\x7f\xdf\xcc\xff\xa1\x9e\xcf\xc3\x75\x6e\x46\x9f\x65\xe5\x63\x2d\x88\xc4\xcb\x42\x79\x7f\x2f\xc3\x2e\x88\xb7\xe6\x09\x96\x01\x63\xcb\xcf\xa0\xf6\xc9\x2d\xed\x43\xcf\xf6\x89\x0d\x31\xfb\xb3\x0b\x01\xfb\x43\x3d\xdb\x37\x77\xbb\xd4\x73\x7c\xc8\x88\xb3\x97\xed\x27\xfc\x8e\x3f\x13\x01\xd4\x1d\x88\xd9\x9f\x67\xfc\x7d\x36\x79\xd6\xa5\x5e\x26\xc0\x33\xd3\xf1\x25\xce\xc4\x72\x18\xba\x58\xfc\xf8\x1a\x02\xf1\xe3\x9b\x2e\xe5\x3f\x4c\xea\x25\x25\x6e\x8e\x39\x22\x0c\x77\x3f\xf6\x32\xcb\xf1\x79\x05\x16\x89\x78\x0d\x16\x89\xba\x01\x4f\xd6\x71\x0b\x84\x7d\x51\x01\x64\x24\xb1\x76\xf7\xb2\x03\x62\xef\x59\x96\x24\x13\xf1\xc2\x21\xa7\x0a\x33\xc4\xa2\xbc\x24\x09\x31\x0a\x4c\x81\x0c\xf7\x77\x21\x23\xb6\xd6\x4e\xde\x40\xd5\x24\x89\x43\x39\x5f\x0b\x21\xf6\x8b\x2f\xfe\xbb\x05\xa8\x75\xb9\x29\xb3\xff\xb9\x17\xdb\xba\x05\x6e\x6d\x17\xfe\x7b\xed\x62\x3b\xb3\xe1\x6f\x8d\x04\xfc\xdf\x75\xdc\x24\x98\xd3\xbb\xe0\x1d\x8f\xf2\xcc\x36\x05\x2e\x70\x61\x2d\x2c\xc0\x6a\x95\x95\x5f\x4b\xe7\x9e\xce\xf9\x77\x38\x27\x02\xd5\xd5\xaa\x87\x23\xf2\x8b\x26\xec\x60\x88\x9a\x76\x7b\x6b\x63\xd3\x28\xf1\xe7\xcd\xa1\x4a\x94\x24\x2a\x8a\x02\xd0\x0f\xfa\x8a\xa8\x87\x7e\xd3\x17\x0b\xc6\x42\xbd\x6e\xbc\x87\xd5\x41\x04\x80\x0c\x76\xc9\x89\x07\x8a\x0b\xf8\xb9\xb6\xe4\xee\x09\x23\xd1\x14\x22\x79\xe9\xd6\x10\x11\xf7\xc8\x16\xb3\xcd\x91\x1f\x9a\xcb\x83\xe3\x7f\x7c\x1c\x86\xf6\x8d\x2b\x03\xca\x1f\x11\xc5\x10\xe2\xa2\x00\x9a\xfd\x6b\xf9\x4b\xdd\xac\xec\x4f\x9a\x8f\x71\xe3\x31\x5c\x46\x85\xbf\x67\x6d\x70\xdf\xb8\x9e\xed\x6f\x5a\x21\x65\x3e\xec\x12\x42\x22\xbc\x01\x0b\xe3\xfc\xdc\xb3\x2d\xf7\xf6\x59\xda\xac\x11\xbe\x3f\x32\x29\x8a\xbf\xd5\x8a\x89\x0d\x01\x71\xf6\x82\xfd\x68\xcf\x34\x63\x30\xcd\x00\xdf\x37\x14\x89\x67\xfb\x5e\xec\x43\x28\xff\x26\x9e\x23\xbf\xc5\x5f\xea\x05\xac\xde\xc0\xc7\x7b\x0f\xb2\xb5\xe8\xcf\x30\x33\xb5\x04\x6b\xf6\x6d\x7f\xcd\x92\x2d\x6a\x7d\x29\xc3\x84\x01\x2e\x6a\x68\x62\x6b\x92\xdd\x77\x80\x90\x91\xac\x48\xfe\xd5\x73\x53\x75\xc3\xe3\xb6\x37\x7b\x5f\x92\xaa\x7a\x3e\xdb\x77\x3a\x9d\xdd\xfa\x1e\xd3\x1c\x95\xfa\x56\xa7\x7a\x11\xc3\x3f\x61\xdf\x3a\x20\x76\x19\x75\x21\x2b\xc7\x3d\xdb\x34\x19\x36\xe8\x39\xff\x4e\xc6\x5b\xe5\x6e\x53\x2e\xfd\x6c\x9f\xd8\xed\x8b\xb6\xec\xe1\x0d\x6f\x06\x78\x55\xa5\x37\xf5\xf2\x0c\xa4\x5b\x9a\x82\x66\xd8\xa4\xd2\x82\x58\x9d\x84\xac\x19\x0c\x97\xc3\xb7\x29\x1f\x17\x6a\xe3\xab\x76\xb9\x52\xd5\x0e\x37\xae\x15\xbe\x36\x7a\xcf\xf5\xe5\x12\x67\x6d\x30\xb6\x1e\x25\xac\x15\xc2\x11\xae\xd0\xd3\xe6\x46\x18\x8e\x11\x0a\xab\x60\x66\x07\x0e\xae\x22\xd8\xf1\x6d\x84\x70\x7d\xc8\x63\xdc\xd1\x87\xb4\xf4\x3b\xb5\x17\xef\x87\xfc\xa5\x2c\x03\x4f\x48\x20\x81\x62\xdf\x97\x11\x05\xd3\x3d\xd3\x8c\x70\xe0\x45\xbe\xe7\xf8\x26\xe1\x3f\x6c\x9f\x84\xe9\xbb\xe0\x9d\x88\xce\xef\xf8\x78\x90\x88\x64\x57\x26\x14\x90\xd7\x3b\x43\x8f\x61\x26\x1d\x5e\x45\x7a\x58\x6e\xcc\xe4\x6f\x26\x86\xe3\x88\x89\xd0\x59\xa9\x0d\x6a\x5d\x36\xcb\x6a\xce\x9e\x98\xfa\xc0\xfb\x62\x98\xb5\x3d\x8e\xf4\x7c\x0c\x19\xc9\x33\x88\x48\x9a\x41\x42\x66\x59\x85\x29\x44\xea\x11\x3f\x8f\xee\xb7\x29\x18\x41\x4e\x42\x45\xec\x8c\xa8\x57\x81\x30\xd4\xe8\x9e\x09\x5d\x28\x26\xf6\x5e\xbc\x3f\x13\x2f\x8e\x55\x53\xc7\x30\x25\x29\xe3\xfb\x0b\x32\xf4\x62\x5f\x2b\x95\x63\x18\x11\x7b\x6f\xb4\x9f\xef\x99\xe6\x08\x2f\xbc\x91\x4f\xc6\xc4\xb3\xc1\x64\x6a\xca\xc8\x87\x29\x8c\x20\xc4\x3e\x8c\x7b\xa3\x20\x0b\x08\x4b\xdb\x5a\xf4\xae\xe8\x92\x4c\x0b\x59\x1f\x04\x24\x43\x43\x5c\x56\x3b\xf4\x02\x36\x68\x22\x62\x36\x89\xcb\xfe\x43\x43\x08\x30\x0c\xd5\x39\x4e\xd8\x08\x42\xff\x27\x5f\x68\x4a\xff\x1d\x4c\x74\x0c\xf9\x4b\xcd\xb0\xe9\xd6\xea\x2f\x78\xa8\x08\xb9\x87\x8a\xb0\x17\x27\x23\x9a\x7c\xae\x27\xc2\x3c\xdb\xec\x87\x4f\x52\x4d\x05\xd5\x19\xaf\x63\x3c\x4e\x1f\xef\x8b\x43\x55\x92\x66\x2e\x65\x28\xa2\x02\xc2\x02\xc6\x6d\x6b\x31\xd1\xd6\xa2\xad\x87\x93\x14\x8b\xd1\xe6\xeb\xcc\xf6\xab\x55\x18\x54\xb3\x27\x24\x62\xe9\x25\x7c\xe9\x85\x26\xb7\x9d\xf7\x62\xb6\xb0\x56\x2b\x9b\x49\x4b\x21\x5f\xae\x3a\x54\x05\xd2\x27\x61\x91\x66\xd2\xbb\x2e\x4c\xdb\x88\x4b\x6b\xc4\x35\x68\x13\xa1\x95\xb8\xeb\x34\xc9\x2e\xca\xa8\x93\x7c\xae\xe5\x58\x4c\xc1\x80\xd8\x35\x16\x81\x42\xc2\x5a\xed\x65\x5e\xe4\xfb\x5e\xee\x63\xcf\xf1\x2d\x26\x13\xe1\x03\x62\x0f\xb8\x74\x44\x62\x2e\x14\x91\xd8\x24\x21\x76\xc3\x7d\x9e\xcc\x94\x72\xe0\xb9\x01\x4f\x16\x80\x05\x2c\xda\x28\x8f\x36\x76\x2b\xe1\xe7\x3f\x92\xbf\xc5\xe5\xca\xdd\x4b\xf6\xe3\x3d\xd3\x4c\x2a\x58\x46\x77\x4a\x6c\x29\xd6\x05\x38\x65\xfd\x1b\xf8\x5e\x52\xf6\xaf\xf8\x69\x12\xfe\xc3\xf6\x89\x95\xf6\x77\xb5\x2e\x1d\x3d\xc4\x7b\xd9\x3e\x9d\x10\x46\xab\x20\x07\x3f\x34\x13\x98\x8c\x99\x70\x62\xca\xec\x94\xd8\x72\x10\xec\xbd\x94\xb3\xe8\xb4\xca\x1c\x72\xcc\xa9\xef\xc3\x98\x0c\x19\xed\x9c\x70\x98\x12\x34\xb6\xd0\xd0\x0b\x2c\x47\x26\x71\xcf\xf1\x0b\x62\xef\x2d\xf8\x20\x2d\x04\xd7\x1b\xf1\xe2\x0b\xdf\xdf\x9a\x9a\x04\x8d\x4a\x04\xd8\x62\x1f\x55\xe1\x22\x37\xc9\x18\x66\x26\x99\x76\xc7\x45\xa4\x72\x4c\x22\x7f\xf2\xf1\xcc\x3b\x1d\x14\x5b\x64\xd6\xcf\xf1\x26\x90\xaa\xe7\xe6\xd9\x7a\x44\x7e\x1e\xd4\x72\x81\x96\x55\x44\xcd\x3c\x2b\x03\x40\x6b\xfd\x1c\xd5\xa2\xce\x5a\x6c\x96\x15\xfa\x86\xba\xcc\x6a\xfb\x0c\x44\xc4\x72\xd4\xac\x50\xac\x3b\x26\x96\xd3\xb7\xd9\x6c\xdd\x0f\xf7\x30\xd3\xec\xa9\xdc\xc0\x0e\x62\xee\xfc\x97\x6d\x14\x51\x49\x48\xc2\xb7\x97\xeb\xcd\x44\x4f\xfe\x2a\xd1\x93\x35\xa2\x6d\x48\x88\xe5\x68\x44\xb3\xc9\x5b\x51\xcb\x67\x26\xee\x74\x50\x64\x92\xaa\xf2\x88\x13\x7a\xd9\xca\xc7\xae\x65\x54\xe6\x6b\x9a\xf0\x58\xca\x70\xd1\xd2\x9e\xda\x69\x20\xaf\x5c\x36\x0f\x62\x32\xe7\x4a\x91\x5c\x35\x90\x33\x8d\x6f\x46\x3c\x71\x28\x26\x4f\xbf\xe4\x49\x5c\xec\x65\x3e\x04\xfb\xe9\x00\xb1\x95\xec\x45\x3e\xe4\x32\x3a\x36\x8f\x72\x21\xd3\x66\x65\x9a\x22\x7f\x56\x91\x27\xc3\xa7\xa2\x1c\x17\x70\xd3\xda\x9e\xbc\xd1\x9e\xad\xa8\x37\x42\x19\x18\x41\x32\x34\x40\x93\x03\x24\xf8\x71\x81\xa1\x84\xa0\x41\x1b\xc8\xa7\x0a\x84\x49\x7a\x6d\x20\xef\x2a\x90\x45\xd8\x0a\xf1\xb6\x5e\xcf\x87\x60\x14\x06\xb3\x36\xc0\xdf\x2b\xc0\x84\x03\x1d\x6e\x20\xeb\xf7\x3a\x59\x9b\x31\x7e\x6c\x62\x7c\xbb\xa1\x15\x1a\x20\x97\xc0\x37\xa3\xfc\xa9\x56\xf7\xd5\xeb\x38\x09\xff\x88\xa3\xac\x1d\xf8\xd7\x3a\xf0\x8f\x34\xc9\xc2\x61\x3b\xe8\xf7\x75\xd0\xcd\x04\x50\x5a\x41\xa6\x3c\x82\x77\x1b\xd4\x64\x0d\x2a\x6d\x03\xbb\x5e\x03\x3b\x0a\x93\xe1\xac\xb5\x8f\xb2\x75\xd8\x24\x4e\x5b\xd1\x46\x6b\xa0\x2f\xc2\x60\x1e\x47\xa3\x36\xe0\x78\x0d\xf8\xf4\xf7\x3c\x48\x5a\x69\x18\xae\xc3\x66\x41\xd2\x06\x39\x5b\x83\x3c\x4b\x42\xee\xd6\xa9\x0d\x7a\xba\x06\xfd\xd3\xb2\x15\x70\xa9\x01\x72\x5f\x74\xdf\x05\x69\x98\x1e\x31\xb5\xb4\xb5\x71\xa7\xad\xf0\x27\x0b\x1a\xb5\x41\x1f\xb6\x42\xb7\x41\xbe\x5c\x83\xcc\xa3\x51\x7b\xdb\x8e\x9b\xa0\x47\x41\x32\x0a\xa3\x60\xb6\x99\xea\x77\x9b\x8a\x6c\x22\xfc\xcd\xa6\x02\x6d\xc0\x1f\xd6\x81\xb3\x79\x3e\x9b\x7d\x88\xe7\x9b\x49\x7a\xbd\xb9\xd0\x26\xa2\x3e\x6e\x2e\xd2\x06\xfe\xaa\x09\xce\x98\x45\x90\x6c\x26\xe9\xa7\xf6\x02\x6d\xa0\x47\x0d\xc8\xe3\x38\x8a\xb3\x38\xa2\x3f\xb7\x72\x8d\x26\x5e\x05\xfd\x4b\x2b\xe3\x68\x42\xbf\x0b\xb2\x3c\x69\xef\xf9\x28\x6b\xc0\x9e\x66\x74\xd1\x06\x18\xb6\x01\x1e\x8e\x33\xda\xda\xba\xa0\x0d\xfa\x3b\x3a\x8e\xdb\x17\x71\xac\x81\xa7\x59\x30\xbc\x6a\x5d\xe9\x4d\xa0\x13\xae\x8f\xbc\xbc\x5d\x04\xed\x6c\x64\xdc\x5e\xe0\x45\x78\x4d\x93\x49\x18\x4d\x5a\x97\x7d\x7b\x99\x77\x71\xfb\x2e\x91\xb6\x83\x9f\x86\xb3\x69\x9c\xd3\x2c\x6b\x2d\xb4\x68\x2f\xf4\x53\x38\xd9\xc0\x8b\x46\x6b\x05\x98\xb6\x77\xb8\x58\xd0\x20\x09\xa2\x61\x6b\x99\x79\x7b\x99\x74\x48\xa3\xd1\x86\xb6\x5f\xb7\x16\x79\x41\xef\x2b\x73\xd9\x5a\xe6\x4d\x94\x86\x23\x7a\x92\x67\x6d\x45\x2e\x5a\x8b\x6c\xea\xe1\xbc\x15\xfa\x83\x10\x69\xda\x0a\xdc\x64\x05\x7e\x20\xb8\x7e\x2d\x86\x77\x84\x9e\x62\x08\xc9\x9d\x74\x54\x5d\xe1\x2b\xf4\x13\x28\x54\x49\x9e\x14\x32\xae\xcd\x35\x95\x5e\x48\xc8\x5d\xb1\x97\x71\x4d\x29\x93\xa1\x20\x68\x05\xe5\x65\xbe\x69\x18\x78\xb5\xa2\xdb\x61\xb4\x9d\xac\x47\xcd\x0d\x67\x33\x3a\x09\x66\x3c\x22\xbc\xbb\x6d\x98\x14\x6f\x25\x1e\xf5\x89\xe7\x17\xda\xc1\x56\x80\x92\xb5\xe8\xf8\xfc\x6c\x4d\xbf\xbb\x4e\x85\xae\xb5\xa6\xf1\x55\x7a\x5e\xc8\xf5\x3c\xa9\x25\x7a\x89\x8f\x7b\x51\x30\xa7\x84\x90\xac\x74\x5c\x25\x4e\x29\x2a\xa4\xb9\xea\xcb\xea\x0e\x40\xfa\xd6\xad\x2b\x8f\xe1\x98\xdf\xfb\x56\x08\xef\xd8\x27\x09\x81\x12\xe9\x4c\x15\xd9\x90\x94\xd2\xab\x4a\x4b\x4c\x07\xcb\x03\xd0\xb2\xbd\xca\x8f\xf9\xff\x8f\xba\x77\x6f\x72\xdb\x46\x16\x47\xff\xf7\xa7\x88\x75\x93\x29\x62\x84\x91\xf1\x06\x28\x0f\x33\xe5\x24\x9b\xdd\xec\x6e\x1e\x9b\x64\x93\xb3\xab\x33\x3f\x17\x88\x87\x87\x1b\x0d\xa9\x50\x94\xed\x59\x8f\xbe\xfb\x2d\x80\xa4\x48\x3d\x66\x6c\xdf\xb3\xa7\x7e\x75\x3d\xae\x16\x45\xe1\xd9\x00\x1a\xdd\x8d\xee\x86\x6b\xd9\xe0\x77\xa1\xc8\x79\xd3\xc5\x14\x2f\xb7\x00\xba\xbd\x1b\xd1\xab\x87\x6f\x44\xaf\xca\x53\xc7\x96\x41\xac\xec\xb4\x9f\xb0\x0a\x12\x79\x01\x13\x17\x46\x69\xd6\xd4\xc5\x6d\x02\x66\xeb\xd5\xb2\x68\x92\x67\xff\xe7\xfe\xbf\xd7\xd3\x67\x20\x32\xfa\xc7\xf2\xcd\x64\x12\xcf\x67\xa2\x36\xe9\x7b\x9f\x4c\x66\x93\xf6\x92\xec\x4e\x09\xbd\xeb\x75\x39\xc5\x60\x0f\x09\x25\x00\xd0\x9d\x9d\x3d\xad\x67\x37\x7a\xfd\xfd\x9b\xf2\x87\xba\x5a\xb9\xba\xb9\x4b\x1c\x38\x9e\x1e\x9b\xf2\xb7\xb2\x7a\x53\xee\x4d\x8f\x88\xa6\x77\xf1\x8d\x83\x2d\x72\xb6\x5b\x10\x04\x90\x0b\x0c\x97\x59\x35\x3a\x33\x7a\x9a\x1c\xce\xd7\x4b\x02\xe2\x2c\xed\x02\xcc\x9f\x9d\x0d\xba\xa0\xa7\x3b\x0d\xd6\x89\x69\x5a\xbe\xd6\xcb\xc2\x7e\x62\xf4\x72\x99\x6b\xf3\x5b\x68\x4b\xd3\xaa\xf6\x82\x54\x7e\xb9\x7c\x1e\x66\x40\x99\x25\x2e\xab\x16\xfa\x1a\xc4\x30\x67\x20\x48\x33\xd9\x26\x89\x42\x8d\x8b\x53\x03\x8e\x6e\x03\x6f\x75\x45\x4d\xab\xa8\x09\xcb\xa3\x38\x95\x21\xa4\xda\xc9\x41\x61\xd4\xb6\x07\x95\x1e\xd5\x1a\x64\xbf\x6c\x3d\x2e\x04\x80\xdd\xfc\xde\x42\x53\xad\xee\x8e\x4f\xdf\xde\x6d\x77\x07\x6f\xbb\x30\x89\xb1\x51\x4d\x54\x1c\xc5\x98\x0c\xdd\x10\x0e\x42\x65\x5c\x99\xf1\x0c\x54\x2f\x97\xc7\x26\x88\xc9\x31\xb9\xb8\x20\x47\xfa\xa4\x91\xda\xb3\x8c\x47\x6a\xcf\xab\xf6\x38\x0d\x14\x8b\xea\x7a\x44\x4a\xaa\x29\xb9\x8e\x83\xda\x36\xf3\xff\xe3\xf4\xe9\xb5\xa3\x65\x98\xf9\x6d\x49\x0b\xb7\x53\xc0\xec\xea\xae\x17\xd5\x75\x4b\x0b\x7a\xd5\x2f\x2c\xc0\x16\xc6\xe7\xf9\x21\x9d\xfd\x8f\x34\xaa\x3b\x60\xec\x5b\x04\x8b\x48\x68\xea\xbe\x61\x45\x24\x34\x05\xa8\x17\xc5\x61\xc3\xca\xfe\x2c\xae\xbd\x85\xaa\x82\x37\x19\xea\x6e\x8b\x40\xf0\x36\xc3\x8e\xc2\xbb\x0c\xc1\xd7\x19\x82\xaf\x32\x04\xf3\x6c\x52\xc5\x53\xf4\x41\xfb\xb9\x72\xb5\xaf\xea\xdb\xb0\xad\x9e\x9d\x8d\xbe\xcc\xca\xea\xcd\xd5\xe8\xfb\xfc\x2b\xdd\x38\xf8\xf2\xb8\x80\x37\x45\x69\xab\x37\x67\x67\xed\xe7\xac\x76\xbf\x6f\xdc\xba\x79\x51\x16\xb7\x3a\x20\xea\xeb\x5a\xdf\xba\xab\xc7\x7e\x9c\xe5\x45\x69\x93\x36\x05\x98\x8f\xc9\xcd\xda\x35\x3f\x17\xb7\xae\xda\xc4\xc3\x0d\x39\x56\x8e\xbc\x19\x6d\xe3\xf7\xf7\xc9\xcb\xe4\x0f\x00\xbe\xce\xf2\xd0\xea\x04\x4c\x5f\xed\xdd\x57\x0d\xde\xbd\xce\xd0\xf8\x76\xea\xdd\x41\xa4\x5e\x2e\x7b\x43\x97\xe2\xb6\x3f\x87\x2e\xa3\x79\xd6\xde\x7d\x3e\x3f\xed\x5b\x94\xc5\xa8\x42\x3b\x45\xd0\xac\x76\x31\x8c\x7a\x97\x06\xd6\xe3\x3b\xac\x43\xdd\xc9\x5d\xdf\x30\x30\x7d\x05\x6f\xb2\x55\x86\x9e\x34\xf5\xdd\xbb\xa7\xa3\xa5\xf8\x26\x01\x70\x3a\xbd\x79\x32\xde\x74\x97\xcf\x9b\xe7\x20\x71\xd9\xeb\x8b\xa6\x6d\x20\x88\x14\xb6\x69\x1b\xde\xea\xab\x63\x94\x92\x18\xea\xb1\x69\x5b\xfe\xfc\xe2\xe2\x66\x9b\x80\xad\x0f\xb2\xc7\xf2\xee\x5d\x98\x10\xa3\x7a\x46\xe5\xc3\x32\x5b\xc2\x3a\xc3\xcf\xd0\xf3\xf2\x39\x28\xdb\x52\xaf\x92\xfa\xf3\xb2\xad\x2d\x2a\x2a\xbb\xe7\x40\xc7\x4b\x58\x86\xaf\xa1\x12\x30\x4f\x9a\xfe\x19\x96\x23\x94\x85\x8d\xe1\xca\x75\x2f\x9a\xf9\x32\x6b\xc0\x13\x93\x39\xf8\x5b\xd8\xc5\x93\x30\x44\x68\x3b\xbe\xc2\xbb\xa7\x41\x1d\x7e\x60\x93\xb9\x8b\xbb\x27\xcd\xe7\xb7\x67\x67\xc9\xab\x8b\xac\x81\x77\xd9\xd8\x84\xed\xb7\x30\x2b\x6e\xee\xef\x93\x55\xbc\x96\xd9\x2c\x9d\xae\xfb\x19\xb2\x0a\x9b\xcb\xc5\xeb\xcf\x09\xbb\x4a\xdc\x25\x7e\x16\x6f\x15\xc9\x46\x53\xe8\x7b\xe8\x2e\xba\x7a\x2e\x5e\x01\x00\x6d\xbc\x27\x3f\x96\xf1\x4d\xd9\xb8\xfa\xb5\x5e\x26\x36\xde\xb9\x6a\xef\xef\x87\x31\x83\x36\x14\xb2\x4b\xf1\x02\xde\x02\x00\x6f\x32\x0c\x5f\x26\xdf\x03\x00\xb6\x6f\x47\x9b\xf0\x4f\x0f\x6d\xc8\x6f\x61\x37\x49\x4e\x11\x90\x13\xfb\x90\x1b\xd1\x8e\x9f\xef\x56\xae\xa3\x1f\xfd\x1e\xf4\x49\xb1\xfe\xa4\xac\x9a\x4f\xf4\xee\x32\xf9\x09\x78\x52\x66\xdd\xbe\x52\x5e\xbd\x49\xc0\x7c\x5a\x82\x69\xbf\xd1\x5c\xa1\xf9\x74\x77\x38\x1a\xc6\xe6\xfe\xde\x74\xe7\xcc\xf7\xf7\x89\xb9\x32\xfd\x88\xdd\x14\xeb\x79\xbb\x24\xa0\x89\x1f\xbb\xe3\xce\xb0\x54\x76\x07\xf6\x61\xb1\x94\xf0\xb7\x04\x6c\xe1\xba\xa9\x56\x27\xcc\x5f\xf4\x72\xb9\x3b\x90\x8e\x79\x47\xe1\x74\x62\x76\xfc\x0c\x85\x02\x76\x51\x71\xb2\x43\xc4\x9c\x58\x6a\xfd\x49\x4e\xdb\x1f\x38\xac\xbc\x5d\xde\x12\xbc\xab\x67\xa1\x49\x09\x80\x81\x01\x69\xc0\xb6\x5f\x94\xf0\xe7\xcc\x27\x93\x98\x7e\x02\x27\x2e\x88\x50\x13\x13\x28\xdb\x72\x02\x27\x45\x18\xde\x7a\xb3\x6a\x26\x00\x7e\x99\x2d\xae\xe1\x8f\xf1\x8e\x69\x0c\xbf\xcb\x08\xfc\x57\x46\xe1\x37\x19\x83\x5f\x65\x1c\xfe\x35\x13\xf0\xeb\x93\x77\x41\xf7\xe1\x84\xdd\xec\xe5\xcb\xa6\xd6\xe5\xba\x08\x29\xc2\xae\xa5\x5b\xb6\x23\x6c\xa9\x7d\xe8\xf8\xf6\x2a\xd9\xfd\xa4\xd9\xbb\xed\x93\xa7\x27\xb1\xd0\x1a\xaf\x8e\x4b\x1d\x31\xea\x9b\xfe\xf6\xf4\x78\x67\x50\x64\xc4\x66\xeb\x46\x37\xee\x69\x96\xfd\xb0\xbb\xab\x2c\x69\x77\x9a\x65\xc7\x6c\xf8\x24\xb9\xc9\x8a\xc5\x72\xe0\x83\xcb\x96\x5d\x08\x2d\xbd\x69\xf3\x67\x59\xf6\xaf\x3e\xff\xb7\x49\x05\x9e\x0c\xef\xbf\xb9\xda\x25\xfa\x2b\xbc\x99\x85\x01\xdd\xa1\xfd\x66\x56\x95\x2d\x6d\x1a\x61\x15\x3a\x18\x7a\x60\x75\xa3\x5f\xbe\x84\x37\x2d\xef\x08\x6f\x66\xaf\xea\x6a\xb3\x02\x7d\x28\xf1\xd8\xa0\xf9\x74\x79\xd9\x9c\x9d\x7d\x50\x05\xfd\xf8\x7d\x78\xe9\xdb\xc2\x27\xdf\x26\xa3\xf9\x5a\x0e\x9d\x0d\xdc\x53\xf7\xed\x1b\x58\x76\x95\xf6\x53\x4c\x07\xa1\xcc\x2d\xf5\x5d\xf7\x0b\x80\x3a\xd9\x00\x10\x85\xb5\x36\xcf\x77\xb0\x1c\x5a\xd6\xcd\xb3\xbd\x86\x95\x5d\xc3\xca\xbe\x61\x43\xdd\xdf\xb5\x94\xb9\x7f\xf1\x2f\x58\x8f\x78\x23\x9f\x95\xb3\xe6\x8d\x73\x65\x7f\x54\x04\x97\x19\x82\x26\xbb\xc0\xcf\x97\x97\xfe\xf9\x74\xba\x04\xc9\x4d\x9f\x66\xb1\xec\x79\x84\xf6\x3c\xf3\xb1\x06\x04\x7e\xb1\x5e\x4c\xa7\xe6\x3a\xbb\x01\x4f\x7a\x7e\x23\x33\x53\xbc\x1d\x8b\x5c\x23\xc9\xaa\xc8\x9a\xcb\x72\x66\x37\x75\xdc\xbe\xaf\xca\x99\xd3\x6b\x37\xda\x89\x9a\x67\xc3\xaf\x60\x9e\x1c\x22\x71\x3d\xf4\xf9\x2b\x88\x41\x3c\x73\x81\x7a\xe0\x74\xa6\xd3\xea\x52\x3f\x6f\x39\xb0\xae\xf9\x05\x78\x32\xa0\xe9\xab\x38\x44\x3b\x24\xc7\x45\xfc\x38\x8a\xd7\x81\xc4\x8c\xe4\xc4\x91\x34\x17\x96\x42\xb9\x9b\x64\xe5\xfe\x24\xdb\xcd\x99\xe6\x1a\x16\xdd\x2a\x78\xb2\x8b\x78\x3f\x5e\x8b\xdb\x68\x18\x5c\xf6\x05\x64\x3f\xed\x49\x4c\x7d\x05\x3f\x1c\x4d\xa8\xea\x68\x42\x75\xdf\x2f\x33\x77\x76\x56\x25\xee\xa2\xfb\x0e\xb6\x10\xf5\x69\xb6\x89\x83\x25\xec\xe5\xc2\xf6\xce\xa9\x1a\xc6\xbe\xce\x8b\x20\xf4\xfd\x0c\xe3\x2c\x98\x7f\x09\x43\xfa\x79\x15\xb3\xc1\x58\xce\xbc\xea\xea\xeb\x07\x28\xbc\xe8\x1e\x61\x18\xc7\x79\x15\x87\x33\xe6\xac\xe3\xa5\x5a\x30\x36\x7e\xfe\xe3\xde\xb9\xd4\xbf\xc7\x76\xb0\x5f\xb4\xc6\x35\x03\xd5\xf9\xfc\xc7\x63\xb6\xb7\xa9\xaa\x4f\x96\xba\x71\xcf\x3f\xd1\xcb\xda\x69\x7b\xf7\xc9\xda\xdc\x38\xbb\x59\x3a\x3b\x19\x9d\x53\xed\x6a\xf8\xd3\xe3\x35\xfc\xeb\x43\x6a\xa8\x37\x65\x59\x94\xaf\x4e\x96\xff\xc5\x81\x9b\xc1\x01\xbd\x7e\x5a\xde\xdf\x3f\x4d\xca\xac\x5c\x34\xd7\x27\x98\xf8\x21\x71\xdc\x83\x7d\xb5\x29\xf7\xba\x71\x70\xe5\xcf\xbe\xf4\xdd\xfa\x1f\x8c\x2a\x84\x3a\x7b\x1a\x8f\xed\xfb\xf3\xfd\x28\x79\xed\x36\xba\x18\x5b\xba\x99\x4e\x26\xb0\x02\x49\x99\x55\x8b\x62\xa4\xba\x88\xb7\x0c\x76\x48\xf9\xee\xec\xac\x7b\xbc\xfc\x0a\x3e\x38\xad\x87\xc5\x53\x5f\x8d\xc8\xf3\xfc\x34\x25\x3d\x5a\x4d\xdd\x02\x88\xad\x98\xeb\xec\x29\x7e\xa2\xcf\xce\x4e\xaf\x8a\x2d\xfc\x3d\x2b\x13\x36\x72\xfa\xf9\xf5\xc8\x2d\xa3\xb0\xc3\x7d\x13\x4e\x9b\x9b\xe4\x48\x36\xfd\x53\x6b\x77\x53\x83\xe7\x89\x6b\xc9\xda\xfd\x7d\xff\x94\xbd\xdb\x02\x10\xd7\xde\x69\x13\x9d\x2d\x80\x27\x8e\x08\xc3\xd8\xd7\xa0\x2d\x61\xd1\x5c\x6f\xe3\x70\xfd\x92\x95\x09\x06\xf0\x1f\xa7\x46\xad\x77\x73\x99\x94\x9b\xdb\xdc\xd5\x63\x6b\x97\xdf\x67\x66\xde\x7c\x52\x94\xeb\x26\x60\xaf\xf2\x9f\xfc\x32\xd3\x57\xbf\xcf\xec\x3c\x29\x3b\x6b\xe5\xe4\x97\x99\x06\x49\x03\x40\x34\x43\x81\xbf\xcf\x2c\x98\xff\x3e\xf3\xa0\x3d\xf4\x86\x7f\xcc\xea\xd9\xda\x2d\x5d\xac\x73\x64\xac\x3c\x62\x1d\x07\xfc\xfd\x65\xd4\x8b\x43\x86\x6b\xdd\xdc\x2d\xdd\xac\x76\xb7\xd5\x6b\x37\x92\x40\xdb\xde\x7d\x9a\xa1\xa1\x94\xdd\xa5\x27\x3d\xab\x16\x87\x76\xbd\xe3\xed\x56\xba\x0e\xd8\xdb\xd9\x62\xc7\xb9\xd6\x5b\xbf\x15\x36\xab\xf7\xae\x3d\xd9\x35\xa8\xeb\xee\xa8\x3b\x20\x01\xb3\x61\x3e\xec\x79\xa2\x0c\xd7\x94\x4c\xa7\x9f\xc6\x26\xfe\xf9\x34\x22\x9e\xfc\x6d\xc4\x50\xff\xd7\x43\xcc\xf5\xdf\x60\x9b\x75\x7e\xac\xaa\x1a\xfa\x00\x7b\xb3\xbf\xc2\x3e\x39\xc5\x70\x9f\x9d\x25\xbd\x89\xf9\xae\x17\x55\x0d\x82\x18\xff\x64\xb4\xfb\x8d\x50\x36\x32\x24\xd9\xf3\x81\xa9\xfa\x5b\x9e\xab\x68\x98\xd1\x67\x8e\xd7\x3a\x66\xc5\x62\x1d\x0d\x33\x86\xeb\xa2\xf5\x62\x3d\xb6\xff\xf2\xa0\xb3\xc9\xf0\xd1\x26\x23\xd9\x64\x66\xb1\x8a\xa7\xfa\xcb\xac\xdb\x69\x37\x70\x33\xac\xd1\x15\x34\x71\x1f\x9f\xf4\x6f\x26\x45\xf9\xc9\x26\x24\xdf\xa5\xc9\x86\xe4\x00\xde\x2c\x56\xd7\xd9\x12\x7e\x9d\x84\x87\x38\x13\x56\xf0\x06\x7e\x91\x6c\x60\x09\xc0\x9e\x7e\xe7\x6f\x89\xde\x9f\x13\x71\xf5\x6e\x3b\x64\xbf\xd8\x53\xfb\xfc\xa7\xf0\xfd\x62\xb9\xfc\x70\x94\x2f\xae\xe1\x3a\x80\x4d\x86\x9e\x6f\x22\xb6\x37\x3b\x6c\xb7\xb8\xde\x1c\xe0\x1a\x3d\xbf\x89\x78\xbd\x09\x1c\xf0\x32\x33\x8b\x9b\xeb\x81\x21\x58\x41\xdb\x63\x78\x09\x97\x23\x7e\x12\x1a\x00\x6f\xb3\x2f\x92\x65\x10\x24\x5a\x75\x8a\xed\x39\x96\xbb\xcb\xd7\xcf\xa7\xd3\x3b\x90\xac\x32\xbb\xb8\x0b\xe3\xf4\x75\xb2\x8a\x68\xbd\x83\x16\xde\x82\x27\xba\x55\xe5\xda\x78\xcf\x70\x78\x5a\x82\xed\x01\x92\x7b\xc4\xfa\x62\xd9\xb8\x7a\x0f\xab\xef\xc7\xdc\xad\x6e\xcc\x8d\x3b\x98\xa8\xcd\x3e\xd6\xca\xac\x19\xcc\x37\x1e\xd4\xb9\xed\x6c\xa0\x62\x1c\xd6\x2a\xe0\x75\x3d\x98\x38\x46\x8d\xdc\xe2\xba\xbb\xff\x79\x13\xaf\x7f\x4e\x74\xb6\x5e\x98\xd0\xe9\x0e\x6f\x1a\xea\x01\x6f\x06\xae\xc1\xd9\x59\x67\xd1\xa1\x0f\xa6\x56\x71\x38\xb5\x86\x89\xd3\x4f\x1b\xb0\x85\xb7\xae\x7e\xe5\xf6\x10\xd2\x46\x3a\x2a\xec\xce\x6a\xba\xb0\x87\x3b\xf4\xc3\x58\x70\xbb\xe7\x7a\x0f\x23\x83\x09\xd0\xce\x7d\x31\xde\x2f\xb2\xef\xd9\xf6\xd0\xaa\xce\x9a\xf6\xa2\xd0\xb2\x5d\xda\xcb\x8f\x58\xda\xcb\xc5\xea\xfa\xfe\xbe\x5f\xe0\x71\x69\x6e\x3a\xd5\xf2\x3a\x5a\xce\xac\x41\x2c\x23\xd4\xf0\x9e\xa5\x79\x12\x7f\x3b\x92\x3a\x3f\x65\xa1\xf0\xe6\x93\x3f\x26\x7b\x18\xda\x2b\x32\x48\xce\x3b\xf2\x3d\x3f\xa5\x42\x1a\xaf\xf6\x66\x37\x1c\xb0\xcc\xfe\x99\x80\x9d\x73\x79\x57\x74\xb1\x63\xf2\xbb\x39\x57\x1c\xcd\xb9\xfa\x68\xce\xa1\xe7\xcb\x38\xd3\x96\x61\xb9\x86\xb9\xb6\xbc\xee\xae\x35\xcf\xbe\x08\x18\x00\x4f\xbe\x4e\x34\x0c\x1c\xf1\x12\xae\xe1\xbb\xc8\xf1\x9a\xc8\xf0\x4c\x4d\xcb\xeb\x86\xcf\x9e\xc5\x6d\x99\x60\x34\xb0\xbf\xe6\x80\xfd\x35\x91\xfd\xdd\x1e\xac\xcf\xfa\x00\xd3\x2e\xae\xd5\xa8\xf6\xfe\x73\x9c\xf5\xb0\xac\xac\x5b\xcf\xff\x3c\x8b\x9f\xf1\x5b\xf7\x05\xae\x8b\x7f\x87\xe7\xf0\x01\xdd\xed\xaa\xb9\x9b\xff\x79\x16\x3f\x61\x60\x77\xc2\x17\x6d\x6e\x1e\x38\xab\x19\xc8\xe7\x03\x46\xa7\x97\xe4\xea\x8b\x76\xfc\x42\x5d\x81\xb9\x03\x81\xbb\x8b\xeb\xa4\xb5\xa5\xdf\xe7\xa9\xf6\x35\x0a\xb0\xca\x92\xe6\x91\xa3\x1f\xf7\xda\xd5\x77\x27\x0e\x7f\x0e\xce\x7d\x7a\xcd\x4c\x7b\xf6\x33\x3e\xec\x69\x00\x80\x4f\xdd\xfd\x7d\x27\x0a\x67\x59\xe6\xb6\xe0\xea\xdf\xf3\x3f\x3d\x39\xe6\x61\x5a\xcd\x49\xd5\xf9\x90\x81\x68\x82\x5e\x95\x4f\xd6\x4f\xb3\x78\xf1\x7e\x34\x1e\x5d\x83\x99\xa9\x56\x77\x09\x08\xbd\xec\x6e\x57\x9b\x55\x65\x56\x6c\xb7\x49\xd9\x39\x9e\x41\xdd\x34\xf5\x49\x64\xee\xe8\x65\x98\xad\xeb\x95\x36\x0e\xb4\xee\x3c\x2d\x3b\xef\xab\xfa\x36\x34\xb1\xbc\xfa\x7d\x76\x33\xff\xc7\xf8\xd0\x65\x16\xca\xfc\x39\x08\x55\x89\x83\x27\x8d\x9e\x93\x72\xb6\xac\x8c\x5e\x5e\x3d\x88\xea\x87\xba\x1c\x8d\x69\xcb\xd8\xed\x56\xc2\x89\x47\x53\x9b\x4e\xde\x4c\xba\x90\x00\xaf\x5c\xf3\xa2\x69\xea\x22\xdf\x34\xee\xbb\x9f\x12\x37\x8b\xed\x87\xae\xad\x35\x5e\xb6\x9f\xac\xb3\x4d\x18\xcc\x56\x5e\xd0\x59\xc4\xdb\x3a\xcb\xb2\xe2\xaa\x9a\x27\x45\x16\x76\xce\x26\x9a\xf0\x6f\xfa\x50\xd7\x2d\xb3\xf8\x58\xc1\xdb\xed\x91\xb6\xf2\x7f\xa1\x47\x61\xe3\xfa\x8f\xf4\x20\xf2\xbb\x20\x29\x61\x01\x7f\x6d\x67\xd2\x24\x0c\xdd\x6c\x32\x8d\x93\x63\xde\x8b\x54\x27\x86\xeb\x41\xbe\xfa\x23\x91\xf4\xa1\xe5\xf4\x4d\x8d\x2a\x92\xf7\xcc\x9d\xac\x9c\x4e\x26\x0f\xae\x99\x0f\x99\x20\x3b\x02\x92\x65\x59\x35\xc2\xef\x55\x31\x2f\x3a\x9c\x96\x8f\x0e\xf6\x47\x36\x21\x71\x1f\x5a\x65\x3b\x5a\xbb\x95\x1b\x57\xd9\xc9\xe5\xbb\x1b\xc9\xa8\x4f\x3d\x3e\xd8\xed\xa6\x57\x47\x34\xa3\x0a\x24\x29\x03\x5f\x5c\xce\x5e\x46\x51\xef\xc9\xe8\xd4\x75\xbc\xb8\xbb\xa4\xdd\x59\xeb\x69\x65\xfc\xd1\xa1\x70\xeb\xd1\xf3\x00\x4d\x79\x72\xaa\xf8\xa4\x38\x31\xcc\x3b\xb5\xc0\xd8\xf9\xa4\x7d\x59\x64\x0f\xdc\xb4\xd5\x97\x5e\x74\xa4\x31\x9e\x65\x16\xe0\xec\x6c\xbf\xe0\xc3\xb1\x2a\x7b\x39\xf1\xd1\x99\x02\x9b\x80\xb4\xed\x36\xaa\xdd\x00\x2c\x07\xc7\x90\x16\x89\x59\x03\x8b\xed\x69\xbb\x82\xff\x3b\x5d\x08\x29\x3f\xa0\xc9\x20\xe9\x26\x59\x14\x93\x4f\xce\xf3\x83\x8d\x20\x71\xd3\x2c\x10\xa3\xdf\x67\xaf\x86\xdd\xa0\x27\x20\x83\xc4\xdd\x6f\x0b\xa7\x50\xf2\x08\x91\x1c\xc9\x3d\xa1\x14\x30\xda\xf7\x92\xc7\xc4\x79\xf8\x40\xbe\xbd\xe5\xb6\x1e\x96\x5b\x39\x50\xd0\x40\x3c\xcb\x4c\xc3\x22\x5b\xef\xb0\x15\xf6\xd1\x89\x2b\x6d\x57\x5d\xa0\x93\x7f\x89\xf7\x0c\x9f\x76\xed\x79\xb4\xd7\x3b\x3c\xc2\x0a\xea\x07\xfa\xbd\x7e\xb0\xdf\xbb\x2d\x03\x2e\xe3\x2e\xb0\x8f\xf1\x4d\x7f\x92\xf4\x10\x5a\x96\xd9\xe6\xa1\xa2\x03\x4e\xb3\x6c\xd9\xe2\x24\x22\xe3\xec\x6c\x19\x89\x92\x9e\x27\x55\xb6\x8c\xae\x52\x61\x77\xd9\xf4\xb3\x68\xb7\x79\x0c\x58\x69\x00\x00\xc7\xcc\xd4\x9e\x56\x0f\xea\x6c\x97\xa1\x81\xeb\x2c\xe2\x75\x32\x7d\x08\x15\x9b\x5e\xb3\xd5\xb6\x7e\x56\x95\x41\x80\x68\x7b\xdb\xe9\xa6\xf4\xf5\x55\x7b\xa1\xf1\x5f\x92\xb0\x7b\xbd\xae\x0a\xfb\x09\x7a\xb2\x6c\x87\xb5\xc8\xb2\xcc\xdc\xdf\xb7\x9e\x24\xcb\x3d\xce\x28\xf0\xda\x06\xc0\x50\x66\x56\x6f\xfb\x20\x09\x85\x85\xf1\x06\xe9\x0f\x1f\xc4\xc7\x88\xfe\x83\x23\xd9\xa7\x0f\x98\xd6\x23\xa4\x77\x33\x30\x20\xba\xec\xf1\xdc\x74\x1c\xeb\xe1\x1c\x8c\xa4\xb8\x5b\xab\xc7\x3b\xc2\xa0\x40\xdc\xe1\xbb\x5b\xac\x8f\x6f\x0d\xf5\x78\x6b\xa8\xc3\xd6\x50\x7f\xd0\xd6\x50\x7f\xe4\xd6\x70\xaa\x84\x07\x36\xd6\x7d\x73\xbb\xe8\x72\xf8\x3e\x9a\x59\x3d\x8d\x33\x38\x8c\x7b\x91\x55\x07\x34\x73\xe4\x51\xb2\x7b\x5d\xef\x29\x08\xd7\xae\x19\xd6\x0d\x6c\x82\x50\xdb\x0d\x47\x15\x8d\xb3\xea\x9e\x7c\x56\x03\xf9\xac\xb6\x6d\xd9\xdd\xd1\xf2\x64\x32\x0f\x04\x17\x36\xee\x6d\x73\x8a\xf3\x19\x75\x7c\x12\xd2\x4c\x4e\xf1\xcc\xee\x3d\xbc\x57\x27\x6a\x74\x6c\x64\x5b\xa4\x7b\xdb\x7c\x59\x95\x8d\x2b\x07\xe5\xf8\x64\x32\x6f\xb6\xdb\xa4\x5f\xb0\x6d\x75\x61\x9a\x7f\x00\x47\x36\x2e\xcf\x05\x11\xa2\x73\xdf\x9b\x4c\xe6\xd1\x22\x0e\x6c\x61\x4b\x68\x4e\x88\xce\xb1\x80\x7e\xe2\xb6\xa9\x26\x30\x71\x83\x08\x7c\xd4\x95\xf8\x4b\x2b\x41\x7e\x57\x59\x77\x60\x67\x15\xb3\x8d\x94\xe7\x41\xdc\x9d\x96\x4f\xb3\xcc\xf5\x27\x4f\xcd\xd9\x59\xd3\xd5\xf4\xe5\x4d\xb1\xb4\x2d\x66\xb6\xa0\x35\xea\x74\xdb\xee\xd4\xe7\x51\x31\xb2\xf0\xed\x42\x81\x27\x16\xc9\xbb\xf1\xdd\x3c\x47\x52\x65\x2c\xbc\x73\x47\x2b\x0e\xbd\x12\x5b\x87\xc6\x62\x51\x0d\x07\x13\x7d\xb3\x3f\xa9\x5b\x5a\x36\x26\xe7\xdb\x31\x0e\x23\x4d\xdd\x19\x29\x9c\x66\x2c\x4e\xcf\x8e\x62\x44\x40\xab\xac\x68\x9b\x18\x8f\x51\x9e\x66\x59\x09\xf6\xfd\xf9\x92\x3a\x2b\xb3\x6a\x67\xe8\xa5\xa3\xbf\x9b\x0e\x2d\xaf\x17\x7a\x6c\xb8\x99\xd4\x59\xdd\x9b\xba\xb5\x12\xb1\x71\x89\x86\x7d\x70\x9a\x6d\x57\x4f\xa0\xab\x0f\x71\xcb\x0f\x10\x8a\xf2\x21\x42\x71\xd0\xaf\x6a\xd4\x2f\x9d\x55\x43\xbf\x74\xe0\x96\xc0\xbb\x28\x0a\x6b\xb0\xb3\xc7\x1b\x5c\x02\x0f\x8d\x45\x3b\x0f\xc1\xe2\xd0\x41\xb3\xf0\x49\xb1\xd8\x8c\x7b\x1d\xbe\x66\xeb\xae\x8b\x9b\xb0\x5d\x9e\x9d\x15\xad\xda\x6e\x0d\xb6\x5d\x1b\x82\x9c\x0d\x06\x41\xbb\x55\xa6\x3c\xa4\x00\x7e\x58\x69\x71\x35\x1a\xf7\xf7\x10\x86\x53\x4c\x20\x78\xf7\xef\x1e\x3d\xad\x82\x27\x7b\xe8\x4a\xda\xed\x21\xa3\xba\xb3\x21\x99\x36\xf0\x91\xf2\x9a\xd0\xcd\x26\x52\x91\xfd\x75\xd0\x74\x29\xb6\x83\x02\xe9\xff\x42\xf7\xff\x34\x34\xb7\x6b\xc5\xff\x18\x03\x27\x8a\x7c\x14\x09\x5d\xa2\x6d\xab\x34\xfb\x1f\xe1\xe0\xc8\x6e\xf4\x63\xb6\xd8\x93\x5d\x08\x6d\x0a\xcd\x7f\xa8\xf5\x51\xc3\x07\xdd\x89\x28\x34\xd1\x20\xae\x3d\x6d\xcc\xca\x48\xc5\x8b\xac\x8c\xaa\xbb\x7d\xb3\xd7\x1f\xea\xea\xb6\x58\xbb\xa1\xed\x15\xd4\x3d\x57\xd4\x19\xd5\xeb\xb0\xf8\x8e\x0d\xec\x51\x96\x5d\x5c\x14\x67\x67\x55\x02\xb6\xdb\x27\xe5\xc9\x23\xcf\x72\x38\xf2\x8c\xf5\x57\xe5\x93\x20\x27\xb9\xb3\xb3\x24\x69\xb2\xc4\x65\xc5\xc0\xec\xbd\x9c\xb5\xa7\xb6\xfd\x52\x85\xcd\xec\xe5\x6c\x77\xa8\xbb\xf7\x36\x6c\x54\xf1\xfb\x06\xb4\x87\xc0\x59\xb3\x05\xdb\x78\xb7\x78\xcf\x83\x3c\x1c\x00\x72\x17\xf7\x73\x7c\x0f\x43\x9c\x45\xe5\xcc\xbd\x5d\x55\x65\xdc\x43\x61\xb9\x4d\x28\xf8\x90\xf2\xf0\xc5\xae\x44\x7c\xf1\x9f\x29\x33\x49\xdc\x79\x46\xc0\x65\x86\xaf\xf6\x5a\x3b\x27\x43\x5d\x24\xd6\x05\x9e\x91\xf7\x55\x17\x73\xfc\xf0\xcd\x87\x74\xc5\x9d\xbb\xf3\x24\x69\xa6\x18\x9c\xbb\x8b\xa3\x8e\x54\xaf\x5d\xbd\xbe\xa9\xaa\xae\x68\x3c\x93\x08\x73\xf5\x21\xfd\xb9\xb8\x18\x97\x3c\x6d\xc0\x14\xff\xc7\xca\xee\x71\x85\xaf\x0e\x5a\x3f\x4f\xdc\x45\x46\xc0\x41\xc5\xe4\x18\x63\x0f\xd4\xdd\xf2\x22\x2e\x23\xe7\x3d\x06\x1b\x97\x25\xe3\x06\x0d\xcc\x7b\x1b\x03\x72\x5d\x94\x09\x7e\x96\x34\xdd\xb9\x8b\x7e\x9b\xe0\x28\x6c\x9d\x27\xe5\xb3\xcc\x39\x30\xd6\x2a\x8c\x58\xcc\xf3\x61\x4c\x21\x46\xe7\x17\x17\xae\x0b\x3c\x19\xca\x4b\xea\x0b\x07\x9e\x95\x60\xd0\x04\xe8\xdb\xd5\xb2\x68\x36\xf6\xe4\xe5\xe3\xb1\x55\xe7\xce\x81\x2d\x2c\x66\x2b\x57\x17\x95\xcd\xf6\xcc\x09\x47\xc9\x42\x9a\x6d\x82\xe1\xec\x60\x4e\xfe\x67\xba\x85\x2f\xf6\x3a\x76\x81\xd1\x79\x1b\x59\x6e\xdc\x39\x37\xad\xff\xff\xd8\xb9\x24\x09\xd3\xc2\x5d\x60\x70\x89\xae\x0e\xc7\xef\xd4\xe8\xcd\xc9\x31\x36\xf6\xd3\x4d\x63\xba\xd1\xe4\xfc\x5f\xc2\x45\x7b\xac\x14\xad\xa1\x8e\x4e\x90\x08\x47\xc7\xbb\xe0\x11\x45\x0a\xcb\xcc\x0d\x8b\xcb\xb5\x4b\x6a\x3b\xc2\x54\xe9\x0e\x1c\x98\x9e\x3f\x4d\x0e\x2d\x93\xc0\xc8\x28\x29\x7a\x7f\x3c\x8d\xc7\x2d\x83\x50\xb1\xf3\xf4\x68\x5c\x3c\x03\xcb\xa2\x41\xf5\xc0\x7c\x6f\x4f\xdb\x9a\xec\x36\x8c\x53\x0e\xf5\x27\xb6\x6a\xf0\xee\xef\xfd\x6e\xbb\x05\xf1\x1a\xfe\x13\x85\x8e\xac\x5a\x8f\x18\x04\x58\x3e\x71\x63\xa3\x99\xbf\x5d\x45\x9f\xa1\xa8\xa2\x08\x9f\xd1\x0e\x75\x9e\x34\xf1\x18\x31\x29\xb3\xc6\x81\xa1\x3f\xee\xe0\xd6\xfd\x20\xaa\x1d\xf9\x50\xfc\x67\xce\x1c\xfb\x13\xc7\xb3\xb3\xf6\x94\xb1\x89\xa7\x8c\xe5\xfd\x7d\xe9\xe2\xe1\xe3\xc1\x89\xf6\xf1\x39\x61\x03\x5a\xdb\xe6\xda\x65\x8b\xd0\xda\x6b\x58\xb8\x87\xec\xc2\x4e\x98\xa1\xb5\x71\x5c\xea\x87\xec\xc1\x8a\xce\x03\xa8\x88\xde\x6c\xad\x11\xd8\x0f\x67\x67\xe5\xb1\x63\x5b\x6c\xde\x62\xe1\xae\xaf\x61\x1d\xba\x31\xad\xc1\x9e\x44\xd6\x47\x49\x18\xaa\x3f\xe5\x67\xf8\x5f\xa3\x20\x06\xa6\x29\x5e\x9f\x74\x46\x2c\x46\xae\xb8\x23\xeb\xdf\xe3\x84\x7f\xff\x58\xa7\x45\x02\xf6\x55\xcc\xdb\x91\xf2\x64\x24\xed\x86\xce\x46\x19\x6c\x6f\x8a\x15\xe0\xd0\xc0\x2c\x66\x29\x67\x6b\xd7\xb4\xb1\x16\x07\xdf\xac\x78\x56\x3f\x2b\xd6\xed\x99\xbd\x03\xbd\x64\xd7\xd9\xaa\xee\xc5\x25\x1c\xb9\x71\xf5\xb6\xab\x6d\x99\x15\x74\x41\x20\x1e\x62\x08\xee\xff\xdc\xc4\x60\x38\xd5\x35\xac\x82\x9c\x57\x83\x6d\x5f\xb9\xdb\xcd\xce\x75\x18\x77\xd7\xa5\x5f\x43\xb7\x58\x5f\x8f\x6c\x0c\x8b\x0f\xf1\x02\x2c\xe0\x8d\x5e\x9f\x20\x4d\x93\x4f\x27\x53\xd7\x2b\x1e\xb6\xf0\x95\x7b\x50\x91\xb3\x88\x49\xaf\xb7\x70\xed\x0e\x63\xc5\x1d\xa7\xea\x4c\xc6\x8e\xf5\x26\x83\xe3\x60\x48\xb7\xd3\x90\xf5\x2d\xd8\x59\x10\xc6\xb2\x9a\xeb\x2d\x8c\x3e\x19\x27\x4d\x0e\xfa\x3c\x60\xf2\x69\x3c\x51\x5e\xa0\xeb\xfd\xec\xa1\xb1\xbf\xb9\xbb\xf5\xb1\x9b\x5b\x17\x95\x24\xb6\xe4\xa0\x98\x26\x16\xd3\x39\x5d\x36\x9d\x6c\x8d\x87\x05\xee\xb6\xad\x54\xfd\x3f\x29\xb5\xed\xdb\xb8\x48\x57\x36\x75\xf1\x3f\x29\xf3\xdd\x6f\xee\x6e\x3e\x34\xb7\x93\xfc\x7b\x2c\x8e\xab\x8a\x76\x08\x47\xf5\xa0\xf7\x54\x33\x1d\x06\x2b\x34\x37\xda\x2f\x3c\x3a\x28\x41\x80\xdb\x8d\x4b\x47\x7e\x9e\xe2\xae\x8c\xa7\x68\xdb\x5a\x3d\x8c\xe7\xc5\x7b\xfa\xd9\xa3\x0d\x8e\x7a\xd9\x6a\xbe\x5a\xca\xaa\xb3\x6a\xa0\x0a\xeb\x40\x15\x5a\xe5\xfa\xc8\x49\xf6\xc9\x7a\xb4\x3c\x4e\xe9\xc7\x02\xc5\x58\x1f\x51\x8c\xf5\x31\xc5\x08\xf4\x42\x5b\x9b\xec\x51\x0b\xd7\x33\x47\x7b\x71\x79\x4e\x10\x87\x18\xa7\xa7\x2b\x20\x50\xec\x3d\xd2\x30\xfa\xb1\x89\x3f\xc3\x3a\x88\xaf\x3b\x43\x94\xed\x43\x4b\x7c\x1d\x97\xf8\x66\x76\xa3\xd7\x50\x5b\xfb\xe8\x3a\xee\xd4\xe4\xd7\x9d\xa9\xe7\x6e\x9d\x6e\x3a\xc5\x62\xb7\xec\x36\xb3\xf8\xd9\xcf\xf8\x4d\x0c\x0a\xd7\xce\xa0\xcd\xd8\x92\x65\x33\xb6\x64\xd9\x44\x64\x75\xae\x88\x59\x4b\x42\x77\x4d\x86\x26\x5b\xce\x6e\xf5\x2a\x1a\x47\xc5\x71\x84\x37\x9d\xba\x6a\x52\x04\x96\xcd\x14\xcd\x64\x64\x60\xbe\x1a\x28\x86\x4e\x00\x2c\xb3\xc5\x35\xac\xb3\x9b\x53\x21\xfa\xb2\x22\x6c\x85\x3a\x6b\x66\xaf\x02\xd5\x8d\x6a\xfa\xa7\xad\xbf\x4d\xfd\x34\xcb\x6e\x76\x8a\xc8\x27\x4d\x47\x97\x75\x56\xb6\xab\xa7\x18\xf0\xeb\x16\x89\xbe\xc0\xe0\xb3\x7e\xf8\x76\x0e\xe8\x03\xb7\xb1\xb8\x9e\xfb\x3e\x42\x1c\x2c\x66\xb6\xba\xd5\xc5\x3e\x6f\x13\x6b\x3e\x50\x75\x0c\xbe\xe5\xbd\xbe\x2e\x76\x26\xf6\x6b\xe0\x5a\x60\x05\xd7\x61\xfe\x6c\xc6\x71\x9d\xd6\x97\x9b\xe7\xa0\x09\x03\x9b\x54\x6d\xec\xb4\xf5\x35\x68\x1d\xea\xfb\xae\x74\x1d\xa9\x07\x42\x55\x04\xde\xb6\xd6\xe5\xab\x93\x1c\xf0\xa9\x28\x7e\xbe\x0f\xd6\x17\x63\xf5\xf5\xcd\x0c\xc5\x74\xbe\xaa\x1f\x1a\xb5\xcf\xed\x42\xf3\x99\x6a\x75\x97\x1d\xef\xf8\xab\x04\x74\x68\x4b\x4a\xd0\x36\x32\x71\xa0\xaf\x26\xa9\x23\xcf\xbd\x1b\x62\xbb\xa7\x96\x09\x79\xfb\x84\xed\x41\x58\xab\x1d\x69\xcb\x83\x55\x56\xb6\x05\x42\x9d\x2d\x10\xc4\xd7\x70\x9d\x3d\xc5\x7d\x88\x34\x68\xb2\x19\x1f\x26\x8f\xdf\x69\x5a\x8a\xa4\x57\x09\x43\x9f\xe9\x05\xbe\xbe\xd4\x0b\x74\x1d\xed\xf6\xfc\x05\xba\x86\xab\xf0\xf2\xc2\x5f\x3f\x71\x59\xb2\xba\xb8\x01\xcf\x46\x12\x4f\x79\xb1\x99\x92\xf3\x25\x80\xeb\x68\xf6\x14\x7f\xf1\xcb\xaa\xaa\x63\x04\xc1\x9b\x69\xcc\x71\xe1\xce\x93\xf2\x62\x03\xc0\xb9\x81\x4d\xe6\xce\x13\x7c\xb1\x69\x73\xdc\xb4\x39\xea\x6a\x53\xda\xe4\x06\xc0\x66\xfc\xbd\xe9\xd4\xfa\x76\x38\x65\x8b\xbd\x03\x01\x71\x7b\x2e\xf9\xc3\xd8\xde\x4c\xdd\x79\x33\xd0\xfc\x2a\xf1\x57\x76\x08\x84\x35\xb7\xbb\xb9\xde\x6d\x96\x65\x8f\x4f\x58\x9e\x9a\xcc\x0f\x0e\x74\x90\xe9\xa0\x4f\x00\x98\x17\x61\x9a\x94\x87\xb3\xed\xb1\xbc\x3a\x5b\x4c\x63\x14\xe6\xa9\x5b\xe0\xeb\xeb\xb6\x18\x3d\xcc\xb9\xae\xb0\x1f\x03\x12\x4e\x96\x78\x90\x7f\x9d\x3d\x45\xa1\x90\x90\x33\xd7\xa5\x7d\x53\xd8\xe6\xe6\xc4\xcc\x6b\xb6\xd1\x21\xc2\xad\x4e\xfc\xe6\x62\xb5\x0f\xd6\x78\xd4\x87\x75\xf6\xf4\xa9\x6b\x5b\xbe\x0e\x59\x57\xda\xda\xa2\x7c\xf5\x61\x99\x37\xd9\x72\x90\x9a\x11\xdc\x19\x9b\xe2\x78\x50\x1d\x0b\xdd\x8c\x0a\xfd\xa6\x2c\x3f\x34\xc6\xe5\xe6\x63\xca\xfd\x7e\xd3\x7c\x68\xb9\xef\x6d\xef\x32\x94\xab\x97\xc5\xab\x0f\x9c\x3f\xe6\x7d\x05\x9a\x50\xe0\x03\x24\xc4\x0e\x24\xa4\x48\x40\x4f\x44\x34\xe8\xd6\xcd\x1a\xec\x61\x2e\xd9\x80\xbd\x1e\x27\x4b\xd0\xb6\x34\x31\x41\xf6\x48\x46\x0e\x09\xb7\xc9\x91\xae\xbd\xd5\x9f\x75\x47\x68\xb1\x41\x3b\xc6\x75\x37\xe8\xcd\x5e\xf9\xbd\x77\x4c\xb3\xd7\x8a\xa3\xb7\x6d\xda\xe6\xa1\x3e\xba\xa4\x4c\xe2\xf9\xea\x36\x09\xdd\xdd\xeb\x10\x06\x6d\x80\xdf\xbb\xe8\x59\x03\x5f\x9f\x42\xf9\xa9\x29\xbe\x85\xa7\x26\xe8\xd4\x6d\x61\xde\xd2\xcb\x81\x3a\xbe\x1c\x73\xf7\x49\x73\x91\x45\x0d\xd4\xd5\xb1\xa2\x24\x29\x2f\x1c\x78\xd6\x6c\xe7\xaf\x93\x66\x84\xc9\x37\x83\x7b\x49\x7b\x4c\x17\x17\x6c\x95\xc5\xb8\xea\x3a\xf2\x75\xd1\xbc\x7c\x77\xf5\xc5\x27\xd5\x65\x71\x95\x14\x59\x99\x54\xad\xc9\x75\x9d\xac\xa1\x06\x60\x1e\xdf\x15\xb0\x6a\xdf\x69\xb8\x06\x27\xfd\x79\x74\x24\x49\x60\x3b\x76\xf8\x6f\x9b\xb0\xe3\x11\x76\xd3\x6c\x17\xc4\xb0\x37\xfe\x06\x51\xa4\x3b\x70\xdd\xd8\xfb\xba\xc9\x2e\x70\xdc\xa9\x83\xb8\x76\xd9\xca\x1b\x23\x33\xd7\x51\xb0\xc1\xe8\x82\x7f\xf4\x16\x3c\x9f\x4e\x37\x97\xd5\x73\xa0\x17\x9b\xeb\xac\x4c\xdc\x62\x73\x0d\xdd\x62\x33\xc5\xd7\x00\xae\xc3\xbb\x22\x69\xc2\xbb\xa6\x7d\x77\x74\xb8\x71\x6c\xc1\x9a\x17\x6b\x67\x9a\xe8\x42\x04\x31\xac\xc0\x05\xde\x59\x5d\x2c\xca\xeb\x44\x07\xd0\xec\x61\xe4\xed\xbe\xc8\xd6\xaf\x21\xd7\x3f\xec\x96\x92\xeb\x3e\x01\x68\xd5\x42\xab\x6a\xa9\x9b\xf0\x7a\xfc\x0d\x80\x99\x59\xea\xdb\x55\xe2\xba\xcf\xb1\x87\xe5\x4f\xc7\xfe\x6e\x39\xd4\x59\x0e\xd7\xd9\xdd\x4c\xc3\x4d\xf6\x14\x8f\x82\x36\x8f\xac\xd1\x87\x51\xaa\x76\x1e\x1e\xbb\xd0\xa8\xe4\xea\x0f\xf3\x37\xb0\xce\x8a\xd6\x8d\xfc\x66\xa8\xef\x66\xd8\x03\x93\x3a\x1a\xc4\xc4\x03\x19\xb8\x79\xd4\xc2\x60\xec\x86\xd6\xde\xe1\x51\x66\xd3\xf2\x18\xf9\xe3\xbb\x96\xa2\xd7\xb9\xfb\x3c\x2b\xaf\xf0\xbc\x8e\x06\x9c\xdb\xc4\x81\xb9\x0b\x13\x13\xc4\xa8\xf8\xfd\x56\x3c\x2b\xca\xd7\xae\x3e\xa5\x4f\x4b\x8a\xfb\xfb\x38\xaf\x35\xac\xe0\xcb\xff\x8d\x46\xa2\xab\x26\x34\x12\x5f\x95\xbb\x46\x36\x60\xde\xc4\x26\x3a\xb0\x85\x37\x1f\xb5\xdb\x57\x99\xe9\xfd\x70\x5f\x01\xb8\x0c\xf4\xb9\x1a\xf6\xeb\x9b\x8f\xdb\xfc\x07\xfe\x79\x79\xb0\xf1\xdf\xbc\x77\xe3\x1f\xf2\x86\x79\xe4\x42\x09\x21\x5b\x9c\x7f\x1f\xba\x43\x86\x8d\x7b\xd9\xed\x85\x37\xe3\x19\xfd\xa1\x3b\x7f\x97\x7d\xbd\x8d\xd5\x87\x91\xf9\x3e\x2b\x13\x0e\xe0\x8b\x93\xc1\x0b\xa2\xaf\x67\xa0\x77\x3a\x73\x8b\xe1\x36\xa5\x40\xff\x76\x6b\xb9\x29\xcc\x6f\x3f\x35\x6e\x05\xe2\xa4\xed\x95\x7c\x18\xcd\x1b\xf0\xa4\x8b\xc6\x3f\xf8\x12\x7e\x3f\x8b\xc1\x58\x9a\x9f\x56\xce\x14\xbe\x70\x35\xd8\x05\x7c\x98\x40\x1f\xed\x72\xda\x30\x40\x31\x54\xff\x64\x3d\x99\xb7\xd2\xf0\x6e\xc7\x7d\xe0\x4e\xae\x3d\x6d\xe0\xd3\x20\x1f\xd5\xce\x14\xeb\xa2\x2a\xef\xef\xdb\x50\xee\xc5\xd0\x84\xdd\x6f\x3f\xd4\xce\x17\x6f\x41\x12\x4d\xe7\xee\xef\x93\x51\xb6\xac\xd8\x99\x2a\xf6\x6d\xee\x53\x97\x70\x03\x62\xbc\xff\xc9\x64\x1e\x3f\x5c\xf7\xf9\xaa\xfb\x5c\x75\x9f\xf5\x64\xfe\x51\xcd\x89\x93\x27\xb4\xe6\xbd\xbd\x3d\x6e\xed\x45\x32\x71\xd1\xfa\xbf\x45\xdf\xf8\x5a\x82\x89\xef\xda\xf3\xd9\x47\xb6\xe7\xeb\xe2\xad\x0b\xed\x39\x51\x1b\x39\x4f\x26\x9f\x8d\xeb\xeb\x29\xc7\x01\xce\x02\xbf\x3f\x12\x8b\x7f\x1b\x3b\x61\xb4\xab\x78\x70\x9f\x0d\x13\x69\x7d\xa4\x6b\x2f\xb3\x66\x38\xbc\xde\x9b\x74\x6b\x90\x94\x61\x6e\x96\x8b\x72\x34\x33\x7b\x69\x17\xa3\x79\x20\x16\x6d\xb1\x5f\xc7\xc6\x8c\xa7\xf8\x70\x5a\xf2\x22\x69\x12\xd0\xb9\xc4\xb8\x59\x59\x18\xb7\x77\xa6\xd2\x4d\xcf\x68\xe4\x8b\x51\x2b\xd5\x14\xd1\x90\xbf\x0f\x1a\x5c\x0d\xb7\x8c\x6d\x62\x24\x2b\xb8\xcc\xaa\x91\xb7\xd3\xf2\x72\x13\x1d\x40\x36\x70\x93\x2d\xe1\x32\x2b\x60\x11\xef\x21\x58\xc3\x75\x98\x65\x49\xb1\xbf\x96\xbe\x29\x4d\xed\xc2\xba\x05\xc9\x06\x2e\x61\x09\xc0\xe7\x68\xc7\x1d\xb7\xf2\xd9\xe6\x59\x01\xce\x0b\xd8\x71\xb6\xc6\x15\xcb\x64\xd9\xbe\x7a\x6f\x59\xf3\x78\x4b\x5e\x5f\x5c\xcc\xba\x39\x2f\xc0\xb3\x5d\x69\x6d\x0d\xcb\xf6\xdd\x7b\x8b\x83\x45\x68\x5c\xe8\xf4\x89\xf6\x05\x24\x1c\x37\xb1\x49\xaa\x5d\x33\x86\x8c\xe3\x96\x0c\xf9\xf6\x1a\x13\x33\x42\xb7\x85\xa3\x00\x77\xdf\xee\x34\x81\x3f\x25\x2f\xe1\xdd\xcc\x0c\x2a\xc3\x87\xb8\xd3\xc0\x49\x7c\x1b\xf9\xd3\xdf\xf6\x3c\x7a\x7f\x1e\x94\x97\xfb\xfc\x64\xb3\xc7\x6f\xee\x38\x90\x6e\x87\x6c\x60\xcf\x8c\x64\xcd\xe1\x66\x52\x3e\xaa\xb7\xe8\xf6\xa5\x32\xec\x4b\xcd\x9e\xe6\xe2\x41\xce\xfa\xe7\x41\x7a\x70\xb1\x03\x4d\x4b\xc4\xbf\x3c\x7d\x26\x13\x23\x08\x8e\x59\x3d\x30\x4c\xd5\x2a\xc6\x10\x8c\x84\xbd\xd8\x4d\x55\x7d\x59\xc5\x89\x5e\x07\x46\x05\x16\x31\x5e\x52\x05\xab\x38\x5d\x4b\x00\x63\x50\xc0\xa6\x1b\x95\x2a\x7c\x2f\xc2\xf7\x38\x76\x3a\x0c\xcd\x80\xb4\x1f\xf7\x99\xf0\x76\x38\x97\xd5\xab\xa4\x79\xe6\xc0\x29\x66\xfc\x93\x5d\x8a\xf2\xd9\x29\xae\xfc\x87\xfd\xcb\x31\x2e\xd1\x89\x32\x06\x43\x89\x8b\xb0\x85\x0d\x87\xaf\x17\x0e\xe2\x8b\x12\x8c\xac\x89\xca\x63\xd3\x90\xfd\x2c\x5d\x8e\xa1\x01\xdf\x8d\xb6\xd6\x62\xfd\x75\x51\x16\xd1\x4d\xe4\x6a\x9a\x4c\xb0\x9b\x4c\x03\x1f\x75\x89\x02\x7f\x35\x64\xf9\xd7\xf8\x68\x1c\x65\x81\x2c\x7d\x37\x77\x59\xd6\x62\xe3\x0f\xad\x9d\x87\x7b\x3b\x0a\x3e\xd4\x3c\x60\xb1\x32\x94\xf9\xcd\x98\x59\x3a\x28\x6a\x59\xbd\x9a\xb7\xf5\x9c\x9d\xf5\x2f\x30\xba\xbf\x27\xfb\xaf\xc8\xfd\x7d\xaf\xef\x09\xf8\x76\x23\xa1\xa4\x39\x1e\x8e\x06\x3c\x73\xdb\xd1\x40\x7c\x75\x92\xd1\xdb\x0d\x81\x4b\x2e\xf6\xda\xfb\xd7\xd1\x0a\xfd\x11\xfe\xb0\x9b\xbf\x0b\x0c\x31\x8a\x77\x98\xf4\x3b\x01\x0c\x04\x16\x16\xd9\x37\x09\x46\x00\x56\xd9\xbf\xc2\xe7\x30\xa3\xf4\xe8\x88\x2e\xfb\xa6\xf5\xfc\xfd\x57\xf8\x68\x12\xb0\x40\xd7\x91\x9e\x14\xd9\x57\x49\x11\x7e\xf8\xaa\xa3\x15\x3b\x62\x90\xeb\xf5\x07\x32\x49\x65\x36\x75\x50\x07\x2e\xa9\x0c\x1b\xc2\xc7\xf0\x9a\x6d\x24\xf9\x90\xb5\x49\x76\x7b\xcf\xf1\x96\x16\xbd\x93\x93\x20\x98\xad\xc3\xfe\xb5\xcc\xd6\x8b\xf5\xb0\x83\x3d\x4f\x74\xb6\xbc\xdc\x80\x18\xfb\xab\xdf\x33\x56\xed\xc6\x13\xe3\x23\xc1\x55\x56\xb4\x77\xac\x14\xc9\x12\xc0\xdb\x6c\xb4\xe5\x4d\x1d\xbc\xcb\x16\x6d\xa0\xc1\xa4\xfc\x0c\x83\xb3\x33\x7b\xb1\xba\xbc\x8d\xba\xdd\xd5\x58\x43\xb7\x0a\x82\xa3\x1d\xbf\xb1\x60\x8a\xe1\xa6\xbf\xc3\xe1\xf9\xea\xd2\x46\x1f\xdf\xf0\xc5\x67\x18\x9a\xac\x4a\x56\xe0\xb9\x8f\xae\xd6\xbe\x3d\xbd\x4f\x6e\x32\x73\xee\xc1\xe5\xa6\x0d\x4b\x79\xf3\xf9\x12\xb4\x7c\x47\x77\xd1\xd6\x0d\xd8\x6e\x87\x43\x82\xfd\x12\xcb\x8b\xa1\xcc\xcf\x33\xfc\xfc\xe2\xe2\x63\x0b\xbd\xcb\x0e\xf9\x81\x15\xb4\x83\x46\xc6\x5e\xac\xe0\x2d\x68\xd5\x8d\xd5\xe0\x5f\x72\x75\x37\x52\x2a\xde\x3d\xc4\x21\x34\x41\xfc\xdf\x1d\x81\xd4\xd1\x5e\x3d\x2e\xad\xf2\x6a\x32\x43\x6e\x32\x9f\xc0\x09\x80\x27\x6c\xfd\xda\xa4\x47\x6c\x50\x0d\xc2\x54\xcf\x32\xfc\x0c\x0d\x0a\xfd\x8e\x59\x8e\x11\x47\x7b\xde\x42\x8f\x8d\x52\xca\xf3\xe6\x59\x37\x8b\x76\x8a\xde\x93\xd2\x53\xc7\x53\x3d\xab\x92\xd1\x80\x46\xad\xc2\xe0\xcc\x75\x5e\x5e\x96\x17\x33\x1e\x6a\x3b\x0f\xd4\xbc\xb9\xcc\xf4\x55\x90\xb0\xe6\x93\xc9\xf6\x98\xf7\x19\x84\xed\xe4\xcb\xc8\x22\xbd\x8b\x74\xff\xd4\xf9\x4c\x57\x6b\xbb\x2f\xb4\xb5\x6e\x61\xd8\x15\x1e\x49\x1c\x37\x8d\x2e\xed\x16\xc4\xd5\xf2\xc8\x86\xfd\xd7\x04\xc4\x25\x1c\x3d\xa5\xc6\x0c\xc0\xd7\x47\xdb\xc2\xc5\x98\xea\x37\x60\xbe\x4f\x48\x77\x19\xff\xbd\xa3\x4b\x18\x36\xe3\x88\x47\x23\x1f\x84\xa4\xcc\xbe\x4e\x4a\xe8\xc0\x45\xd2\x64\x5f\xb7\xf6\x98\xa3\xbd\xab\xde\xa5\xfb\x3a\xa9\x43\xaa\x06\x3c\x2b\xc3\xbe\x55\x8e\x0d\x03\xc6\x3e\x0d\x27\xca\x83\xc7\xc5\x7d\xf2\x75\xd2\x4c\xcb\xf3\x1a\xe2\x67\xd1\xc9\x32\x06\x3f\xd8\xe7\x96\x9b\xc1\xe4\xef\x03\x4f\x49\x82\xec\x1d\xf5\x72\xf1\x3e\xa3\x07\x39\x8c\xb7\x49\x03\xff\x9d\x80\x5d\xf1\x51\x31\xd5\x32\x1a\x3b\xd4\xfd\x69\x48\xbe\x97\x74\xc6\xc1\x38\x40\xd1\x70\x16\x0c\x9b\x00\xca\x78\x2a\x3c\x36\x80\x68\xd5\x6b\x08\xee\xcd\xf9\x9d\x62\xeb\x49\x7b\x07\xd0\xa0\xcb\xd2\x17\x18\x3c\x9f\x4e\x8b\x68\x84\xb0\x28\x2e\xf0\xf5\x40\x00\x7e\xdf\xe8\xb2\x29\x96\x0e\x24\x0e\x16\xcf\x86\x50\x0d\xd5\x9e\x91\x45\x7b\xc4\xd5\x4a\x3c\xad\x5d\x5a\x8f\xcf\xc5\x91\x6e\x2a\x8c\xd3\xf5\xe0\x4c\xd2\xb2\x7b\x7f\x78\xdb\xec\xe1\xbc\x1e\x1c\x05\x7b\x9f\xf2\xc1\x32\xa5\xb8\x44\x57\x8b\xef\xf4\x77\xf0\x3b\xfd\xdd\xf5\x7c\x11\x58\xe5\xb6\xd9\xf3\x28\x53\x17\x97\xbd\xdc\x12\x5e\x87\x97\x23\x09\xfb\x7a\x0b\xab\xa3\xbd\xa7\x79\xfc\x88\x6e\xc7\xe6\x3d\xd9\x3b\x80\xef\xdd\x1e\x9a\x43\xb7\x87\x96\xfc\x24\x65\x0c\x95\x01\x7a\x49\x30\x6a\x68\xee\xef\x5d\x7f\x8d\xc9\xc0\x50\xc7\xdb\x5f\xea\x99\xee\x83\x8b\x03\x18\x0f\x50\xaa\x8f\xd1\xa1\x34\x23\x3d\x48\x11\x77\xca\x81\xed\xad\x76\xa3\xb8\x3e\x31\x33\xcb\x71\xc2\x07\x66\xef\x17\x63\xfe\xb8\x53\x04\x36\x21\xc3\x30\x0b\xfe\x3e\xd8\x0e\xc0\x26\xc3\x81\xe9\x80\x45\xb6\x98\xf1\x6b\x58\x1d\x72\xfe\xba\x0f\xd7\x71\x39\xf8\x83\x54\xc7\x33\xa5\x80\x0e\x22\x58\x82\xeb\xfd\x28\x6d\xfd\xa1\xfa\x93\xee\xce\xab\x51\xd0\x92\x78\x5e\x5e\x3e\x07\x45\x60\xa8\x93\x18\x47\xfb\xbc\xb9\x48\xea\x8b\x12\x9c\x3b\xf0\x2c\x86\x9d\xde\x6d\x58\xfd\x1c\xd4\x47\xf3\xe1\x71\xf9\x62\x1a\xa5\xe3\x26\x7c\xe2\xeb\x18\x45\x6e\xbe\x70\xb0\xb9\xde\x42\xfd\x31\x23\x56\x66\x49\x35\x0c\xda\x48\x82\x58\x1f\xe8\xd2\xf4\xe3\x6b\x44\x67\xd5\x89\x35\xa2\xf7\xd6\x88\xbe\xc4\x57\x0b\x17\x6f\x18\xbd\x9e\xeb\xcf\xb3\xf2\x6a\x51\x2c\xca\x78\x93\x75\x58\x40\xf1\xd2\x25\x58\x2c\xf4\x75\xec\xc4\x03\x93\xe0\xef\xc3\x24\x88\xfd\xed\x27\x42\x15\x09\xd9\xf8\xce\xf3\xdf\x07\x1a\x15\xc6\xbf\xe9\x4e\x5e\xcb\x0c\x1f\x1c\xd4\x17\x3e\x29\x2e\xb3\xe2\x11\x6a\xe1\x60\xd1\xcd\x81\x7e\xf1\x1f\x8d\x56\xfd\x21\xa7\xd8\x75\xa0\xf6\x0f\x6b\xfb\x2f\xf0\xf1\x29\xf7\xc1\x58\x3e\x56\x4d\xf3\x71\xd5\x34\xe3\x6a\x4e\x0f\xee\x4e\xbf\x3b\x10\xc0\x1d\xc9\x58\xb4\x97\x9a\x47\xb1\xf1\xfa\x91\x63\xf5\xdf\x1f\x58\xb5\x45\x94\x6d\x7f\xcd\xca\x04\x01\xf8\x4b\x56\x26\x02\xc0\x7f\xc4\x80\xd0\x7f\xcc\x04\x3a\xff\x07\xfc\x4b\xf8\xf8\x23\xfc\x34\x23\xec\xfc\x2f\xf0\x6f\x99\x3c\xff\x14\xfe\x57\x46\xd1\xf9\xa7\xf0\x9f\x19\x15\xfc\xfc\xd3\x61\x1c\xff\x7c\x70\xdb\xe4\x57\xba\x39\xb8\x5b\x7e\x7c\xf7\xfc\x9e\x21\x4d\x48\x7a\x35\x75\xf3\xe9\x2e\xdf\x74\x9c\xb1\x71\xfd\x69\x4d\x7f\xb9\x1c\x5c\xb6\x58\xf1\x3b\xad\x04\xbc\xc9\x7c\x87\x41\xb8\xca\x7c\x2f\xf1\xd8\x6c\x99\x4c\x66\x9f\xfd\x75\x12\xd8\xf8\x65\x32\x99\x7f\xf6\xd3\x04\xc0\xd7\xe1\xf1\xb3\x6f\xe6\x9f\x7d\x3b\x01\xf0\x55\xfb\xe5\x93\xcf\x56\x13\x00\xf3\xf8\x45\x7f\xf2\x99\x9d\x00\xf8\x26\x7e\xc9\xdb\x2f\x7f\x88\x5f\xbe\x98\x00\xf8\x7d\x7c\xfa\xc7\x04\xc0\x17\xd9\x62\xb1\x86\x18\xfe\xe3\x1a\x2e\xd6\x90\x43\x7e\xde\x3e\x61\x0e\x71\xff\x4c\x11\xa4\x28\x3e\x6b\x88\xe1\x1f\xe3\x67\x48\xd9\x3e\xb5\x29\xdb\xe7\x36\x65\x78\xae\x20\x86\x7f\x89\x9f\x14\xd2\xf3\xf6\x49\x40\xd1\x3d\x61\x02\x31\x89\xcf\x05\xc4\xf0\xd3\xf8\x49\x20\x39\x0f\x4f\x25\xc4\xf0\x6f\xd7\x70\xd1\x40\x0c\xff\x2b\x7e\x86\x12\xc2\x93\x83\x18\xfe\xf3\xfa\x7a\xac\x2a\x1c\xd8\xab\x75\x52\x83\xcb\xfa\xca\xce\x75\xfb\x70\x3b\xaf\xda\x87\xd7\xf3\xa2\x7d\x78\x35\x6f\xda\x87\xb2\xfd\xc8\xe7\x6f\xe6\xae\x7d\xfc\xc3\xfc\x7b\xb0\x77\x01\xc3\xb7\x49\x37\x58\x23\x06\x7f\xc7\x83\xc3\xe3\x18\x79\x3d\xf9\xda\x29\x60\x8b\x8b\x12\x3c\x6b\xc6\x3a\xf0\x96\x0a\x54\x35\x48\x4e\x1d\x69\x2c\xc8\xf5\x16\xcc\xea\xe2\xd5\x4d\x93\xbc\x80\x1a\x3c\x59\x67\x59\xf6\x62\x74\x42\x71\x42\x97\x5e\x3e\xfb\x27\x2c\x9e\xfd\x33\xde\x07\x9b\x39\x30\x5f\x87\x74\xc9\x3a\x7b\xb1\xd0\xcf\x5e\x2c\xd6\x17\xf8\x7a\x41\xae\x2f\x5f\x2c\xd6\xe1\xf3\x99\xbe\x5a\x5f\xe0\xf9\x3a\xde\x49\x08\x9b\x28\x56\x82\x79\x52\x0d\x6c\xd5\xa9\x1a\x5a\xff\x65\x1c\xaf\x11\x05\xe3\xfb\x1b\xb2\xac\xba\x6a\xe6\x4d\x17\x3f\xa7\xda\xfd\xe6\x1f\x3e\x15\x1a\x96\xd4\x4d\xcb\x31\xfa\x8f\x11\x9c\x57\xc9\xee\x8c\xc6\x39\x00\xe6\xab\xa4\x95\xda\xfe\x1c\x0b\x3a\x14\xa2\xc7\x0a\xae\x55\x02\x60\x91\xd5\xed\x01\x6d\xbd\xa8\x47\x8a\x60\x9d\x55\x97\xc5\x6e\x9b\x89\x6a\xad\x02\x16\x51\x9d\x55\x06\xea\x97\x94\xd9\xb7\x91\x6c\x57\xb0\x01\xe0\xaa\xb3\xdc\x48\x0a\x58\x4d\x31\x98\x2f\xae\xa1\x0e\xef\x76\x92\x62\xd9\x37\xe5\x58\x97\x3c\x30\xde\xfd\xe9\xc7\x6f\xf3\x65\xa4\x60\xfe\x40\xa6\x1a\xd9\xec\xad\x76\x5a\xed\xc4\xc5\x86\x9c\xd0\x65\x87\x76\xad\x92\x2f\x23\x2b\x0a\xe6\x3e\x94\xf7\x20\xdb\xee\xe1\x49\x3a\x14\x1a\x11\xc9\x68\x79\x52\xb4\x73\xc9\xaf\xb3\xdf\xe0\xaf\x33\x0f\x7f\x9d\xfd\x0b\xfe\x3a\xd3\xf0\xd7\x59\x0e\x7f\x9d\x59\xf8\xeb\xec\x15\xfc\x75\x66\xe0\x2f\xd1\x70\xbd\xed\xf4\xb0\xaf\xee\x86\x9b\x38\x0a\x51\x98\x44\x07\x6f\x08\xb8\x8e\xee\xc7\x0f\x55\xfa\x1a\xfe\x3a\xfb\x1d\xfe\x3a\xdb\xc0\x5f\x67\x4b\xf8\xeb\xec\x16\xfe\x3a\xab\xe0\xaf\xb3\x1a\xfe\x3a\x2b\xe1\x2f\xb3\x4d\x63\x0e\xeb\x0c\xa5\xcf\xfe\xfe\xf3\x97\x43\x9d\x07\x6f\xda\x3a\x8b\x93\x7c\x8d\x6b\xa3\xcc\x25\xcf\x66\xef\xc4\xf6\xd9\xab\xe3\x7b\x41\xda\x74\x93\xff\x67\x32\x75\xdb\xc0\x31\xba\xac\x70\xc9\x04\x7b\x29\x73\xe6\xbd\xf4\xc8\x11\xa3\x11\x31\x56\x10\x49\x54\xca\x84\xcc\xad\x32\x5c\xb0\xdc\x51\x29\x0d\x91\x3e\xfc\xe5\x26\xb7\x84\x60\x99\x3b\xe3\x27\x00\xea\xb6\x14\x9a\xd2\x5c\xa6\x9c\x70\xa6\xa9\xc8\x85\x33\x3e\x35\xa9\xb3\x4e\x50\x99\xd2\x54\x19\x4d\x38\xc9\xb9\xf1\x22\x37\xce\xe6\xa9\x51\x46\x58\x8a\x73\x9b\x3a\x9a\x3a\x99\x6b\x4e\x9c\x34\x79\xca\x14\xa3\x86\xa6\xda\xb2\x94\x69\x2b\x04\x16\xb9\x93\xa9\x48\x8d\xcc\x19\x96\x54\x73\x8e\x53\x66\x9c\xb0\xb9\xb5\x2e\x75\x56\x4c\x00\x5c\x77\x2d\xc0\x8a\xe4\x56\xe4\xda\x59\x91\x3a\xa3\x1d\x36\xc2\xe6\xce\x3b\xc1\x39\xb2\xde\x2a\x4b\x8d\xb7\xda\x89\xdc\x5b\x8b\x34\xa1\x58\x53\xce\x24\x33\x4c\x0a\x8d\x6d\x9a\xe6\x46\xba\xd4\x20\xc9\x45\x9e\xe3\xd4\xa5\xda\xa8\xd0\x57\x6b\xac\xb6\xda\xe5\x82\x86\xbf\x54\x84\xbf\xdc\x86\x3f\x9b\x86\xbf\x09\x80\x9b\x31\x26\xb5\x33\xd2\xa9\x16\x9f\xde\xe7\xb9\x54\x2d\x56\x53\x65\xbd\xd2\x2d\x6e\xbd\x4f\x55\x2a\x5a\x0c\x1b\x9e\x23\xcb\x5b\x3c\x1b\x96\x9a\x94\xb5\xd8\xf6\x32\x17\xb6\xc3\xb9\x91\xe1\xaf\xc5\x7c\xa8\x5a\xd9\x16\xff\xa9\xb3\xda\xf1\x09\x80\x4b\xd7\xc6\x46\x35\xbb\x98\x83\x77\xb3\x1c\xf4\x34\x71\xe9\xc2\x17\x8a\x10\x9c\x71\x88\x76\xa7\x7e\xed\xeb\x0b\xc2\xe2\x7b\x1c\x04\xf5\x47\xb2\x5f\xe0\x90\x5f\x72\x38\xa3\xfc\xa0\x08\x85\x20\x9e\x71\x38\x53\x00\xc0\x9b\x47\x8a\x20\xe2\x43\x4a\x58\xed\x4a\x68\x7f\x03\xd0\xee\xcf\xf7\xc4\x5d\xa2\xfb\x7b\xf7\x39\x06\x67\x67\x89\xbb\x38\x30\xeb\x7b\xd2\x2a\x8a\x76\x5b\x99\xbb\x98\xf1\x1d\x2f\xbe\x72\xb3\x9b\x8c\x0a\x74\xee\x62\x77\x56\x6e\xb6\xce\xf0\x8c\x5f\xe0\x19\x3f\x6f\xc2\xd7\x65\x36\x53\x17\xb3\x34\x7e\x99\x4e\xc6\xf6\xae\xb7\x6e\x7c\xb2\xd7\x59\x10\x1f\xea\xa9\x46\x1e\x4a\x8b\x53\x26\x54\xcd\x05\x86\xa3\xe6\x96\xe7\x0d\x00\xa0\x0b\x6f\x7b\xe7\xb2\x5b\x97\x84\x89\xc4\x18\xc2\x9c\x31\x86\x08\x17\x8c\x23\xc6\x25\xe3\x88\xf3\x94\x09\x24\xb9\x66\x02\x29\x6e\x98\x40\x9a\x5b\x26\x50\xce\x1d\x93\xc8\x0a\xc4\x24\x72\x02\x33\x89\x91\xa0\x4c\x62\x2c\x18\x93\x98\x0a\xce\x14\x66\x42\x32\x85\x85\x50\x4c\x61\x29\x52\xa6\xb0\x12\x9a\x29\xac\x85\x61\x0a\xe7\xc2\x32\x85\x8d\x70\x4c\x61\x2b\x3c\x53\xd8\x4b\xc4\x14\x41\x12\x33\x45\xb0\xa4\x4c\x11\x2a\x19\x53\x84\x49\xce\x14\xe1\x52\x30\x45\x84\x94\x4c\x11\x25\x15\x53\x24\x95\x29\x93\x44\x4b\xcd\x24\x31\x11\x5a\x99\x33\x19\xd6\x34\x93\xc4\x4b\xcb\x04\x45\xd2\x31\x41\x49\x84\x54\x7a\x26\x28\x53\x88\x71\xca\x15\x66\x9c\xca\x08\x95\x22\x8c\xd1\x54\x51\xc6\xa8\x8e\x30\x57\x8c\x51\x6a\x23\x74\x8a\x33\x42\x7d\x80\x0c\x29\xc1\x08\xc3\x4a\x30\xcc\x88\x92\x0c\x33\xa6\x24\x43\x8c\x2b\xc5\x10\x13\x4a\x51\xcf\x64\x84\x4a\xa5\xd4\xb1\x34\x42\x1d\xa1\x51\x9a\x5a\x66\x23\x74\x4a\x53\xc3\x7c\x80\x1c\xa9\x9c\xe6\x1c\x47\x48\x54\x4e\x35\xa7\x11\x32\x65\x68\xca\x79\x84\x42\x19\xaa\xb8\x8a\x30\x55\x86\x4a\xae\x23\xcc\x95\xa5\x82\x9b\x08\x03\xa9\xe1\xdc\x45\xe8\x95\xa5\x61\xc0\x02\xc4\xca\x52\x2a\x48\x84\x54\x59\x4a\x04\x53\x8e\x12\xc1\x95\xa3\x61\x70\x02\x94\x11\x2a\xe5\x28\x12\x69\x84\x5a\x39\xe2\x45\x1e\xa1\x51\x8e\x38\x61\x23\x74\x11\x7a\xe5\x88\x95\x28\x42\xac\x1c\x31\x1d\x24\x11\x52\xe5\x48\x2e\x59\x84\x5c\x39\xa2\xa5\x88\x50\x46\xa8\x94\x0b\x23\x17\xa1\x8e\x30\xd4\xa2\xa4\x89\x30\xd4\x22\xa5\x8b\x30\xd4\x22\x55\xa8\x45\x28\x1c\x21\xd9\x41\xae\x68\x84\x2c\xc2\x50\x0b\x53\x22\xc2\x50\x0b\x55\x2a\xc2\x34\x42\xad\x2c\x21\x2a\x8f\xd0\x44\x68\x95\x25\x58\xb9\x08\x7d\x80\x29\x8a\x10\x2b\x43\x50\x4a\x46\x90\x2a\x83\x7d\xca\x22\xe4\x2a\xc7\x3e\x15\x11\xca\x08\x55\x84\xa9\xd2\xd8\xa7\x5a\x69\xec\xd2\x3c\x42\xa3\x52\xec\x52\xab\x52\xec\x53\x17\xa1\x57\x0a\x7b\x8d\x22\xc4\x1d\x94\xd8\x6b\xa2\x24\x41\x9a\x2a\x41\x90\x66\x4a\x10\xac\xb9\xe2\x04\x6b\xa1\x38\x09\xc8\x0a\x50\x29\x46\xa8\x4e\x15\x25\x4c\x6b\x45\x09\xd7\xb9\x22\x84\x6b\xa3\x08\x11\xda\x2a\x4c\x64\x84\x4a\x3b\x85\x48\xaa\xbd\xf4\x44\xe7\x48\x7a\x62\x72\x2c\x1d\xb1\x39\x91\x96\xb8\x9c\x06\xfa\x9e\x33\x69\x28\xce\xb9\xcc\x29\xc9\x85\xd4\x94\xe5\x42\xa6\x94\xe7\x52\xa6\x54\xe6\x4a\x2a\xaa\xf2\x54\x4a\xaa\x73\x2d\x05\xcd\xf3\x5c\x72\x6a\x73\x23\x19\xf5\xb9\x91\x94\xa1\xdc\x4a\xc2\x48\xee\x24\x66\x2c\x0f\x6b\x56\x18\x14\xd6\xaf\xc1\xc2\x31\x6d\xb0\xb0\xcc\x18\x22\x0c\x73\x86\x8a\x9c\x23\xc3\x84\xe6\xc4\x70\x91\x72\x66\xb8\x50\x5c\x18\x21\x24\x57\x46\x0a\x1e\x3a\x21\x18\x37\x46\x09\xca\x9d\x49\x05\x11\xc8\x68\x81\x04\x35\x39\xf7\x82\x9b\x9c\x3b\x21\x8d\xe1\x46\xa4\xc6\xf2\x5c\x18\x63\xb9\x16\xce\x38\xae\x24\x32\x9e\x4b\x49\x2d\xe2\x42\x72\x8b\x38\x93\xd2\x62\x4e\xa5\xb6\x98\x63\x69\x2c\xe1\x48\x7a\x4b\x99\x53\xd8\x52\x66\x15\xb3\x8c\xe5\x4a\x58\x1e\xd6\xa5\xe5\x4c\xa9\xdc\x0a\x26\x94\xb3\x82\xf1\x14\x59\xc9\x68\x4a\xad\x64\x38\xe5\x56\x31\x94\x2a\xab\xa8\x4b\x73\x9b\x52\x93\x5a\x9b\xd2\x5c\x23\xab\x69\xaa\x89\xd5\x54\x6a\x6e\x73\x2a\xb4\xb2\x39\x65\x5a\x5b\x43\x89\xb6\xd6\x50\x94\x23\x6b\x89\xcf\x89\xb5\xc4\xe6\xdc\x3a\x92\xe7\xca\x3a\x92\xe6\xda\x3a\xa2\x72\x6b\x3d\x11\x06\x59\x4f\xb8\x21\xd6\x13\x6a\xb8\x43\x04\x1b\xe5\x10\x41\x81\x7d\xc0\xde\x58\x87\xb1\xb5\xc8\x61\x6c\x2c\x71\x04\xe7\x96\x3b\x82\x75\x58\x1a\x38\xb5\xda\x51\x9c\x5a\xeb\x28\x56\xd6\x07\xe8\x88\x63\x58\x39\xee\x18\x4e\x9d\x8c\x50\x3b\x8e\x75\x40\x12\x0e\xac\x08\xc7\xc6\x63\xc7\xb1\xf5\xcc\x09\xec\xbc\x70\x82\x20\xaf\x9c\x20\xd8\xe7\x4e\x12\xea\xad\x93\x84\x4f\x00\x80\xaf\x77\xbb\x01\x0a\xff\x18\xc2\x08\x21\x8e\x30\xc2\x48\x44\xa8\x10\x41\x18\xa5\x88\x20\x82\xf2\x08\x2d\xa2\x88\x22\x1f\x20\x26\x88\x21\x86\x19\xe2\x88\x61\x81\x04\xe2\x58\x45\xa8\x91\x44\x02\x1b\xa4\x90\xc4\x0e\xa5\x48\x12\x84\x34\x52\x24\x94\x91\x12\x86\x0c\x4a\x89\x40\x81\x3f\x4a\x91\x43\x39\xc9\x31\x42\x39\xb1\x18\x23\x43\x3c\x26\xc8\x52\x8c\x29\xb2\x34\x94\xed\xa8\xc0\x1c\x39\xaa\xb0\x40\x9e\xe6\x58\x21\x4f\x2d\x4e\x31\xa2\x1e\x6b\x8c\x18\xc1\x06\x23\xc6\xb0\xc5\x61\x57\x72\x18\xb3\x94\x20\x8c\x59\x4e\x30\xc6\xcc\x11\x82\x31\x47\x84\x61\xc2\x29\xe1\x98\x70\x4e\x24\x26\x5c\x91\x14\x63\xae\x89\xc6\x98\x1b\x62\x30\xe6\x3e\xd4\x2f\x30\xf1\x18\x0b\x4a\x31\xc6\x82\x53\x8a\x91\x90\x94\x61\x24\x52\x2a\x30\x12\x39\x55\x18\x09\x43\x53\xe4\x85\xa3\x39\xf2\x12\x51\x8b\xbc\xc4\xd4\x23\x2f\x09\x43\xc8\x4b\xc6\x08\xf2\x92\x33\x86\xbc\x14\x8c\x63\x24\x65\xd8\x2d\xa5\x62\x69\x84\x1a\x23\x99\x32\x83\xb1\xd4\xcc\x61\x1c\xb8\x62\x4c\x64\xce\x31\x26\xd2\x70\x82\xa9\x34\x9c\x61\x2a\x2d\x0f\xdb\xac\xe5\x12\x73\xe9\x78\x1a\xa1\xc6\x42\x3a\x6e\xb0\x90\x9e\x5b\x2c\xa5\xe7\x1e\x2b\xe9\x05\xc2\x4a\x21\x41\x70\xaa\x90\x60\x58\x2b\x24\x78\x84\x12\xe7\x0a\x09\x85\x8d\xc2\x42\x47\x98\x63\xab\xb0\xb0\x11\x3a\xec\x14\x96\x08\x7b\x85\x25\x89\x90\x12\xa4\xb0\xe4\x04\x87\x0d\x3c\x42\x45\x88\xc2\x32\x25\x44\x11\x99\x13\xaa\x88\x34\x11\x06\xca\x4b\x14\x0a\x88\x54\x01\x9d\x58\xd1\x48\xb5\x59\x84\x82\x48\x85\x95\x8a\x30\x25\x4a\x61\x95\x93\x54\x05\x6a\x9b\x46\xca\xae\x15\x4e\x51\x84\x98\xe4\x0a\xa7\x94\xe4\x0a\xa5\x8c\x18\x85\x52\x11\xa1\x22\x56\xa1\x34\x8d\x30\x27\x4e\xfa\xd4\x44\xe8\x88\x97\x5e\xa3\x08\x71\xd8\xed\x35\x8d\x90\x53\x2c\x9d\x16\x14\x4b\x1b\x48\xa6\xb4\x5a\x53\x2a\xad\xce\x29\x95\x46\x5b\xca\xa4\xd1\x8e\x32\x99\xe7\x88\x72\x99\xe7\x24\x42\x4a\x85\xd4\x39\x8f\x50\x52\x29\xd3\x5c\x45\xa8\xa9\x92\x2a\x37\x34\x90\x7d\x4b\x53\x29\x73\x4f\xb5\x94\x06\x51\x2d\x85\x21\x34\x97\xdc\x30\x6a\x24\x37\x9c\x1a\xc9\x8c\xa4\x56\x52\xa3\xa8\x93\xd4\x68\xea\x24\x31\x86\x7a\x89\x8d\x65\x48\x62\xe3\x19\x92\xc8\x86\x25\xe2\x2d\x61\x44\x04\x1a\x45\x85\xb3\x9c\x31\x61\x03\x2d\x12\xc6\xaa\x08\x53\x26\x02\xd7\x1f\x64\x05\x6b\x98\x12\xa9\x75\x2c\x15\xca\x7a\xa6\x85\x72\x88\x19\x11\x10\x6f\x85\x70\x94\x39\xc1\x1d\x63\x5e\x30\xc7\x39\x12\xcc\x49\x4e\x44\x60\x5e\xa8\x20\x2e\xe5\x4c\x10\xa7\xb9\x10\xd8\xe5\x5c\x0a\xe4\x0c\x57\x02\x39\xcb\x35\xf7\xce\xf1\x9c\x3b\xe7\xb9\xe5\xce\x23\xee\xb9\xf3\x58\x20\x1e\x08\x15\x89\x90\x71\xe3\xa9\xe0\xdc\x78\x26\x64\x84\x29\x37\x9e\x8b\x28\x59\x09\x13\xa1\xe3\xc6\x4b\x89\x22\x24\xdc\x78\x25\x59\x84\x82\x9b\xb0\x59\x72\xeb\x53\x99\x46\x98\x73\xeb\xb5\x0c\x75\x69\x19\xea\xd2\x0a\x73\xef\x73\x45\x23\xe4\x02\xf9\x5c\x49\x81\xbd\x51\x69\x84\x5a\x10\x1f\x04\x37\xea\x8d\x72\x82\x79\x93\x22\xc1\xbd\x4d\x89\x10\x3e\x20\x48\x7a\x9b\x0a\xa1\xbc\x4d\x95\x48\xbd\x4d\xb5\xd0\xde\xa6\xb9\xc8\xbd\x4b\xad\x30\xde\xa5\x5e\x58\xef\x34\x16\xce\x3b\x4d\x85\xf7\x4e\x73\x89\xbd\xd3\x52\x12\xef\x74\x2a\xa9\x77\x5a\x4b\xe6\x9d\x36\x52\x78\xa7\x9d\x94\xde\xe5\x48\x2a\xef\x72\x22\xb5\x77\x39\x93\xb9\x77\xb9\x90\xc6\xbb\x5c\x4a\xe7\x5d\x9e\x4a\xef\x5d\x9e\x2b\xec\x5d\x6e\x15\xf1\x2e\xf7\x8a\x79\x67\xb0\xe2\xde\x19\xa2\xa4\x77\x86\x29\xe5\x9d\x11\x4a\x7b\x67\x94\x32\xde\x19\x1d\x48\xb6\x31\xca\x7b\x67\x6c\x8a\x7c\x10\xa6\x88\x77\x16\xa7\xcc\x3b\x4b\x53\xee\x9d\xe5\xa9\xf4\xce\xca\x34\xf5\xce\xaa\x54\x7b\x6b\x75\x6a\xbc\xb5\x26\x75\xde\x5a\xa7\x91\xb7\x0e\x69\xec\xad\x23\x3a\x50\x6e\xaa\xb9\xb7\x8e\x6b\x19\xa8\xb8\x4e\xbd\x75\xa9\xd6\xde\xba\x5c\x1b\x6f\x82\x44\xea\x8d\x73\x39\xf2\xc6\xa3\x9c\x78\xe3\x49\xce\xbc\xf1\x2c\x17\x3e\xc8\xc5\xca\x1b\x2f\xf3\xd4\x1b\x9f\xe6\xb9\x37\x3e\xcf\xad\x37\xde\xe6\x3e\xec\x06\xaf\x3e\x6c\x37\xd0\x71\x1f\x30\x11\x3a\x44\x11\xc1\x21\x6d\xbb\x1b\xd0\x6e\x37\x90\x48\x20\x86\x53\x24\x11\xc7\x39\x52\x88\x63\x8b\x52\x24\xb0\x47\x1a\xc9\xb8\x0f\xc8\xb8\x0f\xa8\xb8\x0f\xa8\xb8\x0f\xa4\x71\x1f\x48\xe3\x3e\xa0\x29\xc2\x81\x51\x22\x98\xa1\x9c\x32\xcc\x51\x4e\x25\x16\x28\xa7\x29\x56\xc8\x50\x83\x53\x64\xa8\xc3\x39\x32\x0c\x63\x83\x0c\xa3\xd8\x21\xc3\x38\xf6\xc8\x04\x79\x02\x19\xa6\x09\x45\x86\x99\x50\x0f\xf3\x81\xd1\xe0\x98\x28\x94\x73\x4a\x52\x94\x73\x4e\x72\x94\x73\x49\x2c\xca\x79\x4a\x3c\xd2\x3c\xa7\x18\x69\x6e\x28\x41\x9a\x3b\xca\x90\xe6\x9e\x0a\x94\x0a\x4c\x23\x59\xa2\x29\x4a\x05\xa5\x39\x4a\x05\xa3\x16\xa5\x82\x53\x87\x52\x21\x18\x42\x5a\x48\x46\x90\x16\x8a\xb1\x08\x39\xd2\x22\x65\x12\xe5\x42\xb3\x34\x42\x8d\x8c\xc8\x99\x89\xd0\x22\x2b\x0c\xf3\x01\x72\x8c\x9c\x30\x9c\x20\x17\xd8\x14\xe4\x85\xe5\x3c\xc2\x20\x5f\x05\xaa\x1f\xa0\xc6\x38\xac\x37\x4c\x84\xe3\x36\x42\x8f\xa9\x70\x02\x47\x48\x30\x13\x4e\x30\xcc\x85\x13\x3c\x42\x89\x85\x70\x22\x8d\x50\x63\x29\x9c\x30\x58\x09\x27\x6c\x84\x1e\xa7\xc2\x49\x1c\x61\x60\x3c\x9d\x64\x11\x72\x9c\x0b\x27\x25\x36\xc2\x4a\x15\xa1\xc6\x56\x58\x69\x22\xb4\xd8\x09\x2b\x3d\x76\xc2\x28\x84\x83\x8c\x40\x08\x12\x46\x31\x82\x44\x1e\x38\x58\x91\x2b\x19\x61\x64\x52\x95\x8e\xd0\x10\x2a\x52\x65\x23\xf4\x84\x89\x34\x0d\xc2\xa6\x4a\x49\x84\x94\x08\x21\x53\x1e\xa1\x24\x52\x88\x54\x45\xa8\x89\x12\x3c\xcd\x49\x2a\x58\x6a\x23\xf4\x44\x0b\xaa\x51\x84\x84\xe4\x82\x68\x4a\x8c\xc0\x81\xcd\x14\x48\x0b\x62\x05\xd2\x8a\x38\xee\x75\x4a\x1c\x77\x3a\x27\x9e\x3b\x6d\x29\xe2\x81\x7d\x42\xdc\xe4\x88\x62\x9e\xe7\x38\x32\xd3\x34\x42\x46\x29\x4f\x73\x41\x19\x57\xb9\xa4\x9c\xcb\x3c\xa5\x9c\x8b\x5c\x07\xd2\x97\x07\x69\x8b\xe5\x96\x2a\x4e\x73\x4f\x53\x4e\x02\xed\xe7\xd8\x60\xaa\x39\x32\x94\x86\x45\xc5\x68\xe0\x79\x45\x90\xf2\x8c\x0c\x12\x9f\x09\x92\x60\x6e\x34\x43\x4c\x9b\x9c\x61\x96\x1a\xc3\x08\x53\xc6\xb1\xb0\x01\x79\x16\x08\x3e\x62\x9c\x71\x4b\x98\x60\x2c\x6c\x4b\x8c\x5a\xc6\x14\x23\x96\x33\xcd\xb0\x95\x2c\xa7\xde\x2a\x66\xa8\xb3\x29\xb3\xd4\x5a\xcd\x1c\x35\x36\xe7\x88\xe6\xd6\x72\x4c\xb5\x75\x9c\x50\x65\x3d\xa7\x54\x3a\xc4\x39\x15\x0e\xf3\xc0\x4e\x13\x2e\x29\x73\x94\xa7\x94\x3a\xc6\x35\xc5\x8e\x73\x43\x91\x13\xdc\x12\xef\x24\x77\xc4\x39\x25\x10\xb1\x2e\x15\x98\xe4\x61\xbb\x24\xda\xe5\x82\x91\xd4\xe5\x42\x10\xe5\x8c\x90\x44\x38\x2b\x52\xc2\x9d\x13\x9a\x30\xe7\xc3\x76\x17\x58\x48\x82\x3d\x12\x9e\x20\x8f\x25\xc6\xde\x63\x49\xb1\xf5\x44\x32\x6c\x3c\x95\x02\xe7\x3e\x08\xd7\xa9\x67\x32\xc5\xca\x73\x99\x63\xe9\x79\x60\xcf\xbd\x90\x0e\x33\x2f\x14\xc2\xd4\x4b\x45\x30\xf1\x52\x31\x8c\xbc\x52\x1c\x79\xaf\x94\x44\xce\x2b\x95\x22\xe3\x53\x95\xa3\xdc\xa7\xca\x20\xed\x53\xe5\x50\xea\x75\x8a\x90\x0a\x83\x8a\xa4\xd7\x29\x43\xd2\xe7\xa9\x40\xc2\xe7\xa9\x8c\x30\x8d\x30\x8f\xd0\x22\xe9\x4d\xea\x03\xd4\x18\x29\x6f\x34\x45\xa9\x37\x9a\x23\xed\x83\x88\x61\xbc\xd1\x0a\x59\x6f\xb4\x46\xde\x1b\x6d\x02\xeb\xad\x1d\x26\xde\xe4\x08\x33\x6f\x72\x82\x85\x0f\xc3\xa6\x7c\x9e\x0b\xac\x7d\x20\xf7\xd6\xe7\xb9\xc6\xde\xe7\xb9\x09\xdc\x73\xee\x08\xf5\xda\x20\x22\xbc\x36\x84\x28\xaf\x0d\x23\xda\x6b\x23\x88\xf5\xa9\x91\xc4\xfb\xd4\xa4\x94\xf8\xd4\xe4\x94\x7b\x65\x2c\x95\x5e\x19\x4f\xb5\x97\x16\x53\xeb\xa5\xa5\xed\x32\x67\xd4\x0b\x2b\x99\xf0\xdc\xa6\x2c\xf5\xdc\xe6\xcc\x78\x66\x2d\xf3\x9e\x85\xb1\xf5\x2c\x8c\xaa\xa7\x8e\x72\xed\xa9\xe3\x61\x67\x76\x42\x60\x4f\x9c\x12\xdc\x13\xa7\x45\xea\xb1\x33\xc2\x7a\xec\xac\xc4\x1e\x3b\x2f\xb9\xc7\x1e\xcb\xd4\x13\x4f\xa4\xf5\xc4\x33\x45\x3c\xf5\x5c\x09\x4f\x7d\xd8\x97\x98\x57\xca\x79\xee\xd3\x94\x78\xe1\x75\x2a\xbc\xf2\x79\xaa\x7d\xea\x4d\x6a\xbd\xf6\x56\x63\x6f\xbc\xd7\x2c\xec\x06\xf9\xb0\x1b\x58\xa4\x94\xc4\x08\x49\xa5\x02\xd3\xa5\x52\x2c\x90\x54\x1a\xa7\x48\x28\x83\x73\x24\x94\xc5\x16\x05\x79\x1c\x21\xa1\x7c\x20\x0d\x29\x22\x0c\x89\x14\x13\x81\x78\x1a\xe8\x2e\x4f\x09\xd1\x88\xa7\x94\x18\xc4\x53\x46\x1c\xe2\x29\x27\x1e\xf1\x54\x50\x8c\x78\x2a\x29\x8d\x90\x23\x96\x2a\x2a\x11\x4b\x53\xaa\x10\x4b\x35\xd5\x11\x1a\xc4\xd2\x9c\x3a\xc4\x52\x43\x7d\x80\x0c\x23\x96\x5a\x46\x11\x4d\x1d\x63\x11\x0a\x44\x53\xcf\x54\x84\x29\x0a\x19\x73\x44\x35\x66\x06\x11\x8d\x99\x43\x44\x13\x8e\x22\xc4\x88\x68\xca\x69\x84\x1c\x11\xcd\xb8\x40\x58\x33\xae\x22\x4c\x11\xd6\x9c\xe7\x11\x1a\x84\xb5\xe0\x2e\x40\x81\x22\xc4\x08\x05\x51\x39\x42\x16\xa1\x88\x50\x22\xa4\x95\x48\x23\xd4\x11\x9a\x08\x5d\x84\x3e\xc0\x80\x44\xad\x24\x41\x58\x2b\xc9\x22\xe4\x11\xca\x08\x55\x84\x81\xd0\x29\x99\x47\x68\x11\xd5\x4a\xba\x00\x15\x42\x4c\x2b\x85\x11\xd3\x52\x51\xc4\xb5\x54\x2c\x42\x81\x84\x16\x4a\x22\xa9\x85\x52\x48\x69\xa1\x34\x4a\x35\x57\x39\xd2\x9a\x2b\x8b\x72\xcd\x95\x43\x46\x33\xe5\x91\xd5\x41\x0c\x71\x9a\xa6\x04\x79\x4d\x53\x86\x83\x10\xc6\x31\xd6\x38\x6c\x74\x1a\xa7\x0a\x33\x8d\xd2\x14\xf3\xd4\xa7\x1a\x8b\xd4\xa7\x06\xcb\xd4\xa5\x16\xab\xd4\xa6\x0e\xa7\xa9\xd5\x08\xeb\xd4\x68\x8c\xf3\x34\xd7\x04\xdb\x54\x07\x62\x93\x6a\xcd\xb1\x4f\x53\x2d\x08\x4a\x95\x96\x04\xa7\x52\x2b\x42\x52\xa1\x35\xa1\x29\xd7\x39\x61\x29\xd3\x86\x88\x94\x69\x4b\x64\x4a\xb5\x23\x2a\x25\x39\x22\x69\x8a\x73\x4c\x74\x8a\x72\x42\x72\xe5\x73\x4a\x8c\x72\x39\x23\x4e\xd9\x9c\x13\xaf\x4c\x2e\x28\x52\x79\x2e\x29\x56\x3a\x57\x94\xa8\xc0\xa3\x53\xa5\xf2\x9c\x06\xb1\xde\x50\xae\x64\x6e\xa9\x54\x22\x77\x54\x29\x1e\x68\xb6\x62\x81\x66\x2b\x6a\x30\xcd\x15\x31\x84\x1a\x85\x0d\xa5\x56\x05\x66\xc1\x49\x6f\x38\x43\xd2\x19\xc1\xb0\xb4\x46\x32\x22\x8d\x51\x8c\xca\xdc\xa4\x8c\x49\x6d\x34\xe3\x32\x50\x71\x21\x03\x15\x97\x52\x19\xc3\x52\x29\x8d\x65\x41\x06\x70\x2c\x8f\xac\xb1\x91\xcc\x22\x66\x25\xb5\x98\x39\x49\x2c\x61\x5e\x62\x4b\x39\x96\xd8\x32\x4e\x24\xb2\x81\x40\x7b\xcb\x39\x0b\x84\x95\x73\x61\xad\xe4\x22\x70\xfc\x5c\x8a\xdc\xa6\x5c\x09\x6d\x35\xd7\x11\xe6\x22\xb5\x39\x37\x42\x59\xc3\xad\x90\xd6\x72\x27\x84\x75\xdc\x0b\x6e\x9d\xc0\x82\x59\x2f\x02\x97\x8f\x04\x15\xd4\x61\x11\xb8\x7c\x22\xb8\xc0\x8e\x08\x21\x82\xa8\x1c\xd8\xd1\xc0\xaf\x3b\xc7\x85\xe6\xd6\x05\xae\xdd\xba\xc8\xb5\x3b\x29\x1c\xcf\x9d\x14\x9e\x6b\xa7\x24\xe2\xa9\x4b\x25\xe6\xca\xa5\x92\x70\xe9\xb4\x64\x5c\xba\x5c\x72\x2e\x5c\x2e\x05\xe7\xce\x48\xc9\x59\x60\x4d\x39\x75\x56\x6a\x4e\x9c\x0b\x72\xaa\xf3\xd2\x44\xe8\x38\x0a\xe4\x96\x79\x8f\x14\x62\xce\x63\x85\x99\xf5\x58\x51\x66\x3c\x51\x8c\xe5\x9e\x2a\x1e\xa1\x64\xda\x33\xa5\x58\x58\x9c\x29\x53\x9e\xab\x9c\x49\xcf\x95\x61\xc2\x0b\x65\x19\xf7\x42\x79\xc6\xbc\x4c\x51\x84\x98\x51\x2f\x53\xca\x88\x57\x29\x63\xd8\xab\x34\x30\x47\x69\x60\xdd\x7d\x9a\x2a\xea\xc2\x34\xa3\xce\xeb\x34\xa7\xd6\xeb\xd4\x50\xe3\x75\xea\x68\xee\xf3\x34\xd0\xda\x5c\x63\x9a\xfa\x5c\x13\x1a\xf7\x81\x08\x39\x0d\x3b\x83\xa0\x22\xec\x03\x94\x7b\xa3\x53\xca\x7c\x94\x10\xbd\xd5\x26\x42\x47\x89\xb7\xda\x53\xec\x6d\x8e\x29\xf2\x36\x27\xc4\x7b\x9b\xb3\x08\x39\x09\x92\x80\x24\xd6\xbb\x30\xa1\xbc\xcb\x75\x84\x39\x09\xd2\x82\x25\x41\x72\x70\x01\x1a\x44\x52\x6f\x0d\x89\x90\x12\xe5\xad\xe1\x44\x7a\x6b\x44\x84\x2a\x42\x1d\x04\x41\x93\x13\xe1\x8d\xb1\x84\x7b\x63\x5c\x80\x16\x45\x48\x08\xf7\xb9\xa5\x84\xf9\xdc\xf2\x08\x25\x61\x5e\x5b\x15\xa1\x26\xcc\xa7\xd6\x44\x18\xf2\x2a\xeb\x03\x74\x98\x70\x2f\x1d\x89\x90\x11\x1e\x35\x3f\xc2\x0b\xa7\x88\xf0\xdc\xa5\x11\xe6\x44\x7a\xe6\x2c\x91\x9e\x3a\x17\xa0\x47\x44\x86\x1d\x83\x48\x8f\x7d\x10\x4f\xb1\xe7\x84\xb7\x0a\x0d\x8f\x7c\x4a\xf0\x04\x8c\xcc\xc7\x5f\x8e\x4e\x28\x50\xb4\xfa\xaa\xf7\x1c\x39\x47\x01\x39\x92\xe2\xa2\x01\xcf\x92\xf2\xa2\x19\x8c\xdf\x92\xfa\xea\xb4\xd7\x77\x05\xc0\xbc\x02\x0f\x5b\xfd\x3c\x6e\x0c\xd7\x06\x03\x28\xb3\x18\x0e\x00\x16\x60\xbe\x68\x60\xd9\xda\xca\x7c\xb8\x5f\x60\x1d\xfd\x02\xfb\xd8\x15\x83\x57\x60\x55\x7f\xa8\x71\x68\x13\x8d\x8a\x1e\x31\xd1\x89\xd8\xdb\x9d\xc4\x86\x36\xf6\x1e\xb4\x75\xb4\xaa\x2a\xc0\xb6\x0b\x99\xb5\x36\x7a\xe9\xbe\xd0\xa5\x3d\x15\x32\xcb\x0e\xa1\xb5\x62\xba\x1f\xaa\xa2\x3c\x19\x5b\xeb\xf6\x20\xe1\x37\xd6\x95\x4d\xd1\xdc\x9d\x4a\xfb\xf3\x41\xda\xbf\x16\xa5\xd3\xf5\xa9\x94\xdf\x1e\xa6\xac\x5e\x9d\x4a\xf6\xd7\x83\x64\xdf\xd7\xb6\x28\xf5\xf2\x54\xd2\xd5\x61\x3b\xfb\x58\x30\x27\xd2\xde\x1c\x75\xfe\xcd\xa9\x64\xff\x3e\x48\xf6\xd3\xef\xf5\xc9\xe2\xfe\x74\x90\xee\x6f\x9d\xed\xe4\xa9\xb4\x5f\x9c\x4c\xfb\xef\x93\x69\xff\x7e\x90\xf6\xe7\x9b\xda\xad\x6f\xaa\xe5\xc9\x01\xfd\xfd\x30\x71\x71\x7b\xb2\xd0\xd2\x1d\x24\xfc\x7b\x63\x4e\xa5\xab\xf7\xd2\xdd\xb8\x5b\xf7\xa5\x6e\xdc\xab\xaa\xbe\xc3\xe8\x54\xfa\xea\xc1\xf4\x04\xe5\xa7\x32\xe8\x47\x32\x9c\x6c\xd1\xfa\x91\x0c\xa7\xd2\x6f\x0e\xc3\xc7\xb5\x0e\xba\x5f\x6e\x72\x77\xe3\x96\xc5\xdb\xaf\x9c\xd7\x9b\xe5\xc9\x11\x35\xa7\xb3\xfe\xa8\x8b\x32\x3f\x3d\x57\xec\xe9\x1c\xbf\xea\xfa\xf6\x54\x72\xff\x40\xdb\xaa\xea\xe4\xe4\xbe\x39\x9d\xfc\x97\xa2\x2e\x6c\xb1\x3e\x95\xe3\xee\x74\x8e\x6f\xf5\xab\x5b\x7d\x2a\xfd\xeb\xd3\xe9\xbf\x29\xbd\xab\xcb\xea\x54\x8e\x57\xa7\x73\xfc\xb0\xd4\xeb\xd3\x55\xe4\x87\x33\xef\x27\xf7\xfb\x26\x10\x93\xd3\x0b\xfa\xa5\xfb\xb8\xa8\x7e\x07\x71\xa2\xba\xd8\x50\xc5\x49\x13\x94\x2d\xac\x32\x0c\x75\x46\xe0\x3a\xa3\x70\x93\x31\xb8\xcc\xb0\xbb\x10\xc3\x26\x64\x46\x96\x28\x31\x94\x61\x8c\x56\x10\xe3\x5e\xcd\x38\x98\x4e\x20\x02\x93\xc1\x90\xcd\x9f\x4c\x8d\xe0\x90\x7e\x9c\xfa\x66\xd7\xc9\xa7\x5d\xb4\x7e\xfd\xb6\x58\x0f\xbf\xaf\xc6\xd6\x49\x8b\x6b\xb8\x6a\x03\x15\xd8\xf6\xe3\x36\x13\xf0\x2e\x13\xf0\x75\x46\xe1\xab\xcc\x65\x59\x56\xdd\xdf\x87\x8f\xcd\xd5\x05\x9e\x63\x98\xc7\x77\x9b\xf6\x9d\xbe\x9a\xbc\x9d\xcc\x27\x77\x13\xf8\x72\x9c\x74\x7d\x65\xe6\x7e\xe8\xec\x9b\xde\x32\xb8\xbf\x36\x64\x75\xd5\xb4\xc6\x5e\xfd\x67\x1f\x14\x1c\x96\x60\xbe\x0b\xf9\x00\xe6\x2b\xe8\xbb\x1c\xb6\x4b\xd9\x9a\x0a\xed\x7d\x19\xe7\x2d\xe6\x16\xbe\x19\x8c\xe1\x6e\x21\x02\xd3\xd7\xf0\x0f\xbd\xc3\x66\x02\xe0\xdb\x6c\xfa\x87\x05\xba\x9e\xce\x38\xfc\x29\x3c\xfe\x61\xb0\xc2\x0a\xef\xbe\xcf\x92\x66\x88\xcf\x73\x75\xec\x79\x33\xe2\x0d\xdc\x90\x30\x01\x17\x18\x3c\x23\x83\x05\x7d\xeb\x97\x03\xa2\xb1\xe1\x7e\xb4\x24\x78\x6c\x25\x31\x75\x49\x09\xa6\xcd\x7b\x6e\xe7\x6a\x46\xc9\x9b\x78\x1f\x55\xd3\x47\xd7\x86\x2f\xc6\x57\xd2\x5e\x8d\x9e\x13\x30\xaf\xe1\x6f\xd9\x8b\xd9\xee\x22\xd4\x64\xd2\xe1\x77\x02\x66\x56\x37\x3a\x69\xc3\x7d\x02\xf8\xed\x41\xaa\x80\xe1\x3e\x8d\x81\x0d\x98\x55\xb5\x75\x75\x02\xe0\xcf\xd9\xb7\x33\xf7\xb6\x68\x12\x00\xbf\x0c\x8f\x61\x71\x26\x20\x0c\x83\x2b\x6d\x32\x79\x35\x01\xf1\x1a\xba\x64\x62\x96\x7a\xbd\x9e\xc0\x49\x5b\x12\xfc\x31\xfb\xb6\xab\x20\x99\x2c\x8b\xd2\x4d\x00\xfc\x61\xf4\x2a\xde\x88\x01\x9e\xfc\x96\xfd\x36\x8b\x57\x69\x26\xbf\xed\x8a\x2e\xca\xb5\xab\x9b\x64\xb2\xd2\xcd\xcd\x04\xee\x9a\xb6\x5f\xcb\xae\x57\xed\xeb\x75\x53\x57\xbf\xb9\x09\x9c\x98\x4d\x5d\xbb\xb2\xf9\xb2\x5a\x56\xf5\x04\x84\x7e\x7e\xdb\x55\xf0\x65\x68\xd3\x8f\xfd\x97\x5d\x07\xda\xb6\x3d\x5e\x4c\xfb\x6b\x3e\x9d\x90\x09\x7c\x75\x7e\x0b\x42\x57\x7e\x38\x2a\xa9\xed\x52\x57\x92\x2f\x96\xcb\x87\xca\x81\xaf\xce\xdf\xf4\xe9\xec\xdd\x04\xc6\xb5\x74\x35\x41\xee\x76\x32\x6f\x17\xd4\x04\xcd\x24\x0e\x5f\x27\x68\x46\x89\xbb\x0d\x3d\xa9\x9f\x66\xd9\x8b\xb3\xb3\x24\xa0\x6c\x74\x7b\x71\xdd\xf6\x71\xff\x4d\xe8\xe8\xfe\x9b\xd0\xe0\xfd\x37\x3f\x67\x3f\xef\xbf\xe9\x5a\x54\xad\xb4\x89\x2c\xd9\xb2\x7f\x33\x5c\x3f\x75\x2a\xcc\xcd\xe0\x34\x9b\x7d\x9f\x38\x00\xae\x5e\xee\x6e\x79\xdc\xbb\x7a\x6d\x54\x0c\xd8\x02\xf8\xe5\xc7\x56\x77\xf2\xba\x92\x8e\xdc\xf5\x4b\xf1\x65\xd2\x9c\x9d\xed\x1a\xd4\x64\xd1\xcf\xe9\xaa\x99\xc7\x86\x6d\x01\x80\x3f\x77\x11\x05\x13\x00\x7f\xeb\x47\xa0\x1d\x80\x96\xc6\xe9\xab\xbb\xab\xc9\xb7\x93\xe9\xab\xf3\xbb\xe9\x04\x4e\xa6\x6f\xa7\x93\x3f\xa1\x19\xff\x65\x32\xfd\x69\x3a\xf9\x53\x7c\x3f\x9f\x7c\x8b\x66\xbc\xfd\x2d\xbc\x9f\xb7\x39\xde\xc6\xf4\x31\xdf\x2f\x68\xc6\xff\x14\x73\xfc\xd2\xe7\x68\x7f\xef\xde\x03\xf8\xed\x61\xe7\xf1\x87\xe1\xfa\x65\xd2\xf5\x04\xfe\x78\x38\x27\xe1\x0f\x7b\xb3\x2b\x4c\xc6\xc4\x03\xf8\x62\xd6\xde\xdd\x9b\xdc\x1c\xcc\xcc\xb2\x1a\xcd\x7b\x5f\x95\xcd\xc5\x3a\x72\x8e\x18\xed\xbd\xf4\xfa\xb6\x58\xde\x4d\xe0\x64\xad\xcb\xf5\xc5\xda\xd5\x85\xdf\xe5\x0a\x75\x5c\xe8\xd2\xdc\x54\x75\x8b\x43\x7d\xd5\x5d\xa9\x39\x6f\xb7\x90\x89\x2b\xed\x64\x3e\xb9\x2d\xac\x5d\x06\x02\xf0\xe2\x28\x60\xf3\x68\xcb\xca\xbe\x1f\xee\x37\x7d\x33\x8b\x7b\xfa\x87\x8a\x5b\x0e\xbe\x01\xf3\x66\x0b\xdf\x1c\x1a\x15\x8f\x3c\xf4\xea\xee\x1e\xe0\xdd\x25\x14\xf0\x4d\x9f\xe1\x45\xff\xee\x43\x3d\x67\x46\xa1\x17\xeb\x9d\xdb\xd3\x1b\x30\x1f\xf9\x32\xb5\x25\xff\x12\x23\x55\x7e\x58\xb1\xab\xfd\xf8\xd1\x7b\x05\xaf\xce\xce\x56\x87\x65\x1f\x19\x2c\x3f\x52\xb6\x6d\x51\x64\xfb\xbc\x3f\x15\xff\xfe\x40\xe4\xde\x66\x77\xd9\x34\x66\xbe\x1d\x67\xfe\x88\x00\x70\xb7\xa7\xf2\x7f\x44\xa0\xb7\xbe\xfe\xbb\x3e\xff\x0f\x1f\x13\xd8\xee\x75\x97\xfb\xf5\x16\xbe\x19\xc7\x70\x1c\xf2\xac\x92\x0a\xba\xbd\x88\x6b\xe3\xdf\xf4\xde\x6f\x77\x7b\xbf\xad\xf7\x7e\x7b\xbd\xf7\xdb\x26\xfc\xd6\x07\xa5\x7e\x5b\xac\x7f\xae\x56\xef\x91\x9c\x43\xaa\x1f\x8b\x57\x37\xef\x13\x9c\x43\xba\x2f\xaa\xa6\xa9\x4e\xca\x02\x77\xfb\x09\xff\xea\xfc\xc9\xf2\x5e\x6f\xc1\xf6\xfa\xba\xe5\x76\x5f\xbe\x74\xb7\xb9\xab\x5f\xea\x4d\x53\xbd\x2c\x6e\x57\x55\xdd\xbc\x7c\xb9\x87\xdd\xc1\x27\x26\x69\xc6\x17\x32\xb5\xf7\x71\xa3\x6b\xb8\x89\x71\xd3\xe2\x85\xd3\xe4\x1a\xfa\x0c\xc1\x9b\x6c\x71\xfd\xdc\x5f\xf6\x03\xf1\xdc\x4f\xa7\x40\x67\xeb\x85\x6f\x1d\xbd\xce\xce\x6e\xba\x58\xa7\x0b\x7d\xbd\x40\xd7\x20\xbe\xed\xe2\xfe\xc6\xc0\xe2\x1b\xd0\x1a\xc4\x8e\x98\xf0\x1b\xbd\xfe\xfe\x4d\xd9\x5f\x13\xd6\xdf\x38\x5f\x47\x8b\xd8\x45\x7d\x9d\x6d\x62\xf4\xda\x50\x82\x39\x3b\x33\x49\x03\x9e\xdf\xf4\xd5\x83\x9b\xd9\xfa\xa6\xf0\x4d\x02\x86\xa8\x33\x55\x6c\x41\xc7\x50\x56\x70\x79\x7f\xbf\xb8\x06\xb0\x1c\x47\xdf\xdb\x0b\x26\x0c\x9b\x0c\x3d\x6f\x2e\xfb\xb8\x30\xcf\x9b\xe9\x74\x14\x17\x3f\xab\x16\xcd\x35\xac\xb3\xa7\x08\xae\x33\xfc\x7c\xbd\xf3\x02\x7d\xbe\x0e\xe9\xda\x78\x47\xe5\x62\x7d\xfd\x04\x3d\xcd\xe2\x05\xf0\xd1\xa3\xfc\x29\x06\xdb\xfa\xec\x2c\xa9\xfa\x3b\x9d\x9a\x8b\x0b\x88\x01\x74\x99\x4e\xf4\x6c\x9d\x95\x01\x39\x43\x38\xd8\x6d\x2b\x9e\xbc\xdb\xc2\x22\x7b\x87\xe6\x28\xc8\x1e\x8b\x3d\xd7\xc6\xd6\x99\xb4\x5e\x34\xd7\x3b\x87\xf4\x45\x73\x1d\xbd\x79\xeb\x66\xfd\xa4\x6d\x6b\x78\x95\xbd\x2b\xe6\x0d\x5c\xce\x9f\x62\xd8\xfd\x38\x7f\xb7\xdd\xee\x98\xda\x90\xa9\x0d\x64\xd2\xe7\x85\x25\x1c\x9e\x75\x98\x66\xcb\xd0\xdb\xdd\xbb\xad\x9e\xdd\x66\x0e\xea\x99\xc9\x6a\xa8\x67\xf6\x28\xf4\x94\x9e\xb5\x01\xd1\xef\xef\xbb\xa1\xb5\xce\x17\xa5\x1b\xdf\xfb\x06\xdf\xb9\x72\x73\xeb\x6a\x9d\x2f\xdd\xfc\x29\x8a\x11\xc0\xcb\x6d\xf4\x42\xdc\x27\x17\x93\x4d\xd9\xe6\xb6\x83\x8f\xfe\x4f\x77\xb7\x79\xb5\x3c\x3b\x6b\x3f\x67\x4d\xf5\x53\x53\x17\xe5\xab\x9f\xf5\xab\xb3\xb3\x87\x6a\x3c\x4e\x0b\xbb\xeb\x71\x26\xdf\x56\x76\xb3\x74\x93\x6d\x6f\xb6\x7d\x9c\x79\xf2\xf2\xa5\x5b\x77\xc9\xfa\x6c\x4f\x51\xdb\xdc\x43\x57\x92\xc2\x27\xf8\xac\x89\x21\xfa\x74\x8c\xc4\xaa\xce\x76\x71\xf0\xe3\x45\x7f\x2c\xfc\x3a\xa9\x62\x55\xa3\x7b\x97\xce\xce\xc2\xff\xd9\x50\xd3\x90\x69\x1c\x7d\x6f\x66\x6a\x17\xc4\xc4\xdd\x95\x80\x7a\x56\x27\xe5\x43\x4d\x2f\xe1\xc4\xf6\x0a\x8b\x03\x8c\xb7\xbd\x08\xd2\x35\x89\x0d\x5a\x47\xbc\x8c\x2e\xf9\xdf\xc5\x81\xaf\xdb\x38\xf0\x7a\x66\x93\x12\xd6\xa7\x82\x8d\x84\x49\xb4\x9d\xe5\x45\x69\x63\xbb\xe0\x28\x1e\x70\x19\x70\x74\xe2\x0a\x86\xec\xa0\xb7\x57\xc7\xb4\xcb\xcd\xba\xb6\x6f\x4f\x5c\x80\xe7\x76\x33\x58\x77\x54\x70\x12\x9d\xad\x42\x75\xd5\x69\xef\x9e\x0f\xa2\x33\x31\xca\x00\xd4\xb3\x55\x36\x99\x3c\x69\xaf\x54\x7a\x53\x94\xb6\x7a\x33\x7b\xe3\xf2\x95\x36\xbf\xfd\x79\x5d\x95\xab\x13\x94\xf4\x03\x93\x05\xe2\x13\xaf\x7b\x88\x34\x29\xa2\x6c\x0d\x9e\xb4\x5f\xb3\x06\xae\xb3\xf5\xd1\xc5\x6a\xed\x8d\x10\x3b\x0a\xbb\x9c\x4e\x41\x93\xc4\x7b\x21\xda\xa0\x22\xd9\x66\x9f\xd2\x25\x0b\x05\x49\x47\xe1\x92\x77\xf2\x20\x6a\x7e\xd7\xcc\x97\x4e\x17\x2f\xeb\xac\x76\xbf\x6f\x8a\xda\xc1\xf1\x5b\x9b\xb5\xb3\x68\x0b\xd5\xd1\x15\x73\x65\x22\x01\x74\x3d\x25\xc8\xca\x24\x05\x5b\x98\x3e\x72\x49\xf7\xa9\xf5\x6b\x2b\x13\x77\xef\xb3\xb3\xa4\x9c\xad\xb2\xa4\xce\xfa\x37\xb3\xdf\x37\xae\xbe\xfb\x29\xca\x8e\x55\x1d\x25\xd6\xb5\xa9\x8b\x55\x33\x01\x60\xec\x1d\x36\x5b\xd7\x66\x56\xbb\xd5\x52\x1b\x97\x3c\xfb\xef\x67\x8b\xff\xf3\xdf\xcf\xae\xcf\x3f\x7d\x06\x27\xcf\x82\x08\x35\x34\x30\x29\xb2\xb6\x4f\xb0\x6a\x1f\xea\xbe\xab\x71\x68\x5e\x6c\x9a\xea\x9b\x38\x30\x5f\xdd\x95\xfa\xb6\x30\xa7\x98\x8d\x2a\x99\xb4\x65\xdc\x95\x2f\x27\x31\x84\x61\x91\x4c\x74\x10\x5e\x27\x70\x71\x7d\x4a\x5b\x9a\x60\x14\x78\xf7\x22\x99\x58\x7a\xa1\xeb\x5a\xdf\x3d\x98\x92\x8c\x12\xbe\x2d\xd6\x0f\xa7\x13\x43\xc2\x36\x28\xc9\x83\x49\xf9\x90\x32\x72\xd7\x0f\x97\x39\x4e\xd9\xeb\x16\x1e\x4c\x4d\x47\x89\x6f\xf4\xea\x91\x62\x47\x29\x9b\xe2\xd6\xbd\xaf\xbd\xa3\x9e\x8d\xef\xff\x78\xa8\x74\xd6\x25\xf7\xcb\x47\xca\xc4\xb8\x4f\xb5\x59\xbb\xd9\xbf\x1e\xc6\x2b\xee\x1b\xbb\xac\xac\x5e\x77\x41\x19\xd7\xef\x41\x05\xee\xdb\xb0\xac\x37\x2f\x6f\xf5\xea\xe1\x84\xb1\x6f\x31\x5e\x78\x91\x4c\xe2\xe4\xbe\xe8\x08\xed\x83\x59\x64\x10\x60\xb7\x5b\xf0\xe4\xff\x0d\x00\x00\xff\xff\x44\x90\x43\x7b\xba\xaf\x16\x00")
+var _distAssetsVendor34c674f94f8ed54c9c302f718969513fJs = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\xfd\xfb\x76\xdb\x38\xb2\x28\x0e\xff\xef\xa7\x90\xf9\x75\x34\x40\x04\xc9\x24\x75\xb3\xd9\x46\xeb\x4b\xc7\xb9\xf5\x44\x49\xba\xed\x8c\x27\x91\x35\xda\xb4\x04\xd9\xec\x48\xa4\x1b\x84\xe2\x38\xa6\xf6\xb3\xff\x16\x0a\x00\x09\x4a\x94\x93\xcc\xec\xb3\xcf\x49\xd6\xb2\x88\x5b\xa1\x70\x2b\x14\x0a\x55\x85\xdb\x28\x9e\x25\xb7\xad\x67\xcb\x4b\xc6\x9f\xbd\xf9\x07\xbd\x7f\xfe\xec\xc9\xd9\xfb\x3f\x9e\x9d\x06\xf7\x6b\xf2\xec\x9f\x67\xcf\xde\x9c\x4c\xde\xfd\xf1\xf6\xec\xed\xd9\x87\x77\x32\xf2\x24\x14\x2c\xd8\xf7\xd6\x64\xf2\xdb\xef\xef\x9f\xfd\xf1\x61\xf2\xea\xcd\xd9\xb3\x17\x7f\x3c\x39\x7b\xf5\xf6\x4d\xb0\xef\xae\xf7\x3e\x87\xbc\xb6\x48\xc2\x19\xe3\x64\xc6\xe6\x51\xcc\x08\x67\x7f\xad\x22\xce\x86\xc9\x6c\xb5\xc8\x43\xe6\xf7\xcf\x94\xf0\x55\x1c\x47\xf1\xd5\x19\x4b\x45\x4a\xf7\xbd\xbd\x68\x8e\xe6\xab\x78\x2a\xa2\x24\x46\x0c\xdf\x3b\xab\x94\xd5\x52\xc1\xa3\xa9\x70\xf6\x4c\x42\x4d\x20\x7c\x2f\xab\x62\xf4\xed\xe5\x9f\x6c\x2a\x5a\x53\xce\x42\xc1\x50\xbc\x5a\x2c\xf0\x1e\x67\x62\xc5\xe3\x1a\x6b\x4d\x26\xf4\x73\x12\xcd\x6a\x2e\x99\xb1\x05\x13\x0c\xa2\x08\x5b\xcb\xa2\x9c\xde\x2b\x44\x83\x12\xbe\x41\x15\xda\x41\x65\x23\x82\xad\xc6\x04\xf9\xd7\x7a\x2f\xff\xa4\xfa\x8b\x96\x80\x50\xbb\x91\xf3\x84\x23\x89\x93\xa0\xa3\x31\xe1\x74\x81\x18\x71\x90\xce\x8e\x1d\x22\x30\x89\xa9\x68\x2d\x58\x7c\x25\xae\x9b\xde\xcf\xf1\x2f\xd4\xfd\x39\x6e\x36\xb1\x18\xc5\xe3\x16\xfb\x72\x93\x70\x91\xa2\xbc\xdd\xbc\xb5\x84\x2a\x4c\xca\x9a\xa8\x16\xd2\xfb\x38\x79\x9a\xc4\xf3\x45\x34\x15\x41\x5e\xbd\x50\x3d\x19\x93\x68\x4f\xa2\x11\xd7\xa2\xb8\x26\xb0\x68\x5d\x87\xe9\xdb\xdb\xf8\x1d\x4f\x6e\x18\x17\x77\x28\xc6\xf5\x3a\xaf\x8a\x44\x11\x95\x68\x10\x36\x8a\xc6\x94\xa9\xaf\x78\x4c\xf9\x28\x1e\xe3\x35\x59\x86\x9f\xd8\x09\x9b\x87\xab\x85\x78\x06\xd8\xe4\xb3\x24\xa6\x02\x61\x12\x51\x24\x7f\x5c\x0c\x71\x09\x1d\x39\xba\xd9\x0e\x71\x34\xfa\x0e\x71\x54\x7b\x9c\x71\x31\x01\x42\xc4\x88\x20\x9c\xc4\xf8\x5e\x5c\x47\x69\x6b\xb5\x8a\x66\x34\x6a\x34\x08\x84\xa2\x19\x65\xea\x6b\xc6\x6e\x52\xba\x6f\xfa\x4e\x36\x41\x7d\x0d\x92\x40\xa8\x1c\x0a\x36\xbd\xd7\xb5\x05\xf7\xeb\xb5\x4a\x98\x86\x8b\xc5\x65\x38\xfd\x44\xb9\x0a\x5f\x87\xa9\x6a\x42\xfa\x24\x3d\x61\x37\x74\xdf\xd3\x95\xa5\x4f\x16\x51\x98\xd2\x58\x05\x39\x8b\xe6\x11\x9b\xd1\x98\xdd\xd6\x9e\x70\x1e\xde\x21\x53\x3b\x56\x19\x52\x11\x0a\x46\x9d\x98\xdd\x3a\xeb\xbc\x3d\x29\xc2\xf7\x45\x68\x25\x27\x45\xde\x92\x22\x7e\xa1\x5a\x5d\x4c\x98\x88\xc6\x23\x36\xce\xb2\x78\xc4\x1a\xce\x41\x14\xcf\xd8\x17\x67\xfc\x73\x54\xaf\x47\x06\xad\x9f\xb1\xcc\x13\xb5\xa2\x19\x64\x93\x1f\x45\x4e\x33\x63\xa2\x2c\x2b\xa6\x23\x11\xb2\x6e\x9e\xdc\xd6\x64\x13\x9e\x71\x9e\x70\xe4\x3c\x4d\x56\x8b\x59\x2d\x4e\x44\x6d\x1e\xc5\xb3\x9a\xea\xb4\xda\x7f\x39\x0d\xd6\x70\xfe\xab\x16\x2d\x65\xbf\xb0\x59\x6d\xce\x93\xa5\x8c\x15\x0d\xe7\xbf\x1c\xbc\x06\x60\x84\xd7\xeb\xce\x0d\x8b\x67\x51\x7c\xe5\xec\x53\x1a\xa9\x1e\xa8\xd7\x9d\x79\x14\x87\x8b\xe8\x2b\x9b\x95\xa2\x51\xd4\x92\x75\x9c\xb0\x9b\x14\x71\x4c\x78\xeb\x66\x95\x5e\xa3\x08\x63\x12\x15\x3d\x31\x55\x78\x46\x73\xe4\xb4\x64\x69\xd6\x9a\x5e\x87\xfc\x89\x40\x2e\xc6\x66\xf9\xef\x99\x5e\xe2\x94\xb5\xd2\x9b\x45\x24\x90\x73\xe0\xa8\xb5\x54\x04\x5b\xe9\x22\x9a\x32\xe4\x92\xa6\x27\xa7\xa3\x4b\x12\x6a\x26\xc9\xcf\xd1\x71\xf2\x73\xd4\x68\xa8\x15\x12\x52\x3e\x8a\xc6\x7b\x50\x65\xcb\xa1\x94\x86\x50\xbf\x4b\x29\x8d\xcd\x08\x6f\xf7\x5b\x18\xcb\x4e\x0b\xa7\x53\x96\xa6\xb5\x9b\x90\xb3\x58\x98\xde\x4b\xe6\x35\x9e\x24\xc2\xc1\x7b\x71\xeb\x26\xb9\x41\x78\xcd\x16\x29\xd3\x6d\x02\xf8\xd3\x24\x16\x51\xbc\x62\x32\x83\xec\x84\x10\xaf\xd7\xba\x75\x71\xeb\xcf\x24\x8a\xa1\x05\x45\xaf\xcc\xe5\xbc\x51\x19\xf6\xd1\xbe\x9c\x1a\xf5\xfa\x7e\x69\x6e\xe0\x75\xd8\xba\xe1\x89\x48\xc4\xdd\x0d\x6b\x6d\xad\xce\x82\x2a\x19\xfa\x6a\xad\x11\x43\x4f\xf6\x24\x95\xa5\x94\xb2\x2c\x73\x12\x20\xbf\xce\x3e\x95\xf0\x92\x79\x0d\x86\x55\xc3\xb0\x62\xb3\x4c\xd1\x61\x18\xa9\x99\xaa\x31\xcb\xf6\x35\xf1\x8e\xd2\x67\x5f\x04\x8b\xd3\xe8\x72\xc1\x10\xc3\x59\x86\xf2\x4c\x94\xe1\x35\xb1\x51\xd6\x38\xd8\x88\xca\x0e\x2b\xa6\x12\xa5\xb4\x58\x66\x59\xe6\xc8\xf5\x78\x27\xa7\x5e\x29\xc1\x4c\x92\xaa\xe6\x29\x6a\xd9\xba\xe5\xe1\x8d\xa2\xd5\x69\xbd\x8e\xca\x24\x61\x3b\x0b\xd2\xcb\xb5\x4c\x3b\x30\x2e\x88\xc2\x1d\x52\x44\x4e\xf7\xa9\xc9\xd2\x0a\x6f\x6e\x16\x77\x50\xbc\x44\x40\x72\x72\x6e\x47\xea\x79\x46\xdd\x12\x29\x29\x1a\x5f\x49\xa9\xea\x75\xd5\xf9\x6a\xc8\x50\x45\x93\x29\xc3\x7a\x8f\xd8\x9e\x12\xf5\xba\x2a\xb0\x19\x8f\x30\xa9\x80\x54\x1e\xac\x55\x9c\x32\x66\x0f\xd5\x26\x01\xdc\x49\x82\xcb\x70\xa0\xfb\x36\x87\x5c\x77\x89\x5c\xfd\xd6\xb8\x96\xaa\xc8\xc7\x7e\x4f\xf0\xbb\xfb\x12\x79\x86\xc0\x44\x8f\x0b\xd9\x2c\x24\xe1\xae\xa1\x5b\x17\x77\xf7\x3b\xa6\x90\x99\x14\xba\x18\x93\x0b\x9e\xcd\x1c\xbc\x89\xfc\x64\x0b\x7b\x43\x97\xf4\x4c\x30\x63\xab\x08\x11\x26\x82\xba\x3f\x8b\x63\x66\x88\x90\x30\x04\x88\x53\x36\x12\xe3\x3d\xf9\x87\x72\xd3\xe1\x83\xfc\x2b\xd8\xdc\xf7\x11\x36\xc4\x82\x95\x31\x32\xe4\xb5\xc4\x83\xc8\x2e\x95\x43\x42\x77\x77\xa7\x21\xe2\x7b\x05\xbf\x92\x6f\xb2\x84\x53\xf7\x67\x7e\x6c\xf6\xba\x9f\xb9\xc1\x3a\xa6\x62\xc4\xc7\x24\x2a\xb5\x75\xc4\xc7\xc5\x70\x6b\x16\x4d\x21\xaf\x43\xeb\xbd\x7c\xfb\x97\xf4\x75\x80\xaa\xb7\x60\x97\x44\xf9\x1c\xae\x98\x8d\x38\xc8\xd9\x09\x80\xb2\x99\x39\xfc\xc4\xfe\x50\xe9\x08\x07\x86\xcb\xa8\xcc\xa9\x70\x8b\xcc\x54\x5d\xa0\x29\x8a\x0d\xaf\x81\xcd\x07\x61\x5b\x83\x6f\x55\xb1\x83\xb6\x4a\x92\x41\x6d\x6e\xcc\x70\x71\x1a\xb1\x29\x12\x84\x61\xbc\xce\xc9\x41\x4e\x1a\x05\x11\x1a\x9f\x57\xc0\xef\xc8\xee\xa9\x82\x34\xcf\x61\x10\xb1\x26\x48\x31\xb8\xd4\xde\xf0\x25\x4b\x51\xb0\x13\x7b\x51\xbd\x0e\x53\xa1\xd8\x95\xb3\x0c\x85\xfc\x6a\xb5\x64\xb1\x48\xf5\x08\x1f\xfb\xf5\xba\x3d\x7f\xb6\xb6\xbe\x30\xae\xad\xe2\x74\x75\xa3\x59\x03\xbd\xe9\xdd\x86\x69\x4d\x61\x30\x23\x35\xf6\xe5\x86\x4d\x65\xe2\x7f\xa9\x28\x14\xcd\x48\x0d\x66\x93\xce\x8e\xff\xab\x16\xc5\xa9\x60\xe1\xac\x76\x95\x88\x20\x67\x38\x72\x64\x6a\x22\xd1\xe0\x80\xdf\xd8\x44\x12\x13\x60\xc1\x24\x33\xa4\x58\x31\xb9\xb9\x70\xd9\x73\x74\x34\xc6\x44\xb6\x96\x72\xa8\x22\x8c\xa7\x72\xa7\x5a\x0d\x64\x0b\x42\xc4\x61\x5c\x08\x27\xfb\x2e\x0e\x54\x94\x62\x38\xf7\x3d\x8c\xd7\x78\x7b\x1b\x02\x76\x44\xad\x52\xd5\x87\x73\xb4\xcf\xb3\xcc\x2c\x29\x5e\xda\x76\x10\xa7\x06\xe6\x68\x4c\x52\x02\xc7\x16\xbc\x49\x94\x05\xe1\x15\x14\x5e\xe1\x4c\xf8\x5a\x1f\x58\x5a\x21\x70\x9f\x65\x44\xf4\xc8\xfb\x92\x8b\xd8\xe8\x92\x81\xee\x6a\x41\x24\x0a\x92\xd3\x54\x0d\x94\x5f\xeb\xe2\x28\xd3\x62\xb1\xe0\x11\xcb\x4f\x2f\x7f\xa6\xad\x09\x0b\x3f\x4d\x52\xc6\x62\x1a\x5b\xf9\x60\xd2\x59\xe1\x0d\x9a\xcf\xf0\xbd\x3a\xce\x40\x3c\x76\x64\x07\xaa\x3c\xa8\x54\xdd\x74\xc1\x42\x6e\x2f\x91\xef\xc4\x04\x4e\x11\x42\xc2\xd2\xed\x72\xe6\x49\xe2\x10\x0b\xd0\x1a\xdb\x49\x07\x97\x21\x77\x64\xaf\xef\xce\x11\xa6\xb3\xb9\x43\x46\x86\x1e\xd8\x07\x11\x43\x4d\xac\xe2\x7a\xf9\xc0\xd9\xa8\xa8\x41\x9e\x96\xac\xd0\x16\x0e\x5f\x01\x07\x7b\x04\x15\xe2\xb8\x9c\xf1\xaf\xd5\x57\xe7\xa1\x5c\x76\x24\xd1\x25\xbe\x38\x55\x0d\xd6\x59\x5a\x0a\xa4\xd3\x52\x38\x38\x2d\xdd\x5a\x88\xe0\xf2\xb7\x75\x20\x73\x3e\xd4\x3f\xcb\x30\x8a\x35\x44\x28\x54\x9d\x37\xdf\x85\x20\x5f\xde\x85\x32\x83\x21\x6d\xa5\x94\x8d\x68\xa8\x24\x8f\xd3\x33\xa6\xe8\xd0\xcd\x99\x83\x30\x31\xbc\x28\xcd\xb9\x4e\x05\xb9\x5e\xdf\x4a\x51\x23\x5b\xaf\x97\x17\x5c\xbd\x8e\x36\x56\xe0\xfd\xe6\x49\xbf\x24\x23\x58\xe3\x35\x6c\x4b\x98\x38\xab\x58\xd3\xb4\xa2\x8e\xe7\x61\x2a\x7e\x4d\x12\x61\x53\x49\xb9\x34\x1f\x40\xb3\x80\xb2\x5f\xc6\x74\xb0\x49\x19\xe4\x76\x95\xb3\xd9\x39\x24\x55\xba\x5e\x37\x73\x63\x39\xcb\x17\x3b\x0e\x58\x6b\x99\x48\x3a\x20\x0b\x2b\xbc\xed\x61\x2b\x89\x59\x60\x77\x22\xa2\x38\x6d\x73\x94\x93\x14\xa6\xf9\x55\x49\xb2\x48\x4e\x5b\xac\x33\x48\x5c\x9c\x41\x6a\xcc\x26\xad\x40\x81\xb3\xcc\x19\xa9\x0e\x50\xe1\xb1\x24\x8e\xfa\x18\x50\xec\x9a\x22\x39\x15\x3c\x8a\xaf\x80\x49\x96\x74\x29\x87\x1e\x59\xd0\x25\x0a\xfb\x54\x9e\x38\x0c\x48\x05\xe8\x47\x61\x26\x16\xcc\x82\x53\x5e\xdb\xb2\x06\x93\xee\xc4\xab\xe5\x25\xe3\xd6\xe0\x59\x0d\x7a\x03\x69\x3f\x5a\x7b\xba\xab\xbf\x4e\xd4\xf9\xc5\x40\x97\xc1\x1f\x85\xbd\xb2\xb6\x25\x12\xd3\xd1\x18\x38\x37\xc5\xa9\xe5\xfc\x65\xa3\xc1\xb1\x3e\x5f\x0a\xc4\x24\xaf\xc6\x71\x7e\xf8\x88\x37\x84\x0f\x39\xaa\x5b\x58\x94\x45\x43\x1a\x17\x22\xf0\xd6\x99\x3d\x3f\x95\x2b\x49\xd3\x02\x49\xfa\x59\xaf\x43\xd5\xc0\x2b\xe6\x95\xcb\x24\xc7\xb4\xce\x81\x3c\x79\x63\xa9\xc8\x3f\x31\x81\x8c\x9f\xc3\xc5\x8a\xbd\x9d\xeb\x7c\x3a\x44\x85\xf9\xc2\x84\x95\x0e\xca\x46\x7c\xa4\xeb\x7a\x22\x4c\x94\xdc\xf2\x5b\x2b\x31\x45\x16\xea\xd7\x1b\xd3\x4e\x1e\x63\x27\x37\x73\xa8\x69\x72\x33\xa7\xf7\x6c\x79\x23\xee\x82\x7d\x8f\xac\xe2\x55\xca\x66\x67\xc9\x27\x16\xa7\xc1\x68\xac\xc3\xaf\xe2\x9b\x95\x90\xc1\xe4\x33\xe3\xf3\x45\x72\x1b\x34\x7d\x32\xbd\x0e\x79\xfa\x9a\xcd\xc5\xdb\xcf\x8c\x07\x2e\x70\x01\x2a\xe3\xbe\x47\xa2\xf8\x73\xb8\x88\x66\xc3\x24\x16\xd7\x01\x2c\x36\x1d\xf3\x3c\xe1\xcb\x10\xb2\xac\x52\xc6\x5f\xa9\xc8\x50\xb0\x19\x94\x4a\x13\xf9\x73\x13\xf2\x94\xcd\xe4\x8c\x79\x17\x4a\x0e\x7b\x34\x26\x4b\xc6\xa3\x59\xc4\x96\x0a\x16\x9f\x4f\xfd\x43\xdf\x97\x79\x6f\x19\xfb\x34\x0b\xef\x86\x51\xba\x0c\xc5\xf4\x3a\xd8\xf7\xd6\x98\x40\xab\x8a\xe6\xcf\xf4\x01\x21\x6f\x7a\x94\xfe\x43\x56\x6b\x38\x1e\xd9\x3d\x20\x56\x81\x51\xe7\xad\x8d\xfa\x89\xcd\x0d\x94\x17\xef\x1a\x93\x88\xee\x47\xe9\x9b\xf0\x8d\xec\xca\x59\xeb\x8a\x89\xb3\x68\xc9\x10\x06\x79\xa3\xe9\xae\x63\xb7\x5e\xdf\xe7\x2d\xe8\x65\xf8\xb2\xbb\xc7\x8e\x38\x57\xad\x81\xa8\x8d\x96\x41\x5c\xde\xc7\x76\x21\xd5\xa5\x10\xb3\xd1\xa7\xf5\x3a\xda\xe7\x2d\xd3\x77\x59\x56\x7c\xd7\xeb\x31\x96\x4c\x1e\x6b\x4d\x14\xd9\x04\x49\x68\x54\xaf\xbb\xc0\xed\x95\xc6\xd6\x44\xda\x73\x23\x97\x48\xe6\x14\x87\xb7\x2e\xa3\xab\x97\xc9\x8a\x63\xa2\x3a\x27\x97\x8e\x3c\xe7\xc9\x57\x16\xd7\xeb\x1b\x11\x92\x75\x33\x02\xbc\xbd\x62\x50\x68\xb4\x2e\x04\xe0\x3a\xae\x18\xca\x1b\x39\x06\xea\xec\x36\x47\x6f\xc2\x37\xc5\x4a\x57\x03\x32\x98\xa2\x6b\x24\x30\x61\x38\x90\xbf\x9b\x1d\x22\x8f\x5c\x62\x2d\xa8\x62\xab\x8b\xd5\x9f\x26\x4b\x36\xa8\x8a\x0c\xaa\xe5\xdc\xaa\x29\x7a\xfb\xe4\xb9\x70\xfb\x97\x5f\x7e\x71\x49\x4c\xdd\x9f\xe3\x63\xfe\x73\xdc\x68\x60\x39\xe9\x80\x4e\xd4\xeb\x4c\xcd\x2e\x25\x28\x19\xc5\x63\x12\x13\x61\x3a\x60\xdf\xd5\xcd\xd8\xf7\x94\x74\x79\x49\xb9\xde\xef\x34\x45\x92\x0c\xe4\xc8\x12\x20\x7f\x2e\x91\x46\x12\xc9\xb1\x4c\x90\x90\x3d\xf6\x64\x08\x05\x15\x8a\x4a\x1a\xb5\x19\x4b\x2b\x32\x12\x55\xdc\x14\x80\x2c\x3a\x72\xae\x23\x25\x39\x9a\xcc\x75\xe4\x42\x47\x2e\x28\x04\x54\xa4\x9a\x4b\x3a\x45\x05\x68\x11\xad\xf2\x88\xaf\x4b\x9d\x41\x7c\x5d\x52\x1d\xa1\x6b\x4f\xdf\x9f\x3d\xcd\x51\x7e\x7f\xf6\x94\xe6\x91\x2a\x43\x32\x9f\xa7\xcc\xc0\x57\x01\x5a\x44\xab\x3c\x37\x06\xdd\x9b\x39\x95\x73\xc0\xe0\x9b\x4c\xc3\x05\x33\x48\x43\x80\x16\xd1\xc4\x3d\x5e\x9a\x43\x57\xb1\xc9\x2c\x6d\x71\x40\xa2\xae\x0a\xe8\x72\xc4\xc7\x63\x80\x33\x8a\xc7\x34\x2a\xee\x6b\xe0\x5e\xe6\x8e\xee\x7b\xc5\x30\x5d\xc1\x74\x55\x83\xce\xf4\x41\x7b\xa2\x84\xeb\x27\xe6\xc2\x67\x5f\x52\xa4\xd9\xa0\x4c\x3e\x02\x39\xb7\x8d\x80\x1e\xd6\x00\xc2\x46\xf8\x65\x03\x90\xd9\x30\xd9\xf7\x28\xa5\x77\xf5\x3a\xba\x93\x13\x9c\xb7\x56\x37\x72\xb6\xbf\x85\x5e\xd1\x93\x54\xe2\x65\xed\x08\x97\xbb\xb6\xed\xab\x2c\xcb\x19\x93\x1c\xbb\x8d\xb9\x52\x80\x99\xd8\x60\x8e\xdd\xc1\x30\x14\xd7\xad\x29\x8b\x16\x20\x07\x75\x03\x08\xcf\x17\x49\xc2\x4b\x1b\xfb\x6d\xb1\x8a\x1b\x8c\x70\x6a\xa6\x3f\x48\x58\x45\xbd\x1e\xa5\xcf\xa3\x38\x12\x92\xf1\xab\xd7\x11\xa7\x13\x18\x46\x5e\x00\x78\x66\x1f\xfb\x63\x12\x51\xa8\x68\x19\xc5\xc8\xf0\x05\xa4\xb8\xb6\x48\x54\x6a\x78\x99\xe6\xa9\xcd\x22\x35\xa4\xae\xba\x39\x82\x65\x1b\xc1\xb2\x45\xbc\x5e\x97\xa3\x2b\xb1\x19\xc5\xe3\x2c\xdb\xe7\xf5\xfa\x2d\x0c\x38\xde\xa7\xf4\x16\xc9\x58\x49\xe2\xc3\x46\xc3\xa0\x1e\x36\x92\x02\xbf\x2f\xb2\x81\x30\x2a\xbc\x95\xae\x6e\x6e\x38\x4b\xd3\x13\x76\xc3\xd9\x34\x94\xe9\xe7\x21\x8f\xa3\xf8\x6a\x07\xd3\x3c\x4d\xe2\x34\x91\xfc\xbd\xfe\x68\xdd\x86\x3c\x2e\x87\x90\x63\x41\xab\xdd\x2a\x70\x41\xcd\x69\xd8\xbd\x7c\x5a\xd0\x88\x98\xe6\x24\xa6\x36\x45\x65\x49\xa4\x1a\x65\xde\x9a\x15\x10\x5f\x86\xf1\x6c\x21\x09\x7f\x55\xac\xe2\x9d\xe5\x8e\x69\x5d\xe4\x90\x84\x8e\xc6\xb2\x2f\x7f\x0e\x8f\x37\x8f\xec\x3f\x87\x8d\x06\xd4\x14\x51\xc7\xd9\x3e\xe7\xe4\xd9\x47\xe1\xb8\x80\x98\x4a\xb2\x19\x35\xa8\x73\x11\x8f\x9c\x46\xd8\x70\xc6\x35\xa7\x60\xd8\x47\xee\x18\x47\x0d\x9a\x36\x1c\xd9\x68\x3b\x7a\x94\x8e\x1b\x0e\xa9\x39\x7b\x11\x8d\x8a\xbb\x11\x5f\x5d\x4e\xd4\x22\x6a\xd7\xb6\x97\x98\xcb\x99\xf5\x17\xc4\x1a\xce\x45\xfc\xc4\xa4\x4a\xb0\x5b\xfb\x81\x84\xa6\xa8\x78\x82\xf5\xfd\x85\x83\x65\x31\xa7\x81\x72\xc9\x11\x6e\xa5\x22\x9c\x7e\x92\x0c\xc5\xbe\xb7\xce\xa5\x5e\x96\x98\xdc\x3a\x76\x48\x06\x53\xb6\xf6\x2d\x79\x42\xef\xd7\x05\xdd\xf8\xa4\x86\xee\x87\x87\x06\x2e\xac\x9e\xc0\x9d\x1a\xfa\x82\xf4\x37\xdd\x77\xad\x59\x71\xb6\x6b\xe5\x3f\xd7\x39\x2c\xa6\xdd\x44\xfd\x28\xe3\xfe\xb4\xcc\xb8\x4f\xd1\xfd\x9a\x30\xac\xb8\xf7\x0d\xb6\x39\x02\xc6\x19\xd7\xeb\x11\x02\xe6\x79\x80\x62\x90\xae\xae\xc9\x14\xbe\x08\x24\x9b\x00\x64\xc1\x81\xea\x17\x19\x18\xc4\x86\xed\x0e\xf4\x1d\x79\x0c\x2c\x78\x5e\x15\xc3\x92\x8f\x97\x55\xed\x9b\x3a\xf3\x2a\x55\x55\x80\x1d\x94\xaa\x3a\x36\x0c\x65\x77\xe5\x14\x51\x89\x93\x99\x90\xad\x7d\x70\x65\xd3\x7d\x8f\x54\x8d\x10\x85\xc5\xf3\xd6\x74\xe6\x27\x76\x97\x0e\xac\xef\x12\xbb\x01\x04\x92\x70\x73\xee\x11\x45\x73\x04\x70\x97\xea\xcc\x53\xdc\x9b\x2b\xd6\xe1\x8f\xd2\x44\x7a\x67\x4b\xf6\xe4\x90\xbd\x4e\x6e\x19\x7f\x1a\xa6\x0c\xe1\xbd\x3f\x64\xf3\xff\x18\xf1\x86\x93\x3a\xf2\x43\x8c\xed\x73\xe3\x9f\xd6\xb9\x31\x55\x67\x98\xe2\xdc\x38\xf8\x03\x26\xd9\x1f\xa3\x0d\x98\x63\x23\x00\xcf\xc1\x9c\x58\x4d\x21\x31\x20\xb7\x3d\x36\x48\xd0\x3f\x11\xc7\x6a\x4c\x24\x1a\xf6\x39\x2a\x86\x25\xf2\xa6\xd4\xae\x57\xaa\x5d\x6f\xe4\xf4\xb6\xf6\xa3\xd7\xa5\x7d\x81\x3a\x4e\xa3\x20\xfd\x92\x55\x17\x4d\x73\xd7\xa9\x81\x23\xf7\x98\xb2\x01\x1f\x38\x0d\x27\x70\x9c\xc0\x69\x3a\x58\x15\xb9\x49\x6e\x91\xe7\x12\xb5\xaf\x84\x5f\x90\x4b\x22\x8c\xf3\x29\x8f\x70\x2b\x5d\x5d\xa6\x82\x23\x0f\x37\x14\x7e\xcf\xe9\x01\xba\x18\x8d\xfe\x75\x31\x1a\x3f\xbe\x18\xe3\x0c\x5d\x5c\xe0\x01\x1a\xbd\xbc\x1e\x2f\x97\x28\x4d\xf1\x20\x1b\x26\xd9\x70\x38\x90\xff\xb3\x93\x24\x3b\x39\x81\x3f\x03\xf9\x3f\x9b\xcd\x66\x83\xd9\x20\x9b\x25\x83\xec\x76\x94\x64\xb7\xe3\x41\x76\x3e\x4a\xb2\xf3\xf1\x20\xfb\x3d\x19\x64\x1f\xe0\x5f\x56\xfc\xcd\x3e\x7c\xc8\xae\xae\xd0\xd5\xd5\xd5\x00\x0f\xb2\x17\x2f\xd0\x8b\x17\x2f\xe4\x17\xcb\x9e\x65\x61\xf6\x24\xbb\xbe\x1e\x64\x2f\x5f\x0e\xb2\x4f\x9f\x06\xd9\x72\x39\xc8\xd2\x74\x90\x9d\xde\x7b\xe4\x68\x9d\x7d\xc9\xfe\x99\x7d\xfd\x3a\xc8\x3e\x7e\x1c\x64\x2d\x7c\x70\x45\xbe\x56\x22\xfe\xfa\xec\x34\x7b\x7d\x96\xbd\x7e\x3d\x90\xff\xb3\xc5\xbd\x47\x3a\x6b\x99\xfd\xa5\x5c\x9b\xbf\x96\x06\xe3\x7d\x71\x1c\xd5\x62\xf8\xbd\xad\x19\x13\xc3\x01\xa3\x24\x20\xcd\xaf\x07\x47\xf1\x18\x61\x79\x6c\xab\xd7\xd1\xaf\x72\x44\x23\x4c\x04\x7c\x8b\x91\x3b\x1e\x57\x94\x7a\x8d\xa2\x6a\x8a\x4a\xc4\xc8\x93\x64\xc2\x1f\x4b\x80\x1c\x80\xf0\x2a\x08\xb0\x92\x15\xf3\x77\x12\x8a\x10\xe1\x56\xc2\x67\x51\x1c\x2e\x76\x42\x66\x78\x6d\x91\xb8\xf3\x92\x38\x81\x15\x5c\xda\x00\x09\xfa\x17\x12\x84\x95\xa0\x63\xf2\x52\xce\x6b\xf9\xc7\x56\x56\xb0\x56\x06\x89\x28\x6b\xc1\x49\x0f\x3d\x57\xf4\x4b\x50\x97\x70\x1a\xe5\x17\x69\xc7\x1c\x2e\xd3\x7e\x1d\x45\x23\x31\x1e\x0f\xe4\x5f\xaa\x03\x01\x04\x50\x4c\xe5\x2f\xd6\x60\x0e\x2e\x46\xa3\x8b\xf4\xe2\x74\x7c\x80\x07\x71\x8b\xb3\x9b\x45\x38\x65\xe8\xe0\x5f\x17\xa3\xec\x62\xfc\xd3\xc1\x15\x71\x1c\x1c\x58\x09\x17\x17\x2a\xce\xac\xbb\x6d\x1d\x9b\x84\x3a\x8e\xc5\x2c\xa9\x33\x4e\xd2\xa0\x67\x28\x92\x0c\xd1\x40\xfe\xd5\xc7\x1c\x79\x02\x93\x41\x03\x2c\x59\xaf\xe5\x7e\x24\x3b\x00\x64\xf6\xe5\xee\x31\x47\x59\xe0\x69\xad\x5e\xfe\xcb\x26\x5f\xdd\xbd\x4a\x29\x9d\x68\x2d\x92\xf8\x4a\x96\x54\x07\x61\x60\x3d\xd9\x5a\xa2\xf9\xb5\xb5\x08\x53\xf1\x2a\x9e\xb1\x2f\xd4\xfd\xd9\x3d\xa6\xbc\x5e\xff\xda\x12\x2c\x95\x99\x7e\xc6\x8c\xb2\xbc\xf5\x5f\x49\x8c\x49\x29\x3f\xe1\x4d\xea\x95\x99\xfb\x7f\xd0\x83\x8b\xd9\x01\xf9\x20\x7f\xe4\xc7\x0b\xf9\x71\xdf\x5e\x1f\x90\xbf\xc3\x57\x67\x7d\x40\x7e\xa2\x07\xa3\x46\x73\x3c\xb8\x98\xdd\xf7\xd6\x07\xe4\x77\x95\x77\x70\x40\xfe\xa9\xbe\x74\xe8\x63\x11\xd2\x31\xbf\x01\x08\x8f\x48\x70\x8c\xe9\x80\x84\x28\x58\x01\xd2\x23\x12\x28\x87\xe4\xc6\x01\x89\x8b\xa4\xc6\x01\x89\x18\x3d\xf8\x98\xc9\xb0\x04\x19\x0c\x00\xc9\xab\x88\x24\xa5\x78\x34\x08\x54\x12\x1e\xc8\xc4\x50\x82\x70\x9b\x47\xe3\x7b\x97\xf8\xdd\xde\x7a\xf4\xb7\xb0\xf9\xf5\x62\xe5\xba\x4f\xdc\xe6\xc5\xca\xed\x3e\x7f\x7e\xb1\x72\xfb\xae\x0c\x9c\xf4\x65\xe0\xf9\x11\x04\x9e\x9f\x3c\x95\x81\x93\xe7\x10\x78\xee\xf6\xe5\x5f\x4f\x05\x9e\x3d\x1f\xdf\x7b\x00\x2d\x1b\x5d\xac\xdc\x1e\x14\x70\x7b\xcf\x9f\x5f\x1c\x98\x04\x74\x91\x3e\x1e\x94\x13\x4d\x12\x96\xbf\xeb\x83\x88\xa4\xac\x44\x66\x56\xcc\x50\xf7\x94\x49\x2a\x71\x86\x04\x1e\x58\xaa\x60\xcc\x92\x87\xb1\x7a\x9d\x0f\x78\x20\xd6\x96\x00\x90\x95\x96\xec\x02\xa5\x8c\x30\x3c\x00\x58\xc5\xd9\x95\x14\x67\x42\xb8\x57\xfa\x83\x5d\x3d\xfb\x72\x83\xa6\x0c\x15\x73\xc5\xb9\xb8\x70\xe4\x42\xb1\x97\x0e\xba\x18\xe1\x4c\xfe\x8c\x71\x76\x31\x42\xa3\x7f\x5d\x8c\x25\x41\xc5\x17\x63\x19\x0b\x84\xb6\x7c\xe7\x22\x57\x7c\x31\x87\xb3\x8c\x67\x59\x9c\x65\xd1\x1a\x63\x5b\xe6\xc8\x6c\x6e\xad\xa8\x6f\xd4\xbc\x38\xb8\xb8\xf8\xd7\x4f\x8f\x1b\x83\x16\xc2\xd9\xe8\x62\x7c\xbf\x1e\xcb\xd5\x7b\x71\xf1\x53\xdd\x51\x3c\xe5\xbc\xdc\x7b\xd7\xac\xcc\x94\x09\x58\xc8\xdb\x3b\x7b\xbd\x8e\x18\x1d\xb1\x31\x26\xa1\x3a\x7e\xc5\xf6\xe5\x1c\xc7\xf7\x5c\x92\x1a\x79\x82\x93\x04\xb6\x2c\x8b\x95\xc7\xe4\x39\x1b\xc9\xdd\x7b\x4c\x2d\x26\x6a\xa6\xeb\x06\x1c\x6c\x68\xaa\x13\xe2\xd6\xe4\x96\xca\x3f\x59\x76\xbf\x26\x42\x0e\x64\x6b\x72\x0b\x69\x6b\xd5\x96\x1b\x46\x5d\xb2\x64\xd4\x23\x9f\x19\xf5\xc9\x1d\xa3\x6d\x72\xc5\x68\x87\x5c\x32\xda\x25\x13\x46\x7b\xe4\x96\xd1\x3e\x79\xc6\xe8\x61\xd1\xe4\x2f\x76\xef\x9d\xca\xc0\xa0\xdd\xeb\x05\xed\x5e\xd7\x3a\x24\x95\x7a\xf8\x51\x87\x52\xb7\x5e\x67\x8f\x3c\xd7\xdd\xa7\x6e\x96\xb1\x47\x1d\xd7\xa5\xd4\x5d\xbf\x47\xce\x07\x87\xb8\xc4\x25\xd5\xf7\xe0\x77\x70\x8b\x93\x93\x8b\x63\x7a\x74\x74\x74\x34\x70\x9c\x06\x0b\x9c\x86\xd3\x60\x6b\x4c\xde\x23\x97\x8c\x9c\x0f\x1f\x1c\xe2\x8f\xcb\x70\xec\x3d\x49\x01\x92\x08\x58\x45\x64\xa1\x8e\x2c\xe4\xc8\x64\xc7\x4e\xf8\xe0\x90\xee\x8e\x94\x0f\x0e\xe9\x91\x7d\xd7\x4e\x7d\x87\xd4\x17\x71\xee\x1c\x4c\x5e\x99\x90\x87\xc9\x8a\x41\x0b\x63\xa6\x3f\x3f\x38\xe4\x77\xf2\xc1\x04\x64\x90\x31\xf2\xf7\x22\xfc\xc1\x21\x82\x91\x9f\xac\x88\x3c\xe6\x9a\xa1\x1c\x37\x93\x34\x26\x37\x0c\x52\x34\xb0\x0d\x85\xbd\xd1\x0d\x1b\x53\x9f\x52\x6a\xe6\xd2\x40\x8b\x61\xcf\x6e\x93\x93\xe8\x2a\x12\x1f\x64\xb7\x30\x1c\xe8\x89\x77\xad\x51\xac\x02\x53\x5d\xd2\x14\xaa\x2e\x03\x25\x5e\xc5\x72\xee\x79\x2e\xcc\xec\x6d\x20\xb4\x42\x0e\x2c\xd1\x69\xa0\xde\xe1\xb1\xfc\x18\x78\x47\xae\x1b\xf8\xac\x8d\x15\x2b\xfe\x96\x91\x27\x8c\x7e\x62\xc8\x79\xbe\x5a\x2c\x3e\x40\x4f\xef\xbb\xd8\x3a\xe6\x95\x49\x52\x0e\x3f\xde\x90\x33\xc7\x03\xf4\x94\x69\x29\x92\xdc\xa7\x2a\x24\x3c\xf2\xe0\x07\x92\x9e\xe0\xcc\xe4\xc4\x16\xf1\x3b\x63\x3b\xf9\x15\xd6\x9a\xcc\x46\xce\x15\x13\x4e\x23\x97\xbb\x0d\x9c\xf7\x67\x4f\x25\x47\x8c\x1b\x62\xac\xa4\x51\xd6\xe9\x2e\xa7\xc3\x16\x98\x7a\x5d\x8b\xc1\x81\x9d\x2f\x1a\x4c\x41\xa0\x23\x57\x99\x9e\xd9\xb8\x5e\xf7\x60\x9c\x97\x49\x2c\xae\x65\x41\xff\x08\xc2\x33\xd8\xfb\x35\x3a\xe9\x03\xe8\x70\x92\x17\x26\x43\x66\x07\x81\xaf\xf8\x66\x71\x9b\xc0\x0e\x59\xae\x89\xa9\xa5\xf8\x38\xcb\xd4\x57\x2e\x9d\xad\xbd\x09\xdf\xec\x29\x16\x04\x89\x47\x9e\xdf\xf0\x7c\xfc\xc8\xf3\xf3\xb5\xde\xa0\x48\x34\x39\x3e\xf0\x7c\x02\x12\x9f\x81\x22\x35\xfe\x51\xe0\x1f\x06\x6d\xaf\xc9\x1f\xf5\x1f\xf9\xeb\xb7\x6c\x4b\xea\x0c\x4a\x8d\x6f\xe7\x5b\x82\x67\x1d\xbf\x7d\x18\x34\x6c\xe1\xcf\xe2\x58\xf1\xaf\xe6\x0a\x4c\xe0\x68\x0e\xa3\x2e\x69\x33\xa5\x85\x7e\xa0\x46\xb2\xe9\xad\xc9\x7b\xe4\x0c\x1d\x32\x72\x86\x43\x20\x40\xce\xb0\xac\x67\x50\xd6\x28\x84\xee\x6c\x78\x40\x82\x9c\xa1\x2c\x52\x22\x7d\xec\x01\x3e\x1a\x0a\xa7\xa7\xd7\x09\x17\xf9\x44\x34\x60\x7e\x1c\x8e\x05\xe2\x1d\x72\x20\xce\x21\xce\x50\x11\x2f\x1d\x3c\x54\x44\x68\xe8\x90\xdf\xf5\xd7\xd0\x22\x5e\x50\x6b\xa5\x7e\x89\xb0\x71\xfd\x83\x5d\xb1\x2f\x8a\x4e\xe8\x52\xdf\x2a\x66\x95\x00\x8a\x37\x94\x88\x0d\x37\x94\x2b\x24\x81\x59\x32\xb5\x61\x36\xbd\x3c\xeb\x50\x65\xde\xca\x6e\x9f\xa2\xb8\xe1\x44\x74\x7d\xef\x24\x41\x92\x9b\x23\xe1\xb9\x48\x7d\x4f\x11\x88\x68\xa0\x6a\x89\x82\x6b\xc4\x71\xe9\x7a\x89\xb2\xb5\x52\xdc\xfc\x83\xd1\x83\x93\x51\x72\x32\x1e\xe8\xe3\xde\xc5\x58\x1e\xf8\xb2\x8b\x14\x37\x24\x26\x83\x03\xf2\x8e\x51\xe7\xb7\x30\x5e\x85\xfc\x6e\xf2\x9c\x5d\x72\xf8\x18\x86\x7c\x7a\x3d\x79\x72\xc3\xa3\xc5\x64\x18\xde\x4d\x7e\x5b\xc5\x6c\xf2\xdb\x6a\x71\x37\x79\xb2\xba\x5a\xa5\x62\x72\xca\x6e\x04\x5b\x5e\x32\x3e\x79\x3b\x15\x89\xfc\x7d\x93\x7c\x56\x11\x27\x6c\x0a\x1f\x8e\xd1\x58\x9e\x38\x98\xfc\xa9\x6a\x91\x35\x48\xe0\x12\xb4\x01\x2c\xe1\x4a\xb0\x12\xa6\x84\x26\x21\x49\x20\x76\xf9\x82\x7c\x9e\xd8\x2c\x0d\xa8\x2c\x59\x04\xa9\xd0\xa3\x8e\xe6\xdb\x6c\x0e\x2c\x98\x83\x7f\x5d\xcc\x1a\x3f\x1d\xa8\x03\x81\xc0\x58\xd0\x5b\x24\xf0\x9e\x92\x14\xce\xd1\x7e\x88\x04\x65\x55\x93\x52\x8d\x84\xc0\x56\x25\x46\x08\x63\x4b\xa2\x15\x45\x93\x34\xca\x10\x3f\x22\x30\xdc\x4e\x3e\x44\xa2\x1c\x18\x36\x67\x0c\xd2\x2a\xfb\xd6\xf7\x0d\xdb\xbe\x80\x1c\xa0\x93\x9c\xdc\x57\x6e\x0b\xfb\xee\xe6\xbe\xa0\xe1\x2b\xc6\xea\x15\xa3\x21\x23\xaf\xe5\xdf\xa2\x5f\x9f\x33\x84\xef\xf3\x10\xdb\x98\xfc\x5a\x82\x6e\x36\xea\x75\x21\xdb\x19\x8d\x49\x24\xff\x24\xb9\xc8\x0a\x48\x95\xe7\xc3\xb9\x95\xd3\x39\x1a\xf9\xac\x4d\xc4\x18\x13\x73\x63\x9f\x53\x1b\x4d\x30\xb8\xe4\xab\x31\x89\xb6\x92\x4d\x4a\xf2\x03\x29\x36\x48\x75\x6c\x6d\xa5\x32\x86\xc9\x0a\xcc\x57\x92\x7f\x95\xb0\x05\x31\xd4\x94\x81\x38\x0a\x93\x48\x87\xe0\x78\x6d\x35\xcd\xef\x40\xe6\x44\x27\x27\x90\xac\x2e\x69\x2c\x1a\x41\xad\x83\x84\xf3\x2f\xe4\x34\x12\x2d\x3d\xce\xe4\x70\x63\x87\x38\x91\x63\x2e\x87\x36\x29\x12\xdd\x82\x56\xce\x08\x64\xa0\xba\x96\xe8\xbb\x6a\x79\x08\x42\x5c\x01\xa1\x98\x8f\x5f\x59\xb1\x31\x45\x73\xc4\x8e\x3d\xd7\xad\xd7\xdd\x63\xca\xcc\x89\xfd\x01\x09\x7a\x21\x58\xd9\xe3\x23\x77\x4c\x59\xa3\xe3\xba\x44\x14\x37\x5b\xf2\x4f\xeb\xfd\xd9\x53\x5b\x61\x87\xcb\xa9\x91\xdf\x0d\xb5\xae\x98\x78\x7f\xf6\xd4\xb0\x1a\xc0\x5a\x88\x56\x5a\x8e\x64\x5a\xf2\xff\x0d\xc8\x05\x3a\x85\xe2\x7a\xd1\xd2\x97\xac\x2c\x57\xec\x37\x44\x93\x9b\xad\x15\xf5\x1b\xb2\x27\x88\x4b\x62\xac\x51\x3a\x09\xef\x10\x6e\x0a\xfc\xa8\xdf\x90\x5b\x6f\x0e\xe7\x57\x66\x9f\xfd\xc0\x64\x88\x84\x24\xa5\x5e\xa3\xff\x18\x89\xa6\x87\x1b\xa8\xdf\xe0\xcd\x58\x16\x7c\xa9\x48\x7d\x71\xbf\x18\xd2\xf4\x98\xba\x83\x2f\x0c\x25\x94\xc9\xbc\x69\x90\xfe\x02\x47\x9c\x81\x8c\x69\x78\x24\x6d\x42\x10\x07\x32\x4c\x52\x4c\xee\x25\xd5\x09\x12\x32\x0b\xef\xde\xce\x65\x77\x04\xa1\xc5\x13\xbe\x67\x1b\xb7\x68\x24\xa1\x2f\x6d\x5a\x25\xe9\x4f\x48\xad\x3b\x3c\xa0\x69\x1a\x14\xc2\xcd\xa4\xe9\xe1\x83\x3e\x6e\xe4\x52\x92\xf0\xd8\x1b\xc4\x34\x6c\x9c\x33\x14\x51\x03\xa7\xe9\x01\xa4\x20\xfc\xe5\x7c\x03\xf8\x00\xc5\x34\x6c\x6e\xc6\x92\xa2\x68\xc3\xc3\x81\x05\x89\xc4\x34\xc4\xe4\xfe\x96\xb1\x4f\x41\x4c\xa0\x6d\x91\xd5\x9e\xf3\x8d\x51\xca\x47\x8d\x44\xf0\xdd\x50\x88\x18\xc9\x2f\xf4\x55\x33\x6e\x44\xf8\xa0\x6f\x49\x9c\x36\x19\x65\x75\x87\x24\x48\x1f\xb7\xa6\x49\x3c\x0d\x05\x62\xf9\xbd\x92\xc0\x58\x1e\x0c\x6f\x25\x5b\x75\x7b\xab\xd8\xaa\xdb\xc4\x21\x8e\x44\x11\xce\x62\xce\xb9\x4c\x3b\x3f\x57\x69\xe7\x32\x2d\x4a\x93\x73\x95\xfc\x0e\xa9\x8c\xc4\xb9\x55\x21\x93\x44\x9c\x73\xc5\xe0\xa8\xe4\x2e\x7c\xe7\x89\x5d\xc5\xa1\xdc\xe6\xec\x8e\xac\x3a\x67\x77\xce\xf3\x68\x59\x2b\x44\xcf\x24\xcb\x71\x2b\xab\xb9\x05\xd0\x44\x26\x55\xf1\x1d\x62\x14\x1b\xb9\xb6\x4b\x3c\x9c\x1f\xf3\xdf\x23\x67\x26\x39\x37\x67\x26\x1b\x30\x0b\xef\x54\xdb\x66\xb3\x1f\x60\xe7\xb4\x3a\x4b\x3a\x8c\xe2\x32\x5b\x38\xfb\xb7\xc0\x54\xf0\x97\xb3\x7f\x0f\x52\x19\x08\x53\x10\x1c\x9d\xaa\x1a\xfa\x4c\x47\xea\x21\x50\xf1\xef\x10\xf4\x04\x71\x66\xc5\x50\xaa\x08\x56\x1a\x4d\x15\xf7\x4c\x0d\x28\x04\x3c\x2f\x1f\x5c\x3b\x6c\xe7\xf7\xf4\x89\x7c\x96\x8f\x26\xcb\xbf\x9e\xe5\x5f\xb2\xbd\x3b\x58\x54\xab\xbb\x37\x38\xdb\xd9\x77\x94\xaa\xe2\x88\x67\xdf\x53\xd0\x2a\x03\xb3\x4e\x16\x51\x35\xaa\xf2\xdf\xc3\xed\x1a\x58\x0f\xf3\xbb\xad\xd9\x06\xb7\xab\xfb\x0e\x94\xb2\x54\xdd\x30\x14\xb2\xeb\x77\xcc\x75\x33\xbf\x81\x3d\xfe\x07\xa3\xce\xe9\x2a\x9e\x85\x77\x93\x61\x02\x3f\x67\x2b\x96\xca\xdf\x73\x36\x8b\xd5\xd7\xd9\xf5\x8a\xc3\xc7\x73\x1e\xc9\x9f\xd3\x50\xac\xb8\x1c\x2f\x9b\xbd\xfd\xa0\x00\x49\x28\x12\x84\x2c\x2e\x0b\xca\x32\xb2\x40\x29\xef\x0b\xc8\x3b\x19\x26\x93\xb3\xd5\xe4\x9c\x4d\xce\xae\x27\xcf\xf9\xe4\x34\x2c\x65\xfa\x3b\xf0\x68\x3f\xc1\xdf\xdf\xcb\x9c\xda\x3f\xff\x3d\x4e\x4d\x92\x7a\x12\x4a\x56\x2d\x95\x7f\x56\xf2\xcf\xa2\xcc\xb4\xf5\xcb\x3c\x9b\x37\xc6\x92\xf4\x23\x65\xcb\x2b\xd7\x92\xbd\x9e\x81\xc5\x32\x36\x32\xe5\x15\xaa\x92\x92\x72\x92\x8e\x0d\x15\xc7\x16\x63\x92\x9a\x8b\x78\xb2\x52\x5f\x09\x26\x8b\x3c\x75\x91\xa7\x2e\x4c\x2a\x60\x1a\xe6\xac\x5b\x9a\x7f\xad\xf2\xaf\xc5\x06\x63\xa7\x5a\x94\x6a\x56\x2d\x05\xbe\x6e\xa5\x43\x2b\x08\x2d\x74\x68\x61\xb1\x71\xa5\x89\xbd\xc5\x20\x2d\x76\xb3\x58\xdb\x4b\x89\x56\x40\xdc\xc8\x6c\x56\xeb\x77\x64\x7d\x88\x6f\x5b\x7d\x27\x5a\x0f\xc1\x48\xbf\x0d\x63\x18\xc5\x0f\x41\x08\x1f\xe4\x1e\x3f\xb2\x0d\xa1\xc3\x75\xb2\xe2\x29\xc2\x8f\x3c\x3f\xcb\x3c\xbf\xc8\xf8\x9b\x9e\xd6\xef\x81\xc7\xda\x29\x37\x2d\x1f\xd3\xb4\x9a\x23\xb2\x21\x6b\x6b\xbd\x28\x5e\x09\x06\xc1\xd2\x85\x1e\x13\x1b\xab\x67\x62\x80\x00\x1d\x92\xfb\xfc\x4b\xb9\x97\xbf\x7c\xa9\xe5\xb7\x8e\x04\xab\xf6\x87\x6b\x99\x70\x7d\xad\x13\x3e\x32\x88\xfc\x24\x23\x3f\x7d\x7a\x58\xda\xab\x51\xcb\x32\xbf\xa3\xf6\x9f\xeb\xe5\x72\x4b\xcc\xac\x2f\xe1\x9d\xc6\x47\x66\xdd\x4d\xe2\xc6\x6b\xb4\xd1\x22\x1f\xe7\x40\xd2\xf4\x3f\x01\x63\xe2\x52\x36\x4d\xe2\x99\x0d\xfa\xe5\x43\xf8\xd9\x4d\xda\x8d\xdd\xcb\x87\xb1\xfb\x16\x90\x1d\xb8\xfd\xc6\x90\x13\x82\x7c\x15\x3e\x9f\x80\xa9\x8e\xdc\x86\x61\x98\x88\x73\xad\x36\x60\x15\xf2\xda\x6a\x4f\x0b\x1d\xc2\x84\xfa\x7c\x52\x7c\xbe\xcc\x37\xd8\xeb\xfc\xeb\x53\xfe\x25\x27\x40\xce\x6d\xc9\x41\xcf\x03\x72\xb0\x8b\x14\xd9\x51\xff\xcc\xbf\x65\x8b\x3f\x6a\x00\x56\xca\xcb\x3c\x05\xe4\x42\x2f\x1d\x22\xe1\x8f\xc9\x1d\xd3\x31\x92\x19\xfc\xf4\xa9\xc2\x62\x47\xf1\xb8\x72\x03\xdb\x13\xa3\x3b\x36\xa6\x7e\x07\x4c\xff\xdc\x20\x36\x52\xa6\xd0\x21\xce\x93\x4a\x63\x9f\x49\x94\xbe\x5b\x5a\x5b\x6e\x94\xbe\x1b\x22\x90\x20\xe4\xb3\x1e\xf6\x51\x00\x73\x2d\x7b\xef\xba\x02\x8e\xaa\x57\xa2\x40\x60\x23\xd6\x0a\xc0\x74\xdf\xd5\xc2\x76\xe8\x83\x6a\xc4\x73\x4d\x3c\x7f\x2f\x07\x53\xf0\x9e\x31\xc6\x44\x8c\xae\xca\xd1\x32\x72\x67\x3d\xb2\x17\xbf\x51\x53\x07\x4e\x16\x3f\x5e\x2d\xf1\x21\xfa\xb2\x1c\x1d\xed\xc4\xe6\xe5\xff\x74\xab\x0b\xb8\xff\x37\x5a\xa9\xf9\x23\x21\x08\x17\x70\x99\x21\x5b\x9b\xaa\x95\x16\x0b\x7a\x2f\x27\x50\x3c\x0b\x79\x70\x9f\x86\x4b\x76\x12\xde\x05\xce\xe8\x2c\x99\x85\x77\xb5\x50\x8c\x6b\xaf\xcf\x1c\x12\xb3\x2f\xc2\xc4\x2f\x13\xce\x93\xdb\x52\x92\x64\xdc\x02\x60\x0f\x6b\x23\x13\xbf\x08\x53\x5d\xe4\x03\x4b\x05\xe3\x36\x38\x99\xa6\xca\x8c\x5e\x87\xa9\x18\xd7\xca\x45\x25\x16\xcf\x16\x29\x0b\x9c\xd7\xce\x9a\x94\x75\x03\x82\xfb\xd7\x67\xa7\x81\x73\x1d\x2c\x97\x41\x9a\xd6\x9e\x38\xe4\xf5\x99\x0a\xc2\x77\xe0\x0c\x87\x07\x27\x27\x07\xea\x8a\xea\x35\x84\x87\xc3\xda\x09\xa9\x99\x98\x8d\xa8\x5a\x5e\x14\x92\x24\x22\xa4\x56\x95\x61\x4d\x2c\x0d\x87\xc0\xd1\x2a\xe9\xb5\x59\x28\x98\x43\xb4\xe6\x49\xe0\x3c\x9a\x39\xea\xac\x0e\x22\xba\xb7\x2a\x1a\xb6\x9f\x40\xa9\x03\xf8\x70\xf9\xbf\x08\x45\xf4\x99\x9d\x45\x4b\x16\xdc\xcf\x57\x62\xc5\x59\xe0\x44\x71\xed\x51\xea\x90\x9b\x30\x15\x81\xf3\x28\xad\x85\x57\x89\x43\xd2\xc0\x09\x6b\x73\x76\x5b\xd3\xb4\xd2\x21\x69\x2a\x6b\x29\xc2\x4b\x99\x43\x51\x57\x87\x2c\x97\x90\xa8\x89\xad\x43\xae\x03\x27\x8c\x6b\x8a\x62\x5e\x5f\x43\xda\xb5\x1a\xfb\x99\x2c\x06\x07\x95\xd9\x0c\xe2\x25\x3b\xe0\x90\x21\x40\x53\x42\xf9\xe1\x50\x01\x03\x49\x93\x43\xee\x64\x92\xba\x6c\xbc\xbb\x83\x14\x19\x48\x9d\x35\x51\x39\x82\x77\x8c\x58\x52\xa9\xe0\x4f\x06\xa6\x1d\xc1\xfd\x2c\xb9\x0d\x5c\x32\x4b\xee\x82\xde\xda\x58\x7b\xa4\xc1\x3f\x18\xb1\xb8\x90\xe0\x45\x11\x54\xc5\x3f\x30\x52\xda\xbe\x83\x83\x51\x78\x33\xbe\x68\x0d\x96\x83\x8b\xd6\xe0\x20\x5a\x93\x48\xd0\xfb\x35\x49\x44\xe9\x92\x1c\xb4\x47\xf2\xb3\xff\x60\x43\xb9\xad\x50\x00\x98\x38\xc4\x69\x3a\x38\xb0\xa4\xb3\xa0\x53\xa2\x95\x9a\xe5\x21\x05\xe4\xd1\x91\x00\x27\x16\xbb\x4d\xe3\x8c\x11\xdf\xa6\x31\x1f\x06\x8b\x7f\x2a\x44\x6b\x12\x5e\x5e\xf2\xc2\xb8\xb0\x75\xa0\x48\xf6\x81\xd3\x90\xdc\xae\x40\x02\xaf\xa7\xa0\xee\xc3\xf0\xbd\x51\x37\x85\x6a\x2d\x3b\x2a\x61\xcb\xc9\x0b\x0d\x09\x84\x38\x4d\x90\xc0\x83\xa9\xc4\x3d\x58\xa8\x6c\x78\x20\x04\xe5\xc1\xbf\xad\x99\xfc\x1a\xf0\xab\x81\xa9\xb3\x72\xb9\x92\xac\xe2\x59\xab\x76\x12\xcd\x6a\x77\xc9\xaa\x36\x4f\xf8\x15\x13\x35\x91\x80\xa7\xa5\x5a\x24\x06\x8e\xa4\x3c\xba\xa5\x96\xbe\x86\xc8\xaf\xe6\xb4\xc7\x0e\x61\xc4\xed\x5a\xd5\x13\x9a\x09\xd6\x26\x7b\x46\xab\x21\x06\x51\xa4\x68\x49\x50\x94\x69\x4b\x14\xc8\x87\x3f\x21\x47\x35\x48\x21\xf8\xf6\x33\xe3\x3c\x9a\xc9\x03\xe2\x2a\x65\x35\x65\x6d\xa1\x05\xe8\x2a\x07\x52\x3d\xfd\x26\x5c\x32\x22\x9b\x3e\x8f\xae\xb0\x44\x7b\x7a\x1d\xc6\x57\xac\x16\xc6\x35\xf6\x25\x4a\x45\x14\x5f\xd5\xf4\x36\x6a\xa0\xd8\xf5\x54\x42\x49\xaf\xc1\x21\x4d\x12\x2f\xee\x6a\x97\xac\xb6\x4a\xd9\x4c\xf6\x4b\x0d\xfc\x40\x49\x80\x21\x98\xa2\xab\xa2\xb5\x53\xc6\x6a\xd7\x42\xdc\x04\x07\x07\xaa\x82\x3f\xd3\xd6\x34\x59\x1e\x5c\xad\xa2\x19\x4b\x0f\xfe\x7f\x07\x5a\x01\x3c\x3d\x50\x15\x37\xf5\x14\x01\x90\xcb\x84\xb3\x5a\x14\xcf\x93\x16\xf8\x8e\x81\xbe\x68\x4d\x14\x22\xf9\x55\x87\x56\xa8\x6d\x29\x0f\x2f\x0a\x71\x9c\xc7\x47\x62\x54\x4e\x1a\xe3\xb8\x22\xb2\x04\xb5\x18\x36\xc4\x69\x2a\xd0\x06\xec\xfc\xe6\x24\xd9\x02\x93\x65\x68\x3b\x12\xec\xdd\xb7\xa3\xd5\x71\xf0\x3e\x0e\x97\x2c\x60\x44\x55\x1f\x88\xb5\x32\x41\xda\x8b\x25\x87\xa3\x22\x4b\x2b\x03\x4e\x2a\x43\xf4\x14\x81\x09\x8e\x04\x2b\x17\x29\xfc\xb4\xe6\x09\x7f\x16\x4e\xaf\x4b\x4e\xbc\xe4\x4c\x6c\xc9\x3a\x08\x6b\xe9\x11\x5c\xc3\xda\x63\x98\x6c\x2c\xb5\xa9\x28\xcb\xc4\xeb\xf5\xdc\xda\xc4\xfa\x54\x53\x1d\x34\x6d\x36\xe2\x30\xd9\x2f\x2e\x6f\x01\xc4\x3e\x18\x4a\xc9\xee\x14\x14\x68\x4c\x71\xb7\x0b\x7a\x3a\xeb\x4d\xe5\x01\xdb\x50\xc9\x1c\xf6\xa9\xfb\x73\x52\xa8\xe9\xa8\x0c\x82\xa2\x88\x4a\x82\x37\x4a\xc6\xd8\xc8\x1b\x9a\x0e\xc6\xc6\x82\x82\xcb\xa1\x53\x19\x1a\xde\x18\xe3\x01\xb7\x72\x81\x0e\xf6\xcf\xee\xb1\xf8\x59\xad\x50\x89\x5b\x64\x09\x46\xf5\xd9\x4f\xc2\x33\x08\xc7\xb2\x39\xbc\x70\x62\xf5\x0b\x15\xf5\xfa\x33\x14\x29\x37\x05\xbf\x50\xd1\xf4\xf0\x25\x67\xe1\xa7\x3d\xd1\x6c\xae\x93\x46\x23\xd7\x9e\x17\xeb\x92\x7a\xf9\x5c\xd8\xea\xd1\xb2\xe7\xf2\xeb\xb7\x7a\xbd\xe9\x53\x0a\x16\x7d\xb9\xf5\x1d\xa8\x17\xf3\xd1\x92\x8d\x8f\xdd\x2c\xf3\xbc\x63\xf8\x1e\x2c\x59\xc0\x47\x9f\xd9\xf8\xd8\xcb\x32\xf8\xf8\x65\xc8\x10\x1f\xdd\xb0\x31\x81\x0c\x78\xf0\x59\xe6\xb8\x53\xc5\xfc\xce\x31\x7c\xcb\x2f\x4a\x29\x7c\xd7\xeb\xc8\xdd\x97\xdf\x57\x32\x5e\x7d\x5e\x16\x9f\x13\x09\xe3\x4e\xc2\xb8\x52\x30\xba\x47\xc7\xf0\x3d\xb8\x92\x91\x97\x56\xe4\x25\x1b\x0f\x2e\x65\xe4\x44\x45\x1e\x1d\xc9\xd8\x09\x1b\x0f\x26\x2c\x68\x7a\x04\xda\x33\x31\x0d\x3a\x31\x32\x78\xd9\xb2\xe3\x1b\x96\x65\x9f\xd9\xb1\x50\x6a\xd4\x9f\x81\x19\xb7\x73\x4b\x56\x29\xad\xd7\x9b\x9e\x52\xc5\x40\x82\xde\x56\xe6\x01\xbb\x43\x2b\xd7\x33\x93\xcb\x64\xa2\xa2\x74\x1d\x79\x2d\xf2\xf3\x44\xf9\x4a\x92\x19\xfd\xfc\x81\x08\x2c\x7a\x3e\xb3\x46\x4d\x4b\xa0\x40\xfc\xa4\x2f\x6e\x27\xda\x1c\x73\x45\x16\x20\xdc\x59\x51\x46\x16\xc5\xa5\x0d\x6f\xc5\xc9\x2d\xc2\x98\x44\x74\xd5\x9a\xac\x52\xf6\xfe\xec\xe9\x60\xb4\xd8\xba\x03\x22\x26\x6a\xa8\x35\x44\x16\xf9\x9d\x8c\x00\xfd\x74\x55\x66\xb3\x40\x29\xb7\xce\x4a\x58\x6b\x72\xab\xac\xa0\xc0\x6a\x34\x94\x93\xa4\x14\x5e\xca\xf0\x0e\x6d\x5e\xd5\x3e\xb2\xda\xcb\xc9\x28\xdc\x26\x4f\x6e\x71\xeb\xc5\x0b\x63\x64\x25\x5a\xe7\xc5\xe7\x33\x9c\x50\x8f\x84\xb4\x43\x38\xbd\x96\x14\xf3\xc5\x0b\x02\xd5\xc8\x29\xf9\x9e\xa1\x4f\x02\x61\xe2\x91\x0e\x86\xeb\x10\x49\xcc\x21\xd7\x39\xf1\x30\x41\x28\x52\xa1\x67\xc4\xc3\x58\x4e\xe9\xfe\x71\x24\x67\xc4\x8a\xee\xbb\xea\x4a\xfb\x3e\xb1\x89\x8d\x64\x97\x5a\xb3\xe4\x96\x84\x15\xb1\x77\xca\x11\x22\x35\x95\x26\x24\xc4\x7b\x1a\xa9\xab\xab\x02\xa9\x45\x19\x93\x5b\xb2\x00\x11\x9f\xb1\x00\x15\xad\xd9\x40\x22\x26\x5a\x33\x2c\x67\x75\xcf\x42\xc9\xcc\x91\x16\x1b\x40\x0e\xd6\x48\x08\x12\x2d\xa6\xf2\x89\x16\xcb\x73\xe2\x20\xa2\xc9\x3a\x96\x6d\x8a\x7f\x39\x67\x88\x03\x3a\x83\x8a\x49\x4e\xf7\x5d\x0d\x76\x55\x91\x3c\x0b\xef\x64\x06\x94\xd2\x5f\x25\x10\x3d\x44\x38\x6f\x0d\x55\xba\x77\x70\x3d\x6f\x16\x18\x4d\x8b\x0b\x2f\xbc\x06\x33\xe1\xdc\x62\xcf\x5a\x84\xa1\x6c\x7f\xde\x2b\x91\xfc\x8b\x09\xb2\x33\xfd\xf2\x85\xa1\x10\x67\x19\xd8\xe6\x5b\xf1\xb2\x95\x3b\x16\x37\x85\x03\x16\xfd\xca\x50\x48\xdc\x12\x56\x1a\xe7\xa5\xdc\xc9\x36\x66\xbb\x99\xa6\x79\x82\x9a\xcb\x46\x06\xda\x2e\x4d\x5f\x31\x06\xd5\x21\xfd\x4d\x41\x34\x1a\x8d\x84\x12\x03\xe7\x12\xd3\x52\x72\xa9\xf4\x40\x92\x5a\x31\xf0\x02\x37\xd0\x31\x7b\x40\x1c\x21\x00\xf4\xd1\x35\xa1\xab\x52\xe8\xb2\x14\x9a\x00\x25\x65\xad\x89\x3e\x27\xd2\x7d\x97\x18\x10\xd4\x55\xfa\x12\x54\xa6\xeb\x55\xff\xd5\xb6\xca\x25\xd6\x72\x53\xeb\x2f\x2d\x94\x30\xf3\x0b\xe9\x01\x4a\x0b\x52\xa2\xaf\x9a\xad\x72\xc5\xa5\x72\x5a\x26\x0e\xb8\x5e\x07\x7b\x1f\xeb\x3a\x19\x07\x36\xa8\x32\x98\x74\x8d\xed\x4b\xe5\x14\x13\x58\x73\x1a\x6f\x63\xe1\x69\x2e\x88\x03\x13\x01\xa1\x62\x66\x89\xaf\x4b\xe0\x15\x66\xfa\x2e\x7b\xa8\x85\x5f\x56\x79\x13\x85\x9b\x4c\xdb\xcf\x16\xdd\xa7\xfa\x32\xd4\x32\x21\xac\xa9\x98\xe5\xc0\x6e\x72\xdb\x9a\x41\x05\xb7\xad\xd9\x3e\xa5\x89\x99\x82\x1b\x06\xe7\x60\x36\xa6\xb4\x6f\x05\x3d\xf8\xd7\x45\xfa\x18\xa1\x41\xa0\xb4\xc8\xef\x7b\xeb\x0c\xf4\xdd\x71\x13\x0d\x82\x8b\xd9\xc5\xac\x29\xff\x64\xe7\xfa\x53\x7d\x64\x4a\xb7\x1d\x7e\x30\x46\x83\x00\x9d\x65\x35\x8c\x8c\x12\xfa\xc6\xef\xa8\x45\xc6\x17\xb3\x06\x1e\xc0\x7f\x34\xba\x68\x5c\x6c\x29\xac\x67\x17\xe9\xe3\x8f\x32\xfd\xa7\x03\xb2\x7c\x00\x2b\x8d\x54\x81\xd3\xf7\xa1\x54\xfe\xf9\x51\x84\x3e\x8b\x5d\x6a\xf6\xe4\x4e\xd0\x91\x51\xca\x6d\x0e\x87\xcd\x93\x13\x87\x1c\xe4\x48\x37\xf3\x0e\x3c\x18\x6b\xdd\xdd\x3c\x13\xb4\x67\x23\xc3\x8b\x17\x2f\x5e\x34\x47\xe7\xe3\xf3\xf3\xe6\xb3\x3c\x8b\xe9\xfa\x8d\x1c\xe5\xf4\x03\xb2\xef\xe5\x55\x9c\x94\x2a\xb8\x6f\xaf\xed\xda\x4b\x55\xdb\xc5\x3e\x7c\x18\x0e\x6d\xf4\x3d\xb7\x28\xa7\x53\x2e\x66\xf7\x87\xeb\x1c\x0f\x40\x23\xc7\xf3\xbc\xa8\x29\x4f\xb4\xd3\xfc\xb5\x5d\x59\x8e\x62\x7f\x7d\x30\x1e\x93\x2b\xe8\xc6\x97\x2f\x95\xf8\xa6\x75\x7a\x7a\x7a\x0a\xc9\x17\xb3\x20\xff\x73\xd1\xba\x98\x35\x00\xbe\xc9\x47\x2a\xf3\x91\xcd\x6c\x5b\x39\x8a\x54\x3b\x49\xc7\x2e\x97\x65\x04\xf2\xff\x56\xf5\x32\x0f\xa9\xc8\x43\xca\x59\x36\x52\xf3\x14\x2b\x5e\xc7\xe9\x18\xd9\x15\x97\x30\xfb\x0f\x06\x92\x0c\x5d\x20\x74\xd1\x1c\xc8\xa9\x7a\x10\x15\xb2\x8c\x89\xa8\xe4\x48\xc0\x9e\x9b\xac\xe8\x8d\x68\xb1\x2f\x6c\x8a\x52\x9c\x65\xcb\xfc\x5b\x72\x2b\x2b\x75\x3e\x00\x9a\x10\xa5\x09\xf8\x4c\x00\x53\xa4\x3b\xb1\x69\x8b\x14\xcd\xd1\x9d\x18\x89\xf1\xc8\x1b\x2b\x08\xab\x91\x3c\x29\xdc\x47\x54\x45\xbb\x63\x30\x83\xdd\xa7\x3a\xec\x8f\xf7\x80\xc3\x5f\xe7\xa7\xc3\x08\x5b\xae\x6b\x90\xe5\x06\x62\xdf\x53\xc8\x8c\xda\x63\x73\x5e\x91\x38\x5c\x55\xe1\x70\xb5\x81\x43\x5b\xe2\x90\x50\xb4\x1a\xf9\xe3\x2c\x73\x6a\x0e\x6e\x5c\x69\x7c\x36\xeb\x4f\x1e\xa8\x7f\x0d\xc7\x2f\x63\x07\xff\x50\x4e\x85\x69\x67\x0c\x67\xa1\xfd\xcf\xc2\x20\xd2\x19\xe3\x87\x4a\x85\xd4\xf9\xe8\xac\xc1\xb3\x42\xd4\x40\x49\x96\x39\x0e\x6e\xa0\x10\x7e\xc9\xa9\xc8\x95\x97\x4a\xc5\x80\x24\xdf\xca\xe1\x97\xe4\x6b\x98\xc4\xd9\xd9\x8a\x65\xe7\x6c\x96\x9d\x5d\xaf\xb2\xe7\x3c\xca\x4e\x43\x91\x9d\xae\x62\x4c\x06\x17\x29\x1e\x20\x2d\x39\xc4\x17\x29\xfa\x2d\x8c\xb3\xe7\xec\x32\x1b\x86\x3c\x7b\x72\xc3\xb3\x61\x78\x97\xfd\xb6\x8a\xb3\xdf\x56\x8b\xec\xc9\xea\x2a\x3b\x65\x37\xd9\xdb\xa9\xc8\xde\x24\x9f\xb3\x13\x36\x95\x45\xe4\x9a\x24\x9d\xb5\xfa\xbc\x98\xe1\x40\xfd\x48\xf2\xa6\xbe\xf0\xe0\x22\x95\x98\xbc\x3f\xcb\x5e\x0c\xcf\xb2\xd1\xb3\xa7\xc3\x77\xe3\xd1\xe9\xc9\xf8\x0c\x67\x68\xf4\xf1\xeb\x58\xfe\x28\x5a\xd1\x59\x63\xfc\xd3\x01\x30\x97\xcf\x04\xbd\x7f\x7f\x16\xb8\xe4\xc5\x50\xfe\x7d\x76\x72\x16\x34\xfd\x8e\x4b\x9e\x9d\x9e\x05\xcd\xb6\xeb\x92\xa7\x27\xe6\x03\x62\x7a\x2e\x19\x9e\x98\x0f\x19\xd3\xf1\x5d\xf2\xee\xc4\x7c\x40\xcc\xa1\x6b\x89\xf2\xbe\x6c\x4e\x7f\x7a\xab\x87\x45\xf6\xa6\x65\xba\x83\x46\xff\xc2\xe3\xc7\x17\x38\x1b\x5d\xc4\x17\x02\xac\x68\x6a\xb6\x6d\x0f\xba\x48\x2f\xd2\x06\xde\x8a\xff\x97\x8c\x7f\x7c\xb0\x61\x08\x24\xe3\x7e\x3a\x50\x2a\x87\xd1\x1c\x19\x35\x2f\x5a\xc5\xb1\x18\xc7\xbc\xa3\xad\x23\xc4\x86\x3d\x42\xae\x92\x76\x4c\x3b\x47\x03\x9f\xb5\x1b\x22\x10\x60\x62\x02\x26\x07\x32\x04\xcc\xe9\x9f\xb9\xee\x38\x12\x98\xe4\x30\xb8\x84\x51\x04\xe3\x72\x30\x92\xc1\xc2\x4e\xaf\x5e\xd7\xd7\xf2\x79\x86\x44\x66\xc0\x24\x5c\xa3\x68\xd4\x91\xec\x6d\x5b\xfe\xf1\xe5\x9f\xae\xfc\xd3\x93\x7f\xfa\x63\x68\x2f\xa7\x09\x89\x29\x23\x48\xd0\x48\x92\x82\x7a\xfd\x83\x8d\xd3\x3e\xb5\x4e\x74\x92\x3a\xf0\x91\x27\xff\xf8\x63\x9c\x33\x42\xc0\x8e\xc4\x55\xec\x08\xd9\x47\x71\x69\x01\x99\xc5\xb5\x27\x19\x1e\x9a\x10\xed\x53\x64\xf3\x86\x24\x9a\xa3\x5c\xa8\xf2\x4c\x68\xf7\x86\xb9\x30\xd1\xd5\xfe\xbc\x37\xba\x2b\xa2\xf1\x23\xcf\x35\x5e\x13\x50\xdc\x8c\xf0\x81\xe7\xba\x8f\x7b\x6e\x23\x92\x3d\x71\x28\x5b\x7d\x24\xff\x78\xee\x58\x33\xa9\x5f\x4b\xee\xc5\x24\x52\x2a\xe1\x47\x18\x39\x20\xbb\xda\xc1\x11\xdd\x77\xab\x08\x40\x61\xbc\x24\xb4\x67\x23\x49\x42\xf6\x29\xe5\xad\x57\xa7\x6f\x27\x87\x3d\xd7\xc3\x76\xe4\x1f\xcf\x9f\x4e\x24\x38\x7c\x0f\xfd\x34\x1a\xab\x4a\xc0\x1d\x11\xdd\x57\xed\x17\xf6\x99\x95\x4c\xc9\x9c\x3a\x4e\x03\xb6\x8a\x19\x9d\x1b\x89\xd0\x8d\xf6\x95\x11\xd1\xbf\x00\x3a\xc9\x8f\x8e\x38\x37\x5d\xcd\xb2\xd1\x58\x9f\x36\x22\xdb\x07\x6c\x02\x47\x0b\x82\x62\x8a\xe6\x3a\xf3\x82\xa1\x84\x30\x0c\x45\xf0\xc8\x05\x93\x7c\xf7\x18\x85\x74\x5e\x5c\x56\xcd\xf3\xd9\x13\xe3\x5c\x34\x55\xaf\x43\x03\x2c\xe7\x54\xc6\xc1\x34\x99\xcb\xc2\x20\x85\xb2\x4b\x36\x72\x17\xd7\xe4\xa6\x51\xf8\xbb\x26\xbf\x8e\x92\xf1\x00\xc5\x03\xbb\x3f\xbc\xc0\x02\xae\xbd\x1d\x19\x9d\x94\x94\x26\x64\x9a\xcb\x95\xd1\x8a\xc6\xb8\x5e\x5f\xa0\x39\x23\x29\xae\xd7\xe7\x6c\x94\x8e\xd1\x8a\x4c\x5b\x93\x90\x4c\x49\xaa\xcc\x51\x8c\x7f\x25\xb9\x93\xec\x84\xbc\x07\x29\x25\xb7\x4b\x74\xd6\xbc\x21\xee\xf1\xfc\x1b\x6d\x9e\xe3\xfc\xb0\x74\x4c\x3d\xbf\x5e\xdf\x77\x8d\x00\x4c\xdf\x4c\xca\x23\x50\x71\x24\x43\x76\x92\x7e\x5f\x40\xcf\xba\x0d\xbf\x57\x70\x3a\x33\x22\x3d\x9d\xa5\xb8\x1d\x2e\x6e\x8a\x8b\xc3\x5a\xe5\xd5\xe4\x5e\xc9\xf1\x18\x1f\x88\xc0\x9c\x74\x0c\x00\x89\xc9\xa0\x1c\x04\xe5\xf7\x20\xf7\x8f\x13\xa5\xef\x86\xf5\x3a\x42\xb1\xfe\x56\xbe\x02\xc4\xb1\x6c\x2f\x12\x0d\xea\xf9\x98\xc4\x59\xe6\xf9\xfb\x94\x8a\x2c\x93\xbc\x02\x06\x05\x8f\xc2\xd9\x4f\x8e\x25\xb1\x50\xc7\x04\xa4\x52\x64\x5e\xec\xb5\xb0\x6f\x28\xc1\x38\x70\x50\xc5\x6a\x7b\x6b\xed\x28\x0b\x32\x27\x4b\x72\xa7\x98\xa9\x89\xfc\x99\x5b\xef\x36\x68\xf7\x42\xf9\x57\x96\x4d\x41\x3e\xb0\x50\xa7\x3c\x4a\xe9\x9d\x71\x29\x4e\x29\x9d\xd4\xeb\x8e\x23\xe3\x06\x37\xe8\xde\xf2\xa2\xe6\xae\x71\xb0\x6d\xb9\xa0\xcf\x77\x11\xbd\xb3\x04\x37\x37\x9c\xc1\xe0\xa1\x3b\x8c\xc9\x25\xba\xc3\xe0\x07\xf6\x0a\xcd\x85\x8c\x09\x50\x2a\xa3\x80\x44\xdd\x05\x31\x9a\xe0\xc1\x4e\xa1\xd5\x9e\xf6\x09\x2f\x5b\x64\x96\x89\x6e\x98\x62\x08\x6d\x9f\x63\xfa\xa4\xbe\xe1\x8f\x48\x93\x08\xf7\xe7\xe8\xd8\x82\x02\x9e\xe8\x13\x2a\x79\xc9\xcf\xca\x1f\x48\x71\xe2\x55\x07\x64\x39\x94\xe6\xbb\x88\xc5\x44\x48\xfe\x48\x42\x1a\x45\x63\xc9\x15\x09\x4c\x66\xca\x34\x35\x69\x80\x87\xa7\xf2\xba\x21\x49\x83\x7a\xee\x63\xe5\xfe\x6b\xdb\x65\x19\x81\x84\x74\x9a\x70\x46\x13\xa2\xb9\xc0\x38\xcb\x92\xe3\x58\x59\xbb\x26\x84\x53\x81\xf1\xde\x14\x31\xc2\xb3\x0c\x26\x11\x0e\x26\x03\x20\xb6\x41\x82\x16\x20\xc8\xc3\xad\x49\x84\x07\xa2\xd4\x78\x23\xa3\x0c\x52\xb4\xd8\x4c\x5b\x18\x47\x7e\x32\x7d\x6b\x50\x17\x03\x34\xa7\xc2\x4c\x0e\xb4\xa4\x97\x9a\x57\x99\xcb\x6a\xf0\x00\x4d\x84\x5c\xe8\xe0\x51\x68\x9e\xef\x05\xf5\x3a\xd2\x37\x61\x45\x1c\xf9\xf2\xdd\x39\xb9\x7e\x76\xe4\x39\x4f\x96\x30\xe5\x9e\x6b\x9f\xee\x68\x8e\x31\xc6\xc1\xbc\xd4\x80\xc6\x12\x58\xfb\x20\x96\x6d\x93\x03\x15\xd2\x15\x5a\x14\xe4\xa1\x42\xe7\x76\xcb\xa8\x72\x06\x66\x36\x41\x24\x41\xd8\xf9\xcb\x12\x60\x41\x4f\x60\x86\x63\xb5\xad\xaf\xd0\x48\x28\xc9\x9c\x36\xbc\x22\xa2\x35\x0b\xef\xb2\x4c\x80\x81\x0d\x11\xa0\x2c\x24\x13\x61\x2f\x25\x42\x6b\x06\x41\xcc\x62\x11\xa9\xd0\xb8\x0a\x41\x56\xaf\x57\xe1\xc8\x30\x38\x2b\x08\xc2\x8a\x61\xc4\xc1\xee\x6e\x83\x89\x69\x5c\x8c\xcd\x40\x56\x86\xc1\x71\x75\x4e\x42\x72\x37\x8d\x85\xb4\x8a\xac\xe8\xbd\xf1\x8e\xbd\x0f\x17\x07\xf5\x3a\x9c\x98\x78\x96\xa1\x84\x72\x52\x10\x69\x14\x21\x86\xcb\x02\xe7\x68\x8e\xb4\xfb\x98\x2b\x26\x2c\x07\x96\x6f\xc2\x25\x4b\x73\x0e\xa7\xf0\xde\x53\x91\x4b\xae\x6a\xed\x13\xc5\x32\x32\x54\xfe\x59\x80\x8b\xd8\x78\x35\xa5\xf0\x5a\xe7\xe5\x68\xaf\xa1\xd9\x31\xa0\xe7\x5a\x56\xbc\xe0\xcc\x32\xc7\x7f\xb5\xed\x88\x6e\xdf\x25\xb9\x38\x9f\xae\x8c\xd7\xb7\x50\x46\x2e\x28\x87\x12\x94\xc9\x1f\xb9\x3c\x56\xb9\x4f\xb9\x84\x68\x81\x1e\x90\xb8\xb7\x02\xad\xe4\x8c\xb5\x45\x60\x69\x2b\x9c\xcd\x90\xa7\xb4\xb3\xd3\x42\xb6\x68\x70\x49\x8b\x41\xf9\x24\x1e\x74\xa7\xe9\xe1\xf5\xce\x21\xa7\xa7\x48\x39\xee\xac\xdd\xf0\xe4\x73\x34\x63\xb3\x5a\x94\xc2\xa5\x77\x14\xd7\xc2\x1a\x67\xd3\xe4\x2a\x8e\xbe\xb2\x59\xed\x8f\xe7\x4f\x25\x0b\x56\x4b\x78\xed\xd5\xe9\xdb\xda\x1c\xe8\xa7\xb9\x30\x86\x8b\x75\xc1\x57\xfa\x7a\x2b\x5c\x2c\xd2\x9a\x04\x5f\x13\x49\xed\xcf\x54\xcd\x3c\x4c\x6a\xb7\xd7\xd1\xf4\xda\x54\xc0\xd9\x22\x0a\x2f\x17\xac\x16\x4e\x79\x92\xa6\xb5\x70\xb1\xa8\x5d\xf2\xe4\x36\x65\x3c\xad\x85\xf1\xac\xf6\x99\xf1\x34\x4a\xe2\xb4\x55\x7b\x93\xc4\xa6\xfe\x03\x59\xb9\x5c\x36\x1a\x83\xb4\x16\x72\x56\x9b\x45\xe9\x34\x59\xf1\xf0\x8a\xcd\xa0\xe8\x6d\x24\x81\xb1\x1a\x67\xcb\xe4\xb3\x6c\x53\x5c\x0b\xe3\xda\xea\x66\x9a\x2c\xa3\xf8\xaa\xb6\x0c\xff\x4c\xb8\x44\x80\x85\x29\x6b\xd5\xde\xc1\x6f\x8d\xb3\x39\xe3\x12\xe3\xef\xbb\xaa\xfe\x33\x6d\x4a\x3c\xb6\x2e\xa9\x4b\xeb\xb4\xbc\xb9\x48\xa2\xd0\xb0\x04\xc1\x4e\xcd\x18\xcd\x29\x8b\x6d\xc3\xfc\xda\xee\x5e\xd6\xa4\xe0\x7f\x4b\xf1\x30\xd9\xcf\x84\x1c\x41\x85\x29\xc2\x92\x82\xc8\xee\x35\x6e\x9b\xd8\x8c\xd4\x2c\xdd\x80\x65\xf8\xc5\xb8\x73\x6f\x7d\x67\x23\x97\x51\xdc\x5c\x86\x5f\x0e\x9c\x6d\xaf\x01\x9f\x44\xb5\xfd\x51\xe9\xdd\x0c\xcb\xbc\xba\x64\xb2\x0d\xe6\xbf\x03\xf9\x27\x60\xc1\x0d\x38\xcf\x79\xba\xd1\x14\x89\xec\xee\xa6\xc8\x86\xfe\x3f\xd1\x14\x99\x76\xcc\x4a\x4d\x29\xce\xf0\x43\x5b\x71\x45\x39\xb9\x84\xfb\xc9\x9c\x25\x8e\x91\xd0\xe7\x06\x41\xe1\x8b\xe4\x8f\x25\x19\xe2\xf7\x49\x20\xed\x0e\x0c\x72\x90\x88\x7a\x3f\x47\xc5\x43\x0f\x8d\x46\x84\xc5\x28\x1a\x97\x2c\xd9\x65\xc4\x88\x8d\x11\xd7\xfe\xf6\x47\xd1\xd8\x72\xb3\x05\xc6\xb4\x82\x8e\x8c\x27\x85\xbf\x56\x21\x17\x8c\xc3\x43\x4f\xca\x3c\x59\x5b\xf5\x28\xcb\x0f\xad\x7f\x6a\x94\xac\x1c\xb5\x1f\x41\x4c\xbe\x3b\xd9\x6f\x43\xbd\xb3\x14\x89\x4e\x40\x29\x93\xaa\xfd\x2f\xcb\x5c\xf0\x52\xab\xeb\x93\xc1\x88\xea\x3d\x51\x06\x12\xaa\xec\x30\xe4\xce\xa8\x6d\x49\x64\x74\x48\xf5\x7e\xe9\x92\x94\xaa\xcd\x52\x7e\xaf\xa8\xd9\x31\x65\x68\x41\xcd\xb6\x29\x43\x53\x5a\xda\x3b\xb3\xcc\xd5\xda\xf0\xe6\x10\x5a\xa9\x6c\x90\x6f\x19\x70\x89\xfc\x56\x1b\xfa\xfd\x21\x88\xc0\xb9\x53\xc9\x91\x18\xd7\xeb\xda\xd2\x7e\x24\xc6\xd6\x56\x52\xbc\x76\xb4\xef\x69\x1f\xaa\x7f\x58\xa3\x14\xc3\x5e\x34\xfa\x43\x8c\xe2\xb1\x12\xb3\xf1\xa2\x2c\x6c\xe2\xcf\x17\x09\x28\x2b\xe8\x2c\xe0\xa7\x31\x0f\x81\x1b\xc9\x7d\xd7\x3c\x29\x22\x77\x2c\x91\x1b\x43\x16\x2d\x4d\x69\x63\xda\xf0\x58\xfb\xf1\xa2\xd1\x63\x9d\xc7\x2b\xf8\x4e\x1f\xf7\xe4\xb1\xdf\x78\xef\x0c\xef\x52\xda\x08\x1b\xfd\xc7\x49\xc9\x98\x92\x36\xa2\x46\xfb\x71\xdc\xf0\xfc\xc7\x3c\xcf\x2a\x42\x7a\xaf\xdf\xe3\x32\x87\x82\x69\xfe\xf4\xcc\xe4\x72\x75\x79\xb9\x28\xf9\x3b\xfa\x53\xec\xf2\xce\xf7\xce\x32\x47\x3c\x11\x1b\x6e\x37\x9b\xde\x63\xb0\xd2\xe3\xc9\x2a\x9e\xa1\xa6\xf7\x98\xe1\xc0\x8a\xb0\x0f\x31\x6f\xc4\x4e\x6d\x7a\xcb\x9b\xc9\x4a\x4c\xb5\x11\xb1\x9c\x7e\x4e\xc3\x29\xee\xd4\x5c\xd8\xd2\x9b\x4c\xc6\x37\x1d\x4c\x78\xe3\x35\xfa\xef\xff\x46\xec\xa0\xe7\x82\x76\xb6\x80\x30\x7b\xd4\x73\x41\x2f\x7b\xfd\x46\x20\xe7\xa3\x43\x9c\xc0\xc1\x04\xbe\x3f\x82\xef\x1c\xd0\x7e\xfe\xe8\x90\x44\xfb\x1b\xf9\xa8\xbf\x41\xe3\x58\x66\xf9\xf8\xb1\x5a\x73\x59\xf3\x0a\xe0\xe7\x14\xa4\x3d\xaf\x05\x4a\x18\xc9\xed\x78\x5e\x09\x7a\xa0\xef\x6a\xd4\x2d\xcf\xc1\x95\x25\x14\x7f\x6d\x53\x14\x8a\x04\x88\x5a\xb5\x38\x82\xe1\xbd\x42\xd7\x8c\x63\xeb\xd8\xaa\x25\x44\x08\xf1\x11\xcf\xdf\xb1\x1b\x83\xd8\xa2\x51\x94\x7f\x25\xe7\xf9\xc8\x69\x82\x6a\xbb\x24\x34\x3d\xf7\x71\x3c\xf2\xc6\x8d\x5b\x14\x8f\xfc\x82\x82\x48\x06\x29\x1a\xb8\x81\xd3\x80\xc7\x5a\x46\xee\x78\x10\x05\x4d\xeb\x75\xb0\xe7\x16\x92\x31\x89\x8a\xa7\x53\xb4\xad\x38\x02\x5f\xd5\x8b\x24\x66\xea\x09\xba\x4b\xe0\xbe\x24\x23\x37\x60\xc5\x31\x23\x90\x7c\x0d\xb6\x8e\x1d\xcd\xb8\x08\x90\x58\x8b\xa5\xc0\xdd\x2c\x04\xf2\xb4\x46\xb4\x65\x4a\x0e\x6c\x10\x89\x0d\x4c\x98\xca\xf6\xbc\xfd\x6a\xcf\x48\xaf\xfb\xb8\x69\xcf\x3e\xcb\xb1\xed\xd7\x24\x36\x20\xf1\x81\xd7\xb5\x20\xbc\x14\xb9\x0d\xc0\xfe\xfe\xe6\x86\x61\x88\x0f\x1c\x12\x5d\xf3\xc4\x8f\x76\xfb\xbb\x2e\xe3\xba\xbd\xc9\xff\x0a\xb2\xf2\x8b\x66\x76\xd1\xc0\x03\x34\x08\xd0\xc5\xec\x31\x1e\xb5\x6a\x63\x90\x8d\x37\xf0\x45\x00\x3f\x68\x10\x98\xaf\x8b\x96\xcc\xa2\x6e\xf5\xde\x43\x69\x55\xf8\x9d\x2c\x3d\x6a\x36\xc6\x83\x91\xdb\x3c\x22\xad\xf1\x63\xfc\x41\x81\x2c\x47\x0e\xab\x22\xcf\xab\x22\x4f\x20\xf2\x6c\x3b\xe1\xe5\x77\xc3\x3d\x55\x88\x16\x73\xfc\x5c\x6c\x38\x87\x26\x60\x0e\xac\xb4\x52\xf5\x18\x01\xa1\x19\x24\xf4\x7e\x99\x06\xac\x4c\x02\xc9\x2c\x50\xca\x06\x29\x19\x42\x1a\x90\xb7\x75\x10\x6a\x4b\x63\x49\xd0\x06\x60\xf1\xce\x82\xa4\x55\x22\x9e\x0c\x83\x7a\x85\x91\xb3\xcb\x83\x2b\x50\x09\x4a\x69\x3a\xf2\xc6\x83\xa6\x17\x78\x24\xa1\xf7\x77\x81\x4b\x66\xc1\x2d\x4a\x47\x9f\xd9\x18\x3f\xe6\xe4\x1a\x02\x77\x2a\xb0\x84\xc0\x95\x0a\xa4\x10\xb8\xd4\x29\x32\x74\x22\x10\x50\x65\xd0\xaf\xc2\x8f\xf9\x1a\x2a\x7d\xff\x1d\x95\xfe\x25\x50\x3a\xf2\xc7\x84\x63\x32\x54\x81\x36\x04\x6e\x55\xa0\x03\x81\x99\x0a\x74\x21\x70\xad\x02\x3d\x08\x2c\x55\xa0\x0f\x81\x54\x05\x0e\x65\x60\xad\xb4\x59\x28\x4d\x64\x8f\xae\x83\x2d\x17\xb7\x49\xbd\x8e\x9c\x39\x4f\x96\x4e\x14\xd7\x92\x2c\x73\x44\x02\x5f\xb8\xec\x14\xb1\x42\x49\xb7\xb4\x0a\xca\x4e\x06\x9f\x0b\xf0\xb2\x47\x64\x9e\x5f\xd9\x3c\xe1\x0c\x09\x3c\xe0\xf4\x1f\x6a\xf8\x03\x84\xe0\x1b\x9e\x4e\x2a\x0f\x53\x93\x97\xc2\x84\x6b\x7f\x09\x90\x00\x5f\x98\x70\x1c\xdc\xdb\x99\x02\xd7\x28\x6a\xbb\xeb\x35\xfa\x24\x50\xd2\x92\x0d\xc2\x04\x3e\x45\x82\x31\x81\xb9\x81\x5b\xcb\x94\x46\x65\xf8\x49\x6b\x28\xa3\x34\xe4\x18\x18\xfa\x77\x02\x25\x98\xc0\x34\xac\xd7\xe1\x89\x1d\xbd\x41\xc2\x03\x08\xf1\xb6\x0c\x0d\x13\xcb\xa1\xd8\x5f\x25\x32\x6e\x8e\xf1\x9a\x03\x28\xd4\xb4\x89\x43\x9c\x96\x93\x9b\xf4\x23\xe3\xa1\x68\xe0\x06\x1c\x3f\xb6\x76\xd4\x7f\x94\xe0\xe5\xe7\xf1\x5a\xde\x33\xc2\xf8\xc4\x69\xb2\xc2\x3b\x8e\xff\x18\x09\x63\xe4\x9e\xbb\x37\x22\xcc\x90\x66\x38\x81\x1a\x08\xe0\xb3\xa6\x15\xa5\x4f\xe6\x82\x71\x90\x5e\x35\xf3\xde\x26\xe5\xf1\xa0\x0d\xd1\x6c\x3c\x00\xc5\x76\x84\xfd\x41\x54\x7b\x90\x2a\x0c\x6b\xcb\xe2\x57\x1a\x1b\xf7\x46\x8d\x58\x32\xb7\x9f\x90\x20\xc5\xa1\x01\x5e\xbe\x44\x37\x8c\x47\xc9\x8c\xd4\xd4\x63\x21\xb8\x7c\x8c\xc8\x8f\x7b\xc5\x69\x22\x2f\xa8\x0a\x90\x9a\x02\x80\x5b\x3f\xa0\xb8\x1c\xce\x66\xcd\x28\xfe\xcc\xb8\x60\xb3\xe6\x4d\xc8\xc3\x65\x85\xf6\x72\x04\xd2\x90\x98\xc4\x34\xc2\xe4\x85\xb6\xfe\x3e\x17\x72\xb9\x6f\x0a\xd4\xf8\xa0\xc1\x03\xd9\x09\xc6\xed\xba\xe5\x27\xe0\x85\x3a\xdc\x17\x3e\x18\xa8\xd8\xa0\x80\x21\x3d\x11\x48\x28\x22\x88\x49\xaa\x43\x7a\x02\xef\x95\x16\x25\x8a\xb4\x4e\x54\x94\x65\x11\x49\xeb\x75\x70\x4a\x03\xee\xb6\x8c\xa3\x95\x46\xfa\x38\xc6\x24\xac\xd7\xc1\x71\x96\x73\x02\x36\x1f\x67\xc5\x37\x6e\x84\x32\x43\x52\x28\xfd\xc0\xa6\xcc\xca\x9b\x72\x22\xf3\x44\xf5\xfa\xc6\xce\xcc\x48\x98\x65\x29\xc6\xeb\x73\xd1\x9a\xc7\xf4\x9d\xe5\xa0\x99\x9c\x0b\x23\xae\xad\x70\x80\x7a\x2e\x40\x58\xab\xb6\xc8\xbf\x0b\xfa\x41\x20\x8f\x38\xe1\x6c\xe6\x60\xf2\x13\x04\x9b\x1e\x71\xd2\xd5\xa5\xe0\xe1\x54\xd8\x6e\x77\x7e\x2f\x2d\x96\xea\x55\xd0\x40\x15\x2b\x46\xae\xfd\x8d\x79\xad\xcf\x4c\x69\xee\x75\xb4\x89\x78\x03\x89\x66\x7c\xec\x0e\xe4\x0f\x3e\x40\x71\x73\xa3\x8c\xc4\xcb\x94\xc2\x81\xce\xb5\x91\xa7\x61\xe5\x69\xc6\x18\xe3\x2c\xb3\x7c\x12\xff\xd3\xd2\xd2\xb6\xae\xe7\xd5\xcb\x39\x03\x9b\x5d\x57\x5a\xd9\x41\xa1\xc1\x09\x0a\xde\xd8\x3c\x9e\x98\x3f\x24\xa0\x9d\xec\xac\xb9\x79\xde\x4e\x0b\xc8\x2d\x65\x9e\x33\xa3\x68\xf2\xd1\x21\x1b\xd9\xde\x8b\x69\x65\xce\xd1\xc7\xb1\x7a\xce\xe8\x63\xf9\x70\xbf\x08\xe3\x2b\xb4\xb5\x30\x5f\xa9\x03\x3d\x29\x2f\x4d\xdb\x2e\xb6\x26\x92\x1a\xd8\x5e\x5c\xb3\x9a\x84\xb1\x0a\xaf\x98\xb6\x49\x58\x71\x70\x53\xdd\xaa\xbd\xdf\x2e\x8c\x6c\xb3\x07\x53\x2e\xdd\x10\xd5\xec\xe8\x47\xbb\xfa\xc0\x8a\x51\x86\xf7\x85\x91\xaf\xd8\x30\x8c\xd5\x3d\x0b\x87\x6d\x26\x67\x59\xcf\xf7\xfb\x87\xee\x21\xb3\xbc\xc0\x0a\x6e\x13\x3f\xc4\x1e\x89\x86\xc0\x8f\x2c\xb2\xce\xf9\x86\x8a\xb2\xad\x12\xb8\xad\x0f\x88\x9b\x8c\x07\x65\xdd\x3e\x8b\x7f\xb6\xde\x88\x7a\x08\xac\xf1\x2e\xb3\x01\xb6\x88\x86\x28\xeb\x49\x28\x6e\x0e\x64\x2e\x19\x31\x62\x24\xa7\x63\xe2\x96\x5e\x1f\x4a\xf8\x96\xeb\x98\x32\x65\x67\x83\xf7\xda\xc1\x93\xcc\x01\xeb\x30\x40\x28\xa1\xe7\xc6\x8f\x0c\x3e\x56\x7a\xdd\x09\xae\xf4\x44\xaa\x28\x61\xc9\x43\x0d\x09\xe9\x57\x86\x12\x25\x7c\x77\x49\x62\xe9\xc2\xee\x6d\xb9\xac\x0c\xb7\xdd\xf1\x10\xcb\x99\x5c\x58\x56\x54\xd5\x69\xe0\x21\x2b\xdc\x54\x55\x95\xe4\xda\x7a\x2d\xa5\x40\x08\xaf\x95\x77\xcb\xab\xab\x87\xad\xaa\x6f\x19\xfb\xf4\x61\xdb\x8f\xe6\x8b\x17\x0f\x17\xd3\x42\x93\x52\xc9\x88\x23\xe7\xea\x4a\x56\xe8\x18\xa8\x4e\x11\x5b\x11\xfd\xe2\x85\xac\xc6\xb1\x60\x59\x09\xdb\x29\xda\x71\x88\x72\x0e\x29\x1b\x66\xbb\x0e\xd1\xb1\x2f\x5e\x14\xde\x60\x3e\x18\x7f\x9d\xaf\x36\x72\x69\x87\x21\x2f\x0a\x17\x9e\x57\xc5\xa7\xac\x38\xb7\x4c\x96\x58\xe7\x01\x85\x54\xe1\xda\x53\x35\xaa\x08\x6b\xac\x0b\x57\x9f\xba\xd9\x2a\x02\xfc\x6c\xe8\x7e\x30\xfd\xa1\x9b\xa9\x0a\x7e\xd3\xcb\x8c\x5f\x78\x99\xd1\xc0\x54\x83\x37\x0a\xc2\x14\x15\xa3\xe8\x01\xef\x9e\xef\x91\xf3\x3b\x38\xa9\xf9\x3d\xb1\x84\x72\xd0\x9d\x85\x84\xee\x77\xd5\x93\x79\x44\x5f\x35\xea\x77\x87\xfc\x43\x19\xd9\xfe\xbe\xed\x1f\x74\xc9\xc6\xb4\xfd\x18\x29\x0f\x7e\xba\xa6\x13\x87\x8c\x9c\x93\x13\xe5\xd6\xe7\x44\x79\xc5\x11\xcc\x78\x85\x01\x39\xdf\x89\xf1\xf8\x22\x43\x47\xaa\x9e\x93\xdc\x8a\x5c\x96\xcd\x07\xe1\x24\xd9\xe1\x58\x85\x0d\x84\xd6\xfb\xde\xb2\x08\xcd\x32\xd1\x9a\x24\xb6\x89\xe8\xce\xac\xaf\x59\x1c\xb1\x58\x18\x7b\xee\x13\x89\xdc\x89\x33\x26\x9f\xb5\x47\xd6\xed\xea\x05\xe8\x90\xdf\x22\xe3\x91\xfc\x77\x50\xcf\xd0\x12\x96\x90\x83\x19\xb0\xe2\x63\xf6\x5d\xbc\x27\xfb\xe3\x44\xf7\x88\xfc\x6d\xcb\x3e\x39\xd1\xbd\xa2\x29\x46\xee\x30\x47\x07\x21\x47\xee\x13\xc7\x44\x76\x4c\xe7\x9c\x38\xe4\xb7\xfc\xfb\xc4\x21\x2f\x0c\xee\x27\x0a\x7b\xc0\xbf\x42\x3a\x54\x68\xee\x17\xae\x8b\x96\xf0\x1a\xe6\xd2\xb8\x6d\xd0\x82\x58\xe5\x4f\xd2\x08\x65\x97\xda\xa1\xa4\x0e\x7b\x1a\x91\x65\x3e\x5e\xb2\x3c\x8c\x17\xa0\xb1\x94\x45\x96\xce\x98\x5c\x31\xd5\x27\xa9\xea\x93\xa1\x31\x9d\xdd\xf7\xa0\x5b\x52\x59\x75\x9a\x9a\xaa\xb5\xb0\x17\xaa\xce\xc5\xc0\xa9\xaa\xda\x84\x3d\xed\xde\x29\xcd\xab\x96\xe5\x8b\xaa\x53\x59\x24\x75\xc6\xe4\x52\x57\xbd\xe2\x64\xa1\x6a\x3f\x35\x56\xbd\xb2\xf6\x79\xc2\xd1\x7b\xe4\x9c\xee\x70\xb4\xf0\xdf\xff\x6d\x3c\x2b\xe4\x7c\x2f\x02\x05\x27\x9c\x93\xcb\xd3\xd3\x5d\xe4\x72\x57\x61\xbb\xec\x29\xcc\x03\xb7\x2c\xe6\xb6\x92\x4f\xb5\x47\xe3\x6d\x5a\xec\xb9\x8f\xb7\xa1\xdb\x90\x65\xd9\xee\xae\xb2\xdf\x2e\x7c\xea\x90\xde\x8e\xd2\xac\xfd\xed\xd2\xa7\x0e\xe9\xef\x2a\xde\xf9\x8e\xe2\xa7\x0e\x39\xdc\x55\xbe\xfb\x3d\xe5\x4f\x1d\x72\xb4\x0b\x40\xaf\x1a\x00\x4c\xf5\x62\x18\x88\xb3\x4c\xcd\x84\xb7\x62\xbd\x9e\x9a\x70\xa7\x0e\xf9\x4d\xd2\x43\xf8\x86\xc0\x07\x13\x80\xd0\x0b\x4c\x56\x9c\xaa\x41\xfc\x79\x65\x24\xa2\xc7\xf4\xe8\xe7\x15\x6f\x50\xe7\xd4\xc1\x2b\x86\x56\x9c\x70\x66\x71\x78\x53\x6e\x48\xcb\x04\x48\x8b\xec\x6b\xe4\xb8\x2d\xa7\x01\x37\xe4\x09\x47\x00\x73\x07\xc0\x6b\x00\x38\xe5\x6a\xca\xcf\xcd\x6a\x2b\xce\x6c\xf9\x92\xfb\xaa\x7d\x75\x7d\x4d\x62\xf6\xe4\xf2\x52\x7b\x68\xf9\x6a\x47\xbf\x09\x97\xcc\x51\x90\xae\x39\xbd\x2a\x4e\x4c\x05\xb6\x33\x6e\x8b\xd8\xd7\xd7\x5c\x1e\x2b\xe8\xdf\x05\xb9\xe6\x2d\xe3\xf0\xa0\x42\x70\x13\x53\x96\x65\x60\x32\x15\xd1\xe7\x42\xbf\xb1\x0d\x2f\x02\x71\xf1\x76\x8e\xb4\xeb\xb4\x84\x16\x40\xf4\x9b\x05\xc0\xe8\x44\x38\xcb\x1c\xe3\xbe\xc0\x21\x21\x18\xe2\x9d\x21\x31\x4a\xc6\x78\x20\xff\x5a\x4c\x51\x8c\x03\x88\x2f\x31\x62\xea\x4e\x17\x85\x59\xb6\xed\x12\xc7\x54\x88\xd4\xb5\x05\xf9\x24\x40\xa3\x6e\x0d\x2d\x92\x47\xa7\x8a\x33\xa2\xba\x61\x57\x27\x1b\x99\x6f\x16\xcd\xe7\xd5\x4a\x5e\x46\x75\x68\x43\x74\x6b\x7b\x50\x96\xa9\x28\xa6\x4a\xb8\x2d\x41\xe2\xea\x7c\xe9\x6d\x24\xb7\x9c\x88\xf6\x58\xe7\x31\x8a\xed\xbb\x88\xe6\xe6\xe5\x04\x26\x82\xfe\x89\x04\xc6\xf7\xd3\x30\x65\xea\x42\x2e\x48\xe8\xef\xc2\x74\xd2\x81\xe7\x2b\x8d\xef\x3d\xc8\xa0\x2e\xe8\x4a\x39\xec\x64\xc3\x16\x94\x41\xb4\xed\x2c\x7a\xad\x04\x09\x85\x74\x79\xf6\xf4\x58\x29\x87\xde\x43\xec\x1c\x3d\xd6\xb1\x73\xc0\x8d\xa0\x9d\xde\xee\xb1\xae\x9d\x41\x4e\x93\x22\xbd\x19\xe1\x83\xc3\x5e\xa7\x9c\x05\xae\x18\xcb\x79\x7a\x6e\xe7\x30\xcf\xa4\xcf\x97\x81\xf2\xbc\xd5\x8c\x8d\x2d\x2d\x1f\x24\xc1\x04\x25\x6a\x3c\x59\x3c\x7b\x3b\xa7\x5b\xba\x60\x72\xa8\xf2\x73\x1c\x62\xf4\x4f\x04\x4a\x9a\x25\x62\x21\x4f\x78\x59\xb6\x63\xb8\x65\xac\xbe\x33\xb1\x44\xf7\x83\x98\x07\x9c\x9b\xf1\x65\xa5\x31\x13\x54\x79\x05\xcc\x1d\x3f\x12\x97\x78\xb8\xe9\x55\x8e\xce\x46\x66\xfb\x98\xa1\xa7\x88\x0e\x3c\x6a\x37\xda\x5b\x60\xf4\x1c\x78\x08\x48\xc3\xdb\x2a\xa5\xfa\xfb\xa1\x42\xd6\x89\x46\x63\xa1\x35\x98\x11\x6e\xf4\x37\xa0\x19\x5f\x8e\xdf\x0f\x10\xd9\x27\x14\x00\xda\xf4\xb6\xe1\xc2\xc4\xd1\x5f\x72\x0e\x7e\x2f\xf8\xc6\x66\x73\xd5\x14\x15\x7a\xf8\x2c\x39\x14\x11\x0d\x2a\xa7\x6b\x53\x70\x24\x1a\xc8\x1e\x5e\x37\xe8\x99\x0d\xb0\xb4\x44\x65\xf6\xcd\x31\xd0\x6b\x64\x47\x05\x3d\xd6\x01\xf8\xa4\xc7\x3a\x1b\x25\xcd\xfa\xdb\x51\xd2\x63\x6d\x55\xd2\x63\x6d\xdc\x2c\xde\x5f\xd3\x79\x8d\x6c\x4d\x3c\xec\x2c\x19\x16\x87\x22\xa6\xa5\xd5\xc1\xb2\x0c\xe9\x1b\xd2\x28\x7d\x2f\xa6\x08\x0f\xb6\x25\x39\xc1\x46\x94\x76\x9f\x43\xcf\x8d\xa3\xc9\xbd\x9d\x6e\xcb\x6e\x92\x54\x68\x1a\x2e\xd4\x0a\x9d\xf3\x64\x59\xfd\x38\xfe\xe6\x1d\x19\xdc\x02\x96\x74\x2b\x60\x27\x62\x36\x95\x1d\x9c\x0b\x74\x2f\x12\x90\xc3\x10\x09\x3a\x60\xeb\x5c\xc8\x63\x0b\x67\x30\x6e\x5d\xaf\x96\x61\x1c\x7d\x65\x68\x5f\x94\x04\x37\x95\x0f\xf6\x18\x54\xdf\x24\xb7\x55\xaf\x24\xa8\xcd\x89\x27\x4b\x65\x4e\xcc\x54\x01\x91\xfc\x0f\xb7\x0c\x5a\x04\x6d\x13\xc9\xff\x64\xcb\x44\xf2\x50\xbb\x44\x52\x6a\xd5\x15\x13\x55\x59\xcf\x94\x7b\x7e\x45\x4c\xc7\x4a\xef\x65\xc4\xc6\x5a\x28\x06\x25\x75\xc5\x4f\x44\xc5\x4e\xac\xfc\x5a\x17\xb6\xf8\xaa\x80\xba\x4d\xa8\xba\x40\xa2\x97\x70\x1b\xac\xee\x6b\x8d\x9a\xde\xe6\xee\x9c\x65\xfb\xdc\xea\xc3\x7a\x1d\x6d\x92\x78\xa4\xb6\xd7\x0d\xda\xaf\xb0\x2f\x16\xde\x2f\xdc\xba\x75\xb6\xbe\xd5\x23\x05\x46\x2e\x6b\x98\x20\x61\xdf\x49\xeb\x76\xa8\xfb\xab\xff\xeb\x0d\x39\xb6\x1b\x52\x42\x1e\x76\xca\x12\xea\x76\xde\xa2\x19\xe2\x96\xb1\x78\xcb\xd8\xc7\xf8\x38\xb5\xdb\x42\x12\x7a\xa9\x1e\x30\xfa\x24\x8a\x57\xfc\xf6\xf7\xd1\xe6\xf4\x8f\xec\x40\xb2\xd1\x4c\x04\x8d\x8b\x69\x9c\x65\x0e\xc2\x8e\x3c\xa6\x0f\x34\x00\x75\xd3\x14\x11\x8e\x03\xd3\x5d\xfa\x9a\x50\xc6\x41\x69\xac\x14\x10\xbc\xbc\x8c\xce\x90\xd8\x85\x14\x1c\x19\x65\x9a\x79\x1a\x2e\x2b\xc7\x8a\xc4\xdf\x3b\x5a\xf1\xff\xc4\x68\x49\xdc\xad\xf1\x42\xdc\x0e\x92\x6f\xce\x3d\x78\x0d\x8c\x1f\xd3\x6f\x8c\x73\xa9\xd5\x6f\x79\xd5\x8a\x2b\xd3\x2d\x99\x0f\xe2\x35\x17\x6e\x7a\x10\x5e\x93\xb7\x41\x55\x4e\xfa\x6f\xc1\xd2\x23\x64\x01\xfb\xc7\x8e\x0b\x9e\x99\xc5\xb8\x2f\xc2\xf8\x8a\x7e\x84\xd3\x8b\xbe\xb1\xf8\xa7\x15\x90\x84\x8f\xfe\x06\x11\xcb\xf0\x0b\x7d\xaa\xbe\xa2\x98\x9e\xc1\xd7\x4d\xc8\xd3\x28\xbe\x7a\xbe\x08\xaf\xd2\x8a\x7a\xe0\xfd\x4c\x4d\x9f\x54\x6d\x25\x2d\x0c\xe3\xc3\x69\xeb\x52\x9c\xe1\x42\xe5\x6b\xdb\x00\x4e\x3b\xa3\xcd\x5f\xda\x67\x58\xdb\xbb\xdc\xaf\xe2\x48\x04\x9c\xdc\xf0\x28\xe1\x91\xb8\x0b\xde\x8c\xf8\x78\x5d\x6c\xaa\xca\xeb\x6b\xb5\x34\xad\x65\x0a\x35\x45\xfe\xb9\xc6\x44\xac\x11\x03\x55\x3b\x6c\x1e\xef\x36\x7a\x67\x71\xa3\x81\x81\x52\xf3\x51\x3c\x6e\xc9\x9a\xc7\x88\x59\x81\xe2\xb1\x88\x0d\xfa\x6e\x73\xc2\xf0\xbe\x58\x69\xd7\x57\xbd\xa4\xe6\xe4\xff\x8b\xec\x37\x30\xdf\xff\x29\xeb\xbd\x01\xe2\x3b\xd8\xee\x8d\x12\xff\x11\xcb\x8d\xff\x0f\xb0\xdb\xf8\x7f\x82\xd5\xc6\xdf\xc9\x66\x37\xe9\x0f\x72\xd8\xdf\xcd\x5f\x2b\xc8\xc0\x5b\x7f\x37\x67\xad\xcb\x48\xae\xfa\x3f\xe1\xa9\xcd\x75\x32\xfd\x49\x28\xc6\x0a\x5e\x88\xa0\x95\x4a\x88\x7a\xc1\x8c\x72\xef\xff\xc5\xab\x4f\xf9\xd3\x2a\x0c\xd4\x59\x55\x1a\x34\x19\x3e\x8d\xe0\x0b\x62\x2d\x41\xd8\x58\x73\x73\xda\xf6\xe0\xa1\x5a\xe1\xe5\x84\x34\xc8\xeb\xd6\xba\x2f\x05\x0a\x12\x81\x20\xc7\x03\xdc\x22\x06\x2c\xf7\x34\xac\x5d\x28\x06\xcc\xf2\x5c\x6b\x14\x69\x98\xe5\xb9\xb6\xa4\x61\x53\xc2\x36\x45\x78\xad\xd1\x95\x9c\xe8\x0e\xe1\x0c\x30\xa9\xe5\x5d\xd1\xb0\xac\xaf\x4e\xdf\xaa\xb7\x6a\xe9\xa6\xa5\x4d\x35\xd1\xc8\xf5\x1c\x05\x05\x33\x14\x46\x38\x15\x83\xd2\xe6\xb8\x92\x27\x9e\xc0\xea\xa5\x1a\xd7\xfd\xa3\x7d\x56\x1d\x1d\x9b\x88\xc1\x39\xe2\x44\x0c\x4a\x2e\x2f\x46\x67\x63\xdb\x75\xc3\xe8\xe3\xd8\x09\x1e\xca\xf0\xd1\xc1\xc1\x99\x7a\xad\xc3\x7e\x74\x3a\x6f\x18\x1e\x68\xfc\x54\x17\x21\x6c\x27\x22\x1c\xec\xe8\xa0\x46\xcf\xdd\x5a\x42\x8f\xe5\xc4\x2e\x17\x2f\xb4\x88\x3e\x3a\x44\xb6\xc6\xf9\xe8\x60\x1c\x58\xed\xfa\x46\xab\x76\xb5\x49\xf3\xfa\xe9\xcd\xc6\x1c\xdc\x39\x34\xfa\xde\xdf\x9c\x0f\xd0\xc1\xe3\x9a\xf6\x92\x3c\x89\x1a\x4e\xed\xf1\x01\x56\x4a\x02\x8c\xea\x9c\x0e\x11\xd4\x71\xf6\x34\xb0\xd7\x4a\x59\x13\x8e\xae\xb9\xee\xa4\xd5\xf6\x81\x81\xbf\x12\x53\x27\x30\x01\xb8\x64\xfb\x98\xc4\x0c\x80\x7d\xd4\xe2\x52\x4e\x9d\x91\xd3\x60\x8d\xbf\x21\x67\xfc\x37\xb9\x59\x1e\xdb\xaf\x1f\x6a\x45\x4d\x3d\x25\xf4\x0b\x88\xe0\x39\x35\xc8\x5f\x08\x8c\xa8\x68\xfc\x6d\xe4\xe0\xf1\xdf\xaa\x24\x97\xbc\x11\x37\x9c\xca\x8e\x73\x1a\x91\x99\xd9\xbf\x9d\xbe\x7d\xb3\xeb\x45\xdf\xb2\x61\xc1\xe6\x84\x58\x2d\x16\x1a\xc6\xe6\xd2\x28\x43\x31\x13\x5e\x9f\x19\x1d\x16\x3b\xd8\xa0\xe8\xcc\x66\xb3\x1a\x78\x78\x3d\x51\x1e\x5e\x0d\x96\xb5\xd1\x8b\xe1\xd9\xf8\xa3\x19\xe1\x55\x1c\x7d\xa9\x80\x6f\xbd\xa6\x52\x9e\x96\x07\x40\x5b\x65\x49\x1d\xb5\x0b\x39\x9b\x30\x37\x41\x46\x2a\x2c\x6d\xd8\x2c\x73\xb5\x4c\x17\x5c\x49\x26\x31\x30\x77\x5b\xa0\xee\x23\xb0\x31\xd5\xb3\x88\xa8\xb6\xe9\xe0\x9c\xa8\x76\xeb\xa0\x36\x9f\x85\x1d\x28\xb0\x76\x23\xa2\x6c\xb1\x74\x94\x0a\x28\x92\x25\x27\x00\x7d\xc2\x14\x7b\xfa\x9a\x85\x37\xe5\xd7\x13\xed\x27\x39\xad\x09\xa3\xd0\x36\x77\xdc\x55\x67\xe8\x84\x97\xb5\x02\xcc\x86\x6f\x36\xd8\x7c\xf3\x27\xdb\xa7\xfa\xc2\xe1\xd9\xee\xb4\x3b\xc3\x52\xe7\xd7\xea\xdf\x8b\x85\x2e\x62\x6a\xb6\xf9\x06\xf0\xd8\x06\x70\x35\x13\x45\x8b\xcf\xb4\x0a\xbe\x51\xe7\x80\x99\x32\x65\xd1\x02\xa1\xb2\x6c\x12\x1f\xb4\xf5\xe9\x54\x45\xb5\x1f\x23\x78\x0f\xa8\xcc\x7e\xa9\x3a\x21\x48\xdf\xc0\x58\xcc\xc2\xbb\xf4\x55\xac\x1e\x85\xab\x98\x98\x6c\x27\xfb\x52\x8c\x0c\xd5\xbf\x69\x05\xc7\xbe\xdd\xaf\x30\x36\x70\x2e\xd8\x54\x55\xd1\xb3\x26\x9c\xcd\x50\x5f\x62\x2f\x30\x18\xea\xd9\xdd\x4f\x8b\xcf\xaa\xda\x8c\xb2\x0b\xf8\xc3\x93\x15\xfd\x48\x15\xd0\x84\x57\xf1\xe6\xb4\xb4\x0c\x20\xb6\xe7\x87\x81\x7f\x5e\xee\x27\x06\x73\x8a\x6d\xcd\x9e\x0a\xf0\xd5\x00\xf2\xe9\x21\x59\x09\x1a\x72\x3d\x52\x54\x0f\xd8\x0f\xec\xde\xfb\x5a\xe7\x2a\x30\xef\x55\xaa\x57\xd9\x6c\x06\xd2\x10\x10\xdb\x0b\x99\x15\x07\x11\x7b\x1b\x20\x91\x50\xbc\xc0\x66\xb7\x10\x96\xab\x5d\xe6\x0e\x82\xc5\x40\x04\xe6\xf5\xcc\x81\xa3\xf4\x41\xf3\x13\x1f\x12\x94\x6f\x3c\xee\x02\xde\x86\x81\x2e\x07\xb9\x21\xae\x00\xf7\x1b\xf9\xe0\xb1\x66\x0c\x03\x87\x83\x38\x1f\xbb\x99\xcd\x33\xfe\x1b\xfd\xa2\x6e\x4d\x5a\x5a\x36\xdf\x7c\x80\x5a\xe0\x47\xfd\x07\x26\x16\x6b\x8a\xad\x79\xfb\x1f\xe0\x96\x5b\x9f\x30\xfb\x24\xa7\xd0\xcc\xb2\xbe\x35\xa6\x3b\xc7\x64\xfb\xa1\xc3\xc1\x76\x9f\x3f\xea\x67\x59\xbf\x18\x27\xe8\xfe\xf2\x01\x55\xbd\xf5\x92\x57\xfe\xa8\x3f\x88\x83\xb8\xd9\x37\x13\xd5\xe8\x58\x6c\x2f\x4b\xcb\xee\x03\x55\x4a\x60\xd4\x15\x68\xb3\x3a\x4d\x3d\x52\xac\x6f\xbb\xac\x77\xc5\xbe\xd5\xf5\x92\xed\xa6\xfa\x37\xa5\xdc\xc8\x2f\x56\x82\xd1\xfc\x2b\xa5\x29\x57\xc2\x09\xc9\x5e\xd3\xfc\x2b\xa5\x0b\xae\xf2\xe7\xbc\x37\xbd\xde\x50\xc8\x9e\x43\x8e\x9c\x67\x2a\xcb\xf7\x8c\x74\xcf\x3c\x72\x53\x6c\xc4\x0f\x5c\x88\x7e\xef\xd8\xeb\x75\x9b\x04\x5f\x85\xa6\xa4\x55\xaf\x59\x32\xdb\x4b\x36\x62\xb9\x49\x54\x49\x22\xa0\xdc\x5b\xc0\x00\x85\x97\x29\x62\xf8\xd8\xeb\x29\xaf\x24\x88\x3d\xa6\xbd\xdc\xcb\xd0\xbe\x55\x71\xbd\x2e\x40\xc5\xd9\xd4\x6e\x2c\xd7\x54\x13\xa9\xde\xfd\xb4\xd5\xf6\xbe\x6b\xfc\x6d\x6b\x46\x50\x8e\x53\xa4\x74\x6b\x12\x79\xa2\xa8\xd7\xd1\xbe\xd0\x92\xac\x89\x52\x27\x7d\x15\xbf\xe3\xc9\x15\x67\x69\x3a\xb0\x14\xba\x59\x33\x51\xc5\x3c\xb2\xef\x19\x0a\xb5\x59\x20\xcb\x50\x75\x82\xb2\x0d\xdb\x7d\x12\xad\x28\x01\xa6\xfa\xd6\x39\x75\x25\xa6\x3b\xe5\xfd\x05\xeb\xec\x1a\x99\x3f\x2c\xc1\x9d\x05\x4c\x57\xa2\x8a\xe2\xe5\x0e\xf4\x08\xd3\x5d\x67\x0e\xca\xc8\xf4\x3c\xf4\x87\x85\x61\xce\x9f\x6f\x1c\x21\xb4\x5b\x55\x80\x2a\xbe\x2e\xf1\x46\x9d\x79\x02\xd9\xf7\x88\xf1\x0c\x5b\xab\x7c\x21\x55\x21\x66\x76\xc5\xd7\x02\x45\xf9\x70\x9b\x67\xb8\xb4\x8e\x6f\x01\x9e\xe9\xc1\xb2\x1b\x59\x58\x5d\x16\xb2\xaf\xeb\x30\x7d\xb2\x88\xae\x62\x36\x7b\x99\xac\xf8\xd6\xaa\xda\x6d\x09\x86\x18\x65\x03\x75\xf9\x63\x1d\x61\x02\x97\x6c\x76\x2e\x6e\x32\xfc\xa8\xe7\x52\xea\x1a\xea\x7c\x72\x7a\xb6\x8b\xa5\xb6\x8a\xfd\x52\xa2\x4c\x8a\x01\x72\x4b\x95\xe9\x09\xfc\x8d\x32\xdd\x52\x19\x8d\xc2\xeb\xf2\x3c\xd9\xdd\x4c\x7b\x0d\xea\xb2\xef\xb7\xa9\xcf\x77\x19\xcc\x15\xc5\xe9\x4b\xa1\xbf\xcf\x9e\xea\x6f\xa3\x24\xb3\xf3\xac\x51\x7e\x9c\x76\x6d\xca\xbc\x29\xdd\x00\x54\x97\x79\x9a\x28\xed\x44\xc1\x66\xb5\xf7\x71\xf4\x99\xf1\x34\x5c\xd4\xce\xa2\x25\xcb\x41\xc9\x15\x9a\xd2\x53\xa5\x24\x99\xd6\xc2\xe9\x94\xa5\x69\xc2\x37\x15\xdb\xdf\xa7\x4c\xf9\x2c\x30\x26\xeb\x0e\x09\x39\xce\xd9\xdb\x54\xe9\xc6\xcb\xaf\x07\x41\x40\x16\x03\xc3\x21\x6f\x18\x36\x87\x15\x80\x00\x1f\x0f\x02\x90\x39\x8a\xf2\x4f\x54\x79\xd9\x1d\x25\xe5\x7c\x19\xb1\xdb\xf4\x1e\x59\xf3\xe2\x47\x4d\xf0\x25\xe4\x83\x1d\x9a\xa2\x39\xb7\xb6\xc5\x93\x31\x6d\xb0\xab\x69\x8d\xb5\x58\x8b\x37\xe3\xb7\x14\x6b\xd6\x38\x5f\x34\xa7\xd7\xd1\x5c\xb0\x99\x6c\xa3\x1d\xde\xec\xa0\x1f\x78\xa4\x20\x15\xcd\x54\x01\xd9\x30\xf2\x91\x87\xd0\x28\x89\x4b\x2e\x06\xe4\x1e\x9a\xe4\x52\xd0\xa2\x7e\xbc\xb9\x4f\x16\x49\x5a\x1a\x72\xbf\x06\x49\xba\x51\x37\x22\x88\x51\x70\xe1\x84\x5b\x93\xd0\xf0\x2b\xf9\xfb\xcb\xe0\x2e\x2d\x54\x06\xae\xf2\x63\x6f\x1b\x2c\xdd\x5c\x65\xee\xf1\x33\xc8\x4c\x84\x91\x64\xca\xb3\x92\x7a\x6e\x76\xbb\x74\xee\x2e\xa5\x22\x51\x6b\xd6\xde\x70\x3a\xac\xd2\x46\x5b\xf2\xcd\x9b\x44\xb0\x22\x4f\xe8\x5c\x72\x4f\x60\x9f\x5b\xf0\x6f\xd1\x88\x8f\xc1\xaf\x5a\x61\x3c\xf0\x99\x5b\xae\xf0\x42\xb8\x4d\x07\x0e\xb2\x70\xcd\xc2\x28\xcb\x32\xc7\x31\x8e\xbb\x4d\xdf\xe6\x15\x6b\xf1\xbd\x42\x33\x86\x67\x9e\xd5\x8b\xca\x70\x5f\xe2\xf9\x70\x53\x12\x8d\xe2\x31\x85\x22\xb1\x5d\xc4\xe0\x55\xe0\x73\x67\xb5\xc7\xb9\x4c\x92\x05\x0b\x63\x8b\x9b\x19\x84\xca\xbd\x13\xa7\x82\x08\x83\x62\xa0\x31\xde\xf7\x48\x28\x53\xb6\x32\x60\x22\x28\xd8\x73\xef\x19\x76\x0c\x3a\x29\xa5\x6c\x90\x14\x0c\x7d\xe0\x16\x0e\xd9\xb9\xd5\x4c\x41\x10\x6f\xa4\xf8\x51\x9f\xc4\xfa\x85\x53\xa5\x5c\x6b\x1a\xaa\xfc\x59\xf5\xc1\x8b\xd5\x6a\x14\x41\x3b\x05\x41\xd1\x46\x19\x0d\x70\xb5\xbe\xd9\xa1\x27\x58\xbc\xd8\xa4\x59\x11\x9d\x69\xc4\xc6\x39\x67\xa4\xa3\x5a\x46\x15\x70\x2f\xd7\x21\x88\xf1\x20\xd6\xd2\x07\xc2\xe1\x44\x74\x23\xb9\x0f\xfb\x89\xa3\x5d\x27\xf3\x49\x39\xdb\x88\x8d\xcd\x01\x62\x2b\xa5\x25\x92\xf7\x37\x37\xe6\xd5\x9b\xdc\x35\xa4\xc8\xb2\x7d\x3e\x10\x01\xda\x01\x8f\xf2\xc2\x0f\xe6\x70\x38\x1c\x66\xc3\x61\x76\x72\x92\xcd\x66\xb3\xd9\xc1\x55\xa5\xfb\x25\xed\x3d\x0a\x94\xea\x77\x00\xc5\xd0\x44\x4b\x27\x63\xf7\xb6\x53\xe4\x81\x32\x5a\x37\x7e\x37\x5b\xa6\x33\x14\x82\xde\x47\x33\x07\x38\xba\x1b\x9e\x3b\x54\xa3\x33\x0e\xc1\x5c\x31\x47\x47\xd8\x8f\x30\xed\xbc\xee\x57\xd5\xd8\x59\x47\x7c\x5c\x0c\x66\x84\x07\x51\x5e\x24\xb0\x5c\x92\x3e\x9a\x1d\x44\x39\x22\x61\x2a\x9e\xc3\x1b\x4f\x95\xda\x11\x15\x55\xb8\xc7\x6c\xe0\xa8\x67\xa1\x9c\xc0\x91\xe5\x1d\xab\x52\x8e\x07\x1c\x09\x1c\x58\x63\xf5\x28\x3d\x88\xe0\x3a\xf9\x66\xf3\xea\x36\xf7\x0d\xa7\x1c\xa8\xa8\x7b\xd8\x33\xb9\x10\x47\xdc\xe8\xb0\xf0\x31\x55\xc7\xb2\x91\x33\x71\x1a\x32\xa4\x49\xa7\xb2\x2b\xcb\xcf\x08\x0f\x9a\x26\xd8\x6f\x47\xa2\x87\xf2\xb7\xd2\x64\xc5\xa7\xcc\x2c\x95\x64\x3b\x09\x37\x9c\xcc\x69\xe4\xcf\x65\x99\x58\x68\x9d\x66\x17\x76\x98\x5a\xe8\xfb\x3b\x63\xe7\x39\xb0\x43\xa3\xfc\xe6\x67\x1c\x94\xe2\x4b\x65\x5a\x51\xaa\x26\x6e\x96\xfd\xc1\x70\x4b\xb0\x54\x80\x20\x44\x4d\x1d\x27\x70\x52\x11\xc6\xb3\x50\x32\x8a\xce\xd8\x06\xf9\x50\xd5\xa5\xfa\x5a\x05\x04\xab\x45\xf0\xe6\xd5\xf7\x35\x0b\xb2\x96\x2b\x80\xa8\x5d\x0d\x54\x89\x7f\xb0\x7f\xbb\x31\xbb\x2a\xdc\xae\xa5\xba\x6d\x30\xb6\x0f\x2b\x1d\xdb\x90\x20\xfb\xb3\x2f\xe1\x34\xdf\xc3\x76\x16\x85\xa7\x2f\x44\xa2\x9e\x12\xb2\x9e\xf9\x2a\x8e\xed\x36\x4c\xd0\x56\xd8\x8a\xa5\xa3\xb1\x45\xb9\x86\x55\x09\xa9\x6c\xdb\x46\x4a\xbe\x6d\x36\x1a\x31\x4e\xcc\x23\xbb\xf1\x18\xef\x28\x23\x37\xd6\x42\x22\xab\x9f\xd6\x4d\xc0\xf5\x70\x45\x03\xaa\x31\xda\x80\xb1\xbb\x78\x7e\xb9\x37\x70\x86\xc3\xa1\x03\x6f\x3c\x34\xbd\x7d\x4a\x51\x94\x7b\xf5\xa9\x46\x93\x84\x18\x0f\x22\x25\xcf\xab\x2e\xb1\x81\x93\x5d\xe0\xdf\xac\xec\x87\xeb\xf9\x91\x02\x3f\xdc\xec\x2d\xbb\x45\x65\x88\xb3\x35\x6f\x72\xe1\xc5\x7f\x3c\x97\x30\x29\xf1\x60\x92\xc3\x8b\xec\x09\xc5\xf3\xd3\xe4\xf6\x7c\xb0\xcc\x98\xb7\xa6\x4a\xe9\x35\x5f\xa7\x61\xcf\x9c\xa8\xe4\xf3\xda\x69\x81\x43\x9f\x86\xf3\x53\xe9\x91\xe0\xaa\x29\xbc\x1b\xa6\x9a\xd1\x0f\x03\xc6\xe0\x8e\x73\xb3\xd7\x46\x31\xbc\x18\x46\x2b\x91\x6c\x38\xd9\xce\x7a\x48\x15\x28\x1b\xc5\x64\x13\x13\x83\x45\xbd\x0e\x8f\x40\x3a\xea\xa9\xa4\x5d\x3d\xa8\x28\x26\xdb\x7a\xfe\xca\xd9\x2c\x5a\xd1\x53\x95\x65\xf7\xb9\x29\xb1\x7c\x38\xf3\xda\x22\x9f\xea\x69\xe6\x9d\x3c\xd0\x26\xd1\x1c\x20\x3d\x79\x9d\x89\x55\xde\xc1\x59\xf6\xdc\x5a\x02\x98\xb0\x32\x41\x2f\x5e\x81\x2e\x91\x75\x88\xc1\xc1\x4e\x98\x68\x2b\x33\x7d\xcd\xca\x03\x63\x81\xae\xd7\x7f\xa4\xd6\xcd\xed\xf1\x7f\xa7\x23\x36\x5e\xd5\xde\xde\xe4\x76\x74\x49\x91\xb6\xd5\x2f\x16\xf6\xaf\x36\x3b\x67\xa3\xba\xad\x1e\xfa\x4e\x74\xa0\xaf\xe0\x7e\xaf\xa2\x7f\xde\x33\xc4\xac\x87\xbf\x8b\x3b\xd4\xe2\xda\x14\xca\x02\x90\x79\xc4\xe1\xe1\xd6\xcd\x0b\x82\x8d\xde\x36\x25\x37\xca\x9c\x97\x50\xa8\x2e\x73\x9b\x23\xbb\x71\x3d\x56\x30\xc5\x86\x01\x31\x99\x0c\xf7\x91\xbf\x1e\x5a\x0e\x8e\x58\xbd\xae\x54\x5e\xcc\xfa\x32\x29\x39\x3f\xf7\x0d\xee\x27\xf7\x83\x0a\x7e\x0f\xfe\x62\x88\x6f\x74\x18\x0e\xd8\x80\x8f\x98\xba\x4d\x19\x07\xbc\xd4\x86\x61\x14\x57\xc9\x3e\x73\x60\x65\x9c\x86\x51\x5c\x01\x7c\x2b\x4f\x51\xd9\x56\x52\xa9\xf2\x4d\xd6\xf1\x5b\xd5\x43\xfe\x6f\x22\x60\x58\xca\x4a\x14\x20\xb1\x84\xc4\x77\xf3\x78\xa5\x02\xff\x63\x5c\x5e\x09\xaa\xc5\xe7\x95\xd1\x2b\x6f\xc2\xe7\xd5\x69\xcb\x28\xde\x4a\x51\xfb\x73\xbf\xcc\xeb\x79\x63\x0c\xbd\x13\xe3\x1d\x25\x73\x76\xcd\x1a\xb9\x6f\xb2\x7c\xdb\xa8\x6d\x81\xf9\x3e\xde\xf1\xf6\x41\x18\xdf\xc5\x3b\xca\x73\xff\x43\xfc\x5c\xa9\x8a\x12\x23\xf8\x8d\x82\xdb\x8d\xfc\x36\x7b\xb7\xd9\xbb\x9b\xf5\xfd\x30\xa6\x3f\x88\xda\xbf\x87\xd5\xbf\xd5\x0b\xff\x69\x1b\x1e\x42\xea\x87\x4a\xfc\x1f\xeb\xcc\x6f\x32\xda\xa5\x3a\xf2\xed\x74\xc7\x72\xae\x5a\xb2\xdf\x5e\xe8\xf3\xd5\x62\xb1\x99\x84\xf3\xa5\xbe\xc5\x89\x5b\xcb\xbd\x60\xc8\xb7\x60\xd8\x2c\x79\x55\x62\x25\x03\x9d\x2f\xca\x0a\xee\xf9\xe2\xa2\x35\xd8\xc1\x9a\xff\x10\xec\x9d\xec\x79\x75\x05\x55\xb4\xec\x21\xf0\x92\xb4\x7d\x1b\xf8\x2e\xda\x54\x66\xff\xcb\xdd\x61\x1d\x00\x2a\xda\x52\x91\x9a\xa3\xb2\x8b\x10\x7e\xe7\x01\x21\xa7\x29\x86\xa7\xa8\x1a\xcf\x9d\x47\x84\xcd\xc2\x95\x23\xf6\x40\xe9\x52\xe1\x8a\xd1\xf8\xc6\xf9\x62\xb3\xd1\x3b\x4e\x18\x26\xdb\x37\x58\xeb\xed\x4d\xdb\x62\xae\x4b\x30\x24\xef\xfb\xcf\x4a\xf6\x3a\x1f\xbc\x2d\x66\xb6\x04\xc0\x66\xac\xb7\x20\xa3\x8a\x02\xf4\xef\x6c\x73\xa4\x2b\xf9\xe9\xef\xad\x7f\x9b\xb7\xfa\xdf\xec\x9c\x6a\x76\x7f\x1b\x9d\xaa\x6e\xaa\x3c\x81\x54\xb4\xe4\xa7\xed\x0e\xdb\x79\x0a\xf9\x71\xc4\x36\x19\xe3\xff\xc5\xde\x1b\x46\xf1\x6e\x14\x0d\x2a\x55\x3d\x67\xd2\x2a\xfa\x2d\x6f\xc1\xef\x5b\xbd\x56\xae\x6e\xbb\xcf\xbe\x0f\x1d\x75\x3b\x92\xbe\x1b\x56\xf4\x91\x73\x03\xb6\x74\xac\x61\x78\xb5\x9c\x4b\x83\x07\x53\x9e\x08\xe4\xea\x53\xb2\x79\xd4\x67\xcb\xa1\x8e\x76\x2b\xe2\x1d\xb3\x01\x1f\x38\x37\x4b\x27\x70\xde\x0d\x9d\x80\x0f\x9c\x50\x7e\x3f\x19\x3a\x6b\xb2\x12\xa0\x20\x4d\xee\xab\x25\xf6\x81\x11\xc5\x23\x71\x9d\xa5\x22\x8b\x67\x19\x9f\xe1\x03\xa2\x45\xf7\xc1\xf6\x75\x15\x7b\xe4\xb9\xb9\x03\xd4\x06\x78\x7c\xbf\x45\x32\xd2\x3d\xf0\x5c\x3c\x70\xc4\xb5\x13\x80\x1b\xf8\x81\x93\x0a\x27\x50\x8f\xd0\x3a\xf1\xcc\x09\xda\xea\x93\xcf\x9c\x40\xe6\xc2\x6b\x78\x16\x00\x8c\xdf\xf2\x1b\x7a\x08\x56\xab\x07\xa8\x64\xf5\xe6\x7e\xa1\x6a\xb0\x12\x06\x08\xa8\x52\x97\x01\xc9\xa8\x6f\x02\x53\x99\x72\x80\x53\x6d\x12\x7e\xc5\xa9\xd1\xc6\x2a\xae\x7a\x2f\xb7\xae\x7a\xcf\x05\x5c\xf6\x59\xcf\x0b\xd9\xba\x69\x0d\x1a\x3f\x8e\x36\xdc\x57\x6a\xf7\xbd\x3a\x09\x3c\xf9\xe6\x7e\x7c\x4d\x7e\xe5\x4e\x94\x55\x39\x21\x9f\xf0\x0d\xf7\xe2\x96\xce\xba\x71\x2c\x0e\x7a\xc9\xf6\x15\xf3\xad\x5d\xa8\x73\xe8\xba\x8f\xd9\x81\xd7\xe9\xb9\x47\xfd\x22\xcf\x33\x3b\x8f\x4a\x7c\xcc\x0e\x64\xe6\x22\xcf\x17\x3b\xcf\x0e\x51\x40\x98\xc2\x13\x2d\xb2\x7b\x4e\x39\xfd\xc2\x91\x72\x67\xf3\x56\x7d\xcb\xcf\x27\x3a\xda\xc1\xe4\x93\xfa\xbc\x76\x30\x39\x53\x9f\x33\x07\x93\xa7\xea\xf3\xd6\xc1\x64\xa8\x3e\x87\x0e\x26\x7f\xa8\xcf\xdf\x1d\x4c\xde\xa9\xcf\x3b\xdb\xf1\xe5\x9f\xdf\x81\xdb\x86\x01\x02\xf8\x80\x1f\xb1\x71\xf0\x26\x7c\xa3\x30\x3e\xe1\xf4\x4f\x5e\xb2\x78\x95\x08\xbf\x51\xb1\x45\xc4\x2b\x93\x4d\x39\x94\xc2\xe4\xb5\x8a\x00\x15\x47\x07\x93\xe7\x2a\x28\x07\xd7\xc1\xe4\xab\xce\xad\x3d\x5e\x92\x97\x2a\x0c\x2a\x2d\x0e\x26\xbf\x72\x4b\x31\x93\xbc\xe7\xf4\x3e\x4d\x83\x4e\x87\xa4\x41\xa7\x4b\x96\xf2\xcf\x75\xe0\xfb\x64\x16\xf8\x3d\x32\x0c\x3c\x6f\x4d\xce\xab\xe6\xe6\x5f\x56\xfb\x91\x7b\xcc\x70\x13\xb1\x63\x17\x67\x59\xc3\x7a\x16\xfe\x1f\xfc\x21\x5b\x96\x0a\xa7\x07\x25\x7b\x7b\xa5\xba\x21\x17\x00\x3d\xcf\xc5\xe6\x56\x57\x81\x99\x04\x89\x8b\x44\xe5\xa2\x35\xb2\x72\x6b\x2f\xad\x82\x4e\x10\x62\x74\x82\xf8\x41\xcf\xc5\x18\xdc\xd3\xf3\x47\xb4\xe7\x12\x26\xff\xee\x29\x7f\x87\x13\x14\x1d\x78\x3e\x26\x21\x8d\x1e\x51\xcf\x27\x29\x8d\xc9\x8a\x0a\xb2\xa0\x8c\x4c\x29\x1f\xf0\x96\x48\x9e\x47\x5f\xd8\x0c\xb5\xed\x57\x1e\x5b\x03\xb7\xa1\x5e\x79\x0c\x1c\x87\xcc\xa9\x9e\x96\xa7\xc6\x74\x0b\xd8\xa9\xb9\xb1\xdf\x79\xe7\x9e\x28\xa5\x84\x6b\x3a\x3f\x76\x07\x4e\xd3\x91\xa5\x66\xf4\xaf\x0d\x9c\xf7\xa9\x8c\x9a\x63\x93\xe3\xa6\xc8\x01\xcd\xdc\x4c\x5f\x5a\x10\xec\x3e\xda\xc8\x67\x28\xc7\x75\xc3\x79\xe7\x34\x50\x32\x98\x35\x92\x86\xf3\x01\x1e\x4e\x69\xa0\x70\x30\x6b\x84\x0d\x67\xa8\x83\xe9\xe0\xa6\x91\x36\x9c\x13\x1d\x5c\x65\xd9\x22\xcb\xa6\x03\xe7\xcc\x44\x0c\x96\x8d\x55\xc3\x79\xa9\x83\x8b\xc1\xb2\xb1\x28\x4a\x4f\x07\xcb\xc6\xb4\xe1\x9c\x42\x10\xa6\xfb\x07\x5e\xf2\x49\x6b\x70\xf9\xf0\x90\xe5\xb2\x6a\x92\x4e\x5f\x93\x0f\x5c\x4e\xc3\x1d\x8a\xfa\xb0\xc0\xca\x8a\x35\x25\xd5\xdd\xab\xca\x1e\xb2\xdf\x72\xb8\x2a\x4f\x25\x7b\x44\xac\xd2\x6a\x84\xca\x16\x85\x90\x5e\x8e\x29\xcc\x0f\x75\xa2\x15\x6f\xf4\x90\x75\x21\x08\x18\x13\x46\x1d\x0b\x9f\xb9\xa5\xa3\xc9\x9a\xd7\xad\x74\xd5\x20\x12\x3e\x8d\x3e\xe8\x07\xe5\x9e\xaa\xf2\x02\xf8\x92\x17\x87\x64\x0f\x43\xde\xdc\x0a\xf3\x9b\x05\x9a\xba\x44\xf8\xbd\x76\x08\x55\xa6\x07\x76\xff\x80\xfa\xb2\x52\x0c\x2a\x1b\x37\x1b\x0b\x63\x65\xd8\xac\x34\xc1\xe5\x37\xd6\xf6\xca\xb9\x55\xaa\xdc\xd8\x62\xa5\x21\x9e\x2b\xb0\xe8\xad\xed\x96\x23\x81\x89\xb1\x6c\xd6\x06\xc7\x46\x20\xb5\x61\xc8\x6c\xa2\x0f\xda\x7b\x96\x1d\x74\x1e\xeb\xf9\x4a\x8f\xab\xaa\x76\x4b\xc7\xfd\xd9\xc6\xfc\x28\x6a\x57\xc6\xcb\x66\x5e\x1e\xf4\x1b\xb1\xf1\xcf\x54\x58\x0f\x9b\x54\xd3\x1e\xdb\x26\x58\xa7\xf9\x9d\xc7\x32\x19\x1c\x44\x95\x2c\x7b\xf3\x5d\xb4\xe3\x42\x8e\x1e\xeb\x94\xcd\x78\x75\x86\xc3\x5e\xc7\x55\x39\x3c\xd6\x36\x20\x0a\x3b\xf2\x60\xdb\x2c\x0d\x50\x79\x2c\x70\x23\xce\x9d\x48\x89\x6b\x9e\xdc\x82\xc1\xe9\x33\xce\x13\x8e\x9c\xf7\xf1\xa7\x38\xb9\x8d\x6b\xab\x38\x12\x35\xa7\x21\x77\x63\x35\x4d\x6c\x97\x6c\xf4\x94\xab\x48\x4d\x16\xe9\x5b\x6e\x32\xa9\x85\xf0\x44\x87\x5f\xc2\x02\xf8\xa4\x43\x27\x72\x51\x9e\xe9\x80\x32\xff\x79\x6a\x0a\xaa\x55\x31\xd4\xc1\xdf\x8d\x15\xd5\x1f\x3a\xe2\x03\xac\x8f\x77\x10\xfa\x86\x15\xdd\xe6\x3e\x5d\xe2\xa9\x74\x17\x14\x43\x6e\x0f\xf2\x23\xcf\x7f\xec\x77\x8f\x7c\xd6\x6b\xb4\xbd\x6e\xbb\xc7\x7a\x8f\x6f\x4b\xb3\x40\x6e\x28\xb0\xdf\x4b\x34\x34\x7f\xb5\x45\xbd\x8a\x57\x80\x2b\x56\x09\x09\xad\xf9\x46\xd2\xd2\x2c\x97\xdb\xd3\x16\xe1\x73\x8f\x69\x02\xfe\x87\x43\xf8\x9b\x66\x59\x72\x4c\xdd\x7a\x3d\x84\xbf\xe9\x31\x75\xb3\x0c\x25\x0d\xaa\x1a\x36\xe1\x72\xe2\xa6\xb8\x11\x62\x92\xd2\x90\xc2\xd3\x6c\x25\xba\x96\x3c\x92\xdb\xac\xdc\x3d\x13\xb0\x4b\x24\xab\x9c\xaa\xc1\xcb\x2e\x72\x73\x55\x2f\xbe\xac\x72\xb2\x26\x64\x02\xa7\x13\x24\x74\x82\xb6\xc6\x78\xe4\x77\x48\xda\xa0\x11\x9d\xa0\x5b\x8e\xc2\x06\x6c\xc9\x7e\x07\x63\x4c\xc2\x26\x55\xb8\x44\xe0\x7a\x61\x82\xa0\xef\x48\x0a\x5b\xf1\x4a\xd9\x3f\x85\xb2\x0a\x35\xee\x29\x59\x69\x12\x18\x17\x84\x6f\x97\xef\xba\x73\x61\xfc\x5f\x7c\xd8\xe9\x94\x47\x91\x1f\x52\x31\x21\x46\xac\xe1\xa4\xce\x18\x15\x03\x59\xea\x9f\x13\x98\x62\x26\xf4\x86\xab\x0c\xaa\x1f\x5e\x41\x48\x35\xfe\x35\x7c\x43\x3b\x9e\xc3\xe7\x86\xf1\x5c\x8e\xc9\x24\xb7\xb6\x49\x11\x3e\xe8\x2b\xac\x75\xb3\xbf\x42\x49\xd5\xf0\x97\x0a\xb8\xf6\x60\xf4\x9d\x44\xf9\x7b\x78\xae\xd2\x1b\xf1\x64\x45\x16\xf0\x06\xf0\x56\x49\x72\x4d\x91\xa0\xfb\x8c\x70\x3a\x97\x6c\x98\xee\x64\xb0\x28\x91\x6c\xd8\xaf\x1c\xc5\x92\x3f\x97\x5c\x38\x26\x49\x11\x06\xeb\x85\xb0\x08\x5f\xcb\x70\x5a\x84\x67\x32\xbc\x2a\xc2\x43\x19\x5e\x14\xe1\x3b\x19\x46\x53\x1a\x1d\xd3\xf7\xbc\x95\xa6\xf5\x3a\xb8\x42\x8d\xc6\x59\x16\x1d\xcb\x18\x88\xd0\x31\xc9\x31\xf5\x64\x78\xe9\x40\xe0\x3d\x6f\x2d\x21\xb8\x74\x48\x32\xce\xb2\x50\x27\x5f\x3b\x10\x78\xcf\x5b\xd7\x10\xbc\x76\x48\x38\xce\xb2\x54\x27\xcf\x1c\x08\xbc\xe7\xad\x19\x04\x67\x0e\x49\xc7\x59\xb6\xd2\xc9\x43\x07\x02\xef\x79\x6b\x08\xc1\xa1\x43\x56\xe3\x2c\x5b\xe8\xe4\x3b\x99\x3c\x72\xee\xee\x1c\xb2\x18\xe3\x91\x3f\xa6\x82\x4c\x47\xed\x31\x75\x8f\x81\x9c\x90\xe9\xa8\x33\xa6\xbc\xd2\x17\xb7\xd1\x98\x2d\xa9\x19\x22\x91\x65\x1e\xd9\xdf\xe7\x84\x91\x18\xaf\xed\x27\xd7\xa6\xb8\x38\x1e\xd6\xeb\xe8\x9a\xce\x2d\xbd\x41\xa4\xaa\xbb\xc6\x98\xcc\x6d\x0f\x63\xd7\x6a\x92\xd9\x9e\x02\xfe\xc1\x55\xcc\x46\x10\x0c\xae\x55\xa0\xf0\x1e\xf3\x61\xd3\x7b\x8c\x82\x95\x9a\xc2\xa7\xc8\xb1\x82\xdb\xde\xea\xad\x67\x24\x4a\x56\xda\xe6\xa0\x5c\x43\x71\x22\xa2\x29\x03\x67\xf5\xd3\xf0\x26\x12\xe1\x22\xc5\x0e\xf9\x07\xc7\x50\xb7\xf6\x68\xf3\x1e\x39\xff\xd4\xae\x3d\x57\x71\xf4\x45\x79\xfb\xfc\xa2\x63\xf4\x1e\xa0\x5f\x9b\xfa\x52\xf8\xc3\xfe\xa7\x43\x0e\x46\x8d\xe6\x78\x70\x31\x6b\xc0\x6b\x3f\xf7\x1e\x69\xaf\xf1\xe0\x40\x39\x44\xfe\xa7\x53\xe9\x5b\xb8\x78\x89\xd0\x63\xed\xc7\xf6\x93\x23\xf0\x42\xba\xf2\xaf\x2c\xab\x79\xb8\xf0\xad\x64\x79\x40\x32\xa1\x9f\x68\xa4\x8e\xdf\xf2\x3b\x2d\xd7\x21\x8c\x7e\x12\x84\xb7\xe6\x31\xbd\xe6\x44\xf9\xe0\xa9\xb0\xd4\x15\xc8\x31\x8e\x80\x1c\x32\x1a\x2b\x2d\x5a\x25\xda\xca\x1f\xdf\x23\x12\x21\xa2\x1c\xfa\xec\x02\x01\x7e\x89\xbe\x09\x21\xb6\x7d\x9f\xe5\x10\xc0\x2d\x43\x9c\xdc\x0e\xcc\x07\xc2\x41\xc3\x34\x51\x16\x03\x13\x2a\xb2\x69\x07\x5f\xd0\xde\x4f\xea\x19\x1f\xa6\xb0\x7c\x40\x31\x53\x2b\xaf\xe7\x87\x5b\x99\x3f\x4a\x41\x15\x38\x25\xf9\x8c\x5c\xc9\x7e\x33\xaf\x5d\xdc\x10\xde\x9a\xe9\x17\x0d\xe8\x39\xa4\xa4\xea\xd9\x51\x7a\x49\x76\x28\x0f\x58\xf2\xae\x5c\x3d\xdd\x31\x39\x55\xad\x95\x36\x57\x79\x73\xaa\xdf\x40\x2c\x0a\x21\x80\x61\xad\x99\xa9\x42\xec\xc4\x20\xfa\xa7\x20\xdf\xa1\xd0\x59\xee\x0e\xc8\xa8\xb0\xab\x56\x27\xf8\x46\xc3\x86\x51\xac\x4a\xcf\xd8\x3c\x8a\x99\xba\xcf\xa5\x0b\x91\x1b\xd0\xe9\x98\x2d\x77\x4e\xc6\x50\xa0\x78\x65\x8a\xc6\x42\x9b\x85\xa1\x98\xa6\xe6\x99\x8c\x88\xc6\x46\x15\x18\x13\xc4\x61\x15\x0c\x91\xa0\x4f\x51\x44\x04\xc6\xd0\x3f\x2c\x16\xba\x9a\x08\xf4\xd2\x23\xa5\x4d\x4e\x56\xc5\xab\xdc\xda\xb0\x50\x26\xd4\xeb\xc8\x0a\x95\xca\x0f\x54\xc9\xed\x84\xa0\x54\x5e\x3f\x85\x0c\xa1\xc2\x3c\x41\x86\x8a\x11\xaa\xda\xa4\xdf\xa2\x48\x94\xba\x7a\x7b\x98\x1e\xec\x6c\x6b\xb0\x62\x49\x83\x17\xd1\x57\xf6\x3e\x8e\x44\x4a\xff\x24\x65\x95\xf2\x3f\xe4\xe9\x62\xd3\x77\x8b\x99\x00\xc5\x0b\x1b\xbf\xf2\xc0\x31\x39\x2c\xfb\x89\x7a\x1d\xfd\xca\x29\x03\xcb\xbb\x0d\xc0\x67\xd7\x9c\xa5\xd7\xc9\x62\xc7\x61\x51\xc1\xde\xa7\xf4\x3d\x57\x3d\x9d\x57\x26\x06\x10\x15\x20\xf8\xa1\x82\x38\x29\x9c\xcf\xea\x75\x04\xfb\x31\x15\x4d\x0f\xcb\x1a\xa1\xca\xb2\x77\xe3\x4a\x25\x1d\x06\xde\x84\x91\x20\x4a\x86\x05\xc6\x88\xe6\xf8\x75\xdc\xec\x0d\x0a\x47\xc8\x01\x3f\x6e\x7a\x03\x67\x11\xa6\x42\x79\x71\xe2\xc7\xae\x0a\x9e\xc0\x29\xea\xd8\x53\x99\x75\xc8\x1f\x38\xfa\xb1\x5f\x19\xea\xab\x90\x2a\x58\xc0\x84\xe5\x6c\x84\x12\x8a\xd8\xbe\x3c\x1b\xbe\xee\x4e\x9e\x0f\xcf\xe8\xfd\xc9\x93\xb3\x67\x67\xaf\x86\xcf\x26\xaf\xdf\x3e\x7d\xf2\x3a\xd8\x7a\x9a\xc5\x21\xe5\x1c\x93\xd3\x67\x4f\xdf\xbe\x39\x39\xdd\xce\x19\x48\x96\x64\x23\xf3\xb0\x3a\x1f\x78\x39\x81\xbc\x76\xb2\x43\x64\xc9\xc0\xd1\xf5\x02\x98\xbc\xb6\xa2\x0a\x88\x1f\x5a\x51\x0a\xda\xf9\xb3\x67\x7f\x0f\xe0\x29\x86\xe6\xe8\x7c\x7c\x7e\xee\x90\xe1\xdb\x37\x67\x2f\xf3\x0a\x64\x3f\xac\x71\x85\x27\xf1\x5c\x9c\xc7\x90\x16\x46\xe7\x31\x11\x0a\x49\xaa\xd8\x4d\x3e\x0a\xc7\x9a\xf1\x84\x2f\x65\x31\x53\x31\x25\x39\xfb\x6b\x15\x71\x56\xaf\xeb\x0f\x90\x8f\xa5\xf5\xfa\xca\xb0\xa8\x2b\x14\xc2\x0c\x88\xe6\x28\x31\x71\x89\x8e\x93\x50\x17\xd4\x3a\x7d\x3e\x0d\xe3\x38\x11\xb5\x79\x14\xcf\x6a\xcb\x64\xb6\x5a\xb0\xda\xdf\x9c\x46\xd8\x70\xfe\xe6\xe0\x3d\x75\x56\x5d\xb4\xa6\xc9\x8c\x51\x67\xf8\xf6\xe4\xfd\xeb\x67\x93\x37\x6f\xcf\x26\xcf\xdf\xbe\x7f\x73\xe2\x90\x05\x88\xa5\xa6\x54\xe2\x4e\xef\xd9\x97\x9b\x84\x8b\x34\xb8\x5f\xaf\xf7\x64\x1b\x46\xae\x76\xb2\x3d\x6d\xe9\x24\xb2\x79\x41\xc1\x29\x64\xf4\xc6\x23\x96\xdb\x55\x44\x88\x67\x99\xdc\xca\xa6\xa4\x28\x68\xe4\xf8\xb9\xeb\xe5\x51\x38\x36\x89\x6b\xe3\xdc\x2e\xf9\x9e\xee\x22\x21\x75\x7f\x0e\x8f\x63\xe3\x96\x2e\x6c\x34\x70\x84\x62\xd9\xe7\x85\x75\xd5\x1a\x61\x74\xef\x05\xa3\x4d\x72\xe4\x48\x16\x4b\xb9\x67\x71\xf6\x18\xf2\x0b\x1b\x2e\x14\x53\x86\xbc\xae\xa4\xd3\x71\x6b\x32\x61\xe9\x10\x3a\x73\x10\x07\xf7\xe6\xe4\x1f\xaf\xf7\x22\xe3\xce\xb6\x35\xb9\x0c\x2f\xd9\xe2\x5d\xb2\xb8\x9b\x47\x8b\x45\xbd\xee\xac\x62\xb5\x6d\xcc\x0a\x6b\xc3\x69\x12\xa7\xc9\x82\xd5\xeb\xfa\xa3\x75\x1b\xf2\xb8\x1c\x42\xce\xff\x1f\x00\x1d\xdc\x68\x48\x92\x35\x5c\x24\xe1\x8c\xcd\x94\x29\xa0\xb8\x0e\xe3\x5a\x12\x4f\x59\x2d\x51\x87\x97\xda\x4d\x78\xc5\x5a\xb5\x33\xf9\x29\x43\x3c\xb9\x0c\x2f\x17\x77\xf0\x0e\xf6\x8c\xa5\x11\x0f\x2f\x17\xec\x20\x8a\x05\x8b\x67\xfa\x09\xeb\x65\x78\x57\xbb\x0e\x3f\xc3\xf3\x46\x29\xfb\x6b\xc5\xe2\x29\x4b\x6b\xd1\xbc\x26\xa9\x0e\x93\x3b\x43\xfe\x40\x76\x0d\xac\x9d\x59\xcd\xa0\xa3\xde\xc4\x96\xbb\x79\xc4\x66\x35\x55\x58\x44\xe1\x62\x71\xd7\xaa\xbd\x9a\xd7\xee\x92\x55\x6d\x96\xd4\x62\xc6\x66\x35\x91\x00\xe2\xa5\xe2\x1b\x6d\x50\xc6\x9f\x1b\x2d\x3e\x88\x93\xa7\x49\x3c\x5f\x44\xd3\xdc\x08\x54\xc2\xba\xbc\xbb\x09\xd3\x14\xa0\x69\x6b\x49\x78\xf6\x6c\xc7\x00\xd0\x7d\x77\x4d\xee\xbd\x6e\xe0\x75\x89\x1f\xf8\xeb\x31\xf1\xbf\x39\xfa\x6d\x4c\x18\xea\xca\x3f\x1d\xf9\xc7\xf3\xe0\xaf\x0b\x7f\x21\x4d\x9e\xbf\x19\xf2\x20\xb5\x2f\xff\x1c\xca\x3f\x3d\xf9\xe7\x48\xfe\x69\xbb\x3d\xf5\x23\xcf\xa8\xf7\x9e\x1b\x78\x2e\xf1\xbc\xc0\xf3\x88\xe7\x07\x9e\x4f\xbc\x76\xe0\xb5\x89\xd7\x09\xbc\x0e\x69\x07\x6d\xd2\x76\x7b\x41\xdb\xed\x91\xb6\xdb\x0f\xda\x6e\x9f\x74\x82\x0e\xe9\x06\x5d\xd2\x0b\x7a\xa4\x1f\xf4\xc9\x61\x70\x48\x8e\x82\xa3\xf5\x98\xb4\xb7\x91\x67\xc8\xef\x43\xfd\xbe\x42\xc8\xf7\x7a\xea\xa7\xab\x7e\x54\x9a\xef\xaa\x1f\x1d\x79\xa4\x7e\xfa\x2a\x52\xff\xa8\x72\xbe\xaf\x7e\xda\xea\xc7\x53\x39\x75\x48\xd5\xe0\x6b\x98\x00\xc5\x3b\x54\x3d\x73\xa8\x3a\xe5\x50\x15\x68\xeb\x1f\x55\xad\xab\xa1\xe8\x1f\x55\x83\xab\x7f\x14\x68\x57\x81\x76\xbb\x58\xae\x3f\xd5\x81\xbe\xab\x30\x73\x55\x7d\xae\xc6\x5a\xd7\xa7\x06\xe7\xb0\xab\x7e\x7a\xea\xa7\xaf\x7e\x0e\xd5\x8f\x42\xf0\x48\x15\x38\x52\xe3\x78\xa4\xf0\x3c\x52\x23\x79\xa4\xa0\x1c\x29\x28\x47\x0a\xca\x91\x82\x72\xa4\xa0\x1c\xa9\x6a\x5d\xd5\x94\x9e\xea\xc1\xbe\x0a\xf5\x15\x82\x3d\x85\x60\x4f\x67\x51\xcd\xec\xa9\x36\xf4\x3d\x68\x51\x5f\x35\xb3\xab\x22\xbb\xaa\x5c\x57\x95\xeb\xaa\x1a\x7a\xaa\x43\x7a\x2a\x67\x4f\x75\x48\x4f\xd7\xa0\xb2\xf4\x55\x96\xbe\x4a\xeb\x6b\x5c\x14\xd6\x2a\xe4\x29\x94\x3c\x13\xa9\xba\x40\xcd\x10\x4f\x81\xf6\x14\x82\x5e\x4f\x47\xea\x72\x2a\xb2\xaf\xb3\xa8\x3e\x53\xb5\x7b\x5d\x0d\x53\x75\x5d\x17\xc6\xc8\xeb\xeb\x2c\xaa\x06\x85\xbc\xa7\x1a\xed\x75\x55\xb7\x76\x75\x48\x65\x51\xad\xf5\x14\xf2\x9e\x6e\x5f\x47\xb5\xaf\xa3\x7b\x42\x47\xaa\xd6\x76\x55\x7f\x76\x55\x7f\x76\x55\xdb\xbb\xaa\x7b\xda\x7a\xba\xe9\x6e\x55\x3d\xa1\x46\xda\x57\x23\xed\xab\xb6\xfb\x6a\x7e\xfa\x6a\xa2\xf8\x6a\x6a\xf8\x87\x3a\x4d\x15\x3f\xec\xc1\x18\xa9\x29\xe5\xab\x49\xe4\xeb\x99\xac\xe6\xb5\xdf\xd6\xd5\xaa\x2c\x6d\x05\xac\xad\x46\xb3\xad\xdb\xa0\x2a\x6a\xab\x1a\xda\xaa\x86\x8e\x82\xd2\x51\x50\x3a\x0a\x4a\x47\x37\x53\x15\xef\x74\x31\x11\x66\xd3\xa3\x0c\x75\x7d\x20\x1b\xdd\x4e\xe0\x75\x3b\xc4\xeb\x4a\xe2\xd5\x25\x5e\xb7\x17\x78\xdd\x1e\xf1\xba\xfd\xc0\xeb\xf6\x89\xd7\x3d\x0c\xbc\xee\x21\xf1\xba\x47\x81\xd7\x3d\x22\x5e\xcf\x0d\xbc\x9e\x4b\xbc\x9e\x17\x78\x3d\x8f\x78\x3d\x3f\xf0\x7a\x3e\xf1\x7a\xed\xc0\xeb\xb5\x89\xd7\xeb\x04\x5e\xaf\x43\xbc\x5e\x37\xf0\x7a\x5d\xe2\xf5\x7a\x81\xd7\xeb\x11\xaf\xd7\x0f\xbc\x5e\x9f\x78\xbd\xc3\xc0\xeb\x1d\x12\xaf\x77\x14\x78\xbd\x23\xe2\xf5\xdd\xc0\xeb\xbb\xc4\xeb\x7b\x81\xd7\xf7\x88\xd7\xf7\x03\xaf\xef\x13\xaf\xdf\x0e\xbc\x7e\x9b\x78\xfd\x4e\xe0\xf5\x3b\xc4\xeb\x77\x03\xaf\xdf\x25\x5e\xbf\x17\x78\xfd\x1e\xf1\xfa\xfd\xc0\xeb\xf7\x89\xd7\x3f\x0c\xbc\xfe\x21\xf1\xfa\x47\x81\xd7\x3f\x22\xde\xa1\x1b\x78\x87\x2e\xf1\x0e\xbd\xc0\x3b\xf4\x88\x77\xe8\x07\xde\xa1\x4f\xbc\xc3\x76\xe0\x1d\xb6\x89\x77\xd8\x09\xbc\xc3\x0e\xf1\x0e\xbb\x81\x77\xd8\x25\xde\x61\x2f\xf0\x0e\x7b\xc4\x3b\xec\x07\xde\x61\x9f\x78\x87\x87\x81\x77\x78\x48\xbc\xc3\xa3\xc0\x3b\x3c\x22\xde\x91\x1b\x78\x47\x2e\xf1\x8e\xbc\xc0\x3b\xf2\x88\x77\xe4\x07\xde\x91\x4f\xbc\xa3\x76\xe0\x1d\xb5\x89\x77\xd4\x09\xbc\xa3\x0e\xf1\x8e\xba\x81\x77\xd4\x25\xde\x51\x2f\xf0\x8e\x7a\xc4\x3b\xea\x07\xde\x51\x9f\x78\x47\x87\x81\x77\x74\x48\xbc\xa3\xa3\xc0\x3b\x3a\x22\xbe\xeb\x06\xbe\xeb\x12\xdf\xf5\x02\xdf\xf5\x88\xef\xfa\x81\xef\xfa\xc4\x77\xdb\x81\xef\xb6\x89\xef\x76\x02\xdf\xed\x10\xdf\xed\x06\xbe\xdb\x25\xbe\xdb\x0b\x7c\xb7\x47\x7c\xb7\x1f\xf8\x6e\x9f\xf8\xee\x61\xe0\xbb\x87\xc4\x77\x8f\x02\xdf\x3d\x22\xbe\xe7\x06\xbe\xe7\x12\xdf\xf3\x02\xdf\xf3\x88\xef\xf9\x81\xef\xf9\xc4\xf7\xda\x81\xef\xb5\x89\xef\x75\x02\xdf\xeb\x10\xdf\xeb\x06\xbe\xdc\x9d\xbc\x5e\xe0\x7b\x3d\xe2\x7b\xfd\xc0\xf7\xfa\xc4\xf7\x0e\x03\xdf\x3b\x24\xbe\x77\x14\xf8\xde\x11\xf1\x7d\x37\xf0\x7d\x97\xf8\xbe\x17\xf8\xbe\x47\x7c\xdf\x0f\x7c\xdf\x27\xbe\xdf\x0e\x7c\xbf\x4d\x7c\xbf\x13\xf8\x7e\x87\xf8\x7e\x37\xf0\xfd\x2e\xf1\xfd\x5e\xe0\xfb\x3d\xe2\xfb\xfd\xc0\xf7\xfb\xc4\xf7\x0f\x03\xdf\x3f\x24\xbe\x7f\x14\xf8\xfe\x11\xf1\xdb\x6e\xe0\xb7\x5d\xe2\xb7\xbd\xc0\x6f\x7b\xc4\x6f\xfb\x81\xdf\xf6\x89\xdf\x6e\x07\x7e\xbb\x4d\xfc\x76\x27\xf0\xdb\x1d\xe2\xb7\xbb\x81\xdf\xee\x12\xbf\xdd\x0b\xfc\x76\x8f\xf8\xed\x7e\xe0\xb7\xfb\xc4\x6f\x1f\x06\x7e\xfb\x90\xf8\xed\xa3\xc0\x6f\x1f\x11\xbf\xe3\x06\x7e\xc7\x25\x7e\xc7\x0b\xfc\x8e\x47\xfc\x8e\x1f\xf8\x1d\x9f\xf8\x9d\x76\xe0\x77\xda\xc4\xef\x74\x02\xbf\xd3\x21\x7e\xa7\x1b\xf8\x9d\x2e\xf1\x3b\xbd\xc0\xef\xf4\x88\xdf\xe9\x07\x7e\xa7\x4f\xfc\xce\x61\xe0\x77\x0e\x89\xdf\x39\x0a\xfc\xce\x11\xf1\xbb\x6e\xe0\x77\x5d\xe2\x77\xbd\xc0\xef\x7a\xc4\xef\xfa\x81\xdf\xf5\x89\xdf\x6d\x07\x7e\xb7\x4d\xfc\x6e\x27\xf0\xbb\x1d\xe2\x77\xbb\x81\xdf\xed\x12\xbf\xdb\x0b\xfc\x6e\x8f\xf8\xdd\x7e\xe0\x77\xfb\xc4\xef\x1e\x06\x7e\xf7\x90\xf8\xdd\xa3\xc0\xef\x1e\x11\xbf\xe7\x06\x7e\xcf\x25\x7e\xcf\x0b\xfc\x9e\x47\xfc\x9e\x1f\xf8\x3d\x9f\xf8\xbd\x76\xe0\xf7\xda\xc4\xef\x75\x02\xbf\xd7\x21\x7e\xaf\x1b\xf8\xbd\x2e\xf1\x7b\xbd\xc0\xef\xf5\x88\xdf\xeb\x07\x7e\xaf\x4f\xfc\xde\x61\xe0\xf7\x0e\x89\xdf\x3b\x0a\xfc\xde\x11\xf1\xfb\x6e\xe0\xf7\x5d\xe2\xf7\xbd\xc0\xef\x7b\xc4\xef\xfb\x81\xdf\xf7\x89\xdf\x6f\x07\x7e\xbf\x4d\xfc\x7e\x27\xf0\xfb\x1d\xe2\xf7\xbb\x81\xdf\xef\x12\xbf\xdf\x0b\xfc\x7e\x8f\xf8\xfd\x7e\xe0\xf7\xfb\xc4\xef\x1f\x06\x7e\xff\x90\xf8\xfd\xa3\xc0\xef\x1f\x11\xff\xd0\x0d\xfe\x3f\xda\xde\x75\xbb\x71\x63\x4b\x13\xfc\xaf\xa7\x10\xd1\xa7\x50\x11\xc9\x4d\x08\x00\xef\x21\x85\xd8\xe9\xb4\xd2\x27\xfb\x38\x2f\x95\xca\x63\xd7\x29\x1e\x96\x16\x44\x06\x45\x38\x49\x80\x07\x00\xa5\x94\x05\xd6\x72\xcf\x4c\xcf\x75\xad\x79\x80\xf9\x33\xfd\x77\x7e\xcd\x3b\xd4\x9b\xb4\xe7\x45\x66\xc5\x0d\x08\x90\x20\x53\x76\x55\xdb\x6b\xa5\xc0\x00\x10\x88\xeb\xbe\xc5\xde\xdf\xf6\x07\x2e\xf8\x03\x8f\xf8\x03\x0f\xfc\x81\x4f\xfc\x81\x0f\xfe\xa0\x4d\xfc\x41\x1b\xfc\x41\x87\xf8\x83\x0e\xf8\x83\x2e\xf1\x07\x5d\xf0\x07\x3d\xe2\x0f\x7a\xe0\x0f\xfa\xc4\x1f\xf4\xc1\x1f\x0c\x88\x3f\x18\x80\x3f\x18\x12\x7f\x30\x04\x7f\xe8\x12\x7f\xe8\x82\x3f\xf4\x88\x3f\xf4\xa0\xeb\x93\x2e\x97\x7f\x3a\xb5\x22\x04\xe7\x8a\x3b\x34\xc8\x11\x68\x0d\xce\x7c\x19\x64\x6f\x83\xf5\x16\x9e\xfc\xa1\x4f\xfc\xa1\x5f\xd4\xd4\xad\xaf\xa9\x7d\xa8\xa6\x30\x9a\x2e\x37\x33\x96\x8a\xaa\xda\xc4\x1f\xb6\x8b\xaa\x7a\xf5\x55\x75\xf6\xab\x92\xb8\xb4\x0e\x8b\xb2\x24\x54\x55\x75\x88\x3f\xec\x14\x55\xf5\xeb\xab\xda\xa7\xb1\xba\xaa\x3b\x96\xbd\x7f\x88\x3e\x24\xf1\x9a\x25\xd9\xe3\xb7\x2c\x9d\x26\xe1\x3a\x8b\x13\x59\x79\x97\xf8\xc3\x6e\x51\xf9\xa0\xbe\xf2\xde\xc1\xca\x85\x75\x55\xd6\xd4\x23\xfe\xb0\x57\xd4\x34\xfc\xba\x12\x22\x59\x9c\xcf\xa5\x91\xdd\xda\x3f\x24\xf1\x2a\x4c\x99\x33\x0f\x23\x2e\x73\xf3\xfa\xf5\xf6\x1d\xf6\x89\x3f\xec\x17\xdf\xf1\xdc\xfa\x26\x0f\xf6\x2b\x95\xd6\x65\x67\x1d\xcc\xae\xa2\x99\x68\xf2\x80\xf8\xc3\x41\x59\x55\x8d\xe2\xc4\xab\x1a\x1e\xab\xea\x3a\x0b\x92\x4c\x54\x36\x24\xfe\x70\x58\x56\x56\x23\x87\x73\x91\xd9\x3b\x58\x59\x96\x84\xab\x8f\xe1\xdd\x82\xd7\xd6\x76\x3d\xd2\x76\xcb\x45\xed\xd5\x0a\xc6\x6d\x2e\xb3\x1d\xa9\xed\x7b\x36\x97\x95\xb9\xa4\xed\xba\x65\x65\xb5\x5b\xa4\xed\xee\x6c\x11\xaf\xeb\x61\x67\x8e\xac\x20\x7d\x8c\xa6\x6f\x32\x96\x04\x59\x9c\x58\x92\x75\x7b\xc4\xeb\x7a\xd0\x76\x7d\xd2\x76\x45\x95\xb5\x7b\xa5\xbd\x5b\xe3\x00\x3b\x77\xcb\xf8\x36\x58\xf2\x4a\x38\xbb\x83\xb6\x4f\xda\xa2\x82\x9a\x1d\x52\xbe\xba\x73\xc4\x55\x6a\xcb\x25\xc0\x0d\x96\x3a\xff\xa7\xc7\x35\x93\x16\x02\xd6\xb4\xb8\x9e\xc8\xd5\xc3\xa0\x30\x65\x34\x4a\x78\x0e\xb6\xdd\xc2\x13\xff\x72\xcd\x86\x52\x69\xbc\x90\x3f\xc0\x27\x07\x5b\xd1\xe0\x17\x47\x3f\x1b\x9d\x4a\xbc\xfb\xdd\xaf\x72\x4e\x35\xe0\x9f\xae\xd9\x6e\x0a\x17\xa4\xf8\xe8\x93\xd2\x50\x89\xe5\x3b\x3d\xa7\x6b\x6d\x4f\x76\x21\x15\x4f\x6f\x6e\x98\x6d\xa3\x9b\x1b\x46\x23\xac\xfa\x54\xb3\xfb\x74\x9f\xbc\x5e\x7d\x9f\x0a\x6c\x18\xde\x2d\x28\x6d\x7e\xda\x12\xc3\x34\x6a\x7c\x22\xbd\x1b\x4e\x3d\xb2\xeb\x05\x67\x24\xc3\x2d\x01\x4a\xb6\xc2\xe1\xe0\xd4\xdf\x7f\x1a\xa2\x9a\xe7\x21\xd2\x6f\xb4\xeb\xde\x30\x4e\xc6\xcc\x77\x20\xc4\xdb\xed\x41\xa7\x3c\xa6\xcc\xf2\x99\x61\x93\xdf\xf2\x89\xf0\xb8\x88\xc8\x75\xe6\x1a\x22\x52\x8e\x51\x83\xd3\x2a\x8c\xf6\xeb\xed\x37\xa8\x22\x83\xd2\x04\xa2\x69\x2c\x7a\xda\x82\x15\x58\xf0\x74\xc7\x32\x52\xf3\xda\x76\x8b\x9d\x60\x8b\x05\x55\x23\x7e\x9b\x37\xa0\x86\xf4\x18\x8b\x10\x42\xfe\xb7\x83\x9d\x59\x3c\x15\xed\x87\x98\x46\x28\xc4\xb6\x1d\xa1\x50\xa2\xfc\xb2\xab\x25\xe3\x77\x0e\x2d\x58\x6d\x4f\x1b\xed\x3c\x8f\x18\x26\x4f\x62\x30\xb8\x7c\xc5\xd9\xaf\x5c\x9b\x7e\x0d\xfd\x2a\x5a\xd4\x91\x2d\xe2\xba\x77\xcc\xff\x0e\x31\x04\xbc\xbc\x27\xa0\x76\x10\xd7\xc2\x37\xb5\xa1\x7c\xe2\x44\x19\x16\x94\xd9\x1b\xe7\x35\xcc\xc4\xdf\xef\x60\x2d\xfe\x5e\xc3\x4a\xfc\xfd\x00\xf7\xe2\xef\x37\xf0\x28\xfe\xfe\x08\x77\x74\x36\x0a\x49\x38\xce\x26\x79\x8e\xf8\x1f\xfa\xb4\xc5\x70\x6b\x66\xed\x83\x1b\x3a\x1b\x45\x64\x3d\x8a\xc6\xd9\x84\xa0\x48\x3c\xfb\xb4\xc5\x26\x92\x52\x9c\xa0\xe5\x69\x18\x9d\xce\x24\x6a\x10\x86\x04\xa3\x29\x6d\x2c\x6c\xfb\xc6\xb6\x0b\xab\xf7\xcd\x78\x39\xc1\xb6\x9d\xa2\x3b\x58\xe2\x3c\x47\x73\x3a\x1d\xf1\x32\x92\x8c\x97\x13\xb8\x1b\x2f\x27\x74\x66\xdb\x35\x24\x88\x3f\x34\xe2\x0f\x91\x7b\xdb\x9e\x8e\x62\x34\x87\x08\x93\x47\xdb\xe6\x37\x28\x9d\x8f\xf6\xbd\x9c\x8b\x12\x65\x5f\x55\x31\x8e\xc2\x1c\x14\x44\x53\x05\xeb\xa8\xf6\x5d\xb1\x76\x95\x05\x50\x6d\x43\x57\x6f\x93\x88\x3d\x9c\xb2\x93\xea\xd6\x14\x65\x28\xc3\x3b\x7b\x50\x15\xf3\xdd\xb9\x5b\x62\xd8\x2a\x8b\x6d\xb3\x08\x53\x73\xe7\x94\x69\x36\x4a\xeb\xb9\x01\xcf\x0e\xd9\x16\xcd\x31\x59\x99\x83\x54\xd0\xaa\xf9\x28\x46\xaf\x55\xa9\xd8\xbf\x30\xc7\x64\x0e\x2b\xdb\x46\xe8\xce\xb9\x0f\x93\x6c\x13\x2c\xf3\xbc\xbc\xe6\x53\x8d\xf9\x00\xce\x81\x2f\x86\x8f\xb6\x7d\x6b\xdb\x8d\xdb\xf1\x72\x62\xdb\x01\xba\x05\x5e\x01\xc6\xdb\x93\x8d\xf3\x9a\x7a\xb0\x71\xbe\xa3\x3e\x6c\x9c\x6b\xda\x81\x8d\xf3\x81\x0e\x60\xe3\x7c\x43\xbd\x1e\x6c\x9c\x1f\x69\x9b\xdf\xf9\x33\xed\xf1\x5b\x1f\xa9\xe7\x0f\x0c\xe6\xb4\x29\x38\x92\xc7\xd5\x25\x50\x9b\x81\x8b\xde\xc0\x15\x0d\x41\x25\x6a\x98\x70\xfd\x66\xcb\x92\xc7\x02\x96\x8f\x21\xbc\x9d\x8a\x04\xba\x59\x19\x57\xbb\x55\xcc\xc7\xaf\x61\xc5\xbb\x1c\xa0\xce\xc2\xfa\x10\x46\xb3\xf8\xc1\xb6\xe5\x5f\xe7\x6d\x90\x2d\xa8\x70\xd6\x1d\xc9\x12\x52\xf7\x52\xca\x96\x73\xdb\xe6\xff\x9a\x2f\xf0\xdf\x44\x4f\x09\xb2\x0c\x77\x11\x0b\x23\x5c\xc7\x6d\xee\x04\xb7\xb9\x2b\xb8\x8d\x5f\xc3\xfc\x65\x27\x9e\xb6\xce\x22\x48\x0d\xe9\xf3\x00\xe7\x29\x11\xec\x24\x4d\x17\x99\x6d\x54\xe5\x35\x82\x41\x41\x87\x86\x92\x0e\xb5\x5d\x93\xea\x31\xe4\xbb\x78\x74\xe0\x40\x2e\x72\xe6\xa2\x24\x44\x9e\x48\x66\x44\x0e\x3c\xc7\x38\x95\x49\x40\xb2\x6b\xae\x38\x03\x57\x2b\x87\xd0\xe6\xa2\x14\x6f\x56\x8d\xd4\x50\xe5\x18\x2e\xb6\xed\xdf\xce\x39\x18\xf2\x3d\x8c\xac\x59\x78\x6f\xe1\xe7\xf2\x10\xd9\x3c\xae\x85\x43\xc1\x4f\x6a\x24\x8b\x63\x7c\x61\x3f\x31\xcf\x48\x9e\x96\x52\x56\x7b\xba\xa8\x27\xe7\x98\x9c\xd1\x57\x6c\xab\x2f\x99\x44\xdb\xe3\x4c\xa2\xb6\xd7\x27\x89\x33\x57\xd3\x56\x7b\x7f\x6f\x92\xb4\x94\x92\xd1\x18\x65\x02\xd3\x95\x0b\x1f\x10\xe2\x72\xe3\x9d\x06\x3a\xcb\xbe\xdc\x7c\x29\x7e\xda\x72\xd1\xf1\x8e\x65\x56\x18\x9d\x26\x79\x6e\xa5\xea\x72\x4f\x86\xb3\x5e\x2a\x00\x48\x29\xc7\xa5\x9b\x35\x1f\x37\x36\x2b\xe5\x38\xe9\x55\x22\xde\xb6\x6d\x24\x17\x8b\xd4\x85\xb0\x5c\x33\x5e\x9f\x78\x7d\x50\x53\xc3\x15\x62\x68\x7b\xa4\xed\x6d\x27\x7c\x05\x3d\x6b\x6a\xca\x5d\xf1\xc4\xa2\xcd\x8a\x89\xf3\x0d\xd2\x40\x9e\xcd\x30\xc8\xc3\xf4\x8d\x2e\xf3\x79\xd9\x43\x12\x66\xea\x77\x87\xff\x16\xcd\x21\x99\x26\x35\xed\xe3\x22\xc6\xc1\x9d\x59\x48\xba\x85\x1c\x28\x4f\xfb\x43\x11\x91\x5f\x47\xe4\x51\x22\xa2\xed\x55\x82\x0e\xdb\x6e\x44\x28\xa4\x0a\x30\xdf\xc0\x23\x16\x15\x1c\x78\x5b\x39\xed\x7c\xe5\xe5\xc6\xbf\xed\xf3\x7b\xd3\xfe\x2a\x88\xfe\x3e\x3b\x9d\xc6\xd1\x3d\x4b\x32\x25\xbb\x9f\x66\xf1\xe9\x3a\x09\x57\x61\x16\xde\xb3\x53\x39\xed\xd8\x14\xe2\xdb\xc7\x04\x25\x1f\x9f\x44\x28\x72\xbe\x83\x27\xa9\xf7\x10\x21\x3c\xc9\x6d\xeb\x13\xdf\x97\x7c\x86\xd7\x52\xc3\x5b\x0a\x96\x3b\xee\x4c\xc6\x5e\x4f\x9c\x4b\x4a\x8e\x9c\x98\xec\xb8\x14\x63\xdb\x07\xb9\x09\x43\x9d\xe3\x53\xac\xc9\xbc\x89\x18\x6a\xbd\xd3\x65\xb5\x9a\x4e\x81\x36\xd9\x14\x2b\xbe\x33\x20\x1d\x31\x1e\x07\xb9\x01\x57\x29\x7d\x8c\xac\x4d\x94\x4e\xe3\x35\x5f\xaa\xa9\xc5\x69\x84\xb4\x9e\x94\x82\x9a\xc4\xb0\x0e\x45\x20\x34\x43\x7d\x1f\xa3\x10\x22\xe0\x22\xdf\x01\x5d\x6c\x1c\x4d\xc6\x6c\x42\x39\x5b\xe5\xca\xa9\x4f\xbc\xae\x0f\x7d\x9f\xf4\xb9\x66\xd9\xae\x61\x20\x15\x4b\x44\xd1\x38\x7f\x88\x51\xc3\x3d\xa6\x1d\x15\xce\xda\x28\x19\xc9\xb1\x53\xb2\x18\xf1\xc4\x9a\xf0\xfc\x21\xf1\x7c\x71\x90\x75\x94\x3f\xec\xfa\xfb\xc9\x5d\x86\x98\x29\xf8\x65\x38\xcf\x0b\xa1\x34\xb2\xed\x48\x65\x40\xdb\x99\x85\xa4\x69\x91\xd3\x30\x9a\xc6\x49\xc2\xc4\x41\xe2\x7d\x3c\x0d\x0e\xa8\xba\xed\x1a\xae\x50\x5d\x64\xfd\x23\x8b\x4c\x50\xb4\x81\x47\x06\x82\x8a\x7d\xcd\xbe\x53\x8c\x6a\xc7\x57\xca\x42\x5b\x31\x02\xaf\xe3\x99\x63\x3c\x9e\x38\xd3\x78\xfd\xf8\x63\x98\x2d\xc2\x28\xcf\xeb\xdc\x44\x22\x15\xad\x19\xd0\x18\xe9\xb4\x6c\x5c\xd3\x08\x11\x83\x80\xab\x1a\x21\x57\xed\x30\x2c\xe9\xae\x8c\x7c\xe9\x8f\xca\x0e\xfa\x13\x22\x07\x14\xa6\x32\xb0\x69\x15\x46\xa8\xf4\x6e\x59\x8e\x02\x12\xa2\x25\x04\x18\xb7\x36\x10\xb4\x52\x0c\x73\xea\x09\xb5\x61\x73\x91\xda\x76\x7a\xb1\x69\x4e\x6d\x1b\xcd\x69\xcb\x83\x4d\x93\x4e\x5b\x1e\xa4\xe2\x0f\x3e\x9f\xb6\x5a\xa7\x97\xee\x39\xde\xf0\x49\x4a\x46\xc9\x38\x9d\xd0\x64\xbc\x99\x10\xe5\x66\xc4\x0b\xf8\xc3\x73\xfe\xe2\xbc\xf0\x71\x11\x6b\xa6\xdd\x27\x5e\xbb\x0f\x5e\xc7\x23\x5e\xc7\x03\xaf\xe3\x13\xaf\x23\x2c\x99\x35\x9c\xe2\xf7\x8d\xb1\xb9\x5b\xb4\xd3\x41\x56\x0c\x6b\xc2\xb9\x68\x31\xac\xc1\xde\x20\x8a\x91\x0e\x2e\x3d\x63\x28\xbd\x62\x28\x13\x3e\xfe\xc1\x81\x71\x5e\xd2\x62\x74\x37\xa3\x84\x84\x68\x03\x09\x3e\x5f\x5e\xa6\xe7\x38\x1b\xa7\xcd\xe6\x84\x16\xc1\x40\xd9\x57\xc6\xe2\x08\xf7\xf2\x3a\xae\xea\x7e\xc7\x53\xdd\x6f\xf7\xbf\xa2\x07\x57\x34\x2f\x85\x04\x9c\xc2\x86\x8f\x09\x5f\x47\x21\xda\x14\x03\x32\xa5\x31\x0a\x60\x29\xfc\x52\x98\x6d\x27\x0d\x9a\xc8\x51\x3c\x5f\x5e\x4e\xcf\x71\x38\x47\x28\xa5\x9b\xf1\xb4\xd9\x9c\xe0\x06\x4d\x71\x21\xe3\x0b\xa7\xb5\xe2\xc1\x69\xb3\x29\x9e\x65\x79\x3e\xe5\xab\x64\x83\x6d\x7b\x33\x9e\x4e\x28\x2d\x31\x68\xf9\xbd\x3c\xd7\x81\xaf\x0d\x66\xdb\x2d\x6f\x5b\x1d\x18\x97\x78\x1d\x57\x0f\x10\x1f\x98\x23\xec\xa7\xab\xf4\xf4\x7e\xb1\x2a\x7c\xa9\xa8\x8b\x81\xe2\x92\x72\xa7\x7b\x98\x2b\xc8\xbd\xe7\x51\xca\x60\x43\x7d\xfe\x67\x49\xdb\x54\xc4\xc4\x75\xf8\x9f\x39\xed\xf1\x3f\x0b\xda\x15\xe1\x3a\x73\x98\xd1\x2c\xcf\x8b\xb4\x60\xc6\x08\xa7\xb0\x2e\xd7\xdd\x0a\xee\xe1\x91\xaf\x38\x0c\x77\x34\x44\x8f\x5c\x91\x8f\x50\x0a\x6b\x68\x63\xb8\xa1\x01\xba\x2b\x46\xfe\x81\xba\x70\x45\x93\xd1\x0c\x65\x70\x83\xc9\x46\x5c\xb8\x58\xad\xae\xf3\x9b\xcb\x87\xf3\x07\x35\xaa\x8b\x3c\x7f\xe0\xa3\xca\x19\x3e\xba\xa7\xb7\x68\x45\xef\xc6\x0f\x13\x78\x80\x47\x0c\x0c\xf3\x67\x12\x7c\x35\x7e\x98\xd0\xfb\x02\xee\xfe\x1e\x57\xf3\x20\x16\x16\xa7\x86\x2b\xf5\xe5\xae\xd6\x97\x57\xf2\x77\x4f\xff\x7e\xd0\xfa\xf4\x95\xcc\x47\xb9\x52\x1e\x8a\xe1\x1c\x4d\xf5\xfc\x17\x48\xcf\xf3\x51\xcb\x23\x22\x80\x6e\x4a\xae\xe4\x6c\x56\x97\x37\x74\xba\xa4\xd3\x85\x6e\x87\x74\x3b\xd0\xef\x93\x7e\x9f\xcf\x6b\x8d\x40\xa0\xe7\xb5\xdd\xd6\xeb\xdd\x97\x13\xcb\x27\x38\x38\xb6\xed\x05\x9b\x49\x61\x83\x9f\xf8\x02\x57\xde\x54\x21\x17\xa1\xf9\xea\x5e\x72\x4a\x17\xa0\x65\x31\xf0\x0b\xba\x19\xcd\x5b\x1e\x71\x61\x46\x37\xbc\xf9\x9e\x80\x95\xb8\xf0\x05\x30\xd2\xf9\xb9\xe0\x57\x0b\x3e\xde\x53\xfc\x94\xd2\xe9\x78\x31\x81\x45\x93\xce\x64\x2a\x41\x2e\x67\xf3\x5f\xb0\x19\x2d\x2e\x5c\x32\xbf\xa0\x8b\x7d\x11\xfb\x23\x9b\x6d\xa6\xec\x94\x4b\x1a\xab\x75\xf6\x78\x1a\x70\x21\xe0\xf4\x21\xcc\x16\xa7\x51\x7c\x1a\x46\x61\x16\x06\xcb\x42\xde\x12\x9f\xdd\x8c\x16\x97\xd4\x25\xf3\xcb\xc5\x39\xaf\x1e\xcb\x06\xd8\x36\x4a\x69\x86\x52\x90\xad\x80\x65\xe9\x07\x9f\xd6\x0d\x76\xbb\x4d\xda\xed\x72\x98\x8f\x88\x4c\x03\x4f\x6d\x9f\xa1\xda\x3e\x42\x7a\x49\xd7\x6c\x1a\x72\xc9\xe5\x00\x81\x91\xe9\x3b\x0b\x9f\x30\x81\xb3\xbd\x6f\x2d\x42\x19\x65\xce\x34\x8e\xd2\x2c\xd9\x4c\xb3\x38\xc1\x79\x9e\x35\xa8\x14\x85\x6c\xbb\x11\x22\xc3\xb8\x22\x20\x05\x0a\x94\xee\x48\xe0\x62\xeb\x3c\x1f\x19\xcd\xc6\xf1\x44\x62\x79\x17\x18\xd8\x86\xc3\xa6\xa8\x90\x64\x15\xc1\x68\x48\xfa\xc3\x82\x91\x77\x8e\x88\x6b\x9d\xce\x61\xea\x50\xda\x8d\x84\x2a\x86\x91\xd4\xd8\x3b\x1d\xd2\xe1\xf2\x6c\xe7\xb9\x52\x97\x5e\xcb\x03\x45\xba\xfb\x3d\xbe\x94\xb5\x3b\x3a\xa4\xf4\x69\x6b\xb4\xa1\x30\x1d\xdd\x86\xd1\xcc\x14\x16\xb4\x45\xad\xe4\x69\xc1\xae\x2b\xbb\x57\x31\x4a\xea\x5e\x26\x7c\x16\xa6\x41\x86\x76\x9f\xc7\x95\x64\x38\xa6\x64\xb6\xd9\x33\x2e\x08\xe9\x8d\x0b\x5f\xa7\x29\x2e\x29\x5d\x44\xc7\x13\x90\x98\xe1\x99\xc0\x0c\x8f\xc6\xe1\x84\x5a\xc1\xd8\x6a\x86\x4d\x6b\x62\x9d\xa4\x5c\x6f\x2c\x4d\x2f\xaf\x21\xb0\xc0\x32\x0c\x72\xaf\x91\xd5\x8c\x9c\x9f\xe2\x30\x42\x16\x58\xb8\x69\x61\xab\x30\xce\xf1\x77\x11\xe3\xfa\x2d\xca\x40\x3b\x05\x42\x84\x09\xd7\x88\x23\x60\xa5\x99\xae\xba\x96\x6c\x1b\x6d\x0c\xbb\x9d\x79\x0b\x36\x7c\x06\xd5\xfe\xe8\x91\x7e\xaf\x5c\x24\x47\xce\x48\x3a\xca\x3c\x2d\x77\x87\xd6\xbb\x3e\x05\x77\x16\x9f\x50\xeb\xa5\x1e\x4f\x8b\xd2\xa8\xc6\x12\x52\x8c\xf7\x16\xe1\xa3\x5b\x8a\xf3\xe9\x93\x7d\xf7\x67\xeb\xcf\x85\xa1\x8b\xa8\x4d\xc1\x46\xd6\xbb\xcd\x72\x29\xf0\xf9\x2a\xf9\x4c\xd0\x6e\xd2\x66\xc3\x5c\xc0\x75\x78\x65\x2a\x48\xf0\xd3\x76\x8b\x32\x65\xab\xe0\x44\x32\xc4\x78\x94\x90\x78\xc4\xf7\x1e\xb1\xde\x6b\x5b\x09\x0a\x84\xbc\x80\x6b\x2d\x9d\x99\x58\x4f\x8c\x8d\x8c\x21\x20\x81\xb9\x11\xb5\xc6\xd4\x39\x78\x0c\xf4\xb4\x2d\x14\xd9\xe3\xe2\x8c\xb6\x9b\x61\x85\xa6\x3e\x10\x51\xbb\x52\xea\xef\x3c\x57\x54\x1f\x0e\xb1\x33\x17\x73\x39\xd4\x86\x7d\x4f\x31\x16\x2e\x49\x70\x79\x81\xcb\x97\x1b\xca\x50\x6f\xc0\xa5\x24\x86\x06\x5d\xce\x41\x18\x1a\xf4\x39\x0b\xe1\x3a\x54\x9b\x73\x0f\x86\xba\x03\x0c\x33\x5e\x53\x07\x3b\xf3\x20\xcd\xfe\xc4\x1e\x61\x2d\x38\xd4\x10\xc3\x8a\x2e\x46\xd6\x4d\xca\x27\x28\xfc\x99\x59\x70\x7f\x20\x91\xf8\x8c\xf3\x2a\xae\x9c\xbe\xb6\xb8\x0e\x84\x4b\xf4\x0b\xae\xf2\x49\x3c\x72\xca\x9c\x9b\xf9\x79\x72\x9e\xd0\xc4\x89\x04\x9b\x77\x3e\x1b\xa7\x56\x89\x49\x3d\x9e\xee\x58\xf6\xaa\xa4\xb9\x3b\x66\x25\x58\xca\x2f\xf3\xfe\x18\x77\x22\xfc\x94\x22\x06\x53\xc8\xc0\xba\x09\x2d\x0c\xcc\xb9\xc9\x68\xc6\xff\x84\x34\x14\x61\x08\xa2\x6c\xae\xe8\x2f\xbf\x5e\x16\xd7\xe3\xd5\x84\xea\x94\x48\x91\x6d\x6f\x50\x04\x09\xb0\xf1\x72\xc2\x77\x68\x41\x61\x62\x34\x35\xec\xe7\x4f\xd3\x25\x0b\x12\xd3\xe8\xa7\x29\x0a\xa3\x6b\x69\x8d\xcf\x38\x85\xe3\x2d\x80\x48\x0e\x40\x74\x1e\xd1\xc8\x89\x70\xe4\x24\x22\x07\x93\xb3\xb6\x6d\x14\x39\x6b\x1a\x39\x6b\x27\x2a\x98\x47\xa1\x8e\x44\x4e\x38\x39\x11\xad\xde\x6f\xee\x56\x3d\xb6\x07\xcb\x92\x18\x9f\x8f\xe8\x3d\x4a\x80\x89\xf9\x29\x60\x4a\x22\x27\x82\x98\x7f\xf2\x44\x7f\x48\x4c\x95\x13\x4e\x40\x35\x2c\xb6\x6d\x14\x3b\x11\x0d\x31\x84\xb6\x8d\x42\x67\x4d\x63\x0c\x09\x6f\x08\x1f\x1f\x24\xae\x42\x51\xb2\x2c\x4a\x96\xe2\x99\xf1\x6a\xd2\x6a\x6d\xb5\x59\x3d\xda\xc2\x3c\x4e\xae\x82\xe9\xa2\xd2\xcc\xa2\x81\x65\xe6\x70\x88\x68\xc0\x15\xc5\x5d\xd5\xb0\x5e\x9f\x69\x63\xbe\x94\x46\x89\x13\xe9\x4c\x98\xe7\x42\xe8\x89\x50\xe2\xdc\x43\xe2\x7c\x96\x89\x44\xce\x13\xdb\x4e\x9c\xe4\x1c\xf3\x75\xb7\xde\xc2\x22\x48\xc9\xfe\xbe\x6c\x34\xee\x51\x39\x64\x4c\x60\xd1\x2c\x6c\x3b\xaa\x4c\xb7\xda\x04\x07\x0c\xbd\xc5\xeb\xe3\xd5\x84\xbf\x3e\xe5\xb3\x33\xdf\xb3\x88\x16\x50\x97\x54\xe4\x3a\x29\x57\xd6\x28\x76\xee\x69\x42\x90\x98\xe6\x98\x3e\x85\x24\xe4\xfb\x4a\x18\x4d\x3f\x93\x0c\xee\x49\x02\x6b\x22\x56\xd1\x12\xa2\x42\xab\x23\x0d\x6f\x2b\x56\x75\x9e\x23\xb1\x4c\x62\x0c\x91\x58\x52\x11\xbf\xe4\x0b\xa5\xd9\x04\xb9\x31\xf9\x44\x8a\x3d\x19\x4e\x68\x8c\x31\xb0\x2d\xdc\xb1\xec\x2a\xca\x92\x47\x72\x0f\x29\xcb\xae\xb3\x24\x8e\xee\xf6\xda\x2c\xec\xfc\x66\x9c\x5c\x82\x9f\xe4\x98\x67\x74\x5d\x66\xa6\x71\x6e\x3e\x53\x8d\xa5\xaa\x57\xea\x16\x6a\x77\x87\x7a\x1c\x8a\x74\x17\xe7\x99\x6d\x67\x7c\x9a\x32\xce\xe9\xaa\x10\x11\x59\x89\x7c\x4d\x33\x9a\x8d\xb2\x62\xca\x33\xe7\x66\x8e\x47\x53\xe4\x82\xf5\x99\x3d\x72\xce\xc5\x46\x99\xf3\x99\x48\xab\xaf\xfe\x7d\x4f\xc6\x19\x5f\x0e\xce\xfd\x04\xeb\x7c\x18\x5a\x08\x83\x29\xf2\x44\x14\xcc\xc8\x52\x9e\x3c\x56\xf1\x36\x34\x12\x31\xfa\x73\x21\x32\x71\x7e\xe0\xf5\x89\xe7\xf5\xc1\xf3\xdb\xc4\xf3\xdb\xe0\x75\x86\xc4\xeb\x0c\xa1\xdd\x27\xed\xbe\x52\x0b\xba\x03\xd2\x1d\x40\x6f\x40\x7a\x03\x18\x74\xc9\xa0\x0b\x83\x3e\x19\xf4\x61\xd8\x21\xc3\x0e\x0c\x07\x64\x38\x80\xe1\x90\x0c\x87\xdb\x09\x74\x9f\x6d\x37\xd0\x36\x7a\x4e\xa5\xef\x58\xf6\x23\x0b\x3e\x4b\x5b\xfd\x40\x92\xfd\x81\x57\x4f\xf6\xb9\xde\xc1\xc9\x64\xdf\x53\x64\x9f\x53\xf5\x05\x5d\xa2\x2e\xa7\xfa\x4b\xd4\xc3\xb0\xa6\x2e\xac\x6a\xe3\xad\x9d\x9b\xa5\x5c\x54\x32\x9e\xe3\x1e\x6f\x4d\x06\xa0\x96\x00\x17\x01\xb7\xf0\x58\x2f\x74\x2e\x10\x73\x82\xda\x64\x22\x63\x97\xeb\xd3\xd9\x16\x6f\x4f\xee\x0d\x29\xa7\xba\xb7\x0a\x61\x51\x1d\x6d\x4a\x22\x56\xb0\x8c\x6c\xec\x4d\x0e\x6f\xe8\xe2\x9d\x2d\x5f\xd9\xa4\x4e\x65\x2e\xab\x4d\x46\xc9\xd8\xd3\xb9\x31\x9c\x40\x2a\x8b\x63\x06\xd9\x04\x1f\x24\xb2\x19\xdf\x9e\xe2\xf1\xb2\x87\x65\xd7\x33\xd9\x43\x56\xf0\x8e\x7f\xd1\x10\x7f\x81\x93\xae\x05\xef\xcf\xb8\xa4\xdb\x68\xfc\x0b\x17\xfa\x9f\xcd\xfb\x62\x75\x3e\x5f\xcb\xfb\x96\xb5\xbc\x6f\xdd\x6c\x56\x78\xdd\x1e\x93\x8b\xab\x4c\x2e\x42\x4b\x93\xc9\xd5\x74\x9f\x8b\xd1\x41\x79\xd4\xd0\xf0\x54\xbe\x69\xae\x45\x99\xf0\xca\xc9\x68\x85\xe6\x9a\x2e\x62\x47\xd6\x84\x18\x26\x89\x6d\x4f\x0b\xdc\xe5\x10\x17\x51\x7e\xc9\x58\x15\xd5\x4c\xec\xef\xfc\xe8\x42\x00\x50\xed\x7e\x91\x53\xe8\xe5\x11\x0a\x4d\x43\x24\x2c\x1f\x65\xa0\x9b\xa8\x3b\x1a\xad\x84\xec\xc6\x32\x95\xd3\x67\xcc\x47\x58\x1e\x40\xc2\x66\x9e\x66\x71\xc2\xc8\xaa\x42\x2b\x2a\x34\xa2\x3d\x20\xed\x01\x74\x7c\xd2\xf1\x15\x8d\xe8\x7b\xa4\xef\x49\xf9\x5d\xd2\x08\x4e\x17\xbe\x16\x18\xa4\xe9\x42\x5f\xd9\xd3\x7a\xbe\x16\x03\x15\x3d\x10\x04\x23\x95\x04\xa3\x42\x10\x38\x81\x98\x2a\x82\xc1\x09\x42\xaf\x23\xc5\xc0\x41\x4f\x8a\x81\x9e\xdf\xc1\x42\xfe\xeb\x1f\x34\x38\x41\x02\xc2\x34\x24\x47\xea\x8e\x46\x63\x36\x81\x5b\x7a\x07\x37\xf4\x7e\x24\xce\xea\x88\x15\xcc\x66\x16\x3c\xd0\x5b\xdb\xbe\x35\x96\xd2\x15\x7d\xda\xc2\x97\x9a\x9c\x47\x0f\x63\x36\x39\x89\xd1\x03\x30\xb0\xe4\x4a\x10\xa4\xbb\x66\x5b\x23\xae\x74\x4f\x65\xb8\x6a\x66\xa0\xca\x4a\x1d\xc3\x25\x0c\x6f\x89\xb5\x08\xd2\x7f\xd3\xfb\x77\x2c\x3b\xf0\xfe\xa9\x7e\x7d\x24\xf7\x12\x39\x58\x47\x20\x70\x3d\x6b\xeb\xa8\x7f\x47\x82\x64\x90\x2a\x97\x3d\xf6\x06\x24\xea\x1d\xbc\xad\x3f\xa0\x3b\xbd\xb5\x6d\xf4\x98\xe7\x0f\x8e\x12\xc0\x6c\xbb\x31\x37\x35\x3b\xc4\xc9\xfa\x2d\xd6\x3e\xac\x08\x3b\x11\xfb\x22\xf2\xc9\x61\x39\x33\xd7\x82\xf0\xdf\xc2\x7b\x7a\x3d\xbe\x99\xa0\xc7\xd1\xd3\x96\xb4\x5c\xf0\x70\x83\x5e\xc3\x4b\x5a\xa9\xec\x5a\xec\x34\x91\x1d\xea\x33\x5d\x20\xb3\xdf\xa2\x12\xc4\x49\x0c\x7c\xa2\x8d\x47\xdb\xae\xbc\x58\x4a\x05\xf2\x63\x19\xed\x9e\x67\xad\xd6\x39\x66\xfc\x9b\x59\x29\x23\x35\x98\xf8\x44\xcb\xe5\xb4\xea\x73\x9e\x23\x74\x4b\x33\x64\x1a\x88\xb9\xa8\x92\xc1\x2d\xa7\xe8\x72\x8b\xac\x45\x17\xef\x20\x83\xdb\x9d\x54\xc9\x09\x27\x7f\x09\xdc\x43\x34\xbe\x99\x40\x84\x21\xda\x62\xc3\x09\x89\x3e\xc0\x83\x69\xf6\xa1\xb7\x18\xd0\xcb\x3c\xff\xc4\xf5\xf2\x2f\x48\xaf\x52\x0c\x5f\x90\x58\x6e\x18\xee\x6d\xfb\x8b\x3c\xb5\xc6\x18\xd0\xa7\x3c\x7f\x8f\x79\xc9\x0d\x86\x47\xdb\x7e\x70\x84\xaa\x50\xd0\x39\xf5\x5b\x1a\x23\x6f\xe9\xca\xa9\x12\x7d\x94\x01\x83\x7b\xb8\xc1\x10\x20\x73\x03\x25\x18\x52\xe7\xdd\xd5\xd5\xb7\xb4\x51\x80\x2e\xce\x10\xef\x2f\x5c\x8d\xd9\x84\xde\x42\x88\x42\xe7\xbb\x66\xe8\xfc\xd8\x0c\x9d\xd7\x2f\xd0\x6d\x83\xde\x61\xb8\xc2\xf0\x98\xe7\x2b\xa7\x90\xf0\xf8\x2b\x70\x8f\xe1\xb6\x42\xa9\xbc\x01\xf1\xbc\x01\x78\x7e\x87\x78\x7e\x47\x51\xac\x9e\x4f\x7a\x3e\xf4\x3a\xa4\xd7\xd1\x14\xcb\x25\x7d\x17\xfa\x5d\xd2\xef\x2a\xba\x35\xe8\x91\x41\xaf\xa4\x5e\x35\x86\xee\xea\xe1\xd5\xe0\xc8\xe1\xd5\x80\x78\x5c\xd5\xee\xd6\x58\x55\x0f\xe9\xc2\xd2\xaa\x71\xdc\x5d\x52\xd8\x7c\xd8\xa8\xf4\x2a\x71\x21\xc1\x98\x48\x87\x00\x39\x0a\x3d\xe2\x79\xbd\x52\x36\xab\xb1\x37\x56\x7b\x31\x3c\xd2\x0b\xe1\x9a\x24\x0c\x34\xbc\xaa\x1a\xcb\x5d\x6d\x5f\x7a\xe2\x18\x40\x60\x34\x14\x73\xce\x57\xc6\xa7\x70\xc5\x20\xde\xbd\x61\x00\x71\x40\x50\x2b\xc0\x5d\x0e\x47\x8c\x58\xae\xd5\x64\xa6\x72\x5d\x63\xdc\xb1\xdc\xf6\xa0\xdb\x72\xfb\x2d\xbf\xfb\xc9\xed\x13\xb7\x47\xda\x43\x67\x38\x1c\xfe\x93\xd5\xa0\xb1\xa4\x3d\x05\x20\x46\xab\xcb\xbc\x76\x8b\x0b\xcd\x38\xcf\x1b\x95\xca\x76\x1f\x7d\x17\xbc\xe3\x8f\x8d\x8c\x47\x38\x13\x0f\xd3\xd7\x61\x14\x66\x0c\x85\x06\xc2\xab\x3e\xb6\xfe\x18\x44\x77\xda\xf4\xfc\x46\x22\x44\x9c\x66\xe1\xaa\x38\xd1\x3f\x29\x15\x08\xc8\x28\x53\xc9\xd1\x5f\x6f\x96\xcb\xbf\xc8\x14\xed\x49\x51\x68\xc2\x5b\x21\xae\x08\x67\x0a\xcf\x2f\xbb\x1c\x0e\x87\xc3\x91\xd5\x34\x01\xf7\xa2\x26\xb2\x5c\xfe\x9f\xd5\x2c\xd2\x2e\x73\xf9\x41\xda\x69\xa2\x51\xab\x47\x5a\x1d\xdc\xb4\x5a\x56\x33\x40\xc5\x27\x8a\x34\xff\x3b\x37\x24\x58\x0f\x6e\x5a\x9f\xcc\x52\x81\x9d\x25\x8a\x49\xa5\x16\x09\x46\xb4\x7f\xa3\x80\x28\xc4\x4d\xcb\xb1\x9a\x28\xb9\x1c\x0e\x47\x89\x98\xd2\x00\x25\xbc\xf4\x9f\xac\x2d\x89\xb7\xf0\x24\x36\x28\x5f\x6b\xcf\x36\xe7\x6a\x6b\x60\xa7\x7d\xc4\x75\xba\xcc\x4f\x4a\x99\x6d\x97\xbe\x07\xe2\x97\x0a\x74\x15\x3f\xf7\xcf\x0d\xde\x14\x47\xdd\x8b\x30\xca\x8c\xcc\x92\x48\x9b\x7e\xcb\xea\x98\x3c\x94\xef\xb4\x89\xd7\x69\x4b\x21\x89\xf7\xe5\x99\x47\xf3\x46\x3e\xed\x9a\x76\x28\x5f\x91\x60\xb9\x3c\x5d\xb1\x6c\x11\xcf\x4e\xe3\xe8\x54\xc0\xa0\xed\x9e\xba\x77\xbf\x76\xea\xee\xbb\x87\xb7\xbc\xf4\x20\x2a\xa6\xa1\xc6\x94\x57\xad\xca\x3b\x52\x95\xf0\x10\x93\x64\x56\x1b\x76\x7b\x47\x9d\x91\x2c\x83\x53\x41\xd5\x91\x0f\xc2\xf4\x83\x26\x19\xef\xe7\xb0\x56\xc5\x6f\xd2\xab\xc2\x57\x09\x74\x6a\x08\x45\x4c\xb4\x25\x13\x34\x22\x8f\x50\x58\x32\x61\xda\x96\x23\xd5\x3b\x76\xc8\xeb\x2a\x5d\xd5\x73\x3b\x4a\x2a\x75\x0f\x7a\xe7\xeb\xb3\x00\xc6\xf7\x6d\xe8\xcc\xc5\xe9\x15\xd6\x12\x41\x00\x29\x4d\xf8\xbd\x0d\x8d\x9d\x39\x2c\xa9\x7b\x5e\x18\x85\x96\xe7\x78\xa3\x7d\x10\x03\x9a\x8e\x97\xcd\xe6\x44\xc8\x74\x42\x75\x0b\x70\xf5\xb8\xda\xed\x10\xcf\xed\x80\xe7\xf6\x89\xe7\xf6\xc1\x73\x07\xc4\x73\xf9\x1a\xeb\x1d\x39\x95\xd5\xd2\x75\x57\x1f\xde\xe9\x43\x59\x2e\x65\xa7\xca\xd8\x7a\xd4\x7d\x5a\x39\x4e\xbf\x56\x8e\xd3\xdf\x29\xc7\xe9\x6b\xe5\x38\xfd\x41\x39\x4e\x7f\x03\x77\x74\x3d\x8a\xc8\x6a\x24\xdd\xa1\x85\x57\x34\x7d\xda\xe2\x5a\xff\x68\xb8\xa5\xeb\x1a\x2f\xeb\x1b\x6a\x48\x0a\x79\x6e\xca\x0d\xfc\x7e\xe9\x55\xbd\x2e\xbd\xaa\xe7\x14\xa1\x29\x6d\xcc\x6c\xfb\xce\x70\xac\xbe\x1b\x2f\x27\x78\x74\x47\x12\x3c\x5e\x4e\x60\x41\x1f\x6d\x7b\x3a\x4a\xa5\x97\xf4\xfd\x01\x67\xe1\xb4\xce\x59\xf8\xce\xb6\x03\x74\x07\x4b\x90\x2e\xc1\x7f\xc6\x70\x3b\x5e\x4e\x1a\x74\x6e\xdb\xb1\xf0\x08\x5e\x08\xb1\xe9\x46\x17\x22\xe1\x80\x3d\xc7\xdb\x93\xc8\x99\xc6\x09\xa3\x21\xfc\x7b\x78\x0b\x2b\xb9\x46\x44\xd5\xe8\xc3\x5b\x29\xc3\x28\xcf\xa3\xde\x91\x23\x5c\x79\x5a\xb2\x0a\xb2\xe9\xe2\xf8\x49\x22\x3d\x73\xce\x4e\xb2\xe4\xf1\xc9\x3a\x73\xce\xac\x31\x9b\xa0\x0c\x97\xe7\x14\xc6\x01\x46\x36\x8e\x26\xb4\xe1\x41\x63\xff\xc1\x10\x3f\xe9\xe8\x88\x8a\x8f\x14\x6f\xe3\xd7\xe4\x11\xbf\x7d\x84\xa2\x28\x6f\xd3\xde\xd7\x24\x11\x19\x00\x6d\xd8\x9d\x14\x97\xe8\xab\x2d\xc0\x25\x14\x71\xcc\xa0\xd4\x4b\x3e\x3a\x42\xbf\xf4\x7c\x97\x2b\x98\xa9\x71\xec\x0a\x53\xda\x88\xd1\xce\x39\x1e\x13\xc3\x54\x58\x98\xd8\x17\x36\xdd\xc7\x8a\x1d\x4f\xca\x27\xee\x92\x78\xb3\x4e\xe9\x53\x40\xac\xbe\xb5\xe5\x6a\xb6\xd5\xe7\x1c\xc7\xb2\x0a\x84\x5f\x06\xd6\x1f\x2e\x82\x4b\x8b\xeb\x17\xf3\xfd\xda\xce\xd0\x88\xe0\x33\x21\x2c\xf0\xcf\x9d\xec\x7f\xb5\xd0\xb2\x0e\xb8\xd1\x4b\x3b\x83\x15\xdc\x6a\x4a\x58\xf2\x0e\x9f\x52\xaa\x3d\x9d\x6c\xdb\x0a\x2c\xfe\x7b\xec\x4e\x6c\xdb\xba\x95\xd7\xde\x64\x8b\x8e\x49\xa6\x12\x6a\x38\xe5\x64\x6e\x56\x33\x60\x19\x7d\x2a\xfd\xf8\xc7\x8b\x49\x4d\xbb\xfb\x5b\xe8\x37\xa8\xa5\x97\x12\xd7\xdf\x67\xa3\xba\x9a\x1a\x1e\x24\xf4\x2c\x28\xc6\x3f\x39\x38\x12\xe2\x68\x62\xb3\x5c\x6e\xc1\x12\x3d\xd6\xe8\x41\x49\x45\x27\x7a\x12\xe8\x41\x65\x81\xd8\xbd\x7b\x95\x25\x5b\x0c\xc9\x78\x31\x41\x96\x85\xa1\x91\x6d\xb5\x5b\x88\x70\x0c\x9d\xe5\x79\x63\x9d\xe7\x96\x9a\x4b\xf5\x9d\xc6\x34\xcf\x2b\x1f\x6e\xcc\x65\x1f\x56\x7c\xf9\x8c\x17\x13\xb8\xa7\x09\x0a\x60\x01\xa2\xd7\xc7\x60\xf9\x32\xd9\x47\x4a\x37\xa3\x99\x6d\x37\xc2\xd1\xd3\x2c\x8e\x18\x69\xb8\xca\xed\x76\x55\x09\x68\x22\x3b\x77\x55\xe8\x52\x02\x99\x79\xd7\xdb\x6e\x31\x3c\xd2\xfb\xb1\x3b\x81\x3b\x7a\x3f\xf6\x26\x27\x11\xd2\x91\x86\x05\x99\x66\xf0\x88\x21\x44\x32\xfd\x88\x51\xbe\x00\x9f\xd2\x6c\x54\x6b\x30\xbd\x2b\xdc\xea\xa5\xf9\x6a\x5b\x63\xda\xac\x3e\x84\xb7\xda\x36\xad\xb5\x37\x97\x78\xbe\x0b\xfa\xec\x52\x47\x33\x77\xfb\xa4\xdb\x57\x7a\x5c\x41\xf7\x7e\x83\xb0\x58\xb7\x82\xf5\x0e\xd3\x02\x5d\x46\x4b\x71\x9a\xa9\x00\x42\xdb\x46\x59\x93\x5a\x77\xc2\x26\x19\xde\x45\x71\xc2\x5e\x05\x29\x53\xc5\xd2\x54\xb9\xda\x2c\xb3\x70\x19\x46\xba\x74\x25\x4a\x37\x51\x38\x8d\x67\xba\x6c\x23\xca\xd2\x2c\x9c\x7e\x7e\x54\x45\x8f\x16\x06\xc1\xde\xb5\xc0\xd8\xab\x11\x18\xeb\xed\x66\xc3\xaa\x2f\x83\x70\xb3\x32\x8f\x4f\x25\xd5\x0f\xd3\x57\xc2\xe5\xe0\x7a\x9d\xb0\x60\xc6\x45\xa5\x5a\x16\xa0\xe2\x71\x14\x0c\x27\xe7\xfa\xa5\x51\x63\x0d\x2b\xb8\xa7\x53\x78\xa4\x2e\xdc\xd1\x46\x63\xc1\x59\xe2\x02\x66\xd0\xc6\xe7\x8f\x17\x4b\xe9\xa0\xf3\x28\xdd\xcc\xf8\xe5\x9a\xde\x8d\xee\xd0\x66\xfc\x38\x81\x47\x48\x30\x11\x57\x2b\xbe\x73\x43\xb4\xc6\xb6\x8d\x56\xb4\xe0\xd3\x68\x45\xd7\xe3\x74\x82\x47\x8d\xc6\x8a\x44\x68\x8d\x31\xac\x6c\x7b\x7e\xe9\xe2\x7b\x2a\x9b\xb4\x86\x18\xad\x0b\x67\xa1\x7b\x98\xb7\x3c\xdc\xf2\x84\x5f\x15\xff\xd8\xfd\x25\x1d\xba\x6e\xdf\x1b\x0e\xfd\x6e\xa7\xdf\x71\x87\x43\x6f\x4f\x7e\xc6\x27\xd9\xf8\x7e\x42\xd7\xdb\xfb\x66\x73\xfb\xd8\x6c\x6a\xb7\x86\xfb\x8a\xcb\x8e\x5a\x6c\x8a\xb9\x56\xfc\x56\x7a\x07\x0f\xcd\x4b\xbf\xb7\x41\x5b\x49\x58\xca\x7c\xd9\x56\x02\x96\x98\x17\xc1\x5e\xba\x6d\xce\x5e\x9e\xb6\x30\xa5\x4f\xdb\x73\x2e\xbf\x1c\xb2\x4d\xce\x61\x21\x3f\x30\x83\xb5\x34\x54\xd2\xc5\x68\x9f\x2a\xb1\x2d\xd9\x70\x9a\x7b\x47\x23\xc4\x5f\xca\x46\x3e\xf1\x30\xdc\x52\xf7\xa4\x3e\x70\xf5\xf1\x58\x04\x69\x98\x49\x51\xba\x61\x49\x54\x2c\xf4\xa8\xdc\x4b\x66\x9c\xb2\xeb\x19\x38\x9f\x5d\xde\x9e\xdf\x2a\x47\xb8\x7b\x9a\x8d\xee\x50\x80\xd6\x94\x8d\x6f\x27\x98\xd3\x92\xf5\xd8\x9b\x60\x72\x87\x44\x01\xa6\x94\x2e\xf3\xfc\x9e\x52\xaa\x5d\xd5\x4e\xef\x4b\x57\xc5\x15\x7d\xd4\xae\x04\xe7\x0d\xb4\xa6\x2b\x65\xbb\xc3\x0e\xa7\x51\xe7\xea\x13\x21\x5a\xc1\x1d\xac\xa5\x9b\x3e\x64\x07\x2a\xc5\xce\x37\x1f\xaf\x5e\xfe\x89\x2e\x21\x71\x3e\x5e\x7d\xfa\xf3\xc7\x77\x74\x5a\x99\xdd\x36\xf1\xba\x4a\x2f\xd3\x73\x3c\x20\xfd\x01\x0c\xda\x64\x20\xe4\x8a\x1a\x75\xa7\x12\x4f\xec\xf7\x30\xb2\x22\x01\x6c\xd7\xd2\x0f\xb6\xb2\xb8\xa5\xd4\x4b\x28\x84\xc7\x22\x1c\x40\x38\x69\xf7\x88\x27\x02\xba\xfa\x35\xda\x4f\x55\xf8\xe9\x1c\x11\x7e\x94\xe7\x7e\xbf\x46\x69\xa9\x56\xd2\x3d\x52\x49\x97\xf8\x5d\x5e\xc9\xd7\x8c\x5b\xfe\x31\xf7\x7f\x65\x63\x12\x71\x6a\xea\xa4\x50\xdb\x9b\xfa\x47\x64\xd0\xbe\x5b\x06\x94\x9a\x86\x1c\xdb\x8e\x8a\x72\x15\x25\xba\x85\x27\x21\xdb\xf2\x1a\xbf\x2a\x31\x1e\x71\x22\x97\xa1\x30\xb2\x89\xdd\x21\xe9\x0e\x0b\xd5\xb6\x7f\xc4\x0f\x4d\x3b\xe2\x79\xbe\x2f\x0e\x49\xbe\x22\xf6\xc4\x10\xd0\xcc\x14\x20\x34\xf3\x08\x1a\x94\x26\xb5\x9a\x46\x60\xdb\x28\xa6\x81\xe1\x0c\xc5\x1f\x2d\x7f\xda\x76\x84\x62\x6c\xdb\xa1\x6d\x87\x88\x41\xac\xa3\x7c\x7c\x9f\x78\xbe\x5f\x10\xa5\xfe\x33\xa3\xd8\xcd\xee\x15\xbe\x4c\x89\x0e\xb0\xce\x0e\x05\x78\x8e\x18\xc2\x85\xec\x80\x77\x43\x3d\x47\x0c\x65\x63\x77\x82\x0d\xe9\x82\xff\xdc\x0d\xfd\x54\x8f\x41\x26\xa8\x42\xe5\x59\x59\xb6\x13\x7d\x5d\x79\x01\xb2\xb1\x5f\xfb\x96\xbc\x21\x5f\xed\x1c\x7e\x15\xb2\x71\xfb\xf0\xfb\xf2\xee\x6e\xf8\x69\x52\x06\x03\xf6\x8f\xfb\xa1\x19\xeb\x42\xf9\x6e\x59\x3f\x5b\x42\xc5\xdd\x33\x4e\xa0\x22\xd6\xac\x46\x14\xb2\xae\xb5\xdf\x18\x2f\x1c\x31\x6d\xa8\xb0\x30\x29\x7c\xc2\xcc\x90\x97\xfe\x11\x5e\x34\xa8\xb8\xc7\x85\x05\x8c\x02\xc4\x7b\x71\x2f\x47\x3d\xbc\x0a\xf6\xcc\x84\x17\x86\x78\x57\xe6\x49\x88\xc7\xa1\x38\x12\xc6\xa6\x6f\xd9\x60\x40\x06\xa2\x69\x47\x22\xf4\xaa\x23\xa6\x30\x4c\x52\xf1\xb7\xea\x5a\xa9\x46\x45\xdc\x51\x83\x62\x76\x7f\x50\x43\x46\xab\x5b\xb7\xcc\x2c\x70\xb4\x93\x22\xce\xcc\xb6\x0b\x43\xae\xf8\x81\x18\x16\x07\xde\x5b\x78\xd2\xdb\x6c\xf0\x55\x92\x7b\xe4\x28\x40\xc7\x6d\x0d\x8e\x98\x68\x34\xc1\xe9\x0c\x4c\xcf\xdf\x67\x68\xeb\xe5\x59\xb7\xf0\xb4\x2c\x65\xaa\x8c\xb2\x71\x2c\x64\xaa\x8c\x58\x52\x76\xb7\xa8\x38\x63\xc6\x7b\x2e\x81\x05\x39\x19\x1c\xf3\x01\x3f\x18\xcf\x05\x09\xd7\x53\x0c\xcb\x40\x38\xca\x50\x84\x12\x21\x0b\x24\x62\xd7\x67\xa8\x88\x8b\x54\xb1\x0f\x31\x65\x8e\x7c\x5c\x85\xc5\x15\x4d\x8f\x05\xed\x2b\xc2\xe7\x20\xd8\x9a\xb2\xf1\xa0\x86\x1b\xd4\x1f\xa8\x0c\xca\x03\x15\x39\xa6\xbe\x50\xfa\x9f\xb6\x27\x32\xc6\x2b\x80\x9a\x4d\x52\xa3\x43\x8a\xa3\xc9\xda\x48\x30\x05\x3b\x62\x18\xa8\x22\x14\xc0\x13\x17\x60\x88\x8c\xf7\xdd\x62\x88\xf9\x73\x4d\xeb\xd4\x00\x34\x31\x58\xa8\x3e\xa4\xaa\x04\x91\x49\xf7\x1a\xde\xd9\xe7\x9e\xb8\x0c\x86\x07\x0e\xd0\xfb\xbe\x94\x40\x39\x55\xe0\x02\xe8\xa0\x23\xcf\xcf\xc5\x60\x4c\x85\x51\xb3\xab\x5c\x6a\x76\x87\x62\x41\x1b\x68\x3c\x71\x3e\xb3\xc7\xd4\xb6\x05\x9e\xad\x15\x46\xaa\x00\x61\xae\xe5\x1f\x18\xac\xc3\xcb\x64\xad\x4f\xdc\x37\x42\x15\x5d\xab\x94\x64\x70\x0b\x37\xf0\xb0\x07\x77\xb2\xb0\x6d\xc6\x35\x8a\xf7\x5a\xc2\x7b\x3f\x66\x93\x93\x6a\x08\x85\xf4\x97\x22\xe2\x52\xb9\x3b\xed\xa1\x78\x98\xbe\xe3\xa7\x49\xe1\x4e\x73\x18\xbe\x63\xe7\x39\xb8\xa2\x95\x09\x84\x2f\xb4\x74\xcc\x5a\xc1\x35\xd7\x6a\xde\x57\x00\x09\x5e\xd2\xf7\xe3\xf9\x24\xcf\xdf\x8f\xad\xff\xf8\x1f\x8b\x21\x9d\xe4\xf9\xca\xb6\xdf\x8f\x57\x13\xf8\x4c\x5f\xe6\xf9\x03\x5a\x61\xf8\x44\x57\xa3\x2f\xa3\x07\x54\xb8\x6d\x61\xf2\x59\x3b\xc5\xbd\xa2\x05\x09\xcc\x6c\xfb\xbd\x3e\xdf\xce\xf3\x97\x5c\x38\x7f\x65\xdb\xe8\x86\x4e\xd1\xab\xf2\xb4\x8a\x61\xcc\xe5\x08\x15\xd3\x6c\x08\x13\x37\x42\xaa\xb6\x6d\xb4\x44\x37\x70\x25\x03\x98\xf3\xbc\x46\x2e\xb9\x11\xed\x0e\xd0\x0d\xcc\x61\x86\x31\x7c\xb1\xed\x97\xb6\xad\xbb\xdb\xa0\xf4\xa5\x13\x05\x2b\xce\x12\xae\x69\xc3\x85\xba\xc4\xe9\x2f\x8d\xd3\xb0\xad\x70\xe2\x6b\x3c\xe6\x39\x9f\xcd\xc6\x35\xef\xbe\xfc\xc0\x7b\x98\xc3\x67\x0c\xc2\x23\xfd\x33\xa4\xe3\xab\x09\x9d\xc1\x8a\x8b\xfb\x77\xf4\x49\x7e\x8e\x7c\x19\x7d\x26\x0f\x48\x7f\x1c\x03\x9f\x6b\x72\x2f\x0b\xc5\xbc\x63\x50\x43\x42\x3e\x6d\xe1\x51\xd8\xdb\x6f\x65\x50\x8e\xf8\xf3\x3e\xcf\x63\xf4\x1e\x6e\xe1\x8e\x2b\x22\x2a\x0c\x07\x85\xce\x07\x79\xa8\xbc\xc8\xf3\x6b\x0c\x19\xdc\x15\x56\xb0\x3b\x69\x64\xef\x12\xcf\xed\xee\x9d\x23\xeb\x2d\x2a\x4f\x92\xe5\x46\x1d\x74\xc8\xa0\x23\x79\x1f\x0c\x86\x64\xc0\x25\xe0\xc1\x11\x00\x81\xbd\x4d\x16\xd2\x86\x27\xac\xad\x92\x26\x8e\xfb\x93\x71\x34\x41\xf8\x24\x56\xc4\xd1\x1c\xdf\x50\x60\xaf\x2a\x10\xb1\x24\x5e\xa1\x18\x2a\x5e\x6c\x9c\x8a\xfa\x5b\x83\xce\x6e\x8f\x85\x58\x67\xb6\xdd\x08\x77\x7d\x90\x76\x1b\x03\x29\x8d\x65\x83\x52\xb1\x82\xf6\xa7\x5b\x9a\x92\x12\x19\x0b\xcb\x9f\xad\x59\x11\xe9\x16\x18\x8a\xcd\x86\x55\xe2\x11\x0b\xdb\xf0\xe0\xd9\x31\xac\xc5\xd7\x55\xcc\x39\x48\x83\x56\x83\xe9\xe0\xf3\xc1\x51\x3c\x82\x27\xfd\xd4\x51\x7d\xaf\xe1\xc9\xa7\x86\x07\xc5\x0d\x21\x66\xb0\x2f\xeb\x95\x67\xd0\xbc\x46\x94\xe7\x11\xf2\x5c\x7c\xe9\xfb\xae\xdf\x75\x3a\xbd\x6e\x7f\xd8\x19\xb8\xbd\xbe\x37\x50\x77\x2e\xea\xee\xb4\x7c\xd6\xf2\xfa\x0d\x1a\x21\x79\x85\xeb\x7c\x6e\x5c\x91\xbf\xaa\xc9\x85\x44\xc2\x2e\x5b\x1e\x6b\xf5\x6c\x9b\x5d\xf0\xbf\x23\xd6\x64\x2f\xd8\x99\x4f\x74\xab\x10\xc3\x2d\x6f\x4b\x22\xd5\x8b\x23\x67\x5d\xc3\x76\x21\x34\xad\xe3\x07\x88\x69\x88\x7c\x68\x75\x65\x8a\x3a\x7e\xe9\xb7\x65\xf8\xab\x0f\x9e\xdf\xc7\x2f\x90\xdf\x52\x61\xb0\x3e\xb4\xb8\x52\x6c\x74\x5f\x8a\x5e\x22\x53\x55\x4d\xbc\x0c\x97\x15\x8a\x24\x7f\x88\x71\x66\x14\x19\x66\xe8\xf0\x62\x33\x5a\xbe\x40\xe1\xd9\xe6\x2c\x68\x7a\x67\x71\xcb\x3b\x8b\xf1\x8b\xcd\x8b\x80\xa0\x84\xcb\x34\xc8\x6b\x06\xbc\x24\xc4\x2d\x94\xb5\x42\x8c\x2f\xd3\x3c\x4f\x1a\x34\xe1\x6f\x79\x67\x2e\x26\xcb\x17\x62\x51\x0d\xdb\x64\xc8\x35\xfa\x61\x8d\xd0\xb5\xd3\xd6\x65\x7c\xe7\xad\xeb\xe4\x4f\x39\xd0\x62\x90\x07\x6a\x90\x07\x23\xd6\x32\x06\x79\x19\xdf\x21\x4f\x26\xa2\x12\x43\x7c\x14\xaf\x45\xbc\x91\x86\x77\x51\xdd\xb7\xca\x89\xcd\x73\xd6\xa0\x8c\x4f\xef\x85\x2b\x22\xe1\x74\xe5\x47\x02\xc7\xbc\x4e\x9f\x8b\x8b\x2c\x0b\xac\x9d\xe0\x26\x65\x0f\x94\x91\x16\x29\x75\x61\xa3\xb9\x43\x98\x5e\x7d\xc9\x58\x94\x86\xb7\x4b\x66\xb4\xc8\x80\x8c\x81\x25\x6d\x88\xa3\x92\x9a\x28\x9a\x0d\x2a\x98\x0c\xbb\xe7\x6a\xbb\xac\x2b\x8e\x52\xf4\xb4\x15\x89\x46\xa6\x15\x7e\x1e\x20\x06\x11\xa8\xed\xfa\x14\x12\xeb\xbd\xd5\x3c\x6d\x36\x53\x78\x10\x60\x50\x78\x0b\x73\x13\x83\xec\x4f\x57\x7f\x21\x11\xbc\xbb\xba\xfa\x96\x34\x3c\x50\xf1\x1c\x64\x9f\x88\x85\xa5\x1f\xa5\x95\x3e\xae\x6e\xe3\xa5\x89\x28\xc2\x08\xda\x8d\xc8\x39\x65\x23\x91\x28\xf0\x83\x85\x9b\x12\x10\x3e\x16\x6e\xa7\xb2\xba\x8d\x51\xdd\x6b\x4b\x22\x3e\xe8\xdf\x57\xd6\xc9\x94\xeb\x21\x85\xe7\x6f\x34\x71\x42\xe1\x78\xfe\x23\x0b\x3e\xd7\xb4\xed\x40\xc5\x0d\xb7\x52\x6f\xc3\xdb\xaf\xf6\x61\x0b\x71\xf4\x3a\x61\xec\x67\x56\x67\x37\x5f\xda\xf6\x5c\x78\x4f\xd9\xf6\x46\x88\xfd\xea\x53\xb6\xcd\x6b\x02\xa6\x42\x3e\xfb\xc4\xeb\x14\x96\x72\xd3\x3b\x53\x59\x6a\x86\x47\x0c\x20\xfa\xc8\xd8\x6b\xf7\x84\x01\x44\x04\x59\xbc\xdd\x64\x22\xd0\xff\xfd\x6d\xca\x92\x7b\x96\xe4\x79\xe4\xfc\xc8\x6e\xff\x14\x66\xbb\x77\x20\xa0\x11\x17\x3f\xa6\x2c\x4d\x21\xa5\x91\x86\x57\x84\x0d\xb5\x54\xb1\x45\xa5\xba\x83\x82\x63\x26\x79\x19\x26\xb3\x17\x44\x07\xa1\x8c\x92\xe7\x9a\x29\x0d\x9c\x59\xbc\x0a\xc2\x48\x00\xca\xb3\x2f\x61\x86\xf0\x39\x3b\xe7\xec\x92\x39\xf3\x08\x18\x65\x82\x75\x09\xc6\x16\x16\xd8\x48\xb1\xe6\x98\x6c\x94\x20\x4c\x0a\x3f\xfa\x78\xbb\x2d\xae\x85\x61\x8a\x45\x19\x4b\x90\xf4\x4d\xdc\xe0\xc4\x6c\x4b\x20\x2a\xfe\x14\x4e\x3f\xa3\x25\xde\x16\x61\xbe\x8d\x98\x8f\x4c\x14\xdc\x87\x77\x9c\xcb\xf3\x4a\x8a\x1f\x4e\x9a\x05\xd1\x2c\x58\xc6\x11\xe3\xb2\x4e\x6a\xdb\xa9\x93\xb0\x34\x5e\xde\x33\x1d\x0c\x54\x14\x28\x6d\x0e\x9f\x54\x3e\x3a\x75\xb2\x05\x8b\xf8\x07\xa5\x11\xb5\x72\x53\x79\x22\x45\xa0\xdb\x23\xea\x9c\x73\x51\x6d\x41\xb5\x89\x4d\xe1\xb1\x7d\x62\x5f\xb2\x77\xf1\x8c\x21\xcb\xc2\x27\x5c\x7a\x8c\xd1\x12\x3b\xb1\x9c\x42\xb4\x80\xa7\xe9\x22\x48\x82\x69\xc6\x92\x6f\x83\x2c\x20\x0d\x77\x8b\xa1\xf2\xb1\x85\x33\x0b\xb2\x80\xce\x69\x63\xbe\x2f\x4c\x17\x21\x3a\x4f\xf3\x88\x44\x20\x74\x22\x15\x4a\x71\x22\x02\x21\xa4\x3c\x11\x62\x60\x79\x8e\x18\x0d\x21\xe1\x4a\x45\x46\x43\x15\x7f\xde\x23\x5e\xbb\xa7\xf4\x53\x6d\x0a\x1c\xfe\x86\x20\xcf\x32\x83\x6c\x68\x70\x9f\x13\xe1\x38\xbd\x96\xcb\x91\x4a\x10\x32\xa3\x46\x09\x8c\x51\xa8\xa2\x99\x81\x88\x51\x83\xda\xf3\x4d\x30\x3b\x55\x2b\xfb\xd4\xb0\xfe\x71\x8d\x9d\x32\x48\x68\xb4\x55\x01\x25\x6a\x42\x65\xb0\xbf\x2a\xe1\xd4\x93\x72\x2d\xb9\x94\xd2\x9c\x79\x6d\xa8\x1d\x7b\x10\x5d\x28\x62\x25\xf9\x40\x3c\xf7\x84\xa8\xde\x8b\x45\xc5\x6e\x2b\xdd\xb0\x2f\x82\x2d\x14\x3d\x0f\x52\xce\xa2\x4c\x71\x66\x93\xe7\x7b\x5c\x40\x9e\x97\x3d\x6d\x21\x13\x87\xa7\xf4\x5a\xd0\x5e\xe1\x9c\x66\x05\xb7\xd3\x19\x9b\xdf\x2d\xc2\x9f\x3e\x2f\x57\x51\xbc\xfe\x5b\x92\x66\xe5\x71\xda\x38\x99\xd0\x3e\x44\xa5\x85\x4b\x3b\xf5\x56\x3c\x6d\x45\x46\x1d\xb6\xc5\xd0\x6f\xd0\x0d\x7a\xda\x02\xc3\xe3\x84\x2b\x54\xb2\x91\x42\x05\x15\xe5\x19\xc6\x2a\x5e\xd5\xc2\x0d\x3e\xe0\x3b\xe7\x91\x45\x50\x16\x0d\xa4\x03\xce\x1e\xd6\xc4\x92\x7a\x30\xa5\xa1\x33\x87\x39\x8d\x9d\xf9\xf9\xe6\x72\x79\x5e\x78\xee\x2c\x60\x46\xd3\x32\x44\x57\x7a\xe7\xc0\x9a\x4e\x47\x11\x9a\x61\x1d\xc9\x3b\x45\x33\x8c\x09\x2f\x81\x15\xd5\xe7\x54\x70\x4f\xdd\xf3\xd5\xe5\xfd\x39\x9e\xcb\x4d\x39\x83\x05\x5d\x8f\xef\xa5\x7f\x0f\x4a\xc6\x8b\x09\x9d\x8d\x17\x65\x32\x8d\x64\x4b\x36\x87\x7d\x7c\x8a\x70\x72\x45\xd0\x55\x38\xf9\xf0\x88\x25\xb0\x70\x8d\x73\x5d\xe5\xf5\xe0\xaa\x99\xf7\xbb\x18\x59\x6f\xae\x6e\x3e\x7c\x7c\xff\xe9\xbd\xc5\x57\x81\x31\xb7\xdb\xfd\xa8\xe5\x0c\x12\xca\x50\x77\xc8\x75\x97\x79\x12\xac\x98\xc5\x67\x3a\x56\x3d\x95\x71\x91\x4e\x9a\x3d\x2e\x99\x33\x0b\xd3\xf5\x32\x78\xa4\x56\x14\x47\xcc\x02\x86\xfa\x6d\xec\x04\xeb\x35\x8b\x66\xaf\x16\xe1\x72\x86\x12\x0c\x89\x93\x26\x53\x6a\xfd\x14\xdc\x07\x12\x1b\x98\x58\x80\x32\x19\x19\x9d\xb1\x28\xfb\x51\x82\xcc\x69\x7a\x85\x9d\x78\xcd\x22\x84\x21\x73\x1e\x92\x30\x63\xc8\xba\x90\xaf\x5d\x16\x14\xed\xb5\x5a\xbe\x17\x7f\x3d\x53\xb7\x2c\xfe\xf8\x74\x19\xa7\x0c\xf1\x69\xcf\x9c\xd7\xe7\x51\xab\x75\x8e\x95\xe3\xb2\x11\x92\x3c\xe6\x5a\x4b\xe1\xa9\xb1\xe1\xa4\x7e\xd7\xac\xab\x28\x66\x2d\x58\x4c\xd5\x1d\x9b\xb2\x11\x4a\x2b\x06\x21\xe1\x12\xc6\xf7\x70\x0a\x95\x1b\x9b\xe5\x12\x44\x3a\x18\x86\x49\x42\x37\xa8\x12\x45\x9f\x90\xb0\x30\x43\x7b\xae\x4b\x3c\xd7\x05\xcf\xef\x12\xcf\xef\xea\xe3\x2b\x79\x98\xe1\x92\x9e\x0b\xfd\x36\xe9\x0b\xaa\xf0\x55\x6f\xbd\x63\xbe\xbe\xca\x6b\x51\xc1\xce\xc9\x8f\x88\x73\x93\x7e\x87\xf4\x3b\x02\xf9\xf8\x88\xdd\x55\xfb\x2f\xb7\xb5\x05\xd3\xed\x57\x31\xf2\xba\x83\x7a\xb0\x35\xae\xbd\xef\x08\x4f\x5c\x21\x28\xa3\x29\x03\x89\xdd\x91\xd2\x40\xef\xac\x0d\x75\xcf\xd3\xcb\xcd\x39\x96\x6e\xd0\x09\x0d\xc6\x9b\x66\x73\x02\xd9\x38\x99\x54\xbd\x21\xf5\x26\x32\xbb\xa3\xe5\x1f\xcf\x3d\xea\xfd\xb7\x67\x3e\xec\xe8\xdd\xd3\x69\x2b\xba\xa9\x0e\x75\xfb\xc2\xa6\xf6\x15\xf0\x6b\x05\x39\xc7\x47\x61\xb9\x2f\x2c\x32\x1a\x4b\x78\xb9\x40\x45\x4a\x6e\x4c\x64\x39\x85\x4f\x58\x06\x8b\x73\xc9\x41\x94\x15\xd8\x62\xa8\x11\x39\xf3\x12\xcb\x10\xd8\x38\x9b\xa8\xd5\xa3\xc8\x87\x36\x38\x16\x80\x2e\x72\xba\xd5\x14\x0b\xf9\xb0\x9c\xe8\x23\xa6\xea\x12\xfc\xc6\x6d\x73\xa5\x22\x36\x83\xc6\x21\xa0\x7b\xc8\x7e\x55\xe8\x48\xdb\xae\x1d\xa8\x77\xc1\x8a\xa5\xa3\xc3\xb7\x90\x7c\x1b\x93\xf1\xe4\xe4\x2b\xfc\x32\xb0\x6d\x6b\xac\xb0\xd4\x24\x25\x99\x58\x94\x16\x06\xe5\x8a\x56\x6d\x1a\xad\x39\x8b\xdd\xc1\xcd\x3c\x0d\x94\xdb\x34\xde\x6e\x11\xc3\x24\x94\xd0\x13\x72\x5c\xdb\xc4\x73\xdb\x7a\x3c\xc5\xa8\x1d\x73\xbf\x73\x7b\xca\x42\xeb\x16\x6c\xc3\x92\xcb\xd9\x02\xab\x20\x0b\x16\x16\xeb\xe4\xf0\x38\xd4\xea\x8e\xfc\x6b\xa1\x6a\x55\x8f\x78\x6e\x4f\xd2\x05\xd1\xa6\x1a\xad\xf1\xe0\x17\x24\x17\x4f\x15\xa4\xb3\x7b\x4c\x3f\xf0\x76\x00\x61\xf6\x58\x4a\xb0\x67\x85\xdc\xa7\xaa\x77\x2c\x33\x7c\x7a\x6b\xbb\xc6\x24\x68\x4c\x24\xce\x40\x47\x6c\x1c\x4f\x6a\xe1\x21\xcd\xc3\x57\x69\x35\x2e\xf1\x6c\xcd\x7b\xa3\xca\xaf\xb2\x6d\xa4\xf2\x8a\x6c\xde\x28\x10\xf8\x0e\xf2\xd8\x55\x92\x5e\xcd\x83\xc5\x76\x11\x63\x74\xc4\xd6\x57\x8e\x91\x62\xbf\x1d\x0f\xa3\x86\x57\xcf\x82\x8f\x83\x22\x49\xe8\x31\x4e\x6d\x5c\x58\xd2\xb1\x42\x22\x90\xf0\x1f\x49\x83\x06\xb6\x1d\xa1\x14\x12\x6c\xdb\x4b\xe9\x37\x9c\x48\x02\x7a\xae\x4f\x76\x05\xb1\xe4\x8f\xd0\x4c\x90\x4a\x2e\x81\xfc\x4b\x8c\x96\x90\xe0\x3c\x2f\xde\x29\x68\xe7\x4e\xa7\x25\xc5\xe8\x78\xa4\xe3\x19\x5d\x3f\x72\x34\x6a\xae\xf6\xfd\x69\xe7\xd2\xdb\x6f\x5e\xc7\x35\x72\x0e\x5f\xc7\x4f\xdb\xda\xd3\x56\xbd\x84\x8f\x1c\x46\xf6\xfc\xaa\x57\x74\xef\x08\xf6\x8c\x94\x20\x51\xa8\x92\x10\x08\x47\xe6\x31\x2b\xe4\xd1\x31\x9b\xc8\x83\xa5\x40\x64\x29\xe4\x22\x4e\x84\x22\xe7\xba\x19\x39\xaf\x5f\x54\xfc\x17\x13\x19\x58\xa6\x11\x3d\x20\x10\xbd\x95\x1e\xbd\x46\x84\x92\xc8\x0d\x70\x84\xd9\x96\x52\xbd\x5e\x5b\x9c\x5f\x39\xf3\xe7\x42\x90\x19\x72\xb1\xb0\xf0\x09\xf6\x1a\x21\x61\xd3\x33\x04\x63\x17\xa6\x74\x3c\x91\x12\xb1\xa2\x9f\x01\x24\xa5\x93\xfa\x54\x2e\x1c\x36\x1a\x27\x10\x8c\x93\xc9\x84\x04\x26\x07\x9e\x6e\x4d\x16\x5c\xca\xb1\x05\xc1\xac\xcb\x7f\x50\x76\xb1\xbd\xa3\xb8\xe8\x18\xf1\xbe\x8b\x9d\x8f\x6c\xbe\x64\x53\xd3\x2f\x23\xb0\xed\xc0\x89\x1f\xa2\x3f\xed\x2d\x2e\xe5\x9b\xef\xcc\x51\x2c\xce\x13\xa5\x83\xbe\x16\xba\x47\x99\x26\xc7\x09\xbf\xab\x90\x8b\x34\x71\x57\xb2\xb8\x14\x1f\xb4\x16\xea\xd5\xa5\x5a\x30\x7d\x5c\xca\x24\xbd\xca\x88\xd2\xc1\x22\x3d\x82\xd1\x5c\xef\x2c\x42\xfc\x4e\x17\x37\xad\x96\xcb\x75\x97\x96\x77\xe6\xd6\x20\x76\x87\xca\x21\x93\x6f\xff\xb6\x10\x25\x4b\x1c\x4c\xe9\xc5\x61\xdb\x56\x8b\x93\x42\x87\xeb\xeb\x2f\x33\xe4\xe2\x51\xcb\x25\x89\x34\xfc\x7a\xed\x0e\xf1\xda\x1d\xf0\xda\x5d\xe2\xb5\xbb\x46\x1f\xbe\xe2\xa7\x23\xfa\xf0\x26\xda\xe9\x81\x02\xbb\xeb\xf2\x99\x38\xfb\xe7\x71\xab\x39\x19\xb9\xe3\x2f\xff\x38\x39\x33\xba\x36\x68\x50\x1a\xa1\xb8\x69\xb9\x03\x0b\xe7\xb9\xef\x17\xbf\xbf\x78\x3d\x6b\x57\x41\xd3\xb1\xcf\x66\x2f\xcb\x43\xed\x04\xb2\xcb\xcb\x4b\x37\xcf\x51\xe0\x64\x2c\xe5\x5b\x6b\xc4\x05\x19\x17\xe3\xaf\xf5\xaf\x86\xf1\x7d\x0d\x3b\xfb\x89\x91\x86\x07\xf7\x44\xf0\xfb\x1d\x51\xe0\x49\x7a\xd3\x0a\x78\x5b\x45\x5d\xea\x72\x50\xec\xea\x5e\xda\x10\x3b\x3c\x18\xd5\x57\x82\x0b\x87\x02\x68\xab\xe2\x48\x24\xdc\x2c\xf4\xd9\xaa\x3a\xa3\x89\xb9\xd0\xab\xc7\x08\xb9\x22\xd7\xaa\x34\x20\xf1\x7d\x9c\x68\xe3\x46\x71\x68\xae\xcd\x7e\x3d\x32\xec\x89\x66\xd7\xf0\xac\x8a\x96\xd0\x3e\x12\x1e\xa4\xe1\xa8\xbd\x63\x59\x2c\x3c\xef\x88\xaf\x40\x49\x7b\x42\xce\xc0\x32\x2c\xa8\x3e\x64\xe3\x70\x02\xc9\x8e\xf4\x2e\x4f\xe0\xc4\xe7\x8e\xe8\xb9\xda\x58\xa9\x9d\xfb\xb5\xd1\x5b\x5a\xc5\xd3\x64\x6a\x49\x79\xbd\x37\xe4\xf4\x0d\x59\x56\x33\xc5\xda\xfe\xa0\x05\x57\x0b\x9f\xc8\x6c\x26\x61\x94\xae\xd9\x34\xbb\x8e\x37\xc9\x94\xd5\x51\xd1\x54\x0b\x92\x5b\x40\x87\x91\xef\x34\xba\x41\x5d\x9e\xcd\x93\xa5\x6d\xa3\x18\x25\x60\x45\x42\x95\xce\xf3\xb0\xf8\xc1\x65\x7a\x21\xbc\x4b\xcf\x31\xa4\x1f\x0d\xd4\x53\x81\xb8\x39\xb2\xac\x26\xff\x4b\x36\xd2\xf8\xa1\x36\x4f\x86\x31\x7f\x5b\xc4\xf7\xcb\x88\x50\x92\x8a\x0b\xfd\x2b\x54\x43\x47\x90\x52\x83\x79\x39\xe8\x52\x8c\xb7\xb8\x0c\x7f\x31\xf0\x62\x8a\x41\xda\x77\x8f\xa8\xc3\xa1\x5a\x84\xa9\x84\x88\x18\x8b\xc4\xf6\x95\xe3\x60\xc3\x32\xad\xb8\xde\x90\xf4\x86\x3a\x8e\x45\x6a\x21\xca\xab\xdb\xab\x4b\x2a\x52\x6b\xe4\xea\x08\x6e\xb8\xeb\xa0\x2e\xa3\x24\x8e\xb3\x74\xf5\x50\x7d\xd8\xb9\xf6\xee\x2b\xb0\x9c\x41\xa1\x43\x29\x0d\xa7\x70\xa9\x8d\x95\x69\x90\x6b\xf9\x15\xc4\x41\xde\xa0\x53\xfe\x05\x1d\xb2\x27\x07\x8d\xcd\x4e\xd3\x98\x97\x84\xd1\xdd\x69\x9c\x2d\x58\x22\x33\x77\x06\x91\x12\x3d\x4f\xe3\x44\xd8\x13\xca\x68\xc3\x58\x60\x89\x2b\x3f\x9e\x06\x35\x01\x92\x6b\xbf\xfa\x1f\xc4\x57\x05\x20\x98\x08\x14\x0c\xa3\x69\xbc\x5a\x07\x59\x78\xbb\x64\xa7\x09\x9b\xb2\xf0\x9e\x25\x46\x30\x63\x15\x06\xbf\xd3\x27\x9d\xbe\xc8\x29\xf4\x2c\x64\x17\x01\x03\xc4\x50\x4f\x20\xe9\xd5\x4e\x03\xa4\x74\x37\xae\x40\x87\xbd\xc0\x86\x06\xb0\xa4\x28\xa2\x67\xc1\x19\x84\xf4\xec\xf6\xc5\xd9\x1d\x04\xda\x90\x6d\x05\x5c\x99\x90\xbf\x42\xf9\x4b\xe0\x13\x3b\xcb\x20\xcd\xde\x44\x33\xf6\x25\xcf\x79\x41\x58\x16\x60\x98\x96\xce\xe5\x67\x08\x8f\x46\x67\xa2\x11\xc8\xb2\xf0\xd8\x9b\x9c\xa3\x65\x9e\x4f\x05\x2e\x5d\x2d\xe8\x1b\xef\xce\x46\x04\xe6\x16\x82\x8c\x88\x34\xe3\xe3\x2c\x3b\x87\xac\x7f\xb6\x9a\x1b\x27\x15\x34\xa2\x69\xfd\x01\x8d\x1a\x7f\xfd\x6b\x8a\x2d\x50\x42\xd2\x86\x6f\x43\x11\x31\x40\x37\x66\xb3\x22\x8d\x11\xb8\x01\x26\x1e\x88\x04\x38\x5e\xf1\x04\xdd\xa8\x60\x83\x51\xe4\x84\xbc\xa0\x19\x71\x42\xac\x10\x9f\x33\x0c\x53\xf1\x4a\x54\x00\x4a\xd9\xb6\xda\x5d\x91\x70\xb5\xda\xc5\x28\x0a\xa9\x77\x1e\x5e\xec\x5a\x3c\x5b\xbe\xc0\x06\x2c\xac\x4d\x25\xed\x0f\x45\x9a\xf3\x71\x38\xd1\xf0\x5d\x5b\x01\x27\xb0\x13\x87\xd6\xeb\x91\x9e\x60\x24\x75\x39\x64\xf6\x84\xfd\x30\xdd\xb5\x9a\x15\x9a\x1d\xa5\xd9\x48\x38\x18\xe6\xb9\x77\xc6\x28\xf5\xce\x32\xc2\x1a\x94\xd9\x76\xd6\xa0\x99\xe6\xb2\xc7\xf2\xc2\x68\xb7\x39\x69\x74\xda\xe3\xaa\x42\x67\x6a\x94\xf8\x95\x0d\x4a\xb3\x7d\x54\xf1\xa6\x45\x4e\xa7\x22\xb8\x36\x65\xd9\x69\x20\x32\xfd\xca\x25\xda\xb0\x2a\xb6\xc0\xa7\x94\x65\xca\x1f\xd3\x49\x77\x54\x57\x64\xdd\xdc\x88\xf7\x6e\x6e\xac\x30\x7a\xda\x96\x52\x8e\xc2\xdb\xe6\x52\x06\x52\xb1\x02\x3b\x31\x86\x5c\xc6\x15\x99\xaf\x76\x35\x66\x30\x2a\x95\xc7\x70\x3e\xc6\x28\x83\xf1\x84\x0b\x82\x12\x00\xb2\x50\x5a\x85\x5f\x88\x11\x80\x27\x5c\x32\x76\x25\x7f\x73\x02\x62\x69\x29\xe2\x3a\x71\xf1\x19\x9a\x91\x48\x19\x90\xb6\x5b\xf4\xb4\x85\x86\xa7\xc3\x9c\x30\x4c\x17\x6c\xfa\x99\xc4\x52\x40\xf6\x88\xe7\x7a\x15\x57\x7a\xed\x44\xe8\xd5\xa5\x2d\x39\x0a\xfb\x32\x54\x78\xa7\x5d\x7d\x32\xf1\x7c\xdc\x53\x81\xda\x72\x12\xdb\x76\x66\xdb\x22\x1f\xb8\x6d\x87\xce\x1c\x65\x10\xc0\x53\x35\x67\x81\x0b\xf5\x78\x67\xc2\x65\x6d\x5b\x71\x8a\x54\x36\x31\xc1\x93\x0a\x6b\xe1\xe1\xcc\x29\x26\x90\x61\xdf\x33\x1d\x38\x2b\xe0\x94\x47\x24\x22\x26\x10\x58\x19\x4d\x46\x8c\x98\x7e\x64\xb1\x48\xb8\xc4\x20\xde\xef\x8c\x4e\xb6\x50\x69\xb8\x64\xa0\x65\x93\x8f\x21\xe3\x8b\x50\x06\xe5\x45\x15\x2a\x69\xe9\x2b\x98\x8f\x42\xe5\x45\xfc\x8f\xe1\x48\x2a\x83\x1b\x40\x71\x75\xf1\xd9\x23\x46\x91\xae\xd2\xba\xfb\x42\x6f\x0d\xc7\xd6\xcd\xcd\x34\x4e\x58\xeb\xa7\xf4\x26\x5d\x04\x09\x9b\xdd\xdc\x58\x32\x1c\xb8\xf6\x0e\x7d\xda\xe2\xf3\x03\x62\x57\xb9\xb0\x65\x3b\xf9\x9f\x92\x0f\x64\xa3\x8c\x3c\x6d\xb9\x84\x63\xe9\x14\xdc\x16\xdf\x48\x52\x85\x2d\x92\x9e\x45\x8e\xba\x82\x55\x3c\x63\x44\x78\x56\x8e\xac\xf5\x26\x61\x16\xb1\x24\x71\xb6\x60\x1a\xaf\x1f\x93\xf0\x6e\x91\x11\xeb\x5f\xff\x9f\x53\xdf\xf5\x86\xa7\xdf\xb2\x28\x4c\x4f\x3f\x6c\xd2\xc5\xe7\x20\x61\xf7\xa7\xe8\xe7\x65\x1c\x26\xf1\xf4\xb3\x93\x6c\xb0\x25\xe4\x1e\x29\xef\xa8\x70\x78\xe5\x2b\xe6\xd5\xa5\x75\xd9\xd5\x21\xda\xed\xe7\xc3\x01\x97\x26\xa3\x40\xc8\x08\x75\x51\x09\x25\xe5\xcf\x73\x09\x37\xc0\xb9\x1b\x0a\xb0\x70\x18\xce\x48\x88\x92\xca\xaa\x92\x00\xad\xda\x01\xd7\xab\x4b\xf5\x72\x08\x06\xe4\x2b\x68\xbe\x8d\x86\x08\x74\x30\xbd\xd8\x46\xca\x55\x5f\x9c\x8f\x54\x4e\xa5\xbc\xc2\x8d\x5f\x40\x60\xca\x95\x5f\x98\x4b\x8e\x66\x86\x69\xab\xc3\x89\xee\x6f\x41\x69\x2f\x62\x3b\x0a\xe1\x05\x71\x0d\x0d\x0b\xd0\xf6\x44\x44\x09\xeb\x03\x30\x7d\x76\x74\xe1\xe6\xf9\xe6\x92\x2e\x47\x6c\x64\x59\x8a\x6e\x12\x14\xd3\x54\xe8\xe6\xaf\xe2\x19\x7b\x99\x71\xe9\xe0\xa2\xdb\xf5\x87\xbd\x3c\x8f\x2f\xbb\xbd\xb6\x37\xcc\xf3\x4d\xd3\x93\x11\x4d\x28\xd8\x79\xb8\xe9\xf1\xc7\x7b\x6d\xdf\xcd\xf3\xe0\xb2\xdb\x6f\x77\xda\x23\x36\x4a\xb5\xb2\xbf\xc1\x24\x26\xfc\xb7\xb4\x53\x6f\x60\xd3\xf4\x31\x09\x5a\xe2\x8d\x26\x8a\x5b\xe2\x4b\x17\x17\x9e\x8b\x9b\xbd\x6e\xb7\xdd\x53\xa7\xeb\x43\xe2\xb5\x87\x32\x98\x52\x64\x7b\x3c\xe6\x51\xef\x1f\x1f\x3c\x28\x33\xe4\x64\xfb\x49\x3b\x54\x68\xc3\x7f\xb0\x9a\x49\xd3\x3a\x9d\xc5\x2c\xe5\x9c\x36\x98\x4e\xd9\x3a\x3b\x4d\xd8\x1d\xfb\x62\xe4\x8d\x28\x86\x59\x11\x17\x19\xec\x39\xf0\xc9\x40\xe6\xa4\x3c\x62\x2f\xd2\xe6\xbc\x9e\xb2\x16\x75\x05\x90\xec\x99\x75\x76\x07\x75\xe9\x2f\xa4\x6f\x82\xfa\x9e\xb4\x0b\xa5\xd4\xba\xb0\x9a\xda\xa3\xde\xb2\x94\x06\x96\x36\xa9\x75\xca\x5b\xff\xf7\xd4\xfa\xfb\xa6\x7a\x23\xc2\x45\xd4\x76\x00\x96\xfd\xb7\x4d\x9c\x9d\x5b\xb8\xf9\xf7\xd6\xdf\x63\x48\x9b\xd6\xa5\x00\x5c\xbe\x38\xb3\x9a\x19\xff\x71\xc8\x23\x5a\x6b\x21\x4f\xdb\x93\x44\x5a\x0e\x53\x69\x39\xfc\x20\x2c\x87\xe1\x7e\xe4\xb3\x0c\x8e\xe6\x9f\x29\x62\xa9\x39\x6d\x73\xb2\xf8\xfb\xf8\x81\x25\xaf\x82\x94\x21\x9c\xe7\x99\x52\x6f\xf9\x83\x5a\x58\x6c\x6f\x31\xe8\x38\x13\x48\x8c\xe1\xdd\xb1\x3b\x1e\x4b\x2f\x23\xe2\x18\xa5\x41\xa8\x5d\x0c\xf3\x61\x77\x6f\x9d\xe6\xa0\x3a\xce\x15\x13\x63\x19\x8c\x34\xb2\x4e\x2d\xa2\x1e\x4c\xb8\x08\x1f\x29\x30\xde\xe9\x05\xdd\xe4\xb9\x65\x51\xba\xd4\xa6\x90\xf4\x44\xba\xb5\x4c\x5b\x1b\x58\x50\xa5\xbc\x2c\x41\x78\xd8\x4d\x59\xb8\x44\xf3\xb3\x02\x5b\xbe\x18\xa9\x85\x1e\x89\xb9\x6d\xa3\x05\x5d\xa8\x2d\xe3\xc2\x1c\x63\x08\x46\x8b\x66\x4a\xd2\xe6\x42\x6e\x8f\x36\xf1\xda\xed\x22\x2b\x44\xb9\x4d\x9e\x2b\xd9\x3c\x83\xe2\xc8\x09\x2d\x09\x8b\x00\x0f\x82\x84\x5a\x96\xc8\xb5\x28\x31\x22\x63\x4e\x51\x62\x2e\x1a\xbb\x35\xb8\x42\xaf\xe2\x4d\x94\x29\xd9\xf5\x96\x9d\x46\xec\x4e\x44\x26\x5a\xca\xf8\x1f\x5f\xba\xe7\x28\xbe\xbc\xbc\xa4\x1e\x96\xa1\xc6\x19\xc6\x9e\x1d\x73\x6d\x86\x5f\xef\x64\x05\xd9\x25\x09\x47\xe4\x9d\x5e\x49\x12\x2a\x70\x0a\xc2\x32\x98\x52\x6b\x6c\x35\x83\xa6\x35\xb1\x60\x43\x0d\x8d\x29\x6d\xa6\x4d\xeb\x85\xc5\x29\xa7\x2a\x95\x25\x7f\xb0\xaa\xde\x82\xe5\xb7\x42\xfa\xb4\x85\x94\xc6\xfb\x0e\x88\x8d\x46\xc0\x77\x02\xce\x73\xeb\xd7\x5f\xfe\x8f\x7f\xfd\x2f\x56\x83\xaa\x0b\x51\xbc\x15\xde\xa9\x7c\x4f\xa5\xa3\x0c\xcd\x31\xe1\x4f\x9f\xf0\xed\x1c\x8e\x93\x09\xdd\x98\xdb\x2c\x2d\xb7\x45\x28\xfc\x10\xa7\xc2\xd4\x59\x2f\x5b\x30\x6a\xd2\x28\xf0\xb8\xdc\x89\x18\x2d\xb4\x59\xb4\x01\xcb\xc2\x18\xfc\xbd\x1b\x4b\x79\xa3\x02\x61\x25\xa2\x53\x95\xe5\xb2\x7e\x33\xd6\x48\x70\x06\x5c\xce\x5f\xb3\xbf\x46\x7f\xbd\xff\xeb\xfc\xaf\xc9\xe9\xbf\xfe\xd7\xff\xf6\x7f\xfd\xf2\xdf\xfe\xeb\xff\xf9\xeb\x2f\xbf\xfc\xfa\xcb\x7f\xfe\xf5\x97\xff\xe1\xd7\x5f\xfe\xc7\x5f\x7f\xf9\x9f\x7e\xfd\xe5\xbf\xfc\xfa\xcb\xff\xfc\xeb\x2f\xff\xcb\xaf\xbf\xfc\xaf\xbf\xfe\xf2\xbf\xfd\xfa\xcb\xff\xfe\xeb\x2f\xff\xef\xaf\xff\xf9\xff\xfe\xff\x7e\xf9\xe5\xaf\x1b\xdf\xf5\x07\xe2\xdf\xe1\x5f\x37\x73\x36\x9f\x5b\x4a\xe5\xaa\xcb\x60\x54\x28\xfa\x95\xf8\xf2\x7e\x4f\x1d\x81\xb7\x65\x58\x49\x77\xa8\x70\x5a\x5d\x2c\x06\x52\xfb\x00\x2e\xe8\x94\xeb\x2f\x6f\x56\x2b\x36\x0b\x83\x8c\xc1\x8c\x4e\x25\x74\x5c\x59\xb4\xa6\x53\xe7\x2d\x4b\xd3\xe0\x8e\xbd\x5a\x04\x51\xc4\x96\xb0\xa2\x53\xe7\xdb\x30\x5d\x73\x9d\x06\xee\xa9\x0b\x8f\x7c\x41\xdc\xed\x47\xee\x37\x85\xba\x1e\xce\xd1\xe3\x4e\xfe\x3f\x3e\x4b\x1a\x7c\x95\x2f\x01\x65\xf7\xe2\xd7\x90\x21\x4e\x05\x6f\x2b\xbb\x52\x63\x12\x08\xd7\x36\xbc\x3d\x59\xd8\xf6\x2c\xcf\xd1\xe2\x40\x46\x9b\xf1\x04\x12\xea\x9d\xef\x41\x3d\x27\xe7\x58\x23\xf8\x14\xda\x75\xd2\x6c\x96\x67\x23\x8f\xe3\x66\xf3\xbe\xe2\x2b\x9f\xd6\x99\xa0\xd8\x88\x95\xa9\x12\x19\x86\x0c\x6f\x21\x42\xf7\x18\xee\xb7\x66\xfc\x0d\xc3\x4f\x46\xc7\xb6\xb0\xe7\x64\x39\xc7\xa3\xa8\xda\x85\xd2\x75\x31\x40\x77\xc0\xc0\xc3\x78\x4b\x56\xb6\xbd\x72\xa2\xf8\x61\xe7\x61\x51\x66\x3e\xb7\x1e\xa1\x98\xa2\x50\x98\x44\xd6\xd8\xe1\xab\xd1\x87\x50\xfc\xf5\x9c\x38\x5a\xc9\x59\xa4\xb7\x02\x09\x3b\x76\xd6\x71\x9a\xa9\x99\x85\x98\xd7\x40\xa6\x4e\x30\x9b\x5d\xdd\xb3\x28\xfb\x3e\x4c\x33\x16\xb1\xfa\x28\x59\xe3\x45\xdb\x6e\x4c\x9d\x70\xc5\x3f\x71\x2d\x5c\x2a\xd2\x11\xaa\xb6\x72\x6a\x7e\x07\xb1\xa6\x65\x01\xa7\x36\x5b\xd8\xff\x18\xb2\x54\x13\x2d\xb8\xe5\x2a\x2e\x26\x11\xb5\xe2\x28\x61\xc1\xec\x31\xcd\x82\x8c\x4d\x17\x9c\xcc\x5a\x61\x74\xba\x44\x96\x74\xe1\xb0\xaa\x9e\x03\x9b\x8a\x53\x93\xf1\x14\x76\xf6\x2b\x32\xe7\x79\xe3\x24\x6c\x15\xdf\x33\xf9\xa2\x04\x9c\xb8\x2b\x6c\xca\x55\xa0\x8c\x54\x62\xe6\xc5\x9b\xac\x18\x7d\x10\x56\x99\x1d\xa3\xc4\x02\x24\x82\xfb\xac\x88\x92\xd4\x28\xce\xc2\x4b\x48\x59\x57\xdb\xa4\xaf\xf2\x2c\x88\x4d\x7e\xcc\x80\x2f\xd9\x97\xcc\x59\x15\x7c\x81\xb8\x48\x5f\xf5\x15\x81\x1e\x49\x8f\x27\x7c\xe1\x8e\x42\xc4\x9a\x22\x79\x4e\x5c\x98\x15\x15\x8f\x11\x5f\x3f\x62\xcf\x2f\x98\xe7\x91\xa4\x52\x85\x97\xa6\x79\x42\xe2\x9e\x54\x71\xb8\x94\x00\x91\x19\xde\x9b\x26\xfb\xfc\x31\x89\xa3\xbb\x53\xb9\x63\x0d\x21\xb4\xc2\x0e\xcb\xbc\x47\x5e\x5d\x06\x32\x23\x0c\x84\xcb\x1d\xcf\x8f\x3c\x3d\x0d\xd3\x77\xc1\x3b\x15\xca\xe1\x12\xc4\x2e\xdd\x51\x48\x22\x8c\x8a\x60\x02\xaf\x2e\x1b\x57\x61\x39\xe9\x3f\x53\xa1\x89\x76\x85\x69\xed\x38\xe8\x1d\x4d\x70\x65\xce\xff\x81\x49\x37\xe0\x19\xf9\x64\x8b\x31\xdf\x43\xe1\x20\xee\xce\xbc\x1f\xcd\x1e\xf5\xb5\xce\xa8\x58\xe8\xa8\xd2\x23\x51\xeb\xd7\x92\x19\xb6\x8f\xc0\xd4\x89\x3c\x99\xa5\xf5\xaa\x2e\x41\x4f\x45\xc6\x0b\xe7\x48\x98\xaa\x0c\x0d\x69\x68\x1a\x35\x4a\x71\xa8\xe7\x6b\xf8\x0f\xc5\x26\xbd\x4e\x57\xf1\x49\x15\x7d\xd9\xd6\x69\x2c\xbc\x9e\xc4\x2f\xee\xfb\x0a\xbf\xd8\xeb\x4b\xfc\x62\x31\x15\x2b\x2d\x7b\xdf\x8b\x92\x01\x86\x47\x9d\x7c\xed\x4e\x7b\xa4\xdd\x2a\xeb\xd3\x8d\x3a\x10\x79\x50\xf6\xd1\x2b\xed\xa6\xf3\x45\x01\x93\x5c\xab\xe0\xd8\xf7\x3a\xfa\xf3\x65\xe9\xcc\xf5\x59\x63\x94\x7c\x52\x16\x21\x78\xa5\xd1\xb1\xde\x2a\x18\xf6\x8f\xd2\x93\x05\x3e\x08\x23\x52\x1f\xc3\x4f\x22\xc7\x7b\x07\xc3\xb7\x2a\xce\xf4\x9d\xc2\x61\x7e\xa3\xf3\x73\x7c\xcf\x5f\x71\x31\xbc\xe6\x3d\x1e\x62\xf8\x59\xd9\xfc\xfe\x48\xa5\xe9\x13\xbe\xa1\x3f\x3b\x73\xf8\x33\xfd\xa3\x33\x87\x1f\x69\xe8\x94\xbb\x14\xfe\x46\x43\xa7\xd0\x26\xe1\x07\x1a\x3a\x7f\x0e\xa3\x6c\x20\xac\x9d\xf0\x97\xdd\x90\x76\xf8\x8e\x6e\x64\xa8\xfa\x37\x9b\xf9\x9c\x25\xf0\x27\xba\x71\xbe\x0d\xb2\xe0\x87\x90\x3d\xc0\x1f\xe8\x5b\xe4\x62\xf8\x07\xfa\x16\xf9\x18\xfe\x91\xbe\x45\x6d\x0c\xff\x44\xdf\xa2\x0e\x86\xff\x44\xdf\xa2\x2e\x06\xc6\xe8\x5b\xd4\xc3\x90\x31\xfa\x11\x35\x5c\x0c\x89\xb8\xf0\x30\x44\x8c\xfe\x24\xf1\x47\x52\x08\xf9\xf5\x67\xf6\x98\x42\xcc\xaf\x54\x10\x22\x04\x8c\xfe\xa5\xb4\xe6\xbf\x9f\x43\xca\x0b\x12\x91\x78\x0a\x36\xe5\xf5\xc7\xf0\x6e\x91\xc1\x92\x17\xfc\x14\x87\x11\x4c\xf9\x55\x1a\x27\x19\xcc\xc5\x95\x48\x44\xb4\xe0\x97\x85\x5f\xdd\x4c\xfe\xaa\xe0\x1b\xae\x19\x7d\x55\x09\x26\x5c\x89\x82\x6a\x46\x9c\x7b\x46\x3f\x21\x8b\x8f\xcd\xec\xa6\xe2\xa3\x0e\x8f\xe2\xce\x8c\xcd\x77\xca\xef\x18\x4d\x9d\x57\xef\xdf\x5d\x7f\xfa\x08\xb7\xfc\xfa\xd3\x5f\x3e\x5c\x7d\x0b\x37\xfc\xf2\x87\x37\x57\x3f\xc2\x03\x1f\x23\x0f\x6a\xe5\xe3\x97\x0c\x7d\x40\x0c\xd8\xf8\x91\x4d\x84\xb8\x82\xe1\x8a\xd5\x09\xf0\xa7\x1e\xa5\x42\x7e\xf8\x41\x44\xae\xf2\x49\xf5\x7a\x62\xe6\xd0\xd8\x9b\x60\xe7\x56\xcc\x1f\x1e\xbb\x93\x2d\x86\x2f\x8c\x36\x1a\x3f\xd8\x76\xa3\xf1\x83\x71\x80\x94\xb2\xcc\xb6\x2b\x55\xcb\xfa\x3c\x09\x6c\x2e\xac\x7d\x70\xcd\x6a\x55\xee\xb5\x52\xb0\x12\xae\x60\x25\x7f\xa7\x8f\x05\x7e\xd4\x5c\x21\x9e\xcf\x53\x96\x55\xb8\x02\xbc\x67\xbb\x2c\xe8\x41\x84\xdf\xdc\x32\x99\x29\x53\xd3\x43\x15\xd0\xfe\x37\x13\x58\x27\x38\x15\x53\x20\xb3\x8e\x35\xb8\x54\xf2\x72\xb7\x61\x22\xa7\x93\xac\xf1\x5e\xd5\x88\x75\x4d\xd6\x9b\xac\xb6\x26\x33\xec\xc0\x68\xac\xce\xc2\xbe\x85\xcf\xbb\x5f\x51\x4f\x7c\xda\x9d\x27\xf8\xb4\xfb\x64\xe9\x3a\xef\x42\x44\xb5\x27\x19\x84\xf4\x25\x13\x91\x12\xe7\x11\x17\x73\x85\x3e\x95\x09\xe1\xb6\x38\x4c\xdc\xc2\x2b\xb6\xa7\xcf\x7d\x23\x2e\x0e\x24\x1d\x91\x70\xf6\xb3\x71\x32\x11\xb1\x60\x6f\xd9\xc1\x93\x39\x69\x8f\xbb\x3a\xe0\xcc\x3f\xa5\x9b\x03\x69\x56\xe6\xa5\x29\x78\x0a\x0b\xfa\x19\xa5\x32\x93\x8c\x38\x16\x5a\xd8\x76\xe3\x0b\x5a\x28\xac\xa3\x80\x2e\xa4\x3c\x96\x62\x10\x29\xb5\x32\xea\x9e\x37\x04\x5c\x4b\x05\x9b\x28\x6b\x36\x71\x24\xa5\xfc\x58\xe5\x62\x3e\x49\x69\x24\x72\xc7\xcd\x6d\x7b\x73\xe9\xdb\x36\x9a\xd2\x25\x9a\x82\x99\xab\x12\x7c\x11\xe7\xe2\x42\x42\x57\xa8\xc8\xad\x2f\xc7\x55\xc4\x9c\x27\xf8\x3c\xb9\xcc\x44\xf5\x02\x15\x73\x3e\x9a\xa2\x74\x9c\x4d\x20\xc3\x84\xff\x35\xc6\xf9\x63\x45\xb4\x2c\x11\xc8\x5d\xc8\xf6\x07\x27\x29\xbe\x90\xe1\xf3\xec\x92\x9d\x63\x61\x75\x2a\xdb\xc6\x8c\x49\x4c\xb6\xf0\x41\xed\xba\xca\x16\x9b\xb1\x32\xdc\xfc\x07\x91\x73\x04\xc3\x4f\xac\x26\xe8\x77\xa6\xe1\x54\x3e\xb0\xd1\x5c\xbd\xf4\x9e\x29\x3b\x07\xd1\x57\x15\x56\xfc\x2d\xa3\x4f\x65\x6a\x56\x52\xbb\x70\x5f\x57\x6b\x02\xbe\xa8\x9e\x97\x84\x15\x6f\x81\xdd\xb3\xe4\xb1\x2e\xa4\xee\x9f\xcc\x0a\x9f\x97\xb8\x07\x6f\x61\x1e\x2e\x97\x75\xb5\x7d\xaf\x7a\x5e\xdb\xc9\x79\xb8\xcc\x58\x52\xf7\xda\x67\x35\x3b\xff\xf0\x3b\x1a\x23\x2a\x8e\x66\x75\xd5\xfe\xa7\xdf\xd9\xb7\x68\x26\xd8\x58\x5d\x95\x8c\xfd\xbe\x3a\x6b\xf2\x27\xfd\xe1\x77\xd5\x14\x4a\x06\x5b\xd7\xb6\xe4\xf7\xb5\x2d\x8c\xa6\xcb\xcd\x8c\xd5\xe5\x60\x39\xcd\x7e\x5f\x95\x9c\xb7\xd7\xc6\x6f\xb2\x63\xeb\xc3\x90\x1f\xea\x5e\x0e\x8e\xbe\xbc\x0a\xd6\x75\x2f\x3d\xfc\xbe\x0e\x48\x69\xa5\xae\xc2\xf4\x68\x2b\x0c\x29\xa7\xee\xe5\xcd\x57\x5e\xbe\x67\x49\xca\x6a\xb3\x91\x41\x46\xf5\x3b\x25\x51\x2b\x35\x2e\x94\x9d\xf9\x9c\x64\xbb\xe7\xd1\x45\x72\x8e\x25\xba\xfa\x38\x9a\x80\xfc\xdb\x6c\x4e\x64\x49\xab\x95\xa9\xb2\xcc\x4c\x08\xbc\x08\xd3\x2d\xa4\xf1\xaa\xb6\xc7\xff\xf8\xbb\x46\x90\x0b\x75\x75\xb5\x4d\xd9\x2e\x19\xe3\x0f\x6f\x6e\x05\x53\xaf\xcd\xf1\x53\x3c\x19\x15\x38\xad\x10\xd2\x47\xc1\x89\x0d\xb6\x8f\x3e\xa0\x04\x12\xc1\xd5\x31\x4a\x94\x14\x05\x89\x73\xfb\x98\xb1\xf7\x42\xa6\x69\x86\x2f\x12\xe7\x9b\xbf\x7c\xba\xba\xbe\xf9\x70\xf5\xf1\xe6\xea\xfb\xab\xb7\x57\xef\x3e\xc1\xca\x48\x4c\x9d\x8d\x22\xf2\x88\x32\x88\x30\x6e\x85\x42\xd5\x7a\x77\x40\x8c\xd0\x24\x6b\x97\xc0\x83\x08\x4e\xd9\xc2\x9b\x2a\x23\xd7\xb7\x95\x9e\x7e\xcd\x90\x39\x6c\xe0\x71\xad\x5d\x88\x02\x3a\xbb\xa4\x64\xf4\x21\x5d\xa1\xa8\x60\x94\xb1\x84\x36\x0c\x9b\xd9\x65\xb2\x2b\xb6\x95\xca\xbc\xb4\x80\x5f\x84\xe7\x58\x4e\x74\x33\x9e\xd0\x68\x1c\x37\x9b\x93\x2d\x7c\xcf\xe8\x93\x06\x0e\xd9\x67\x5c\xf1\x2e\xb3\xda\x4a\xe0\x91\xfd\x27\xc3\xfd\x27\x15\x72\xc9\xfe\xb3\xd1\xde\xb3\x5b\x78\x7d\x60\x54\xa5\x10\xc8\xc6\xb7\x6c\x62\xdb\x3a\xae\xbd\xf0\x36\xcb\x6c\x5b\x66\x81\xb0\x6d\x65\x8b\x6e\x66\x98\xd2\xc2\x07\x70\x0b\x3f\x1f\xa8\xf7\x35\x17\xdc\x32\x7a\x27\x63\x8c\xf0\x68\x8e\x7c\x19\x28\x44\xfe\x2c\x6d\x34\xf0\xc7\x7d\xb9\x4d\xd9\xdb\xd1\xce\xcb\xb6\xfd\x80\x12\x2e\xfc\xa2\x04\x2c\x95\xd3\x00\xe7\xb9\xf8\x29\x92\x87\xa8\xeb\x54\x5e\x8b\xd8\xbe\xc2\x81\x41\xdd\x7b\x48\xc2\x4c\xa2\x91\xda\x76\x23\x71\xf4\x4f\x75\x97\x15\xde\xfc\xea\x7e\x59\x30\xfa\xa6\x70\x64\x94\x9e\x8d\x0a\x18\x92\xe1\xed\xc9\x1d\xcb\x73\xf4\x47\x67\x4e\x7f\x66\xf0\xb3\x33\xa7\x7f\x64\x18\x02\x14\x38\xd7\xcd\xc0\x79\xfd\xa2\x71\xc7\x4a\xef\xfb\xa7\x43\xc1\x5a\xe4\x67\x06\x95\x20\xb5\x47\xf2\x47\x26\xb0\x9c\x8c\x89\x5d\xa8\x19\x15\x7a\x86\x6d\xa3\x05\xa3\xb3\x3a\x41\x68\xc9\x2a\x1e\x90\x62\xed\x7f\xc3\xe8\x0c\x3d\x71\x89\x07\x9f\xcc\xd0\x37\x0c\xbe\x67\x18\x16\xfc\x62\xcd\xaf\x95\x9e\x89\x41\xdc\x7b\x12\x0a\x21\x79\xc7\x44\x02\xb0\x37\x0c\xa6\x75\x69\xb5\xf0\xd3\xb6\x40\xbc\x27\x8b\x5d\x30\x7c\xf2\x13\x6f\xff\x2b\xc6\xeb\xb3\x24\x55\xb0\xc0\xba\xb5\xca\xb2\x82\x40\x58\x60\xc5\xd5\xf2\xef\x75\x9c\xd2\xb2\x2c\x2f\x62\x97\x98\x85\xe1\x1b\x5e\xb4\x62\xc7\xa4\x7b\xbe\x98\xb7\x47\x70\xb4\x60\x53\x24\x04\x6b\x22\xb4\xa1\x8d\xc6\x06\x8f\xac\x57\xcb\x60\xb5\x66\x33\x8b\x58\x16\x6e\x2a\x30\x24\x98\x53\xb1\xc2\x9a\x0c\x66\x54\xac\xaf\x26\x83\x35\x0d\xc7\xcb\x09\x3c\xd2\x75\x9e\x8b\x23\x82\xb5\x6d\xbf\x47\x6b\x0c\xb7\xb4\xb1\xce\xf3\x46\xea\xbc\xfc\xe6\x07\x9d\xb8\x69\x6d\xdb\x26\x90\xf1\x67\xb3\x29\x4a\x53\x49\x0e\xf5\xa5\xfa\xa8\xb2\x00\x39\x37\xb3\x82\x06\x3b\xf7\xe3\xf9\x04\x25\x2f\xb2\x66\xe4\xc4\x70\xc5\xf0\x56\x4b\xf5\xbb\x09\xdc\x6a\xeb\x2c\x0f\xa7\x45\xad\x12\xe2\x00\x29\x1b\xa3\x40\x55\x41\x91\xb0\xaf\xba\x24\xba\xf4\xbb\xdd\x91\xdf\xed\x12\xbf\xdb\xb5\x23\x0c\xa1\x73\x3f\x9e\xc9\x6f\x87\x4e\x0c\x91\xf9\x75\xc1\x61\xca\x1d\x24\xc2\xf9\xb7\x27\xb7\x23\xb4\xa6\x09\xaa\x36\x00\x42\xfc\x34\x45\x0c\xd6\xb0\x04\xeb\x66\xa6\x72\x95\x08\xc5\x0b\x36\x30\xa7\x2e\xcc\x24\x09\xe6\x14\x40\xe9\xad\x89\xe9\x8a\xf6\x5d\x9e\x5b\x86\x11\xc6\xa2\x14\x6d\xe8\x0d\x7f\x38\xcf\xad\x6b\xe1\xcc\x53\xbd\xbd\x29\x02\x19\xa5\x2e\x9d\x8c\x3e\x31\xb4\xe6\xfb\xfb\xad\xda\x3c\xfc\xc7\x49\x4c\x13\x98\x71\xae\x11\x81\xca\x29\xfe\x48\x25\x6b\x93\x2b\xf4\xc4\xb4\x0a\x87\x12\x92\x78\x5f\xb5\x2f\x79\x44\x38\x47\x28\xa0\x8f\xad\x19\xbe\x70\x0f\x3e\x55\x24\x5a\x47\x01\x5d\xa1\x10\xbf\xc8\x70\x73\x76\xf9\x78\xb8\xd6\x94\x06\x67\x99\x7c\x2b\xa5\xf7\x28\xe1\x1c\x8b\x6b\x4b\xdf\xa1\x80\xa6\x2f\x54\xa2\xd0\x05\x62\x62\x6c\xe1\xe9\x96\xc4\x10\x93\x19\x2c\x49\x00\x8c\xa4\x70\x4f\xf8\xc3\x7f\x42\x31\xde\xe2\xf3\xf9\x45\x7a\x8e\x3f\x23\x06\xf3\x66\x93\x6b\x5a\x5f\xa8\xb1\x70\xe9\x35\xfa\x46\x90\x8d\x2f\x60\x26\xce\xb0\x60\x8d\x31\xa9\x90\xaa\xb5\x08\x3b\xaa\x31\x96\xac\x51\x4b\xde\x79\xb7\x97\xe8\x6a\x0d\xf2\x01\x99\x6f\x56\x5e\x7b\x4e\x57\x5f\xf2\xe5\xd4\x70\x71\x9e\x1f\x58\x40\x62\xc9\x14\x0e\xb4\x72\x35\x61\xe0\x2b\x66\xf4\xb5\xb5\x12\x1f\x5d\x2b\xf1\xa8\x50\xe4\xc3\x11\x6f\xcb\x23\x4a\x40\xad\x09\x08\xb5\xb7\x62\x83\xd2\x68\xf7\x2e\x26\xaa\x00\x93\x63\xcb\x4c\x3d\xc5\x67\x8e\x0f\xf9\x1f\xd0\x5d\x83\xd2\x7d\xb7\xf8\xd1\x4b\xf4\x58\x84\x72\xbe\x44\x77\x18\x13\x5e\x52\xc9\x12\x29\xbe\xb2\xce\xf3\x05\x5a\x03\x83\xc7\x31\x9b\x08\x58\x7b\x63\x0a\xbf\x40\x94\xe7\xe8\x4b\x25\xe6\x63\x8d\xe5\xe2\xfe\x44\xbf\x8c\xd7\x6c\x02\xaf\x68\xa3\xf1\xc9\xb6\x51\x09\x3a\xf7\x49\x80\xb0\x69\xef\x2d\xf9\x0b\xc3\x5b\x5a\x70\x8e\x13\xfe\xc5\x7b\x26\x42\x89\xf9\xfa\xb8\x65\x7c\xf4\xf9\xd5\x4d\x59\xf8\xc8\x60\x8d\x01\x6d\x46\x6a\x72\xf1\x78\xc5\x26\x94\x2e\xc9\x4a\xb4\xfb\x0b\xce\xf3\x6f\xd0\x97\x23\x74\x7d\xc9\x09\xfa\xd5\x78\x39\xa1\x6b\xc1\x62\xbf\x6b\x06\xce\x8f\x82\xcd\xa2\x75\x83\x3e\x8a\x84\x5d\x82\xf5\xc2\x12\x9e\xf6\x44\x4e\x92\x6d\x4d\xce\x5c\x59\x9b\x8f\x4e\x3c\xd7\x33\x22\x22\xe6\x96\xf0\x34\x4f\xe2\x15\x79\xcb\x20\x9e\x93\x8f\x9c\x99\x59\x7b\x35\x5a\xbc\xd5\x7c\xb4\xbf\xd4\xdd\xe4\xeb\x83\x7f\xee\x03\x2c\x39\xdf\x85\x37\x68\xa9\x0a\xc4\xf7\xbf\x30\xfe\x11\xc9\x61\xb7\xe6\x8d\xc6\x2b\x58\x0a\xfe\x1c\xe5\xf9\x97\xc2\x22\x4b\xe9\x82\x89\x99\x2b\x0a\x16\xcc\x7c\xab\x66\xab\x79\xb8\x88\x26\x16\x1d\xd2\x6c\xbd\xf2\x35\x54\x63\x2b\x1d\x7b\xe0\x4f\x76\xac\xbf\x08\x37\xe4\xf1\x2b\x12\x77\xf1\xde\x6d\x91\xd6\xaa\x52\xd9\x97\x9d\x67\xe4\x00\xcb\xd7\xb7\x58\x34\xa9\x4e\x68\xf8\x96\x4f\xf0\xab\xd1\x27\xf2\x96\x8f\xc0\x2b\x39\xbe\x6b\x06\x6f\x35\x02\x4d\x2d\x7c\x8f\xe9\x25\x5c\x86\xd3\x69\x64\x3d\x15\x8b\xbe\x9b\x87\xd6\xef\x13\xcf\xef\x8b\xb3\x49\xaf\xdd\x17\xa7\x84\x5e\x7b\x00\x3b\x87\x71\x45\x18\xae\x8e\x61\xf7\x3a\x5d\xe2\x75\xba\xe0\x75\x7a\xc4\xeb\x14\xbe\xa8\x05\x62\x9f\x06\xfe\xf6\x7a\x1d\xe2\xf5\x74\x46\xb8\xf6\x90\xb4\x87\xd0\x71\x49\x11\xdb\x2a\xf3\x59\x8a\xe0\x87\x6a\x16\x5c\x23\x77\xdc\x5e\xa4\x8a\x86\x10\x37\x32\xc8\x19\x78\x80\x3b\x99\x72\x79\x4b\x7f\x9b\x6f\x74\x57\xe1\x29\x0c\x86\x3a\xa8\xa9\xa7\x5c\x2f\x74\xc6\x12\xaf\x2f\xcf\x94\x7a\xbb\x67\x4a\xed\xa1\x3c\x53\x12\x27\x47\x33\x7d\x72\xb4\x2e\x4f\x7b\x56\x85\xeb\xf2\xbd\x3a\xa1\x79\xd4\xd0\xa0\x77\xd4\x08\x4a\x87\x5b\xaa\xb8\x9c\xb0\xbb\x34\x2c\xb8\xa1\x51\xe5\x98\xe5\x81\x46\xe5\x31\xcb\x15\x8d\x1c\x2e\xae\xc0\x17\x1a\x99\x47\x39\xd7\x34\x72\xde\x44\xf3\x30\x0a\xb3\x47\x78\x4f\x6f\xe0\x25\xbd\x72\x82\xdb\x14\x3e\xd3\x2b\x81\x3b\xf7\x89\x5e\x49\x45\x1e\x5e\xd1\x2b\x67\x19\xdf\xc1\x5b\x7a\xe5\x7c\xff\xce\x87\x8f\x34\x1c\x59\x37\xb7\x16\x29\x64\xd7\x0f\xa2\x64\xc9\x4b\x0c\x09\xf5\x27\x51\x1a\xab\x52\x25\xcf\x96\x48\x40\xdf\xd6\x79\xb3\xf0\x5d\x24\x0f\x1e\x12\x3e\xb2\x83\x17\x49\x2b\x6b\x79\xb0\xa1\xc8\xbb\xb8\x48\x71\xcb\x83\x25\xdd\x5c\x5e\x7a\x30\xa5\x7e\x5b\x68\xc7\x9f\x05\x24\x5e\x07\xb7\xc4\x45\xbf\x8f\x89\x2b\xc4\xa2\x05\x65\x17\x6e\x9e\xbb\x32\xd7\x87\x77\xc6\x2e\xdc\x91\x47\x5c\xc1\xf0\x11\xa3\x2f\x11\xc3\xb8\x41\x59\x9e\x33\x4a\xe9\xf5\x08\x85\x54\x40\xbd\x79\xc4\x85\x88\x6e\x30\x41\x11\xfd\x84\x5e\x21\x86\xcf\xde\x62\x60\x2f\x50\x4c\xc5\x07\xb8\xbc\xe7\x71\x39\xb0\xd5\x82\xf8\x05\xf5\x31\x20\xd6\xa4\x51\x73\x79\x49\xbd\xd1\xf4\x2c\x26\xd3\x17\xfc\x39\xaf\xb5\xc4\xf8\x45\x7c\x49\x7d\xfe\x6c\xb3\x09\xf1\x19\x7f\x56\x3c\xb7\xe1\x1f\x53\x5f\x51\x2f\xa2\x90\x22\xf6\x22\x6e\x79\x58\xbc\x9d\xf1\x27\xe9\x12\x13\xde\x2a\x51\xb2\x34\x6f\x51\x17\xe3\xf3\xec\x92\x0e\xce\x83\xf1\xbc\xd9\x9c\x50\x2e\x72\x86\x10\x9e\x51\xbf\xdb\x83\xac\x45\x07\xf8\x5c\x64\x2d\xa7\xd1\xc5\x45\x96\x87\x90\x36\x69\x76\x9e\x5e\xba\xe6\xf3\x11\x44\xf2\xf9\x54\x3c\xaf\x2d\x5a\xe3\x56\x6b\x3e\xc9\xa9\xe7\x0f\x5e\x2c\x20\xd8\x16\xb3\xf5\x6e\x67\xb6\x8a\xa9\x89\xc5\xd4\x84\x7c\x6a\x02\x1a\xf3\xa9\x49\x69\xd8\xea\xc3\x86\x26\x62\xb6\xd8\x78\xd3\x6a\x4d\x60\x4a\x3d\xbf\x6f\x2f\x65\xc6\xa8\xcb\x4b\xda\x17\xed\x99\xf2\x16\xbc\x98\x36\xd9\x78\x33\x81\x4d\xab\xa5\x1a\x23\x1b\x3f\xb5\x79\xcd\x2d\x31\xeb\xd3\xcb\x4b\xda\x4a\xcb\x8e\x44\xe2\xc5\x68\xf7\xc5\x70\x8e\x5c\x91\x86\x60\x4a\xbd\x56\x50\xe4\xa4\x98\x52\x4a\x63\x2d\xd5\x46\xa3\x77\xc1\x3b\xb2\x1c\xb5\xae\xc9\xf5\x49\xd4\xa4\x6a\x54\xa7\x2d\x1a\xa8\x10\x0d\xb4\x14\x58\x7f\xf8\x45\x24\x86\x7c\xda\xca\x70\x39\x10\x6f\x2a\x19\xa7\xdb\x93\x8b\x0b\xbf\x93\xb3\xb1\x3f\xb9\xb8\xf0\x7a\x39\x1b\x7b\x93\x8b\x8b\x41\xce\xc6\xee\xa4\x7c\xe7\xfb\xf2\x9d\x31\x1f\x7b\x66\xdc\x7b\xbd\x7b\x0f\xd8\xe5\xe5\xc0\xf6\xbb\x5d\xe3\xa1\x9f\x0f\x3e\xc4\x2f\xbc\x9e\xbe\xf2\x3b\x3b\x2f\xfe\xd1\x68\x2d\xdf\x70\x5d\x1f\x06\x46\x67\xbe\xd9\xb9\xed\xb7\xa1\x63\xdc\xfe\xb3\x9e\xf4\x15\x62\xe3\xbb\xc9\xf1\x23\x23\x75\x5e\x54\xbc\xfc\xe3\xae\x83\xef\x0c\x35\x13\xac\xad\x45\x6c\xfc\x61\xa2\xc4\xf6\x2f\xe8\x56\x69\x35\x94\x8d\x3f\x4e\x9c\x9b\x5b\x08\x68\xd8\x64\xe3\x9f\x04\xe4\xa9\xe2\xd3\x01\x04\xcd\xd2\x4d\x32\x1a\xa5\x24\x75\x94\x79\x12\x19\x5f\xfd\x1b\x2a\xd2\xf5\xe8\xb4\xd6\x41\xf9\xe5\xa0\xe6\xcb\xda\xa0\x99\x16\x5f\xdf\xd0\x40\x7e\x7d\x49\x23\xd4\x0c\x39\x25\x77\xcf\xa7\x17\xd9\xf9\xb4\xd9\xc4\xe9\x78\xd3\x9c\x4e\xe8\x72\x1c\x8f\xa6\x24\x6b\x4d\x5b\xde\x64\xcb\x6b\xe6\x3a\xad\xd4\xbf\x96\x26\x9f\xbf\x11\xd2\x7e\x9e\x57\x4b\x39\x99\xbb\x91\xe2\x7e\x9e\x2f\x6b\x0e\x64\xc5\x03\x20\x1f\x2b\x04\xfd\x1b\x91\xfc\x12\x2a\x22\x7a\x83\xde\x08\x89\x73\x8b\x4b\xd3\xec\x0f\xf0\x17\x8a\x6e\xea\x9c\x36\xa6\x52\x01\xbd\x91\xf5\xbd\x47\x33\xe1\xbd\x81\xc7\x77\x13\xfa\x9e\x4f\xf0\x77\x74\x8d\xde\x63\xf8\x13\x75\xcf\xbf\xd3\xe6\xd4\x3f\x9d\x63\xf4\x03\xfd\x6e\xfc\xa7\x66\x73\x82\xc3\xe8\xf4\x26\xcf\x53\x74\x03\x3f\xc0\xfb\xf1\x0f\x13\x7c\x12\xe7\x39\xfa\x4b\x45\x64\xbe\xc1\x5b\xde\x8a\x3f\x08\x62\xfe\x80\x64\xcb\x7d\x8c\xe1\x1f\xe8\xc3\xf8\x6e\x22\x7c\x0f\xa3\x6c\x70\xf2\x07\x7d\x85\x5c\xf0\xbd\x4e\xbf\x33\x68\xf7\x3a\x03\x0c\x65\xb9\x57\x96\x0f\x31\x34\xfe\xe0\xdc\xe9\x17\xb0\x6d\x97\xbf\x3c\x9c\xe7\x1b\xc4\xeb\x16\x32\x23\x2f\xdb\x31\xdb\xfe\x83\x91\xeb\x98\x41\xc6\xf7\x2c\xdf\x2c\xd2\x0a\x20\x7c\x18\x9e\xfb\x82\x50\xb4\xa4\xa8\x55\x1d\x61\x3d\xb4\xd5\xe9\xd1\xd6\x55\x3e\xd0\x12\xee\xee\xe6\x96\xde\x97\xa7\x76\x92\xd7\x65\x18\x5c\x89\x45\x37\xfe\x30\xa1\xd9\xb6\x82\xbf\x2d\x77\xa0\xaa\xfe\x01\x2c\xcd\xda\x2d\x0c\x5c\x95\xbb\x31\x4b\xb4\xc4\x32\xfe\x30\x81\x90\xce\x95\xcf\x55\xc8\x19\x61\x78\x19\x15\xab\x7e\xef\x5c\x5d\x6c\x4a\x94\x98\x1e\xe0\x51\x2b\x24\x02\x87\x64\xff\xbd\x52\xbd\x16\x4d\xfe\x38\xa1\x32\x6d\xd4\xf8\xa7\x09\x0d\x8b\x6e\x24\x5b\x08\x6d\x1b\xfd\x19\xdd\xec\x18\xae\x6e\x96\x16\x86\x3f\xa3\x07\xc3\xf6\x75\x73\x5b\x14\x1d\x78\xd2\xb4\x88\xdd\xc4\x16\xc6\xa0\x67\xfc\x6e\x6f\xc6\x8b\xe5\xfe\xa3\x1c\x34\x0f\x18\x1e\xbb\x13\x3d\x89\x02\x27\x74\x77\xd2\x0f\xbc\x23\x9e\x7d\x13\x65\x5e\xaf\x26\x55\xbf\x7a\xd4\x37\x0f\x21\x44\x0e\x0d\xc5\x46\x32\xc5\x0c\x44\x26\x0e\xce\x1e\x38\xa9\x2e\xbe\xfe\x7b\xaa\x3c\x35\xab\xd4\x6d\x6b\xfb\x75\xfd\x78\x83\x54\x5d\x9d\xdd\xba\x70\xd1\x84\xdf\xfc\xe6\xe5\xe5\xa5\x2b\xde\x16\x80\x1a\xf5\xaf\xbf\x3b\xf8\xba\x62\x2f\xc5\xfb\xbd\xce\xd1\xf7\x07\x7b\xef\x4b\xee\x05\xf5\x7b\xfc\x6f\xc5\xc4\xc1\xf7\xc2\x7e\x7e\x60\x6b\xd7\x3d\xb7\x3b\xc3\xc6\x73\x7c\x2a\x5e\x9b\xe7\xda\x63\xae\xa1\xe9\xca\x7f\xfb\x5b\xbb\x13\x66\xbc\xc4\x07\xec\xe7\x83\x9f\xfa\xed\x6f\xed\x4f\xd2\xce\x6b\xdf\x1c\x7e\xad\x32\x37\xc6\x6b\x7c\x52\xfe\xb8\xf7\xda\x16\x9f\x3c\xa2\x5d\xd2\x07\x8f\xa8\x4a\xae\x52\xb9\x63\x03\xe9\xb9\x24\x1c\xba\x4c\xc5\x85\xde\x40\x52\x28\x2e\xf4\xc1\x84\x7e\x29\x74\x53\x85\xfe\x7e\x50\x17\x95\x3a\xa7\xd4\x29\xa5\x36\xa9\xb4\x46\x53\x5f\x94\x68\xf1\x52\x23\x2c\x74\xc1\x1a\x37\x7b\xcd\x4f\xa3\x8a\x43\x61\x91\xb1\xb5\x23\xf2\x55\x06\xda\xa1\x4b\x1c\x17\x5a\xc2\x13\x06\x59\xf7\xb2\xc7\x4b\xda\x40\x8d\xd0\xec\x64\x9e\x37\xc2\xa2\x93\x5c\xb2\x58\x2a\x6d\xc5\x7a\x53\x78\xd2\x19\x4e\x75\xe2\x52\x19\xde\x65\xc9\x9b\xc2\x37\x0b\x0c\x3f\x2d\x10\xcb\xaa\x2c\xd6\xd7\x6a\x09\x18\x3f\x7a\x1d\x69\xb9\x37\xf2\xef\x9e\xcf\x2f\x86\xe7\x18\x45\x34\x1c\x2f\x84\x82\x30\xc1\x23\x14\x23\x13\x76\x22\x15\xd3\x55\x2d\xdb\x88\xb3\x27\x32\x15\x40\xf5\xa5\x0f\xf4\xcb\x6f\x7e\x20\x4b\x90\x3e\x6b\x64\x0a\xc2\x61\x8d\xa4\xc0\xe7\x9c\x6c\x4c\x34\xe4\x6a\xbe\x54\x5e\x7a\xc0\x1b\xd5\xd5\xee\xaf\x49\x10\xcd\xe2\xd5\x81\xcc\x97\x65\xfe\x1e\x89\x7f\x6a\x69\x7b\x60\xe9\x9b\x3c\xb2\x2c\xc2\xc0\xc2\x37\x16\xa0\x66\x33\x6a\x86\xb8\xb0\x18\xa1\x76\x0f\x97\xde\xbe\xc7\x01\x4e\x4a\x04\xe1\xdd\xc4\x59\x9b\x94\x25\x2f\xef\x58\x94\xe5\xb9\x65\x19\x69\xb3\xbc\xce\x91\x88\xc8\xc1\x01\xc7\x6a\xed\x87\xc6\xfb\x96\xe7\xcc\xb9\xc9\x6a\x63\xe6\x45\x52\xec\x3d\x38\x09\x38\x15\xf1\x6e\xa7\x09\xfb\xdb\x26\x4c\xd8\xcc\x70\x48\xab\x64\xd3\xf1\xba\xc7\x3c\x9b\x77\x92\x15\x17\x76\x8f\xae\x27\xed\x1e\xc2\x60\x71\x34\xa6\x2a\x74\xe4\x74\xe4\x39\xd2\x97\x34\x1e\x3d\x6d\x49\x54\xdc\x78\xda\xe2\x13\xeb\xc6\xa2\x94\x95\xa8\x49\x79\x2e\xcc\x9e\x19\x97\x35\x33\x60\x1a\xac\x3c\x10\x70\x3b\x3a\xce\xda\x23\x5e\xd7\x83\xbd\x50\xde\x72\x53\x77\x6b\xdc\xaa\x25\xf4\xa3\xd7\xf5\x71\x25\xdd\x01\xbf\xfa\x4a\x7c\xf6\xc3\x67\x33\x3c\x5b\xd2\x02\x17\xab\x6e\x40\x50\x07\x2f\x13\xd7\xc7\x47\xd7\x46\x71\x07\xb6\xad\x82\xa5\x83\x51\x4c\x42\x8c\xd4\x42\x76\xac\xa6\x10\xd2\x9d\x34\x8b\x13\x46\xa3\xfd\x38\xef\x12\x68\xa9\x7b\x04\x48\xaa\xd3\x3f\x98\x8b\x4a\xb8\x0a\x57\x01\x42\x7d\x2c\xc4\x6b\xf5\xd4\x5b\x81\x98\x52\x97\x1e\xbd\x51\x7a\xfc\xb3\x71\x38\xc9\x73\xb6\x9b\x66\x25\x1e\xf3\xe7\x27\x95\x44\x47\xd2\xaa\x27\x26\x4e\xe7\xaa\xf2\xba\xc7\x63\xdc\x4e\x44\x90\x18\xe8\x73\x47\xd3\x37\x4d\x38\x32\x6f\x31\x30\xd4\xee\x62\x64\x95\x77\x44\x6a\xf1\x76\x97\xb4\xbb\xca\xc0\x28\x8c\x87\xe2\x63\xcf\x35\xfd\xe9\xe8\xba\x8e\x8f\x51\x47\x35\x42\x44\xaa\x35\xf8\xb2\x18\x60\x34\x9e\x38\xc2\x93\x4d\x10\xc8\xa2\x75\x07\x9d\xdb\x42\xad\x53\x54\x24\x9b\xad\x04\xe3\xf1\x07\xc4\xf3\x07\xca\xf4\x59\xb6\xf5\x48\x08\x7f\xcd\xc0\x08\x47\x38\x61\x41\x2c\x87\x84\x97\x19\x83\x21\x39\x63\xf9\x81\xe7\x02\x58\x9b\x83\xe1\x1f\x18\x0c\xe9\x52\x57\x1d\x8d\xc3\x6e\x76\xbf\x67\x38\x9e\x1d\xf2\x6e\xb4\x56\xe0\xc6\x5a\x85\x1f\x9d\x05\x01\x6d\xb8\x27\xf1\x69\x18\x8d\x27\xb6\x2d\xb5\x30\x0f\x8f\xe3\x89\xa9\x8b\x07\xb4\xe1\x6d\xcd\xe8\xc4\xc0\xec\xd2\x11\x97\xbc\xfd\x5e\x7d\xc5\x37\xa9\x98\xa9\xd8\x98\xa4\x9d\x6e\x3f\x17\x80\xc9\xec\x76\x97\x77\xbb\xe1\x9e\x88\x9e\x5b\xd5\xce\x3a\xbc\xcc\xec\x6e\xbc\xdb\xdd\xb8\xda\xdd\x7f\xdf\x9e\xca\x26\x1d\xec\x6e\xef\x59\x60\x47\x3b\xdd\xd5\xf8\x8b\x7a\x29\x4a\x17\x47\xbe\x16\xcd\xb5\x6a\x76\xab\xc6\x09\xf2\xf7\xaf\xcc\x5e\x0d\xbb\xa9\x6d\xb3\x4e\x51\x5b\x64\x08\xeb\x28\x99\x72\xa0\xd1\x8c\x07\x3a\x46\xc5\x53\x31\x2a\x6d\x95\x21\xac\xdb\xc6\x27\x21\x67\xa5\x22\x6d\x52\x43\x04\x77\x54\x8e\x8b\x8d\x94\x44\x4c\xc0\x5b\x16\x7d\x4d\xe2\xd5\xbe\xc6\x09\x09\x84\x30\x87\x85\xc4\x3c\x9e\xd5\x31\x31\x3e\x0e\x23\xfe\x0f\x91\x62\xe4\x7a\xdf\x9b\x79\x45\xd7\x07\x5c\xbd\xef\x4b\x57\xef\x95\x4a\x58\x3c\x45\x0b\x61\x71\xb8\x17\x99\x87\x23\xb4\x82\x75\xbd\x93\xb0\x70\xce\x96\xc7\xaa\x77\x79\x3e\xa3\x32\xc0\xc4\xb6\x53\x74\x87\x05\x2a\xbc\xc4\x81\x9a\xa1\x8c\x6e\xd0\xa2\x88\x31\x3f\xcf\x2e\x1f\xcf\x1f\x9b\x4d\xbc\x44\x09\x3c\xc2\xfd\x68\x85\x16\x22\xf7\x31\x26\xfc\xaf\xca\x3d\x25\x1c\xc3\xa9\x3a\x77\x5b\x68\x5c\xf0\xd9\x79\x03\x85\x74\x5e\xf5\x2d\x37\xeb\x0a\xd0\x1c\x56\x30\x0e\x95\x93\xd3\xe3\x84\xaf\x2e\x12\x6a\x97\x73\xed\xf7\xaa\x1a\x43\x1f\x21\x51\x4b\x66\xf7\xb8\x4c\x1d\x83\x75\xdb\x84\xff\x2b\x0e\xb8\x54\x32\xab\x32\x0b\xae\x3c\xc2\x12\x4b\xab\x46\x3a\x39\xbe\x1d\x14\xbe\x6d\x4c\xc7\x13\x47\x79\xe8\x72\xa2\xd7\x88\x6d\xdb\x3b\x1b\x7b\x45\x21\xf2\xa0\xe5\xe2\x0b\xd7\xd8\x21\x28\xc8\x73\x4d\xd1\x63\x6c\x2c\xa1\x23\x9e\xbe\xc1\x28\xae\xcf\x74\x9f\xe7\x2e\x79\xd6\x5e\x12\xa7\x7e\xe5\x5e\x3a\x22\xc9\x68\xa6\x77\x6d\xb4\x4c\x66\xae\x24\x22\x0d\xb7\xa8\x57\x0d\xe6\x90\xf4\x85\x28\xd8\x7b\x6e\xaa\xc2\x76\x57\x81\x45\xf6\x0b\xc9\x48\xa9\x7b\x6e\x55\x44\x1a\x74\x31\x92\x1b\xa2\xf0\x85\xaa\x88\xee\xd2\xda\x97\xc9\x5c\x07\xf2\x47\x48\x5d\x75\xf5\x99\x66\x5b\x13\x51\x45\x46\x0a\xa8\x57\x20\x53\x57\x9f\xb5\x0b\xe6\x4d\xd8\x6c\xaa\xb5\xd5\x60\x79\x9e\x5c\x52\x9d\xff\x79\x84\xf4\x77\xd4\x9e\x09\x91\x87\x31\x09\x91\x0b\x12\x50\x48\x22\xd8\x97\xee\x0a\xd9\x88\x8d\x93\x09\x19\x27\xc0\xff\x72\x95\xbf\xcc\xe9\x16\x3b\x2f\xf5\x04\xd1\x58\x6a\xad\x10\x15\xc0\x44\x91\x91\xfd\x2d\x32\x72\xe4\x89\xd5\x2d\x61\x89\x25\x29\x1f\x74\xc9\xa0\x0b\x83\x3e\x19\xf4\x4b\xf1\xae\xf7\x5b\x25\x2e\x05\xa7\x3b\x9e\x88\xb8\x2c\x73\x79\x8a\x90\xcb\x06\xd5\xf8\xbf\xb5\x4b\xf5\x90\xbf\xb7\x42\x85\x53\x18\x0f\x60\xea\x86\x60\x11\xb6\xb3\x28\x75\xbf\xd4\x62\xd2\xe1\x9a\xcf\xce\x71\xbf\xd3\x17\x75\x0e\x1c\x68\xca\x9e\xf2\xde\x99\x31\x6a\x1b\xda\x68\xa4\x7a\x83\x1a\x37\xea\x36\xe9\xa6\xec\x79\x6a\xf6\xfc\x90\xcf\xba\x4c\x99\xa3\x71\x33\x0f\xed\xd5\x13\x8d\x74\x2b\xc7\x27\xa1\x41\x99\x91\x18\x22\x9a\xb4\x3c\x71\x60\xb2\xcf\xee\x85\x6f\x9c\x0e\x52\x45\x11\xc4\xa8\x6a\x3a\xc4\x10\x5d\xb8\xe2\xa1\xa4\x29\xe2\x95\xa8\x7b\x1e\xb5\x5a\x98\xeb\x11\x42\xd5\xb3\xed\x6c\x1c\x4d\xcc\x10\xe2\x88\xb7\x47\x5e\xb7\xbc\x9d\x89\x29\x2c\x3f\x1a\x41\x5f\x92\xd7\x92\x7e\xfc\x1e\x99\xd6\x3b\x20\xd3\xae\x82\x75\x55\xa0\x3d\xe0\xda\xff\x7b\x64\x86\xdf\x2a\xcd\x72\x01\xa0\x04\xb4\xde\x4b\x06\x53\x1c\x84\x31\x54\xa4\xf6\x6b\x48\x3a\x55\xb8\xf1\x30\x6c\x42\xb2\x57\x84\x84\x78\x5e\xeb\xeb\x7f\x28\x86\x29\x62\x0f\x75\x48\x09\x3b\x12\x03\x46\x3a\xc6\x29\x44\x49\x65\x74\x98\x09\xc3\x50\x30\xcd\x4c\x33\x4d\xc9\x1c\x77\x60\x38\xea\xf2\xc2\x1f\x9f\xd9\xf6\x81\x69\x35\x03\x40\x2b\xd3\xfb\x95\x98\x89\x83\x42\x6f\x65\xde\xc5\x41\x51\x75\xea\xdb\xa4\xd3\x2e\xa7\xbe\x2e\x01\xfd\xbf\xa5\x23\x75\x7d\xf8\xb7\x34\xdf\xfb\x4a\xf3\x9f\x2b\xed\xea\xe6\xf7\x15\x4c\x51\x47\x73\xd4\x76\x5f\x87\x64\x8b\xe4\x1d\xe3\x89\x3c\xea\x35\xfa\xb8\xb7\xbc\x43\xdb\xde\x28\x0a\x5e\x59\xb7\xd2\x7d\xab\x2e\x56\x23\x45\x46\x10\x83\xc8\x94\xa3\xc2\x1e\xc2\x39\xca\x68\x25\xcd\x4b\x06\x65\x96\x6b\x4d\x83\x36\xd5\x83\xc0\xf2\xb8\x38\xe4\x8c\x1d\x04\xf4\x58\x20\x10\xca\x60\x4a\x53\xb4\x6c\x85\x18\xe6\x86\x1b\xcb\x14\xc3\x82\xba\xe7\x8b\x8b\xe9\xf9\xa2\xd9\xc4\xf3\xf1\x62\x42\x8d\x0c\xe3\x62\x97\x68\xb3\x57\xd8\x5c\x60\x22\x8e\xcf\xc2\xe6\xa2\x08\xfe\x9b\xab\x59\xd0\x7e\x58\x8a\xd2\x49\x64\x89\x8a\x37\x94\xca\x3c\xe3\xf5\x7f\xb3\xb0\xe8\x63\x74\x68\x6d\xa5\xf1\x6a\x67\x65\x1d\x8a\xca\xf9\x1d\xd4\xaf\xff\x5c\x0c\x27\xdd\xd2\x02\x7e\x4f\x6b\x4c\xbd\x8e\x62\xa3\x22\x64\x7b\x43\xc7\x1e\xf8\xd0\x9e\x54\xa4\x59\x73\x01\x6d\xc4\x83\xa8\xc0\x54\xcd\xf3\x46\xdd\x7d\x85\x6a\x77\x80\xc5\x1e\x8a\x24\x32\xa4\x09\x85\x05\x1b\xeb\x18\xcb\xea\x6f\x50\x40\x10\x55\x59\x43\x6a\x06\x12\xe1\x6f\x87\xe8\xf5\x6b\xc4\x57\x19\xd0\x8f\x54\xab\x64\x55\xc2\x77\x4f\xbc\x70\x04\x6e\xd2\x90\x9f\xbf\x0d\x32\x66\xc1\x53\x14\x3f\xec\x7b\x75\x88\x03\x6a\xfe\x80\x30\x05\x7e\x0a\x57\x02\x8a\xbd\x90\xad\xc5\x57\x8e\x9b\xa6\x24\xc3\xea\x9a\x2b\x0b\xf1\x0a\x8d\xb8\xf1\x2c\x7e\x73\xfd\x5e\xee\x87\x06\xa5\x21\x2e\x9a\x64\xdc\x20\xa1\xe4\x06\x5d\xd2\xed\x1a\x6b\xe7\xb7\x72\xf8\x32\x3f\x4a\x95\x90\x1e\x4a\xab\xa9\x50\x6a\xf5\x28\x08\xe7\x0b\x27\x8b\xff\xd3\xf5\xfb\x77\x08\xe7\xb9\xd7\xa0\x74\xaf\x33\xfc\xa6\x8a\x44\x31\x3b\xb0\x5f\xb9\x90\x67\xcc\xde\xf2\x37\x6b\x0e\x84\x4b\x41\x2c\x2e\x73\x0d\x58\xd1\x66\x75\x2b\x9c\x3f\x34\x3a\x76\x9e\x17\x79\xf3\x13\x3c\xca\xcc\x61\x45\x58\xa5\x4e\x91\x82\x7a\xd5\x5b\x73\x77\x99\x1d\x43\x82\x51\x28\xaa\x1f\x92\x70\x15\x4a\x68\x33\x08\x77\x46\xe0\x44\x88\x72\x61\x9e\xcb\xac\xee\x21\x44\xc0\x50\xb7\x87\xb1\x09\xe8\xda\x23\xdd\x5e\x79\xec\xd3\x3f\x78\x32\x52\xad\x1a\x42\x1a\x95\x10\x0c\x31\x8d\xf4\xa2\x3c\xa9\x4c\x50\xd3\xb2\x1a\xd4\x7a\x13\xdd\x07\xcb\x70\x26\x8a\x2d\xdb\x96\x28\xf8\x28\x3a\x80\x9e\x2e\x45\x9c\xd8\x88\x0c\x3a\x29\x71\x91\xd9\x28\x34\x6e\x90\x6a\xd5\x72\x4c\x4b\x64\xfc\xc1\x91\xc3\x14\xc3\x54\xab\x1d\xd8\x2d\x78\xba\x0d\xa3\x19\x61\xa8\xd3\x93\x5a\x6b\xa7\x47\x3a\xbd\x72\x8d\x0f\x9e\xcb\x63\x35\xf8\xb2\xc0\x10\x29\xf1\x49\x17\x41\xfa\x46\x89\x7a\x22\x0d\xd0\xbe\xe7\xbc\xb0\x81\x9e\x06\x7c\xc6\xc4\x61\x0e\x0a\x20\xd6\xa7\x2d\x3b\xda\x43\x29\xe8\x35\x4c\x41\x2f\xcf\xc5\x09\x55\x99\x42\x55\x9e\x59\xe9\xdc\x8e\xf2\x33\x45\x4c\x49\x25\xb7\x8f\x00\x0a\x13\xc1\x81\x32\xb5\xd0\x39\xd7\x06\xaa\x2f\x1a\xfa\x40\x43\x2b\x03\x0d\xad\x0c\x68\x17\x66\xb5\xb2\xaa\x29\x55\xbd\xc1\x91\x13\x1d\x0d\x12\x5c\x83\xb0\x1f\xd3\xb3\x7f\xfe\x6b\xfa\xa2\x10\xa4\xd1\xf8\x9f\x4f\xd1\xe4\x05\x3e\x3b\x91\x59\x01\xf4\x02\xef\x0e\x04\x20\x70\xa8\x93\x05\x7c\x0d\xe2\xb8\x4c\x6d\x81\x2c\xab\x29\xe3\x66\x57\x2a\xfd\xe9\xd8\x9b\x28\xb0\xe8\xf2\x18\xd3\xda\x2a\x21\xb8\x9a\x28\x6d\xf0\x5c\x96\xd9\x29\x80\x9b\x86\x3b\x67\x3b\x1e\x46\xd6\xdb\x60\x6d\x41\x0d\x0b\xdb\xa7\x54\x6c\x47\x4b\xd4\x1a\x9f\x6b\x98\xec\x5c\xc3\xc0\xbb\xe3\x23\x68\x24\x7d\xb9\x63\xd9\x55\x94\x25\x8f\x4a\xfb\x06\xd1\x08\x0c\xa5\xd9\x8c\xeb\x80\xce\xfd\x6e\x68\x96\x11\x34\x19\x39\x33\x36\xdf\x79\x5d\xf2\x5b\x97\x28\x60\xab\x48\xc8\xdd\x9c\xd2\x0d\x89\xd7\x19\x42\x67\x48\x3a\x43\xe8\x7a\xa4\x2b\x8e\x3b\x07\xcf\x40\x52\x1c\x0a\x3e\x21\x53\x44\xff\x2d\xc9\x20\x50\x49\xb2\xa7\x71\xba\x30\x74\xaf\x06\x0a\x6c\xbb\xef\xb9\xd4\x8c\x7a\x0e\xd0\x3b\x41\x9b\x9d\xb7\x2f\xff\xf1\xe6\x87\x97\xdf\xff\xf9\x0a\x63\xdb\x0e\x44\x3e\x6c\x09\x1d\xc9\xdb\x9d\x2d\x2c\x78\x12\xf5\xd5\x88\x11\x12\x88\xea\xc2\x13\x7e\xaa\xec\x72\xd8\x19\xba\x3d\xbf\xd7\x75\x7a\x7e\xc7\xef\x7a\xdd\xde\xa8\x48\x77\xcd\x70\x53\x5c\x7f\xff\xce\x27\x21\x62\x2d\xaf\x19\xf3\x7f\xf1\x8b\x18\xb1\xa6\x87\x4d\x6e\x0d\x43\x9f\x0c\x25\x4d\x39\x2e\x19\x14\x29\xc1\xd3\x30\xaa\xf6\x36\xb4\x6d\xef\x2c\x44\x2e\xbe\x34\x3b\xc1\x1f\x23\x86\xd6\x99\x19\xa8\x5a\x8a\x23\x65\xb4\x99\x61\xdb\x76\x1b\x34\x1b\x65\x17\xee\xa8\xc5\x50\x2b\xc3\x65\xd6\xee\xac\x59\x8c\x35\xca\x5e\x64\xbc\xe5\x24\xdb\x91\x34\x8e\x25\xf2\x37\x5b\x9d\x05\xf5\xad\x16\xe6\x13\xa3\xd9\xfc\xb9\x3a\x11\xce\xcc\xe9\x5e\x34\x50\xe4\x15\x3f\x43\x5e\x8b\x61\x7c\xe6\xef\xb6\xec\x08\x76\x5b\xb1\xa2\xda\x85\xc4\xa5\x1a\x30\xbd\xad\x17\x21\x43\xf9\xf5\x17\x3a\xff\x3b\x32\xf3\xb3\x7b\x67\xed\xea\x9c\xaa\xc4\xea\x5e\x5d\x86\xfd\x1a\x69\x4f\x7f\x7b\xf9\x73\xad\xeb\x16\x62\x97\x97\x97\xd4\xc5\xa3\xb6\xd7\x32\x96\x74\xb9\xdc\x9a\x4e\x57\xb5\xec\xfb\xf7\xdf\xf9\x57\x98\xb4\xf7\x06\xe3\xab\x49\xbe\x74\x42\xfc\xdd\x36\x1d\xd8\x0b\x6a\x3c\x9a\x21\xaa\x1d\xfc\xe1\x71\x86\x2b\x07\xdf\x35\x2d\x26\x28\x6c\x14\x6d\x58\x79\xe5\x8a\x10\x3f\x95\xa4\xa9\x46\xd7\x25\x43\x71\xaa\x7e\x2c\x5b\xff\xfe\xe8\xca\x74\xfb\x84\xa1\xa1\x67\x5a\xa2\x87\x1e\x19\x0a\x0a\x54\x97\x05\xbf\x6e\x25\xdf\xa6\x3b\x15\x2f\x1e\xd7\xf1\x2e\x5d\x2c\x53\x87\x45\x10\x53\x17\x02\xea\x42\xba\x6f\xa9\xd9\x50\xf7\x3c\xb8\x48\xcf\xf1\xe6\x02\x25\x34\x34\x4c\x73\x41\xb3\x39\xc1\x78\x84\x62\x1a\xbf\x40\x11\xdd\x9c\x25\xf8\x45\xd4\xf4\x60\x43\x13\x4c\xe2\x26\x4d\x2e\xdd\x11\x8a\x68\x72\xb6\xc1\x2f\x22\x52\xc0\x96\x6f\xa8\x20\x66\x23\xef\xcc\x25\x9b\x17\xe5\xf6\x8d\x77\x35\x84\xba\x34\xfc\x35\xbd\x0d\x57\x9b\xe5\x31\xb3\x96\xb2\x02\x76\x1b\x34\x44\x1d\x7f\xd8\x19\xf6\xfa\xfe\xb0\x0b\x5d\x9c\xe7\x7e\x83\x86\xaa\x9f\xdb\x72\x3a\x79\x85\xb5\xf6\x80\x26\x83\x88\x36\x33\x08\x69\xaf\xdb\x6d\x77\xed\x04\x62\x75\x15\x15\x99\xbc\xf2\xf0\x45\xdc\x44\x48\x3d\x70\x79\x79\xe9\xf5\xf0\x8b\xb8\x19\xbe\x50\x45\x91\x2c\x92\x2e\x9d\x97\x6e\x65\x4f\x16\xb2\xf4\xf0\x19\xfe\x0c\xe5\xe4\x2e\xe3\x3b\xcf\xad\x23\x08\x06\xb1\x2f\xb6\x9e\xe7\x5e\xed\x0e\xf3\xf3\xd4\x3d\xe3\x63\x6b\x22\x18\x5d\x1d\x87\xa8\xcb\xec\x7d\xb4\xb2\x5a\x3f\x50\xa3\xe1\x67\x9a\x4b\xed\xb6\xfa\x38\xe9\xdc\xf9\x50\x1a\xde\x45\x44\xd0\xd2\x3a\x12\x78\x2c\xf9\xb2\x41\x09\x34\x63\x2f\x28\xd0\xd1\xf5\xe6\xb3\x96\xd7\x6f\xd0\x86\x5c\xe0\x61\xb4\x40\xb2\x08\x1b\x2b\xad\xc2\x00\x77\xfb\x2f\x08\xb7\x62\xe7\x02\xfd\xb1\xa5\x09\x19\x41\x92\x57\xb7\x62\xd4\xe2\x7f\xf1\x0b\x49\x68\xaf\xce\xfc\xfd\xf5\x64\xd0\xa2\x67\x64\x51\xac\xeb\x66\xd1\xdc\x3d\xc6\xa7\xf5\x4c\xd1\x4c\x81\xd4\xd9\x32\x24\x32\xb5\xcd\x49\x22\x2f\x5a\x1e\x41\x59\x2b\xc1\x67\x02\x3f\xbc\x19\x8b\xce\x6c\x6b\x88\xa6\x7f\x2c\x3f\xf1\xfe\xdc\x66\xc9\x26\x9a\xd6\xb3\x24\x77\x54\xf2\x22\x52\xa0\x7b\x4a\x70\x4e\x73\x35\xf9\x75\x29\x84\x8f\x86\xf3\xe9\xfc\x20\xda\x20\xd9\xef\x6a\x7b\x64\x5b\x1e\xbf\xf7\x3a\xf2\xf4\x5d\x85\xe8\x4d\xa9\xce\x0e\x23\x62\xfa\xa4\x0e\xb1\xa8\xa4\xe4\x9b\xd1\xc8\x91\x02\x20\xac\xe9\x0c\x56\x74\x66\x68\x16\xf7\xd4\x92\xf7\x2c\x4a\x63\x24\x80\x1f\xd1\x0a\x63\x78\xa4\x16\x7f\x99\x6b\x16\xbb\x89\x99\x4c\x7c\xe5\x62\xae\x52\xc4\xa0\xe1\xc9\xf4\x57\xa9\x36\x25\x1a\x80\x24\x05\xf2\x96\x4e\x3f\x21\x93\x42\xa1\x8c\x3e\x8e\x32\xd1\x4e\x84\xc9\x02\x65\xd0\xc6\xd8\xcc\x6f\xe0\x8a\x2a\x3b\x6d\x4a\x69\x9c\xe7\x9d\xae\x88\x9a\xe2\x9a\xdf\x60\x40\x45\x5e\x8a\xcc\x7c\xda\xc7\x38\xcf\x3d\x5f\x44\x0b\x68\xed\xee\x5d\xf0\xae\x08\xd1\xef\x0c\xe4\xfb\xe9\x43\x28\x92\xf7\x99\xef\x7a\x18\x3f\x4d\x83\x94\x9d\xf6\x7a\x44\xfc\x1d\x0e\x48\x44\x7d\x08\x69\x67\x78\x72\x9b\xb0\xe0\xf3\x89\x28\xee\x0f\xe5\x6d\xcf\xf3\x48\x44\x07\x10\xd2\x6e\x57\xdd\x9f\xb1\x79\xb0\x59\x66\x44\x7e\xb9\x99\x6d\x35\x2b\x0c\x44\x86\x71\x19\x34\xe4\x63\x95\x39\x73\xa3\xc6\xe4\x7c\x79\x31\x3d\x5f\x36\x9b\x58\x62\x08\x6c\xcc\x46\x2d\x31\xbe\xe8\x0c\xf2\x3c\xb8\x0c\x8d\xfe\xe8\x9d\xa0\x73\x30\xa2\x0d\x44\x78\xbb\x2d\x3e\x2b\xd4\xdd\x19\xb2\x4e\xdd\xd8\xb3\x70\x9e\xf3\x6b\xf7\x56\x5c\xce\x90\xd5\x74\xbf\x78\x16\xc6\x4f\xb3\x9a\x69\xdc\xe5\xd2\x17\x9e\xd0\x62\x92\x4a\xba\xab\x4a\x7c\xfe\xcc\xb6\xd1\xfd\x68\x63\x12\xaa\x95\xf4\x3c\x78\xaf\x8e\x76\x12\xbc\xc5\x44\xaf\xb2\x06\x8d\x51\x82\xf1\x28\x40\x32\x38\x59\x24\xa5\x83\x04\x66\x98\x08\x6c\x9a\xc2\x96\x7d\x2b\x80\x4a\x45\x3a\x6c\xb4\xc6\xc4\x2a\x74\x17\x78\xfb\xe6\x9d\xba\x7a\x17\xbc\x83\x77\x57\xdf\xbd\xfc\xf4\xe6\x87\xab\x9b\x37\xef\x5e\xbf\x79\xf7\xe6\xd3\x5f\xe0\xc3\xfb\xeb\x37\xd5\x92\xab\x0f\xd7\x6f\xbe\x7f\xff\x0e\xb4\xf4\x0f\x61\xfa\x26\xca\xd8\x1d\x4b\x40\xc0\xec\x42\x98\x5e\x07\x73\xa6\xcb\xf8\xa7\xae\x5f\xbe\xe6\x15\x7c\xba\xfa\xee\xea\xa3\xf8\x62\xa5\xc0\x48\xe0\x59\xe6\xc1\xd4\x75\x9a\x6e\xcc\xf0\x40\xdd\xf3\x1b\xbd\xf8\x1f\xce\x1f\xf8\x34\xa3\x35\xdc\xd2\x9b\xf1\xc3\x04\x8b\xb4\x3e\x33\xb8\xc5\xb6\x3d\xe7\x7f\x61\xca\xef\x61\x7c\x62\x6c\x51\xba\x82\x55\x25\x96\x69\x06\xa5\xed\x48\x8d\x2a\xcc\x70\x6d\x3c\xb5\xb4\x02\x41\x91\x04\x53\x59\xd8\x14\x02\xf4\xbe\x17\xba\x8c\x5a\xee\x92\x7e\x77\x27\x2e\xd9\x3f\x96\xf1\xdb\x20\x9d\xba\x3d\x4f\x6a\xc8\x49\xa1\x33\xf8\xd0\xea\x9a\xac\x5d\x54\xfa\x55\x41\x4c\xba\xb3\xea\x79\xdb\xfb\x8a\xbe\x51\x43\xa5\xb5\x3d\xb2\x84\x4a\xb7\xed\xb0\x4a\xa0\x0b\x1f\x55\xbf\x2e\x0b\xf6\xb1\xde\x15\x73\x4d\x18\x1a\xb8\x26\xef\x1f\xb8\x64\x20\xab\x7c\x9e\xf4\x63\x54\xc9\x55\xeb\x1a\x9e\xcd\x1a\x94\xed\x72\x95\x67\x98\xb8\x07\x25\xc3\x35\xc4\x76\xe3\x73\xc6\x8a\x3f\xa0\xf4\x09\x40\x10\x86\x2f\xe8\x2e\x6c\xf3\xb6\xb6\xc3\xcf\x13\x9c\x8a\x16\xec\xee\x32\xb2\xf7\x95\x6a\x9f\x9f\xa7\x4e\x96\xd5\xef\xec\x59\xd2\xfa\x4a\xfd\xcf\x10\x62\x3c\xcf\xaf\xa8\x6d\xca\xac\x52\x52\x83\x86\x38\x2d\x28\xda\x50\xde\x50\x4a\x9c\xe7\xf9\xc4\xf3\xca\xc3\x26\xff\x58\x12\xe7\xf2\xab\xed\x83\x5f\x7d\x13\xd5\x7e\xf3\x4d\x54\x7e\xb1\x4d\x3c\xaf\x6d\x7c\xf1\xb7\x1e\x91\x0a\xf7\x10\x91\x5f\xb9\x48\xe2\x21\x3c\x02\x3d\xc7\xc9\xe2\xd7\xe1\x17\x36\x83\x8d\x61\x6d\x82\x25\x1d\xbb\x50\xfc\x3f\x81\xa9\x96\x30\xf4\xe3\x44\x24\x9b\x4c\x12\x36\xcd\x4e\xc3\xe8\x3e\x9e\x06\xbc\x2d\x0d\x0b\xe6\x07\x01\x66\x5b\x1e\x44\x34\x3b\x6f\x36\x93\x8b\xde\x39\x8e\x9a\x94\xbd\x58\x8e\x93\x09\xf0\x7f\x68\xf4\x77\x1e\xeb\x43\x44\x37\x28\x3a\xf3\x58\x1f\x6f\xe1\x50\x36\x86\x1e\x24\xd4\x3d\x6f\xb5\xb2\x4b\xea\x9e\xe3\xa4\x49\x97\xe3\x8c\x57\x92\x4d\xe8\x06\x25\x67\x42\xd4\x4c\xfe\x8e\xbd\xf0\x58\xbf\x92\x3e\xc1\xf4\x3a\xe8\x41\x46\x2d\xeb\xbc\xd5\x62\xa2\x12\x2e\xef\x58\x0d\x4a\x33\x15\xd6\x2f\x93\x4d\x2e\xc7\x6c\xa2\x95\x3b\x75\xe2\x21\x8a\x4e\xf8\xbb\xfa\x64\xb7\xa9\x92\x3d\x5a\xae\x05\xfd\x96\xf6\x34\xc0\xcd\x44\x67\xe5\xcb\xb6\xb0\x3e\x00\xb7\x56\x9e\x0f\xff\x9d\x4f\xa9\x37\x5a\xf3\xdb\x2d\x0f\x92\x17\x0c\x93\x35\x62\x2f\x18\x64\x67\x3e\x24\x78\x6b\x9e\x73\x09\x47\x1e\x64\xb9\x8e\xeb\xba\xbc\xd1\x03\xd6\xea\xea\x59\x41\x6d\x9c\xe7\x96\xc7\x8b\x9d\x61\x51\xe8\x8a\x42\xc7\xef\xf2\x72\xfe\xb7\x7c\xde\x17\xb7\xdc\xea\x7f\x9e\x3f\xe0\x4f\x22\xf7\xcb\x8c\xb9\xb7\xbd\xdb\x76\xd0\xef\x75\x5c\x77\xe0\x62\xa3\x4a\x79\x84\xb9\xa3\xdd\xa4\x06\x58\x9a\xb9\x9e\xf5\xa2\xa9\xf3\x12\x8d\x20\x85\x8d\x3a\x3c\x87\x29\x97\xab\x44\x46\xc7\x15\xb5\x2c\x2e\xd8\xba\x02\x8b\x7d\x79\xe1\xe6\xf9\xf2\xd2\xaf\x49\x90\x33\x15\xc2\xe5\xa6\x41\xb5\x13\x92\xf5\x2e\x78\x27\x5e\xda\x5c\xd0\x96\xc7\x7c\x4f\xa4\xeb\xe2\x17\x5a\xfa\x52\xb3\xb9\x91\x6f\x0a\xef\xa1\x15\xb5\x5a\x16\x6c\x68\x6b\x83\x61\x73\xe9\xb1\x96\xef\xf1\x65\x91\x70\xe1\xb6\x7e\x1d\xba\x90\x50\x76\x9e\x5c\xd2\x8e\x3b\xec\x9d\xe3\xac\x49\x3d\x1f\x92\x33\xf1\x53\x9e\x3d\x24\x97\xd4\x97\x37\x78\xb9\x5f\xa8\x3e\x5b\xb4\x79\xb1\x46\x3e\xf4\x86\xe0\x61\xdc\xea\x0d\xf1\x85\x3b\x92\x45\xad\x0c\x3c\x4c\x36\x67\xfc\x3a\x13\x50\x89\x2f\x68\xa7\xeb\xb6\xbb\xc3\x61\xcf\xef\xb7\xfb\x6e\x67\xd8\x03\x94\xd1\xae\xdf\xca\xf0\xa5\x2b\xdb\x33\x47\x2e\x24\x18\x22\xba\x3c\x8f\x2e\x69\xff\x1c\xcf\x11\xdf\x4c\x2e\x86\xa8\x45\xfb\x27\xf2\x91\x35\xf2\x5c\x88\x64\x6e\x09\xbe\x0f\x5b\x1e\x7f\xd8\x6f\x9f\xe3\x05\xf2\x2e\x2e\xfc\xb6\x78\xda\x6f\x9f\x88\x9f\x11\x86\x39\xf2\xf8\xd3\x0b\x2e\xeb\xde\xd3\x19\x52\xc1\xc9\xea\x63\x73\x01\xa1\x90\xf1\xca\xc4\x4d\x73\x1f\x2c\x0b\x2d\xef\x9e\x2e\x2f\xdd\xd1\xaa\x89\x50\x4a\xef\xf5\xde\xb8\xa0\xcb\x91\xe5\x3a\x56\xe5\x95\x56\x8a\x9b\xf7\xe4\xbe\x48\xd7\x94\xb6\x96\xb8\x69\x39\x56\x53\x17\xf1\x02\x4c\x56\xcd\x7b\xed\xb5\xa0\xb2\x37\x29\x7f\xad\x76\x87\xb4\x3b\x3b\xa7\x8e\x7e\x5d\x0a\xf7\xa3\x64\x52\xe7\x15\x93\x54\x52\x10\xc7\x0f\x09\x9b\x86\x69\x18\x57\x1c\x05\xc3\x7d\x95\x5e\xee\x3a\xd5\x25\x0f\x4c\x3f\x80\xca\xd3\xc1\xc1\x2d\x52\x7c\xa9\x46\x8b\x56\xdb\x43\x3d\xfe\x1f\xcc\x87\x0f\x10\x62\xbc\x97\x08\x90\x8d\xd4\xb7\x33\x4c\xf4\x15\x68\x59\xaa\x7e\xfc\x9e\xe3\x2b\xcb\x47\xc4\x40\x5b\x0c\x52\x6d\x4e\xe9\x57\xcc\x29\x7d\x32\xec\x8b\x3a\x9f\x27\xa5\x15\xf5\x4d\x13\x16\x64\x8c\x08\xa5\xd6\xac\x8f\x4b\xb6\xa2\xbe\xe7\x88\x68\xda\xf7\xa4\x3b\xc0\x46\xd5\x15\xf0\xc7\x90\xa5\x84\x6b\xe1\x4a\x10\xf4\x5c\x97\x78\xae\x6b\x62\x03\x89\xaf\x3d\xc7\x82\xf5\x8c\xaf\x3d\x12\xa5\xe6\x1b\x27\x71\xaa\x63\x5a\x58\x3f\x96\x7b\x5d\x9f\xca\x0e\x3b\xd8\x89\xa3\xd7\x09\x63\x3f\xb3\x13\xde\xfa\x21\x46\xd6\x5c\xfc\x3c\x7e\x08\x67\xe4\xba\xb2\x6d\xfe\x73\xc4\x64\xde\x43\x7d\x3e\xe2\xb9\x43\xe2\xb9\x43\x7d\xf4\xd9\x21\x43\xb9\x22\x8e\x9d\xe3\x77\x5c\x7d\x56\xec\x61\x67\x5e\xb4\xe7\x10\xfe\x66\x4d\xa2\xf1\xfa\x1c\xb6\x2a\xef\x48\xa6\xfd\x5a\x0a\x05\x49\x36\x51\xb9\x6a\x8a\xe6\xd5\xc8\x7f\xf5\xcd\x78\x17\xac\x58\x5a\xd7\x02\xfe\xb8\xaf\x27\xc6\x73\x7d\xe2\xb9\xbe\xfe\x14\xff\x44\x5d\xb2\xec\x72\x04\xfc\xf2\xb4\xdc\xec\xbf\x91\x45\xf8\x78\xaf\x77\xfa\x8c\x77\xce\xa3\x8b\x1e\x0b\x67\x0b\xd1\x9c\x23\x47\x08\x03\xaf\x6c\x44\x98\x5e\x7d\xc9\x58\x94\x86\xb7\xcb\xe7\x2e\x8d\x86\x4a\xaa\x8c\x1a\x2c\xcf\x19\x5f\x1c\x35\x4b\x43\xb4\xe1\x78\xf2\x66\xa3\x0d\xaf\x93\xf8\x67\x16\x3d\xf7\xfb\xfc\x3a\xcf\x45\xfa\x50\x91\xe7\xe0\xc0\xd7\x8f\x10\xa9\xea\xd7\xaf\x59\xb0\x64\xb3\x7f\xe7\xaf\xff\x46\x72\x16\x0a\x2a\xe3\xab\x13\x1c\xcf\xf7\x88\xe7\x97\xde\xc5\xfe\xd1\x64\xbe\xe5\xea\xea\x97\xdd\x12\x3e\xf4\xbf\x6b\x4d\xf5\x89\xe7\xf6\x6b\xd7\xd4\x11\x22\x77\x94\xf2\xac\x13\x76\xcf\xa2\x4c\xad\x34\x91\x7c\xf7\xbf\x07\x11\x3a\x96\x4e\xf7\x68\xfb\x52\x16\x2c\xff\x3b\x35\xe9\x79\x8a\x6d\xb1\x0c\xaa\x99\xc5\xc5\x92\xf0\x45\x42\x13\xb5\x2c\x7c\xe2\xf9\x86\x86\x59\x97\xf7\xb6\xde\x37\x43\xc4\xe2\x3e\x6d\x4f\xc2\x71\x6d\x7a\xea\x09\xb5\x7e\xb6\x20\x94\xce\x4c\xe3\x58\x34\xe7\xf4\xe7\x49\xe9\xca\xb4\x9f\x9d\xbc\xd6\xb3\x49\xc9\x3c\xba\x06\xab\x29\xfd\x72\x70\xd3\x9a\x58\x5b\xed\x28\xa1\x0d\x57\x66\x70\x2e\xef\xcd\xb1\x3c\xb4\x7b\x5a\xfa\x77\x52\xe2\xda\x51\xcf\x9f\xa1\x95\x3f\x27\x8f\x6c\xa1\x95\x9b\x5f\xd1\xea\xf8\x57\xb5\xf0\xba\x24\xaa\xfb\xb3\x52\xa4\x33\x91\x61\xee\x1b\x75\x4e\x60\x26\x88\xea\x28\x30\x3f\xde\xac\x85\x5a\xc4\x33\xe5\x94\xba\x56\x60\x7f\x2b\x7e\x7f\xa0\x92\x43\xf9\x7d\x9d\x1c\xaa\x27\x53\xc6\xdf\xf1\x25\xdf\xc5\x48\x66\x88\x1a\xf6\x64\x86\x28\xcf\xeb\xc8\x14\x51\x5e\x67\xa0\x72\x44\x79\x5d\x0c\x5f\xe8\xc6\xc8\xb6\x74\x4d\x37\x45\x06\xc7\xf7\xf4\xda\xb6\xaf\x75\x76\xec\x14\x5e\xd2\xf7\xb6\xfd\xde\xb9\x1f\xe4\xb9\x65\xc1\x67\xba\x71\x3e\x24\xf1\x2a\x4c\x19\x7c\xa2\x46\xfa\xc1\x29\xba\xc6\xf0\xaa\x02\x0c\x09\x6f\x69\x48\x6f\x9d\x39\x7c\xa4\x8d\xc6\x8e\xb3\x92\x14\x69\x3f\x3b\x09\x4b\xe3\xe5\x3d\x43\x02\x11\x1e\x65\x15\xfb\xe8\xd3\x16\x8f\xf7\x92\x61\x4f\x2a\xaa\x18\x43\xaf\xe0\x15\xde\x6a\x50\x9c\x4f\x79\x5e\x13\x31\xa0\xda\xfb\x91\xf1\x75\x1a\xc6\x91\xc8\x10\x88\x6d\x3b\x73\xb2\x05\x8b\xd0\x2b\x33\x62\x21\x11\xae\x24\xf4\x65\x11\xc1\x66\xf5\x9c\x9e\x85\x6d\xbb\xe5\xfd\xff\xcc\xbd\xfb\x76\xdb\x46\xd2\x2f\xfa\xbf\x9e\x42\xc4\x64\x23\xdd\x66\x0b\x22\x24\x59\xb1\x21\xb5\xb0\x1d\x5f\x12\xcf\xd8\x71\xc6\xf2\x24\x33\x1f\x84\x68\x43\x64\x53\x44\x0c\x02\x0c\xd0\xd4\x25\x02\xe6\xcd\xce\x3a\x8f\x74\x5e\xe1\xac\xae\xbe\xa0\x01\x82\xbe\x7c\x7b\xce\x65\xad\xc4\x22\x6e\x7d\xad\xae\xaa\xae\xae\xfa\x15\xa5\xf4\xb6\xbd\xfd\x7c\x51\x16\x4b\xb6\x7f\x7c\xec\xe8\x54\xfc\x39\x7e\x68\x1a\x84\xc9\xcf\x9b\xe6\x78\xed\x5b\x86\x46\x0b\xc0\x5b\xd8\xf4\x76\x43\x9c\x32\x68\x0e\x16\x0d\x6b\xc8\xef\x03\x58\x0d\xcc\xbb\xcc\xf1\x83\xf8\x97\x8e\x64\x2c\x4d\x49\x99\x77\x39\xdd\xb9\x46\x03\x16\x0e\x40\xab\xbe\x21\x29\xf5\xa9\xf8\x55\xa9\x23\x7c\x9b\xcd\xc9\x03\x1c\x49\x99\x69\xc8\xbd\xe2\x63\xc0\xbd\x79\x92\x66\x70\xca\xa1\xa6\x86\x64\xf0\x5b\x8c\x1d\x99\x52\xee\xcd\x8a\x65\x92\xe6\x3b\x62\x12\xab\x10\xa5\x75\x8d\x0e\xa0\x82\x85\xeb\xbe\x16\x2a\x9a\xf8\x49\x7d\x4c\x46\x62\xbf\x51\x85\x25\xcd\x03\x34\x75\xdd\xa9\xc7\x72\xce\x4a\x24\xe6\xb9\x42\x39\x26\x53\xd7\x45\x53\x8f\xdd\xa5\x1c\x61\x88\x98\x86\xa4\xb8\x94\x02\xe3\x11\xf3\x15\x66\xe8\x0e\x39\x6a\xf2\xf6\xa6\x8b\x24\xcd\x77\xa7\xf7\xd3\x8c\x39\x18\x07\xa8\xa0\x3f\xc3\xf9\x83\xf2\xac\x2c\xc9\x9a\x64\x38\x58\x8b\x7b\x41\x86\x72\x3d\x29\x73\xfc\x30\x75\xdd\x51\x02\x0d\x90\x75\x65\x68\x8e\x9b\xe6\x44\xdb\x69\xce\x8a\x13\x9c\xa0\x12\x32\x06\xe0\x1d\x31\x9e\x34\x8a\x89\x1c\x65\x9f\x70\xd7\x1d\xc9\xce\xbd\xd0\xe0\x10\x2f\x3a\xf3\x7b\x2f\xeb\x5f\xf7\x7d\x3e\x15\x4e\x9c\x9c\x84\x82\xfe\xa4\xf3\xfc\xba\x2e\xe2\xf4\xd2\x9e\xb0\x0f\xe1\xb9\xc7\x96\x29\x47\xce\x3a\x5f\x24\xf9\x2c\x63\x33\x43\xaa\x0e\x49\x09\xc3\x01\x2a\xe9\xda\x2b\x72\xf3\xbc\xd4\xcf\x71\x58\xa2\x07\x35\x5e\x01\x23\x25\x4b\xaa\x22\x17\xbc\x2a\x40\x39\x5d\xc3\x6a\x2a\x32\x86\x5d\x37\xf7\x98\x58\xe9\xe6\x07\x72\xfe\xa1\x0b\xdb\x55\xdf\xef\x96\x56\xad\x10\xdf\x2f\x66\xf2\x43\x5d\x8b\xb6\x87\x07\x81\x0f\x77\x12\x1d\x0b\x58\x88\x05\xc4\x94\x2d\x86\x7b\x37\x82\x3f\xfe\x34\x84\x43\xe1\x8f\x34\x7d\x08\x8a\x40\xa2\x0c\x40\x1c\x99\xea\xd4\x1e\x0d\x79\xfd\x65\x43\xba\xd3\x0e\x95\x69\xeb\x8f\xb2\x13\x0e\x0c\x13\x87\x61\x32\xcf\x54\x07\xc5\x8a\x1a\x18\x25\x31\x33\x0d\xe8\x60\x6f\x06\x0e\xd0\xe0\x9c\x8c\x7b\x97\xb3\xba\x46\xe2\x0f\x1d\x4d\x08\xe2\x94\x7b\x97\xb7\x75\xcd\xb1\x77\x79\x43\x19\xe1\xde\x65\x45\x0f\xc4\x9f\x44\xbe\x96\x88\x17\xa6\x1a\xfd\x17\x93\xdf\x55\x12\x85\x86\xbc\x1a\x4a\x74\x45\x75\x36\xdb\x51\xe9\x5d\xce\xf0\x43\xa9\x2a\x2a\x69\x09\xf5\x94\xb0\xcc\xc0\x06\x45\x29\x6b\xa1\xd2\xd4\xa2\x68\x33\x42\xab\xb5\x3a\xdb\x4d\x79\xc5\xb2\xb9\x83\x4f\x10\xa7\x3f\x0b\x4d\x2f\xbc\xee\x27\x17\xcf\xe9\xc3\xe5\x6d\x50\x92\xcb\x59\x30\xf2\x1b\xa8\x81\xab\xd8\x2d\x92\xa1\x57\xd2\x40\x94\xa1\x37\xf0\x43\xaf\xa3\x14\x3f\xbc\x51\xc8\x72\x82\x38\x04\x81\x95\x72\x0c\x4a\x31\x06\x3e\xf9\x1d\x95\x90\x60\xb5\x65\x86\xea\x7d\xbb\x32\x38\xdd\x6c\x76\xde\xd7\x35\xfa\xd8\x19\x8f\x95\xb4\x6d\x7c\x24\xba\x6b\x0e\x71\x2e\x17\x0e\x26\x33\xc1\x52\x72\xdb\x7b\x5a\xb4\x97\x21\xd1\x50\x09\xb5\x25\xdb\xaa\x7e\xeb\xea\xb9\xa9\x5e\xa5\xc1\x6a\x1a\xd2\xcb\x22\x2b\x43\x5b\x61\xb1\xcb\x9f\x86\xb2\xe5\x65\x65\xe2\x69\x67\xc0\x08\xe0\xe7\x4d\xf7\x9d\x85\x79\x27\x07\x7c\x03\xeb\xb0\x4f\xe2\xf5\xa2\x8f\x96\x1a\xf5\x20\xf8\xfb\xa0\xdf\xd0\x5b\x74\xa3\x06\x00\x5b\x11\x6b\xc5\x47\x3a\xe0\x16\x2d\x36\x62\xa4\x04\x36\x3d\x18\x50\xef\xba\x9c\x94\x8a\x4b\x53\xb1\x60\xe4\xcf\xa0\xd3\xf0\xa9\xcc\x66\x56\xea\xe0\xe1\xc4\x75\xd5\x8f\xde\x83\xca\x75\x7f\x97\x4d\x1b\x09\x11\xad\x79\x73\x43\x60\x9c\x07\x73\x28\x89\xef\x40\xb0\xaa\x1a\xc1\xbc\x44\x8a\xcd\x5c\xce\x39\xbb\xdd\xcd\x77\xb4\x4b\xb6\x28\x56\x61\xfd\x69\xd1\x43\xc5\x2c\x43\x2e\x5c\x75\x57\xac\x6b\x2a\xa6\x5b\xdc\x6c\xc8\x95\x37\xa7\x6f\x07\x33\x95\x52\x4a\x3f\x4a\xf4\xdd\x04\x40\xcf\x0b\xc4\x70\x90\x4a\xd0\x82\x39\x9a\x7b\x3f\x8c\xe7\xde\xaf\xe3\xb9\xf7\xea\xd1\xe8\x3d\x79\x50\x34\x17\x7c\x04\x00\x09\xff\xe0\x08\x23\x8b\x12\xe5\xbd\x43\x8c\xac\x3b\x89\x82\xb1\xd1\xaa\x90\x28\xf3\x5c\x97\xd7\xd2\xf0\x83\x6c\xf2\x80\x31\xef\x6d\x27\x16\x00\x4d\x88\x96\xb1\x18\xcc\x1c\x66\x9c\x55\x7b\x65\xd9\xa8\xaa\xeb\xd1\x7b\xdc\xad\x00\x46\x6a\x68\x22\x5e\xa2\x4a\xce\x2a\x8c\xc2\xc7\x40\x06\x50\xe1\x6e\x91\x23\xf4\x5e\xe8\xfd\x7d\xa0\x87\x8f\x9e\x8c\xe5\xf4\xe4\x72\x7a\x2e\x0d\x95\x6d\xb5\x49\x2f\x1f\x5a\xcb\x33\x89\xa0\x66\x2e\xb3\x17\x69\x0d\x22\x85\xdf\xa0\x41\x14\x5d\xd9\x27\xc9\x3f\x8a\x95\x72\xe2\xef\x2c\xc1\xfd\x84\xf4\xcb\xae\x68\x31\x1e\x93\x35\x1d\xf9\x3b\xa5\xa4\x50\x65\x5c\x25\xc9\x78\x4c\x8c\xae\x22\x5a\x0c\xa4\x67\x7f\xbf\xae\x6b\xb4\x06\xae\x1a\x55\x31\x65\x64\x6f\x2f\xa9\xeb\x1c\x40\xff\xa5\x9c\x33\x37\x1a\xb3\xf8\x0a\x0f\x4e\x99\x0b\xef\xa6\x43\xf4\x65\xd2\x8b\x7a\xdc\xd6\x6f\xe8\x6b\xda\xed\xeb\x40\xd7\x36\x1b\xde\x0e\x5a\x2e\x44\x93\x69\x50\xea\xc1\x66\x34\xed\x36\x48\xed\x49\x8e\x02\xdf\x3f\x22\xbe\xff\x38\xf0\xfd\xc7\x03\x60\xeb\x0a\xd8\xce\x80\xae\x1f\x07\xfe\xe1\x31\x20\x91\xf9\x47\xed\xde\x4c\xc6\x86\x29\x78\x3b\x0b\x44\xc9\xc6\x8f\x38\x7e\x12\x1c\x3f\xd1\x78\x58\x36\x10\xba\xc4\xc6\x7a\x1c\x3c\x7d\x4c\x9e\x1e\x07\x4f\x8f\x61\x6f\xf4\x05\x5e\x01\x3a\xe6\xee\x10\xdc\xa4\x90\x74\x13\x78\xcf\xe6\x19\x44\xdf\x3f\x34\x58\x06\x93\x93\xaa\x8d\xa6\x80\x1b\x5d\x2b\x6b\xef\x08\xaa\x13\x74\x27\x43\xa1\x54\x91\x82\x74\xc5\xe7\xc1\x70\xbb\x52\x99\x6d\xb2\x40\xa5\x19\xf8\x24\x4c\x50\x4e\x38\x59\x9b\x30\x3b\x79\xa5\x4c\xe6\x72\xcc\x9e\x04\x87\x03\xe0\xf1\x30\x06\x5f\x12\x12\xa0\x90\xdf\xc5\x58\x24\x6a\x2c\x2a\xb5\x05\xb4\x3d\xc5\x8e\x8e\xc5\x56\x71\x68\x8c\xcc\xae\x89\xcc\xe9\xfa\xf3\x11\xdb\xd3\xce\xf8\x10\xa1\xee\x6e\x44\x6d\x2f\xe8\xa8\x53\xd2\xb4\x3f\xa6\xf6\x49\xf6\xbc\xae\x17\x9d\x41\x36\x0d\xea\x89\x3b\x00\x82\x49\x90\x4a\xea\x52\x6e\xba\x29\x1d\x86\x2c\xb0\xa3\xfb\x0f\x62\x50\x9b\x17\xae\x3b\x9a\x63\x2b\xc9\x88\x18\x48\x48\xd0\x4c\x69\x69\xb9\x81\xa9\xe3\x25\xe9\xff\x35\x09\x2c\xc0\x63\x26\x9d\xbe\xfc\xce\x3d\x04\xe8\xa9\xf2\xc9\xc1\xe6\x13\xc2\x01\x1e\x15\x1e\x1f\x6e\x79\x4c\x38\xb4\x11\xde\x39\xfa\xd4\x3b\x84\x47\x87\xb1\x44\x2f\xce\x69\x94\xaf\xb3\x2c\x6e\x53\x09\x09\x96\xa6\x60\x13\x20\xbd\x49\xce\x6e\x51\xa6\x6e\x08\x56\x20\xbf\x5b\xd3\xd2\x52\x27\x66\x34\x45\x15\x5a\xe3\x70\x1d\xf4\x2d\x36\x98\xac\x7a\xeb\x45\x2b\x78\x33\xd2\xe2\x5c\x57\x68\x85\xc3\x55\x30\xdb\x24\x65\x2b\x52\xac\xe3\x57\xa4\x2c\x5e\xfa\xdc\xe5\xf0\x13\x96\xca\xa7\x4f\xbb\x30\x44\x87\x06\xea\xa4\x03\x32\xb4\xb1\x76\x15\x0d\x79\xdd\xa3\x12\x94\x7b\x73\xf4\xd0\x10\x5f\x87\x8f\xf9\x0d\x6e\x2f\x0e\xfa\x6b\xbc\x77\xce\xd2\x6f\x23\x50\x21\x87\xd0\x6a\x89\x3c\x59\x4a\xb5\xd2\x4c\xc7\x5c\xbd\x49\x46\x93\x56\xff\x6d\xe3\xc3\x54\xb4\xa3\xf4\xc1\xda\x5c\xfc\xe6\xf8\xe6\xf0\x0b\xdc\x7b\x94\xcf\xa7\x1a\x22\x6d\x24\xb4\xbb\x92\x31\x3e\xdc\x15\x2d\x3e\x53\x24\x3b\x84\x8d\x99\xa1\x84\x34\x6a\x76\xcc\x18\x76\x5d\x59\xd2\x2e\x8b\x78\xdc\x3d\x44\xb1\x7a\x00\xad\xfe\xda\xd8\xd7\xc3\x27\x1d\xf5\x8e\xb5\xf0\x34\x69\x07\x9e\x66\xc7\xde\xf5\x78\x97\x1f\x69\x14\xc3\xc1\x34\x57\x59\x95\xa5\x60\xe7\xb8\xd9\x61\xe8\xc9\x11\x46\x45\x6b\x2c\xed\xeb\x8e\x2d\x8a\xcd\xce\xac\x78\xd0\x81\x7d\x97\xe9\x99\x49\x5f\xac\x98\x85\xa2\x10\xa5\x8a\xce\x8a\x1c\x12\x62\x35\xb7\x8b\x34\x63\x68\x84\x10\xa3\x3c\x32\x28\x38\x00\x41\xae\xda\x6e\x14\x71\x55\x02\x53\x1f\xfb\x8d\x82\x31\xeb\xcc\x92\xca\xb7\x35\xe8\xc0\xb6\xab\x15\x50\xb5\xce\x2c\x7a\x79\x72\x14\x3c\x01\xdb\xf1\xe1\xa7\xce\xd4\x26\xfe\xc6\x52\x92\x2b\xc8\x6e\xc1\xd6\x0c\x77\x83\xc7\x69\x82\xc4\x8b\xa1\x03\xb5\x3e\x2d\x7c\x89\x33\x95\x0e\x0b\x1d\xa4\xdf\xee\xc9\xd7\xb0\x83\x5a\xb1\x79\xcc\xd5\x6b\xc7\xd1\xa7\x4e\xdc\x26\xfd\xf8\xd4\xef\xfc\x6e\x5a\x7e\x2d\x48\x45\x03\x65\x9a\xa2\x6e\x03\x3b\x21\x66\xba\xe8\x84\x64\x64\x3a\x24\xa0\x78\x60\x8b\x27\x13\xb4\x82\x38\xa6\x94\x4e\x43\x1e\x95\x71\x80\x12\x2a\x86\x58\x14\x86\xc3\x02\x25\x26\x73\x62\x98\x78\x36\x45\x82\xbb\xc0\x35\xe3\x21\xfc\x2b\x99\xf4\x54\xa7\xb6\x0a\x2a\x94\x51\x38\x79\x08\x19\xca\x48\x49\xcc\x93\xfe\x21\xe8\xc6\x98\x29\x0f\x50\x73\x44\x75\xf4\x65\x51\x46\xed\xa8\x2c\x92\x6a\x98\x72\xe4\x62\xed\xf9\x31\x1e\x7d\x36\xec\x48\x73\x09\x25\xa9\xec\xa3\xc8\xcd\xca\xed\xa7\xdb\x5c\x1a\xc9\xa8\xa8\xeb\xc1\x55\x05\x0d\xfa\x32\x84\xaf\xb6\xca\xe2\x36\xff\x1b\xbb\x87\x83\x39\x5f\x1f\xcc\xf9\x7e\xe0\xfb\xd6\xc1\xdc\xd1\x17\xe8\x72\x9d\x5e\x6e\x9c\x85\x6d\xd6\xbb\xf1\x4a\x37\x30\x1a\x90\xfd\x5b\xc9\x54\x48\x47\xce\x56\x2c\xf1\x0d\xb1\xd4\x1f\x88\xcf\x06\x64\xca\x73\xa7\x9d\x54\x6c\x2f\x7a\x8d\xab\xb6\xad\x5d\xb0\x48\x7b\xd3\x05\x9b\x7e\x84\x0b\xbb\x8d\x29\xe4\xe4\x17\x77\xdb\x66\x96\x9b\xd2\xb3\x7f\xbc\x35\x84\x91\xdd\xd7\x25\x60\xa5\x17\x7a\xa5\x27\x6a\xa5\x57\xaa\x2b\x32\x47\xd2\xb1\xd4\x95\xc5\x3c\x4c\xd5\xe9\x6f\x85\xaa\x8d\x7e\xf5\x96\x3c\xa9\x64\x6d\x73\xb2\x20\xb3\xcd\x45\x7f\xd4\x59\xf4\x87\x31\x59\xd1\xd4\x9b\xa3\x4c\x6c\xf8\xa4\x1e\x3a\x5a\x81\x8d\x7e\x8a\x16\x80\xa5\xd0\x86\xa4\xa3\x85\x28\x9d\xcc\xf0\xce\x8a\xae\xd1\x04\x43\x3e\x0f\xb4\x6a\x53\xa9\x82\x69\xdf\xa7\x94\xae\xac\xbc\xa8\xa3\x29\x9a\x75\xa3\xde\xe7\x50\xe3\x8c\xa8\x44\x8c\x73\xc1\x2f\xea\x7a\x2e\x06\xbb\xae\xe1\xfb\xb9\xf9\xbe\xfd\x70\x2e\xb9\x0d\xad\x48\x2e\xbf\x26\x73\xe5\xc3\xa5\xaf\xd7\x68\x42\x2a\x23\xec\x46\x93\xa6\xe3\x32\x34\x12\xcd\xaa\x18\x77\x5d\x04\x7f\x25\x87\x9a\x91\x0a\x5b\x08\x44\x3d\x36\xa4\x93\x7e\x6d\x61\x47\xad\x7a\xb4\x1d\x94\xdb\x0a\xa3\x51\x2c\x5d\xc6\xc3\x24\x6d\xbc\x0c\xf0\x75\x35\xeb\xc7\x30\xe9\xb9\xf7\x9e\x5d\xbf\xbc\x5b\x29\xdc\xf3\xcc\x52\x95\x17\x74\x3f\xd9\xbf\x26\x33\xf9\x67\x05\x96\xa7\x0c\x2d\xf0\x88\x52\xc8\x25\xa9\x02\xee\xd1\x68\x55\xd7\xdb\x10\x3b\x66\xe6\x2c\x0a\x02\xeb\x1d\x1c\xd3\x91\x4f\x64\x29\x8b\xba\xce\xd0\x0c\x53\x3a\xab\x6b\x67\x3f\xd9\x4f\x9d\x11\xcd\xd0\x82\x38\xa9\x83\x1b\x8c\xf1\x43\x46\x87\x14\x37\xa1\x6a\xd8\x21\x18\x19\xc9\x29\xc4\xe2\x16\x16\x76\x90\x9e\x99\xd2\x75\x73\xd7\x65\x9d\x13\x32\x4a\x33\xd7\x2d\x42\x16\xa4\x68\x05\x76\xae\x29\xca\x5d\x77\x54\x84\xcc\xab\x8a\x75\x39\x65\x10\xb8\x1e\x4c\x11\xca\x69\x07\x1c\x21\xc3\xf6\x2b\xb9\x28\x64\xad\xf1\xbb\x02\x41\xd4\x12\x61\x6b\x4e\x32\x2b\x92\x63\xd9\x3d\x7a\x13\x82\x20\x13\x3c\x38\x23\xec\xb3\x00\x05\x7a\xeb\x16\xb1\xb8\x17\x82\xcf\xf1\x83\xb8\x4b\xe5\xe1\xfa\x0d\x4d\xd0\x14\x93\x7b\x3a\x39\xd1\xce\x82\x67\xf7\x27\x78\x89\x6e\xa2\x7b\x38\xa0\x99\x77\x06\x20\x23\xd6\x34\xd3\xb9\x15\x50\x21\x69\xc1\x11\x1d\xd0\xe6\x3b\x75\x0b\x77\xc0\xff\xd5\xf9\xb4\xb6\x95\x68\x1c\x11\x2b\xa4\xe2\xf8\x38\x38\x3e\xd6\x81\x15\x10\x52\xf1\xe4\x20\x78\x62\x79\x69\x0d\x21\xba\x0f\x2a\xcc\xfe\xc1\x04\xef\x00\xb3\x42\x0f\x3c\x29\xc5\x10\x99\x76\x42\x2f\xc4\xc0\xcd\x8b\x72\xca\x66\x41\x3e\xa2\x74\xdf\xdb\xf7\xd8\x1d\x9b\x36\xe4\x41\xfc\x09\x72\xc5\x3a\x27\x81\x7f\x30\xb1\x58\xe7\xa0\xc7\x13\x50\xb4\x73\xed\x8c\x44\x31\xd7\xde\x3c\x4b\xae\x2b\xd7\xd5\x48\x1c\xb2\x5a\xfb\x8c\x1f\x5e\xd8\x82\x34\x01\x4b\xcc\x76\x53\x83\x21\x31\x03\x30\x04\xf3\x3e\x8c\x7f\xf9\x44\xc3\x46\x28\x46\x7e\x78\xac\x76\x85\xfe\x53\x18\x99\xc7\x66\x79\x11\x9f\x74\x8b\x14\x2c\x5a\x52\x51\x5b\x97\xc5\x30\x14\xf4\x11\x95\x90\xae\xa5\xca\x1d\x1a\x94\x11\x8f\x77\xfa\x2c\x2d\xd5\xb0\x2b\x25\xc9\x65\x16\x50\x39\x1c\xa8\xc4\x11\x8f\x91\x72\x0d\x16\xbb\xee\x0d\x43\x24\xa7\x15\xc0\xcc\xb5\x30\x5f\x00\xe3\xaa\xd9\x3d\x97\xfc\x76\x47\xee\xd6\xc1\x65\x2d\x33\x09\xbb\xf5\x27\xa3\xb5\x77\x9d\x15\x57\x49\xa6\xbf\x4a\xd0\x9a\x64\xd2\x24\x32\xa5\x6b\x6f\x9d\xa7\xd3\x62\xc6\x76\xd6\x2d\x4a\x23\x9d\x98\x55\x38\x27\x0b\x1a\xc5\x64\x46\x27\x27\x0a\x44\x08\xcd\xa9\x2c\x01\x9f\xc8\x46\xae\x74\x95\x73\x30\x6f\x2c\xa2\x59\x4c\x57\x04\x1c\xd6\x57\xae\x8b\xec\x72\xc5\xea\x4d\xed\x3b\x98\x4c\x31\x26\xb3\xf1\xb8\xb1\x1c\xd4\x67\xa1\xa8\x2a\x58\x34\xb1\xd2\x8c\x9e\x06\xbe\xdf\xa6\xc6\x38\x3c\x0e\x0e\x0d\xbf\x7f\x1c\x1c\x3f\x06\xa2\xf8\xd2\xf8\x84\x96\x28\x0c\x84\x92\xaf\x03\x14\x9e\x4a\xf1\x2e\xc8\x64\xad\xc8\x84\x64\x0a\x09\x32\xb9\x23\x53\x03\x0a\x49\xe6\x76\xe8\xc2\x82\xee\x5f\x7c\x83\xa2\x6f\xdc\xff\xf5\x6d\x5c\x5f\xcc\x2e\x66\x61\x7d\x1a\xfd\x76\x16\x3f\x3a\xc3\x52\x0c\xf4\x9e\xe2\xfd\x6b\x4d\x7d\x25\x5b\x65\xc9\x94\x39\xe4\xa0\x4f\x7f\xab\x4d\xfa\x6b\x13\xe0\x1a\x0a\x4c\x14\x05\xe6\x9a\x02\xf3\x21\x0a\x4c\xb4\x1f\x6e\x4e\x0a\x92\xe2\xa0\x94\x57\x6a\xda\x0a\x0c\xa9\x75\x1b\xb2\x29\x34\x52\xba\x32\xf4\x47\x54\x06\xa6\x0e\x05\xa6\x16\x05\xce\x25\x05\x2e\x3a\x14\xb8\x05\x87\x79\x07\x0e\x3a\xdb\xe4\xf2\x92\x1c\x6f\xe8\x5c\xd1\x2a\x80\x2a\xcb\x36\xdc\xd3\xb9\xa1\xd1\xb9\x4d\xa3\x26\x4c\xf2\x9a\x46\xf1\x89\x22\xc6\x2b\xba\x46\x73\x22\x51\x99\xe5\xd0\xd0\x2b\x2c\xc3\x2c\xd3\x39\xba\x96\x9b\xfe\x2b\x4c\x46\x37\xea\x2e\xd0\xa9\x6a\xc7\x95\x20\x60\xd7\x45\x76\x35\x15\x5a\x90\xc2\xbe\x83\xc9\x3d\xc6\xa6\xee\x4b\x72\x4b\x1d\x87\xbc\xa4\x13\x72\x47\x27\x27\x77\xa7\xd7\x3a\x3c\xf3\x6e\x3c\xc6\x0f\x57\xf4\x3a\xba\x8b\xcd\x6a\x3a\xef\xd4\x44\xde\xd1\x0c\x4d\x51\x82\xae\xa4\xa3\x07\x26\x06\xf9\x99\x4c\x30\x79\x26\x16\xde\x47\xea\x9f\x7c\x3c\xbd\xd2\x85\x7e\x1c\x8f\xf1\x33\xfb\x48\x82\x52\x8a\x2e\xe9\x55\xf4\x31\xc6\xe1\x65\xa0\x4a\xbf\x34\x99\x7e\xaf\xbc\xeb\xb2\x58\xaf\xe0\xd4\x77\x26\x47\xe8\x39\x8d\xce\x63\x93\x60\x98\xbc\x13\x83\x65\x28\xe5\x83\xeb\x3e\x97\xc5\x7f\x90\x45\xbc\x35\x73\xa4\xec\x83\xca\xb6\xf1\x1c\x2b\xcd\xee\x2d\x5d\xa2\x73\xb2\x20\xef\xc8\x33\xf2\x41\xd0\xc8\xbb\x33\xfa\xd2\x75\xd1\xed\x98\x2e\xd4\xc9\xf4\x4b\xf2\x0e\x8f\xdf\x92\x97\xf4\xdd\xf8\x5c\x77\x50\xaf\xf7\xdb\xb1\x79\x0b\x37\x71\x9b\x52\x73\x09\xcb\x20\x97\xee\x22\xb2\xe1\x6b\x9a\x8f\x35\x56\x30\xc9\x68\xa1\x7f\x4e\xe9\x6c\x93\xe2\x5d\x17\x25\x34\x45\x89\xd0\xcb\x17\x98\x28\x8a\xaf\xc8\xb4\xa5\xf2\x52\x2f\xa7\x6a\x47\x59\x74\xd3\x36\x6b\x87\x34\xea\x3a\xdf\x38\xca\xc8\xea\x7c\xe3\x80\xd5\xd5\x71\xf5\x1d\x65\xe3\x75\xfe\x97\xb9\xc1\x4d\x2c\x41\x2e\x4d\xb4\xce\xb7\x1b\xcf\xd6\xea\xc9\xa9\x13\x54\x34\x89\x52\x75\xdb\x27\x7b\x3e\x8e\x7b\xf1\xc0\x92\x43\x8f\xd3\x1d\x93\x0b\x52\x1f\xd6\x8a\x3b\xd3\xb3\x4c\x36\x7f\x41\xe7\x68\xba\xef\x4f\x8c\xa5\x55\xbc\xbb\x08\xcb\x60\x71\x4a\xb3\xd0\x90\x49\x11\x2d\xf6\xfc\x38\x34\x7d\xf4\x71\x20\x6f\x8d\xed\x5b\x65\x53\xd1\x22\x82\x54\x80\x7d\x6f\xfe\x2a\x74\x9c\xa0\x6a\xb4\x1e\xae\xb9\xf2\x96\x24\xba\xc3\x5c\xfa\x4b\xc3\x23\x0c\x97\x3e\xd0\x7b\x30\x4b\x64\x57\x2c\x29\x07\x65\x76\xf2\xff\x0f\x99\x9d\x7c\xa9\xcc\xae\x24\xc7\x5c\x77\x39\x66\x46\xab\x96\xdb\xec\xa4\x28\x23\x90\x0f\xbd\xb2\x79\x9f\x16\xdf\x05\xaa\xc8\xba\x3d\xb6\xb3\x5f\x22\x59\xff\xab\x4c\x43\xd0\xd3\x69\xb8\xe7\x07\x53\xc9\x75\xfa\x52\x56\x39\x08\xf7\x67\xee\x4b\xb1\xba\x9e\x74\x4c\x13\xca\x73\x30\x51\x52\xd5\x82\x48\x35\xe2\x55\x2a\xaa\xb0\x7d\x3e\x3e\xc2\x5a\xb2\x0a\x21\x2b\x34\x0f\x60\x46\x64\x46\x47\xd3\xae\xd9\x1e\x26\xc3\x82\x4f\x71\xee\xc5\xde\xc7\x50\xc8\x2a\x4b\xf9\x80\x50\x9d\x2a\x8d\xc5\x44\xc2\x53\x67\xea\x50\xea\x24\x57\x57\x53\x1d\x7f\xbd\x8f\xae\xf0\xa3\x7d\x1c\xf9\x71\x5d\x1f\x8d\xa8\xc3\x59\xc5\xdb\x67\x61\x80\xf7\xc5\x5a\x55\xcc\x07\x30\x5b\x9c\xe4\xca\x7e\x21\x81\xef\xcd\x0b\xa2\x0c\xaf\x7d\xee\x85\x58\xfc\x6f\xbd\x60\x3f\xc5\xa8\x7d\x72\xe6\xd7\xb5\x63\x1e\x79\xa1\x79\x10\x0e\x09\xea\xbe\xda\xd7\x06\xe1\x48\x4f\x28\xae\x08\x30\x8a\x77\x74\x26\x26\xc3\x4e\x14\x0c\x6d\x17\x15\x16\x38\x2f\x60\xd9\xc2\x31\xa0\x97\x5e\xe7\x45\xc9\x9e\x27\x15\x0b\x9d\xd4\x09\x1c\x07\x8f\x11\xf3\x96\xeb\x8c\xa7\x59\x9a\xb3\xd0\x59\x9a\x9b\x4a\x5c\x87\xce\xda\xdc\xaa\x78\x3a\xfd\x78\x1f\x3a\xf7\x70\x07\x12\x85\xcd\x6c\xc8\xda\x76\x2a\x03\x7e\x76\x76\x36\x51\xdb\x66\x35\xd1\x7a\xf7\x48\xa6\x63\xe7\xda\xc1\x27\xa8\xa0\x99\xce\xe3\x9e\x62\xec\xba\x23\x84\x12\xba\xb2\x84\xf4\xd9\x1c\x54\x4f\x10\x65\x9a\xc9\xce\x49\xa1\x04\x2d\x26\x85\x85\xf6\xad\xee\x9e\x6a\xec\x1d\xd7\xd5\xa7\x63\x6b\xa2\x73\xb6\xfa\x58\x50\x6f\x11\x4d\x62\x2d\x76\xe6\x34\x21\x1a\x8b\xe1\x8c\xce\x84\x3a\x6c\x35\x40\x30\x5c\x59\xac\xeb\x5a\xb7\x0d\xf6\xfd\xee\x9c\x52\x03\xf6\x13\x8e\x2a\xf1\x96\xa0\x34\xe4\x38\xb8\xae\x55\xc3\x1d\x07\x07\xfd\x3e\x60\xdc\xd6\x3a\x0b\xd7\x46\xe4\xcc\x70\xb0\x6e\x02\x67\xa2\x09\x46\xc9\xe9\xc9\x16\xa2\xd9\x08\xd5\x52\x54\x12\x46\xb1\x56\x0f\x0d\x50\x70\x13\x94\xc4\xe2\xa8\x6d\x1a\x5c\xcd\x53\x8b\x2f\xe2\xa9\x45\xeb\x3d\x99\x0a\xae\xba\xea\x68\xa1\x29\x86\x04\xbb\x43\x5a\x68\x4e\xa7\x68\x65\xb4\x50\xb2\x1a\x51\x2a\xcd\x60\x79\x87\xb3\xe6\x16\x67\x55\x21\x9d\x3d\x5d\x74\x09\x1b\x10\x49\x53\x98\xdc\xd0\x4c\x53\x2a\xb9\xa7\x28\x1b\xa4\xf0\x6c\x88\xc2\xb3\x4d\x0a\x9f\x49\xd2\xbe\x76\x30\xb9\x06\xca\x5d\xa2\x59\x98\x05\xce\x6f\x28\x0c\x9c\x71\xa6\xe8\x77\xec\x60\x87\xdc\x63\x72\xf5\x29\xd2\xd7\xe2\xfe\xaa\xb3\x62\x41\xa8\x77\x4f\x9b\x76\x15\x37\x5f\xa3\x6b\xb2\xc0\x61\xb4\x88\x83\xa8\xd5\x35\x2f\xe9\x84\xdc\xd2\x09\x79\x29\xb4\xe3\xdb\x53\xfd\xed\x09\x7e\xb8\xb6\xc8\x74\x16\xde\x06\xf2\xa8\xec\x8e\x9c\x43\x49\xb3\x70\x11\x68\x9d\xec\x16\xdb\x8a\xf4\x79\x5d\xa3\x3b\x3a\x47\x15\xb2\x4a\x10\x5d\x9f\x04\xb7\xd8\x52\x5e\x31\xa5\xf4\x12\xdf\xd2\x04\x2d\xc8\x2d\xb9\xc1\x26\x79\xf5\x4b\x49\xcb\xba\xf4\x4b\x22\x3e\x7b\xa9\xb1\xd2\xdb\x1e\xef\xbe\x34\xbd\x78\x47\xfd\x93\x77\xa7\x54\xeb\x8d\x7b\xfe\xc9\x3b\x09\x79\xa2\xca\x3a\x8f\xde\xc5\xdb\xca\xb8\xa5\x97\xf4\x4e\xe3\x9b\xec\xf6\x2b\x17\x55\x6f\xc8\x3e\x69\xeb\x30\xbe\x2b\x43\x3b\x4e\x69\xa5\x11\x72\x51\x5a\x66\x40\x3a\x7e\x2e\x25\x07\x43\x07\x47\x4f\xf1\x86\x7a\x73\x7c\x2c\x85\xe4\x63\x38\xae\xde\xf7\xf6\x5b\x58\xd8\xaa\xe3\x3b\xad\x2c\x4d\x9b\x76\x94\x36\x56\x02\x4e\x97\x9b\x9d\x2d\x06\x45\x67\x3f\xd9\xbf\x72\x46\x3a\x5c\xf4\x41\x59\xe3\x9c\xc4\x21\x60\x8a\x09\x9c\x2b\xa7\xc1\x0d\x0e\xab\xbe\xc3\x14\xa3\x79\xc7\x7b\xcc\xd9\x37\xe9\x08\x0d\x5b\x76\xf6\x1d\x6d\xd2\x49\xf3\x5d\x16\x32\x69\x00\x0a\x46\x85\xeb\x76\x2c\x81\xb2\x03\x5a\xb9\x62\xd8\x60\x6d\xe2\xa0\xed\x8a\x68\x65\x9e\x2c\x99\xeb\x56\x03\x96\xd1\xc4\x72\xcf\xb4\x41\x6b\xc1\x32\x75\x70\xf4\x54\xcd\xd3\x86\x4d\x0d\xe6\xe9\x4b\x33\x77\x7c\x1a\x71\xf4\x9c\xf1\xff\xc7\x10\x47\x93\xd9\x60\x76\xaa\x2e\x5c\xa8\x68\x00\x26\x8c\xb6\x80\xa1\x0c\x00\x43\xb7\xa3\x85\x1e\x0c\xa5\x5e\xeb\x91\xa8\x7f\x28\x3a\x97\xe4\xd3\x45\x27\x54\xf2\xd3\x41\x4b\xaa\x45\x89\xa3\xc1\x63\xcd\x19\xef\xa1\x1f\xf8\x87\xb2\xee\xcf\x9d\xf1\xeb\xba\xaf\xd2\xeb\xaf\x1b\x58\xf9\x85\x23\xfe\x1b\xa8\xf6\x73\x96\x52\x53\x6d\x96\xe6\x1f\xbf\xb6\x62\xf9\xcd\xb6\xaa\x3f\x17\x3e\x65\xaa\x2e\xb2\xcf\xc4\x07\x6e\xd6\xbc\xb5\xd6\xaf\xce\x34\xe6\x1f\x3c\x85\xdc\x4a\x1a\xcd\x59\xf3\x92\x07\x21\xdc\x7e\x2e\xd2\x9c\x3f\xfb\x64\xda\x08\x83\xfb\xfe\x34\xf0\x0f\xda\x9c\x84\x07\x5f\x9c\x3e\xac\x05\x34\xd7\xfb\xbc\xc3\x89\x60\x85\x8e\xe3\xb1\x7c\x56\xfd\x9a\xf2\x45\x17\xde\xfc\x10\x23\x47\x3f\x71\xb0\xd5\x62\x7d\x73\x7b\x28\x3b\x23\xf6\x97\x9b\xde\x60\x5b\xd2\x7e\xe5\x34\xb5\xf2\xc6\x54\x9d\xc4\xe2\x81\xc9\x12\x93\xa2\x12\x93\xdc\xda\xcb\x31\xdb\xa7\x4f\xc7\xbe\xaf\x49\x85\x03\x6e\xf0\x05\xb4\x22\x47\x2a\x21\x32\xd7\x7a\x3e\x27\x81\x7f\xd8\xcb\x03\x43\x8e\x0f\x83\xe3\x43\x18\xda\xcf\x6d\xa1\x35\x65\xcd\xd3\xbb\xcf\x85\x9e\x6e\x90\x16\xe7\xdb\x69\xeb\x73\x1b\x40\x53\x6f\x91\xf3\x69\x91\x7d\x3d\x0b\x11\x1f\x3a\xc4\x51\xdf\x0e\xb0\x91\xcf\x26\xbe\xb2\x9b\x50\xa5\x5f\x11\x91\xde\x6d\x81\xfc\x74\xa8\x01\x5f\x72\xbc\x7d\x08\xd9\xb6\x14\xfa\xdd\xbc\x2c\x96\xcf\x15\x2e\x1b\x49\x3a\x77\xf5\x0a\xb3\x3d\x1b\x47\xa3\xc4\x75\x7d\x21\xff\x34\xbd\xb5\x04\xde\xf9\xa8\x43\xe5\x06\x21\x84\x80\x73\x73\xbe\x09\x9a\x9a\xd0\xc9\x49\x7e\x96\x9c\xc0\x61\x2e\xa7\xe3\x2e\x68\x2a\x49\x11\x27\xbe\xef\x1f\xf9\xbe\x8f\xad\xc4\xbc\x16\xe4\x09\x1f\x3b\xbb\x69\xb5\x9b\x17\x7c\x37\xd9\x95\xa8\xf1\x82\x45\xec\xae\x44\x63\x1c\xac\xdd\xa4\xf9\xe9\xf1\xe3\xc7\x87\xc7\x61\x81\x38\x0e\x0a\xf4\xf8\xf1\xc1\xd3\xe3\x31\x42\x7c\x0f\x70\x49\x8f\xf1\xd9\x99\x3f\xc1\x84\xff\x0f\x7f\x72\x70\x34\x7e\x7c\x7c\x78\x30\xc1\xc6\x12\x58\x42\x72\x2c\x64\xd1\x9e\xcc\x12\xd2\x32\x95\xaf\x4e\x55\x75\x38\xc1\x9b\xdc\x23\xcd\xa7\xd9\x7a\x06\xa9\xbf\xda\xc1\xd5\x37\x07\x98\xdd\x68\xf4\x6f\x93\x0e\xc4\xfa\xd8\xc4\xe6\x7d\x4d\xc2\x48\x6b\x79\xf7\x97\xf5\x97\x8a\xc8\x94\x27\x59\x3a\xfd\x4c\x9c\xf3\x06\x65\xa7\xdb\xd7\xf5\x97\x1f\x27\x0a\x59\x01\x47\x8a\x4f\x1e\x63\xb5\x6d\x6b\x87\x70\xc8\x21\xcf\xb0\xc2\xd6\x2b\x6f\x33\x55\x9c\x71\xae\x6b\x7d\xf5\x52\x13\x95\xd2\x7a\xd8\x85\xc3\xbe\x75\x01\x02\xfd\x94\x98\x10\x92\x74\x6c\x12\xca\x91\x0d\x67\x3a\xdc\x11\x57\x90\xdc\x0d\xc6\xe0\x4b\xa5\xf5\xe7\xf5\x84\x61\xcd\x68\x51\xb2\xf9\x20\x47\x19\x4a\x9c\xb4\x29\x1b\x27\xed\x49\x95\xf6\xe9\x31\x94\x5b\x26\xb7\xc3\xcc\x40\xec\x80\xbd\x32\xb9\x55\x09\x37\xac\xb4\x41\x03\xec\x21\x8a\x49\x45\x27\x27\xe5\x59\x75\x82\x55\x50\x8e\xde\x39\x47\x15\xe0\x2a\x93\xea\x34\x77\xdd\xee\xb3\x96\xca\xab\xb8\x0d\x25\x4a\xfa\x0b\x79\x4b\x62\xb3\x83\xa1\xb4\x4b\x7d\xb7\x29\x5b\x29\x29\xd9\x8a\x25\x3c\x90\x50\x62\x1d\x4c\x9e\xb6\xc8\x2f\x95\x8e\xd5\x32\xc9\x3e\x13\x99\xbf\x31\x93\xea\x9b\x2d\x0b\xe9\xab\x13\x00\x0d\xe8\x3c\x15\x4f\x4a\xbe\x45\xeb\x69\x9f\x75\x38\x57\x7b\xfb\x93\x9a\x4f\xe7\xeb\x92\xa6\xc8\x68\x2e\x5f\xa8\x06\x19\x02\x12\x14\xf4\x29\x1d\x27\x27\x65\xab\xe3\x94\xa4\x1c\xe7\xfa\x4b\x4a\x69\xfe\x45\x3a\xce\x50\x8a\xa0\xe1\x59\xe4\x65\xfa\xf1\x33\x62\x7e\x73\x1a\xd5\x47\xdb\xe6\xf1\x73\x7b\x44\x53\xf9\xfa\xea\x6b\x6b\x5e\x6f\xd7\xdd\x87\xf2\x0f\x6d\xa9\xf6\x2b\xd3\x5d\xc8\x2f\xb6\x55\xfb\x25\x72\xe7\x08\x23\x09\xeb\xfb\x55\xf5\x1e\x9a\xda\x00\x46\x14\x6a\xfb\x52\x61\xd3\xc7\x35\x7e\xfc\xa4\xeb\x63\xeb\xfb\x2a\xad\xf0\xd3\x23\xec\xfd\xed\xe5\xbf\xe0\x1c\xe1\x58\x81\x1b\xf8\x07\xc7\x12\xdd\xc0\x3f\x38\x92\xf0\x06\x90\xe5\x7e\xa6\x72\xc9\x00\xc0\x01\xe4\xfd\x5f\xc2\x8f\x89\x84\x38\x38\xf6\x25\xc2\xc1\x77\x4f\x31\x80\x1b\x1c\x3e\x91\xd0\x06\x4f\x7c\x05\x6d\x20\xd8\xf0\xad\xc6\x54\x7e\xa9\xdd\xff\xee\x54\x48\xcd\x39\x95\x38\x3e\xe4\x9d\x76\x1d\x7c\xa6\x7c\x09\x3f\x2a\x00\x15\xf2\x81\xbe\xf3\xe6\xe4\x39\x7d\xe6\xcd\xc9\x5b\x7a\x0e\x50\x05\xb9\x4e\xba\xff\x33\xcd\xbd\xbf\x9e\xbf\xfb\x89\xfc\x4e\x7f\x76\xdd\x9f\x3d\x89\x86\x9c\xce\xef\xc9\x0b\x3a\x43\xce\xe5\x22\x9d\xcd\x58\xee\x60\xf2\x93\xb8\xec\xe6\x2e\x7a\x4d\x1f\x1a\x6f\xa5\x9c\xb1\x5f\x57\x2f\xa5\x7b\xf8\x55\xc6\xc8\x1b\x3a\x45\x4e\x05\x35\xec\x95\xec\x3a\xad\x78\x79\xef\x60\xf2\xaa\xbd\x2d\xf4\xa0\x3f\xc5\x65\xb1\xda\x6b\xef\xfc\x48\x37\x60\x39\xbe\x1f\x3a\xc8\x7f\x4f\xfe\x41\x73\xef\xef\xf2\x65\xf2\x2b\x1d\xfd\xa3\xae\x47\xff\x68\xbf\xea\x5e\x41\x9e\xee\xe7\x8b\x34\x9b\x91\x3f\x68\xe1\xba\xd9\x80\x79\xe7\xbb\x11\xbd\x43\xcf\xd1\x43\x03\x92\xf3\x61\xd8\xb1\xeb\x79\x2b\x5b\x95\x8c\xff\xae\xc1\x5e\xd2\x34\x58\xfc\x8b\xc3\x61\xa9\xf2\x01\xfd\x48\x38\xde\xc9\x4d\x70\xc2\x8f\x11\x8f\xc9\x73\x1d\x7d\x91\xbb\x2e\x1b\x51\xfa\xa3\xeb\x3e\x17\x2f\x92\x1c\x37\xc1\x73\xf2\xcb\x40\xb4\xf6\xab\x88\xc5\xf4\x0e\xbd\xb7\x42\x60\x0c\xd4\x9e\x77\xf9\x91\x32\xc2\x1b\xf2\x2f\xfa\xbd\xeb\xaa\x41\xb6\x06\xcc\x4b\x39\x2b\x13\x5e\x94\xe1\xe6\x5a\xda\x78\x9b\x35\x83\xd0\xae\x1d\x8b\x5a\x43\x7e\xd8\x86\xf6\xc8\x28\x74\xe7\x07\xf4\xa7\xec\xa1\x54\xc5\xe8\xad\x8a\x44\xb9\x16\x7b\xd6\x14\xbd\x22\x1c\x87\xa8\xf4\x98\x21\x1b\xc0\x77\x27\x2f\xb0\xeb\xb2\xe8\x45\x1c\xf1\xd8\x75\x91\xfa\x45\x21\x30\x97\xde\xa1\xd2\x84\x21\x5c\x65\x2c\x78\x89\x26\x90\x65\x11\xe3\x40\x7d\x5b\xd7\x62\x60\x5f\x90\x97\xc8\x27\x0f\x0d\xc6\xc4\x14\x30\xc1\xe4\x0f\xd5\x50\x1c\xe8\xd1\x6f\xc8\xdf\x7a\x4e\x8b\x20\x5e\xac\xa4\x10\xf4\x06\xa0\x0c\x38\x16\x9c\x61\x02\x69\xb3\x94\x45\xbb\x38\x4b\x4f\xf0\x0f\x88\x91\x92\xe6\x51\x2a\x36\x34\x3c\x2a\xdb\x64\x9c\xac\x21\xdf\x0c\x4c\xe2\x6b\xfb\x94\x83\xde\x22\x48\x0d\xd8\x06\xb5\xa8\x50\xd6\x1f\x5d\x57\x8c\x10\x93\x98\xcb\x7f\x12\x86\xc1\x73\x13\x71\x40\xd9\x53\x56\x10\xf8\xfd\x0a\x7e\xa8\x7b\x62\xec\x20\xfd\xe1\x8b\x38\x62\x31\xae\x6b\x8e\x1b\xf2\xf7\x4d\x94\x0d\x46\x2f\xbb\x73\x02\x14\xa8\xca\xe3\x50\xde\x9f\x84\x63\xed\xc2\xf9\x41\xfa\x3f\x6b\x1f\xcd\xce\x7b\x9d\x09\xab\xeb\xce\x84\xc2\xa0\x97\x4d\x43\xfe\x39\x0c\x2d\x09\xe1\xa4\xa2\x25\x42\xb8\xcb\xf8\xd8\x0e\x62\x05\xd4\x42\x15\x6a\x45\x5d\x73\x4a\x5f\xc0\xbf\xeb\xba\xce\x75\x1c\x8d\x09\x2f\x6b\xc8\x7f\x6d\xad\x05\x28\x92\xe4\xf4\x2d\x2a\xc3\x3f\x03\x59\x63\x21\x6a\x84\x1d\xaa\xae\x31\x39\xc1\xb2\x63\x34\x97\x59\x3d\xea\xba\x84\xf1\xff\x11\xfa\x5a\xc8\x2a\x5f\x45\xbc\x9d\xe4\xa2\xd9\xf9\xbe\xae\x51\x85\xd0\x7b\x3b\xf4\x5b\xc5\xea\x74\x16\x8c\xda\xdd\x1a\x3c\x1a\xe4\x48\x16\xdc\x6e\x70\x2d\x9f\xcf\x91\x23\xad\xf6\x8c\x2e\x36\x35\xa5\x61\x2b\x2e\xb1\xf0\x3b\x4b\xb9\x19\x92\x84\xa4\xfc\x99\xff\x24\xb0\xec\x0c\x9d\xc8\x9f\xd1\x8b\x18\xa8\x0c\xb5\x64\x03\x6b\xed\x0f\xad\xc2\x89\x85\x54\x62\x83\x3e\xb3\x5b\xb8\xee\xaf\xae\xfb\x07\xfa\x71\xc8\x1f\xb6\x62\x3c\xe0\x0d\x26\xbf\x40\x10\xfa\x17\x82\x2b\xa9\x60\xa4\x8f\x0d\x26\xef\xbc\x39\xfd\x3b\x79\xe6\xcd\xe9\x0f\x44\x3b\x41\x0b\x89\x45\xff\x09\x97\x4f\xc4\xe5\x37\xf0\xf3\x48\xfc\xfc\x2f\x52\xb8\xee\x08\xe0\x86\x5c\xb7\x42\x3f\x12\x67\x48\x1a\x39\xe4\x1b\xa0\xf1\x95\x37\x1f\x0a\xa3\xff\x05\xcd\x20\x32\x07\x93\x04\x25\xde\x0f\xe3\xc4\xfb\x75\x9c\x78\xaf\x1e\x8d\xbe\x27\x0f\x72\x86\x82\xf7\x4d\xcb\x12\xfe\x4a\xed\x9c\x70\x24\xad\x9e\xc3\xa1\xc4\xf9\xaa\x64\xc9\x0c\x84\x9f\xe6\xb4\x04\x7c\x3c\x89\xf2\xb5\x23\xd2\x7d\x84\x28\x8c\x1f\x02\xc7\xa5\xc4\x12\xa8\xc4\xc2\xaf\x22\xeb\xbc\x9a\x16\x2b\x51\x5c\xd5\x01\x68\x67\x8c\x4e\x4e\xfe\xaa\x09\x81\xb1\x13\x3c\x43\x7f\x8d\x98\xcc\x02\x6c\x28\x9e\xd1\x8f\x68\xe6\x55\xbc\x28\x19\x26\xa5\xf8\x84\xeb\xcd\xe9\x59\xc9\x4e\xf0\x12\x71\x16\x95\xf2\x23\x08\x15\xd2\x1d\x56\x24\xe9\x10\xb1\x7a\x86\x2d\xb0\x6f\x08\x1b\x53\xc7\xc1\xe1\x9b\x88\xc5\x81\xf8\x87\xbe\x17\xb3\x4d\x3e\xb2\xfb\x57\xbd\x8f\xd2\x39\x1a\xfd\x4b\x0c\x6e\x9f\xf4\x99\x6d\xd7\x91\xd2\x47\x50\xbc\xe9\xc0\x6e\x9a\xef\xbe\xc1\xe9\x1c\xbd\x11\xac\xdb\x4a\x68\xcd\x1b\xb2\xae\xd8\x39\xe3\xdc\xc6\x01\xc7\x0f\xbf\xd2\xd1\x44\x3e\x4a\x97\x2b\x3b\x9e\x06\x1e\x41\x38\x5b\xb7\xa3\x7d\xd8\xcd\x4f\x1f\x53\xf3\xf0\x0e\x31\x1c\xfc\x0d\xdd\xa9\x70\x32\xd2\x0b\xbe\xfc\x81\x6c\x60\x6c\xfe\x8d\x6c\x8d\x56\xfb\x3b\x19\xc0\x68\x0c\xfe\xd9\xbb\x2b\xe7\xa2\x0a\xfe\xab\xc1\xe4\x67\xd7\x6d\xdb\x8f\x46\xdf\xd7\x75\xb6\x79\x60\xf6\x1e\x99\xc3\x32\x19\x7a\xeb\x8c\xe8\xef\x48\x0a\x02\xe7\xa1\x81\xab\x87\x24\x60\x8d\x75\x2d\xc7\x41\x2e\x00\x4c\x1c\xa1\x0a\xc2\xee\x4e\x69\x81\xdb\x0c\x7e\x82\x5f\xb3\x98\xa4\xd4\x3f\xd9\x60\x4f\xe9\x09\x56\xdc\xb9\x65\x53\x10\x77\xb8\x03\x18\x2f\x82\xbb\xfa\x31\x41\x57\x00\x3b\x68\x8e\xe9\x41\xd4\xfd\xcb\x72\x0f\xb9\x87\xe7\x1d\x54\x62\x25\xbd\x06\x14\xc2\x12\x10\x87\xfa\x1e\x04\x98\x8c\xfe\x25\x24\xb7\x21\x1e\x4c\x44\xdd\x94\x93\xdf\x95\xa7\xc5\xcf\x00\xd6\x82\x89\xa5\x53\x45\x3f\xc5\x3a\xfb\xa6\x75\x97\xfc\x64\xbf\xa3\x53\x46\x60\x32\x47\xef\xcd\xaa\x11\x57\x62\x7f\xab\x73\xb2\x08\xa6\x33\x47\x4a\xbf\x56\x43\xab\x10\xe3\x4c\x34\x89\x86\xdd\x54\x9e\xfa\x93\xa3\xc0\x9f\x1c\x91\x16\xb3\xf0\x49\xe0\x4f\x9e\x98\x68\x93\xd6\x93\x5f\xa3\x1d\x1c\x07\xfe\xc1\xb1\x95\xc4\x5d\x86\xeb\xfa\x47\xdf\x05\xfe\xd1\x77\xc4\x7f\x3c\x09\xfc\xc7\x13\xe2\x3f\xf6\x03\xff\xb1\xdf\xa2\x20\xd8\x67\x95\x7e\x70\xec\x0f\x84\x41\xab\xf4\x0a\x07\xc1\x77\x07\xe4\xbb\xa7\xc1\x77\x1a\x0a\x50\xa1\x20\x1c\x05\x4f\x8f\xfa\x69\x17\x86\x32\x91\x7e\xc6\x16\x71\xac\x6d\x4c\x8f\xbb\xb0\x00\x60\xcf\x5e\x6b\x73\x45\xa6\x36\x44\x53\x95\x62\x01\x12\xf6\x7e\xbf\x9e\xcf\x59\xa9\x76\x5c\xdf\x89\x1d\x57\xd1\x79\x30\xa3\x85\xf7\x22\xe1\xc9\x2f\x29\xbb\x85\x58\xa6\x67\xdf\xff\xe2\xba\x53\x2f\xad\xe0\xce\x92\x2e\xac\x09\x05\xbb\x01\xb9\xa1\xa9\xf7\xcb\xeb\x97\xbf\x1a\xa8\xbc\x5f\xa5\x81\x7c\x3a\xa2\x74\x81\xc9\x83\x55\x7c\xb0\xd0\x21\xb2\x12\x9f\x21\xf5\x9e\xbf\xfb\xe9\xfc\xc3\x7b\x95\xe3\x58\xbe\x04\x61\x7e\xa2\xb6\x21\x5e\xba\x72\xdd\x15\x00\xa5\x65\x90\xbc\xe0\x46\xc7\x1c\x12\x6d\x83\xf9\xc7\xa7\x32\x2b\x8d\x72\x76\xbb\xbb\x40\x07\xd8\xb8\x72\x2a\x3d\xc0\xbb\xba\xe7\xec\x8d\xc9\xe6\xd5\x6d\xcd\x50\x96\x6f\xe3\xb5\x35\xa2\x74\xe9\xba\x2d\xd3\xd3\xeb\x66\x29\x97\x55\xa2\xdc\x59\x6c\xfd\x98\xaa\x9b\x56\xa5\x32\xbc\x07\x94\x0d\x5a\xa1\x5e\x7a\xf0\x12\xbc\x76\xd8\x2d\x92\x0a\x12\x59\x60\x8c\xd6\x28\xdd\xcb\x31\x04\x37\xb1\xdb\xdd\x99\xaa\x65\xaa\xae\x0a\xb1\x71\x9e\x9c\xe4\xa7\xe9\x09\x9e\x7a\x15\xe3\xff\x48\x73\xfe\x04\xad\xc6\x63\x92\x79\xd7\xfa\x32\x1f\x8f\xb1\xa5\x94\x35\x2d\x9c\x8d\xdd\x7f\x2b\xc3\xb3\x05\x14\xd2\xcd\x0a\xee\x1f\x3d\x0e\xfc\xa3\xc7\xc4\x3f\x3a\x0e\xfc\xa3\xe3\x6d\xb0\x17\x6d\xd4\xe9\x97\x64\xac\x6d\x49\x69\x24\x89\x5e\xd0\x22\x79\xd0\xd4\x19\xc8\x05\x60\xa8\x55\xd9\x2f\xbb\x0d\x31\xc6\xc6\xa1\x94\xb6\xa2\x80\x23\x8c\x1c\x00\x8a\x3c\x3c\x70\xc8\xd1\xa7\xcd\xc5\xe0\xf4\xd4\x33\x9c\xc8\x9b\xda\x78\x7a\x14\xf8\x47\x60\x3c\x19\x4a\x02\xdb\xa9\xee\xf8\xc8\x21\x4f\xfe\x73\xd5\x0d\xd8\x33\x75\x75\xaf\x73\xee\x1f\x77\xfd\x2b\xff\x37\x2b\x1b\x4e\x0a\xae\x2b\xfb\x0f\x0f\xe4\x80\x85\xcf\xaa\xec\x49\xd7\xb3\xf8\x7f\xb3\xae\x01\xb3\x9e\xae\x4b\xac\x98\xff\xf0\x30\x0e\x58\xf3\xec\xda\xfe\xc3\xe3\x38\x60\xcd\xb3\x6b\xfb\xcf\x0e\xe4\x30\xd0\xf6\x7f\xa8\x32\x93\x69\xd7\xd4\x37\x94\x8e\x73\x08\x6a\x55\x19\x2b\x21\xf9\xda\x01\x46\x13\x1d\x61\xa6\xc4\xe7\xd3\x23\x65\xa7\xfc\x4e\x01\xb0\x4e\x4c\xa4\xb0\x14\x98\x47\x4f\xb5\x89\xf2\x29\x26\x33\x3a\x4a\xbd\x67\x53\xb1\x0b\xf9\xa7\x54\x08\x5d\xd7\xe9\x5c\x43\xce\x66\xb2\xa2\x95\x60\xb9\xbf\xb2\xe4\x23\x59\x0e\x45\xb9\x4b\xe7\xc6\x39\xec\x3c\xc8\xfd\xd0\x6e\xeb\x3f\xe0\xab\x74\x4d\x37\xf2\x23\x43\x50\x32\xc3\xda\xc6\xb2\x6a\x8f\x08\x46\x52\xf6\xdc\x68\x81\xe3\x88\xc6\x43\xda\x63\xc8\xc9\x0f\x91\xa0\xa1\x41\xc7\x88\x0d\xf4\xc0\xf6\x0c\xca\x19\xb8\x44\x6d\x14\x47\x54\xf6\xe4\x2b\xba\xe1\xb7\xa5\xdf\x21\xf7\xe4\x9a\x64\x64\x34\x11\xd3\xbe\xb3\x70\xdd\x99\xeb\xa2\x35\x42\x39\x05\x49\xf6\xbc\xdd\xfe\xa3\xfb\x4e\x43\xad\x64\x76\x98\x54\xde\x4f\x2f\x5f\xbe\xa0\xa3\x09\x29\x50\xe4\x48\x93\xa2\x43\xc4\xa6\xd4\x21\xce\x35\x03\x4f\x02\xc6\x9d\x78\x20\x42\xe0\xca\x2a\xa9\xa4\x3c\x62\xf1\x4e\x82\x38\x61\xc4\xa2\xd6\x54\x8d\x26\x17\xfa\xf8\x52\x68\xcf\xea\x5c\x75\x2e\x94\x71\xf9\x4b\x82\xda\x49\x0b\x45\xa1\x0e\x4f\xe7\x11\x8b\xe1\x73\xbd\x05\x11\x8d\xa0\x94\xc9\x18\xdb\xa2\xe9\x3a\x7d\xab\x55\x90\x02\xfc\x57\x07\x43\x59\xbb\x91\x1d\x04\x47\x07\xe4\xf1\x24\x78\x3c\x91\xce\x64\x5d\x70\x1e\xa9\x7d\xea\x54\x0b\x43\xe9\x65\x07\xf5\xce\xc7\x13\xcb\xbf\xce\x9a\x9d\xff\xcf\x3d\xeb\x74\x23\x04\x19\x41\xcc\x39\xc9\xc9\xc8\xef\x25\xe2\xb6\x46\x03\x7a\xfd\xd5\x49\x3f\xbe\xd3\xca\xf6\x81\x86\x29\x52\xc8\x02\x87\x2a\x5d\xe3\xd1\x63\x73\xfc\x09\x7a\x93\x43\x1e\xe6\x59\xc2\xdf\x26\xab\xe1\x8c\x36\xea\xa4\xcf\x02\x5b\x52\x98\x43\xe6\xf0\x8d\x94\x74\x8d\x72\x22\xc6\x1d\x95\x24\x27\x39\xe1\x64\x42\x7c\x62\xb9\x2f\x44\x7e\x0c\x56\x42\xa1\xb3\x1d\x3e\xc6\xc8\x51\x55\x4a\x75\xad\x1f\xdf\x23\x01\x9c\x1e\x07\x87\x8f\xc9\xd1\xe3\xe0\xe8\xb1\x56\xcd\xbe\x0b\x8e\x25\x2d\x7c\xed\x79\xe8\x91\x2f\xfd\x0b\x7a\xfd\xfe\x84\x6b\x86\xf1\x43\xfb\x0a\x17\x0c\xdd\xb7\xd6\x93\xa3\x21\x0f\xaa\x1b\x7e\x60\x1f\x4f\x7f\x26\xeb\xad\x82\xf3\x9e\xb4\x8d\xb6\xe1\xd6\x59\xce\xcb\x74\x5b\xa3\x8d\xdf\x9c\x3f\x09\x7c\xdf\x8a\xad\x7e\xfa\x25\x0e\x46\xbe\x3e\x36\x3e\xd2\xc2\x66\xa2\xa8\xe7\xf1\xe1\x66\x43\xb6\xd9\x3e\xaa\x4f\x58\x14\x0a\x19\x95\x94\x78\x73\xc8\x8d\x94\x0b\x91\xf5\xd0\x90\x39\x9d\x9c\x64\x7a\x80\xe7\x27\xd8\x6c\x56\x90\xa4\x2d\x4e\xb3\x68\x0e\xce\x02\xae\x5b\xa1\xa9\x44\x4d\x53\x9d\x9e\xf6\xd0\x1b\x14\xda\x89\xde\x2f\x3f\x3e\x0c\x1e\x5b\xc7\xf8\x9f\x49\xdb\x6b\x0d\xbd\xbf\xd9\x63\x30\x09\x7c\xf5\xc8\x7f\x2d\x0c\xd5\x63\x15\x3e\xfc\x9d\x9e\x04\xb1\xf3\xad\x14\xe0\xb9\x39\xbd\xef\xc0\x73\xce\xd3\x3c\xc9\xb2\xfb\x81\x73\x7a\xb9\x79\x23\xa9\x46\xf8\xac\xeb\x42\xff\x14\x0b\x77\xc0\xce\xc2\x76\x6c\x9b\xad\x04\x73\x0c\x6d\xb3\xb3\x61\x04\x9c\x30\x84\xfb\x40\x95\xe6\x79\xd9\xe0\x26\x60\xe4\xeb\xbe\x95\x56\x44\xf9\xa9\x19\x50\x05\x07\xa9\x76\x73\x12\xcc\xb1\x97\x2f\x71\x28\xb1\xf1\x67\x3c\xb8\x4c\x90\xb6\xf4\x90\xff\x45\xe2\xc4\x5f\xec\xfb\x93\x0b\xef\x62\x36\x46\xf0\x2f\x0e\xd1\xee\xdb\xe2\x2a\xcd\xd8\xc5\xfe\xc5\xed\x18\x87\xbb\xe7\xc9\x3c\x29\xd3\x8b\xfd\x7d\x19\x54\x53\xd8\x7e\x60\x89\xe5\x3d\xb1\x4a\x66\x2f\xf3\x41\xb1\xf0\x95\xac\x05\x4e\xbf\xd4\x71\xf7\x41\xe0\x1f\x1e\x18\xc0\xcb\x96\xc4\xbe\xda\x28\xf3\xff\x42\xef\xcf\x79\xb2\x2d\x7b\xff\x57\xf6\x7f\xf2\x99\xfe\x1f\x0e\xa5\x51\xde\xea\x6a\xf0\x86\xcd\xbf\x52\x13\x10\xe3\x4f\xe0\x5b\xe8\x93\xd3\x75\x3d\x38\xfc\x6c\x4a\x65\xbb\xf6\xf7\xe9\xf5\xe2\x2b\xab\x3f\x30\xd5\xbf\xcc\x67\x1b\x95\x0f\x6f\xdd\x1f\x4f\x30\x72\x92\xea\x3e\x9f\xbe\x56\x47\x15\xf2\x43\x69\x2c\x84\x0f\x07\x84\xa8\x05\xb9\x8f\xfc\xe3\xa3\x36\x43\x8b\x0a\x94\xd5\x29\xa0\x27\x92\x1f\x7d\xa7\x60\x6b\x9e\x3c\x51\xd1\x96\x82\x73\x4d\x69\x86\x9c\xd4\x54\x4a\xe6\xe2\xba\x93\xb7\x83\x2c\xe8\x5a\x5a\xf1\xc8\x8c\x3e\x3c\x3f\x3f\x7f\xbf\xce\xd8\x9b\xb4\xe2\xc1\x68\x42\x9e\x9f\x9f\x9f\xf3\xfb\x8c\xbd\x60\xd3\x2c\x29\x21\xff\x57\x30\xf2\xc5\xed\x5f\x04\xf3\x95\xaf\xf9\xe4\x79\x96\xb2\x9c\xbf\x67\x53\xae\xef\xbc\x78\xf7\xb6\x77\x29\xab\xb4\x6e\x7c\x28\x3e\xb2\x5c\x57\xf4\x22\xe1\xc9\x87\x32\xc9\xab\x39\x2b\x5f\x73\xb6\xd4\xef\xbd\x4a\x33\x53\xcb\x8f\x1f\xde\xbe\x79\x96\x65\xcf\x8b\x2c\x93\x40\xec\xfa\xe6\xe6\x9d\x57\x45\xb9\x7c\x99\x31\x41\xbb\xfa\xd6\x39\x13\xef\x58\x37\xdf\xb2\x59\x9a\xe8\xfa\xdf\xa6\x4b\xf6\xe1\x7e\xc5\x60\x20\xc4\xd3\x9f\x92\x25\x9b\xfd\x54\xcc\x98\x50\xc5\xc4\x75\x31\x33\xa3\xf2\x73\x92\x8a\xde\xfe\xb1\x66\x95\xe9\xe1\xcf\xd9\xfa\x3a\xcd\xdb\x5f\xa6\xa0\xf3\x5f\x7e\x90\x66\x3a\xfd\xe6\xf9\x2f\x3f\xc8\x5c\x6b\xd6\x8d\x9f\x13\xbe\x38\x67\xd7\xf6\x9d\x22\xcd\xb9\x75\xdd\x1d\xbe\xf3\x5f\x7e\x90\xa3\x55\x94\x66\xa8\xce\x21\x44\x47\x1a\xde\xcc\x3d\x31\x79\xe7\x0b\xc6\xb8\x6e\xfb\x07\x76\xc7\x3f\x94\xc9\xf4\xe3\xf3\x76\xfa\xcc\x3d\x73\xa3\x58\x4f\x75\x7b\x1b\xb2\xa2\x29\x9a\x61\xb2\xa4\x93\x93\xe5\xe9\x4a\x1f\xc6\x2f\xc7\x63\x29\xd5\x6e\xc8\x3d\x5d\x45\xcb\x98\x5c\xd3\x59\x74\x1f\x93\x2b\x9a\x88\x3f\x97\xf4\xca\x75\xad\xfd\xcf\x4e\x3a\x47\x97\xae\x8b\x2e\xa3\x69\x5c\xd7\x15\xba\x24\x53\xb2\xc0\xe4\x32\x9a\xab\xcb\x39\xb9\xc7\x64\x1d\xdd\xc7\x74\x41\xae\x31\x06\xea\xdf\x4d\xf3\xdd\x1c\x5f\x46\x37\x71\x5d\x17\xe8\x92\xdc\x90\x3c\xba\x89\x95\xc2\xde\x26\x1a\xea\xa5\x83\xf1\x8f\x8f\x02\xbf\x35\xab\x83\x41\xfd\xc9\x93\xe0\xc9\x13\x58\x69\x5f\xa2\xed\x1d\x1e\xb7\x66\xc4\xef\x01\xd9\xeb\xf5\x72\x29\xe8\x85\xb3\x00\x90\xc8\xc8\x34\x63\x49\x69\xdf\x84\x1b\x8a\x31\x4a\x24\xe4\x96\x21\x7e\x42\xdb\xd3\x0e\x50\xc7\x5d\x11\x10\xc5\xca\x40\x5e\xd1\xfd\xb7\xe7\xaf\x5f\xee\x7a\x17\x9e\xe1\xf2\x64\xfd\xc9\x8d\xbe\x55\xfe\x06\x4f\x3f\x20\x29\x1d\x8d\xc0\xc1\x53\x9a\x98\xf5\x0b\xe4\xa0\xf5\xa3\x40\x79\x68\xb1\xbf\xa1\xd3\x1f\x1e\xf2\xe0\x55\xeb\x0a\xab\xe0\x94\x95\x72\x83\x1b\xb0\x3b\x37\x0d\xc0\x49\xfe\x30\x4e\xbd\xef\x01\x94\xb5\x82\x81\xfc\x90\x2e\x59\xb1\xe6\xc1\x1a\xe5\x5e\x7b\x89\xc5\xf6\xff\x75\xce\x59\x79\x93\x64\xfa\x99\xbe\x56\x3e\xa0\xb6\x9c\x31\xba\xc6\xe1\x50\xb2\x63\x86\x0e\x27\x8f\x61\x07\x30\x39\x92\x7f\x0e\x31\xe9\x58\x09\x0e\x60\x37\x30\x39\x0c\x0e\x27\x87\x40\x13\x87\x93\x23\x98\xa8\xc3\xc9\x63\xa9\xd3\x40\xd9\x5b\xa1\xc4\xec\xf1\xdf\x90\xed\x9c\x94\x9b\x6e\x55\x39\x2d\xbd\x45\x52\x59\x3a\x3a\x49\x87\x14\x3e\x79\xb4\x15\xaa\x83\xf0\x87\x86\x14\x34\x35\xbe\x44\x75\xed\xfc\xcf\xff\x69\xd8\x39\x49\x68\xea\x75\xc4\x0a\x3c\xef\x0a\x1a\x52\xd1\xd4\xb3\x38\x3e\xbc\x62\x4b\x80\x16\x8b\x63\xad\xa2\xe7\x4d\xdc\x2f\x64\xe6\x37\x5d\xb0\x9d\x2b\x96\x21\x0f\x96\x2d\x24\xa1\x3c\xd3\x45\xa9\x8d\x15\x9c\x80\xd1\xe2\x23\xca\xeb\x3a\xb2\xfc\x37\xbc\xcb\x34\xbf\x29\x3e\xb2\x0d\x5f\x26\x15\x01\xbc\xd3\x27\xe7\x94\xc8\x8c\xfe\x39\xa5\x74\xa1\x0e\xb6\x45\xc9\xca\xa7\xe3\x07\x96\xcb\x9e\xee\xa6\xd5\x6e\x92\x95\x2c\x99\xdd\xef\x96\xeb\x3c\x17\xaa\x8f\x8c\x6a\xa5\x94\xce\xe4\x39\x26\x7c\xed\x50\x4a\x53\x55\x50\xb1\x63\x3c\xcd\x24\xd6\x4b\xe9\x2d\x19\x5f\x14\x33\x9a\x92\xd2\x4b\xca\x6b\x5a\x68\xc4\x99\x84\x96\xde\x8c\x65\xec\x3a\xe1\xc0\xcc\x12\x8d\x21\x7f\x8e\x12\x05\xd7\x57\x41\x2d\x15\xa5\x74\x85\xa7\x45\xce\xd3\x7c\x6d\xf4\xf7\xaa\x69\x44\x0b\x72\x76\xc7\x45\x03\x74\x3d\xb8\xf4\x2a\x96\x73\x5a\x7a\x97\xea\x6f\x52\x5e\x43\x20\xed\x6e\xa7\xc1\xe6\x7d\x3d\x14\x53\x3d\x14\x74\x26\x5b\xba\x53\x7a\xb3\xb4\x5a\x25\x7c\xba\x78\x79\x37\x65\x2b\xa9\xe4\x8b\x27\x12\xc1\xc5\x51\x66\x22\xab\x30\xd7\x2d\xbd\xe4\xaa\x5c\xaf\x20\xf5\x09\x3c\x95\x65\xe1\x9d\x9c\x2e\x14\xdc\x54\x66\xe1\x62\x3b\x79\x51\x2e\x93\x4c\x94\xb1\xf6\x60\x9a\x65\x73\x4a\x08\xd0\x0e\x67\xc1\x9c\xac\x61\xd4\x06\x46\x40\x39\xf0\xc1\x73\xe9\xa8\x2f\xbf\x6a\x9a\xb6\x97\xb2\x50\xd7\x45\xb2\x57\x6a\x2a\xd4\x73\x35\x21\x6b\xd9\xa5\xa6\x41\x0c\xa0\x40\x48\xd1\x18\x0a\xd6\x6d\x7d\x68\x91\x23\x1f\x44\x89\x81\x6e\xb8\xd0\x72\x03\xa6\x5d\x98\x05\x93\x32\x89\x45\x3a\xaf\xab\x1a\xc5\xdb\x79\xd3\x34\xcc\xbb\x2d\x93\x15\x5d\x2b\x34\x0e\xa7\x5a\x57\x2b\x96\xcf\x98\x54\xab\x1d\x32\xb7\x6e\xfd\x2b\x65\xd9\xcc\x21\x0b\xea\xb0\x3b\x36\x5d\x73\x50\xc1\x67\xd4\x99\x16\xcb\x55\xc6\x38\x9b\x39\x64\x45\x1f\x1a\x1b\x02\x07\x3f\xb4\x5d\xb8\xe9\x5c\xdd\x8b\x2b\x89\x7d\xf4\xd0\xec\x5c\x47\x45\x4c\x87\xdd\x79\x9a\x1d\x89\x8a\xa4\x16\x64\x17\x1f\x57\x09\x63\x74\x85\x3e\xa0\x28\xc6\x18\xef\x5c\xba\xee\xe5\x88\x52\xc8\xdc\x03\x83\x71\x49\x0a\xec\xba\xe8\x9a\x5e\x4a\x2b\xe3\x2d\xbd\xb7\x20\xf0\x96\xd6\xef\xee\x92\xbf\xc6\x6d\x47\x5e\x0a\x6e\x18\x49\x12\x27\x7a\x08\x35\x61\xc5\xde\xbc\x28\x5f\x26\xd3\x45\xbb\xc1\xe4\xf8\x81\x45\x3c\x1e\x12\x66\xca\x3c\x0c\x9c\xc2\xe4\x92\x35\x15\xdd\xb5\x29\xb0\xec\x17\x2d\x77\x2c\x92\x5a\x28\xf5\x05\xea\x80\x26\xab\x0d\xb7\xd5\x0e\xc1\x61\xcc\xe5\x2e\x07\xe0\x82\x82\x98\x05\x9e\x21\x16\x95\x31\x61\x24\x95\x8b\x40\xf6\x6c\x44\x69\xa5\xd6\x80\x5c\x28\x15\x50\xf6\x94\xae\x15\x3e\x81\xb6\x88\xb8\xae\x23\x93\xd9\xb5\x4c\x7e\x6a\xc6\x7d\x4a\x9c\xcb\xcb\xe4\x36\x49\xb9\x83\x43\xd5\x32\x93\xbe\x61\xea\xa9\x67\x03\xf9\x27\xb8\xe2\x25\x84\x41\x53\xbb\xf8\x34\x5c\x37\x52\x3f\xc5\xc1\x46\xd9\x43\x39\x2d\x14\xae\x27\x23\x05\x5a\xf7\x8a\xd4\x13\xb3\x51\x72\x93\xa0\x4a\x2e\x49\x0c\x03\x27\x46\xb3\x31\xd1\x5e\x9c\xf2\x50\x65\x44\x2b\x48\x81\x83\x02\xe1\xa6\x9d\xc8\x73\x38\xb7\xd6\xca\x90\x11\x73\x91\x5e\xfa\xb1\xe6\xdf\xf2\xd4\xbc\x65\xc0\x00\x44\x41\xb6\xb0\xc7\xb6\x20\x4f\xb6\xc2\x75\x5b\xbe\xde\x65\x74\x94\x13\xd9\x86\xa1\xb2\xf4\x71\xfc\x6a\x67\x0b\x2b\x12\xd4\x64\xb9\x17\x7e\x58\xb0\x5d\x5d\xf3\xee\xac\x60\xd2\xdf\x6a\x55\x16\x37\xe9\x8c\xed\x26\xbb\xdf\xc2\xc7\xdf\xee\xca\xb2\x1c\x33\x46\xab\x46\x8a\xdb\x0c\xe5\xa4\x6d\xbb\xe6\xc4\x5d\xb9\x25\x29\xce\xd8\xf6\x07\x9b\x95\x02\x21\xf6\x07\x6b\xa5\x4e\x0f\x52\x29\x2c\x94\x38\x0e\x0b\xc9\xba\x51\x19\x01\x6d\xac\x33\x2e\xb6\x3e\x31\x2d\x24\x2d\x90\xd2\x13\x64\x46\x19\xfc\x79\x53\x4c\xcd\x82\x1e\xd9\x72\xc4\x1a\x5f\x49\x95\x6a\x74\xf1\x66\x33\x70\x50\x04\xe8\xcb\x06\xd4\x0c\xa6\x6c\x98\xf1\x60\xcb\x77\xd5\x82\x1a\x2a\xbe\xa5\xae\x77\xad\xe1\x4d\x08\x84\x37\xc5\x34\x60\xd1\x24\x6e\x76\x7c\xf0\xfc\x70\x5d\xc4\x65\x26\x9a\x37\xc5\x94\x32\xb0\x8a\x1f\xb4\x4f\x94\x15\x4f\x3e\x3b\x88\x09\xf7\x92\x39\x67\xa5\xbc\x3e\x8c\x55\x1c\x1a\x2f\xef\x5f\x4a\x13\xb0\xc1\x99\x37\xf5\x3f\x6b\xeb\x67\x9e\x62\xff\x69\x91\xd7\xf5\x43\xb3\xc3\x61\x22\xa9\x91\x4b\xca\x53\x9d\xc3\xd4\xd9\x6f\x53\xde\x16\xf8\xd1\x04\xdd\xb5\xd5\xd2\x48\xf7\xcd\x29\x8b\x82\x3b\x4d\x4c\x98\x61\xb5\xef\x24\x3a\x95\x49\x7f\xc4\x38\x12\x7b\x27\x53\xe0\x07\x75\x96\xc7\xb4\xe3\x31\x8b\x0a\x58\x73\x65\x0f\x33\x48\xa6\x99\x1b\xb2\x4f\x02\x5d\x18\x5c\x62\xc0\x1c\x4a\xab\x9f\x92\x9f\x10\x33\x81\x44\x4a\x9b\xdc\xf3\xad\x44\x81\xbb\xa5\x4a\x2a\x78\x32\x1e\xa7\xa7\xcc\x80\x96\x00\xda\x8b\xca\x2a\x91\x5a\xc8\x45\x8a\x31\x45\x69\x4c\xa4\xda\x40\x47\x3e\x29\x77\x7a\xcf\xb9\x79\x38\x21\x65\xd3\x06\xaa\x01\x09\x27\x1a\x22\xe4\x41\x5c\x06\xcf\x2d\x3e\xf4\xdc\x48\x08\xa5\xa5\xf0\x16\xd4\x5f\xbb\x26\x5a\x22\xf0\xb6\x83\x16\x7b\x4f\xee\x3b\xd7\x37\xe4\x3e\xaa\x62\x7a\x03\xea\x58\x96\x80\xb3\x21\x6d\xf5\x54\xbd\x6f\x72\xc4\x5a\xaf\x36\x6e\x0f\x78\xb0\x0f\x0d\x7b\x0f\xb3\x57\x1f\xbe\x8e\x38\xf8\xe5\x51\x7a\x53\xd7\x03\x55\x52\x4a\x11\xb7\xdb\x55\xd7\x1c\x20\x38\x30\x6e\x08\xf3\x96\x49\xf9\x71\x48\x1a\x2b\x91\xdf\x05\xee\x0e\x07\xef\x22\x46\xee\x71\x80\x98\x77\x79\x09\xe3\x75\x79\x49\xef\x49\x05\xab\xaa\xae\x11\x13\x03\x33\xd0\x2e\x8c\x09\xdb\xaa\x62\xdc\x62\xc2\x44\xeb\x12\xd0\xc1\x36\x9b\xf7\xa0\x84\x64\xc0\x9a\x86\xbc\x44\x77\xf6\x26\xc4\xba\x88\x92\xad\xba\x13\x61\xde\x33\x7b\xd3\x44\xef\x44\x75\xe2\x0e\xed\xba\x15\xb4\xc0\x9c\x82\x53\xdd\xa1\xb5\xb9\xdd\xee\x9e\x87\x26\x15\x95\x38\x2c\x82\x02\xe8\x10\x0d\x08\x5e\xf3\x2d\xf0\x62\xe5\xed\x68\xde\x17\xdb\xdf\x97\x62\x18\x6e\xbb\xc3\xe7\x90\xdb\x4f\x28\x84\xe4\xd6\x6c\xfb\x36\x5f\x31\xf9\x75\x4d\x61\xb1\x23\x86\xe1\x23\xbb\xaf\x06\x28\xd0\x82\x1b\x2a\x65\x5a\x0d\xae\x33\xba\xb5\x01\x31\x25\xbb\x61\x65\xc5\x10\x26\x9b\x8b\x9c\xb7\xa8\x44\x52\xd8\x73\x6f\x55\xac\x90\xdc\x9f\xa9\x44\x1d\xdd\xa5\x9c\xdb\xeb\xbc\x3d\xcc\x6e\x57\xb7\x68\xae\x3c\x02\xa2\x1f\x88\x95\x10\x8f\x3e\x58\xeb\x22\xf8\x48\x80\xed\xf5\x9d\x17\x54\x7a\x38\x76\xa3\x53\xed\x01\x87\x50\xbf\x61\x23\xa6\x12\xd5\xc1\x4f\x79\x5b\xb7\x46\x5e\x74\xa4\x0e\xdc\xea\x0a\x40\xb8\x25\x35\x8c\xbe\xa0\xd0\xdc\xf9\x19\x26\x23\x86\x3b\x03\x0b\xec\xda\x51\x3b\x44\x03\x52\x69\xb4\x45\x99\x12\x0c\x62\x54\x80\xc7\x8e\xcb\x16\xb6\x4c\x87\x14\x94\x31\xe5\xb8\x21\x15\x2f\x56\x41\xe7\x2c\xc7\x74\x61\xa2\x22\x1d\x7a\xed\x8a\x26\xb1\x25\x77\xba\x7a\x07\x93\x7a\x87\xdc\x72\x32\x5b\x83\x90\xa2\xe5\x26\xc9\x1a\xb2\xb1\xfd\x1c\x1c\x75\x80\xf2\x52\x05\xed\xb4\x88\xe5\xed\x36\x22\x95\x00\xb8\x7a\xdf\xac\x04\xa5\xd2\x13\xe4\x98\x1a\xb5\x24\x27\xe9\xa7\x94\x8f\xd1\x28\x35\x08\xae\x45\xbf\xbf\x2d\xd4\x54\x71\x46\x27\x27\x7b\x7b\x85\xde\xe8\xf7\x07\xa6\x88\x49\x45\x93\xfe\xe0\x80\xb8\xa5\x94\x26\x9e\x14\xc0\x06\x2b\x17\x90\x4b\xa4\xed\x41\x3f\x3b\xa5\x86\xe2\x0c\xc8\xa9\xb2\xc0\x11\x47\xeb\x20\x8e\xc4\x9b\xd7\xb7\x5b\x05\x44\x96\xb5\x76\xdd\xac\x4b\xbc\xa7\x89\xd1\x5f\xda\xca\xdb\x7b\xe0\xf5\xd2\x7b\xbf\x2d\xd4\xfe\xc2\xba\xdb\x68\xdb\xc3\xfa\xab\xeb\x6a\x34\xfe\xd7\x28\xdb\xb4\xd3\xf0\xf2\x7e\xb7\xe2\x09\x07\xfb\xfb\xee\x6d\xca\x17\xc5\x9a\xef\xc2\xe7\xbb\x45\xb9\xab\x5a\xe0\xfc\x37\x1a\xdc\x34\x0d\x91\x56\x8c\x9e\xff\x50\xeb\x34\xbb\x75\xe6\x4b\x39\xf3\xa5\xb1\x78\xf5\x66\xbe\x8c\x25\x16\xf2\xc6\x2c\x9a\x25\x99\x76\x27\x4a\x65\xbc\x84\xc6\xa7\x76\x33\x95\xdc\x48\x25\xf6\x6b\xd3\x14\xae\x8b\x1c\xf8\x0d\xeb\xab\xae\x1d\x6d\x2f\x81\x6b\xec\xba\x45\x5b\xab\xeb\xf2\x53\x5a\x58\xc5\xb9\x2e\x92\x60\x7c\x72\xb7\x9e\x48\xd0\x3d\x43\x9f\xc1\x83\xa5\xfc\xc8\xc4\xa1\x24\x51\xdc\xa8\x08\xd1\x36\x76\x05\x4b\xca\xae\x46\x68\xeb\xf0\x44\x1b\x2f\x90\xd8\x69\xea\x8b\x4d\xb7\xe6\x2f\x60\x18\x56\x9f\x3d\x19\x39\xda\xed\x38\xdc\x0c\xdb\xe6\xc0\xb7\x81\x65\xbc\x52\x6f\x20\xc3\x78\xa8\x61\xb5\xf0\x6e\x97\x19\xeb\xdd\x5e\x5b\xa0\x5c\x9c\x81\x65\xca\x62\xca\xea\xc4\x15\x0b\x95\xef\x71\x4c\x56\x0d\x99\xa7\x79\x5a\x2d\xb6\x20\x2f\x6c\x25\x2b\x2e\xc9\xaa\x93\x92\xc1\x26\x2b\x2e\x95\x6c\x7b\x8f\x61\xc7\xdc\x74\x46\xbc\xb4\xe6\x55\x70\x36\xb5\x09\xc1\xe4\x19\x2a\x45\x13\x87\x92\xa6\xfe\x07\x9b\x28\x69\x10\x9a\xa7\x44\x77\xb9\x55\x4a\xe4\x96\x3d\x24\xa5\x39\xcc\xba\x68\xa5\x16\xdf\x69\xd3\x6c\xf0\x85\x34\x13\x82\x34\x53\x9c\x20\xe1\x9c\x2d\x57\x70\xa8\xab\x25\x2c\xd8\xd3\x6c\x52\xb3\xdd\x3b\xbb\xb2\xf8\x41\x6f\x18\x03\xb1\xb1\x21\xed\x76\x36\x28\x89\xda\xbe\x06\x79\x43\x8c\x11\xd6\xa2\x14\x3d\xf5\x4a\x70\x88\x61\x65\x0d\xda\x30\xdc\xf0\xd0\x1c\x23\x04\x0f\x8d\xce\x50\x73\xad\x95\xa8\xf7\xeb\x9c\xa7\x4b\x46\xf3\x36\xbf\x9b\x51\x01\x9d\x12\x8c\x61\xfd\x77\x77\xe9\x6e\xe9\x60\x04\xce\xa9\x0f\x4d\x2c\xfe\x21\xb0\x15\xed\x2e\xae\xce\x21\xc3\x46\xb3\x96\xc5\x6c\x9d\xb1\x01\x43\x93\x7c\xa0\x9b\x1c\x76\x2f\xa9\xd0\x37\xa7\x70\xfe\x13\x72\x19\x17\xbb\x11\x4d\xd6\xbe\xb2\xc9\xd2\x7f\xff\xfb\x9a\x95\xf7\xbb\x25\xfb\x63\x9d\x96\xac\xda\x4d\x76\x6f\xd3\x7c\x56\xdc\x02\x77\xdf\x4d\x76\xf5\x97\x4e\xab\x24\x22\x86\x9b\x00\xfe\x45\xce\x3a\x97\x21\x5c\xb3\x36\x0b\xb1\xfc\x3e\x94\x7f\x64\x6a\xd9\x4f\x0c\xc3\x8d\x4e\xf3\x9a\x5b\x3d\x21\xe9\x16\x1b\x68\x41\x95\xb2\x44\x12\x20\xe1\x7c\x9a\x70\x52\x51\x89\x68\x44\xd6\xb4\xd4\x48\x3f\x24\xa3\x0f\x0d\x99\xd2\xac\x05\x69\x9c\xd3\xac\x7f\x78\xb3\xa0\xf3\xf6\xf9\x8c\x2e\xa4\x34\x90\x55\x63\xb0\xf0\x92\xe5\xc0\x66\x65\x78\x2f\xe7\xe4\x70\x22\x6c\xa5\x63\xf6\xf2\x62\x06\x27\xd2\x0d\xb9\x19\xda\x92\xc9\x24\x0d\x62\x1b\x08\x0c\x4c\x8e\x58\x43\xee\xa9\x34\x60\x8f\x26\xa4\x2a\xa7\xe2\x4f\x5e\xe4\x53\x26\x7f\xbc\x85\xd9\x17\x9b\xda\x56\xd9\xba\xb6\x8f\x5f\xc0\xea\x49\x51\x49\xcb\xba\xce\xb1\xda\x7f\xa9\x23\x73\xe4\x48\x8f\x32\xa3\xd7\x00\x73\x26\x1c\xf4\xd7\x54\xe8\xae\xf7\x18\x15\x94\x47\x69\x2c\x36\x95\xd7\x8c\x3f\xe3\xbc\x4c\xaf\xd6\x5c\x70\xd6\xce\x35\x02\x28\xdf\x44\xec\x1c\xad\x7b\xa4\xc0\x3b\xa5\xb7\x60\xc9\xcc\x4b\x56\x2b\xa6\x00\x04\x50\x82\xbd\x55\x52\xb2\x9c\xff\x54\xcc\x98\x57\xb2\x65\x71\xc3\xf4\x93\x76\x03\x7f\xd5\x1b\x1a\x4a\x59\xc8\xc6\x8e\x13\x6c\xac\x08\x21\x70\x06\xe6\x20\xcc\xa2\xa9\x36\x75\xc4\x75\xad\x3f\x0b\x4c\x80\xbe\x84\x5a\x1d\x74\x50\x16\x4b\xe2\xd2\x9b\xe7\x5e\x9a\xa7\x32\x47\x55\x43\x6e\xe9\xfe\x6f\xd1\x45\x75\xb1\x7e\xf5\xf2\xd5\xab\x8b\xbb\x67\x93\x78\x5c\xf7\xae\xbf\xd9\xbf\xee\xd9\xce\x25\xcb\x1e\x8d\x04\x45\x48\x46\xed\x48\x73\x94\x41\x3a\x2a\xe9\x95\xe5\x6a\xbd\x84\x38\xa6\xd1\x0d\xfc\x41\x4e\x02\x9e\x94\x62\xeb\x50\xd7\xe0\x85\x5d\xd7\x9a\xb0\x3a\x89\xbc\xcf\x26\xae\xcb\xf7\xa4\x11\x0c\x37\xa2\xe5\xf4\xd2\xde\x3f\xfd\xfe\x87\x58\xd7\x81\x73\xe8\x1d\x79\xbe\x43\xec\xed\xd4\x25\x91\x0d\x09\x26\x84\x17\xd2\xc7\x61\x73\xfb\x59\xd8\xc8\x9d\xa4\xef\x3a\xde\x9b\x25\xfb\xe5\x80\x9d\x4e\x40\xf4\x47\x6c\x0c\xdc\x58\x56\x16\x07\xf2\x5e\xdc\x10\xb1\x56\xcf\x79\x32\xfd\x38\xe0\x5c\x77\xe9\x2d\x59\x79\x2d\xdd\x74\x6c\xdb\x08\x82\x08\x2a\xb3\x4d\x15\xaa\x99\x5c\xa6\x32\xc3\x32\x6f\x08\x4b\x86\x93\x8e\x5f\x7a\xe2\x89\xc1\x40\x24\xcb\x9e\x5b\xae\x2d\x84\x4c\xcb\xd0\xa5\xb7\x4c\x54\xe6\xf9\xee\x99\xbc\xd9\xe5\xeb\xe3\x27\x41\x29\x58\xec\xd5\xba\x41\x62\xdb\x0a\x2e\xec\x63\x76\x73\x72\x0f\xd8\xf4\x69\x59\x0d\xe1\x67\x40\x01\xec\x0f\x34\xc1\x0d\xc9\x92\x4f\xbe\xb2\xe7\xe3\x86\xb0\x3f\xb6\xe4\xa1\x6e\xe9\x6f\xcc\xc6\x08\xa6\x29\x68\x13\x11\xf4\xda\x29\x94\x6a\xd7\x2d\x4f\x79\x18\xa9\x1d\x69\x1c\x44\xb1\x28\xde\x76\xc1\xeb\xf5\xd2\xcc\x4a\x5d\x6f\x4e\xa0\x9c\xf8\xa0\x22\x55\x51\xf2\xa0\xf4\xc4\x1f\x08\xe8\x9e\x32\x71\x05\x3f\x1a\x72\xe9\xb1\x3b\xce\xf2\x19\x85\xc5\xa8\x7e\x5b\xf5\x29\x18\x32\x69\xb1\x01\x56\x67\xbb\x90\xd7\xf5\x43\x43\x2a\xea\x93\xf5\x26\x70\x56\x46\x47\x3e\x58\x40\x9c\xab\xa2\xc8\x58\x62\x71\x8e\xc4\x75\x51\x46\x93\x4e\x61\x95\x2a\x6c\x3c\xc6\x64\x83\x01\x25\x75\xbd\x44\x09\xae\x6b\x94\xd0\x87\x06\x93\x8a\x52\xba\x86\x34\x16\x30\xaf\xd5\xde\x1e\x3e\xa9\x4e\xd7\x27\x95\xc4\x3f\x96\x8c\x1e\x31\xda\x05\xe1\xb2\x32\x9c\xe6\x94\x45\x3c\x26\x8e\xb1\xb8\x39\x23\x2a\xb6\x0c\xc9\x88\xd2\x5c\xb4\x0e\x52\x7c\xa1\x4b\x2f\xad\x7e\xce\x92\x34\x57\x11\xc8\xb9\x68\x42\x4a\x61\x11\x7b\x69\x05\x7f\x51\x8e\x31\x0e\x51\x49\x13\x51\x62\x41\x53\xd7\x1d\x75\x5f\x28\x71\x18\xc5\x41\x5a\xd7\xfd\xe2\x4a\x1c\x96\xc1\x43\x43\x52\x3a\xf2\x89\xf8\x9c\xea\xe9\x40\x19\x29\x48\x8e\x71\x9b\x9c\x52\x34\x07\x5e\xc9\x2d\x34\xb1\x76\xfe\xd0\x03\xbb\x5b\x25\xf9\xac\x08\x94\x8a\xe1\x8c\x91\x62\x46\x63\x80\xb3\x2a\xc5\xc3\x25\xc2\xd8\x53\xb1\xfe\x68\xff\xe2\xc5\xfe\x35\x71\x1c\x4c\xd2\xea\x3d\x4b\x66\xf7\x42\xe2\x31\xa1\xa6\x74\x08\xba\xaf\xc2\x88\x45\x9d\x17\x5d\x43\x49\x43\x3a\x1d\x1b\xf2\xc3\x37\xe0\x21\x23\x21\x4d\xb4\x29\x4d\xbe\x1f\x8b\xd1\x37\xa2\x44\x81\x88\x00\x4a\x39\x1e\x92\x3c\xa8\xa4\x73\xcd\x0f\x1c\x8b\xe6\x61\x27\x69\x2f\x02\xec\xba\x4a\xc7\x28\x31\x38\x34\x88\x76\xbe\x5c\xae\xf8\xfd\xb6\x76\x76\xb2\xe0\xca\x06\xfb\x6d\x42\x3e\x22\x13\xf0\xbc\xbc\x49\xb2\xde\x3e\x4e\xa8\x04\x0f\x52\x6d\x00\x07\x10\xf8\xd9\xe0\x0d\x36\x69\x32\xce\x91\x9c\x02\x98\xb9\x90\x61\x40\x98\xa5\x81\xe6\x3b\xc9\x4f\x4b\xd7\x1d\xf9\x82\x22\xd5\x98\x44\x79\x4c\x72\x22\xfe\xe0\x93\x7c\x3c\xc6\x27\x60\x70\x10\x9f\x29\x43\xa0\xce\x5c\x38\xf0\x81\xca\xe5\xa3\x19\x69\x43\x78\x99\x2e\x3f\x25\x5d\x1c\x27\x40\x42\x0f\x68\x29\xe5\x16\xe0\xb1\xc8\x32\xf9\xc8\x7a\xf2\xcb\x4e\xa1\x57\xd7\x51\x9b\x47\x5b\xab\x5a\xe8\xa5\x15\xbd\x1f\x6a\x71\x53\x4a\xa4\xb1\xfc\xda\xd6\x26\x22\x16\x07\xcc\xe4\x76\x2f\x09\xc3\x98\x94\x0d\xd1\x7e\x81\x7d\xdf\x97\x4e\xab\x79\xb8\xe7\x07\x6b\x4d\x14\x0c\x40\x73\xa0\xaa\xad\xe6\x8d\xb1\x36\xaf\x8a\x99\x20\x69\x67\xf4\x61\x8c\x19\xe0\x01\x50\x1e\xe5\x71\x6b\xa7\x56\x50\xea\x29\x61\x0d\xb9\x2e\xd9\x6a\xa3\x55\xad\x03\x6a\x14\x2b\x2c\x1e\xd6\x42\x09\x8e\xca\x93\xf4\xb4\x38\x49\xc7\x63\x3c\xe2\x08\x4e\x66\x52\x2c\x53\xf2\x28\x34\x02\x71\xcf\x86\x8b\xe9\x8a\x4f\xcb\xeb\x47\x70\x63\x3a\x21\x15\x95\x10\xf8\x86\x8e\xf2\xb6\x27\xc5\x69\x7e\x52\x8c\xc7\x58\xb1\xc3\x94\x8a\x2a\x8b\x98\x14\xa4\x84\x30\x04\x95\x3d\x41\x62\xd0\x03\x35\x15\x8a\x3b\x7e\xee\x03\x63\x27\x91\xc2\x35\x8a\x09\x68\x2d\xeb\x74\x16\xf8\xa4\x5a\xaf\xc4\x56\x29\x58\x35\x98\x6c\x75\xd6\x02\xe6\x3a\xcf\x23\x79\x65\x0e\x70\x63\x5a\x6e\xdc\xc2\x44\xe9\x14\xce\xf7\x52\x90\xec\x4a\x5f\xd0\x5d\xb9\x91\xd8\x7d\x65\xce\x0e\x05\x9d\xec\xbe\x48\x38\x53\x58\xea\x8a\xbd\x48\xc6\xa5\x2a\x36\x48\x25\xbb\x4e\x7f\xbf\x98\x45\x86\x2f\x39\x63\x3e\x76\x62\x27\xa6\xdc\xe3\xc5\x9b\xe2\x96\x95\xcf\x93\x8a\x21\xdc\x48\xdb\xd1\xdd\xa6\xbd\xbf\x95\x90\xa4\x22\x6b\x92\x91\x29\x81\x14\xa6\x64\x45\x96\xe4\x06\xa2\xea\xae\xc8\x25\x75\xaa\xf4\xcf\x3f\x33\xe6\x8c\xfd\x47\x82\xa5\x8a\xc6\x92\x5b\x7b\x2b\xa6\xb2\x65\x91\x73\xba\x66\x08\x93\x77\xf2\xcf\x33\xf9\xe7\xa3\xfc\xf3\x61\x58\xa7\x16\xdb\x1a\xee\xba\x68\x0e\x90\x46\x93\x86\x3c\xa7\x0f\x4d\x7f\x0f\xf6\x56\x10\xe6\x7b\xfa\xd6\x5b\x15\x2b\xf2\xb3\xf8\x2b\xb6\x72\xbf\xeb\x1f\x2f\xe8\x5b\xb5\xe3\xfb\x89\x6e\x5b\x3a\x13\x62\x11\x59\x79\x9a\x9f\x94\x52\xec\xb2\xa8\x8c\xed\x90\x7c\xcd\xf3\xf7\xfc\x86\xbc\xa6\x0e\x24\xa9\x65\xb3\xba\x02\xaf\x62\x36\xab\xe1\xb4\xa8\x4e\xd6\xbc\x98\x17\xd3\x75\x05\xbf\x56\x59\x72\x5f\x4f\x8b\x9c\x97\x45\x56\xd5\x33\x36\x67\x65\x3d\x4b\xab\xe4\x2a\x63\xb3\x5a\xe2\xbc\xd5\x69\xb5\x4c\x56\x75\x56\x14\xab\x1a\x12\x50\xac\x32\x56\x17\x2b\x96\xd7\x25\x4b\x66\x45\x9e\xdd\xd7\x6a\x7b\x3d\xab\xab\x69\xb1\x62\x33\x87\xbc\xa1\x4e\x74\x71\x71\x77\x30\xb9\xb8\xe0\x17\x17\xe5\xc5\x45\x7e\x71\x31\x8f\x1d\xf2\x8a\x3a\x28\x0c\x2e\x2e\x2e\x2e\xbc\x3a\xba\xb8\xb8\xdd\x8b\xeb\xe8\xb7\x8b\xc9\xde\xc5\xc5\x5d\x32\x89\xf1\xd8\x21\x7f\x52\xe7\xe2\x22\x72\xc6\x6f\xc6\xce\x23\xe4\x8c\x5f\x8d\x1d\x0c\x69\x2b\xe0\x3a\x7a\xf4\xdb\x37\xf5\xe8\xdf\x71\x48\xb1\xba\x13\x06\xdf\xa2\xb6\xc4\xdf\xc4\xdf\x6f\x63\xfc\x08\x7f\x5b\x5f\x38\xfd\x07\x17\x8e\x78\x72\xe1\xd4\xaa\x5c\x5c\xab\x52\x2e\x2e\x62\x87\xfc\x48\x9d\xa0\xad\xf0\xe2\x02\x21\xf4\xf5\x45\xe3\xba\xff\x04\xe1\xe8\xe2\x22\x8e\x6b\x67\xfc\xe7\xd8\xc1\x8f\x70\xed\x3d\xc2\x17\x17\xa2\x6a\xf2\xbd\x9d\x56\xe6\xcd\xd8\x19\x3b\x04\x92\x76\xfc\xc3\xbe\xef\xfc\x06\x6d\x1c\x43\xc1\xbf\xa9\x42\x63\xac\x6b\xc1\x8f\x64\x1f\xc6\xdf\xa8\x8f\x7f\x1d\xf8\xf8\x11\x91\x7f\x1c\x4c\xfe\x18\x7a\x8c\xa2\xb3\xf1\xbf\x45\x13\xdf\x8c\x1d\x6c\x5e\xfd\xa5\xd7\xbc\xfa\xcc\xc1\xe4\x5f\xf6\xcd\x1f\x31\xf9\xa1\x5f\xde\xab\xb1\xf3\x8d\x83\xc9\xdf\xe8\xc3\xeb\x17\x41\xe7\xd9\x5f\xd4\xe8\x3a\x98\x3c\x7f\xf3\xec\xfc\xbc\xfb\xf4\xe2\xc2\x6b\x9f\x7f\x78\xf6\x43\xf7\xa9\x7c\x54\x47\x8f\x62\xf1\xf8\xd9\x87\x0f\xef\x83\x5e\xbd\x7f\x62\xf2\xf3\xf9\xcb\x7f\xbc\x78\xd7\x7f\xf0\x23\x26\xcf\x7f\x7c\xfd\xa6\xd7\x98\x00\x01\xe1\xc2\xa6\xa4\x16\xdb\x8e\x3a\xe7\x0b\xf1\xff\x9e\xb8\xc0\x7b\x68\x2a\xf6\xef\x75\x31\xdf\x03\x73\xa1\xa4\x08\x35\x5a\xec\x86\xe5\x75\x31\x9b\xd5\x08\x45\xe3\xbd\xb8\xc6\xe8\xe2\x62\xf6\x08\xe7\x75\x4b\x94\xea\x81\xba\xbe\xb8\x98\x8d\x71\x8d\x0d\xb5\xc1\xec\x3b\xa9\x83\x89\x50\xd5\x7b\x3d\x15\xc4\xfe\x7a\xec\xe0\x6f\xd4\x2b\x39\x63\xb3\xea\x79\x91\x73\x76\xc7\xfb\x7d\x13\xc5\xc9\xb9\x0b\xda\x56\xb1\x3f\xea\x6b\x5e\x67\xb2\x47\x6d\x07\xbb\x7d\x40\x61\xb0\x77\x71\x31\xc3\x21\x34\xdd\x6a\x18\x0a\x69\xf4\xdb\x5e\x5c\x7f\xa3\x9a\xd8\x90\x6f\xe8\xfe\x8f\x1f\xde\xbe\xf9\x66\x3f\x25\x7f\xa7\xfb\xa2\x81\x69\xbe\x5a\x73\xc5\x57\x6a\xd1\xae\xa4\x64\x49\x7d\xb5\xe6\xbc\xc8\xb1\x78\xef\x9f\x74\xff\xb7\xc5\xc5\x4c\xfc\xfc\x2f\xba\xff\x5b\xf4\xdb\x43\x3c\xbe\x78\xb8\xa8\x1e\x5d\x44\x79\xc2\xd3\x1b\xb6\x7b\x71\xbb\x4f\xfe\x2a\x4b\xfb\x0b\x8a\x04\x23\x18\xe3\x1a\x5d\xdc\x8e\x71\x7d\xe1\xe9\x1b\xf8\x9b\x7d\xc2\x18\xdd\x8f\xc6\xff\x8e\xf7\x09\x67\x1d\x5a\x83\xc5\x15\x5d\x5c\xcc\x92\xbd\x79\xfc\xe0\x93\xe3\x06\x7a\x11\xd6\xb2\x8b\xb8\xf6\xa0\x07\x62\x4d\x94\xdb\x3c\x79\x9d\xc9\x9d\x33\xe6\x7b\x00\x08\x6e\x94\x80\x11\xcd\xeb\xba\x0c\x79\x90\x9f\x4e\xc2\x01\xec\x74\x94\x8f\x25\x82\x78\x30\xf8\xf0\xec\xcc\x9f\xd4\x80\x36\x4e\xfc\xc9\xc1\xa1\x9b\xd7\x12\x5c\xbc\x21\x39\xa3\xfb\x28\x12\xdc\xee\xce\x9f\x5f\xdc\x7d\x37\x8f\xeb\xdf\xf6\xc2\x8b\x19\xae\x7f\xdb\xfb\x46\xf1\x41\xf5\x64\xef\x62\xfd\xea\xd5\xab\x57\x62\x18\xf6\xaf\x49\xca\x86\x05\x10\x0f\x9d\x8b\x09\x9c\x0e\x84\xce\xff\xf5\x7f\xfe\x1f\x4e\xc0\x4c\x0a\xa6\x3d\x1f\x8f\x9d\x8b\x0b\x67\xcc\xe0\x88\x56\x34\xed\x19\x37\xfe\x2e\x7b\x3e\x36\x86\x41\xe4\x1f\xe3\xb1\xb3\xeb\x04\xf2\xf5\x86\x14\xcc\xde\x90\x2e\xc4\xce\x36\x61\xf4\x92\x0d\x78\x03\x40\x20\x3d\xf3\xb4\xc0\x70\x5d\x67\x9e\xb2\x6c\x26\xa3\xbc\xa9\x34\x10\xfe\x94\x2c\x59\x4f\xa8\x93\x87\x59\x5a\x06\x4e\x6b\x33\x73\xc0\xf4\x1d\x38\x19\xbb\x66\xf9\xcc\x51\x46\x6b\x8d\xc7\xf4\x96\xbe\x90\x9a\xe6\xad\x07\xab\x52\x7c\x51\x61\xd2\xbd\x7a\x1b\xd9\xd7\xda\x2a\xd3\x9a\x28\xa5\xb1\xfb\x1d\xc3\x0f\xbf\xd3\x07\x28\x37\x78\x3b\x9c\x8e\xea\x67\x55\x2d\x23\xaa\x5a\x8e\x71\xb3\x55\xaf\x65\x96\x5a\x7b\xc2\xa2\x52\xe9\xb0\xe3\x71\x7c\x82\x4f\x8c\x02\x5b\xee\xf9\x8d\xe5\xcb\x53\x31\x95\x52\x52\xfb\x6a\x90\x4a\x69\x30\x2b\xa1\xb9\x48\xa7\xf6\xe2\x36\x67\xe5\x8b\x56\x4f\xe1\x21\x37\xdd\x09\x9e\x4a\xaf\x43\x70\x5c\x37\xca\xfd\xc8\x32\x20\x8a\x6d\x9f\xd8\xd2\xbc\x74\xdd\xa7\xf2\x8f\x0f\x97\x26\x5f\x93\x74\x83\x72\x5d\x84\x44\xc1\x9d\xca\xea\x9a\x07\xb7\x42\x4f\x9e\xb9\xee\x02\x71\x4c\xb8\xd8\x6d\xcc\xc8\x52\x66\x60\xf7\x55\xb9\x68\x4e\xff\x0a\x59\x9a\x85\x2e\x2c\x14\x92\x82\xce\x23\x3f\x86\x77\x9e\x52\x51\x17\x98\xe7\x51\x46\xc1\xb6\xaa\x8c\xb4\xdf\xdf\xbf\x9e\xa1\xa2\xcd\x13\x0f\x0d\xc9\xbc\x74\x46\x29\x2d\xda\xfc\x59\xa0\xfa\x66\x98\xe4\xe6\xb0\xf7\x1a\xac\x18\xd7\x03\x45\xb9\xee\x15\xe2\x24\xc3\xae\xfb\xb9\x72\x20\x81\x7c\x74\x10\xeb\xe7\x9a\xc4\x72\x62\x37\xb1\xfa\xfe\xfe\x43\x72\x2d\x08\x57\xc2\x50\x8a\x16\x42\xe7\x0e\x63\xec\xba\x65\xf7\xcd\xe7\x59\x52\x55\x3f\x41\x8a\x20\xbe\xe5\xc9\x67\x6b\x33\x6f\x8a\xde\x90\xbc\x81\x53\xad\x3f\xaa\xc4\x75\x47\x1f\x23\x26\x56\x67\x2c\x36\xe9\x37\x75\x3d\xba\x91\x11\x36\x72\xdb\x0e\x13\xd1\x5a\x82\x61\x07\x3b\xbc\xe6\xe4\xcc\xdd\x53\x26\xa8\x8b\x88\xad\xeb\x4b\xd7\xfd\xc5\x94\x05\x04\x8d\xa6\xb4\x67\x04\x77\xd2\x99\x83\x71\x38\xa5\x53\xb3\x37\xcd\x19\x49\x19\x80\x6a\xf7\x5f\x24\x53\x7a\x89\x49\x45\xd1\x8a\x26\xa2\x4c\xad\xb1\x56\x7b\x7b\x27\x78\x05\x6e\x41\x7f\x71\xc6\x53\xd1\x9b\xf1\x15\x43\xe2\x0e\xde\xb9\xa7\x2b\x05\xd1\x4e\x20\x5d\x19\x63\xba\x4d\xae\x7b\xcf\x10\xb7\x0c\xeb\xb8\xae\x79\xd3\x3a\xcd\x5b\xa3\x79\xed\x81\x35\x58\x86\xcf\x15\xe5\xb3\x2c\x43\xf7\x30\x8e\x72\xd1\xdf\xe1\x87\x8f\xf2\xe8\xa8\x51\x87\x99\x0f\x53\x4a\xe9\xa5\x98\x30\x69\xac\xef\xf5\xb8\x31\x1e\x75\x6b\xc4\x4c\xcf\xff\x41\x9c\x6f\x7c\x07\xab\x75\xdb\x2e\x66\xb1\x45\x50\x60\x7b\xed\x86\xbc\xeb\xa9\x6d\xd9\x55\xa5\x4b\x92\x18\x04\x7c\x96\x7b\xd3\x64\xba\x50\x10\x59\x06\x09\x98\x47\xcc\xab\x16\xe9\x9c\x23\x0c\xe8\xb1\x30\xfd\x34\xb5\xd8\x47\xc6\x6c\x87\xac\xe8\x32\xa6\xa3\x09\x61\xed\xf3\x29\x6b\x2d\xa3\xb3\xfe\x11\x89\xe1\xd0\xfa\x64\x50\x3a\xe5\x31\xc4\xb1\xc5\x24\xb5\x31\xc6\x8c\x98\x3d\x13\x10\x72\x33\x7c\xe0\x01\xcc\x42\xec\x67\xad\xe6\xce\xd9\x26\xd3\x54\x9b\xc2\xda\xc1\x24\xa5\x1a\xde\xf5\x24\x15\xa4\x92\x7b\x09\xe7\xe5\x8f\x49\x3e\xcb\x58\x54\x46\x69\x1c\xdb\xfe\xa5\x0b\xd6\x31\x82\xb8\x2e\x84\x2d\xb9\xae\x6f\x04\xce\x07\x38\x28\x97\xd6\x99\xf6\x5a\xe7\x07\x83\x44\x71\x7b\xdc\xbe\x02\x56\xda\x61\x47\x25\x6c\xed\x4f\x4a\x2a\x5d\x78\xce\xd3\xab\x2c\xcd\xaf\xc1\xf3\xb3\xb4\x76\x5c\x7b\xbe\xb1\x54\x84\x7e\xb0\xe7\xb7\xad\x9c\xb1\x4f\x26\x64\x70\x40\x83\x72\xe8\xf6\xf5\x2a\x86\x18\x4e\x3a\x28\x65\xd6\x50\xae\xb6\x95\xab\x86\x63\x4b\x69\xaa\x99\xa8\xad\xb7\xac\x6b\x47\x2a\x6c\x70\xb5\xad\xbe\xe5\x67\xfa\x31\x2f\xca\xa5\x93\xe6\x70\xe6\x6c\xd3\x87\x32\x8e\x69\xc5\x20\x74\xb2\xe4\x8a\x65\xf2\x4d\xeb\xb7\xf5\x4d\xa7\x00\xf3\xa1\x68\x4e\xc0\xfb\x97\x69\xf5\xc2\xba\x51\xd7\xf6\x9d\x11\xa5\x23\xe6\xba\x89\xa0\xe7\xa1\xaf\xad\xda\x45\x9f\xed\x67\x56\xbf\x6f\xec\x7e\x67\x0c\x6d\x76\x7d\x97\xd3\x31\x27\xf6\x23\x38\xf3\xd7\x34\x9e\x42\xa4\x64\x14\x13\x4d\xdb\x84\x63\x92\x98\x44\xd1\x27\x89\xa0\xf4\x32\x4a\x69\x11\x25\xb1\x60\xee\x82\xd0\xe9\x08\xe5\xe2\x8f\xf8\x8d\x01\x05\xc7\x8a\xb2\xe9\xac\x79\x8d\xc8\x37\x12\x44\x3f\x24\xb8\x5c\x97\x35\xc6\xb6\x5a\xd2\x8a\x79\xca\x4c\x44\x21\x5c\xaf\x62\x5e\x5a\xfd\xf3\xed\x9b\x01\x3f\x4a\x06\xce\xb6\xd5\x2a\x99\xb2\x7f\xbc\x7f\x4d\x4a\x8a\x58\x5f\x3b\x60\xd8\xd8\x4f\x54\xc5\xda\x66\xfb\x8d\xe4\xde\x1c\x40\x92\x4b\x43\x8d\x75\xed\x88\x2d\x84\xd8\x4d\x2c\xa0\x2d\x8c\xeb\xd2\x06\x2c\x3b\x29\x49\x28\x0b\x37\x6b\x0d\x6e\x8d\x21\x4c\xea\x26\x4f\xc1\xb3\xad\x5d\xe3\x49\xbf\x59\x21\x5a\x51\x34\xa3\xc9\x46\x7b\xc9\x92\x8e\x0a\x34\xc3\xe4\x56\x96\x84\x52\x3a\xf3\x54\xae\xeb\x5f\x52\x76\x8b\x5d\x37\xf5\x78\xb1\x1a\x51\x2a\x54\xa4\xd4\x4b\x66\xb3\x97\x37\x4c\x86\x3b\xb3\x9c\x95\xe1\xe6\x2d\xe4\xac\xf3\xac\x48\x66\x0e\x29\x18\x19\xf9\x38\x48\x05\x23\x4b\xa6\x0b\x78\x4b\x14\x68\x5d\x22\xa7\xc8\xdb\xd7\x31\x26\x25\x70\x3d\x10\x42\x15\x9d\x0e\x29\xdb\xbb\xcc\x9b\x6a\x3d\x81\x3a\xa9\x43\x46\xac\x27\xad\xcd\x63\x07\x37\xa2\xc4\x21\xc2\xd8\x5a\xb6\x7d\xa0\xad\x85\xc6\xf3\x62\x29\x85\x86\x83\xb1\xaa\x6e\x53\x45\x72\x1e\x39\x5a\xd6\x6f\xd6\x6a\x34\x1b\xfa\x5f\x92\x34\x66\xdb\x74\x24\xf9\xa5\x50\xe9\xb6\x34\x71\xd5\x69\x22\xc3\x42\xd5\xbb\x24\xa3\x5e\x81\x92\xdc\x86\xee\xa2\xcb\x7e\x33\x45\x65\x21\xca\xbd\x79\x9a\x71\x56\x7a\xaf\x5f\x0c\x2e\x07\x2d\xff\x39\x23\x65\x7b\x48\x3b\x38\x86\x9b\xca\x93\x60\x83\x4d\x43\x72\x48\x37\xd0\xad\xa1\x0f\xb3\xd9\x57\x92\x5d\x77\xd9\xf2\xf5\x9e\xd2\xdb\xb6\xa3\x0c\xa3\x32\x0e\xa2\xb8\x69\x70\xf0\x1f\xe8\x8a\xac\xaf\xcb\x5c\x4c\x97\x24\x6f\xdf\xbc\x27\xbb\x6a\x5a\x24\x56\xbe\x74\x90\xfe\x4f\x74\x5e\x9a\x79\x07\x87\x40\x6c\x39\xa0\x18\x54\xd2\x62\x4b\xab\xb0\xdd\x1a\xad\x89\x47\x85\x74\x16\x4f\x29\x1f\xa0\x13\x86\x61\x33\x57\xd0\x54\xed\xe3\xfe\x7b\x35\x28\x1d\x12\xa6\x46\x8f\xc1\x87\x67\x3f\xd0\xe1\x75\xf9\xa9\x9c\xc8\xbd\xf1\xb1\x3e\xda\xba\x6b\x09\x60\xff\x10\xf2\x4d\xcd\xd8\x24\x3a\xed\xef\x69\xf5\x39\x99\x39\x48\xd9\x5a\x38\x78\xd4\x3d\x92\x3e\xa0\x0f\x4a\x53\x2a\xe0\xf8\xe6\x04\xfb\xe0\x16\xde\xf2\xe4\xbc\xef\x84\x9f\x6b\xdd\xba\x30\x94\x01\xe6\xc0\xfe\xb8\x58\xfb\xaa\x2f\x23\x9b\xee\x37\xcb\x36\xc9\xfd\x96\xad\x16\xc3\x0d\xb9\x17\xbd\xbd\x11\xff\xc8\x0d\x57\xcb\xa5\xfa\xe3\x06\xfb\xad\x1e\x63\xda\xe4\x48\x79\xce\x4a\x21\xe9\xa8\x73\x9a\xec\xa6\x33\xfa\xad\x33\xbe\x1c\x3b\xdf\x9e\x9d\xee\x27\x67\xa7\xd2\x60\xd6\xde\xde\xbb\x28\x2f\x2e\xbe\xdd\x5d\x56\x49\x96\x15\xb7\xd3\x64\xc5\xd7\x25\xa3\xdf\x7e\x7b\x76\x5a\xac\x94\x99\x40\x5a\xee\xe1\xde\xbe\xbc\x79\x76\xba\x2f\x6f\x9f\x39\x84\x6d\xce\xae\x13\x75\x8b\xfb\x8d\x7e\xfb\x6d\x6c\xf8\xb3\xeb\xde\xa8\x6c\xde\xd1\xa3\xdf\xbe\x89\x69\x6b\x44\xff\xb6\xbe\x70\x2e\xc0\xf6\x3a\x58\xa8\x6e\x49\x5b\x54\x5d\xeb\xa2\x5a\x73\x7d\x18\xc0\x32\xa8\xa5\x01\x73\x5b\x59\xe9\xec\xdf\x54\xf6\x7f\xa8\xb4\x7f\xd3\x2d\xdf\x05\xea\x3c\x63\xe0\x9b\xf6\xd1\xe0\x97\xc9\x5f\xa0\xba\xf1\xa3\x81\x4f\xbd\xbf\x78\xe3\x68\xfc\xef\x18\x24\x66\x6f\x7a\x59\x6f\x3e\x17\x25\x9b\xd3\x6f\xbf\xdd\x35\x3a\xe3\xb7\xfa\x57\x77\x82\x07\x9f\xcb\xd9\xdb\xb7\xa6\x6f\x67\xcb\x06\x4d\xea\xe8\x78\xa7\xbf\xc5\x16\xea\xb9\x43\x1c\x93\x7c\xa7\x2b\xb2\x39\xee\xbd\x2e\x33\xe0\x3a\x2f\xb6\x4d\x83\x78\x4e\x67\x43\xb4\x01\x5f\x4a\xdb\xb2\x39\x6f\x71\x30\x39\x00\x79\x30\x30\x31\x2c\x87\x4e\x0e\x94\x64\x1e\x11\x27\xd0\x63\xe1\x60\xb2\xb1\x6e\xcc\x88\x8d\x26\xdb\xab\x69\x0b\xf8\xd2\x7a\x86\x8a\x79\x44\x82\x3b\x07\x13\xfd\x25\xf1\x1e\x05\x0e\xc0\xdc\xa3\xd2\x83\xdc\x0c\xac\xd2\xef\x6b\x66\x70\x4d\x57\xfa\x51\x5d\xaf\xbc\x5b\x76\xf5\x31\xe5\x6f\xbb\xef\x8a\x07\xcb\xe2\xcf\x81\xbb\xc5\xd0\x9b\x55\xef\xa6\xe0\x2e\x7d\xad\x47\x8c\xca\xb4\xc8\x73\x58\x78\xf0\x3e\xbd\xd6\x61\x87\x70\x40\xd3\x5e\x45\xd5\x48\xac\x73\xe8\xd9\xbd\xea\xd9\x88\x3a\xe4\x47\x41\xd5\x37\xf4\xc6\x0c\x98\x65\x40\xbf\x51\x76\x97\x5a\xe8\x76\xf7\xf4\x7e\xe8\x9d\x7b\xfb\x1d\xae\xc7\x63\x05\xce\xd5\x49\xc9\xb4\x6e\xfe\x73\x51\xa5\xa2\xd9\x98\x5c\x51\x5e\xd7\xd6\x6b\x39\x4f\xd2\xbc\xc2\xe1\x90\x03\xc3\xd3\xce\x8e\x3d\x64\x7d\x1d\x3d\x10\x3b\x7b\xde\xb5\x35\xec\x58\x47\xaf\x79\x5d\x8f\xd0\x28\x97\x66\xce\xdc\x14\x24\xee\x96\xa6\xea\xb0\xfd\x89\x72\x1c\xb0\x6d\x4d\x77\x5d\xff\xd8\xdd\xfa\x14\x7c\x8e\xfa\xf2\x32\x9d\x23\xe9\x59\x7a\xc2\xa9\xdd\x46\xd0\x17\xb8\xa5\x0b\x8c\x26\x3b\xc6\x9c\x42\x3e\x50\x1e\x6e\x94\xc3\xec\x63\xdc\xb9\x58\x05\x13\x85\xc0\x36\xda\xda\xa6\xbd\x11\xdf\xf6\xc8\x88\xda\xba\x46\xbe\x8b\xf2\xc1\x2d\x9c\x8c\xb3\xec\xdb\x7d\x71\xb8\x7d\x10\x38\x0e\x7c\x5c\xd7\x23\xe9\xdb\xf6\x82\x89\xcd\x0c\x9b\x49\x1f\xa0\xe1\x2f\xa0\x96\x3c\x14\xdd\x9b\xd5\x75\xaf\x11\x94\xd2\x5b\xd7\xbd\x42\xb7\x84\xe1\x70\xcf\x0f\xb8\x7c\x8b\x6f\x7b\x8b\xe3\xd0\x0f\xa6\xe1\x4f\x68\x4a\x18\xde\x13\x7f\x38\x0e\x26\xc1\x91\x9b\x8b\xaf\xfd\xa1\xf9\xd9\x36\xae\xa5\x71\x42\x69\xa7\x0d\x14\x1e\xeb\x32\x81\x64\x16\x15\x55\x51\x06\xa3\xb4\xae\x47\xc6\xae\x0c\x3d\x32\x8d\x0e\xfd\x20\x15\x17\xc5\x50\x03\x21\x38\xc7\xb6\x49\x2b\x0b\xd6\x8e\xf2\x42\x02\x2b\x93\x4d\x3d\x89\xb7\xce\xa5\xfd\xaf\xd4\x2f\xf1\x8d\x97\xaa\xfe\x4b\x27\x49\x94\xc7\x94\xd2\x2a\xca\xe3\x13\x9c\x8f\xc7\x86\x08\xc2\x05\x43\xe2\x21\x11\x8f\x70\xa0\xde\xbb\x15\x0d\xae\xf4\x6f\x3f\x98\x34\x64\x86\x83\x59\x43\x2a\xa6\x99\xdd\xf0\xa1\x13\x9c\x5d\x40\x44\xa1\x0c\x2b\xc4\xf6\x27\x86\x75\x6e\x4c\xc5\x10\x09\xea\x13\x06\xd8\xfc\xf5\x4a\x70\xdd\x25\x58\xbf\xb9\xb1\x7e\xdf\xd7\xf5\xe8\x5e\xd9\x17\xa4\xd3\x9a\x65\x0f\xe7\x18\x63\x5e\xde\xab\x73\x3d\xc3\x19\xb9\x8c\xde\xac\xeb\x01\x6e\x2a\x08\x52\xb3\x1c\x75\x3a\xd2\xde\x30\xec\xc4\xd8\x05\x2d\xe3\xe8\x47\x99\x20\xab\x69\x47\x84\x93\x99\x1c\x8e\x88\xc5\xd8\xc0\xff\xc2\xc8\x68\xf6\x33\x38\x9a\x9f\x19\x95\x2b\xe5\xa9\x5d\x31\xb0\x0e\xf4\x8a\xf8\xf4\xc7\x3b\x26\xc2\xa5\xb5\xa6\xf6\xbc\x6b\x94\xfb\xe4\x73\x39\x5a\xf6\x9b\xa4\xf7\x26\x0e\x53\x38\xb1\x1a\x2d\xf5\xee\x61\xa7\xbf\x43\x29\xc2\x22\xb0\x8d\x18\x75\x3d\x5a\x86\xbd\x2d\x31\xc7\x01\x2a\x06\x36\x95\x72\x42\x0b\x0f\xf2\x20\xcd\x53\x36\x0b\x15\xb4\x43\x00\xa6\x64\xd1\x7f\x56\x4d\x93\x15\x1b\x08\x33\xe8\xf9\xce\xc9\xf3\x09\xf9\x49\x59\x76\x28\x71\xd3\xb7\xd2\x39\xbf\xcf\x79\x72\xb7\x0b\x6f\x92\xdd\x75\x5e\xb2\x69\x71\x9d\xa7\x7f\xb2\xd9\x2e\xbb\x5b\x95\xac\xaa\xd2\x22\x0f\x76\x9d\xb1\x2a\x72\x9d\xa7\x7f\xac\xd9\x79\x51\x0e\xd9\xad\xac\xad\x13\xac\xfa\x39\x1d\x95\xde\x8c\x71\x36\xe5\x2f\xd6\xab\x2c\x9d\x26\x9c\x55\x64\x4a\x15\x03\x3d\xe7\x42\x4f\x01\xcb\xb4\x3c\xb4\x15\x0a\x8b\x78\x80\x3e\x60\x32\xd7\x41\xc9\x94\x41\xa6\xb3\x13\x0c\x12\x25\x2a\x62\x30\x56\xa9\x5d\x55\x81\xd5\xe2\x07\xc3\x39\x53\x5e\xc6\x60\x44\x24\xbe\xa1\xcf\xa9\x0c\x00\x66\x0d\x49\x69\x05\x83\xff\x81\xdd\x0d\x75\xa0\xa4\x8e\x03\x9c\xb1\xb0\x04\x73\xbb\xcb\x16\x5b\xbb\xa2\xae\x9f\xca\x3f\x3e\x5c\xca\x90\xba\x0d\xe7\x42\x08\xbd\x00\xa7\x85\xbc\x05\x5e\xb0\x6f\x42\xb3\x19\x65\x1e\x38\x28\x80\x22\x78\xc2\x4e\x98\xc2\xf0\x50\x06\x77\x5c\x8e\xc1\x2b\xd5\x1c\x01\x1e\xca\xaa\x8f\x6c\x76\x2a\x5b\x0a\x58\x8f\x8d\x71\xac\x83\x71\x93\x9b\x77\x28\xa3\x4d\x09\x57\x36\x04\xe5\xd2\x06\x29\x19\x4d\x45\x1f\xac\x53\x98\xe0\xf1\x84\x48\x7d\xfc\xe7\x8a\xad\x67\x45\x90\x31\x99\xb2\x2b\xf8\x1b\x69\x97\x47\xf0\x00\x51\x77\x33\xf1\xb7\x64\x19\xb8\x34\x04\x0f\xce\x99\x13\x6c\x9e\x6c\x4b\xbf\xf7\xd1\xa4\x21\xce\xee\xc0\xf3\x86\x38\x63\x73\xbb\x64\x37\x69\xb1\xae\x54\xf7\x3b\xdf\xfe\x7b\xdb\x4b\x4d\x43\x56\x25\x7b\x05\x76\x9f\xe0\x01\x5c\x63\x86\x6c\x53\x91\x1f\x03\x7e\x48\xcf\x06\x44\x58\x74\x18\x53\x24\xfe\xad\x6b\x16\x1d\xc1\xbf\x8f\xe3\xba\xb6\xd7\x94\x7a\x55\xec\xcd\x80\x08\x0f\x64\x12\xc6\xc3\x98\x3a\x62\x69\x44\x87\x31\x9c\x67\x91\xd6\xfd\xe0\x08\x37\xca\xeb\xe6\x93\x6d\xe9\xf0\x18\xe2\xe4\x7c\x21\x2b\xf0\x63\x53\xd2\x21\x0e\x55\xeb\xf4\x8a\x46\x2c\x9a\xc4\xa2\xe1\x47\x31\x1d\x23\xf1\x27\x14\x4d\x16\x3f\x8f\xe3\xba\xf6\x71\x70\xf0\x08\x39\xec\x86\xc9\x50\x4c\xf8\xd6\x29\x66\x33\x7d\x05\xf9\x1f\x1f\xcb\x6f\xbf\x8b\xc7\x2c\x7a\xb2\xf1\x42\x20\xfe\xb8\x6e\xbf\xc6\x46\xbb\x18\x0d\x2d\x9d\x91\xa8\xde\x75\xc5\xe8\x68\x5a\xfb\x9b\x07\x63\xa0\x4e\x34\x45\x19\xa1\x58\x89\x01\x74\x28\x14\x6f\xd2\xee\x90\x07\xa5\xeb\xfe\x4b\xbe\x5e\x42\xb0\x3c\x4d\x50\x09\xb9\x20\x55\x2a\x2b\x9d\xe8\xdd\xc1\x8e\x39\x59\xd8\xe3\x78\x4f\xff\xc6\x30\x31\x13\x51\xee\xa4\x1d\x43\x2e\x7a\x7c\x10\xeb\xe0\x32\xb8\x63\xcf\xd6\x21\xc6\x8d\x20\x68\x49\x42\x1f\x9e\xfd\x30\x10\x61\xd1\x37\x1e\x0e\x1e\x30\x29\xa3\x50\xb8\x11\x40\x31\x9a\x0c\x67\x0f\x35\x27\x04\x82\x0d\x0e\x9f\x5d\x29\x23\xa2\x74\x19\xdb\x6c\xd7\xb9\x3a\x1f\x37\x71\x1e\x90\x1e\xcc\x76\x14\x42\xbf\x19\xcf\x36\x36\x76\xa4\x77\x50\xfd\x0d\x06\xc3\xdd\x39\x62\x83\x08\x52\x72\x0e\x06\xf8\xda\xb4\xb5\x30\x59\x17\x76\xca\xb2\x5e\x58\xd9\xa0\x8d\xde\xc1\xb0\xc0\x1a\xdc\x90\xde\x82\xed\xf8\x5a\x9b\xdb\x06\xed\x50\x29\x02\x28\xb7\xc2\x85\xa4\x47\x76\x1a\x8a\x1d\x9f\x18\xac\x60\x24\xc6\x20\x1d\x0b\x66\xee\xc8\x5b\xa1\x50\x40\xcb\x40\xbf\x11\xa6\x23\xb8\xfc\x4d\x5d\x96\xae\x3b\x01\xe0\x26\x4d\x5e\x25\x0e\x9c\x47\xed\x43\xfb\xc1\xd9\x9e\x1f\x38\xdf\xd8\xcf\x24\x15\xb5\x24\x28\xab\xfa\xb7\x7a\x05\x09\x16\x91\x1a\xe2\xf9\x5e\x70\x41\xf0\x37\xc2\xfd\x42\x6b\xf9\x05\xc8\x37\x38\xa0\x4c\x0d\x81\xea\xb2\xc7\x3e\x94\x3e\x76\xf6\x1c\x20\xd9\x3e\x8b\x21\x3d\x04\x14\xe0\x28\x30\x29\x2d\xa9\x93\x84\x3a\x59\x52\x71\xfb\xfe\xde\x11\x26\x15\x75\x94\xb7\x1f\x34\x43\x8f\xae\x90\x72\xb9\x1a\x9f\x81\x34\xb9\xa3\x91\xbd\x87\xb0\x88\x5c\xb4\x64\x2d\xdb\xd1\xf1\x4d\xa6\xc5\x88\xd2\x24\x74\x2c\x31\xe7\x0c\x70\xfe\x9b\xee\x66\xe4\x9e\x56\x32\xcc\x61\x68\x85\x90\x6b\x3a\x5a\xbb\xee\xa8\x22\x57\x74\xe4\x0b\x79\x7d\x03\x62\xb9\x50\x3a\xc4\xf2\x44\xfe\x58\x50\x7e\xb2\xa0\x8b\x68\x29\x4d\xda\x55\xb8\xd8\xbe\xe4\xee\x03\xd1\xf1\x45\x5f\x0d\x1e\xf9\x3b\x2b\xba\xa4\x4e\x91\x67\x10\xc5\xc7\x5c\x77\xb4\x72\xdd\x4e\x6f\x1a\xb3\xe4\xd3\x39\x5a\xd1\x28\x09\x6f\x2c\x29\x1f\xdc\x78\x62\xf4\xe1\x77\x4c\x12\xd7\xbd\x96\x8d\xbb\xa2\x68\x46\x51\x46\xd1\x94\xa2\x39\x45\x0b\x7a\x83\xa3\xcb\xb8\xae\xd1\x22\xba\x8c\xe9\x43\x83\x71\xb4\x50\xea\xd7\xeb\x17\xe2\xfe\xdc\xbe\x96\x2f\xb0\x18\x70\x3c\x05\xff\x03\xff\x96\x2c\xf2\x63\x2c\xfe\x1c\xc4\x64\x21\xf4\xe2\x1b\xcb\x45\x2c\x9a\xc5\x27\x0b\x3a\x1e\x0b\x75\xd9\x75\xc5\xa8\xd4\x35\xba\xa2\x33\x3a\xc1\x75\xbd\x92\xd0\x2f\x30\x4e\xdd\x81\x70\xdd\xf1\xf8\xca\x75\x17\x12\xf0\x6d\x1a\xb1\x98\x46\x2f\xc9\x8c\x5c\xc5\x1a\x35\xc1\xf6\x57\x12\xe5\xd9\x9d\xe2\xff\xa1\x4e\x11\x38\x60\xbf\x92\xe6\x07\xf4\xb9\x6e\x08\xa9\xf0\x89\xe9\x1e\xc1\x74\x8f\x3a\xd3\x5d\xd7\xa3\xf1\xf8\xaa\xae\xa1\x17\xb2\xf9\x8b\xff\x46\xd3\xc5\xd8\x5c\xc5\x98\x2c\x46\x62\xb8\xf0\x09\x3e\x51\x4a\xfb\xd5\x1e\x4d\xb1\x34\xe2\x5c\xfd\x8f\x9c\xd2\x89\xeb\x5e\xed\xe7\x67\x74\xd2\x34\x03\x52\xb6\x3d\x9e\x00\xd5\x17\x34\xb3\x0a\x46\x06\x40\x78\xa5\xf2\x53\x45\xbd\x7e\xd9\x3a\x83\xb3\xce\xd5\x01\x38\x9b\xed\xca\x02\xa4\x5a\xaf\xd7\x79\x1a\x5d\xc6\xa1\x50\x14\x83\xb4\x05\x97\x47\x25\x8d\x18\x61\xc4\x71\x08\x8f\x89\x5d\x57\xcf\xcd\x1f\xf5\xdd\xad\x42\xdb\x33\x80\x75\x22\x55\xc4\xa6\x0b\xba\xb4\xe1\x0f\xc0\xa2\x9c\xfe\x84\x18\x29\xa2\x24\xc6\x31\x1d\xa1\x52\xec\xcf\xe1\xaa\xc1\x5b\x92\x48\x90\x09\x29\xc5\xd3\x54\xe8\x81\x72\x60\x82\x87\xbc\xe0\x41\xd6\x35\x27\x6a\x90\x24\xa2\xa2\xd1\xab\x4d\xcf\xa6\x56\xa2\x88\xb1\xe8\x76\x40\xb0\xb3\xb4\xed\x44\x41\x12\x9a\x6b\x3b\x40\x4a\xa2\x18\xf0\xdd\x3b\x1e\x5f\xa8\xa0\x49\x54\xc5\x52\x23\xa9\x44\x6f\xb8\xf8\x53\xe0\x6e\x5f\x08\x60\xe7\x6a\xb9\x0b\xaa\x0b\x11\xdc\x13\x4a\x2e\x48\x89\x09\xdc\x84\xcb\x51\x29\xe9\xb9\x69\x30\x59\x24\x55\xbf\x8b\x5b\xdd\x54\x94\xbf\xa5\xb5\x31\x6f\x30\xd1\xfb\xf2\x2d\xa5\xb0\x0d\x8d\x87\x6c\x16\x8c\xb8\xbd\xa7\x81\x8c\xdb\xb8\x95\x6b\x4c\xc8\x35\x51\x55\x96\xe4\xd7\x5b\xaa\xf9\x41\x29\x87\xa0\x0f\x6c\xa3\x57\xf8\x1e\xa8\x95\x6c\x36\xab\x27\x0b\x36\x9c\x82\x76\x66\x05\xe0\x52\xd2\x65\xc8\x3d\x28\xa9\xef\xe4\x77\xb7\xcc\x02\xf1\x40\x34\xa0\xff\x4c\xde\x57\xdc\x1f\x95\xb4\xec\xd1\xb9\x74\xc0\x99\xc0\xa1\x9f\xe9\x37\xc8\xe7\xe6\x76\x91\x66\x0c\xa1\xae\x71\x14\xf7\x3d\xb3\x70\x6b\x1b\x6d\x30\xe1\x49\xd9\x89\xc5\x36\xc6\x62\xe6\x65\xc5\x34\x91\x96\xda\xf6\xb7\x58\x85\x8b\xce\xb9\xb3\x86\x9a\x82\x3a\xd2\x59\x43\xca\xa2\x18\x8c\xed\x66\x94\xd2\x55\x43\x20\x12\x66\xdb\xf3\x99\x97\x40\xbe\x33\x65\x90\x76\x5d\x34\x9a\x89\x2a\x5f\x41\xf8\x4c\xdd\xfe\x06\x16\x3b\x1a\x21\x0d\x17\xc3\xbc\x45\xc9\xe6\x75\xfd\x6f\xe6\xf1\xe4\x0a\x9c\xcc\x20\xb4\x18\x0e\x26\x82\x25\x43\x23\x1f\x13\x7d\x50\x01\xd7\x13\x4c\xd4\x21\xd6\xa0\xee\xfd\x49\xb7\x2e\xcb\x9b\x4c\xb4\x82\x79\x3a\xf2\xa7\x76\xe4\xa9\x93\xf5\x48\x1f\xe4\x35\x44\xff\x1a\xd6\xcb\x6d\x67\x2e\xfb\xca\x14\x00\x9d\x22\xca\x01\xbc\x2d\x95\x2d\x57\x7c\x33\x41\xf0\x67\x37\xfa\x80\x88\xaa\x49\xe2\xf4\x78\x28\x16\x54\xb6\x61\xa0\xb5\x23\x23\x11\x3c\xa8\x1d\x0e\x76\x17\x2c\x99\xb1\xc1\x6c\xd5\xff\x54\x2b\xce\x8c\x29\x6e\x08\x0c\xe0\xd0\xcb\x7f\x1f\x78\x59\xba\xcd\xfd\x6f\x4e\x93\xe5\x7c\x67\x30\x86\xda\x5b\xbc\x21\x10\xee\xb1\x19\x2f\xdb\x2f\x6a\x5b\x9d\xae\xeb\x70\x85\x20\xc3\x0c\x60\x35\x6c\x14\x10\xa7\xfd\x3d\x09\x28\xbd\x10\xfb\xab\xbf\xe9\x9b\xff\x74\xf8\xfe\x0d\xdb\xcc\xdb\x13\x4d\x62\xe0\x71\xbd\xc7\x96\x95\x33\xe2\x7b\xbe\x78\x87\xfd\xd1\x7f\xa3\xdd\xec\x44\xe5\xe9\x24\x2c\xc7\x3c\x28\xe1\xcd\x1b\x96\x6f\x96\x66\x85\xc4\x9d\x94\xa7\xfc\xa4\x1c\xd3\x03\xcc\xfa\x0e\x06\xac\xc1\xa4\x98\xcd\x3e\xf5\xb9\xff\x99\xcf\xb3\x8d\xae\x74\x63\x4d\x4d\x5b\xcf\x78\xc8\x83\xf2\x64\x6f\x4f\xa8\x2e\x27\xba\xb0\xbc\x53\xd8\xf5\x97\x16\x76\x32\x1e\xe7\xa7\x7c\xb8\x94\xa6\xc1\x86\xca\x73\xbe\xa0\x16\xcd\xff\x41\x1e\xca\x64\x96\x16\xc1\x68\x22\x79\xc8\x55\x71\x27\x7e\xcf\x53\x99\x7f\x7f\x95\x54\xd5\x6d\x51\xce\xc4\xef\x74\x99\x5c\x03\xba\x0a\x6e\xd5\x28\x1e\x53\xb0\xc0\x9a\x58\xec\x87\x6a\x7d\xb5\x4c\x21\x15\x87\x04\x26\xdc\x78\x7f\x25\xdf\xd7\xbe\x89\xd7\xac\x03\x08\x7e\xc5\xba\xf8\x4e\x13\xd2\x09\x93\x70\x9c\x13\x7e\x5a\x9e\xf0\xf1\x18\xe7\x63\xc0\x05\xe8\x82\x51\xe7\x6d\x49\x97\xac\x1b\xaf\xc3\xbd\x59\x2a\x74\x40\x0e\xcc\x43\x28\x52\x75\x9d\x93\x84\x96\xae\x6b\xdb\xd4\x28\xa5\x05\xa9\xe8\x5d\x7b\x08\xc2\x25\xfb\x09\x3b\xdb\xb3\xd4\xd8\x58\x39\x1c\x9a\x28\x5d\x9f\x5b\x47\x89\x89\xb1\x32\xaa\x2f\x5a\x69\xf5\xa9\xad\x9e\x50\x7b\x2b\x38\x36\x5a\x6f\xd6\x31\x50\x89\xeb\x32\x55\x8a\x39\x32\xec\xd8\x32\x3f\xd1\xbe\x74\x2e\xb5\x73\x2e\xb5\x73\x6e\xb4\x73\xde\xd3\xce\x79\x57\x3b\x27\xa9\xeb\xa6\x9f\x70\x40\xc6\xb2\xd6\xba\xe6\x3b\x3a\x70\x02\x65\x74\x1a\x15\x72\x47\x65\xef\x46\x28\xa5\x95\x39\xdc\x8a\x0e\x62\x2a\x36\x5c\xa2\xf3\xe2\x6d\xba\x20\x70\x6f\xb3\x83\xad\xdc\x37\xf3\x7d\xdb\x71\x72\x6d\xf5\xf0\xce\x50\xdb\x5e\xb6\xad\xce\x09\x16\x70\x40\x83\x8a\xd2\x58\xbd\x37\x20\x46\x24\xba\xb2\xa9\xf0\x25\xb3\x8d\x06\xb6\x76\x1b\xc5\xa4\xa2\x13\xb2\x6e\x29\x37\xa3\x32\x4e\x9b\x1b\xe8\x0b\x54\x50\xa6\x54\xdc\xd2\x75\x47\x25\x2a\xa0\x9c\xba\x46\x89\xb6\xcf\x93\x0c\x0e\xb0\xc5\x45\x85\x6d\x24\x09\xd3\x84\x3b\xab\x09\x96\x2a\x9c\xbb\xee\x48\xe8\xe1\x90\x68\xe0\x8e\xa1\x1c\xc3\x94\x8d\x52\x79\x2f\x15\xf7\xc4\xfb\xb8\xe3\x83\xac\xc2\xa1\x7b\xc4\x18\x93\x99\xf8\x67\x45\x13\xdd\x97\x25\x2d\xea\x7a\x3b\x4b\x9a\xc0\x1a\x33\x01\xfa\x29\x04\xe8\x4b\x25\x3a\xca\x63\x2b\x95\x5e\xd9\x20\x5e\xd7\xce\x23\x87\x54\xed\x49\x7e\x54\xc5\x41\x05\x7b\x82\x1b\x3a\x62\x75\x3d\x2a\x5c\x97\x87\xcb\xe0\x25\x43\x4b\xb2\x20\x0c\x5a\x48\xee\x69\x19\xa6\x75\x8d\x8a\x90\x05\xab\xba\xce\x01\xb4\x23\x09\x6e\xc0\xff\xde\x75\x4b\x74\x43\xee\xe5\x9b\x39\x6c\x73\x33\xfa\x92\xa1\x7b\x32\xc3\x24\x47\x19\x11\xd3\x23\x9e\x4d\xa9\xce\x02\x78\x32\x85\x5d\xc7\x9c\x66\xd1\x14\xa6\xe4\x3e\x9a\x45\xd3\x58\x6c\x3c\x6e\xd4\xaf\x39\xb6\x7c\x06\xd3\xba\x96\xf8\x61\x6a\xe2\x33\x31\x44\x53\xe3\x07\x61\x8a\xbb\x97\xc5\x65\x72\x12\x6f\xa2\xa9\x28\x67\x27\x05\x69\x2a\xfd\xc7\x32\xb2\x96\x89\x39\xb6\x7f\x8d\x32\x9a\x86\x3f\xa1\x82\xcc\x71\xb0\x10\xb7\xce\xf6\x7c\xd7\x45\x45\x94\x89\xf6\x25\xe2\xcf\x1c\x63\x65\x3b\xb8\x87\x9e\x52\x4a\x93\xf0\x5e\x1f\xe9\xac\x88\x2e\x1a\x07\xf7\x98\xa4\xa1\x6a\x40\x42\xee\xc9\x1a\x07\x3a\x16\x26\x21\xf7\x1d\xaf\xf1\x73\xd6\xcf\xa8\x98\x76\x11\x12\x72\x4f\x9f\x5f\x44\x60\x32\x16\xaa\x00\x20\x89\x8a\xad\xb5\x79\xe4\xec\x3a\x31\x59\xd3\x24\xf4\x83\x09\x99\x0e\xc7\x02\xca\x70\xf8\x86\x54\x44\x28\xb3\xf3\x2d\x2f\xfd\x04\x99\x12\xc4\xbe\x48\xbd\xb8\xa0\x76\xfa\x1a\x2b\xb1\xcb\x28\x11\xa4\x5f\xd7\xe5\x88\xd2\x4c\xac\x29\xc4\x69\x89\x5b\x2a\x9b\xaa\xd7\x83\xb9\xfa\xd1\x42\xfd\xc8\xdd\x62\xda\xc4\x27\xeb\xd3\xe2\x64\x2d\xa3\xe5\xcb\x6e\x5f\xd7\xaa\xaf\x78\x41\xa3\x4b\x86\x6e\x19\x5a\x60\x52\xe2\xb8\xe5\x76\xe2\x03\x69\x13\xb7\x5e\xd7\x31\x47\x70\xa0\x26\xee\xaa\x63\x6b\x8c\xa3\xcb\x58\x8e\x74\x4a\xc7\xe3\xf5\x49\x7a\x5a\x88\x15\x6c\x57\x99\xaa\x32\x00\x8f\x42\x19\x42\xc4\xf2\x5f\x9f\xf9\xae\x2b\x1b\x00\x3f\x85\xfc\x34\x06\xcb\xf5\x9e\x8f\x15\x12\x1c\x52\xc0\xdf\xce\xae\x3c\xa9\x58\xef\x1d\xc8\x12\x43\xe7\x91\x13\x38\x4e\x63\x81\xcd\xe8\x60\xa5\x92\xac\x4f\x53\xd7\x3d\x6f\x8b\x5c\x93\x54\xb0\x12\xd1\x3c\x71\xd7\xd8\x40\xcd\x5d\x10\xdf\xb8\x59\x68\xc5\x48\x1f\x23\x42\x0b\xf5\xc5\xb5\x8d\x85\xad\xc7\xa9\x6a\xd5\x92\x8e\xb1\x04\xcc\xf1\xd7\x8c\x24\xb4\x12\x52\xe6\x23\xcb\xd3\x3f\xfb\x21\xad\xca\xbc\x63\x03\x3a\xd0\x77\xda\xb6\x2f\x64\x89\xf1\xe7\x0c\x27\xc1\xd4\x1c\x99\x82\xd2\x52\x51\x46\xd6\xb0\x12\x45\x03\xf4\x61\xd8\x49\xa5\xec\x9e\x09\xc4\x40\xb8\xee\x08\xa5\xf4\x57\x19\xb0\x58\x61\x40\x16\x72\x5d\x54\xd1\x4a\x0f\x80\xa0\x7f\xb5\xc6\xea\xba\xc2\x64\xad\x98\x38\x8d\x62\x8c\x49\x49\x47\x3e\x41\x29\xfd\xc3\x94\x20\xd8\x3e\x4d\x75\xac\x16\x29\xe4\xeb\x6a\x92\x4a\x02\x20\x77\x50\xa8\x35\x29\xbb\xe0\x68\xd8\x56\x6a\xac\xe6\xd2\x45\x58\xb4\x1b\x8b\x76\xfe\x2d\x4a\x62\xab\xa9\x59\x94\xc4\xb2\x03\xe2\x97\x98\xab\xba\xfe\x7c\xe5\x09\x51\xd4\x19\xa4\x5b\x2a\x05\xcf\x96\x52\x42\xd6\x98\x74\x18\xa1\x0e\x9f\x0d\xaa\xb0\x3d\x02\xc3\xc1\x3b\xc4\xc8\x1a\x9b\xa1\x6f\x44\x89\xd2\x5b\x28\xcd\xb6\x4c\xa7\x98\x94\x42\xca\xd2\x67\xd6\x64\x8e\x2a\x39\x33\xf2\xb0\x06\xa2\x05\x49\xd9\x4a\x9c\x12\x98\x67\x45\xcf\x19\xe2\x51\x19\xc3\xda\x0a\x53\x2d\x45\x83\x42\xff\x3a\x41\x15\x7d\xd6\x39\xc1\xb1\x22\xc3\x8c\xb1\xc7\x02\x9b\x39\x9b\x90\x82\xf6\x85\x25\x51\xc0\xb7\x73\xb2\x22\x37\xe4\x9e\x4e\xc8\x35\x75\x26\x0e\xb9\xa2\x85\xeb\x46\x31\xb9\x14\xed\xbf\xa5\x19\xb9\x13\x42\x33\x75\xdd\xd6\x97\x1b\x09\xc9\x37\xc5\xe4\x9c\xbe\x1c\x53\xb9\xbd\xba\x0d\xfd\xa0\x03\x00\x55\xd7\x9e\x4f\xde\xd1\x3b\xd5\x04\x20\xd8\xa9\x04\xe4\x92\x0e\x4f\x49\x5d\x4f\xf1\xc9\xf5\x88\xd2\x77\xae\xab\xa0\x60\xe6\xf4\x2e\xba\x8e\xf1\xc9\xf5\x78\x2c\x65\x94\xeb\x2a\x8f\x80\x15\x9d\x90\xa4\xae\xe7\x1b\x5e\x52\xb3\xba\x46\x0b\x34\x17\xf3\x3c\x5a\xe2\x93\x1b\xca\xa2\x95\xf6\x5e\xbf\x41\x73\xf1\xd1\x8c\x54\x18\x3f\x28\xb2\x9e\x63\x65\xb0\x16\x8d\x79\x49\xcf\x71\x53\xba\x2e\x42\x73\x3a\xba\x11\x95\xb9\xee\xfd\xde\x1e\x29\x20\x3f\x9e\x7c\x1d\x37\xe9\x1c\xdd\x8f\xe9\x35\x29\x5d\x57\x34\xf7\xde\xb4\xe8\xe4\x86\x72\x55\xdb\x0d\xba\x22\x97\x62\x60\x2d\x51\x7b\x7f\x36\x91\x96\xea\x6b\x31\xb1\x57\xd1\x75\x5c\xd7\x97\xf0\x2f\x12\x7f\xe8\x7b\xe9\x80\xb2\xc6\x78\xe7\x52\xc8\xbe\x4b\xdc\x68\x81\xb6\x26\x97\x98\x4c\x5d\x57\xe8\x10\x97\x66\x16\x5d\xf7\xde\xe0\x09\x09\x8e\xd9\xf1\xcc\x40\xeb\xd6\xf3\x41\x76\x8d\x64\xf4\x16\x93\xab\xa6\x8d\x99\xc8\x18\x2a\x70\x50\x34\xa8\x10\xdc\x10\x1b\x67\x00\xca\x8c\x53\x4f\x43\xd6\xad\x9b\x00\xdd\x34\x85\x4a\x45\xd1\x20\xcf\x6c\xcb\x80\x00\x79\xf4\x5d\x37\x41\x8c\x2e\x4c\x35\x42\xf5\x00\x3d\x87\x96\x10\xc0\xed\x83\xb1\x49\x2d\x4a\x10\x3e\x6b\x3a\x13\x3a\xf6\xcc\x3a\xc6\x35\x11\xb5\x67\x07\xae\xeb\xbc\x7e\x01\x99\x12\x32\xba\x8e\x26\x31\x56\x5b\xfc\xa7\xbd\xa0\xc7\xa5\x20\x56\x23\x81\xd6\x70\xe4\x0e\x42\x4f\x06\x66\x73\x8a\x4c\x6c\x06\xca\xb4\x28\xb3\x39\x96\xb2\x7c\x72\xac\xcf\x20\xda\x74\x17\x3b\x0b\x38\x93\xee\x18\xf7\x48\x2b\x4e\xd6\x9a\x35\xc9\xcd\x9d\xee\x1c\xe8\x49\x05\xfd\x9b\x67\xc3\x5a\xe8\x90\xdf\x70\x12\xac\x0d\x98\xd2\xde\x1e\x2c\x92\x75\x54\xc4\xc4\x96\xa3\x00\x7a\x0a\x9d\x90\xbb\xa9\x39\x95\x7d\x50\x8a\x56\x4a\xe7\x9f\xec\x8a\x0e\x30\x5e\x6b\x6d\x67\x38\xd0\x58\x05\x4c\xaf\xb5\xfe\x55\x10\x1f\x93\x11\x62\x34\x35\x7e\xb2\x57\x4c\x50\x6c\x3f\xb6\x5b\xd0\x06\x29\xf5\x59\x90\xb2\x9b\x2e\xea\xba\x42\x8c\xcc\x30\x46\x29\x78\x51\x91\x92\x8c\x78\x5d\x7f\x26\xda\x19\xf0\xb8\x6c\x67\x21\x7a\xa9\x03\x67\x1d\xac\x5d\x85\x94\x8b\x2e\x84\x1a\x5d\x92\x4d\x87\x23\x3a\x1a\xcd\xc9\x02\x61\xd2\x75\xdb\xdc\x12\x64\xe5\x7f\xc2\x09\xf6\x13\xa1\xc4\x03\xde\xf3\x66\x17\x37\xe4\x44\xff\x17\xe9\x31\xef\x10\xe7\x2f\xd2\x44\xd5\x5a\x07\x7b\xb6\x29\xf1\xbe\x90\x99\x75\x3d\x57\x96\xaa\x1a\x6c\xab\x0b\x96\x5e\x2f\x78\x7d\x9b\xce\xf8\xc2\x21\xfd\xad\x8c\x14\x6b\xc3\x71\x59\x9c\x38\xe6\x94\xb7\xbb\xe7\x0d\xfd\xe0\x40\x46\xce\xb5\x6e\x6c\x9b\x7e\xd9\x43\xfd\x02\x7b\xdc\x3e\x84\x64\x58\x3d\xe9\x3a\xe4\xc3\x3a\x70\x00\x00\xd0\xf9\x4c\xa7\xe5\xab\xa6\xd7\xea\xcb\xc1\x4e\xba\xee\xe7\x8d\x81\xed\x40\xe8\x10\x47\xf0\x96\xda\x36\x65\x0a\x98\xae\xd7\xa6\xd6\xaf\x5e\x35\xeb\xf5\x46\x83\x60\xf3\xb8\x63\x8f\xbd\xb4\x0f\x47\x3c\x0e\x7b\x43\x1d\x00\x70\xda\xb0\x1f\x60\x6e\xf9\x01\xe6\xb6\x1f\x20\x26\x15\x6b\x10\xc3\x3b\x97\xb0\xe2\xe9\x1d\xc0\x31\xae\x4a\x7a\xd7\x7a\x73\xa9\x5b\x91\x13\x38\x12\xde\x71\x55\x1a\x9d\xf4\xd2\xf6\xdf\xd3\x17\xf4\xce\xba\x4b\x2e\x25\x68\xf0\x9d\xf6\x92\x23\x97\x32\x50\xf6\x45\x31\xa5\x77\xf2\x27\xb9\x6c\x7d\x3a\xef\xcc\x4f\x51\x2f\xb8\x28\x1a\x17\xd8\x3b\x75\x03\x1c\x31\xcf\x37\x10\x68\x7a\xc8\x75\xc6\x81\xa4\x3c\x11\x4a\x79\xc4\x05\x37\x7b\x3a\xb2\x5d\xe4\x8d\x05\xa8\xbd\xa5\x95\x83\x4b\x88\x3e\xaa\x50\xa9\xe1\x07\x35\xbc\x9d\x11\x85\x79\x43\xde\x6d\x45\x18\x8b\xe2\x01\x9b\x7c\x3f\xa2\x9e\x49\xc8\xce\x52\x97\x6c\x79\xd4\x3d\xd3\x23\x0d\x7c\xb7\xc3\xdb\x5b\x2b\xe1\xc7\x2e\x78\xda\x17\xba\xfe\xf4\xa0\x63\x44\x7b\x3f\xd0\xfd\xdf\x4e\x51\x94\xec\xfd\x19\x47\xbf\x5d\xec\x5f\x4c\xce\x02\x80\x1a\xe3\x17\xe5\x45\x7e\x31\x8f\x1f\xe1\xa8\x7b\x7d\xb1\x1f\x9e\xa1\x30\x38\xbd\xd8\xbf\xf0\xcf\x6a\xfc\xcd\x7e\xda\xb6\xea\x79\xcf\xe7\x66\x89\x38\x0e\x2f\xbd\xeb\x92\xad\xba\x9a\x65\xde\xba\x7c\x68\xd4\x47\x92\x13\xf0\xb8\x2d\x1b\x1c\xb4\x62\x77\xe8\xeb\xee\x26\x59\x7d\xb2\x01\xdb\xc2\x3f\xf9\x69\x0b\xb7\x28\xf6\xcf\xaa\x8c\x4b\xb5\x69\xd0\x28\x8c\xfa\x7a\x0b\xe0\x11\x8f\x26\xb1\x75\x5e\x86\x18\x75\x82\xbc\xe0\x08\x5c\xa3\xb0\x83\x89\x34\x30\x6a\x11\x07\xce\x2f\x76\xc7\x40\x59\xe8\x79\x6a\x83\x33\x52\x18\xe5\x71\x10\xc5\x41\xf7\x15\xc4\x88\xea\x11\x1f\xea\x51\x97\xc2\x00\x66\xd8\x82\xc5\x45\x0f\xe0\x62\x39\xe0\x6b\x47\xf2\x0e\xe0\xaf\x4c\x89\xb1\x63\x39\xa2\xb6\x40\x38\x9d\x7c\x05\x16\xfe\xb1\x58\x2f\x6a\xe4\xac\x03\x0d\xd8\x93\xd0\xc9\x09\x3f\xcd\xc1\x3e\x9d\xce\x51\xbb\xd8\x51\x1a\xf1\x58\x26\x2b\x6b\x8d\x98\xd8\xb8\xe8\x77\x2b\x88\x62\x4c\xec\x92\xe4\xb8\x20\x46\xa0\x10\x2b\x1a\xf2\xcc\x0f\x6d\xb6\x84\x4a\x1c\x94\xc6\x17\x6f\xc8\x35\xad\x5b\xcf\x73\x85\xfc\x0c\x6a\xe4\xc8\xc7\x00\x16\x3b\x78\x94\xf5\xc9\x0f\x27\x18\xb0\x5a\x87\x4e\xd7\x46\xea\xcd\x4d\x67\x38\xd7\x7d\x66\x34\x37\x31\xa0\x81\x69\x85\x8e\xb3\x56\xf0\x8d\x6f\xc9\x7b\x09\xf5\x75\x51\x3d\x42\xa7\xd1\xc5\xed\xc5\xaf\xf1\xf8\x0c\x47\xbf\x9d\xc5\x8f\xea\xbf\x58\x68\x5f\x27\xc8\x60\x94\x0f\x12\x70\x4a\x0a\x10\x2f\x9d\x69\x35\x8a\xf4\xdb\x81\x36\x2a\x4d\x37\xa5\xce\xa9\x34\x9a\x4c\x62\xd7\x75\xce\xe4\xef\x16\x0e\x2b\x6e\xf1\xcb\xcf\xe8\x61\x18\x49\xfb\x0e\x38\x21\xc4\xc1\x7b\x03\x72\x54\xd7\xa3\x34\x12\x2f\x6b\xa7\x66\xa1\xc4\x71\x4f\x82\x91\x87\x00\x7b\x80\xd5\x44\x9b\xa4\x24\x2d\x44\x34\x37\xcf\x20\x26\x44\x43\x25\x71\xca\xed\xb4\xc5\x97\xa1\x58\xa4\x81\x90\x3c\x2d\x56\x38\xb9\x14\xaa\x61\xc5\x84\xba\x01\x5f\x12\xae\xfd\xc1\x60\x65\x0e\x00\x38\xe5\x30\xab\xe4\x83\x9c\xa2\x54\xba\x42\xf5\x11\x91\x39\x6e\xb1\xf1\x39\x5e\xca\xec\x4c\x69\x8c\x43\xf5\x03\x71\x71\x25\xbb\x02\x8e\x87\x29\xe1\x36\x62\x2a\x64\xf1\x52\x4a\x6e\x41\xf3\x7e\x8c\x76\x1a\x1d\xc4\x6d\xd6\xa7\x49\x4c\x0b\x62\x2d\x5c\xea\xcb\xac\x7f\x4d\x47\x24\x7c\x30\x99\x53\xa4\x33\x48\xe7\x03\xb9\xfc\x82\xa5\x20\xb9\x56\x62\x7a\x90\x51\x39\x54\x7f\x81\x12\xd1\xa5\xe0\x8d\x06\x41\x17\xc9\x72\x70\x83\x2d\xb3\x95\xa0\x35\xf2\x96\x5e\xa2\x5c\x92\xe9\xcf\x92\x48\xa5\x0e\x5e\xd5\xab\x92\xdd\xa0\x30\xf8\x47\xce\xd3\xac\x86\x08\xe0\x7d\xf2\x3b\x7d\x00\x0f\xb2\x92\xe5\x70\xdc\x26\x1d\x3f\x2a\xc8\x5d\xc0\xee\xe0\xc8\x4c\x7c\xd6\xcd\x5f\xf0\xa2\x15\xb7\x96\x6c\xf7\x7b\xb2\xfd\xc4\x1c\xf6\x75\x78\xe0\x22\xa9\x86\x70\xe4\x75\x87\x2c\xb3\x49\x07\xe9\x7c\x98\xb7\x49\x94\xa2\xc9\x09\x3b\x2d\x4f\xd8\x06\x7f\x93\x50\xf3\x11\x8b\x6d\xfe\xd6\x90\x69\x56\x54\xac\xea\x27\x2e\xb2\xc3\xa8\x6c\x66\x0c\xd6\x9e\x84\x6e\x72\x62\xa9\xa4\xc0\xf2\x35\x6c\x43\x5a\x05\xf4\x01\x43\xcb\x48\xa3\x3c\x3e\x29\x5d\xb7\x14\x1a\x47\x2f\xf4\x09\x4c\xb9\xad\xab\x80\xef\xbb\x2e\x4a\xc2\x44\x3a\x9f\x28\x57\xd2\x7e\x0c\xfa\x16\xb9\x05\x90\xc7\xf8\xa1\x30\x27\xc0\x5d\x33\x58\x1f\xd8\xde\x9c\x46\x75\xf8\x75\x81\x83\x02\x3c\x08\x66\xec\x6e\xd0\x95\x22\x1c\x80\x5e\x56\xa2\x5c\x0c\x08\x51\x94\x8e\x0d\x9c\x32\xb0\x65\xcd\x53\x04\xc3\x0a\x14\x33\x01\xde\xa5\x7e\x74\x90\x73\xe4\x84\x97\x95\xd8\x6d\x0b\xf2\x7b\x96\x65\x48\xf3\xe0\x60\xcf\x6f\x48\x32\x9b\x05\x83\xc1\x5c\x1b\x69\x01\xac\x9e\x75\x72\x15\x5c\x33\x8e\x30\x01\xb2\xc3\x58\x08\x8b\x64\x36\xfb\xbe\x9f\xe3\xc0\x2e\x34\x99\xcd\x90\x46\xb8\xee\xa1\xe7\x07\xbd\x6b\x4d\xac\x0c\x83\x67\x97\x42\x1f\x7e\x18\x70\xf8\xd0\x7e\x16\x9b\x01\xa1\x3a\x82\xcb\xe6\x89\x2a\x78\x48\xad\xe7\xa1\x96\x9e\x23\x46\xec\x83\x63\x6c\xde\x86\x55\xbf\xcd\x2f\xbb\xff\x19\xc0\x5f\xe7\x7d\x87\x0d\xf5\xb2\x58\xfd\x1d\xff\x58\xdc\x48\x1e\xb1\xed\xdd\xbe\x2f\xb0\x2a\xfb\x59\x96\x6d\xed\xc2\x40\xf1\x9f\x7a\x7d\x4b\x0d\x9f\xef\xb3\x5d\x0f\x74\x5a\x94\xf4\x05\x43\xd5\xf7\x6e\x16\x9f\x56\xf2\x62\x70\x5e\xde\x21\x64\x4f\x72\x5d\x3f\x34\xd8\xda\x2d\x43\xa2\x0b\xc3\x87\x07\xbf\xb7\x37\xd7\x90\x0e\x4c\x31\xea\x81\x97\x2d\xd7\x7d\xf5\x9a\x16\xa3\xe1\xc6\x9d\x00\x89\x5d\x8c\xc3\xd9\x72\x95\x25\x9c\x39\xe0\xdd\xd8\x7e\x58\xd7\x0c\x1b\xb9\x1d\xc5\x84\xd9\x10\x95\x10\x63\xd1\x59\x84\x80\xc8\xcd\x62\x3b\x27\xb8\x39\xfe\xb2\x32\x74\xf0\x56\x5f\x74\x60\xb0\x3b\xae\xeb\x8f\x31\x1c\x11\x97\x98\xe4\xae\xbb\xc1\x6b\x72\x30\x89\x99\x5d\x02\xa4\x01\xb5\x45\xea\x99\xe0\x9f\xbf\x83\x2b\x6d\x67\xf1\xa7\x98\xfc\xdc\xda\xa6\xd2\x36\x71\xa6\xfa\xba\xe5\x19\x29\xd6\x6a\xde\x4f\x74\x3f\xfa\xad\xb3\xf3\x1a\xdb\xe9\x63\x5e\xdb\x5c\xb1\x3d\xa2\x7c\xd3\x06\xe6\x59\x77\x5f\xe9\x43\x71\x35\x1e\x80\x55\xc7\x5c\x77\x89\x20\x6a\x57\x26\x0a\xc7\x61\xaa\x93\x18\x40\xca\x46\xd0\xb0\x92\x34\x13\x4a\xb4\x79\x97\x2f\x58\xde\xbe\x08\x83\x19\x70\x65\xac\x93\x53\x4f\x22\xa6\x8d\xac\x39\xd6\x20\x78\x10\x81\xdf\x7f\x0b\x37\xcd\xa5\xf7\x3c\xc9\xb2\xab\x64\xfa\xb1\x9b\x84\x94\xd1\x01\x3e\xbf\xc9\xbb\xda\xa4\x77\x8a\xcd\xa9\xd0\x59\xf4\x13\x98\x58\x49\xd7\x67\x98\x47\x65\x4c\x85\x14\x26\xbc\x11\x6a\x4d\x9b\x7d\xa2\x21\x2a\xc2\xd3\x78\x0e\x48\xb9\x0b\x47\x2d\x7b\x3e\x59\xd3\x9e\xe8\x4f\x69\x0a\x11\xd8\xf9\x14\xc2\xea\xe9\x68\x72\x92\x18\x7f\x5d\xba\xe7\x2b\xe9\x9b\x68\xb3\xed\xc9\x78\x5c\x9d\x1a\xf7\x64\x0c\xfe\xe6\x45\x54\xe9\x03\xd0\x32\x9a\xc4\xa4\x94\x4a\x25\xf3\x2a\x5e\xac\xde\xe5\xaf\x92\xac\x62\x70\xa4\x56\xb4\xb9\x58\x46\x3e\xde\x61\xde\x92\x2d\x8b\xf2\x1e\xce\xac\x46\x42\xeb\xa3\x23\x1f\xb2\x62\x16\xb4\x0c\xa3\x38\x80\x74\x07\x19\x7d\xe8\xc8\xa9\x36\x57\x8f\xf2\xaf\xe0\x9d\xb2\xf7\x7c\x92\x68\xc9\x6d\xa5\x73\x15\x3b\xa8\x07\x35\xb6\x25\xe9\xae\xac\x25\xca\x71\xa8\x8f\x0a\x5c\x17\xf2\x65\x41\x8e\x91\x42\x7b\x5c\x05\xb9\xeb\xe6\x66\xfb\xdb\x2a\x31\xf4\x0a\xe5\xd8\x75\x39\xca\x71\x83\x1b\xd4\x26\xb6\x21\xaa\x61\x6b\xbd\x32\x1a\x22\xe1\x10\x07\xfa\xa1\x5a\x65\x3e\x26\x5b\xcc\x31\x27\xa8\xa4\x97\x9e\xca\xc3\x80\xb8\x4c\x07\x70\xb6\xe7\x9f\xe0\x42\x9b\xa3\x4b\xe2\x63\x52\x9e\xd2\xca\x75\xab\xbd\xbd\x46\x57\xdd\x57\x16\x8d\x0e\xd2\x16\xc7\x48\x01\x3a\x52\x61\x45\x29\xf7\x9c\x36\x3b\x03\x0f\xa7\x9f\xaa\x78\x65\x02\x1c\x78\x33\xa5\x89\x3c\xea\x83\x10\xd2\xce\xdb\x03\x33\x3a\x2a\x1a\x92\x15\xb6\xf2\xd0\x2f\xa8\xac\x6b\x5e\xd7\x48\x96\xa7\xab\x17\x9f\x0c\x16\x37\x4a\xc1\x3f\x91\xfd\x9a\xf2\x4e\xf2\x8f\x56\x0c\xa5\x40\x7a\x11\x23\xfa\xc8\x45\x1d\x63\x86\xda\x63\x18\x07\x65\xdc\xd2\x13\xe1\x75\x6d\xcd\xa8\x28\x7b\xa0\xad\x99\xa7\x2b\xed\xa7\x3b\xb2\xbe\x1b\x6c\x6f\xde\x18\x36\x90\xd9\x39\x65\x5e\xb0\x39\x2b\x3b\xdf\x98\xf3\xcc\x28\x72\xf2\x82\xa7\xf3\x7b\x47\xc8\xd3\xe2\xba\x64\x55\xe5\x10\x8b\x1b\x21\x47\x2e\x32\x07\x6f\xb9\x7b\x10\x93\xc8\x29\x59\x55\x64\x37\xcc\x21\x8e\x60\x98\xbd\x02\x04\x73\xd8\x1d\x2e\xa5\xfb\x68\x42\x74\x41\x33\x47\x96\x0a\xf8\xb3\xc4\x11\xdc\xf7\xbf\x5b\xa8\x4f\x54\x39\xa2\xd0\x98\xe4\xd4\x59\xb1\x7c\x06\xfa\x42\x4a\x1f\x20\x2f\xeb\xc0\x24\xe4\x0d\x49\xb2\xdb\xe4\xbe\x1a\x4c\xf2\x05\x52\xa1\x9d\x17\x29\x1d\x36\xe6\x69\x33\x39\xa5\x26\x1b\x99\x06\x5b\x5a\x03\x84\xba\x93\xae\x3a\x6d\x90\xfb\x29\x53\x5e\xcb\xda\xf5\x44\x76\x80\x23\xb7\x70\x25\x29\xef\x97\x88\x45\x79\x74\x14\x03\x43\x95\xbf\x76\x8a\x28\x8f\xfc\x38\x46\x1b\x35\xa6\x80\x26\x38\x94\x68\x6b\x07\xe4\x9e\x25\x21\xcd\x4f\xd8\x1b\x48\xba\x41\x42\x4b\x16\xb4\xa4\xc5\xa6\xa7\x66\x53\x0d\x90\xb8\x86\x1c\x81\x01\x8f\xf2\x68\x12\x8f\x1d\x41\xe4\x4e\x2c\x2b\x4b\x21\x73\x4c\x5b\x65\x83\x1b\x4c\x64\x92\x69\xb9\xbd\x96\xb5\x35\x44\x8c\x9d\xed\x25\x69\x05\xe6\x4d\x5a\xb5\x20\x69\xd3\x96\xf7\x03\x38\xe4\xdb\x95\x4c\x3a\x65\xa5\xbc\x22\xd9\x66\xca\xac\x6c\x47\x1e\x69\x9e\x16\x58\xe1\x4d\xd0\x5c\x0d\x51\x45\xd6\x10\xa8\x50\xb6\x8d\xb3\x12\x45\x8a\xbd\x82\x42\x03\xf8\xb0\x90\x2e\xfa\xbb\x15\xcb\xe6\x7b\x30\x26\x6b\x38\xd1\xc5\x3b\x19\x24\xd7\xf9\xd2\x4c\x7d\x20\x14\x45\xf7\xc9\x12\x65\x38\x4c\xc3\x4c\xab\x1f\x09\x2a\x48\x49\x5e\x93\x14\xab\x9f\x6f\x84\x46\x16\xa0\x62\x3c\x26\x9f\x7e\xc9\xdc\x2d\xd5\xe4\x89\x39\xc1\xe2\xdb\x7c\x44\xe9\x6b\x90\x8d\x4a\x53\x59\x53\xa1\xab\x10\x94\xd6\x75\xa9\xa7\x16\xde\x96\x43\xd1\x34\x64\x4a\xd3\x30\xeb\xa4\xde\x2e\xef\x1f\x32\x64\x29\x3f\x2d\x0d\x7b\x4c\xe7\xca\xfe\xb1\x28\x3e\x8a\xdd\xf4\xf0\x13\xc4\xc8\xd4\xab\x84\x4e\xf8\xa1\x4c\xa6\x62\x67\x3b\xf6\xcf\xa8\x90\x21\xa2\x81\x6f\x06\x1a\x58\x2a\x3a\x03\x16\xaa\x9a\xb6\xc3\xc3\x29\xc2\x01\xb2\x6a\xb9\x66\x1c\x54\x4d\x59\x3d\xb2\x2b\xa1\x5b\x5e\x43\x32\xbe\x99\xf1\x0f\xe9\x92\x15\x6b\x8e\xa6\xa2\xec\x4f\x2c\x4f\xb1\xe6\xa3\x49\x1c\x1d\xc6\xb0\x73\x4d\xd0\x84\x30\xb2\x44\x29\x0e\xd3\xe0\x35\x61\x9d\x21\x07\xbd\xa7\xff\x26\xc7\x21\x0f\x5e\xc3\xc3\x83\x8d\x87\x39\x0e\xf3\xe0\x0d\xc6\xdd\xf5\xa1\x7e\x6e\xcb\x0d\x35\xa2\x42\x6e\x2b\xd1\xc0\x48\x2a\x63\xbc\x8a\x4d\x15\xb2\x1c\x70\x80\x49\x28\x8f\x0e\x84\x2e\xc8\xa3\xc7\xf1\x4e\x1a\x71\xc1\x48\x68\x22\x5a\x45\x2a\xd7\x85\x1f\x36\x5f\xc9\xa9\xd0\x5c\xa2\xc3\x3d\x16\x47\x07\xb1\x06\xe4\xd2\x77\x0e\xed\x3b\x13\x78\x43\x08\x63\xa2\x87\x4c\x5c\x60\x22\x0b\xe5\xe2\x86\x90\x7c\x98\x14\x11\x8f\x26\xf1\x50\xf6\x7f\xf9\xa4\xc3\x57\x84\x7e\xa9\x6c\x7a\xc1\xb0\x38\xed\x7e\x44\x13\x23\x7e\x1b\x4c\x52\x33\xb0\x05\x96\xb6\x51\x58\x4b\x05\x29\x30\x29\x1a\x72\xbb\x60\x43\x11\x1b\x1b\x49\xf4\x4a\xca\x49\x4e\x75\x1a\x39\x92\x52\x95\xfa\xd1\x6a\x4b\x62\xd1\x1c\xc2\xa4\x1a\xca\x7c\xda\x32\x78\xfc\x00\x3b\x3c\xc9\x38\xc5\xaf\x7e\x95\x67\x7e\xb8\x51\x47\x50\x92\xbd\x3d\x5e\xd7\x89\xbd\x78\x61\xef\xd6\x34\x90\x7b\xfc\x94\x8a\x6d\x9b\xd8\x23\x25\x92\x83\xc3\xc9\x9f\x7e\x9b\x24\x6a\x5d\x91\x11\xc7\xc4\x48\x51\x00\xcb\x05\x31\x8a\x70\x5d\x2f\x51\x1a\x95\xb1\xeb\x8a\x7f\xe5\x1e\xc9\x1c\x13\x27\x52\xea\x29\x68\x11\x70\xc6\x7a\x05\x6f\x13\x51\x8d\x29\xdd\x4a\x4b\xd5\x12\xb5\xda\x0a\xfe\x49\xff\x6f\xde\xfe\xbe\xbb\x6d\x1b\x5b\x1b\x87\xff\xf7\xa7\xb0\x78\x67\x78\x80\x08\x96\xe5\x74\xce\x59\xe7\xd0\x41\xf5\xa4\x69\xd2\x76\xa6\x6d\xda\x38\x9d\xb6\xc3\x70\xbc\x68\x09\xb2\x39\xa1\x48\x15\x84\xfc\x32\xa6\xbe\xfb\xb3\xb0\x37\x00\x02\x24\x95\x66\x7a\xee\xfb\xd7\xb5\x1a\x8b\x20\x88\xf7\x97\x8d\x8d\xbd\xaf\xeb\xf4\x1f\xe4\xd5\x6d\x5e\xb6\xdf\x54\x4a\xc8\x2a\x2f\xdb\xb7\x79\x75\x2d\xda\xb7\xba\xe5\x44\xb5\x14\x2d\x42\xaf\xb4\x60\xc7\xfe\xd3\xdb\x6f\x28\xac\xc1\x4f\x4e\x8f\x0e\x2d\x2f\xdc\x37\x02\xa7\x8f\x70\xe6\x6e\x6a\x04\x50\x31\x3f\x67\x77\xb9\xac\x80\x23\xfb\x5f\x06\x15\x08\xb0\x8c\x69\x3f\x8a\xa5\x05\x76\x39\x1d\xbb\x9c\x92\xe3\x68\xaa\x66\x1b\xd1\x34\xf9\xb5\x60\x0a\x97\x1a\xd0\x57\x5c\xa2\x76\xf9\x95\x8d\xc9\xfd\xad\x3d\x58\x6b\xfc\x65\x15\xb6\x19\xb5\xa7\x7b\x68\x96\xaf\x83\xb1\xd3\xed\x81\x5f\xe8\x19\x68\x70\xd4\x7b\x98\xc2\x5f\xbe\xf9\xce\xb8\x17\x7e\x5b\xe7\x2b\xb1\x8a\xd8\x17\x7a\x69\x1b\x8d\x8b\x70\xc2\x5f\x50\x5b\x56\x82\xcc\xa9\xf8\x30\x36\x4e\xbf\xc6\x9e\x16\x14\x39\xf2\x83\xe5\xb0\x5f\x5f\x22\xa8\x3b\x67\x74\x12\xab\xa3\x32\x3c\x63\x10\xfd\xe7\xbc\x50\x89\xf9\x1d\x4c\x38\x82\xa6\x00\x8b\x93\x13\x93\x30\xc4\xbc\x9c\x99\x04\x68\xdb\x12\xf7\xc0\x27\x73\x36\x01\x8d\x4c\x1c\x07\xf1\x3f\x9f\xb7\xed\xd7\xbd\x49\x91\x5e\x66\x56\x6f\x08\xf1\xa0\x4a\x1c\x6b\xc6\x22\x4b\x51\x8e\xd4\xdf\x10\xe1\x42\x4f\x81\xb6\x85\xd6\x32\xa7\x3b\xff\x0d\x58\xed\xf6\xa0\xe8\x66\xab\xfa\x62\x29\xeb\xb2\x5c\x04\x1d\x6d\x72\x04\xe0\xdd\x21\x1a\xf4\x81\x9e\x1b\x46\xb4\xdd\x86\x53\xe7\xa7\xbe\xad\x99\xa1\x39\xb3\xc2\xd0\x88\x4f\x02\xe7\x12\x6e\x3f\x9d\x74\xc2\xaf\xf4\x7a\x00\xa6\xb1\xc7\x85\x3e\x54\x4d\xe6\x4c\xd2\x9f\x20\xc1\x86\xc9\xb4\xc9\xd8\x64\x0e\x89\x1e\x59\x6f\xf5\x80\xf8\x12\x3e\xd8\x20\xfd\x66\x0e\xec\x66\x25\xa8\xd9\x49\x77\xf3\x6d\x71\xfe\x69\x42\x4a\xae\xd8\xf0\xbe\xce\x1d\x92\x3a\x55\xb7\x04\xa0\x45\x73\xe7\xe4\xbc\x28\x14\xf8\x07\x33\xc9\xf2\x45\x95\x54\x96\x50\xb1\xc9\x58\xc3\xec\x2b\xcf\x73\xa2\x58\x88\xa4\x5c\xd8\x72\xd0\x64\xb7\x40\x68\x15\x26\x69\x52\xef\xd9\xcf\xfc\xf4\x1f\x27\x9b\xe6\xe4\x94\xfd\xc6\x4f\x4f\xd0\x48\x80\xfa\x5a\xa8\xbf\x85\xfa\xef\x99\xaa\x7f\xda\x6e\x9d\x79\x81\x8b\xf6\x6b\x60\xea\x63\x6d\xc8\x7e\x66\xd1\xa6\x39\xf1\x90\x71\x7e\x63\x7f\x43\x9b\x84\xaf\xc6\xa6\x57\x78\xbf\x8d\xc8\x49\xfe\xf3\x64\xea\xdd\x7e\x77\x45\xfc\x2b\x2c\x1c\x45\x33\x33\x14\xa3\x68\x5c\xa1\x7f\x4d\xff\x3a\xdb\x15\xab\xe9\x74\x0f\x7f\xf9\x19\xfb\xab\xcf\x89\x0c\x30\x46\x63\xfa\xf2\xd4\x4f\xad\x87\x94\xf2\xb8\x67\x5f\x21\x37\xb3\x8f\xc5\x18\x7e\xc1\x55\x62\x34\xf5\xc8\x86\xde\x79\xbd\x33\x3f\x1e\x33\xd6\xc7\x8a\x2d\xeb\x6a\x5d\x5c\xef\x24\x68\x0b\xe0\x96\x9c\x32\xb5\x67\x8d\x50\x87\xc8\x15\xf1\x0e\x09\x6a\x60\x01\x86\xfb\xea\x34\x45\x8b\xf4\x57\xa2\x68\xc6\xe5\x51\xc8\xc7\x89\x6f\x2a\x1a\xb2\x47\x16\x7d\x5e\xe7\x01\xae\x32\x00\x94\x04\x19\x27\xbd\x9a\xeb\xb3\x58\x10\x80\x25\xd8\xb3\x7c\xb9\x14\x4d\x73\x48\xeb\xdd\x25\xdf\xb6\x6a\x44\x2b\xab\x2c\x7e\xbf\x3e\x95\x2c\xdc\x05\x8b\x2e\x61\x82\xf7\x2d\x0d\x3e\x32\x49\x59\x77\xcf\xb9\x90\x89\xa2\x43\x05\x53\x70\x1f\xd7\xef\xec\x60\x6a\xf7\xc0\x93\xe9\xa3\xe4\x44\xf5\xe8\x75\xb5\x20\x0b\xba\xe7\x5f\x75\x59\xb8\xae\x2f\x2d\xaa\xe3\x6a\x91\xaa\x2c\x51\x81\xb6\x92\xfa\x36\xcd\x28\x28\x18\x0e\x93\x2a\x55\xa9\xcc\xb2\x3d\xf1\x5b\x42\xaf\xef\x1e\x1b\x2c\xa9\xe8\xef\x0c\x3b\x23\x0d\x9a\x34\x7b\x6f\xf5\x31\xe6\x26\x6f\xbe\xcc\x55\xfe\xe9\x63\xbe\xab\x7b\x1c\x4f\xfa\xe5\x51\x5a\xbc\xd2\x9f\x3f\x01\x87\x85\xbf\xb2\x1f\xcd\xdf\x5f\x8c\xf5\xc2\x23\x9a\x2e\x3c\x7d\xbf\x6f\xdf\xa7\xf6\x77\x46\x9f\x9c\xb2\xbf\xf3\xd3\xf4\xc5\xc9\xdf\x33\x7f\xa5\xf9\xcb\xc0\x2c\xae\xeb\xf3\x3e\x5f\x09\xb0\x28\xf3\x68\x95\xab\xfc\x44\x0b\x20\x76\x7d\xf9\x3b\x8b\x4e\x9e\xc4\x51\xdf\xc9\xbf\x3f\xa0\x80\xcd\x36\x30\xd7\xd3\xe2\x1c\x1c\xea\xe4\x18\xc1\xbf\x92\x3b\xd8\x11\xe1\xf8\x9a\x97\x8d\x88\x70\xb3\x25\x91\x5e\xd2\x11\xc3\x09\x90\xaa\x04\xe7\x7c\x2a\xa6\x51\xb4\x98\x8a\xe4\x17\x67\xed\xf1\x97\x8b\x37\xdf\xa3\x41\x02\xcc\x19\xba\x27\xd2\x1e\x1d\x0b\xfa\xb8\xff\xd1\x1b\xbe\xe8\xd2\x64\x21\xe5\x3b\x9b\xb1\x4b\xff\x86\x7b\xd0\x89\xce\xfd\xda\xbc\x24\x82\xb6\xed\x13\xef\x69\xcf\x56\xe1\x37\xc1\xfc\xfb\x71\x86\xf3\xd3\x96\xc1\x4c\x99\x2f\xfb\x9f\xd0\xc7\x1f\x8d\x24\x65\x80\x16\x2f\x3f\x96\xea\x93\x7e\xaa\x97\x07\x93\x7d\x12\x24\x0b\xc2\x89\x77\xa7\x3f\xc8\xa4\x07\x75\x8f\x57\xbc\x2c\xd7\x87\xe7\xda\xb3\x45\x0d\xc6\x10\x9a\xb6\x78\x57\x39\xb0\x6f\xff\x08\x0b\x49\x8d\x86\x5c\xb5\x77\x07\x3e\x79\x82\x6f\x58\x64\x1a\x51\x8f\x95\x26\xa2\x86\xfb\x49\x3a\xdf\x40\x9c\xc7\x39\x1c\x0e\x74\x3e\xa4\xe2\xfa\x01\x25\xe9\x0e\x80\x0c\x87\x2a\xde\x3d\xfd\x4a\x2a\xa3\x46\xfd\x4f\x4a\xd9\x5f\xd0\x0d\x12\xb8\x90\x8f\x9e\xc0\x50\xe8\xe7\xea\xa3\x67\x16\xe6\xc7\x50\xb7\x82\x0b\x23\x1c\x71\x3d\x91\x1a\x07\x97\xe5\xbb\xa7\xc9\x4f\x7d\x1a\x7b\x8b\x7b\x51\xac\x49\xed\xad\xb3\x0e\x87\xd0\xad\x01\x44\xda\xe6\x62\x82\xd2\x85\x4c\xfc\x37\x7f\xe9\x85\x1e\xfd\x6e\x61\x80\x29\x7f\x6f\x50\x51\xd9\xf0\x9c\x87\x6f\x74\xcd\xc7\x87\x63\x8f\xee\x7e\x90\x93\x19\x51\xae\xe6\xe6\xae\xdc\x8c\xa9\xdf\x76\x62\x27\xc6\x77\x57\xdd\x12\x9d\xc5\x14\x07\x8f\xcd\xf5\x7d\x44\xa7\x11\x7c\x14\xb1\x8a\x3f\x71\xfb\x0f\x93\x71\x0c\xa8\xca\x03\x4e\x75\x1d\xcb\x9b\x00\xbe\x75\x8d\xa4\x34\xa9\xba\xcb\x18\x60\xa5\xdb\xb3\x95\x18\x16\x8a\x3e\x02\x97\x9c\xce\x1f\x91\x78\xf9\xe5\x0c\x62\x61\xe6\x95\xe3\x82\x02\x5a\x28\xe7\xdd\xc4\x2f\x67\x97\x10\x4d\x9f\x04\x1b\x04\x76\x8d\x8a\xca\x29\xc2\xb9\xe1\x69\xf1\xbe\xa9\x4e\x4e\xc0\x63\x96\xe8\xbc\xb8\x31\x5d\xb5\xa0\xb9\xfe\xb7\x94\x99\x0d\xa6\x86\x7b\x2c\xe6\xae\x0a\xbd\xd6\xbf\x9c\x99\xca\x98\x75\xa2\xa6\x94\x4d\xaa\x38\x86\x09\x0a\xd7\x27\xa0\x8c\x20\x7a\x51\xe8\xca\x39\xce\xdb\x6d\x9a\x1d\x62\x44\x47\x6e\x6d\xc1\x0e\x90\xb0\xce\xb9\x66\x96\xec\x11\x2f\x67\x0e\xeb\xcd\xfb\x9a\x1c\x6f\xe9\x49\x95\xeb\x62\x99\x21\x9f\x50\x7f\x29\x1a\xeb\x21\x2c\xe7\x33\x7b\xe5\x3c\x62\xc9\x43\x14\x17\x4c\x70\xdd\xb2\x4c\xea\x76\xee\x8f\xf6\xe7\x72\x61\xfb\xd5\xae\x66\x8e\x77\xc2\x49\x5d\xc9\xe8\x40\x0f\x47\x85\x9b\x5a\x47\xe1\x08\x30\xb3\x80\x99\xce\x15\x68\x06\x6f\xbb\x54\x0b\x4b\x60\x2d\xd3\xf5\x5b\x37\x6d\x46\xc6\xe5\xc7\xa7\xde\x68\x22\xcb\x52\xe4\xf2\xc7\x8f\xa6\x63\x06\x0c\x8e\x76\x96\x66\xa3\x2a\x3f\x5f\x76\x3b\x63\x45\xa8\x5c\xc2\xbd\x80\xe5\x81\x85\x55\xe3\xeb\xd3\x4e\x4e\xaa\xb6\x2d\x82\x23\x71\xcd\x52\x2d\x1d\x81\x50\xf6\x91\xce\xc3\xce\x00\x97\x1d\x2c\x21\x62\x50\x11\x69\x16\x83\x3a\xcd\x33\x26\x82\xc1\x8a\x54\x27\x30\x20\xf5\xba\x3f\x9d\x32\xf3\x04\x63\xb0\xe9\x0e\x69\x0d\xf1\x35\x72\xca\xa9\x85\x90\xcc\xf5\x24\x5b\x68\x69\x6a\xf5\xf4\xfd\xac\xa5\xef\x57\x53\xb2\x48\x52\xf1\x2a\x83\x17\xef\x57\xd3\x96\x9e\x1a\x76\xb6\x3e\xe5\xeb\x3f\x2c\xb3\x2e\xe5\x2d\x25\xd1\x54\x88\x69\x44\xe1\x8c\xf7\xa7\xec\xa9\x23\xcc\x95\x82\xa7\xd1\xbb\x7a\x1b\xb1\xe8\x6d\x71\x7d\xa3\x22\x16\x7d\x51\x2b\x55\x6f\x22\x16\x7d\x2b\xd6\x2a\xca\x58\x25\xf8\xe0\x8c\x1f\xb2\xac\x7a\x97\xb6\xce\x3e\xae\x07\xb7\x0c\x37\x42\xb5\x3e\x77\xd5\x9b\x6d\xdd\x88\x15\x58\xfd\x55\x20\x88\xbd\xad\x6b\x03\x9e\x43\xfe\x40\xb2\x6d\x1b\x24\x42\x6a\xc0\x51\xef\xc5\x33\x4d\x9a\x8f\x73\xc3\x46\x55\x5d\x81\x88\x47\x04\x47\xc6\xae\x46\x3d\x94\x40\xac\x06\x94\xdf\xad\x71\x41\x09\x42\xe3\xb8\x10\x70\x16\x74\x5f\x5f\xce\x96\xb0\x0e\x45\x26\x46\x04\x30\xc8\x03\x0d\x85\xb3\xce\x65\x39\x7f\xc4\x91\x57\xe3\xc1\x2c\x4f\xeb\xcc\x66\x93\xd6\x19\xeb\x7e\x72\x65\x59\x78\x6a\xd4\x51\x48\xc7\xbb\x0a\xfb\x07\x65\x8a\x7a\xb1\x75\x42\xdd\xc9\xae\x93\xb2\x77\x62\xac\x10\xcf\xe6\xac\xe1\xd5\x10\x87\xf4\xb8\x9a\x2d\x77\x92\xf8\x58\xf1\x7e\x97\x98\xad\x0d\xcc\x11\x76\x5c\x8f\xe2\x52\xcb\xea\x12\x30\x64\x09\x44\x40\x2e\xfc\x54\x65\x8b\x28\x4a\xa2\xed\x7d\x44\xd9\x32\x70\x93\xe8\x45\x6b\x5b\x1d\x69\xc2\x79\x19\xc7\xd3\x1d\x8d\x63\x25\xd0\x9c\xd8\x65\x87\x5e\xb8\xcb\x38\x5e\xa6\x9f\x65\xe0\xec\x0e\x12\xd9\xee\x94\x3f\x63\x25\x2f\xdb\x56\x87\xb3\x25\x9f\xee\xda\xf6\x0c\x27\xe9\x25\xb6\x0b\x14\x76\x39\x2d\x29\x23\x67\x27\x35\x7d\x4a\xce\x4e\x48\xad\x8b\x7d\xba\x6b\xdb\xd9\x7f\x52\xfa\x9c\xcf\xe3\x98\xe4\x7c\x4e\xd9\xf2\x94\xd7\x47\xcb\xa7\xfc\x19\x1b\x7c\x6c\xae\xc4\xf7\x9e\x5f\xc0\x92\x4f\x97\x6d\xab\x73\x9c\xeb\x8d\x38\x3d\xcb\x16\xcb\x29\xd1\x7f\xa7\x67\xf4\xa9\x4c\x9f\x65\xc9\x54\xff\xcb\x2a\xbd\x10\xcc\x76\x55\xa1\x78\xc9\xaa\x59\xa3\x72\xa9\xf8\x92\x55\x33\x51\xad\x38\xb8\x94\x83\x7a\xa4\x14\x30\x2e\x6c\xa7\x79\x04\x95\x80\x0d\x13\x4e\x80\xca\x73\x64\x62\x05\x2f\x85\x7f\xa8\x07\xa5\x85\x9c\x5d\xd5\xab\x87\x80\x45\x44\xf6\x9c\xd3\x00\x2f\xc3\x8c\x5f\xe5\x8d\x5f\xf6\x31\xea\x4a\x37\xee\x51\x98\x88\xae\xca\x7a\xf9\x21\xa2\x0c\x8a\xc0\x8b\x80\xf6\x73\xc0\x6a\xa9\x85\x5e\x34\x82\x98\xb3\xbc\x03\x26\xa9\x9f\xe7\xe7\xf5\x74\x4a\x49\x05\xf0\xdd\x66\x22\x82\xef\x78\x15\x4e\x3f\xa6\x16\xc4\x95\x40\xf7\x42\xa1\x07\x3e\xae\xc6\x95\x57\x85\xb6\x45\x7c\x83\xb4\xd6\xa3\xb2\x97\x08\x07\xae\xb6\x08\xf5\x9d\xbd\xd9\x9d\x0b\xb0\x62\xc1\x74\xd1\xda\x89\x26\x98\xe3\xc4\xcb\x11\x43\x18\x8a\xee\x5e\xc6\xa8\x87\x43\x07\xce\xb9\xab\x17\x5e\x55\x15\x88\x4c\xae\x6b\xd8\x2b\x8f\x7e\xe3\x21\x19\x05\xd2\x47\x73\x53\xdf\x8d\xcc\xc4\xb5\xd9\x69\x41\x56\xbe\x29\x56\x63\xf7\xfe\x26\x0e\xdd\x33\x55\x5f\x5f\x97\x63\xbb\x70\x74\x55\xd7\xa5\xc8\xfd\x8b\xd9\x85\x39\x54\xe8\x8c\x89\xb1\x6b\xd7\x19\xd8\xdf\xfd\xad\x3f\x37\xb9\x2c\x2e\xf1\xaf\xfd\xd0\x3e\xe2\xb7\x7b\xb7\xc1\xdd\x08\x54\x15\x58\x1c\xa6\x16\x90\x99\x80\x13\x7d\x25\xf8\x69\xe8\xb5\xd4\x73\x5a\x3a\x2d\xd8\x56\x7f\xfe\xa4\xfd\xc7\xa6\x5e\xed\x4a\xf1\xa4\x7d\x7f\x4a\x16\xc9\x3f\xf3\xdb\xbc\x15\xcb\x4d\x4e\x9b\xa5\x2c\xb6\xea\xb4\x60\x1b\xc1\x1f\x11\xda\x2d\x49\xcf\x58\x64\x89\x87\x36\xbb\x52\x15\xdb\x52\xf0\xff\xb0\xbf\xfe\xe3\xf3\x88\x45\x1d\xe5\x50\xc6\xd4\x8d\xc8\x57\xf8\x11\x78\x94\xe2\x7b\xf3\x33\x63\xcb\xba\x4c\xd2\x67\xee\xe5\xf3\x65\x5d\x5e\xcb\x7a\xb7\xc5\x68\xee\xc9\xfb\x42\xc9\xe0\x03\xa5\x27\xa6\x49\x14\x7e\xfa\x51\x57\x49\xfa\x59\x3f\xea\x73\x25\x4d\x74\xf9\xf9\xc8\x37\x97\xc6\x63\x31\x49\xe7\x2c\x8a\x58\x14\x65\xde\x32\x72\xeb\x73\xc1\x3a\xd5\x02\xff\x1d\x6a\xcc\xc5\x01\x1e\x43\x04\xb2\xa1\x89\xf7\x79\x9f\x3e\x68\x31\xc2\x28\x64\x3f\x4b\x33\xd6\x53\xfb\xa1\xc3\xdb\xc2\xd9\x83\x0a\x50\x52\xcb\x90\xd3\xb3\x87\x6b\x06\x8b\x9f\x3d\x88\x3f\xaf\xce\xe5\x74\x4a\x71\x22\x8a\x54\x66\x2c\xba\x2e\xeb\xab\xbc\x7c\x75\x9b\x97\x11\x78\x10\xe3\xea\xa0\xfa\xef\x28\xdd\x6f\xc4\xac\xde\x2a\xe8\x2f\x8e\xbf\x8b\xba\x62\x1b\x31\x83\x36\xd6\x41\x6a\x5d\xd7\x4a\xff\xb0\xfd\x0a\xbf\x73\xbc\xdd\xda\x80\x01\x43\xbe\x82\x2f\x6e\xe0\x71\x05\x43\xfc\x5a\xb0\x2b\xc1\x2e\xf5\x68\x6e\xe3\xff\xb3\x78\x7f\x37\x3d\x3f\xed\xba\xe4\xee\x10\xa0\x92\x05\xf5\x60\x6b\xae\xcc\x52\x6d\x17\xfc\xd7\x32\xbf\x86\x35\x9b\x5a\xb0\xa2\x39\xdb\x76\xcd\xb0\x7a\xbe\x3d\x5f\xa1\xb3\x02\x00\x2e\xad\x32\x8a\x88\x93\x35\xed\x5f\x7a\xd4\x94\xda\xd6\xbe\x61\xb5\x87\x48\x54\x67\x49\xdd\xdd\x75\x5c\x1a\xb7\xeb\xda\x28\x3f\x72\x0e\x88\x0a\x01\x9d\x56\xdf\xd7\x79\x55\xdc\xea\x85\xb5\xe1\x64\x65\x36\xf0\x9a\xb6\x6d\x8a\x63\x92\x0e\xc1\xec\x77\x7c\x23\xd2\x26\x6b\xdb\x8d\x98\xd9\x41\xcc\x72\xcf\x69\x78\xa7\x37\xd3\xcb\xd9\x8d\xda\x94\x3f\x48\x61\xec\x73\x6b\x3a\xdd\xe9\x6d\x75\x09\x6e\xfd\x88\x22\x94\xf3\xbc\x83\x4c\x3e\xea\xea\x97\x07\xfc\xf7\x24\xe7\x6b\xdf\xe6\xd9\x07\x26\xe5\x51\x84\x6a\x38\x83\xe9\x62\x2b\xf7\x4e\xdc\x1b\x01\xd3\xac\xeb\xeb\xde\x57\xba\x2b\xce\x6b\x7e\x93\xae\x2c\x92\x44\x05\x3e\x44\xc6\x96\xb0\x66\x15\xfd\xfc\xe4\x8c\x82\x39\x92\x01\xbc\x72\x8d\x5c\xf2\x02\x2e\xe3\x73\x7e\x2b\x48\xd8\xb8\x35\x65\x11\xae\x65\x11\xdc\x2c\x3d\x08\x92\x53\x86\xa4\xcb\x4b\xc8\x31\x4f\x97\x90\xe3\xd6\xf6\x94\xc5\x48\x8c\xa8\xf3\x40\xad\x3b\x02\xcb\xfd\xb5\x16\xe8\x0f\x8d\xaa\x20\xef\xea\x40\xc7\x92\xab\x2e\x89\x3e\x15\x5b\x9f\x5a\xcd\x30\xb1\xc1\xda\x1e\x51\x76\x25\x7a\xef\x2d\x1d\x1d\x8b\x3a\x62\xba\x41\x24\xc3\xcf\xa6\x9b\xe0\x3a\xa4\x72\xbb\x12\x94\x6d\x11\xc4\xf3\x65\x59\x57\x82\x5f\x8b\xd9\x52\xff\x80\xbe\x9a\xcc\x69\xef\xc9\x0d\x0e\x0b\xfc\xa9\x13\xf4\xbd\xd3\x75\xa7\xe6\x52\xe4\x9f\xdf\x3f\x3f\x75\xbf\x23\xb6\x9d\x55\x35\x64\xf0\x12\x3f\xe3\x93\xc9\x20\xa7\x2e\x6d\xdf\x75\x1c\x16\x82\x57\x7a\xb3\xfa\x20\x1e\x4e\xd9\xbd\xd9\xf5\x36\xf5\xae\x11\xed\xb6\x2e\x2a\x25\x64\xbb\x44\x07\xe0\x8d\xa8\x76\xed\x4a\xe6\xd7\xed\x4a\xd6\x5b\xda\x2e\xcb\x62\xf9\xe1\x94\x5d\xc0\x37\xe9\x3f\x66\xd9\x53\xaa\x4f\x83\x33\x32\x9b\xd2\x96\x7a\x4b\xc9\x1b\xe1\xd3\x07\xb8\xe0\x17\x5e\xb0\xc7\xb8\xfd\x41\x84\xee\xc5\x9c\xf3\x9e\x79\x93\x3b\x01\x04\xa0\xae\x9d\xc5\xd3\x7e\x4f\x28\xe7\x24\x02\x48\x58\xd0\x18\x79\xd2\xde\xbb\x1e\x4a\x1b\x1c\xbd\x58\x13\x5e\xbb\xba\x8b\xaa\x47\x7b\xf5\x3a\x38\x7f\x4b\x50\x98\x56\x6d\x2b\x99\x74\x47\x70\x45\x21\xf9\x06\x92\x57\x69\x93\xb1\xda\x93\x98\xf4\xac\x83\x4b\xde\x0a\xe1\x61\x38\x2f\x16\xa4\xe0\x92\x55\xdc\x25\x91\x98\x17\x71\x3c\xbc\x37\x93\x3a\x76\xc5\x2a\x17\xd7\x3c\x7a\x25\x30\x78\xe2\x05\x2d\xf8\x0b\xe1\x66\xf0\xa4\x70\xc0\x01\x3e\x1a\x7e\x0d\x47\x8a\x82\x91\x62\xf4\x60\x4b\xe8\xac\x5e\xaf\x89\x00\x7b\xa0\x31\x13\xc5\x3d\x9d\x5d\xef\x8a\x15\xcf\xe1\x0f\x80\xe5\xc1\xf3\x25\xfc\x99\x4e\xc1\x74\x6b\xa8\x83\x11\xb7\xa2\x52\x68\x61\x84\x4e\x11\x05\xab\xe0\x46\xb9\xeb\xa4\x97\x0e\x2e\x52\x2e\xc8\x13\x77\x09\x31\x39\x03\x45\xa9\xfb\x5e\x87\x3d\x3a\x92\xeb\x64\x72\xc6\x6e\x80\xd5\x45\x0e\xee\x91\x2a\xe0\xa2\x36\x7b\x2c\xe4\x0a\x67\xb5\xb3\x58\xcc\x8a\xe6\x9d\x2c\xae\xaf\x85\x34\x2e\x59\x0a\x9d\x39\xad\x16\x9d\x12\x9b\x23\x60\x19\xe4\x25\x1c\x05\x1f\xf7\x74\xb6\x12\xa5\xb8\xd6\x8b\xaf\xa5\xa5\x57\xf5\xf6\x07\x59\x6f\xf3\xeb\x1c\xeb\xea\xda\x3f\x1f\xb1\x3e\x7a\xd2\x29\x9c\x15\xcb\x41\x61\x6a\x4b\xc6\x4c\x39\x08\x65\xf9\x84\x73\x52\x84\x05\xd7\xc7\x86\x45\xf0\x39\x70\x54\xf3\xc7\x3d\x44\xef\xfa\x1a\x4a\xf4\xcd\x66\x23\x56\x45\xae\x44\x50\x34\x26\xc0\x6d\x4b\x54\xea\x4b\x5c\x0d\x40\xcf\x73\xdb\x71\xef\xe4\xdd\x5d\x44\x90\x95\xb9\x19\xb6\x6d\xa2\xb0\xe9\x88\x53\x5f\xe7\xe9\x3c\x63\x97\x33\x30\x8c\xe8\xae\xb4\xf5\x10\xb2\x80\xce\xd6\x7f\x93\x7d\xac\x7c\x5a\x0e\xf7\xd4\x8c\x9d\x56\x5b\xef\x5a\xe1\x00\x78\x23\xe8\xde\x84\xf1\x47\x94\x9c\x92\xc7\xa1\xa7\x5c\xc0\x27\xe1\x4b\x31\x96\xcf\x81\xdd\xda\x6c\x28\x32\x2f\xc0\x6d\xca\xcc\x8c\x28\x38\xe6\x91\x9a\x4b\x6a\x43\xc0\xa6\xcc\xa2\x55\x80\x82\xfa\x90\x57\xbd\x00\x24\x19\x3b\x49\x64\x6f\x92\x30\xb2\xe3\xb7\x58\xfe\x86\xb6\xad\xf7\x04\xe8\x9e\x24\xe7\xb7\x26\x4b\x34\xe2\xb0\x4f\x81\xd9\x52\xff\x46\xe4\xb2\x6b\x27\xd3\x45\x40\xa8\xaf\x10\x65\xce\xbe\xd2\x27\x3b\xc0\x79\xb0\xfa\x1a\xcf\x72\xcd\x50\x0b\x53\x56\x72\x62\xae\x1a\x22\xea\x5f\x1a\x6b\x69\xc9\x4a\x76\x25\xdc\x18\xf3\x0d\x07\xac\x2f\x94\xaa\x54\x5a\x66\x06\x6d\xe8\x2c\x63\x5b\x4e\x9a\xf4\x99\xa1\x23\x32\xd0\x37\x33\x8b\x7d\x43\xd9\x2a\x8e\xc9\x9a\xf7\x67\xda\x0a\x66\x1a\x5b\x71\x52\x2c\xd6\xc1\x7c\x4b\xd6\xb3\xab\xa2\x5a\x19\x86\x83\x15\x3b\xf8\xed\x92\x77\x37\x2b\x00\xa5\xb6\x62\xb5\x2c\xae\x21\x8d\x0d\x5e\x3d\x56\x6e\xd5\x90\x4c\xf7\x49\x82\x3d\xc4\x6c\xdf\x26\x05\xf3\x71\x30\x12\xe8\xe9\x03\x20\x19\xc6\x47\x9b\xb2\x6e\x55\xda\x1a\x5c\x9f\x59\x04\xd7\x0d\x8c\xdc\xf0\x1d\x8a\xbe\xc4\xfc\xe4\x69\xd6\xad\x26\x2f\xeb\x5d\xa5\xf8\x9c\xad\xf5\xac\xdb\x6d\xe3\x78\x72\x36\xe1\xdc\x3c\x75\x70\x15\x5b\x96\x83\x76\xb1\x6f\x84\xa4\x17\xa2\x81\x61\xd2\x8a\xe5\x94\xb2\xb5\x7e\xa1\xdb\x59\xff\xb5\x29\x2d\x29\x5b\xda\x11\x6d\x47\x68\x18\xc0\xf1\x0f\xa5\xac\x58\xdc\x58\xb7\x95\x9b\xb0\xbc\xd3\x29\x9b\xb3\x25\x4d\x8c\x58\xba\xec\x96\x69\x9c\x90\xba\x92\xde\x7d\xd9\x1f\x98\x98\xdd\x85\x71\x1c\x07\xd3\x34\x8e\xfd\xf9\x63\x11\x40\x3f\x71\xc8\x16\x6b\xf2\xbf\x1a\xb5\x98\xdd\xc1\xc1\x07\xdd\xcb\x49\xf5\xf1\xc1\x0b\xb4\x20\xac\xe1\x0d\xd0\x71\xf5\x08\x8f\xde\xbf\x9f\xd1\x68\x6a\xc7\xd0\xfb\xf7\x33\xb2\x48\x66\x4f\xdf\xbf\x9f\xb5\x34\xa2\xd3\x88\xe8\x5f\x4f\x68\x04\x14\x14\xfc\xc6\xc3\xdc\x3a\xa7\x4b\x7e\x03\x90\x5b\x45\x1c\x6f\x26\x9c\x2f\x67\x76\xe0\xb7\x2d\x20\xec\xeb\x5e\x85\x70\xec\xf6\x26\x8e\x27\x0d\x8e\xdf\xe5\xcc\x0d\x5f\xbd\xd9\xc4\x71\x05\xf1\x1a\xc7\xe8\x48\xa2\xa7\x4f\xc1\xdc\xae\x6d\x27\x5d\xb8\x1e\xd2\x37\x01\xce\x96\xff\x4d\x6f\xc8\x9c\x9c\xb0\xb5\xd1\xda\xc5\xb1\xfd\xd5\x8d\x4a\x7a\x94\xc7\xf1\xe4\xa6\xdb\x85\xf4\x89\x26\x97\xab\xfa\xae\x72\x53\xc2\x06\xd8\xaf\xb6\xcc\x5b\x29\x2f\x7d\xcb\x4a\x22\xd8\xaa\x7b\x69\xaf\x09\x61\x1a\x76\xf0\xcc\xab\xe3\xa2\x3a\xde\x51\xdb\x97\xee\xf2\x6d\x35\xd5\x83\x02\x86\xe9\x64\x4e\x8f\xfa\xc6\x26\x3b\x18\x91\x2e\x76\x84\x99\x1c\xe3\x80\x8c\xe8\x1e\xfc\xa7\xb6\x03\xc7\x94\xc0\xe5\x4f\x0f\x7b\x37\x88\xd6\xc5\xbd\x16\xba\x76\x70\x63\x82\xe7\xb3\xfe\xad\x1c\xac\xca\x9e\x50\x10\xd9\xdc\x40\x32\x49\x1b\xc4\x55\x83\x71\xb5\x1c\x0c\x4e\xf7\xd6\x28\xf8\xf5\x01\x95\x37\x4c\xf1\xb3\x73\xf5\xbc\x9f\x13\x60\x9e\xec\x52\xe5\xd9\x3b\x1b\x1e\xd5\xa6\x1b\xd3\xc0\xf5\x80\x37\x5c\x93\xa5\x16\x2c\xbe\x34\x35\x6e\x5b\xe8\xaa\x20\xcc\x73\x8e\x6f\xdc\xb1\xdd\x96\xd1\x2c\x3c\x8d\x1f\x89\x95\x88\xc0\x42\x0a\x9e\xa7\x6a\x3a\xcd\x28\x8c\xd4\xa2\xf1\x24\x86\x0b\x55\x6f\xb7\x62\x45\xe8\x39\x1a\x4b\xce\x96\x3b\x29\x45\xa5\x4c\xd1\x8a\x99\x28\xc5\x86\x49\x9d\x4a\xcd\x0b\x97\x4d\x2a\xbd\xe4\xc6\x24\x11\x2f\xdd\x66\x26\xdd\xac\x30\x43\xb0\x9e\xf9\x21\x7e\x04\x7b\xd8\xf5\xe7\x11\x69\x4c\xbe\x6f\xae\xfe\xc9\x6b\xd6\xcc\xf4\xee\xc3\x6b\xf8\xd3\xd9\x86\x91\x8a\x93\x81\xc8\x59\xbb\xb9\x6b\x64\x4f\x4c\xa8\x6d\x6b\x5b\x15\x6a\xf6\x70\x53\xd3\x1d\xf0\x58\x68\x21\x9f\x34\x33\x29\x9a\x5d\xa9\x38\x68\x8c\x9b\xa1\xdc\xd7\x0c\x25\xd7\xee\x02\x70\x39\xdb\xd6\x8d\xb2\x7d\x17\xc7\xe1\x73\xd0\x97\xcc\xe6\x04\xf6\x5c\xd8\xc0\x87\x8d\x63\x60\xc8\xa7\x19\xdb\x71\x15\x2e\x0c\xac\xe4\x62\x86\xf4\x21\x80\xbb\x1e\xc7\xa5\x6f\xfd\x42\x22\x38\x77\xfa\x7c\x08\x62\x86\x84\x0b\x9f\xf3\x33\x63\x91\x5a\x6a\x59\xe7\xa6\x68\xce\x4b\x5e\x06\xee\xe7\x20\x7b\x1a\xf0\x2d\x3f\x59\x9b\xea\xa4\x63\x71\x00\xbb\xe5\xd2\x31\x9a\x9b\xa1\x6a\xbc\x73\x1f\xf7\x0c\xb9\x0b\x76\xa0\xd8\x73\x82\x6a\x9e\x16\xba\x07\x01\xec\xd4\xad\x7d\x96\xf8\x36\x4f\x8b\x8c\x57\x81\xbc\xb0\xb8\x24\x05\x0a\xc4\x06\xf7\xa2\x04\x9f\x4e\x03\x32\x84\xaf\x0c\x1f\x6d\xe9\xf6\x2e\xca\x74\x4a\x71\xec\x9c\x5d\x8f\x6a\xb7\x4e\x36\x06\x3e\x56\x8f\x82\xa4\xec\xfa\xa1\xde\x3b\x3b\x9d\xd2\xb8\x61\x3d\x57\xbf\xfb\x95\xb2\x18\x90\x80\x75\x0b\x42\xb5\x1e\x27\xbd\x5e\x1d\x37\x29\x1d\x1c\x02\x98\x60\x8f\xa2\xda\x6d\x84\xb5\x26\xed\x5b\x97\x82\x95\x27\x38\xe0\x78\xe7\x45\x6b\x1a\xa5\x27\x40\x51\xe5\x25\x24\xea\x6c\x60\xc6\xde\x05\x57\x82\x1f\xff\x7c\xf0\x26\x15\x59\xcf\xba\xf5\x60\xfd\x8c\x41\xc3\xef\x54\xe9\x4e\x16\xca\xfe\x36\x46\xb5\x70\xc9\xb0\x67\xeb\x62\x1c\x66\x24\x75\x46\xc2\xd9\x42\x24\x7a\x0f\x30\x2d\x09\xc6\x72\x66\x45\x48\x1e\xcb\x3a\x5f\x25\x8f\x55\xfd\xc5\xee\xca\xd8\xe6\x32\x18\xc2\xc9\x23\x48\x8a\x23\x96\x94\xba\xc0\x6d\xeb\x34\x00\x37\xc2\xba\x56\x18\xf0\x4c\x35\x83\x04\xe2\xf8\x03\x51\xcc\x6a\xcc\xe2\xf8\x25\x00\x2d\xe2\xf4\xd0\x87\x2d\x36\x39\xdb\x33\x73\xa8\xf8\x7f\x93\x0b\x65\xba\x36\xee\xc2\x60\xc4\x26\xd4\xae\x0f\xff\x66\x26\x66\xc7\x74\xf9\xb4\x2d\xbc\xcf\x61\x97\xbe\x12\xeb\x5a\x8a\x5d\x85\x0d\xeb\xaf\x72\x61\x09\xba\x4b\x05\x5c\xed\xf4\xfa\x13\x8c\x21\x30\x85\x0d\x42\x66\x58\x4e\xd0\xb8\xb9\xef\xe8\x7e\xbf\x47\x67\x14\x27\xa6\x0c\x4c\xef\x47\xdd\x43\x74\x86\x63\x5e\x23\xc6\x94\x71\x36\x4c\xca\xa2\xc4\xde\x14\x4d\x00\x50\x85\x51\x9d\xbb\x50\x30\xd6\x98\x02\x17\x54\x5c\x0d\x17\x23\x93\xc8\x22\x3a\x81\xc9\x3a\x46\xc3\x80\xa2\x31\x7b\xcb\x0f\xb8\xd3\x88\x15\x77\x78\x95\x2e\xc8\x12\x6d\xc2\x32\xde\x7f\x69\xb6\x2e\xe1\xb7\xdb\xe2\x8d\x48\x5e\xd8\x2c\x71\x57\xb7\xc3\x20\x8e\x3f\xc3\xdd\x00\x9e\x3c\x2b\x64\x1b\xd2\xed\x00\x89\x0d\xc3\x84\x42\x29\x41\x84\xcf\x18\x05\xe0\x6a\xc5\xca\x45\x09\x9e\xcd\x65\x23\x36\x01\x53\x78\x30\x84\xc3\xa6\xaf\xca\x99\xa9\x62\x23\x2e\x54\xbe\xd9\x72\x6c\x51\xfb\xd8\xb6\x5f\xe6\x4a\xcc\xaa\xfa\x8e\x18\xa5\x4f\x37\xf7\x39\xcc\x81\xfe\x1a\xca\x1f\x3d\x1c\xb2\xc4\xbc\x66\xc3\x16\xd7\x4d\x35\x26\x20\x61\xf8\x47\x24\x1d\x8c\x70\x51\x6c\x76\x50\xcd\x64\x72\xc6\x42\x81\x61\xe8\x35\x3d\x1c\x1a\x47\x87\xc6\xc1\x1b\xc1\xf4\x1e\x6e\x5e\xbb\x5c\x80\x99\xaa\x27\x96\xec\x59\x4f\x2a\xf9\x77\x32\x1e\xd6\xeb\x63\x59\x0f\xc4\x1f\xcc\x7b\xac\x95\xfe\x9d\x42\x7c\xa4\x95\x7f\xaf\x34\x07\x94\x76\x78\xe3\x3d\x28\xed\xde\x21\x2d\xe5\xa5\xfa\xab\x78\xd0\x7b\xcd\x15\x6c\x0b\x80\x67\xb6\xd4\xd3\xbd\x74\x1b\xd4\x4d\x5e\x5d\x8b\xd5\xbb\x7a\x07\x78\xf2\x3a\x44\xc9\xd2\x7c\xb5\x12\x2a\x2f\x4a\xfd\x0b\x3a\xe3\x87\x9b\xbc\x81\x8f\x36\x42\xe5\x26\xca\x36\xbf\x16\xbf\xd8\x1f\xbf\xea\x1f\x60\x88\x69\xde\xde\x16\xe2\xce\xe4\x22\x71\x3b\x5c\xd9\x5c\xe5\x4b\xf3\xfb\x03\x46\xfd\x20\x1e\x6c\x88\x21\xe2\x72\xbf\xb0\x58\x65\x21\x2a\xf5\x4b\xf7\x13\x32\xab\xd7\xeb\x46\x60\x28\xfe\x84\x50\x73\x53\xf1\xcd\xca\x7b\x80\x93\xb6\x2e\xde\x52\x0a\x51\xfd\xd2\xfd\x84\x2f\x70\x15\xf0\x5a\x41\xd5\xe6\x1e\x01\x1f\x5c\xf8\xdd\x4d\x31\x76\x72\xe3\x56\xe8\x0c\xc9\x7b\xc5\x0c\xe2\xc7\xf1\x2b\x0b\x08\x8d\x5b\xd2\xc2\xf8\x01\xcf\x6c\x43\x2c\xba\x9f\x89\x98\xb9\xb6\x70\xdf\xfb\xfe\x0d\xf7\xbd\xb4\xce\x62\xb5\x38\x4b\x9e\xc5\x6a\xf1\x59\xf2\xe7\x58\x2d\x9e\x25\xf3\xc4\x7c\x88\x63\xc1\xea\x47\xf5\x30\xe9\x60\xb8\x90\x21\x0f\x6f\x45\x8a\x2a\x62\x57\xe5\x4e\x9a\xc7\x7a\xa7\xa2\x21\xa6\x51\x78\x06\x11\x19\xef\x8b\x16\x4e\x68\x79\xe9\xec\x3b\x3f\x1c\x12\x10\x86\x71\x71\x9b\x0f\x14\x23\xca\x87\x0d\x83\x4b\x28\xbd\x6e\xc8\x24\x82\xdf\xf5\xad\x90\x11\x83\x9f\xa5\xc8\x6f\x85\x0d\xde\xa9\xc8\x76\xba\x89\x6e\x9e\xf0\x03\xf3\x60\x3e\xb1\xaf\x3e\xb1\xc6\x61\xf1\x98\xd5\xdb\x24\xca\x08\xc9\x83\x91\x01\xae\x3b\xe1\x2e\x01\xbc\x05\xee\xe8\xe7\x06\x0c\x5c\x20\x71\x23\x30\xf5\xd1\xfb\x2a\x20\x86\xc0\x1e\xe7\x85\x3b\xfe\x31\xd9\x9d\x5e\xc7\x2f\x65\x98\xf9\x06\x30\xc7\x07\x56\xc2\x01\xdd\x9d\xb5\xb6\x33\x05\x7a\xd7\x19\xe9\x42\xf8\x9e\xd5\xd5\x50\x55\x77\x28\x3a\x3b\xd3\x1f\xac\xd7\x87\xfc\xc2\xc0\x76\x7d\xb8\xd0\xeb\x10\xd7\x34\x4e\x10\xf1\xdb\x8b\x5d\x12\xd1\x53\x35\xe0\xc5\x54\xd5\x9d\xae\x17\x95\x6b\xa1\x69\x34\x8b\xa6\xde\xab\xa4\x7b\x05\x54\x26\x78\x24\x63\x95\x3b\x38\xc3\xaa\x3a\x7a\xfd\x67\x08\x77\x00\x53\x53\x50\x5c\xe8\xd7\x6b\x00\x7e\x17\x07\xb0\x33\x41\x2d\xa0\xe2\xb8\xc3\x92\xe8\x30\x81\x01\xb9\x46\x31\xe5\x6e\x0b\x41\xc8\xc1\x9b\x85\x17\x06\x3f\xf0\xe0\x75\x59\xe0\x33\xc0\x24\xba\x28\x58\x54\x56\x30\x48\x5a\x4c\x72\x29\xf2\xf6\x4a\xb6\xcb\xba\x6c\xc5\xe6\x4a\xac\xda\x1b\xd9\x16\x9b\xeb\x16\x04\xe0\xb6\x2c\xaa\x0f\xad\x5e\xc9\xdb\x6d\x2e\xf3\x0d\x25\x1f\xb3\x61\x02\x48\x57\xfa\xfe\xf4\xf3\xd3\xeb\x82\xbd\xd5\x19\xe0\x3d\x7f\xfb\x1c\x8c\xc2\xda\xe7\x3a\xb5\xd3\x82\xfd\x20\xf8\xa9\xb9\xac\x7e\xdf\x3c\x25\x8b\x24\xfd\x07\xcf\x5a\xfe\xbe\x79\x6a\xef\xb0\x67\xf4\xb4\x60\xff\x14\xfc\xf4\x1f\xef\x9b\xa7\xcf\x27\x64\x91\xbc\x4f\x5f\x7e\xf9\xe2\xdd\x8b\xf7\x69\x7b\x72\x42\x5b\x1d\x90\xbd\xcf\xf4\xef\xcf\xdf\x37\x4f\x9f\xf8\x9e\x57\x5f\x86\x77\xc1\x08\xd9\xa6\x77\x32\x2d\xcd\x7f\x20\x43\xa0\x40\xe5\x83\xcb\x45\x4a\xea\x78\x00\x11\x6c\x41\xe6\x48\x04\x56\x33\x11\x4d\xe7\x59\xdb\x7a\x38\x65\xdf\x87\x8c\x65\x30\x87\x08\xae\xda\x87\x68\x16\xa7\xd1\x69\x34\x35\x92\xaf\x97\xd2\x37\xa2\xe7\xa0\x75\x8a\xe6\xbb\x9d\xe5\x83\xe3\x04\xfa\x4f\xba\x10\xbe\x00\xed\x9c\x6f\x12\x2b\xe2\x0f\x72\xf5\x73\xfa\x56\x8c\xaa\x55\xd8\x0e\x41\x54\x7a\xfc\xac\xfa\x10\x10\x2a\xd2\x49\xed\x79\x82\x50\xb8\x20\x85\xab\x3e\x56\x53\x56\xf2\xda\x29\xd5\xdd\x2c\x30\x8a\xd3\xdc\x4c\x1e\x96\x77\x37\x55\xac\x34\xc0\x63\x73\x56\xf1\x32\x2d\xb2\xbe\xf1\x53\x70\xf1\xcb\x0a\xa6\xe3\xa4\x32\xa3\x47\x3f\x86\x65\x6a\xf8\x8f\x5e\x99\x76\xdc\x87\x4a\x6b\x28\x33\x8e\x3a\x88\x31\xe2\x5a\xe2\xb5\x67\x3c\xac\xb8\xbd\xaf\x4e\x33\x7d\x8a\xb1\xc6\xc4\x9d\xdd\xd2\x9c\xdd\x74\x9e\xd7\x2b\x7e\x73\x72\xc6\x6e\x01\x51\x9b\x3d\xf0\x0d\xb9\x85\x8b\x85\x87\xb6\x05\x4c\xbd\xc1\x2d\xfc\x6d\x1c\x4f\x7c\xa3\x8e\x38\xfe\xc1\xec\xcf\xb7\x1e\x3e\x7f\x38\x8f\x1d\x5c\x8e\x98\x89\xdf\x48\x41\x8f\x1e\xe2\x98\x00\x1d\xf2\xad\xa7\x42\x2b\x58\x0d\x56\x44\x84\x52\xca\x5e\x0b\x52\xdb\x85\x18\x0a\x74\x03\xfd\x45\x0a\x7e\xa7\x8f\xca\xc0\xf1\x15\x5a\xdb\x4e\xce\x98\xd0\xfb\x86\x3f\x05\xc0\x18\xc0\x33\x2f\xf2\x3d\xcc\x6a\xca\xea\xb6\xad\x8c\x62\x6b\xc7\x49\x63\xb0\x0a\x6f\x05\x29\x3c\xbb\x9e\xef\x85\x23\x2c\x39\x5f\x3f\xbf\x39\x5f\x4f\xa7\xb4\xe4\x05\x5b\x4f\x38\x5f\x01\xb5\xc7\x25\xda\x9a\x90\x92\x81\xbf\x3f\x65\x3b\x7d\x12\x42\xf3\xa6\x86\xdd\xea\x17\x2e\x39\x4a\x99\xb4\xae\xe1\xeb\x8c\x95\x6c\x4d\x91\x5e\x11\x6d\x86\x9a\xb4\xe9\xb0\x9c\x7b\x15\xc4\xd2\x35\xec\x1b\x41\x75\x27\x9e\xaf\x9f\xef\x4c\x61\x1a\x9d\x94\x35\x31\x2a\x7d\x13\xa3\x89\x1b\xe0\x65\x68\x57\xa7\x4b\xe8\xb6\xdc\x25\x2b\x81\xdb\x6d\xd6\xc8\x65\x1c\x47\x68\xb5\x19\x4d\x38\xf7\x13\xeb\x51\x4c\x5c\xce\x2e\xc5\x6d\x5e\xfe\x24\xcb\x38\x9e\x94\xb3\xaa\xfe\x0e\xbe\xd2\xe9\xda\x17\x98\x20\x7b\xac\xea\x6a\x29\x12\x1d\xa7\x5a\x8a\xb6\x2d\x7b\xcb\x09\x04\x47\x74\x4f\x93\x6b\x9d\x5f\x67\xb8\xe5\xbc\x47\xff\x29\x80\x6d\xa2\x64\x4b\xea\xd4\x78\xde\x3a\xf0\x2f\x31\xe0\x22\x60\x05\x57\x0b\x1f\x53\x9e\x26\x82\xd5\x7c\x7e\x6e\x78\x89\x2a\x34\xe7\x05\xc3\x5f\xd9\xb6\x67\x13\x1f\x1f\x1e\xc4\x91\x52\xe4\x15\xcc\xca\x5b\xe4\x2c\xac\x02\x2a\x61\x22\xc1\xc7\xa0\x42\xbe\x13\x1d\xc5\xeb\xe2\x20\x6e\x60\x9a\xed\x91\xbb\x09\xdf\x73\xd4\xb7\x9d\x1b\xe7\x31\xb6\x4d\xf1\x9d\x60\xd1\xf3\x27\x67\x9f\x3f\x3f\x7d\xf2\xec\xf3\x08\x51\x8d\x07\x62\x4a\x67\xf4\xe1\xb3\x90\xf5\x4c\xa2\xd8\x9a\x17\xd6\x47\x7d\x42\xfa\x36\x54\xd8\x26\xbe\x3f\xc0\x59\x18\x80\x6e\xd0\xc8\x28\x41\x04\xc5\x55\x12\x6c\xe4\x96\xd4\xc0\x29\x93\x5a\x3f\x7a\xd3\xc7\x31\x30\xf2\x3a\xad\x80\x88\x4f\xff\x29\x2d\x9a\x52\x47\x00\x42\x4a\xbe\x3b\xc4\x01\x12\xc7\x56\xdf\xd5\x98\x03\xc1\xce\xee\xb5\xbc\xb1\xbf\x12\x93\x16\xfa\x2b\x44\xd6\x58\x0c\x9e\xdb\x96\xec\x02\x2b\x30\xde\x04\x8f\xd0\x22\x0a\xf0\x99\x29\xea\xbc\xeb\xb6\x85\x8a\x30\x30\xb0\xf4\xab\x58\xf7\xab\xf6\xad\x20\x50\x37\x5d\x33\x63\x01\x03\xdb\xd4\xd2\x76\xbc\x69\x23\x6f\xb8\xf8\x6c\x50\x82\xe4\x6c\xb2\x8e\x63\xbc\x4b\xeb\x46\xd4\x12\x1d\xb5\xaa\x81\xab\xa5\x4f\x89\x58\x81\xa3\x40\x20\xc4\xc3\x98\xf7\xdd\x41\x85\x1b\xf6\xc5\x9a\x7c\x45\x24\x35\xd0\xed\x32\x7d\xd2\x79\xa4\x43\x90\xdd\xfe\x3a\x74\x02\x1b\x52\xa4\x55\xb6\xe8\x49\x66\xc0\x60\x18\x5e\x3a\x82\x11\x98\xbd\x74\x3c\xf2\x33\x30\x1d\xbe\x97\xe9\x8f\x1e\x42\x01\xf1\x1f\xad\x94\x38\x94\xe1\x57\x40\xfc\x33\x36\x4b\xfe\xe5\x04\xc4\xf1\xcb\xf6\x61\x44\x3a\xc2\x4f\x6d\xe2\xf4\xdd\x71\xfb\x38\xbb\xe0\x5b\x8e\x2c\x2b\x68\x43\x6f\x0c\xef\x81\xb9\x9b\x0e\x04\xd9\x33\x73\x25\xd3\x9f\x50\xbd\xb0\xff\xe9\x07\xb5\x2d\xea\x1e\x7d\x7b\x56\xd1\xf9\xe7\x8a\x81\xc7\x22\xdd\x33\xb4\xc1\x1c\x39\x7b\xbe\x16\xbd\xe3\x52\x50\xbd\x3f\x5e\xc4\x2f\x5d\x7b\x06\xf6\x9f\x58\xce\xad\x14\x7f\xa8\x38\x56\x82\x0b\xb3\x3a\x1b\x09\xfb\x9f\x7e\x90\x55\x52\x74\xe5\x3a\x52\xb3\xa2\x6a\x84\x54\x5f\x80\x9a\x5b\x2f\x93\x01\xb0\xb2\x2e\x28\x6a\xc0\xff\xed\x72\x42\xce\xfe\xde\xd0\x0b\x18\x64\x8c\xf6\x5f\x7b\x96\xaf\xd5\xa8\x86\xe0\xff\x7e\x76\x01\x1d\x8e\xce\x7a\x00\x94\xea\x40\xf5\xe1\xaa\xd9\x6c\x92\xa8\xdd\x4b\x55\x46\xe1\x1a\xbc\xcf\xa3\x43\x7a\xbb\xa4\x00\xde\x0e\x7d\x00\x0f\x6c\xaf\xc3\x73\xe2\xc8\x7e\xe5\xd9\xba\x1a\x35\x51\x1c\x0b\x83\xca\xc3\xb9\x5a\x88\xc4\xe8\xa2\xb5\xf8\x33\xea\xee\x06\xd2\x57\xe0\xbc\xae\x77\xd4\x4f\x9c\xd5\xdd\xbd\x0d\x9c\x89\xf0\x6a\x33\x64\x66\x09\xf1\x0a\x10\xf3\xc2\x3b\x59\x38\x0c\x1e\x67\xab\x3c\x8a\xfb\x22\xe2\x78\xf2\xd6\x23\x4a\x9b\x6c\x44\xea\x8c\xf0\xc5\xc7\x8c\xf0\x33\xfa\x28\x78\xdf\xc4\x5e\x0f\x6a\xf9\x80\x6c\x0c\xf6\x90\x01\x37\xde\xa6\x32\xd2\xdc\x95\x1f\xee\x30\x85\x1d\xe6\x95\x9b\xeb\x44\xf9\xdc\x83\xc0\xd8\x2b\x33\xc2\xec\xc2\x86\x13\x1c\x2e\xe3\x0e\xaf\x40\x46\x5a\x09\x71\x6c\xad\xca\x38\x75\x4e\x70\x1f\x19\xe9\x9d\x9b\x79\x38\xbc\x8f\x3c\x40\x61\x9c\xda\xcf\xe7\x23\x35\x03\x72\x1b\x06\x76\x3e\xa6\x2c\xc6\x1d\xc2\xf0\xde\xec\xf5\xda\xef\x29\xdb\xb0\x56\xef\xea\x24\xc2\x5f\x91\x5d\xb6\x74\x90\xf9\x19\x31\x7f\x6a\x25\x11\xae\x17\x36\xf4\x05\xcc\xe6\x08\x26\x75\x64\x1b\xe0\x45\x59\x26\x91\xd7\x18\x23\x3a\xb7\x1e\x72\xba\x08\x1c\xf1\x90\x52\x0b\x30\xa7\x6a\xc7\xd8\x77\x72\xc6\x72\x3e\x3f\xcf\x9f\xf3\xfa\x3c\xd7\xf2\x2b\x10\x70\xd6\x9e\x2b\x3a\x4e\x08\x2d\xe3\x5d\x92\x22\xcd\x33\x9a\xaa\x8c\x48\xca\x1a\xcb\xfa\xcb\x24\x12\x21\x04\x73\xd3\xc3\x42\xaf\x9c\x72\xe5\xeb\xbe\xe7\xb2\xf5\x56\x5e\x4c\xb6\xf7\x14\x5d\x96\xa7\xd6\x63\xf9\x8b\xd0\x2a\xd3\x12\x98\x06\xc7\x18\x27\x6a\x15\xe2\xce\x63\x70\x92\xb3\x7a\x2b\x2a\x21\x41\x4b\x24\x28\x16\xf0\x65\xbd\xd9\xee\x94\x58\x5d\x80\x9f\xa7\xa2\x7b\xf6\x53\x50\x1c\x29\x8c\x61\x58\x1b\x51\x28\x41\xa7\x3a\xf9\x59\x8c\x8a\xc2\xd6\x85\xd7\x0a\x63\xe0\x32\xfa\x05\x08\xa9\x71\x4c\x22\x38\xf3\xe4\x1c\x32\xb7\x37\xdd\x20\x13\x12\x45\xdb\x56\xea\xa5\xb0\x6d\x41\x6a\x06\x5b\x54\xcf\x03\x95\x52\x36\xd9\xce\xb6\xc5\xbd\x28\xbf\xa8\xef\xa1\xc0\x0d\xa1\x71\xfc\xb5\x99\xf0\x39\x8d\xe3\x9f\xec\x3d\x2d\xa2\x8d\x34\x33\x20\xfd\x63\x05\x6f\x66\x9b\xa2\xfa\x19\x1e\x6a\xfd\x90\xdf\xe3\x43\x17\xee\x85\xda\xef\x78\xce\x74\x49\xef\x4c\x4c\x0c\xab\xfc\x6f\x0a\xe6\x7d\x55\x53\x0f\x81\x29\x5f\xe4\xd3\x28\x4a\x3c\xf6\xf6\xdf\x02\x55\xd3\x63\x00\x38\x85\xf7\xa7\x1d\xff\x9e\x63\xd2\xe0\x8a\x1e\x40\xef\x35\x9a\x12\x1b\x71\xbf\xdf\x07\x14\x2e\x36\x57\x85\x69\x2f\xe9\x63\x69\xbc\x2d\x97\x4d\xf3\x4e\xdc\x2b\x1e\x6d\x0d\x5b\x63\x92\x5f\x01\x7c\xad\x38\x2f\xc5\x5a\x25\x27\x67\xfa\xbf\xed\xfd\x39\xd4\x37\xf9\xaf\xf9\xf6\xfe\x7c\x93\xcb\xeb\xa2\x3a\x51\xf5\x36\xd1\x6f\xb6\xf9\x6a\x55\x54\xd7\xc9\xfc\xfc\xaa\x96\x2b\x21\x93\x79\x04\x80\xae\xe3\xc9\x5b\x3e\xce\x73\xe3\xe7\x99\x80\xaf\xec\xf9\x55\x7d\x7f\xd2\x14\xff\xd2\xe9\x60\x2a\x27\x57\xf5\xfd\x79\x7d\x2b\xe4\xba\xac\xef\x92\x06\x50\xf4\x4c\xce\x49\xbe\x53\xb5\xcd\xcc\x2f\x81\x5f\xce\x3f\x9d\x43\xf9\xfe\x14\xb1\x2a\xf4\x92\x29\x43\xa1\x69\x69\xe0\xf0\x51\xeb\x16\xce\x80\x25\x3d\x2a\x78\x74\xf6\xa7\x08\x6d\x99\xeb\x2d\xdb\xf1\xb3\x67\x9c\x73\x49\xd4\x0c\xcb\xf2\xad\x58\x2b\xea\xaa\x2b\x8b\xeb\x1b\xc5\xa3\xff\x9a\xff\x29\x62\x0d\xff\xec\xbf\x4c\x54\x08\xd6\x4b\x8a\x0b\x81\x52\x76\xdf\xd9\xd6\xe1\x91\x6d\xfd\x88\xe5\x36\xab\xe5\x0c\xaf\x9e\x60\x5c\x9d\x7e\x46\x75\x85\xfc\x43\x6e\x49\xd9\x12\x51\x94\xbb\xe1\x25\xbd\x3d\x18\x59\x85\xeb\x5d\xb5\x22\x00\xbd\xf4\xba\xac\x73\x20\xd1\xd9\x3b\xbf\x77\x3c\xb3\x0e\xfd\x98\xc0\xc7\x49\xa7\x3e\xfa\xe2\x68\xe9\x7c\x92\x6d\x45\xae\xf2\xe5\x87\x6b\xc8\xeb\x65\x59\x6c\x79\x64\xf8\x2d\x74\x67\xea\x41\x11\xfa\x08\x8d\x7f\x12\xb1\x2d\x6c\x2e\x12\x8e\xc7\xd0\x11\x61\x3a\x1c\x8c\x43\x47\xbe\xed\x50\x6d\xb6\xec\xf1\xaa\xbe\xbf\x80\xf1\xf4\x56\x94\xc5\x01\xf4\x79\x80\x88\xd9\xb3\x70\x15\x39\x10\xaf\x31\xf1\x2c\xab\xe9\x81\x68\x85\xde\x8c\x31\xc3\xef\xdc\x00\x39\x10\x77\xb7\x67\x38\xae\xb1\xac\x87\x4a\x98\xef\xf7\x94\xee\x29\xc1\x81\xfa\x37\xc1\xd3\xe8\x67\x71\xf5\xa1\x50\x11\x8b\xbe\xab\xff\x15\xb1\x68\xd3\x44\x19\xfb\x75\xc4\x0f\x0d\xba\x09\xdb\x8a\x7d\x15\xba\xd2\xff\x55\x78\xac\x50\x7a\x9e\xea\xf5\xb7\x01\x42\x8f\xaf\x44\x2a\x02\xb4\x3f\xa1\x8f\xa3\xbf\x8a\x85\x48\xe0\xd5\xe8\xee\xa9\x80\x23\x2d\x84\x45\x9c\x8a\xce\x0d\x43\xf2\xbf\x89\x00\x29\x0a\xb1\xb6\xff\x26\x52\x99\x4d\x15\x85\x0c\x9c\x3e\x73\x0f\x2b\xbe\xc0\x11\xfa\x04\x3c\xbe\xaa\xba\x12\x2d\x28\xe3\xc9\x62\x72\xb2\x4c\x45\x9e\xd1\xd9\x94\x9e\xb2\x1f\xf5\xeb\x93\x93\x53\xf6\x8b\xe0\x8f\x6e\x99\xf1\x26\xd2\x6d\xd1\x14\x57\x45\x59\xa8\x87\x24\xba\x29\x56\x2b\x51\x45\xcc\x2e\x3e\xc6\x53\x7f\xcf\xfe\x2e\xf8\x63\x29\x94\x12\xf2\x62\x9b\x2f\xf5\x62\x12\xcd\x23\xb6\xae\x2b\xf5\x33\x10\xc6\x26\xd1\x9f\xe7\xf3\xc8\x6b\xbf\xbf\x88\x1e\x43\xa2\xb5\xe8\xee\x28\xfa\x16\x30\xf3\x36\xf9\x3d\x99\xb3\x2a\x7d\x96\x9d\x10\xd9\xb6\x73\x4a\xa7\xa4\x02\x60\x08\x40\x81\x48\x54\x37\x6b\x2d\xf8\x59\xe0\x2c\xc6\x23\xe4\xaa\x05\xf8\x9b\xb3\x64\xce\x10\xca\x73\x8e\xf4\x75\x9c\x93\x6a\x11\xe1\x5a\x18\x25\x76\x9e\x44\x4e\x35\x3c\x47\x8c\xbd\xfc\xf9\x9f\xcf\xf3\x29\x7f\x46\x23\x5c\xb6\x2c\x52\xc0\x6e\xea\xa0\x3a\xe4\x54\x8a\x34\x07\x80\xcf\x82\x52\x56\x2d\x88\x4b\xcd\x46\x3e\xe9\x70\x3d\xcc\x92\x1b\x85\x1f\xd9\xd4\x27\xc3\x0f\x4c\x11\x31\xfe\x34\xfa\x19\xf9\x77\xf1\x3b\x9a\xf8\x05\x19\x4d\xbb\x0b\x05\x40\x43\x3f\xfa\x47\x52\x4e\x9a\x4f\x8b\x67\xfb\x0c\xa0\x99\x3e\x07\xf0\x8b\xdd\x94\x7b\xdd\x07\x3f\x97\xa2\x28\x89\x48\x23\x5c\x8e\xa3\xa9\x1a\x0e\x78\xe5\x06\x7c\x76\x52\x9f\xec\x4e\x9a\x93\xd9\x7f\x52\xaa\x7b\x9d\xed\xba\x7e\x56\x2a\x1c\x3b\x20\x10\xb1\x82\x93\xc9\x76\x36\x58\xb7\x88\x96\x84\x68\x1c\x47\xdd\xbe\x18\x20\xac\xb8\x0f\x22\x36\x39\x63\x15\x48\xae\x2c\xe7\x46\x20\xab\x28\x6b\xf8\xa7\x95\x58\x0f\xa8\x4e\x7c\xea\x71\x21\xe7\x47\x39\x8f\xf4\xbe\x1b\x59\xda\xbe\xf1\xb2\xc6\x71\xd1\xb6\x18\x91\x73\x9e\xb7\xed\xc4\xdb\x73\xb4\x50\x16\x15\x55\x59\x1c\x00\x89\xc1\x0a\x00\xec\xb2\xde\x8b\xc1\x0c\xe3\xad\x58\xaa\xc6\xb1\x92\x19\x78\x8d\x4f\x6c\x09\x52\xf3\x06\x6f\x53\xc1\xf5\x50\xa4\x4d\x46\xc1\xc5\x29\x28\x93\xee\x9d\xa9\x9d\x7a\x6d\x4b\x8a\xb1\xf9\xc4\x6a\x56\xb1\x9c\x4e\xf5\x9c\xf5\xb6\x59\xe5\xbb\x94\x78\x76\x6d\xd2\x33\xa2\x02\x5a\x4a\x2f\x9e\xa7\x88\x5e\x36\x0d\x02\x7e\x3d\xd6\x7a\xd5\x51\x0f\xc9\xe3\x10\x7a\x14\xb4\xa3\x46\xb8\x87\x5e\x8d\x4c\x64\x77\xd4\x07\xd4\x0e\xb9\x88\xce\xa2\x44\x82\x99\x9f\x03\x92\x49\x1e\xf3\xaa\xd8\x80\xe5\xce\x37\x4a\x48\xf8\x01\x66\xcf\x68\x2d\x53\xee\x36\xdd\xe3\xba\x28\xcb\x37\xa6\x18\xfa\xb1\x14\xf7\x5f\xc9\xfa\xce\xfe\xbe\xb8\x91\x45\xf5\x01\x9e\xba\x55\x71\x32\x67\xd7\xb2\x58\xbd\x90\x22\xb7\xbf\x5f\x42\xaa\xe1\xd3\xab\x6a\x15\x06\x5c\xa8\x5c\xba\xaf\xdf\x62\x26\xe6\xa7\x17\xf7\x6d\x7d\xe7\x22\xea\x41\xf3\xb5\xcb\xb4\xee\xca\x89\x62\x20\xfc\xd8\xde\xe4\x68\xcc\x73\x57\xac\xea\x3b\xf8\xf5\xaf\x6f\x80\x60\x4f\xff\xaa\xeb\x0d\xda\xad\x9a\xbd\x2e\x79\xdc\x33\xd8\x1a\x47\x8c\x0e\xd0\x7a\xe0\xb3\x9e\x4a\xfe\xbf\x7b\xcf\xe6\x70\xe3\x01\x08\xb1\x06\x80\x4f\xd9\x8e\xff\xe8\x0e\x1f\x60\x61\x8e\xa7\xa0\x62\x4d\x76\x00\x44\xf3\x57\x41\xf4\x81\x39\xc7\xc1\x0b\x63\x00\x1c\x3d\xbd\xc7\xc6\xc3\x85\xe8\xa6\x61\x1c\x47\xd7\x42\x45\x05\xfc\xec\x14\xcd\x05\xcf\x8d\xcf\x22\x4e\xa1\x45\x91\x94\xa9\xca\x8e\x3a\xa5\x08\x27\xb5\x73\xec\x45\xbe\x7b\xbb\x63\x49\x3d\xe3\x90\x9e\x94\x48\x6e\x70\x91\x0a\xbd\x8e\x44\x15\x0c\xa2\x88\x32\x54\x14\xe9\x73\x23\xae\xec\xf6\xcd\x84\xf3\xba\x6d\x75\x9d\xe4\x14\xd8\x45\x86\x88\x47\x4d\x87\x78\x44\x87\xa2\x5d\xdb\xc2\x21\x50\x6f\x8c\x20\x64\x3b\x9c\xc8\x4e\xb4\x8b\xf4\xe1\x4f\xd7\x86\x47\x45\x75\x23\x64\xa1\xa7\xa3\x6e\x88\xa6\xd7\x10\x1c\x34\xee\xb9\xf1\xdf\x95\xc6\xa8\x65\xb7\x28\x75\x48\x67\x48\xcd\x24\x85\xc6\xe1\x12\x29\x2d\x06\x70\xbc\x01\x24\x94\xe9\x51\xbb\xa9\x77\xdd\xea\xf7\x23\xf9\x78\x47\xd2\xa0\xd7\xfc\xce\x9a\x33\xe9\xce\x89\x0e\x3e\xc8\x2d\xdd\x00\x2c\x24\x37\x79\x69\xa0\x85\x94\x5e\xcc\xfe\x0e\xe0\x60\xfc\xef\x40\x07\x8a\x80\x3d\xb2\x6d\xe5\x82\xd4\xfe\xb2\x56\x50\x06\xc0\xe9\xb2\x6d\x8b\xe6\xb5\x5e\x81\x04\xa9\xe9\xa2\x6e\xdb\x79\x82\x8c\x10\x4e\x19\x93\x46\xc8\x89\x1f\x31\x23\x69\x64\x03\xa5\x89\x57\x35\xde\x5f\xa1\xec\x7c\x71\xd4\xed\x4f\x4c\x13\x0d\x31\xc0\x2c\x40\xd9\xf8\xca\x0e\xaf\xbe\xd0\x3d\x5e\x54\xd7\x5d\x14\x42\xf1\xb4\xb4\x30\xbb\x66\x45\x93\x46\x37\xd0\x2f\x01\xd0\xa2\x95\x56\x6d\x9c\x3d\x1d\xc0\x46\xfb\xfd\x6a\xb6\xdc\x9c\x4f\xb6\xb3\x40\x06\xd7\x3b\x58\x27\x3b\x02\x16\xaa\x95\x29\x59\xc3\x49\xde\xb6\xd5\x27\xef\xc5\x35\x78\x55\x2d\xcc\xd6\x52\xb1\x86\xd5\x34\x71\x50\xb6\x4d\x1c\xe7\x28\x23\xfd\x11\xe1\xc2\xeb\xea\x5a\x0f\x84\x13\x93\x8b\xdd\xba\x30\x7f\x90\x3e\xd8\x6e\x38\xdd\x0d\xb6\x18\x29\x3a\x41\x14\xec\xc8\x11\x36\x4d\xcf\x0d\x26\xb9\x87\x34\xc6\xfe\x22\xc8\x9c\x49\xb6\xb3\x17\x44\x76\x44\x78\xc7\x60\xfe\x9b\x20\xdb\xd9\xf0\xf4\xc3\x46\xb6\x33\x23\x43\x78\xb5\xc0\x9d\xad\x4b\xad\x1b\x2d\xa3\x43\xa2\x14\x6b\x75\x02\xe3\xe0\xb1\xfb\x26\x99\xef\x47\xc6\xc4\xc7\x13\xd9\x53\xb3\xa9\x7b\x96\x80\xa8\x65\xd0\x27\x51\xa3\x58\x88\x22\x66\xd4\x0d\x46\x6c\x1c\xea\x15\xdd\x14\x11\x53\x3d\x49\xf0\x5e\xad\x1b\x7e\x01\x71\xff\x9c\x81\xfb\x7c\x3d\xa4\xfe\x93\x0b\x69\x1d\x3f\x8f\x23\x9a\xa4\x32\x3b\xaf\x9e\xff\x19\x6e\x3a\x8b\x54\x68\xd1\xb5\xca\x74\xfa\x75\x5a\x65\x6d\x5b\xa7\xd5\xc9\x33\xf8\x3b\xf7\x30\xee\xf6\xbe\x18\xee\x80\xe5\xba\xc2\xe9\xd5\x90\xff\x05\x58\x19\x82\x8b\xbe\xfe\x42\x78\x58\x89\xdf\x53\xf4\x01\x14\x00\x1e\x48\xfa\x90\xe0\x58\xeb\x4e\xc2\xb5\x3e\x40\xe7\xf9\xf3\x02\x94\xa9\x75\xaa\xd2\x3c\xcb\xba\xb1\x06\x12\xbf\xde\xc3\x6c\x85\xea\x7d\xdf\xdb\x5c\x2e\x7c\x28\x3a\x49\x93\x6e\xa0\xee\xc1\x3e\x70\x88\xa1\x6b\x94\xcf\xef\xee\x84\xa8\xb8\x54\x4c\x1e\x34\x72\x97\x8a\xe9\xd5\x72\xc4\x67\x58\x9f\xc8\x50\x35\x5f\x8a\x8d\x75\x47\xd8\xca\x7a\xcb\xa5\x35\xa6\x6b\x8a\xea\x9a\x17\x7a\xf5\xc7\xdf\x1d\x82\x0f\x9a\xf3\x01\x44\x52\xc3\x95\x35\xad\xce\xa5\xb2\x37\x69\x77\xdc\xba\x08\x58\xcb\x6b\x51\xad\x78\x85\x3f\x01\x27\xaf\xee\x6d\xac\xb2\xdb\x58\xf7\x6c\xb9\x93\x43\xcd\x3f\xd6\x72\x6b\x96\x6e\x5b\x5c\x37\x54\x84\x59\x73\x11\xd8\xca\xdc\xaa\xfa\xdf\xb8\xe2\x77\xef\xf7\x4c\xee\x46\x18\x71\x98\xfc\xbd\xcc\xfc\x06\x98\xad\x76\x28\x8a\x1a\x86\xdf\xba\xe1\x8a\xdb\x36\x4b\xbd\xb6\xcc\xec\x85\x5a\xff\xc3\xa7\x82\xcd\xd9\xd9\xf8\x3b\x73\x33\x8c\xa9\xda\x0b\xb9\xfa\x8e\x13\xdb\xaa\x27\x5d\xeb\xd3\xa7\x6a\xda\x3d\x85\xe9\x35\x4a\x6c\xcd\x65\x8c\x1f\xd4\x59\x50\xa1\xef\xa3\x4d\xdf\xf2\x6a\xc7\xb1\xd4\x33\x6c\x21\x1d\x8e\xc5\xa1\x46\x75\xef\x91\x1d\x65\xcf\x06\xa7\x06\x6f\x90\xfa\xef\x98\x9f\x1e\x7f\x74\xae\x4b\xbd\xad\xd9\xf4\x8d\xc3\x60\x01\xe9\x55\x97\xd9\xbb\xcb\xb5\x86\xe2\x3a\x38\x15\xd8\x65\x16\x2e\xc6\x44\xc6\x3d\xc1\xbc\x5b\x84\x51\x13\xa2\xec\xd4\xc5\xd6\xc0\x70\x16\x01\xe6\x2b\x9e\x03\x27\x80\xdb\xab\xd7\xe6\xa6\x57\xbc\xcb\xd9\xfa\x1e\xda\xd4\xa5\x3e\x08\x21\x82\x26\xa3\x05\x9f\xf8\xab\xda\x47\xca\xfd\x57\x81\xac\x76\x5b\xda\x2f\x3b\x88\xf2\x77\x89\x5b\x4b\x82\x0a\xc0\xbb\x29\x70\x7e\x82\xeb\x54\xd0\xe4\x46\x64\x78\xa7\xa7\xfe\x30\x18\xf6\xc2\xc7\x7e\x5d\x7b\x15\xd0\x53\x0f\x02\x02\x2b\xa7\xb1\x02\x5a\x87\x0b\x58\x5b\x1e\xf5\x31\x28\x1f\xb7\x59\xda\xb3\xe6\x4e\x6f\x56\xc3\x77\xb3\xff\x3c\x41\x19\xa3\x6e\x88\x78\x0a\x3f\x7f\xf8\x86\x9e\x3e\xf3\xbc\xde\x22\xf8\x36\xd2\x59\xad\xef\xf9\x60\x20\x32\xd7\x31\xfc\x11\xb9\x0e\x2a\xc5\x0a\xc5\x6a\x85\x08\x4e\x88\xa5\xd8\x36\x37\xf5\x5d\x7b\x53\xac\x04\x7d\x72\xca\x72\xc5\x4f\x3b\x10\xe0\x27\x1e\x42\x53\x03\xf7\x10\x2a\x8e\x09\xd8\x24\x57\x33\x54\xcb\xa1\xa7\xd9\x6f\x3b\xd1\xa8\x17\xf6\xd4\xfa\x5a\x22\xf2\xde\x68\x38\x69\x14\x4d\x02\x66\x9d\xc6\x94\x14\x8c\xee\x6f\xf3\x92\xe2\xa3\x2a\x96\x1f\x08\xf5\x10\x7f\x76\xca\x97\x0f\xc6\x39\x98\x2a\x6b\x3a\xbd\xa7\xac\x52\xbc\xf3\x9d\xea\x92\x29\xd5\x90\xd4\xfe\x11\xa5\xe9\x44\xa0\xbb\xbb\x42\xad\x9d\xd9\xc6\xf9\xb3\x13\x45\x8b\xd4\x6e\xd0\x53\x22\x39\xec\xe9\x34\xe3\x45\xea\x29\xbe\x32\xee\x33\x94\x93\x62\x66\x0e\xbc\xbc\x30\x17\x4f\x7a\x37\xed\xca\xb1\x54\x63\x16\x79\x64\xad\x66\x4a\xef\x78\x42\xe2\xa1\x24\xcd\xe8\x6c\x59\x57\xcb\x5c\x05\xaf\xa2\xa7\x51\x46\x0d\xfc\x68\xd1\x87\x1f\x05\x82\x89\x22\xad\x33\x5c\xf7\x24\x53\x4c\x74\x2e\x7c\x1e\xac\xa9\x1a\xca\x05\x3a\xc1\xb5\x1e\x4a\xe6\x0e\xdd\x83\xa2\xf6\xe1\xaa\x67\x48\xc4\xe9\xb7\xbd\x85\x4c\x80\xf9\xb0\xa7\x21\x2d\x71\xb1\x26\x16\x75\x68\x72\x76\xd4\x29\xa0\x2b\xd5\xb6\xba\x63\x99\xf4\x55\x77\x25\xae\xed\xba\x83\xa7\xa5\xdb\x24\x4e\x00\x34\xfe\xec\x84\xc8\xd3\x2e\x10\xf4\x74\x58\xec\x12\x9b\xa7\xe9\x37\x87\x0d\xd7\x0d\x22\x77\x15\xe9\xe4\x94\xc6\xe3\xfa\x23\x82\xa5\x25\xab\x98\xcc\x28\xab\x9e\x9f\xc5\x71\xbe\x90\x89\x3e\x3c\x0c\x23\x9d\xb1\x79\x66\x7c\xd9\x1d\x12\xb7\x00\xf7\x6b\x36\x39\x03\x76\xe3\xc6\x01\x62\xa3\xc3\xb4\x60\x5b\x50\x5f\xf8\x96\xca\x8a\xb2\x7a\xab\xbc\xb0\xc9\x9c\x3d\x1a\x9b\xb4\x57\xb0\x74\x24\x8f\x7b\x86\x8b\x48\x32\x90\x4e\xf6\x4c\x52\x66\x9d\xca\xcc\x41\xb9\x10\x4d\xa2\x5c\xe0\x1b\xdc\x00\x13\xc9\x5c\x63\x26\xae\xb9\x6d\xf3\x25\xd2\xb5\x24\xc3\x56\x4a\xd2\x8c\x19\xc8\x40\xfd\xec\x93\x7a\x3a\xe5\xa7\x91\xca\x88\x60\xa5\xde\x67\x81\xb6\xdc\xfc\x9c\x05\x35\x80\x21\x6c\x5e\x60\x05\x5c\xdb\xbb\xde\x32\x1e\xea\xac\x42\x9f\xba\x11\x3e\x5c\x30\x35\x59\xf4\xba\x37\x01\xe1\xb5\xf0\x1d\xb5\x8f\x90\xfc\x7a\x32\x77\xc6\x1e\xae\xeb\x25\x76\xfd\x59\x77\x9b\xbf\x20\x9f\xde\xb1\x4c\x65\x94\x26\x8d\x4f\x61\x69\x83\x8d\x1c\x40\xd9\x92\x97\xb0\x05\x60\x29\x3e\x02\x6a\x00\xef\x25\xea\x38\x75\x0d\xb8\x4a\x2b\xfe\x2b\x91\x34\x63\x35\x07\xe4\xcf\x50\x22\xaf\x51\xf5\x53\xa7\x67\x36\x02\xd7\x87\x07\xca\xa4\x61\xf0\x02\xc0\xe2\x9a\x39\xea\x1c\x3d\x82\x43\xed\x46\x05\xea\x0c\x3c\xdf\x80\x46\x83\xba\x32\xd4\x3c\x37\x06\x85\xa4\xa6\x5d\x1a\x55\xc6\x6a\x8a\x85\x6c\x5b\x62\x32\x95\x19\x03\x96\xf2\xc2\x58\x6d\x2a\x40\x4a\xde\x93\xe5\x68\xdf\xd3\x70\x3d\x0a\x16\x15\xb7\x36\x95\x4c\x30\xfb\xb9\x5b\xa2\x36\x00\x74\x5c\x6f\x29\x1c\x84\x7c\x2a\x80\x12\x37\x7c\x93\x1d\xbc\xa0\x10\x95\xe3\x17\x80\x9a\x83\xb6\xc8\x1d\x71\xe6\x26\xdf\x92\x25\x5b\x2a\x56\x52\xb6\x21\xb6\xa8\x20\x4a\xc6\xb1\xff\x68\x51\x62\x4a\xca\xca\x8e\x40\xd7\xc4\xb0\xcf\x86\x47\xd7\x84\xea\xdf\xb6\x38\x96\x7f\xce\x30\xeb\x9a\x50\xfd\xdb\x2d\x97\x26\x0c\x9f\xdc\x46\xb7\xf1\xe1\xd1\x76\xcc\x2e\x19\x79\x55\x6c\x92\x92\x21\x81\x81\x5f\xe5\x3d\xa5\xac\xdc\x5f\xce\xdc\xce\xda\x79\x40\xac\x15\x7b\xb4\x9b\x44\xf2\x18\x3d\x8d\x92\x74\x64\x28\x9a\x73\x4b\x37\xcb\xd1\x99\xdb\xb4\xd8\x4e\x10\x69\x04\x2b\xd6\x5d\x91\xe9\xf5\x46\xee\xb3\x3d\x33\xc9\xf7\xce\x9d\x1b\x22\xe8\xc2\xd0\x0d\xe0\xee\x94\x08\xde\x11\xde\x1f\xf9\x16\x3b\x73\x70\x77\xeb\x59\x05\x4b\x0e\xa3\xce\xdf\xe4\x64\xc6\xc3\x47\xa4\xcd\x0f\x82\x1c\xcd\x87\x42\x3b\x4a\x33\xc0\xc2\x6a\x1f\x30\xf7\x66\x6b\x7b\x51\x57\xc0\xa5\xa9\x55\xaa\xe9\x27\x76\x83\x18\x18\x2b\x7d\x52\xde\x5a\x6d\x30\xdb\x04\xca\xe4\x1c\x8e\xc8\x0e\x15\x8e\x45\xeb\x7b\x2d\x4e\x45\x58\x5d\xb0\x08\x96\xd8\x65\x6d\x6b\x80\x1d\x61\x62\x86\xfc\x26\x40\xd0\x42\x67\xbb\x0a\x42\x57\x71\x4c\x72\xf7\xc0\xe7\xac\xd1\x33\xd4\xd1\x8e\x30\xff\xc1\xdf\x61\xbb\x6f\xda\xb6\x21\x74\x4f\x59\x17\x32\x9d\xb2\x9b\x91\x1d\x7b\x2c\xac\xfb\xe8\xe4\x84\x75\x7c\x2d\x50\x46\xd3\x65\x6d\x9b\x87\x3c\x28\x86\xea\xcf\x2e\x66\x19\xab\x1d\xca\x19\xec\xfc\xd6\xd2\x05\x5e\xe9\x33\x71\x84\xb2\x27\xa8\x48\x59\xc1\x39\x27\x9b\x45\xa4\x65\xd0\x28\x89\xb0\x01\xe1\x3b\xfc\x3d\xe1\xfa\x78\x3e\xb9\xf5\xf0\x00\x6e\xf5\x8a\xb6\xac\x2b\x55\x54\x3b\x71\xb4\xe1\x93\xf9\x7e\xa5\xd7\xa2\xdb\x38\xbe\x05\x2d\x4b\xa7\x6c\xa8\xe8\xbe\x58\x13\xb2\xe3\x23\x14\x60\x14\x8e\x24\x61\xe8\x8a\x76\xd6\xdc\xeb\x3e\x75\x57\x1c\x13\x39\xb3\x06\x2e\x3c\xdd\xba\xdf\xac\xfb\xf9\x8b\xf7\xfb\xd7\x8c\x99\x5e\x2f\xa1\x6c\x16\x28\x1d\x3c\x49\xba\x51\xd3\x29\x5b\x3b\x54\x7a\xb2\x1c\x21\x64\x80\xef\x16\x4b\x5e\x26\x64\x8d\x20\xd3\xc0\xd7\xd8\xe7\x76\x68\xdb\x92\x8d\x7d\xce\xf0\x23\x4a\x29\x23\xde\x9d\xde\xb2\x6d\xcd\xd3\x09\x5e\xad\xeb\x30\x3c\x98\x4d\x78\x39\x4a\x11\xb1\x2e\xeb\x1c\xf0\x32\xe0\x6e\xe4\x06\x97\x44\x6f\x14\x6d\x1d\x24\x7c\xb9\xa7\xa6\x0d\x4a\xe0\x1a\x70\x6f\x58\xc9\x5d\xba\xcb\x45\x14\x25\x4b\xb8\x6b\x70\xd0\xf6\x41\x89\xc0\x25\xc8\xb6\x6a\x1c\x93\xae\x89\xb9\xb3\x0f\x18\x1b\xcd\x5e\xbc\xee\xfb\x74\x9e\xf9\xfd\xe5\xbf\x39\xf3\xdf\xfc\xea\xbf\x79\x96\xe9\x41\xbe\xe3\x93\x33\xb6\xa2\xba\xd2\xb7\x0b\x9b\x73\x51\x1d\xdf\xc6\x31\xd9\xf0\x5b\x73\x28\xa2\xc9\xad\xcf\x9f\x64\x57\x05\xf6\x68\x4d\x18\x74\xa3\xd4\x71\x4c\xec\x07\x7c\xb2\xa1\x6c\x13\xc7\x5e\xa7\x0e\xdb\xd4\x0d\xcb\x4d\xdb\x9a\x8e\x64\x3e\xaa\x98\x5d\x7b\xd8\xca\xe3\x8c\xa8\x98\x9e\x18\x14\xcb\xbe\x54\x64\xb3\xd0\x13\x24\x99\xb3\x8a\xdd\x50\x06\xc9\xdd\xea\xca\xe8\xd9\xb3\x33\x1a\x95\x8d\xee\x56\x50\x65\xd9\x10\xf3\x97\xcf\x29\xdd\x67\xdd\x2a\xdb\x67\x7b\x5a\x84\x07\x07\xbb\x32\x0b\x9a\x84\x2f\x40\xe2\xb3\xc6\xa5\xcd\x56\x88\xd5\x00\xd6\x04\xe5\x4c\x11\xc7\x23\x54\x61\xbe\x10\x2d\x68\xf2\x68\xf7\xdd\x44\xb6\xed\x44\xc6\xb1\x6a\xdb\x0d\x58\x0f\x8b\x4e\xcc\x15\x56\x90\xc6\xf7\x2a\x8e\x27\x1b\x30\x32\x54\x1e\xc3\xf6\xfa\x7e\x56\xaf\xd7\x8b\xca\x89\xc4\x7c\x9e\x74\xb7\x66\x26\xff\xee\x2d\xd0\x61\xd8\x07\xdd\x92\x78\xe0\xd6\xf5\x69\xfc\x44\xbc\xe0\xb4\x0b\xce\x92\xf1\x28\x4e\xc2\xb7\x37\x78\x15\x2e\xc2\x71\x0c\x70\x53\x55\xb7\x9f\xe0\x2f\x60\x66\xa2\xac\x9a\xd5\xe5\x8a\x57\x4e\x08\x61\xdd\x4f\x7f\x97\xd0\xa2\x55\x5d\xae\x68\x1c\xc3\xdf\x4e\x31\xa6\x53\x30\xf9\xf4\x38\x90\x4c\x38\xdd\x6b\x09\x3d\xd0\x3e\xaf\xf3\x95\x78\x57\x1f\xf6\xff\x06\x29\xc3\x98\x62\xe7\x82\xc2\xe2\xe1\x2e\xc2\xd9\xdc\x32\x2c\xe8\xa1\xa6\x4f\x94\x20\xcd\x08\xe2\xee\xd5\xd5\x9e\x09\xe3\x66\x6e\xde\x1d\xba\xf4\xe3\xfd\x55\x5c\x20\x8f\x18\xb4\x28\xc1\x98\xfa\x5c\x1b\x2a\x5b\x15\x5f\x1b\x70\xbc\x70\x44\xb1\x9a\x9e\x93\xc2\xe1\xed\x03\x7a\xde\xba\xa8\x8a\xe6\x06\x56\x60\x05\x92\x26\x99\xcc\xe9\xbe\x63\xc5\xc6\xf7\x3c\x67\x7a\xab\x42\x3e\x3e\x68\x35\x8f\xd7\x2e\x37\x4a\x4e\x6c\x5a\xf3\x9e\xe5\xb4\x7f\xec\x09\x66\xc0\x18\xaa\x84\x8e\x6e\xad\x47\xf1\x89\x29\x22\x5d\x69\x46\x79\xa0\xd0\xad\xdc\xe7\x82\x52\x06\xa1\xce\xba\x47\x0c\x18\xac\xc6\xbd\xcd\xb1\x10\x13\x2d\xc2\x75\x9e\x08\x01\x73\x14\xb4\x3c\x08\xb5\x4d\x00\xa8\x4c\xf1\xbc\x86\xc0\x64\xfa\x5f\x28\x7a\x1c\x57\x80\x7a\x46\x3b\x9e\x57\xf0\x23\xce\x87\x11\x73\x27\x55\x74\x1f\xe1\x89\xcf\xb9\x98\x15\x27\x27\xe7\xb4\xd6\x9f\x68\xf9\x75\x62\xa1\x13\x5c\x49\xe1\x15\x94\x75\x02\x8c\x98\x04\x02\xf4\xe8\xc2\x4e\x95\x94\x29\xbd\xc4\xd7\x16\xa3\xb2\x60\x67\x94\x1e\x4d\x54\x1c\x4b\x2d\x55\x8c\x90\x83\x61\xcf\x8f\x68\xf0\x6c\xeb\x12\xc7\xba\xf5\xb1\x26\x65\xd2\x6f\x2a\x56\x71\x99\xda\x66\x8d\x32\xe0\xe5\x09\x5b\x39\x0b\x9b\xb9\x5a\x54\xdd\xb9\x18\x61\x89\xcd\x90\x9c\xcc\x59\x8f\x60\x4d\xf7\x2d\xc0\xf8\x63\xb3\xe2\x5f\xcf\xc9\x58\x6f\x3f\xaa\x6b\x53\x85\x6d\xaa\xb0\x4d\x8d\x1f\x91\x6e\x4a\x65\x9a\x12\x1d\x3e\xe0\x4e\xd3\x6b\x4a\x9d\x8a\x6b\x46\x05\xcd\x88\xba\xb5\xf9\xb9\x7a\x9e\x83\xb7\x4c\x95\xaa\x2c\x8e\xf5\xbf\xa6\xb0\xc1\x83\xb7\x36\xd9\xd1\x6e\x2b\xb5\xa7\xc1\x5d\xb8\x91\x26\x19\xca\x8b\x0c\x25\xc9\xfe\x8d\xb8\xe5\x9a\x5b\xeb\x2c\x8e\xcc\x5f\x7f\xdf\x09\xec\x81\x50\x29\xdd\xb6\x63\xbc\x32\x07\x60\x35\x70\x76\xdb\x55\xac\x54\x44\x41\x4b\x62\xc2\xbe\x23\x45\x53\x16\x2b\xf1\x65\x7d\x57\x25\xa5\x32\x32\x2e\x65\x10\xf8\xd3\x16\x82\xa0\xfc\x26\xe8\x1d\x32\xde\xe8\x60\x53\x4d\xca\xf4\xba\xfb\x4d\xd5\x19\x20\x61\x1a\x7b\x08\x7f\xb3\x53\xde\x0b\x48\x09\x5f\x98\x84\xba\x77\x26\xb9\xfd\xef\xfb\x5b\x0c\x17\x75\x5b\x4b\x65\x57\x68\xa8\x1e\x8e\x46\x9e\x66\x9d\x06\xb7\xbf\xe6\x82\xf3\x14\xdc\x53\x63\x64\x3c\x28\xf9\x9a\xda\x73\xf5\x5c\xfa\xc8\xa2\x44\x70\x70\x2a\x20\xc6\xbb\x00\x27\xae\x74\x23\xeb\xe4\x84\x9d\xd1\x23\xe9\xce\x26\x46\xeb\x5d\x6f\x09\xa8\x80\x8d\x3a\xd8\x3b\x6a\xf3\xf0\x3a\x03\xcb\x61\x65\x12\xab\x34\xcf\x25\x00\x4c\x05\x8a\x69\x7e\xf6\x99\xf7\x3a\xd0\x6e\xaa\xb6\x25\x05\x2c\x8b\x8d\x22\xd4\x7e\x08\x8a\x89\x20\x1a\xda\x7c\x33\x6f\xbb\xe7\x8f\x4d\x59\xdf\x25\xff\x35\x9f\xb3\x75\xde\xa8\xe4\xd9\x7c\xde\x69\xf8\xff\x3c\x9f\x9b\x2d\x77\x25\xb4\x50\x1c\xea\xe2\x1c\xcb\xa7\x4e\x0e\xb0\xc5\x9d\x98\xa1\xb2\xb6\x55\x48\xf6\x05\xcb\xb9\xb7\xc2\xcb\xae\xbb\xbd\x0d\x34\x50\xa8\x4b\xa6\xe8\x51\x35\x28\xbe\x40\x43\x20\x1b\xab\x30\x20\x85\xfd\x1b\xcc\x43\xcc\x1a\x4c\x0d\x5f\x21\xd8\x4a\xf4\x3b\xb4\x1d\x78\x95\x17\x51\x7a\x64\xa0\x30\x22\xcb\xb9\x14\x59\xf2\x8c\x37\x15\x8f\x10\x9a\x13\x20\x14\xb5\x14\xbf\x55\x88\xaf\x2e\x56\x5c\x19\x54\x17\xb1\x62\xe4\x63\xd4\x1f\xf0\x2d\x8f\x54\x64\x21\x72\x0c\xef\x07\xdb\xce\xe0\xc7\xdf\xec\x7b\xee\x72\xda\x1b\x1b\xef\x1b\xc5\x56\x8a\x1b\xd4\xef\x5c\x29\xf9\x35\x38\xf5\x1e\x05\x02\x93\x0e\xff\xe8\x7d\xfd\x25\x7c\x7a\xf0\x42\x9c\x75\x88\x1f\xff\x06\xa3\x65\xf7\xd1\x21\x42\xd9\x41\xb9\xc2\x3b\x81\xee\x00\xac\xb7\xf0\xcf\x26\xc0\x0b\xf1\xdf\xf8\xe7\x99\xfe\x43\x07\x6e\xbf\x01\x7e\xc1\xe2\x12\x34\xa3\xf6\xea\x9f\x18\x66\x89\xc0\x39\x5e\x4f\x20\x8e\xd5\x37\xd7\xd1\x3d\xff\x3e\xb8\x49\xf7\x30\xd5\xf5\xc2\x6c\xed\xba\x16\x37\x2a\x71\xf4\x16\x9e\xcd\x01\x2e\xe3\x5c\x2e\x20\x2c\x68\x09\xe0\x5f\x2f\x3a\x8b\xb4\xc2\x37\xcd\xab\x78\xe1\x2c\xd2\x14\xa5\x8b\x2a\x21\x3d\x4a\x17\xc5\xe4\x34\x8a\xa8\xae\x4e\xd1\x59\x8a\x15\xf6\xd4\x8c\x49\x58\x46\x02\x9d\x80\xd1\x03\x80\xa8\x5f\x54\x2b\xa8\xa8\x79\x69\xa8\xcf\x41\xce\xb5\xd5\x4f\x10\x8a\xfe\xb1\x4f\xa3\x8f\x26\xbe\xfe\x70\x8c\x63\x33\x48\x91\xf7\x16\x00\x70\xec\x80\x36\x9b\x9e\x19\xaa\x47\xfe\xe5\xd9\x80\xe2\xc6\xd0\x01\x9b\xb8\x5c\x4b\x42\x60\x97\x3a\x3a\xe4\xfa\x17\x68\x4a\x8b\xc5\x4e\xd7\xa7\xe5\xbc\x01\xeb\x39\x3a\x61\xf2\x22\xad\x80\xed\x67\x88\x5e\x23\x61\x50\xde\x0c\xee\x61\x7d\x5e\x6e\x10\xad\xd5\xa2\xd7\x93\xd2\xdc\x28\x7a\x69\xa1\xb6\xd2\xc1\xde\x0d\x47\x0e\xb2\x8e\x9a\x32\x9f\xbe\xbf\x9b\x9e\x5e\xd3\x51\x89\x61\xa5\x8c\x71\xa0\xeb\xb6\x23\x08\x0a\x8f\xac\x01\x23\x65\x6f\xe8\x3a\xe7\x02\x2d\x6f\xea\xf4\xf2\x8c\xc1\xbf\xa0\xfc\x32\x66\x9a\x26\x95\x45\x0e\x23\xc5\xbc\xaf\x29\x2b\xac\x97\xe1\xd6\x5c\xdb\x22\x52\x13\xae\x67\xad\x05\x6d\x68\x11\x69\x0e\xc8\xe7\x36\x26\x62\xde\xea\x37\x3a\xc8\x63\x51\x53\xdd\x72\x41\x44\x8f\xe0\x1f\xfd\x04\x8f\x23\xef\xb2\xf4\x41\x05\x08\x1b\xfe\xa4\x36\x86\x28\x3e\x15\x52\x99\x37\x00\x30\x1e\x79\xe6\xd6\xd7\x7e\x0a\xe1\xc5\x86\xa0\x0b\x91\x8c\xb9\x00\x87\x05\x0b\x69\x04\xb7\x43\x70\xe1\xfe\x12\x8a\xc6\x00\x1f\x5f\x42\x7b\x18\xc5\x1f\x5f\x42\x3d\x4f\xbd\x14\x93\x7f\x5d\xdc\x83\xdb\x8d\xc8\xfa\x4b\xe9\xa0\x7c\x7f\x70\x29\x3d\xb0\x46\xea\x2d\xc6\x16\x00\x37\xf9\xc2\x84\x58\x63\xcf\x60\x01\xfc\xf4\x05\x0e\x2d\x08\x3f\x71\x31\xd3\x91\x81\xe0\x78\x6b\x17\xab\xfc\x0a\x8d\xb6\xc7\xcd\x59\x7a\x8b\x5e\xa4\xf2\x2b\x30\x1a\xf6\x1c\xdf\x17\x60\x57\xf8\x4d\xa5\xc5\xe6\xb3\x39\x4d\xb6\xca\x22\x1a\x5a\x8c\x13\xda\xb6\x9b\x61\x20\xa0\xc3\x49\xb1\x5e\xcc\x93\x93\x33\xbd\x5e\x99\xd6\x49\x1e\xd7\xb5\x4c\xa2\x1b\xb5\x29\x5f\xd7\x32\x62\x30\x38\x13\x1c\xa3\xfa\xc3\x48\x77\x5b\x20\x25\xc0\x06\xe3\x19\x86\x58\xe1\xe1\x40\x95\x84\xef\x71\xdd\xdd\xfb\xab\x10\x78\xc0\x47\x1d\xb0\x29\x42\x4b\x31\x94\x04\xfb\x26\x27\x23\x69\xab\x38\x26\xaa\xf7\xf1\xa7\xe6\xd2\x3b\x27\x99\x5e\x8a\x58\x24\x45\xbe\x7a\x53\x95\x0f\x11\x8b\x36\xf9\xfd\xb7\x30\x3d\x22\x16\x2d\x45\x59\x1a\x67\x2a\xf3\xf4\x83\xb1\x6f\x60\x91\xac\xef\x2e\xb6\x79\xa5\xc3\xeb\xd2\xfc\xda\x35\xe2\xbb\x7c\x1b\xb1\x68\x2d\xf3\x8d\xf8\xc2\xd8\xb1\x5a\x17\x8c\x57\x2b\x44\xb6\xf6\xcf\x62\x5a\x20\x71\x03\x18\x50\x3b\x82\x5d\x1e\x0e\x97\x7d\x2b\xc7\x7c\xb5\x7a\x09\xdd\x37\x62\xc3\xe6\x63\x9a\xa1\x3d\xe3\x86\x74\xc6\x0e\x23\xd3\x59\x9f\x70\x0c\xa3\xa7\x4d\x97\x08\xef\xf4\xab\xd8\x83\x39\x84\x53\x03\xab\x45\x14\x87\x55\xcc\x81\xab\x9b\xad\x0c\xd6\x83\x9d\x65\xcb\x2b\xf8\x83\x22\x12\x2c\x14\xb4\xc8\xe1\xdd\x19\x44\xc7\xd1\xf4\x56\xcb\xcb\x53\xbd\xb8\x1a\x3a\x83\xf9\x79\xcd\x55\x9a\xc3\xd7\x55\x67\x42\x7f\x1c\x4d\x6b\x88\x06\x2e\xfb\xd5\x94\xe3\xd3\x51\xa1\xa7\x61\xc3\x6f\x81\xec\xd6\x98\xab\x0d\x96\x5e\xd6\x38\xe8\x27\x04\x92\x30\x2e\xa7\xff\x2f\xda\xce\x4b\xfa\x77\x9a\x6f\x32\x00\x3f\x08\x4e\x92\x7a\x49\xb0\xe5\x8f\xa2\xff\x6f\x1a\x1c\xd2\x1b\x6b\xf5\xcf\x4f\xce\xce\x69\xc5\x2b\x87\x25\xe5\x5e\xb1\xff\x45\x37\xe0\x49\xbb\xdf\x0d\xde\x6d\xac\xd9\xf9\x58\xe5\x59\x17\xeb\xb3\x5b\x7f\xbf\xb4\x1a\xbe\x81\x52\x42\xc5\x71\xb5\x40\xa6\x7d\x6f\x54\x1b\x95\x44\xd0\x55\x34\x81\x9b\xda\x91\xce\x95\x5d\xe7\x7a\x05\x0e\x3a\x57\xba\xce\x05\xe0\x6a\xba\x3f\x40\xa5\x8b\xe3\x0b\xad\x1d\x8a\x35\xa9\x10\x1e\x90\xcf\x59\xcd\x4d\x16\x2c\xc7\x2e\x3e\x57\x3c\x4f\x0b\xe8\x94\x7a\x76\x93\x37\x98\xa7\xa2\x8b\x3a\x28\xb6\xa2\x49\xdd\x55\x4c\x19\x65\x61\x07\xb4\x0e\xe6\xfd\xd8\x26\xe8\x99\xa2\xc7\x90\x1b\x88\x71\xec\x11\x94\x45\x97\x97\x6e\x13\xb8\xbc\x8c\x1c\x02\x77\x13\xc8\x36\x83\x20\xd7\xb9\xca\x28\x78\xc5\x22\x8a\x12\x5f\x45\x1c\xa6\x0b\x62\x10\x45\xa0\x15\x53\xad\xf1\x29\xc8\xe7\x46\x2f\xa6\x87\x9a\xd0\x43\xcd\x8e\xf4\xca\x8e\xf4\xfe\xf8\x26\x66\x80\xc3\xf8\xc7\x41\xee\xc6\xb2\x02\x96\x4e\x4b\xa5\x78\xe4\xc8\x13\x8d\x14\x79\xa5\xf8\xe9\x7b\x79\x7a\x1d\x9e\x4b\x6f\xf3\xf2\xd0\xfa\x60\x51\x5f\x9c\xaa\xbb\x37\x99\x17\xa4\xe2\x7a\x44\x8d\xa9\x36\x8d\xe4\x53\x1c\x0d\x00\x89\xf4\xda\x86\x07\xa2\x82\x57\x8b\x70\x88\xd9\x41\x78\x9b\x97\x84\xd2\x44\xd0\x45\xc1\xa3\xc8\x5d\xc4\xb8\x31\x5f\x2c\x8a\xa9\x7e\x11\x4e\x92\x02\xad\x65\xd0\xea\xa3\x18\xc3\xa6\x32\xba\x3d\xdd\x7d\x62\x1a\x45\x7b\x4a\x19\x88\x55\xb7\x79\xe9\x19\x42\x1b\x02\x9c\x7e\xf0\x38\xe0\x1a\x98\xd7\x18\x39\x4b\xf9\xc8\xcc\xdd\xb0\x2b\x58\x04\x07\x2b\xf0\x8c\x82\xa4\xf0\x9c\x55\xe8\x31\x42\x93\x62\x11\x96\xa1\x18\x29\x40\xf1\xb1\xdc\xaf\x87\xb9\x13\xc9\xd1\x0a\xbc\xcb\x9b\x2e\xe4\x40\xe2\x26\x92\x1b\x5e\x3f\xba\x70\x50\x30\xe4\x0a\xa8\xf1\xcd\xb1\x55\xea\xc6\x92\x96\xf0\x2d\x90\x77\x6d\xe9\x12\x4b\x52\xfd\x69\x12\xa0\x29\x8f\x0f\x8d\x3d\x01\x93\xe3\x5b\x45\x0c\x62\x98\x00\x57\x2f\x14\x67\x0e\xa4\x6a\x86\xa8\x65\x3c\x6e\x40\xc0\x0e\x25\xa5\x9c\x1b\x25\xd3\x89\xb9\x6b\x36\x68\xac\x0d\xcf\x41\x3d\x90\x00\xc1\x4c\xbe\xa8\xa7\x67\x89\x35\xa4\x44\xa5\x24\xaf\x9f\xcf\x17\xbb\x24\x5f\xd4\x60\x0a\xba\x43\x8f\x8e\x35\x21\x04\x4e\xb1\x8e\xbd\x45\x4b\x8e\x15\x50\x14\xc7\xf1\x44\x3a\x36\x98\x38\x26\x13\xe9\x0b\x66\xf6\x45\xdb\x4e\x3e\x10\xff\x0d\x8b\x2c\x79\x73\x44\x2d\xd6\xdc\x25\x91\x66\x06\xb0\xdc\xed\x97\x47\x46\x4d\xa9\xdc\xfe\xd2\x0c\x3c\xa6\x06\x2c\xf5\x7e\xe3\xe8\x59\xf1\x41\x58\x47\x0f\xdf\x74\x34\x3f\x39\x39\xa7\x04\xcc\x46\x73\xaf\x66\xbc\x83\x12\xea\x06\xa2\x49\x10\xb9\xea\x29\xab\x61\xc5\x81\x3b\xa6\xc9\xdc\xf5\xa8\x04\x6c\xea\xa0\x2f\xf8\xc9\x19\x65\xf5\x7e\x1f\xc8\xa4\x46\xc1\xd6\x69\xf4\x7a\xb2\x62\x30\xfd\xb2\xa1\x6e\x00\xda\x6b\xe0\xc2\xe2\x4e\xac\x16\xf5\xd0\xab\x07\x11\xb6\x65\x61\xad\xd4\x47\x06\xab\x43\x84\x23\x40\x98\x23\x60\xb8\x1c\x5c\x45\x06\xb8\xbf\x66\x5c\x2f\xa2\xba\x8a\x12\xab\x22\xa4\x70\xd4\x30\xa8\xea\x3c\xaa\x2b\x0b\xb0\x5e\x54\xc7\xc8\xaf\x7b\x69\xce\xec\xe6\x05\xfc\x69\x2d\xee\xfa\x55\xb9\x93\xf4\xc9\x29\xbb\x0b\x0b\x32\xc6\x4a\x70\xe4\x26\xa6\xc1\x1e\x64\x8f\x03\x98\x75\x3d\x6b\x7c\x5e\x5b\x63\x0b\x85\x54\x7a\x0f\x3c\x2d\xda\xb6\xca\xd8\x35\x5f\x9b\x55\x99\x19\x58\xe1\x05\x72\xa7\x24\x8a\x5d\x79\xef\x1c\x8a\x36\x44\xe8\xd8\xad\x3a\x2a\xbc\x24\x45\x32\x30\xbe\xe5\x3b\x5e\x70\x9d\x3c\xd3\x07\xdf\xa2\xe7\xa5\xeb\x3f\x4f\x2e\xcd\x49\xef\x7a\x3a\x20\xa9\xd4\x43\xed\xba\x93\xdd\x66\x20\xb5\xc5\x31\xb9\xe2\xd7\x5e\xae\xec\x9a\x5f\xcd\xd0\xfe\x80\xb2\x2b\x43\xc7\x47\xd9\x92\x7b\x9f\x26\x28\x66\xeb\xbe\x9a\x5e\xeb\x4d\x40\xf9\xcc\x3a\x2a\x60\xd6\xb9\x66\x43\xee\xdf\x38\x56\x94\x76\xec\xb0\xbc\x5e\x3c\x4b\x3e\x63\x5e\x2b\xf0\xab\x8e\xd9\x91\x29\x8f\xfc\x8b\x2b\x1f\x99\x7c\x8c\xcf\xef\xea\x77\xf9\xfc\x50\x51\xa4\x2c\x77\x97\x01\x08\x55\x86\xbd\x44\xef\x32\x96\x05\xa5\xa0\x4c\x72\xbb\x92\xa7\x2a\x4b\xfc\x75\x40\x32\x50\x1a\xac\x06\x24\x70\xd7\x88\xf4\x56\xb7\xed\x64\x65\x5b\xdf\xb0\xb5\xb9\x67\x4b\x29\xc6\xa4\x59\xb9\x26\x75\x1c\x4f\x56\x33\x4b\x3a\x14\xc7\x93\x5b\xb0\x02\x43\xce\xc5\x55\x40\x72\xd8\xb6\xd7\xcc\xf6\x73\x39\xbd\x06\xfe\x33\xee\x03\x99\xd1\xf3\xe6\xbc\x17\xf2\x80\x2b\x60\x43\xd9\x8e\x37\x47\x3b\xae\x25\x88\x10\x3c\x0b\xbd\x3d\x4d\xbc\x9d\x0f\xa5\xd5\xb6\x3b\x93\xd4\xcf\x45\xb5\xaa\xef\x00\xad\xc4\x1e\x0e\x48\xc3\x1f\xe0\x74\xa0\x57\x71\x75\x90\x3a\x6e\xcb\x1b\x86\xf3\x80\xe7\x9f\x9f\x2d\xca\x64\xe5\x88\x1a\x75\x75\xc8\x8d\x25\xdd\x1b\x30\xee\xe1\x57\x99\xa5\x18\x6a\x2c\x0d\x20\xd8\x14\x58\x7e\xd5\x86\x49\xa0\xff\x5c\xc6\x71\x93\x2e\xb3\xee\x4d\x1c\x7f\x45\x1a\x0a\x9a\x00\xd3\xdf\xc1\x27\xa8\x17\x75\x74\x43\x6a\xc0\x95\xd2\x29\x5a\xb0\xf0\xd7\xba\x5f\xd5\x08\x01\x0b\xa1\x6d\xbb\x72\x36\x28\xc6\x46\xa0\x0b\x30\x99\x3e\xcc\xb6\x70\xc1\x26\x69\xdb\x4e\xbe\x22\x05\x6d\xdb\x65\x1c\x6f\x48\x91\x5e\x43\x03\xde\xa2\x1c\x46\x76\xbc\xc0\x6a\x10\xfd\x17\xc6\x60\x47\xfc\xe9\x66\x34\xbf\x66\x87\x5a\x3c\x8e\xb7\x43\xb2\xd2\x6b\x76\xa7\x28\xd3\x79\x11\xfa\xd1\x2f\xc7\x38\x90\xf0\xe3\x61\x19\xcc\xfc\xd9\xd9\xb2\xee\x00\xf6\xcf\xd1\xd5\x35\x86\x80\xe5\x80\x9d\x86\x5b\x77\xbd\x35\x83\x49\x86\x5a\xfc\x1e\x5f\xce\x7c\x4f\x8f\xfa\xec\xc8\x15\x22\x05\x2a\x3a\xc0\x72\x1d\xf2\x68\x79\x3a\xcf\x03\x37\x3e\x61\xda\xba\xa0\xca\x22\x6a\x9a\xc0\xaf\x07\x2c\xd8\xa1\x71\xb0\x96\xf8\x3d\x07\xf1\xe3\xb1\x34\x25\x60\xc8\xfa\x7b\x1b\x7a\x51\xfe\x01\x26\x11\xcc\x38\xbc\x98\x35\xab\x91\x69\x37\xa2\x98\x23\x66\x0a\x69\x30\x71\xd7\xeb\xf1\x6f\x8f\x10\x91\x18\xcc\x1f\xf0\x0d\x0c\x17\x0c\x14\xd0\x3b\x93\xbd\x0a\xb8\xbf\xdb\xb6\x1a\x0e\x3d\x81\xb5\x66\x7e\x5c\x46\x0a\xc0\x23\x39\x03\xa8\x5c\x24\x1c\xfd\xe3\x19\x9f\x9c\x1d\x15\x8b\x20\xf9\x82\x26\xa4\x1a\x1d\xcb\x5d\x69\x8c\x19\xa0\x4e\x00\xdc\xbd\x91\xb5\x5f\x71\x31\x2b\xeb\x25\xba\x77\xdc\xfb\xb7\xec\xec\x42\x1f\x04\x17\xa7\x47\x97\x33\x50\xbc\xfe\xf2\xdd\xb7\x43\x5c\x42\xd0\xde\xa8\xb6\x1d\x58\x14\x39\x7a\x3c\x3d\x68\x01\x62\x53\x72\x18\xf9\x62\xf6\xe5\x9b\xef\x7e\xd0\x09\x4a\x8a\x09\xbf\x96\xf5\xe6\x02\x3e\x07\x49\x42\xdc\xab\xd3\xfb\x4d\x19\x51\x83\x9f\x59\xd1\x47\xe9\xa0\x8e\x1d\xd2\xe1\x04\xd0\x05\xcd\xfd\x6c\xf3\xc5\xc3\xbb\xfc\x5a\x1f\x7b\x48\x04\x49\x4a\x21\x65\x2d\x3d\x73\xe4\xcb\x19\x84\x90\xe8\x9b\xea\x36\x2f\x8b\xd5\xf1\x2f\xdf\x7d\x9b\x1c\x47\x53\x20\x38\x81\x96\x78\xa3\x6b\x9b\xbe\xcf\x9e\x9c\xb2\x17\x70\x02\x5e\xbc\xaf\x4e\xaf\xd9\x07\x23\x76\x35\xbb\xab\x4d\xa1\xcc\x25\x4a\x5b\x6c\xf2\x6b\xd1\x4a\xd1\x08\xd5\xae\x8b\x52\xc0\xad\xca\xbb\x8f\x5e\xbf\x7c\x10\x0f\xd7\xa2\xa2\xfe\x55\xcb\x4b\xd5\x33\x52\x1b\xf5\xb5\x36\xf3\xc5\x73\xb8\x57\x60\x86\xd2\xb6\x6f\xac\xae\x9b\x2e\xf4\x24\x29\x68\xa2\x53\x9c\x46\x69\x34\x1d\xf2\x90\x38\x5d\x7d\xb1\x50\x49\xa4\xc5\x84\x2c\x62\x85\xa5\x06\xb0\x24\xf3\xb2\x6d\xed\x97\x13\xce\xaf\x74\xfe\xc6\xf2\x3f\xb4\xbd\x52\xd4\x65\x55\x40\x4a\x2a\x2d\x32\x4c\x0c\x86\x4b\xbe\xe1\xe3\x57\x81\x00\xc5\x39\x36\xb3\x81\xb2\x51\x11\x9a\xa8\xa3\x2a\xb5\x96\x4a\x19\x17\xd5\xb2\x5e\x89\x9f\xde\x7e\xf3\xb2\xde\x6c\xeb\x0a\x19\x0c\xa7\x11\x8f\xa6\x23\x6f\xfc\xa3\x28\xdd\x83\x5e\x09\x4f\xf2\xd4\x22\xea\x0c\x5b\x18\x20\xc9\x66\xff\xfc\x6d\x27\xe4\x83\x96\x2a\xf5\x5e\x51\xe6\x45\xe5\xcc\x04\x6d\x07\x04\xc0\x14\x05\x1e\xd0\xb5\x84\xc6\xba\xa3\xba\x6b\x49\xcf\x7f\xe7\xa5\x22\x92\x81\xcf\x8e\xee\x36\x77\x9a\x35\xb2\x5b\x1c\xd1\x9e\xc5\x64\x23\x64\x91\x97\xe3\xb8\x71\xa6\x69\x89\x51\x3d\x99\x88\x58\x0f\x0a\xd0\x18\x7e\xd0\x18\xf0\xdc\x08\x00\x30\x9a\x64\x98\xfb\x77\xd4\x53\x09\x33\xad\xba\xd3\xb7\x58\xf8\x02\xa1\x51\x1b\xee\xa9\x35\xdd\x1c\x24\xe7\x14\x24\x81\xa3\xb8\x6e\x2e\xdd\xc6\x46\x7d\x53\x34\x24\x4a\xec\x99\x37\xa2\x71\xfc\xce\x0c\xe8\x40\x8f\xa2\x85\x85\x0f\xaa\x03\xfc\xc5\xb7\x4b\x0b\xb0\x3f\xb9\x71\x60\xc0\x74\x4f\xc3\xca\xf9\x56\x5d\xbe\xca\x28\xa4\xdb\x42\x23\x80\x9e\x92\x48\xd2\x05\x2a\x88\xe4\x88\x82\xe8\x51\x57\x24\x41\x01\xdd\x10\x72\x76\xdc\x02\x2f\x14\x8b\xde\xcb\xf7\x55\xa4\x37\xbe\x64\x24\xaa\x1c\x8f\x8a\x58\xb2\x8e\x8e\x47\xf1\xd3\x3f\x3d\x9b\x9f\x5e\xb3\xb7\x8a\x9f\xfe\x9f\xd9\xd3\x27\xa7\xec\x07\xc5\x4f\x49\xba\x88\x33\x7a\xc9\xd3\x7f\xc4\xd9\xd3\x53\xf6\x4f\x58\x73\x66\x4f\x17\x34\x49\x8f\xdf\xab\xec\x29\x49\xff\xa1\x53\xcc\x9e\xd2\x27\xa7\xd7\x1b\xf6\xa5\x59\x93\xbe\x7a\xf5\xae\xfd\xfa\xd5\x8b\x2f\xf5\x21\xf1\x7b\x1d\xf6\xfe\xf4\xfd\xe9\x29\xfb\x46\xf1\xc7\x3d\xfb\x16\xfe\x7d\xad\x78\xf4\xf4\x34\xb2\xae\xa4\xd1\xd3\x88\xb2\x7f\x8d\x18\xe4\xe4\x3e\x40\xec\xd7\xfe\xdd\x6d\x68\x7b\x34\xdc\x12\x9c\x91\xa9\x4e\xfb\xc8\xfa\xb3\xce\x59\xdd\xbf\x0e\x0f\x2e\x77\xf1\xd2\x41\x1a\x52\xde\x8a\xd7\x46\x19\x1c\x4d\x23\xce\x79\x95\xce\xb3\x05\xa9\x78\xe5\x50\x54\xda\x36\x7a\x1a\x31\x74\x79\x13\xe0\xea\x91\x66\xd4\x59\x9a\x4b\x4a\x93\xfe\x3b\x38\x07\x48\x9f\x09\xe6\x8b\xfe\xca\x8c\xc0\x1e\x82\x73\xfe\xad\xea\x6a\x9f\x93\x06\xdf\xef\x1c\x4e\x47\xda\x64\x68\x4f\x89\x6b\x46\xda\x18\x8f\xa4\x6e\x48\x9a\x4f\x4a\xde\x18\xb3\xe3\x43\x46\xb9\x65\xdb\xd6\x6d\x5b\xa4\x65\xb6\xa8\x17\x13\xb2\xe3\x25\x35\xfa\xb5\x84\x28\x20\x7c\xd6\x67\x8a\xce\x88\xbe\xa4\x2c\xd7\xff\x4c\xce\xe8\x9e\xb2\x9d\xdd\x2c\x73\x3f\x72\x3a\xcf\xb4\x3c\x5e\x80\xff\x55\x1c\xe7\xd0\xcd\x5d\xbd\x7f\x52\x3d\x6f\x44\x7e\x39\xcb\xff\x99\xdf\x5f\x08\xa5\x8a\xea\xba\x99\xad\xcb\x5c\x19\xaf\x51\x47\xfd\x2d\x71\x43\xe8\x54\x9a\xa9\xcc\xb4\x64\x5f\xa4\x12\xc8\x67\xdb\x96\x54\xfc\x71\x4f\x69\x2a\x33\x24\x35\xf6\xd8\xcb\x7c\xd7\x56\xc1\x2a\xca\xc4\xfe\x5f\x0a\xae\x6b\xf9\x2b\xfc\xeb\x1b\x21\x2d\x55\x71\x2b\x92\x39\x2b\xf3\x46\x7d\x57\xaf\x8a\x75\x21\x56\xe0\x02\xab\x72\x70\x85\xf5\xcb\x9a\x3c\xee\x64\x99\xd8\x44\x40\xca\x8e\xbe\x7a\xf5\x2e\x62\x45\xf3\x6d\xbd\xcc\xcb\x04\x4d\x20\xae\xea\x9d\x6a\xf3\xed\x56\xff\x7f\xd2\xa8\x5a\xea\x9d\x7d\x36\x3d\x81\x3c\x9b\xa2\xae\x60\x83\xd7\x7b\x7d\x7b\x57\xac\x80\xae\xf3\xc9\x29\xae\x38\xaf\x8c\x3f\xfd\xb2\x2e\x29\x43\x5a\x18\xa0\x0e\x94\xb5\x16\xcc\x80\x64\x62\x32\x67\x79\xf3\x50\x2d\x0d\xab\xaf\x12\x95\x02\xe6\xb7\x48\x1f\x92\x0a\x14\xbb\x4e\xef\x4f\xee\xee\xee\x4e\xd6\xb5\xdc\x9c\xec\x64\x89\xfb\xda\xea\xfc\x78\x79\xa3\x45\x19\xc5\x7f\x7a\xf7\xfa\xe4\xbf\x23\xa6\xc5\xbd\xad\x32\x2e\x7b\xaf\x15\x52\x2e\xa0\xb8\xb4\xd5\x1b\x56\x84\x70\xed\x18\xa2\x7f\x46\xec\x5e\x3f\x07\x39\x6d\x4a\x76\xec\x24\x2c\xf6\xcf\x06\x30\x35\xbd\x08\x3a\xc4\xc4\xf8\x67\x7e\x9b\x1b\xea\x8c\xbd\x2d\x7b\x93\x3c\xea\x34\x4f\xdf\x5f\xdd\x6f\xca\xf7\x57\xa7\x98\xe5\xe9\xfb\x2b\xfd\xf7\x14\xd3\x3b\x7d\x7f\xa5\xff\xbe\xbf\x3a\xdd\x33\x29\x9a\x6d\x5d\x35\xe2\x75\x21\xca\x95\xf9\x38\xb2\x81\xbf\x7c\xf7\x6d\x64\x6a\x61\x83\xde\x89\x7b\x65\x8b\x65\xc3\xfe\x72\xf1\xe6\x7b\x2c\xc1\xad\x90\xca\x38\x2d\x42\x11\xa3\x04\xc5\x46\x14\x1a\x8f\xa1\xce\xba\xa1\xf1\x51\xa7\x12\x25\xfa\x6b\x14\x33\x4d\xb0\xae\x78\xd2\x89\xb4\x7b\xe6\x0d\x69\x1c\x32\xb6\xab\xee\x95\x3e\x88\xb9\x41\xb5\x3b\x60\x54\xa2\x16\x3f\x29\x02\x13\x27\x9c\x2b\x94\x29\x9a\xfc\xa4\x48\x18\x0a\x6c\x19\x3a\xa0\x63\xaa\xf9\x5a\x91\x6f\x14\x85\xc0\x77\x32\xaf\x9a\x6d\x2d\x95\x0e\xfc\xd6\x04\xf6\xfc\xab\xc7\x94\x4c\x3d\x4e\x38\xb0\xea\x34\x88\x0e\x3d\x77\x46\x54\xe2\x75\xd3\x7a\xb7\x25\x8f\xe0\x28\xbe\xe1\xdb\x99\xa9\x76\xdb\x6e\xd9\x6d\xf7\x18\xc7\xc4\x87\xe8\xd8\x18\x61\x89\x2e\x2e\xc9\x86\x26\x56\x8b\xf8\x10\x38\xff\xb3\x6b\x7e\x39\x7b\x99\x97\xe5\x55\xbe\xfc\xd0\x90\xa8\xae\x96\xe2\x78\x23\x36\xb5\x7c\x88\x28\xbb\xe2\xdb\x59\xa3\x72\xb5\x6b\x5e\x02\xa1\xfa\xe3\x9e\xdd\xe9\x15\xf6\x95\xfe\xe7\x9e\x47\x48\x36\x2a\x56\x11\xbb\xe0\x8f\x52\xe4\xab\x87\x0b\xa5\x0f\xd6\x40\xee\xfd\xd6\x8c\x8b\xaf\x45\xbe\x1a\x23\x8f\x3e\x42\x28\x6c\x7d\x30\x41\xda\x95\x86\x3f\xee\xcf\x15\xff\xa7\x42\x3f\xd5\x9c\x9e\xd3\x26\x55\x03\x7a\x00\x20\x58\xe7\xe4\xe0\xab\x00\x68\x41\xa5\xcf\x32\x7a\xa4\x78\x93\x8a\x91\xa8\xfb\x40\xbe\x50\x28\x5f\x28\x23\xf2\xb1\x63\x2d\xf3\x5d\x0b\xf5\xa2\x2c\xc3\xba\x8c\x81\x14\x2f\x8d\xb9\x17\x68\xf1\xdf\x22\x5c\xc6\xa0\xe6\xde\x68\xc4\x2c\x97\xe0\x53\xf0\xaa\x5f\xb8\x6c\x24\xa8\x6d\x05\xbb\x4b\x45\xc6\xcd\x2d\xe7\x9e\xd5\xb7\x42\xca\x62\x25\xbe\x2b\x36\xc8\x58\x79\x50\xb7\xbd\x04\x3f\xbb\x8d\x89\xc7\x85\x4d\xa1\xeb\xdb\xf1\xee\x01\xaf\xf6\x25\xbd\xb0\xee\x78\x22\xbd\x30\xe3\xc1\x77\xf2\x50\x28\x40\x5f\xe9\xb3\x7a\xaa\xff\x65\x22\x55\x59\x16\x12\x61\xe4\x57\x7a\xb6\x8c\xd8\xc7\xb4\xed\xbd\xdb\x94\xe3\xb8\x98\x41\x44\xa2\x28\x7b\x43\xe6\xf6\x46\x77\x0f\x67\x84\x07\x87\xc4\x70\x41\xd9\x76\xb6\x93\x25\x27\x44\x4f\x02\xfd\xb3\x6d\xcd\x0e\x42\xa7\x51\x44\x9d\xe4\xf6\xbd\x62\xde\xea\x3f\x8d\x4e\x4f\x23\xfd\x2d\x62\xfa\xcc\x36\x42\xdd\xd4\xab\xb6\x95\x86\xf7\x6b\xeb\x42\x30\x0a\xdb\x76\x3b\x32\x27\xdd\x03\x88\x2e\xf4\xb0\x2c\x14\x45\xd6\x5b\x74\x3b\x5b\xca\xba\x69\xbe\xac\x37\x79\x51\xd1\xc7\x11\x90\x6f\x2d\xa6\xe9\x63\x77\x89\x9b\x29\x54\x86\x99\x07\xfc\xc3\x82\x44\xf8\xbf\x7a\xf5\x99\xea\x7d\xb8\x6e\xd4\x04\x51\x0b\xbc\x17\x25\x84\x9b\xe3\xf9\x0b\xfa\x18\xa6\xa3\xd7\xcc\x62\x6d\x6a\x15\xc7\xdb\x99\xb7\x1f\x76\x4c\x78\x4e\xca\xb1\xf1\xcc\x07\xdc\x9e\x71\xf0\x51\xb7\xa9\xcc\x57\x80\xd4\x97\x97\x94\xb2\x2f\xf4\x62\xc9\xb6\x4c\xb2\x0b\xca\x96\x56\xc9\x70\x01\x82\xc8\xcd\x71\x51\x91\xb5\xd5\x52\xeb\xac\x71\x53\xa6\x71\x3c\xe7\x7a\xc9\x03\xf1\x61\x3a\x05\xa9\x23\xd0\x55\x45\xb0\x1a\xaa\x5c\xaa\xae\x1b\xf1\x4f\x08\xd6\xc7\xb6\x60\x81\x60\x58\x59\x26\x5f\x9a\x63\x09\x46\xa5\xac\xc6\x66\x76\xa3\xe4\x2d\xdc\x90\x06\x1f\x2d\x0e\xb4\x0b\xc0\x5c\x9a\x25\x17\x65\x04\xa4\x8b\x73\x37\x11\xbf\x2b\x30\x80\xaf\xad\x69\x44\xfc\xd3\xd1\x9d\x29\x16\x4d\x23\x2d\xf9\xae\x4c\x09\x51\x58\xb6\x0e\x3c\x94\x79\xbd\xe0\x15\xab\xd3\xeb\xf0\xb0\xbb\x80\xf6\x71\xca\xc9\x85\x69\x80\x9a\x2e\xa2\x38\x4a\xa2\x45\x44\xa7\xa6\xe3\x8c\x45\xa4\x89\x8f\xea\xe7\xed\x6c\x99\x2f\x6f\xc0\x13\x88\xd7\xae\x74\x3f\x28\x16\x3d\x39\x8b\x28\x5b\x8d\x27\x18\x5d\xf2\x68\x7a\xaf\xa6\xd3\xe9\xca\xce\xcf\x1a\x7f\x16\x6b\x2b\x04\x02\x0c\x84\x2f\x15\xa6\x75\x16\xc7\x17\xb3\xfe\xa2\x49\xa2\x6f\xd6\x27\x36\xce\xc9\x45\x51\x2d\x45\xc4\x06\x5f\x82\xf2\x57\xe5\xd7\x1f\x4b\xe4\xfb\xba\x12\x27\xdf\xe9\x29\x10\x75\xb1\x29\x65\xde\xc0\xef\x7a\xdd\x28\xc9\x7b\xfd\x2b\xfd\x47\x3a\x9e\x93\x49\xe0\xe4\x1d\x58\x60\x07\x09\x50\x36\xf6\xc1\x0b\x10\x13\x23\x7f\x89\x49\xe7\x19\x28\xc9\x51\x80\x4c\xc3\x37\xd9\xe2\xe0\x9b\xa9\x3e\x1d\x40\xb1\xfd\xe0\x85\xde\xc1\xa6\xaf\xd5\x34\x3a\x3f\xfe\x8d\xcf\x67\xf3\xb3\x28\x89\x22\x9a\x74\xc9\x20\xf2\xd0\x76\x76\x83\xbb\x1a\x1d\x29\xe6\x4d\xf7\x3a\xbd\xc9\xc0\xa4\x6b\x3b\x43\x2a\x98\x0b\x51\xad\x2c\x86\x94\x1f\x86\xf7\x89\x1b\x76\xc1\xb6\xb4\x6d\x97\xee\x06\xf7\xc2\x2c\xed\x90\xc8\x3d\x8f\xe0\x29\x62\xd7\xc0\x11\xba\xed\x20\x37\xd8\x05\xfa\x4b\x6f\x67\xcd\x0e\x34\xa7\x3a\x04\x60\x38\xb6\xa8\x1c\xa4\xac\xe0\x5f\x68\xb1\xcb\x2c\x2f\x20\x43\x5c\xcc\x3a\xf9\x83\x9f\xb1\x75\x1c\xdf\xf6\x56\x0d\xe0\xb4\x49\x2f\xd8\x36\x0b\x16\xa4\xed\x0c\x04\x7f\xdd\xf0\x0a\xdd\x61\x3e\x07\x00\x72\x7e\x08\x98\xca\xd6\x23\x32\xd1\xb5\x94\xe0\xbe\xa5\xb8\x98\x2f\xf9\xe4\x8c\x15\xb3\x46\x9f\x86\xee\xd8\x1b\xda\xad\xc1\xb0\xa1\xaa\x1b\x59\xdf\x1d\xbf\x38\x7a\x43\x4e\xce\xd8\x0b\xba\xdf\xc3\x5e\x0a\x4f\xd1\xf7\xf5\xb1\x93\x2e\xfd\x13\xfc\x1b\x3c\x85\xba\x63\x29\x08\x88\x77\xec\x15\xbb\xe7\xf2\x68\xd9\xb6\x64\xa9\xcf\xb3\xbb\x38\xee\xf9\xf6\xec\x74\x73\x99\x1b\x91\x9c\x37\x7a\xb5\x62\x41\x63\xa9\xcf\xe7\x8b\x3f\xeb\xb3\x1a\x57\x9f\xf3\x67\xf3\x79\x1c\xab\xe7\x9f\xcd\xe7\x6d\xfb\xd9\xfc\xcf\x9c\x73\xc5\xaa\x38\x26\x77\x03\xb7\x6e\x0f\xea\xca\x91\xcd\xd8\xd3\x07\xd3\xad\xe7\xc6\xe2\x79\xf4\x34\xe2\x9c\xef\xd2\x79\x76\x4e\x77\xee\x26\xd7\x79\x98\x20\x37\xb6\x70\xf2\x49\xdb\x82\xad\x4b\x28\x73\xf5\x66\x18\xa5\x9e\x35\x9a\x96\x3f\x1a\x2d\xaa\x34\xe0\x67\xaa\xff\xc5\xd5\xa9\xa2\xf4\x71\xe7\xce\xdd\x05\x3d\xba\x92\x22\xff\xa0\x77\x3d\x5d\x98\xa2\x3a\x96\xb4\x86\x72\x81\x30\xd3\xf1\x3f\x4b\x14\x4b\x77\x48\x1b\x3c\xeb\x8e\x34\x69\xa1\xe5\xc6\xa9\x7e\x91\xd1\xc7\x9a\x17\x26\xc5\x1c\x08\x72\x0a\xba\x07\x4c\x8c\x5c\xe7\xe0\xcc\xbf\xeb\x09\xd6\x3d\x8e\xbb\xa2\xd4\x94\xc9\xb4\xce\xf6\x64\xcb\x2e\x00\x69\xb8\xdf\xbe\x3d\x10\x64\xe0\x07\x79\xdc\x03\xad\x65\xa7\x50\xc0\xcd\x01\x5a\x62\x99\x9e\x65\xc8\x49\x09\xc2\x98\x57\x64\x5a\xa6\x79\x5f\xba\x0c\xaa\x94\x67\x47\xc8\xfb\xb8\xb4\x5d\x73\x5e\x83\xad\x9a\x98\x85\xc7\xc2\xd4\xd0\x16\x8e\x84\x83\x54\x3a\xd9\xc5\x31\xa0\xc8\xe9\x12\xbe\x86\x33\x53\x1c\x13\xc5\xfd\x00\xb8\xfb\xb1\x35\x00\x24\x83\x9a\x79\x39\xeb\x6c\x71\xb4\xd4\xba\x67\x9c\xba\x1b\xd7\xb7\x5d\x1c\xef\xc0\xb0\x1e\x7a\x87\xe4\xbc\x4c\x77\xd0\x1f\x75\xd6\xb6\x65\x1a\x3d\x85\x9f\x1e\x83\x71\x09\x46\x3e\x0d\x2f\x3c\x54\x57\x9a\x9e\x65\x68\x90\xef\x25\x00\xcb\xa8\x4b\x03\x9e\x28\x7d\x04\x08\xe7\x7c\x91\x03\xc3\x71\x02\x3e\xfb\x25\x8c\x30\x52\x73\x1d\x87\x2d\x5d\x87\x36\xba\xfd\xbd\xf1\x05\x91\x73\x9d\x7d\xae\x5b\x04\x26\x7c\x43\x15\xcf\x9d\xc5\xa3\x5e\x26\xf0\xb9\x5b\x1c\x8c\xd6\xb2\x81\x43\x54\x70\x43\xc2\xe0\x4f\x92\x2f\x5e\x24\x7a\x85\xc0\xee\x6b\x00\xf9\x4d\xd6\x1b\x3d\x24\xa7\xd1\xb1\xaa\x75\x03\xec\xf7\xfb\x30\x1d\xb3\x8c\x46\x4c\xb7\x7b\xa2\xf6\x7a\xd4\xdd\xb1\x0b\xc0\x46\x5a\x90\xde\xee\x4c\x5e\xf1\x8b\xb1\xd9\xf7\x6d\xde\x28\xb7\x21\x23\x7c\xc9\x60\x3b\xe6\xaf\x28\x3b\xf4\xbd\xde\x78\xed\x67\x66\x13\xe6\xaf\x28\x65\xcf\x70\x91\x69\xdb\xe8\xeb\x57\x2f\xbe\x8c\x60\x2f\xd1\x22\xcc\xe2\x9e\x47\x55\x6d\x09\x00\x12\xb3\x16\x61\xa8\xda\xd8\x72\x24\xe4\x9e\xdf\xc1\x91\x44\xb0\x1b\x7e\x87\x12\x4d\xc9\x27\x64\xc5\xef\xcc\x66\x81\xd2\xd4\x3d\x9b\xa8\x38\xbe\x6f\x5b\xbd\xf3\x98\x26\x55\x60\x98\x0d\x50\x18\xb0\x45\xc3\xc1\x86\x2b\xf7\x13\xa8\x93\x88\x6c\xdb\x7b\x7d\xa6\x60\xe5\xe2\x21\x40\x13\xdb\xb0\xf4\x86\xdd\xb3\x8b\x8c\x26\x0f\x3e\x9c\xd8\x46\x6f\x32\xf7\x6c\x95\x75\x89\xea\x13\x16\xb9\xd2\xe7\x69\xb3\x10\x07\xdb\x53\xb9\xc0\x0d\xca\x74\x53\x02\x4f\xaf\xb0\x8c\x7a\xbf\x62\xe5\xe2\x26\xd1\xc9\x5d\x03\x4a\x8f\x97\x49\x46\x75\x4a\xa4\xb7\xd3\xbd\x34\x3b\xa9\xdb\xed\x4e\x4e\xac\x4c\x0d\x17\x6c\x63\x12\x75\x0d\x06\x6b\xf6\x3c\x7c\x01\xe7\xde\xbf\x5c\xbc\xf9\xfe\x80\xf3\xd6\xf1\xa5\x75\x22\x61\x92\x45\xa0\xc1\xc1\xb3\xf2\x05\x28\xa2\xc6\x8f\xbc\xf6\x1b\x6b\xde\xd2\x31\xbe\x06\x66\x64\xd7\x42\x45\x2c\xda\xd6\x8d\x1a\x42\xa1\xf7\x9c\xb5\x42\xe6\x87\x0d\x31\xd0\xfa\x60\x97\x54\x01\x88\xb6\xd5\xb4\xa0\x1e\xa5\x83\xe6\x02\x05\x92\x60\xc6\x0a\xca\x2e\x48\x49\x81\x73\x44\x32\x33\x67\x12\xc0\xc9\xe8\xdf\x34\xc5\x31\x18\x34\xea\x54\x2d\xf9\x33\x3f\x50\x63\xc8\xd5\xcf\x0c\x55\x9b\x2e\x43\xdb\x04\x0c\x04\x6e\x4f\x0d\x79\xe6\x14\x95\x67\xa1\x4a\x0d\x94\x63\xe6\x2b\x5f\x0f\xb1\xdf\xb3\x6e\x99\xed\xe1\xbc\x76\x54\xd8\x08\xd3\xbc\xef\x5f\x66\xdd\xc9\x7c\xfb\xa2\x1c\xb1\x1c\xf6\x0f\xf1\xb0\x87\x11\xc4\x63\x21\x82\x7b\xa6\xbe\xe9\x5c\x4b\xd4\x8a\x5f\x1a\xc0\xe0\x01\x5d\x39\x9d\x89\xdf\xc8\x9c\x7a\x54\x7d\x36\x5a\xe8\xfc\x12\xb0\x79\xda\x94\x99\xea\x5f\x85\x39\xfe\x4e\xb8\xbf\x3a\x17\x48\x6e\x6a\x8e\xd4\xe0\x79\x7c\x4e\x75\x01\x07\xc1\x1d\x1d\xb5\xa3\x76\x44\xbb\x72\xa3\x10\xd1\xed\xf0\x4d\x55\x8d\xd3\x52\x1f\xb2\xb6\xf7\x5c\x29\xdc\xf7\xa1\x23\x05\xfd\xb8\x79\xbd\xb3\xa4\x97\x5c\x39\x19\x8a\x74\x9e\xf0\x0b\x39\x33\x1d\x04\x37\x7a\x1e\x29\x25\xc5\x22\x8f\xe8\x55\x36\x9d\x8f\xc1\x98\x69\x89\x0c\xcb\xac\x93\x56\xa1\xf1\x36\x4d\x30\xfd\x5d\x35\xc8\x21\x60\x51\x84\xfe\x23\x82\xce\xaa\x5a\x91\xe8\xaa\x5e\x3d\x44\x43\x3e\xe0\xce\xd5\xc4\x91\x43\xda\xeb\x41\x4b\x56\x4f\xf7\x1d\x00\xa3\xf1\xf1\xdc\x36\x62\xb7\xaa\x1b\x8b\xac\x34\x82\xcb\xd1\x8b\x08\x5c\x53\xa5\x00\xba\xce\xf1\x57\x63\x89\x4c\x88\xf0\x39\xde\xb4\xc4\x87\x8f\x48\x78\xf2\x11\xd6\x04\xc8\x26\xb8\x77\xb9\xbf\x91\xbe\x9f\x3d\xd8\x53\x74\xbc\x34\x62\xf6\xcb\x77\xdf\x7e\xad\xd4\xd6\x1c\xb2\xcc\xce\xaf\xf4\xec\x05\x25\xf0\xcf\x8a\x3f\xce\x01\x38\xe0\xec\xd9\xb3\xcf\x92\x67\xf3\x3f\xef\xd9\x6f\xaa\x7f\xb9\x73\x7f\x23\x09\x3d\xd2\x47\x26\xd9\xf0\xc9\xe4\x37\x15\xc7\xd1\x5d\xa1\x6e\x5e\x4a\xb1\x12\x95\x2a\xf2\xb2\x89\x8a\xea\xf8\x37\xc5\xb6\xf0\x21\xff\x4d\x41\x34\x53\x58\x77\xbc\x20\x03\x33\x11\x56\xe1\x09\x4f\xa7\xdc\xb6\x3a\xe1\x89\x0a\x34\x58\x56\xb2\x08\x28\x8e\x7d\x13\x54\xae\x4c\xf1\xb4\x38\x0e\x2c\x97\x04\xed\xd4\x98\x02\xcd\x96\xc2\xe3\x96\x7e\x6a\x84\xc4\x7b\xf9\xd9\x36\x6f\x9a\xbb\x5a\xae\xf4\x54\xbf\xbf\x91\x28\x56\x76\xe2\xac\x1f\xa8\xe5\x55\xee\x05\x58\xf1\xd5\x44\xb4\x67\x88\x38\x6e\x66\x7d\xfd\xe8\x58\x18\xe9\x3e\xd1\x99\x7b\x55\x6d\xdb\x22\x8d\x7e\x39\x31\x3d\x25\x56\x27\xc0\x68\x9a\xb5\x2d\x19\x0d\xe7\x51\xd8\xb5\x11\x65\x05\x6d\x86\x07\xea\x9c\x81\x59\xf6\x91\x1c\xb3\x44\xf6\xd5\xca\x70\x59\x50\xf1\x66\x56\x57\x65\x9d\xaf\xe0\x07\x08\x2e\xf0\x0b\x8e\xa0\xf0\xcb\x1c\x3c\xe1\x37\x9c\xea\x40\x1a\x5a\xde\xe4\xd5\x35\x32\x0c\x33\x73\xd2\x06\x47\x97\xc6\x1e\xc2\x13\x23\x05\xa1\xfb\x4b\x1f\x19\xab\x31\x82\xcb\xa2\x26\x73\x66\x62\xd2\xa4\x26\x36\x9c\x35\x9e\x8c\xa4\x5f\xfc\xac\x52\x1b\x94\xb5\xed\x68\x34\xbc\xd7\x01\xde\x8b\xc6\x9d\x20\x8c\x02\x0d\xde\xd0\x11\xf3\x24\x2f\xa6\xb8\x57\x8b\xc7\xab\xa2\xca\xe5\x43\xd2\x05\xef\x93\x47\xb8\x01\x0a\x23\xee\x19\x10\x71\x0e\x35\xf7\x84\xa2\x2b\x82\x6d\x55\x49\x28\xab\x7a\x6d\x6b\x5b\x54\x4b\xad\x58\xf3\xce\x0f\xd7\xb5\xfd\xa2\xeb\x85\x2a\x19\x6d\x7b\xaf\x33\xb5\xec\xda\x78\x67\x6e\xe0\x2e\x1a\x55\x2e\xc8\x38\xae\x00\x86\x91\x49\x9d\x3f\xf6\x1c\xea\x14\x1a\x54\x27\xa8\x40\x5d\x85\x57\xc6\x08\x8b\x64\x0f\x12\x3b\x43\x08\x83\x5a\x86\xdd\x7e\xa0\x7c\x87\x6c\x24\xb1\x64\x22\xc1\x2d\x17\x09\xed\xd2\xbd\x09\x01\x88\x02\x76\x77\x9a\xa1\x04\xc2\xf1\x0e\x3b\xb8\xa5\x72\xf7\x9f\x18\xc5\x5c\x74\x76\xb7\x94\xec\x38\xb8\xc8\x3c\x10\x2e\x96\x9b\xd1\xf0\xfb\x93\xee\x4d\x70\xdf\x69\x72\x3b\x7d\x7f\x45\x16\x89\x4e\xb5\xd5\x11\x29\x06\xc3\x25\xe7\x27\x88\x51\xc2\x17\x56\x3d\xa1\x89\x32\x31\xda\x58\x4e\x7c\x0b\x36\xe0\x0e\x3a\xc3\xaa\x51\xcd\x2f\xdd\x5c\x6c\xd8\xa8\x88\x4f\xa2\x05\xc3\xae\x31\xbb\x45\x7a\x3c\x0f\xf4\x99\x81\x4b\x9a\x70\xd5\x12\xa6\x6b\x5e\x28\x25\x9b\x8f\xac\xd7\x5a\xea\x88\x9e\x63\xdc\xcf\x23\x6a\xdc\x79\xfc\x8f\x91\x50\x1b\xcc\x8d\x1e\xcd\x1d\x77\x62\x23\xbc\xc4\x67\xd6\xc8\x65\x22\xf4\xc2\xbe\xa7\xb3\xba\x22\x91\x9e\x54\xc7\xe6\x7c\x15\x2e\x71\xca\x1a\x36\x5a\x0b\x76\x26\xe2\xb8\x26\xde\x32\x84\xe7\xbe\x3f\xcf\xff\x0c\x1b\x20\x3e\xea\x06\xa9\x40\x03\x19\xe0\xca\x28\x2d\x17\x7e\x74\x5c\x23\x5b\xa7\x62\xbf\x2a\x9e\x66\xec\x2b\xc5\x4f\x09\xa7\xef\x17\x64\xc1\xe3\xf6\x09\x6d\xdf\x2f\xd0\x62\xd2\x1b\xb7\xfa\x14\xb3\x4d\xa2\xa5\xb9\x0c\xc5\xeb\xed\xad\xbd\x1b\x1d\xd2\x7b\xfc\xaa\xd0\x72\x1a\xce\x54\xe8\x69\x30\x8d\x2e\x51\x03\x1e\x88\xcd\x02\x2c\x4d\xc4\xe8\xf8\xd1\x79\xc0\x0d\xf8\x36\x62\x81\x5b\x47\x8f\x04\x0b\xd4\xd2\x6a\x06\x31\xe3\x98\x7c\x65\x0d\xb0\x74\xd3\xd3\x45\xb4\x93\x65\x34\xc4\x5f\x50\x46\xc3\x0d\x77\x16\xea\x7f\x7b\x67\xd1\xe5\x69\x6e\x16\x22\xfd\x17\xdd\x7c\x9b\xb6\x8d\xb0\x16\x60\xbc\x1e\x98\xb1\xd8\xcb\x3d\x5b\x7c\xdb\xa2\x7c\x43\x7a\x21\x74\xd1\x0b\x20\x5a\xda\x0d\x42\x58\xb3\x50\x69\x93\x71\xfd\x8f\xbb\x98\xf8\x0a\x2f\x26\xa6\x05\x4d\x7a\xed\x04\xed\xe3\xdd\x7f\xd8\xf6\xb2\x57\x16\x26\x26\xd8\x29\x16\x20\x00\x74\x7a\x31\x33\xef\xd0\x3e\x21\xe3\xc3\x2b\xdf\xbc\x33\x57\x2d\xa6\xd1\xf1\x5d\xde\x1c\x57\xb5\x3a\xd6\x03\x48\xb7\x18\xcb\xd3\x79\xb6\x67\x61\x6b\x70\x3c\x2c\x03\xfa\x77\x91\x31\xfd\x4f\x80\xfc\xcb\x9d\x53\xe6\x9e\x55\x23\x28\xa8\x6e\x6d\xa9\x17\xe0\xfd\xd4\x41\x60\x90\x82\x26\x90\x5c\x0d\x36\x9e\x50\xf9\xb0\xbd\x65\xaf\x29\xf5\x00\xde\x35\x37\xa4\xa0\x40\xe8\xb6\x01\x78\xf2\x9a\xe4\x70\xe6\xca\x79\xdd\xf1\x2f\xd8\x25\x08\x0c\xc4\xf1\xfe\xf2\xeb\x77\x00\x65\x01\x65\xe5\x84\xfc\x4d\xf1\x6a\x56\x6c\xb6\x78\xd6\x82\x91\x34\x12\x91\xe8\x51\xa7\x8f\x08\xd4\x23\xe1\x8f\x9e\xeb\xc1\xf6\xf9\xf3\x53\xfc\xe3\x3f\x44\xec\x19\xe7\xfc\x6f\xca\x3b\x26\xb8\x9b\x30\x63\x1a\x02\x49\x8c\x2b\x29\x86\xe8\x89\x8b\x34\x4b\xc8\xa8\xcb\xb5\x31\xcc\xd0\xeb\xb3\x6a\x5b\x32\x56\xcb\x05\x21\x05\x27\x9f\x5c\x4f\xda\xbf\xe8\xbd\xca\x1b\xa1\x83\xe1\x66\xb7\x72\xc6\xdc\xc6\xec\x69\xb8\xc6\x15\x94\x26\x8a\x03\xda\xe5\x44\xc6\x71\x9a\x31\x52\xf3\x77\x68\x1b\x21\x28\x5d\xa4\xaa\x97\x43\x9d\x9e\x65\x34\x4b\x48\xcd\xef\x10\x7c\x56\xb1\x1c\x7a\x36\x77\x24\x6f\x97\x24\xa7\xdd\x3a\x7c\x39\xdb\x08\x79\x2d\x48\x9a\xb1\xda\x3f\x89\x51\xda\x59\xa4\x18\x45\x01\x08\x4b\x07\xb1\x50\x58\x8e\x08\xdb\x0d\x17\xbe\x27\x7e\x47\xce\x80\x6e\x5d\x15\xbf\x55\xc4\x92\x12\xeb\x43\xb7\x3e\xa3\xe3\xd3\x9c\xe9\x67\xb0\x2d\x0e\x6d\x64\x12\x35\x02\x1c\xab\x90\x88\xf4\x87\x37\x17\xef\xf4\x3c\xb3\x98\x30\xf3\x38\x1e\xd1\xb8\x14\x6d\xdb\x57\xba\xa0\xd5\x95\x51\x87\xd2\x1e\x3c\xaf\xa0\x8f\x75\x37\x0d\x59\x3e\xd3\xb1\x49\xb5\xd0\xdb\xe5\xaa\xb8\xfd\xdc\x41\x9c\x11\x6f\x08\x02\xc4\xc1\x1a\x11\xeb\xe1\xe0\x6c\xe7\xae\x8c\xe3\x50\x35\x94\x0f\x0e\xc7\x01\x08\x61\xdd\xb6\x9e\x82\x1d\xe4\x66\xc5\x44\x06\xc8\xdc\x46\x49\xe1\x34\x65\xdd\x65\x38\xeb\xd4\x78\xac\xa7\x03\xf4\xb5\x89\x81\x9e\x91\x75\xd7\x62\x43\xca\xc1\x3e\xa4\x62\x78\xe8\x87\x3d\x4a\xd0\x91\xa3\xba\x41\x13\x5c\x8d\x7d\x7a\x39\xbb\x96\x62\x4b\x1c\xd4\xa5\x7f\xfa\xb4\x7a\x19\xd8\x3e\x90\x75\xc4\xf4\xaa\xae\x2f\x1e\xc7\xc1\x11\xe4\x0d\xfc\x3c\x0c\xcb\xe3\x6e\x4b\x3a\x3e\x63\x43\x20\x08\x54\xea\x7a\xd1\x64\x6b\xfe\xb8\x3f\x8a\xb4\xac\x5e\x2c\xf5\x86\x55\x76\xe4\x7b\x1e\x17\xbc\xa5\xca\x8f\x28\x6b\xb8\x65\x81\x27\x88\x46\x6b\x92\x06\xb5\x29\xdb\x75\x01\x25\x50\xe7\x31\x12\x70\x18\x96\x6d\x1b\xad\x8b\x7b\xb1\x82\x07\xbc\x92\xdf\xf9\xbb\xef\x4e\xd5\xe0\xf9\xb8\x20\x39\x27\x15\x5f\xba\x42\x10\x4a\x81\xf7\xbe\xd0\xeb\x85\x58\x2b\x9a\x84\xec\xb9\x35\x6d\xdb\x39\x2b\xfc\xa0\x1d\xd2\x1d\x23\x22\x32\x51\xdc\x31\x21\xc8\x00\x1a\x57\x4f\x72\x03\x4a\x0c\xd4\xfa\x71\x4c\xd6\xfa\x2f\x3e\x9d\x34\xfa\xdf\x69\xde\x45\xd1\xb9\x43\x1c\xfd\xc3\x3c\x9f\x34\xf0\x47\x6f\x9c\xd1\xae\xd1\x2b\xad\x3e\x82\x2f\xf4\xc9\xbe\xa8\xae\x6d\xbe\x6b\x9a\x2c\xa1\x79\xd6\x48\xa5\xe4\x69\x1d\xeb\x7e\x5f\xc2\xc1\xe5\x10\xc6\x48\x27\x56\x83\x12\x6e\x4c\x9f\x06\x43\x17\x53\x9d\xb9\xb1\x62\xb1\x52\x15\x35\x52\x21\x62\x35\xf4\xc0\x10\xaa\x45\x75\x48\xcb\xb3\x80\x45\xff\x00\x8b\xa1\x16\x66\x43\x5d\xa7\xef\xa7\xc8\x1e\x55\xbd\x4d\xa0\x4d\xa7\x72\xb6\xcd\xaf\xc5\xaf\x58\x28\xa6\x5b\x2e\xc1\x76\x34\x6f\x7e\xc1\x37\x7b\x9a\xc0\x47\x73\x8c\x32\xdf\x5b\x5f\x7d\xb6\x1d\xe1\xbe\x2f\xd6\x4e\x4d\x6a\x41\x39\xfd\xda\xb1\x82\x87\x89\x69\x61\xad\x1b\x8c\x38\x6e\x2b\x7f\x8e\xd0\x8f\xd4\xb5\xbb\x25\x35\xbc\x79\x6e\x4e\x0c\x1a\x81\x09\x1d\x02\xaf\x7f\x00\x0d\x61\xdb\xca\xd9\xca\xbc\x34\x1b\xd6\x39\x22\xea\x72\x2e\x41\x26\x68\x5b\xfc\xdd\x8b\x05\x78\x0c\x6e\xaa\x8e\xcc\x6a\x54\xf5\x7a\x28\x4b\xfa\x78\x8d\x7c\x2a\x03\xc8\x7f\x52\xc0\x0a\xe0\x0a\x0e\xd3\x6b\x40\x52\xfe\xae\xde\x3a\x7a\x72\xca\x0a\xec\xa4\x7e\xa4\x6f\xc5\x5a\x75\xb1\xec\xd5\x49\xd7\xdf\x27\x05\xfc\xeb\x9a\x18\x39\xa7\xde\xe9\x15\x1a\x90\xfe\xbb\xfe\x3f\xc1\x1c\xfa\x51\x81\x86\x13\xfd\xf2\xf6\xcc\x6f\xca\x4f\xf4\x17\x09\x95\xe4\x41\x67\xe8\x96\xff\x94\x46\xf5\xbf\x71\xaa\xf3\xb6\xad\xc4\x3e\x44\xc1\x75\xc4\x6b\x49\xe4\x8d\xe4\x88\x39\xa2\x36\x0c\x37\x63\xff\x80\xcb\x60\x10\x45\xef\x03\x47\x03\xf8\xda\xea\x23\xa4\x98\x70\x13\xa4\x53\xaa\xf5\x18\xbf\x25\x82\x2e\x6a\x2e\x92\xff\xe9\x0f\x81\x9a\x0b\x7f\x86\xfa\xf4\xbf\xee\xc6\x7e\x51\xa7\x2a\x4b\x44\x5a\x65\x47\xf5\xa2\x76\x7c\x73\x44\x2e\x6a\x7f\xaa\x26\x05\x93\x8b\x22\xa9\xfd\x89\x4d\xe1\x33\x5e\xec\x01\x2d\x78\xb0\x96\xf5\xc0\x8e\xf5\x76\x0d\x7b\xc6\xc7\x49\x7f\x81\xda\x75\x5b\xdc\x8b\xf2\x07\xcb\x86\xeb\xdf\x82\x05\x04\xc0\x96\xa6\x5c\x51\x66\xe9\xe4\x25\xc5\xc3\x42\xb7\xad\xa4\x2a\x03\xda\xd5\x44\xee\xa9\xd7\x91\x86\xe1\xdb\x31\x12\xc3\xf8\x4e\x0c\xb1\xca\x10\x5c\x18\x3f\x72\x2c\xad\x20\xd2\x47\x53\x61\x95\x32\x89\x62\x51\x94\x44\xf5\x4e\x41\xf0\xbe\x87\x56\x0b\xbd\x5b\x79\xbd\xdb\xa9\x91\x79\xbf\xdd\xb4\x80\xee\x21\x38\x3b\x89\xbe\xd0\x7b\xb3\x6c\x5b\x02\x57\xf5\x45\xdb\x4e\xf0\x6c\x64\x19\xde\x12\x4b\xc8\xeb\x44\xd1\xfe\xc0\x01\x08\x05\x3b\x70\xec\x4e\xa3\xc5\x50\xb0\x4c\xe9\x36\x69\xac\x05\x5d\xa8\xd4\xd5\x33\x4b\x94\x5b\xac\xfa\xab\x56\x1a\x2d\x61\xe1\x84\x68\xff\x03\x52\x8d\x1d\x83\x0b\x52\xf3\x41\x7c\xe6\x28\xd3\x14\x2c\x86\x70\xfa\xac\xcb\x52\x7f\xcf\xea\xe0\xc9\x46\xb0\x54\xc5\x18\x21\x7c\xea\x32\xa7\xd6\x17\x45\xb7\xcf\x02\x67\xba\xae\x73\x43\x1d\xf5\x22\xa2\x48\x34\x74\xaf\x0f\x0c\x8b\x22\xb1\xc6\x42\x70\x4f\xe8\x06\x47\x74\x55\xee\xe4\x31\xb8\xfd\x1e\x1b\x5f\xe0\x63\xeb\x04\x7c\x2c\x45\x53\xfc\x4b\x1c\x63\x29\x8f\x97\x65\xb1\xfc\x70\xbc\xba\x2a\xf1\xc7\xa6\xde\x35\x62\x55\xdf\x55\xf8\x6b\xb7\xc5\xbf\xfa\x10\x82\xbf\xea\x5b\x21\xcd\xaf\x9d\xc2\x1f\xa2\x52\x36\xac\x14\xf9\xad\x38\x46\xa5\xea\x31\x7a\x6b\x1e\xa3\x97\xe7\xf1\x07\xf1\x00\xe9\x7e\x10\x0f\x5b\x29\x9a\x46\xff\xd8\x6d\x8f\x8d\x3d\xfc\x46\x54\xbb\xc8\xb3\xfc\xf8\x5d\x21\xd7\xbb\xdf\x1e\xe0\x4d\xce\x17\x9d\xe4\x8b\xda\x2b\x26\xcd\x9d\x9e\xbd\x4a\x1f\xf1\xf8\xbe\xd1\x55\xfb\x88\xbf\x77\x57\x57\x3d\x3f\xbb\xea\x12\x05\x88\x06\xfd\xe4\xae\x0a\x5f\x8d\x17\xde\xc8\xdb\xe2\x09\xe3\x7e\xce\x24\x5c\xde\x0d\x3e\xe9\x7d\xb0\x5e\xbb\x2f\xe8\x9e\x59\x4c\x87\xdf\x21\x82\x40\xf9\xdf\x10\x3a\xec\xaa\x03\x5f\xb9\x6f\xf4\x36\x3c\x00\x9b\xf2\xb2\x8f\x9e\x3e\x8d\x4c\x5b\xea\x00\xc5\xc0\xc0\xfa\x69\xc4\xa4\x69\x82\xad\xac\xef\x1f\xc6\x1d\x55\x19\x38\xe3\x0e\x55\x5f\x70\xa4\x17\xa9\xca\x0c\x57\x82\xd4\x32\xb1\x47\x9d\xc8\x6b\x14\x50\xbb\x83\xde\x33\xca\x48\x31\xa2\xe6\x11\xf6\x78\x66\x9c\xbc\x2b\xeb\x5b\xd0\x4f\x01\x60\xf2\x66\xd7\xbb\x62\xc5\x85\xff\xa7\x6d\x2f\xe1\xef\x74\xca\x0a\x2d\x01\xdf\xd4\xe5\xea\xad\xc8\x57\x0f\x21\x06\x0c\x40\xe1\xe6\xab\x87\x9f\xf3\x42\x4d\xa7\x89\x79\x02\x72\x0a\xb0\x41\x00\x7f\x47\x1e\x78\x3f\x5a\x25\xc8\x5f\x2e\xde\x7c\xcf\x3d\x0f\x9a\x4b\xe7\x94\xc9\x3f\xc0\xb7\xaf\x4d\x46\x7c\x03\x8f\x08\x9a\xc1\x6f\xd9\xe5\x6c\x99\x6f\x44\xf9\x32\x6f\x04\xff\x95\x5d\xa2\x26\xfa\x0a\xbe\xbf\x73\x2e\xe6\xf0\xc9\xf7\xbb\x8d\x90\xc5\x72\x84\xc5\x02\xbf\xea\xae\x9b\x49\x07\xef\xc5\x95\x6f\x99\xcc\xb5\x2c\x37\x29\x9a\xef\xf3\xef\x89\xf0\x29\xd4\x05\xa5\x7b\x16\xd9\x94\xbb\x4e\x5c\x89\x75\x51\x89\x38\xc6\xbf\xb3\x7c\xb3\xb2\xbf\x49\x84\xbe\x2d\x11\x4b\xb3\x11\xce\xf1\x4b\x23\xe9\xff\x55\x71\x31\xfb\xe7\x8f\x3a\x26\x7b\xa2\x7f\x3f\xe9\x18\x62\xaa\xfa\x65\x5d\xad\xcb\x62\xa9\xf8\xd8\x41\x74\xf6\x44\x0b\x46\x70\x30\x7c\xc2\x9f\x28\x20\xd9\xb0\x69\xb9\x37\xe6\xf1\xaf\x8a\xb2\xcb\x3d\x28\x8e\x5c\x98\xfe\xec\x52\x07\xd3\x01\xac\xba\x9e\x1b\x47\x9b\xbc\xa8\x5e\xe2\x3a\xc5\xc3\x1d\x89\x3e\x3a\x9b\x4f\xb3\x26\xe1\x9e\x28\x58\x03\x90\x4e\x47\x0d\xa0\xab\x14\x69\x3e\xe5\xd1\x29\x82\xaf\x66\x58\xdf\x1d\xaf\x75\x04\x2d\xff\xd8\x0b\xab\x9d\x1d\xf1\xbb\x23\x7c\xcb\xf5\xe9\xaf\x6d\xc3\xc9\x84\x57\x45\x0a\xf0\x6b\x5e\xa1\x03\xfe\xcb\x7a\x57\xae\x40\xa1\xb9\x2e\xaa\xd5\xf1\xa6\x5e\xed\x4a\x61\x70\xed\xa4\xf8\x6d\x57\x48\xb1\x3a\xbe\x7a\x40\xe7\xfc\xe4\x53\x3e\xa4\x7b\xa8\x8e\xe3\x8f\x2b\x79\x33\x5b\x89\x6d\xc3\x96\xbc\x99\x59\xb5\x3b\x5b\x73\x9d\x16\x3a\xf7\x96\x4e\xdb\x77\xc3\xe7\xe7\x37\xcf\xed\xf3\xf9\xcd\x74\x4a\x23\x71\xbf\xad\xa5\x6a\xe0\x54\x9d\xde\x64\x8b\x75\x7a\x93\xf1\x5d\x12\x99\xd2\x85\xe1\x2a\x81\x3f\x15\xd1\x41\x2c\x77\xf2\xc0\xd2\x57\xbe\xac\x29\xdb\xed\xf5\x72\xa2\xd7\x34\x3d\xce\x56\xdd\x60\xbc\x83\x39\x13\xc7\xde\xbb\xce\x37\x02\x4d\xf1\xe3\x38\x4a\x51\x55\x65\x43\x32\x5d\x88\xc7\xfd\x4c\xd5\xe8\x01\x87\x2b\x86\x79\x49\xdb\x96\x18\xfe\xbe\x57\x7a\xc2\x78\x3f\xe1\xea\xa5\x93\x4c\xf1\x32\x38\x0c\x9a\x5d\x5e\x96\x75\xbe\x12\x16\x99\x8f\xa3\x79\x92\xd1\x09\x12\xc4\x67\xa9\xc7\x42\x8f\xc4\x01\x8e\xa6\xc7\xfd\x91\x5c\x90\x0a\x3a\x85\x2b\xbd\xd0\x39\xd5\x31\xe0\x56\x40\x78\x9a\xf9\x2f\x00\xbc\x45\x64\xbc\xda\x33\x32\x0e\xae\x65\xb6\x17\xbd\x34\x1a\xb1\x9b\x2b\x06\x97\x98\x63\xd1\xbf\x40\x09\x8f\xe8\x44\x69\xdb\x7a\x8f\xd3\x6e\xac\xef\x99\x9a\x5d\x8a\xfc\xc3\xa5\xde\x3b\x79\xc1\xba\xb6\xe0\x8f\xd8\x37\x89\x60\x66\x14\x24\x8a\x49\x71\x5d\x34\x4a\x3e\x24\x85\x31\xb4\x16\x5e\xeb\xcd\xf0\x03\xa6\xfc\x30\xf3\xed\x9e\x50\x26\x48\xf4\xff\x13\xba\x4b\x4e\x4f\x80\x3c\xa2\xca\xcb\xe6\xf4\x4a\xd6\x77\x8d\x90\x27\xa2\xba\x2d\x64\x5d\xe9\xd5\x3f\x62\xa9\x1b\x90\x59\x70\x55\x17\xed\x1a\x71\xac\x17\xc1\xa5\x8a\x8e\x84\xae\xf8\x97\x6f\xbe\xe3\x42\xaf\xca\x85\x14\xeb\xfa\x1e\x7e\xbf\xbc\x91\xf5\x46\x9f\xb9\x76\x8d\x90\x2f\xae\x45\xa5\x97\xab\x9b\xa2\x51\x35\x2c\x26\x56\x5b\xcc\xc5\xec\xce\x2c\xde\x30\x12\x50\xa1\xc1\x07\x1a\xd2\x46\x94\x6b\x07\xfa\x8c\x0f\xfa\xdf\x19\x0e\x07\xce\xcd\xb8\x18\x1f\xce\x3f\x9b\xa1\x0e\x5f\x78\xec\xfc\x9c\x73\xfb\x6a\x90\xa1\x95\x67\x5d\xa6\x5d\x00\x24\x63\x1f\xb9\xff\x66\x90\x8a\xad\xa6\x4b\xa5\x0b\x80\x54\x5c\x33\xf8\x6f\x06\xa9\x98\x66\x73\x89\xb8\x67\x48\xc3\x36\xaa\x17\x3e\x48\xa1\xca\x6f\x8b\xeb\x5c\xd5\xd2\xa5\xe1\x85\x40\x2a\xee\x99\x07\xef\x06\x82\x88\x7b\xd7\x75\x6c\x37\x08\xd4\x91\x81\xe9\x59\xe8\x34\xc1\x7f\xf0\xc8\x75\xb0\x3c\x32\x68\x33\x8b\xa0\xea\x36\x96\x6b\x8a\x0a\x95\xf5\x36\x9e\xa9\x94\x8d\x66\x6b\x5b\x40\xac\xda\xc6\x1a\x29\x56\x12\x7d\xfb\x50\xdd\x1f\x13\x10\x9d\xeb\x95\xa0\x7a\xb4\x76\xa3\xb1\x3e\xc2\x6d\x68\x32\xd1\xb2\x95\x9d\x98\x72\xb6\x84\x81\x8b\x80\x89\xf5\x56\xc8\x9c\x1e\x79\xe3\x39\x87\xaf\x1a\xfc\x6a\x6c\xac\x7d\x53\x35\x2a\x2f\x4b\x83\xbb\x76\xe4\x4f\x8b\x66\x7f\x60\xfa\xe9\x21\x59\x97\xc2\xac\x07\xde\xc4\x63\x36\xf2\x4a\x5c\xed\xae\xfd\xc7\xad\x14\xcb\x5c\x89\xd5\xc9\x5a\xe4\x6a\x27\x45\xd3\x3b\x71\x83\xc3\x6e\x38\x51\xed\x6a\xe5\x4d\xb4\xea\x48\xce\xbe\x7d\xf3\xd5\x57\xaf\xde\xc2\x6d\xc6\x63\x59\x5f\x0f\xee\x85\xad\x14\x24\xb8\x29\x26\x9d\x95\xf5\xb5\xd9\x65\x84\x47\x32\xb4\x67\x77\xb9\x1c\xa0\x0b\x8d\x7d\xaf\xe3\x8d\x26\x80\x46\xe1\x9f\x90\x02\x44\x1c\x4d\xa2\xa8\xd6\xf5\xa7\xa4\xa0\xe3\x8d\x26\x00\x4d\x3d\x48\x81\x39\x7d\x91\x49\x61\x06\xf1\x16\x44\x75\x49\x42\x88\xdd\x7e\x7d\xf6\xa5\x4f\xca\x37\x6f\x1a\x11\x5e\xfe\x1f\x2a\x3a\xc6\x1c\x4b\xc4\x88\x89\x05\xaf\xbc\xfe\x2e\x3e\x32\xec\x54\x5e\xe8\xb3\xff\xd8\x90\xf3\x22\x82\x26\x74\xf4\xcd\x4e\x15\xe5\xe1\x61\xba\xad\xcb\x87\x75\x51\x96\xc3\xc1\x89\xda\xad\xde\x00\xdd\xca\xe2\x36\x57\xc5\xbf\xc4\x18\xb5\x5c\x3a\xcf\x58\xc5\xaf\x53\x95\xa1\xa3\x8c\xdd\x8e\xed\x62\x61\xcf\xc5\x49\xa4\xa5\x84\x42\x47\xcf\x79\x91\x9e\x39\x85\xb8\xfe\x94\x93\x39\x93\x48\x9a\x54\x51\x52\x4f\xa3\x24\x9a\xe6\xd3\xe8\x24\x9a\x5e\xe9\xd1\x37\x7b\xfd\xe2\xe5\xbb\x37\x6f\x7f\xbd\x7c\xfd\xe6\x2d\x17\xb3\x97\xb6\x7d\xb8\x98\xbd\x35\x7b\xae\x3f\x7b\x6a\x3e\x26\xe3\x8a\xae\xd0\x43\x92\x07\x0f\x02\xd7\xbd\x4c\xcf\xb2\x85\xff\x90\x3c\xee\x8f\x0c\x38\xb6\xc9\xd3\x40\xfd\x40\x37\x70\x85\x7f\xd1\x44\x0a\x5f\xa0\x2d\x0e\xd4\x6d\x55\x40\x29\x72\xf9\x40\x89\xc2\x17\xc6\x98\x0a\xa3\xae\x73\xbd\xf1\x3d\x7c\x97\x57\xf9\xb5\x90\x2f\x0f\x7d\x38\x12\x2d\x48\xa6\x68\xbe\x14\x8d\x92\xf5\x83\x58\xf1\xc9\x59\x2f\xac\xa8\xae\xf9\xe4\x6c\x6f\x78\x32\xd1\x87\xd7\x87\xe4\xa9\x66\x65\x5d\x7f\xd8\x6d\xc7\x6d\xcc\x77\xc6\xc6\xd8\x6f\x81\x59\x55\xcb\x0d\x00\x0c\x01\x9c\x33\xdd\x33\x2d\xbc\x41\x66\x7e\x1f\xdc\x58\x00\xf0\x61\x71\xe6\xfa\x93\x75\x51\x41\x22\x5f\x0e\x3f\x5d\x8d\x7e\xaa\x6b\x07\x5f\x02\xe2\x56\x68\xfe\xd3\x8b\xd8\xb6\xc4\xbb\xd0\x21\xb6\x28\xd6\x1e\x7b\x14\xcd\xce\x58\x51\xe9\x31\xed\x38\x13\x47\x5a\x5e\x1f\xfa\xb5\xc4\xec\xe2\x2c\x5d\xa8\x6d\x85\x38\x76\x3f\x09\xa5\xfb\xdf\x6b\x42\x0a\x2d\x08\xe3\xe8\x9b\x4a\x4b\x0a\x7a\xdf\x3d\xbc\xf2\x20\x46\xe4\x9b\x9f\xbf\x7f\xf5\x36\xf3\xc0\xe2\x98\x80\x46\xc5\x02\xbf\xae\xe5\xc8\xb4\xfd\xc3\x33\x80\x99\xd3\xc3\x68\xf1\x11\xfc\xcd\xf0\xe4\x80\x49\xaf\x43\x2c\xed\x8e\x20\xee\x4b\xb4\x65\x02\xe8\x95\x6f\x61\xdc\x21\x57\x88\x5d\x41\x1c\xb8\xb7\xd0\x4b\xc0\x9e\x50\x1f\x66\xc7\x1b\x98\xc8\x99\xd8\x25\x7b\x2d\x0c\x7a\x07\x51\x2c\x6a\x8a\xea\xba\x14\x0a\xdc\x46\xdc\xe7\xcd\x27\x7f\x5e\x68\xa1\xa1\x52\x45\xae\x84\x9f\xc0\xce\x1f\x2c\x83\xa6\x7c\x36\xda\x94\xcf\xfc\xa6\x7c\x06\x4d\x59\x71\x00\x3f\x98\xc8\xae\xc5\x64\xd0\x62\x95\x5f\xb0\x61\x73\xa9\x0e\x42\x55\x57\x42\xce\x5c\x6d\x3b\x8a\x36\x1c\x92\x55\x78\x56\x77\x17\x10\xc5\xbe\x6f\x10\xdc\x43\x39\x2a\x8d\xcc\xd2\x7d\xee\xdd\x5f\xe8\xc0\xf1\x03\x9e\x5e\xcb\x5d\xcb\x1d\x79\x0d\xed\x95\xd1\xb8\x40\x57\x71\x8c\xdd\x19\xc7\xd8\x2f\x7b\x43\x1e\xe8\x01\x32\x9b\x69\xc5\x0b\x7b\xbc\xa4\x9f\x98\x35\x2b\xfc\x1c\xfd\x82\x54\xe0\x51\x8c\x3c\xe1\x98\xff\xc1\x02\xfc\xdb\xb9\x1e\xae\xb0\x57\xd9\x49\x98\x59\xa8\x28\xf9\xb7\xaa\x83\xf5\xa8\x0c\xce\x6e\x61\xb3\x68\x5b\xcc\x61\xac\x3e\x65\xde\x34\x47\xa8\x8b\x19\x55\xa8\x60\x85\x8f\xcd\x12\x12\x41\x12\x15\xaa\x7a\xbb\x59\x50\xf6\x88\x97\x0f\x2c\x91\xc1\xc8\x1b\xc8\x07\xde\x00\x37\x3e\x6f\x44\xd1\xde\x60\x7d\xb4\xdb\xba\x2e\xeb\x86\x08\x40\x29\x54\x1d\x14\xdd\x81\x8c\x79\xcd\x6a\xaf\xb8\xcb\x61\xc3\x9a\x15\xb6\x39\xea\xb9\x08\xfb\xef\xf4\x22\xeb\x34\x49\x05\x9f\x9f\x17\xcf\x95\xa3\x8e\x9d\x4e\xcd\x8d\x0e\x07\xb8\xc3\x86\xd7\x60\xc6\x2a\xa4\x7a\x60\x25\xaf\x11\x5c\x74\x5d\x08\xc9\x96\xfa\x09\x66\xf9\x51\x95\x36\x19\x5f\x2e\xf4\x22\x52\xb2\x47\x0c\x4c\x96\x7b\x9a\x40\x08\xd5\x82\x50\xf3\xe5\x43\x95\x6f\x8a\xa5\x5e\x35\xbb\x27\x3e\xc9\x21\x86\xdf\x09\xeb\x70\xdf\xb2\x8d\xa9\xd7\x16\x4f\xf2\xf2\xec\x0f\x0e\x68\x64\xba\x0a\xdb\x6b\x19\x97\x6d\x32\x39\x73\xac\xc5\x1d\xa6\x57\x1c\x2f\x0d\xff\x98\x47\x1e\x85\x81\x40\x9d\x5c\xc1\xb0\xd3\xcb\xe9\xbb\x87\xad\x70\xbb\x59\x43\x2a\x8a\xc1\x5e\x90\x1e\xa4\xae\x46\x37\x7a\x97\xb2\x0d\xae\xec\x12\xc6\xa4\xd5\x30\x7d\x10\x0f\xfa\x0b\x56\xf1\xf9\x79\xd5\xf1\x7e\x56\xb6\x2f\x0a\xae\x52\x99\x56\x59\x76\x54\x74\xbb\x70\xd1\xed\xc2\x5e\xe3\xad\x8c\xed\xf9\xb8\xb4\x85\x62\xd5\xe8\xe8\x3a\x10\x79\xef\xcb\xa6\x78\x8e\xdd\xc2\xa0\xfd\x59\xe4\x1f\xbe\xcb\xb7\x47\xa1\x24\xbb\x85\x18\x9b\x43\xd2\xaa\x5d\x89\x51\x94\xec\x64\x5e\x5f\xe8\x14\x66\xc7\xc7\x38\x7a\x5a\x73\x65\x04\xca\x5d\x59\x82\x62\xde\xbc\x74\xfb\xf4\x0a\x42\x2b\x66\xae\xf2\x57\xe2\x9d\xd1\x19\x3a\x38\x70\x90\xa0\xba\x09\x60\x82\xb7\x1d\x31\x05\x22\x03\xdb\x31\x37\x90\x23\xa5\x53\x43\x8e\xdc\x72\xb8\xa9\x36\xc8\xdf\x22\x39\x06\x65\x0a\x2b\xdf\x2d\x16\x9b\xfc\x83\x8b\x44\xba\xda\x87\x75\x37\xee\x76\x41\x8a\x7b\x26\xcd\x7a\x3e\x10\x8b\x8c\x80\xe2\xad\x0b\xfe\xae\xd7\xf1\x6b\x93\xb0\x50\x63\xed\xab\xcf\x3a\x95\x9f\x92\xe4\x35\xab\x82\x89\xdd\x6f\xe6\x1a\x5b\x34\xe7\x32\x58\xfe\x04\xf8\x8f\x93\x39\x2b\xf4\xf9\xb2\xb8\xae\x28\xe0\x73\x31\x5d\xb9\x49\x57\x71\x53\x27\x3a\x58\xd4\x5f\xe7\x45\x29\x56\xc7\xaa\xb6\x8b\x7a\x5e\x1d\xe3\x96\xb2\x14\xc7\xf5\xfa\xf8\x3f\xa2\xe9\x48\xf9\xa7\xd1\x7f\xcc\x8e\xbf\xab\x1b\x75\x5c\x16\x1f\x44\xf9\x00\x5f\x6d\x70\x6d\x2b\x1f\xcc\x85\xc9\xea\x18\xb2\x3e\xae\x25\x26\x8a\x40\xba\x46\x0f\x8f\xe7\xd6\x59\x44\x8f\x46\x2e\x5c\xbc\x72\x5f\x16\x55\xa1\x5e\xe3\x14\x5b\x1c\x08\x47\x59\x3d\x09\x1a\xa5\x13\xb1\x00\x12\xa1\xdf\x40\x39\xa5\x8c\xcc\x19\x9a\x67\xe9\x29\x42\x49\xee\x4d\x1c\x63\x79\xda\xf0\x41\x0b\x92\x4e\x65\x8f\x23\xde\x0c\x77\xd6\xa0\x14\xca\x6e\xf9\xe9\x3f\xd2\x7f\x24\xd9\x34\x81\x7f\x9f\x9c\xb2\x87\x03\x33\xd8\x1a\xf0\x0f\xef\x78\x47\x25\xc4\xb9\x2f\x21\xce\xbb\xe3\xe6\xda\xea\xc0\x85\xfb\xe9\x1f\x32\xcd\xb6\x89\xab\x3f\xfe\x0c\x5f\xc3\x8c\xc9\x71\x90\x0d\xd6\x2d\x11\x46\x08\x0e\x93\x97\x2a\x58\xb9\x0f\xad\x90\x18\xb7\xf8\xc4\x78\x65\x27\xc0\xe2\x52\x3a\x76\x9d\x80\x51\xdd\x90\xfc\xd8\x9a\x6b\xe2\x9a\xaa\x7f\x42\xcc\x75\x5e\x94\x17\x42\xc1\xba\x7c\x21\xcc\x6a\x79\x69\x08\x4f\x3e\xfe\xa9\x6e\x8f\x37\x1f\x8d\xb8\x77\x64\x7c\xfd\x45\x51\x79\x4b\xf8\xd8\xf5\x85\xb8\x3b\xae\x1d\xd7\x2e\xa0\xc8\xeb\x6e\x09\x22\xff\x5f\x3a\x73\x04\xb3\x5d\x9f\xda\x82\x76\x99\xe1\x69\x56\x6f\xd3\xc3\xf1\x93\x56\x19\xef\xb5\x98\x0e\x92\xba\xc0\xbb\x6a\xa4\xc8\xf6\xbc\x79\x28\xd3\x4f\x1a\x0d\x1e\x97\x66\xaf\x38\x2a\x0b\x5e\x06\xa3\x60\xf0\xd2\x16\x58\x65\x6c\xb4\xc6\xca\xb4\x3b\x24\x71\x00\xad\x7a\x5c\x7a\x52\xc1\x8a\x0d\x97\x68\x46\xd8\x6b\x5b\xef\x44\xa7\xa5\x7e\x38\xd3\x1d\x3a\xca\x99\x63\x95\xb1\x89\xe7\xa2\x57\xa1\xde\x29\xae\x03\x7e\x41\xef\x2c\x57\x9f\x9b\x5c\x4b\x59\x36\xb5\x6e\x59\x00\x63\xf6\xee\xd1\x09\xdc\x95\x5e\x0d\xdd\xe1\xce\xc5\x0a\xfb\xdd\x8f\xb2\xf0\x32\xcb\x57\x68\x8a\x3e\x28\x2b\x2f\x1c\xdc\x9e\xaf\xf7\xe8\x69\x8c\x02\xd1\xdb\x5c\x81\x04\xab\x1e\x08\xe4\x56\x77\x60\x03\xa9\x2d\xbb\x51\xb6\x4a\x4f\xd9\xda\x81\xc9\x82\x4f\x8c\x68\x96\xb2\xb8\x1a\xf3\xc7\x3e\xf6\xb3\xeb\xda\x28\x78\x34\x1a\xb1\x2f\x05\x3a\xa6\x14\x75\xb5\xf8\x9d\xf7\x44\x20\xcb\x4a\xbf\x1e\x8b\xe0\xc9\x95\x4b\x47\x17\xba\xa0\xae\x5d\x5e\x5b\xc1\xed\x0f\x96\xd8\x25\xb4\x38\x10\xfe\x89\x25\x1c\x14\x68\x58\xd4\x83\x76\xfb\xbd\xa5\x1b\x78\x6f\xc9\x81\x37\xbd\xb5\xc1\xcb\x0d\xe6\xa3\x2f\xe8\x8d\x2b\x26\x3f\xa5\x51\xfc\x54\x16\x87\x5f\x21\xc5\xf7\x27\x34\xce\xf0\x23\xe1\x84\x5e\x02\xe5\x0e\xef\x9d\x2d\x0b\xb7\xd1\x4e\xfe\x4d\x4b\x4a\x7e\x4d\xad\xc6\xc0\xde\xd3\xc5\x71\xa7\x46\xeb\x4d\x1b\xfb\x42\x9f\x80\x20\x9e\xa7\x31\x32\x4a\xf0\x83\x4a\x9d\xfe\x29\x4e\x74\x87\x6e\x77\x12\x95\xcc\x25\x98\x54\x7b\x7a\x70\xee\xa2\x51\x96\xb2\x54\x61\xaf\x6b\x09\x98\x9f\x7d\x7b\x8f\xde\xbe\x09\x1d\xae\x3f\x73\x7a\xb6\x91\x2f\x83\x5d\xa3\xf7\xf5\xd1\xe0\x1c\x71\x70\xdd\x50\x61\xc8\x30\x4b\x02\x27\x04\xaf\x12\xa3\x9b\xed\xa1\xbd\xcb\xee\x27\x72\x50\xa3\x4f\xd9\x00\xad\x22\xd5\xdb\x96\x06\x55\x93\x07\xab\x26\x0f\x56\x0d\xea\x24\x83\xf2\x1c\xae\x95\xcb\x5c\x64\xfd\x2d\xac\xfb\x9d\x2a\xe7\x5b\xa9\x7f\x1f\x59\x75\xcf\x98\x7a\xc1\x16\x2c\xe8\xb4\x2a\xa3\xbd\xf4\x16\xfa\x9f\x4f\x99\x67\x9d\x36\x16\x26\x99\xf5\x50\x40\xa4\x87\x11\x15\xb9\xb5\x07\x0c\x0b\x77\x4e\xc6\xe4\x59\x7f\x55\x1a\xbc\xe1\x69\x46\x0d\x10\xfc\xa3\x55\xe9\x24\x8a\x39\x85\x0e\x18\x34\x33\xd5\x1d\xe0\x0e\x89\x06\x61\xbf\xa3\x26\xf5\x04\xfd\x05\x7c\x52\xb1\x80\xe0\x36\x28\x8d\xd1\xb2\xd8\xfb\xb4\xfe\x38\xb2\x75\xeb\xe4\xef\xb4\xe8\xea\x15\x84\xfe\x6e\x9d\x2a\xac\xd3\x87\xaa\xbe\xab\xc6\x66\xa5\xd3\xca\xb0\x8a\xd5\x87\x44\xe5\x3c\x54\xd4\x0c\x84\x36\xca\x1a\x3e\x3f\x6f\x9e\x5b\x6f\xba\xf3\xc6\x6a\x6e\x76\x3c\x4f\x9b\xec\x68\x17\x76\x1e\xc7\x33\x70\x9d\xee\x32\x3e\x99\xd3\xfd\xc8\xaa\xff\x91\x39\xef\xd7\x05\xa6\xc6\xa7\xec\x16\xfe\x47\x20\x7f\x1c\x7e\x0d\x69\xf6\x0f\x9f\x8a\xd5\x66\x71\xec\x2d\xf5\x63\x1b\xe6\xad\x65\xab\x30\x73\xd6\x3b\x70\x1d\x5a\x11\x0b\x7f\xa4\x5a\x56\x93\x7e\x63\x04\x13\xdd\x9f\x50\x9e\xe2\x4d\x58\xf9\xcb\x88\xad\xd6\x08\x01\x20\xd0\x64\xa2\xac\x05\xaa\xec\x20\xbb\xec\x52\x17\x6a\xf5\x3e\xba\x78\x7f\xf3\xbf\x2a\x6e\x4f\x7d\xf8\x47\x8b\x3c\x90\xb9\xff\xb8\x30\x31\x48\x6a\x71\xe8\xfa\x44\x0c\x4f\x38\x70\x09\xae\xb2\xa3\xba\x6d\x09\xfe\x1c\x3b\xf3\x50\x63\x04\x53\xb5\xad\x64\xcd\xd0\xda\xd2\x02\x2e\x1c\x37\xc6\x1e\x53\x7c\xa4\x78\x21\xad\xc4\x31\x18\x67\xee\x0e\xcb\xe4\x87\xc4\x0d\x4f\xd2\xf8\x24\x19\x69\xfc\x7e\xcf\x80\x97\xc3\x85\x9e\x77\x7d\xff\x00\xf5\xb8\x3e\xb4\xa8\x5c\x71\x12\x45\x53\xf0\x5d\x90\x79\xb5\xaa\x37\x84\x4e\x3b\x66\xaa\x0e\x86\x3b\x9a\x01\x23\xf8\x21\xcb\x8a\x03\x76\x74\xff\x86\xfd\x4e\xcf\x38\xc2\x69\x7b\xa4\x37\xa3\x01\x76\xa5\x67\x00\xb7\x10\x76\xf3\x02\x90\xa7\xfe\x10\x74\xdf\xd6\xe6\x44\xb1\x67\x80\xdc\x32\x18\xaa\xf4\xd1\xc6\xe0\x42\xc7\xb9\x16\xea\xd5\xf7\x7f\x1b\x03\x0d\xd0\x6f\xf5\x2b\x61\x61\xfb\xb9\x30\x50\x23\x81\xa5\x11\x2b\xb8\x24\xa4\x1a\x5a\xf6\x61\xdc\x38\x76\x90\xd9\xdd\x49\xad\x73\x31\xa9\x4c\xad\x68\xdb\xca\x21\xc5\x54\x67\x0f\x38\xfe\xde\x9a\xba\xe2\x5f\xda\xb6\x63\x86\x5b\x9e\x01\x73\x1c\x7b\x0f\x6d\x5b\x89\xbb\x63\x6b\x70\x4e\x22\x6f\x03\x8d\x28\x0c\x2e\x53\xdb\xa2\x6f\x14\xf2\xff\x27\xef\x5f\xbb\xdb\xb6\xbd\x7d\x51\xf8\xbd\x3e\x85\xcd\xdd\xa1\x3f\x31\x0c\xab\x72\xda\xbd\xd6\x7a\xe4\xa2\xfe\x3b\xb6\x92\xb8\xf5\xad\xb6\x93\x34\xd5\xd0\xd6\xa2\x25\xc8\x42\x4d\x81\x2a\x08\xd9\x71\x25\x7e\xf7\x67\x60\xe2\x42\xf0\x26\x3b\x69\xbb\xf7\xd9\xe7\xf4\x45\x63\x91\x20\xae\x13\x13\x13\xf3\xf2\x9b\xfe\x7e\xf7\x98\xc7\x8a\xcd\x81\x1c\x7a\x14\x1b\xc2\xe8\x51\xac\xe7\xba\x47\xb3\x9e\x7b\x2d\x3b\xe6\xaf\xf5\x3a\x2f\x09\x0c\xc6\x3e\x34\x1f\x49\xb3\x52\xeb\x35\xcd\xb2\x90\x61\xa6\x7d\x6e\x55\xd7\xec\x92\x58\x67\xb7\x55\xff\xfc\xf0\xf5\x69\x7f\x74\x71\x79\x73\x72\x71\x7e\x78\x3a\x7a\xd3\x3f\xbc\x79\x7f\xd5\xbf\xee\x6d\xef\xe1\xfe\xaf\x37\xfd\xf3\xe3\xd1\xe5\xd5\xc5\xcd\xc5\xcd\xa7\xcb\xfe\x75\x6f\xa5\xf3\x39\x6d\x77\xb1\x1d\xbf\xfa\x5b\x5f\x3f\x7a\xdb\xdd\x0c\x9f\x5e\xbc\x1d\x5d\xdf\x1c\x1e\xfd\x7c\x73\x75\x78\xd4\x1f\x5d\x9c\x8f\x8e\xfb\x97\x57\xfd\xa3\x43\x55\xbd\x2a\xab\x0a\x7c\xe8\x5f\x5d\x9b\x9f\x57\x87\x27\xd7\xd5\x62\x7b\xf8\xfa\xe6\xea\xfd\x91\xea\x08\x34\xff\xe6\xe4\xb4\xaf\x9e\x8e\x0e\x2f\x2f\x4f\x4f\x74\xa9\xd1\x4d\xff\xec\xf2\xf4\xf0\xa6\x3f\xfa\x78\x75\x78\x79\xd9\xbf\x52\xd5\xe5\x0f\x2f\xce\x4f\x3f\x8d\xde\x9e\x9e\x9c\x9d\xf5\xaf\x46\x47\x17\x67\x97\x17\xe7\xfd\xf3\x1b\x18\xd6\xe8\xa7\x5f\xde\xf7\xaf\x3e\x8d\x4e\xce\x6f\xfa\x6f\xaf\x5c\xcf\x46\xc7\xfd\x37\x87\xef\x4f\x6f\x46\x87\xd7\x9f\xce\x8f\x46\x17\xaf\xaf\xfb\x57\xaa\xa7\xf0\xc9\x55\xff\xaa\x7f\x7e\xdc\xbf\x1a\x9d\x5e\x5c\x5c\x8e\x4e\x4f\xce\x4e\x6e\x7a\x7b\xf4\x3b\xdc\x3f\x7b\x0d\x0f\x0f\x8f\x47\xef\x2e\x2e\x7e\xbe\xee\xad\x32\xec\xa6\x70\x95\x65\x2d\xbd\x17\x22\x5c\x8a\x01\xae\x90\x24\x75\x22\xb7\x27\xef\x98\xcc\x5d\xa0\x65\x99\x45\xe9\xc5\x23\xbf\x34\xe2\x13\x20\x41\x06\x95\x05\x0a\xf4\xe1\x14\x94\xbb\x05\xcf\xad\x68\x18\x0d\xc4\xb0\x05\x71\x64\xfc\x40\xfd\xad\xb1\x57\xe8\x40\x0c\x7b\x80\x75\xcd\xdb\xed\x50\x3f\x07\xdf\x95\x81\x18\x6a\xf5\xa2\x3a\x56\x2a\x2d\x96\x4c\xa6\x75\x43\x73\x09\xdf\x08\x43\x51\xb5\x86\x8e\xb9\x63\x6b\x2b\xb2\xf9\x85\x65\xe7\xcd\xfb\xf3\x23\x58\x68\x57\x74\x04\xdf\x2a\xd2\xb9\x56\x5d\xac\xa9\xca\x85\x81\x98\xca\xec\x6f\x84\xeb\x4a\xeb\x80\x13\x53\x14\x7e\xe8\x00\x60\xbd\x6d\xf5\xf3\xd6\x86\x1e\x27\x7f\xb5\x97\xc9\xa6\x7e\x25\x99\xb6\x14\xd0\x4e\x79\x35\x5b\x75\xb3\x9c\xe6\xde\xd0\xc8\xd2\xcf\x32\x07\x8e\x2e\xd3\xcf\x12\xb9\xec\x4f\x83\xe5\xb0\x55\xcc\x39\x06\x31\xfc\x51\xa5\x5d\x25\x09\xc7\x95\x4c\x6b\xee\xfc\xa9\xb1\xb7\xd0\x0c\x69\xda\x19\x13\xda\xb1\xfb\xa2\xb6\xfb\x63\xd7\xfd\xb1\xeb\xfe\x54\x75\x7f\x8c\xc6\xe5\xbe\x4f\x75\xf7\x6c\x7d\x83\xa9\x21\xd5\xf1\x60\x3a\x44\x8a\xe3\x69\x7e\xd7\x3f\xff\xb0\x5e\x33\xb5\xff\x9a\xcf\x65\x21\x12\xb1\x0b\xc9\x6d\x19\xbf\xab\xfa\xdb\x6e\x70\x74\xd7\xe8\xa1\x70\x10\x5e\x18\x6c\xb5\x9a\xb0\x65\x73\x9c\x56\x4a\x50\xb4\x92\xee\x20\x3d\x66\xe9\x22\x92\xe3\xd9\x85\xc1\xee\xab\xa9\x48\x98\x8a\x9a\x8b\xaa\x65\xd0\x35\x26\x1c\x4c\x70\x37\x3a\xa1\xb2\x77\xe6\x0a\xcc\xc9\xea\x8e\xca\x2d\x03\x06\xe7\xf7\x53\x71\xaa\xe2\x87\xbc\x71\xd2\x6c\x42\xaa\xdd\x74\xb9\x50\xf3\xb4\xc1\x4f\x79\xe3\x67\x31\xbb\xfd\x76\x12\xc9\x68\x14\x4d\xa2\x85\x6c\xf0\x28\xad\xff\xcc\xd9\x34\x46\xe0\x62\xea\x6a\x78\xc6\xe9\xd9\x48\xbc\xfa\xac\x77\xf4\x44\x71\x70\x1c\xc9\xe8\xd0\xf6\x62\x45\xf9\x72\x4e\x45\x74\x1b\x03\x60\x6d\x21\x9d\x7f\x3e\x65\xd6\x9f\x36\xcb\x10\x6e\xac\xd7\x99\xe5\x8f\x55\x37\xbf\xac\x05\xe1\xb5\xf0\xf2\xb5\xd8\x34\x3b\x75\x2b\x64\xfc\xf9\xeb\xa6\x5e\x2c\x01\x2a\xf0\xeb\x3c\xc9\x89\x30\xa2\xa8\x0b\xee\xb4\x17\x05\x9d\x0c\x7c\x1c\xf1\xa3\x48\x46\x71\x72\xd7\xe7\x52\x30\x9a\xbe\x7e\x6a\xc8\xf1\x13\xcc\x93\x09\x8d\x03\x6d\x7e\x0d\x24\x9d\x2f\xe2\x48\x52\xf8\x9d\xe1\xf1\x73\x75\xe8\xce\x80\x78\x7f\x88\x42\xd1\x39\x77\x69\xdf\xcf\x0f\xcf\xfa\xd7\x97\x87\x47\xfd\x6b\x84\x99\x2b\x01\x16\xf4\x3c\xcb\x39\xd8\x72\xc1\x4e\xcb\xa6\x4f\x08\x52\x7e\x7e\x13\x78\xd9\x33\xa7\x89\xe8\x17\x20\x3a\xbc\xe3\x9b\x37\x1f\xdf\x1c\xb5\xdb\x49\x8e\xe1\x6f\x02\xe0\x06\x7c\xd8\x0a\xa0\xb1\x80\x10\xdd\x23\xd0\x67\x4d\x51\x18\xa1\x76\x9b\x69\x1d\x0a\x74\x69\x12\xa5\x33\x2a\xd8\x9f\x14\x41\xbe\x5d\x7d\x0b\x49\xd4\x1d\x44\x23\x37\xb3\x2c\x43\xde\xca\x7c\xc1\x66\xae\xee\xca\x2f\x72\x06\x17\x4b\x1e\x27\x10\xf7\x5f\x2d\x3a\xa7\x32\x8a\xff\x12\xe9\x61\xc0\xc0\x79\x09\x01\x46\x24\x29\x13\x20\xe3\xac\xb0\xcf\xb4\xa6\x20\x5d\x2e\x68\x01\xa1\x28\x37\xe9\x58\x4b\x64\x4c\xa3\x94\x9e\x41\xe6\x24\x30\xc0\x26\x40\x28\x1a\x9c\xb1\xb2\xbb\x5d\x78\xb9\x94\x82\xdd\x2e\x25\x3d\x65\x73\x26\x7b\xdf\xd9\xbc\x79\x67\x8a\x9a\x15\x15\xaa\x9d\x5f\xac\xbb\xe7\xea\x56\x2c\x41\x23\x5d\xd7\xe4\xe2\xf2\x7a\xf0\xa8\x0e\x03\xa8\x11\x00\xd8\x1a\x73\x64\x5b\xfb\xeb\x1d\x95\x79\xe9\xd0\xd0\xbd\xae\xac\x45\x43\x5e\xca\x5a\x9a\xbb\xd8\xdd\x83\x93\x4b\x42\x34\x50\xb3\xab\x22\xe4\x98\xc2\xed\xdc\xed\x08\x43\xa3\xa2\x93\xdc\xa6\x54\x3c\xd0\xbc\x28\x35\x49\x6a\x11\xc2\x49\xe6\x14\x0d\x3e\xd4\x4b\xed\x66\xb2\x77\xdb\x50\xf1\x40\x51\x5a\x0c\x03\xf5\x65\x80\xcb\x23\x94\x15\x10\xa1\x4b\x65\x55\xc7\x5c\x49\x00\xfe\x52\x1d\xba\x49\x8e\xd4\xd8\xca\x20\x3d\x95\x38\x27\xe7\xab\x03\xdb\xef\xce\x79\x77\x80\x93\x86\xe7\xf4\x1c\x6a\x76\xd5\x0b\x76\x28\x6a\x51\x25\x8d\x0b\xcd\x3f\x32\x07\xcd\xad\x57\xed\x8a\x8e\x13\x31\x49\xcb\x91\xe8\xcc\x43\x1a\x56\x0b\xb7\xcc\x57\x08\xc7\x46\xb9\xe5\xf5\x3b\xa4\x08\x8f\xdd\xda\x9a\x3a\xc3\x18\x53\xcf\x6d\x79\x0a\xf3\x18\x0e\xa8\x11\xe4\x67\x64\x5c\x59\x68\xeb\x6c\xaf\x97\x2f\xb5\xcb\xa7\x2b\x04\x94\x23\x84\x53\x58\x7c\xfb\x48\xad\xc7\x84\xac\x26\x6c\x72\x04\xd0\x05\xfe\x40\x04\x4e\x70\x94\x33\xc2\x98\x88\xfd\xf8\x07\xb1\x13\xed\xc7\x56\xe7\x3a\x56\xc3\xe2\x1d\x2d\x06\x1e\x4a\xa4\x5d\x10\x67\xa4\xd0\xc6\x18\xb5\x1a\x3a\x34\x86\x0e\xc9\x70\x30\x1b\xa2\x2c\x69\xb7\x59\x28\x70\xa2\xf6\x03\x8b\xe3\x72\x77\x0a\x26\xc2\xcc\x92\x08\x34\x1f\x4d\x26\x20\xf1\x5e\xe8\xca\x05\x0a\xc7\xb0\xe7\xf1\x04\xe1\x02\x6d\x2e\x9f\xa7\x4d\xa8\x50\xd3\x63\xa5\x4e\xa8\xb0\x42\x90\x65\xe2\xc5\x32\x9c\xd5\xf2\x9c\x2a\xe9\xaa\x71\x9a\x50\x83\xbf\xcc\xd1\x9e\x1d\x5a\x86\x27\x54\xd2\x71\x8d\x8c\xb2\xbd\xa7\x98\x60\xbc\x9c\x3b\xd3\xd6\x46\x6e\x55\xe6\x09\x35\xec\x4a\x5b\x1a\x70\x52\x4f\xe9\x51\x85\xd2\x93\x02\xa5\xa7\x6a\x0e\xc2\x01\x14\x2a\x32\x2a\x55\xce\x90\xff\xb2\x81\x68\xa5\x0e\x42\x0a\xf9\x8f\xdd\xf5\x9a\xfd\xd8\x55\xb7\x0c\x75\x04\xa7\xe3\x19\x9d\x2c\x63\x7a\xc1\xc7\x14\x85\x41\xa4\x15\xc2\x81\x26\x94\xf4\x65\x44\xb7\xdf\x40\x6e\xda\x37\x0c\x2f\x51\xc5\x76\xea\x4d\x5f\x03\x59\x45\x98\xe1\x25\xca\x34\x42\xfe\xa6\x39\x15\x95\x59\xa3\xb9\x1b\xb3\xc9\x0b\x8d\xc7\xc9\x92\xcb\x1e\xb4\x76\x47\x25\x0a\x05\x0e\xb4\x9d\x24\x40\x76\x89\x7b\xc6\xff\xd0\x5f\x6f\xb5\x2a\x7a\x13\xf7\x68\x06\x19\x32\xea\x4e\x23\x17\x34\xa7\x57\x37\xef\x50\x18\xd4\x9e\xa1\x5e\xbe\x6f\x22\x3a\x0d\xa2\xa2\xe1\xb4\x01\x3a\x50\x45\x36\xbc\xd7\xfd\x1e\x29\x9e\x0d\x3d\x4d\x2f\xb8\x93\x02\xd5\x21\x48\x1d\x8b\xa5\xe5\xbc\xdd\x2e\x65\x0d\x1c\x80\x3d\x59\xa1\x48\x98\x3d\x80\xbe\x2d\xd4\xd2\x78\x49\x86\x7b\x83\x84\x34\x1b\xfa\x50\x35\xac\xc3\x7c\x98\xe1\x86\x6e\x56\xe1\x79\xb5\x1a\xdd\x35\x9a\x34\x48\xb6\xc2\x3b\xe1\x5d\x17\x2a\x3b\x5e\x96\xa4\x56\xa9\xa4\x56\x59\x27\xb5\x52\xdb\x7f\x39\xe0\x43\x64\xdd\xd0\xc1\x12\xe5\xcb\xa4\xa8\x25\x34\xe7\x4e\x40\x1c\x15\x19\xce\xc9\x6f\xb3\x44\xe3\xd8\x7f\x4d\xd2\x87\x95\x23\x35\xdf\xbd\x4d\xd1\xe3\x87\x28\x5e\xd2\xb4\x44\xe8\x47\xde\x2b\x30\x31\x74\x52\x1a\x89\xf1\xec\x67\xfa\xf4\xa8\x3a\x52\x2a\x6e\x1f\xeb\xa2\x7a\x09\x6b\xeb\x7d\xe3\xbd\xd2\x85\xc7\x49\x9c\x94\xb7\xd9\x91\x7a\x06\xaf\xbd\xc1\xfb\x5d\xaa\xce\xc3\x2a\xf3\x8a\xda\xee\x6c\x9c\xae\xda\x3e\x3d\x53\x31\x74\xac\x86\x55\x69\x0b\x49\xe1\xa0\xad\x29\xe5\x3d\xc9\x8a\x97\x8c\xa8\xe9\x92\x71\x17\xb3\xf9\xbc\x7c\x93\xe0\xc9\x84\xee\x6a\xa7\xdd\x00\x07\xf0\xcd\xee\x6d\x74\x4b\xe3\xba\x78\xd1\x8d\x17\x0f\x53\xfd\xb7\xc9\x62\xac\xea\x1c\x27\xf3\x05\x8b\x1b\xd4\x09\xf6\x62\xf1\x82\xe0\x55\xef\x26\x63\x5b\x10\x74\x4a\x05\x85\x5c\x8d\xcf\x5f\x6f\x5c\xf0\xab\xfb\x3a\x6f\xdb\x3e\x52\x4d\xd6\xd6\xf5\xc0\xe8\x63\xfd\xb0\x6b\xb1\x19\x6c\x39\x06\x58\x06\x0e\xba\xd7\xbb\x6b\x51\xf1\xc0\x1a\xfa\x5d\x5b\x53\x7e\x39\xb3\x7d\x7d\x64\x82\x02\x6e\x76\x24\x6b\xab\xf1\xc2\x87\x03\x91\x3e\x14\x26\x4e\x2d\x76\xfd\x7a\x24\x4b\x59\xb8\x04\xbe\x24\x94\x1d\x17\x90\x50\xf3\x6c\xd2\x78\x8e\x1f\xf0\x13\xbe\xc3\xb7\x78\xa4\x53\x07\xe2\x6b\x7c\xd1\x64\x3a\x3b\x0c\xd1\x0a\xc0\x1f\xb6\x28\x39\x09\x07\x81\xa2\x9b\x84\x53\x2e\x7b\xbb\x86\xa2\x83\x3c\x43\xfc\x61\x1d\x70\x52\x86\x69\x1e\xd4\x71\x5f\xaa\xce\x2a\x2a\x1c\x3d\xf6\xe6\x11\xe3\x5e\x95\xf7\xcf\x56\x79\xf3\xa5\x55\xde\x3c\x5b\xe5\xd1\x97\x56\x79\xf4\x6c\x95\x67\x0d\x55\xf6\xdc\x84\xa6\xdf\xd6\xcc\xe8\xd9\xb3\x15\x5f\x35\x55\xbc\x2b\x92\xc4\xaf\xea\xea\xd9\xaa\x2e\x5f\x5a\xd5\xe5\xb3\x55\xfd\xfe\x25\x64\xf3\xfb\xb3\xd5\x1d\x7f\xdd\xec\x1d\x3f\x5b\xf1\xf9\xd7\x55\x7c\xfe\x6c\xc5\x27\x45\x94\xb5\xf5\x1a\x52\x20\x1a\x98\x6b\x84\x30\xed\x88\xe8\x91\x48\x4c\x41\xda\x3e\xcd\x37\xdc\x9b\x92\xdf\xf9\x9f\x21\x1c\x64\xb6\x63\x26\xe8\x02\x81\x07\x26\x75\x8f\xc9\x1b\x4c\x3b\x33\x1a\x2f\xa8\x20\x7f\x60\xda\xa1\xe9\x38\x5a\xd0\xfe\x67\x00\xc4\x2b\x3a\x40\x15\x6e\xee\xdb\xde\xcd\x9d\x4d\x43\x30\x8e\xcb\xe4\xdd\xcd\xd9\x69\x1e\xe1\xa9\x7f\xeb\x00\x4b\x9d\xcf\x9a\x9a\x97\x41\x00\x21\xb2\xd4\xe5\x51\x35\x2e\x97\xea\x4e\xef\xfe\x86\x44\x88\x4c\x5a\x47\x1a\x57\x6f\x1e\x21\xe8\x34\x73\x12\x47\x12\x20\x05\x66\x72\x1e\x5f\x47\x53\x4a\x52\x89\x69\x87\xa5\xaa\x03\xf0\x7b\xa9\x7e\x8f\x20\xb0\xfc\x8a\xf2\x09\x15\x54\xa4\xfe\x5a\x7c\xb2\xe1\x7f\xa4\xab\xea\x11\x50\xe6\x9a\x4a\x19\xfb\x68\xd4\x68\xa5\xc7\x41\xbe\x91\xed\x76\xf8\x8d\x24\x7d\x7b\x3c\xab\x7f\xa9\x08\x41\xda\x5c\x02\x14\xf0\x52\x08\xca\xe5\xd5\x92\x9f\x26\xc9\x02\x85\x68\xbd\x5e\x76\x6e\xa3\xf1\xfd\xed\x52\x70\x9a\xdf\x7b\xbc\x2b\x0f\x68\x6e\x7f\x96\xb9\xaf\xf3\x37\xd2\xe6\x2c\x37\xb6\x8c\x1b\xbb\x6a\xa5\x55\xa1\xa2\x2c\x4c\x7a\xf3\x25\x06\x74\x68\x0c\x1c\x35\xdf\x7b\xc4\x06\x25\x09\x58\x55\x66\x51\x5a\xdb\x96\x2b\x59\x6d\xaf\xd4\xc5\xb4\x8e\xd2\x45\xa9\x1f\x45\x0f\x23\x6a\x4c\x2c\x29\x95\xcb\x45\x9f\xdf\x31\x4e\x9d\x27\x49\xa1\x9c\x0b\xa3\x08\x03\x75\x92\xf7\x76\x93\xa5\x8c\xa9\x0c\xf0\x31\x87\x0d\xe2\xde\xe6\x8c\xc8\x96\xb8\x82\x12\xce\xd5\xaa\x5c\x41\xae\x00\xc7\xd5\x8f\x4b\x5f\x9a\x43\xbf\xb7\x3b\x49\xe6\xbb\x1a\x60\x52\xc9\x14\x16\x9f\x28\xc0\x7e\x09\xf3\x6c\x53\x15\x52\x50\x75\x50\x18\xbc\x24\x2d\x5f\x3c\x5b\x99\x1b\x6b\xd8\xc5\x8f\x39\xa6\x07\x0a\xcf\x42\x84\xf0\x51\x69\x3e\x5c\x1d\x46\x72\x28\x8a\x39\x53\xb9\xb1\xc6\x23\x55\xe3\x4d\x69\xfe\xca\x85\x6e\x54\xa1\xa0\x28\xf3\xf8\xad\xe8\x03\xb0\x34\x0d\xde\xa4\xe7\xe2\x65\xb9\xe6\xfb\x10\x01\xfb\x2b\x7a\x26\x87\x81\x66\x5e\x01\x5e\x79\x21\xd5\xbd\xed\xbd\xac\x38\x72\x5d\xaa\x17\x27\xe3\x00\xcf\x44\xf1\x9d\x77\xc6\x48\xfa\x59\xee\x4e\x19\x8d\x27\x01\xfe\x4c\x1b\x8b\x8d\x67\x74\x7c\x7f\x9b\x7c\x0e\xf0\x63\x63\xa1\x98\xf1\xfb\x5d\x99\x04\xf8\xac\xb1\x08\xe3\x8b\xa5\x9a\x77\xd1\x40\xb5\xde\x59\x62\x8a\x9e\xf1\xa6\xba\x54\xcf\x23\x41\xa3\x00\x5f\x53\xd4\xba\xeb\xf4\xcf\x3f\x74\x9e\x75\xd8\x58\xaf\x37\xac\xf7\xa1\x5a\xca\x5b\xbd\xb1\x61\x4b\x1e\xe6\x79\x5e\x1a\xf6\x65\x1d\x69\xd7\x92\x5a\xa0\x73\x20\x5c\x2c\xa8\xf1\x1f\x2d\x12\x78\xdd\x66\x28\xd1\x8c\x30\x5c\x3c\x00\x6a\xf3\x3f\xaf\x6b\xb0\x61\x1b\xa8\x96\x6e\x97\x2c\x9e\x00\x01\x69\x57\xbd\xc2\xc5\x38\x7d\x64\x72\x3c\x0b\x69\xe7\x36\x49\xac\x2f\xb6\x3a\x46\x54\xdb\x67\xc9\x84\xa2\xd5\x38\x4a\xa9\xaa\x90\x81\x63\x5d\xd0\x33\xac\xee\x73\xc7\x3d\x7b\xad\x1b\xe8\xdc\x42\x7e\x07\x80\xd0\x83\x8f\x04\x9d\x3d\x4d\x84\x22\x7b\xfb\xd1\xac\x63\x9f\xb1\x84\xd7\x7c\x66\xce\x9a\xbc\xb8\x06\xea\xad\x96\x84\x6c\x53\xcd\x9c\xc6\x0d\x39\xf0\x86\xf5\x92\x8d\xea\x4d\x7a\x5e\x47\x6d\xd5\x1b\x39\xc9\xa5\xa2\xac\x77\xcd\x75\x2b\xa9\xf1\xc6\xf1\x84\xf2\xd7\x57\x86\x11\xe4\xeb\x69\x3f\x85\x2e\x04\xf8\x27\xd9\xf4\x5a\xdd\x9f\x64\x80\x7f\x93\x08\xcf\x0d\x8a\x9a\x12\x5c\x5e\x4e\xb6\xcb\xc5\x24\x92\xb4\x99\x6c\xed\x31\x80\x5a\x8d\xf4\xe6\x4e\x8a\x3a\x7a\xb3\x81\x86\x96\xc7\xb7\x3c\x81\x6e\xd6\x39\xbe\x38\xd3\x9a\xd0\xd4\xa0\x05\x37\x36\x52\x73\x96\xbc\xa4\x39\x2c\x88\x9d\x97\x03\x68\xee\x46\x50\x7a\xe4\x55\xd3\xfb\xdc\x39\x4f\x26\xb4\xe6\x8d\xdf\x53\x03\x66\x9c\x69\x91\x4b\x77\xf0\x2c\x1a\x8b\xa4\x78\xde\xf7\xb9\x56\x62\x69\x16\xc3\xa4\x36\xd9\xbf\x49\x04\x39\xa7\x98\x76\xc6\xd1\x22\xba\x65\x31\x93\x8c\xd6\x79\x22\x7f\x3d\xdc\x93\xd6\xda\x6e\x77\x5b\x36\xa6\x66\x05\x49\x25\x4f\xd9\x94\x1e\x3d\x8d\x63\x6a\x53\x1c\xa5\x3d\x8b\x53\x67\xd2\x4e\xaa\x12\xe3\x42\x09\x84\x01\x81\x00\xf0\x0d\xbd\xd2\xf9\x43\x84\x35\xc9\xbc\x4b\x92\xfb\x9e\xc8\x0c\x2f\x3d\xb2\x6c\xdb\xc0\x0f\xd4\xc5\x72\xb4\x04\xb9\xe8\x38\x56\x3d\x3a\x3b\x3c\x3f\x7c\xdb\xbf\x1a\x5d\xdf\x5c\x9d\x9c\xbf\x1d\x9d\x5e\x5c\xfc\xfc\xfe\xb2\x06\x31\x90\x1e\xf8\x6a\x47\xa7\xc7\xd3\x3e\x8b\xde\x81\xb1\x3b\xd7\x4d\x83\x29\x2d\xeb\x39\xa9\x3a\x16\xe1\xca\xd8\xdb\x7a\x02\x5b\x55\x42\x6f\x7b\xcf\x24\x20\x76\x15\x04\x19\x96\x56\xe8\xdb\x30\x1e\xbb\x5c\x63\xe1\xa7\x94\x05\x18\x21\x5b\x79\xbb\xed\xd5\x0a\x60\xe7\x90\xca\xcd\xe1\x62\xb9\x00\x11\x98\x3b\x93\x31\x5c\xd4\x4f\x5d\xcd\x28\x68\xcd\x28\x4c\x0a\x70\xe1\x0f\xa2\x5c\xf1\x67\x8e\x69\xc7\x16\x3c\xd2\xc4\x58\xa2\xc5\xbc\xc5\x55\x96\x35\xfb\xa9\xe4\xfb\xf6\x85\xce\x29\xfe\x56\xdf\xe8\x01\x53\xb3\x11\xbf\xa4\x89\xf2\xb7\x1b\xdb\x62\xe9\xb5\x39\xd2\x80\xf7\xbd\x61\x22\x85\x8c\x19\x2f\x6e\xb0\xa9\x82\x8d\xad\x36\xb0\x9b\x17\x36\xda\xc8\xae\x34\xf7\xbc\x00\xc1\xfe\x03\xa3\x8f\x84\x76\xc0\x44\x72\x2d\x75\x4c\xfe\xc9\xf9\x87\x8b\x9f\xfb\x84\x76\xde\xab\xed\xab\x1a\xb9\xb2\xda\x49\x42\x3b\x87\xb7\xa9\x14\xd1\xb8\x4a\xf7\xb4\x33\xa2\x9f\x17\x54\x30\x50\x12\xc6\x86\xe9\xd1\xce\x89\xa2\x40\x9d\x44\xdd\x5e\x3f\xe1\x29\x15\xd2\xfb\xed\xfd\xa9\x2e\xad\xc6\x11\x92\x76\xfa\xf9\x19\x44\x68\xe7\x9d\xbe\xad\xd3\xce\xd5\xc5\xc5\xcd\xe8\xaa\xff\x06\xc0\xf3\x4c\x47\x08\xed\x9c\x32\x7e\xef\xff\xbe\xa1\x9f\xe5\xa1\xa0\x91\xf9\x13\x12\xdf\xaa\x4f\x8c\x0c\xab\x2a\xf2\xce\x5b\xdf\xcb\xe3\xcf\x66\xc8\x3d\x13\x14\x30\xd6\x00\xb3\x06\x5d\x44\x55\xcb\x26\x06\x9d\x83\x4a\xd5\xa2\xfa\xc7\xd9\xe6\xf3\xf8\xf9\x26\xb0\x0e\xa9\x6d\x1d\xb9\x03\x40\x29\x0d\xb5\x69\xd1\x46\x55\xd0\x8e\xbd\x2f\xe0\x15\x28\xac\x7b\x32\x33\xb8\x62\xf8\x1d\x79\x13\xae\xd8\xa4\x17\xcc\x7e\x9f\x7d\x7e\x9f\x88\x65\x80\x6f\xe3\x64\x7c\xdf\xfb\xd7\x2a\x48\x9f\xe6\xb7\x49\x9c\x06\xbd\xc1\x10\x43\x26\x13\xc8\xa2\xa0\x7e\x0f\xf6\xf0\xe0\xd5\x7f\x61\x8f\x21\xe1\xc1\xe0\xd5\x77\xb8\x8b\x07\xc3\xe1\x10\xae\xe8\x43\x3c\x8d\xe2\x94\x0e\x87\x38\x98\x45\x69\xff\x21\x8a\x83\x1e\x3c\xc9\xfe\x85\xd5\x70\x7b\x2b\xad\x77\x07\x2f\x94\x60\x11\x8d\xef\xa3\x3b\x9a\x7e\xdb\xa8\xb8\x07\x9f\x20\x2b\xf3\xa7\xdf\x2a\xe1\xa7\x33\xbb\x4d\x03\xad\xfe\x2f\xac\xcd\x3b\x58\x96\xd7\x6a\x92\xd2\x8e\x1e\x04\x0a\x83\xab\xbe\x3a\x26\xde\xdf\xf4\x47\x37\x87\x6f\x03\xed\xfb\xf1\x9e\x44\x9d\x37\x22\x9a\xd3\xc7\x44\xdc\xff\x2d\x9e\x3a\x83\xd7\x43\x12\x77\x8e\x99\x90\x4f\x6a\x3b\xdc\x44\x77\x0e\x41\x2b\xc3\x82\xaa\x09\x5b\x4a\x5a\x6f\x49\xdb\x07\xad\xc8\xef\x09\xe3\x28\xac\x51\x0b\x0c\x5e\x0f\x75\x46\xbf\xce\x44\x55\x0f\x56\x71\x18\xbc\x21\xf5\xf7\xf8\x7d\x87\xa5\xfa\x87\xd1\x63\x91\xed\xae\x12\x0c\x23\x75\x22\xb8\x71\x82\xdd\x10\x85\xef\xf5\x14\x7c\x7c\x86\x7a\x4d\x8f\x1d\xf5\x56\x1a\x78\x09\xdd\x3a\xfe\x6f\xc7\xef\x57\x9d\x95\x21\xee\xfe\x28\xe9\xe8\x3e\x2a\xd9\xc7\xbd\xfd\x90\xbf\x85\xa1\x19\x87\x61\xb5\x09\x0e\x74\x5c\xaf\x96\x74\x9c\xa0\x41\xb5\xc9\xfd\x53\x89\x1e\xde\x5f\x1e\x1f\xde\xf4\x03\x84\xdf\x96\x5e\x68\xa6\x06\xc2\xa9\xe1\x6f\x6f\x35\xd0\x7d\xa9\xdc\x21\x38\x5d\x07\x08\x7f\xd3\x88\x81\x52\x37\x37\x77\xb4\x16\xc3\xfb\x37\x4b\x27\x0e\x07\x03\xf6\xe7\x2f\xc5\x20\x44\x5b\xb9\xb4\x69\xed\xad\x27\x89\x06\x8b\x32\x89\xe5\x91\xce\xa2\x80\x3a\x71\x94\xca\x2b\xfa\xc0\x40\x47\xa9\x71\x51\xe0\x19\x98\xe8\xcc\x83\xcc\xcd\xa5\xe8\x30\x3e\xa3\x82\xc9\xf4\x34\x49\x52\x8a\x20\xff\x1c\x96\x5e\xdf\x1f\xe0\xbb\x5a\xe2\xed\xc8\xe8\xce\xd8\xd6\x0b\xcd\x5a\x43\xbb\x6b\xb6\x55\x8a\x36\x53\x57\x0b\x40\xcf\x81\xc1\x7b\x78\xed\x79\x47\x7d\x6a\x09\x8d\xff\x48\x61\x68\xa6\x67\xa1\x09\xff\xcd\xc2\x6f\x10\xfe\xb5\x69\xe6\x72\xd1\xd1\x86\xed\xfa\x39\xf9\xa5\x9b\x3c\x48\xd6\x28\x28\xaf\xc5\xe5\x10\xcf\x4f\x5b\x0d\xf3\xb6\x87\x3c\x35\x21\x8f\xcd\x54\xe1\xc5\x11\xda\x7e\x34\x04\x80\x87\xd5\x62\xe0\x3c\xfa\x93\x45\x59\x02\x54\x4c\x13\xec\x9d\x85\x71\x07\x0e\x78\x77\x4e\x6b\x2e\xf0\x5b\x33\x99\x39\x12\xae\x65\x7a\x7a\xb2\xbe\x62\x32\x72\xa1\x30\xec\xe2\xb8\xc3\x52\xe8\x16\xec\xe2\x62\x21\x36\x0d\x63\xea\x67\x15\x81\xb1\x81\xf7\x08\x9b\x86\xe3\xf2\xab\x88\x86\x74\x20\x87\x1a\xaf\xd0\x7f\x39\xeb\xbc\x3f\x3f\xee\xbf\x39\x39\xef\x1f\x2b\x71\xa0\x7f\xd5\x3f\x3f\xea\x6b\x20\xc0\xb0\x8b\x27\x80\xe1\x12\x8d\x67\x8a\x6b\xa3\x10\x65\xa1\xa3\x29\x6c\x52\x2f\x50\x9d\xf1\x69\xf3\xba\x79\x3d\xa1\xde\x5e\x96\x59\xf8\x0b\xc2\x3f\x35\x92\xa4\x0b\x9a\xb6\x44\xc9\x6b\xf7\xb3\x4e\xc0\x66\x36\x05\xe6\x0e\x70\xef\x67\xfa\x44\x84\xf7\xfb\x26\xba\x23\x71\x2e\x94\x79\xa7\x50\xd8\xc5\x63\xb5\x55\xdf\x24\xc2\xca\x8f\x48\x23\xb0\x60\xae\x9e\x93\x42\x25\x98\x67\x4d\x6b\x6a\x81\xd3\xeb\xa0\x74\xed\x99\x51\xcf\x28\xbc\x41\x58\x86\xe1\x8d\x23\x77\x8d\x1b\x6b\x27\x20\x3d\xe7\x7c\xf0\xa9\x98\x2a\x13\x0a\xa4\xaa\x40\xb5\xd2\x52\x95\x76\x05\x7e\x43\x98\xd2\xe7\x97\x60\x7f\xe3\xe4\xe7\x02\x6e\x65\x01\x1c\xec\xb3\x62\x85\x09\x79\xc9\x72\xc4\x9d\xa3\x8b\xf3\xeb\x9b\xc3\xf3\x1b\x25\x95\x78\x3e\xdd\x6a\x29\x60\x63\x8c\x93\xf9\x2d\xe3\x14\x85\x03\x86\x93\x21\xfa\x07\x57\xc4\x8d\xac\xbc\x2a\x8a\x10\x44\x65\xa1\xb0\xc7\x76\x31\x73\x50\xfc\xc5\x4c\x41\x84\xb5\xdb\xd6\x87\x0b\x70\xe4\x5c\x8f\xf4\xc3\x62\x1c\x0e\xc9\xc3\xb4\xf8\x7a\xed\xc7\xf2\x10\x9b\x3e\x0c\x47\xc4\x29\x51\xc0\xe5\xc7\x50\x49\x84\x05\x02\x48\x02\x25\x1f\x69\x65\x42\x3d\xad\x47\x40\xeb\x49\xf6\x52\x92\x72\xb3\x92\xb3\x83\x66\xf2\x92\xcd\xe4\xb5\xe9\xd0\x71\x24\x26\x81\x50\x6a\xa5\x47\x2c\x3a\xa3\x07\xb3\xf1\xc5\x57\xd1\x40\xe5\xf0\xf6\xaf\x0c\xba\xee\x0c\x73\x33\x79\x45\x95\xb5\x8d\x76\xd6\xa5\x2c\x58\xa1\x8c\xee\x8a\x02\x29\xf6\x0a\x11\x33\x2b\xdf\x28\x39\xaa\xe6\x7a\x28\xa9\xd6\x30\x7d\xdd\x8c\x79\xc7\xb4\xa6\x9e\x17\x6f\x31\x2c\xea\xf6\x96\xde\xb3\x22\xaf\x6c\xf8\xb5\x47\x3c\x9b\x86\xe5\x03\x2d\x87\x28\x35\x24\x04\x66\x5d\x10\x26\x59\x7a\x29\x92\xcf\x4f\x28\x14\xde\x39\x75\x29\xd8\x9c\xe9\x4b\xb0\xa5\x3d\x33\x96\x0f\x7e\x68\xbf\x3a\x63\x64\x45\x90\x90\x89\x92\x7b\x6b\xce\xa4\x62\x7b\x14\x1d\xe8\x45\x74\x23\x7e\xc1\xde\x01\xf5\xc6\x8d\x58\xca\xd9\x53\x80\x10\xb6\x02\xb6\xcf\xab\xfd\x02\xa8\xf7\xd2\x26\x60\x96\xf0\x07\x83\x7b\x94\x85\x33\x25\xa4\x4c\x20\x8f\x62\x14\xe7\xa2\x0a\xe6\x2f\x60\xdf\x9b\x4f\x50\x63\xc4\x57\xbc\x3b\x12\x77\x29\x9c\x9a\x8a\x1e\x80\x2a\x30\xff\x1a\x41\x46\xd4\x2c\xba\x40\x39\xd6\xae\xcd\x08\x19\xc5\x80\x61\xcc\xa3\x39\x9d\xc0\xf1\x60\x19\x4a\x44\x98\xa3\x0c\x4f\x42\x0c\x13\x1c\x55\x56\x1b\x32\xce\xf9\xeb\xbd\x99\xb3\xeb\xe1\x5a\x86\xae\x46\xac\x38\xb9\xdf\x25\xc5\x2c\x74\x97\x54\xe7\x6c\x97\xbc\xee\x39\x47\x02\xc8\x1d\x69\x45\x19\xf6\x97\x57\xc2\x02\x71\x56\xd7\xa2\xbc\x37\x07\xaf\x87\x7a\xd7\xc2\xf1\xf7\x75\x2b\xf4\x97\x66\xd1\x76\xf5\xef\x99\x47\x77\x93\xf1\xe7\x33\xf9\x3f\x4f\xd9\x1b\x67\xc3\x7d\xed\x91\x95\x39\x27\x55\x6b\x6e\x1c\x51\xe3\x38\xfe\xb1\x9b\x44\xe1\x5a\x85\xb7\xf7\x5e\x26\xa1\xcf\xa8\x77\x3f\x1a\xd0\xa1\xf9\xb0\xe6\x82\x84\xd3\xbf\x78\xaa\x43\x13\xea\xd8\x86\xf5\x30\x47\xcd\xdf\x25\xc6\xf9\x87\xb8\x66\xaf\x86\xde\x32\xed\x45\xdf\x88\x53\xa7\x0b\xdf\x51\x7d\x84\x40\x6f\xf4\xd4\x1a\xfd\x90\xc4\x83\xd5\x3d\x7d\xea\xbd\x6d\x0a\x3e\xcd\x67\xef\xed\x30\xcb\x86\x48\x53\x40\xae\xc6\x59\xea\xfb\x52\x8e\x24\x40\xa8\x01\xae\x96\x3e\x70\xb5\x20\xba\x17\xe0\xcb\xed\x60\x94\x3d\xa8\x75\x5a\x05\x01\xa4\x35\xe9\xa4\x3c\xef\xb0\x31\x7d\x26\x22\xdc\x95\x9c\x7a\x25\xb7\xbb\x1e\x10\xb7\x97\x31\x65\xbb\x92\x2d\xbd\xd1\x88\x86\xd6\x6b\xff\xa7\xb3\x16\xa9\xda\x0e\x74\xe6\xbf\x5f\x01\x82\xd0\x5c\x54\x51\x0f\xba\x7a\x90\xff\xde\x74\xfa\x1b\x45\xd6\x84\x96\x14\x51\xc7\x27\x57\x37\x9f\xb4\x56\x13\x2f\xca\x2f\x0f\xaf\xde\x5e\x07\x08\xcf\xcb\xcf\xad\x5a\x1c\xf4\x5c\x4e\x47\x3e\xd7\x52\xd9\x43\xb9\xf4\xc9\xf5\xe8\xf8\xe4\xfa\xf2\xf0\xe6\xe8\xdd\xc9\xf9\xdb\xd1\xe1\xcd\xcd\x95\xaa\xf5\xa9\x5c\xee\xdd\xe1\xf5\xe8\xf5\xe9\xc5\xd1\xcf\x01\xc2\x77\xe5\x97\xaf\x2f\xde\x9f\x1f\xab\xcf\x6e\x29\x59\x74\x8e\x12\x41\x3f\x30\xfa\x68\x15\xae\x8b\xce\xd1\x8c\xc5\x13\xf5\x28\xbd\xd6\x71\xa0\x78\xd1\x51\x3f\xaf\x65\x24\x69\xfe\x08\xe8\x13\x02\x0d\xec\xb3\xa8\xa3\xe3\xc5\x0f\x61\xf1\xf2\x92\xe5\xdf\xaa\xb2\x33\xf6\x99\x71\x1c\x86\xa7\x64\xa5\x4e\x6b\xeb\x18\xb2\xdd\xc5\x5f\xa9\xf0\x7d\xa0\x43\x9b\x6e\x66\x30\xa1\x8d\xda\x5f\x5d\x60\x6e\x94\x33\xbf\x7a\xa9\x5d\x06\x77\xea\x21\xf8\xbd\x0b\xaa\xad\xf0\xe5\x6e\xa8\x8a\x6b\x45\x6d\xe8\x5d\x88\xb2\x0c\x0d\xc6\x9d\xcb\xab\x8b\xcb\xbe\x22\x85\xe3\x93\xe3\xd1\xd1\xbb\xc3\xf3\xb7\xfd\x61\x59\x36\xdd\xb6\x7d\xf6\x55\x4c\x83\x05\x1d\x62\x41\x72\x80\xfb\x03\x39\xa0\xc3\x9e\xb5\x71\xd4\x23\xe3\x7d\x1a\xb6\xdb\xea\xff\x9e\xf8\x67\xd4\x1d\x28\xcb\xf0\xa9\x7a\x72\x28\x65\x2d\xe0\xaf\x8b\xbc\x51\x9c\xe7\x14\x72\xb0\x1e\x5f\x9c\x55\x4a\x3b\x53\xc7\x42\x15\x56\x8b\x67\xd3\xd5\x9b\xd9\x83\xd3\x8e\x78\x28\xb3\xef\xaf\x4e\x08\x21\xb3\xce\xf5\x87\xb7\x23\x17\x80\xa2\x03\x4c\x67\x39\xae\x53\x2e\xd0\x0a\x0c\x68\xe5\x0c\x4c\xa9\x20\x87\xe5\x50\xe0\x8e\xeb\xae\xd7\x41\x24\x25\xa4\x5a\x4d\x0e\x84\x1d\x17\x84\xd5\x86\x11\xea\x89\x41\x34\x54\xa3\x98\xb0\xc9\x15\x1d\x53\xf6\x40\xd5\xeb\x82\x63\x9f\x7b\xad\xd6\xb6\xfc\xe2\x91\xc5\x71\xfd\x9b\x09\x9b\xc0\x85\xa6\xbe\x42\xf5\xdd\xfb\xd2\x5d\xad\xf4\x5d\xe9\x05\x52\x5b\x3d\xb7\x79\xdd\x52\x7c\x4b\x37\xc0\xd5\x5b\x6f\x78\xdf\x96\x7d\x4b\x3b\x82\x26\x0b\xca\x75\xf0\x91\xbf\x85\x8c\x45\x40\xed\xa4\x5c\x2c\xba\x8c\x44\x34\x4f\x7b\x83\xa1\x8e\x30\xaa\x35\x44\xdc\x9a\x33\x6f\x44\x9d\x2d\xea\x41\xa6\x7f\xfe\xe7\xd5\x9b\x17\xd9\xa2\xfe\x21\x03\x13\x9d\x2f\xe4\x93\xb5\x30\xe1\x47\x4a\x6e\xa9\x33\x0d\xc5\xd1\x53\xb2\x94\xbd\x11\xc5\x63\xc7\x8b\x7a\x03\x13\x3f\xe2\xbc\xde\x86\x58\x46\x77\xba\x75\xe3\x97\xe6\xc2\xb1\x5f\x33\x3e\x61\xfc\x4e\x7d\xa4\x28\x2f\xc0\x01\x7c\x45\x27\x01\x0e\x18\x9f\x50\x49\xc5\x9c\x71\xed\xeb\x37\x61\xa9\xe2\x25\xea\x95\x8c\x6e\x0d\xcc\x45\xa0\x48\x3e\xc0\x41\xb4\x94\x09\x24\x08\x0f\xb0\x4d\xc9\xaa\x0a\x4e\x13\x31\x57\xed\x6b\x5f\x04\xe7\x86\x67\xab\xea\x6d\xef\xe1\x42\x33\xea\xc1\x84\x4d\x4e\x78\x4a\x85\xcd\x96\xfe\x15\x31\x9d\x54\x7f\xd9\x29\xd4\x4d\x9c\xc3\x87\x16\x18\xbc\x57\x28\xc3\xe3\x4a\xcc\x62\x51\x0b\xe3\xcd\x4c\xa1\x09\xf3\xd4\x58\xc0\x9c\x95\xf6\x91\xe2\xc7\x2f\xa2\xe9\x6f\xdd\xec\x68\x8f\x97\x3e\xcd\x7d\x7b\x6a\xf4\xfe\x3a\xe3\xa3\x2a\xf8\xd9\xa7\x88\x05\xd8\x8c\xed\x41\xb3\x99\x3e\x3c\xe7\xc9\x97\x51\x88\x8e\xd9\x37\x8b\xad\x3a\x1e\x53\x69\xd7\x3e\x8d\x1e\x34\x8d\x08\xb3\xea\x91\xf5\x89\x55\x3f\x28\x1f\x1b\xf2\x52\xbf\xe6\x10\x6a\x6b\x7e\xf0\xc4\xda\x5c\xcc\x03\x09\x27\x68\x80\x83\x19\x65\x77\x33\x09\x84\xb8\x58\x42\x92\xca\x00\x07\x71\x04\xf1\x31\x31\x4b\xc1\xfd\x57\x57\x3a\x8f\x14\x25\xce\x99\x6a\x6e\xbe\x8c\x25\x5b\x40\x18\x95\x21\xcd\x45\x24\xd5\x0e\x0b\x70\x90\xb2\x3f\xd5\x83\x54\xd2\x45\x80\x03\x10\x4f\x03\x1c\x3c\xb2\x89\x9c\x05\x43\x0c\xbf\x7b\x41\xa0\xa9\x15\x56\xdf\x88\xb9\x13\x14\xae\x6a\x65\xcf\x40\xcd\x61\x90\xe1\xd4\x7f\xe9\x85\x9a\xea\xf7\x55\x28\x60\x7d\x02\xda\xf5\xb5\x0a\x97\xdc\x4e\x08\x58\xe2\x5b\x8c\x6f\xf5\x9d\xcf\x7d\x9f\x0e\xe8\xd0\x24\x80\xb5\xfe\x5f\x86\x22\xcc\x3e\x09\xcd\xda\xa1\x96\x14\x4f\x2b\xed\x95\x43\x68\x36\x8e\xe4\x78\x16\x8a\xdc\x06\xd8\xd7\x80\xcf\xfa\x3d\x21\x34\x0b\x25\xd2\x68\xb6\x08\x0b\xc5\x63\xd4\x34\x69\x5c\x12\x33\x75\xfa\xc7\x9c\xd9\x3f\xa2\xcf\x1a\x40\x50\x51\x7c\xee\xa3\xf0\x99\xe2\xcf\x5f\x46\xf2\x1e\x05\x6a\xa2\xbf\xde\x40\xcb\x4d\x14\x0c\x5e\xb4\x43\x9c\x93\xba\x23\xe5\xdc\xc7\xb6\x8e\x9a\x45\x02\x31\x65\xe3\x04\xc2\xdc\x0c\xad\xa4\x34\xd6\xae\x85\x7d\x3e\xf1\x7f\x5e\xcb\x48\xd4\x50\xfe\xa3\x88\x16\x39\x51\x6a\xe2\xd7\x64\x35\xc4\xaa\x7e\x83\xee\x92\xc4\x69\x71\xc2\xc0\xbf\xe3\x9a\xe2\xeb\xaf\x98\x2f\x18\x91\x9e\xae\x0b\x8a\x0f\xdd\x59\x75\xc7\x6e\xce\x3f\xef\x24\x8b\xda\xb3\x2a\x68\xbb\xe0\x96\xb2\x07\xc5\xf7\x38\x60\x53\x70\x9b\xf8\x9f\x78\xcf\xf8\x4c\xe0\x55\xd9\xcd\xe2\x7b\x78\x17\x2c\xd4\x31\xaa\xf8\x26\x1c\x78\x59\xb5\x1c\x36\xde\x17\x41\xcc\xf8\xfd\x0d\x93\x31\x0d\x86\x9e\x07\x46\xe9\xfb\x7f\xca\x29\xc3\x38\x73\xbb\x53\xf3\xde\xe5\x34\x98\x0a\x4a\xff\xa4\xe1\xca\x4e\x7b\xcd\x9e\x76\xd6\x39\xf8\xf4\xa6\xf2\x69\x86\xf6\xc3\x8b\xba\x63\xf8\xd0\xa3\xbd\x28\xc0\x22\x59\x4a\xda\xbb\xa7\x58\x63\x60\xd8\x3f\x52\xf5\x17\xe4\xb3\x57\x7f\x04\x63\x1d\x78\xb2\xfb\x38\xa3\x3c\xd0\xf4\x22\xd5\xb4\xe9\x3f\x05\x8d\xcd\x33\x73\xe2\xda\x5f\x8a\x47\xea\xbf\xb5\x9b\x92\xc6\xed\x08\xf4\x8f\x00\xc7\x49\xa4\xe8\xdc\x3c\x35\xbf\xf2\x73\xd7\x3c\xcf\x4f\x74\x13\x9a\xa3\x8e\xdf\xba\xbd\x32\x13\x74\xaa\xd8\x2d\xac\xa7\x3a\xe0\xe3\xa2\x10\x60\x78\xf6\x30\x3f\x66\x0a\xc7\x86\xee\x53\xde\x8d\x82\x28\x21\x22\xae\x85\x34\xc6\xef\x4e\x78\xf9\xc9\xc5\x52\x55\x4b\x1f\x28\x97\x7a\x62\xc7\x31\x1b\xdf\x07\x5f\x7e\x47\x6a\x79\x6a\x34\x57\x9d\x06\x11\xd7\x3c\xdb\x01\xb1\x8e\x18\x7f\x48\xee\x21\xfc\xdc\x04\x64\xaa\xc3\xe0\xc9\xb8\x1d\xa3\x30\xd8\xb5\x71\x9a\x08\x8f\xcc\xf2\x5d\xc1\x5a\xc3\x99\x11\xc5\x2c\x4a\x51\x18\xd8\x8f\x3b\x7e\x11\xd5\x68\xf9\x33\x01\xd7\xca\xcd\x1f\x43\x11\xf5\xa1\x9e\xe9\xe7\xbf\xd3\xe5\xdc\x67\x22\xef\x5f\x7e\xa6\x05\xf0\x34\xc0\x41\x4d\x77\x02\x5c\xaf\x81\x84\x4f\x72\x3c\x02\x42\xee\x4d\x8a\x83\xe2\x4c\xd0\x0c\xe1\x91\x21\xf7\x72\xab\x1a\x88\x00\xeb\x7f\xd3\xa6\x86\xe0\xad\xd5\x73\xea\xa2\xae\xd9\x6d\x68\x56\xdd\x0c\xa5\xfe\x53\x6a\xc1\x7e\xa4\xb7\x55\xb9\x41\x78\xda\xd4\x0e\xbc\x2c\x0d\xe8\x86\x6a\xec\x07\x0f\x4d\x5a\x23\xbc\x58\xb1\x75\xa3\x70\x40\x7d\x40\x90\xaa\x64\x50\x30\x76\xb1\xf4\xd8\xd4\x49\x24\x86\xb4\xd9\xf0\xbc\xb0\x4f\x15\x17\xd2\x7b\xa8\x32\x32\x6f\xef\xab\x65\xb4\x3b\xad\xc2\xd3\xb6\x75\xce\x03\x53\xc0\x34\xe2\x7d\xac\xe6\xae\xa1\x89\x5a\xda\xd0\x74\x06\x7f\xd8\x55\x0c\x46\x66\x9a\xbd\x6d\x5e\xe0\x6d\x0d\xf3\x5f\x53\xbf\xcd\xa9\xb8\x6d\x7b\x3a\x62\xe9\x21\xf4\x4e\x03\xed\xa8\x0b\xe7\x6b\x7a\xf8\x45\xfd\xad\xec\x9b\x7f\x7a\x10\xd8\x81\x6f\x97\x5b\x06\xe1\x6e\x9b\x10\x89\x4a\xa4\x60\xc6\x28\xd5\x18\xdd\xcf\x32\x16\x93\xf6\x39\xd2\xbd\x2b\x66\xac\x30\x2a\x94\x62\x87\x01\xb1\x3a\xb8\xd5\x92\xa5\x97\xfb\xcb\xb5\x6d\xdc\xeb\xdd\xdd\x08\xb5\x24\x11\x07\x2e\x6f\xe1\x56\x80\x7a\x1a\x42\x46\xcf\xd6\xd0\xa5\x61\x34\x20\x5a\x66\xee\xb0\x41\xc5\xd7\x13\xe8\x20\x6b\x0c\x3b\xc2\x11\xe9\xee\x47\xb9\xba\x35\xda\xd9\x41\x6c\x1a\x26\x1d\x3b\xca\x37\x89\x80\x19\x0a\x39\x66\x58\x0e\xa2\x21\xa6\xd8\x59\x22\xb7\xbb\xad\x7c\x43\x95\xce\x8b\xea\xfa\xbb\xe3\xc6\x27\x93\xba\x3d\xe1\xf2\xdf\xf9\x05\xdb\xed\xd2\x56\xb1\xa2\xa6\xdf\xec\x2e\xe3\x41\x86\x70\xf9\xa0\xfa\x0b\x7d\xd1\xe9\x43\x2b\xbd\x59\xaf\x0b\xbd\x41\x0d\xdd\x49\x96\x32\x00\x9a\x81\x83\xab\x4c\x31\xdb\xa0\xb8\x62\xe9\x35\x53\x72\xeb\x91\x3a\x3f\x91\x97\xee\xa4\xeb\x11\x4f\xe7\x76\x79\x7b\x1b\xd3\x34\xf7\xb2\x80\xa3\xf2\x58\xcb\x8e\x16\x37\xcd\x5e\x7d\x35\x65\x63\x46\xb6\xf9\x7a\x1d\x8c\x52\x1a\x4f\x03\x42\x08\x78\x5e\xe8\xbc\xab\xed\x36\x6b\xb7\x69\xa9\x9a\x10\x61\x80\xd6\x05\x87\xbb\x54\x26\x8b\x4b\x91\x2c\xa2\xbb\x48\xcf\x08\x2e\x33\xc6\x9c\xc8\x1b\xa9\x1f\x22\x8f\x8b\x9b\xc1\x27\x40\x6a\xa1\x92\x2c\xad\xa6\x05\x5a\x5d\x5a\xa0\x79\x10\x81\x70\x4c\x56\xf0\xdc\x68\x8c\x52\x2d\xc7\x81\xf0\x91\x78\x78\x59\x0f\x9d\x69\x1c\xdd\xdd\xd1\xc9\x89\x43\x99\x40\xea\x06\x66\x1c\xc7\x13\xde\x71\x11\x85\x26\x09\xdc\xe8\x8e\x72\x2a\x22\x49\x6f\xdc\xe2\x85\xb1\x45\x6e\x40\x6a\x52\x00\xf0\xa6\x5c\xa6\x8c\x89\xc6\x2d\x2a\x5a\x69\x8f\xd5\x80\x26\xd1\x4e\x4e\x27\x24\xf1\x7e\xdc\x24\xa1\xad\x2a\xcb\xb0\x92\xee\xfe\x06\xbe\x6f\x64\xdf\x02\xf3\x34\x7f\xbd\x03\xf9\xd1\xeb\x99\x62\x4a\x51\x60\x37\xa0\xf9\xb2\x89\xbf\x6d\xf9\xcf\x54\x55\xbe\x2c\x67\x56\x58\x16\x57\x58\x14\x56\x98\xd7\xcf\x14\xef\xd8\xd9\x7e\x7f\x75\x6a\xd0\x3c\xd5\x61\x6b\x5a\xaa\x4e\x49\x69\xf0\x87\x82\x9e\x26\xd1\x04\xc4\x58\x5f\xe0\x6e\x3c\x25\xb4\xf0\xe4\x52\x10\x95\xab\xd1\x79\xff\xf2\xb0\xfb\xc2\xb8\xdd\x39\x5d\xfa\xa8\xda\xcb\x1a\xb9\xca\xf2\x6c\x5a\x9c\x25\x49\xba\xfb\xf2\x07\xeb\xa7\xbc\x2f\x2d\x1e\x9d\x20\x36\x67\xb0\xee\x90\x70\x7b\x2b\x73\x16\x2a\x37\x4d\x6a\x41\x7a\xc1\xff\x50\x97\x8b\x82\xde\xb9\xde\xb5\xdc\x89\x36\x1f\x67\x94\xb7\xfc\x5c\x92\xf0\x36\xa5\x32\xf4\x6e\x07\x46\x21\x2b\x9d\x77\x58\x34\x87\x7c\xa0\xb2\xdd\x06\xf3\x80\xe9\x39\x5a\x49\x22\x0d\xe8\x82\x31\x65\x3c\xd1\xa1\xb6\x7a\xea\x2a\xf3\xdb\x28\x96\x9d\x74\xc6\xa6\x32\x34\xa8\x8b\x82\xc8\x81\xad\x67\x77\x6f\xd8\x02\x8c\x42\x96\xfe\x92\xb3\x80\x83\xbc\x1a\x43\xea\xb2\xb3\x48\x16\x21\xd2\x06\xce\xd4\x40\x6a\xf9\x05\xee\x29\xc2\x70\xbc\x98\x8a\xbd\x2a\x0c\x0d\xdd\x53\xff\x33\xf3\x30\xef\x1a\xce\xdf\x19\x71\xf9\x9e\x56\x1e\xa6\x01\x96\x28\xa3\x71\x4a\xf7\xb3\x0c\xa1\x17\xa8\x12\xcc\x06\xd0\xf7\x63\x5f\x9d\x7e\x51\x52\xa7\x57\x14\xe7\xfa\xe6\x9e\x06\x99\x9e\xb5\x23\x8a\xcf\x28\xb9\xa0\xad\x72\xfc\xca\x99\xb6\xdb\x5d\x51\x72\xa4\x5e\x7a\x41\x3a\x57\xfa\xcd\x65\xd9\x18\xd7\x3f\x3c\x7a\x37\x3a\x39\x0f\x10\xfe\x9d\x3e\x13\x02\xa0\xed\xd7\xc6\xaf\x52\x46\x77\x84\x6a\x67\x6f\xb5\xe0\x97\x74\x48\xb6\xbb\x9b\x52\x3f\x6e\x74\x3b\x2b\x59\xac\xe5\x17\x58\xac\x21\x66\x40\xb5\x7b\x4c\x49\x70\x4b\x5f\xfd\xe7\x7f\xfe\xe7\xff\xfc\xcf\xdd\xdb\xdb\x5b\xba\xfb\xfd\x7f\xbc\xea\xee\xfe\xff\xa6\xe3\xdb\xdd\x57\x7b\xdf\xd1\xe9\xf7\xdf\x7d\x37\x1e\x47\xaf\x3c\xd8\x9d\x73\x5a\xb8\x14\xd4\x39\xf0\x6e\x30\x34\xb7\xdb\x54\x8d\x3b\xb3\x96\xdb\x3f\xa0\xb6\xf5\x3a\xf8\xf7\x3d\x7d\x0a\xb4\x75\xf7\x83\x7b\xc6\x26\x94\x4b\x26\x9f\x02\x6d\xbd\x3d\x69\x9c\x6d\x97\x33\xcc\x40\x6c\x98\x09\xbf\xa7\x4f\x6f\x12\x61\x53\x4f\x5a\x0a\x21\x1b\xe7\x9c\xa5\xfd\xf9\x42\x3e\x55\x67\x1d\x44\xb9\xce\x9c\xce\x93\x37\x49\xad\x69\x4e\x27\xb9\xa3\x9f\x65\x83\x2b\x8c\xee\x9b\xe5\xfb\xba\x6f\x4e\x6c\x31\x7d\x53\xac\x42\xfc\x98\xf3\x53\xa7\x33\x37\x07\x02\x2c\xf7\x9b\x44\x84\x02\x59\xf9\xd5\xf4\x48\x3d\x49\x88\x04\x71\x54\x14\x63\x9a\x6c\xe5\x3b\x3b\x18\xdc\x12\x12\xa3\x38\xe6\x58\x7d\xdb\x63\x26\x8a\x04\x9f\x6e\x72\xa4\x71\xd9\x69\xac\x40\xc1\x0a\x4e\x85\x3a\x19\xbd\x76\xda\x88\x00\x00\x5f\x62\xf6\xbc\x47\xca\x54\x24\xf3\xda\x3c\x63\x96\xc5\xdb\x81\x40\x5e\xb3\x83\x8f\x14\x28\x44\x35\x03\x30\xa5\xda\xa5\x5c\x55\xf2\x46\x43\xe2\x29\x2e\x5c\x5b\xdf\x60\xe8\xe5\x7d\x6f\x06\xcc\x14\x2e\x60\xd8\xf0\x2e\x55\x77\x28\x2a\xbe\xeb\x76\x1d\x1a\x37\x1c\xcc\x01\xe0\xa2\xc8\x2c\x3c\xa1\x08\xbf\xf9\xbf\x74\x72\x5f\x34\x66\x38\xd1\x73\x30\xd8\x7c\x06\xac\x83\xaf\x9a\x81\x3f\x37\xcf\x80\x13\x12\xed\x1c\x24\x85\x39\x50\xef\xed\x1c\xdc\xd3\xa7\x94\x48\x9c\x98\xe3\x8c\x08\x9c\x34\xfa\x04\x99\x79\x38\xe1\x13\xfa\xb9\x91\x3a\xfc\xd4\x63\x90\x21\x51\x78\x4e\xd6\x90\x6a\xc3\x6e\xc8\x8f\xd4\xcb\xea\x3f\x18\xe2\x84\x74\xf7\x93\x1f\xf8\x7e\xa2\xee\x87\x0e\xe0\xdb\xf9\x74\x8a\x41\x32\xf4\x52\x8b\xda\xe9\x15\x98\x61\xfe\x05\xd4\xeb\x94\x82\x98\xab\x46\x6d\xcb\x38\x22\xdb\x7b\x9b\xe8\x5a\xd5\x10\x46\x24\x5a\xaf\xed\x80\x7e\x24\xaf\x50\xbb\x6d\xe2\xe2\x25\xc2\xcc\x12\x3c\x4e\x76\x76\x32\x2d\x03\x24\x8a\x14\xa2\x03\xd7\x5b\x0d\xd7\x66\x42\x39\x4e\xc1\xf9\x4e\xf5\xfd\x59\x87\xe9\x4d\xfb\x43\xaf\x1c\x6c\x10\xbe\x89\xa9\x5a\x5e\x99\xfa\x7b\xe9\xdd\x86\x83\x00\x0b\x7b\xf4\x9a\x70\x7f\x7b\x18\x08\x9a\x2e\x63\x69\x0f\x03\x73\x34\x88\xca\xd1\x40\x37\x6c\x9b\xc1\x35\x88\x00\xba\x6a\x99\x88\x61\xa8\x69\x45\x31\x7d\xf0\xe4\x37\x03\xcf\xe7\x61\x92\x70\xaa\x66\xb3\x98\xa0\x83\xa1\x76\xfb\x15\x21\x84\x59\x61\xcb\x23\x0c\x6e\x27\xfa\x35\x35\xbf\xb2\xd6\xd7\x1f\x57\x1b\x8e\x23\x3b\x3f\xf6\x40\xd2\xf3\x53\x3e\x90\xec\x4d\x44\xcf\x17\x48\xb2\x30\xa8\xca\x01\xc5\x4a\x07\x94\x5a\x08\xab\x54\xb1\x47\x14\x3c\x8b\x08\x07\x0a\x6a\x3e\xa4\xfc\xe5\xa2\x76\x72\xe1\xe4\x8a\xcc\xc9\xc5\xf4\xc9\x95\xd8\x93\xeb\xf5\x5f\x75\x9d\xfc\xea\xa0\x80\x26\x59\xa0\xe3\x82\x02\xaa\xc4\xed\xeb\x54\x81\xa6\xdf\x51\x84\xdf\xff\x3f\x74\x08\x83\xbd\xe7\xb6\xa8\x2d\xd8\x1d\xba\xc1\x7c\xa4\x64\x65\x28\xb3\x06\x75\xba\x9b\x61\xb5\xa8\x4d\x10\xa6\x19\xfe\xe3\x79\x41\x4f\xd0\xa9\x27\xe5\x5d\x46\x72\x66\x77\x36\x74\xe6\xe5\x31\x0d\x4e\x32\x2f\xb9\x4e\xe7\x82\xba\xab\x71\xb8\x31\x4f\xbb\x66\x0a\x55\x3f\xe8\x7c\x7f\x4d\xed\xe6\xb2\x15\x82\xe7\x73\x1e\x07\x54\xf0\xea\x77\x89\xf7\x8a\xc1\x07\x1c\xe9\xcc\xd6\x5d\x1c\x75\x46\x90\x0e\x8c\x4b\x53\x1e\xc1\xfa\x7b\x51\x02\x4c\xa7\xad\x24\x84\x84\x94\x28\x09\xc2\xca\xe3\xdb\x9e\x3c\x9e\x3b\x79\xe6\x4f\xab\x1c\x4b\x7d\x6d\x3a\x02\xc9\x79\x4c\xdc\x30\x47\x07\x7f\xd2\xe2\xf9\x1a\x72\x9f\xc1\x86\xdb\x5d\x84\x7a\x69\xe7\xdd\xe1\xf5\xe8\xfc\xf0\xe6\xe4\x43\x7f\x74\xfd\xe9\xec\xf5\xc5\x69\xbb\xfd\x96\xaa\xcf\xdf\xeb\xcf\x4b\x5f\x21\xd4\xfb\x44\xbd\xda\xbd\xf3\xb1\x5a\xf2\x05\x3d\x50\xac\x10\xe6\xd9\x39\x86\x36\xd0\x32\x30\x62\x6a\x03\x18\xe1\x3b\x3d\x99\x1f\x0a\x5f\x97\x36\x33\xb5\x33\x2e\xbd\xef\xd4\x8e\x79\x71\x73\xaa\xb0\xd7\xda\x99\xff\x6d\x73\x63\xee\x2b\x73\x9a\x55\x18\x7d\xc5\xfb\xb6\x5b\xeb\x7d\xdb\x1d\xb6\xdb\xfe\x2f\xef\x8e\xa2\x76\x56\xcb\x80\x54\x49\x03\x46\x05\x77\x35\x8b\x11\x45\x0f\xbe\xa1\xbd\x9f\x68\xf8\x0b\x35\xa8\x53\xff\xd6\x26\x56\xfb\xfe\x67\x6a\x1f\xdb\xcb\x9c\x7d\xf3\x13\x0d\x7f\xa5\x15\xcc\xa9\x9f\x68\xf8\x1b\x0d\x25\x78\x42\x02\x6f\xff\xf0\xff\x26\x66\x90\xb3\x02\x59\x62\x05\xa5\x18\xa7\x97\xc4\xe3\x09\x1c\x0c\x86\x01\x72\xbb\x5c\xd4\xec\x70\xe1\x09\xae\xde\x3d\xd2\xee\x1e\x87\x8f\x5b\xd8\xed\x02\x1d\x9c\x52\x7b\xf5\xe1\xa8\x57\xb3\xf3\x05\x3a\x78\xe3\x17\x69\xda\xe2\x02\x1d\xbc\xf6\xcb\x7d\xa2\x5e\xed\xfe\xb6\x86\xb7\x1f\xe9\xff\x57\x77\x6a\xdd\x7e\xb3\xe0\x6f\x7f\xcb\x8e\xa2\x6e\x47\xe5\xba\x9c\x4f\xcf\x38\xfb\xdb\x1b\x45\xee\xdc\xff\xf6\x99\x2f\x2a\x12\x72\xfe\xe9\xcf\x4e\x3c\x37\xfd\x32\x38\xac\xc2\x03\xa8\xf8\x86\x96\xa4\x23\xf7\xe6\x97\xe2\x9b\x5f\xc1\xe8\xe8\xde\xfe\x4a\x3d\x2c\xbd\x1c\x37\x56\x43\xe7\xe9\x80\x5a\xc7\xaf\xf4\xe4\xf1\xa5\x22\x66\xf7\x34\xc7\x87\x2d\x4e\x1e\x50\xfe\xdd\x92\x4d\x4c\xa4\x5d\x96\xb7\xf9\x9b\x1f\x5c\xe1\xd6\x53\x96\x87\xe7\xb9\x78\x6b\xff\x6e\x57\xc1\x4f\x5e\xa0\xc4\x2a\xab\x18\x43\x0a\x76\x13\x6a\x7e\xe2\x88\xc8\x41\x52\x05\x33\x88\x0e\x42\xf5\x9c\x74\x71\x82\x7a\xfa\xcf\x9d\x9d\x08\x07\xc1\x4e\xb2\x73\x4c\x77\x22\x94\x01\xb7\xa2\xf2\x19\x7d\x65\x6a\x10\x81\x36\xf1\xb6\x0d\x4a\xdb\x60\xc7\xab\x05\xf2\xad\x03\x42\x6f\x93\x0a\xd3\xd6\x14\x22\x97\xd9\xd7\x87\x25\xd2\x96\x5e\x29\xb1\x90\x98\x4b\xb2\x0a\xda\x41\x2f\x68\x47\xf3\xc5\x7e\x80\x83\x1f\xd4\xdf\xb1\x54\x7f\xfe\xa8\xfe\xbc\x53\x7f\xfe\x2b\xf8\x57\x2f\x68\xff\xb1\x4c\xe0\xf9\xbf\xd4\xf3\xff\xf1\xf9\xd5\x7f\xaa\x1f\xff\xad\x7f\xfc\x47\x57\xfd\x20\xfa\xc7\x77\xc7\xfb\x41\x86\x99\x24\xdf\x0e\xda\x3f\xfc\x18\xfc\xeb\xbf\xc9\xf0\x5b\x9c\x14\x7e\xde\xe5\xbb\x25\x92\x3e\x3f\x90\xea\x42\xea\xde\xa5\xb2\xa4\x00\x25\x84\x1e\x50\x12\x04\xbd\x2a\x9e\x71\xbb\x1d\x7a\x20\xc4\x08\x03\xe0\x81\x2c\x00\xb5\x2c\xcb\xd5\x35\xeb\x53\x6b\xf7\xad\x9e\x76\x2f\x10\xc8\xaf\x4f\xc8\xf5\x3a\x14\xcd\x3e\x99\x91\x3a\x52\x84\xec\xcc\xf4\xb1\x2a\xcc\xcd\x61\x9c\xc4\x5e\x98\x90\xcc\x69\x17\xae\x80\x86\x00\x2a\x60\x71\x1a\x64\x43\x76\x16\x91\x48\x15\x99\xb9\xba\xdc\xa9\x25\x0f\x82\x5e\xd0\x93\x40\x71\x53\x59\x7f\x09\xe2\x21\xdf\xac\x1c\xf2\x02\xc6\xc0\x0e\xa9\x0d\x9a\x64\x7b\x0f\x27\x1d\xc0\x6d\x22\x7c\xc0\x3a\x17\x1f\xcf\xfb\x57\x43\x9c\x74\x58\xea\xe1\x65\x11\x53\xc4\x41\xd8\xd5\xa0\x54\x16\xbf\xc0\x89\x06\xe0\x4b\x9e\xe8\xc4\x19\x12\x52\x32\x28\xe6\x9b\xd4\xe1\x6d\x6c\x1a\xe6\x48\x90\xa1\x20\xb1\xd4\xfd\xa6\x38\x98\x26\xc9\x6d\x24\x7a\xb7\xd1\x9f\x6a\xc6\xed\x4f\x1d\xec\x4f\xdd\x44\xbd\x49\xc4\xfb\xab\x53\x12\x4b\xc8\x6e\xba\x55\x97\x7d\xf3\xfd\xd5\x29\x92\x92\xbc\xbf\x3a\xc5\x95\xef\xc6\xfa\x3b\xb0\x5f\x56\x45\x7d\xd9\x31\xae\xef\x08\xd0\x3c\xe0\x98\x83\x2c\x92\x61\x70\x94\x2c\xe3\xc9\x16\x4f\xe4\xd6\x94\xf1\xc9\x16\xf8\x3c\xab\x96\xb6\xd4\x52\x32\x7e\xb7\x35\xa7\xe3\x59\xc4\x59\x3a\xdf\x9a\x26\x02\xde\x5c\x47\x9c\x49\x03\xbe\x16\xa0\x96\x94\x3a\xdb\x96\x6d\x22\x0c\x96\x22\x06\xe0\xce\x4a\x1f\xb3\x2c\x84\xfb\x6b\x94\xa6\x54\xc8\x9b\x99\x9a\x6e\x26\x35\xbc\xe9\x04\x85\x09\xe0\x0e\xd4\xdd\x70\x39\xa6\x08\xf3\x0d\x91\x8d\xb9\x4a\xd3\x28\x52\x0c\xba\x44\x91\xab\x25\xe5\x2e\xd5\xeb\xf7\x6d\x12\xed\xdc\x7a\x54\x77\xab\x07\xef\x85\x52\x41\x14\x4a\x4d\x65\x58\x83\x72\x24\x1d\x99\xd4\x05\x6a\xd7\x35\x2c\xfc\x30\x36\x45\xbd\x1e\x90\x65\xad\x56\xe1\xdc\xc2\xad\x24\x0e\x05\xfc\x84\xa7\x32\x8a\x63\x0b\x41\x98\x7f\xe7\x29\xcc\x7c\x12\xd7\x4e\x10\x56\xf5\xdb\x50\x8b\x0f\x2a\x00\x71\xc1\x79\x7b\x3a\x8a\xe6\x2f\x36\x57\xac\xa4\xa6\xb5\x09\x9b\x98\x34\x5a\x25\x9c\x60\xb3\x3d\x21\x6b\x55\xe7\x96\xde\x31\x4e\xca\xae\x97\x25\x4e\xd1\xc5\x7e\x0f\xe0\x13\x2f\x1e\x55\x55\x33\x4e\xe6\x73\x56\xd1\xa6\x19\x39\xbe\x86\x1f\xb4\x9a\x5e\x90\x41\xee\x93\x24\x48\x77\x5f\xe4\x6e\x46\x62\x67\x07\xc9\x81\x18\xe6\x03\x00\xd7\x78\x5a\x8c\x30\x9e\x33\xe9\xf7\x6d\xca\x78\x14\xc7\x4f\xb5\xc3\xda\xcb\x32\xcc\xb3\x70\xe6\x43\xfc\xa9\x73\xd6\x47\xfc\x9b\xea\x83\x76\xd6\x24\x1c\x98\x09\x9b\xe4\x96\x51\x83\x97\xb9\x41\x48\x58\x08\xba\x88\x04\x3d\x14\x77\xf5\x70\x96\x26\x5b\x8d\x54\x4b\x78\xe4\x9f\x3f\xa4\xe8\x3c\x82\x56\xa6\x90\x8e\xf3\x3a\x05\xbf\xe5\x52\x8d\x85\x6a\x0a\x84\x90\xcb\xe9\xf5\x9f\x68\x02\xdb\x54\x69\x39\x1a\x0c\x2a\x2d\x4a\xd1\x13\xef\x70\x75\x19\x8e\x20\xb0\x6e\x27\xe8\x05\x3b\xb4\xa3\xd1\xdd\xb3\x6c\x03\xac\xe3\x4c\x2f\xc1\x42\x92\xd5\xe4\x89\x47\x73\x36\xd6\x9d\x82\xe8\x22\xfd\xe0\x26\xba\x53\xbf\xbc\x89\x55\x3f\x35\x63\xb0\xbf\x9c\x27\x34\xa0\xc1\x6e\xef\x61\xe3\xf8\x64\x7f\x9a\x28\xe5\x28\x8e\xa9\xe8\x6d\x77\x6d\xd5\xd7\xe3\x64\x01\x18\x97\x1e\x94\xac\x2b\x7d\x62\x22\xf8\x21\x41\xfc\xbc\xe1\x80\xfe\x47\xb5\x94\x35\x00\x58\xda\x64\xc6\xcd\xd4\x82\xaf\x0f\x51\x07\xcd\xd4\x01\x09\x8d\x13\x2e\x45\xa2\x06\x6a\x31\x78\x53\x1a\x4f\x7b\x4e\x62\x66\x07\xb5\xa8\x56\x3d\x1d\x62\xca\x10\x86\x5d\xc5\xfe\x04\x7f\xcd\x87\xce\x28\x4f\xcd\x03\x91\x15\xc8\xa2\x3e\x77\x2c\xb2\xff\x44\x2a\x96\x6b\x42\xc7\x6b\x49\xca\x1a\xdf\xac\xd7\x7f\x27\x4a\x75\x39\x77\x0f\x5f\x41\x2e\x6b\xda\x13\x16\x76\x32\x44\x58\xbb\x1d\xdc\x00\x0c\xa9\xe8\x78\xbf\x6c\x5b\x47\xb5\x30\xc6\x6e\x3d\x16\xd2\x94\xbb\xa6\xf1\xb4\x5e\x7f\xab\x66\xc6\x14\xba\x89\x6a\xe4\xfa\xad\xa2\x9e\x44\x15\x6d\xde\x91\x8a\xfd\xda\xb9\x73\xa1\xf4\xc7\x0e\xaf\xb8\xa6\x76\xc3\x0a\xb2\x70\x26\x11\x7e\x90\x10\xe5\x3b\x97\xf8\xa9\x0e\xd6\xed\x2b\x41\x99\x1f\x64\xcb\xdc\x4c\xa2\x1c\x90\xd1\x00\x14\x13\x99\xe5\x9b\xf9\x4e\x51\x32\x30\xb6\xdb\xc6\xbb\x52\xee\xd4\xa6\x9d\x0b\x7d\xf0\x54\x5d\xb3\x73\x54\xb1\x7a\x28\x03\x2b\xa1\x4d\xca\x66\x72\x04\x31\x8a\xca\x59\x94\x7e\x14\xd1\x62\x41\x27\x96\x07\x32\x53\x4d\x1c\xa5\xe9\x15\x9d\x1a\xb8\xc1\x86\x47\xaa\xee\x02\x52\x21\x58\x73\xbb\x3d\xc0\x4c\x70\x0e\x22\x1b\x78\xf5\xa4\x7c\x84\x16\x94\x12\x6e\x2c\x56\x65\xe5\x8d\xd7\x68\xaa\xfc\x93\x5c\xfb\xf0\xb1\xbb\x3b\x2a\xc2\xc0\xcb\x73\x69\x86\x06\xe2\x5f\xe1\xfd\x51\x4c\x23\xa1\x69\x29\xb0\x0e\x4e\xb5\x81\xcb\x14\xb5\x44\xbb\x1d\xc2\xbb\xb1\xfa\xc8\xbc\x51\x85\x50\x28\x20\x4a\xd6\xbc\x29\x7d\x87\x32\x59\x77\x0e\xe7\xe0\xe0\xd2\x2d\x8a\x3f\x09\x16\xb2\xc3\x2d\x18\xb2\xce\x9e\xf9\x12\xde\xc9\xf2\x71\x30\x92\xc5\x9c\x27\x83\x39\x1d\x6a\x94\x06\xef\x82\xf7\x58\x28\x04\x41\xd2\x90\x34\x5a\x82\x2e\x36\x74\x6e\x55\x78\xcf\xf3\xc9\x42\x07\xba\xee\x41\x77\x88\x7a\x4b\x1a\x42\xd5\xd8\xaf\xb6\x2f\x8d\x07\xad\xbd\x33\x3a\x04\xf6\x41\x77\x88\x05\xa1\x83\xbd\x21\x76\x44\x22\x0f\x76\xf7\x7a\x3a\xe4\xf4\xf3\xc5\x34\x34\xa9\xab\x41\xfd\xb8\xbb\xb7\x4d\x88\x75\x4a\x20\x62\xc0\xc1\xb7\x6e\xbb\x6c\xc6\x34\xca\x45\x23\x57\xb3\x41\x17\x8a\x25\x84\x90\x51\xe7\x62\x91\x76\xde\x52\xb9\x5e\xe7\x3f\xcf\xa2\xa7\x5b\x7a\x9a\x8c\xa3\xd8\xe6\xcc\x66\x03\x96\x7b\xb2\xe1\x94\x44\x83\xc8\xf7\x6c\x1b\xf0\x21\x19\xe8\x6f\x35\x76\x2a\x0e\x76\x75\x2f\xf1\x80\xe1\xd4\xc0\xe5\x66\x99\xd6\x6e\x7c\x96\x64\x05\xf7\xcc\x5a\x08\x7a\x37\xcc\x9e\x1d\x22\xc9\x3d\xda\x07\x14\x53\xbc\xdd\x1d\xb6\x2c\x8f\x4e\x97\xb7\xfa\x2e\xab\x88\x00\x01\x60\x5b\xfe\x48\xee\xec\x59\x8e\x3d\x50\x9c\x60\x7b\x6f\x98\x61\xa6\x65\xe3\x8a\xf3\x6b\x3e\x89\xdd\x21\x4e\x88\x00\x70\x8b\xc1\x2b\xed\xe6\xce\x26\x10\x1b\x6f\xa7\xc3\x57\x16\x31\xd4\x2a\xe8\x13\xa2\x76\x3b\x8c\x88\xb4\xbe\xcc\x27\x90\xe3\x76\x13\xe6\x45\x84\x30\x70\x46\xde\x49\xfd\xb8\x7b\xd5\x26\x8e\xf0\x76\x17\xeb\x4c\x0e\xaa\xe5\x94\xb0\x7c\x7e\x3a\x01\xfa\x71\x77\x0f\x2f\x49\x7a\xf0\x28\x55\x47\xac\x67\x7d\x27\x40\xa8\x37\x92\xba\x6f\x41\x2a\x9f\x62\x0a\xbd\x6f\xb7\xc3\x25\x30\xed\x0b\x19\x2e\x31\x14\x08\x58\xfa\x81\xa5\xec\x36\xa6\x01\x02\x7c\xc4\x42\x17\x12\xbc\xc4\xdb\x7b\xa6\xfd\x0c\x5f\x4b\x92\x6a\x27\xca\x45\x1c\x3d\xf5\xb6\x78\xc2\xe9\x7e\x80\xf0\x45\xa3\xb0\xf1\x72\xa0\x24\x6e\x70\x7d\x5c\x7f\x1a\xa1\x92\x0c\x8c\xd9\x8b\xb1\x92\x5e\x8e\x80\xe4\xf9\xe9\x39\x47\x73\x73\x05\x32\x9d\x72\x18\xac\x4e\x49\xc9\xa6\x1e\xed\xee\x04\x5b\xa5\xc9\xb1\xa4\x01\x8a\xa2\x83\x54\x31\x97\x9e\x85\xa3\xdd\xba\x76\x70\xa5\x91\xba\x48\x79\x70\x3c\x87\x92\xac\xea\xe9\x14\xad\x44\x89\x4c\xf4\xfa\x62\x98\xa6\x79\xb4\x40\x61\x65\x61\xed\x29\xba\xb8\x56\x45\x41\xef\x8e\xf2\x75\xc5\x85\x17\xb5\xc1\x46\x84\x10\x7a\x70\xad\xa3\x02\xb3\x0c\xdf\x97\x85\x7f\x6f\xf3\x58\x1a\xec\x05\x80\x3a\xa1\xf6\x92\xe2\x1e\xc0\x34\x98\xdd\x4d\x7a\x2f\x95\xe9\xdd\x30\x8c\x67\xb6\x8a\xdd\x0f\x5a\x5b\xa2\x5a\x5d\xe2\x98\x24\x95\x6d\x31\x26\xf1\x41\xe2\xed\x88\xde\x60\x88\xa7\x24\xd6\x5b\x65\x6c\xf6\x47\x82\x5a\x4b\xe2\x29\x67\xd5\xe6\xb8\x91\xe1\x14\xc7\x07\xe3\xc1\x38\xe7\x70\xbd\x44\xfb\x7a\x1c\xa9\x77\x11\x4e\x2b\x3b\xc5\x76\xbe\xb0\x5f\x6e\xfe\xc6\x7d\xb1\x88\xe4\xcc\x6d\x09\xbd\x07\x78\xdd\x6b\x97\x1c\x76\x02\xe6\x35\x90\x3e\xfe\xd1\x4d\xa2\x26\xae\x08\xe6\xab\xfa\x52\x70\x19\x29\xf6\x69\xbd\x0e\x6b\x9e\xaa\x6d\x7e\xeb\xa7\xb6\x95\x39\x2e\x1c\x5d\xaf\xbb\x86\x04\x8d\x32\xb6\xe7\x44\xd1\x9a\xcd\x73\xd4\x3c\xed\x46\xb6\xc7\xfc\x6b\xe5\x53\x98\x4f\x56\xfd\xfa\x55\xed\xd7\xaf\xfc\xaf\x5f\xe9\xaf\x5f\x8c\xa3\x05\x10\x83\x84\x63\xd1\x99\x46\x71\xfa\x44\x58\x09\x5c\xeb\xef\x5d\x53\x2b\x34\xea\x66\xad\x03\x04\xb4\xdc\x2a\xfa\x8f\x84\xe8\x40\xf6\x44\xc3\xe4\xe7\xe2\xd5\x99\xf4\x0f\x75\x80\xaf\xf1\x6d\xa7\xb8\x1e\x73\x9a\xd5\x3d\x6d\xf1\xc1\x82\x0e\x09\x73\xca\x18\xed\xcc\xe7\x94\x31\x89\x8d\x2e\xd0\x46\x17\x9c\x12\x80\x44\x53\xdc\x62\x49\xc4\x20\x1a\xb6\x6a\x94\xef\xcb\x76\x7b\x39\xf8\x79\x78\xa0\xde\x93\x65\x2f\x05\xb0\x9f\x10\x7e\xa9\x9d\x7e\x29\x43\x1d\x3b\xc3\xd4\x93\x14\x73\x28\xe6\x90\x0a\x3b\x20\x09\xaa\x1d\x07\xe7\xf2\x95\xac\x20\xf1\xbf\x09\x10\xbe\xdc\x70\x35\x31\xa8\x47\x8b\xce\xd9\xfb\x9b\xc3\xd7\xa7\xfd\xd1\x51\xff\xf4\x74\x48\xb6\xb5\x2c\x3b\xb8\x92\x43\x7b\x49\x31\x90\xa8\x75\x40\xeb\x35\x40\xa6\xf6\xeb\xc1\xa7\x61\xd1\x87\xfc\x77\xe8\x63\x21\x81\xd2\x79\x88\x10\x3e\x96\x64\x30\xdc\x0f\xbb\x78\xaa\x35\x47\x6f\x20\x18\x1d\x85\xc7\x52\x7f\x77\xfe\x8f\xaa\x12\x92\x3a\x55\x42\xd2\x78\x35\x2f\x5e\xbf\x69\x47\xff\x51\xb8\x7b\xd3\xd2\xdd\xdb\xcb\x7c\x59\xd1\xc3\x3a\x37\x5b\x68\x0b\xa4\x47\xfd\xe7\x79\x34\xa7\x38\xa9\xc9\x41\xc1\xa6\x61\x0e\x10\x85\x1a\x0d\xac\x16\x68\xee\xc0\x52\xb2\xcd\xdc\x10\x0a\x5c\xa9\x14\xf5\xc0\xfc\xc0\x2d\x11\x27\xce\xc2\xe1\x12\xc0\x05\x3b\x1c\xda\x8e\xac\xe4\xe1\x72\x69\xb8\xc2\xbf\x6b\x45\xb2\xba\xc4\xfb\x9a\xa9\x86\x11\xe7\xb7\x45\xe3\x69\xe0\x4d\x12\xf8\x51\x77\xdc\x65\xb7\x41\xf7\xc1\x1b\x74\x1f\xbc\x32\xff\x5a\x5d\xa1\xa6\xb4\x46\x51\xe0\x75\x25\x67\x34\x95\x9b\xf6\x81\x6c\xb7\xa5\x8d\xe6\x5a\xaf\x83\x09\x7b\x08\xcc\x21\x90\x34\xeb\x56\x7c\xdd\x89\x9f\x44\x4a\x7d\xd4\xac\xf8\x84\xbb\x32\xe0\x5c\xaa\x7e\x84\xc1\x68\x74\x78\xf5\xf6\x7a\x34\x0a\x1c\xca\xad\x7d\x0d\x99\xf5\xf3\xd7\x9e\x8b\x98\x17\xe6\xd2\x3b\x96\x90\xbe\x7e\x52\x89\xfc\xb6\xd5\x8c\xa3\x85\x5c\x0a\x1a\x42\x56\x7c\x2c\x90\xb3\x31\x33\x60\x2e\x09\x8e\xfc\xc4\x2e\x10\x47\xa3\xf5\x0b\x9d\x72\x30\x4d\x1e\x58\x15\xe9\x33\xd3\xc7\xef\xb4\xb7\x53\xdf\x23\xb4\x80\x64\x6d\x68\x37\xd2\xc3\x4c\xf7\xc3\x94\xac\x32\xa4\x18\x5f\xa1\x1a\xd7\x5d\x9c\x90\x14\x17\x06\x95\xd4\x8f\x49\x87\x12\xe9\x88\xd1\xe2\xd5\x34\x42\xed\x76\xe4\x9c\x9e\x50\xc5\x5b\x75\x49\xce\x22\x39\xeb\xcc\x19\x0f\x23\x17\x98\x51\x33\xa6\x56\x42\x56\xd9\xcb\xfa\xe2\x4e\x91\x98\x74\xf7\xe3\x1f\x96\xfb\xb1\x3d\x3e\xc6\x24\x1a\xc4\xc3\x56\x32\x18\x97\x46\x1c\xc9\x50\x09\x74\x86\xfe\xbd\xa5\x9d\x74\xfa\x67\x97\x37\x9f\x46\x87\x57\x57\x87\x9f\xcc\x2a\x27\x40\xf3\x0d\xba\x50\xcc\xb0\xbb\x44\xf2\xce\x03\xa3\x8f\x38\x25\xb2\xb4\xb8\xea\xd4\x2a\x77\x1d\xc7\xe4\x4c\x86\x4b\xb4\x1f\x96\x7d\x57\x3c\x4a\x65\x93\x00\x81\x56\xc2\xdd\x3d\x89\xec\xb0\x09\xca\x50\x28\x70\x8c\x70\x6c\x31\xe4\x19\x7d\x24\x11\x8e\x07\x4f\x74\x48\x12\x1c\xdb\x50\xf2\x1c\xa4\x17\x4b\xc7\x10\xda\xed\x30\x36\x5c\x91\xe4\x4f\x35\xf7\x1e\x93\xd4\xb9\x68\x21\x3c\x25\xcf\xa8\x60\xbd\x5c\x3a\x27\x4a\x08\x6f\xe9\x29\x20\x63\xac\xf5\x20\xea\xea\xdc\xc5\x8b\x4e\x34\x99\x38\xa0\x44\x14\x46\x78\x8c\xf0\x38\x57\x46\x95\xa2\x01\x8d\x32\x6a\x46\x82\x60\x9b\x90\xb1\x65\x12\x2d\x25\x68\xd2\xb2\xf5\x6a\x5c\xd4\x69\x59\x75\x16\x1e\x77\x46\x85\x18\x56\xc0\x8e\xf1\x34\x61\x9b\xab\x29\x80\x8a\x05\x26\xfc\x6f\x02\x72\xc4\xad\x0c\x29\x1e\xe3\x25\x9e\xe2\x59\x0e\xfd\xe9\x2f\x9a\xd1\xe6\xb4\xdb\xe1\x24\xd7\x1a\x0a\x9f\xc3\x98\x12\x35\xfd\x98\x35\x8f\x68\x62\x38\x63\xb3\x36\xd9\xad\xc6\x60\x4e\x87\xc6\x4a\xb7\xd9\xc4\xa3\x75\xff\xfe\xe1\x01\xf1\x2f\xa6\xd3\x38\x21\xd4\x57\x3a\xee\xc3\x5a\xa6\x25\xed\x20\xc7\xd2\x68\x00\x53\x2a\x0b\x9a\x41\x89\xb9\x9e\x39\xb5\x35\x2a\x58\x31\x78\x49\x78\x27\x47\x6a\xc2\xb1\xff\xd3\x16\x82\x23\x32\xe7\x28\x28\xac\xde\x53\x4b\x51\x21\x79\x80\xe6\x3e\xe8\xd2\x92\xfd\x82\x28\xb9\x24\x9f\xad\x4f\x44\xa4\xf6\xe0\x72\xb0\x37\xdc\x07\x8d\x54\xae\x88\x89\xd5\xda\x99\xf8\x8c\x18\xe1\xcf\xb2\x63\xae\xee\x10\x9d\xb3\xc4\x1c\x21\x9c\xec\xee\x66\x56\x97\xe5\xa9\x70\xd4\x86\xb5\xbc\x47\xe4\xbb\xf6\xc0\xfb\xbb\x57\x74\x6d\x12\x6a\xd3\x54\xf5\x44\x9b\x2e\xcd\x63\xef\xb2\x5f\xee\x80\x56\x1e\xa0\x76\xfb\xb0\xd8\x6b\xae\x78\x86\xc4\x11\xe6\x58\x78\x57\xed\x31\xe1\x5e\x2f\x79\x63\x2f\x39\x6a\x95\xd5\x14\x5f\xd0\x4b\xec\x75\x46\x42\x0f\xd4\xdc\x19\x1f\xab\x29\x31\x97\x74\x86\x99\x9f\xa2\xa0\xda\xa2\xb9\x92\x4f\xf3\xd1\x2b\x99\xdf\xac\xb7\xfa\xab\x36\xbe\xec\xcb\x95\x12\xbe\x32\x05\xe1\xb8\xdd\x8e\x5d\x1b\x71\x6d\x1b\xf7\x12\x86\x05\x10\xdd\x08\x7f\x45\x8b\x06\xaa\x41\xf1\xce\xc0\x9b\xb6\x20\x12\x2c\xba\x4a\x62\x1a\x30\xbe\xc5\xdb\xed\x72\xcd\x42\xbd\xc2\x23\x19\x72\xaf\xa8\xf7\x3d\xdf\xc8\x04\x93\x32\xf3\xe1\x1b\x99\xa0\x61\x28\x1b\xcc\xc1\x3e\x07\xba\xa3\x43\x22\x71\xd1\x20\x95\x54\xec\x5c\x9e\xd0\x68\xf0\xc9\x6b\xa4\x47\x79\x50\xaf\x31\x1c\x4c\xe8\x70\x88\x7a\xf0\x6f\x81\xdb\x3d\x23\x94\x16\x78\x5a\x79\x0e\x42\x59\x9e\x33\xc6\x8f\x2f\xce\x02\x38\x40\xbd\x03\xab\x34\x39\xa5\xb7\x96\x69\xc3\xa0\x6b\xee\x74\x95\x4e\xc1\xc8\x61\x0a\xb8\xf9\xc3\xe5\xa2\x62\x45\x26\x0c\x0a\x4a\xcf\x0e\xf2\xf2\x13\xfa\x54\x2a\x4e\x2d\xda\xed\x6d\x67\xa0\xd2\x09\xac\x38\xb2\xde\x8e\x67\x52\xf1\xa3\x62\x07\x48\xc1\x9c\x85\xa5\x06\x0f\xee\x62\xa9\x88\xd1\xf8\x44\x33\x9a\x86\x89\x7b\xb7\x57\x9a\x0d\x0f\x10\xb6\x66\xa6\xfc\x83\x3f\x63\x35\xeb\x51\x20\x4a\x5d\x57\xb1\x1a\xff\x98\xb4\x64\xda\xe0\x60\x50\xb6\x91\x26\x0d\xae\x06\x5f\x4e\x35\xd5\x01\x6f\xa6\x8a\x06\xdb\x6c\x31\xaa\x19\x2c\xb3\xb9\x0a\xe6\x44\x16\xce\xfb\x7c\xd1\x8f\xa9\x8c\x58\x9c\xea\x04\x80\x2c\x32\xb3\xd1\xdb\xee\x66\x9e\x8d\xea\xf4\x4b\xbf\xde\xcb\xb4\x91\xe2\x4d\xd5\x39\xa2\x5b\x70\x8e\xe8\x16\x9d\x23\xba\x05\xe7\x88\x6e\xd9\x39\xa2\x5b\x74\x8e\xe8\x7e\x91\x73\x44\xb7\xce\x39\xe2\x4f\x6d\xba\x3e\x97\xf8\x5d\x55\x93\xed\xcc\xc5\x4a\x00\xb3\x2a\x98\xa2\x7c\x6e\x8d\xc5\xfa\x22\x6c\xcd\xc5\xd6\x4a\xfd\xa7\xb4\xee\x6b\x8a\x45\xe6\xae\x03\x38\x22\xc9\x41\xe2\x5f\x8e\x2d\xfa\xb4\xb6\x78\xe7\xcf\x49\x84\x0b\x57\x72\x6b\x7f\x06\xe3\xb4\x31\x39\x6b\x03\xf9\x4a\x75\xb2\x47\x71\xb1\x7f\x3d\x89\xad\x7f\x02\x76\x1a\x04\x8e\xfd\x1b\x70\xef\x8d\x2c\x5c\xda\xa3\x2c\xc3\xaf\x9f\xd5\x9b\x6e\xd6\x5d\xfa\xc6\xf4\xaf\xc3\xfe\xdf\xec\x90\x51\x51\x53\x94\xcd\xde\xcf\xeb\x2c\x5e\xee\xaf\xd1\xe8\xcb\xe2\xc5\x50\xe6\xbb\x5d\x2f\xf8\x17\xdd\x7e\x98\xbb\xfd\x30\x23\xf4\xc2\xfd\x85\xb9\xfb\x8b\x55\xf4\xd4\x5d\x63\x58\x83\xd0\xcf\xbe\xec\x1a\xc3\x36\x5f\x63\xb0\xbb\xc0\x30\x8d\xdd\x99\xe0\x48\x87\x89\x9f\x4b\x84\xdf\x3f\xe7\x03\xd5\xfd\x22\x1f\xa8\xbf\x7f\x9b\x7f\x7c\xce\x89\x3e\x27\x58\x6a\x42\x77\x21\x9e\x57\xf1\xbd\x56\xd1\xf1\xc4\x98\x9b\x1f\x3b\x6f\x0e\x8f\x6e\x2e\xae\x3e\x8d\xde\x5c\x5c\x19\x94\x8e\x56\x65\x3b\x8a\xce\x74\x19\xc7\x6a\x0d\x0d\x70\xcc\x5e\x17\x15\x37\xdf\x7b\x59\xde\xb1\xc2\xee\x58\x6d\x62\xab\x51\xf5\xd6\xc8\x42\x35\x37\x39\x90\x6d\x20\x1c\xeb\x8f\x67\x75\xcf\x9a\xfa\x0c\x87\x2b\x38\x68\x6d\x72\x42\x81\x1c\x8c\x75\xce\x41\xf4\x71\xcb\xe4\x1b\x01\xb5\x46\xb9\xd6\x67\xa1\x4f\xbc\xb2\x99\x96\x16\x1a\x42\x71\x2b\xdd\xc5\xd2\x86\xa0\x3d\xeb\x0a\x04\x24\xac\xd5\x5b\xb0\x87\xf5\xea\xb1\x49\xc1\x93\xe5\x64\x82\x42\x8b\x89\x43\xf9\x83\x65\xf7\x22\x49\x64\x29\x48\x5d\x33\x70\xc3\x91\x67\xc9\x32\x9e\x5c\xd1\x69\xbc\x4c\x67\x36\x5d\x42\xee\xce\x42\x0c\x7c\x98\xc1\x04\x4b\x16\xaa\x6b\x29\x59\x45\xf1\x63\xf4\xa4\xa4\x27\x23\x5e\xa9\x73\xb4\x65\xda\x28\x23\xe6\xeb\x38\xd5\x98\x08\xff\x58\x19\x93\xd8\xe3\x6a\x53\x9d\x08\x40\x7f\x7b\x16\x31\x8e\x42\xf7\x5a\xa8\xf5\xbc\x13\xd1\x1c\xab\xeb\x47\x82\xa3\x50\xe2\x95\xd9\x75\x3d\x06\xb1\xbe\xd7\xec\x36\x66\xfc\xce\x60\x0a\xe3\x31\x6a\x4d\x92\x15\x25\x53\x13\xdd\x9d\x3d\xce\x54\x33\xdb\x54\xc7\x96\x1b\x3d\x87\x17\x04\xae\xc3\xea\xeb\xfa\x6e\x56\x6f\xd2\xb1\x09\x20\xc2\x25\x32\xfe\x20\x8d\x21\xf3\x9b\xb0\x06\x60\x35\x08\x01\x5a\xd9\xec\x18\x65\x02\xe6\x73\xaf\x28\x07\xf7\xe6\x2d\x4e\x37\x5f\x6e\x7f\x51\xa1\x95\xdc\x85\xab\x66\xd9\xcd\x48\xcd\x23\x1b\x4e\x40\x20\xab\xbd\xe7\xe1\xdb\x12\xed\xb6\xd4\xee\xca\xce\x57\x38\x77\x7e\xb6\x9e\xc1\x50\x48\x3b\x0e\x87\x6a\x76\x34\x59\x7f\x92\xe0\x89\xec\x62\xbb\x3c\xcb\xda\xa7\xdc\x2d\x88\xa2\xd6\x27\x0d\xae\x38\xa6\xa1\xc4\x7b\x9e\x28\xf7\xb3\x73\x96\xfb\xc6\x84\x81\xa8\xbf\x7f\x91\xa4\xdb\x5a\x76\x6e\xa3\xf1\xfd\xed\x52\x70\x2a\x3a\x09\x0f\x03\xe8\x62\x03\xc4\x57\x77\x9f\xfe\xf0\xc9\x99\xdd\xe8\xce\x0e\xfa\x24\x07\x74\xd8\x19\x59\x47\xf0\x9c\x8c\x43\x75\xb5\xad\x54\x4e\xf9\xe4\xc5\x55\xb3\x69\xb8\x6d\xaa\x67\xe9\x07\x55\x6d\x88\x40\x39\xff\x8b\xfc\xf1\xae\xd3\x3f\xff\xd0\x19\x5d\xf5\xaf\xfa\xe7\xc7\xfd\xab\xd1\xe9\xc5\xc5\xe5\xe8\xf4\xe4\xec\xe4\xc6\xc4\x47\xa8\xb1\x61\xfd\xb5\x9b\x65\xec\x05\x4d\x30\x3e\x55\xd2\x2b\xdd\xd2\xcb\xc7\xf8\xdd\x16\xe3\xa6\xef\xe0\x2b\x4c\x25\x1d\x4b\x3a\x09\x9c\xce\xee\x17\xb9\xb3\x53\x1c\xd0\xef\x09\xe3\xa0\x6d\xc7\x3f\x4b\x94\x41\x8b\xde\xd0\x72\xe7\xae\x6f\xa4\x25\xc7\x6f\xa4\xa2\xa0\x24\x7e\xa0\x2d\xb3\x10\x4d\x35\x52\x94\x65\x6a\x0a\x61\xa1\x7e\xdd\xc8\xd6\xac\x5a\xae\x62\x93\xfe\xae\xd6\x26\xfd\x5d\x21\x86\xf8\xbb\x61\x9d\x35\xfb\xfb\xda\x2f\xbf\xf7\xad\xd9\xdf\x0f\x7b\xb3\xce\x38\x66\x94\xcb\xd7\x4b\x16\x4f\xa8\xd0\x4c\x6b\xa4\x76\x90\x61\x92\x23\xe1\xa7\x2c\x97\x36\x75\x22\xa3\x8f\x57\xf4\x8e\xa5\x52\x3c\x59\xd9\x79\xa4\x16\x89\x71\x3a\x79\x93\x88\xe3\x8b\x33\x2b\xf0\x8e\x7c\xee\xe9\xd5\x09\x21\x3c\xfa\x67\x21\x47\xf2\xee\x9e\xc3\x78\xbc\xb2\xeb\x7a\x05\xe5\xf3\xcf\xe9\x3c\x79\xa0\x93\xab\x62\x2d\xb7\x7a\x08\x84\x6d\xe2\x47\x4a\xb0\xe4\x93\x0b\x38\x79\x40\x83\x5e\x15\x52\x59\x81\x5d\xb1\x69\x68\x08\xf5\xf0\xf2\xf2\xf4\xe4\xe8\xf0\xe6\xe4\xe2\x7c\x74\xd3\x3f\xbb\x3c\x3d\xbc\xe9\x8f\x3e\x5e\x1d\x5e\x5e\xf6\xaf\xbc\x24\x30\x05\xeb\xd0\x42\xe2\x55\x51\x9c\x2a\x0a\x48\x19\x00\x99\xd0\xc7\xb0\x21\x12\xeb\x2f\x58\x67\xb9\x95\xd3\x59\x5d\x0c\x0e\x6b\x32\xe8\x19\x6b\xe8\x84\x3d\x04\x99\x36\x71\xd6\x5c\xa8\xed\x04\x7b\xce\xd5\x9b\x65\x76\xd9\x20\xb3\xcb\x92\xcc\xce\x5e\xe0\x63\x2d\x55\xb1\x67\xd5\xdc\xb2\x5e\x23\x57\xd4\xba\x95\x0b\xb1\x09\xf8\x60\x15\xa2\x50\x11\xc4\x74\xcc\x65\x11\x59\xe8\x49\x86\x54\x0b\x8c\x98\x15\x72\x1f\xe6\x2f\x50\xe6\x24\xcb\x91\x26\xbb\x63\x0a\x0c\x4b\xf7\x12\x8e\xf8\xf1\x52\x88\x27\x14\x32\x64\xf0\x89\x74\xb9\x9b\xa4\xf6\xee\x04\x39\xe6\xe5\x8b\x2b\x15\xb6\xd2\x4a\xc1\x06\x9b\x80\xc9\xee\x25\x0d\x4d\x6e\xfd\x21\x35\x1f\xab\xf5\xdd\x87\x9c\x81\xf4\x71\xeb\x83\x0c\x2d\xa7\xa0\xfc\xa1\x86\x67\x60\x8e\x05\x66\xc5\x3d\x6a\x47\xa0\x19\xb7\xda\xc7\xa1\x8e\xd8\xb6\x72\x45\x25\x80\xa8\xfe\x74\x82\x2f\x14\x17\xa2\xcf\x65\x64\xd2\xe2\x60\xab\xca\xbd\x06\x72\xa8\xe5\x8f\x25\xaf\xad\x6a\x42\x63\x2a\xe9\x56\xcd\x87\xd5\xea\x87\xba\x43\x8a\x39\x95\xf4\x4f\xa5\x1b\x9d\x61\x89\x1a\x24\xde\xb8\x9a\xd3\x88\x2f\x17\x6a\x2a\xd4\xad\xd8\x4a\xae\x25\x9e\xda\x6e\xd3\x82\x76\xa9\xec\xee\xad\xda\x2f\xd6\x54\xe6\x65\xdb\x25\x9e\x8c\xec\xe9\x2d\x89\xc7\x9a\x1d\x40\x2a\xfc\x72\xf1\x52\xbb\xbb\xfb\x96\x56\xe4\x40\x0c\x5b\x5c\x8b\x77\x21\x05\x9c\x14\xef\x90\x76\x22\x8c\xc0\x7b\x10\x0a\x5f\x2b\xde\x95\xba\x62\x7d\xca\x46\x55\x89\x6e\x04\x8e\xe6\x87\x71\x0c\x2c\x3f\x44\xf6\x1e\xf2\x3a\x59\xf2\x49\x5a\xc7\x9a\x06\x77\x2e\x0b\xfd\x4a\xdb\x4b\x6d\xba\x20\xd9\x29\xfc\x56\xe2\x36\x13\xa9\x3c\x4f\x26\x8a\x1d\xb9\xbf\x43\x84\xd5\xb1\x64\x1e\xdb\x3f\x43\x3d\x98\x71\x03\xeb\x29\xc1\xb7\x53\xfe\x00\x69\xb8\xf4\x99\xb3\xa0\x02\xe4\x92\x34\x44\xa5\x28\x60\x7d\xaf\xf2\x76\x43\x75\x44\xc5\x15\x69\x39\xe8\x3c\xf0\x59\x17\xce\x56\x61\x92\xec\xe3\x4f\xd2\x82\x8e\x21\x5c\xde\x6a\xa9\x27\xd1\x86\xe5\x96\xd3\x46\x48\x9d\x12\x65\xa8\xcd\xee\x80\x73\xbd\xf3\x18\x33\x75\x49\x9a\x24\x2b\x51\x14\x94\x9d\x91\x4e\x17\x78\x99\x17\x18\x98\x02\x73\x09\x1f\x19\x28\xb5\xc8\xb3\x66\xa5\x24\x2a\xde\xda\x5a\xc9\x8f\x84\xb6\xdb\xdb\xe9\x7a\x1d\x46\xf6\x8a\xd6\x29\xdf\xd0\x48\x8a\x2b\x5f\x6a\x8f\x70\xb1\xe4\x27\xbe\xd0\x8f\xc2\x08\x1b\xed\x4f\xa0\x38\x23\x5b\xaf\x53\x94\x65\x35\x92\x4b\xdc\x39\x7a\x7f\x75\xd5\xd7\x71\x3b\x2e\x16\xc4\x5d\x0b\xbc\x3b\x81\xbe\x81\xb1\xf5\xda\x0e\xfc\x47\xaa\x5d\x1a\xf6\x6d\xc2\x71\xb3\xd1\x96\xea\xec\x4e\x16\x70\x27\xcc\x6f\x09\x4b\xd4\x72\x3b\x6c\xaa\x2e\x09\x0e\xab\xbc\xb0\x61\xdb\xed\xb7\xd2\x46\x54\xca\x26\x0a\x20\x45\x71\x77\xbb\x5e\xf6\xb2\x9b\xb5\x2a\x93\x75\x0d\xda\xf2\xf6\x9e\xce\x2b\x54\x26\xb6\x10\x61\x4a\xb6\xbb\x6e\x1a\xa8\xdb\xe6\xcf\xcf\x1d\xce\x41\xd8\x61\x2f\x15\x2e\x63\x16\xfc\x5f\xbd\xb0\x33\x8b\x9a\x45\xc7\x0c\x36\x6e\x91\x91\x90\xda\x5b\x8c\x4f\xed\x75\x10\xc8\x74\x20\xbd\x0b\x49\x56\xdd\x02\x16\x18\xb5\x5b\x96\x76\x69\xfd\xc2\x54\x8f\x36\xbf\x63\x85\xcb\x85\x2d\x7a\xc1\xc7\xd4\xea\x24\x03\x3f\x39\x89\x70\x75\xe8\xba\xcd\xad\xab\x09\x14\xc2\xe7\xbe\xf5\x44\xb4\x5e\x57\x96\x46\x9f\xbe\xd5\x45\xb4\x64\x56\x37\x0a\xbb\x2e\xe6\x0e\x68\xc0\x97\x37\x70\x25\x03\x51\xa1\xd7\x91\x0a\xf2\xab\xd6\xdf\xfd\xf6\x57\x1d\x19\x9f\xf5\xb8\x7d\x49\x74\x7b\x47\x71\x3f\xda\x29\x88\x39\xb4\x28\x1e\xe0\xed\x3d\x4c\x3b\x56\xde\xa9\xa4\xfa\xad\x3b\x3b\x2a\xa8\x00\x87\xe3\x31\x4d\x21\xfc\xff\xbf\xb5\x62\x43\x7f\xf4\xdf\x5b\x2c\x05\xac\x80\x28\x8e\x93\x47\x3a\xd9\x62\x7c\x8b\x27\x7c\x97\xe5\x6a\xe1\x2d\xcf\x70\x95\x6e\x85\xe9\x72\x3c\xdb\x8a\xd2\xad\x37\x51\x2a\x5f\x27\x89\x44\x9d\x40\xeb\x80\x7f\x85\xf8\xe4\x13\x4e\x85\x74\x33\xfd\x9b\x9e\xe9\x9f\xfe\xef\x99\xe9\xee\x97\xce\xb4\x07\x1d\x50\x0d\x7c\x2b\x4c\x8c\x9b\x51\x37\x3d\x3f\xe9\xe9\xa1\x82\xac\x0c\x58\xa4\xa8\x5e\x3e\x7c\xc5\x33\x2d\x18\x7b\x2a\x56\x1e\x93\x1d\x4a\x64\x19\x16\xe2\xaf\x19\x6f\x34\xf8\x86\xfc\x32\xbf\xf2\xcd\x37\x3c\xdd\xbb\xe6\xe0\xd9\x97\x5e\xec\x4c\xc0\x29\x17\x5f\x16\x73\xfd\x8c\x59\xf1\x0b\x63\xae\xf7\x9e\xb7\x37\x30\x51\xef\x48\xcd\x84\x71\x75\x16\x38\x6a\x5c\xa5\x7f\x30\x2c\xfb\xf9\x6b\x31\x17\x19\xe6\x1b\x3c\x62\x8b\x5e\xaf\x05\x77\xca\x56\xd5\x29\x92\x09\xe3\x09\xb9\xb2\xae\xb1\x26\x58\x5b\xdd\x2a\x9f\x16\x6a\x81\x3d\xe7\x36\x48\xb4\x08\xba\xce\x46\xa3\x9b\x97\x96\xa2\xec\x29\x19\x15\x3d\xe5\x74\x65\x38\x25\xd6\x01\x33\x5c\x8d\xf5\x82\x7a\x9e\x8d\xaa\x0b\x91\x93\xb1\x1c\x55\xea\xe7\xd8\x26\xc2\xef\xa5\x59\x53\x3c\x76\x1e\xa9\xa8\x8b\xfa\x97\xfb\x5f\x43\x89\xbe\x30\x44\x7b\x83\xc3\x07\xe4\xec\x15\x5e\x53\xfb\x79\xea\x50\x61\x93\x54\x3a\x68\xca\x4d\x41\xdc\x65\x53\xbe\xaa\x0c\xb6\x96\x10\x08\xa7\x46\x41\x40\xa3\xfb\xb3\x68\x81\x97\x0e\x68\xf9\x0e\x5c\x36\x34\x41\x5d\x4c\x73\x15\x74\x2c\x0a\x26\x99\x14\x3c\x8d\x0c\x7f\xf0\xc0\x87\x04\x10\xb9\xbb\x25\xd2\x7d\xad\x11\x95\xfb\x20\x2f\xa6\x02\x1c\x20\xa5\xf3\xfa\x4d\x4d\x96\x74\xd4\x92\x64\x29\xd4\x44\xfa\x81\xe7\xb1\x08\x57\x53\x93\x80\xb7\x81\xef\x47\x02\x78\xb0\xcd\xe1\xa7\xf6\xa9\xc9\x0f\xeb\x25\x24\x48\x04\x89\x3a\x66\x7c\x36\xcd\x1e\x4b\x6d\x7a\xd5\x4a\xd2\x0b\x3d\xc7\x95\x75\xcc\x53\xce\xba\x54\x23\x4f\x0b\x9a\xa1\x0c\x21\x9c\x88\x2f\xca\xbd\xa8\x73\x6b\xea\x03\x61\x2a\x48\x22\xf0\x4c\x90\x3f\xea\x50\xcf\x6f\x3b\x71\x32\x36\xfc\xc1\xaa\x89\x11\x9e\x88\x67\xec\x9c\x46\xe7\x2c\x36\xc3\x85\x6d\xf2\xa2\xf7\x6e\xf9\xb6\x32\xfb\x87\xba\x48\x2a\xde\x60\x8e\x2c\x80\x4a\x4d\xbd\x5c\x5b\x5b\xa2\x5c\x73\xc8\xed\x1d\xbc\xf1\xf0\xf8\xc2\x96\xd8\x34\xac\x6b\xa5\x53\x38\x2e\x6a\x90\x90\x45\xde\x09\x0b\x46\x6a\x1b\x75\x6c\xc1\x9c\x51\x35\x20\xb8\xcc\x38\x80\x64\x85\xd3\x8b\x95\x4f\x2f\x13\x9f\xa1\xe3\xa2\x37\x98\x34\xdd\x70\xfd\xf2\x06\x1f\xc8\x56\x52\xc5\xe9\x79\xae\x1a\xfb\x45\xa9\x22\xc7\x46\x1b\x34\x7b\x1b\xeb\x74\x1f\xbf\x83\xf1\x97\xaa\xbe\x8c\x84\x64\x51\xfc\xf2\xea\xcc\x07\xa6\x1a\xb0\x78\x2d\xbe\xf0\xac\xdf\xfb\x4b\x67\xfd\xde\x17\xfb\x16\xe4\x9c\x70\x2e\x1a\xa3\x4c\x3a\x51\xfa\xc4\xc7\xa7\x6c\x4a\x8f\x9e\xc6\x31\xb4\xa6\xae\x63\x69\xce\x20\x1f\x36\x7c\x3c\x71\x4c\x1c\x36\xed\x93\x68\xd6\xf5\xff\x3d\xd2\x03\xab\x93\x1e\x58\xfd\x99\x6c\x54\x79\x58\x7d\x33\xa1\x31\xbd\x53\xb2\x75\x42\x84\x17\xaf\x10\x29\x19\x97\x93\xc4\x05\x8b\xda\xf8\x75\x33\xf7\x96\x86\xc2\xf2\x99\xae\xbd\xba\x31\x2f\xe8\xcc\xef\x44\xc8\x70\x6a\x1c\x50\x58\xe3\x91\x09\x67\xa5\xeb\x50\xd5\x55\x3d\x12\x77\x69\xcb\x84\x4c\x28\x5a\x01\xb0\xe6\x96\x1f\xf7\x60\x91\x5c\xf3\xfe\x69\xfc\x7f\xf6\x8c\xbf\xa8\x6b\xb4\xe8\x93\x3a\x17\x90\x02\xd9\xc3\x3d\xca\x2b\x16\xb6\xda\x0d\x0e\x85\x2f\xa8\xf6\x7d\xa9\xbf\xba\x5a\xc5\x0d\x13\x2e\x0b\xb0\xf2\xcf\xd7\x2b\xbd\xef\xf2\x8a\x1a\x05\xa0\x86\x5a\xcc\xba\xfd\x6a\x65\xb0\x52\xad\xb6\xda\xcd\x62\x8a\xda\x1b\xae\x01\x74\x60\x3c\x63\x36\x59\x79\x6a\x3a\x96\x43\x73\x17\x4d\x6b\x02\xaf\xbc\x2d\x2e\x8b\x3b\x2f\x7f\x93\xd9\xae\x36\x7a\xde\x28\x82\xea\xc8\xe8\xce\xac\x64\xbd\xb7\x33\x5a\x35\x9b\xc3\xca\x01\x8d\x35\x98\x43\x0d\xd7\xa4\x72\x9c\xa3\xbe\x26\x21\x7c\xd7\x28\x0e\x58\x17\x36\xe3\xfb\xa0\xa7\xe8\x45\x50\x38\xc5\x0d\x43\x78\x9d\x83\xd2\x66\x27\x0c\x47\x2a\xb2\xe2\x3b\xa7\x8d\x00\xae\x02\x8f\x33\xd8\xe3\xe0\xb6\x7c\x4d\x76\xa3\x78\xde\x49\xd3\x8d\x53\xd4\x3b\x55\xda\xab\xf6\x93\x70\x16\x4f\x6f\xea\xbd\x29\xae\xba\x69\xbe\xcc\x15\xd3\xf3\xc0\x2c\xc8\x09\xd8\xf6\x0c\xee\xef\xa3\xbf\x74\xe2\x7d\x29\xa2\x58\xf9\xc4\xdb\x7b\x1e\x51\xec\xf1\x1f\x3f\x80\xbe\xc0\x29\xd4\x8b\x03\xf8\xab\xda\x85\x97\xdc\x8f\x47\xa2\xee\x76\x5a\xc2\xc5\xaa\xb9\x2b\xba\x12\xb3\xce\xf9\xfb\xd3\xd3\xdc\x02\xfa\x85\x37\xc4\x2f\x01\xe6\x42\xb8\x2f\x2a\x01\xe1\xf5\x78\x5a\x8f\x22\xc3\x9f\x9b\x64\xc9\x52\xfc\x63\x17\x79\x42\xcf\xb5\xf0\x97\x20\x2f\x08\xe2\x39\x14\x06\xe1\xdc\x19\x6d\x72\xc4\x08\x83\x28\xa2\x81\xdd\xf8\x8f\x7b\x07\x15\xd8\x07\xf5\xfd\x9e\x0b\xa5\xd5\x48\x0f\x3d\x80\x20\x51\x1f\xbc\xaa\xff\xe0\x55\xf9\x03\x96\x0b\x59\x17\x9e\x90\x55\xb8\xb5\xd1\xca\x10\x1d\xc0\x41\xb0\xeb\x0a\xf6\x82\x5d\x48\x8e\x3f\x65\x34\x9e\x04\x79\xb5\x87\xcf\xce\x81\xad\xcd\x03\x21\xc1\x9c\x88\x81\xf0\x90\x94\x18\x29\x0d\xb8\x38\x43\xe5\xc1\x72\xd4\x63\x5a\xdb\xce\x2c\x18\x06\x43\xbd\xc0\xeb\xd6\x7d\x41\xa4\xcc\x9f\xdf\x88\x8a\x36\x05\x47\xad\x02\xd8\x6c\x1e\xbc\x3e\x78\x3b\x44\x09\x11\x38\x22\xea\x4f\xdf\x60\x66\x4b\xb4\xf2\xa8\x61\x92\x1e\x84\x09\x91\x38\x52\x43\x81\x9a\x52\x25\x99\x98\x3f\x07\x62\x88\x7a\x7e\x1b\x24\x6d\xb7\xc3\x84\x50\x55\xb9\xbb\xe0\xd7\x1a\x53\xca\x6e\x49\x58\xfb\xe7\xea\xc0\x61\xb8\x0b\x76\xf7\xc5\x0f\xd4\x61\x71\x7a\xae\x4a\x62\x68\x98\xf9\xca\xe4\xb3\x4f\x14\x2f\xd2\x2a\xd3\x5b\x1a\xf7\x82\x7f\xdb\xec\xfe\xe3\x38\x49\x97\x82\xee\xea\xee\x06\x5f\x94\x86\x55\xfb\x83\x98\x2f\x31\xab\x2a\x09\xb6\x96\xe0\xd2\x65\x58\xa2\x71\x11\x1c\x24\x38\x1a\x76\xc6\x09\x1f\x47\x32\xe4\xa1\x44\x08\x65\x06\xf6\xfb\xa8\x56\x12\xaa\x53\x76\x68\xe4\xea\xf5\xba\x2e\x2b\x88\x53\x3e\x40\xf6\xbe\x20\xe8\x39\xd8\x14\x6f\x0b\x9f\x15\xaf\x1e\xde\x4e\xb0\x54\x3b\x8f\x16\xe1\x91\x40\xda\x29\x2d\x08\x3c\x77\xc2\x2b\x51\x0b\x2a\xbd\xa5\xfd\x86\x2f\x05\xb9\x12\x3e\xd0\xda\xef\xcf\xee\x94\x9a\x04\xb3\x9e\x4d\xcd\x83\x0c\x01\x78\x34\x25\xc8\x1b\xc7\x6a\x84\x93\x2a\x99\x44\x1e\x99\x24\x08\xa7\xa4\xbb\x9f\xfe\x90\xec\xa7\x3b\x3b\x28\x1a\xa4\x3e\x99\xa4\xd6\xce\xdf\xb0\x09\x0e\xd4\xff\xcc\xea\x09\xcc\xec\xa2\x45\x8a\xcb\x80\x0e\xdd\xea\x62\xf0\xe0\x52\xb8\x35\x65\x38\x2a\xe0\xc7\x1f\x8b\x0a\xa0\x2a\x21\x72\xbd\x06\x18\x24\x79\x50\x3e\x1b\x7a\x95\x80\x7c\xc0\x3e\x28\xe1\x1b\x1d\x2c\x41\xa0\x2b\x40\x7e\x51\x0b\x5f\x07\xb0\x1d\xcd\x06\x01\x77\x7f\xdb\x6f\x80\x1d\x4a\x93\xa5\x18\x7b\xb9\x19\x2c\xc2\x50\xfe\x44\x60\x0e\x8e\x0d\x1e\xc8\x90\xc6\x91\xc9\x8b\x94\xc7\xe5\xc4\x2b\x28\xf7\xe2\x5c\x1f\xb9\x20\xb0\x19\x0c\x0c\x33\x80\x03\xfb\x12\x9b\x51\x9e\xe3\x00\xaa\x65\xe9\x51\xc2\x53\x09\x39\x33\x60\xcd\x84\x77\xa8\xd0\xc7\x2d\x09\x5f\x6c\x4c\xa7\xb6\x19\x68\xc7\x4e\x98\x95\x81\x8b\x13\x66\xdd\x23\xec\xf4\x58\x17\x89\xc2\xc4\x97\x8e\x89\x2d\xae\x01\xe7\x43\x49\x8e\x4d\x3c\x4c\x69\xed\x30\xaf\xa4\x1b\x82\x49\x33\xe6\xee\xd2\x9a\x19\x99\x39\x5f\x59\x94\x6b\x97\x33\xcc\x07\x9f\x86\x05\xa2\xca\x95\xd1\x75\x4d\xe7\x1a\xf7\xc6\x61\xd8\xb4\x83\xbf\x68\x09\xf0\x64\x13\xcd\x6e\xce\xbd\xe8\x68\xf7\x56\x44\x7c\x3c\x7b\x79\x2a\x19\xd6\x4c\x57\x2c\xaf\x6c\x88\xf4\xf6\x9f\x10\xa9\xbe\xd0\xd8\x4c\x8a\x25\x68\x6c\x26\xfe\x92\x34\x8f\x35\xf4\xe7\x01\xa7\x79\xe1\xc4\xad\x3a\xa2\x64\xe8\xc0\x69\x29\x0e\x44\x8f\x1b\x92\x64\x3a\x58\xfb\x0b\xe0\x9e\xd4\x28\x72\x24\xa7\x1c\xf3\x49\x27\x0d\x2e\x20\x3e\xc1\x13\x37\x07\x45\x2a\xa2\x9a\x8a\xa8\x97\xd9\x16\xd6\xd1\x2d\xda\xa9\x28\xaa\x65\x72\xc6\xbf\x1f\x4a\x32\x4e\x78\x9a\xc4\x14\x75\xe2\xe4\xce\x5e\x19\xbc\x0d\xa7\x03\x09\x45\x09\x55\xe9\xec\xfd\x4d\x80\xf0\x9f\xe5\xc7\xd7\x17\xef\xaf\x8e\xfa\x81\xd7\xf6\x3b\xa1\x7d\xe7\xf2\x36\x5d\x6e\x3e\xb8\xca\xfa\xaa\xa5\xeb\x8e\x97\x91\x39\xac\x62\xb4\xd8\x2e\xe9\x3e\xbd\x16\x64\x10\x44\xb1\x0c\x70\x00\xd0\x9f\x01\x0e\xe6\x54\x46\x01\x0e\xc6\x52\xc4\xc1\x10\xbf\x17\xe4\xdb\xff\x35\x8e\xd9\xf8\x7e\x3d\x4f\x96\x29\x5d\xcb\x64\x39\x9e\x7d\xdb\x5a\x74\x0e\xa1\x6f\x06\x49\xda\x39\x1f\xd2\x89\x7e\x9e\x42\x0f\x3f\xd6\x39\x23\x52\x23\x4c\x9d\xb8\x7e\x3f\x5b\xd9\x40\xc3\x47\x65\xf8\x8f\x67\x2a\x34\x3e\x8a\x2f\xa9\x30\xc3\x1f\x9e\x51\x2d\xe8\xf8\x1a\x48\x3a\xbf\xf2\xbd\x0e\xec\xc5\xc3\xb6\xea\x54\x0c\xf0\x1b\xfc\x88\x85\xff\x04\x4c\x90\xbc\xa4\x7a\xb0\xd7\xed\x7c\x4d\x49\x62\x98\xd8\x7c\x11\xb3\x31\x93\x37\x1a\xc4\xc4\x44\x4f\x4e\x92\x39\x31\xae\x2d\xf4\x81\x72\x80\x74\xd2\x3b\xe0\x8e\xca\xbe\x7d\x12\x7a\xc9\xa4\x96\xcf\x98\x47\xdc\x47\x4d\x2e\x31\xae\xaf\xda\x1a\x99\xf0\x1c\x13\x68\xbd\x0e\x80\x28\x02\x63\xfa\x38\xcc\x07\x5a\x2b\xf5\xe4\x22\x4c\x69\x5e\x2c\xb4\x85\xf1\x2f\xaa\x7f\x0b\xde\x46\x54\x11\x41\xe9\xfd\x40\x0e\xcb\x47\x08\x35\x3d\x32\xb3\x57\xcf\x34\x8a\x53\x6c\x0f\x30\x37\xde\x7c\x9a\x00\xd2\x44\x0b\xdd\x01\x3a\x90\xc6\x2c\x6b\x7e\xdb\xa6\x7b\x3e\xd7\x30\x56\x94\x3a\x3a\x05\x25\x82\x20\x25\x5a\xb1\x07\xa3\x6b\x1d\x12\x7a\x42\x43\xb7\xcb\xdb\xdb\x98\xa6\x80\x3d\x69\x1e\x2d\x04\xac\xfe\xb1\x4e\x17\x14\x40\x5e\x4b\xfd\xc6\xb8\xc0\xfc\x4c\x9f\x52\xb0\x19\x5b\xda\xd0\x63\x04\xc8\x1d\x80\x00\x65\xe5\xbb\x59\xf1\xc2\xec\x20\x97\xf4\xdf\xef\x45\x47\xd2\x54\x86\xda\x78\x6b\x6d\x9b\xe0\x2f\xc2\xd2\x6b\x35\x8f\xf4\x48\x11\x82\xf6\x29\x26\x41\x90\x99\x2c\x62\x46\xbc\x8b\xf8\x53\x80\x7e\x24\x5d\x9b\x18\xbf\x5b\x4a\x41\xf0\x5a\xf8\x39\x08\xd8\x34\xa4\x83\xd7\x62\x20\x86\x3b\xc1\xcf\xf4\x29\x18\xb6\xdb\x1a\x2f\xd7\x55\x08\x2f\x91\x4b\xb3\xef\xee\x97\x59\x48\xb1\xb3\x82\xa3\xf5\x5a\xc3\x9d\x3a\x75\xbd\x4e\xf4\xe0\x4f\x9d\x9a\x90\xf5\x9a\x76\x52\x99\x2c\x2e\x45\xb2\x88\xee\x22\x4d\x27\x38\xec\x62\x7d\xd1\xf1\xf0\x56\x1c\xf5\x14\x89\x1d\xa4\xf8\x15\xdc\xc5\x28\x36\x77\xb3\x14\xdc\x05\xb4\x7e\xb7\x55\x73\xa1\x01\x49\xbc\xee\xf9\x41\xc8\xb5\x02\x50\xa8\xd3\x80\xf2\xc9\xc1\x57\x5c\xdb\xb8\x7f\x6d\xd3\xd5\x98\xf3\x28\xc5\x83\x5c\xa8\xa7\xea\x96\xd6\xfb\xcb\xf5\xab\x1a\x6d\xed\x14\x65\xe8\xaf\x57\x29\x0a\xf5\xfd\xf5\xea\xfc\x1b\x8f\xaa\x31\x43\x38\x46\x0d\x5e\xd8\x7f\x08\xeb\x8a\xa8\xe3\xd4\x9a\x8e\x07\x13\x7c\xd6\x14\x51\xfa\x8c\xd7\x07\x8e\xf0\x12\x82\x1e\x73\xe3\xd2\x98\xc4\x7a\xfb\xe3\x29\x89\xfd\x2b\xe5\x8c\xc4\x8a\x95\xb7\xd8\x34\x9c\x3a\x64\x4f\x04\x58\xd7\x53\xa3\x99\x0a\x97\xfa\xcf\x3d\x84\x06\x6f\x87\x28\x22\x4b\xad\xe0\x58\xfa\x68\x32\xad\x88\x2c\x73\x37\x5c\xb3\x01\x27\x64\x30\xc4\x0b\xf2\x6a\x7f\xf1\x83\xad\x7c\x7f\xb1\xb3\x83\x26\xda\xb5\x18\x6a\x5d\x18\xf4\xa7\xb9\x96\x51\x96\x4b\x36\x41\x61\xc1\x94\xf5\x41\x5d\x2d\xe6\x38\xc2\x13\x3c\xc6\x53\x9c\x60\x86\x67\x30\xc1\x06\xf2\xa6\xde\xa0\x91\xcc\x41\x88\x32\x07\xaa\x86\xfd\xb0\x67\xf8\x47\xed\xf4\x5f\x0c\x48\x11\x38\x50\xc2\xef\x6e\x71\xad\x83\x6a\xe4\x4a\x5d\xc1\xdd\x60\x87\x1b\xb1\x72\x83\x77\x4a\x51\x7d\xb6\x87\x5a\x72\xf0\x76\x08\xe1\xea\xde\xc1\x9e\x0b\x50\x98\x7a\x07\x31\x2d\x9d\xc2\xee\x10\x6a\x30\xb4\x80\x8d\x45\xbe\x08\x06\xc3\x21\x5e\xbe\x7d\x91\xd9\xc0\x5a\xc8\x37\x5a\x0d\x8c\x8e\xbf\x50\xb6\xa7\x71\xfd\x7a\xd4\xd7\xe4\x17\x35\xac\xfc\xe0\x57\xd1\xfb\x4d\x64\xf8\xe7\x97\x19\x65\x4a\xf2\x92\xeb\x85\xe9\xd5\xdc\x9a\xff\x85\x67\xa2\xf9\x1b\x8c\x31\xb6\x5e\x77\xd6\x6a\x33\xa9\xa9\xc4\xb9\x10\x14\x04\x74\xbd\xe5\xbf\xf9\x1b\xb7\xbc\x8d\x0f\xf1\x37\xba\x6f\x60\x36\x5f\xe5\xdd\x29\x2e\x1d\xe6\xae\x73\xfe\x76\xfb\x19\xb4\x2f\xf9\x90\x19\xe6\xcf\x12\x5b\x6e\xd5\xdb\xbc\x2b\xed\x6e\x2c\xa0\xf1\xe4\x2d\x11\xea\x66\xb6\xc5\x6d\x45\xae\xfb\x0c\x17\xe7\x73\xe3\x56\x73\x70\x47\x05\xe3\xb6\xab\xdd\xde\xca\x5c\xe5\xbc\xe0\x15\xf6\xf2\x7d\x83\x7f\xf9\x7b\x16\xb4\x92\x3e\xe8\xc5\xd6\x8e\x9a\x19\xaf\xcf\x0f\xa4\x9f\xbe\xcc\x34\x02\x43\xfb\x55\x7b\xb9\x7d\x23\xf0\x6f\xfa\xaf\x5f\x04\xfe\x49\x2b\x2b\x31\x2d\xe6\x9d\x12\x4f\x2e\x80\xa5\x29\xfb\xde\x84\x3d\x04\xa0\x83\xf6\x02\x44\x27\x13\xe0\x68\xa7\xea\xea\xc4\xa9\x08\x8d\xc8\x5f\xa3\x18\x16\x3b\x3b\x19\x5e\x25\xc6\xb8\x86\x70\x8d\x02\x12\xaa\x3a\xd0\x37\x01\xf8\xdb\x56\x87\x7a\x21\xad\x74\x4b\x17\x80\x7f\x02\x84\x3a\x8c\x33\x59\xf8\x08\x6f\x77\xf1\x76\x17\x41\xb2\xa4\x74\x11\xc9\xf1\x4c\xbf\xa6\xb5\x8f\x20\x32\x28\x1b\xab\x67\x21\xf7\x32\xd5\xab\x69\x94\xfc\x59\x60\x09\x1d\x1a\x63\xdc\x1a\x5c\x68\x7d\xe9\x2e\xa8\x78\x97\xcc\x2f\x5f\xa0\x72\xd9\x44\x62\x7a\xfd\xdf\x88\x64\x5e\xbe\x35\x15\x62\x8d\xcc\x4e\xb1\x3e\xa6\xb9\xee\x58\x74\xd4\x74\x83\x35\x6a\xa1\x2e\xf8\x0f\x05\x8f\x95\x16\xb7\x60\xff\xaa\x54\xbb\x1d\xba\xbf\xed\x45\xb4\x34\x28\x84\x99\xfd\xc2\x54\x67\x3f\x32\x3f\x9d\x79\xb8\xfc\x5d\x62\xbf\x33\x4d\xdb\xef\xcc\x4f\x7b\xab\xad\x7c\xc7\xd7\x6b\xb6\x5e\x27\x07\xb4\x84\x20\x01\x54\xc4\xb1\x69\xb6\xc7\xb0\xa9\xa8\x97\x64\xbd\x42\x49\x03\x37\x64\x62\xa4\x1a\xad\x5f\xad\xc8\x76\xd0\x1d\xd7\xb6\x8b\xf9\xf9\x1d\xd5\x77\xd2\x78\xf9\x94\x2b\xf7\xec\x5b\xa9\xad\x7c\x99\x52\x71\x29\x92\x07\x36\xa1\x13\xeb\x1b\x65\xdb\xa9\x7b\x67\x2f\xf3\xb5\x4d\x2e\x89\xce\x52\xc0\xdb\x6d\xbe\x5e\x6f\xef\x39\x88\x07\xbf\xb4\x92\x03\x97\xe8\x01\xa0\x5f\xcd\x8c\x9b\xaa\x1d\x31\x39\x35\xfd\x36\x54\xd5\x6e\xab\x67\x60\xca\xc6\x31\xa6\x08\xeb\x6f\xc2\x9f\x04\x96\x28\xd3\x89\x1e\x8b\x35\xa5\x0d\xa2\xb2\xa9\xc7\x1d\x19\xc5\xe9\xc4\x85\x4a\xb0\xbf\x6a\xf6\xa4\x15\x9c\x74\x31\xe7\xa4\x9b\x6b\xb9\x0a\x29\xb6\xf8\xce\x0e\xa6\xfc\x80\x9a\x20\xd2\x22\x23\xd2\x85\x7a\x2e\xa8\x1f\xa0\xa9\x0c\x99\x6c\xf8\x64\xbb\xab\xae\xea\x0d\x6f\x3d\x83\x50\xe4\x75\x44\xb8\x8e\x54\xd8\xe1\x33\xbd\xa8\x2d\xaf\xbb\x50\xf7\xca\x64\x44\x69\xe4\x46\x86\x17\x5d\xbf\xbf\xbc\xbc\xb8\xba\xb9\x1e\xf5\x3f\xf4\xcf\x6f\x46\x17\x97\x37\x27\x17\xe7\xd7\x84\x9a\x5d\x5d\xcc\x30\xba\xd1\x41\xb6\x41\x68\x71\x91\x6f\xc5\xf4\x4a\x65\x6f\xd3\x82\x5c\xe3\x0b\x28\x52\xd5\xf4\x9c\x4c\x62\x32\x01\xd1\x83\xe2\x71\xd9\xa3\x9b\xc4\x94\x3c\x21\x6d\x48\x4b\xec\x33\x44\x58\x2d\x9a\x23\x47\x4f\x34\xc7\x34\x27\x44\xea\xa8\x10\xd3\xd2\xc6\xdb\x6b\x12\x59\xea\xb2\x1a\x15\x24\xa5\xbc\x25\x6b\x7d\x82\xb6\x94\xb8\x64\x5a\x6b\xd5\x74\xb7\xd8\x7e\xbb\x1d\xea\x24\x95\x26\xdb\xf2\x5f\x1e\xcb\x4b\x85\x24\xd0\xef\x1b\x67\x1a\x25\x75\xa2\x90\xe2\xc1\xea\x9e\x3e\xf5\x82\x71\xb2\x54\xeb\x9f\x06\xf8\x8e\xca\xaa\xbf\xf0\x2a\x9a\x4c\xd2\x9e\xe0\x58\xef\xa7\xb4\xc7\x79\x96\x65\x43\x54\x4a\x4b\xb5\xac\x5d\x76\x70\x6a\x18\xd0\x41\x77\x08\x76\xd9\x6a\xdf\x82\x7f\x07\x3b\x34\x43\x98\x0e\xf6\x86\x5e\xbe\xe3\xb8\x70\x9d\xf6\x6a\xdd\x26\x44\xb4\xdb\x6e\xa5\x0e\x42\x66\xfd\x65\x8c\x22\x9c\x22\xcc\x3a\x8c\x3f\x24\xf7\xf4\x5a\x46\x92\x8d\x5f\xc7\xc9\xf8\x3e\x14\x2e\x12\x11\xa1\x5e\xb1\x40\x28\x10\xc2\xdb\x3a\xdb\xe4\x98\x3f\x83\x01\xf8\xbf\x31\x41\x62\x6d\xb0\xce\x94\xff\x9f\x73\x67\x7a\x09\x3e\x3f\xe5\x77\x8c\xd3\x6a\x22\x00\xd5\x1d\x36\x36\x99\x7b\xff\xf7\x24\x26\x1c\xf3\x86\xd8\x9c\xbc\xb7\x3a\x2f\x33\xc4\xd1\x01\x70\x77\x1f\x7a\x6f\x27\xdc\xc0\xe9\xa3\x96\xe8\xdc\x26\x89\x34\xb7\x73\xb0\x16\x10\xd1\x31\x31\x1d\x6f\x12\x25\x2f\xbb\x64\x90\xc5\x81\xae\xd7\x61\x17\x5f\x77\xee\x14\xef\x07\x67\x57\x5b\xec\x8d\xfe\x18\xa2\x61\x0a\x5f\x80\x3b\xca\x3c\x99\xd0\xf8\x8a\x4e\xf3\xac\x0d\x84\x90\x08\x31\xb2\xd2\xd3\xdb\x13\xd8\x6b\x91\xe7\x51\x43\x08\x43\x12\x4a\x1d\xd0\xc3\x11\x96\xd1\x5d\xaf\x74\x51\x29\x86\x91\x5b\x31\x73\x49\x22\x1f\xfe\xb4\xf5\x7c\x53\x2b\xe8\x64\x2f\xcd\xea\xda\x84\xca\xb0\x1d\x46\x2f\xb2\x7f\x3e\xf4\x96\x0e\x24\x8e\x7d\x75\xda\xc8\x8a\x7e\xe5\x45\xd1\x43\x7a\x3c\x1b\x73\x4b\xa2\x55\xf7\x99\xc0\xa6\x7c\x2e\xe0\x48\xb0\x23\xb4\xb7\x5a\x18\x23\xa4\x17\x6a\xc0\x9e\xf5\x7d\xca\xf2\x2f\xca\xd8\xb3\x10\x95\x14\xc0\xdb\x00\x33\xe4\x39\xc9\xce\xca\xe1\x0e\x05\xb5\xcd\x94\xd7\x79\x76\xba\x65\x90\x99\xe7\x48\x33\xa9\x60\x43\x96\x13\xe1\xcd\xd5\xb9\x10\x60\xb9\x5e\x0f\x86\x58\x0c\x73\x56\x60\x98\x56\xee\xf0\x6a\x60\x16\x07\x3a\x5f\x9e\x05\x66\x36\xe8\xcc\x86\xb3\x2e\x36\x5c\xbf\x5c\xfc\xa8\xba\x50\xc1\x9a\xe6\x36\xb4\x2b\x48\x12\x6f\xd5\x3d\x30\x10\xab\x46\xf2\x30\xee\x20\x28\x1b\x04\xfc\x1c\xf4\x0c\x9e\x1d\x9b\x54\x96\x9b\x04\x24\x9d\xa8\xa6\x5e\xe5\x04\x00\x2f\xc4\xef\x8d\x55\x36\x79\x6b\x2f\x4b\x96\x96\x8a\x27\x0c\x3f\x28\xf5\x92\x10\xff\xd1\x31\x9d\xf6\x2c\x33\x9a\x45\xa9\x89\xf2\xd5\x66\x8a\xc0\xec\xc3\x60\x87\xa3\x83\xb0\x3c\xd8\xd2\x48\x7d\x2c\x1c\xb5\x21\x67\x3c\xe4\x58\x38\x8c\x00\x53\xcc\xf8\x1a\x86\xd5\x59\xaa\x9d\x4c\x93\x6e\xad\x84\x82\xe8\xf9\x88\xd6\x40\xe5\x18\xe1\x7f\xfe\x9c\x94\xeb\xe3\x21\xd2\xfc\x52\x1d\x77\x8e\x99\x90\x4f\x25\x17\x88\x8d\x49\x46\x1b\x20\x1a\x01\x9f\xc8\xdc\x85\x34\x3e\x40\x65\xb5\x7d\x4b\x68\x09\xcc\xb1\x21\x4f\x91\x5f\xcc\xfc\xad\x36\x21\xe3\xde\x18\x8c\xd7\xc1\x44\x8d\xc3\x06\xf7\xe3\x87\xe7\x75\x10\x1a\xa9\x05\xaa\xf6\x48\x5f\x37\x72\x6e\xf6\x83\xa7\x7e\x28\x39\x80\x98\xcd\xa3\xb3\x0c\x7e\x2d\xcd\x17\xbb\x90\xb3\xa5\x3c\xe3\x1c\x3d\xd0\x7f\xf6\xdc\xf0\x6d\xcd\xae\x88\xb4\x45\xe4\xa0\x3a\x02\x5b\xe7\x70\x03\xb8\x66\x79\xe5\x60\x02\x9f\x5e\x3a\x81\x76\xe2\xee\xe9\x93\x3f\x5d\xf4\x39\x6d\x4d\xa1\x33\xb2\x06\x25\xd4\xc4\x8c\x3d\x3f\x7f\x15\x7b\x75\xbb\x4d\x07\xb6\x4f\xc3\x72\x56\xd7\xbb\x67\xd9\xb1\xcd\x03\xfd\x37\xf1\xe3\xdb\x97\x6d\x4d\x8f\x06\x27\x79\xc8\x5d\xce\x2b\x14\xab\xd0\xdb\x37\x7f\xf6\xa2\x89\x6e\x98\xc0\xba\x43\xd7\x4b\xdb\x97\x93\x57\xe5\xa2\x2a\x20\x41\xb7\x3a\xd6\x0b\x05\x45\xed\x8d\xd6\xca\xa5\x15\xb2\xe5\xfa\xca\xb2\x12\x8a\x25\x63\x83\x8b\xcb\x21\xab\x16\xcc\x47\xcf\x26\xe4\x2e\x20\x54\xe7\x12\x92\xf0\x44\x84\x2c\x0b\x8b\x33\x09\x43\x68\xb0\xc2\x93\xc2\xd5\x5b\x8d\x30\x4f\x8a\xe4\x46\xeb\xec\xe0\x5b\x79\xc4\x0d\x58\xcd\xf3\xa4\x37\xbe\x8c\x02\xaf\xbc\xfe\x58\xd8\x32\xb7\x68\x2e\x84\xb9\xb4\xc0\xad\xd2\xda\x3a\x9c\x61\xcf\x6b\xd6\xbb\xa5\xcb\xca\xc1\xf3\x04\x96\x67\x54\x21\x1c\xb9\x61\xc3\x6f\x38\x48\xbc\xec\xc7\x95\x7d\xc2\x73\x98\xd8\xa6\x78\xcf\x02\x5e\x1c\xef\x08\x3a\xa5\x42\xe4\xb1\xb2\x76\x28\x0c\x20\xbd\x5c\x84\x0f\x88\x51\x6c\x1c\x32\x3c\x70\x09\x8d\x07\xc3\x9e\xc4\x4b\x1e\x0a\x94\x6f\xa9\xa1\xda\x53\x7e\xee\xe5\xda\xac\x49\xc9\x17\x76\x33\x69\xec\x66\xd4\x6e\x87\x7d\xa9\xba\x90\x54\x3b\x1b\xe1\x81\xeb\x20\xb8\x96\xaa\xae\xa9\x1e\xf4\x79\x01\x8c\xf5\xb3\xb7\xc3\x20\xde\xdd\xed\xcc\x76\x1b\x30\x60\x75\x28\x7a\xbb\x1d\x58\x63\x4d\xa0\x09\xed\x69\x41\x0f\xa4\xbd\xfc\x18\x9d\x58\x3e\xf6\x6b\x3f\x38\x2c\x81\x60\x75\x2f\x8a\xbd\xa7\xee\xfa\x5e\x84\x43\x31\x39\x9e\x76\xc3\xcc\xd5\x6c\xf4\xc0\xcf\x23\x67\x5f\xc0\x9e\x4c\x17\xd1\x98\x2a\x79\x96\x76\x46\xf4\xf3\x82\x0a\xa6\xee\xb7\x51\x7c\x16\x8d\x45\x92\x92\xbe\xce\x18\x7d\xc8\xc9\x8a\x4d\x7b\x75\x57\x3f\x5f\xd1\x6b\x47\x7e\x62\x15\x24\xa1\x30\x26\x77\xa1\x75\xc0\xfa\xdf\x57\x08\x65\x58\x1b\x88\xeb\xaa\x04\x31\x50\xdb\xf6\x59\x43\xde\x31\xbd\xa2\x94\x8f\x69\x5a\xcd\x31\x6b\x5c\xc3\x5f\xa9\xbb\x58\x18\xf9\x36\x7d\xcc\x4b\xde\x49\xbc\xe8\x9d\xd4\x4b\x00\x3e\x79\x46\x4c\x39\x60\x97\x01\x6a\xb7\x4d\x39\xf3\x1b\x4f\x48\x8a\x27\x2e\x67\x59\xbb\x1d\x2e\xea\x76\xe1\xa4\x41\x51\x93\xa7\xd1\xcc\x50\xee\x5c\x92\x21\x3c\x6b\xb7\xc3\x79\x0d\xdf\x9e\x95\x0f\x40\xa9\x98\x93\xd7\x3c\x1d\x74\x87\x5e\x46\x6a\xf0\x91\x57\x77\x1c\x9a\x21\xbc\x68\xb7\xe7\x07\x35\x9d\x98\x87\x0b\x70\x69\xe9\x2d\xd6\xeb\xf9\x7a\x7d\x6f\x20\x4a\x66\x78\x82\x17\x78\x9e\x43\xc5\xd4\xd8\xa5\xa2\xc1\xdb\xe1\xc1\x8d\x08\x23\x1c\x61\xf5\x37\x9e\x82\xd7\x89\xe7\xaa\xba\x44\x90\xc7\xcb\x7b\x12\x21\xf5\x45\x92\x5f\x93\xdd\x5f\xf9\xd5\x79\x8a\x2a\x29\xb9\x3d\x9d\x55\x55\xce\xd4\x11\x2d\x5e\xe0\xae\x33\xf5\xa0\x62\xc0\x45\xae\xb6\xc9\x32\xbf\x0f\x38\xc2\x53\x84\x06\x3f\x43\x7a\x12\x03\x60\x29\x14\x6d\x0a\x11\x3d\x95\x48\xb3\x2e\x2a\xca\xd1\x63\x86\xf5\x3a\xd6\x7f\xa3\x6a\x4e\x68\x78\x26\xb0\xcc\x3f\x41\x59\x51\x49\xe8\x7f\x70\x2e\xf2\xc0\xd9\xb2\x8d\x06\x57\x2d\x2b\x28\xc3\xb3\x28\x9d\x35\x75\xb8\x84\xd9\x92\xe1\x38\xb9\xdb\xd8\xd1\xd3\x72\x47\xe7\xcb\x72\x47\xf3\x8d\x5a\xee\x9f\x3a\x6b\x43\x41\x38\x6a\xb7\xc5\xe0\x8d\x18\xba\xb3\xd8\x78\xff\x97\xb2\xbb\x3a\x9a\x66\x83\x3f\xc5\x90\x70\xcc\x06\x6f\x87\x84\x0f\x3e\x0d\x31\x53\x9f\xab\x95\x61\x19\x0e\xfe\x58\x52\xf1\xb4\xbb\x00\xcd\x64\xb0\xb1\xf7\xef\xca\xbd\x17\x34\x9a\x24\x3c\x2e\x2f\xa8\x66\x5f\x75\xdb\x53\xf5\x64\xbd\xa6\x59\xcd\xec\x17\xf4\xf6\xa9\xa6\x96\x25\xbf\x4d\x96\x7c\x52\xdf\xa9\x88\x36\x2f\xa5\x67\x9f\x5f\xf2\x98\xa6\xe9\x5f\x65\xb0\xaf\x1c\xa3\x45\x99\xcb\xbf\xbf\x71\xb2\xae\xcb\x93\x15\xec\xd2\x68\x3c\xdb\x65\x7c\xc3\x77\xbf\xd7\x0d\x06\xbe\x05\x20\x93\x5d\x00\x4c\xd9\xd8\xec\x45\xb5\x59\x9e\x88\x79\x14\xb3\x3f\xe9\x4b\xba\x7d\x58\xfd\xfe\x8e\xca\x5d\x23\xbe\xef\x3e\x44\x22\xe8\xcd\x3c\x45\xeb\x87\x28\x57\xc3\xd4\x4e\xb2\x86\x0a\xab\xa3\x67\x38\x83\xbc\x64\x7d\x5a\x97\x84\x0e\x0a\x10\x46\xe6\xa1\x4d\xe7\xe2\x75\x76\x01\x7a\x03\xcc\xa0\x8f\xe6\xe2\xd1\xb0\x97\x68\xc7\xd7\x61\xe7\xdc\x5e\x90\x86\x3c\x9e\x90\xac\x3c\xee\x00\x87\x75\x81\x15\x61\xa0\xae\xcf\x01\xea\xd5\x0c\x05\xb2\x79\x70\x10\x2b\x1f\x78\xc8\xfd\xcb\x37\x16\x7a\x1a\xa3\x34\xa5\x42\xee\x5a\x6f\xdf\x5d\x27\x71\xec\xce\xe0\xfa\xb4\x6b\x79\x69\xd0\xfb\x2c\xf0\x94\x5b\xb9\xa5\x75\xc8\x3b\xd3\x06\x04\x11\xb3\x68\xbf\x97\x16\x0d\x18\xc2\xfd\x73\x97\x27\xad\xce\x4e\xc9\x40\x37\x64\xf0\xba\x93\xdb\xdf\x6f\x12\x0d\x3e\x52\x00\x2e\xd2\xf1\x0a\x4b\x16\xcb\x13\xae\xef\x7b\x29\x39\xe4\xc5\xb8\x6f\xc8\x58\x0d\x5f\xb9\x2f\xc6\x55\xc1\xb1\xae\xd4\x32\x95\xc9\xdc\x38\xc8\xd7\xbc\x2f\x34\xf0\x8e\xc9\xd4\x82\x38\x16\x5e\x9c\xb1\x34\xa5\xee\x55\x5d\xcb\x8a\x4c\xed\x7b\x3d\xeb\x95\x97\x5e\xb6\x92\xa4\xa3\x65\xb5\xfd\xb0\xee\xc6\xc7\x78\xcc\xb8\x49\xbc\x7d\x1b\x27\xe3\xfb\xb4\x05\x6e\x2a\x61\x60\x6f\xc1\x77\x10\xe2\x03\x8f\x8c\x9e\x72\x62\x9f\xa8\xae\x32\x7e\x17\x8e\x20\x84\x08\x8a\xc0\x27\xb1\xfd\x6d\x0b\x3c\xf2\x3c\xa9\x2a\x27\xdd\x7d\xfe\x43\xdf\x61\x91\xf2\x9d\x1d\x14\x76\x71\x9f\x0f\xf8\x10\x41\x62\xe1\x0c\x85\x12\xe5\xc3\x57\x92\xbc\x19\xc9\x69\xf4\x27\x44\xff\xab\x47\x40\xa6\x13\xe3\x5f\x6a\x50\x2a\x51\xad\xc9\xb6\xb0\xea\xd6\x01\x2a\x25\x2b\x23\x62\xae\x8c\x52\x17\x14\xeb\x9f\x04\x06\x9d\xae\x49\xb3\x52\xff\x69\x27\xe1\xa4\xf0\x55\xaa\xe6\xb4\xf0\xe1\x86\xfb\xf8\x4b\xf1\x75\x1e\xf2\x9c\x46\xcd\xa8\x3a\xad\xe2\x55\x56\xe8\x4b\x35\x7c\x64\x41\x91\x44\x1d\xaa\x8f\xd9\x1b\x8d\x2d\x9a\x6d\x65\x23\x26\xb9\xff\xd4\xaa\x33\x37\xdc\xa9\x3c\x40\x73\x75\x37\xb6\x78\xaa\x4d\xd4\xbc\xb3\x83\xb9\x86\xb7\x86\x2e\xd7\x9d\xba\x7e\xaf\x06\x74\xf8\x0c\x6c\xd2\xb3\x23\x19\x55\x30\x94\x5a\xb9\x59\xba\x98\xc4\xc9\x0c\x9a\x17\x46\xc4\xcc\x88\x6a\xf7\xdf\xce\x8e\x8b\xf6\x72\xee\x6d\x2f\x86\x67\xaa\x99\xe3\x02\x44\xd3\xb3\x40\x4a\xde\xd8\x47\x55\xfc\xa4\x56\x4d\x5b\x9a\x42\x8a\x69\xc8\xeb\x2a\x2d\x67\x02\x07\x7e\x65\x11\xd9\x7c\x55\x10\x3f\x08\xf9\x06\xde\x67\xb0\xe0\x38\x42\x3d\x61\x62\x2d\x28\xc2\x9e\x22\xc9\x80\xf9\x59\x68\x2d\xd1\x2b\x30\x83\x6c\x1f\x12\xa4\xa7\x2e\x41\x7a\x02\x79\x08\x89\x13\xa5\x12\x84\x21\x05\x2a\x84\x63\x36\xb2\xd8\x9d\x9d\x2c\x77\xcf\xa9\xf0\xe6\x9d\x1d\xb7\xdc\x79\x08\x4a\x9d\x1b\x43\x49\x9f\xd4\xf2\xf0\xc9\xbc\x53\xc8\xe6\x82\xaa\x28\x6f\x1d\xac\xb6\x23\x54\x03\xbe\x6d\x53\x55\xf8\x95\xe8\x31\x01\xee\x36\xc0\xe1\xbe\x6c\x07\x14\xcf\xbb\x01\x1d\xd6\xe6\xa8\xdf\x12\xad\x1c\xb2\x09\x2c\x24\x58\x07\xe1\x9b\x4b\x52\x4a\x2e\x78\x08\x16\xd3\x65\x4c\xc1\x75\x22\x52\x37\x68\x56\x30\xcf\xea\xed\xd0\x0b\x76\x12\x9c\xa2\xf5\xba\xe9\xa5\x33\xdf\x68\xc5\x85\xbb\x3a\x86\x9c\xa8\xab\xa1\xdd\x86\xe0\xfd\xa3\xa4\x3d\xf7\x47\x87\xa5\x7a\x18\xc6\xac\x7b\x50\x37\xe8\xa5\x33\x63\x54\xa6\x5b\x58\xcf\xab\x03\x4e\x73\x11\xd9\x84\x43\x16\xc4\x8f\x5e\x48\x3b\x9c\x3e\x1a\x10\xfc\xe8\x16\xb6\x09\x66\xf9\x57\x85\xd2\x28\xeb\xd9\x8d\x3e\x7a\x7e\x6f\x42\xac\x4f\xa1\x18\x82\x9b\x2a\xcc\x3a\xec\xa4\x5c\x97\x0a\xe7\x9e\x29\x55\x60\xb1\x90\xe7\xa0\x88\xe9\x4b\x77\x02\x87\xde\xbb\xb5\xd0\xdf\x68\xdc\xfe\xd1\x46\xf6\x53\xa5\x15\x77\xd4\x15\xa8\x25\xdf\x9b\xdc\xd1\x08\x23\xbc\xb0\xc8\x56\x89\xd5\x0b\x76\x28\x2a\x10\x9a\xc3\xe8\xfc\xcc\x43\xa6\x97\x13\x85\x45\x10\xaf\xb7\x02\x52\xc9\x25\x35\xc7\xb8\xcb\xae\xae\xf7\xe3\x08\x52\x2e\x2b\x32\x7c\x93\x88\x73\xab\xa8\xaa\x53\x6a\x63\x97\x7a\x89\x83\xbc\x63\xa2\xa8\x7a\x3d\x97\xb9\x07\xd2\x3a\x73\xd8\x88\x16\x37\x80\xef\xbc\xd2\x1c\x45\xff\xec\x42\x8a\x66\x6d\xe6\x95\x9e\x5e\x4c\x64\xde\xe4\xbe\xf8\x44\xf7\xf7\x90\x3f\x91\x14\x27\xb6\xab\x91\x4f\x23\xae\x62\x14\x72\xcc\xf0\x05\x0f\x05\x4e\x10\x02\x8c\x79\x0d\xa1\x0b\x5e\x05\x39\x90\x59\x9c\xdb\x8f\x96\x07\x69\x6f\x59\x58\xc1\xb8\xc2\xad\xc6\x64\xa3\x90\x0b\xac\x2b\x2e\xae\xe5\xd8\x56\x32\xd6\xa0\x94\xcf\x65\x36\x04\x78\xaf\x4a\xf5\x01\xbe\x06\xe7\x2c\x0d\x10\x50\x68\x20\xb5\x09\x86\xd4\x18\xda\x6d\x93\x25\xc7\x65\xc6\xb9\x38\x3f\xfd\x34\x7a\x7b\x7a\x72\x76\xd6\xbf\x1a\x1d\x5d\x9c\x5d\x5e\x9c\xf7\xcf\x6f\xae\xdb\xed\x70\xa6\xdd\xa1\x45\x98\x22\x7b\xa4\x6c\x43\x15\xf9\xdf\x86\xf6\x56\x3a\x62\x67\x2c\x42\xfb\x44\xf5\x60\xd2\x6e\x7b\x60\xa0\x84\x90\x89\x0e\xd3\x5b\xe9\x98\x9d\x89\x25\xf6\xd6\x8c\x4c\x9c\xf2\x16\x6e\x5a\x52\x84\xf3\x90\x23\x6c\x6a\xc3\xa9\x06\x05\xb8\x15\x21\xc3\x4b\x0c\xaf\xd2\xf5\x9a\x5b\x8f\x9d\xb0\x8b\x1f\x3b\x0b\xc1\x1e\x22\x09\xc8\x2d\xc7\x8a\x8d\xe4\x54\x6e\x04\xba\x99\x1b\xd2\x3b\xa9\xea\x51\x15\x78\xdb\xad\x5c\xc9\xef\xaa\x12\xad\x30\x57\xe3\x9f\x86\x68\xf3\x05\x06\x4e\x94\x18\xcf\x10\x9e\xd5\x51\xf2\x99\x75\x77\x28\x5b\x52\x1a\xee\x3b\x25\xb8\xd6\xa6\x52\x46\x62\xb0\x57\x6b\xeb\xc2\x94\xdf\x25\xad\x6c\x1d\xec\x94\x04\x96\x9a\xca\xb4\x2c\x21\x10\x16\xc6\x72\x79\xc3\xc9\x4a\x33\xe9\x5e\x6d\x48\x86\x97\xfa\xd8\x63\x3d\xf7\xea\x70\x2b\x72\x9c\x5c\xe0\xc8\xf0\x11\x27\x6f\xc2\x15\x9b\xf4\x82\xf1\x6c\xfa\xcb\xf8\xdd\x7f\x7d\x17\x60\xb8\x2f\xf5\xfe\xb5\x0a\xb4\xc7\x54\x1a\xf4\x06\x41\x7b\x62\xc2\x48\x87\x38\x80\xfb\x00\xe8\x15\x83\xde\x60\xb0\xf7\x3d\xde\x1b\x0e\x31\x24\xdc\x7c\x88\xe2\xa0\x37\x8d\xe2\x94\x66\xff\xc2\x73\x2a\xa3\xde\x2a\xe7\x09\xbd\x60\x11\x8d\xef\xa3\x3b\x9a\x7e\x6b\x90\x60\x77\x2d\x9d\xa5\xdf\x5a\x54\x9a\x98\xdd\x7e\x6b\x65\x96\x34\x87\x8a\xed\xcc\x6e\xd3\x20\xcb\x10\x3e\x73\xfd\x3d\xff\xf8\xdb\x9f\xa7\xd7\x27\x27\xf5\xfd\xb5\xa8\xb6\x01\x0e\x6e\xe8\x67\xf9\x06\x30\x8c\x70\xf0\x6f\x0b\xcc\x1c\xe0\xa0\x1d\x41\x2e\xe5\xca\x80\xbe\xc7\xfa\xb6\x37\x18\xbc\xfa\x2f\xec\xed\x19\x3c\xf0\xc0\x91\xb4\x61\x74\x88\x6b\xca\x78\xa0\x49\xa6\x94\xb1\xa2\xae\xaa\x0d\xb1\x29\xb4\xf3\x1d\xee\xe2\x41\x90\x63\xf1\x06\xc3\xa6\x6f\xfe\x03\xab\xd2\x7b\x78\x30\x1c\xe2\xc1\x60\xef\x3b\xfc\x3d\xfc\x11\xfc\xdb\xe8\xf2\xfd\x21\x0e\xf3\xaa\x35\x16\x74\xa0\xca\xbe\xfa\x0e\x7f\xa7\x3e\x57\xff\xe1\x00\x34\x8b\x14\x9c\x37\x7b\x83\x61\xd6\xd0\xde\xab\x7f\xaa\xbd\xca\xa3\x3d\xfc\x6a\x98\xd9\x59\xfb\x47\x68\x0a\x74\x75\x8e\x9e\xae\x1c\x3d\x4d\xa7\x87\xa7\xff\xf1\xee\x38\xae\xa5\xa7\x2a\xd5\xe3\xc1\xab\x57\xd8\x2a\x13\x86\x18\x3a\xf8\x4f\x75\x59\xb7\xe2\xfa\x7c\xc9\x49\xb0\x2b\x93\xc5\x6e\x4c\x1f\x68\x1c\xe0\xdf\x39\xd1\xca\x2f\x7c\xbc\xd1\x45\xca\x05\xdb\x8d\x3c\x5e\x91\xe7\xf5\x34\x50\xfd\xc6\xd7\x41\xc3\xe2\x57\xa0\x03\x5b\xde\x05\x52\xd0\x29\x70\xf0\x39\x0f\x57\xc6\x89\xa3\xb7\x52\x1d\xb1\xca\x31\xac\x2b\xed\xad\xa0\xb2\x9e\xc0\x8c\xcb\xc4\x5a\xe1\x8c\x35\xfc\x77\xae\x6d\xe4\x97\x05\x23\xb8\xcd\x33\xe9\x2c\xe4\x59\x56\xcc\x37\x2b\xe8\xb4\xc7\xdc\x97\x79\x5d\xf5\x36\x75\xd3\x9f\x8c\x1a\xdc\xeb\x3a\x07\x8d\x5a\x87\x58\xf6\xd7\xf3\x36\x30\x0c\x0e\xc5\x65\x2f\x52\x91\x47\x44\x1d\x58\xe1\x3b\x07\x75\xc1\x15\x34\x0e\x2c\x00\xe7\xa8\x52\x10\x20\x5a\x33\x40\xff\xa6\x1d\x41\x93\x05\xe5\x3a\x9e\xd3\x1f\x4f\xa1\xb6\xdc\x1f\xa6\xd2\x29\x4f\x96\xf3\x69\x04\xa4\x39\x4b\x20\x38\xf1\xbc\x05\x5a\x05\xef\x16\x81\x39\x96\x03\xd6\xb9\xf8\x78\xde\xbf\x1a\xe2\xc4\xe8\x3a\x37\x66\x15\x2c\xa4\x6d\x33\xa7\x59\x4b\x92\x0a\x9d\xaa\x23\x18\x92\x79\x55\x5c\xe3\xe8\x81\x0b\x09\x03\x6b\xc9\x35\x8d\xa9\x12\x24\x42\x8a\x7a\x54\x87\xe8\xdb\x0c\x30\xa8\x98\xfe\x25\x1f\x53\x50\x4e\x71\x68\xf3\xc3\x34\x26\x58\x33\x99\x7a\x2f\x3c\xf7\xb3\x8a\x93\x97\xa0\x53\x07\x1a\xd3\x14\x49\xee\x92\xb6\x78\xe9\x15\x8f\x79\x86\x30\x0d\x83\x2a\x7f\x50\xcc\xe4\x5b\x90\xf5\xd5\x51\x43\x3f\x2f\x12\x21\x53\xc5\x84\xeb\x4b\x2a\x36\x02\x20\x2d\x43\x5c\x14\x75\x82\x65\x4a\xb7\xd4\x44\x8e\x65\xd0\x32\xa6\x29\x70\xb2\xa0\x97\xc6\x6c\x1c\x52\xec\xf9\xf5\xaf\x28\x5f\xce\xa9\x00\x4f\xea\xed\x6e\xbd\x9b\xff\x96\xec\xd8\x0f\x14\x97\x6a\xac\x55\x03\xaf\x9c\x01\x76\xcc\x0b\xeb\xcd\x3f\xd9\x58\xf3\x17\xd5\xf9\x6c\x6d\xf3\x2f\xa9\x6d\xfe\x5c\x6d\x0b\x4a\xef\xbf\xa8\x7f\xf6\x83\x8d\xb5\xa6\x54\x7e\x51\xa5\xa6\xfc\xc6\x3a\x9d\x0f\xcd\x8b\x6b\x75\x5f\x64\x80\x9a\xd0\x4c\xb9\x8e\x1e\x0b\xc4\xab\xe3\xef\x6f\xa3\x5b\x75\x98\xd5\x7c\xba\x94\x2c\xf6\x88\x1c\x52\x8c\x94\x28\x5a\x1f\x6e\x05\xaa\xa6\x76\xb0\x64\x8a\xa9\x9b\x4d\x32\xc3\xd4\x23\xa7\xc2\x9e\xb5\xd6\x85\x59\x48\x51\xcb\xe8\x6a\x00\x81\x2e\xcf\x5b\xa5\x78\xa6\xa1\x71\x42\x61\xd1\x09\x05\x4a\x22\x34\x9f\x05\x3f\xdc\x90\xe1\xc4\x9a\x7e\x73\x16\xe8\x55\x62\x53\xe0\xc3\xc9\xe1\x70\x9d\x96\x5c\x2f\xcb\x24\x50\x9c\x21\xaf\x38\x32\x51\x86\x7b\x78\xf9\x8c\xf9\x68\x14\x9b\x80\xb1\xf4\x03\x15\x90\x2c\xcc\x65\x88\xd5\xc7\x13\x9d\xf4\xf9\x24\xcf\x1b\x3b\x8d\x23\xa9\xca\x4f\x6c\x71\x9b\x87\xcb\x38\x43\xfa\x89\x9f\x47\x13\x9a\x8e\x05\x5b\xc8\x44\xa4\xc5\x17\x8f\x91\x1c\xcf\x18\xbf\x2b\x3e\x9d\xb3\xcf\x8c\xa7\xe5\x2a\x16\xa5\x27\xe3\x59\xc4\xf8\x47\x55\x01\x2d\x57\x0b\xaf\x4a\xcf\x64\x74\x57\x79\x50\x2a\x32\x8d\xd5\x23\x9b\xa4\x1c\x7c\x83\xac\xb4\x03\x6b\xe1\x79\xa3\x76\xc6\x09\xb7\xce\xff\xb9\x67\xaa\xf7\x30\x5f\x3d\x5c\x9a\x5f\x53\x4b\x66\x6f\x7d\x95\x93\x0e\x52\x84\x9c\xa8\xcb\x69\x14\xb3\x3f\x4b\xa9\x31\xbc\x9e\xae\xc9\x7f\x65\x58\x74\x96\xfc\x65\xc5\xff\x97\x2e\xae\xae\x76\xf5\x65\xfd\xfb\xe5\x68\x16\xa5\x6f\xe2\xe8\x2e\xfc\x2f\xa4\x3f\x72\xc9\x4d\x2a\xbb\xc0\xff\x4c\x4f\x93\x09\x5b\xd5\x33\x68\xec\x03\x66\x3a\x21\x0d\xb9\xa8\x3b\xd7\xbc\xe0\x40\xd5\xc4\xb1\x4d\x99\x16\x22\x1b\x2a\xad\x77\xa7\xf7\xa2\xf5\xe0\xa7\x2e\x8f\x26\x8a\xed\x1c\xc1\xd2\xab\x77\xce\xa9\xcb\x43\xcc\x86\xcc\x92\x6a\x38\xd7\xd0\x9d\x63\x97\x21\xf4\xd9\x79\xd8\x83\x79\x48\xa9\xdc\xf4\x65\x61\x71\xf6\x6a\x5a\xa2\xcd\x39\xe2\x6c\x43\xaf\x6a\x1b\x2a\x7e\x58\x68\xe7\x95\x6e\xa7\x30\x37\xcf\xb6\xf2\xbd\x6d\xa5\xf1\xb3\x42\x1b\xdf\xab\xd2\xf6\xe3\x9a\xd5\x0f\xbd\xd2\x6d\x8a\xec\x32\x8f\xee\xa8\xbc\x10\x1a\xcd\xff\xe2\x91\x9f\x45\xb5\xfe\x5f\xea\xdb\x01\x1d\x9a\x94\x85\x03\x3a\x2c\xfb\xbe\x2c\xe3\x18\xfc\x53\xca\xf5\x5d\xd7\x7b\x75\x56\xeb\x03\xf0\x3a\x2a\x75\x1d\x53\xc6\x27\x27\x96\xa7\xed\x15\x61\x14\x0b\x69\x5a\xf7\x2d\x4b\xdf\x77\x52\xee\x06\x9b\x81\x24\x36\xe7\x69\x56\x6d\xe6\x55\x49\x73\x94\x03\x55\xf9\x0d\x09\x97\xf8\x55\x94\x1b\xca\x7d\x4f\x07\x72\x58\xd2\x26\xbb\xe8\x26\x01\x01\xfb\x0d\x5d\xf8\xae\x12\x8e\x9b\x1b\xa2\xfd\x4e\xf0\xfd\xbc\x29\x5a\x6e\xca\x28\xae\x59\xb9\x13\xb9\xcf\xe9\x40\x14\xdf\x44\xb6\x7b\x51\x96\x71\xc2\x9b\xfb\x57\x24\x8e\xbf\x38\x49\x15\x5b\xdc\xe6\x89\x9a\x45\xe9\x09\x77\x3d\x29\x92\xd5\xd7\xf5\xa4\xdd\xe6\x45\x1d\xe0\x76\xb7\xe5\xb5\xea\x60\x22\xb0\xe8\x3c\xaa\x46\x8f\xd5\xf1\x56\x5e\xa0\x7c\x71\x6a\x76\x52\x18\xc0\x99\x08\xd9\x52\x61\xa5\xdc\xe1\xc4\xda\xed\x50\x3f\xab\xdd\x48\x58\xad\x1e\x11\xaa\x69\x25\xe4\x54\x5a\x2e\x1a\x4e\x8b\x34\x64\x1b\xc5\xbe\x05\x35\xb7\x89\x1c\x74\x7b\x50\xaf\xba\x7a\x15\xab\xcd\x93\x55\xd8\x29\xaa\xa9\xfe\x55\x5e\x3d\x6c\xd5\x69\x22\xfa\xd1\x78\x76\xc2\x6b\xfa\xe8\x96\x04\x37\x92\xaf\x16\x1a\x9a\x28\x98\x96\x29\xd8\xd6\x18\x6d\x31\xbe\x25\x88\x37\x2a\xc3\x3e\x7a\x02\x27\x48\x67\xe2\x8a\xd0\x7a\x1d\x6a\x4f\x8f\x08\xe1\x64\x10\x0d\x7f\xec\xb6\xdb\x80\x77\x5c\xa6\x72\xb5\xbc\x26\xaa\xa8\x36\xcf\x7a\xe3\xea\x2a\xf9\x24\x80\x79\xb0\x67\xdb\xc6\x2a\x54\xf1\x52\x7b\x0d\x38\x81\x50\x76\x93\x01\x16\x64\x25\xea\x23\xd5\x6a\x43\x6b\xa1\x27\x9b\x3a\xe2\xf7\x03\x5c\x55\xe0\x50\x2e\x27\xca\xf6\x7b\x54\x37\x01\xb1\xfb\x32\xc8\x43\x5a\xd4\xe2\x48\xc5\xda\x15\x79\x0f\x86\x08\x4b\x70\x82\xc8\xbb\xf6\xb2\xf6\xf2\xba\x0b\x54\xe0\x62\x3c\x6c\xad\x76\x14\x47\x05\x61\xb3\xa9\xd6\x82\x48\xba\x71\x86\x8b\xc2\xeb\xc6\xb9\x6e\x68\xba\x34\xeb\x85\x0a\x2b\x3d\x7f\xa6\xcb\x69\x29\xd0\x65\x55\x10\xa3\x65\xa9\x7f\x2d\x8f\x3f\x68\x42\xf7\x5c\x46\x04\x2a\x37\x1d\x82\x01\x61\xf1\x74\x93\x78\x79\xea\xaa\x23\x6c\x1e\x5a\xf1\xc0\x0e\x03\xd3\x2f\xbd\x37\x80\x7b\x7e\xb4\xd7\x88\x22\x8f\x68\x26\x2d\x7b\xef\x08\x90\x22\x23\x69\x79\x61\x4d\x3d\xc5\xd9\xaa\xb0\x2b\x57\x11\xae\xf3\x69\x38\xe8\xf6\xa0\x6e\xf0\x00\xfb\xcc\x78\x55\xe3\x53\x95\x68\xc2\xc0\xdc\x7f\x02\x04\xfc\x45\xb3\xc2\x59\x94\x56\x6b\x28\x4b\x76\xc5\x33\x2c\xaf\xa8\xc8\x4e\xcf\xf4\xed\xaa\x56\xee\xc1\x8d\x27\x9c\xbd\x95\xb5\xfc\x33\x2e\xf4\x02\xf4\xa4\x63\x93\x12\x73\xdb\x56\xe8\xab\x2f\x35\xe4\xa9\x50\xac\x53\xfb\xd1\x09\x75\xf5\x17\x08\x32\x01\x96\x8e\x64\x73\x28\xe6\xd7\xc6\xe2\xca\x86\x95\x7b\xa5\x9f\xd7\xde\x7d\x64\x3c\x6f\x10\x72\x0e\x23\xf9\xa9\x57\x57\xf5\x86\xc5\xb6\x27\xae\xfb\xcc\x5f\x71\x49\x08\x89\x5c\xf4\xa1\x26\xed\x79\xf2\xd0\x30\x00\xb3\xf4\xe5\x21\x86\x14\x52\x76\xb9\x75\x6a\xfa\xf8\x45\x8b\xe5\x75\xf4\xab\x57\x0c\xd4\xff\xb0\x66\x3c\x5f\x33\x8e\xb0\xd0\x11\x41\x54\x07\xfa\xd6\x2c\x5e\x34\x99\xdc\x24\xa7\xee\xbe\x5b\x17\xab\xa0\x99\xc7\x32\x9d\x39\x9c\x1a\xf3\xf2\x60\xaf\xd7\x05\x2f\x60\x3b\x87\x6f\x44\x32\x6f\xaa\xab\xb9\x1e\x7d\x8b\xf2\x5f\xd4\x00\x1c\x6a\x39\xa1\x9c\x15\xe1\xc7\xef\x3d\x1b\x79\x9e\x01\xe1\xfb\x61\xbb\xed\xff\xc2\x09\x71\xcb\x08\xe7\x8e\xed\x23\x64\x74\x5b\x84\x09\xd6\x5d\x54\xbc\x11\x1c\x2b\xa2\x76\x3b\xfa\xa1\xaa\x52\x69\xb7\xc3\xc4\xa6\x99\x8f\xf0\x1e\xaa\xd1\xba\xec\xee\xe2\x88\xec\xee\x21\x0c\x80\xb5\x11\x4a\xb4\x6b\xd4\x0a\xc0\x5b\x72\x74\x58\x89\xe7\x54\xce\x92\x49\x4f\xe0\x7b\xc6\x27\x90\x45\x89\x8f\x7b\x2c\x2b\x24\xf2\x57\xc2\x4a\xeb\x95\xf6\x45\x7c\xb5\x4d\x48\xda\x51\x85\x0f\x0a\x7d\xe8\x85\xfa\x29\xe1\x00\x1e\xce\xc7\x84\xa1\x82\x30\x53\xb3\x20\x65\xa6\x5d\xd2\x0f\xa9\x96\x4c\x3e\x72\x7d\x8c\x38\x48\x30\x91\xc8\xa4\xdd\x86\x29\xaa\x0e\x7d\xbd\x4e\x77\x76\xf4\xb8\x6b\xa7\xae\x46\x45\xd5\xad\x28\x5c\x40\x4c\x28\x3e\x83\x7d\x66\xbb\x58\x3b\x1a\x6b\xdc\xaf\x8c\xe4\x87\xd4\x6a\xfe\x68\xc3\x19\xe8\x19\xd9\xab\x6d\x84\xa8\x24\x71\x14\x8e\xde\x62\x2f\x51\x79\x24\x32\x5f\x49\x51\x2e\xdc\xaa\xce\x05\x04\x3d\x09\xbb\xb2\xdd\x1a\xd2\xaa\x23\x37\xd2\x2d\x3b\x29\x4b\xdf\x47\xd9\xba\x84\x0e\xf8\x70\x1f\x16\x66\x01\x19\x3f\x80\x18\x21\x47\x00\xe0\x5e\xb3\x8e\x26\x46\x04\x3d\x58\x72\x80\x80\x0f\x59\x5d\x7b\x3b\x3b\x28\xcb\xb2\x06\xb5\x62\x9a\x15\xc8\xaa\xb0\x80\x73\x73\xf8\xd6\xb1\x87\x1c\x4f\x1f\x3e\x7c\x76\x1d\x04\x2a\x0e\x59\xd4\x0c\x59\x0c\xf8\xb0\x65\x46\xba\x0d\x49\x65\xe0\x4e\x01\x5b\xa5\xdd\xde\x73\x7f\xaf\xd7\x61\x49\xe8\x03\x0a\xd4\xbb\xb6\x32\x43\x00\x21\xa8\x3f\x44\x45\xf9\x28\xb9\x4d\xa9\x78\xa0\x02\x00\xbd\x9a\x71\xfc\x5e\x40\x63\x45\x60\x6c\xe9\xe3\x62\xdb\x5b\xa6\xba\xb8\xc3\x21\xe1\x0d\x87\x9b\xe1\xc0\x32\x73\x3d\x70\xcf\x73\x6c\x3c\x8b\xf8\x1d\x05\xcc\x99\x5c\x33\xda\x6e\x87\x14\xc6\x4b\xf5\x78\x79\x3e\x28\x0d\x0a\x25\x1b\x40\xa1\xf4\x36\xaa\x40\x42\x79\x1b\x6d\x94\xef\xb4\xbc\x3d\xbb\xd7\xe2\xa2\x8c\x5a\x50\x46\xeb\x50\x71\x02\xb9\x64\xd4\x59\x9d\x68\xef\xf0\x89\x27\x90\xd2\x1c\x60\xca\x28\xe8\x97\xb0\xc7\xe3\xfa\x04\xcf\x78\xec\x87\x53\xe4\x41\xae\x53\x2d\x9f\x8c\x73\x81\xc3\xbd\x9a\x79\xe1\xaf\xd6\x0b\xb6\xfe\xee\xe1\xe1\x98\xc7\x21\x45\xfe\x01\xef\x7f\x10\xda\x8a\x04\xca\x3d\x8d\x34\x3f\x35\x98\x55\xe6\x17\x11\x08\xcb\x96\xaa\x4c\x14\x13\x45\x6b\xc7\xaf\x9a\x40\x4a\xd3\x37\xdf\xa6\x91\x2b\x70\xf3\x7e\xea\x3e\xaa\x89\x58\x7a\x3e\xbd\x53\xed\x6e\x2c\x3c\xe8\x97\x45\x7e\xe8\xda\xb1\x31\x42\x5d\x76\xaf\x7d\xf6\x23\xe9\xee\xb3\xdd\x5d\x7b\x3d\xa7\x03\x06\xd7\xf3\x44\xd3\x9c\xde\x47\x89\xd9\x39\x04\x06\x97\x98\xed\xa3\x28\xd3\xd3\xec\x18\x47\xc6\xcc\x18\x5b\x26\x9b\xcc\x4b\xf1\x0b\xcc\x4a\x8b\x24\x7e\x9a\xb2\x38\x6e\x36\x9a\x96\x0d\x4d\x2f\xb0\x48\x89\x25\x8f\x93\x64\xa1\x1e\x58\x07\x0e\x17\xa8\x5b\xfb\xbd\x67\xd7\xce\xdf\x53\x21\x12\x61\xfb\xfd\xed\x83\x66\x98\x7e\x6f\x16\x82\x8e\x23\x49\x27\xbb\x53\x1a\xc9\xa5\xa0\xf5\x63\x00\x5f\x8b\x1a\xf3\x58\x9e\xa2\x02\xc7\x80\xbf\x3d\xab\x18\xcc\x6c\xf2\x6f\x92\x48\x4c\x21\x86\xd5\xfc\xae\xf5\xea\x7f\x9d\x24\x31\x8d\x78\x78\x6b\xdd\xf7\xa9\x86\xd4\x1a\xcf\xa8\xba\xaa\xcf\xbd\xdf\x93\x0f\x51\xbc\x84\xa7\x0f\xc6\x16\xe7\x8a\x3d\x61\xda\x89\x62\x16\xd5\x6a\x97\x5e\x53\x88\x86\x89\xc1\x8f\x7e\x09\x59\x31\x3b\x6e\x1e\xac\xcd\xb2\x46\x12\x2c\xf8\x6f\x64\x4d\x96\x4e\x89\x57\xe3\x84\x4f\xd9\xdd\xd2\x59\x38\x7d\x7b\xe7\x1e\x4e\x0b\x81\xaa\x68\xc5\x42\x84\xa5\xd4\x0e\x14\x80\x11\xdf\x60\x11\x55\xe5\x7e\x31\x60\x1f\x02\x65\x19\xf4\x5b\x5d\x0d\x21\xb5\xd0\xaf\x54\xcf\x0c\xf9\xc5\xfc\xf1\x91\xc9\x99\x49\x35\xd0\xa0\x33\xfc\x85\xba\x50\x8e\x3c\x16\x21\xd7\x55\x5b\x1e\xa0\x9a\x49\xa9\x24\x52\x2d\x9f\x14\x4f\x65\xcd\x67\x9e\xf6\x69\x4b\x4a\x33\x5b\xdb\x5d\xe8\x9d\x76\x58\x3f\x94\x64\x42\xc1\x8f\x64\x11\x17\xdd\x8e\xfd\xde\x54\x24\xec\xef\x6a\x25\xec\xef\x86\x07\xfe\x8f\xde\x8c\xb6\x20\xaf\x47\x87\xa5\x36\x93\xdd\xc1\x3c\x77\x4d\xea\xb9\x66\x0d\x5c\x66\x96\x77\xe4\x84\x9f\x47\x92\x3d\x50\xf8\x8e\x00\xba\x61\x34\x99\xc0\xaf\x0b\x73\xa8\x36\x0d\xf4\xc1\xb6\x70\x8c\x01\xb9\xd1\xa2\x7a\x7e\xd9\xc7\xe7\x76\x9e\x20\x44\x1a\x32\xfa\x72\xf9\x91\xc5\xf1\x11\x9c\x99\x64\x4c\x4b\xef\x8e\xd9\xc4\xbc\x9a\xaa\x57\x34\x1a\xcf\x20\x83\x2c\x90\x7c\xe1\x09\x74\xc4\xab\x6a\x59\x7d\x9b\x57\x16\x9b\xa1\xbb\x5b\xd0\x31\x06\xe7\xd4\xfa\x1b\x95\xe7\x97\xcf\x9d\x05\x1c\x79\x87\x81\x87\x6e\xb2\xbd\xe7\x52\xc3\x57\xe4\xb0\xb0\xac\x1c\xd6\x50\x17\xcc\xc5\xe2\x03\x05\x15\x7d\xcf\xfe\xc6\x64\x86\x3a\x3c\x75\xa1\x41\xd1\xf3\x14\x51\x89\xa2\x75\xd7\x47\xf0\x21\x47\x98\xe7\x2b\xec\xe6\xe8\x1c\xb6\x05\xd7\x40\xaa\xe4\x04\x58\xdb\x79\xc2\x6b\xc3\xb1\x4c\xe4\x4b\x06\x85\xfa\xf3\x85\x7c\x22\x33\xcd\x0c\x5f\xc7\x11\xbf\x27\x13\xd9\xa2\x60\x3e\xa5\xa9\xaa\xac\x5a\xc3\xf6\x44\x1a\x67\xac\x5b\x7a\xc7\xb8\x65\x37\x7a\xfd\x52\x22\x01\x99\x13\x7e\x98\x57\x8c\xa6\x84\xc3\x9a\xf3\x49\xb9\xb4\x50\xcf\x79\x22\xd9\xf4\xa9\xf8\x8a\xfc\xaa\x66\xfc\x81\x0a\xc1\x26\x56\xdf\x46\x29\x70\x47\x9f\xc9\x11\x46\xf5\x40\x34\x86\x64\xae\x82\x20\x27\x50\x33\x6c\x2a\xf5\xf4\x98\x8e\x13\x11\xa9\x17\x7f\xea\x5a\x6c\xc1\x37\x89\xc8\xdf\x8d\xca\xaf\x5c\x3b\xb7\xfa\xbc\x50\x22\x20\xf3\x2a\x7b\xd4\x0c\xa9\xf2\xbc\x8f\x69\x07\x54\x6d\x3f\xd3\x27\x92\xa8\x16\x97\xdc\xfd\x8e\xd4\xef\x29\xe3\x2c\x9d\x35\x2a\x3b\x69\xbd\x3a\xd5\xb7\x13\x83\x94\x23\xa8\x05\xd0\x3b\x8c\xe3\x82\x15\xb9\x62\x61\x6e\xb7\x69\x59\xd3\x79\x4d\x3d\x86\xe1\x37\x44\x0e\x0d\xeb\x86\x87\x37\xd1\x5d\xfa\x26\x11\xaa\xef\xbf\x51\x3b\x32\x60\xf5\x57\xde\xd0\xe0\xc1\xa5\x5e\x8f\x06\x05\xa7\xa1\xc1\x63\xcd\xed\xf5\xb6\x32\x5f\x93\x73\x57\x33\xf9\xdd\xfd\x49\x85\x8e\x8b\x3d\x36\xdd\xf1\x48\xaa\x8e\x0f\xac\x32\xec\x71\x6f\xcc\xc8\x1e\x68\x0e\xca\x3b\xb4\xdd\x2e\xf2\x69\x89\xc0\x02\xd5\xf5\x3f\x1e\xec\x0d\xf5\xad\x72\x9f\xfd\xe0\x42\x5e\xd9\xce\x0e\x12\x03\x3e\x60\xc3\xa1\x3e\xb2\xd4\x9f\xc8\x8b\x37\x03\x6a\x68\xec\xa4\x87\x56\xb4\x5e\xdb\x10\x2a\x97\xf4\xc6\x93\xa7\x9d\xd3\x61\x58\xc3\x71\x04\xe6\x56\xc6\xbf\xa7\x4f\x8a\x77\x61\xa6\xa4\xd1\x52\x37\x89\xea\x1b\x86\x63\x50\x60\xc5\x77\x50\x06\x8a\x7a\xda\xa1\x9f\x17\x91\xdb\x8a\xaa\x97\x54\x6a\xa6\xeb\x4e\x8b\x77\x58\x27\xfa\x78\x88\x24\x75\x0f\xdf\x3b\x4a\x71\x8f\x5e\xb7\x68\x67\x1a\x2f\xd3\xd9\x61\xfa\xc4\xc7\xf6\x71\x59\x2d\xf1\x91\x10\x92\x76\x8e\xde\x5f\x5d\xf5\x35\xc2\xa6\xc3\x47\xd0\xe3\x6c\x7d\xac\x7f\x8d\xff\xac\x2a\xf9\x9a\x99\xbe\x62\xe1\x70\x77\xaf\x3a\x4b\x84\x68\xbd\xae\xb8\x1c\x84\x08\x1d\xfc\x69\x3c\xa5\x42\xa9\x4e\xe7\x9a\xc6\x04\x5a\xd1\x22\x4c\x25\x05\xcc\xa7\x2b\xfa\xc0\x94\xf4\xaa\xe1\x4b\x23\xdf\xff\xd2\x64\xc7\x2d\xa4\x06\x90\xe2\x69\x75\x02\xa7\xfe\x40\x4d\xf5\x22\x92\xb3\x21\xca\xa6\x8c\x47\x71\xfc\xa4\x5b\x20\xbf\x29\xb1\x40\xbf\x53\x77\x51\xbf\x15\x42\x7d\xf0\x4b\xf0\x41\xd3\x22\xd7\xbc\xa2\x62\xcf\x3d\x02\x2a\xc7\x92\xf0\x33\x8f\xfd\xb8\x77\x20\x77\xf7\x7a\x90\xce\x79\x6f\x9f\xff\x20\x41\x6f\x20\x06\x7c\x77\xcf\x3f\xa0\xb8\xc3\x50\x3b\x35\x41\x99\x54\x0b\x53\x65\xb1\xe2\x6f\x3e\x10\x31\x53\x92\xbc\x3d\x16\x5b\x35\x58\x35\xe9\x41\xc8\x89\xda\xe2\x12\x47\x64\x7b\xa9\xc3\x8c\x8e\xfb\x6f\x0e\xdf\x9f\xde\x8c\x0e\xaf\x3f\x9d\x1f\x8d\x2e\x5e\x5f\xf7\xaf\x3e\xf4\xaf\xae\x51\x4f\x95\xed\x4c\x39\x66\x24\x55\xf2\x35\xe5\x13\xca\xe5\xcf\xf4\x29\xc5\x11\xd1\x1a\xc3\x5c\x85\x14\x93\xc1\x10\x8f\xeb\xce\xce\xd8\x86\x78\x66\x78\x4a\xba\xfb\xd3\x1f\xac\x80\xb0\xbf\xb3\x33\x45\x54\x86\x6c\x30\x1d\xe2\x31\x2a\x1d\xe1\x6e\x5f\xa8\x23\x7c\xa5\x16\x38\xed\xc5\x5a\xd7\x19\x65\xe6\x44\x07\xd7\x6b\x6d\x31\x39\x85\xe3\x98\xab\x0d\xfe\x0f\x2f\xad\xf1\xdf\xc3\x11\x39\x81\x20\xc9\x34\x37\x0a\x88\x41\x77\xd8\x8a\xd6\x6b\x31\xd8\x1b\x1a\x18\xfe\xaa\x13\x35\x40\x9a\xdd\xb9\x68\x5e\x99\x27\xeb\x04\x48\xb5\x88\x71\x2a\x72\x27\x31\x13\x2d\x44\x77\x82\x5e\xb0\x13\xa6\xeb\xb5\x44\xd8\x22\x5a\x31\x2f\x36\x2f\xc9\x50\xd6\xea\x1a\x65\x46\x22\xc3\x95\xba\x83\x2c\x4b\x77\x15\x60\xa7\xe6\x06\x42\x75\x24\x89\x54\x3b\xc3\x36\x17\x1d\xc4\xa1\x1a\x03\x56\x03\xc0\x62\xf0\x6a\x88\x7a\xb1\x9a\x68\x19\xdd\xf9\xe7\xfa\x91\x7b\x44\xce\xd4\x86\x8a\xc4\xbd\xe6\xad\x87\x29\xe0\x6b\x92\x2b\xac\xdd\xe4\x96\x73\x4a\xde\x52\xb8\x76\x44\xe3\x7b\x3a\x21\x1f\xdd\x0f\xf2\xc9\x08\xad\xf5\xe1\x8c\x77\xb2\xb3\xe4\x0b\x91\x8c\x69\x9a\xd2\xbc\x4c\x4a\xb6\xbb\x78\x24\x73\x92\xa2\x3a\xfc\xec\xc6\xa4\x78\x26\x17\x52\x8b\x09\x0d\xd5\x3e\xc9\xf5\xfa\x3a\x87\x87\xde\x7a\xd4\x26\xe0\xd2\x27\x29\xe9\x03\x57\xd1\xcd\xe7\x35\x7d\xf6\x9e\x1e\xc6\xb1\x57\xfe\x5a\x3a\x3e\xbf\x29\x3c\x13\x88\xfb\x4e\xc3\x55\x82\xc4\x6d\xd2\x4d\x3e\xca\x81\x1c\xaa\x71\x19\x25\xee\x28\x57\xc0\x51\x04\xe6\x82\x2d\xc6\xb7\x96\x40\x20\xf4\xb3\x0d\x88\x6f\xb7\x29\x81\x00\xbf\xc2\xd3\x81\x1c\xb6\xdb\x61\xcd\x53\x63\x13\x42\x5a\x8a\x75\xdd\xbc\xa6\x91\x18\xcf\x8e\x59\xaa\x44\x9c\x3a\x9f\xb2\x27\x69\x8e\xe8\x67\x3f\x81\x09\x26\x56\x03\xa0\x97\xe7\xfc\xf0\xac\x7f\x7d\x79\x78\xd4\xbf\x1e\xbd\xfe\x34\x3a\x39\x26\xfe\x23\x42\x3b\x37\x40\x19\x90\x31\x08\xc0\x56\xce\x13\xa9\x41\x94\xe9\x84\xd0\x1c\x52\x59\x89\x66\x4b\x7e\xc2\x6f\x44\xc4\x53\x7d\x5a\x10\x8b\x8a\x0f\x5e\xb6\x3f\x9f\x5f\x7c\x3c\x1f\x5d\x5e\x5d\x5c\xf6\xaf\x6e\x3e\xa9\x13\x91\xd0\xce\x71\xff\xf5\xfb\xb7\xa3\x93\xf3\x9f\xfa\x47\x37\x27\x17\xe7\xa3\x37\xef\xcf\x8f\x4c\xbe\x03\xad\x5e\x38\xd3\xda\x25\xda\xd1\x5c\x84\x76\x4e\xd9\xad\x88\x04\x9c\xef\x9d\xd8\xfb\x1b\x44\xba\xf3\x64\xa2\x1a\x73\x8d\x1c\x9f\x1c\x8f\x8e\xde\x1d\x9e\xbf\xed\xeb\xa7\xbf\x7e\x1a\x1d\x5d\x9c\xdf\xf4\xcf\x6f\xd4\x17\x46\x4d\xe2\x76\x8d\xba\xec\xc7\xc9\x6d\x14\xe7\x1a\x14\xcf\x25\x78\x82\x17\xf5\xca\xc6\x79\x4e\x3e\x8b\xcd\x71\xf5\x16\x82\x60\x51\x88\x9c\x77\x15\x3d\xf8\x72\xc0\xa2\x4e\x39\x99\x3b\xba\xd9\xcc\xd9\xee\xe3\x27\x8f\xa3\xdb\x6f\x41\xb3\x78\x57\xdf\xeb\x5b\x5f\x39\xc0\x7c\x3f\x9b\xca\xb5\xb3\x27\x3c\x2d\x64\xee\xbf\x55\xb6\xe0\x16\xba\x33\xf2\xba\x73\x67\xbb\xe3\xde\x3e\x96\xae\x6e\xdb\x84\xb6\xdb\x77\x60\xe4\xf4\x8b\xf5\xff\xff\xd4\xbd\x6b\x7b\xe3\xc6\x95\x27\xfe\x9e\x9f\x42\xc4\xe4\x41\x50\xcb\x12\x9b\x72\x66\x66\x77\xa9\x2e\x73\xe5\x76\x7b\xe2\xc4\x7d\x49\x77\xdb\x49\x86\xe1\x72\x20\xb2\x28\x56\x1a\x02\xe8\x42\x41\xdd\xb2\x88\xef\xfe\x7f\xea\xd4\x1d\x28\x52\x54\xc7\xd9\x79\xfe\x7e\xe1\x16\x81\x42\xdd\xeb\xd4\xb9\xfe\x8e\x9b\xd9\x61\xd6\x53\x5f\x5c\x44\xd5\x17\x17\x0b\xb4\xdf\xfb\x3f\x07\x37\x4e\x0b\x2c\xeb\xfa\xac\xc1\x5b\x40\x95\x95\x5d\xd0\xdf\xe1\xc8\x9d\x48\x83\xf4\xe5\xad\x87\x43\xf9\xde\x4b\x61\xd0\x0b\x69\xd1\x06\xb4\xcf\xfe\xfc\xbf\xc1\x57\xf8\xa3\x22\x2c\xd6\x51\x3c\x76\x1a\xfc\x74\xc0\x1f\xdc\xe1\xae\x0f\x20\x22\xdb\xb2\x2f\xc2\x85\x34\x5d\x91\x4b\xe6\xe7\xa0\x04\x7f\x34\xc7\x9d\x13\xb6\xdf\x5b\xfc\x51\x64\xdb\xf2\x11\xe3\xb5\x8b\x7b\x77\x67\xdc\x06\xbb\x02\xc6\x05\x7e\xc9\x9f\xef\xe5\x53\x53\xd5\x2b\xb0\xa3\xeb\x3b\x36\x0f\xdc\xaf\x20\x51\x69\x33\x17\x96\x09\x2b\xf6\xfb\x4c\xfe\x26\x1f\x32\xe4\x0d\xec\x95\x15\x2f\xba\xb8\x0c\x72\xa2\x43\x23\x1f\xf7\xed\xe9\x61\x37\x85\x86\x65\xef\x33\xca\xf6\x2c\x79\xbd\xcb\x3e\x58\xdd\x7c\x38\x1b\xae\x5f\xef\x8e\x9f\x1c\x37\x3f\x80\xee\xe8\xf9\x6a\xf9\x82\x6c\x9d\xa6\xbd\xb9\x9b\xe9\xf4\xe6\xe3\x0d\xe3\xb5\x08\x71\xa4\xa7\x75\xf8\xdb\x4c\x6d\xd0\x80\x9a\x5a\x17\x59\x3e\x93\xb3\x6a\x50\xbe\xec\xe3\x22\x4d\xdf\x64\x85\x07\x70\xe2\x07\xb7\x17\xfb\x7d\x3e\xbe\xce\x57\x1f\xaf\x1b\x2e\x9b\xa3\x65\xdd\x70\x97\x18\x01\xb5\x07\x48\xf9\x47\x6c\x89\xfd\x15\x7e\x13\xdc\x38\xb4\x83\x88\x0d\x3d\x7f\x4b\xac\xe1\xca\x6d\xfb\xbf\xfb\x27\x70\xf4\xd6\x4d\xf9\xb7\x5a\x9f\xe7\xc1\xaa\x46\x08\xc2\xbf\x45\x09\xc2\xbf\x85\x04\xe1\xdf\x16\x03\xb6\xdf\xc7\xb2\xb3\xee\xf7\x19\x23\x5c\x72\x9d\x00\x97\x1c\x2c\x66\xc7\x99\x22\x53\x9d\x19\xca\x19\xab\x70\xee\x6d\xda\xd7\xa6\xa7\x36\x17\xe8\xa0\xb7\x7b\xf9\x2c\xab\x08\xc7\x39\x61\x68\x9a\x55\x0a\x3f\x39\x27\xbc\xdb\x64\xc4\xf1\x22\x13\x38\x6c\xee\x7b\x7f\x62\x7c\x35\x33\x33\xf3\x64\x9f\x54\x11\xc2\x5e\x0d\x18\xe9\x75\x2f\xb7\x87\x2b\x9f\xe5\x51\xad\xa2\x09\xcc\x0c\x1a\xdc\xef\xe1\x1f\x93\x6c\xc5\xaa\x27\x0d\x83\x5f\xdb\x77\xe7\xbf\xbb\xac\xbf\x26\x93\xcb\xfa\x9c\xfc\x4e\x75\xb3\x21\x6c\x5e\x2f\x70\x21\xff\x19\x5d\x48\x39\x45\xfe\xf1\xd5\x62\x50\xa4\x69\xb6\x4a\x53\x35\xab\x0d\x2e\x10\x6e\x24\xb1\x20\x14\xe1\x1e\xf5\x95\x65\x25\x61\x29\x16\x08\x17\x3a\xea\xb3\x01\xdf\x18\xe3\xfb\x0b\xf4\xf8\x87\xc7\xe4\x2a\xfc\x9d\xbd\xa8\x7f\x31\x7f\x79\x99\xda\xbf\xd8\x71\x65\xe6\xff\x98\xfe\x80\x2b\xf2\x77\x29\xde\xcb\xbd\x5d\x81\xa5\x67\x78\x81\x19\xc2\x7f\xa7\x1d\x8b\xe5\x37\xae\xc5\x2f\x74\x92\xd1\x2a\x62\x68\xee\xb5\xaa\x1e\xbf\x06\x68\x13\x50\xd8\xdb\x96\x7e\x8c\x43\x4d\xba\x67\x43\x45\x60\xbf\x9b\xfe\xe2\x04\x20\x75\x69\xef\xf7\x5c\x5f\xb3\xc6\xdb\x0b\x73\x73\x0b\xca\xab\xa0\xdb\xf1\xaf\xa2\x1d\xff\x2a\xe8\xf8\x57\x0b\x05\x3e\x63\x5d\xb8\x35\xd3\xa3\xc2\xb0\x46\x23\xe7\x85\x51\x12\xc5\x99\x8b\x2c\x99\x26\x48\x0a\x48\x8c\xfc\x27\x68\xb2\xd0\x80\x6b\x48\x86\x07\xf8\x6a\x7a\x81\xa5\xa8\x3a\x2d\x21\x5d\x09\xc3\xbe\x42\x62\x6a\x13\x67\xe3\xba\xa9\x41\x9c\x5e\x4f\x87\x17\x2d\x52\xf8\x69\x7f\xd6\x38\x76\x3f\xe3\x9f\xf0\x5f\xf1\x7f\x1c\x88\xe4\xd2\xce\x50\xf9\x7a\x4d\xd7\x21\xe6\xd4\xcf\x0d\x6d\x28\x99\x2f\x8e\x81\xb1\xe5\xeb\xf5\x31\xff\x73\xa8\xd5\x30\x86\xce\xa4\x94\xa6\x1a\xdf\xea\x3d\x35\x89\xea\xa1\xa0\x5e\x10\x84\xb0\x71\x83\x37\xfe\x79\xd0\x17\x2d\xa4\x41\x2b\xb8\x04\xbf\x32\x8d\xe7\x05\xda\xaf\x03\x20\xf7\xf0\xe9\xc0\x6b\x65\x55\xd0\x9c\x1b\x64\x0f\x33\xc8\x81\x93\xeb\x27\x97\xe2\x39\x75\x79\xde\xcd\x99\xe7\x84\x4a\x99\xaa\x94\xff\xc8\x33\xcf\xe0\x8f\xaf\x16\x03\x79\x55\x3b\x2d\x97\xd2\x71\xd9\x6b\x7b\xbf\xff\x3e\x93\xe4\x6e\xce\x71\xb9\x40\xad\x0d\xc3\xed\xc9\x1e\x3f\x63\x5f\x38\xf9\x09\xc7\xc4\x97\xbf\xe2\xd8\x87\x71\xed\xae\xec\x6c\x86\xf0\xf0\x42\xdd\x5f\x7f\xec\x70\x74\x11\x91\x03\x82\x00\x63\xa2\xc8\x1f\xa1\x86\xdf\xc0\x8a\xfd\x07\xfe\x93\x9f\x21\xef\x2f\x5f\xc2\x95\x2b\xea\x3b\x64\x9d\xa0\xb2\x0c\xa5\x29\x3c\x0c\x82\xc6\x24\x8f\xa6\xcd\xfb\x4a\x04\x60\x1e\x57\x52\xa5\x69\x44\x29\x55\xc9\x89\x54\x06\x8c\x34\xf5\x7e\x28\x42\xe2\x30\xd4\x59\xe0\xbd\x9b\x09\x04\x8e\x4f\xdd\xed\x0c\x27\x3a\xae\xcd\x1c\xda\x98\x05\x17\xb1\xa1\x4d\x49\x7f\x18\xc8\x5d\xfe\x07\x32\xbc\x40\x97\x59\xcc\x95\x51\xdf\xb6\x2e\xe8\xc4\xe5\x4f\x4a\xd3\x2c\xb7\xc7\xa3\xd4\xe4\x20\x47\x08\xe7\xd6\x15\x96\x85\x51\x0e\x19\xc7\xbe\xcb\xac\xf3\xf5\x90\x93\xa6\xae\x77\x24\xa7\x62\x69\xe9\x84\xd2\x7e\x53\xfd\xb2\x45\x2d\xca\xfe\x02\xae\x87\xff\x09\x87\x2b\x4d\xb3\xff\xb4\x07\xe5\x0f\x64\x38\x01\xaa\x28\x27\x1f\xc7\x8f\xfb\x01\xc7\x73\x9f\x85\x84\xe8\x16\x65\x65\xca\x04\x1e\x4e\xf0\x5f\x50\x9b\x4d\xe2\x95\x1e\x9c\xf4\x70\x96\xe1\x86\xf8\xd3\xd7\x93\xd9\x6f\x94\xd3\x33\x16\xb8\x44\x53\xc9\x64\x94\x78\x4e\xb1\x58\xd8\x6e\xfb\xeb\xfe\xce\x0c\xe5\x8f\x67\x4c\xa7\xbb\xf8\xe3\x42\x4a\x83\x40\xe9\xfe\xd3\x52\x41\x39\x6e\xb7\xd5\x29\xfd\xb2\x11\x3b\xdb\x50\x20\x70\x4a\xa1\xe8\xe1\x4f\xa3\x91\x7b\xc2\xe5\x93\xf3\xf3\x3f\x3d\x27\x93\x34\xfd\x8d\xa2\x69\xbe\xe0\x54\xaa\xb0\x5b\x9a\xa1\x81\xe0\xf7\x0f\x20\x54\x69\xdd\x35\x00\x4f\xbb\x92\x8c\x06\xfc\xa7\xe5\xa8\xd2\x34\xab\x48\xc0\xb4\x21\x2d\x34\x55\xfd\xa3\x80\x6b\x7d\xe0\x2a\x84\x1b\xc7\xa4\xd7\x83\x26\x4d\xeb\xb1\xa0\x39\x5f\x57\x3a\x83\x40\xa5\xaa\x01\x7f\x0f\x39\x67\x6c\x93\x51\x42\x88\x32\xef\xd8\x5b\x43\x9e\x2d\x79\x1e\xf0\xa7\x8c\x23\xb4\x22\xca\xe9\xd6\xc0\x74\x1c\x8e\x14\x17\x78\x25\xc5\x04\xae\xb2\x81\x5a\x1a\xc2\xd1\x43\x41\x00\xd2\x09\x32\x93\x6e\x66\x5f\xe6\x7f\xb1\xc1\x46\x9a\x92\x2f\xe0\x3e\x9d\x16\x2d\x9a\x4a\xfa\x49\x98\x82\x38\x2c\x08\x3f\xd2\x3b\x8e\x06\x79\x9a\x52\xf0\x94\x94\xe3\x88\x50\x24\x20\xed\xdf\x06\x9f\x42\x78\x69\xf7\x21\xd4\x57\x78\x6b\x5e\xd1\x93\x85\xb7\x8a\xf4\xe8\x99\x5c\x08\x16\xc6\x3a\x48\x8e\x7c\x74\x81\x30\xec\x07\xc3\x73\xf7\x09\x6b\xee\xb3\x3b\xe3\x4f\xac\x28\xa0\x82\x34\xf5\x7e\x98\x53\x14\x1d\xaf\x2d\xe5\x8f\xb7\xf7\x10\x0e\x9d\x1d\x6c\xfe\xc8\x60\x0f\xeb\x78\xf4\xc5\xd1\x89\x7d\xcd\xec\xcd\x11\x9d\x99\x0b\x35\x05\xfd\x09\x9a\x98\x53\x61\xe6\x05\xd7\x6e\xff\xe7\x83\x3a\x98\x9b\x35\x5b\xff\xa8\x6c\xa7\x72\x72\xdc\xaf\xa3\xb3\xe3\x8a\x75\xb6\x43\xe7\xa9\x9c\x1f\xd8\x81\xd5\xd7\x17\xf2\xbe\xea\x2d\xe5\xf9\x85\xa6\x5a\x35\x8d\xab\xcd\x1a\xda\xe5\xff\x6b\x1a\x32\x64\xe6\x2e\xcc\x43\x07\x11\xfb\x99\x97\xeb\xf2\x69\x75\x7d\xeb\xdf\xbb\x9d\xaa\x56\x5e\x55\xfd\xf8\x97\x4c\x90\x89\x94\x6b\xc9\xf9\x05\x9a\x7a\xe0\x89\x69\x9a\x71\xf0\x68\xef\xb0\x92\xe7\x17\x08\x61\x6f\xa4\x58\xde\x00\xc9\xff\x51\x79\x06\xae\xe9\xa6\xe2\x34\x81\xfb\x00\x03\x17\x86\xa9\xeb\xc8\x86\x7a\x02\x70\xaf\x07\xec\xf1\x1e\xa8\xb0\x49\xd9\x83\x81\xda\x6b\xbd\xad\x7a\x99\xb1\xe7\x93\xfd\x9e\xcb\xff\xb1\x73\x3e\x24\x13\x94\xa6\x92\x71\x4a\x14\x8f\x99\x48\xa2\x01\xbf\xe7\x0b\xf8\xbb\x70\x7d\x0a\x46\xa2\xf5\x0f\x66\x24\x6c\x61\xf6\xe9\x7d\x57\xef\x9a\x23\xed\xb6\x0f\x2e\xb8\x10\x60\x89\x1b\xe7\x39\x99\x65\xf0\x9c\xcd\x26\x53\x86\xce\x6b\x49\x5d\xc5\xf3\xc9\xac\x19\x09\xa5\x7d\x52\x7c\x46\x02\x6a\x1d\x45\xf7\x12\x94\xa6\xa0\x6e\xd1\x3d\xf7\x5f\xc9\x2e\xeb\x2f\xa4\x74\x62\x3e\x40\xcd\xf9\xc5\xf3\x62\x54\x9b\xb1\xe6\xfe\x07\xce\x7f\x56\xf6\x73\x4b\x8d\x29\x7d\xc3\x29\xfd\x85\x66\xf3\x85\xa7\x5c\x5c\xd3\x80\xb1\xed\x39\x77\x49\x4a\x3d\x75\xae\x65\x99\xd6\x9b\xee\x28\xf9\x77\xfa\xaf\x9e\xda\xdb\xdb\x72\x6c\x93\xb9\x1d\x68\x34\x00\xf6\xaf\xe7\x64\x47\x11\xd5\xa6\x13\x2d\x98\x53\x3c\x17\x98\x2f\x4c\x42\x91\x12\xe9\xe8\x08\x53\x0c\x30\xf4\x06\xce\x4b\xb5\xe3\x09\x40\x0c\x04\x62\x45\x4a\x0d\x8a\xc9\x30\x1b\xed\xa8\xe4\xb9\x7b\x0d\x8d\x18\x9e\xd8\xa6\x2a\x24\x69\x64\xaf\xb7\x9e\x1a\x9e\xf6\xf8\x4a\xb9\x51\x39\x90\x5b\x75\x02\xf7\xfb\xa4\x73\xbc\x13\x9c\xab\x42\x96\x3b\x36\x65\xec\xb1\x4d\x70\xad\xdc\x2b\x92\x6d\x5e\x07\x7e\x6c\x5e\x64\x65\x19\x39\x69\x70\x0b\x96\x91\x8d\x2b\xb9\x58\x5c\xab\x43\xf3\x97\x03\x15\xfb\x87\xf3\x9e\x3a\x85\x7a\xfd\x08\x06\xb0\xa4\x7e\x92\xd4\x20\x5c\x87\x40\xbf\x60\x53\xa0\x8f\xe1\x98\xac\x94\x3f\x9d\x01\xee\x58\x7e\xa4\xf7\x16\xe6\xc3\xbb\x69\xc1\xb8\x7a\x54\x20\xee\xb8\xd9\x1d\x11\x8e\xa1\x0d\xb8\xc5\x6c\xa4\xc0\xd7\x93\x99\x18\xf1\xe9\x39\xa4\x57\x67\x5f\x4f\xac\x07\x7e\x25\x39\xd5\x12\x2d\x29\x28\x5f\x14\x66\x94\x4e\xb8\xd9\x21\xb6\x5d\x37\x55\xbb\x25\xc2\x36\xed\xdd\xcf\xa0\x4d\x36\x3d\xbf\xc0\x75\xcf\x99\x43\x8e\xd6\x6e\xea\x46\xf6\xa1\x42\xb9\x94\x92\xae\x65\x47\x1a\xd3\x91\x5c\xd2\x2f\xf8\xbb\xc1\xb5\xea\x54\xef\xaa\xef\x47\xb2\x81\xe3\x9a\x5a\x79\x56\xde\x68\x87\xc6\x3f\xd2\x7b\x03\x62\xd5\xbb\x0d\xfb\x55\xd4\xa2\xda\x1d\xae\xe1\x50\x03\x07\x43\xf7\xcc\xe4\x44\x63\x6f\x61\x47\x44\x23\xe3\xc5\x9c\x2e\x90\xfc\x9f\x51\xf1\x40\x94\xf1\x85\x1f\xf0\x6a\xf6\xd7\xe0\x9a\x66\x1c\xab\x4d\x86\x27\x98\xdb\xd3\x0c\x38\x5f\xf1\xd1\x9c\xd8\x5d\xed\x8b\x36\xa7\x10\x54\x7e\x7e\x2e\xff\x7a\x4e\x26\x61\x5c\xbe\xe9\xc6\xf2\x48\x37\x56\xb6\xe5\xf8\xa6\x42\x0f\x7f\x71\x98\x70\x61\xd2\xb3\xeb\x80\x14\x81\xdf\xd6\xf9\x39\xfb\xda\x86\xd7\x57\x04\x88\x39\x43\x83\x2a\x4d\x7f\x9f\x55\x50\x36\x89\x34\x98\xf8\x7c\xe1\xf2\x29\xb5\x7e\x73\x6a\xad\x9f\xa8\x67\x19\x3b\x62\xb0\x51\x49\xc9\x0e\x11\x10\xbd\x11\x75\xcc\x73\x64\x7b\x3c\x45\x7b\x16\xac\x95\xaa\x32\x80\x68\xe0\xb3\xf0\x0d\x91\x37\x9f\x8a\x57\xcc\x0c\x84\xdc\x6d\x75\x77\x24\x2f\x81\xab\xf4\xe4\x28\x26\x29\x8a\xcf\xcb\x85\x8a\xf0\xb6\x51\x61\x25\xbe\x40\x83\x6b\x4e\xf3\x8f\xad\xc2\x77\x3f\x82\x06\xf1\x0f\x36\xea\x90\x30\x2c\xfc\x45\xc7\xe3\x32\xea\x00\x05\x21\xff\xae\x79\x15\x14\xa7\xd5\x0f\x14\x4b\x59\xcf\x78\x2f\xf8\xb5\xf5\x69\xcc\x81\x4f\xd4\xe3\x63\xf4\x3d\x3e\xec\x32\x4d\x55\xbc\x94\x3e\x72\x81\xac\xe3\xd8\x68\x0e\x6c\xe5\x7c\xe1\xc8\x6f\x45\x26\x97\x95\xe3\x29\xaa\xd1\x08\x95\xf3\x6a\xe1\x34\x2a\xec\x50\x68\x5a\x4e\x26\x97\xb9\xf3\x92\xca\x47\xe4\x2b\xf4\xc0\x33\x36\xcf\x17\x98\xcd\xf3\xd1\xc5\x02\xb5\x6d\xf7\x28\x7f\xa6\x59\x90\x61\xe6\xa5\x77\x2f\xbf\xa7\x9d\xf4\xa7\xaf\xd4\x66\x57\x1e\x40\xbe\x45\xfc\x4d\x47\xa4\x0b\x84\xd6\x01\x8b\x03\x25\x64\x9f\x95\x01\x4b\xe1\x12\x6b\x11\x98\x79\xb5\x5e\x79\x4c\x3b\xdb\x64\x70\x92\x0d\x29\x70\x8c\x79\x44\x68\x64\x03\xad\x7f\xac\xf6\xfb\xea\x80\x52\xaf\xea\x5b\x5e\xf7\x7b\xa7\x43\x39\xa4\xf5\xd9\xef\xb3\x9e\x72\xe5\x50\x59\x7d\x4c\xd5\xf8\xb4\xd4\x0b\x6c\x9e\x1c\xc2\x47\x1a\xe4\x3f\xfc\x40\xb5\x4d\xd2\x7a\xf3\xa6\x69\x26\x27\x40\x33\xbc\x98\x8e\x3f\xd2\x7b\x4c\x51\xe8\xf1\x3b\xbc\xf0\x4d\xee\x34\x48\x0d\x1e\x03\xb0\xb0\x6e\xad\x70\x6c\x90\x7b\x33\xe7\x8b\x34\xfd\xa8\x75\xef\xca\x81\x55\x96\x7b\x75\x90\xa3\xb2\x0a\x3c\x1d\xe5\x2a\xb6\x21\x5e\x5a\xd0\x49\xec\x53\x4f\xbf\x94\x1a\x5c\xf0\x68\xe5\x27\xee\x39\x98\x3c\xd7\x30\x72\xbc\xd7\x5a\x68\x81\x2f\xbd\x7c\xad\x9f\x68\x56\x22\x13\x16\xac\x5b\x2e\xf1\x1b\x49\xe5\x54\xad\x66\x6d\x4e\x4d\x11\xdb\x0b\xce\xd5\xbd\xd2\xa8\x66\xae\x53\xc7\xd2\xf1\x06\xc3\xe9\xb9\x30\x0f\xd5\xae\xf7\xd4\xa1\x47\x02\x30\x14\x41\xe1\x16\x68\xcd\x04\xe3\x99\x3c\x12\xff\x87\xe6\xab\x2d\xe4\xcd\x9c\x01\xcf\x3d\x8d\x93\x35\xe3\x83\x63\x28\x71\x40\xd5\x86\x2a\xda\x73\x79\x57\x15\xb9\x60\x05\xd5\xaa\x57\x8e\x66\x3a\xac\x68\xaa\xfc\x85\x6c\x72\xd7\x8f\xf4\x1e\x05\x61\xba\x7a\xac\x07\x10\x4c\x8d\xcf\xb6\x9b\xa9\x59\xd7\x2f\x13\xf6\xf9\xe5\x47\x97\xbc\xf1\xd2\xec\x7a\xb9\x81\xc1\x87\xf5\x05\xcd\x04\xc2\x1f\x40\x17\xab\xb2\xde\xa2\xe9\x07\xaa\xf9\x7a\x60\x7e\x76\xf7\x31\xac\x58\x6c\x91\x4b\xc4\xb6\x8e\xd0\x59\xf0\xa7\xe3\x88\xcf\x05\xb0\x5f\x54\x5b\xa7\x5a\xdc\xbd\xe5\x03\x16\x0e\x6a\x33\x36\x2e\x75\x54\x1e\x5a\x34\x00\xfe\x11\xb0\x6a\xf6\xfb\x09\x1a\x5d\x58\xa8\x77\x6d\x33\x1c\x27\x66\x77\xc8\x83\x93\xf1\xb1\x0a\x93\x46\x98\xc7\x99\x80\x7e\x9b\x9d\xd3\xff\x60\xd8\x46\xf9\xef\xf9\xf9\xc1\xf6\x9a\x32\xd2\x22\x4c\x9b\x7c\xec\xf9\xa6\x46\xaf\xc2\xae\x05\xf0\x11\xce\x09\x69\x33\x30\x60\x97\xf5\x60\xaa\x84\xc2\x67\x33\xb9\xae\xcd\xd5\x0c\x18\xc8\x3a\x89\x10\xf7\x92\x78\xb2\x03\x73\xa5\x47\xf4\x18\xf3\x82\x35\x5a\x97\xf0\xaa\x2c\xed\x74\x08\x5b\xa9\x40\xb8\x54\xed\x9f\x9f\x9b\xbf\x40\x9f\x2f\xd9\x19\xc8\xa7\x6d\xb3\x69\x38\x70\xc1\x43\xfc\x04\x9c\x73\x7a\x80\x66\xf0\x78\x0a\x6f\x03\x87\xa0\xa8\x98\xba\x2a\xbc\x07\xf6\xe4\x29\xb2\x86\x3f\xd1\x8c\x9b\x6c\xfd\x9a\xf0\x71\x49\xf8\x78\xa7\x20\x9a\xf6\xa9\x32\x0a\x09\xae\x87\x4f\x09\x49\x70\xbc\x75\x0f\xb1\xb4\x02\x99\x96\xb9\xab\x26\x2b\x09\x9b\x57\x0b\xe4\x99\x89\x20\x1a\xd1\x17\x6f\x4c\x68\xb1\x1b\xba\x9e\x1e\x3d\x0f\xbb\x6a\xd7\x14\x92\x29\xdc\x6c\xe8\x4a\xd0\x75\x66\x87\x71\xa1\x41\x96\xbb\x25\xe2\xd8\x20\x1f\xe9\x3d\x44\xa4\x9b\x1f\xa3\x64\x9c\x8c\xa8\x35\x22\xf9\x44\xe8\x68\xf3\x14\x8b\xd1\x05\xe6\x68\x2a\xbe\xbe\x00\x02\x0c\xb7\xa8\xfc\xc2\x58\xee\x69\x4f\x88\x7a\xf7\x0f\xea\xfc\x8f\x28\xfc\x8d\x0e\x39\x0c\x3e\x32\xb4\xca\xf6\xe0\xed\x17\x2b\xe2\x0f\x2b\xdc\x2b\x30\xae\xc6\x55\xd8\x80\x65\x70\xa8\x73\x86\x57\x42\xbe\xf0\xf6\x77\xdb\xc3\xf7\x99\x40\x33\x3b\x65\x53\x6b\x30\xf1\x9c\xb1\xe8\xf1\x20\xc5\xc0\xaf\x53\xdf\x93\x61\xe7\xf7\x7b\x2f\x73\xf4\xeb\xb0\x69\x3b\x57\xd3\xbc\xdf\xf4\xf7\x3e\xe3\x05\x7e\xf0\x84\xce\x2f\x94\x13\xc1\x57\xd6\x9f\xf0\x77\x00\x0d\x6b\x82\xa2\xb2\x88\xc5\xc0\x0b\x54\x72\xcf\xdc\x69\x40\x11\xb8\x72\xee\xb9\x4f\xda\x87\xa5\x9f\x1c\x2a\x71\x56\xb0\x84\x95\xf2\x5d\xe2\xdb\xc9\xe0\x99\xc7\xf9\xfa\xea\xfb\x1f\x7a\x96\x00\x0a\xb0\x79\x2e\xa2\xc3\x6d\x0a\xef\xc0\x83\x04\xc3\x7c\x09\xc6\x28\xa1\xe6\xd5\x62\x50\x3a\x4c\xc3\x2c\x07\x55\xa7\x01\x1a\x94\x3f\x91\xdc\xc4\x7f\x97\x3c\x73\x8e\x4b\x7f\x2b\x7c\xf7\xdf\xd0\x17\xb9\x67\x5f\x47\xfa\xf2\x8b\xb7\xde\x7d\xbf\x77\xda\x9a\x15\x7f\x09\x19\x1a\x5b\xdf\x0b\xfc\x95\x4a\x5d\xff\xfb\x47\x14\x0d\x6e\xcd\xc8\xd0\xf2\xc5\x6e\xd1\xec\xc3\x70\x06\x3a\x40\xc9\x54\xe4\x3e\xb9\x3e\xc0\xd5\xd6\x54\x34\xbb\x48\xd4\x7b\xd9\xc7\xa0\xd2\x5c\xb2\xa4\xaf\xc6\x30\xdc\x8f\x75\xee\xa3\x5b\x65\x7d\x0d\xd2\x37\x34\xea\xd3\xa5\x8d\xd9\xd8\x1a\x36\x7e\x17\x09\x28\xf4\xc9\xa3\x40\xd3\x4a\x61\x73\x37\x3b\xfd\x75\xad\x7d\x50\x71\x81\x57\xc4\x87\x1c\xa7\xde\xac\xe2\xc0\x54\x4c\x83\xc9\x85\x30\xfc\xac\x21\x1c\x17\x84\xe2\xfe\xfa\x16\xca\x95\x03\xf4\xa0\xa8\x45\x76\xb5\x57\xde\xba\x73\x29\xa9\x69\x66\xa7\x0e\xb0\x41\x20\x25\x9a\x5d\x06\x84\x39\xac\xcd\x8f\x8f\xec\x07\x80\xa3\x0e\x5c\xa9\x8a\xbc\x16\xc4\xe2\x74\x1c\x80\x8a\xee\xf2\xa4\xb6\x2e\x0d\x1e\xe7\x55\x05\x90\xbc\xab\xea\xf6\x9a\x95\x5d\x19\xc7\x8a\x37\xf0\x65\xcd\x7e\xa1\x07\x3c\xb3\xb5\xb5\x35\x5e\xd6\x36\xa5\xd1\x91\xe6\x8b\x20\x67\x11\x94\xef\x05\x05\x7a\x8e\x4e\x56\xff\x05\x0e\xa9\xb5\xe9\x2b\x02\x2d\xf0\x11\xe4\x18\xd9\x87\x1e\x6e\x4c\xaf\x65\x59\xca\x81\xbc\xd8\x05\xf8\x33\xfd\x15\x83\xed\xa4\x38\xf7\x3d\x5c\x71\x16\x56\x07\x5c\x02\xcb\x59\x39\x66\xc6\x43\xca\xa5\x2b\xa9\xe0\x85\x72\x55\xd0\x8f\xf2\x3e\x5c\x5a\x6e\x07\xf3\x33\xcd\xc0\x64\xf8\xe0\xd7\xc5\xf6\xfb\xfe\xb0\x2b\x39\x52\x6f\xb7\xe6\x08\xe7\xad\xab\xc5\xe7\x11\x7e\x56\x7a\x89\xf9\x64\x61\x92\x6f\x40\x88\x17\x5c\x6c\x92\x5b\x9e\xf1\x58\xd7\x59\x90\x4e\x38\x8f\xa5\xbf\x37\x42\x69\x27\x29\x40\xd7\x85\x23\x86\xf7\x83\x39\x79\x61\x54\xd3\x66\x10\x3f\xd1\x34\xfd\x89\x1a\xe0\xc0\x1c\x3c\x05\xc0\xb7\x50\x12\xac\x59\x46\x49\xe9\xb2\x9c\x20\x95\x16\xd3\xa4\x2e\x41\x53\x4a\x98\x3d\xd3\x08\x67\x5d\xd3\x23\x84\x9d\x56\x10\xc1\x7f\x4d\x39\x3c\x05\xbd\x4f\x9a\x5e\x65\x1c\xbf\xd0\x26\x5d\x04\xe1\x9a\x5d\x90\x8f\x77\xa6\xa3\x61\x9b\x86\xc3\xfc\x23\x4d\xd3\x3f\x82\x57\x4f\xeb\x42\x9a\x7e\x54\x77\xc4\x4f\x0a\x98\xc8\x6d\xc6\xbf\x7a\xd7\xce\x4f\x54\xc7\x21\xfe\x48\x07\x3f\x51\xc2\x7b\xbe\x42\x3f\x51\x22\x6c\x2e\x40\x73\x58\x7c\x3f\xa3\xff\x80\xda\x74\x3f\xbc\xe9\xd3\xf1\x21\x7f\x54\xad\xe3\xdf\xd0\xbe\x4b\xa1\x8b\x57\xf2\xa3\x43\xfe\xe4\xd3\x74\x5c\x5a\x1d\x3b\xf6\x9d\xb9\x49\x29\xb9\x59\xdf\xd3\x5d\x3e\x93\x47\xe3\xbd\x97\x12\xad\x9a\xfd\xc5\x28\x13\x94\xc2\x54\x99\xb2\x26\xbe\xc3\x46\xd7\x14\x6e\x62\x11\x95\xfd\x10\xb6\x06\xb8\x72\x2a\xcf\x0a\xf5\x77\x0f\x77\x82\xef\xf7\x43\xb6\xdf\x83\x58\x4f\xa3\xfe\xf7\x74\xdc\x94\x1f\xcb\xea\x93\xc5\x5e\x98\xf1\x69\xef\x59\x70\x64\x74\xd7\x3d\x5c\x68\x8a\x4b\xd2\xe3\xdc\xc4\x4c\x78\x82\xf7\x54\xc4\xe2\xca\x5d\x10\x3b\xef\x38\x9c\x5a\xcd\x0e\xf9\x13\x64\xca\x99\xb3\x05\x72\xa9\x1f\x6d\x5f\xfe\xb3\xdb\x17\x79\xbd\x92\xf9\x02\xe7\x84\xe2\x86\xf8\x3d\xb8\x6c\x7c\x7d\x0a\xdb\x64\x4e\x5d\x94\x71\xd2\x18\xd9\x17\xa5\xa9\x2b\x88\x1e\xbc\x37\x3a\x88\x34\x1f\xdf\xe6\xbb\x2c\x12\xbc\xf4\x02\x62\x9a\x5b\x34\x50\x08\x85\xda\x10\x5e\xe1\xc2\x98\xc0\xe7\x2f\xb2\x5c\x1d\xa5\x05\x32\x56\x87\x3b\xc8\xbc\xf8\x02\xd8\x31\x85\xf9\x04\xd7\xc0\xca\x73\xcd\xc8\x18\xb9\x86\xf7\x08\xe5\x04\x14\x9b\x79\x74\x25\xf3\xde\x4a\xe6\x73\xbe\x98\xf6\x1e\x67\xdc\x83\x44\xdc\x90\xb5\x6d\x7b\xe5\x02\xd3\x37\x08\xf5\x16\x94\x8d\xf3\x42\xb2\x61\xb3\xbf\x06\x48\x02\xb9\x5c\xa1\x1c\x9b\xb7\xa8\x45\xd3\x9c\xdc\x67\x39\xd2\xe8\x5c\xd6\xdf\xcd\x9f\x56\x70\x97\x20\xf5\xf8\xc7\xdd\x3a\x17\x9d\x20\xab\xf0\xd2\x45\x97\x1e\x3b\x94\xa3\x38\xb2\x72\xc6\x91\x9a\xb7\x79\x33\xfe\x7b\xc5\x4a\x58\x70\xbc\x5d\x20\xac\xe7\x73\x6b\xad\x3c\xe0\x53\x61\xa7\xcc\xf3\xe5\xcd\x7d\x14\x05\xb2\xf3\x5d\x72\xe5\x6f\xa4\xbe\xb7\xc1\xd8\xde\x05\x5d\xa1\xb6\x1b\xe6\xf8\x1b\x45\xe2\xfe\x40\xc9\xb3\xbf\x8d\x61\x9f\xfd\xe6\x99\xe7\x83\x29\x7c\xee\xd0\x0b\x7a\x7b\x48\xd0\x80\x3f\x9f\xcc\x44\xe6\xe0\x7d\xfe\x40\x71\x32\x06\xfa\x3b\xf5\xf8\xa6\xae\x03\x2e\xae\x09\x77\xf5\xb4\x09\xc2\x0d\x31\x61\xcf\x7c\x5c\x37\xd7\x6a\x35\xb3\x72\x74\x81\x6b\x64\x8e\x05\x4e\x90\xce\xfd\xe9\x97\xa9\x47\x17\x68\x20\x46\xc1\xb3\x09\x2e\xd1\x20\x27\x85\x5e\x43\x05\x66\xd1\x3c\xcf\x2f\x51\x56\x91\x55\x30\x02\xf4\x7c\x32\x63\x59\x26\x46\xc5\xbc\x19\x8d\x16\xa3\x15\x8a\x8d\x85\xda\x02\x78\x85\x2b\xcc\x50\x9b\x25\x09\x06\x78\x09\xdf\xbd\x54\x04\x26\x92\x21\x0d\x68\xc4\x43\x87\xac\xf6\x99\x7c\x25\x49\xf9\x64\x40\x29\x1b\x40\x89\xaa\x88\xed\x5f\xb4\xd1\xd5\x4a\x57\x96\xd4\x0a\x91\xe5\xb8\xd2\x87\x63\x58\x22\x97\x68\xb7\x18\xeb\x04\x8f\xd9\x6f\xcd\xa9\x3a\xab\xa9\x38\xdb\xe4\xac\xa0\xeb\xe9\x99\xda\x47\xf2\xa8\xee\x72\xb1\x3d\x4b\x7e\x3b\x62\x6e\x5f\x8e\x7e\x9b\x9c\xad\xaa\xa6\x58\x43\x8a\xde\x6b\x7a\xb6\xa9\x9a\x72\x3d\xfe\xad\xd1\x34\x83\x07\xa3\x76\xab\xee\x89\xf9\xd6\x9d\x35\xef\x83\x0c\xd5\xb3\xac\x36\x3e\x23\x80\x41\x67\x7d\xbe\x94\x0f\xb5\xbc\x21\x50\x04\x2b\x84\x3e\x72\x41\xd4\x54\xfc\xd8\xa1\x2c\x19\xf8\x95\x72\xac\xb1\xf6\xfe\xa2\xbb\x84\xa6\xb1\xd2\x3a\x31\xa7\x2f\x61\x72\x91\xa1\x07\xa5\x64\xeb\xe0\x12\xd8\x12\x16\x19\xe0\x32\x83\xa4\xde\x96\xbb\x51\xa0\x00\xc8\xa9\xe8\xc9\xf0\x02\xf3\xf1\x92\xd3\x7c\xfd\xa6\x2c\xee\xf5\x4f\xe7\x23\xae\x99\x36\x95\xea\xe0\x05\x30\x60\xba\xcc\x0d\x15\x82\x72\xaf\x40\xed\x3f\x70\x99\xb0\xe7\xc2\xa2\xf5\x2d\xc2\x08\x4f\x47\x1d\x55\x60\xa7\x72\x1d\xec\x69\x2c\x98\x14\x1c\xfd\xe6\x27\xda\xcd\xce\x80\x52\xc4\x2b\xad\x90\xeb\x64\xe5\x88\x76\x4e\xaa\x81\x7b\x01\x1c\xc1\x7e\xcf\x85\x37\x80\x5c\x2e\x43\xdb\xfa\x7a\xde\xac\x24\x1c\x8d\x97\x3b\xbd\x28\xfa\x7a\x2a\x3d\x1e\x93\x83\x1f\x7b\x37\x23\x9f\x14\xf5\x2c\xd8\x55\x4f\x06\x63\x5d\xf9\xda\x12\x26\xb6\xc9\x3c\x99\x4d\x15\xf3\x33\xf1\xe9\x72\x78\xe8\xe0\x6d\xed\xfc\x38\x27\xb3\x1b\x2a\x20\xba\xa0\xa6\x22\x88\x97\xd0\xf0\xb4\x66\x6e\xbc\x24\xbf\xb9\x7d\xa9\xe7\x22\xa6\x13\xcf\x83\x9c\x80\xbd\x93\x54\x79\xa1\x99\x7c\x56\x79\x9b\x6f\xca\x5b\xd4\xb6\x98\x8d\xed\xe6\xf3\xae\x42\xd5\xac\xdb\x96\x13\x59\xd0\x6e\xcb\x5e\x41\xb7\x61\xa1\xe0\xae\xe7\x1f\x64\x0a\x76\xd6\x4c\x84\x39\x15\xe5\xb7\xcb\xd8\xc7\x56\x0e\x75\xe4\x54\x1e\x2a\x27\x69\x86\xc0\xa8\x5d\xe1\x0f\xa4\x3c\x79\x85\x3f\x9f\x78\x91\x9c\xd6\xb9\xd0\x66\x7e\xf2\x65\x40\x39\x99\x31\xc5\x0d\x95\x9d\x5c\x1f\xf0\xc3\xb1\xc9\x8f\xec\xd4\x69\x6d\xb8\x3b\xc3\x7e\xc8\xf1\xa3\xe6\x41\x0f\xac\x53\x5f\x00\xf7\x7d\xdf\x5e\x8b\xd5\x93\xa6\xdf\x59\xe8\x0f\x50\x7b\xc2\xf2\xde\xf4\xd2\xa0\x58\x48\x64\x6b\x19\xec\x26\xb1\x10\x94\xab\x9d\xa2\xf4\xfd\x8a\x1d\x25\xb7\xba\x87\xac\x93\x16\x99\x99\x88\x19\x4e\xe2\x35\x18\x89\x4a\x5e\x40\x9e\x4f\xae\xd1\x9b\xe3\xfc\xb0\x15\xbf\xb7\xa1\xf3\x34\xcd\xc3\x10\x0e\xfc\x83\x37\xea\x0a\xf2\x26\x43\x7b\x07\x21\x10\x83\x2d\x6b\x16\x08\xae\xc4\x77\xfa\xa1\x4e\x3f\x2f\xbb\xee\x1f\xc0\x59\x38\x6d\xea\xa7\xf9\xf5\xde\x5e\x57\xca\x34\x53\x2b\x80\xc7\xf7\x6a\xe1\x83\x57\xab\xa2\xba\xbe\xa6\xdc\x7d\x01\x1b\xbf\xdf\x83\x5e\x1e\x84\xc8\xad\xfd\x22\x2f\xe5\xe5\x2b\xef\x6c\x39\xa4\xf3\xaa\x2c\xee\xcf\xcc\x19\x92\xf7\xb5\x90\xb7\x74\x55\xea\x9b\x7c\x7a\xf6\xdb\x91\x92\x91\xcb\x7a\x47\x57\x02\xc4\x63\xd9\xbc\xeb\xd3\xa1\x79\xd3\x41\x2c\x20\x6b\xde\x19\x6f\x4e\x77\x45\xfb\xa4\xe4\x18\x00\xa5\x37\x9f\x76\x87\xe8\x29\x08\xa7\xec\xa8\xab\xa6\x3d\x4f\x83\xce\x6f\x42\x41\xc0\xee\xb6\x66\x2d\x01\x5a\xe8\xee\x7e\x55\xc2\x59\x59\xc6\xb6\xcd\x9d\x4e\xe7\x77\x6b\xb6\xaa\xda\xfd\xb8\x26\x95\x97\x9f\x88\x91\x03\x23\xc3\x35\x68\x39\xc0\xcb\xd6\x9e\x18\x1d\x7c\x1f\x7a\xdf\x18\xb9\x78\xbf\xf7\x77\x74\x83\x14\x5c\x12\x38\x14\x61\xc5\x9f\x34\x08\x33\xd9\xdf\xbe\x6e\xd7\xf9\x53\x77\x08\x91\x23\x20\xe2\x00\x01\xe1\x1e\x01\xd1\xe1\x01\xfe\xb5\x67\xda\xea\xde\x7c\xa8\xc5\xbc\xcd\x7e\x0f\x8e\xd3\x3d\x44\x94\x52\xe9\x10\xd9\x41\xd6\xe8\xc4\x34\xbb\x47\xaf\xf3\x32\x76\x9d\x97\xd1\xeb\x4a\xbf\x5c\xaa\x2b\xd0\x16\xd1\xc1\xa7\x2d\x2e\xa3\xb7\x61\xe7\x2b\x53\xc4\xfb\xea\xe0\xa5\x65\x30\xaf\x28\xd1\x5f\xa3\x71\xe7\x0e\xf4\x62\x9b\x5d\x7d\xb7\xdd\xec\x7c\x4a\x97\xa4\xeb\x30\x63\x9c\xc4\x74\xee\x42\xd9\x13\xf6\xfb\x87\x76\x9a\xe9\x1f\xda\x2d\x27\xaa\x7e\xe5\x46\xfd\xaa\xc9\xf6\x21\x0d\xac\x19\xbd\x2e\xd6\xb6\x58\x7d\xe6\x19\xad\x7a\x3a\x35\xf3\x8d\x67\x24\x51\xba\x5b\xde\x66\xd0\x93\x4f\x3c\xdf\x29\x88\xd7\xf7\xcd\x8e\x72\x94\x7d\xa7\xbf\x46\x9e\xba\xaa\x12\xbf\xa2\x6a\x57\x8f\x06\xb4\xbb\x33\x8d\x33\x5c\x8a\x6c\xbe\x40\x98\x09\x94\x81\xa2\x57\xcc\x2f\xe4\xff\xbe\x5a\xa0\xa9\x2b\x21\xa0\x00\x70\xfa\xb9\x20\x95\x18\x5f\xb3\x72\xad\x1c\x23\x06\x11\xe0\x9f\x5c\xed\xfc\x5a\x74\x22\x29\x1e\x5a\x6d\xf5\xf8\xff\xcf\x91\xa8\x4a\xfa\xe7\xfc\xd8\x37\xaa\x40\x76\xf2\xf6\xd5\x96\x8a\xee\x42\x3a\xf0\x73\xbb\x83\x07\x76\x03\xb7\xa7\xec\x19\x5c\x3c\x2a\x83\x99\x03\x19\x97\xc4\x94\xe6\x87\x80\x00\x12\xf2\x7d\x73\xb1\xc0\xbf\xae\x58\x71\x92\x4c\xd1\xb1\xdb\x73\x08\x89\x36\x56\xc6\xba\xb9\xb5\x01\xc3\xc7\x6e\x03\xe3\x2a\xe4\x7d\x51\x22\x7c\x22\x71\x67\x2e\x74\x20\xee\x9a\x61\xaa\x75\xf7\x78\x9f\xe5\xf4\xa7\xfe\x8c\x6b\x5c\x6b\x40\x00\x50\xaa\x36\xdc\xab\x29\x74\xdc\x54\xec\x85\x1d\xc2\x01\xd6\x40\x71\x25\x84\x90\x5a\x5c\x66\xe5\x7e\xdf\xf3\x1b\xf8\x7a\xd2\x63\x92\x71\x99\xa6\xf2\x66\x77\x6c\x34\x70\x43\x47\xdb\x01\x46\xd8\xc4\x89\x0f\x65\x73\x52\x28\xd5\x97\x74\xdd\xe1\x48\x39\x42\x8f\x31\xa4\x22\x9c\x0d\x3d\x8b\x07\xc5\x2d\x59\xd5\x4a\xc8\x22\xfd\x93\x69\x0b\x6c\x84\xbd\x97\xed\x29\x58\x89\xc3\x8c\x64\x72\x9c\x91\xfc\x6d\x32\x12\xa3\xe4\xb7\x3e\x23\x99\x44\x18\x49\xdb\xd4\x46\x1c\xe6\x1e\x3d\xb6\xd1\x4b\xab\x20\x1c\x9d\xd0\x60\xcc\x92\x4e\x78\xe8\xaf\x6c\x93\x25\x65\x73\x7b\x4d\xb9\x1f\xb9\xe9\x19\x2e\x87\xea\x97\x09\xf3\xf0\x71\xac\x9c\x55\x23\xc4\x56\x57\x36\x47\x14\xad\xdb\x00\xad\x0f\xcb\x36\xde\xb4\x71\x10\x09\xd4\xab\xdc\x75\x46\x2b\x18\xa3\xed\x33\xdd\xbe\x8e\x38\x8c\xf7\xc0\xf0\x8b\x43\xe6\x32\x4d\xda\x09\x03\xbc\x69\x33\xbb\x30\x7b\xfb\x7d\x0c\x50\x0c\xb4\x12\xcf\xfe\xf6\xfe\xd9\x58\xd0\xda\x82\x8a\xed\xc4\x71\x33\xf6\x92\xd3\x1b\x56\x0b\x7e\x4f\xe6\x0b\x93\x8d\xb9\xe2\xf4\x07\x76\xfd\x7d\xb9\xa6\x9f\xc9\x51\x47\x05\xc9\x22\x28\x98\xbd\xfb\x6f\xee\x5f\xe7\xb7\xf4\x00\x60\x67\xd8\x12\xe6\xc4\x68\x79\xb0\x8e\x40\x30\xa1\x07\x62\x5e\x2e\xc6\xa5\xac\xc8\xcf\x5b\x31\x2f\x17\xca\xbb\x52\x7e\x1f\x01\x73\xf7\xe5\x05\xd3\x88\x59\x14\x2b\xa8\x06\xfd\x54\x26\x44\xee\x9c\x21\x83\x41\x8f\x46\x46\x1c\xb4\xb5\xd9\xe0\x8b\x09\x7e\x90\xfd\x9b\x52\xac\x13\x38\x4c\x45\x8b\x90\xdf\xbd\x17\xaa\x26\xd9\x58\x2c\xbf\x9d\x29\x06\x9d\x1f\xaa\x90\x86\x35\x7d\xd7\x1f\x5b\xc7\xff\x35\x36\x06\x40\xfc\xed\x4e\xaf\xd5\x6c\xf3\x43\xa3\x10\xf8\x02\x21\x0b\x88\xe2\x70\x12\x77\x8a\x95\xb9\x55\x7c\xd6\x4e\x0c\x7c\xe0\xc4\x5b\x81\x6f\xa3\x83\xcc\x12\x30\xc2\x26\x78\x65\x68\x8c\xba\x25\xef\x44\x2f\x31\xba\x94\xa8\xde\x38\x2d\x2b\xbe\x17\x64\x78\x81\x6f\x04\x79\x90\xe2\xd4\x74\x82\x97\x51\xa4\xd0\xa9\x2c\x44\xc5\x59\xf4\x65\x37\x91\x55\xb4\x10\x58\x81\x0f\x7c\x6f\x23\x11\x6b\x2a\x46\x23\x7c\xa4\x16\xc9\xd3\xe2\x6b\xe8\xf3\x52\x90\xf9\x62\x10\x00\x60\x2e\xd5\xec\x7d\x12\x31\x97\x5a\x47\x9b\x5f\x0a\xe5\xc2\x71\x08\x16\xd5\x3a\x4a\x51\x2c\x7a\x88\xa0\x98\x77\xa1\xaf\x1f\xcb\x7e\xb4\xc9\x32\x4a\xc0\x07\x97\xbf\xa8\xd6\xf4\x4a\x64\x13\x84\xbe\x26\xff\xfe\x6f\x69\x4a\x9f\x93\xff\x3d\x31\xce\x57\x57\x4a\xee\x1c\xe4\x69\x6a\x70\x7b\x15\xb4\x69\x0e\xd1\x8e\x8e\x1c\x7d\x06\x72\x94\x75\x0d\x3b\xce\x70\xa1\x0f\x9e\xaa\x56\x38\x23\xc2\xe0\x93\x98\xe7\x0b\xc2\x2f\xc3\xfa\x39\xce\x5d\xa8\x4d\xad\x9c\xb9\xd9\x26\xbb\x13\x8a\x45\x91\x62\xb5\x81\xfe\xe2\xf3\x1a\x46\x24\xe6\x6c\x41\x6a\xdc\xa4\x69\x33\x16\x06\x2e\x96\x90\x37\xc2\xd3\x81\x86\xf8\xac\x0d\x42\x61\xab\x0d\xf6\x7a\xe6\x19\xfc\x64\x95\x1e\xa2\xaa\x32\xf7\x82\x22\xa0\x41\x48\xae\x05\x2b\x1b\x3a\x50\x10\x48\x0d\xc2\x72\xf0\x0d\x78\xa2\x99\x71\x13\xd6\xa2\x6c\x4e\x6d\xbf\x32\xb4\xc0\x0a\xea\x0a\x12\x5a\xbb\x48\x1e\x61\xd5\x9d\x87\x76\xc2\x40\x39\x21\x67\x72\xc7\xe0\xc3\x28\xba\x17\x08\xd3\xfd\xfe\x5a\xf8\x04\x77\x29\x70\x24\x75\xd4\x67\xa1\xe2\x48\x06\xb0\x87\xbd\x35\x7d\xe3\x3a\x13\xce\x5b\x20\x85\x3a\x6c\xfd\x19\x9d\x66\x11\x37\x77\x30\x3a\xdd\x2b\xc5\xa3\x1c\x1f\xf6\x53\x1f\x75\x01\x73\x51\x37\x2d\x11\x1d\xac\x2b\xf9\x65\xc6\xe3\x29\x9c\x32\x8e\x24\xcb\x67\x84\x00\x47\x55\xf6\x7b\x2e\x57\xbf\x43\x6b\x94\xf5\x73\xd0\x49\xc0\xd4\xef\xc5\x83\x20\x49\x56\x37\xd7\x00\x3e\x7c\x56\x6d\xce\x80\x01\x42\x89\xb1\xbe\x7e\xda\xb2\x82\xfa\xc9\x56\x6d\xe4\xc4\x7e\x9f\x64\xda\x50\x8d\x92\xd6\xb8\xaa\x04\xdb\xcc\xf8\x96\xf8\x91\x59\x57\x86\x39\xe3\xf7\x1e\xbc\x95\x11\x57\x9c\x56\xb8\x8f\x06\x18\xfa\x68\x98\xa7\x28\x4d\xb9\xbf\x67\xd3\x94\xb7\x2b\x00\xc2\x28\xd1\x43\xdb\x46\x70\x7b\x3f\xa9\x29\xff\x28\xba\x40\x31\xda\xec\x1f\xa6\x71\xf1\x22\xa2\x3c\x4e\x24\x86\xae\x21\x79\x10\x48\xbd\xc0\x34\x1a\x6f\x9a\xd2\x21\x31\x28\xc2\xea\xc7\x1b\xed\x1e\x2f\xff\x7e\x0d\x6c\x90\xfa\x1b\x9a\x52\x7f\x7e\x9b\x0b\xaa\xfe\x52\x47\xc8\x0b\xa7\x7a\xa4\x03\xca\xac\x14\x7d\x53\x53\x15\x90\xfe\x4a\xe0\x77\x82\x3c\x78\xb9\xae\xde\x8a\xae\xf1\x95\x43\xfc\x07\x24\xe9\xb6\x2c\x08\x5d\x40\xf8\x03\x9b\x7d\xd4\x84\x89\xa9\xe8\xe3\x29\xfc\x1f\x33\xcf\x43\x5a\xf8\x41\xb3\x81\x07\xfe\x5c\x2c\x5c\x52\x1f\x45\x20\xcb\x9e\x0f\x0c\xf1\x40\x60\x08\xd1\x9e\x35\x80\x4c\x05\xd6\xd0\x18\xae\x49\x3e\x83\x6d\x27\x05\x66\x45\x50\xa7\x9e\xc3\xc9\xb7\xaa\x3f\x1a\x53\x1e\xb0\x11\x1f\x3e\x65\x25\x9a\x65\xf9\x5c\x2c\x22\xd9\x3e\xad\xaf\x27\x6e\xc8\x32\xd3\xb6\xe4\xac\x39\x63\x1a\xdb\x53\xb2\xcc\xc2\x0f\xcd\x6b\x8c\xae\xc8\x0d\x2e\x48\x64\xa4\x70\xac\x6b\xb2\xcc\x60\x06\x10\xae\xf7\xfb\xac\x06\x17\x11\x81\xa5\xd0\xe7\x00\x46\xf7\xfb\x61\x56\x77\x5a\x0a\xa7\xac\xc0\x2b\xe2\x8d\xd6\xb6\x8d\xad\x3d\x02\x3a\x5c\x10\xa7\xcd\x6f\xec\x5f\xe1\x87\xb5\xfd\x50\xfd\x85\xa6\xf6\xcf\xa9\x7b\xbd\x1a\x7a\x23\xdc\xef\x0b\xf5\x53\x7f\xa1\x3d\x52\xc2\x1b\xbf\x71\xa9\xd5\xac\xbd\x6f\x85\x37\xd6\xbc\x57\xe0\x6f\x68\xb6\xc1\xa5\xf0\xfc\x83\xe4\x7e\xc2\x25\xae\x71\x2e\xe9\x45\xed\x81\x7c\x4f\xf5\xad\xa4\xb9\x3a\x81\xbe\x26\x93\xfd\x3e\x51\x47\x95\x96\xb9\x53\xc3\x32\x5a\x27\x3a\xb9\xc6\x2d\xe5\x37\xbd\xe7\xb3\xae\x6f\xb0\xdb\xf2\x72\x8d\xf6\x7b\xc0\xd9\xcb\xd5\xf4\xde\xe6\x1f\xa9\x76\xac\x63\xc8\xf8\x03\x75\xdf\x70\xe4\xb4\xd9\xad\xde\x66\x35\x9a\x16\x69\x5a\xf8\x1d\x3e\xbf\xe8\x36\x6d\x1d\x41\x72\x38\x15\xaa\x69\xd8\x68\xd6\x97\x41\xc5\xd6\x01\x34\x02\x1f\xe7\x75\xcd\x6e\x4a\x94\x3d\xb4\x38\x47\xb8\x21\x1e\x5c\x68\xa1\x10\x1a\xcc\x45\xed\xf1\x97\x59\xa1\x59\x87\x15\x29\xe7\xc5\x62\xf0\x41\x64\x2b\x34\xcb\x1a\x32\x9c\xe0\x7a\x5e\x2c\x08\x1c\xd5\x02\xaf\x70\x8e\x1f\x5a\x84\xa6\xf0\x70\x65\x16\xa5\x91\x9b\x76\xbc\xac\x9b\x1d\xe5\xa4\x1a\xbf\x7b\xf3\xe6\x03\xc2\xb5\x37\xcc\x0f\x42\x45\x2f\x96\xe4\xef\xe6\x8c\xd5\x0a\x2e\xce\x2d\x9f\x5a\x4a\xdf\x85\xff\x75\x8f\xde\x98\x4b\xc9\x4b\x94\xc0\x91\x59\x87\x9b\x20\x07\x12\x47\x07\x62\x7a\x6a\x52\xce\x7e\x3f\xfd\x06\x37\x64\x72\xd9\x3c\x67\x2a\xd8\xcc\x5c\xfe\xcd\x68\x84\xea\x8c\x62\xfd\x78\xde\x2c\x74\xca\x00\xcc\x74\xf2\x87\xd0\x71\xcf\xa5\x82\x28\x67\xdf\x4e\x5f\xe3\x15\x99\x5c\xae\x9e\xe7\xa6\xba\xd5\x68\x84\x8a\x8c\xe2\x7c\xbe\x5a\xd8\xdc\x03\x2e\xf4\xc2\x1b\x5f\xec\xbe\x4a\x53\x3b\x03\x92\x77\x89\x39\xa2\xda\x22\x25\x48\x48\x2e\xfa\xc1\xf7\x42\xd2\x39\x32\x1e\x5a\xdc\xc8\xff\x15\x1d\x5b\xe3\x4a\x31\xe8\xc1\xf2\xe1\xbe\x3b\x92\xe7\xda\xee\x12\xe7\xe1\x75\x90\x0a\x11\x3d\x68\x70\x7f\x79\x25\x60\xfd\x37\x9b\xd3\x85\x35\x47\xdf\x92\xc9\xe5\xad\x63\xb6\x6e\x95\x34\x5b\x13\x31\xbf\x5d\xe0\x2d\xe1\x38\x6b\x48\xb6\x26\x35\xf2\x28\xdb\x37\x62\xb6\xb5\x79\xc2\xb3\x35\x9a\xbd\x13\xd3\x6c\x6b\x73\x8f\x67\x6b\x84\xd7\xc6\x86\xc0\x68\x8d\xa6\x6b\x34\x24\xe4\x1d\x24\xa0\x6d\x14\xb3\x07\x5b\xbf\x02\xbd\xdd\x2b\x79\xe0\xe1\xc3\x34\xed\x3e\x91\x9c\xea\x8a\xbc\x15\xd9\x21\xa2\x81\x1b\x00\xac\xc3\x1b\x28\xd4\xa3\x1d\xe6\x75\x83\x9a\xfe\x09\x93\x37\x93\x32\xcf\x17\x08\x7f\x2b\xb2\x0a\x17\xb8\x99\x17\x0b\x3d\xbd\x2b\xbc\x41\x68\xd0\xfb\x2e\x31\xfc\x71\x82\x20\xa1\xb2\x65\xe3\x1d\x47\xaf\x01\xb8\x6a\x95\xe5\xa5\x4e\xd3\x8c\x66\xe6\x87\xb7\x76\x92\x7c\x7f\x62\x62\x5b\x35\x22\x4d\xdd\xdf\xd6\x71\x7d\x87\x50\x9b\x09\x5c\xc0\xd5\x47\xb1\x97\xe8\x64\x4b\x26\x97\xdb\xe7\x2b\xb3\x68\x5b\xb5\x68\x72\x8e\x6a\xc1\x9b\x95\xa8\x78\x32\x04\x4f\xcb\xd5\x7c\xbb\x00\x27\xcb\xce\x20\x38\x82\xfb\x3d\x27\xe0\x47\xc0\x48\x23\xff\xd9\x8c\xaf\x7e\xf8\xfe\xea\xfd\xf2\xd5\xcb\x0f\xbf\x7f\xf3\x2d\x52\x29\x94\xd2\x94\xf9\x97\xda\x77\x42\xc7\xc7\xae\xc9\x2b\x01\xf0\xba\x35\x6e\xd0\x20\x27\x6b\x48\xbf\x85\x19\x59\x2b\x2f\xf3\x36\xca\x12\x30\x9b\xc0\x75\xa8\xf8\x03\x8e\x66\xdf\xab\x44\x47\x70\x1a\x19\x9a\xea\x9f\x14\x3a\x86\x30\x28\xe5\x38\xce\x31\xc3\x85\x9f\xdf\x35\xec\x6c\x9a\x66\xaf\xba\xca\x4b\x4b\xa5\x70\x45\x84\x4e\xe1\x29\x59\x4d\x9c\x13\x3e\xaf\x16\xb8\x26\xe5\xbc\xea\x7b\xf1\xe6\x86\x3d\x50\x79\xa4\x3d\x1e\x9c\x41\x8f\x2b\x24\xf9\x0f\xc2\x2c\xc0\x1b\x9a\x66\xb9\x25\x99\x84\xce\x2b\xc9\x27\x3c\xc8\xd9\x98\xe6\x1a\x1c\xb0\x6e\xb5\x49\xe5\x3b\x81\x7f\x11\xf8\xf7\x02\x7f\x73\x48\xb9\xe5\xd4\x2d\xbb\x58\x32\xaa\x90\x2d\xeb\xe5\xf4\xf0\xd6\xd8\x8b\x99\x41\xca\xe6\x14\xca\xdf\x0a\x76\xb8\xae\x6e\x69\xd4\xbf\x56\x40\x2c\x31\x6a\x6d\x7c\xc1\x43\xeb\x42\x41\x62\x39\xf7\xb5\x10\x3d\xe7\x8b\xc1\x0b\x91\x31\x34\x2b\xe7\x7c\x41\x7e\xa1\x19\x43\x53\xf8\x53\xae\x28\x24\xcd\x71\x8b\x98\x19\xef\x05\x75\x36\xc8\x8f\xc2\xc6\x91\x40\xae\xd0\x17\x6e\x43\x87\xe1\x48\xfa\xa8\x98\x88\x24\xaa\xf9\x17\x7f\x4e\xa5\xa4\x38\x19\xfc\xca\x36\x39\xf9\x85\xec\x41\x26\x1c\xae\x07\x35\xbd\xef\x5b\x93\xfa\x1e\x85\xdc\x0b\x55\x31\xd1\xe9\x33\x3e\xcd\xec\xa9\x07\xb2\x57\x07\x4b\x42\xbd\xad\x00\x16\x03\x9d\x77\x06\xdc\xfc\x06\x47\x94\x9c\x9c\x56\x3b\x1a\xcd\x7d\xf8\x58\x26\x22\xa3\x9d\xb1\x19\x88\x3a\xf9\x87\xd8\x26\x03\x8f\x77\x8b\x48\x62\xb1\x1b\x1c\xd5\x37\xfc\x19\x44\x5c\xfb\xab\xe7\x95\x19\x74\x77\xba\x5f\x4e\x4f\xeb\x9c\x69\xb7\x7b\xef\xa1\x89\x7f\x37\x45\x5c\x2a\x37\xff\xb1\xf7\xb7\x61\x03\x7f\x84\x1c\xc6\xca\x0a\x08\x81\xf6\xbb\x5d\x71\x1f\xcb\x18\x05\x17\xf6\x5c\x96\x5b\x20\x5b\xf0\x6d\xce\x05\xcb\x8b\x53\xca\xaf\xa9\x08\xd2\x40\x85\x59\x1e\x86\x5e\x94\xa6\xd9\x06\x0e\x4e\x5e\x4e\xa6\x4f\x74\x69\xd7\xe7\x56\x31\x01\xe6\x64\x9e\x0c\x3c\x3e\xf3\x7f\x4c\xb5\x66\x67\x60\xf5\x44\x56\x5e\x19\x5e\x0c\x0c\x54\x36\xf4\xc5\xcf\xc5\x39\x19\x18\x6d\x99\x9a\x58\x70\x2c\x71\x6e\x56\x21\x3d\xf1\x22\xae\x4c\xe6\x54\xe4\x20\x79\x4c\x08\x60\x1c\x89\x42\x44\xa3\x6c\x2d\xd7\x61\x83\x07\x0d\x29\x88\xee\x72\xb5\xf9\xf4\xb2\x60\xde\xdf\xf5\xa5\xb7\xeb\xb9\x49\xc7\xc7\x21\x5e\xa2\x9c\x33\x7f\xd7\xb3\x85\x67\x3d\x30\x8d\x96\x18\xa0\x27\x00\xe7\xab\x6f\x7c\xf6\x97\xcb\x3a\x43\x9e\x9a\xe2\x65\xe6\xff\xb0\x8b\xf5\x4f\x5a\xf1\x70\xbd\xfd\x13\xea\xe0\x09\x83\xeb\xc3\x2f\x82\x23\x81\xb1\x10\x2e\x98\x41\x6c\xbe\x52\x51\x0a\xcb\x0c\x99\xbf\x8e\x06\xe8\x75\xb7\x8b\x94\x33\x5d\xbc\xa8\x61\xb9\x7a\x53\x6e\xd5\x5a\x67\xd0\x06\x4a\xba\xb1\xa2\x3f\x7a\x36\x3c\x9a\xa6\xc6\x02\xb6\xdf\x4f\xb0\xf5\x44\x96\x53\xa0\xc2\x51\x7c\x8a\x38\x08\xa1\xa7\x84\xaf\xb0\xa6\x90\x6e\x4f\x52\xc9\x80\x59\xfa\x46\xcc\x18\x4c\xfa\x37\xc2\x10\x40\x86\x5a\x27\x39\x9b\x8c\x4f\xdf\x48\x7e\xc0\x37\x75\x7b\x89\xc4\x7a\x7c\xce\x77\xa2\x1f\x85\xe9\x98\x1b\x42\x5b\x84\xc3\xbc\x52\xbf\x44\x2a\xe9\x96\x88\xe6\x9b\xa5\x9f\xce\xbe\x13\xea\xa2\x39\x96\xc5\xea\xf7\xe2\x50\xe6\x73\xb8\xc3\x9f\x81\x34\x1d\xe6\x3f\x3f\x94\xb6\x3c\x4c\x0d\xde\x4b\x02\x6e\x12\xd6\xc5\x7a\x0b\xdc\x85\x4a\x11\xd6\x2d\x23\x6b\x92\xaf\x09\xe4\x10\x7b\xf3\xe7\xd7\x2f\xdf\xf9\x4e\xe7\x40\x79\x84\x8b\x49\x83\x02\x00\x6c\xaf\x8a\xf2\x43\xc3\xe3\x55\x23\x58\x79\x73\xda\x00\x4d\xe1\x82\x5d\x3f\xa3\x9f\xc5\xb3\x55\x55\x0a\x5e\x15\x05\xe5\x8f\x16\x2f\xaa\x55\x2e\x47\xf2\x2c\xdf\xb1\xd3\x0b\x97\x55\x49\x97\xe6\xd7\xe9\x9f\x6d\xf3\x7a\xfb\x25\x9f\xb1\x5a\x54\xfc\xfe\x0b\xbe\xcc\x1b\x51\x9d\xfe\x59\x7d\x5f\x0b\x7a\xfb\xec\x86\x96\x94\xe7\x82\x2e\x9f\x30\x8d\xfa\x53\xf7\xc5\x72\x53\x9d\xfc\xd5\xba\x2e\x4e\x2d\x2a\x1f\x9d\xde\x1d\x28\x7d\x6a\xe1\x9f\x1b\xca\xef\x97\xbb\x9c\xe7\xb7\x8f\xef\x32\x00\x85\x5c\x51\xfb\xf0\x69\x1f\x3c\x61\x42\xf3\xd5\x96\x9e\x94\xd5\x1f\xaf\xf1\x0e\xdf\x76\x8e\xf5\x21\x90\xf4\xe4\x07\xbb\x27\x3a\x61\xbd\x71\xe7\x3f\x6e\x6c\xb8\x6d\x7b\x18\x17\x3e\x79\x5d\x95\xf4\x89\x15\x97\x27\x55\xfc\xfb\xbc\xde\x3e\xb1\x62\x76\x5a\xc5\xea\x64\x3d\xb1\xee\xea\xa4\xba\xaf\x1a\x51\x3d\xb1\xe2\xfc\xa4\x8a\xcd\xf9\x7c\xe1\x1d\xcf\x93\xaa\xaf\xbf\xb0\xfa\xef\x72\x29\x24\xde\x9f\xdc\xca\xc1\x1a\x8e\xb6\xeb\x68\xc7\x77\xd5\xa9\x23\x6a\x4e\x1a\xd1\x3b\x38\x72\xdf\xbe\xff\xe1\xc4\x5a\x8b\x27\xd4\x7a\x62\x95\xab\xd3\xab\x3c\xb1\xc6\xcd\x49\x35\xfe\x49\x12\xb5\xb7\x9a\xa6\x9d\x54\xef\xf6\xe4\x9e\xb2\xf2\xe6\xbd\xa2\x6a\x27\x56\xbd\x7e\xc2\xbc\x3e\xad\xe6\xdd\x49\x35\x7f\xd3\xac\x3e\x52\x01\x79\x1b\x4f\xac\xf7\xd6\xab\xf7\x31\x4e\x25\xc6\x7c\x1c\x67\x5b\x6e\xa9\xc8\xbd\x9b\xcf\x7d\x08\x75\x79\x77\x29\xf0\xdb\x8f\x5e\x19\x31\x36\x4f\xeb\xdb\x43\x56\x4f\x8f\xc9\x45\x0b\xea\x07\x5a\xa7\x91\x3d\xc4\xf5\xc1\xd3\x79\xf2\xb3\xb7\x9d\x16\xd8\xfb\x35\x05\x0d\xe3\xf2\xe7\xdd\xb7\xb4\xa0\x37\xb9\xa0\xf6\x81\x0a\x94\x5a\xfb\x08\x86\x5e\xca\x16\x97\x25\x73\xbe\x48\xa4\x88\x08\x40\xf8\xe5\x8c\x4f\xb9\x86\x65\x9f\xe0\x12\x22\xa7\xe9\xd8\xab\x1d\x65\x4c\xb9\xb2\xdf\x50\x81\x20\xea\x55\xca\x2e\x3c\x2f\x6b\x26\xdb\xf8\x50\xc1\x26\x9a\x46\xc4\x56\x4a\xdc\x77\x60\x86\x4f\x44\xce\x6f\xa8\x48\xa4\x04\x0b\x99\x8b\xc3\x3a\xf6\xfb\xf0\x21\xee\x27\x6c\xc3\x95\x27\xcb\x30\x84\x35\xbc\xeb\x65\x3e\x1a\xa1\x6a\x9e\xfb\x72\x6e\xbe\xf0\x20\x5f\xb4\xfb\xbf\x12\xcd\x39\xdd\xb0\xcf\xd0\xa2\x94\x34\xae\xf8\x8d\xee\x5e\x25\x47\xa6\xa3\x8e\xbf\x74\x50\xfe\xe7\x72\x3c\xfa\xf7\x9f\x99\xd8\xfe\x77\x0c\xa7\x75\xee\xd2\x7a\xe3\x79\x7b\x92\x9d\x72\xcc\x42\xa6\x3d\x72\xc8\xd6\xf4\xba\xb9\x79\x4c\xe2\x09\x8f\x81\x16\x57\x1e\x94\xb2\x73\xda\xd7\x37\x82\x44\xcb\x6e\x77\x05\x95\x83\x87\xf6\x8d\x13\x5e\xf8\xb4\xf6\x6c\xf7\x5c\x2b\x4f\xf5\xf4\xf0\x30\xda\x31\xfc\x6c\xfa\xd0\xb6\x5e\xb7\x1e\x15\x8d\x8e\x71\xfa\xfe\x9c\x40\x05\xe7\xd7\xf9\x35\x8d\xb3\xd9\xd7\xbc\xfa\x54\x53\x7e\x4e\xcb\x3b\xc6\xab\x52\x76\xe8\x14\x72\xd5\x95\x45\xe3\xf4\xa9\x29\x05\xbb\x8d\xf3\xe0\x8a\x5e\x75\xd6\xec\x64\xd1\x46\x7e\x7d\x94\x31\x8e\x49\xb8\x9a\xdf\x7b\x9b\x8b\x2d\xd9\x60\xf5\x28\xaf\xb7\xf0\x7b\x8b\xa3\x5b\xa2\x38\x1c\xa7\xa1\xbc\x9b\xb4\x87\x8e\x20\x47\xe3\x35\x50\x67\x93\x90\x44\xae\x58\x82\xc5\xf1\x98\x82\x2a\x16\x53\x50\xf5\x14\xa0\x01\x6c\x2d\xaf\x2a\xf1\xe3\xbb\x1f\xb0\x88\x28\xcd\xe9\xd8\x4c\x20\x50\x86\xa6\xa6\xfc\xea\x86\x96\x02\x97\x84\x8e\xb5\x9c\x89\x19\xa1\xe3\x75\xb5\x82\xfe\xbf\xaa\xd6\x14\x57\x84\x8e\x55\x80\x0b\xce\x25\x3d\xd1\x0d\xd4\x24\x91\x82\x70\x82\x0b\x32\xbc\x50\xfe\x17\x8d\x9c\xd2\xef\x9a\xa2\x90\x53\x8a\xb4\xce\x0b\x9e\xd7\xcd\x0e\x36\xa4\x5e\x02\x39\xc6\x12\x19\x73\xd7\x26\xcb\xb1\x40\x83\x15\x21\x64\x3d\xab\x49\xa2\x7b\x92\x4c\x93\x67\xff\x92\x10\x42\x56\x1a\xc0\x21\x9b\xe0\xaf\xd0\x2c\x2b\x0d\x09\x7b\x2f\x72\x41\xb3\x07\xc8\xc8\xb8\x6e\x71\x92\xe0\x35\xc2\xde\xf7\x68\x9a\x15\x64\x08\x19\x23\x1a\xf3\x8d\xee\x19\x5e\x23\x6d\x4a\xec\xf5\x30\xaf\xb7\xea\xd6\x92\xd7\x4c\xa5\x3b\xb9\x23\x5b\xd7\xc9\xdd\x7e\x9f\x3c\x83\x8e\xa5\x69\xf2\xec\x5f\xe0\xcf\x1d\x74\x3c\xaf\xb7\xc9\x91\x46\x77\x08\xb5\x6c\x93\x15\x4e\x19\x6c\xb8\xe6\x36\x7b\x30\x4b\xa3\xa2\x44\xed\x42\xe9\xc1\xa8\xa7\x66\x8d\xec\xca\xa9\xc7\x6e\x21\xf5\xe2\x4c\x29\xf6\x97\x50\x95\x0a\x16\x55\x2d\xa8\x7a\xa1\xfe\x6e\xd1\x40\xc5\xb0\xab\xdc\xc2\x10\xd1\x60\x2e\x94\x55\x5e\xae\x68\x61\x78\x33\xd1\xec\x12\x3c\x9c\x20\x2c\xf4\x16\xf0\xf4\xcc\xcc\xaa\x92\xb4\xa3\xa0\x76\x52\xcd\x12\x3b\xbe\x64\x24\x34\x1a\x0a\xb4\xc0\x71\xa2\x7b\x9d\x60\xaa\xb3\xd8\xfa\x4d\x57\xe5\x8a\x53\x41\xbf\x0f\x0e\x50\x02\x61\x12\xca\xa6\xfd\x6d\x1f\x9d\xd8\x3b\x0f\xf1\xef\x07\x40\xcf\x2d\xe6\x2b\x44\x4b\x54\x63\xc5\x3b\xfa\x31\x13\x9e\x1a\x2c\xaa\x05\x3f\xd2\xc4\xaf\xa4\x13\xcf\x26\x38\x1f\x0b\x7e\xff\x7d\x79\x57\x7d\xa4\x72\x17\xd1\x10\xe5\x70\x13\xc0\x39\x61\x66\x0f\xa2\x39\x84\xb8\xb2\x8f\xe4\xe6\x86\x47\xb9\x7d\x04\x32\x82\x3a\xab\x96\x1f\xb3\xe1\xa8\x89\xda\xdc\x55\x78\x00\x39\xc9\x4a\xf7\xec\xc2\xc2\xb0\xfc\x4b\x82\x90\xc5\xde\x55\x27\x44\x39\x19\x5f\x89\xcc\x66\xef\xbd\x40\x90\xb5\x89\xbb\xcf\x11\x66\x23\xc2\x47\xb9\xcd\xa6\x93\xa6\x19\x1b\x91\xe4\x5f\x92\x51\xa9\xfd\x71\x65\xcd\x68\xca\x46\x24\x1f\x55\xbe\x5b\xdd\x36\x00\xa0\xc1\x25\x51\x93\x61\xea\x36\x3a\x68\x3b\x9c\x44\x61\x6d\x66\xc9\x33\xf8\x6b\x3e\x59\x80\xa7\x4e\xf2\x2c\x19\x95\x08\x73\xdd\x28\xc2\xbc\x75\xb7\x41\x81\x0b\xcb\x1a\x9b\xe3\x95\x3c\x4b\x30\x2b\x99\x00\x0a\x34\x5d\x65\x89\xfd\x91\x20\x29\x4c\xc8\x32\xab\x2c\x51\x7f\x25\x08\xd7\xf6\x51\x6d\x1e\x69\xd2\xa0\x1f\xbb\x5f\x09\xc2\x55\x09\x78\x42\xe6\x9d\xf7\x33\x41\x78\x53\xf1\xdb\xdc\xd4\x66\x7f\x24\x08\xdb\xf3\xc5\xfb\xc4\x83\x5b\xca\xa1\xcf\x3d\x1f\x7f\x62\xe5\xba\xfa\xe4\x51\x12\xee\x91\x91\xde\x79\x57\x89\x6c\x9f\xc2\x92\x74\xb4\x9d\x4f\x61\x49\x0e\xb3\x1a\x3d\x86\x82\x37\x65\x51\x55\xbb\x5f\x85\x71\x38\x85\x45\xcc\xe3\xfc\x40\xf9\x0f\xf3\x03\x70\x75\x1c\xe0\x07\x4a\xc3\x0f\xe4\xa4\xec\xf3\x03\x39\x20\xfb\xf9\xd4\x0f\x9c\xe3\x3c\x12\xea\x56\x41\x99\xf8\xcd\xef\xfd\x5e\x6d\x02\xbb\x5f\x4c\x6c\x88\xec\x8c\xca\x12\xf5\xfb\xbc\x5c\x17\x16\x49\xa6\xc5\xb9\xa1\x22\x7d\x03\x91\x71\x94\xd0\x34\xc6\xbf\xc4\x90\xfe\xf0\xc7\x77\x3f\x1c\xa0\xd2\xfa\xbb\x0c\x39\xb2\x80\x05\x31\x63\x54\xc7\x55\xa8\xe3\x2a\xe4\x71\xc5\x54\xfe\xa5\xce\x2b\x85\xc4\x52\x18\xb0\x62\x82\x16\x8c\x0d\xc7\x74\x63\x2c\xc7\x45\x40\x48\x09\xe7\x27\xaf\xc5\x7b\x6a\x6e\x20\x59\x93\x3b\x8e\x47\x6a\x33\x68\x50\xaa\x0f\x27\xd4\xea\x1d\xe4\x7e\xb5\x4b\x85\xc7\xfa\xf2\x8e\x96\xd6\xb7\x2f\x3b\xbc\x20\x70\xd5\x5e\xb3\x72\xad\x9b\xeb\x4c\xab\xb0\xd3\xfa\xe3\xbb\x1f\x4c\xf6\x02\xd7\xa3\xa1\xbd\xe6\x0f\x76\x59\xc5\xea\x29\xa4\x67\x84\xf5\x46\xc9\xd7\xeb\xb0\x83\x89\xeb\x59\x72\xa8\xaf\x30\x76\x4b\xa9\x22\x16\x26\x98\x40\x59\xe8\xc0\x6d\x7e\x64\x7e\xe4\x57\xb1\x37\xfd\xcf\x7b\xdd\x4a\x53\x3d\xa8\x58\xc5\x27\x8e\xab\x6c\xb3\xd2\x72\x0d\x8e\x60\xe4\x4f\xa3\x94\x3d\x03\xcf\x3f\x89\x58\x7e\x31\x6d\x3c\x85\x32\x56\xe0\x7e\x6b\x08\x62\xee\xec\xc6\x9f\xf5\x7f\xe7\xf0\xbf\x7f\x95\xff\xbb\x37\x3f\xcd\x7f\x89\x3d\x4c\xcf\xe6\x9f\xef\x17\xcf\x6e\x70\x3f\x8e\xc4\xb8\x08\x90\x8b\x7f\xff\x1f\xaf\x72\xb1\x1d\xf3\xbc\x5c\x57\xb7\x19\xda\x4f\x70\x96\x7c\x96\xdc\x06\x9d\x89\xe9\xef\x52\xb1\xff\x5f\xc8\x85\xda\x5c\xfc\x3b\x6a\x55\xd4\x63\xfd\x4f\xa3\xdd\x5a\xde\xc0\xc2\x08\x47\x40\xa2\x1e\x21\xe6\x75\x8c\x98\xd7\x47\xe9\x2b\x3b\x4c\x5f\xeb\xde\x2d\x60\x40\x4e\x76\x94\xc7\x87\xa3\x01\x7e\x8d\x58\x30\x06\x85\xde\x7b\x5a\xd0\x95\xa8\x78\x96\x5c\xe7\xb5\xe4\x66\x04\x49\x92\x01\x50\x5b\x02\x12\xf3\x95\x10\x9c\x5d\x37\x82\x66\xc9\x96\xd3\x4d\x82\xfa\x94\x4f\x7e\x09\x34\x44\x44\xa8\x62\x78\x17\x3d\x7a\x15\xed\xaa\x5d\x2d\xf9\xaa\xee\x45\xa4\xc6\x0b\x2c\xd7\x81\x2b\x45\xaf\x8a\xad\x59\xff\xbe\xec\xf6\xc8\xae\x1e\x45\xf2\x56\x49\xa0\xb9\x44\xa5\xa2\x56\xd3\xdc\x11\x5e\xc9\x50\xa7\xa4\x75\x44\x56\x49\xa2\x08\xeb\xc0\x51\x4b\xec\xb2\x80\x0a\xa3\x81\x48\x53\x01\xee\xd6\xa0\xe6\xd4\x23\xe4\xf4\x8e\x55\x4d\x2d\xb7\x4d\x50\x7c\xaa\x43\x43\x3d\x59\x57\xad\xf4\xd1\x9b\xd4\xf2\x7e\x22\xd4\x07\x68\x65\x95\x5e\x1b\x90\xf8\x65\x47\xca\xfc\x96\x0e\x04\x11\xee\x00\xfe\xed\xd9\x6f\x9e\xe1\x04\x94\x87\xbc\xff\xd4\x64\x01\xb1\x6f\xa4\x40\xf3\x8e\xde\xbc\xfc\xbc\xcb\x92\xff\x9b\x8c\xf8\x28\xc9\x66\xe4\xd9\xfe\x37\x28\x41\xb2\xfc\xa1\x72\xe2\x50\xb9\x67\x7f\x7b\xf6\xb7\x67\xcf\x6e\xa4\xfc\x60\x3d\x54\xd8\x88\x64\x74\x5c\xd3\x9c\xaf\xb6\xfb\x7d\x92\xa0\x51\xc8\x34\xc8\x49\x89\x5c\xfe\xd1\x35\x1a\xd0\xee\x1a\x51\x84\xfd\x75\xa1\xea\x98\x83\x2f\xa0\xfa\x86\x42\x03\x07\x78\x82\x7f\xac\x91\x60\x75\xa9\x59\xdd\xde\xb6\xf6\x3d\xf0\x3a\xbb\x71\xe6\x6f\xf6\x31\x6c\xde\xa9\xbe\xb0\xd4\x33\xa8\x4c\x56\x6c\x07\x14\xe9\xbf\x52\xa2\x50\xdc\x34\x6c\x3d\xcd\x33\xd4\x0e\x82\x6a\xdd\x5c\x08\x93\x55\x0c\xf7\x1b\x31\x49\x9f\x0e\x6f\x69\x6f\x1e\xbf\xb0\x27\xc1\x84\xfd\xe3\x9d\x39\xc4\x92\xb9\x55\x1d\x3c\xce\x9d\x75\x69\x94\xcf\x8a\x57\xfb\x7d\x56\x41\x1e\x00\xdb\xae\x64\xbe\x82\x6e\x21\x94\xa6\x34\x73\x05\x50\x7b\x98\xdf\x32\x6d\x25\xf1\xb6\x61\x50\x71\x5e\xcb\xdb\xa8\x71\x9a\xe0\x0b\xc9\x74\x96\x3d\x81\x28\xa0\xa9\x92\xf6\x39\x70\xe8\xea\x6f\xcd\xad\xc7\xcb\x63\x3e\x12\x23\xd8\x94\x5f\xc2\xf2\xc5\xdf\x44\xf0\x06\xc3\xb9\x39\xce\xf0\x3d\x3e\xb1\x07\x98\xbd\xfa\x49\xcc\x5e\xc7\x77\xe8\x9f\xc4\xe9\xc5\x2c\x20\x4f\x61\xe5\xfe\x49\x8c\x92\xd2\x17\x3f\xc2\x17\xb1\x18\x5f\xc4\x22\x4a\x6f\x7f\x2b\x6b\xe0\x99\xc3\xd7\xa2\xa4\x2a\x9d\x2b\xd1\x71\x94\xb1\x8d\x4e\x4f\xbd\xb9\x34\xbe\x4b\xf7\xb8\x75\xd9\x0c\xd9\x01\x25\x08\xb2\xe3\x82\x60\x03\xaf\x5e\xe4\x45\x71\x9d\xaf\x3e\x2a\xc8\xc9\x2d\x6c\xc2\x53\x9b\xc0\x91\x7a\x32\xd5\xf2\xa9\xa4\x21\xa0\x05\x0a\x4f\x22\x76\x8c\xe1\x10\x1f\x38\x17\x15\xae\xac\xde\x0c\x68\x7a\x92\x60\x4f\x7f\xf6\x44\x75\x12\xc8\x26\xde\x71\x59\x04\x12\x42\xb0\xa7\xed\x86\xf5\x1d\x52\x1d\xb3\x73\x48\xa5\x30\x82\x24\x30\x9e\x89\xc7\xf3\x80\xd4\xbc\x47\xeb\x9d\x05\xda\x49\x95\x0f\x31\xce\x52\x46\x9c\xa9\x7f\xac\xca\x14\x4d\x93\xc4\x7d\xc8\xfc\x3e\x55\x9c\xdd\xb0\x72\xe0\x62\xc7\x33\x1b\x6e\xb0\xaa\x8a\x51\xf2\xec\x59\x32\xa2\xe3\x6d\x55\x0b\xd9\x73\x4c\xc7\x72\xec\x5a\xf1\x31\x95\xaf\xe4\x6f\xa4\x72\xd7\x68\x85\x2f\x11\xca\xb0\x05\x6a\x5d\xc2\x9d\x95\x8b\x94\xea\x6f\x63\x9e\x89\x79\x7a\xca\x09\x1b\xc9\x81\x8f\x4a\xd8\x2f\xca\x2f\x14\x3a\x49\x18\xa6\x11\x1b\x49\xc7\x17\xd4\xd4\x93\xa6\x49\x55\x7a\x22\x34\x83\x67\x2e\xfa\x97\xee\xf7\xf4\xeb\xff\x09\x2d\x74\x99\xeb\xb0\x42\xb6\xc9\xb2\x73\x1d\x3f\x6e\x9c\x05\xae\xca\x35\x97\x15\x7d\x35\x4e\xd0\x7e\x7f\xe8\xed\xbf\x8e\x27\x89\xbc\x58\xbb\xef\x5f\x55\xd7\xac\xa0\x67\xef\xf3\x4d\xce\x59\x02\x05\x48\x50\xe0\xc5\x96\x57\xb7\x34\xf6\xe6\xcf\x70\x7d\xd4\x67\x6f\xb7\x60\xf4\xe8\x59\x71\x74\x4c\x7b\x26\x87\x6f\x39\x26\x18\x3b\x8c\xd4\x33\x06\x75\x5d\x68\xed\xd9\x92\xdb\x63\x24\x50\x7b\xca\xd9\xe8\x39\x15\x3e\xe5\x32\x39\x70\x65\xd8\x9f\x2a\x9a\xe2\xd9\x4a\x23\xda\xb9\x17\xb5\x71\xcd\xf9\x42\x7f\x14\x13\x5d\x19\x3f\xb2\xb5\xbf\x8f\x34\x23\x31\xa3\x53\x6a\x4e\x93\xc5\x08\xb2\xaa\xfd\x36\x7a\x85\x35\xff\x0d\xf8\x7a\x5d\x01\xdc\xe3\x21\x7d\xb4\x35\x59\x2c\xde\xb6\x41\xe6\x81\xe5\x1c\x57\x65\x96\xc0\x9f\x2e\x7f\x7d\x12\x10\x3d\x31\x16\x9c\xdd\xdc\x48\xe6\xa5\x57\x0e\x5c\xcb\xe3\xd5\xb9\xfc\xdb\x47\x6b\xf3\x8a\xc9\xca\x5a\x5c\x06\x9e\x30\xd1\x24\xcf\xff\x78\xe2\x1d\xb0\x76\x71\x5a\xd3\xdb\xeb\x82\x02\x6f\x0c\xa0\x8c\x28\x04\x29\xd6\x43\x5a\xae\xab\x1f\xdf\xfd\xf0\xc1\xf6\x2a\x4b\xfc\x1e\x26\x18\xbe\xd4\x2b\x06\x15\xd3\xcf\x82\xe7\x2b\x01\x76\x8d\x2b\x7e\x53\x83\x29\x0c\x84\x59\xe3\xab\x82\x2b\x52\x8e\x6f\xab\x35\x2d\x6a\x5c\x93\x72\xec\x39\x39\xe1\x86\x74\x5b\xf7\x9a\x96\xbb\xba\xc6\xc3\x89\x95\x59\x9b\xf1\xf2\x23\xa5\xbb\x6f\xd5\xde\x74\x9e\x78\x3f\xe5\x45\x43\x6b\x29\x11\x34\x72\x4e\x3d\x6f\x9c\x43\x02\x9f\x3f\xa8\xf8\xc6\xd1\x51\x0a\xd6\x8c\x94\xc0\x72\x35\xbc\xf8\xae\xe2\x71\xf4\xad\x47\x8d\x93\x5f\x5f\xcc\xf8\xf9\xc5\x74\x22\xe7\xe7\xc2\x37\x52\x9e\x5f\xc4\xcd\x94\x22\x98\x1d\x64\xdd\x40\x4d\x8f\xf1\x9c\x2e\x4c\xa8\x58\x89\xa0\x83\xac\xbe\x5a\x09\x76\x47\xff\x19\x7b\xe9\x9f\xb6\xea\xea\xdf\x57\x6c\xc5\xab\x82\x5d\x9b\x90\xab\x61\x63\x47\xf3\x3d\x24\xe0\x04\xdf\x81\x34\xcd\x86\x99\x1f\xdc\x53\x23\x97\x3c\xc4\x04\xda\xd9\x9a\x77\x9c\xee\x72\x4e\x3d\xa7\x4d\xb7\xab\x30\x8c\xa4\xde\xe6\x45\x51\x7d\x7a\xf9\x73\x93\x17\x28\xab\x71\xa3\xe4\x7d\xbf\xbf\x48\x4d\x2d\xa7\xab\xea\xa6\x64\xbf\xc4\x24\xec\xda\x00\x0e\x6a\x6e\x2c\x0c\xf0\x3b\x30\x50\x57\x23\x80\x24\x7a\x2d\x5c\x95\xeb\x1f\xaa\x3c\x96\x54\xf7\x1f\x6c\x48\x57\x0c\xed\x81\x79\xde\x22\x89\x39\x92\xdf\x80\x93\x05\x30\x99\x7c\x0c\x12\x1d\x5d\xe3\x87\x55\xc3\x39\x2d\x85\xf5\x40\x9b\x82\xee\xd4\x40\x2a\xa2\x2c\x31\x6d\x77\x0b\x26\x08\xeb\x47\x92\x4b\x7d\xe4\xab\x8e\xd9\xf5\x50\x69\x2b\xec\x21\xcb\xfe\x1e\x2a\x6a\xfc\x20\x6c\x2f\x94\xcf\xdf\x29\xbd\x4f\xd0\x69\x0c\x75\x3f\x74\xe1\x51\xae\xe1\x20\x2b\xb0\xab\x8a\xfb\x0d\x2b\x7c\x37\x2e\xc3\x1d\xfc\xca\xa2\xe7\xaf\x73\x6f\x1f\x80\x68\xdd\xe6\x35\x4c\x61\x94\x23\x56\xdb\x17\xa6\xdb\x94\xd3\xa2\x54\xfc\x36\xec\xa6\x6c\xf1\xbe\x0f\x2f\x8c\x20\x77\xf7\x59\x99\xa6\xac\x4f\xc5\x15\xce\x77\x29\x65\xb6\x82\xfd\xe2\x53\x86\x38\x18\xeb\x11\x4a\xe2\xe3\xb3\x2a\xc2\x1c\x0a\x81\x7e\x82\x59\xaf\x2e\x85\xf8\xdf\x39\xa2\x26\xad\x85\x17\xb7\x6e\x7c\x86\x0c\x24\x4b\x85\x0d\xd0\x60\xac\xf7\x26\xc5\xbe\xd7\x1b\xbd\xaa\xcc\xbf\x26\x04\x9e\x3f\xf8\x5e\xc6\x55\xbb\x40\x2a\x6b\x85\xa1\xb5\xdf\x55\xbc\xbb\x74\x38\x4c\x29\x14\xae\xc0\x21\x52\xc3\xb5\x84\xcd\x75\x16\x26\x9c\x93\x6a\x5e\xb9\x64\x29\xe6\x35\xae\x3b\x9c\xbb\x97\x7a\xc2\xc4\x75\x3b\x27\x16\x3e\x22\x16\xbb\xd2\xdd\x62\xf2\x89\xae\x0e\x70\x06\x20\xda\xf1\xd2\xc5\x62\x72\x5c\xd9\x6d\x61\x73\xa7\xd7\xa0\x4a\xcb\x91\x77\x6b\xea\x7b\x86\x03\xce\xec\x90\x29\x22\xc9\x62\x44\xd2\x97\xc4\x95\x6b\xb0\xf2\x5b\x01\xfd\x81\x47\x57\xf4\x2c\x79\x45\x1c\x25\x3a\xfa\x85\x5f\xa6\x43\xbc\x0c\xf9\x3d\xf2\x59\x84\xfa\x4a\x19\xe9\x91\xaf\x64\x91\x93\x89\x9e\x1f\x4e\x75\x9a\x12\x21\x4a\x9d\x1e\x81\x4d\x85\xfa\x81\x49\x79\x95\xef\x8e\x41\xa4\x6e\xf3\xfa\x20\xb1\x81\x4a\x20\x84\x98\x42\x44\x6e\x2d\x02\x6b\x60\x1f\xdd\x54\x7d\x00\xd9\xf4\x50\x37\xa7\xbb\xee\x0b\xf6\x0a\xaa\x74\x08\x25\x42\xb8\xb4\x79\x39\x64\x3b\xca\x4d\xaf\xd7\x90\xcd\x25\xa0\x7a\x14\xc2\x6e\xc5\x7a\x60\xc5\x21\x15\x05\x3d\x33\x48\xc9\x53\x6e\xc1\x45\xcd\xcc\x1e\x8c\x6e\x3d\x21\xb6\xf0\x89\x8b\xd8\x1d\x96\x3b\x5f\xda\x3b\xd1\xd5\x3f\x4d\x46\x2a\x7f\xca\xe9\x9d\x83\x10\xc6\x83\x8e\xe8\x91\xfb\xb2\x7b\x3d\x9e\xb2\xf9\x4a\x32\x19\x84\x6a\xa4\xc3\x98\x77\x6d\xe7\x2e\xed\xec\xd6\x38\x83\xfd\xf5\x24\x1a\xea\x3e\xf1\x43\xdd\x27\x0b\x15\xda\xd1\x47\xb9\xf8\xfa\x22\x0c\xab\xd7\x3d\x87\x0d\x42\x3f\xef\x0a\xb6\x62\x42\xa1\x07\x0f\x2f\x34\x58\x05\x64\x69\xd7\xd9\x09\xc6\xb4\x84\x74\x78\x55\xbe\x66\xe5\xcd\x7b\x29\xed\xe7\x82\xd6\xc4\xd3\xa9\x88\x03\x65\x0c\xd0\x09\xa4\x8d\xa9\x2d\x64\x71\xb5\x93\xe3\xad\x89\x38\x76\x12\x79\x78\x7b\x78\x77\x77\x85\x1b\x95\x59\xb3\x20\xc9\xb3\x65\x53\x36\x35\x5d\x2f\xd7\xcd\xed\xed\xfd\x92\x72\x5e\xf1\xe5\x2e\x17\x5b\x75\xa1\x2c\x41\x29\xfc\x6c\x0a\xcf\x13\xb8\x32\x21\x8f\x7f\xa5\x70\xa8\x38\x9a\x32\x80\xd6\xab\x08\x97\x95\xa2\x69\x45\xf8\x7e\xff\xd0\x1e\x1b\x78\x9a\x66\xb5\x86\x62\x1f\x25\xcb\x42\xbd\x4d\xf0\x83\x94\x8d\x85\x85\x75\x9c\x56\xe3\xf0\x41\x8b\xb0\xf7\x99\xea\xd0\xa3\x1f\x61\x50\xcf\x16\x2d\x42\xb8\xb1\xd8\x68\x00\xef\x90\x1b\x34\xf8\xee\x27\x28\x98\x63\x34\xa8\xb3\x15\x4e\x4c\x2f\x65\x1f\x56\x38\x31\xad\x9b\xda\x71\xa3\x40\x12\x57\xae\x8f\xb8\xc2\x2b\xcb\x02\x64\xc6\x25\xdb\xbd\x05\xca\xb4\x6b\xba\x04\xd0\xbf\xde\xbd\x9c\x78\x03\x03\x95\xa2\xbb\x35\xa6\xe5\x0d\x2b\xe9\xf7\xe5\xa6\x32\xb8\x72\x42\xc7\x15\x1d\x28\x36\xde\x34\x45\x21\x07\xa9\x37\xf5\xe8\x02\xe1\x2e\xd8\x9c\xe4\xe7\x8b\xef\x74\xb9\x69\xde\xe2\x43\x4d\x0e\x18\x60\xc5\xd5\x94\xab\xb4\xbb\x1a\x12\x80\x85\x73\x37\xce\xd7\x6b\xb8\x01\xbf\xab\xf8\x4b\xf8\x38\x13\xb8\x76\xce\xe9\xcc\xcb\xd7\xa7\x32\x13\x25\xdf\xd2\x0d\x2b\x59\x79\x73\x96\x9f\xc1\xfe\x3b\xb3\x4d\xf0\x33\xc9\x2c\xc3\x33\x8b\xd9\xde\x88\x9a\xad\xe9\x59\x5e\x9e\xa9\xea\xcf\x58\x0d\x19\xfb\x40\x94\xa4\x6b\x39\x6f\x46\xcd\xaf\x94\xe2\xf2\x0f\x15\x78\x3f\x24\x21\x1b\x64\x44\xd6\xce\x79\x9e\x84\x27\x50\xa3\xe8\xc8\x75\x82\xf5\x33\xeb\x7b\xc0\x32\xa3\xbf\x0a\x64\xc3\xa0\x01\x63\x2a\x07\xde\x5b\xf7\x4c\xef\x2a\xb0\x23\x60\x1f\xe5\x22\xcc\x05\x46\x1d\xd2\x2d\xf9\x1d\x12\x19\x9d\xf3\x05\x1a\x8b\x4a\xfe\x31\xba\x58\x60\xf9\xcf\x57\x0b\x04\x78\x35\xb7\x55\x53\x86\xa8\x32\x8a\x1b\xfe\x42\x58\x91\x87\x16\x6b\xe6\xd3\x2c\x34\xa7\x75\x55\xdc\xa9\x40\xac\x57\xf9\x2e\x13\x08\x37\x44\x0c\xd8\x38\x97\xa7\xbd\x21\xf2\x0f\x64\xe1\x2c\xf5\xd1\x6b\x40\xf4\x0b\x8f\xde\x86\x28\xb8\x71\x81\x0d\x22\xc6\xf7\xeb\x69\x39\x1a\x61\x18\xc2\xdb\x8a\x95\x62\xba\xc2\x66\x2b\x4f\x57\x2d\xde\x12\x85\xf2\x37\x30\x18\xf1\x16\x25\x47\xf2\xa9\x5b\x30\x7f\x34\xaa\xed\xf5\x29\xe4\xae\x09\xc9\x5d\x65\x82\x24\x86\x17\xf8\x96\x1c\x38\x0f\x83\xdb\x34\xcd\x76\x36\x25\x7e\xbf\x00\xd9\x68\x8c\x70\x4d\x7c\x56\x38\x3c\x78\xae\xe4\x74\x13\x9e\x3a\x24\x09\xd0\x5d\x48\x80\xee\x3a\x04\x68\xdd\x22\x5c\x8d\x01\xd0\x57\x91\xa1\x3b\x84\x0b\x72\xe7\x51\x1f\xbc\x33\x0e\x3f\x91\xbe\xdd\x2a\x1f\xb2\xfb\xa3\xc4\x20\x91\x42\x0c\xd3\xe2\x7e\x8b\x37\x8e\x22\x1d\xb8\xb9\x60\xda\x6e\x48\xe3\x93\xf8\x6b\xe2\x57\xe3\x9e\x2f\x8f\x36\x7d\x0d\xcd\x69\xca\x79\xd3\x23\xf9\xdd\x4d\xd4\x3e\x4a\x84\x6e\xf0\x12\x61\xd5\x35\x3d\x8f\x9d\x8e\xe9\xa7\x27\x74\x0b\x9f\xdc\x2d\x6c\x97\xea\x84\xde\xb5\x8f\x94\x59\x61\x93\x5a\x44\xe5\xce\xc5\x2b\x5c\xa0\x2e\x6a\x4d\xde\xe1\x08\x23\xde\xa9\xfe\xa2\x82\x2d\x49\x31\x2e\x6d\x46\x51\x9a\x0e\x01\xac\x6b\x66\x1e\x8e\x92\x71\x32\x12\x53\xcf\x8e\x58\x07\xf9\x1a\xbf\x0c\x5d\xe8\xa1\xc5\x11\x64\xa2\xdf\x79\x85\x7e\xb7\x70\x39\xdd\xf5\x90\xba\x64\xa3\x7f\xf6\x39\xd0\x04\x29\x59\x2a\xb7\x24\x6d\x04\xd5\x89\x15\xd5\x43\xcc\x70\x09\x56\x66\x7d\xc3\xf8\xf6\x96\xea\x09\x2c\xb2\x3a\x4a\x75\x82\xe7\x0b\xdf\x57\xf9\x09\x35\x44\x81\x49\x9e\x14\x62\x1d\xf7\x8a\x38\x64\x8a\x2a\xc3\xe4\xc6\x1b\x05\x62\xf0\x9d\xbc\x80\x3d\x61\xe1\x3a\xaf\xd9\x2a\x41\x8a\xb0\x0c\x38\xe1\x63\xfa\x59\xd0\x72\x9d\x3d\x18\x0f\xd4\x7e\x60\x79\x92\x99\xb1\xac\x15\xb0\xf8\x99\xab\x10\x25\x26\x42\xb6\x24\x1d\xa1\xc4\x29\x05\x6c\xba\x88\x12\x73\xb9\x5e\x5e\xdf\x20\x6f\xdb\x41\x08\x06\x30\x02\xc7\x64\x22\xf4\x50\x7a\xe9\x1e\xbb\x2d\x43\x4c\xa0\x96\x94\x38\x1a\x4c\xac\xee\x4c\xf6\xf5\xd4\xf5\x0b\x11\x56\xbe\x4c\x08\x8f\x74\xfe\x57\x90\x66\x94\x90\xc2\x6a\x5f\xbf\x66\xae\xa9\x3b\x65\xae\xa1\x4f\x11\x07\xe1\x96\x3c\x67\xe5\xa6\xfa\x07\xb6\xbb\x46\xaf\x89\x6c\x70\x5f\xed\xfa\xe5\x3e\x43\x4f\x88\xda\xed\x88\xb1\x6b\xba\xe3\x74\x25\x77\xef\xf9\x86\xe6\xa2\xe1\xb4\x3e\x12\x90\xa3\x89\x0e\xd6\xea\x9b\xe5\xdf\x1f\x87\xd7\xe9\x84\x06\x3f\x9d\x2c\x9c\x82\x98\x73\x68\xab\xbd\x37\x94\x8e\xec\x30\xe8\x61\xbe\xed\x3e\x8f\x68\x6e\xa8\x23\x90\x84\x90\x5d\xeb\x9d\x32\x3a\x7e\xf7\xe6\xc7\x0f\x2f\xdf\x2d\x5f\xfe\xf4\xf2\xf5\x87\xe5\xb7\x2f\xdf\xbe\x7b\xf9\xe2\x4a\xe1\x7b\xe9\x77\xcb\x17\x6f\x5e\xbf\x7e\xa9\x31\xbf\x3c\x89\x7f\x0d\x8c\xd0\x9f\x69\xfe\xf1\x55\xbe\x0b\xc0\x87\x4d\xba\x59\x6b\x0f\x7f\x7e\x81\xd2\xd4\xa6\x96\x7d\x68\x25\xe3\x01\xc1\x9c\x16\x46\xd2\x80\x88\x4e\x16\x03\x06\x59\xb2\x67\x7c\xce\x16\x0a\x1a\xd0\xe2\x28\x4c\x9f\x2d\xd9\xfa\x37\x3a\x59\x10\x83\x48\xbd\x6e\xa1\x84\xad\x13\x23\xa8\x71\xfb\xc6\xe1\x44\x20\x45\x47\xac\x3e\xb3\x8d\x0d\x72\xad\x72\xca\xe0\xbb\xb8\xba\xbf\x7a\xb2\xa7\x99\xce\x88\x22\x05\x6e\x70\x2f\xe3\x5d\x23\x40\xe5\x62\xa8\xaa\x58\x0c\xd5\xb2\xa6\x4e\x11\xd9\x77\xca\xb2\xa6\x42\xa3\xae\x90\xdc\xb5\x2b\xbf\xcc\x62\xa1\xaf\x3a\xec\x67\x09\x2a\x3c\xb8\x88\x0f\x66\x0c\x06\x15\xb1\x59\x3e\xef\x11\xa1\xfa\x8f\x01\xb7\x78\x7a\x19\x27\x19\x25\x42\x2e\xb8\x7e\xb9\xdf\xcf\x17\x0e\x45\x8f\x79\xeb\xa5\x1c\xc3\x96\x3f\xef\xc6\x3f\xef\x6a\xc8\x1a\xef\xd9\x78\xcd\xde\xd0\x20\x0f\x36\x5f\xcc\x68\x94\x2b\xac\x07\x0a\xaa\x6b\xe0\x69\xf8\x3c\x5f\xb8\x8c\x2c\x64\x72\x59\x3b\x54\xc2\xd1\xa8\x36\xd9\x58\xd8\xbc\x5e\x0c\x12\x30\xa5\x26\x90\x04\xa0\x5e\x55\x3b\x2a\xc5\x1b\xc9\x20\x89\x9a\x54\x90\x98\x38\x1f\x2f\x73\x50\x62\xff\xe9\xad\x46\x08\x89\x65\x45\xb2\x16\xc2\x4e\xd9\x8c\xaa\x6a\x6d\xa6\x51\xb0\xe1\x0a\x35\xd9\xe0\xf6\xc6\xca\x9b\x58\xcd\xdd\x7a\x7b\x65\x33\x3a\x6e\x78\xf1\x47\x7a\x0f\x75\xa9\xbb\xaa\x6b\x43\x3f\x21\xd4\x19\xea\x9f\x26\x23\x95\x31\x79\x68\x10\x3e\x1f\x5a\x5f\x6b\x7a\xc8\xfe\xa9\x06\xeb\x2c\x45\x72\xcd\x66\xe5\x7c\x35\x7e\xff\xe1\xea\xc3\xcb\xe5\xfb\xbf\xbe\xfa\xe6\xcd\x0f\x8b\xe9\xd1\x3a\x40\xbc\xc0\x39\xe1\xe1\x3e\x55\xba\x0c\xe1\x03\xe7\x57\x7a\x94\xf3\x7c\x21\xc5\xd1\x9b\xc0\xfc\xe0\x9b\xae\x1b\x34\xe6\x74\xdd\xac\x7c\x4c\x63\xcf\xe5\x0b\x12\xe9\x37\x73\xb1\xc0\xb4\xc5\x35\x52\xe1\x78\x9a\x24\xba\x7b\xf5\x8f\x34\x8a\x08\x4b\x0f\x14\x7f\x24\x89\xb3\x1e\x7b\xe4\x43\x80\x99\x91\x95\xae\xe9\x17\x57\x1b\xfd\xd4\x56\xbc\xd4\x72\xc7\x77\x15\x8f\x56\xec\x45\xed\x04\x47\xd1\xb3\x67\x8d\x93\x91\xdd\x6e\xfb\xfd\x63\x05\x77\xbc\xda\xa1\xfd\xfe\xa1\x6d\xb5\x87\x8c\x70\xdc\xdd\xb1\x01\xb5\xe0\x01\x11\x09\x0d\x5a\x53\xd8\x69\x4a\xf4\xd5\x8e\x26\xda\x01\xc8\xbd\x4a\xcc\x2b\x9d\x22\xf2\x27\x46\x3f\xd5\x3a\xec\xce\x5c\xcb\xef\x68\x37\xbd\x61\x40\xc8\xdc\xbd\x3c\xe0\x3e\x8a\x4f\x94\x4a\x29\xb9\x78\xcc\x4a\x75\x0a\x4c\xf3\x9d\xf1\x2a\xa3\x17\xf4\x82\x96\x22\x74\xfd\x5e\x2b\xab\x86\xac\x71\xbe\xd0\x9f\x1f\x1c\xa8\x1b\xa6\xda\x2c\xe6\xb7\x5f\xa1\x7c\x73\xe8\xf9\xa3\x1e\x51\x11\x45\xf9\xd3\xe0\xa0\xf5\x2e\xa2\x1d\xef\x9a\x88\x4f\x10\xc4\xb5\x6e\x0e\x83\xef\x40\x2a\xca\x7c\x0c\xab\x76\x4b\xd7\x2c\x17\x1e\x91\xf9\x67\x75\xdf\xde\x47\x47\x3b\x86\x2b\xc2\xe6\x93\x05\xce\x09\xd3\xfa\xd9\x0b\x74\xd9\x1b\xf3\xa1\x9e\xdb\xf1\xcf\x2b\x6b\x3a\xce\x91\x8e\xe3\xdd\x70\x1a\x0b\xa6\x7b\xcc\x05\x05\x3e\x33\xb0\xb8\xf9\x21\x2f\xad\x7f\xfa\x32\x7b\xed\x3e\x6d\x95\x3b\x69\x67\xfd\x04\x19\xdd\x53\x29\xbf\xf7\x55\xac\xda\x21\xaa\x53\x4a\xca\x96\x0c\xfc\xdb\xd8\x26\xe3\xa4\xd2\x5f\xf4\x25\xcd\x8c\x21\x3c\xec\x7c\x6c\xb4\xef\x91\x13\x9f\x20\x8b\xf6\x2f\xe5\xb4\x99\x2b\x92\xe3\x64\xe7\xdd\xef\x75\x82\xa6\xf3\xc5\x65\xe7\xf6\x11\x51\xa8\x63\x3a\xce\xd7\x6b\x93\x38\x25\x13\x23\xc0\x17\xc3\x54\xa1\x88\xe9\xab\x1e\x4c\xc7\x90\x49\x0e\x77\x7a\x4b\x78\x7b\xe7\x12\xb4\xf7\xba\x5b\x10\xed\x76\x55\x2b\x9c\x7f\x9f\xa4\x15\x63\xd0\xaa\xbf\xb9\xa3\x9c\xb3\x35\xad\x65\x17\x61\xbd\x80\x05\x04\x6a\x0e\x63\x41\x81\xeb\x17\x16\xdd\xdb\x5d\xad\xc4\xf7\xe5\xa6\xd2\x1a\xe1\xad\xde\x18\xd7\x0e\xc4\x0e\xaf\x89\xfc\xee\xed\xd5\xbb\xab\x57\xef\xcd\x87\x83\x66\x1c\x4c\x5a\x7f\x7a\xac\x77\x56\x33\xbe\xcd\x77\x73\xba\x18\x08\x23\xe4\xae\xfd\xe3\xba\xca\x8b\x55\x53\x40\x04\xc1\x6a\x4b\xe5\x1d\x95\x69\x73\x59\x87\xa7\x10\x8a\xb3\xc3\xa6\x1a\x79\x9a\xb7\x86\x15\x62\x92\x50\x8f\x9b\x72\x4d\x57\x15\x28\x3c\xb4\x34\x05\x5e\x90\x21\x0a\x0c\xc5\x15\xd2\xaa\x8f\x1d\xb9\xd1\x26\xa0\xee\xc4\xb8\x4f\x7c\x89\x83\xe3\x9d\xd6\x06\xc2\xbe\xef\x5d\x14\xda\x13\xd6\x83\xb8\xb2\x6a\xc3\x7a\x5b\x35\xc5\xfa\x1d\x2d\xd7\x94\xeb\xdc\xca\x1c\x7e\x7c\xa0\xb7\x3b\x39\x7c\x70\x1f\x82\xfb\xce\x6e\x9d\x98\x91\xbc\x93\x71\xd4\x5f\xa7\xc3\x13\xca\xa3\x13\xca\xf5\x84\x72\x33\xa1\x83\x52\xed\x1f\x35\x9b\x08\x38\x80\x6b\xba\xa9\x38\x7d\x25\x19\xed\xde\x65\xb5\x91\xb4\x2c\xf6\x86\xd3\x35\xe3\x9d\x28\x1a\xf9\x5c\x4b\x4f\xd6\xe5\xb7\xc7\x2b\x68\x9f\x0b\x55\xa9\x3d\x2e\xf4\x33\xc0\x2e\xdc\x86\x4d\x59\x84\x3f\x2d\x72\x47\xef\xf9\xdb\x7c\x97\x38\x89\xa5\x01\x81\x14\x81\x44\x1b\xa0\x0c\x4a\x11\x62\xbf\xaf\xd3\x14\x4a\x98\xa4\x8f\x05\xec\x5d\xb1\xda\x66\xcf\xfe\x6f\x36\xfe\x1f\x08\x64\x56\x34\xd0\x60\xf6\x05\xe4\x64\x2b\xe6\x17\xf2\x3e\xa1\xf3\x66\x21\x37\xe4\x70\xd2\xca\xda\x55\xee\xb5\x0a\x59\xde\x2c\xe0\x85\xa9\xce\xdc\xa1\x0d\x35\x60\x7c\x7a\x7e\x61\x70\xdc\x8d\x44\x7b\xe4\xac\xce\xc3\x6f\xcf\x2f\x16\x76\x9e\xfc\x6b\x67\xc3\xca\x35\x4c\x65\xc6\x70\xde\x65\x53\x0f\x44\x54\x80\xa5\x0c\xbe\x51\x1b\xcc\xca\x26\x59\x87\x72\x53\xa4\x39\x23\xdb\x4a\x4f\x57\xe6\x6e\x9b\xee\xd2\xd4\xa2\xe2\x34\x41\x08\x3e\xb6\x37\x8e\x8f\x5a\x97\x77\x8f\x58\xef\x30\x50\x4f\xef\x26\x20\x71\xa8\x3e\xe2\x14\x6b\xc1\x50\x77\x30\xb8\x5c\xa2\xfc\x63\x54\xa8\x2e\x09\x8f\x09\x5a\xce\x91\xae\xec\x5c\x6e\x69\x9a\x51\xd2\x7d\x88\x30\x8f\xfb\x7e\x50\x0d\x56\xd2\xbd\xd7\xe2\x39\x48\x7a\xdd\x73\xa8\x4d\x16\x4a\x15\x30\x9b\x90\x3d\x29\x31\x79\x52\xe0\x83\x83\xf5\x2f\x0a\x4d\xa0\x0e\xb0\x2d\xb3\x27\x89\x95\xd6\x41\x83\x28\x2a\x94\x5f\x17\xfe\xca\x95\xb3\x25\x50\xbe\x29\xb5\x48\x74\xdd\x49\x57\xf0\x6e\xea\xd4\x95\xe6\x8a\xaf\xd2\xb4\x72\xbb\x71\xbf\xd7\x29\x11\xf4\xb1\x50\x1b\xb2\xee\xe6\x4c\xca\xad\x5f\x51\xb7\xe4\x3c\x5f\x98\xa3\x03\x35\xfb\x84\x48\x51\x34\x9f\x56\xc7\x53\x2b\xcb\x12\x19\x72\xa5\xa3\x6c\x51\x49\x20\xa1\x52\x87\x89\x1b\x94\xfb\x7d\x3f\xb3\x88\x1c\xd6\x8c\x13\x3a\xcd\xb4\x88\x23\x74\xfb\x51\x56\x4a\x10\x8a\x50\xcf\xb9\x15\x07\xae\x26\x9e\x66\xb2\xbb\x0f\x28\x1a\x94\x90\x28\xb1\x94\x0c\x70\x25\xb7\xb7\xfc\xd7\x8f\xc6\x7b\x76\x83\x93\x71\x22\xc5\xf7\x72\x5c\x35\xa2\xa0\x02\x17\xc1\x86\xc7\x2b\xe3\xdf\x8e\x06\x8d\xa4\xa8\xc9\x6d\xce\xca\x04\x8b\x59\x56\x01\xa2\x9f\xe9\x6b\x4e\x68\x67\x30\x15\x9a\x66\x55\x18\xc3\x6b\x9a\xcb\x49\x85\x06\xc5\x7e\x9f\x15\x44\xcc\x68\x8f\xa3\xdc\xc4\xcf\x57\x85\xa6\x07\xdf\xec\xf7\xfd\x6a\xbc\xee\xa9\x3c\xe9\xdd\x2c\xe7\x85\x9a\xc4\x2d\x29\x06\x05\x39\x50\xf5\x16\xb5\xab\x34\x2d\x40\x34\x34\x44\x68\xa5\xed\xdd\x78\xe7\x7d\x65\x06\x3f\x4d\x46\x39\x1a\xd4\x69\x9a\xad\xc9\x7d\x46\x11\x4a\xd3\x9a\x10\xb2\x76\x9d\x81\x35\xd1\x99\x8a\x94\x36\x93\x3c\x80\x4e\x7d\xba\xc1\x72\x81\xa6\x35\x56\x6b\x31\x6d\x30\x58\xeb\x2b\xec\x75\xa9\xc0\xb6\xa5\x9d\x1c\xe3\x52\x54\xbb\x1f\xe8\x1d\x2d\xa4\x80\x6d\xb6\xb3\x75\xaf\xbd\x55\x19\x3a\x70\x89\x39\x16\x68\xb0\x56\x2e\x75\xa0\x72\x02\x53\x5d\x85\x14\xdc\x60\x55\xae\x68\x87\xb5\x4c\x96\x35\x15\x6f\xa0\x23\xb5\x96\x72\x59\xbd\xaa\xca\x92\xae\xf4\xe3\x18\x31\x02\xc0\x8f\x7e\x3e\xf9\x99\x90\x9b\x1e\x22\x17\xd5\x36\xe3\xd6\x1a\x2a\xfb\x3d\xf3\x7f\x44\x76\x8c\x26\x39\x08\x61\xa1\xf2\x51\xaa\x4d\x08\xdd\xed\xf6\x0a\xfc\x12\xbd\xc4\x20\x47\x69\x9b\xef\x48\x0a\x17\xb1\x46\xd6\x33\x80\x72\x16\x60\x4f\xf3\x5b\xf1\xd6\x80\xc9\x3b\x32\x3b\xee\x5e\xba\x37\xb4\x3e\x4d\x21\x83\x4f\xb0\x2b\x84\xdd\x15\xae\xf7\xde\x8a\xc5\xba\xa6\x7d\x99\x64\x0f\x07\x95\x9e\x5b\x02\x8e\x38\x15\x1c\x76\x8d\xca\x08\x10\x81\x7a\x93\x55\x2a\x8d\x97\xda\x6a\xaa\x94\xd9\x6f\xa6\x06\xbd\xed\x40\x87\xeb\xef\x3d\x93\x08\xca\x6c\x40\x03\xa9\x72\xda\x16\x42\xad\xa7\x61\x51\xc8\x5e\xc7\x62\xf8\x23\x8a\xa3\xe0\x51\xdf\x90\xe7\xcd\xd5\xc0\x85\xd6\xba\x84\x32\x5f\x4f\xe4\xa9\x0c\xb5\x3c\xa7\x76\x5d\x32\xce\x0d\x2b\xd6\x76\xa7\xbc\xa2\x22\x5f\xe7\x22\x0f\x39\xe2\x2a\x0a\x06\x79\xef\x6e\xfe\xd8\xa6\xf8\x42\xdb\x3e\x24\xc5\x19\x9a\x14\x55\xdd\x54\x38\x7e\x0a\x77\x48\x72\x5e\xea\x3d\x2c\xb7\x87\x0d\x8a\x9b\x97\x23\x9b\x48\xad\xcd\x40\xce\x3d\xa6\x18\xf6\x38\x56\x7c\x7e\xe1\xa2\x72\xd2\x54\x4b\x78\xce\x7b\xe1\x46\xb1\xf3\xdc\x0f\x31\x92\x0c\x4c\xf7\xc1\x7e\xaf\x95\xdb\x8c\x74\xc4\x19\xc5\x52\x87\xa5\xe7\xcc\xa5\x3c\xee\xbf\xb2\x73\x50\x75\x84\x0a\xfb\x89\x6c\xc0\x33\xd6\xce\x7a\x4f\xa6\x59\xef\x11\x79\x68\x71\xc0\xf0\xf7\x4a\xe0\xa0\x2f\x48\xce\x62\x54\x07\x5c\x1b\xb9\x4d\xcd\x60\xaf\x1e\x14\x79\xd4\x66\x76\x4d\x30\x84\x17\x44\xc6\x2d\x7b\x58\x87\xb6\x36\x67\xb8\x51\x29\x5c\x6b\x67\x72\x69\x8c\x2c\x04\x99\x5b\x57\xa4\x00\xc1\x1f\x72\x7f\x0e\xf2\xb9\xfa\xb5\x20\xab\x59\x65\xfe\x9e\x5e\x67\x36\xb5\x81\x12\xbf\x0d\x67\x95\xbb\xf5\xbe\xf6\xb4\xf2\x41\xc2\xef\x8c\x22\x95\x28\xf9\x0a\x65\x54\x2b\xe9\x10\x9a\x7a\x5b\x65\x69\x6d\x5a\xd4\x32\x94\xce\x7d\xc2\xb9\xa6\x0d\x22\x6e\x35\x3a\x57\x1f\x57\xee\x33\x56\x58\x6a\xef\x74\xdc\xc2\x8b\x22\xaf\xeb\xec\x81\xa9\x00\x1c\xed\xcc\x30\x1d\x4e\x5a\x84\xef\xbc\xd0\xda\xda\xb3\xdd\x9a\x4f\xb3\x6a\x7c\x05\x1d\xd4\x40\x1e\xb8\x72\x71\x62\xdd\xa4\xa6\x47\x31\xee\x1f\x5a\xec\xb3\x46\x1a\xe2\x1e\xec\x6f\xea\xef\x90\x73\x51\xcf\x40\xa0\x9a\xc2\x9a\x9a\xf8\x29\x94\x3d\x74\xd2\x0d\xdc\x19\x10\xf7\xbe\x34\xd1\xe1\x25\x7b\xa2\xb4\x3e\xe6\xa5\xf1\xf2\xb1\x98\x49\x0f\x52\x82\x9b\xfa\x8e\xcd\x46\x41\x11\xba\xb2\x00\x33\xe4\x98\x79\x23\x19\x97\x92\x7f\x94\x93\xae\x44\xc1\x8c\x83\xd9\xae\xf6\xfb\x4d\xb5\x72\xab\xec\xe4\x5a\x30\x09\xee\x6d\x12\xe0\x16\xe1\xe5\xcf\xbb\xee\x24\x74\xc7\xaf\xc1\x68\x70\x7e\x92\x7e\xb2\x8e\x8b\x4b\x0d\xa9\xe3\x0c\x60\x8e\x4c\x2e\xe0\xb8\x89\x25\x41\x78\x15\xa4\x61\x2b\x5c\xa4\xe6\x40\xe5\xd6\x55\x16\x79\x57\x47\xd3\xa9\x00\x48\x20\x8d\xe8\x41\x4a\x79\xb0\x19\x79\xf0\xcf\xde\x74\x38\xc1\x72\xcb\xca\x7f\xc1\x96\x29\xff\xc8\x6b\xb9\xa5\x1d\xf9\xb3\x5a\x11\xda\x15\x98\x0c\x2c\x75\x4e\x1e\xda\xcb\x80\xaa\xe5\x98\xce\xab\x05\xe6\xf3\x6a\x81\x70\x39\xaf\x16\x24\xc7\x4c\xfe\x33\x9c\xd8\xc4\xc4\xb5\xac\x98\x23\x20\xcc\x9d\x8a\x6b\x94\xa6\x43\x36\xaf\x17\xc6\xa0\xdb\xad\xbf\xc1\x7c\x5e\x2f\x30\x95\x45\x70\x39\xaf\x17\xa4\x31\xc7\xb5\x6c\x33\x50\x74\xd9\x88\x2f\x27\x3c\xfb\xa4\x30\x5b\x23\x5c\x68\x07\x82\x15\x38\xbe\x86\xc2\x72\x8d\x73\x84\x29\x29\x8c\x2a\x70\xbe\xc0\xb7\x72\x06\xef\xc8\xdc\x5d\x0d\xf7\x87\xe7\xe6\x1e\xa5\x69\xa2\x73\xd5\x99\x87\xc9\x90\x90\xfb\x34\x4d\x14\x1c\x1e\xfc\x32\xbe\x97\x74\x7e\xbf\xc0\x4b\x72\xa3\x4c\xca\x92\x2b\x55\xe2\xc1\x27\xe3\x89\xe1\x6d\x24\x49\xa7\x96\x69\x9a\x7d\x82\xb4\x98\xf2\xfb\x97\xe4\x66\x9c\xd7\x7a\x7b\xc6\x0d\x9e\xd9\x3d\xc2\x9f\x83\x7d\x73\x8f\x06\x9f\xc9\x75\xf6\x59\x55\xf1\x9e\xdc\x8c\xe5\x56\x00\x13\x60\x05\x7f\xbe\xd9\xa0\xec\x33\xc2\x6f\xc8\xa1\x6a\xb3\xcf\xf8\x25\x7e\x8f\xf0\x15\xc9\x47\xc9\x34\x19\xdd\xe3\x8f\xe4\xe1\x80\x96\x75\x1a\x36\x8d\x83\x6d\xf8\x19\xdb\xda\xc3\x8f\xde\x78\x2f\xcc\x13\xd8\xb0\xef\xb1\x32\x59\x4e\x5f\x62\x79\xad\x4c\xef\x71\xdf\x16\x3f\xbd\xea\x12\xc3\x1c\x2b\xad\x01\x1c\x3c\x50\x6f\x4e\x3f\xa9\x0c\xbe\x9a\x78\xaa\x43\xb0\x6c\x07\xb7\xf3\xfb\x05\xb9\x9d\xbf\x94\xff\xbb\x5a\x90\x8f\x78\xa7\x64\x9c\x8f\x40\xea\xe5\x5f\xf7\xe6\xe2\x7a\xf8\x79\x57\x4f\x77\xf8\x36\xdf\x4d\x6f\x71\xa0\xf6\x9e\xde\x61\xa5\xa2\x9f\x3e\x18\x53\xe2\xb4\xcf\xb3\x95\xe4\x76\x4e\x17\xca\x2a\x69\x1d\x00\xb4\xdb\xfa\xa3\x1f\x19\x5e\xa4\xf7\x2d\x8e\x38\x2c\x94\x4a\xe5\x15\xd8\x06\xbe\xb4\xee\xbe\xd3\x42\x29\x89\x73\x8b\x70\x4d\x7d\x92\xff\xab\xe2\x32\x9c\xae\x85\xda\xef\x87\x10\xab\xce\xea\x0f\xb4\x96\xfd\x44\x99\x49\x74\x7c\x99\x95\x1d\xfb\x96\xec\xb1\x56\x33\xc2\x14\x49\xa2\x60\x3c\x95\x2c\x92\xb8\xb6\x45\xe5\x30\x2c\x80\x1c\xf0\x74\xb8\x67\x01\x24\x82\x52\x8e\xab\x82\x53\x3f\x76\xd4\xaa\xb6\xa7\x5d\x75\xe5\x51\xaf\x99\x04\x8d\x6f\xf3\x1d\xae\x82\xab\x81\x22\x63\x65\xf4\x9f\x72\x64\xfc\x68\x2a\xdf\x8f\x46\x65\x91\x27\x6c\x5e\xcd\xf3\x05\xf4\xbc\xd6\x3a\x51\xdb\x52\xdc\x97\x20\xab\x11\x4e\xb4\x21\x12\xd4\x5d\x09\xea\x4c\xbc\x1f\x75\x69\x95\x5d\xca\x70\x89\x06\xd7\x9c\xe6\x1f\x4d\x42\xcc\xe1\xa4\xc5\x1b\x56\x76\x88\xc8\x81\x09\x61\x9b\xac\xeb\xf2\xdc\xf7\x78\x72\x39\x6b\x9d\xed\x83\xe1\x8a\x1c\xd3\x8e\x9b\xab\xdd\xf0\xc1\x35\xc9\xc7\xcb\x90\x0b\xce\x2a\x79\x87\x83\xad\x45\x21\x64\xd5\x97\x71\xf3\x59\x8e\x2b\x27\x5f\x17\x64\x72\x59\x3c\xaf\x25\xa7\xec\xa6\xde\xaa\x85\xe0\xf9\xbc\x58\xe0\x35\xd9\xaa\xde\xe0\x1d\x59\xfb\xda\xb1\x5b\xb2\xd5\x7e\x18\x67\x0a\xf6\xd3\xfc\xc4\x77\x26\x4b\xd2\xbd\x97\xc1\x14\x52\xbe\x67\xa6\x0c\x9a\x65\x77\xde\xd6\xd9\xe1\xad\x72\xd5\xc0\xf7\x64\x1d\x25\xdd\x77\xd8\x56\xbf\x05\x6a\x8f\xd0\xf4\x76\xe6\x72\xa1\xdf\x13\x3a\xbf\x5d\xa0\x34\xcd\xee\x54\xea\xf7\x48\x1d\xf7\x91\x3a\xb2\x7b\xb2\x1d\xc7\xa9\x39\xbe\x23\xd7\xd9\x36\x64\xfe\x11\xde\x1d\xf0\xc6\x58\x1f\x72\xc5\xb8\x1f\x92\xa0\x09\x55\xd1\x43\x57\xc0\x7b\x53\x16\xf7\x69\x3a\xbc\x18\x12\xc2\xcc\x2d\xbb\x3e\xb0\xc9\xb7\x48\x05\x10\xe8\xa6\x6f\xb0\x0b\x7e\x1f\x2c\x67\x8c\x0c\x27\x53\x48\x4a\xb1\x04\xa3\xce\xf0\x02\xb5\xce\x9e\x60\xa6\x1a\xdf\xa1\xb6\xd7\x2d\x22\x67\x26\x3e\x1b\x04\x78\x81\x21\x3f\x0a\xd0\xb2\xdf\xab\xc0\xb3\xec\x41\xe5\x99\xbf\xc7\x77\xac\x66\x3a\x5d\xd8\x47\x7a\x3f\xbd\xdd\xef\xcd\x1a\xb4\xa8\x65\x69\xca\x23\xf1\xfb\x6a\x4f\x1e\xb6\xc1\x7a\xc2\x9e\xde\x9a\x8a\xea\x0c\xf4\x4f\x6f\x97\x1e\x72\x9d\xc1\x89\x5e\x28\xb3\x4c\x2d\xc2\xfe\x01\x1a\xaf\x0a\x9a\xf3\x4c\x5f\x11\xc7\xbc\x51\x6f\x71\x1d\xbc\x7d\x0f\xd9\x6c\x8f\x94\x27\x0f\x55\x39\xed\x7b\xd7\x1d\x81\x1c\x6e\x5b\x27\x97\xdd\xe2\x07\x67\xc5\x9a\x46\xad\x5e\xce\x8e\xf4\x14\xcb\x86\xb2\x83\x38\x03\x19\x45\x53\xd1\xb6\x0a\xa7\xb8\x92\x5b\xe7\x3b\x9e\xdf\xd2\x4f\x15\xff\x08\x62\x25\xca\xee\x14\x23\xf6\x89\xdc\x79\x0e\xe6\x9f\x9e\xea\xab\xfd\x44\x00\xae\xff\xe7\x9e\xd9\x3a\x5e\xe7\x08\x78\xc7\x93\x93\x29\x9c\x92\x35\xf7\x49\xce\xdc\x4f\xcd\x05\xfb\xb4\xc4\xb1\x4b\x0d\xf0\xe9\xb9\xa2\x7f\x71\x6e\x55\xab\xf6\xb8\x93\x1b\xff\x83\x96\x3f\xd5\x3e\x55\xd9\x33\xde\x17\xd5\x27\xcf\x4d\x89\xdd\x3a\xc4\xd8\xb2\x12\x6c\x73\x6f\x38\x66\x75\x0f\x67\x49\xc3\x0b\xe3\xef\x06\x76\x8a\x00\x55\x41\x3b\xae\x39\x68\x06\xd8\xce\x85\xa7\xf4\x0c\x5c\xdb\x70\xb2\x66\x6b\xd7\x7a\x82\x5a\x5f\x8d\xa9\x2e\xfa\xe3\xdf\x7f\x62\x45\xe1\x55\x80\x39\xf2\xb5\x82\xa1\x8b\x21\x35\x9f\x81\x66\x85\x5c\xc5\x73\x69\x5d\x13\xa5\x51\xf2\xf4\x35\x05\x5b\x51\xbc\xfc\xd5\x9c\xc0\x2d\x2e\x8f\x8a\xdc\x16\x3d\x84\x89\xce\x73\x80\xe2\x8b\x14\x35\xcf\x24\xff\x0d\x98\x0e\x9a\xd1\x53\xd9\xdc\x32\x95\x1a\x41\x78\x44\x96\xe8\xfc\xef\xf2\xa1\xc2\xf6\x58\x43\xac\x6e\xf0\xc2\x44\x13\xaa\x90\xcd\xfa\x50\xa5\x2e\xe8\xf0\x9b\x7b\xd5\x9b\x78\x41\x7f\x7b\x98\x0e\x7b\xfb\xc3\x8e\x01\x7c\x27\xff\xd4\xd0\x86\xae\xdd\x25\x47\x05\xe5\x6a\xdf\xd5\x72\x53\x46\x71\x73\x2a\x87\x54\x1f\x71\x99\xaf\xc7\x4b\x56\x32\x35\x5f\xfc\x0f\x11\x3d\x3e\x78\xe1\xdf\x44\x90\xdf\x91\xf6\x41\x53\x79\x89\xca\x9e\x12\x27\x3e\x33\x1e\xa2\x5f\xe9\xed\x92\xc6\xcf\x26\xfc\x54\x64\xa0\x06\x97\x6a\x84\x2b\xd2\xf4\x47\xb8\x92\x3d\xeb\x23\x03\x69\x34\x01\xcc\x49\x85\x4b\xc2\x22\x0b\x36\x17\x0b\xb0\xd9\x72\xf9\xf6\x86\x8a\x97\xc1\xc2\x67\x25\x92\xe2\xd7\x38\x08\x94\x34\xb1\x09\xce\xb8\x8e\x1b\x67\x72\xcf\x41\x39\x57\xcf\xa9\x55\x9b\x37\xe6\x01\x19\x4e\xf0\xd0\xea\x82\x79\xa0\xdb\x53\x75\x75\x22\xd4\x5c\xf0\x58\x8e\x0b\x13\xac\x86\x50\xd8\x5c\x0b\x6c\x6e\x10\x13\x01\x3e\x8c\x69\x2a\x85\xbb\x75\x2c\x2c\x06\x65\x0d\x3a\x1a\xaa\xbe\x6a\x6a\x51\xdd\xba\x58\xf5\x33\xc5\x2e\x9d\x55\xa5\x17\x9b\xae\x62\xd7\x75\x84\xba\x86\x06\x55\x31\xea\x66\xe0\x2d\x20\x06\xb8\x76\x63\x8e\x19\xd1\x45\xa1\x4a\x90\xb5\x46\x93\x6e\x60\xfe\x7e\xbf\xee\xc5\x00\xc9\xc6\x9a\x3e\x54\xaf\x08\x88\xa7\xb7\xf3\xa9\x46\x02\xce\x82\xcc\x07\x0c\x27\x1e\x64\x98\x14\x52\x91\xac\x38\xa0\xd0\xc1\x28\xf2\x2e\x1f\xc6\xc2\xc2\xb8\xf3\x1b\xa0\x62\x56\xe3\x90\x64\xf7\x1c\x73\x22\xb5\x86\x5f\xe0\xee\x03\x8b\x1a\xb5\x0a\x09\x7c\xdf\x8d\xc1\x98\x0c\x20\x25\x4d\xc6\x90\x7d\x23\xbf\x85\x45\x75\xe8\x94\xc1\x50\xd9\x71\x10\x4b\xf3\x75\xc4\x35\x0d\x3e\xf6\x2f\x4a\x9d\x3f\x99\x8e\x45\x15\x5c\x8e\xde\xfa\x74\x5b\xeb\x81\x5c\xae\x3c\xcf\xea\x6f\x99\x22\xe2\x71\x8f\x2c\x3a\xfe\x94\xd7\x57\xd7\xb0\x3f\xa5\xb0\xc0\xcc\x8f\x59\x36\xc1\xb7\xe3\xa2\xba\x81\xdf\x28\x13\x68\x9a\x39\x70\xcd\xe1\x85\x8d\x4b\xa7\x63\xf8\x03\x0b\xac\xb9\x7d\x84\xd9\x78\xc9\x6a\x68\x54\x59\x2b\xd6\x99\x2e\x84\x66\xe0\x7d\xa9\xb1\x9c\x8d\x57\x7c\x30\x84\x0c\x42\x77\x55\x69\xd9\x62\x2e\x9b\xcf\xdc\x33\x18\xdd\x52\xf7\xc3\x4d\xf3\x0b\x1d\x39\xd5\x77\x91\x66\xdd\x0f\x7e\xa0\xf9\x5d\x2c\x2d\x01\x14\x8c\xa5\x47\xb0\xe6\x20\xfb\xee\xf0\xc1\x71\x65\x1e\x3f\x3c\xa0\x3b\x86\x29\xb0\x87\x13\x50\x02\x9b\x36\xb3\x39\x9b\x11\x5e\x05\x62\x83\x11\x17\xe0\x46\x6e\xf0\xc6\x9a\x19\x6a\xc1\x1b\x49\x33\xc7\xeb\xba\x30\x68\xd9\xf5\x7e\x3f\xbf\x59\x60\xe7\x75\xcb\x8a\xf5\xb7\xef\x7f\xc8\xd0\x60\x6b\x70\x28\x7c\x15\x89\x43\xa3\xc0\x9d\x00\xf7\xe1\x04\x57\x5a\xe1\x07\x7e\xda\x75\x4d\x39\x78\x5f\x81\x4a\x26\xa6\xaa\x9b\x5c\xd2\xe7\x1b\xa3\xc6\xa0\xa3\x11\xda\x00\x22\x5a\x5e\x14\xda\x1d\x1d\xe1\xd5\xf8\x36\xdf\x65\xdb\x00\x38\x05\x7b\xdd\x3c\x00\xb4\xb1\xdc\xe6\xf5\xab\x6a\xdd\x14\xf4\x9b\xbc\xa6\xeb\x77\xca\xd1\x0a\x98\x52\x75\x1f\xf3\xf8\x7d\xcc\xc8\x43\x1c\xbe\x60\x4a\x71\x07\xd3\x62\x1a\x09\xee\x89\xdc\x49\xe7\xb7\xf9\xce\xb8\xda\x75\xc3\xf6\x3b\xa9\xa2\x63\x0c\xd1\x9c\x02\x12\x49\xfc\x0d\xe1\xa8\xb5\x8e\x33\x72\xad\xad\xde\x03\x18\x09\xcc\x4c\x02\x81\xe3\x5c\x51\x3f\x9b\xc0\xcf\xaa\xf0\x5b\x53\xe0\xa1\x85\x8a\xe2\x93\x1a\x65\x87\x7a\x53\x0b\xa6\x7f\xea\x70\xa4\xad\x52\x80\x5b\x0b\xb0\xb7\xcd\xc6\xcb\xa5\xba\xbb\xf9\xfd\x72\x69\xfc\xe4\xf8\xf8\xb6\xdf\xba\xbb\x2e\x2d\x7c\x92\xca\x91\x22\x72\x2e\x74\xf2\xf6\xc7\x19\x36\xc9\xde\xb1\xbc\x00\x40\x4a\xab\x03\x06\xef\x4f\xc5\xf4\x81\x5e\xd7\x22\x7a\x83\x97\xe5\x61\x9e\xcf\x4b\x82\x73\xe7\xd0\xe6\x2d\xae\x7d\xa6\x9c\xbb\x14\xca\x13\x90\x2b\xc5\x4a\xe8\x5f\xad\xce\xf0\x62\x9a\x8e\xef\x70\x9d\xaa\x03\xca\xfd\xa0\x5b\xce\x50\x6f\x56\xbb\x5d\x33\x18\xae\x5e\x89\x58\xc6\x53\x64\xd0\x41\x02\xbe\x57\x9e\x1e\x1f\xcf\xbf\x13\x87\xe0\x06\x28\x09\x17\x1e\x4e\xd4\xee\x73\x5e\x29\xfe\x48\x6c\x38\x28\xab\xb5\x3b\x0d\x2b\x6f\xd2\xb4\xf3\x8c\xae\x8d\xc5\x54\x98\x04\x1e\xa7\xf8\x43\x41\xa0\xbb\x52\xd6\x3a\xff\x8a\xc9\x65\xe5\xc2\x3e\xab\xd1\x08\x3d\x50\xc2\xe7\x95\xd6\xda\x5a\x05\x6b\x4e\xd6\xfd\x20\x5e\x0d\xf8\x66\xc3\x37\xb4\x8b\x42\x6e\xaa\x6b\x8c\x63\x53\x41\xde\x66\x0c\x0b\x9c\xcf\x9b\x05\x1a\x30\x52\x8c\x0b\xa6\x49\x46\x2d\xef\x82\x4f\xe5\x7b\xe5\x95\x02\xde\x99\x60\xcb\x06\x98\x0d\xcf\xa9\x4a\xb9\x8a\x0d\x09\xe9\x17\x57\xbe\x4e\xfb\x7d\x56\x7b\x2f\x51\x0b\xde\x9c\x0e\x8a\xb1\x26\x7f\x87\x3e\x40\xae\x40\x52\xb7\x00\xac\x64\xed\x1a\xa2\xda\x15\xc6\xf9\x0e\xf5\x1f\x8d\xed\x72\xa9\xb4\x33\x0c\x0d\xac\xa1\x62\x15\xa7\x99\x1b\xb2\x0a\xc8\xde\x1d\xa3\x9f\xa6\xe7\xaa\xaf\x89\x36\xeb\x07\x6d\x90\x8d\x11\x77\x8c\x16\xe1\x78\x0f\xf0\xca\x1a\xba\xcf\x3d\x1a\x71\x6e\x10\x81\xa6\x30\x63\x48\xf2\x89\x2f\xa0\xde\x77\x55\x05\x7e\x79\xb1\x21\xb7\x60\xdc\x3f\x90\x65\xc2\xa0\xa7\x29\x9c\xad\x67\xff\x92\x8d\x47\x68\xf6\x0c\xcd\x27\x8b\x10\xce\xb7\x07\xc6\x6d\xab\x53\x0e\xdf\xfd\x22\x87\x63\x06\x3b\x1b\x7a\x4e\x17\x99\x80\xa4\xcb\x96\xb0\xbd\xc8\x38\x56\x53\xcd\x65\xd5\xff\x6f\xa0\xc9\x37\x8f\x43\x93\x3f\x0d\x92\x7c\xf3\x44\x70\xea\x3c\x04\xa7\xee\x2e\x40\x07\x8f\x3c\xd7\x79\xe1\x1e\x0b\xf8\xfb\xe7\x00\x83\x5f\x76\x20\xc1\x2d\x7a\xec\x63\x81\x7c\x5d\xa8\x70\xfc\xc1\x04\xe2\xd5\xff\x3c\xb8\xf4\x3a\x02\x53\xf6\x4f\x02\x4c\x57\xa4\xf7\xe0\xec\x3c\x02\x9c\x1e\xac\xb9\xcd\x45\xea\x12\x8d\x55\x6a\xd1\x7b\xd0\xea\x34\x1a\xfa\x68\xaf\x0c\xf3\x81\x4e\x42\x16\x82\xcc\x1e\x0d\x98\xf6\xf5\x50\x5d\x70\x5a\x23\x3f\xd6\x60\xe9\xfd\xef\xdb\x71\x5a\x88\x39\x88\x45\x5f\x3f\x0e\x02\xdd\x9d\xb0\x00\x0d\x5a\x47\x28\x47\x32\x58\x05\x1f\x85\x06\x5c\x2f\xdc\x54\x8a\xb1\xe8\xd1\x74\x58\x3e\xcd\xb6\xcc\x48\x70\x4d\xd8\x84\xe6\x91\x3b\x84\x68\xc5\xe1\x63\x36\x1a\x2f\xe2\x3a\x33\x39\x22\x4d\xfc\x5c\xa0\xc0\xb4\xec\x81\x50\xce\x38\x16\x7a\x0f\x7e\xce\xc5\x02\x81\xac\xc7\x9b\x12\x65\xf2\xe7\x9c\x2f\x70\xa2\x7b\xa8\x8e\xdc\x49\x20\x10\x1d\xbe\x5b\xb2\xf8\x22\xae\xfb\x5e\x6e\x98\x0f\x7a\xed\x48\x8b\x6a\xec\x14\x64\x08\x67\x36\xcb\xd7\x6b\xbd\xb4\x07\xab\xed\x3b\x3b\x7b\xa4\x27\x0b\xa0\xab\xa3\x43\x71\x29\x3a\x1e\x55\xd1\x1a\xae\xd1\x31\xb6\x07\x84\xbc\x43\xe9\x1f\xd9\x41\x01\xa4\xef\xe6\x9f\xa6\x16\x5e\x93\xc5\xd2\xf7\x2b\x5e\xdd\x1a\xe7\x2a\xa4\x19\xff\x68\x9a\xcf\xca\x63\x96\x72\xf2\x10\xa6\x04\x9b\xd2\x76\x70\xec\xe3\x95\x91\xdd\x0c\x73\x94\x23\xd4\xb6\x3a\xd0\x4f\xf2\x85\x3a\x34\xc7\xef\x7b\xa6\x82\xce\xb8\x0d\x3a\x33\xa8\xfa\x58\x20\x1c\x03\xcb\xd5\xa9\xc5\xd2\xd4\xfc\x95\x1d\x28\x67\x33\x8e\xca\xa2\xf6\x87\x91\xbe\x63\x9e\xc2\x07\x39\x9c\xc1\x2b\xe3\x25\x29\x7c\x0b\x54\x89\x2b\x1d\xa1\xb8\xa6\x05\x15\xf4\x4c\xcc\xe9\x02\x8b\x79\xa5\x2d\xcd\x0b\xa2\x83\xab\xa2\x9e\x05\x25\x36\xe5\xb4\x1f\x99\x9e\x7a\xbb\x58\x84\x10\xe3\xe1\x39\x10\x20\x2b\xc7\xd1\x33\x4a\x0c\xde\x95\xc6\x15\x4d\x92\xc8\xf6\xe0\x20\xe3\xea\x31\xb9\x46\x84\xd0\x19\x9d\x26\xb9\x24\xe3\xca\xc5\xf7\x0f\xef\xdf\xbc\x1e\xab\xfd\xc6\x36\x92\xed\x9a\x26\x89\xca\x03\x78\xc0\xd5\xba\x53\x79\x7c\xd6\x40\x03\x59\xa6\x69\x16\x4e\x5a\xa9\x7d\xa0\x35\x2f\x75\xc0\x95\x82\xab\x4c\x29\x72\xd2\x4a\xed\x4a\xa1\xc7\xfa\x38\x76\x48\x6c\xb4\xd7\x4a\xe2\x56\xe3\x4d\x04\x6f\x28\x64\x26\x9e\x26\x65\x73\x7b\xad\x5c\x08\xc5\xec\x35\xfc\x9d\x51\xa4\x42\x7c\xdf\x6c\x32\x14\xcc\x13\x4c\xff\x15\xca\x60\xbe\x76\x39\xaf\xe5\x35\x83\xa6\x6a\xa6\x76\xbc\x29\xe9\xa1\xbc\x32\x87\x59\xea\x8e\xa7\x0d\xf5\xe2\x53\xce\x20\x47\x95\x76\xbc\xe2\x10\x17\x5e\x2e\x06\x2c\x4d\xd9\x61\x17\x0a\x31\x2f\x17\x69\x6a\x67\xbc\x5c\xb4\x9a\xc5\x3f\xa8\x81\xb6\x59\x11\x70\x45\x94\xb7\xe3\x06\x12\x0a\x2b\xf3\x3d\x58\xae\xc0\x14\x92\x45\xef\x70\x9c\x93\x07\x9d\x0b\x74\xb9\xe3\xd5\x8a\xd6\x9a\xd5\x70\xed\xf9\x2e\xfa\x95\x14\x38\x31\xd7\xa1\x21\xce\x3b\x96\x23\x97\x16\xb4\x9b\x23\x41\x7d\x63\x54\x26\x25\x32\xd6\xaf\x8c\x1d\x64\x2b\x7a\xac\x26\xf3\x51\x28\xba\x09\x0c\xf2\x76\x81\x3c\x09\xa6\xd6\x12\x4c\xad\x97\xf5\xb1\x41\x45\xe6\xb3\xe3\x9a\x77\xd0\x27\xc2\x2c\xae\x43\xa5\x75\x57\x5d\xc7\x2f\xeb\x60\x1d\xf3\xdb\xf1\x9f\x7e\x7c\xf9\xee\xaf\xcb\x0e\xe4\x40\xe0\x56\x9c\xa3\x0a\xdc\xa3\x6a\xb4\xdf\x67\x6c\x5e\x2f\x48\x3e\xaf\x17\x46\xe2\xdd\x34\x45\x71\xff\x7e\x55\xed\x7a\xd9\x20\x6c\xc2\xe7\xc3\x45\x58\x67\x31\x39\x66\xa8\xd5\x53\xd7\x5d\xcb\x83\x09\x39\x3e\x5a\x0a\x62\xfa\xb4\xbd\x5f\x43\x3a\x8c\xb2\x6e\xa4\x1c\xed\x5f\xc1\x75\xc6\x30\xf7\x37\x84\xe1\x9e\x62\x41\x21\x2c\x08\x0a\x41\xb8\xd4\x5e\xc1\x47\xcf\x6b\xf7\x2b\x18\xce\x0d\x15\x7f\x7a\xfb\x8a\xfa\x51\x49\x9e\x1c\xae\x54\x33\x2e\x66\x27\x50\x5b\x81\xf7\x10\x54\xd2\x09\xd8\x89\xd5\x64\x81\x4a\xe8\x5c\x9c\x5f\xa8\x3c\x15\x36\xe2\x58\x9b\xbe\xb5\xf0\xeb\xe2\x82\x6d\xa4\xae\xc3\x1b\x93\xa2\x26\x19\x4e\x30\xc4\xd8\x14\x64\xbe\xc0\x2b\x32\xb9\x5c\x3d\x17\x97\xa3\xd1\x0a\xb1\x8d\x3d\x3f\x76\x60\x19\x9d\xaf\x16\xc8\x09\x01\x1b\x32\xb9\xdc\x3c\x67\xbe\x07\xdf\x66\x34\x42\x92\xff\xf8\x79\x57\xcf\x37\x0b\x5c\x98\x48\xc7\xcb\x60\x0f\xd4\x98\x49\x72\xa5\x4d\x02\x39\xd1\x4a\xd4\x2d\x01\xdf\xe0\x02\x7c\x83\x6b\xab\x0e\xce\x2d\xd7\xec\x46\x47\xb6\x08\x6f\x15\x9b\x17\xdb\x79\x3d\xd1\xc7\x12\x4d\x1c\x6c\x26\x7f\x19\x2b\x32\x01\x28\x1b\xa3\x57\x7b\x9e\x5f\x8e\x46\x95\x9c\x88\xb2\x37\x11\x6c\x5e\x2d\x10\x72\xc0\x6a\x56\x97\xa6\xff\x28\xc8\x04\xa2\x77\xbd\x99\x29\x9e\xaf\xc0\xbf\x31\x6b\x08\x84\x05\x2b\xf7\x46\x64\xe3\x7f\x78\x9a\xd6\xf0\x63\xbf\xaf\x23\x40\x69\xb6\x48\xff\x95\xfc\xc0\x39\x42\x42\x21\xed\xe4\x98\xa6\xcd\x90\x90\xd8\x37\x80\x11\x18\x7b\xb1\x20\x7c\xde\x2c\xb0\xbe\x21\xe4\xdf\x6a\x63\x1e\x3b\x6f\xc7\x66\x1b\x76\x59\x10\xbb\x56\x47\xc0\x36\x3a\x4a\xc8\xd1\xa8\x89\xcf\x3b\x28\x23\x91\xe7\x41\x7a\x68\x96\x61\xfb\x9a\x49\xc6\x72\x47\x9a\x79\x16\xf2\x7e\x54\xf3\xcc\x0e\xcc\x33\x14\x89\xcd\x33\xf3\xe6\x19\x0a\xe9\x79\xae\x86\x84\xc4\xbe\x90\x1b\x77\x1e\x7b\xb1\x20\x62\x5e\xd9\x59\x96\x7f\x7b\xfc\xf6\xf6\x20\xf2\x08\x8b\x22\x8f\x30\x8d\x3c\x42\xb5\xf7\x1c\x1a\x1c\x6a\xd4\x86\xd9\x6c\xb1\x9a\x03\xcc\x3a\xb1\x65\x8a\x5d\x5c\x6d\xe9\xba\xb1\x96\xa3\xbe\xf5\xd8\xc8\x5d\x8f\xba\x4c\x2d\xeb\xfe\x3b\x02\x52\xa0\x69\xe3\x0d\x48\x83\xda\xb7\xcb\x95\xac\x95\xeb\x14\x4e\xb4\x63\x4e\xd8\x46\xa2\x81\xc4\xea\x71\xf4\x75\x1f\xaf\xf1\x09\xb7\xad\x02\x80\xda\x59\xf3\x93\x27\xa8\x86\xdf\x47\x1f\xc6\xae\xdf\x10\x0a\x67\xe0\x5c\xc5\xfc\x94\x3d\x0a\x12\xd8\xda\x9b\x27\x0e\x16\xdd\xa0\xc7\x1c\x9b\xef\xbe\xd6\x21\x32\xf1\x70\xe9\x14\x63\x55\x89\xe1\xd7\x22\xe5\x8e\xad\x9d\x64\x99\xa1\x2b\xb7\x39\xff\x08\x26\xef\xab\x5a\x1b\xbd\x23\x72\x79\xe0\x54\xe5\xcb\xe6\xa1\xb9\xfc\xb0\xf6\x26\xac\xc0\xa4\xd7\x91\x33\x51\xd0\xdc\x7c\xde\x35\xf7\xc7\x5b\x57\x67\xcd\x7c\xdf\xf3\xef\x89\x5e\xb5\x70\xb5\x72\x48\x26\x6b\x10\xfb\x01\x54\xd9\x85\x45\x5a\xbe\xac\xab\x65\xa9\xe6\x62\xb1\xdf\x67\xf2\x9f\x98\x63\x94\x45\x35\x55\x1a\x16\x30\x29\xda\xb0\x83\x98\xcc\x7f\x99\xe5\xa4\x56\x61\xd0\x2f\xb6\xac\x58\x77\xbc\x93\x04\x7e\x30\xd1\x9b\xd3\xe1\xc4\x4f\x29\xc0\x5a\x84\xc6\xd7\x55\x05\x31\x19\xaa\x35\x92\xbb\x18\x52\x5c\xb5\x19\xeb\x47\x4d\x7f\xea\x26\xca\xa2\x36\x9f\xc4\x25\xff\x9a\x4c\x2e\xcf\xcf\x5d\x68\xe2\x9c\x2f\x9c\xf2\x3b\xe0\x3b\x98\x86\x5a\x17\x19\xc3\xa5\xd1\xb9\xb7\xad\x8a\xc1\x7a\xf8\xc4\x8a\x42\x1b\x3f\x21\x56\xa2\x17\xd4\xa0\xf7\x61\x84\x1c\xe9\xd0\x7f\x30\x33\xf6\x3e\x73\xd8\x03\x72\xb5\xe6\xae\xeb\x8b\x81\x1c\x57\x68\xaa\x66\x9b\x8c\x3b\x9f\xf7\x8a\xbc\xcf\xa8\xf1\xf5\x40\x41\xc8\x4a\x19\xdb\xf4\xe0\x5f\x75\x50\x35\x2e\x65\x13\x84\x87\x17\xad\x5a\xec\xcf\x7e\xd5\xda\x7c\x99\xef\xf7\xd9\x97\xd4\x9c\xab\x9a\x91\x9f\x48\xc3\x07\x46\xc1\x8c\xcc\x17\x83\xf2\x90\xba\xa5\xff\x4c\x99\x6c\x3f\x6c\x79\xf5\xa9\x9c\x05\xbf\xa6\x74\xa0\x2e\x4d\xc9\xca\x09\x05\x6c\x52\x8e\x6f\x69\x5d\xe7\x37\xd4\xbe\xb0\x4f\x20\x45\x95\xc8\x57\x1f\xbd\x57\xf0\x1b\xe1\x9e\xd2\xaa\x74\x65\x10\xba\xcc\x38\x59\x55\x65\x5d\x15\x14\xa9\xf6\xb5\x74\x06\x22\x83\xe4\x93\x61\x86\xce\x3e\x6d\x59\x41\xcf\xb4\xe0\xc5\xca\x1b\xe5\x7e\x36\x3d\x4b\x46\x26\x0b\x1a\x08\xa4\x2d\xd6\x14\x34\x12\xb2\xa5\xa3\x56\xcb\xe3\xbb\x43\xe1\x4e\x31\xe0\x9f\xfd\xdd\x61\x13\x56\x04\xfb\x83\x1f\xd9\x06\xdd\x4d\xe0\x6a\x30\x07\x71\x96\x1d\xf9\x3e\x87\xa5\x9e\x8a\xf1\x8e\xdd\x55\xe2\xf7\x2e\x0d\x5d\x8b\xda\xd6\x1d\xda\xcf\x1d\x14\xa6\x32\x00\xa4\x01\xca\xe5\xdb\xa7\x3a\x7c\xc4\x28\x59\x7a\x70\xf5\x6f\x32\xee\x00\x09\x30\x53\x2f\x71\x85\x66\x55\x90\x18\xfd\xfd\x3f\xd4\x24\xce\x49\x37\xa0\xbc\x9a\x89\x69\xa5\x02\xca\xe3\x5d\xe9\x7e\xc0\x66\x62\xca\xd4\x07\x38\x47\xb3\x3c\xe8\xde\x9b\x5e\x66\x47\x67\x01\x28\x11\x74\x48\xfe\x56\xfe\x19\xb9\x36\xfd\x39\x30\x19\x0e\xd8\x36\xbd\x12\xc6\xdb\xd3\x25\x82\x64\x69\x5a\xb9\x56\xaf\x02\x49\x7f\xa8\x82\x6d\x2c\x56\x84\xf3\xb6\xac\x2d\x93\x91\xbc\xc8\xcb\xdf\x8a\x33\x7d\xfd\x9f\xa9\x58\xb8\xb3\xdf\x26\x23\x3e\x4a\x7e\x7b\x76\x4d\x57\x79\x53\xd3\xb3\xfb\xaa\xe1\x67\xf9\x6e\x77\xb6\xcd\x6b\x59\x7c\xc3\x4a\x56\x6f\xe9\xfa\xcc\x69\x34\xe4\x71\x60\xa5\xa8\xce\x98\xa8\xcf\x36\x8c\xd7\x42\x9d\x8e\xf1\xd9\x87\xca\x55\x5f\x9a\x16\xaa\xf2\x6c\x0d\xf1\x7e\x30\x32\x55\xb4\x3e\x5b\x37\x5c\x39\x7f\xba\x7a\xb1\x6c\xfc\x6c\x95\x97\x67\xab\xbc\x28\xce\xfe\x0b\x2c\x43\x19\xfa\x2f\x59\x83\xd8\xd2\xb3\xff\x72\xfb\xf5\xbf\xce\x14\x6d\x39\xdb\xe5\x75\x2d\x3b\x57\xa9\x12\x60\x0c\x7d\xe6\x21\xe0\x3d\x73\x90\x77\xff\x75\xb6\xad\xaa\x8f\xf5\x38\x41\x6d\x47\x3e\xbd\xc0\x8d\x7f\xf7\x34\xf2\xee\x69\xce\xcf\x25\x83\x5f\x91\x8c\x01\x54\x9c\xf6\xc3\x93\xb4\x44\x47\x11\x7a\x7f\xce\xf9\x42\x2d\x03\x28\xbd\xad\xbe\xc7\xde\x46\x10\xae\x92\x69\xb2\x4c\x08\xe1\xf2\x5b\x1b\xb4\x12\xa1\xcb\x25\x98\x8f\x07\x52\x76\x6e\x95\x14\xf2\x52\xdf\xe0\x05\x2a\x7c\xe3\x4c\xc7\x02\x68\x52\x43\x0d\xf3\x34\x1d\x0a\x14\xdd\x06\xaf\x2b\xb1\x95\x53\xaf\x59\x17\x98\xb8\x70\x33\x8c\xcf\xbe\xdf\xc0\x5a\xac\xd9\x5a\x17\xf3\x4a\x61\xe0\x9b\xce\x60\x30\xb0\x5a\xd7\xf4\x0c\xf6\xce\xfa\xec\xfa\xfe\x4c\x0d\x58\xd6\x2f\x78\x43\xcf\x36\xbc\xba\xf5\xf6\x82\xce\x6e\x09\xea\x20\x2f\xb5\x05\x86\x0a\xe0\x23\xd7\x19\x51\x9d\x5d\x37\xd7\xd7\x05\x1d\xfb\x31\x0a\x1f\x7b\xf2\x1f\xa1\x7d\x06\x59\x4e\x90\x36\x34\xca\xc2\x8e\x73\x30\x62\x78\xa9\xe5\x18\x1d\x98\xc9\xa2\x81\x99\xf9\x62\x50\x8f\x59\xad\xd9\x87\xf5\xac\x9a\xd7\xc0\xae\x49\x21\x67\xa7\x13\x8f\x7a\x8f\xac\xee\x27\xb3\x20\x88\xc8\x45\xc0\xdb\x11\x7c\xf0\xb9\xbf\x47\xfd\x73\xe4\x9a\x03\x77\xd3\x81\xeb\x5f\xea\x4f\xdf\xe6\x42\x5e\x98\x92\x47\x9c\x0b\x2f\x2d\x69\xa9\xb0\x10\x54\xf2\xc5\x98\xb7\xd5\x65\x60\x09\xf1\x53\x67\x6a\x75\x5a\xef\xa5\xcb\xc6\x89\xab\x78\x09\xb0\xa5\x68\x5c\xd2\xa6\x4f\xaa\x63\x00\x0c\x3e\xa5\x45\x83\x26\x4d\xf3\xf1\xd5\xdb\xb7\xcb\x17\x1f\xde\xfd\xb0\xd4\x4e\xc9\x6f\xdf\xbd\x79\xfb\x3e\x4d\xb3\xa0\x93\xac\x3c\x6b\xf6\x7b\xcd\xf5\x86\x30\x13\x59\xd3\x19\x4f\x17\x55\xc3\x02\xf1\x39\x67\xba\x30\x75\x68\xab\x87\x17\x8b\xc6\x41\xdd\xea\x51\x64\x82\x4e\xeb\x9d\x37\xa1\xa7\x77\xd1\xcb\x89\x7a\x72\x3f\xbd\x6f\x50\xeb\x76\xe2\x0b\xff\x62\xed\x48\xa4\x10\x1f\x12\xca\xa2\x34\x22\x67\x06\x36\xfe\xfd\x5e\xc4\xe2\x93\xa4\xb0\x77\x48\x18\xdd\xf1\xea\x96\xd5\x94\xd0\xf1\x0a\x60\x3b\x03\x1f\xee\x4d\x36\x14\x7d\xb7\x67\x13\x4b\x40\x07\x22\x22\xa3\x81\xf0\x95\xb8\x9b\x42\x85\x1b\xf8\x14\xe4\x55\xf7\xbe\xa6\x3d\x0b\x88\x40\x21\xd4\x86\x66\xe1\x23\x58\x1b\x65\x56\x01\xa2\x86\x52\x36\xce\xab\x85\x3f\xbf\xef\x1c\xee\x8d\x33\x81\x93\x39\x5d\x5c\x72\x0b\x21\x72\x69\x44\x09\x6e\xa2\xda\x0d\x2c\xa2\x75\x79\x23\x84\x08\xa7\x5b\x55\x7d\x36\x70\x7e\x75\xd8\x51\x86\xb8\x62\x75\x59\xa7\x2b\x6f\xb5\x2a\xdd\x9a\x59\x1e\x54\x03\xd3\x52\x63\x83\xd5\xd3\x58\x68\xcd\xa7\xbc\xfe\xb1\xa6\xeb\xe9\xf0\xc2\x68\x4a\x41\xe5\x25\x6f\xff\x99\x1c\x9d\xfa\x13\x4d\x05\x40\x00\x19\xbf\x6c\xd3\x37\x6c\x41\x07\x2b\x34\xa5\xa4\xc2\x0f\xce\xbd\x6f\x4a\xb1\x71\xc9\x9b\x56\x5e\x47\xff\x1e\x0a\x58\xb2\x11\xee\xe3\xfc\x99\x79\x00\x37\x5f\xdd\xce\xf8\x36\x67\xa5\x1d\x91\xca\x80\xc7\x7d\x9e\x50\xa1\x9f\x29\x57\xc1\xd6\x0e\xf8\xa1\x6d\xb1\x40\xed\x32\x44\x12\xba\x8d\xfb\x2a\x83\x98\x18\xfa\x81\x67\xbd\x67\x36\xc3\x68\x50\xa3\x5f\x62\xda\xfb\xa6\x35\xb6\x03\xff\xa1\x4e\x94\xa8\xde\xb4\xd8\x91\xfa\x69\x04\x92\x0f\x97\x80\x7f\x62\x66\x90\xf5\xf2\x4f\xfb\xe9\x0e\x47\x23\x80\x77\x91\xf2\xb4\xbc\x55\x24\xe7\x62\x9d\x8c\x2d\x24\x80\x73\x03\xbd\xb8\xac\xdc\xb7\xe0\x06\x2a\xdf\x09\x42\xe7\x95\xba\x63\xbc\x24\x9b\x98\x93\x6b\xe5\x8e\x5e\x22\xbb\xc3\xd3\x74\xc8\x32\x8e\x05\xba\x44\x6e\x87\x97\x30\x3e\x07\xef\xa0\x51\xa3\x6c\xda\x11\x77\x6d\x8e\xff\x5e\xb1\x12\x6a\x07\xb0\x20\x13\x21\xcc\x1c\x52\x53\x10\xee\x32\xbd\xc3\x61\x9c\xca\xf4\xde\xa6\xd6\x4f\x9e\x25\x2e\x25\x7f\xb2\xcd\xeb\x6d\x82\x1b\x5e\xa8\x64\xd2\x51\xf4\xa1\x2e\x11\x3e\xe8\xb9\xdc\xaa\xd0\xea\x4e\x10\x8d\xed\xed\xfa\x70\xa8\xb4\xba\x2b\xbf\x25\x4b\x2f\xbe\xf8\xdb\x27\xc7\x17\x9b\xf0\xd5\x47\x52\x42\x9d\x12\x8e\xfb\x65\xf9\x87\x7d\xbf\x4a\xb3\x0f\x69\xa0\x61\x81\xa6\xb5\x8b\x36\xf5\x82\x54\x38\x11\xfe\xaf\x3f\xd4\x2a\x44\x91\xb7\x36\x98\xc6\x05\x85\x1e\x76\x3d\x03\x23\x80\xcd\xe4\xda\xab\x6e\x60\xfd\xa7\x35\xcf\xdd\x73\x46\x2b\xb1\xb6\xaa\x58\xc0\xd9\xe1\x05\x48\xde\x69\xea\x43\x79\x30\x87\xfd\xe4\x29\xd2\x02\xa8\x68\x16\xfa\xe1\x79\xe3\x3e\x90\x7d\xbf\xc4\xb5\xe1\xa6\xb6\x80\x03\xf3\xf2\xe7\x26\x2f\x00\xed\x28\x40\x9d\xf3\x10\x3b\x3a\xd9\xb2\xcb\x27\x6c\x18\xe1\x29\xb8\x9f\x9e\x81\x4c\x87\x6c\x3f\x29\xb7\xde\xe1\xf8\xf5\x23\x71\xe7\x8f\xc5\x61\xf7\xb6\x65\xd7\x5b\x36\x0e\xa4\x2c\x19\x0d\x83\x50\x17\x68\x65\x84\x94\xc9\x7a\x17\x7c\x08\xe3\x35\xa3\xe3\x5d\xb5\xcb\xd0\x38\xc4\x7e\x33\xb0\x6a\xf6\xbe\x99\x52\x0b\x50\xa3\x9c\x73\xa7\x34\x80\x8b\x13\x6d\x8b\x69\xcc\xbf\x21\xaa\x1f\xee\x61\x18\xf4\x1f\xcd\xab\x83\xc8\x2a\xb2\x2f\x1d\x60\x47\xbb\x3d\x7b\xf2\x82\xec\x56\x07\x4f\x25\x62\xe6\xd0\x99\xa5\xde\xcb\x82\x74\xdd\x45\xa7\x94\xb7\x51\x44\x12\x61\x11\x59\x87\xd3\x55\x75\x53\xb2\x5f\x28\xd7\xfe\xe5\xbc\x56\x79\x0a\xb1\x0a\x3f\x10\xee\xce\x72\x67\x5b\xf2\x5a\x00\x9a\xa3\x2a\xae\x07\xb5\x73\xe5\xe7\x24\x07\x84\x0b\x95\x1f\xab\xd6\x62\x48\xae\x75\xc6\x8d\x9f\x6e\x0b\xfc\x3d\xda\xce\x58\x08\x9c\xad\xbe\x51\x2c\xea\x9d\x1a\x81\xf5\x3c\x2d\xfd\xef\x7c\x11\x4b\xd9\xf9\x55\x88\xfd\x69\x53\x76\x26\x09\xee\x04\x63\xd8\xd9\x68\x20\x20\x03\x17\x44\x52\x91\x06\xe1\x95\x87\x44\x53\xca\x4b\xbe\x48\xd3\x42\x72\x85\x9a\xed\xdb\x00\x90\x75\x33\x86\x3c\xc9\x6f\x36\x59\x81\x66\xcd\xb8\x6e\xae\x6b\xc1\xb3\xc2\xa5\xb5\x9e\x36\x83\x95\xa2\x6a\x70\xe9\x95\xf3\x62\x81\x37\x06\x95\xcd\x7f\x81\x1b\x34\x60\x23\x92\x4c\xa7\x90\xf6\x77\x9a\x8c\x56\x96\x6a\x8f\x98\x45\xf9\xcd\x71\x72\x9e\x20\x39\xb1\xc7\xe1\xdf\xe2\x3e\xc0\xe4\xa1\xc5\x11\x16\xa6\x01\x0e\xc6\x4b\x27\x27\x64\x03\xbe\x0f\x3e\x29\x40\xbc\xe8\x26\x43\x89\xb8\x41\xa9\xdc\x77\x2a\xe6\x9c\x87\xba\xc5\x9c\x54\x3e\x3e\xa5\xbc\x10\x3c\x48\xf4\x9e\xaa\x59\x29\x73\x8b\x8c\xf9\xf1\xce\xa5\x53\xbd\xbc\xe5\xd5\x0d\xcf\x6f\x6f\x73\xc1\x56\x9e\xe2\xab\x3e\xbb\xbe\x3f\xfb\xf1\xdd\x0f\x67\xab\xbc\x2c\x2b\x71\x76\x4d\xcf\x40\x9d\xf2\x89\x89\x2d\xf3\x62\xa0\xc7\x67\x6f\x0b\x9a\xd7\xf0\x16\x34\x25\x2a\x26\xba\x54\x26\xe5\x5a\xd0\x1c\xe2\xa1\x19\xc9\x41\x57\xc9\x20\xa6\x80\xb0\xd6\x9f\x22\xff\x8e\x39\x04\x77\x8e\x19\x99\xc0\x81\xe6\x87\xb1\xf4\x38\x52\x82\x4d\x8c\x8f\x2c\x47\xa3\xd6\x7e\x2e\x90\xe8\x7f\x9b\xa6\x6c\x34\xb2\xbc\x3c\x21\x84\xb5\xda\x58\xf5\xec\x6f\xe3\x67\x37\x8e\x99\xad\xfb\x36\x22\x8f\xe1\x2c\xe5\xf1\x50\xa8\xc9\x3c\x82\x9a\xcc\x35\xad\x9f\x60\x36\xba\x40\x8e\x95\x74\x3a\x15\x73\x14\x2a\x84\x00\x16\x6b\x50\x92\x2a\xa2\xb2\x69\xc2\x09\xa2\x81\xd0\x15\x33\x38\x64\x19\x27\x0f\x2d\x9a\x97\x0b\xf2\x90\x2b\x1c\xbb\x16\x97\x84\x23\xa3\xaf\x2d\x23\xb2\xa4\xa6\xa4\x6a\x1e\xca\x79\xb5\x18\xf4\xaa\xce\xd3\x34\xcb\xa1\xca\xbc\x95\xfc\xb6\x24\x87\xfb\xbd\x69\x42\x43\xe5\x69\x9c\xc2\x56\xb9\x6a\x3a\x9f\xa8\x1c\x61\x59\x9e\x70\x4f\xdc\x2a\xbc\x6c\xc6\x11\x6f\xdf\x2c\x01\x17\x45\x08\xb0\x91\x7f\xcc\x27\x0b\x74\x38\xdf\xa9\xc2\xa0\x79\xa6\xf3\xb0\x1f\x67\x12\x4c\x61\x8f\x35\xd1\xe6\xa2\xc7\x4a\xdf\xb2\xcf\xac\xac\x9f\xd9\x80\xc7\x1d\xaf\x3e\xdf\x9f\xfa\xd5\xaa\x2a\x45\xce\x4a\xca\x4f\xfc\x6c\x55\xed\x4e\x29\x74\x2b\xd9\xba\x47\xcb\xb1\xfa\x9c\xca\x73\x77\x6a\x67\x95\xdb\xe7\xc9\x23\x93\x9d\x90\x84\xe9\xd4\xf9\x76\xd0\xb0\x27\x7e\x00\xfd\x39\x71\xe2\x82\x35\x7d\xda\x37\xab\x8a\xd3\xe5\xd3\x36\x83\x52\x19\x6b\x6b\xfc\x51\x84\xa4\x70\xca\x76\xf7\x27\x4d\x98\x2e\x4f\xcb\xe6\x96\x9e\x36\xc5\xfa\x8b\xf3\x27\x6d\xce\x0a\xf2\x52\x3d\xa5\xfe\x5b\x75\x15\x2d\x9f\xde\x33\xa5\x8a\x5b\xea\x89\xd3\x78\x1a\x27\x4f\x84\x12\xbe\x4f\x2d\xae\x95\x7c\x27\xee\x02\xfa\x59\x3c\xe3\xf5\xdd\x01\xb0\x29\xaf\xa0\x24\x53\xe7\xd5\xe6\xa4\x0a\xad\xd3\xfe\xe9\xb0\x4e\xf8\x0e\xdf\xe3\x1b\x7c\x8d\x97\xf8\x13\x7e\x89\x3f\xe3\xf7\x1d\xa1\x23\xae\xde\xa5\x38\x79\xa3\xf7\xee\x83\x5b\x96\xe9\x70\x82\xa3\x2a\xde\x33\x61\xd8\x03\x49\x57\x0f\x56\x69\x81\xc9\x9e\x58\x77\xe7\xbb\xa3\x6d\x68\x03\xe4\xfd\x5b\xb9\x4c\xaf\xe4\xd2\x9d\xd8\x0c\x3f\x69\x08\x2f\x0c\xe9\x7d\x72\xfd\xe5\x49\xf5\x2b\x52\x7d\x52\x85\xec\xc4\x0a\x35\x59\x3f\xa9\xce\xea\xa4\x3a\x59\xfd\x52\xdd\x00\x27\xd5\x99\x9f\x54\xe7\x95\xba\x26\x4e\xaa\xb1\x3e\xa9\xc6\xd7\xb9\x14\x30\x9f\x56\xaf\xf7\xcd\xf1\xde\x9e\x5c\xe3\xd5\xd1\x7a\x5e\x29\xd2\xf7\xb4\x4e\xfa\x1f\x1d\xad\x9d\xd3\xdb\xea\x8e\x5e\x9d\x7a\xd0\xea\xb1\xf9\xe0\x68\xad\x4d\xc9\x7e\xfe\xe6\xf4\xde\xaa\xe2\x8f\xec\xa7\xa7\x4d\x80\x2e\xff\xc8\x41\x75\x9c\xc4\x49\xd5\x36\x27\x6e\x2a\xcb\x6e\x9c\x54\x6b\x71\xfa\xe6\x7f\xab\x2e\x96\x93\xaa\x5d\x9d\x54\xad\x7a\xf1\x94\x7a\x37\x27\x12\x41\x4e\x9f\x44\xc2\xb7\x27\x55\xdb\x83\xae\x3c\xb9\xf6\xde\x97\xc7\x67\x1b\xbe\xff\xbd\x61\xb3\x4e\x6a\x63\x7d\xe2\xc4\x18\x5e\xec\xa4\x4a\x77\x27\x55\xfa\xd2\x63\x8b\x4e\xaa\xf6\xf6\xa4\x6a\x97\x4f\xbe\xc1\xee\x4e\xab\x17\xbc\x06\x4a\xf1\x5d\x75\xea\xdc\xde\x8d\xdd\x27\x8f\xec\x67\xc7\x5a\x9e\x54\xf3\xfd\x49\x3d\xd6\xf4\xf4\xc9\xf3\x7c\x73\x52\xed\x4a\x33\xaa\xf6\xdc\x7b\xc3\xa1\x9e\x54\xff\xf5\x69\xdb\xc3\xb0\xb1\x27\xd5\xb9\x3c\xa9\xce\xb7\x8a\xd7\x7d\xf2\x0e\xf9\xe4\xd5\x7e\x98\xb3\x7c\xf7\xfe\xa7\xb7\x27\x56\xf8\xf2\xa4\xee\x56\x25\x28\xe1\x75\x0c\xd2\xc9\x55\x87\x9f\x1d\x6d\x41\x85\x8a\x9e\x58\xf3\x67\x1d\x59\xda\x82\x45\xed\xa8\x96\x21\x10\xbc\x4f\xd7\x35\x9c\x2a\x34\xf4\xa5\xea\x93\x2d\x63\x9e\x05\xac\xc2\xb9\x8a\xda\x25\x84\xe4\xc6\x86\x3f\x19\x78\x96\x23\x13\x49\x5b\x79\x5e\x33\xee\xa9\x82\x77\x4c\x8c\x6b\x78\x42\x08\xa9\xd3\xd4\xf2\xdb\x26\x2a\xb9\x42\x90\x01\xd1\x43\x2c\xd3\x33\xe3\xa0\xf0\x23\x2f\xa1\x77\xbd\xfa\x9b\x48\xfd\x39\x4a\xd3\xfc\x48\xfd\xe7\x17\xff\x23\xfa\x5a\x81\xb1\x2b\x07\x36\x96\x95\xf3\x7a\x81\x4b\x05\xf5\xa3\x14\x70\x85\xe9\x5f\x31\xa8\x3f\x31\xb1\xda\x66\x35\x7a\x58\xe5\x35\xb5\xb1\xb2\x53\xf8\xa5\x03\x64\xa7\x86\x7d\x57\x3d\x87\x57\x5a\x69\xe5\xbd\x52\xf0\x99\xf4\x85\xe9\x02\xc2\x13\x5d\x56\xe9\x53\xa6\x46\x79\xb7\x22\x06\x8f\x1f\x6f\x2c\x22\x10\xde\x92\x57\xb9\xd8\x8e\x6f\x59\x99\xad\xf0\x06\xe1\x35\x99\x5c\xae\x9f\x6f\x2f\xd7\x46\xaf\xb8\x23\x34\xab\xe6\xeb\x05\xce\xe7\x6b\x37\x94\x9d\x19\xca\xae\xb5\x5d\x91\xdf\xab\x96\xed\x04\x4f\xbb\x22\x93\x5b\xc2\x59\x15\x2c\xcc\x74\xa2\x3e\x5d\xe7\x82\x06\xc3\xbb\xa1\xe2\x03\xbb\xa5\x19\x82\x64\xa4\xfa\x6f\x34\xd0\xf5\x99\x92\x93\xb6\xd5\xb6\x59\xc8\xfe\x21\x4f\xe5\x7a\x3a\x81\xcc\x3b\xd3\x0b\xac\xa7\x77\xfa\x15\x56\x53\x3b\xfd\x1d\x56\x13\x39\xfd\x57\x0c\xb3\x34\xfd\x37\xac\x34\x30\xd3\x7f\xc7\x16\x38\xe8\x7f\xda\x13\x30\xfd\x5f\x18\x40\x43\xa7\xff\x1b\xcb\xfe\x4d\x2f\x26\x6d\xcf\x01\x41\xeb\x6b\xcf\x2d\x4a\x2f\xff\x7a\x82\xce\x33\xfe\x7c\xf2\xb8\x0a\xd1\xa9\xde\x22\x27\xbb\x03\x6d\xfd\x6b\x2a\x15\xad\x46\xa8\xaf\x26\x78\xf4\xb8\x5b\x0b\x59\x2c\x2b\xa8\x0a\x03\x77\x89\xd9\x94\x49\xba\x9b\x47\x2b\x4d\xcb\xee\xbe\xa0\xd6\x87\x94\x8e\x65\xef\x32\x67\xf2\xf0\xe8\x8c\xec\x21\xd3\x08\x01\xbd\xe6\x85\x6d\xde\x41\x9c\x2a\x2d\x33\x56\x89\xca\x01\x05\x8b\x59\x65\xb8\x40\xe8\x6b\x32\xb1\xa4\x63\x5e\x2f\x06\xdc\xf7\xcd\x67\x9b\x2c\xec\xb8\x50\xb6\x80\x9c\x18\x47\x0e\x84\x39\x38\x3c\x55\xea\x9b\x1c\x41\x46\x07\xad\xa0\x3f\x3f\xaf\xbf\x26\x93\x4b\x94\xcf\xeb\x05\xa1\x99\xfc\x47\xf7\xbe\x35\xee\xab\xbd\x59\x10\x08\xc9\xda\x61\x02\x54\x59\xcc\x25\xc9\xd3\xd5\x5b\xbf\x57\x71\x66\x36\x6b\xb5\x39\xfb\x36\x17\x14\xe5\xe0\xd8\x26\xff\xcc\x84\x77\x5c\xfa\x9f\x2b\x93\x1a\x68\xf6\x21\xa5\x74\x0e\x96\x27\xaf\x14\x16\x48\x5f\x72\xce\x23\x21\x54\xe2\x6b\x2c\x46\xdc\xa0\x34\x4d\x96\xcb\x64\x48\x88\x31\xb0\xb1\xf2\x26\x9b\xe0\xaf\x50\x9a\x42\x7c\x21\xe1\x33\x9a\x89\x79\x63\x46\x3e\x15\x10\x04\x69\x23\x66\x60\xd3\x89\xd9\x7c\xa1\xf4\xfa\xf6\xaf\xd3\x4e\x4e\xa0\xf0\xc2\xf3\x48\x69\x2f\xdf\xf9\x29\x26\xfc\x13\xc0\xe4\x1f\x3d\x30\xe5\xf8\xbb\x1f\x5f\x03\x3e\xdc\xf2\xed\xbb\x37\x1f\xde\x7c\xf8\xeb\xdb\x97\xcb\x97\x7f\xf9\xf0\xf2\xf5\xfb\xef\xdf\xbc\x7e\x9f\xa6\x74\xfc\xf2\xf5\x4f\x63\x78\xf2\xad\x2b\xf2\x7e\xfc\x9d\xae\xd7\x7a\x62\x04\x3c\x06\xa3\x75\x66\x4a\xb8\x85\xc1\x0f\x26\xe9\xcf\xf4\x61\x55\x95\x1b\x76\xd3\x58\xce\xc3\xe7\x43\x2e\xf0\x27\xce\x6c\x44\x93\xca\xe7\x10\x53\xa3\x19\xf7\x20\xed\xb2\xa4\xad\xb3\x51\xd0\x72\xb5\x09\x3c\x48\x29\xed\x9e\x3d\x17\x5b\x56\x2f\x10\x6a\x5b\xac\xf4\xbc\xb4\xfe\x75\xfa\xa6\x6b\xe3\xbf\x52\xdf\xca\x5f\xa9\x57\xe5\xaf\xd2\x9f\xd3\xf8\x40\xa7\x32\xf6\xaf\x8b\x50\x89\x7c\x2c\x85\x01\x30\xb3\xe7\x60\x3d\x80\x68\xc8\x70\xdf\xc7\x54\xc6\x87\x30\xff\xab\x58\x26\x50\x13\xa2\xa1\x0d\x7c\x60\x4e\xf5\x62\x9f\x50\x87\x9e\xfb\xde\x1f\x5e\xb1\xbe\x35\x50\x40\x4e\x59\x87\xa9\x2d\x1c\x84\x44\x9c\x1d\x17\x38\x59\x2e\x39\xcd\xeb\xaa\x5c\x7e\x62\x62\xbb\x84\xea\x97\x60\xab\x2e\x97\xcb\x04\xeb\x94\x26\x34\x5c\xf2\x16\x70\xe0\x75\x92\xe5\x1f\x4b\xeb\xb7\xb1\xfe\xf1\xdd\x0f\x2f\x4d\x4c\x83\x8a\x64\xf4\xc6\xe8\x39\xe1\x6a\xfc\xe3\x7e\x31\x73\xb5\x99\xda\x7b\x61\x3e\xdf\xb2\x7a\x97\x8b\xd5\xd6\xe4\xc6\x42\xca\x3f\x76\x68\x51\x40\x07\x72\xd8\x6d\x4b\x3b\x22\x09\xa9\x7a\x99\x06\xb0\x3c\xc6\x6a\x63\xd3\x2c\xc9\xeb\xfb\x72\x95\x74\xe2\xda\xf8\xf8\x3a\x5f\x7d\xbc\x6e\x78\x49\xb9\x8d\x1e\xce\x12\x1d\xe5\x91\xa8\xbc\x85\x10\x2a\x8b\x3a\xb5\x6d\x20\xcb\x47\xe0\x37\x1a\xad\x8b\x8f\x97\x72\x5b\xc2\xac\x01\xac\x93\xae\x53\xd5\x58\x95\x26\x48\xc4\xf0\xcd\x39\x11\x1e\xab\x91\x9f\x72\x18\x9c\x95\xd1\x1d\x86\x45\xd0\xb5\x53\x19\x19\x9a\xa6\x71\xb4\x23\xa5\xc4\x76\x8c\x89\x7e\xa0\x99\x03\xda\xbd\x84\xd3\xb4\x7f\x2f\xdb\x6f\xed\x9d\x2c\xf9\x13\xf7\xcb\x6e\x0d\xf9\xf8\xa4\x5b\xaf\x63\x72\x0b\x18\xc7\x9b\x82\xdd\xde\x4a\x22\x40\x37\x94\xd3\xf2\x80\xc9\x53\xde\x7a\x4f\xf4\x68\xeb\xe4\x30\x39\x4c\x30\x7a\x2e\x6b\xb0\xba\x3d\x47\x87\xbb\x4e\xbe\x31\x30\x43\x80\x86\x27\x41\xb8\x22\x0e\xad\x49\x28\x87\x6b\xd9\x33\x04\x79\x6c\xd0\x98\xd3\x7c\x2d\x4f\xec\x87\xfc\xc6\xcd\x9f\xc3\xe2\x52\x29\xa3\x61\x37\xd2\x55\x55\xae\xf5\x0f\x85\x93\x9d\x41\x93\x22\xbf\xf9\xae\xe2\x28\x63\x08\x61\xd6\x52\x4f\xb9\x44\xea\x78\xe6\x8e\x86\x94\x63\x50\x73\x18\xbf\xf1\x2c\xcb\xc9\x83\xfe\x4e\x31\x2f\xac\x64\x81\xa8\xff\x38\xcc\x1c\xf8\x2d\xd4\x54\xa9\x5f\x0d\x6e\xaa\x37\x5c\x78\x30\x36\xf7\x90\x1c\x6e\xcc\x69\x17\x6e\xed\x6b\x56\x52\x94\xcd\xc5\xf8\x5b\xc6\xc5\xbd\x2e\xee\xe1\xa9\x8e\x01\xe9\xa6\xf3\x5c\x8c\x5f\xbc\x79\xfd\xfe\xc3\xd5\xeb\x0f\xcb\x0f\x57\xff\x81\x16\x00\xfb\xe4\xe1\xef\xf5\x46\xa3\x82\x1e\xf4\x3a\xe1\x13\xd1\xf4\x5a\xcc\xea\x0f\xbc\x11\xdb\xfb\x6e\x02\x54\x57\x55\xff\x66\x35\x90\x33\xdd\x94\x74\x76\x97\x48\x4a\x22\xfb\xfa\x67\x49\x36\x0d\xe5\xef\xbb\x8d\x13\xf3\xc5\x38\x19\xd1\x4b\xa8\x2d\x5f\xaf\xdf\x68\x5e\xc2\x60\xe7\x29\xea\x64\x15\x93\xa6\x3a\x07\x8e\x8f\x5a\xbc\x66\xeb\x1f\xcb\x4f\x4f\x6e\x4d\x19\x4c\xbe\xa4\xc1\x83\x2f\xe3\x41\xb8\x5a\x26\xf9\x5f\x68\xa0\xfc\x91\xb6\xac\x06\x88\xa9\xf2\x40\xd8\x0c\x74\x84\x4b\x4e\x7b\x5e\x8e\x7f\x7c\xfd\xc7\xd7\x6f\xfe\x0c\x2c\xeb\xdb\x97\xef\x3e\xfc\x55\x6e\x88\x45\x04\x4b\xc0\x2c\xc7\x8b\x6d\xce\xca\x0f\xf9\x4d\xfd\x5d\xc5\x01\x4e\x23\x58\x9d\xb1\x46\x36\x1f\x77\x92\x90\x46\x1c\x3f\x6b\x07\xc3\x67\xa4\x36\x3f\xb5\x97\xaa\xa6\xa6\xe2\xc7\x83\x35\x05\xe4\x24\x38\x3a\xb2\x52\x36\x66\xf5\xf7\x0a\xc6\x9b\xfd\x22\xa5\x13\xb4\xdf\xcb\x67\x6f\x0d\x87\x06\x58\x28\x50\xdc\x6f\xfe\x78\x42\x5f\x2c\x34\x84\xa9\xea\xbd\xf3\x85\x76\xa9\xd9\x2a\x0d\xab\x91\x23\xdf\x83\xb9\x79\x02\x81\xef\xfa\x7a\x3c\xc9\x19\x39\x4e\xa0\x4f\x73\x72\x17\x21\xa5\x8b\xe5\x88\x36\x9c\xc2\xa2\x93\x71\xf3\xa8\xdf\xe8\x97\xa2\xc5\x1a\xcc\x11\x1b\x8f\xea\xff\x9a\xd3\x45\x9a\x0e\xb3\x21\xdc\x15\xe1\x73\x9f\x1c\x95\x28\xf0\x3b\xab\x3c\xff\x4e\xb5\x73\x95\x9f\x48\x82\x06\x70\x7f\x78\x59\x39\xab\x20\x79\xdb\x69\xee\xe8\x07\x5d\x9c\xbe\xd4\xa1\x3c\x7a\xfd\xfe\xfa\xde\x3c\xc7\x1c\xbc\x1e\x13\xa5\xff\xbb\xfc\x7c\x8c\xa2\xfb\xb8\xc3\x4b\x84\x29\x59\xe1\xcd\x80\x6a\xdb\x33\xd9\x81\x57\xad\x32\x6d\x93\x4f\x98\x1a\x9d\x0f\xf9\xec\xf1\x03\x34\xb0\xab\x13\xea\xfb\x02\x10\x3a\xbe\xf2\x8f\xd1\xd6\x20\x95\x6c\x38\xa5\xbf\xd0\x6c\xbe\x40\x38\x0a\xce\x42\x3d\x8d\xe2\x2e\xb3\xf9\xe2\xbf\xd0\xe9\x7a\x8d\x4b\xf2\x22\x83\x40\x60\x9d\x76\xab\x22\x11\xde\x96\xcf\x78\x24\xf8\xcb\x9d\x09\x2a\x2f\x06\xcb\x9a\x1e\x49\xdf\x58\x81\x40\x03\x68\x32\x02\xf0\xee\x00\x99\x06\xe0\x36\x74\x68\x97\xbc\xa7\x3d\x17\xd3\x5b\x85\x14\xa2\xab\xfe\x8a\x90\xde\x48\x67\xb6\x15\x97\x55\x87\x13\x12\x78\x64\x53\xd4\xba\xfe\xf3\x18\xd3\xa0\x8b\x72\x4c\x83\x50\xd0\x3b\x03\x96\xe9\x92\xde\x5a\x14\xb8\x8a\x94\x97\xd5\x73\xa6\xc2\xbf\xd8\x26\xe3\xaa\x1e\xa5\x66\xbc\x82\x59\xa9\x10\xae\xb0\x53\x55\x1a\x1f\xda\xf3\x8b\x30\xb9\x9c\x17\x74\x09\x0d\xaa\x9c\x40\x25\x68\xe8\xcd\x17\x00\xb7\xa0\x56\x74\xda\x6b\x87\x05\xa9\xe6\x02\xc8\xe9\xf3\x8b\x21\x81\x5a\x85\xaa\x95\xcb\x5a\x5d\xe9\xeb\x0e\x70\x8b\x29\xe4\xb7\x7b\x17\x42\x73\x78\x95\x0f\x5d\xc2\x23\xbf\xd2\xa5\xcf\x68\xf4\x5d\xfa\xa3\x3b\xf3\xab\x45\xe8\xe9\x3f\x89\x45\x03\xfc\xce\x2b\xf3\x3b\x2f\x1a\xc0\xac\x89\x4d\x04\xfd\x7c\x92\xa6\x19\x1f\x11\x86\xb0\xec\x7d\x99\xa6\x62\x48\xc4\x2c\x76\x9e\x86\x84\xb6\xb1\xc8\x46\x25\x61\x05\x59\xfc\x3e\xf9\x29\xea\xbf\x70\x5c\x17\x03\xef\xf0\xe8\x58\x00\xa4\xf6\x00\xde\x22\x4c\x5d\x6b\x2f\xcd\xce\x38\xf4\xc1\x04\xcf\xcb\x45\x70\x5a\x3e\x7b\x3a\x12\x15\xdc\xa5\x63\x8f\xbf\x97\xb4\xf0\xce\xca\xa6\x2a\x88\xab\xab\xad\xde\xef\xaf\x3c\xc5\xb2\x09\xab\x1a\x58\xcd\x43\x61\xed\x6f\x4a\xa0\x75\xf8\xab\x3c\x2c\x5d\xda\xb0\x7c\x3d\x58\x07\xe5\xea\x7c\xc1\x4b\x42\x4a\x1f\x0c\x87\x70\x1f\xda\xc4\x42\x34\x1f\xd0\x31\xba\x4b\xd6\x91\x1d\x77\x0b\x90\xe1\x85\x3f\x93\x6f\xba\x01\xab\xb7\xf9\x2e\xeb\xd3\x83\x90\x0c\xb4\x08\x20\x26\xae\xba\xfc\x8d\x75\x92\xc3\x59\xb6\x02\x6f\x76\x3e\x7e\xf9\xea\x9b\x97\xef\x96\x57\xef\xde\x5d\xfd\x15\xf2\xcb\xad\xf4\xe9\xac\xaf\x44\x8f\x87\xd5\x70\xc6\xb6\xd7\x41\x5f\x42\xda\xea\x8e\x38\x37\xd9\xb6\xe6\xc9\x7c\x91\x2c\xc8\xfb\x2c\x1e\x19\xaf\xb2\x4b\xe2\xda\x7f\xe7\xc3\xee\xea\x28\x5c\x15\x81\x32\x51\xc2\x98\xc9\xee\xa0\xa3\x6a\x21\x5d\x12\xc0\x97\xa8\x1b\x89\xbc\x3f\x20\x46\xba\xde\x01\x4b\x34\x41\xad\x92\xb5\xdf\x94\xc5\x7d\x06\xe9\x36\xf2\xa7\xd6\xe1\xf5\xe7\xfc\xa2\x57\x1f\x08\x2c\x7d\x14\xef\xde\x41\x9c\x44\x0f\xe2\xc4\x3f\x88\x13\x49\x60\x62\xb7\x66\x78\x3d\xea\xcd\x66\xee\x48\xaf\x7b\x60\x10\xa1\x40\x66\x28\x61\x23\x8a\xb0\x55\x41\xf0\xfd\x9e\x7f\xcd\x66\x9c\xb0\xa9\xa6\x43\x84\x8d\x38\xba\xa4\xcf\xf9\x25\x2a\xe7\xa5\xae\x61\x41\x62\x33\x40\x47\x23\x17\xcc\xdd\xe2\x95\xb1\x3e\xc5\x51\x94\x97\x0e\xdd\x79\x78\x01\xe9\xca\xe4\x9c\x7f\xdf\xff\x24\x40\xe6\x32\x16\xa7\x2c\xec\x32\x29\x11\x74\xb6\x3c\xbf\x40\xd8\x52\xd0\xd2\xc5\xfc\x33\xc2\x2f\xd9\xd7\x64\x72\xc9\x14\x08\x4c\xac\xff\x0c\xf9\xe6\x3c\x66\xaf\x11\xd9\xb7\x7c\xbd\x06\x52\x63\x84\xdb\x4e\x07\xbd\x6d\xd1\x2d\x69\x05\x2a\x95\x5a\x4f\x73\x5e\xa7\xd5\x15\x29\xdc\xa9\x6e\x9b\xd7\xc1\xeb\xfa\xe0\x76\xdd\xe6\xf5\x0f\xac\x16\xb4\xa4\xbc\x36\x92\xc0\xff\x51\x86\xe1\x95\x96\xc3\x41\x86\x3e\x5a\x52\xc1\xf0\x24\x2a\x2f\x19\x3c\x7a\xa1\xc4\xe0\x68\xc2\xbf\xde\x15\x10\xff\xc2\x0d\x49\xa7\x10\xf4\x8b\xc5\x72\x01\x1e\xad\xd7\x7e\xd0\xab\x56\xb3\x76\x07\x82\xd2\xbe\x90\x0b\x05\x31\x99\xfb\x7b\x13\x97\x64\x72\x59\x3e\xe7\x97\xa5\x71\x2f\xd0\xa7\xcf\x6c\xb7\xac\x94\xa2\x95\x36\x2c\x32\x5c\x2a\x60\xe8\x36\xa0\x82\x90\xf6\x12\x7a\xfb\x46\x52\x0f\xfd\x77\x6c\xa3\x28\xba\xd8\x63\x5b\xc3\x09\xaa\x35\x2f\x29\x77\x0d\xcc\xc5\x6d\xbe\x8b\x68\x28\xfe\xb1\x39\x78\x91\x85\x71\xd2\xfd\x3e\x29\x9d\xa9\x61\x74\xe6\x6c\x41\xec\x3c\xa8\x77\x2d\x64\xf8\x81\xee\x7d\x73\x0f\x43\xdf\xb0\x42\x44\xd3\x7e\xfe\xbf\xe9\x6b\xa7\x7f\x69\xca\x0d\xee\x9c\xe9\x2a\xa7\x70\x4b\xfc\xaa\x1d\x0c\xbb\x06\x33\xd0\x3f\xd5\x43\x97\x34\xc6\x13\xdb\xd5\x4e\x87\x4f\xbe\xb9\x3f\x94\x35\x47\x57\x79\x7b\x88\x2f\x41\x6e\x60\x87\x2b\x51\xef\x1f\xa9\x64\xc3\xca\xa8\x28\x78\x6f\x0e\xe7\x3f\x30\x4b\xb6\x81\x68\x1f\x75\x0b\xc7\xbb\x47\xef\x28\xbf\x8f\xf5\xef\xfa\xd7\xea\x1f\xab\x5f\x86\x6d\x74\x9b\x38\xde\xc1\xbc\x8c\x76\xef\xe6\xd7\xeb\xde\x55\x19\xeb\xdc\xcd\x29\x9d\xe3\x74\xdd\x04\x10\xa8\x9e\x8a\xf6\xf8\xe9\x02\xdc\x1a\x4e\x68\xc6\xb1\xb0\x04\xd0\xa5\xf8\x92\xac\xc3\x5d\xf5\xf1\x40\x76\xa6\xe3\xda\x36\xf1\xf5\xc5\x4c\xf8\xda\x36\xf1\x48\x6e\xa6\x47\x49\x81\xf0\x02\x42\xe0\xf0\x83\xf2\x55\xf0\xfb\xef\xa1\x93\xa0\xbb\xc5\x25\x48\xff\x15\x24\x95\xad\x94\x9a\xe4\xc0\xb9\x89\x33\xcd\x67\x54\x1d\x5d\xd0\x4b\xad\x62\x19\x5a\xa3\xc4\x80\x06\x59\x29\x86\x44\xd7\xc2\xca\x55\xd1\xac\x7b\xb1\xfe\x9e\x58\xed\xb3\x5f\x13\xf8\xa6\xae\x78\xe7\xb4\x77\x78\xd4\x60\x96\xf4\x20\x33\x04\xdf\x79\x12\x49\xa8\x71\x98\x5c\x32\x17\xe5\x6d\xe3\x78\x73\x42\xe7\x6c\x81\x6b\xe2\x8b\x2d\x39\xc2\x4d\xa0\xf9\xc8\x11\x2e\xe4\x03\x1b\x86\x83\xb2\x1a\x02\xd4\x37\x99\xf3\x32\x6c\xad\x73\x1c\x0c\xa2\x29\xd9\xcf\x91\xb9\xdb\x99\xa4\x62\x2b\xa3\x05\x8b\xcc\xe0\x4e\x4f\x89\x4e\xaf\x2c\xb6\x55\xd3\x37\xf9\xc3\xe0\xcd\xf4\x7a\xae\x5c\x20\x18\x69\xf1\x95\x10\x3a\x8b\xec\x1e\x01\xd0\x9b\x07\xe4\x75\xda\xc6\x88\xbe\x90\x7d\x41\x08\x7f\xec\x4a\x72\x57\xd8\x46\x68\xe0\x07\x40\xcc\x9a\xf6\x16\xce\x67\xf9\xcd\x2c\x49\x0e\x77\x26\x5f\x4c\xb3\x8e\x3c\x45\xa5\x08\xaf\x67\x89\x95\x35\xe5\xe2\xea\x80\x20\xf6\xd2\x01\xe1\x6b\x30\x23\xa3\x4e\x8c\x97\xff\xe4\xca\xb7\x58\x1e\x20\x25\x58\xc5\x26\xe2\x65\x4f\x96\x82\xe5\x70\x1f\xd5\x07\x81\x9c\xcc\x48\xfc\x6f\x27\xd8\xe2\x2d\xed\xaa\x5d\xb7\xd9\xd8\x3c\xb1\x4d\x36\xf1\xa5\x00\xb8\x8d\xad\x16\xa1\x2f\xf2\x9c\x5f\x84\xc4\xc3\xcc\x44\x46\xcf\x2f\xf0\x85\xca\x57\xb8\x65\x1b\xd1\x6f\x5b\xb7\xe4\x35\xde\x6b\x93\x46\xdb\x9c\x1c\x68\x71\x82\x30\x6d\x71\x53\x46\xdb\xeb\x4d\xf1\x04\x26\x36\x28\xfd\xf8\xdc\x4e\xfc\x19\xe5\xf2\xf2\xac\xe9\xff\xc7\xdd\xff\x77\xb7\x8d\x23\xf9\xc2\xf8\xff\x7a\x15\x32\xef\xac\x86\x18\xc1\x8c\xdd\xbd\xf7\x7b\xef\x2a\xcd\xf6\x75\x1c\xa7\xdb\xdb\x71\x9c\xb5\x9d\xee\xed\xaf\x5a\xab\xa5\x25\xc8\xc6\x84\x22\x35\x20\x64\xc7\x63\xf1\xbd\x3f\x07\x85\x1f\x04\x48\x50\xa2\x9d\xec\xdc\x7d\x9e\x73\x72\x62\x8a\x04\x0a\xbf\x81\xaa\x42\xd5\xa7\x1a\x79\xbb\x74\xab\xb5\x5a\x6a\xbb\x89\xa2\x1a\xd6\x1b\x59\x4d\x53\x33\xeb\x0a\xe2\xad\xb8\x2e\xab\xd6\xab\x40\x07\x56\x4a\xe8\x44\xa5\x75\x17\x48\x5d\xc9\x60\x37\x57\x5e\x6e\x36\xfa\xb5\xba\x05\xb2\xe8\x6d\x36\x80\x75\x0d\x56\x91\x4f\xbe\x51\x64\x48\xc6\xd1\x75\xc7\x90\xd5\xc4\x00\xbb\x50\xb7\x95\x40\xf3\x86\xdc\xd2\xcc\xbd\xec\x2c\x50\x58\x49\xbd\x4d\xfc\x6d\xb6\xbf\x8f\xac\x22\x25\x65\x80\x7c\x40\xb6\x72\x8f\x64\xf3\x26\x59\xd5\x11\x70\xa7\xdc\x36\xbb\xea\xdb\xa3\x0a\x8b\x52\x2d\xe0\x0a\x01\xcd\xd0\x29\x1a\x97\xcb\x8e\x9e\x69\x5b\x4b\xb1\x5f\x61\x6f\x2c\xb2\x4d\x19\x21\x98\xe3\xec\x6a\x1b\xdc\x79\x39\x17\x1f\x9f\x61\xaa\x5c\xd7\xb7\xdf\xcf\xb8\xa8\xb6\x5f\x3d\xb2\x6d\xfd\x31\x26\x13\x31\x92\x30\xa7\x46\x3e\xc5\xc6\x0b\xd5\xb1\x77\x1e\x75\xec\x59\x66\x5d\xd4\x38\x12\xb0\xd5\x42\xfb\x2e\xe7\x1a\x1a\x78\x82\xcf\xe3\x71\x20\x4b\x0f\x26\xbd\x6b\x09\x8d\x85\xbc\x9d\x5b\x33\xfb\x83\x5b\xc9\x73\x7d\x05\x52\x8a\x21\x71\xe8\xc7\xe1\x22\xbe\x46\xfa\x3c\x55\xfc\xe4\x02\x9f\x8b\x84\xc7\xf1\x09\x4e\x5a\x6c\x44\x21\xfb\x51\x78\xad\x72\xd4\x4a\x55\xb9\xbd\xb7\x4c\x9b\xcd\x78\x52\xa2\xd1\xb6\x04\x21\x89\xc7\x13\x84\x8f\x2b\x93\xec\x23\x32\xd2\x45\x11\x24\xed\xec\x2f\xe3\x63\xeb\x0a\xf4\xf2\x19\x57\xa0\x36\x70\x43\x97\x7b\xd0\x49\xcd\x68\x6d\xf7\xd5\x35\x6b\x5c\x5d\xab\x0b\x4d\x09\x4c\x62\xdf\xdd\xb2\x67\x55\xbc\x86\xa5\xe1\xa9\xfd\x36\xab\x4b\x5f\x73\xba\xde\xc5\x3f\x4d\xa7\x55\xf1\x53\x29\xa8\x03\xba\xd8\x59\x26\xd6\x17\xcd\xb3\x16\x9d\x71\xe4\x64\x8c\xdc\x3c\x21\x00\xba\xe7\x9f\xd7\xab\x2d\x5a\x65\x97\x80\x82\xb4\x95\xfc\xca\xbc\x69\x1f\x64\x1d\x6f\x4e\xc6\x1e\x81\x50\x19\x1c\x50\x69\x1c\xd4\x41\x62\xc5\xea\x94\xfa\x18\x65\x3c\x88\x42\x13\x23\x13\x13\x1c\x2c\x68\x96\xa4\xf4\xef\xe4\xad\x89\x9b\xe9\x18\x1d\x89\xb6\x54\x71\xa6\x3d\x26\x39\x2f\x94\x06\x9f\x5c\xde\xd3\xed\x0d\x2b\xb0\xb5\x8a\x28\x42\x63\xe6\xce\xbd\xcc\x9e\x6e\xf4\x59\xd3\x4d\x7b\x88\xfe\xe3\x56\xc9\xea\xf1\xeb\x96\x88\x7d\x5f\xff\x0f\xaa\xf5\x8b\xab\xaa\x9d\x21\xff\x51\xbd\x6b\x2f\x51\x8f\x96\x76\x3e\xd7\x7a\x65\xcf\xc9\x84\xf3\x8c\xbc\x20\xb7\x90\x5e\x15\x01\x85\x53\xff\x5f\x6b\xa2\xf3\x5a\xe9\x53\xb3\x39\xb8\x9a\x56\xe6\x52\xa8\xc4\xf9\x62\xb1\xad\x05\x92\xe5\xda\xd6\x05\x77\x89\x8f\x07\x6f\x53\xca\x93\x9a\x91\xce\x73\xa6\x86\xcf\xfa\xa4\xbb\xc7\x65\x37\x73\x9b\xaf\x39\x0c\x6a\x3b\x8c\x41\x54\x79\xa9\x51\x92\x6d\x9f\xf3\x7f\xcd\xba\xcc\xb9\xf6\xf4\x98\xa2\x18\xf5\xc3\x2d\xe1\x96\x0d\x9a\x75\x90\x6c\x89\x70\xcf\xdc\x08\xf7\xf2\x12\x82\xc0\x25\x04\x1b\x67\xf6\x24\xce\xaa\x58\xfe\x91\x53\x92\xab\xec\x93\x1e\x1b\xda\x7f\x83\x41\xe0\x5b\xf7\x6e\x96\x35\xef\x18\xac\xcb\xa9\xc2\xdf\x08\x52\xcf\x54\x25\xb2\x7a\xc0\xc7\xef\x7b\xc1\xd4\xdb\x45\x03\xb9\xa4\x9a\xdc\x7e\x0b\x99\x6d\x22\x8f\xcf\xaa\xb4\xad\x45\x5b\x2c\x50\x5d\xd1\x47\x5e\xd8\xed\xd8\xf2\x9a\xd7\x7e\xd5\x6e\xe1\x9a\xdb\xee\xde\x79\xb6\xd1\xba\x4b\x0a\xfd\xb9\xce\x5a\xec\xd8\x84\x86\x81\xb9\x3f\x84\x89\xfb\x1b\xe5\x77\xca\x63\xa3\x7d\xae\xb8\xe9\x9c\x69\x43\xb3\x19\x83\x98\xd1\xad\xa6\xc7\x2f\xb6\x18\x73\xec\x57\xec\xe9\x1a\x42\xd4\xdd\x77\x69\x9e\xf0\xb0\xb1\x1c\xd1\x66\x73\x80\x86\x0c\x78\xc1\xff\x0b\x55\x6b\xd4\x47\x54\x67\x5f\x54\x87\xe7\xb7\xb7\x29\xf1\xd6\xa5\x85\xd8\x5e\xb3\x71\x25\x9e\x25\xb3\x3b\xb2\x65\xd0\x6f\x55\xb4\xc5\x39\xc4\xfa\x03\x67\x02\xef\xf1\xf3\x9c\xed\xb8\x06\x1f\xf6\xac\x1d\x59\x7a\xd3\x7c\x9b\x1d\x59\x3a\x4e\x29\xa7\x86\xe2\x23\xc9\x20\xf0\x93\xf6\x34\xd0\xb6\xfb\xb4\xb8\x22\x9c\xa7\x82\x93\x6a\xde\xc2\xd5\xad\x6b\xab\xc4\x35\x23\x10\xf3\xc1\x43\xff\x12\xee\xd2\x00\x7e\x8d\x16\xef\xd6\xe9\x82\xa6\xfe\xe2\x9a\xa5\x99\xac\xfa\xfa\xde\xf9\x5a\xd1\x6a\xd4\x46\x67\x1c\xed\x1d\x62\x2b\xa1\xf8\xa9\x86\xa7\x5e\xd1\xba\xdd\x4e\x05\x88\xca\x1c\x40\x54\x83\x96\xf1\xe7\xa2\xaf\x48\xf5\x97\xeb\x02\x50\x50\x0b\xc2\x83\x2d\x27\x49\x7f\xdb\xf1\x62\x9f\x14\x04\x3f\xd5\x2a\xed\xb4\xa8\x44\x98\x45\xfc\x8e\x64\x1e\x5b\x29\xf0\x6e\x52\x22\x16\x99\x6f\x36\xd6\x4f\x9a\xdd\xaa\x5e\x6c\x16\xa7\x3d\x60\x98\xdb\x5b\x07\xf2\x22\xd8\x2e\x46\x05\xb3\x78\x51\x29\x6a\x46\x32\xa7\x39\xaa\x8c\xe0\x14\x1c\xfb\xfb\x76\x17\x07\xa8\xb4\xdc\x1b\xb0\x68\xf2\x88\x86\x81\xf8\x1b\x20\x0c\x11\x38\xc4\x6f\x78\x08\x10\x06\x09\x33\x7d\x14\xaf\xd4\xa3\x98\x18\x8e\xa3\x7f\x73\x28\x2c\x0f\x3e\x67\x7a\xa9\xb1\xad\xc2\x91\xb1\xca\x14\x9d\x39\xb6\xe4\x2f\xdb\x25\xea\x78\xa0\xcf\x02\x0e\xf8\x86\xdc\xe7\xd3\x74\x6a\xaa\xa2\x14\x13\x4c\x06\x10\xb2\x03\x7c\x6d\xd5\x2f\x54\xf9\x23\x95\x55\xe9\x17\xe4\x07\xc2\xc4\x88\xe8\xe7\x00\xe1\x75\x66\x7f\xa8\x7e\x05\x08\xd7\xe2\x8a\x89\xef\x77\x49\x11\x20\x43\x8a\xcc\x2f\x56\xfa\xcb\x2d\xe1\xf2\x87\xf5\x5d\xbe\x28\xc4\xe7\x5c\x3e\x7a\x32\x17\x4e\xee\xa2\x99\xfd\x5d\xce\xae\x1f\x57\xc4\xa2\xa2\xde\xf8\x88\x59\x89\x2b\x9a\x55\x7a\x0a\xda\x1a\xf1\x95\x6a\xbd\x4d\xe7\x69\x69\xb0\x28\x78\xdc\xe8\x6b\x64\xb9\x46\x7c\x83\xf9\xd8\x02\xb0\xb9\xfd\xf4\x7a\x91\x5f\xfe\x33\xb0\x2a\xac\x89\xdb\x50\xcc\x3c\xc9\x1a\xcb\x29\x2b\xab\x6d\x3f\x9f\xc8\x88\x56\x9e\x57\x4a\xc1\x5f\x8b\xa3\x11\x38\x69\x9c\xd3\xc9\x5c\x57\x39\x71\x35\xdc\xf4\xd2\xf0\xb6\x01\x49\xac\xb5\xe0\xb5\xcc\xa4\xe6\xef\x18\x83\xcd\x6d\xe8\xa4\xd3\x31\xb9\x94\xca\x4e\xf0\x33\x38\x2b\xab\x0b\x75\xad\x12\x38\x6e\xa8\x0f\xbf\xca\xfc\xf2\xa9\xc4\x99\x82\xf1\xcf\x33\x30\xe1\x96\xfd\x0c\x81\x01\x9d\x36\x03\x6e\x7b\x9c\xc1\x6e\xef\xe9\x19\x31\xf5\x63\xba\xd9\xd4\xd9\x48\xbb\x91\xc4\x72\xd8\x01\x14\xf8\x27\x5f\x2f\x66\x8e\x63\x98\xca\x98\x35\xbb\x90\x0e\x06\x21\xdd\xd6\x85\x19\xf8\x89\x1a\x2b\x4e\x70\x6c\x9f\xca\x0a\x54\x0e\xbe\xea\x45\xcf\xba\xb0\x2c\x95\x4f\xa7\x29\x29\x1f\x0c\xc2\x7c\xfb\x8c\x50\xa8\x79\xea\x92\x08\x61\x3a\x18\xa8\x76\x80\x2b\x8b\xf4\x69\x2b\x48\x36\x47\x49\x1c\x16\x31\x45\xb6\xb3\x52\x81\xc7\x99\x91\x4e\x73\x1d\x28\x2f\x89\xc3\x75\x4c\x91\xf8\x24\x93\xad\xf1\xd8\x49\x45\x17\xe1\xde\xe1\x5e\x05\xdd\xb4\x77\xa0\x83\x70\x1c\xba\xec\x6c\x27\x3d\xa6\x0f\x45\xd9\xde\x0e\x20\xf3\xfe\x4d\x72\x43\xfc\xce\x4e\xed\x6e\x50\x5f\x8d\x7b\x53\x43\x9a\x7e\x86\x1b\xb3\x77\x6f\x49\x70\x21\x23\xef\x2a\xe9\x37\x98\x8a\x02\xb2\x5b\x32\x57\x76\x97\xa0\x79\xa8\x8c\x3a\x03\x3c\x37\x3e\x9c\xfe\xb4\x95\x03\x68\x89\xd7\xae\xa5\x8f\xde\xf6\x2d\x45\x3f\xf1\x7b\xdc\xca\xa9\x53\x02\x67\x42\xb3\x3b\xc2\x28\x2f\xde\xe7\x79\x41\xa4\xeb\x8c\x09\xad\x65\x2e\x8e\x4c\xe8\xcd\x88\x66\xd4\x31\xb3\x71\xc2\xd2\x64\x94\xb7\x78\x32\xcb\x43\x46\xd9\xc8\x83\x0b\x32\xd8\x2c\xc7\x07\xee\x97\x58\xfa\x4f\xc2\x2b\xb9\xb9\x40\xda\x78\xef\xc0\x79\x69\xb2\xd5\x7a\xc8\xce\xae\x2c\x8a\xeb\xfd\x27\xe4\xf5\x7b\x79\x29\x40\x23\xcb\x95\xb9\x19\xd4\xbb\x32\x23\xde\x4a\x43\xdf\x63\xea\x2a\x78\xe5\x41\x66\x5d\x64\x37\x16\xb7\x5b\x42\x80\x40\x95\x63\xc2\x46\x34\xe2\xfd\xdb\x97\xed\x2a\x8f\xf1\xc9\xa1\xb5\x0f\x6e\xe6\x0c\x2e\xc0\x99\xd7\x5b\xda\x5c\xdf\xcb\x84\x76\xcb\xea\xd6\x3c\x1a\x43\xc9\x1e\xb8\xc1\x20\x74\x07\x72\x3c\x41\x18\x4c\xa6\x5a\x46\x7e\x30\x20\x3f\xb6\x7d\xd3\x17\x33\x3b\x7b\x4a\x3a\x05\x57\x01\x30\x1d\x7a\xea\x74\xb2\xa9\x60\x7d\x59\x6b\x6c\xfb\x9b\x85\xbf\xa6\x3f\x64\xa0\xc6\x76\xbe\x8f\xe9\xc4\x35\x47\xd6\x3d\x4f\xd5\x16\xea\x2d\xfa\xa0\xd7\x36\xef\xf7\x0f\x4b\x87\xd5\xd5\xc5\x90\x49\x89\xe9\x98\x45\xc6\xcd\xfa\xed\xd9\xdb\xe9\xc9\xcf\xc7\x1f\x7e\x3a\x75\xbd\xad\x1b\x9d\x61\x6c\x94\xa2\xa9\x44\x32\xf0\xcd\xdc\x10\x8d\xcc\x90\x5b\x96\x14\x53\x9a\xdd\x27\x29\x05\xfc\x03\x18\xfa\x2d\x24\x9a\xa6\x6e\xbe\xf9\x70\x74\x30\xf2\xf5\x08\xee\x30\xa8\x38\xd3\x98\x0e\xf5\x41\x1b\xe9\xfe\xec\xb0\x34\xe5\x2e\xe0\x37\x9d\x07\x83\x98\x4c\x6f\x4a\x76\xdb\x9b\xb9\xcc\x7e\xeb\x66\xea\xb2\xbb\xec\x48\xd4\xec\xc8\xdd\xf3\x9d\x0c\x06\x7b\x8e\x84\x3c\x18\xc8\xfd\xa4\xe9\x3f\x21\x63\x8b\x61\xb3\xf7\xd6\xb7\x4a\xb9\xc9\xec\xee\xca\xe6\xc6\x58\xa3\x04\xd7\xb7\xac\xdd\xeb\xa2\x91\x41\x57\x4c\xf6\xd1\xd6\xf3\xd0\x2e\xbc\x35\xb9\xd7\xd9\x81\x4b\x70\xa2\x6d\xb3\x40\x26\x51\xf6\xac\xbc\x97\x83\x03\x4c\x3e\xac\x0d\x43\xb3\xfa\x66\x3e\x0e\xb3\x7d\x8a\x5e\x87\xe0\x32\xd9\xb2\xd0\x95\x25\x4f\xf3\xc3\x8f\x39\xaa\xef\x99\xd6\xf6\x90\xa3\x2d\x87\xa0\x7f\x7a\xca\xd6\x40\x27\x55\x33\xba\x39\x78\xed\x47\xb0\x5b\x54\x29\xaf\xdc\xa5\x48\x04\x78\xc8\x82\x37\x18\x3f\x7d\x26\x8f\x23\xdd\x01\x75\xec\x52\xed\x87\x6f\x93\xea\x3e\xb7\x9d\x03\x9e\x1c\x39\xbc\x7c\xb5\x03\xf8\x2a\x5b\xdb\x4b\xe5\xb7\xba\xb6\x4c\x07\x3f\x73\x3c\xa2\xf6\x89\x86\xad\xcc\xd0\x53\x06\x13\x80\x5b\x37\x42\xfb\x19\x5c\x09\x69\x86\xa8\xf5\xf0\xec\x51\xbd\x0e\x8d\xbb\x26\x15\xbb\x85\xb6\xba\x73\x37\x19\x54\x96\x25\x78\x71\x56\xf0\x7e\x0e\x04\x04\x5e\x57\xd1\x1d\x6d\xb3\x2a\xfc\x54\xeb\x34\x29\x69\x26\x29\x4d\x0a\x0b\x2b\x05\xe1\x29\x23\xba\xb4\x51\xd2\x0d\x38\xcc\x17\x71\xe4\x39\x2c\xb9\xb1\x7d\xe8\x12\xee\x6e\x7b\x28\xc6\x1a\x94\xc1\x2e\xc3\x99\xaf\x90\x10\x76\xc4\x4c\xd9\xc6\xfc\x57\x71\x32\x1a\x62\x40\x03\x48\xdc\x39\xb7\xc9\xf8\x7e\xa2\xc2\xab\x79\xe4\x85\x45\xbc\x56\xba\x88\x8a\xab\x96\x73\x01\xdf\xc1\xbc\xa4\xd1\xf4\x37\x92\x7c\xbe\x22\x1c\xcf\xe1\x85\xf8\x75\x9e\xac\xf0\xca\xf9\xb5\xd4\x50\x5f\xf7\xd2\x14\xbc\x78\x5c\xde\xe4\x29\x0a\x83\x77\x97\xc7\xe7\xa7\xbf\x5d\x5c\xfe\x32\x3d\x79\x7f\x7c\x75\x15\x58\xda\xa2\x47\xdb\x13\x21\x3c\xc0\x85\xc1\x54\x12\x6b\xc4\x08\xf8\x36\xbf\x45\x94\x8c\x48\xb2\x84\xdb\x00\x20\x38\x89\x49\x54\x47\x05\xc1\x69\x6c\x88\x64\x83\x41\x66\xb4\x07\x26\x5e\x9b\x10\x30\x07\x83\xa4\xfa\xb0\x88\xed\x98\x93\x1c\xe1\xbb\xf8\xe0\xf5\xdd\x0f\x0b\x6d\x1a\x7f\xa7\x4d\xe3\xe7\xf1\x62\x7c\x37\xc1\xab\x98\x8f\xe7\x13\xbc\x14\xd5\x5f\x47\x73\x52\xcc\x18\x5d\xf1\x9c\xbd\xcb\x59\x85\xd4\x42\xf0\x1c\x33\x84\xef\xab\x42\x97\x20\xdf\xde\x4b\x52\x8f\x31\x19\xcf\x27\xbd\x54\xd4\x50\x03\x81\xce\xd1\x8f\xfb\x87\x83\x41\xb8\x8a\x1f\x8f\xa0\x3f\x97\xc9\x67\x6d\x2c\xf8\x68\xc0\xfa\x56\x68\x54\xff\xb8\x42\x08\xcf\x44\x93\x9a\x94\x9c\x98\x54\x4f\x25\x7e\xc4\x2b\x84\xca\xfb\xa3\x25\x80\x28\x89\x4a\xae\xd0\xa8\x42\x66\xa8\x30\x54\x3d\x60\x37\x9b\xcd\x1c\x02\x94\x1d\x89\xaa\xc7\xab\x91\x2f\x4d\x28\x08\x96\x52\x48\x13\x5d\xc9\xa2\x75\x06\x7e\xe2\x36\xf4\x0d\x86\x8e\x5b\xd0\x8c\x16\x77\x80\xe0\x53\xa0\x90\xa9\xb7\x96\xf5\x06\xc1\x81\x20\x13\xe8\x58\xa1\xee\x1f\x26\xfd\xa8\x6f\xdb\x82\xa1\x6a\xf6\x7e\x0e\x21\xd9\xa5\x85\x71\x05\x99\x8c\x7a\xd5\x54\x1b\x0c\xc2\x79\x34\x27\x29\xe1\xa4\x99\x0e\xb3\xe8\xdd\xf1\xc9\xf5\xc5\xe5\xef\xd3\x77\x17\x97\xd0\x6b\xb0\x2d\x73\x1d\x47\xd8\xc6\x61\x86\xe5\xa4\x4c\x98\xe5\x09\xf0\xda\x9a\xe2\x19\x8a\x1a\x5d\x51\x12\xb1\x6b\x53\xfe\x4e\x5a\x72\x39\x8b\x78\x5e\x95\xa6\xcd\x1e\xd3\x98\x34\xc5\xe5\x54\x2d\xde\xb8\x9b\x31\x02\x77\x8d\x11\x54\xb4\xbf\xd7\x4c\x08\x23\x63\x66\x1b\x23\xb0\x49\x75\xf3\xb9\x96\x22\x37\x6c\x1b\xda\xab\x5a\x5f\x50\xa7\x0d\x79\x5d\xbc\x9b\x37\x45\x5e\x73\x48\x17\xd1\x8a\x90\xcf\xe7\x2e\x46\x12\xf0\x9c\x57\xf9\x9a\xcd\x48\x75\x19\x13\x5a\x80\xbc\x05\xe1\xcd\xcf\x62\xda\x24\xb6\xd1\x9e\x81\x0f\xe4\xc6\x5d\xc1\x92\xc0\x9b\xe9\x8d\x91\x5f\x95\x7e\xaa\x3f\xcf\x55\xae\xca\x3c\x20\x6d\x13\xe7\xc5\xa7\x46\x3e\x77\x53\xae\x37\x8f\xcc\x43\xb4\xd9\x84\xd0\x1f\x72\xfe\x59\x3d\x82\x9b\xed\x15\xe9\x91\x28\x87\xe7\x57\xa0\x63\x6c\xf6\xad\x07\x64\x85\x4b\x23\x7e\x99\xe3\xf4\x0b\x27\x59\x41\xf3\xec\x28\x18\x05\x43\xff\x27\x21\xbe\x05\x1a\x61\xe1\x87\x60\x18\xc2\x7e\xa3\x82\xa6\xaa\xda\x6d\x36\xee\xba\xd0\x6b\x4c\x1b\x95\xdb\xab\x42\x17\x10\x22\x04\x61\x2b\x25\xb9\x35\x9d\x9b\xfb\x6a\x34\x24\xc3\xe0\xc7\x40\x1c\x57\x44\xd4\x62\xde\x6c\x98\x57\x07\xc5\xba\xea\xa0\xac\xbb\xca\x9a\x26\x8a\x89\xa1\x65\x4a\x43\x6a\xa0\x9e\xb5\xb5\x71\x54\xe1\x73\x89\x89\x6f\xeb\x9a\x20\x7c\xab\x64\x5c\xbd\x81\x1d\x65\x60\x64\x8d\x1a\x35\xbe\x9f\xa8\x08\xc6\x78\x6d\x6d\x49\xd6\x36\xb4\x3e\x2a\xe2\xb5\x34\x90\x1d\x99\x97\x04\xb0\xa2\x35\x12\x99\x09\x94\x69\xa9\x72\x0b\x48\xb1\x44\xca\xc6\x28\x09\x0b\x85\xeb\xac\x7e\xf7\x8c\xcb\x25\xc3\x16\x9a\x21\xf1\x5b\x2e\xe9\xb1\xf3\x9d\xb6\xea\x0e\xa7\x71\xe0\xb2\xd8\xae\x2e\xa9\xce\xd5\x2c\xb6\xf7\x58\x5e\x7d\x00\xac\xe7\x22\x3e\x78\x5d\xfc\x50\xdf\x9d\x5e\x17\xc3\xa1\x39\xfa\xd7\x71\xf1\xc3\xc1\x66\x53\x4f\xf3\x43\x5c\x68\xc4\x9a\x6a\xaf\x2a\x26\x38\x75\xce\x71\x88\xd0\x2a\x0e\x77\x1d\x6b\xf5\xf5\xec\x87\xc5\xeb\x99\x3e\xcb\xef\xe2\x74\x3c\x9b\xe0\x79\xbc\x1e\xdf\x4d\x14\x2c\x37\x31\x07\xe8\x9d\x38\x40\x35\xfe\x7c\x22\x52\xcc\xe3\x55\xe3\x50\x5e\x99\x43\x79\xde\x3c\x94\xe7\xa8\xa4\x8b\x30\x13\x0d\xf7\x50\x5d\x6a\xaa\xf5\x03\x7a\x89\xe7\xa8\x14\xdf\xe2\x79\x85\x4f\xed\x9f\xdb\x70\xef\x4c\x3c\x9b\xbf\x2d\xa7\x88\xdd\xea\x52\xf2\xf9\x08\x2f\x2c\x42\x5b\xa6\xb6\xb2\xce\xb2\xf2\x36\xd7\x23\x90\xa8\x8e\xa2\x3b\xc0\x5e\x22\x42\xda\xbc\xd3\x67\x29\x41\x78\x25\x21\x99\xc4\x4c\x1f\x0c\x56\xd5\x79\xb6\xae\x99\x10\x36\xeb\x83\x10\xaa\x1a\x57\x63\x70\x2d\x95\xa7\xe7\x58\xf2\x34\x44\x7a\x12\xd4\x35\x8c\x3e\xb6\xa7\x02\xb2\x11\x93\xf0\x35\x79\x2d\x91\x59\x95\xe8\x5d\xc1\xd1\x40\x64\xeb\xf5\x8a\x30\xc0\xe5\xaf\xae\x29\x4c\x61\x67\x0a\x80\xd5\xeb\xe4\x60\xc3\xb3\xea\x3a\x0a\x1e\xc1\xe2\x20\x3d\x4e\xeb\x55\x97\x87\x62\xb9\x6f\xe3\x3e\xb9\x75\x45\xc7\xa2\xa9\xa0\xbd\xd9\x3c\x41\x20\x6c\x92\xcc\xee\x4e\xd4\xb5\xe1\x96\xc2\x5e\x68\x2b\x05\x7b\x9e\x5d\x51\x65\x8d\xfc\x54\xda\x9c\x90\x3b\x79\x8c\x2b\xcb\x5b\xd3\x98\xc2\x71\xf6\x87\x31\xa0\x16\x0e\x8f\x8e\x38\x4b\x75\xd3\x58\xcf\x02\x03\xc8\x51\x59\xc2\xe4\x81\x12\x76\x4e\x5d\xc1\x79\xe8\xe9\x8b\x9e\xee\x00\x39\x8c\x38\x6e\x68\xd5\x40\xf7\x60\x23\xd3\x63\xe0\xcc\x6e\xcf\x1c\xae\x7c\x56\xcc\xb5\xa7\x47\xdf\x41\xb4\xbe\xc3\x52\xb8\x35\x94\x1e\x66\xc2\x37\x38\x27\x1f\x53\xd1\xd4\x4a\x94\x25\xae\x15\x02\xc8\xdb\x2f\x2e\x45\x32\xaf\x9e\x62\x26\xba\x35\x6e\x57\x34\x8a\x92\x43\xb1\xb2\x4e\xc2\xfa\x75\xa8\x38\xfb\x42\x12\xd7\xb6\x0a\x84\xe4\x19\x79\x52\x31\x18\x30\x48\x78\x65\x73\xcb\xe2\x78\xd6\x2d\xae\x46\xaf\xa5\x12\xea\xd4\x90\xe6\xb6\xb2\xce\x17\x0b\xb7\x52\x64\x2f\x8e\x9b\xb0\xf7\x47\x44\x9d\xd4\xa0\x69\x21\x65\x88\x7a\xb7\x15\x6f\xb6\x8e\xa0\xd0\x6b\xf5\x1b\x4b\x11\x59\x73\x51\xb7\xca\x62\x28\xb2\x42\x94\x21\x7c\x1b\xd1\x42\x6e\x76\x7b\x07\xf0\xe3\x9c\xf0\xbb\x7c\x1e\xef\x1d\xc2\x7c\xbc\x89\x6f\x2d\x15\xce\xcd\x33\x54\x2e\x56\xf0\xd9\x6f\x73\x07\x5a\xd3\x9f\x74\xba\x1d\xed\x80\xec\xee\xd5\x57\xe4\x7e\xee\x8f\x7e\xcd\x0d\x24\xd5\x37\x90\x62\x17\x69\x88\x54\x79\x43\xa2\xd1\xfa\x6f\x13\x56\x0f\x69\xb7\xf5\x7c\x0b\x3b\x5e\xd7\xe5\x89\x61\x50\xc6\x80\xce\xfb\x65\x2e\xa4\x86\x8f\x10\x3e\xbd\x32\xd9\x22\x52\x38\x60\x00\xa4\x61\x0a\x06\xdb\x67\xb3\x4a\x42\x62\xd8\x43\x8b\x3d\x47\x80\x1f\x25\x3f\x38\x8c\x36\xd6\xd0\xb0\x55\x62\xb9\x5c\xa0\x21\xa2\x7a\x30\xfd\x48\xd1\x68\xfb\x8a\xe5\x33\x52\x14\xbe\xf6\x7b\x24\x3d\x4b\x59\x5f\xcf\x81\xed\xcb\x5c\x95\x55\x6d\xde\xca\xc3\xbd\xac\xc0\xd0\x6c\x95\x65\x8e\x73\xfb\x1a\xb8\xaa\x8a\x58\x2c\x79\xf4\xe1\xf8\xfc\xf4\xea\xe3\xf1\xc9\xe9\x55\xcc\xac\x1f\xce\x97\xe9\x9b\xdf\xa7\x67\x6f\x9d\xef\xf2\x95\x24\x2d\x1a\x78\x9c\xa6\x31\xb3\x7e\x54\xfd\x8e\xf3\xe8\xe6\x51\xfc\x8c\x6b\x23\xf2\x8c\x75\xf8\x5f\xae\xf5\xec\xb4\x44\x9f\x65\xda\xf0\x82\xf8\xd0\x3e\xc4\xd5\xdd\x7a\xce\xc6\x56\x50\x8b\xa6\x1b\x7b\x37\x87\x14\xcf\x24\x13\x6d\xb4\x8f\x17\xbf\x9e\x5e\x5e\x9e\xbd\x3d\x9d\x5e\xfc\xf6\xe1\xf4\x32\x40\x78\xf1\x95\xfb\x47\xbb\xf4\x28\x76\x11\xcf\x91\x4e\xf5\x21\x38\x85\x56\x9b\x50\xbc\xbf\x90\xc7\x96\x33\xa8\x45\x9a\x6e\xc0\xca\x83\x84\xb5\x58\xcb\x69\xa9\x8f\xb8\x2c\x82\x96\xb6\x5c\x94\x8c\x67\x13\xdb\xcf\x7e\x3c\x9b\xf4\x5e\x50\x26\x4c\xb3\xe6\x81\xaf\x28\xc6\x04\x8e\x40\x5a\x86\x89\x6f\xe5\x2e\x0c\xc6\xbc\xdc\x76\x16\xfa\xf0\x33\x07\x9f\x71\xd9\xd6\x4e\xc8\xae\x3b\x71\x7d\x26\xa4\xbe\x77\x6d\xa3\xac\x7c\xb9\xa9\x31\x2f\x31\xc8\x56\x95\xc2\xc2\xec\x8b\x4a\xc6\x96\x3e\x1e\x45\x41\x18\xbf\xbe\xb3\xa0\xbb\xc9\x1c\x85\x14\x61\x56\x19\x62\xfd\x77\x9c\x16\xf5\xa1\x68\x74\x6f\x6a\x75\x6f\x89\x7a\xcf\xdb\xbd\x5e\x62\x4c\xf5\xd5\x26\x53\x2a\xce\xc4\x4b\x8d\x2f\xff\xab\xd5\x47\xcc\x37\xed\x29\xa6\x75\x89\x40\x5d\xb9\x55\x57\x72\x5d\xce\x0e\x13\x44\xb1\xbb\x17\xa0\x67\xef\xde\xe1\x44\x2a\xd9\xde\x16\x2b\x1c\x2d\x17\x07\xe2\x77\x50\xdd\xd4\xd8\x9f\x4c\xdc\xbb\x40\x1b\xbc\x8e\x33\xb9\xce\x08\x9a\x6c\x36\x1a\x91\xb5\x67\xab\x28\x63\x7a\xc4\x9b\x21\xd8\xc0\x0e\x32\x90\x2c\x3b\x1a\x59\x50\xae\x54\xb0\x35\xb6\xf0\x0c\x81\x5d\x8e\x68\xac\xc2\xb8\x8c\x5c\xc9\x5a\x53\x16\x09\xaa\x90\x80\x9e\x78\x29\xa2\x38\x08\xfc\x57\x45\xf4\xa1\xa5\x96\x5c\x83\xb1\xac\x80\x86\x75\x9e\x04\x23\x13\x2f\x11\x9b\x8f\x1f\x00\x89\x56\x7c\x53\x98\xb4\xd5\x27\xc9\x1c\x8a\x4f\xca\x32\xb4\xfa\xa4\x65\x0a\xf1\xd1\x74\x4b\xf5\x19\x54\x49\xe2\x9b\x36\x18\xd4\x1f\x44\xb5\xc5\x7b\xa8\x74\xf5\xfa\x92\xdc\x9e\x7e\x59\x89\x0f\x8c\xdc\x92\x2f\x2b\xeb\x93\xdc\x24\xc5\x27\xb3\xee\x4c\x25\x68\x0a\x9e\xaf\x50\x09\x9a\x92\x94\x16\x3c\x28\x71\x16\x37\xe2\xaf\x69\x46\xb7\x6d\xd2\x2a\x8e\xc3\x33\x4d\x3d\x97\xb1\x9d\xbc\x37\x2d\x73\x43\xa3\x9a\x78\x2a\x2b\x10\x15\x08\x31\x31\x26\x93\xf8\x10\x73\x44\x17\x21\xb3\x91\x6c\x58\x15\xf0\xc8\x6b\xad\x2e\x61\xb9\x40\xd0\xac\x26\x59\x15\x44\xd0\x17\x8c\x07\x95\x44\x31\x1a\xf1\x1d\xc0\xb3\x9f\xa9\xc6\x5f\xc9\x97\x4d\x6d\x0f\x98\xa7\x2d\x8c\x0e\x90\x80\x66\x62\x4e\x21\x55\xc2\x7c\xaa\x17\xd5\xed\x4a\xe0\xad\x14\x39\x3c\x9a\x8a\x7c\xd2\xfc\x50\xea\xd8\xf4\x3b\xcc\x05\xd5\xf5\x9a\xce\xe3\x04\x93\xe8\x96\x64\x84\x25\x9c\xfc\x24\x5e\x34\x0b\x08\x5f\xa8\xdc\x29\xd0\x30\x09\x51\x8f\xc2\x12\x5d\xab\x1b\xc4\x2a\x40\x22\xd4\x41\x89\x1b\xcd\x52\xc1\x62\x38\x24\x08\x55\xa2\x0b\x8f\xd7\x70\xa6\x11\x90\x57\x78\x5c\x08\xf2\xb8\x22\x5c\x05\x1a\xb4\xf3\xa4\x3a\x8f\xc1\xa3\x51\x63\xd3\xe3\x71\x65\x7b\x1d\xb3\xa3\xa0\xe0\x81\xa0\x38\xaa\x60\xa2\xc5\xdb\x6c\xad\xde\xca\x71\xd4\x69\x1f\xd5\xdb\x30\x18\x92\x61\x80\x02\x9c\x9a\x7a\x94\x76\x03\xe5\x6c\x8f\x33\x4c\xa2\x07\xe6\x20\x75\xaa\x30\x4e\x7b\x37\x76\x14\x49\x19\x78\x52\x21\xd3\x0f\x06\x37\x15\x04\x76\xff\x73\x48\xf0\xe7\x90\xe3\xdb\x6a\xd7\xf9\xac\x3c\x4f\x20\x4e\x53\x85\x1b\x7b\x2a\x5f\x18\xff\xce\xf8\x42\xde\x0e\x55\x29\x1e\xe4\x8b\x2a\xc5\x15\x54\xb5\x58\xf9\xf4\x9e\x75\xd4\x6c\x32\x18\xf8\x10\xf0\x1d\x40\x28\xf5\x7c\x16\x12\x7c\x00\x15\x94\x36\xe9\x95\xca\xce\x0b\x35\x48\x7a\xf3\x5c\x59\xcd\x57\x5a\x16\x2b\x84\x63\x95\x3d\x64\x98\xbb\x26\x00\x26\x50\x5b\xd6\x63\x2d\x3a\x1a\x86\xca\x87\x3b\x9a\x92\x50\xad\x64\x86\x1c\xb3\x77\x2c\xf8\xbc\x4c\x22\x01\xc6\xef\x30\xa9\x70\x01\x1b\xe6\xae\x74\x11\xbe\x93\x73\x4e\x55\x97\x8c\xb9\x71\xc5\x36\x8a\x3c\x70\xe4\xc2\xa4\x52\xf3\xfb\x8f\x4b\xbd\x01\x8d\x0d\x85\xbf\x4b\x14\x1b\x30\xbc\x24\x5a\x56\xf7\xa9\x86\x7f\x56\x93\xbb\x94\xe3\x59\x4b\x06\x33\x0c\x56\xdf\xcf\xd5\xe4\xc4\xa4\xa9\x80\xe8\x93\x90\xfb\x9d\x11\xac\x98\xa4\x96\x91\x6d\xfb\xf1\xce\x3d\xc7\xbb\x37\x22\x69\x85\xe6\x10\x04\xca\xc3\x5d\x5f\xf9\x80\xa3\x7b\xf6\xa3\x42\x7e\x0e\x70\x80\xf0\xa7\x90\x8f\xb3\x09\xda\x6c\xc4\x1b\x22\x7f\x54\x1a\xeb\xd2\xd1\xce\x57\x75\x37\x0d\x35\x8d\xb0\x2e\x17\x75\xee\x37\x8a\xb9\x87\x9e\x81\x08\x3b\x5f\x1a\xe3\x44\xad\x25\xfa\xab\xd2\xfd\xf6\x6c\x25\xbe\x0e\x87\xe5\x66\x84\xae\xff\x55\x69\x88\x25\x79\x90\x63\x9a\x73\x41\x2f\xff\xc1\x80\x8c\xff\x6d\xa2\x28\xfe\x46\xf9\xdd\x79\x92\xcd\x13\x9e\xb3\xc7\x2b\xc2\x39\x61\x31\x89\x38\x49\xd8\x3c\x7f\xc8\x9a\x5f\x0a\xc2\xd7\xab\xe6\x6b\x0b\x15\x3e\x26\x11\xf8\xff\xc6\x24\xfa\xf9\xf8\x6a\xfa\xe1\xf8\xfa\xec\xd7\xd3\xe9\xc7\xcb\x8b\x7f\xff\xdd\x7d\x75\xf5\xfb\xf9\x9b\x8b\xf7\x31\x89\x2e\x2f\x2e\xae\x85\xfc\x73\x47\x66\x9f\x7f\x4e\x8a\xab\xf5\x0a\x68\xfe\xf4\xe9\xec\xed\xf4\x97\x53\x91\xab\x6d\x85\x16\xae\x4a\xee\xa0\x3a\x9b\x13\xc3\x47\x0f\x87\x39\x58\x65\x14\xb1\x94\x08\x02\xbc\x76\x2c\x86\x52\xf8\x25\x9e\x66\x71\x16\x06\xd3\xa9\x4c\x35\x14\xfc\x4c\x94\xe5\x0f\x21\x84\x29\x32\x95\x99\x29\x73\xa5\xf1\xa4\x2a\xec\xae\x3a\xc7\x80\x82\xd8\xae\xc3\xd9\x10\xa2\x48\x2f\xd2\x3c\x67\x21\x3c\xb2\x24\x9b\xe7\xcb\x10\xfd\xc5\x22\x8d\x86\x22\xbd\x75\xcb\xab\x42\xec\x62\x5e\x4a\xf3\x1e\xb3\xf7\xec\xd8\xac\x8a\xa3\x5d\x09\x3c\x00\x40\x15\x92\x8f\x7d\x4d\x49\x3c\x40\x5e\x0c\x3d\x81\x25\xc6\xae\x2d\x53\x42\x46\x63\x5e\xf6\xb6\x8d\xda\xbc\x27\xaf\x31\x5f\xfd\x11\x85\x12\xab\x68\x23\x16\xc8\x1f\x20\xeb\x6c\x60\x67\x93\xcf\xe8\x15\x5e\x7a\xb4\xdc\x66\x89\xe1\xfb\x78\x29\xd7\x96\xff\xae\xb1\x44\x86\xcb\x09\xac\xd7\x01\xfa\x71\xff\xd0\x17\x22\x63\x15\x71\x52\xf0\x70\xa9\x85\x04\x3b\x98\x8a\x71\xe1\x3e\x10\x8d\x73\x67\xeb\x7d\x4f\x5a\x50\xd9\x13\xeb\xb6\x16\xe7\xc6\x36\xcc\xb0\xac\xcf\x6e\xaa\xe1\x78\x54\x3b\x6d\xe3\xde\x41\x86\xf9\xbc\x0f\x09\xc2\x8f\x15\x2b\x82\x79\xa9\x16\xcf\xad\x7a\x7d\x8b\xf7\x0e\xa5\x0a\x79\x6a\x57\xa5\x2a\xec\x41\x6e\xd8\xd3\x6a\xab\x36\x9f\x4e\xad\x6e\x98\xea\x2d\x5f\x90\xfa\xe2\x27\x75\x25\x49\xf1\xc1\xe0\x8b\x87\x9a\x1d\x87\xe2\x8b\x4d\xed\x18\xa8\x71\x63\xcd\x57\x11\x94\x8c\x86\x2b\x0a\x5b\x40\x89\x72\x9e\xf4\xac\xe7\x98\xf7\xb4\x35\x9e\x57\x52\x76\x51\xaa\x64\x16\x56\x39\xfc\x1d\xc3\xa6\xc9\x10\x7e\x08\x19\x3e\x05\x13\x86\xab\x90\xe1\x0b\x78\x62\xa5\x04\xf2\x6b\x95\x37\xf0\xc9\xd6\x79\x79\x1e\x3b\xc7\x11\xbe\xb4\x0d\x01\xf0\xc7\xf8\x5f\xaf\x2e\x3e\x44\xf2\x20\xa4\x8b\x47\xfc\xd7\xf8\xf0\xe0\x00\xbf\x8d\xff\x19\x7f\x88\x5f\xfd\xc7\xf8\x8f\x87\x3f\x4d\x86\x7f\x7a\x55\xf5\xcd\x99\x1b\x3a\x67\xef\x50\x47\xcb\xaf\xbc\x22\x21\x54\x7c\x75\x22\x8e\x9a\x67\x24\xa4\x50\x42\xc5\x68\x9b\x20\x7d\x0e\xd7\x8e\x34\xde\x3b\xe8\xdd\x30\x92\x7c\x96\x6e\x7d\xe6\x44\x8f\xe3\xeb\xcd\xa6\x12\xb6\xab\x13\x10\x12\x57\xe1\x3e\xac\x73\x10\x8a\x36\xa7\xe7\xa8\x91\x24\x8e\xe3\x93\x23\x19\x18\xf6\x28\x18\xeb\x8e\x1d\x05\x43\xf9\x6e\x18\x08\x41\x70\x6c\x89\xa6\x4d\xea\x8a\xab\xd0\xb4\x3f\x8a\x75\x24\x3f\x48\x9e\x7a\x04\x3f\xb4\x94\x2c\x7f\x29\xae\x73\x54\x8b\x9c\x6f\x13\x2f\x6d\xce\x23\x43\x59\x7d\xfa\x56\x01\xcb\xd5\x75\xad\xea\xcc\xf1\x09\x65\xb3\x75\x9a\xb0\x49\x60\xf1\x6c\x70\x4a\x63\x7a\xe4\xe1\xf5\xf8\x8f\x6f\x4d\x5e\x25\x64\xf7\x2a\x83\xd3\x60\x1c\x60\x1f\x3c\xb2\x28\x79\x18\x83\xab\xe6\x51\xd0\x0f\x46\x01\xee\x07\x98\xfe\x18\xff\x15\x3d\x65\xc3\x38\x88\xa2\xa8\x1f\x0c\x43\x03\xeb\xf9\x57\x34\x0c\xfa\xcb\x9c\x91\x3e\xe5\x64\x59\x04\x6a\x7c\xb3\x61\x7c\x16\x02\xc6\x32\x78\x53\xe9\xfa\x0e\xe3\xa0\x3f\x09\x4a\x31\xf7\x86\x87\x38\x43\xa3\x1d\xd5\xd6\x02\xbd\x5d\xef\x27\x51\xef\x4b\xd1\xea\x3c\x3e\x78\x9d\xff\x40\x75\xf5\x73\xb7\xfa\x79\x55\xfd\xbc\x5e\x7d\xda\xac\xbe\x58\x46\xba\xf6\x12\x22\x9a\x8e\xf3\x49\x2f\x1b\xc6\xef\xc3\x04\x0d\x83\x51\x3f\x18\x8a\x26\x25\x9e\x26\x95\x56\x93\xaa\x1d\xeb\xbd\xb5\x63\x7d\x90\xc7\x00\x30\xc8\x62\x22\x55\xa9\xde\x39\xde\xfa\x0a\x44\xdb\x1f\x24\x77\xcc\x27\x50\xb5\xbf\xbb\x5b\x01\xec\x59\x3f\x3b\x7b\xaa\x78\xf3\xa6\x7d\xab\xa9\xb6\x81\x4f\x35\x4d\x41\x1c\x13\x28\xe2\x37\x9f\x91\x9d\x14\xff\x07\x83\x4a\xe9\x03\x2f\x26\x42\xba\x6c\x2d\x4b\x1e\x7c\x32\xa5\xe4\x7c\x9a\x1c\xdb\x6f\x50\xe1\xbf\xf9\xca\x04\x06\xb5\xe7\xe1\xfc\xfe\x06\x79\x7e\xad\xaf\x1e\xf1\xf2\xf7\x36\x73\x59\xcb\xeb\x2f\xa5\x4b\xca\x63\xe9\xd9\x13\x89\x34\xb1\x74\xa6\x89\x0a\x9e\x33\x12\x33\xf5\x83\xfe\x9d\x68\xaf\x8e\x25\x85\x2b\x43\xf5\xeb\x8e\x72\xf3\xac\xb2\x6c\x36\x8a\xef\x2b\x15\x0c\x77\xf3\xca\x15\xf8\x1c\x1f\x0f\x5d\xd1\x51\xab\xfe\x28\x34\xc5\x0c\x87\x56\x31\x5a\x2f\xa0\xe0\xb3\x65\xa5\x4c\x0a\x79\x6a\xea\x26\x81\xfe\xa0\x94\x28\x1f\xfe\x18\x38\x55\x57\xfc\x68\xda\xab\x7d\x69\xc4\xb3\x5b\xb4\xcd\x27\x60\x1e\xad\xd6\xec\xb6\xe9\x16\x23\x93\x2a\x9c\xe3\x66\x2f\xda\xfd\xa6\x7b\xb4\x94\x66\x05\x9a\xcd\xff\x1d\x06\xf1\x27\xfc\x0b\xfe\x13\xfe\xb7\xf8\x2e\x0c\x2c\x59\x20\x10\xc9\x6c\xd9\xe0\xdf\x70\x8b\x08\xf1\x13\x6e\x97\x3a\x7e\x69\x17\x55\xfe\xd4\xa6\xf6\xbb\xa7\xe4\xa1\x78\x05\xbc\xdf\x2e\x1d\xb5\x4c\x6a\x69\xa8\xff\xfa\xb7\x35\x61\x8f\xdd\xd2\xb6\x5f\x68\x36\x92\x02\xbc\xe2\x74\xae\xc2\x99\xb7\x5c\x90\x56\xb9\x66\xf9\x72\x95\x67\x22\x8b\x54\x6b\xec\x48\xae\x31\x27\xc8\x17\x5e\x41\x4d\x6c\xcd\x21\x9f\x40\x1d\x2f\x1e\xbb\xd1\x07\x0d\xf8\x14\x4c\x37\x3a\x16\xa3\x33\xde\xd1\x74\x0e\x05\x3d\x33\xa3\x78\x31\x2d\x78\xc2\xc9\x4b\xf2\x3d\x27\x47\x1d\xa8\x63\xe7\xf0\x24\xfc\x55\xc2\x39\xeb\x38\xfe\x72\x18\xa7\xab\x84\x71\xda\x72\xd5\x5d\xe5\x81\x79\xa5\xb2\xec\x9b\xa9\xd0\xad\x20\xd5\x8e\x65\x92\x25\xb7\xa4\x09\x7d\x55\xf7\xe3\xc1\x0b\x7c\x87\xe7\x78\x85\x97\x35\x45\xb7\x3a\x24\xdc\x80\xbf\x21\xc1\xc1\x5f\xff\x4d\x2e\x90\xa7\xca\xfc\x6d\xb4\x77\xe0\xb7\xdc\xaa\xae\x3c\xca\x12\xe1\x1d\x24\xdf\xd2\x42\x10\x9b\x77\x26\xed\x66\xdb\x5a\x42\x32\x9f\x9f\x88\x39\xf8\x2b\xcc\xf5\x4e\xf4\xc1\xba\xc6\x64\xda\x4a\x9d\x16\x57\x74\xb9\x4a\xc9\x49\x4a\x67\x9f\x3b\x93\x77\x72\x6d\xa5\x7f\x4b\xb8\xa8\xc3\x9b\x7c\x9d\xcd\x8b\xce\xf4\x9d\x5c\x5d\xe8\x9f\xa4\x94\x64\xfc\x92\xcc\xf8\xb3\x0b\xb1\xb2\x76\x6e\x09\xcd\x6e\xab\x6c\x2f\x6a\x95\x43\x61\x57\xb9\x97\x79\x0e\x39\x9f\xd5\x36\x93\x69\x17\x75\x33\x51\x9e\x45\xbe\xca\xd5\xa5\xd7\xce\xba\x2e\x0d\xd3\x4b\x67\xdb\x57\xc5\x2d\xe1\xa7\x29\x80\x14\x3e\x6b\x5d\xb8\xd9\xba\xd4\x5c\x25\x7f\x6e\xf5\x55\xb6\xad\x25\x14\x2f\x6b\x43\xd1\xbd\x0d\xc5\xcb\xda\x50\x74\x6f\x03\x70\x60\x2f\x69\x45\x3d\xe3\xee\x52\x5e\xd2\x92\x7a\xc6\xed\xa5\x68\x3b\xd8\x2b\xfe\x98\x92\xb7\x64\xc5\xc8\x0c\xb0\xc7\xce\x49\x51\x24\xb7\xa4\x7b\xa9\x3b\x08\x6d\xad\x05\x78\xec\xbd\xb5\xb8\xad\x4e\x85\x66\x9d\x4e\xab\x13\x7d\x20\xbf\x57\xac\x59\x27\xda\xb4\x13\xed\x6b\xf2\x85\x5f\x69\x16\xa4\x13\xdd\xbc\x63\x9d\x19\x79\xc6\xcc\x4a\xba\x11\x15\xec\x20\x18\x1d\x3e\xaf\xca\x45\x37\xea\x66\x6f\x7c\x1e\xf5\x75\x27\xea\x82\xf0\x95\xe0\x2b\x9f\x47\x3c\xed\x4c\x5c\x59\x99\x77\xa2\x3a\xeb\x44\x55\x02\x93\x3d\xaf\xbe\x8b\x4e\x94\xcf\x3f\x5d\x1f\xbf\x79\x7f\x3a\x3d\x39\x7d\xff\xbe\x23\xe1\xbb\xc8\xce\xb4\x95\xba\xe4\x63\x3f\x6a\xce\xb7\x13\xf9\x79\xa7\x7a\xdf\x25\xc5\x73\xc9\x56\x59\x3a\xd4\xf9\xa4\x62\xbd\x3b\x91\x5f\x59\xb5\x6e\x67\xa0\xe5\x38\x9e\x2b\x06\xbd\x1b\xe5\xa5\x45\x79\xbb\xd4\xdb\x14\x4f\xb6\x0b\xc0\x52\x86\xdd\x61\x8b\x65\x8f\xb5\x8b\xea\x2f\x91\x49\xb5\xa5\xab\x33\x91\x50\x3d\x63\x2b\xe6\x7c\xa3\xe6\x8b\x24\x4d\x6f\x92\xd9\xe7\x7d\xf1\x65\x5f\x63\x34\x7e\x93\xa6\x78\x63\x13\x40\x2b\x2a\x1b\x18\x04\xda\xf1\x4e\x70\xf9\xdb\x44\xf6\x4e\xd6\x71\x2f\x8c\xa5\xa0\x66\x97\xf4\x4e\x95\x01\x5d\xa0\x70\x17\x9b\xd9\x0e\x79\x1f\x98\x34\xa3\x60\x68\x69\xb9\xac\x98\x1d\x19\xa0\x69\xa5\xc9\x63\xbe\xde\x46\x88\x93\xe5\x2a\x4d\x38\x19\x19\x8a\xc5\x2b\x87\xa4\x0a\x8a\x92\x49\x9c\xd9\xe7\x75\x63\x8b\x38\xde\x65\xe4\x3b\x23\x66\xbe\x44\xb8\x9f\x2b\x06\x84\xcc\xf7\x17\x24\xe1\x6b\x46\xea\x53\xed\x59\x08\x79\xf1\x53\x41\xb2\xb9\x37\xfc\xc4\xb7\x8e\x59\x29\xd1\x73\xa0\x98\x42\xb9\x85\xa9\x5f\x63\x02\x9e\xa6\xf9\x60\xb0\x17\xee\x81\x1e\xde\xbe\x4b\xcb\x90\xbe\xcf\x50\x55\xae\x3b\x89\x18\xa8\x49\x80\xaf\xb0\xe0\x16\x13\x07\x3f\x15\x8a\x88\xae\x4e\x3f\xbc\x9d\x1e\x9f\x5c\x9f\x5d\x7c\x50\x8e\xc7\x2d\x6a\xce\xc1\x80\x8f\xa9\xb3\x71\x4c\xe0\x02\x94\x47\xf7\x49\xba\x26\x70\xbd\x2c\x4b\x93\x1b\xa9\xdf\xb2\xcb\xf1\xda\x22\x71\x85\xa1\xe9\x81\xe2\x12\x03\x1d\x05\x43\xd2\xf4\x83\x31\xe1\xce\xf7\xc0\xd2\xab\x30\x50\x0b\xd5\x68\x35\x23\x72\x61\x6a\x8d\x56\xf6\xe3\xe1\x51\x26\x47\x2b\x8f\x0f\x5f\xe7\x3f\x64\x70\xf7\x41\xc7\xb9\x3b\x5a\xf9\xa4\xe7\x33\x30\x39\xe2\x6e\x9c\x05\x8a\x24\xc0\x98\x83\x55\x1a\x3e\x29\xb8\x56\x5e\xc3\x6a\xa5\x25\x2a\xcb\x52\x7a\x2e\xd7\xd0\x5e\x13\x07\x7b\xa7\xf3\xb2\xf4\x2a\xf2\x9e\x85\xc8\xbe\x5b\x9f\xfa\x6d\xd0\xda\x67\x86\x7d\x94\xc8\xe4\x19\xc4\x19\x7b\x4b\x8a\xd9\x5b\x32\xcb\x59\xc2\x73\x86\xc4\xbe\x99\x2d\xe8\xed\x5a\x9d\xbe\x87\xd8\x3e\x8b\x0f\x5b\xbd\x11\x6b\xb2\xbb\xf6\x3c\x2a\x11\x4e\x56\x2b\x92\x49\xad\x51\x3d\x02\x9f\xab\x4f\x7a\x2e\x2e\x7e\x37\x5d\xec\x3f\x2c\x5a\x89\x6b\xdc\x30\x9e\x00\xb2\x60\x23\x7c\x92\xcf\x6d\x7f\x34\x96\x86\xd4\x20\x37\x04\xb8\xfa\xf1\x86\x82\x42\x47\x8c\x3f\xcd\x68\x0d\x3b\xde\xdc\xe1\xfb\x2f\xfb\x4b\x5c\xd1\x1c\x65\xb8\x41\x73\x94\x75\x83\x6b\xdd\xa1\x51\x7f\xe9\x44\xd7\x47\x7d\xdb\x31\xd4\xf5\x6c\xe9\xe6\x9b\xf8\x74\xf8\xfd\x28\x90\x51\x59\x3f\x90\x87\x94\x66\x24\xc0\xdf\xfd\xaf\x51\x30\x4b\xb2\x19\x49\x83\x12\x27\xf5\xa1\x62\xd1\x35\x6c\xe5\x8e\x84\x81\x9f\x60\xbf\x1d\x05\x01\x16\x3b\x24\xbd\x59\xf3\xaa\x3f\xc7\x41\xb2\xe6\xf9\x2c\x59\x51\x0e\x5e\x28\x01\x96\x2f\x72\xc6\xa4\x2d\xb7\xf8\xb5\xc8\x67\x6b\xd1\x55\x73\xa3\xd8\x0d\x16\x39\x5b\x06\x38\x58\x26\x5f\x34\x98\x5a\xb0\xa4\x99\x79\x06\x14\xb1\xbb\x3c\x9d\xc3\x05\x09\x23\xc9\x3c\xcf\xd2\x47\x78\xfc\xdb\x9a\x32\x20\x51\x90\x54\xa2\x7e\xbf\xa5\x8c\x68\x03\xf5\x62\x45\xd2\x14\xac\x72\x02\x71\x2e\xdd\xa8\xbb\x9f\x80\x53\x9e\x0a\x16\xcb\x22\x2c\x11\xac\x75\x9d\xc4\x32\x37\xb5\x51\xb1\x1d\x9e\x3b\xfb\xe4\x0d\x59\x9e\x85\xc1\x2a\x29\x38\x71\x80\x5b\x88\x52\xce\x88\xae\x34\xa8\x75\x56\x8e\xd9\x9a\x3f\x2b\x3d\xcd\x56\x9d\x72\x94\xf8\x66\x7d\x73\x93\x92\x02\xa2\x1d\x88\x99\xb8\x62\x84\xff\x42\x1e\x41\x33\xe2\x33\x07\xcb\xc7\x24\xfa\x4c\x1e\x4f\xf2\xb9\xe4\x0a\xb6\x50\x0f\x11\xe6\x8e\x0b\x17\x9f\x80\xfd\xa1\x3f\xf5\xc8\x75\xc3\xb4\xa3\x8c\x04\x30\xc5\x64\x73\x22\x95\x59\x1d\xf3\x25\x9e\x35\x43\xe7\x6c\xab\x13\x31\xb1\x88\xd5\xac\x77\x72\x16\x61\x40\x44\x2f\xa8\xae\x23\x08\x17\xa1\x5a\x24\xfb\x99\x5e\x25\xdc\x84\x74\x86\xa5\xd2\x20\x50\xcc\x92\x15\xd9\x5f\x31\x52\x14\x56\x62\x98\xe6\x67\x59\x3d\x35\xbc\xde\xa7\x59\x3d\xe5\xc5\xba\xe9\xb1\xd6\xde\x26\x6c\x28\xe5\x66\xdc\x05\xa9\xcf\xe4\xf1\xa3\xa8\x47\xbd\xd4\xcf\xe4\xb1\x51\xc1\xcf\xe4\xf1\xd3\xaa\x59\x66\x73\x56\xa8\xf2\x04\x0d\x21\xbf\xd8\x04\xde\xe6\x0f\x8d\x16\x8a\x74\xf3\xfc\xc1\x6a\xa1\x6d\xda\x56\xd8\x56\x4b\xb9\x13\xbd\xbb\xce\x72\x99\x0f\x04\xe1\xc4\x4d\x29\x27\x08\x92\xf0\xde\x16\x0f\x39\x18\x34\x2c\x89\x73\xf4\xc4\x5a\x18\xa3\xbc\xc6\x18\x8d\x13\x9c\x4d\x4a\x09\x4c\xe3\x61\xbb\xf2\xc1\x20\x0f\x13\x9c\xa1\x1e\xb0\xc6\x76\x7d\xd4\xaa\x0a\xd0\x60\x90\x45\x05\xcf\x57\xe2\x64\x4b\x6e\x13\x39\xbf\xad\x58\x01\x49\xe7\x33\xc6\x77\xc7\xf9\x8f\x0a\xc2\x37\xe5\x2c\xc9\x0a\x2a\x88\x5c\xe7\x9e\x4d\x41\x4e\xce\xd9\x9a\x31\x92\x71\xd0\x97\x61\xe6\x79\xa9\x8d\xf4\xc4\x33\x48\x15\xd6\xef\x98\x60\x00\xa9\x20\x5f\xa8\xf9\xab\x1c\xaf\x59\x04\x6b\x72\x30\x50\x0f\x86\x8f\x7a\x91\xc8\xe8\xde\xf9\xfe\x97\x0b\x8c\x37\x2c\x7f\x28\x08\xdb\xdf\x15\xb3\xe1\x6b\xac\x06\xea\xc6\x08\xdd\x85\x50\x9c\xe0\xa2\xcd\x75\x69\x5d\x33\x93\xf5\xbb\x31\xc7\xed\x0c\x5c\x83\x1f\x08\x26\x38\x23\x09\x23\x05\xbf\x58\x40\xec\x0e\xbf\x5c\x2b\x81\x4e\x12\xa6\x6e\x2b\x70\x16\x3b\xbe\x6f\x4a\x44\xf1\x85\xc3\xd7\x28\x36\x21\xb7\x8d\x72\x7d\xdf\x1d\xb0\xbc\xf2\x35\x97\x80\x39\x99\xe5\xe6\xc2\x7b\x42\x98\xac\xaa\x51\x96\xba\xf2\xbf\x51\x7e\xe7\x0d\x91\xd5\xda\x04\x4d\x9f\x80\xdf\xd7\x96\x12\x18\x61\x24\x9b\x13\xd6\x1a\x96\xd6\x5e\x4e\x91\x4e\xad\x11\x08\xd4\xe9\x20\x91\x4f\xbf\x99\x24\xa3\x03\x98\x8b\x92\x88\x7d\xad\x57\x97\x67\x7c\x5b\x83\xd1\xf6\xc4\x34\xba\x4b\x8a\xb7\x17\xe7\x9e\x2d\x99\x1c\xcd\xf3\x19\x70\x49\x11\xcc\xe4\x2b\xe0\xdd\x72\x16\x12\x34\x52\xc6\x4f\xa6\x78\x5d\x54\x0d\xcb\x4f\xbe\x6e\xab\xbc\xc9\x64\xca\xb9\xc9\xe7\x8f\x55\x8f\x9d\xcd\x25\x4f\xf7\x40\xd3\xf4\x0c\x4e\x7b\xd5\xc4\xd1\x1a\xcf\xe9\xbc\xfe\x0a\x62\x16\xa4\x24\x61\x97\x72\xb0\xd6\xbe\x90\xbe\x1d\xf9\x41\x77\x44\x75\x4c\x5f\x35\xa0\x16\x66\x9f\x53\xa1\xc6\xbb\x6a\x12\x55\xfc\xd4\x1a\xf3\xe4\x56\x88\x37\x5f\xc5\xaf\x9a\x1e\xda\x6c\x82\x40\x43\x39\x2b\xc2\x9b\x4d\xe8\xa6\x51\x87\xb2\x03\xdd\x81\x4a\x2c\xc1\x63\x81\x79\xd8\x16\xd1\xc8\xe9\x09\x2b\x8f\x0e\x35\xc7\x51\x59\xf6\x8a\xe8\x5f\xff\xed\xd3\xe9\xe5\xef\xd3\xb3\x0f\xd7\xa7\x3f\x5d\x1e\xcb\x53\x3e\x4c\xa3\x3f\xd5\x9d\x65\xec\xaa\x19\xbf\xb6\x23\x80\x51\xd4\x5e\xcc\xda\xb4\x4e\xa7\x1a\xb9\x5f\x9d\x6f\xa5\x34\x9a\x9f\xd5\x55\x24\x8e\x02\x78\xb6\xfb\x18\xf2\x1b\xe0\x58\x07\x91\xbd\x53\xb7\xed\xcd\x3c\x44\x4f\xd6\x86\xcc\x21\x20\xa3\x0e\x90\x24\xb9\x9a\x22\x7e\x2a\x3b\xd7\xa6\x69\x77\xb6\xfd\x60\xdc\x8d\x59\xbc\x2b\x8a\x56\x27\x01\xb8\x5e\xe5\x6f\x6f\x9b\x57\x1f\x86\xee\xf4\xa7\xaa\xcf\xaa\x1b\xe7\x17\x9d\xeb\xcf\x3b\xab\xb5\x35\x56\x17\x36\xee\x2e\x7e\x5a\xe6\xeb\x82\x00\xcf\x34\x0a\xe0\x39\xbf\x17\x8d\x84\xc7\x94\x24\xf7\x44\xbf\x5e\xf3\xa0\xc4\xf3\x38\xaf\x5f\x18\x10\x29\x06\x3e\xf1\x7c\x3d\xbb\x2b\x78\xc2\xf8\x28\x80\xe7\x2b\xf1\x1c\x60\x78\x5e\xe6\x82\x10\x3c\x9e\xe7\xf7\x44\xbd\x15\xdb\xb1\x7c\x79\x9a\xcd\xd5\x3b\x25\x30\xc9\xd7\x27\x52\xd1\x20\xc4\x06\x21\x1e\x8c\x02\x25\x3f\xc0\x9b\xf5\x0a\x7e\x7f\x5a\xc1\x2f\x10\x55\xe0\xc5\x47\x29\xb4\x40\xad\x65\x2e\x78\x94\xf9\xe0\x51\xe4\x84\x07\x91\x57\x45\x22\x5a\x92\x6c\xad\x62\x3b\x7c\xe1\xe7\x24\x5b\x07\x78\x96\xd2\xd9\xe7\x51\x30\x93\xb6\x58\xf3\x9b\x54\xbd\x98\xe7\xeb\x1b\x63\xa2\x05\x74\x64\xf3\xe0\x51\x36\x0f\x04\x2d\x9a\x8d\x02\x25\xd2\xa9\x37\xf9\x9a\xab\x57\x17\x42\x06\x6b\xf4\xfd\xa9\x14\x2c\x1b\x9d\xff\x5e\x3c\x07\xb8\x58\xdf\x2c\x29\x1f\x05\xf2\x6f\x80\x41\x84\x1f\x69\x49\x5e\x49\xb9\xc1\x4c\x47\xc2\x61\xc9\xad\x1a\x0f\xf1\xa8\x86\x43\x3c\xca\x17\xf2\x59\x15\x2f\x1e\x55\xe9\xe2\x51\x15\x2e\x1e\x55\xd9\xe2\x51\x4c\x0d\xf9\xf2\xe2\x5e\xa6\xcc\x57\xe2\x77\xbe\xd2\xb4\xe6\x9a\xd2\x3c\x28\x31\xcb\x73\x73\x22\x06\xe2\x34\x0d\xb6\x9d\x30\xda\x6e\x58\x2e\x9a\x9f\x25\x98\x78\x51\x73\x19\x87\xdb\x34\xc0\x6a\x69\x44\xd6\xb7\x23\x98\x40\x90\x41\x29\x89\x4a\x25\xbd\x05\x43\x09\x78\x2d\x96\xd2\x5e\xce\x5f\x88\x1a\xd3\x93\x86\xf8\x32\x22\x03\xb5\xb5\x0b\x56\x53\x02\xcc\x15\xbc\x96\x94\x30\x1d\x62\x76\x3a\x89\xfc\xbb\xf0\x1c\x46\x9b\x4d\x51\x33\x39\x44\x61\x6e\x3c\xbc\x0d\x64\x63\x72\x94\x8c\x5a\xb8\x9e\x04\x21\x89\xc1\xf6\x9e\x16\x10\xb1\x37\x54\x38\x25\xe2\x98\xa6\x6a\xaf\xa9\x9c\xcc\x65\x48\xac\xa2\x3a\xb6\x44\xfe\x64\x3e\x07\xbb\x0b\x6f\x56\xbc\x97\x47\xb4\x08\x83\xc8\xf3\x0d\x55\x11\x38\x05\x8b\x0e\x48\x15\x61\xf0\x29\x13\x2d\xe9\xf3\xbc\x9f\xcc\xe7\xfd\x3f\x37\xf2\xfd\xb9\x0f\x15\x16\x09\x44\x2f\xf5\xd5\xa1\xd9\x0f\x83\x61\x98\x47\x85\x6a\xd9\x66\x93\x8f\x0f\x26\x9a\x7b\x40\xc3\x00\x45\xfd\xf3\xe4\x33\xe9\x17\x6b\x46\xfa\x8f\xf9\xba\x5f\x10\xde\xb7\xba\x59\xd0\xe3\x77\xa4\x2f\xe6\x57\x3f\x67\xfd\x24\x33\x94\x05\x23\xad\xbe\x44\x01\x32\xde\x24\x6b\xf1\x21\x43\xe0\x69\x63\x39\x16\x86\x6b\x0d\x75\x08\xb3\x4b\x4d\xc0\x30\xc7\x6b\x9c\x8d\xd7\x13\x3d\xeb\xd4\x7b\x9f\x0f\x8b\x71\xd5\x7e\xc6\xb8\xab\x69\xeb\x9b\xca\xc0\x68\xb8\x16\x72\x08\xdc\x7e\xe2\xbd\x03\xe3\x0b\x04\x08\x1f\x99\xc3\x0a\x31\x30\xd6\xa7\x25\xa6\x5e\xb2\xe0\x4c\x70\xac\xe5\xae\x30\x98\x27\x3c\xd9\x57\xa3\xa5\xaf\xb6\x68\x6c\x6c\x5f\x9a\x4c\xc3\x38\x03\xad\x1e\xb0\x7a\x46\x29\x43\x22\x23\xca\x15\x38\x89\x73\x75\x83\xd5\xa3\xe0\xe1\xaa\x7a\x5e\x01\xe3\x02\x12\xee\x93\x14\x0d\xf3\x88\x72\xb2\x0c\x0b\xd4\x3b\x88\xe3\x38\x05\x37\xad\xca\xd7\xb2\x51\xb7\xfd\x40\x42\xa8\x50\x0d\x4f\xbb\xad\x9e\xa9\x54\x00\x4e\x10\x2a\x4b\xba\x08\x69\x25\x7d\xcd\xe2\xbd\x03\xbc\x88\x0f\x5e\x2f\x2a\x47\xa2\x45\x85\x9f\x4b\xc7\x8b\x49\xef\x6e\x30\xb8\x8b\x60\x73\x00\x57\xf5\x38\x66\x83\x41\x38\x8b\xef\x54\x5f\x33\x00\x3d\x98\x19\x97\xa0\x99\xbc\x9e\x34\x97\x7c\x77\x63\x3e\xd1\x9d\x23\x9e\xf1\x3c\xe6\xb8\x8e\xa9\x20\x55\x29\x66\x8d\xcb\x4d\x4e\x8e\x62\x70\x0e\x07\xc2\xbd\xdc\x49\x2a\x53\xdf\x8c\xf2\xea\x4b\x48\xf0\xde\xa1\xf8\xc7\x23\xc1\x44\x60\x40\x9a\x49\x68\x8a\x79\x54\xcc\x18\x21\xd9\xbf\x9b\xa7\xdf\x31\x8f\x66\x60\xe2\xfa\xef\xe6\x09\xde\x71\x96\xfe\x42\x1e\x31\x8f\x92\x94\xcb\x87\xe2\x8e\x2e\xd4\xa3\x60\xc4\xe4\xd3\xcd\x9a\xf3\x3c\x03\x26\x32\x15\xac\x88\xd4\xf3\xb7\x19\xbe\x30\x73\xa7\xab\x95\xff\x5c\x47\x2b\x74\x8c\x54\x64\x84\xd9\x65\xec\xd9\xf9\xc7\xb9\x1b\xb0\xa9\x92\x9c\x4d\xe0\x43\x16\x13\xb7\x3a\xaf\xf9\x60\x00\xc1\x64\xa2\x2c\x9f\x13\xb1\x39\x0d\x06\xda\x3f\x91\x6d\x36\x4c\xe2\x35\xef\x85\x07\x78\x16\x29\xec\xb9\x02\x85\x62\xfd\xa2\xd7\xc8\xbb\xde\x38\x3a\xca\x42\x8e\x57\xe1\x1c\x13\x84\x46\x10\x8c\x7c\xfb\xe2\x19\x0c\x68\x95\x01\x57\xe2\xfb\x87\x7c\x4e\xca\x1e\x11\xdb\x2e\x8c\x9d\x06\xb4\x08\x73\xbc\x94\xfa\x43\x98\x0e\xf7\xde\xbe\xe0\x13\x0f\xd8\x89\xee\x87\xde\x3c\x17\xdb\x4f\x4b\xfd\x25\x72\x87\xe8\x95\x0c\xc0\x73\x65\xc8\x39\x20\xaf\x02\xa1\x87\x80\xc8\x5e\xd7\x40\x56\x3e\x9b\x7b\xd2\x3f\x53\x72\x66\x6f\x40\x6d\x29\x7d\x34\x4b\x7d\xbe\x78\x11\x0d\xec\x9e\x1a\x0c\x3a\xf5\x1c\x54\x93\xca\x6a\x4a\x2f\xd0\x5a\xff\x49\x4c\x8c\xc6\x28\x23\x6f\xc7\x72\x7c\x8f\x4a\x59\x47\x12\xe5\x59\xc8\x87\xea\x38\x0b\xb0\x3e\xd7\xa4\xc7\x4a\xb3\x6b\xfd\x7d\x09\xaa\xc6\xcc\xda\x7e\x39\x84\x06\xe5\xb5\xed\x37\x3c\xc0\xa9\x25\x3f\x22\x08\x0f\x2a\xfa\xb8\x56\x87\x71\xa3\x0f\x26\xbe\xba\x90\x48\x49\xbd\x72\x8e\xdb\x1b\x6d\x26\x76\x57\x40\xc3\x74\x0a\x34\x1b\xae\x74\xf5\xe4\x8e\xab\xa7\x32\xe5\x90\xfb\x2e\x05\x26\x05\x80\x7c\x24\x46\x66\x94\x26\x05\x3f\xdb\xb2\xff\xe2\x03\x05\x24\x92\x6c\x3d\x23\x72\xb5\xf7\x4a\x8b\x8e\xda\x36\x0a\x01\x9f\xaa\xe8\x20\x89\xd8\xd3\x13\xb3\xaf\x12\x84\x33\x89\x5f\x90\x40\xa8\x1f\x08\x81\xdf\xd0\x9d\x00\x8a\x9c\xb4\xc1\xd8\xce\x81\x11\x6b\x9e\x1c\xf1\x36\x86\x4a\xaf\x93\x8e\xc7\xb6\x8b\xd2\xd4\x5c\xb0\x88\x28\x88\x50\x77\x46\x32\x1f\x8b\x3b\x66\x13\xc9\xa9\xb9\x2c\x1a\x47\x51\xbe\x58\x84\xd5\x74\xf9\xcb\x5f\x2c\xfc\x54\x8b\xfb\x93\x05\xf9\xb9\xb8\xdd\xf7\xdd\x25\xd6\x3e\x9b\x4d\xcd\x58\x10\xd6\xac\x9f\x51\xe0\xaa\xd4\xe7\x9d\xb5\x07\x5a\xe0\xfe\xba\xa8\xc5\x5b\x35\xe5\xdd\xc4\xe4\x9a\x58\x2c\xe1\x13\xab\x16\x91\xda\x48\xbb\x17\xe2\x7b\x99\x77\x7a\xec\xc9\xdd\xe8\xf4\xc3\xaf\xd1\xb4\xf9\xbd\xd7\xa0\x99\x63\x1f\x9d\xc1\x80\x19\xfd\x67\x48\xe3\x2a\x46\x2e\x5d\x42\x8f\x29\x2a\x78\x2f\x1f\x0c\xe8\x11\x95\x8b\x4a\xec\x7a\x62\xdb\xae\xff\x96\x6b\xf7\x9a\x25\x59\xb1\x20\x2c\x40\xa3\x71\x60\xe4\xc1\x00\x2b\xf9\x2f\x30\x02\xa0\x7a\x4e\xa5\xac\x17\x68\x61\x0f\x1e\x21\x76\x94\x12\xef\x82\x49\x13\xd3\x83\xa0\x27\x5d\xf8\x82\x7e\xf9\x39\xcf\x3f\x17\x63\x32\x89\x9f\x56\x2c\x5f\x15\xa2\x5c\xbb\x22\x93\xb2\x44\xa3\x66\x87\xc4\x7b\x2a\x48\x58\x12\xe7\x3a\x02\x82\x3d\x2c\x1d\xee\xc0\x76\x6a\x5e\x9e\x15\xc7\x7d\xd7\x4c\x7c\xa1\x8a\xa6\x55\x29\xe3\xf1\x0e\x26\xdd\x75\x73\x75\x9f\xc0\xdd\x4d\x95\xa8\x82\x2f\x80\xa8\x23\x51\xb1\x4a\x29\x0f\x83\x57\x01\xc2\x2c\xe6\x63\x7d\xba\xec\x1f\x1a\x4c\x28\xe7\x65\x1c\x4c\x83\x21\xc3\x3c\xfa\x6b\x4e\x33\xc8\x56\xfa\x9a\xad\x20\xc6\x5c\x98\xa9\x06\xc4\xa5\x0c\xc2\x2a\x36\x6a\x8d\xa1\x25\xc3\xeb\x58\x22\xa9\xc1\xab\x0c\x03\x03\x43\xda\x7f\x48\x8a\x7e\x96\xf3\xfe\x22\x5f\x67\xf3\xfe\xc3\x1d\xc9\xfa\xa2\xcf\x68\x76\xdb\x5f\xaf\xfa\x49\x1f\x7a\xb4\xaf\xcd\x51\xa3\xfe\xf5\x1d\x2d\xfa\xb4\xe8\x2f\xf3\x82\xf7\x53\xfa\x99\xa4\x8f\xfd\xf9\x1a\xa4\xdb\x65\x92\xad\x93\x34\x7d\x54\xf7\x4d\x9c\x26\x5c\x90\x49\xb2\xbe\x04\x7e\x15\xbc\x42\xd4\xbf\x22\x64\xd4\xbf\xe3\x7c\x35\x7a\xf5\xea\x96\xf2\x88\xe6\xaf\x4e\x7f\xf9\xb8\xca\x8e\xed\x3d\x5c\x59\xb7\x56\x66\xb0\xc1\x90\xa3\xcd\xc6\xfb\x21\x43\x65\xc8\xb1\x18\x08\x2b\x00\x02\x2d\x31\xb1\x0c\xd1\x3d\x88\x6d\xfc\xff\x8d\x3d\x03\xbc\xe2\xa5\xb4\xd5\x96\xdc\xa8\xd3\x13\x82\xa5\xda\x6c\xb6\x27\x02\x13\x82\x8e\xab\xa7\x1d\xdb\xf1\x19\x60\xd4\xcf\x5a\x4a\xea\x78\x0d\xf6\x00\xf7\x44\xea\x3a\x06\x03\x52\xdd\x92\x1c\x59\xcf\xf2\xae\xce\xdc\x98\x00\x50\xa3\xe3\xf1\xe9\x15\x0d\xb4\x10\x27\xa6\x93\x92\xe2\xc4\xa3\x14\xf2\xc4\x93\x16\xfc\x84\x10\xf5\x70\x47\x67\x77\x3f\x1e\x6a\x9c\x30\x21\x23\x41\x00\x96\x5d\x9e\x53\x9e\x6d\xeb\xcf\xea\x26\xb7\x5f\x88\x2c\xfd\x8a\x59\xed\x2f\x13\x31\x33\x38\xcb\xe7\xeb\x19\xe9\xcf\x58\x5e\x14\xfb\x05\xe5\xa4\x2f\x01\x9d\x44\x9e\xfb\x75\x9a\x09\xd9\x90\xa6\x94\x53\x52\xbc\xee\xaf\x52\x92\x08\xf6\x3d\x03\xf5\x0f\xbf\x4b\x78\x1f\xf8\xca\xa2\x7f\x43\x44\x86\x1b\x98\xb5\x09\x23\xfd\x15\x88\x9e\xe9\x63\x5f\xda\xd6\xcc\xa3\xfe\xbb\x9c\x29\x8c\x92\x6c\x91\xb3\x25\xd4\x1b\xf7\x69\x36\x4b\xd7\x50\xc1\xbb\xfc\x41\xcc\x5a\x65\xbf\x05\x5c\x5c\xff\x21\x61\x19\xcd\x6e\x71\xbf\x20\x04\x26\x69\x31\x7a\xf5\x0a\x46\xfc\xaf\x45\x34\xcb\x97\xaf\xac\x13\xa5\x78\x75\x7f\x18\x7d\x79\xf5\x3f\x78\x3e\x9b\xde\xc8\x46\xef\x43\xa3\xf7\xab\x46\x47\xfd\x2b\xd9\x0d\x8b\x05\x99\x71\x32\x1f\xf5\x83\x3f\x0f\xc9\xf0\xcf\xc1\x9f\x15\x5a\x9e\x71\x0b\xf5\x0e\xa2\xde\x07\x5c\xef\x85\xd1\x32\xa1\x19\xec\xbe\x15\x0c\x9f\x1b\xe7\xcf\x7b\x48\x2b\x05\xe9\x98\x4c\x7a\x4a\x24\xce\xac\x9b\x65\xc1\x7d\x00\xd3\x9d\xa1\x52\x85\xdf\x31\xae\x9f\x00\x09\xe9\x4a\x43\xbe\x03\x8b\x2a\x98\x8a\xcd\x46\x63\x14\xba\xde\x97\xbe\x3c\x79\x23\x4f\xd1\x56\x0e\x6c\x69\x0e\x38\x60\xd1\x46\x5e\x24\xcd\x9d\xa4\x75\xff\x46\xf7\x26\xb0\x8a\xeb\x63\xd2\xb6\xd5\x3b\x77\xd3\x3a\xe6\xbb\x8d\x31\x64\xc6\x04\xc9\x04\xb8\xda\x3e\xa6\x7a\x38\xd7\x12\x01\x0d\xcb\x70\x83\x56\x09\x05\x26\x8e\xf5\xaf\x57\xa1\x94\x68\x00\x30\x63\xbb\xce\x06\x83\x90\xc5\x00\x2c\xd4\x03\xf3\x61\x69\xc7\x20\xd7\x78\x2a\x64\x20\xab\x8c\x75\x35\x72\xd2\xe5\x1b\x40\xc9\xd5\x9b\x4b\x08\x14\x3c\xab\x5e\x58\x0e\xdb\xbe\x01\x9e\x89\x36\x8b\x5e\xaa\x92\x85\xa8\xac\x95\xe0\xb8\x5f\x6f\xa3\xd2\x4c\x2d\x89\x2d\x41\x3e\x69\x71\x04\x58\x28\x18\x36\x3d\x15\x94\xe2\xa7\x79\x5a\x56\xa0\xe3\x95\x76\xa8\x12\xb8\xd4\x9b\x90\x4b\xf9\xfa\xb5\xab\x9a\x78\x8d\xe8\x22\xe4\x16\x0e\x96\xd1\x12\x48\xd8\x45\x92\x9e\xab\x3a\x3a\xe8\xdd\x36\xd2\x5b\xde\x40\xf3\x49\xfc\x98\x69\x85\x05\x14\x48\x1e\xfa\x57\xc4\xd8\x50\x24\x66\xd2\x63\x5e\x5a\x66\x3a\xd6\xe4\x18\x4f\x70\x56\xcd\x10\x07\x22\x4e\x07\x16\xdd\xb1\x7b\xec\x65\x9b\x4d\x16\xd9\xe1\x76\x9c\xdf\x64\xbe\xd9\xb8\x7b\x89\xa9\x48\x6a\xb3\xb7\x8e\xbd\x88\x9c\x68\x0e\x46\xd2\xac\x6a\x65\x2a\xc3\x39\xd6\x14\xa5\x97\xd2\x82\xb4\x67\x3b\x4a\xc3\x2d\xd7\x1b\xb2\xc8\x19\x09\x85\x3c\xc2\x0a\x18\x1d\x84\xa5\xa3\x76\x36\x3f\x5e\x80\x79\x18\xe8\x39\xd4\x97\x52\x42\x31\x5a\x18\x67\xe6\x0a\x46\xed\x00\x83\x41\xa8\x9e\x2c\xac\x23\x35\xe7\x36\x9b\xd6\x4f\x57\xe6\x52\xc3\x93\x24\xff\xfb\x79\x87\x54\x45\x87\x44\x79\x87\x34\x0f\xe4\xe6\x33\xe5\xb5\x84\x42\x94\xaf\xe6\xe5\x62\x37\xc3\xd4\x06\x27\xf2\x5c\xcb\x04\x23\x8b\xcb\x45\x20\x16\x57\xe5\x75\x16\x32\xe0\xf2\xd5\xb0\x3e\x49\x27\xb2\x11\x89\x8c\x37\x99\x4a\x80\x2b\x37\x34\x5a\xfa\x65\x0a\xa7\x0c\xbd\xf1\x9a\x6c\xfb\xf2\x8d\xde\x7a\x65\x4c\xbb\x30\x8b\x0a\x08\x07\x25\xe6\xb4\x89\x2d\x84\x8c\xde\x0c\x02\x53\x0b\xba\xd2\x19\xc9\x10\xdb\x6c\x72\x55\x43\xbd\x65\xe4\x06\x5c\x59\xe6\xe9\xc2\x91\x36\xc0\x74\xba\x79\xfe\x75\x41\xe8\x91\x26\x95\x2f\xf6\x89\xa9\xc5\xa4\xd0\xd7\xff\x3c\x02\x15\x11\x99\x63\x1e\x49\xdd\x9f\x52\x6b\xe1\x27\x5a\x88\xfd\x7d\xb4\x77\x80\x95\x39\xe7\xc8\x08\x20\x8d\x7b\x60\x63\x25\xbe\xdb\x18\x4a\x9a\x82\x06\x2b\x46\xa4\x69\x55\xe0\x31\x92\x72\xac\x48\x23\x93\x14\xef\x39\x86\x62\x96\x68\xa4\xee\x30\x4f\x92\x4c\xc8\x42\x95\xfc\x42\xfa\x49\xdf\x0c\x71\xff\x81\xf2\xbb\x7c\xcd\xfb\x49\xdf\x6c\x5d\xfd\x8f\x4d\x0e\xf5\x31\x5f\x03\x4b\x0a\xbb\x94\xe0\x34\x65\x38\xd2\x61\x00\x04\xfa\x89\xe2\x55\xfb\x26\xfa\xcd\x2b\xcd\x05\x44\x01\x2a\x2d\x43\x2d\x6d\x95\x25\x78\xf0\x25\xe8\xeb\x79\x42\x53\xd7\x52\xdb\xec\xa6\x12\x9d\x4d\x19\x5f\x19\xdc\xc1\xea\xbc\x83\x60\x1c\xaa\x63\x1a\x41\x3a\x30\x81\x0b\x24\x19\x6f\x8c\x94\x58\x19\x3f\x77\xf5\x2a\x64\x7e\xaf\xc2\x2c\x3e\x7c\x9d\xfd\xc0\x01\x24\x99\x8d\x33\xd7\x4f\x2d\x9b\xf4\x76\x0e\xb9\x3a\x24\xc1\x33\x40\xfa\x12\x78\x6e\x1a\x28\x32\xfc\xa7\x45\x84\x81\x51\x99\xaf\xaf\x5a\x02\xc9\x8e\xc9\x44\x45\x78\x55\xf6\x08\xd2\x0a\x3d\xb3\x03\x35\x86\x6a\x52\xab\x98\xc6\x70\x81\xa5\x0f\xf2\xe7\x79\x05\x39\x6b\xb2\x33\xb2\x98\x9d\xeb\xd5\x8a\x91\x29\x53\x4b\xa0\x7b\xae\xbb\xa4\xd0\x2e\x02\xcf\xc9\x46\xb3\xe9\x3c\x5f\x3e\x27\xc7\xbc\x0a\xc6\xf7\x72\x0f\x24\xd7\x3b\xec\xc9\xac\xe4\x11\xb7\xb6\x92\xb7\x17\xe7\x23\x03\xb8\x21\x06\x5d\x1b\x9d\x54\xfb\x4d\x55\x99\x51\x05\x9f\xe1\x44\xe0\x7a\xde\x90\xbd\x52\xf9\xbc\x43\xe7\xd3\xad\x75\x33\xaa\x7f\xf2\x7a\xfd\xa1\xa7\x6a\xa3\xe2\x95\x0e\xe7\xf7\x7c\xdd\x9f\x25\xd9\x9f\x79\x5f\x50\xb6\x72\xf6\xf3\x35\x2f\xe8\x9c\xf4\x61\x66\x13\xb5\x59\x89\x8d\x48\xc5\xfe\x0a\xda\x0c\x2e\x2d\x6c\x62\xaf\x9d\xb1\xf7\x26\xa6\xb4\x02\x6a\xa8\x81\x62\xcf\xf4\x44\x6c\x9b\x38\x1d\xe3\x6d\xc8\x0e\x7f\xd6\xdc\x94\xa3\xf7\xd2\x98\x3b\x3a\x86\x92\xb6\x29\xaa\x66\xdf\xee\x11\x64\xbe\x11\x14\x02\x8a\x3b\x84\x99\xd2\xbd\x29\x45\xc7\xdc\xc4\xcf\x44\xfe\xa1\xe9\x52\x80\xce\xb7\x95\x7a\x89\x70\x7d\xdd\xd1\xaf\x59\x29\xce\x86\xd3\x6d\x3c\x9f\xb1\xfc\x74\x16\xb6\xce\xd2\x3c\xb7\xd0\x0d\xab\x53\x53\xaa\xff\x5f\xbe\x07\xd5\x07\xbb\xda\x55\x9e\x9a\x03\x01\xc1\xd0\x0d\x77\x60\xac\xef\x89\xef\x12\xb3\x9e\x16\xae\xf1\xc8\x16\x63\x68\xc1\xad\xa9\x05\x4a\x54\xdc\x0d\xf0\x7a\xa2\xd1\x22\x4d\x6e\x6f\xc9\xfc\xcc\x34\x1a\x85\x01\x74\xa2\xbc\xb6\x8d\x82\x21\xc7\xd2\x52\x73\xc4\xb0\xe8\xc9\x11\x29\xb1\xcf\x21\x39\x03\x35\x3d\x0a\x09\xc4\x94\x00\x26\x40\x22\xdf\x4a\x23\xfe\xda\xc4\xc8\xd1\xf3\xee\x68\xbc\x47\xca\xb3\xfc\x6b\xbe\xc5\xea\xb7\x67\xe4\x57\x4d\x0b\xc7\xae\x90\x56\xd3\x42\xda\x54\xb6\x8e\xb3\xbc\x2b\x97\x0a\xa4\x2f\x94\xb7\x25\x5c\x67\x76\xd2\x6f\xdd\xfb\x36\xf7\xf0\x22\xf6\xa3\xb1\x04\xab\xa1\x79\x99\x8c\x51\xef\x50\x5e\x05\x79\xa3\xb5\x96\x67\xed\x3e\xd8\xd6\xfd\xf7\xab\xdb\x34\xbf\x49\xd2\x62\x9f\x91\x22\x4f\xef\xeb\x2d\x95\xf7\xe5\xed\x81\xdd\x5e\xea\xd9\x65\x42\x61\x75\x90\xd7\xec\xda\x42\x0f\x27\x29\x9d\x27\x9c\xec\x0b\xc6\xd4\x4b\xe2\x36\xa5\xcb\xe5\x0e\x38\xce\x2e\xfd\xdd\x1a\x53\xf0\x2b\x23\xcf\x62\xaa\xb4\x33\xb1\xd7\xb9\x4a\x7e\xab\x82\x14\x62\x8e\x4a\xa5\xea\xf2\x04\xab\x4d\x1a\xc1\x6a\x25\x83\xbe\x4a\x58\x01\xd1\x57\x25\x76\x30\xcc\x9c\x06\xe8\x4e\x89\x93\x28\xcb\xd9\x12\xdc\xca\xfd\x77\x24\xf2\x26\x73\xa4\x6e\x32\x0f\x26\x38\x8b\xf9\xd8\xdc\x63\x9a\xfb\xa4\x60\x2f\x8e\xd9\x11\x1b\x06\xa3\x60\x28\xe4\x01\xf0\x01\x0f\x5f\x85\x7f\x44\x9b\xe9\x66\x1f\x45\xaf\x6e\xb1\x57\x24\x9b\xdd\x25\xec\x98\x87\x87\x28\xe2\xf9\xa7\xd5\x8a\xb0\x93\xa4\x20\x21\x2a\x91\xd8\x7d\x93\x48\x4d\xcb\x66\xd5\xb4\x67\xa4\x69\x26\xd8\xc4\xc4\x4c\xe7\x90\xa1\x93\xc5\x07\x3b\x36\xc1\x38\x53\xf0\x26\xf2\x39\x64\x08\x61\xf1\x53\x49\x35\x2a\xef\x05\xbf\x23\x4c\x7c\x03\x23\x67\xdb\xde\x04\x33\x80\x78\x4e\xaa\x62\x5b\x31\xab\x6b\x03\x00\xa2\x53\xd8\xf2\x25\xae\xbd\x87\x70\x18\x38\xb1\xde\x74\x1c\x1b\x0a\x63\x83\x93\x98\xe2\xc2\x44\x06\xb6\xc3\x0f\xcb\x28\xd0\x08\xaf\xe3\xc4\x35\x63\x7a\x15\x20\x9c\xc6\x60\xe5\xb4\x3e\x4a\xa2\x22\xa5\x33\x12\x1e\xe0\x35\x02\x01\x1b\xc4\x4a\x67\xa8\x07\x03\x99\x56\xd6\x66\x16\x27\xd6\x9d\x77\x2f\x89\x67\xe3\x99\x75\xe7\x2d\x95\x87\x10\x02\xbb\x42\x31\x40\xe1\xcc\x14\xb3\x7f\x88\xd4\xdd\x77\x14\x20\xd4\x53\x75\x77\xc2\xec\xa2\x70\x21\xc3\x5a\xdc\xc5\x01\x68\xa3\x24\x10\xff\xb9\x78\x1c\x49\xd2\x42\xfc\xa4\x8b\x47\x24\x78\x6b\xba\x08\xf7\x92\xcd\x66\x8f\xf9\x2d\xb1\xcf\x32\xd8\x46\xfa\x3a\x6a\xe6\xa8\xff\x9f\x10\xf9\xeb\x3f\x71\x7f\xb9\x2e\x78\xff\xc6\x48\x06\x8b\x9c\x2d\xfb\xff\x29\x56\xdc\x48\x74\xe0\x7f\xf6\xcd\x0d\xc4\x93\xc9\x4c\x30\x7c\x67\x58\xbf\xf9\x4d\x6a\x41\xc0\x3b\x93\xe2\x39\x65\x22\xeb\x28\xc5\xf0\x27\x01\xab\xff\x51\x81\x1b\x53\x75\x14\xa8\x57\xc1\xf0\xae\x14\x13\xc0\x0d\xb3\xe5\xc5\xdf\xf1\x2d\x84\xc6\xe2\x8c\xe3\x98\x41\x8c\xc7\x23\xf3\xae\x9f\xf0\x7e\x30\x64\x91\xa7\xca\xd5\xf2\xfd\x43\xac\x5b\x31\xa4\xa3\x90\x8b\xb5\x95\xe7\x7c\x18\x44\xc1\xb0\xde\xdf\xa0\x05\x44\xf5\x7c\x01\x82\xd8\xd6\x24\x85\x19\x03\xe5\x8b\xd5\x37\x8c\x1b\xd9\x21\x14\x29\x82\xcb\x87\x04\xe2\x6b\x5d\x37\x82\x6a\xdb\x9b\x86\x15\x33\x02\x27\xd1\xba\x20\x97\xf9\x9a\x13\xf6\x21\x59\xd6\xb3\x04\x37\x49\x41\x67\x01\x18\x67\x42\xc8\x0b\xf9\x27\x0e\x82\x91\x7a\x92\x7f\xea\x55\x9f\x06\xc8\xda\x7e\xae\x55\x9f\x79\x57\x61\xb7\x0e\xec\x19\xf6\x11\xa2\xde\x69\x8a\x48\xf3\xa7\xb5\xb7\xd0\x43\x73\x32\x4b\x96\x44\xae\x15\x8e\xec\x0a\xb5\x5d\x2f\xc2\x4c\xa8\xf5\x47\xa8\x11\x2d\x9c\xdd\x8d\xd8\xe4\x4e\xf2\x8c\xb3\x3c\x4d\x09\xfb\x86\x44\x21\xf9\x37\xa4\x77\x2e\x66\x92\x2f\x9e\xa1\x3b\x99\xe4\x78\x5a\xfd\xad\xf6\x40\x02\xb3\x57\x4d\x31\x45\xf2\x67\x92\xae\xb6\xb4\xb9\xbd\x2e\xf0\xaa\x73\x5d\xea\xcb\x45\x86\x5b\xed\x56\x45\xb1\xbf\x75\x29\xa8\x03\xc5\xcf\x59\xfe\x90\xbd\xcb\x99\x98\xa1\x2d\x66\xe3\xdb\x8e\x0c\xda\x28\x54\xb0\xdb\x62\x5f\x95\x81\x47\x43\x3a\x0c\xfe\x14\x20\x5c\xb4\xf0\x1a\x78\x1d\xbb\x37\xf0\x38\x8d\x0f\x5e\xa7\x3f\xac\xb5\xe9\x6d\xaa\x4d\x6f\x67\xf1\x7a\x9c\x82\x2a\x33\x91\xd1\x41\x66\x08\x15\x63\x05\xc5\x95\x64\x85\x58\x22\xd7\xb9\xd1\xcd\xbe\x5b\xa7\x69\x06\x1b\x1f\x9e\xa1\x49\xbc\x77\xa0\x2f\x15\x0a\xd1\xea\x6d\x39\xbc\x37\xc3\xcd\x56\x66\x31\xb7\x4e\xaa\xbf\x30\x1d\x21\xd1\x58\x29\x01\xd7\x23\x97\x6c\x52\x08\x76\x4f\xac\xd8\x4c\x06\xb3\x4f\x94\x33\x20\xc2\xb3\x38\x6d\xf5\x71\xb5\x99\xdc\x4e\xa1\x14\x6a\xb6\x36\x75\x26\x39\x4d\xfe\xfe\x38\x4d\xf3\x64\xde\x9e\xc4\xb6\x82\xdd\xa9\xe4\xd9\x86\x39\x7d\x21\xab\xd2\x11\x47\x5e\x67\xd8\x85\x02\xfd\x3c\xaa\x45\x17\xaa\x79\xf6\x1e\x7a\xa4\x23\x26\xb2\x4c\xbe\x95\x22\x5b\x43\x1a\x30\xe8\xec\x4c\xd7\xce\xb4\x95\x3a\x0c\x60\x67\x88\x7e\x16\xa9\xf4\x5b\x69\x1a\x91\xf4\xd9\x18\xcd\x5b\xe6\xab\x0a\xae\xfc\x7c\xd5\x55\xbb\x13\xf3\xb3\x00\x3f\x2c\x45\x47\x76\x4b\x33\x62\x55\xe9\x05\xe2\x61\x17\xd1\xb0\x88\x0d\x14\xb4\xf1\xf2\xb5\xfa\x44\xde\x4a\xcd\xd6\x05\xcf\x97\x0a\x03\x0a\xde\xd8\xee\x9e\x5f\x03\x27\x60\x15\x15\x4d\x1f\x12\x3e\xbb\x3b\x53\x2d\x56\x1e\x18\xea\xfc\x52\xba\x91\xc0\x36\x79\xdf\xd7\x9d\x23\x2f\x75\x25\x9c\xd0\x93\x75\x9f\x37\xda\x3b\x2c\x51\x89\xa7\x37\x79\xce\xaf\x1e\xb3\x99\xef\x2e\x4d\xd6\x53\xa4\x20\xf3\x23\xf1\x63\x14\x12\x38\x0b\xd6\xe6\x24\x07\x57\x40\x65\x7c\xf8\x08\x36\x99\x91\xd5\xfc\x23\x59\xc3\xea\x45\xec\x7c\x1e\x35\x3e\x37\xda\x6d\x7d\x84\x80\xb4\xf2\x35\x88\x6c\xac\xf2\x4b\x8d\x18\x70\x19\x38\xd0\x09\x02\x2b\xb1\xa7\x37\xd9\x3a\xd3\x5d\x59\x85\xfd\x67\x85\xea\x56\x13\xf3\x39\x99\x71\x7a\x4f\x6c\x67\xc8\x9a\x1b\x80\x71\xd5\x95\x7d\x14\xef\xc9\xd0\x3e\xda\x45\x52\xf7\x4b\x13\x28\xca\x42\x54\xa9\x75\xa1\xa4\x37\xd5\x17\xa1\xd3\x29\xc0\x45\xc9\xf6\x49\x03\xc8\x59\xbe\x5c\xad\x39\x99\xa3\x96\x18\x8d\xe6\x7e\x5f\x65\x92\xb7\xfa\xa5\x60\xdc\x93\xf9\x45\x96\x3e\x86\x08\xcf\xe9\xfc\x44\x9a\x8e\x28\xb3\xbb\x9a\xee\xcd\x41\x0e\xb1\x07\x41\x34\x8d\x27\x8c\x0b\xb6\xae\xe6\x2a\x61\x0d\x44\x64\xa7\x31\x9d\x34\xa7\xf3\x2b\x68\x2b\xa4\x11\x47\xb8\xea\x26\x59\xcf\xc6\x02\x71\xd3\x1b\xc1\xba\x41\x06\x3b\x25\x57\x9f\xc2\x0a\x4f\xe3\xd3\xe5\xfb\xd6\x09\xee\xe4\x70\x68\x99\xbc\xc0\x17\xfa\x26\x40\xc3\x11\x27\x76\x46\xa0\x0e\x15\xa1\x0d\x16\xb3\x1a\x62\xaa\x3d\x39\x71\x60\xef\x28\x9a\x25\x73\xe0\x55\x6b\x09\x9a\x9a\xf9\x0c\x53\xcb\xba\x1a\x2a\x1e\xe6\xb8\x31\x96\x98\x94\xe2\x48\x70\x3a\xa7\xc6\x1c\xcb\x8e\x58\xb3\xb4\xc4\xf7\xb4\xa8\xe9\x68\x2b\xfc\x9e\x5e\xb3\x27\x7b\xb6\x1f\xfa\xd4\xdc\xbd\x4f\xa7\x95\xe1\x9f\xb5\xed\xeb\x9e\x91\x77\xdc\x7a\x3d\xe7\xb1\xef\xb4\xca\x41\x48\x2e\xa2\xe2\x2e\x5f\xa7\x73\x79\x0f\x2a\xb1\x4a\xa4\x1e\xf7\x8a\x70\x0e\xae\xe4\x28\xe2\x77\x24\xf3\x2d\x93\x12\x8d\x78\x89\x8b\x3a\x0c\x0a\x89\x40\x87\xae\xb4\x09\xea\x17\xa8\x45\xae\x0d\xa8\xd7\xf1\x4d\xce\x38\x99\x57\xd2\xe6\x60\x40\xa3\xa9\xac\xf0\x39\x9d\xb1\x3c\xa5\x37\x91\xdc\x39\xaa\x4c\xd5\xcd\xfc\xae\x94\xb2\xca\x39\x2e\x50\x0f\x6a\xb1\xad\xe4\xa3\xca\x62\x83\x44\x4b\x69\x89\x0c\x2a\xb5\xb5\x35\x65\xa8\xb5\x2b\x56\x66\x95\x62\xac\xe4\xc4\xc6\xd4\x9a\xe7\x20\xa0\x8a\x07\x84\xaa\x8a\x38\xd8\x3a\x5f\x7b\x8e\xad\x33\xcf\x49\x56\x96\xa8\x57\xb8\xf6\x05\xed\x1b\xa8\xdf\xf4\xa2\x63\x7c\xfb\xa7\xb2\xc7\x23\x9e\x9f\x56\x33\x4f\xec\x2b\xea\x50\xe3\x08\xce\xaf\xea\x40\x6d\x4c\x50\x5c\xcb\x1c\xa2\xe6\xa1\xea\x90\x28\x08\xbb\xa7\x33\x32\xda\xd7\x26\x7b\x82\x84\x7e\xf6\xe4\x75\xec\x2e\x00\xc5\x47\x2e\xa4\x75\x4b\x50\x3f\xbd\xed\x34\xba\xe3\xc0\xdb\x1d\x07\x76\x77\x1c\xc8\xee\x10\x25\x4a\x37\xa4\x98\x6a\xd7\x2a\x78\xe9\x9c\x82\xe0\x5b\x5f\xbc\xbd\x38\x57\x55\x94\x4b\x4d\x88\xeb\x31\xb1\x7f\x61\xcb\x76\x94\x16\x6f\x24\x83\x77\xa4\xe8\xa9\x9f\xf1\x1b\x19\x35\x34\xb4\x92\x28\x14\xe6\x2a\x8d\x5b\x9e\x79\xaf\x8f\x01\x55\x63\xe0\xaf\x3c\xb5\xdd\x3b\xc4\x6a\x27\x96\x13\x2f\x0e\xb2\x3c\x13\x02\xae\x55\x3d\x67\xff\x90\x1b\x98\xf5\xc6\xaa\xa4\xfd\x5a\xd5\xd3\x49\xa9\x8f\x20\xfb\x65\xe7\x7a\x8a\xf9\xa2\x27\x84\xac\x85\xfe\x15\x57\x1f\x46\xee\x07\x9f\x85\xa6\xa1\x61\xf2\x40\x99\x0e\xc3\xa5\x83\x1b\xb6\x72\x64\x4e\xff\x58\xdc\x96\xdb\x97\x36\x6f\x65\xa5\x97\x4d\xd5\xa9\x55\xc3\xf5\x6b\xe4\x4e\x0c\x87\xbf\x0a\x3d\x1d\x63\x4f\x11\xeb\x3d\x32\x38\x03\xc4\x89\xb6\x69\xad\xc9\xb8\x71\x26\x37\x8e\x47\xeb\x70\x94\x93\x2c\x76\x27\x59\x9d\x05\x8c\x9b\x15\xc4\xce\xac\x8f\xeb\x8b\x02\x13\x7d\x4c\x19\x53\x32\x52\x86\x08\xa7\x71\x61\xc9\x1a\x69\x89\x7a\x7e\x71\xab\x2e\xbb\xbf\x18\x7c\xf1\x2b\x3d\x49\x9d\x0b\xbd\x86\x6d\x41\xbb\x90\xd7\x41\x55\xf1\xd5\x60\x56\x4c\xf2\x97\xfe\x42\x9b\xc2\xa1\x94\x1a\xbd\x94\x0c\x77\xb2\x55\x94\xfc\x4a\x1c\xaa\x96\xa8\x80\x66\x33\xbf\x0f\xd1\x13\xc8\x05\xfd\xba\xca\x4a\x9e\x51\x44\xab\xa7\x90\x35\x7d\x59\xf2\x10\x73\x31\xb5\xc6\xc1\xfe\xcd\x7a\xf6\x99\xf0\xfd\x59\x32\xbb\x53\x62\xdf\xa4\xb2\x6b\xf7\x70\x52\x30\x27\xbd\x82\xef\xa3\xd8\x3f\x6f\xe3\xbb\x86\xf4\xeb\x41\x32\x22\x35\x8e\xb8\x45\x28\x4e\xd6\x3c\x17\x52\x12\x98\xc1\xaa\xfb\x68\xb1\x50\xe0\xb7\x35\x70\x9a\x31\x28\xbe\x4a\x74\xfe\x93\xde\x7e\xff\x14\xa7\x66\x03\x7a\xdc\x6c\xc2\x47\xb1\x59\x2f\xbd\x4e\xc7\x99\x71\x3a\xde\x4b\x6b\x7e\xb9\x83\x41\x12\xa5\xf4\x86\x25\x8c\x92\x4a\xe2\x3e\xc9\x19\x79\x0f\x6f\x1f\x43\x13\xc3\x11\x20\x08\x54\x89\x21\x8a\xa4\x17\x2e\x42\xe6\xd4\x4c\xe6\x34\x23\x45\xf1\x96\x2c\x08\x63\x49\x5a\xc4\x87\x35\x11\x52\xff\xf6\xf5\x89\xf6\x72\x50\x7c\x95\xea\x52\xb5\xf9\x58\x9d\x6a\x76\x4f\x27\x9d\xae\x84\x95\x50\xc9\xb6\xd3\x15\x23\xab\x84\x91\x77\x39\xfb\xa9\xfa\xa8\xa5\x21\x9d\x5f\x25\x7e\x48\x28\x7f\x97\xb3\xb7\x17\xe7\x97\x24\x99\x3f\x86\x00\x8c\x4d\xd3\xb9\xae\x65\x53\x26\x7a\x39\x73\x62\xe6\xf9\x4d\x52\x10\xb5\x93\xda\xfc\xa4\x7c\x65\x42\x32\x69\x74\x2c\x40\xce\x76\xf8\x4c\x0f\x3e\xb4\xaf\x83\x55\x44\xf1\x12\xd7\xf9\xd4\x76\xf5\x88\x97\x8c\xe5\x1a\xe5\xef\xdb\xc6\x9c\x56\xd2\x6c\x68\xfd\xd8\x6c\x66\xea\x09\xe9\x05\x68\xf4\x0d\xa2\xc3\xdf\x9a\x6d\xc8\x70\xd3\xa0\xd1\xf1\x7f\x6b\x11\x55\x9d\xa1\x0b\x91\x32\x45\x9e\xce\x1b\xf9\xa7\x53\x1d\x2f\xda\x91\xe6\x04\xf7\x67\xff\x2e\x71\x6d\x7e\xd8\xe5\xee\xe9\xc5\x29\xff\x46\xb4\x80\x24\x47\xa0\x55\x2f\x66\x77\x64\xbe\x4e\x09\x0a\x55\x68\x11\x0d\xb8\x1d\xcc\xf3\x25\xa4\x0b\x14\xf3\xf5\xa7\x50\x2a\x33\x1e\xe5\x0d\xda\x0d\xcd\xe6\x5a\x34\xae\x92\xa2\x12\xeb\x1f\x8d\xce\x76\x5c\x74\xaa\xe5\x77\xf5\x98\xcd\x42\x30\x50\x5b\x10\x76\xa9\x97\x6a\x73\xfb\x69\xae\xe2\xe1\xb0\xc4\xc9\xfc\x5e\xf4\xd3\xb3\xf2\xed\xef\xe3\x03\x0d\x14\xea\xf9\x0c\x7a\xae\x3c\xca\xb3\x19\x51\x0d\x94\x7c\x20\x9d\xbf\x21\xb3\x7c\x09\x65\x3d\x8a\xf5\x27\x36\x56\x9f\x17\x81\xf8\xf0\x91\xe5\x4b\x5a\x10\xd4\x50\xea\xa9\x0f\x3d\xce\x1e\x9f\x1a\x9d\x30\x13\xb3\x5f\x4c\xf6\xb2\x2d\x9f\x57\x79\xa8\x9c\xad\xad\x1d\xcd\x99\x6d\xf0\xee\x52\x59\x21\xc5\xeb\xe8\xf2\xea\xd7\x8f\x11\x74\xb7\x99\x7a\x56\x09\x32\x86\xb8\x5b\x47\x50\xdd\x59\x2a\x3b\x84\xc1\x7a\xc3\x56\xb7\x8b\x09\x64\xb3\x4e\x96\xb2\xb4\x3e\x46\xa6\xa1\x5c\x1b\x8e\x0a\xe1\xed\xaf\x12\x16\x19\xf3\x12\x60\x86\x0b\x57\x6b\x6e\x37\xc7\xbb\x4e\x7a\x9d\xf6\x7a\xdd\xc6\x4a\x32\x70\x3b\xa7\xf6\x5e\x1e\x0d\x30\x1d\xa4\x61\xa2\xdc\xf9\xaa\x6a\xc1\x27\xb6\x06\x93\xc5\x40\x99\x58\x06\x3b\xf7\x0b\xbc\x63\xe9\x99\x21\x0e\x10\xe0\xcf\x38\x33\xcf\x99\xe1\xec\x51\xf6\x4c\x4f\x22\x30\xd1\x88\x16\xd7\xa4\x10\x0c\x1a\x0a\xd1\x66\x23\x51\x99\x94\xdd\xf5\xb1\xbc\x4c\x87\x4b\xc7\x02\xc9\x5a\x80\xc7\x9e\x79\x7b\x45\x12\x36\xbb\xab\x50\x01\xf7\x0e\x50\xed\x34\x42\x21\x69\x1e\x7c\x47\x5b\x86\x65\xe4\xdb\xef\x90\x3d\xe9\xb5\x42\x1d\x4e\x35\x80\x82\xb2\xb5\x98\xbd\xe6\x20\xe9\xfb\x5b\x5b\x1f\x5f\xe9\x82\xeb\x53\xcb\x9b\xdf\x9a\x6b\x98\xd5\x3b\xd5\x86\x14\x7f\xb9\x12\x66\x77\xe7\x1e\xd6\xeb\xfe\xec\x89\x5a\xe8\x7b\x29\xe7\x74\x96\x3b\xdb\x60\x10\xfa\x3f\x4b\x1e\x00\x6d\x61\x78\x9c\x90\xfc\xfe\x14\x3e\x1f\x4d\x0b\xc2\x5c\x62\x44\xa3\x72\x6b\x29\x2a\x5e\x3f\x6a\x2a\x39\xab\x1b\x63\x50\x73\xda\x7b\xa1\xe8\x04\x8f\x8a\x51\xaa\x3d\x59\xe3\x60\x35\xea\x4b\xc8\xc7\x5b\x75\x93\x59\x04\x75\x10\xbc\x03\x8a\xe4\x0c\x72\x79\x17\x96\x3f\x54\x6b\x3d\xb3\xd7\x3a\x29\xa5\x79\x72\xef\xd6\xd5\xa5\x41\x55\x9a\xba\x34\x77\x2b\xdb\xe6\x7d\xa4\xfd\x87\x6b\xf6\xb9\x5a\xc9\x65\x5f\x34\x60\xcd\xb3\x18\x96\xa5\xa6\x53\xf3\x78\x7b\xe3\x27\xc9\xb7\x79\x23\x43\x79\xa2\x08\x96\x35\x25\x1b\x94\x3f\x92\x46\x40\xba\x7c\x37\x85\x5f\x11\x8f\xd3\xa8\x8e\xeb\x04\x8e\xe6\x7f\x95\x41\x70\x6a\x0d\xb3\xec\x24\xb0\x7d\xc0\x68\xd5\xb5\x5d\x9e\xd6\x8f\x8c\xc4\x6e\x25\xea\x74\xbc\xe6\xf9\x7b\xa3\x34\xf1\x26\xbd\x4b\x8a\x3b\x91\xf4\xe7\xa4\xb8\xdb\x95\x94\x16\x3c\x17\xd2\xc6\x2c\xfa\x59\x3e\xee\xc8\x00\xca\x2f\x3c\x8b\x3e\xe4\x19\xf1\x26\x0d\x0f\xf0\x3c\x5a\x31\x7a\x9f\x70\xb0\x6b\xb8\x17\xe3\xd6\x3a\x2c\x60\x68\x37\x8b\xde\x80\xc0\x09\xf6\x8d\xf5\x21\xd1\x7a\x4f\xd9\x83\xd5\xac\xb8\x92\xef\x6b\xfd\x5c\x4f\x1d\x4c\xcd\x93\x7b\x89\x15\x12\xd8\xce\x56\xf2\xaa\xe1\xb8\x1a\x04\x3d\xbb\xc1\x94\x83\x68\xad\xe9\x4d\x7c\x6b\x69\x5b\x6e\x5a\x2f\xb7\x6b\x1a\x8a\x6f\x8f\xcd\xb5\xd3\x10\x5c\x9a\x21\x78\x4d\x55\x28\x00\x55\x8c\xc9\x24\xce\xc0\xbe\x74\x3c\xc1\xe2\x41\x3a\x96\x73\x84\xd9\x60\xc0\x43\x89\x91\x60\x73\x41\x4d\xaf\x7e\x0a\x46\xa8\x98\x45\x0f\x34\x9b\xe7\x0f\x83\x81\xc7\x01\xf0\xa4\x12\xdc\xb5\xa7\xaf\x18\x6b\xeb\x75\x48\xf0\x93\x04\xd7\x1c\x71\x69\xea\x48\x4a\xd4\xd3\x44\x23\xbd\xc6\x64\xda\x1c\x95\xa2\xae\x83\x01\xd4\x78\xdb\x56\x1d\x72\x60\x30\x88\x3e\x28\xea\x6e\xb7\xa7\x1f\x7e\x8d\x4e\xcf\xdf\x9c\x5e\x4e\xdf\x5f\x1c\xbf\x9d\xfe\x7c\x71\xf1\xcb\xd5\x66\xf3\x54\x62\x1a\x3f\x95\x38\x8f\x69\xaf\xca\x9a\x6f\x1d\xe8\x9a\x69\x79\x2b\x44\x54\x47\xbf\xb5\xe6\x90\x65\x31\x1b\x73\xb0\xd5\x02\xf3\xa6\x0a\xa1\x29\x1b\x1f\x8a\xb1\xfb\x6e\x52\x6a\x37\x37\xb9\x73\x8d\x83\xa4\x28\x08\xe0\x91\xd1\x02\xd6\x89\xf2\xab\x0c\x70\x20\x11\x83\xe0\x65\x30\xb1\x3c\xbd\xc7\x81\xe1\x71\x20\x9b\x09\xac\x5b\xcf\x5a\x45\xdc\x9d\x48\x87\x97\x7a\x4e\xcb\x8f\xd3\x64\x82\xc0\xd6\x13\xac\xd7\x65\x3d\x8b\x5a\xc5\xf5\x5c\xea\x35\x60\x9b\x59\x03\x30\x4b\xc4\xde\x6d\x54\x65\xdd\x4c\x9f\xbc\xab\xec\x19\x9e\x15\xb4\x38\xcd\x24\xa6\x5a\x13\x8b\x04\x56\x94\x76\xf0\x93\x88\xa8\x80\x5c\xc7\x8e\xd8\x68\x6f\x4f\xcd\xb5\x0f\x10\x2c\xf3\xe2\xe3\xf5\xd9\xc5\x87\xe3\xf7\xd3\x77\xa7\xc7\xd7\x9f\x2e\x4f\xaf\xc4\x14\x95\xf3\xf0\xdd\xe5\xf1\xf9\xe9\x6f\x17\x97\xbf\x4c\x2f\xde\xfc\xeb\xe9\xc9\xf5\xf4\xe2\xb7\x0f\xa7\x97\xd3\xe3\xcb\x9f\x3e\x9d\x9f\x7e\xb8\x8e\x75\xba\x9f\xde\x9f\x9d\x9f\x9f\x5e\x4e\x2f\x3e\x4c\xcf\x2f\xde\x9e\xbd\x3b\x3b\xbd\x34\xdf\x4e\x3e\x5d\x5d\x5f\x9c\x4f\x4f\x2e\xce\x3f\x5e\x7c\x38\xfd\x70\x2d\x72\x4f\x3f\x5e\x5e\xfc\xfb\xef\x8d\xec\xef\x3e\x4c\x7f\x3e\x7d\xff\xd1\xca\xfc\xe1\xf8\xfa\xec\xd7\xd3\xe9\xdb\xd3\x93\x8b\xcb\xe3\xeb\x8b\xcb\xe9\xd5\xa7\x8f\x1f\x2f\x2e\x9b\x25\x1f\x7f\xf8\xe9\xfd\xe9\xf4\xcd\xe5\xf1\xc9\x2f\xa7\xd7\xd3\x37\x9f\xce\xde\x5f\x4f\xcf\x3e\x5c\x35\x8b\xb8\xb8\xfc\xed\xf8\xf2\xad\xa9\xe6\xd5\xf4\xb7\xb3\xeb\x9f\xa7\x57\x1f\xdf\x1f\x5f\x5f\x5f\x9e\xbd\xf9\x74\x7d\x5a\x65\x3a\x3f\xbd\x3e\x7e\x3f\xbd\x06\xa2\x6f\x45\x9d\x3f\x9e\x5e\x5e\x9f\xd9\x09\x2e\xde\x7e\x7a\x7f\x3a\xfd\xf4\xe1\xec\xdd\xd9\x09\xe8\xd8\xcc\xa7\xb3\xf3\x8f\x97\x17\xbf\x9e\xbe\x15\xb5\xb8\xbe\x84\xee\x72\x13\xbc\x3f\x7b\x73\x79\x7c\x79\x76\x7a\x35\x3d\xbb\xba\x3c\xfd\xe9\xec\xea\xfa\xf4\xf2\xf4\x6d\x4c\x22\x3d\x0c\x31\x89\xde\x9e\xbe\x3b\xfe\xf4\xfe\xda\x8c\x8c\xbb\x63\x3c\x6d\x23\x34\xda\x3b\xc4\xdb\x6b\x52\xa5\x68\x36\xc3\xfa\xd6\xd2\x07\x55\x8a\xe7\x74\xed\x68\xef\x00\x77\x1a\xb8\x2a\x61\xdb\x14\x68\x92\x32\xd3\xa7\xfa\xd4\x3e\xf9\x9a\xf5\xb7\x26\x6f\x45\x60\xc7\x0a\x18\xed\x1d\x94\x3d\xcf\x38\x65\x95\xf3\x68\xe5\xe7\x94\x61\xb9\xee\x74\x2a\x2b\xec\x59\x5e\x9d\x13\x7b\xe1\x8e\xe5\x29\xe1\x93\xf6\xe2\x98\xa0\xcd\x86\x94\xd6\x84\xa1\x1a\x56\x31\xa4\x5b\x27\x19\xea\xed\x98\x84\x89\xb6\x0d\x33\x84\xda\x26\x51\x45\xaa\x75\xc2\x17\xea\x76\xb7\x22\xd6\x9c\x6f\x15\x19\xcf\x92\x5a\x2b\x27\x26\x8b\x40\xcb\xa4\xb4\xc8\xb4\x2d\xdd\x54\x85\x6d\xa9\x88\x3d\x67\xfe\x56\x05\x3c\x6b\x43\x99\x29\xcf\x91\x66\xa1\x2d\xd3\xbf\x59\x4e\xdb\x06\xb7\x50\xc1\x3d\x2a\xd2\x6d\x0b\xa6\xa2\xd9\xba\xab\xde\x01\xb1\xb9\xaf\x73\xf4\xda\xf2\xf4\x80\xd9\xb5\xe7\x90\x7d\x65\x65\x6f\x5f\x7f\x15\x9d\x2d\x07\x84\x44\x46\x5a\x7a\xea\x63\x2d\xd6\x66\x8d\xec\x63\x68\xd9\x93\x48\xdb\x15\x89\x1d\x4b\xba\x22\xb7\xeb\xf4\xbb\x77\x59\x00\xe3\x7b\xd0\xed\xf4\xdf\x76\x21\x58\xbb\x69\xb4\x48\xcb\x50\xe3\xfa\xe7\x14\x82\xd8\x75\x71\x6d\x97\x92\x88\xe7\x86\x8c\xa9\x4f\x6e\xc4\xe8\x71\x50\x15\x12\x4c\x34\x00\x3f\x80\x7e\x58\x77\xd2\x70\x59\x27\xfd\xfb\x2a\x49\x5a\x22\x8d\x79\x5d\xe9\x5b\x91\x65\x8c\x79\x2e\x7a\xad\x63\x7d\x9a\x94\x20\xe0\xa3\x90\xaa\x40\x1c\x31\x6d\xf5\x4f\xdf\xd5\x4d\x5f\x1d\x89\xf7\x9b\xc4\x98\x66\x4d\xec\x9c\xca\x6d\x45\x1c\x3c\x12\xe8\x5d\xde\x0d\x0a\xc1\x57\x05\xec\x02\x07\x24\x78\xdc\x12\xfb\x19\xd8\xfa\x6e\xf3\x6f\xeb\xad\x78\xcd\xcf\x5a\x92\x15\x9d\x6a\x33\xc9\x8d\x8f\x5c\x2a\x43\x7d\x9f\x1e\x12\xe6\xf7\xcb\x6f\x44\xbe\x6f\xb7\x51\x57\x92\xb7\x05\x4d\xa9\xfa\xb0\xb3\x11\xb8\x26\xa1\xf2\x6d\x35\x30\x37\xba\xdd\x8e\xd4\x2d\x6d\xf0\x2e\x97\x80\xe7\x12\xae\xb2\x6c\x37\xe2\x57\xad\xfb\x2d\x61\xcf\xec\x99\xdc\xd7\x33\x24\x9a\x8a\x51\x3b\x5b\x7c\x2a\x68\x76\x7b\xc5\x19\x5d\xad\xc8\xfc\x9d\x14\x71\xde\xa5\xc9\x6d\x21\xe3\x8b\xbc\x15\x83\xfc\x4e\xd1\x8c\xc1\x16\xb3\xfe\xca\xcc\x1a\xf1\x2e\x26\xf2\x86\x03\x12\xc1\x47\x91\x18\x9c\xbd\xf5\xaf\x2b\x92\xa4\x76\x36\xfd\x3e\x26\x91\xa8\x52\x2c\xf6\xb3\x05\x04\x22\x01\xa1\xd2\x5e\x6f\x49\xec\x60\x98\x14\x71\xd2\x33\xc9\x34\x27\x92\xf4\x14\x01\xcd\x59\x88\x17\x40\x58\x73\x07\x49\x4f\x97\xa8\x8f\x6e\xf9\x46\xd7\x47\x9f\xba\x26\x1d\xd4\x58\x1f\x9f\xe6\xad\x6a\x95\x3e\x17\xc5\x7b\xab\xe9\xfa\x74\x13\xaf\x1b\x9d\xa6\xcf\x2d\xf1\xb1\xd1\xc9\xf7\xca\x84\xa1\x39\x92\xd5\xed\x72\xfd\x46\x7a\xff\x70\x52\xf6\xea\x43\xf1\xd8\x65\x94\x65\xef\x7a\xf6\x99\xda\x86\xf0\x02\x69\xd7\xd9\xaf\x9a\xc4\x55\x98\x80\x0e\xd8\xee\x24\x5a\xd2\x42\xb4\xe0\x42\x9a\x24\x7d\xca\x38\x4d\xad\x9d\x22\xae\x27\x38\x9b\x6f\xfb\xea\x7e\xab\x2d\x8e\xd8\x7f\xbc\x49\x53\x18\x67\xfa\xf5\x9a\x79\x0b\xbc\xad\x2c\xda\xf8\xea\xd6\x33\x6f\x7c\x6f\x34\x34\x69\x1a\x53\x96\x38\x8d\xd7\xae\x4d\x96\x77\x2c\x4d\x77\x77\x03\xf9\x13\x8b\xe8\x3e\xff\x4c\xbc\x3d\xf4\xf3\xf1\x87\xb7\xef\x4f\x2f\x1d\x91\x95\xc7\xd0\x25\xe6\x13\x57\x3a\xa2\x1d\x5d\xc6\x7a\xb5\xc0\x49\x32\x99\x2a\xdc\x77\x00\x3a\x87\x51\xd7\xb6\xe8\xdd\xdb\xb3\xaa\xb8\x42\xa0\x6d\xa4\x20\xe8\x89\x57\x76\x7c\x0a\xde\x80\xc7\xd2\x46\xd6\x53\x29\x38\x06\x5b\xf5\x71\x2f\x58\x08\x3b\x96\xc1\x73\x56\x40\xa7\x59\xde\x18\x85\x7a\xae\xac\x5a\x0c\xf5\xa4\x5f\x31\xed\x95\x3c\x9a\x58\x93\xb8\xa8\x75\x71\xc3\x5e\xad\xc9\x06\x6d\x1d\xff\x77\x9f\x3e\x40\x8c\x70\x21\x7a\x5c\x5f\x5c\xff\xfe\xf1\x74\x7a\xfa\xef\xd7\xa7\x1f\xae\xce\x2e\x40\x8f\x74\xfc\xf1\xe3\xf4\xe4\xfa\xf2\xfd\xf4\xf2\xe2\xd3\xf5\xe9\x25\xc8\x94\xf0\xfe\xfd\xd9\xf1\x95\x90\x37\x7f\xbe\x78\x1b\x13\x8f\xd9\x55\x4c\xa2\x4a\xb6\x39\x3f\xfe\x70\xfc\xd3\xe9\xe5\xf4\xea\xfa\xf2\xec\xc3\x4f\xd3\xf7\x17\x17\xbf\x7c\xfa\x18\x93\x48\x11\x3d\xfd\xf5\xf4\xc3\xb5\xa0\x7a\x7e\x7a\xf9\xd3\x69\x4c\xa2\xf7\x17\x3f\xfd\x64\xe9\xc3\xa0\x46\x6f\xab\x2a\x8a\xa4\x56\x7c\x73\x3d\x52\xee\xcb\xbd\x83\x5e\x7b\x7e\xf8\xa8\x4a\x81\x67\x59\x32\x3c\xba\x95\x82\x57\xbb\x5a\x02\x89\x3c\x7d\x00\xef\x9d\xae\x92\x6f\xbc\x9d\x0a\x9f\xb6\x8f\xc7\x9e\x7b\x1e\x19\x77\xb9\x36\xc6\x57\x25\x10\x6b\x49\x3e\xee\x4b\xe8\xc5\x2e\xa6\xa6\x96\x28\xf4\x5c\x41\xce\xb6\xba\x9c\x27\xb7\xfb\xcb\x64\xf5\x82\x98\xa8\xdb\x71\x6e\x9e\xe3\x32\xd8\xb0\x27\xb5\x0f\x68\x21\x8b\x15\x34\xcf\xf6\x4d\x38\xf4\x67\xd9\xaa\x76\x41\xab\xb1\xcd\x44\xdb\x8c\x44\x97\x96\x91\xe8\xe3\x2e\xa3\xcf\x65\x9b\xd1\xa7\xd7\xe6\x74\x27\xb9\x56\x1b\x52\x43\xee\xd1\x8d\x54\x5c\x37\x5b\xc5\x95\xbd\xea\x36\x57\xe3\x53\x18\xab\x8f\x6a\x0a\x76\xf7\x38\xb6\xf3\xed\x92\x32\x5e\x54\x46\xd1\x2c\xc3\x7b\x0e\xdc\xc6\x34\x32\xc6\x16\x5a\x8c\xa7\x91\xbe\xa3\xfc\xc8\xf2\x2f\x8f\x20\xf6\xe2\xa7\x17\xda\xb7\x3a\x37\xfa\x60\xf5\x47\x2d\xa3\xa8\xcb\x24\x93\xf1\xca\x8b\x35\x73\x1c\x1c\x9b\x25\xd5\xb2\x69\xb3\xd9\xa6\x95\x95\x37\x79\xbc\x77\xf0\x0f\xb0\xfe\x84\xa2\x9b\x8d\x01\x13\x9d\xca\x2e\x74\xe6\x33\x02\x6d\xb5\x7c\x70\x8c\xda\x2c\x6f\x4b\x69\x0c\x61\xbb\x67\xba\x5d\x2d\xdd\x95\xb0\xd5\x0f\xdb\x9d\x3b\xad\x84\x50\x21\xda\x74\x3b\xdd\x45\xa0\x91\x01\x08\xd5\x46\xc8\x6f\xd5\xa1\x2d\xd1\x9c\xb4\x61\x60\x8f\xa2\x15\x68\x4d\xc2\xea\x59\x55\x06\x1b\x14\x55\x54\xd3\x5b\xd6\x63\x52\xdb\x2c\xa8\x99\xad\x43\x81\x35\x3a\x35\x73\x1c\x13\x72\x4c\xba\x51\xae\x2d\x37\x4a\xab\xe3\x00\x81\xcb\x83\xa9\x61\x45\xe1\x84\x98\x65\x04\x71\x79\x93\xce\xaa\xa8\x2b\x65\x98\x21\x05\x42\x6f\x22\x9c\x63\x19\xb3\xd3\x44\xc9\x2c\x86\x43\xc4\xe2\x6c\x4c\xc7\xc5\x64\x82\x73\x30\x1c\x96\x08\x39\x98\x61\x16\xdd\x00\xf2\x3a\x66\x51\xb2\xe0\x84\xa1\x5e\x1e\xf1\x7c\x55\xe4\x8c\x87\xd2\xa7\xcb\x6c\x99\x37\x55\xd5\x9e\x8c\x81\xc9\x88\xe8\xc9\x1f\x56\x2d\x24\x38\xd0\x36\x57\x01\xda\x6c\xaa\x40\x77\x7a\xc2\x73\x0b\x33\x7e\xea\x02\xff\x9b\x1e\x77\xe1\xfd\xa5\xd7\x92\xd8\x6c\x00\x0a\x03\x6e\xea\x9b\xef\x94\x19\xd7\x98\x4c\xf4\x05\xaa\x58\x9b\xe2\x83\x1b\x93\x58\x27\xd2\x66\x74\x95\x05\x12\x43\xa5\xfa\x38\xe6\xd0\x47\x93\x98\x97\x65\xcd\x4a\xc9\x9e\x95\x23\x4f\xb4\x63\xdf\xda\x69\x4b\x58\xcd\x9d\x69\x7d\xba\xdb\x3f\x03\x2f\x51\x99\xc7\x37\x73\xcd\xeb\xbe\x4b\xa4\x65\x9b\x71\x82\x13\xe4\x66\xff\x0f\x9f\x34\x7f\x32\xba\x81\x19\xdf\xb3\x4f\x98\x18\x7c\x33\xad\x20\xf5\x61\xd3\xd8\x08\x13\x8f\xeb\xa0\x6b\x9d\xa5\xbc\x8f\x14\x12\x8c\x05\xf6\x1e\xe0\x27\x21\x4a\xa4\x84\xe7\x99\xf6\x57\xac\x27\x96\x90\xeb\xcd\x74\x55\x95\x2a\xb6\x4f\xdb\x5d\x59\xd0\xaf\x1e\x8f\x48\xcb\xd8\x47\x12\x0f\x00\xd7\x5d\x77\x49\x80\x5b\x42\xbb\xb8\xe6\x58\x0a\x11\xf2\x85\xb9\xc1\x86\x02\x07\x53\x9e\xaf\xde\x93\x7b\x92\xfe\x4a\xc9\x83\x06\x63\x0a\x70\x15\x34\x69\x3f\x5f\xf3\x94\xf0\x7a\x7e\x30\x9e\xd0\xdf\x3a\x58\x83\x59\x59\x1d\x26\x59\xc7\x83\x75\x4d\x9b\xb6\x64\x78\x4e\x49\x95\x05\xd5\x4d\x65\x9c\x15\x48\x2b\xdf\x9a\x79\x57\x5b\xf7\x6c\xcd\xb8\xdc\x92\xd1\x6f\xb3\xe5\x77\x87\x35\xbc\xf6\x22\x52\x06\xb6\xdb\x2d\xc3\xaa\x0c\x41\x87\x62\xf4\xfa\xda\x5f\xe4\x6c\x1f\x24\x89\x5b\x9a\xdd\xea\xb5\xa3\xad\x76\xd9\xae\x99\x6a\x04\x14\x49\x63\x3f\x99\x27\x2b\xcb\x1e\xd0\x92\x32\xb6\x15\x58\x23\x0a\xa1\x44\x6b\x94\x4c\x41\xa0\xc9\x3c\x96\x1f\xed\xf7\xbe\x0a\x34\x17\x64\x7b\x5d\xef\xa2\x13\x5f\x11\x75\x12\xbe\x78\x10\x78\x5e\x99\x10\xbd\x87\xf7\xa8\x0c\xb9\x6d\x86\x27\x79\xe2\xca\x02\x0f\xac\x99\xb1\xd9\xe3\xe0\x82\xe6\xd2\xfe\xa5\xac\xf3\x1e\x1c\xeb\xbc\x07\xbf\xcc\xba\x05\x75\xa6\x93\xff\x63\x43\x00\xf5\xc6\xff\xeb\xe8\x14\xd8\x2a\x28\x77\x44\x99\x31\xc7\x73\x61\xc9\x5d\x69\x38\x36\x7b\x0f\xc4\x12\xa1\xa9\x1e\xb7\x4a\xf6\x2a\x76\xca\x5e\xeb\x1a\xc9\xad\xa2\xdc\x7a\x27\xb9\xb4\xb3\x28\xe7\x15\x81\x66\x31\x8b\xdc\x6b\x4c\xe6\x93\x7f\x58\x35\x2f\x6d\xa9\x48\x70\xf5\x2f\xf5\xff\x93\x81\xa6\x74\x90\x38\xe0\xd7\x7b\xb6\xbf\x53\x52\x90\x1e\xd9\x6c\xb4\xf7\x80\x8d\xbc\x61\x12\xc4\x04\xf5\x2a\xab\x6f\x57\x40\xa8\x9f\xe5\x8b\x24\x4d\x6f\x92\xd9\xe7\x11\x71\xd2\x95\xc6\x95\xca\x76\x96\x62\x55\x10\x8a\xf0\x09\xd0\xbd\xc0\x2b\xa1\x6c\xd8\xdf\xd7\x7d\x7a\x5c\xb4\x8d\x36\x97\x9c\xa3\xc6\x9b\x51\xd3\x11\x28\x96\xd8\xe8\xe0\x7a\xa3\x5e\x55\x16\x99\xac\xba\xfb\x0e\xb9\xe5\x1b\x41\x10\x72\x2a\xa9\x9d\x8a\x9e\x8f\x20\x24\x19\xf5\x34\xd7\x52\xf4\x5b\xb2\x12\xc7\x7a\x36\xa3\xc4\xc8\x99\x0d\x54\x21\x33\x32\x3b\xa0\x7b\x6a\x1e\x18\x3b\xd0\x78\xbe\x52\x42\x6d\x8e\xef\x36\x68\x93\x5e\x43\xb4\xeb\x02\xfc\x53\x61\x5f\x7b\xc4\x2d\xa7\x68\xf0\x53\x32\x7d\xb5\x35\xd4\xb1\xe4\x57\x01\x5f\x5f\xee\xdd\x5e\x2f\xc7\xaf\xc4\xd9\xd0\x90\xa5\x06\x0b\x07\x4a\x82\x88\x94\x60\x15\x6b\x63\xb6\x52\x17\xa9\x3f\xe1\x62\x3f\xe4\x64\x0e\xc1\x34\xf3\x75\xc6\x01\xa4\x55\x52\xe8\xff\x19\x30\x5c\xff\x8c\xfb\x37\x6b\xde\xa7\xbc\x4f\x65\xdc\xce\x2a\xf4\xb6\x8c\x2e\x43\x79\xd1\x97\xbb\x73\x14\x68\x30\x9a\xba\x57\x06\xb7\xc0\x14\x93\xba\x7a\x07\x6c\xd2\x64\xa4\xf3\x12\xb7\x4c\x58\xbf\xd8\x8d\xad\xb8\xe9\x0e\x41\x20\xf7\x7a\xec\x3a\x2c\xf8\x78\x1c\xf3\x4a\xe9\x0d\x5d\x63\xf2\xa6\x21\x35\x73\xa2\x89\xa9\x03\x9d\x81\x10\x21\x61\x3a\xed\xf0\xa0\x4c\xac\x65\xbd\xbf\xed\x9e\xb2\x5b\xf1\x50\x3c\x3c\x94\xea\xeb\xb1\xeb\x3d\x51\x67\x24\xd7\x21\x42\x7e\xb6\x1d\x1b\x3e\x7f\xb4\x1f\x0c\x43\xe6\xe2\x2e\x1c\x05\xf3\x7c\x19\x8c\x02\x31\xeb\x05\x8b\xee\x43\x58\xa9\x97\x55\x84\x08\x4d\x7a\xac\x0e\x3b\xa1\x82\xab\xb7\xa3\x34\x3d\xa3\x9f\x55\x2f\x32\x0f\x1e\x8c\xde\x37\x25\x0f\x58\xc9\x3f\xee\x9d\xaf\x0f\x0c\xc9\xc9\x66\xd8\xec\x9d\xf9\xca\x12\xf5\x66\xdd\xd0\x74\x00\x5d\x60\x30\x08\xbd\x02\xda\xee\x0a\xfa\xe5\x80\x0e\x0d\xab\x8d\xa9\xb7\x7c\x4b\xda\xab\x26\x84\x18\xfc\x06\x97\x6e\x24\xdb\x2d\x79\xd0\xa8\x7b\x21\x7a\x6e\x3d\xaf\x18\x95\x0b\x19\xcc\x9e\x45\x3c\xb3\xfd\x04\x7c\xfc\xad\xe7\xca\xa5\x0b\xa3\xbb\xc3\x35\xa1\xb6\xef\x78\xe1\x95\xc7\x6c\xa2\x83\x8c\xfa\x93\x0a\xba\x22\x55\xcc\xb5\xb7\x82\xb4\x3e\x7b\x5c\xde\xe4\x29\x0a\x83\xd3\x0f\x3f\x9d\x7d\x38\x9d\x7e\x3c\xbe\x3c\xfd\x70\x1d\xb8\xc0\x91\xc0\x54\x3f\xf3\x8a\xd1\xc3\x44\xf2\x18\xc0\xad\xac\x8f\xdc\x29\xa6\x16\xda\xe4\xf9\x8e\x05\x3b\xfa\xb1\xa2\x0f\xa1\x40\xa7\xd5\x6f\x88\xae\x08\xc1\x3f\x8b\xf5\x4d\x31\x63\xf4\xa6\x8e\xd9\xa1\x95\x8c\x14\xe7\x15\x88\x7b\x14\x20\x9c\xc4\xe3\x89\x52\x26\xe6\xb6\x32\x31\xf8\x4b\x10\xc7\x71\x48\xe3\x7c\x5c\x4c\xd0\x51\xa2\x36\xa7\xf1\x7f\xfc\xf1\x47\x34\xf9\x4b\x80\x46\xea\x0d\xd5\x80\x50\x89\x02\x53\xff\xe3\x0f\x71\xc0\xad\x87\x71\x10\xfe\xf1\x47\x14\xfd\x05\x1d\x05\xca\x72\xe7\x69\x25\x4e\x52\x96\x8d\x08\x66\xe4\x96\x7c\x19\x59\x38\xbe\xc1\x7f\x04\xc3\xb5\xc4\xf2\x95\x01\xd3\x46\xbc\xac\x02\x48\x42\x49\x29\xc2\x59\xfc\x54\x62\x88\x46\xbb\xce\x7c\x2d\xb5\x61\x85\x0f\x30\x8d\x0f\x5e\xd3\x1f\x34\x72\xee\x6b\x0a\xd1\xce\xe8\x24\x8e\x63\xf0\xe1\x8c\x29\xea\x31\xe8\x0a\x71\xf4\xe2\x43\x49\xbe\x94\x02\x39\x71\xed\x2f\x15\x8d\xf8\xc0\xa4\x69\x44\x76\x89\xad\xce\x67\x85\x1b\x3f\x6a\x3c\xe9\xb9\x5f\xb5\x99\xc4\x53\xe9\xd8\xa3\x84\xd4\x8b\xa5\xa4\x1d\xa4\x94\x4f\xd3\x8a\x30\x08\x9c\x9c\xcd\x08\xb8\x1c\x85\x79\x4c\xa3\x2c\x7f\xd8\x6c\x68\xb4\xcc\xff\xfe\x41\x3e\xc9\xc8\x92\xea\xc7\xb2\x50\x0f\xf9\x87\xfc\x01\x1d\x49\x90\x82\x90\xa2\xd1\xdb\x84\x13\x91\xd7\x52\x01\xaf\x65\x38\x77\x4c\x95\xc7\x95\xa8\x19\xe0\x22\xd7\x58\xaf\x1f\xe2\xef\xbd\x3e\x5b\xfc\x28\x4c\x62\x8e\x8b\x38\x43\xa3\x30\x8f\x39\x4e\xe2\x0c\x17\x31\x45\x80\x2d\x60\x80\x8c\x4d\x28\x09\xb0\x49\x2d\xf4\x34\xca\xa1\x49\x8b\x78\x16\x92\x66\x20\x9c\xfe\xba\xd2\x4e\x2e\xe2\x38\x4e\x8f\x4c\xf6\x51\xd3\xe8\x88\xb3\x47\x2b\xe6\x83\x48\x96\x69\xff\x7a\xaa\x9d\xa0\x59\x44\xbe\xcc\xc8\x4a\x59\x36\xd0\x72\x41\xb3\x24\x4d\x1f\x9f\x78\x88\xca\x32\x4c\xf0\x02\xaf\x71\x81\x6c\x39\x14\x3d\x39\xa1\x50\xa5\x55\x24\x5d\x84\xbe\xc6\xa5\x3a\x5a\xac\x8a\x92\x97\x6c\x36\x61\xe2\x9f\xaf\x98\x8a\x85\x98\xc7\x07\xaf\xf3\x6a\xca\xe6\xc3\x21\x0a\x79\xcc\xc6\xf9\x04\x45\xb0\x66\x24\x36\x35\x41\x83\x01\x55\x1e\x77\x2a\xc0\x60\xe5\xd1\x3b\x26\x13\x68\x8a\x10\x92\xa0\xcb\x13\x6f\xad\xd6\x78\x16\xd3\x30\x47\x78\xa1\xdc\xd9\xae\xae\x2f\x3f\x9d\x5c\x7f\xba\x94\x36\xf8\xef\xce\xde\x9f\xf6\x16\x83\x41\xb8\x8e\xc9\x30\x18\xf5\x83\xe1\x4c\x95\x84\x85\xd0\x90\xa7\x24\xe2\x74\x49\xc2\x35\x42\xe6\x06\xe3\x4e\x34\x61\x1e\x0b\xb9\x69\x15\x1f\xbc\x5e\xfd\xa0\x4b\x7e\xbd\xd2\x30\xdb\xcb\x38\x19\xaf\x26\xbd\x3b\x59\xf9\xa5\xba\x98\x08\x09\x9e\xe3\x59\x05\xa6\x65\x83\xcb\x99\x05\x2d\xc8\xb2\xf8\xe0\x35\xab\xc8\x32\x4d\x36\x8b\x93\x31\x9b\xf4\x3c\xb3\x31\x93\x57\x1e\x82\xbd\x82\x07\x98\x1e\x33\x7c\x37\x66\x13\x54\x2e\x06\x03\xbb\x31\xa7\xd9\x3c\x5c\xa3\xb2\xf4\xad\xee\xc4\xbb\xe6\x93\xb8\x6e\xe2\x63\xc4\xd5\x5a\x58\xd1\x65\x3e\xa7\x0b\xda\xd5\xe0\xdc\x7f\x3f\xdf\xd5\xfa\xb6\x20\xfc\x5c\x15\x77\x9e\x64\xc9\xed\xf3\x30\xad\x6b\x59\xb7\x5e\x5d\xcf\x92\x55\x72\x43\x53\x4e\x49\x57\x28\x6a\x1e\xe9\x9e\x38\xa9\xf2\xd6\x91\x9e\xe5\x44\x7b\x25\x78\x9c\x64\x27\x0f\xe2\x8d\xfa\xd3\xc1\xfc\x5b\x8a\x4d\xfc\x17\xf2\x78\x02\xe5\x28\x97\x9c\xac\x25\x50\x2d\x60\xd4\x37\xe2\x32\x53\x88\x4c\x7b\x4b\x9a\x30\x6f\x58\xa1\x01\x29\x38\x54\x9e\xdc\xbe\xcb\x99\xee\x3b\xa4\x83\x61\xe2\x44\x7d\x66\xc9\xec\xb3\x03\xa1\x4b\x62\x6a\x36\x2d\x4b\x2e\xe4\xd1\x7a\x35\x87\x70\x0d\x39\x4e\x94\x7a\x49\xcc\xe1\xf5\x92\xa0\x30\x01\xa7\x7b\x9c\x95\xd5\x6e\x4e\xa1\x15\x54\x02\xa1\xc8\xe0\x40\x3a\x0e\xa3\x0e\xf1\x91\x33\x14\x8e\x21\xd5\x04\xa1\x27\x1a\x13\x65\xbd\x5f\xdb\x51\x41\x7f\xa8\x37\x19\x78\x47\x51\x69\x57\xac\x20\x1c\xf8\x7b\x3a\x7b\x4b\x66\x39\x4b\x80\x70\x8e\xb0\x09\xb8\x9b\xa9\xba\x94\xed\xc9\x69\xeb\x44\x58\x73\xe2\xf7\x85\x56\x69\xa4\x1b\x81\x4c\x67\x1e\xa6\xcb\x64\xc6\xf2\x1d\x89\x19\x99\xaf\x67\x64\x5a\xcf\xb3\x63\x0a\xb5\xae\x09\xb2\x5c\xf1\xc7\xce\xab\x01\x52\x6f\x5d\x63\x59\xce\x4f\x9f\x45\x52\x67\xd8\x41\x35\x23\xcf\xa0\x98\x91\x5d\x75\x7c\x4e\xf5\xb6\xd2\xba\xc9\xf3\xb4\x33\x31\x91\x78\x2b\x35\x08\xf9\xdd\x7d\x6f\x12\xa9\xb7\xd2\x23\x7f\x5b\x27\xdd\xab\x07\xa9\xb7\xd2\xbb\x7d\x86\x4d\xd1\xf6\x7e\xbb\xe5\xdd\x07\xf4\x96\x6f\x1f\xcf\xce\x60\xfd\x3c\x4a\xb7\xd7\x2a\x7d\x46\xad\xd2\x1d\xb5\xca\x33\xf2\x5b\xd2\x7d\x1d\xc8\xe4\x3b\xdc\x30\x24\x06\x79\x67\x9a\x3a\xc3\x8e\x78\x07\xca\x1c\x36\xbb\x3d\x4e\x69\xd2\xfd\x68\xac\x67\xdc\x5a\x4a\x92\x75\x8d\xd2\xc0\xa3\x24\xdb\x1e\xa1\x21\xef\xce\x21\xe4\x3b\xa2\x68\xac\x97\x9d\x63\x47\x14\xeb\xe5\xf6\xb5\x0b\x60\x2c\xdd\x68\x2d\x69\xb6\x63\x1f\xf8\xd2\x9d\x56\xf2\x65\x07\xad\xd5\x33\x68\xad\xb6\xf7\x17\x18\x6f\x76\xed\xb0\x9c\xed\x34\x25\x7c\x4b\x17\x8b\xee\x04\x65\xfa\x5d\xad\x7d\xd3\x75\x81\x40\x7b\xdf\x6c\x5f\x1d\x0b\x9a\xf2\xce\x1c\x29\x8b\x64\xf2\x0e\x14\x9f\x51\x49\x9d\x61\x2b\xd5\x75\x46\xff\xd6\x99\xa2\x48\xbc\x93\xda\x33\x6a\x28\x93\xef\xa2\x98\x77\x5f\x1f\x90\x7a\xbb\x13\x9d\xe0\xa8\x0b\x32\xeb\x3e\x1d\x4d\x8e\xed\x32\x42\x9e\xa6\xcf\xa1\xaa\xd2\xb7\xc8\x04\xed\xe2\x53\xed\x26\xbd\x4b\x10\x98\x9d\xae\x4a\xc0\xfa\xf7\x48\x24\x61\xe8\x94\x52\x07\x9b\xdf\xb4\x57\x61\xd2\xfc\x46\x92\xcf\xe7\xc9\x0a\xd7\x44\xc2\xcc\x35\x71\x23\xf6\x95\x9b\x57\x7d\xe2\xa4\x90\x0e\xbc\x83\x81\xe7\x65\x88\xb0\x8c\x36\x7c\xf1\x90\x99\xee\x36\x78\x79\x48\x8b\x2d\xba\xae\x85\x69\x45\x11\xd3\xa3\x46\x90\x5c\x34\x7a\x2a\x2b\x28\x6b\x95\x70\xcc\x27\x71\x86\x9f\x6e\x7d\x80\x83\xb9\x10\x7a\xf4\x7d\x36\xb4\x4e\xe9\xd5\xe4\x85\xae\xe8\x89\x5c\x6c\x2f\x52\xd0\x21\x08\xf5\x74\xec\x3a\x91\xaf\x82\xbc\x36\x79\x01\x0d\x3c\xce\xa4\x66\x8a\xab\xc8\x27\x82\x40\x86\x39\x92\xe0\x87\xd5\x40\xd0\x86\xdc\x2d\x47\x4a\x09\x39\x59\xab\x90\xc3\x31\xdb\x2a\xe4\x64\x38\xaf\xfc\xf3\x9a\x42\x4e\xb6\x5b\xc8\xa1\x31\x8b\xee\x93\x74\x4d\xb0\xc9\x8f\xdb\x73\xfa\xe5\x9d\xed\xb2\xcc\xb7\x17\x87\x8d\xb4\x08\x12\x5a\xd3\x4e\xb3\x52\xc3\x34\x6f\xa7\x71\x06\x03\x0e\xfe\xe6\x10\xbf\x01\xb4\xae\x04\xd4\xad\xd9\x98\x4e\xac\x5b\x59\x3a\x69\x76\x3a\xd3\x0a\x9c\xf1\xc4\x11\x5a\xd1\x93\xba\x0f\x23\xa8\xd4\x85\x7b\xb4\x63\x4f\x52\xc1\xc6\xc6\xf9\x44\xba\xa3\x93\x2f\xab\x24\x9b\xab\x05\x41\x49\x81\xc2\x44\x0c\x81\x96\x40\x85\xe8\x99\x59\x16\x8e\xba\x73\x5d\x97\xfa\x5c\x7b\xd1\x8f\xbd\x5d\x90\x1b\x37\x4d\x9c\xc5\x07\xaf\xb3\x1f\xc8\xeb\x4c\xd7\x45\x05\xa1\xaf\xc2\xa3\xe4\xe3\x6c\xa2\xae\x98\x43\x8a\x4c\xe4\x8d\xd2\x12\x9c\xed\xc4\x64\x82\xca\x09\x02\x25\x14\x88\x86\x9e\xdb\x12\x25\xf3\xeb\xb0\x3b\x64\x18\xa8\xfa\x04\xde\xd0\xe1\x20\xf1\x0b\x52\x10\xe1\xd1\x2e\x0d\xac\x28\x4a\x4c\x8c\xc4\xf8\x95\x85\xed\x75\x2d\x2d\xf3\xc5\x68\xac\x97\xd4\xda\x98\x0f\x79\x46\xb6\xb6\xe5\x45\xc4\xf7\x1a\x04\x25\x3d\x21\x61\xbe\x88\x60\x5f\xfb\x1a\xb6\xd5\x14\x84\xcd\xda\x5a\xd8\x4d\xfc\x5e\x07\xe5\x76\x69\x56\x97\x25\xa0\x21\xce\x54\x19\x20\x80\x3e\xbb\x0c\xef\xdc\x24\x28\x8e\x63\x26\xc9\xde\xf2\x6f\x45\xf3\x47\x43\x91\x7c\x33\x92\xba\x96\xe9\x37\xab\xe5\x0f\x86\xe2\x37\xab\xe5\x0f\xba\x96\x52\x4c\x6d\x9b\x62\x89\x90\x03\x51\x48\x90\x4a\x17\x4a\x64\x3d\x25\x86\xee\xce\x55\x45\xd9\x92\x50\x1f\xae\x80\xd9\xad\x31\x2e\x07\xc0\x5a\x9b\x04\x96\x4d\x56\x42\xc1\xfc\xb8\xfa\x41\x9d\x14\x67\x08\x0b\x6e\x14\xda\xcf\x04\x93\x92\xcd\x5d\xfc\x11\x91\xc5\x77\x51\x0c\x80\x1a\x22\xb5\xe1\xbd\xbc\x09\xf7\x64\xc2\x9c\xd5\x70\x47\x9e\xa1\xff\xeb\xc0\x63\x7e\x15\x22\x49\x83\xd9\x74\x74\xb6\xea\x06\xce\x74\x1f\xab\x6d\xc2\xe3\x49\x50\xdf\x15\x1a\x91\xb9\xaa\x5d\x21\x5b\xa7\x69\x1c\xc7\x74\xb3\x09\x64\x0f\x54\x97\x8b\xf4\x28\x1b\xd1\x48\xf6\x41\x28\x4a\x95\x46\x6a\xce\xcc\x31\x35\xcb\x15\x4b\x23\x6f\x06\x15\xf5\x57\xff\x87\x24\xb3\xbb\x57\xfa\x6a\xea\x28\x8f\x9d\x60\xc4\xf0\x35\xfa\xcb\x9f\x5e\xe1\x20\x80\x1b\x41\x82\xc9\x30\x86\x16\x20\xab\x59\x35\x50\x1b\x62\x90\x6c\x38\x1e\x37\xb8\xcf\x5a\x43\x73\x27\x0a\x2d\x2d\x80\x19\x11\xd3\xff\x08\x5e\x1c\xa3\x90\x5a\xa1\xed\x09\x42\x23\xfd\x1e\x0e\x5b\x6f\x53\x13\xa7\xa9\xb1\xd8\xae\x57\x5e\xa8\x48\x39\x18\xa5\xb5\x03\x3f\x83\xa9\xb0\xaa\x7d\x8c\x42\xee\xd6\xb2\xb5\x6e\x45\xed\xb6\xc9\x30\xd1\x7e\x91\x42\xb0\xd6\x2c\xe6\x98\xc7\xe3\x09\xc2\x72\x0c\x7d\x2d\x81\x26\x32\x3d\x01\xca\xda\x8d\xf0\xb7\x2f\x4e\x8a\xe1\xbe\x12\xd3\xed\x2c\x27\x6f\x67\x39\x79\x83\xe5\x34\xdc\xbc\x5b\x8b\xca\x7e\x55\x86\xb4\x93\xd3\x41\xf9\x59\x5d\x55\x57\x3d\xc4\x8b\x13\x2a\xd9\x4e\x6b\x1a\x62\x02\x78\x48\xd6\xec\x4b\xd0\x60\x90\x78\x33\xe7\x42\x6c\x0b\x09\xda\x6c\xc2\x5c\x85\x78\xc0\x54\x73\xbb\x08\xe4\x5e\x5a\xa2\x92\x44\xc5\x7a\xe9\xb3\x96\xa1\xf6\x01\x63\xdb\x45\x93\x21\x2f\xf1\x81\x54\xc2\x29\x16\xe3\xcb\xb3\x08\x9c\x27\xfc\x4e\x64\x92\xc1\xbe\xf0\xfe\xe1\xab\x03\xa9\x3a\x93\xd4\x6a\x61\xa1\xbb\x51\xa3\x99\xa2\x26\x89\x81\x49\x18\x54\x6d\x25\x01\x36\x92\xd5\x9b\xc7\xd8\x9b\xbf\x80\x9d\x4e\xee\x1f\xc1\xd0\x37\x89\xaa\x01\x80\x22\x80\xb0\x9c\x55\x60\x22\xa3\xf5\x3c\x0d\x91\x5c\x49\x8b\xf1\x77\x71\xdc\x98\x5d\x47\x3b\x8b\xf1\x98\x16\xbb\x29\xe2\x38\xce\x8c\xf9\xca\xba\xd6\x0a\x8a\xa4\x01\x0b\xfd\x5b\x9c\xaa\x87\x96\x0e\xf8\xda\x6d\xdf\x9d\x8f\x54\xed\x86\xb2\x40\x14\x52\xcc\xed\x7d\xb0\xce\x2a\x18\xe5\x4e\xdc\x4d\x0c\xfc\xe6\x6b\xb2\xb9\xe3\x36\x5a\xbb\xa5\xa9\x74\x34\x9e\x94\x62\x39\xd3\x68\x95\xaf\x42\xa4\x37\x9b\x16\x63\xa1\xd7\xbc\xf2\xa5\xe4\x42\x96\x33\x5e\x99\xf1\x9e\x90\xf2\xe8\x98\x6b\xeb\x8c\xcc\x96\x3f\xe9\x22\xcc\xc6\x39\xd8\x14\xa1\x27\x16\xef\x1d\xf4\x6e\x18\x49\x3e\x97\x42\xde\x03\x0c\x57\x25\xf0\xed\x1d\x2a\x81\x6f\xef\xa0\x74\xea\x7c\x8c\xc2\x1c\x95\xb6\xf6\x0d\x29\x43\xb8\xb7\x74\xb1\x78\xce\xb4\xe0\xfe\xe9\xa1\xec\x9e\x6f\xa5\x35\x36\xad\x7e\x71\x7f\xdf\x31\x35\x4d\xec\xce\x64\xbe\xde\x93\x99\xf7\x45\x2b\x69\x04\x6a\xb9\x8b\x05\xf8\x0f\x9a\x49\xc5\xb6\xcd\x2f\xa5\xe6\xfb\x47\xcd\x2e\xc7\x20\x9a\xc6\xdc\x9d\x5c\xdc\x92\xab\xac\x75\xdc\x50\x52\x65\x47\x82\x93\x1a\x65\x8d\x31\x14\x8b\xda\x68\x3a\xe5\x08\xe6\xcc\xb5\x5f\x04\x5e\xc2\xd8\x0d\x6c\x36\x12\xa1\x4f\x75\x73\xc8\xc5\x69\x40\xf5\xa9\xa9\xa8\x7b\x0e\x57\x7a\xd4\x62\x71\xd2\x3c\x67\x9b\x1e\x1a\xda\x63\x06\x41\xed\xac\xd1\xac\x38\x75\xc1\xbe\x00\x0f\x02\x4c\x3a\x20\xf8\xab\xca\x7b\xc2\x10\x50\x47\xf3\xe9\xe8\x41\x7b\xde\xb9\xda\x98\xa3\x89\x24\xa4\xc2\xd2\xad\xeb\x5b\x19\x04\xec\xa7\x96\xaa\x51\x1e\x9d\xf0\xbc\xd9\x58\x0a\x46\x6b\x9c\x81\x44\x96\x73\xba\x78\xd4\x7a\xd1\x93\xbb\x24\xbb\xd5\x31\x6b\x12\x6d\x6e\x3e\xf3\x28\x31\xf7\xe2\x38\x1d\x0c\xd2\x2d\xd8\xe0\x40\x9e\x91\x65\x7e\x4f\x2e\x6e\x0a\xc2\xee\x09\x43\xa1\x10\x69\x66\x9a\xee\x3c\x0e\xfe\x8f\xa0\x09\x91\x51\xf1\x2a\x5e\x84\x6b\x50\x00\x89\x09\xb4\xd2\xb6\x58\xca\x1a\x6a\x7e\x14\x8c\x27\xc1\x48\xad\xe1\xd7\x52\x2f\x3b\x9f\x57\x94\xa1\xca\x4b\x3c\x13\x1d\x31\x5e\x4e\x4a\x92\x16\xa4\x9f\xc6\xab\x96\xf9\xcb\xc7\x07\x13\x4c\x05\x59\x7d\xe0\x64\x23\xfb\xf8\xc9\xec\x71\x71\x0a\x2a\x30\x15\xa5\xd0\x12\xf5\x68\xd5\xaf\x29\x52\xd8\x66\xda\x5f\xa6\xd3\x51\x73\x8f\x8e\xec\xc6\x1a\x2e\xfc\x5e\xcf\x3f\x34\xba\x0b\xef\xf1\xaa\x75\x7f\x08\x49\x75\x4c\x1a\xbd\xbb\x1a\xb4\xb4\x12\x94\x16\x0d\xee\xb5\x39\xff\x8d\xb5\xeb\x48\x88\x1b\xb2\x83\x44\x3f\x1d\xea\x7d\x62\xcc\x70\x16\x67\x9b\x4d\x90\x14\xb3\x60\x62\x73\xa1\x77\xb5\x5d\x17\x6a\xda\xbe\x86\x68\xb5\x83\xc9\x93\x82\x7b\x34\x95\x7c\x9c\x4f\x70\x11\x27\xa2\x1a\xeb\x38\x19\x1f\x4e\x70\x2a\xd9\x4f\xb0\x76\x62\x52\xb3\x65\xf6\x20\xe9\x41\x66\x62\xe7\x16\x48\xce\x24\x31\x4d\xd5\xc9\x12\xcc\x49\x31\x13\x53\x6d\x7d\xb4\x7f\xf8\x97\x74\x94\x6a\x5d\xe7\x41\x89\x04\x0f\x29\x7b\x70\xe6\x48\xc1\xe6\x6e\x64\xeb\x75\x4a\x33\xaa\x60\xf3\x72\x05\x24\xe9\x25\x61\xb7\xa4\xed\xa3\xbc\x65\x68\xfb\xfa\x40\x92\xcf\xd3\x82\xf8\x5d\x16\xbb\x5a\xdc\xe8\x22\x3a\x22\x4b\x2a\xeb\xed\xed\x97\xeb\x40\xf2\xa3\xaa\x6b\x67\xd2\x32\xdb\x56\xca\x53\xb1\x41\x5e\x91\xae\xf7\x61\xd4\xae\x2e\x89\xa0\xab\xed\xf5\x90\xc7\x5c\xc2\x40\x1d\x31\x9d\x72\x64\x90\xa5\x64\xea\xbc\x65\xec\xed\xd1\xe9\x64\x15\x6f\x16\x06\x77\xb9\xa7\xc3\xd7\xfc\x87\xfa\x89\x2d\xb9\x28\xc9\x80\x54\x87\x33\x07\x33\x58\x86\x74\xde\x4c\x63\x36\x7c\x26\x8f\x45\xc8\xf4\xc1\x9e\xd9\x36\xdb\x3a\xee\x83\x38\xd9\x89\xe0\xb5\xd8\x38\x9f\x54\x97\x55\x25\x51\xbd\x1e\x73\x3f\xfc\x0d\xd3\x65\xc8\x64\x9b\x0d\xb7\x2c\xf8\xd9\x96\xbe\x51\xd3\xfa\xdb\x46\x64\x10\x0c\xa3\x54\xc6\x70\x8f\x32\x86\xeb\xfb\x01\xd2\xb3\x71\x45\xec\x4e\xe2\xde\x4e\x02\xec\x8f\x09\x96\x1e\x12\x63\x66\x78\x20\x52\x6e\x69\xa0\x59\x7c\x5f\xe5\x14\xe1\x61\x52\xd4\x14\x3f\x52\x7f\xed\x69\x6d\xe6\x10\x31\xee\xb3\x42\x12\xb4\x38\x87\x52\xef\xdb\x06\xbc\xb8\xba\xae\x49\xe6\x73\x9f\x04\x6a\xe8\xc0\xc1\x45\xf0\x9e\x8a\xe2\x54\x62\xae\x62\x1f\x6e\xcf\x65\xc5\x47\xe4\x82\xc1\xd8\x9e\x5a\x0a\xef\x32\x82\x6e\xab\x33\x88\x0a\x4e\xdb\xfd\xbe\xda\xf6\x09\x61\x2c\x67\xfb\x80\x23\xd8\x06\x00\xa6\xd5\x8d\x37\xc9\xec\xf3\xcd\x9a\x65\x2d\x58\x5e\x3e\x5f\x9c\x93\x35\x63\x24\xe3\x97\xeb\xec\x7d\x9e\xaf\x7c\xb8\xa4\x2a\x76\x0b\x38\x94\xfc\x35\xa7\x59\x7c\x87\x49\x74\x43\x6e\xa9\x83\x28\x98\xca\x57\x92\x9b\x27\xd9\xdc\xfd\x06\xb1\x96\x80\x0f\x56\xc1\xdc\x3c\x05\xa5\xe6\xa3\xd2\x94\xa5\x8e\x5b\x28\xdc\x6e\x5f\xa9\x14\xf3\x6b\xba\x24\xcc\xe7\x77\x9e\x8a\x64\xf2\xab\x92\x2c\x92\x6c\x46\xd2\x66\xfa\xd4\xf9\x22\xd3\xa6\x09\x27\xcc\x4b\x14\xbe\xb4\xd4\x2b\xcf\x66\xe4\x65\x82\x8b\x34\x60\x27\x60\xb9\x2e\xd6\xa9\xb5\x37\x56\x8b\x96\x47\xeb\xac\xb8\xa3\x0b\x6e\xdd\xe7\xe3\xaa\xb3\x2e\xb2\x59\xd5\x61\xdc\xe9\xe4\x8b\x5a\xc5\x1a\x1d\xed\xe4\x75\x1b\x95\x91\x2f\x2f\x94\xc6\x3a\x36\x0a\x14\x5c\x87\xa2\x25\x6e\xdf\x72\x6b\xd4\x7c\x2b\x4f\x8f\x9b\x5c\x74\xd1\x9c\xdc\xe4\xeb\xb6\x76\xea\x8f\x2d\x6d\xe4\x77\x2c\xe7\xbc\x65\x32\xea\x8f\x2d\x79\x6f\x68\x36\x8f\x89\x89\xef\x77\xb9\xce\x62\x12\x55\xeb\x2f\x26\xd1\xdf\xd6\x64\x4d\x0a\x08\x40\x5f\xdc\xaf\xc0\x59\xec\xdf\xc4\x2b\xe7\xbc\xc6\x09\x84\xa8\x53\x28\x99\x61\x10\x0c\x41\x4d\xc6\x92\x6c\x9e\x2f\x43\x34\xd4\x1e\x39\x21\xe8\x7e\xa5\x16\x3d\x88\x02\x1c\x04\x62\xb3\xa9\x53\xd6\x30\xc9\xe3\x2a\x52\xa2\x72\x74\xbd\x66\x49\x56\x50\xf3\x0e\xfc\x02\x03\x1c\x80\x13\xc4\xa5\xfe\xa5\x83\xb5\xe1\x62\xd2\x33\xf5\xd7\x48\xcb\xae\x2b\xf4\x1a\x3f\xa9\x47\x28\x79\x54\x15\x98\x67\x6f\xc4\x46\xe0\x68\xc5\x92\x98\x94\x38\xcf\x4e\xb3\x79\x4d\x6c\x4c\x62\x0e\x1f\x44\x13\xae\x25\x7a\x3a\x8b\x9c\xdf\xfa\xeb\x39\xe1\x77\xf9\x7c\x14\xe4\x99\x02\xc5\x58\xa4\xeb\xe2\x6e\x94\xdb\x70\x55\x33\x7b\xfc\xd8\x3a\xf3\x0d\x9d\x33\x48\xa9\x76\x85\x94\x76\x26\x00\xd0\xd4\xb3\x18\x7e\x8b\x9c\xd8\xf9\xfc\xf4\xec\x29\xb0\xe8\xa9\x99\xf1\x5f\xb7\x72\xba\x51\x66\x2e\x65\xdb\x30\x81\x8d\x33\x9b\x72\x66\x28\xdf\xb9\x37\x14\x5c\xdf\x50\x30\x84\x4a\x97\x71\x50\x6e\xcd\xdf\x2a\x5c\xc2\xee\x78\x49\xcf\x8d\x81\x50\xe8\x60\x4f\xdf\x26\x00\x42\xd6\x1e\x00\x01\xf5\xb2\x1a\x52\x58\x2d\x00\xd5\x08\x00\x4f\xdb\x82\x23\x64\x48\xdf\x70\x5a\xbc\x03\x75\x3b\x9b\x33\x9a\x6d\x0b\x0d\xa0\x12\x08\x1e\x4e\x3e\x1a\x9c\x86\x17\x85\x88\xf3\x79\xf1\x7a\x71\xbb\xd3\x7c\x16\x4f\x31\x89\x1e\xe2\x07\xe8\xb6\x59\xb2\x24\x29\xfd\x3b\x89\x4f\xc5\xcf\xa4\xb8\x23\x4c\xfc\xfa\x02\xdb\xb9\xfa\x74\x25\x7e\x80\xdd\xd3\xe2\x31\xbe\x00\x91\x7e\x4e\x58\x31\xcb\x19\x89\x8f\x21\xe1\x8a\xf2\x04\x92\x7e\xde\x22\x35\xdd\x12\x7e\x05\x4d\xed\x6e\x4d\x5d\x65\xd9\x2e\x90\x15\xcf\x27\x5d\xd8\xa4\xd5\x78\xbe\x1a\xf7\xa7\x93\x57\xb7\x4a\x0d\x96\x45\x00\x59\x15\x1e\x92\xef\x7d\x97\x5f\xa7\xf2\x6e\x5e\x6e\xef\x14\x07\xfb\xe0\xb2\x9c\xc4\xaf\xc2\x3f\xf6\x37\x7f\x4c\x37\x7f\x44\x9b\x3f\x0a\x34\x0c\x23\x74\xf4\xea\x16\x17\xf1\xab\xf0\x3f\x36\x7f\xbc\x42\xe1\xf8\x78\xff\xff\x3f\x41\xaf\x6e\xf1\xba\x4b\x29\xd5\x3d\x6c\xd2\x58\x70\x7a\x3d\x1d\xb1\x88\xe7\x9f\x56\x2b\xc2\x4e\x92\x82\x84\x68\x14\x04\x65\x55\xb5\xc2\x4f\x96\xe7\xef\xf3\x07\x9d\x03\x2e\xac\xd2\xf8\xd5\x7f\x88\xba\x4f\x55\xa5\xf1\x2c\x7e\x15\x46\xc8\xdb\x9c\x85\x6a\xce\xe6\x8f\x08\x85\xe3\x64\xff\xef\xd0\xa2\xbb\xad\x2d\xaa\xa4\xcd\xd6\x86\x04\xd3\x60\xe8\x69\x0c\x66\x0d\x23\xbf\x6a\x24\x87\x61\x76\x94\x35\xf2\xa0\x12\x67\x95\xe2\xe8\x55\xe0\x15\xb9\xc0\xb8\x4d\xfc\x67\x3a\x4b\xb0\x32\xe6\xc7\x0c\x33\x2b\xca\xaa\xf4\x8d\x7e\x15\x54\xdf\x17\x6d\x3d\x6b\x55\x05\x7a\x76\x1e\xbf\x82\x4e\xfa\x63\x3e\x51\xe3\x3f\x14\xdd\xb5\x8a\x5f\x89\xbe\x2d\x86\xaf\x6e\xf1\xf2\x79\x93\x61\x8e\x83\x3f\x1d\x4e\xff\xf4\x9d\x55\x9b\x15\x0e\xa6\x01\xaa\x8f\x2b\xbe\xaf\x26\x9e\xa8\xc1\xfa\xe0\xe0\xe4\x60\xff\x8f\xf5\xc1\x77\xff\xfc\x0e\xc6\xec\xf1\x79\x05\xdf\x77\x6d\xf3\x6d\xa3\xcd\xa2\xb4\x9b\xe7\x95\x76\x5b\x35\xb3\xd6\xae\xea\xc4\x9f\x3a\x86\x2f\x7b\xae\x4e\x9e\xa1\xcd\xa6\x01\x38\xf3\x1d\x82\xeb\xed\x2e\xc7\x0b\x3e\x44\x08\x37\xb5\xe6\x2c\x3e\xe8\x35\x2a\xfb\xea\x9f\xfe\x4f\x38\x3e\xd8\xff\x97\xc9\x50\x2e\x11\x47\x35\xaf\x0e\x8c\xa3\x55\xc2\x0a\x72\x96\xf1\x30\xc3\x87\x07\x68\xff\x70\xc4\x86\x43\x9c\xc7\xd4\x68\x1a\x8f\xf8\x98\x4e\xb4\xfe\x47\xe9\x07\xe5\x09\x51\x09\xe7\xf9\x51\x3e\x52\x2a\x88\xfc\x28\x90\x2c\x50\x30\x32\x57\x1c\xf9\x51\x10\x8c\xe4\xe6\x16\xe6\x52\xfd\x6f\xac\xcd\xe4\x6b\x04\x57\xd7\xa2\xdf\x2a\x55\xe9\x83\x33\x02\x72\xe1\xbc\x12\x93\xd3\x4a\x73\x6a\xa5\xb9\x51\x17\x52\xd5\xd7\x2f\xd6\xd7\xbc\xf1\xf5\xca\xfa\xba\x6e\x7c\xbd\xb0\xbe\xde\x35\xbe\x1e\x5b\x5f\x97\x8d\xaf\x9f\xad\xaf\x8f\xfa\x2b\x93\x51\xdd\xea\x08\xec\x91\xec\x80\xc1\xc0\x77\x98\x50\x52\x84\xf2\x7b\x35\x2d\xf0\xd3\xc3\xe8\x69\x96\x67\x0b\x7a\xbb\x36\x87\x8a\x7d\xc4\x1c\xe2\x07\x46\x39\xd1\x9f\xc0\x70\xd8\x73\xe2\x3c\x28\xa4\xdf\x12\xa7\xf9\xec\xeb\x28\x7e\x63\xe6\x74\xaa\x2f\x6a\xca\x12\xeb\x33\xff\x9b\x34\xf9\xca\x34\xb9\xe2\x33\xbe\x09\xe1\xd3\x8a\xb0\xe6\x58\xbe\x09\xdd\x2f\x86\x6e\xc5\xe1\x7c\x13\xc2\xc7\x86\xb0\xe6\xa3\xbe\x09\xd9\x8b\x8a\xac\x61\xc1\xbe\x09\xe1\xcf\x9a\xb0\xd8\xca\x7b\x0d\xb6\xd6\xcb\xb5\x76\x54\x40\x56\x7c\x57\x2d\xae\x07\x01\x1b\x52\xcf\xd7\xea\xa8\x77\x52\x78\x35\x7c\x63\x32\x29\x4d\xf0\x13\xc5\x91\x2b\x4f\xfc\x57\x24\x9b\xe5\x20\x33\x77\xac\xe9\x99\x72\xd7\xa0\x42\x08\x86\xac\xae\xd6\xd4\xaf\x12\xd5\x58\x6a\x37\xeb\xc5\x82\xb0\x98\x48\xcc\x25\xb1\x93\x7c\xcc\x8b\xf8\x40\xc1\xd1\x09\x5e\xf9\x60\x9b\x9a\x54\x56\xb6\xa9\x79\x26\x3f\x7e\xf7\x3f\xff\xa7\x05\x74\x06\x72\x76\x18\x5c\xac\x44\xf2\xbe\xa0\xd1\xcf\xef\x09\xeb\xff\xef\xfd\x1b\xca\x8b\xa8\xff\x53\xce\xfb\x00\x6f\x16\x69\xf4\x2d\x59\x31\x65\xab\xb4\xe1\x8d\xe3\x71\xff\xbb\x1f\x7e\xf8\xdf\xc8\xad\xb6\x9d\x51\x1b\xce\x57\xea\xed\xf8\xbb\xd7\xac\x79\x7b\x60\x23\x3b\xd8\xbb\x0e\x5d\x84\x41\xb6\x16\xd3\xc9\x82\x78\x18\x0c\xb2\x1f\xff\xf9\xbb\x7f\xf9\xe7\x7f\xf9\xff\xfd\xaf\xef\xfe\xc5\xdb\x3e\xc2\x92\x6c\x2e\xdb\xf6\xfd\x77\x4e\xe3\xb2\x96\xc6\x65\x12\x23\x5a\x76\x76\xb3\x05\x25\xe6\xd1\xaa\x6e\xbf\x2d\x3b\x79\xff\x50\x43\x59\xcb\x1c\x63\x32\x3c\x9c\x34\x2b\x75\xcd\x1e\x69\x76\xdb\xe7\x79\x1f\xe8\xf4\x73\x55\x49\x9a\xf5\x57\xf9\x6a\x9d\x26\x9c\xcc\xfb\x45\x9a\xf3\x3e\xcd\x0a\x4e\x92\x79\x3f\x5f\xf4\x93\x3e\x23\x70\x61\x2b\x3f\xd5\x6a\x0e\x25\xc5\xdc\xd4\xed\x37\xca\xef\x1a\xec\xf2\x7f\x87\x1a\x62\xf7\xd5\x77\x93\x98\x19\x75\xba\x67\xe1\xf0\xda\x5a\x4c\xf3\x87\xfd\x94\xdc\x93\xb4\xf3\x6a\xbc\xe2\xc9\xec\x73\x2c\xfe\xe6\x2c\x71\x2f\xd0\xda\x96\xa2\x5a\x89\x89\x38\x0d\xe3\xf1\x44\x56\x19\x74\xa4\x5b\x97\x5e\xfd\x86\xa2\x32\xc2\x80\xcc\x1a\x86\x10\xc8\x8a\xd9\xcc\x6d\xd8\x18\x93\x6c\x38\xec\x91\xb4\x20\x55\xfc\xee\x49\xaf\x2a\x3f\x2b\xed\x2b\x09\xa0\x34\xe6\x13\xb1\x59\xc8\xfb\x0e\x46\x16\xad\x17\x18\x32\x35\x99\x40\x4a\x66\xab\xff\x89\xdd\x60\x08\xcd\x6e\xea\x5c\x15\x4d\xcc\x30\xe9\x9e\xf4\xc4\x85\x72\x3a\xf1\xab\x20\x2d\xc7\xaa\xd9\xf7\x64\x16\x93\x6d\xbd\x0e\x78\x88\x9e\x4d\x5f\xcc\x66\x89\x04\x2f\x68\x18\xeb\x03\xd1\x7a\x78\x7e\xc7\x72\xcb\xc2\x92\x6f\xcf\xc7\xad\x8c\x56\x26\x4b\x06\xf5\x67\xc3\x4c\x66\x9c\xe5\xab\xba\x9d\x9f\x4e\x2a\xc6\xcf\x3c\xcb\xd1\x81\xa3\xf6\x32\x79\x68\xcb\x41\xd4\x4a\xbf\x25\xdc\x4d\xe5\x0e\x78\x45\xb0\x81\x6a\x65\xea\xa9\xc1\xad\x44\xaa\x94\x64\xbe\xc3\xd3\x4d\x6a\xcd\x02\xb1\xae\x58\x6d\x7d\x66\xf9\xbc\x76\x6f\x0a\x0c\xc0\xfe\x4d\x72\x43\xc0\x46\x5e\x27\xec\x1c\xac\xb3\x20\x4c\x42\xab\xbe\x59\xd3\x74\x4e\x98\xdf\x5e\x94\x46\x8b\x9c\x29\x18\x56\xa9\xe2\x56\x96\xa7\x24\xfa\x90\xcf\xc9\xdb\x8b\xf3\x6b\x46\xc8\x49\x5e\xed\x30\x2d\xe1\xb2\x88\x35\x89\x99\x35\x2d\x88\x65\x9f\xcd\xd1\x66\x03\x77\x8c\xd2\x2b\x29\x13\x9c\x24\x2f\xde\xe7\x79\x41\x50\xc8\x30\xa9\x40\x3e\x1b\xf3\x35\x93\x58\xab\x9f\x0a\x92\x92\x42\x3b\x2a\xba\x41\xe0\x74\x08\xd2\xc6\xc7\xda\xf0\x6a\x94\x49\x37\x39\xdc\x94\x40\x29\xc7\x9c\x33\x7a\xb3\x76\xdd\x56\xa0\x87\x89\xf3\x19\x66\x69\x89\x59\x19\xb2\xc8\xd3\x4f\x62\xac\xdb\xba\x50\xc7\xcf\xf6\xf6\x9e\x36\xbc\xd3\xe6\xd4\x00\xdb\xec\x85\x81\x95\xbd\x89\xac\xa1\x4e\xf3\xd9\xe7\xb7\x64\x05\xb0\x6b\xdc\xdb\xcd\x99\xee\x66\x1a\x67\xcd\x6e\xa6\xd1\x74\x9a\xaf\x48\x06\x84\xea\xf8\x3c\x6a\x4f\xf6\x94\x36\x1c\x6a\xa8\xe4\x64\xb5\x22\xd9\xfc\x24\x5f\x42\x9f\x06\xff\x34\xbc\x19\x05\x43\x3e\x0c\xfe\x09\xc0\x18\x2b\xd9\xdf\x2a\xa6\x9a\x20\xa8\xc4\xa2\x02\xb3\x34\x2f\x48\xa3\x06\x6e\xee\x2a\x8d\x95\x1d\xb7\x54\x62\x5f\x54\x62\x7f\xbf\xb5\xf6\xa2\x76\xb2\x68\x99\xf3\xe7\xeb\xf3\xf7\xb1\xc7\x50\xcc\x4f\xfd\x36\x5d\xb2\x7f\x0a\xc0\xc8\x28\xb8\x3e\x7e\xf3\xfe\x34\x50\xe1\x36\x22\x22\xa7\x56\xc4\x93\xdb\x0f\xc9\xd2\x58\xe3\x72\x63\xfa\x19\xfc\x20\xf3\xd1\x1f\xf7\x0f\x51\xc0\x19\xe4\x54\x7b\x20\x1d\x1e\x62\x3a\xfc\x1e\x81\x8f\x6f\xf0\x03\xbf\xc9\xe7\x8f\x3f\x42\x5f\xfe\xf0\x4a\xfd\x40\x65\x00\x39\x8e\x5a\x6a\xd6\xff\xa7\x00\x8d\xdc\x7e\xab\x1a\xe8\xac\x4b\x6d\x17\xb3\xbd\x85\xd6\x96\x0d\xb0\xdf\x33\x46\x38\x79\x93\xaf\xb3\xb9\xb4\x2f\xd4\x0d\x06\x97\x60\xbb\x43\xaf\x9d\x7b\x52\xad\xd3\x91\x10\xeb\x71\x98\xc5\xa1\x3c\xe2\x51\x45\x40\x2a\x5b\x42\x1a\x33\x38\x45\xaf\xe8\x4d\x4a\xb3\x5b\x74\x94\x45\x69\x52\x70\x00\x3e\x1e\xd1\x68\xc5\xc8\x3d\xcd\xd7\x85\xfe\xac\xf5\x37\xbb\x7b\x25\xcc\x07\x83\xef\xe3\x38\xce\x23\xb1\xf3\x5e\x3f\xae\x88\x8a\x9b\xd2\x4c\xbf\x69\xce\xdd\xaa\x55\x4e\x2f\x42\x9b\x61\x66\x7a\x36\x28\x6d\xcb\x5c\x9f\x1c\x19\x21\xf3\xe2\xf4\x0b\x67\xc9\x89\xc8\x29\x86\x7b\xcb\xe7\x78\xef\xd0\xa9\x8b\x5d\x9a\xb5\x12\x50\x97\x44\xa2\xb6\x62\x15\x36\x2a\x6b\x76\x6f\x3d\x25\x07\x83\xe0\xfa\xcd\xc5\xdb\xdf\x83\x3d\xff\xcc\xd6\x95\xb6\xa8\x85\x01\x4c\x52\x8d\x81\x6b\x7c\xf1\x69\x76\xdb\x6c\x93\x92\xd2\xe0\xb6\x52\xe7\x07\x25\x9b\xdb\x0e\x8b\xbc\xd3\xef\xa5\x72\x05\xb9\x24\xcb\xdc\xb3\xff\xf3\xca\x63\xba\xa9\x9a\xf4\x32\x55\xdf\xd9\x4c\xd5\x77\x13\x05\x64\x1f\xab\xe3\x63\x09\x26\xf2\xee\xe9\x11\x48\x97\xf9\x00\xf5\x72\xf7\x90\x08\xc4\xe2\x09\x30\x43\x98\x46\x34\x2b\x08\xe3\x6f\x24\x7e\x1f\xc7\x39\xce\xdc\xf6\x35\xda\x60\xb7\x12\x94\xf0\x25\xce\xc4\x71\xf3\x81\x3c\xa8\x14\xea\x70\x47\x35\x76\x22\x07\xf1\xd4\xc4\x22\xf0\xde\x88\xd9\x68\x0f\x2d\xcc\xc6\x9a\x53\xe7\xf7\xfd\xd2\xfe\xf5\x40\x19\xd9\x07\x58\x4d\x6e\xbf\x36\x62\x7f\xf5\x6a\xc5\xf2\x5b\x96\x2c\xb7\xc4\xce\x6b\xb0\x2f\xaa\xea\x70\x6b\xa6\x63\x2b\xa8\xcb\xc2\xa6\xb0\x80\x59\x4c\x22\x3a\x97\x1e\x10\x84\x27\x80\xd8\x7a\x23\x36\x78\x9c\xc4\x6c\xb3\x09\x66\x29\x25\x19\xdf\x0f\x86\x7f\x1d\x0e\xd5\x26\xf1\x44\xe7\xa3\x04\x8b\xd4\x23\x8a\xe5\x60\xda\xf7\xee\x4c\x5b\x59\x33\x69\x8a\x6b\x21\x3f\x30\x4c\xd1\x88\x1a\x4e\x1a\x02\x2b\xfc\xeb\xd5\xc5\x87\x08\x74\xcd\x61\x8e\x10\x16\x5b\xe4\xdb\x90\x60\x59\x08\xd4\x64\xc4\x31\x23\x0b\xc2\x18\x61\xa3\xa2\x44\x65\xa9\x0c\x33\xd6\xb7\x0d\x3e\xa3\x32\x89\x6d\xe8\x1b\x13\x4b\xdf\x98\xff\xf8\xfd\x51\xbe\xff\xfd\xe8\x00\xe1\x22\xfe\xfe\x75\xf1\x43\x0e\x30\xb4\xc9\xb8\xd8\xff\xde\xd6\x3c\x16\x42\x24\x60\xf9\x83\x72\x65\x61\x24\x99\xdd\x25\x37\x29\x41\x61\x70\x2e\xa3\x92\xf6\x95\x3a\xe3\x9c\xf0\x64\x9e\xf0\xa4\xbf\xc8\x59\x3f\x18\x32\x8d\x30\x0a\x39\xe7\x74\xc6\x51\xe8\xf8\x47\x46\xf9\xaa\xf0\x40\x6c\xe3\x5c\x77\x5e\x32\xce\x27\xbd\xe2\x81\xf2\xd9\x5d\xc8\x40\xbb\x81\x9e\x66\x49\x41\x02\x9e\x07\xa3\xf5\x98\xa9\x50\x52\x64\x58\x48\x27\x90\x1e\x7c\xa4\xdf\x7f\x17\x8c\xe0\x49\x62\x15\xab\x1f\xd0\x8d\x76\x36\x27\x93\x8c\x21\x6b\x7f\x36\xd8\xe9\x32\x78\x6b\x58\x20\x3b\x7d\xc1\x99\x9b\xd8\x28\xba\x6a\x09\x65\x68\xa5\xfd\x5a\xfa\xe2\xc8\xcd\x01\x7b\x44\x8d\xfe\x3e\x08\x86\x2d\xa5\xc8\x31\x74\x8b\xf2\xa7\xf7\xa5\x04\xc4\x37\x2b\xe1\xde\x9e\xd3\x19\x2b\x46\x97\x94\xd3\x7b\xa7\x3f\x7c\xd7\x2a\xe4\xc7\x1f\xbf\xd7\x03\xf4\xbf\x06\x6a\x74\xfa\x07\x23\x7d\x43\x08\xe4\xfa\x87\x23\xfb\x86\xf8\x03\x28\x93\x42\x86\xe4\xc7\xef\x46\xcd\xeb\x63\xf3\xf1\xfb\x91\x1e\xfd\x1a\xe9\xbd\x43\x97\xf4\xde\x41\x8d\x1a\xf4\xa7\xa2\x21\x5f\x95\xf0\xeb\x9f\x61\x32\xf4\xff\x67\x4b\x95\xb4\x41\x6f\xcb\x8c\x47\x65\x19\x02\xc3\x63\x75\x96\x86\x81\xb7\xfb\x4a\xc7\x7a\x24\x4c\x2c\x1f\x7b\x58\x15\xff\x28\xc8\x35\x47\xd6\xfa\x58\x1b\xb0\x34\xf9\xfb\xe3\x3e\x9c\x82\x49\xc6\x1b\x19\x2f\xf8\x1d\x61\x61\x01\x00\xa8\x63\x58\x59\x10\x87\x6e\x3d\x31\x9b\xc4\x95\x2b\x42\xab\x9d\x02\xec\xf1\xf2\x5b\xb9\x7c\xfd\x03\x0c\x1a\x13\x7d\xfe\xb9\x56\xb1\x2d\xfe\xb9\x81\x54\x60\xc6\xc1\x10\x8e\x46\xd0\xf1\x22\x75\x1d\x2b\xb8\xc0\xa1\x51\xa7\x04\x61\x30\x64\xc3\x00\x05\xa2\x1e\x1f\xdf\x1f\x9f\x9c\xfe\x7c\xf1\xfe\xed\xe9\xe5\x54\xc6\xc0\x8e\x49\xf4\x1b\x13\xbc\xd2\x5c\xcb\xa0\x24\xfa\x98\x30\x21\x6b\xbe\x25\x0b\x08\xc0\x06\xa1\x99\xaf\xf8\x5c\xb6\xa0\x4a\x56\xff\x7d\x9a\xdc\x12\x56\x7f\xf9\x3e\xf9\xfb\x63\xfd\xdd\x09\x9c\x1b\x62\x00\x3e\xca\x43\xc7\x79\x27\xa5\x0a\xd5\xa5\x27\xea\x74\x8c\x49\x74\x7c\x53\x70\x96\xcc\xb8\xf5\x4a\x10\xb7\x7e\x9e\x83\x87\xbb\x48\x7a\x7d\x7d\x79\x35\x7d\xf3\xfe\xe2\xe4\x17\x5b\x14\x5e\xe3\xb4\xe7\xed\x83\xfd\x43\x1c\xa6\xf1\x7a\xb3\x09\xd7\xf1\x53\x89\xd0\x38\x8d\x2e\x56\x24\x33\x11\x99\x34\xbb\x72\x30\x89\x03\xdf\x87\x00\xa7\xe3\x34\x7a\x4b\xe7\x27\x8e\x74\x7b\x38\x89\x83\xfa\x4b\x93\x54\x4a\xf2\xef\x93\xc7\x7c\xcd\xe3\xef\x64\x4a\xfb\x9d\x4a\x08\x51\xae\x08\x8b\xbf\x17\x29\xd4\x8f\xc0\xf8\xf9\x5c\xac\x0a\xbc\x88\x83\x41\xc2\x39\x2b\xc4\x91\x6c\xb7\x7c\x01\xc9\x20\xd0\xed\x7f\x8d\x1e\xeb\x40\x4a\x94\xf9\x62\x51\x10\xae\xb5\xfa\x10\x47\xcd\x39\x8d\x14\xe3\xb8\xce\x66\x45\x3c\x9e\x74\xd7\x32\x1a\xbd\x10\x64\x55\xb8\xd0\xc8\x2a\xc5\xa8\xf3\x64\x02\xad\x84\x2f\x15\xce\x03\x4d\x5b\x96\xdb\xd8\xaa\xf6\x44\x01\xda\x2a\x8a\x4c\xe2\xed\x18\xa2\xe3\x6c\x82\xb4\xb6\xa5\x0c\x91\x1d\x22\xd8\x42\x68\xca\x62\x32\x3e\x9c\x08\xd6\x66\xfc\xdd\x44\x30\x36\xe3\xef\x27\x3d\x16\x91\x2f\x2b\x16\x52\x84\xf3\x23\xe9\x2c\x06\x53\x46\xb0\x9d\x61\x86\x73\xcc\xd1\xa8\xf9\x1a\xb8\x58\x3b\xc4\xe4\xfd\x33\xcb\x99\x3f\x66\xc9\x92\xce\xdc\x52\xdc\x97\xba\x0c\xb3\x60\x6a\x3a\x04\xd2\x7c\xf1\xc2\x09\x22\xf8\xa0\x47\xfc\xe2\xf0\x36\x22\xfb\x6d\x65\x53\x90\xcc\xe7\x61\x40\x17\x81\xd7\x20\x9c\x2e\xc2\x3d\xb2\xd9\x1c\x02\x18\x99\xd1\x3b\xd7\x54\xff\x57\xbf\x7f\xb8\x3e\xfe\xf7\xfe\xe9\xe5\xe5\xc5\xe5\xa8\xff\x3f\xe8\xa2\xcf\xc8\xdf\xd6\x94\x91\xa2\x9f\xf4\x65\x1c\xc6\xbe\xae\x81\x90\xfa\xa5\x19\xc3\xa3\xd8\x95\xce\x16\xe1\x53\xc2\x6e\x0b\xaf\x2f\x0b\x0c\x00\x19\x1f\x4c\x84\x04\xc1\x73\x8d\x90\x83\xf0\x61\x89\xe9\xe2\x9a\xb9\xf7\x89\x42\xc8\xb8\xcf\x3f\x93\x2b\x9e\x70\x3a\x83\xed\x2e\x64\x42\x40\x5a\xbc\x4b\xd2\xc2\x49\x9a\x0d\x06\xbe\xd4\x19\x52\x30\x72\xb2\x4f\xd6\x59\x4a\x8a\xe2\xdb\xf5\x8b\xa4\xf7\x7f\xa5\x6f\xda\x1b\xec\xeb\x9e\x96\x9e\xb4\xfb\xe6\x81\x3a\x98\x4e\x5f\xd9\x33\x10\xf3\xe8\xbf\xa0\x5f\xe6\xeb\x55\x58\xef\x9f\xef\x3a\xcf\x1d\x7c\xf8\x35\xb3\x47\x30\x5e\x9e\x1e\xca\xd1\x53\x6e\xb5\xa5\xb5\x25\x7c\x30\x08\x3e\x93\x47\xd0\x41\x8c\x0f\x26\x62\x0f\xc8\x65\xe3\xf8\xf8\x50\xfc\x44\xa3\x1c\xf6\xee\x8f\x9a\xdf\xbd\x14\x22\x16\xc9\x66\x3a\x90\x6c\x6e\xf7\xc5\x77\x25\xbe\xc9\xe7\x4e\xf8\x30\x91\x9d\x9f\x71\x02\xd8\x72\xa1\x48\xff\xd7\xf5\x72\xf5\x09\x26\x69\x18\x9c\xbe\xbf\x3a\x0d\xc4\x4b\x51\x06\x58\xa5\x42\x12\xd1\xa3\x15\x83\x18\x2d\x56\xf8\x50\xbc\x96\x95\xbe\xce\xc3\xe0\xec\xfa\xf4\x12\xf2\x91\x8c\x13\xf6\x9e\x16\x3c\x0c\x40\x7f\x22\xde\xa5\x42\xca\xb6\xd2\x50\x28\x9d\x84\xc1\x9b\xcb\xd3\xe3\x5f\xec\x24\x26\x8b\x6f\x5c\xbe\x83\x7a\xe5\xab\xf0\x3b\x5d\xeb\x30\x78\x77\xf6\xe1\xf8\xfd\x7b\xa7\x98\x8a\x28\xf9\x42\x39\x54\x45\x65\xac\xda\xd3\x9a\x59\xb5\x3f\x1b\x0c\x7c\x75\xa8\x8d\x35\xcd\xf6\x89\xe6\x43\xbe\xd9\x2e\x6a\x68\x7e\xdd\xca\xa8\xae\xce\x2d\x67\x56\x5f\xe8\x08\x0b\x1c\x4f\x5e\x9c\x57\xca\xc7\x40\x9c\x27\x83\x41\x70\xbb\xa6\x73\x78\x7e\x4e\xed\xe7\x39\x91\x41\xce\x78\xf2\x99\xf4\x93\xfe\x7f\x06\x43\x36\x3e\x98\x0c\x83\xff\xec\x4b\xf9\x12\x1a\x01\x73\x35\x1b\xe7\x13\x83\xbe\xe7\x5d\xcb\xff\xec\x5f\xbd\x0d\xf5\x51\x28\x95\x4e\xcd\x5d\x0c\x03\xc2\x43\x2d\xad\x33\x98\xfb\x62\x37\xda\x57\x67\xfb\xfe\x7d\xc2\xda\x8f\x00\xae\xdd\x0d\xa1\x6b\x13\xe9\x27\x4c\x35\x97\xf4\x31\x61\xc9\xb2\x08\x13\x0d\xd7\xf2\x56\x92\xbc\x9a\xe5\x2b\x02\xf5\xbb\xa1\xd9\xdc\x79\x99\x6f\xaf\xb5\x4b\x40\x3a\x77\xb7\xec\xd5\xa6\x35\x56\xe4\xa7\x96\x46\x68\x93\x3f\xe3\x56\x28\x7a\x7c\xb3\xd9\xa3\x51\x01\x34\x0d\x57\xfe\x33\x49\x57\x44\x0e\x08\xf0\x4e\x06\xec\x48\x36\x5e\xbb\x3a\x1f\x8a\xe1\x54\xdd\x67\xf2\x86\xb9\xe4\x8f\x12\xcc\xf1\xde\x81\x54\xe8\x95\x08\xf3\x9d\x95\x34\x37\x07\x83\x81\xe8\xe4\x9e\x55\xe1\x0a\xe5\x60\x30\xc8\x5a\x2a\x4b\x05\x0d\x50\xa7\x1a\x59\xdb\x1d\xb1\xaa\xd2\x95\xc7\x6f\x6b\xdd\x99\xa8\x3b\x3c\xcb\x2d\x16\x4c\xf7\x9f\x40\x39\x53\x8c\x08\xa6\x59\x4a\x33\x52\x8c\x78\x59\x0a\xf6\x5c\x2b\xe2\x0a\xa9\xa3\x93\x1f\x95\x7d\x03\xbc\xd7\xa6\x0d\xea\x53\xcc\xa4\x3d\xd1\xe3\x76\x1b\x83\xff\x1e\x92\x40\x32\x9f\x2b\x0d\x5a\xd3\x28\x60\xa9\x3e\x90\x36\x91\x41\xab\x3f\x8d\x9b\xbb\x5d\x62\x05\x10\x9b\x1c\x69\xa1\x41\x51\x44\x4e\xe6\x91\x2b\x52\x24\x13\x14\x56\x1f\xa5\x60\x81\x6f\xff\x3f\xdf\x97\xee\x8d\x12\x81\x1d\x68\x51\xb7\x4d\xce\xf5\xfc\x07\x65\x38\x0b\xb0\xdc\xe3\xf3\xf1\xc1\x24\x8e\xe3\x59\x24\x57\x0b\x62\x71\x2e\x0e\x87\x2c\xce\x85\x20\x44\xe3\x5c\x08\x42\x60\x5a\xa2\x12\xef\x89\xc4\x9f\xb2\xcf\x59\xfe\x90\x35\x29\x9a\xec\x14\x9c\xd6\xca\xc6\xe0\x4a\x93\xac\x6a\x7c\xd5\xc5\x93\x1e\x5d\xa5\x39\x6d\x0c\xba\x6c\x9c\x01\x58\x01\xa8\x9c\xe2\xa8\x2a\x78\x54\x94\x36\x6a\xb2\x42\x09\x59\xc7\xcd\xf9\xe1\xa3\xb4\xb6\x29\xad\xcb\x7a\xab\x94\x84\x2a\x28\xde\xb4\xd9\xe1\x99\xc1\x9f\x19\xad\x89\x2c\x39\x95\x7a\x08\x8e\xed\xaf\x73\xd9\x3b\x46\x00\xb3\x6e\xab\xea\xe3\x6b\x3c\xc0\xf5\xed\x93\x26\x81\xec\x6b\x7d\xfd\xb2\xe7\x96\xb2\x7f\x68\xc7\x0e\x96\x55\x91\x3b\x0f\x6c\x96\x70\xf6\xb9\xe1\x78\x4d\x56\xa7\x31\x12\x74\xcc\x6e\x90\x04\x29\x66\xea\x22\x48\xb9\x2a\x11\x3c\x7e\xfa\x4c\x1e\x47\x4a\x73\x7d\x0d\x6a\xc2\x36\x9f\x98\x7a\x8d\xca\x72\x82\xb4\x99\x48\x53\x8f\x75\x03\x0d\x99\x3e\xbb\xfb\xe1\x56\x62\xfe\xdf\xa2\xfb\x65\x55\xaa\x43\xc1\x1a\x02\x38\x1e\x54\x34\x5c\x9a\xdd\x4a\x3d\x55\xd7\x71\x91\x96\x18\xdf\x60\x34\x64\x05\xeb\xa3\x61\x9b\xec\xd7\x6f\x68\xdc\x6e\x32\x01\xc3\xee\x54\xb3\xa5\x87\xce\xaa\x27\x19\x91\x59\x74\x4d\xbe\xf0\x9a\x7f\x03\x8f\x38\xf9\xc2\x43\xb1\x69\x55\x2c\xcb\x2c\x52\x17\xd0\x8d\xc4\x33\x75\x31\xdd\x48\x6f\x5d\xf2\x36\x33\x59\x1f\x43\x3b\xd7\x3b\xeb\xca\xb5\x91\xcb\xb9\x8f\xb5\x73\xe9\x78\x57\xff\x0f\x7b\x7f\xd6\xde\xb6\x6e\x2d\x8c\xe3\xf7\xfa\x14\xb6\xfe\x3d\x7a\xc8\x63\x58\x95\x3c\x64\x90\x83\xf8\x78\x27\xce\xae\xdb\xc4\xd9\x8d\x9d\xdd\xd3\xaa\x7a\x72\x68\x09\xb2\xb8\x23\x91\x2a\x08\x39\xf1\x8e\xf5\x7e\xf6\xff\x83\x85\x85\x89\x04\x29\x65\xe8\xfb\x9e\x8b\xdf\x45\x1c\x91\xc4\xb8\x00\x2c\xac\x79\x05\x3d\x35\x44\x57\xeb\xb9\x48\x48\xa6\x04\xf4\x86\x59\x3d\xd4\xd0\xe8\x06\xa3\x8c\x70\xb0\x88\x40\x03\x80\x00\x8d\x8d\x32\x59\xf5\xa8\xac\x51\x75\x02\xe1\x64\x47\x27\xca\x1a\xec\x28\x64\x5e\xec\x2c\x92\x7b\xf8\x76\xc3\x76\x56\x05\x03\x4b\x4c\xc8\x44\x8c\x74\xf9\x34\xe7\x0b\x30\xb8\x34\x39\xb6\xa2\x44\x5d\x9d\x76\xb6\x8a\xaa\x3c\x13\x22\x3c\x5f\xa6\xd0\x3d\x53\xb7\x05\x88\xcd\x04\x12\x62\x20\x14\xe3\x24\x85\xb0\x50\xa6\xbd\x97\x56\x62\x56\x6e\x30\x62\x64\xb7\x0f\x61\xf9\xdc\x7d\x60\xa5\x78\xa5\xf2\x8b\x40\xf9\x6b\xbe\x2a\x20\x58\x6d\x4d\xf3\xbd\x70\xf1\x8d\xdd\x94\xea\xbd\xb5\xba\xf8\x5a\xa8\xb4\x24\x4c\x1e\x1e\x84\xe4\xb1\x4d\xfb\x60\x59\x2c\x4b\x43\xae\x70\xd0\xe9\x1b\xee\x5d\xef\x35\x1e\x00\x97\x69\xa0\x7e\x11\xca\xfb\x8c\x0d\x8f\x46\xa4\xa0\xc2\x28\x90\x25\x1b\xb2\x52\xbe\xe4\xa9\x23\x6d\x8c\x56\x60\x93\x23\xe9\x4f\xc5\x3b\x7c\xb1\x78\x69\x90\x92\xa5\x64\x61\x98\x60\xbc\x18\x64\xdd\xf3\x37\xbf\x5c\xff\xfd\xc3\xd9\xbb\x77\x67\x7f\x5f\xc7\x72\x02\x15\x42\x99\x93\x95\x22\x8f\x73\xb9\x36\x85\xa2\x92\x43\x0b\xfa\x0d\x13\x31\x27\x6b\x15\x38\x44\x0a\x67\xbe\xca\xf9\x75\x72\x1b\x71\x52\xc4\x64\x4e\x57\x5d\xa5\x17\x25\x63\xba\xea\x62\xea\xb9\x54\xa4\xac\x20\x53\xf9\xc2\x5c\x32\xce\x99\x9b\x3f\x3c\xe0\xaf\xf1\x86\xd3\x37\xd8\x79\x91\x64\xf2\x70\x4d\xd3\x6c\xb2\x63\xf8\x17\xab\x39\x9e\x05\x60\x3d\xfb\x56\x58\x63\xa0\x30\x6f\x35\x5b\xd3\xd3\x48\x45\x49\x30\x50\xb5\x9a\xa5\x68\x0e\x79\x8a\x1d\xce\xd0\x2e\xd2\x98\x4c\xc9\xcc\x59\xa6\x49\xa7\x33\x89\xe3\xc1\x76\x8d\xb9\xcd\x54\x1b\x71\x96\x1a\x95\x5d\x5b\xa0\x0d\xbb\xb4\x2d\xb1\x9d\x94\x4f\x28\xc9\x00\x87\x3d\x08\x62\x81\xa0\x50\x4f\x8f\x19\x87\x12\xa5\x44\x74\xd9\x5d\x32\xbf\x82\x1b\x51\x9e\xc1\x4c\xb6\xb0\xcc\x97\x9a\x25\x17\x8e\x70\xc8\x95\x09\x8c\xbb\x7f\x4f\xd9\x7c\xb2\x69\x32\x2d\xd1\xbd\x97\xe5\x20\x96\xb5\x53\x59\xe2\x95\x2b\xb9\x6e\xf5\xe8\xc2\xd6\x1c\x7a\x57\x9b\xd6\x4d\x35\xd5\x9c\x60\x99\xa8\x3c\x3d\xee\x5f\x92\x29\xcb\xc4\x55\x3a\x81\x0d\x51\xc1\x5e\x1c\x2f\x58\xb9\xc5\xe1\xd1\x1d\x3f\xd8\x7c\x6d\x9c\xfd\xae\x24\xbe\x23\xd3\xca\x05\xec\x74\xf0\xfe\xe3\x71\xa7\x23\xba\xb7\xab\x84\x4f\xd8\x44\xb5\x56\x86\x11\x9c\x88\x2d\x2f\x19\xc0\x0e\x47\x0a\x3b\x1c\x97\xd0\x5c\x1e\x03\x82\x70\xd1\xde\x9c\x16\x9d\x4e\x21\xd1\x40\xa7\xb3\x6a\x99\xf1\x69\x69\xa2\xe4\x08\xe6\x36\x1e\x9f\x72\x6b\x5b\x3a\x12\x01\x25\xa4\x58\x05\x75\x97\x15\xc2\xe1\x6b\xf1\xbd\x9c\x56\x6c\x24\x21\xab\x8a\xb6\xb3\xd2\xc1\xa4\x54\xc0\x15\xc7\x16\x3d\xaf\xa9\xca\xde\x89\xbf\xf8\x3d\xb9\x8a\xd1\x50\x47\xee\xf7\x6a\x3f\xc0\x60\x27\xb4\x77\x92\x3c\xd3\x52\xcd\x93\x64\x6f\x2f\xce\xed\x3e\x1a\x26\x23\x27\x30\xa6\xa2\xe0\x52\x49\x50\x55\x35\xd3\x1f\x00\xfa\xe7\xf5\x34\x3e\x6c\x51\xe0\x0b\x93\x34\x33\xce\x4e\x78\x87\xff\xec\xee\x2d\x43\xf0\x27\x2b\x91\xe6\xab\xc2\xff\xc8\x2d\xe9\x5f\x21\xf8\x83\x36\xfd\x85\x98\x44\xb5\x21\xb0\x21\xa4\x11\xf2\xf9\x0d\x05\x0b\xa1\xf7\xfd\x6e\xef\x2b\xcb\xf7\xe3\xb5\x0a\x3c\x51\x88\xb2\xc0\x41\xbb\xd0\x75\x6f\x56\xe9\x7c\x62\xcc\xd7\x2d\x47\x73\xcb\x04\xce\x3a\xd4\xcb\x69\x3d\x08\x07\xf5\x00\x44\xc9\xca\xe7\xad\x56\x4a\x59\x0e\x20\x37\x86\xdc\x1c\xae\x0e\x5e\xdd\x9c\x72\x2d\x05\x03\x53\xfc\xf4\x77\x89\x7c\x1b\xe4\x2e\xb6\x5c\xc5\x3d\xa1\x10\x93\xd7\xe9\x0d\x3d\x37\x1b\x10\x8d\x3d\x4b\x38\x29\x0c\x45\x67\xc4\x5a\x22\xe7\x20\x44\xe1\x36\x53\xb2\xd0\xf6\x24\x5a\x6e\x33\x4a\xcc\xe7\xb6\xe2\xc8\xa7\x42\x12\x24\xe3\xc0\xcb\xb4\xd3\x13\x18\x77\xbc\xca\xb9\xf6\x27\x51\x27\xa8\x26\x5f\x3b\xba\x0b\x21\xa0\xbb\x33\x96\x2c\x49\x46\x79\x77\x91\xcc\xe7\xf9\x38\xd2\x81\x09\x44\x20\x60\x9e\x18\xa6\xc1\x8c\xc8\xf9\xa9\x72\x71\xfb\x65\x9e\x8c\xd9\x2c\x97\xa3\x89\xf2\x78\x80\x7e\x6f\xb9\x91\xd6\xf3\xae\x24\x17\x8a\xd9\x1b\xd5\x55\x46\x58\x4c\x32\x74\x24\x29\x53\x68\x41\xf3\x01\x6f\x4f\x74\xe7\x79\xfe\x71\xb5\x0c\x11\x23\x6e\xa4\x5d\x24\xd6\xf8\xe9\x17\x45\xea\x29\x6b\x55\x97\xd6\xc3\x37\x06\xd7\xc0\xf3\x7a\xe0\x76\x66\x46\x86\xb6\x72\x3c\x0e\x0d\x5b\x7d\xac\x73\xd6\xd2\xe3\x26\x5c\x19\x35\xbd\x70\x86\xa0\xe2\xeb\x00\x35\x68\x60\x85\x94\xb3\x6a\xfd\xe1\x21\xca\x54\x35\xc4\xb4\x2c\x8e\x89\x9e\x11\xf3\xa7\xc3\xbd\xb9\xac\x9d\x91\x6a\x3e\xb2\x61\x73\x97\xa0\x6b\x38\x4f\xbd\xbb\xb5\xcd\x20\xf0\x8f\xdb\xb7\xa3\xf5\x02\x64\x83\x5c\x48\x9b\x80\x15\xcd\x72\x08\xdc\xbc\xa6\xb4\x2b\x1a\xaa\x18\x2b\x7d\x26\x65\x8b\x26\xc7\x30\xe9\xea\x47\xca\xeb\x5a\x9a\xc5\x57\xc6\xb5\xf2\x58\x29\xd1\x4a\xa1\x1d\xc5\x48\x4a\x33\xe3\xdf\x30\x45\x4f\x46\x30\x21\x02\x7c\xa1\x0c\xf5\xa8\x0a\x81\x7d\x8a\xf9\xaa\xa6\xf1\x20\xdd\xeb\xe3\x75\x60\x25\x35\xf4\xcb\x2c\x29\xce\xef\x92\xf9\x80\x77\xf1\x17\xc1\xde\xe4\xaa\xff\x1b\x64\x57\x8e\xa8\x4a\x03\x85\x08\x57\x72\x08\x52\x2a\x0f\x1f\xb5\xb8\xe4\xf5\xb9\x78\x9d\xdc\x30\x45\x6f\x76\xa7\x0c\xf2\xe5\x3b\x94\x42\x3f\x56\xf1\x68\xcd\x51\xbe\x56\x76\xf3\x25\x72\x82\xf0\xee\xb2\xaa\xc8\x96\xaf\x15\x81\x2f\xf7\x5a\x32\xa9\xb6\xec\xaa\xac\x51\x67\x5c\x3b\x8a\x5a\xd2\x8c\x03\x69\x86\xcc\xb6\x55\x20\xf2\x4d\xb4\x16\xe1\x48\xb5\x07\x57\x5a\x52\xf2\x72\x30\x9e\x24\x49\x4e\xc4\xd3\x70\xf3\x80\xfe\x2e\x78\xf2\x24\x41\xf2\x21\x12\xa8\x6e\x1a\xb8\xbc\x63\x40\xa4\x58\xcb\x4c\x92\xb2\xa0\x71\xc0\xd6\xf1\x1a\x82\xe3\x37\x80\xce\xb3\x0c\xb8\x7c\xa9\x52\xb1\x78\x82\x35\x3b\x31\xfd\x3d\xbc\x60\x85\xc8\x97\x7a\xc3\xa0\x2a\x8e\x1b\xb2\x30\x2c\xf4\xcc\x8d\x03\x61\xc9\xa4\xf2\x0a\x1a\x78\xbb\xd1\x3b\x1e\x0d\x24\x43\xc7\x46\x09\xab\xc2\x17\x92\xa3\x2e\x4f\xa9\x50\x52\x09\x81\x62\x3c\xa7\xe1\x96\x3d\x67\xcc\x18\x7f\xd7\x4b\x28\xf0\x96\x61\x92\x4f\x29\x7c\xb9\xc4\x9c\x16\xae\x5c\x62\x7e\x1a\x25\xb5\x3c\x39\x8b\x49\x52\xc3\xe0\xaf\x88\xd2\x4f\x02\xad\xb1\xdb\x07\x72\x23\x1e\x6c\xd7\x96\xdb\x4a\xa5\x8d\x35\x92\x7e\x67\xcd\x4a\x35\xd8\x07\x21\xad\x9a\x80\x88\x7d\x9b\xf4\x6a\x50\x3d\xa4\x59\x53\xed\x1a\x57\x56\xd5\x5a\xa8\x20\xf6\xa3\x30\xec\x97\x44\x0c\x18\x51\xaf\x06\x62\x1d\x87\x7c\xf1\xdd\x80\x51\x6e\x0b\xda\xff\x5a\xf5\x8c\x51\xf2\x0c\xf5\xe4\x64\xf1\x13\xc3\x6c\x04\xae\x31\x89\x20\x09\xe5\xc3\x14\x5b\x18\xed\xe7\x2d\xa6\xba\x83\x0c\xfc\x1a\x82\x1f\xeb\xf7\xac\x1a\xc5\x37\x9a\xf6\xa1\xe9\xa8\x0a\x43\xa0\x80\x8e\x3e\x29\xc0\xd5\x26\x01\x7f\xf9\x48\xa2\x29\x67\x96\xca\x49\x57\x85\x4e\x82\xdf\xa4\x74\x53\xae\xf1\x1a\x08\x7a\x19\x21\xdb\x64\xd3\x1b\x45\x59\xac\xa2\x95\x2b\xbe\xaf\xd5\xb0\xf0\x72\xb9\xbc\x45\x41\xfb\xf9\x32\x2c\xd0\x9c\xde\x5a\xe6\x3b\xd3\xc4\xff\x23\x46\x7a\x15\x1b\xfd\x70\x31\xe2\x02\x30\xf6\xcd\xee\xb7\xaa\x43\x5c\x7f\x29\x6b\x85\xff\xad\x2d\x38\x0f\x87\xa3\x18\x28\x3c\x09\x98\x37\xc9\x78\x96\x96\x32\x21\x7e\x17\x7c\xfa\xbd\x83\xa3\xed\x40\x24\x4b\x7e\x03\x94\x2a\xd5\xbe\x05\x50\xcd\x8d\x04\x60\x55\xe6\x8f\x4a\xc4\xa5\x85\x64\x74\x70\x14\xfb\x5b\x5b\xef\x52\x73\x84\xbc\x03\x84\x01\x28\x34\xa1\xcc\xf8\x1d\xab\x6a\xeb\x03\x0b\xbd\xdf\x77\xab\xfc\x2d\x15\x33\x0c\x30\x12\xc2\x5c\xc1\xfa\x96\x3a\x97\x2d\x84\x36\x42\x03\xec\xb0\x7b\x90\x99\x94\xd9\x65\xc0\x8f\x8f\x9e\x90\x12\x55\x83\xdc\x38\x88\x4e\x39\x5b\x26\x9c\x4d\xec\xb5\xb0\xdb\x97\xd7\xc1\x6e\x4f\x31\xb0\x01\x9f\x61\xb7\xed\x83\x27\x4e\xb1\xab\x64\xca\x1a\x8a\x3e\x75\x8a\xbe\x44\x3f\xf5\x57\x3c\xb9\x2d\x3b\x93\xda\x2a\x87\xee\x20\x2e\x3d\x2f\x10\xaf\x58\xdf\x29\x76\x5d\x0a\x5b\xec\x14\x3b\x80\x62\x10\xa5\xda\x12\xab\x3c\xc9\x0a\xcc\x22\x1c\xac\xf5\xb4\xef\x70\xe5\x5f\x51\x4d\x75\x56\xb6\x0a\x0b\x17\x3e\x3a\x52\x85\x7d\x03\xb0\x9a\xb2\xc7\xa6\xe1\x1a\x97\x50\xaf\x74\x5f\xb7\xbc\x4d\x61\x3b\xe6\x77\x79\x2e\x4a\x83\xb0\x7b\x58\x2d\x67\x8f\x30\x22\x4e\xfb\x83\x9e\xa9\xf4\x6b\xca\xc5\x2a\x99\x87\xea\x7a\x35\xfb\x84\x99\x3a\xe0\xed\xdc\x30\xdd\x83\x03\x3d\x81\xa6\x42\x87\xaa\x90\xda\xcb\x67\xbc\x1c\x0e\xca\x14\x7c\xfc\x14\xbb\x46\xfe\x55\x2f\x67\x90\x3c\xec\x3d\x88\x96\xad\xfa\xa4\x4f\x38\x56\xd6\x3e\x55\x0e\xa5\xa5\x73\x71\xd7\xf4\xfb\xe4\xc0\x4c\x39\xc4\xa1\x84\x67\xf5\x44\xcd\xca\x65\xad\xae\xd8\x7c\x5a\xd7\xc5\x11\x76\x11\x60\xc5\xea\xaa\x1c\x07\xaa\xa0\x63\x4d\x4d\x8d\x47\x58\x03\x02\x56\xbc\xca\xb9\xe4\x5b\xeb\xca\x3e\xc6\xb2\x25\xba\xb3\xb1\x83\xa7\x3d\xac\x54\x66\xcc\xea\xca\x1f\xda\xf2\x9e\x63\x50\x4d\xf1\x23\x67\xeb\x81\x1a\x28\x08\x7a\x7d\x81\x1c\x3f\xd6\x9b\x6f\x8b\xb2\x4f\x4c\xc3\x57\x8b\x64\x3e\xdf\xa2\xc6\x53\xb3\xb5\xb7\xab\xf0\xa8\xe7\xc0\x13\x0f\x5b\x63\x85\xa3\xa7\x4e\x05\x50\x70\x85\x77\xda\xb1\xc2\x12\xc6\x88\xbe\xe6\x1e\x39\x74\x5a\xab\xdc\x1b\x15\xf7\xbd\x1a\xa7\xf4\xc3\x20\x99\x7b\xe8\x92\xb9\x87\xca\x29\x1d\x0d\x29\xeb\xd0\xb5\xe6\x39\x02\x86\xb7\xea\xd2\xf7\x8f\xb8\xcf\xd9\x83\xf0\xb2\xd3\x31\x8d\x34\x1c\xe9\xb2\x48\x00\xca\x97\x0f\x65\xb0\x50\x08\x27\x06\x0b\x16\x4c\xfc\x9a\xf0\x14\xdc\x05\x9c\x77\xe6\x84\x55\xa4\x12\x68\x56\x57\x30\x21\x8f\xf7\x44\x57\x2e\x2a\xad\xdb\x82\x20\x78\xa8\x16\x80\x71\xe6\xcb\xc8\x23\x0a\x4a\x67\x35\x58\xa9\x59\x79\x64\x1a\xd6\x86\xf8\xfa\xd9\x5b\xa2\x8a\xc5\xb3\x21\xd7\x6a\xee\xda\xa8\x51\xd4\xef\x53\x82\x2e\xd1\xe7\x6a\x2b\x49\x59\x65\x50\x27\xeb\x2f\x49\x10\x7d\xad\xa2\x95\xf4\x9b\xe6\xca\x6c\xad\xc7\xd4\xa2\xec\x84\xd9\xe0\x59\xbf\xe4\xaa\x9a\x23\x61\xab\x9c\x3b\x87\x61\xc3\x30\x74\xec\xd3\xce\x19\x56\xd3\x62\x96\xe6\x5a\x90\xec\x50\xf1\xa7\x2e\x11\x69\x2f\xe0\x15\xe7\x69\xf0\x1c\x7b\x17\xe7\x51\x99\x9c\x31\x15\x2e\x40\x8a\x3b\xae\xb9\x9a\x1f\x2b\xa4\x51\x15\xbf\xd5\xd0\x68\xaa\x1f\x57\xa4\x56\x53\x50\xa1\xdb\xba\x80\x24\x4e\xc1\xa7\xfa\xe2\xd5\x9e\x30\x35\xd8\xed\x11\x94\x33\x4e\x2d\xd5\x85\x44\xf2\x3c\x7a\x74\xe4\xb1\xd3\x28\x08\x88\x70\x47\x17\x78\xc3\x68\x8f\x94\x9a\xde\x14\x15\x87\xee\x31\x0d\x7d\x3d\xde\xa6\xaf\x0a\x1e\xa8\xa3\xbc\x6c\x79\x85\x0e\x6a\xca\x1d\xda\x72\xba\xc9\x9a\x92\x47\xa5\x16\x6b\x8a\x39\x84\xc6\x86\x06\x1f\xd9\x92\x4d\x0d\x3e\x21\x26\x39\x4f\x53\x31\x43\xee\x41\x0e\x80\x9a\x42\x7d\x4d\x8f\xce\xf3\x64\x52\x57\x46\x77\x08\xe2\xd3\xba\x42\xba\xbb\xc9\x6a\xf9\xc3\x5c\x41\x5d\xbc\xba\xfc\x76\x97\xd0\x5e\xab\xcc\x25\x47\xfd\x47\x44\xeb\x85\x96\xf9\x8f\x1b\x70\x3f\xd0\xd3\x63\x43\x39\x2b\x2f\xb2\xda\x0d\x6f\x58\xf7\xe3\x6d\xf6\x7d\x55\xa1\x10\x3e\x6d\xfd\x23\xec\x3d\x9d\xde\xbf\x3f\x3c\xa8\x29\x74\x6c\x11\x40\xdd\xe6\xec\x3b\x87\xbb\xe6\x60\x1f\x38\x13\x6d\x24\xce\x0e\xd4\xa0\x7e\x5b\x2d\x02\x51\x17\x4b\xe0\x38\x3e\xd8\x06\x1c\xb2\xa9\x8b\x00\x7f\xa0\x91\xc9\xf1\xe1\xb6\xad\x28\x4d\x40\x43\x4b\x5b\xa1\x40\xd9\xd2\xf9\xbf\x42\x1c\x64\x55\x56\x12\x1d\x4b\x1c\xd1\xd8\xa8\xda\xaa\x49\x51\x30\x2e\xae\xea\x68\xe5\xe8\xf8\x91\xb9\xa9\xce\x17\x4b\x71\xef\x73\x83\xde\xd5\xa4\xa8\x7b\x25\x63\xab\xd5\x58\x93\x8c\x0e\x47\x24\xa5\xbd\x96\x28\xa9\x6d\x50\xc1\xf7\x65\x21\x2f\x57\x50\xe3\xce\xe7\x37\x09\x04\xc3\x81\x19\x0c\xda\x2f\x5e\x9f\xbd\xbf\x3a\x6f\xef\xa5\x7b\x7b\x6b\x63\x13\x02\x1b\x2c\xd2\x0b\x6a\xa7\x63\x49\x51\xb5\x4b\x23\x63\x43\xe2\x6a\xe0\x32\xd4\x45\x82\xd8\xa9\x21\x2d\xe9\x0e\x47\xf0\x47\xac\x0b\x03\x84\xe4\x56\x37\x6c\x0e\xe1\xee\x8d\x85\x77\x66\xdc\x54\x4e\xf2\xe7\xb4\x77\x92\xef\xef\x6b\x97\x9d\x6c\x98\x63\xb8\x4d\x45\xba\x24\x58\xdf\xd2\x8c\x07\x31\x49\xba\x7a\xd6\x51\x4c\x24\x5e\xc8\x91\xe2\x54\x6e\x97\xa0\x29\x5a\x3b\x8d\xa0\xee\x08\x27\x66\x15\x45\x08\x9a\xcf\x20\x42\x06\xea\x66\x12\x30\x6b\xb1\xf2\x7b\x94\x82\x2b\xf1\x28\x92\x69\x99\x90\xc4\xe2\x3d\xd0\x91\xa6\x16\x8f\xbf\xf0\xa8\xef\x1a\x48\xb1\xd3\x48\x94\xc0\xee\x88\xb9\xa2\x38\x1e\xb8\xa2\x24\xb0\xfd\xe1\x51\xcf\x6d\x21\x4c\x38\x29\xeb\xc2\x06\x02\x29\xb2\x46\x96\x3f\x25\xdc\xe1\x4c\x54\x17\x87\x7e\x17\xc1\x11\x6a\x09\x1b\x56\x39\xda\xa2\x4a\x59\xd2\x86\x55\x8f\xb7\xa8\x7a\x99\x4f\x30\x01\x03\xde\x11\x10\xe3\xb7\x59\x40\xf0\xd4\x63\xfa\xbd\x79\x56\x6f\x18\xbb\x92\x55\xad\xa4\xe1\x33\x7c\x7f\xe4\x02\xfc\x91\xd5\x8e\x2a\xab\x1f\x5d\xbe\xcb\xe7\x3b\x5c\x64\x60\x5e\x5a\x69\x51\xb0\x95\x4d\xf2\x51\x6f\x4f\x05\x44\x28\xe5\x46\x59\x09\x82\x01\xb3\xbe\x9a\x59\x01\x3c\x8b\x0d\x14\xfa\xa3\xa7\x9a\xd2\xd1\xc7\xa0\x06\xeb\x59\x79\x1d\x50\x4e\x4d\xa2\xc6\xc7\xcd\xe6\x1e\xcb\xbc\xd9\xd0\x43\xcb\xab\x31\xf0\xf7\x7a\x4d\x54\x3d\xe4\x7e\xb6\xaa\x5b\xa4\xbf\x33\x53\x51\x5d\x0c\x1b\x5c\x8e\x2c\xef\x33\x56\x99\x0d\x5d\xf3\x92\x4a\x34\x9e\x8f\xa0\xaf\xba\xf6\x55\x85\x5a\x5d\x27\x22\x61\xfc\x53\x75\xc0\xd2\x94\x7a\x51\x5f\x49\x76\x9a\x69\xe5\x3c\x1a\x8b\x28\x8c\x3a\xe8\x99\x10\xa6\x65\x85\x3c\xcd\x48\x6a\x03\x98\x80\x46\xed\xad\xca\xf2\xab\x8e\xe1\xf5\x2c\x2d\x2e\x8c\x0d\xdc\x24\x8e\xd2\x38\x26\xca\x59\x9a\x15\x45\x9a\x67\xc6\x14\xc6\xb7\x05\x31\x86\x1f\xda\xd8\x63\x82\x0e\x3a\x5e\x24\x10\xe3\xde\x57\xe3\xe0\x62\x8c\x43\x32\xd7\x26\x3f\xa5\xa2\x32\x8f\x6e\x52\x68\x23\x70\xe5\x97\x48\x12\xca\x7d\x1b\xa3\x28\x27\x59\xdc\x42\xe5\x79\x72\x2a\xba\x33\xf5\x3a\x71\x9c\x6c\x07\xe9\xa9\xb5\x71\x4a\xee\x6f\xd8\xeb\x7c\x9c\xcc\xa3\x1c\x2c\xd6\x6f\x4b\xa2\x11\xf9\xc2\x64\x6b\xca\x63\xdf\xf7\x40\x12\xf9\xa4\xce\x70\x0e\xad\x8c\x7b\x27\x99\xf5\x8a\xcf\xf6\xf6\x62\x6d\x6b\x3e\xcc\x46\x71\xcb\xa6\x3c\xd3\xaa\x36\xa7\x03\x35\xa5\xaf\x04\x1b\x53\xce\xf8\x60\xdc\x9c\x28\x0f\x9a\x74\xea\x3a\x44\xef\x52\x9a\x9a\x78\x7c\x25\xe8\xa5\x12\x7a\xd6\x7b\xa1\xd8\xe8\xb3\x20\x69\x0d\xc7\x65\x48\x41\x1b\x5c\x80\x10\xf0\x05\x01\x2d\xb5\x89\x26\xbe\xa2\xf9\xb0\x37\x22\x73\x9a\x5b\x3f\x69\x01\x27\xe7\xde\xb7\x37\x48\x40\x25\xe4\x40\xe3\x67\xd6\xe0\xe4\x61\xcc\xe5\xdd\xf5\xe3\x96\xf2\x08\xe4\x4f\xf2\x97\x36\x1b\xa6\x9e\x99\xbc\xdd\x18\xf5\x86\xf2\xe9\x34\x6a\xda\xa4\xb1\x09\x9f\xde\x1b\xb5\x38\xe5\x66\xc2\x24\xb4\xfd\x32\x74\xbf\x2f\x6f\xc1\xd2\x14\x78\xfd\x14\x78\x69\x0a\xef\x33\x95\x1f\xa6\x6c\x67\xef\xa9\xc7\x03\xc1\x3e\x14\xcf\xe5\x6d\x44\xe4\x7a\x2b\x16\xdd\x9a\x1d\xae\x38\xd0\xe9\x1a\x2a\x62\x41\x6d\x3d\x0c\x68\x60\x6a\xaf\x21\x8a\x81\x31\xd4\x53\x38\x40\xfd\x26\xa9\x36\xc6\x15\xf8\x83\xa4\x6b\x40\x62\xa5\xa0\xcc\x42\x07\x65\xce\xa9\xa8\x1a\x05\xa8\x18\x26\x1e\xfa\xf5\x1d\x9b\x59\x7c\x8a\xb4\x61\x19\xfb\xb9\x56\xb7\x12\xcf\x0e\xcc\xcd\x15\x00\xa2\xa4\x4a\x54\xa8\x93\x92\x7a\xa8\x64\x9f\x6a\xe6\xd7\x2d\x9c\x48\x86\x2c\x76\x34\x41\x8f\x1f\x11\x0e\xcc\x88\x6a\x0f\xe4\xea\xd6\xca\x3d\x48\x17\x5d\x59\xc3\xbf\x88\x75\x3a\xcc\xb5\x04\x74\x68\x14\x7b\x21\x47\xe5\xb7\x38\x01\xff\x60\x56\x84\x96\xc6\xd6\x57\x53\xc4\xde\x49\xb0\x5e\x38\x41\x2a\x09\xc1\x09\x04\x91\xc0\xa8\x0a\xe0\x40\x63\xa9\xbb\x9e\x21\xd4\x97\x3c\x72\x47\x1e\x3d\xee\x93\x32\xfc\xdc\x78\x81\x79\x5c\x23\x12\xae\x10\x7e\x77\x3d\x03\x59\x07\x6a\x1e\x58\xd3\x69\xc9\x38\xb7\xa6\x53\x6f\xd5\x8e\x9e\x40\xe8\x2e\x38\xd2\x8a\xfc\xc3\x3d\xa2\x82\xe9\xac\x4d\x24\x9a\x7a\xe8\x02\xea\x44\x4c\x0d\xb7\xff\xaa\x2a\x23\x79\x14\x94\x91\x3c\x72\x65\x24\x8f\x30\xe6\xee\xbc\x5a\xfb\xb1\x53\xec\xb1\x49\xdc\xf5\x6f\xa5\x90\x31\x24\xde\xee\x6e\x94\x3c\x3c\xac\x1e\x1e\x44\x4c\xa6\x14\x22\x39\xb3\x87\x07\xe6\x52\xc9\x0f\x0f\xbb\xd1\x6e\xf6\xf0\x20\xbf\x65\xc3\xde\x48\xdf\x90\x64\x46\xbf\x2c\x92\x34\x1b\x24\x44\x82\x77\xb0\x22\x60\x28\x39\x10\xeb\x56\x65\x5f\x49\x28\xce\x48\xfe\x9d\x24\xb8\xa6\x27\xc8\x98\x4c\x5d\x32\x7c\x7e\x1a\x55\xcf\xdb\xdc\x3f\x6c\xaa\x00\x92\xe0\x73\xf9\xec\xd9\xef\x49\xfe\xaf\xd8\x82\x9a\x2f\xbe\x83\x9a\xcf\xc3\x66\x7d\xe5\xfd\x06\xb1\x83\xc9\x4a\xed\xb8\xd0\x66\x09\x6e\xb5\xc7\x23\x7f\x0f\x29\xf3\x78\x89\xa4\x2d\x14\xe4\x4d\x39\xd6\x66\xc7\xa5\x55\x8e\x43\x7a\xa0\x88\xd9\xf1\x90\x39\x11\xb1\x8a\x19\xf1\x23\x37\x26\xfa\x54\x8e\x35\x19\xdd\x62\xc8\x75\xc8\x41\xe9\x18\xdc\x8d\x38\x4b\x8e\x0f\x66\x5b\x68\x64\xd3\xa4\x3b\x64\xda\x44\x1f\xf0\x2d\x4a\x2d\x02\xba\x44\x3d\x0c\xcd\xc5\x63\xc9\x66\xed\x22\x6e\xd0\x95\xad\xae\x66\x11\x44\x81\x95\x49\x6d\xaf\x8c\x44\xb7\x51\x9d\x17\x65\x93\x56\x72\x82\x12\x2b\x05\xe2\x41\x8f\xa4\xea\xda\x1f\xec\xf6\x1d\xa9\xd0\x92\xf6\x4e\x96\xcf\x66\x9a\xb0\x59\x6a\x23\xc8\x05\x9d\x0d\x97\x26\xe2\xf1\xa2\x3b\x9e\x25\xfc\x4c\x44\xbd\x18\xc3\x1e\x77\xda\x03\x59\xec\x0e\xfd\x62\xa7\x51\xbb\x83\x16\x60\x6d\x4a\xe9\x22\xbe\xa3\xab\x96\x8a\x68\x24\x3f\xa5\xd9\x1d\xe3\x05\xd3\x9f\xe6\x26\x0a\xc9\x62\x97\xd2\x69\x5c\x17\xe2\xb6\x75\x47\xf9\xfa\xee\xd4\x6e\x07\xff\xfa\x8d\xee\x2a\xb3\x5c\xee\xf5\xed\x3c\x7b\x6b\x70\x84\xad\xa9\xac\x62\xfe\x6c\xaa\xef\x46\xbe\xfd\xaf\xf6\x20\x9d\x46\xbb\x49\xac\xde\xa9\xe0\x3e\x89\xa4\xa8\x6f\x69\x22\x09\xe1\x1b\xba\x68\xc9\xed\x7b\x43\x17\x86\xde\x8c\x31\xd8\xc5\xbd\xf1\x25\xb8\x89\x4f\x20\x09\xd3\x07\x13\x21\x5f\x5e\xb0\xb7\xc3\x0f\xa3\xe6\xe1\xf4\xd7\x71\xbc\x5e\x9b\xe9\x58\x2d\xb3\x5e\xbd\xbd\x3e\xd9\xdd\x8d\x56\x0f\x0f\xf3\x87\x07\x1e\xdb\x35\xfe\x44\x27\x56\xf2\xf7\xe9\x39\xed\x9d\x7c\xd2\x92\xbf\x73\x3a\x19\x7e\x1a\x91\xcf\xf4\x1c\x8f\x62\xeb\xbc\x8b\x1d\x2a\x4a\x4c\xeb\x7a\xa2\xcf\x48\x72\xb9\xea\xeb\xcf\x28\xee\x73\x31\x5c\x24\x6a\x8f\xd1\x77\x6a\x91\xc3\x87\xf8\xeb\xb5\xca\xf5\xc8\x5a\x62\xeb\xb2\x17\x7c\x8d\x5f\x98\x0d\x86\x43\x8a\xef\x21\x0c\x5a\x88\x04\x36\x46\x10\x4c\x0c\x1d\x96\x58\x2f\xe9\x72\x10\xc0\x24\x14\xf4\x2f\xd1\x97\x5e\x59\x56\x19\x25\xf5\x64\xa3\xac\xb6\x41\xbe\x59\x35\x32\xdf\xed\x39\xb1\xf0\x0b\x59\xc2\x0b\xbf\xb7\x5e\xc3\x7d\x78\xef\xdb\xa6\x54\xdc\x77\x90\x26\x35\x32\x03\xb2\xdb\xb7\x86\x18\x9a\x3e\xf6\x9c\x0e\xd5\x4b\x8f\x8e\x80\xc3\xde\x60\x8a\xa0\xdd\xc2\x49\xee\x3b\x32\xd7\x99\xc0\x79\x9b\xb2\x42\x11\x1b\xd5\x4d\xcf\xb8\x82\xbe\x4e\x6f\xac\xbf\x66\x24\xaa\x24\x71\x99\x34\xa8\x72\x14\xdf\x67\x3b\x0e\x1e\x3e\x0e\x1d\xd0\xb5\x4e\x24\xe0\xee\x84\x71\xf8\x73\xfa\x26\x11\xb3\xee\x22\xcd\x40\xfe\x05\x7c\x75\x79\xd2\xb9\x03\x08\x6b\xc3\x17\x59\x0c\xa3\xdc\x86\x73\xf0\x17\x0e\x51\x03\xd3\x25\x11\xfb\x49\xc0\x00\x86\x0f\x93\x51\xbc\xae\x70\x3f\x9b\x56\x17\x0d\x6d\xe4\xd0\x2c\x1e\x68\x58\xe2\xa2\x3e\xef\x63\x88\x0f\x44\xfe\x4b\x85\x13\x0b\xfb\x15\x0c\x47\x3a\x45\x6a\x20\x6b\x21\x1b\xf2\x51\x0b\xb2\xa6\x86\x9b\xcf\xe2\x75\xb8\x7b\x08\x9b\x1f\x29\x76\x13\x49\xa3\x2d\x06\x9d\x20\xdb\x0a\xac\x94\xe6\x74\xaa\x3b\x49\x0e\x58\x5f\xe8\x3a\x36\x20\xde\xe6\x98\x55\x71\xc0\xfe\xa3\x4f\x69\xef\x94\x3d\xdf\xef\x9f\x0a\xca\x06\x51\x85\xe7\x52\x25\x55\x86\xd8\xa3\x78\x43\x81\x7e\x39\x4f\x41\x9a\xdd\xb6\x07\x3a\xfb\x92\x06\x35\xe1\xf4\xa0\x9c\x11\x80\x25\x99\x2c\xd8\x7b\x60\x84\xd3\x43\x2f\x89\x01\x04\x7e\x97\x1f\x0f\xca\x9f\x56\x5a\xe6\x22\xbf\x1e\x3a\x5f\xbd\x50\xfa\xae\x40\xed\x22\xbb\x4b\xe6\xe9\x64\xc7\x40\x6d\x67\x99\x14\x05\x9b\x40\xde\x43\x57\xb6\xd0\x56\x3e\xcc\x18\x05\xbb\x48\x7f\x67\x17\x8b\x05\x9b\xa4\x89\x60\x91\x78\xf6\xec\xf0\x81\x4b\x3a\xd9\x32\xa0\xfd\x43\xc8\x71\x92\xfb\x45\xc3\x4e\x98\xec\x39\xb5\x09\x2c\x1f\x1e\xd8\xb3\xde\x69\x18\xa6\x22\x96\x3d\x1d\x0f\x98\xe6\x99\xab\xa2\x8f\x80\x44\xc2\xb0\xbe\x06\x61\x05\x3c\xf3\x74\x8b\x01\x7f\xa2\x3a\xeb\xda\x83\xb2\x0c\x60\xa6\x5d\xa1\xa0\xb5\x9a\x3b\xa7\xae\xb5\xe3\x46\x89\x02\xb6\x19\x0c\x0a\x59\x63\x8b\xe8\xde\x28\xe1\xc0\x32\x4c\x63\x19\x7d\xe3\xa5\x34\xd3\x41\x66\x72\x9a\xf9\xce\x5c\x09\xcd\x02\x41\x66\x76\x29\x4d\x3b\x1d\xfc\x95\x77\x3a\x09\xc6\x11\xd5\x78\xa2\xa0\xbd\x93\xc2\xba\x18\x15\x7b\xf4\x20\x16\xc3\x62\x34\xec\x8d\x68\xfb\xbf\xda\x7b\xf8\xbb\x62\x44\x11\x72\xeb\x4a\x3d\x0c\x58\xf6\x12\x33\xfc\x90\x8a\x5b\x4e\x76\xfb\x84\x77\x3a\x1c\x82\x5a\xea\xe8\x78\xf6\xc6\x41\x21\x69\x33\xe8\x6a\x56\x42\xa7\x0f\x0a\x0b\xcf\x44\x4c\xf2\xf2\xf7\x04\x13\xaa\x3b\xe7\xe3\xe9\xb1\x71\x9c\xcf\xab\xf2\xd8\x3a\x03\x9f\x47\xc4\xc7\x1c\x50\x5b\xc7\x4b\xa9\x35\x5e\x7f\xfa\xb8\xb2\xb7\x3c\x69\x5f\xf9\xab\x46\xc2\xd0\xba\xf0\x3c\x0c\x7c\x03\xab\x47\xe1\x76\xf5\xc0\x42\x01\x42\xea\x6c\xb0\x0e\x9b\x9b\x5a\x84\xbc\xc1\x4d\x5c\x86\xed\x84\x7b\xbb\xae\x3c\x28\x3a\xea\xd5\x1f\xdf\xd0\x0d\x8a\xc1\xda\xea\x3c\xe6\x03\x03\x77\x56\xfb\xe0\x31\x8a\x50\x9d\x10\xfb\x5b\xee\x3d\x73\x49\xa4\x3a\x0f\x5a\xe5\xa3\x88\xb5\xa3\x9c\x82\xe5\x23\x92\x11\x90\x69\xf1\xd3\xbe\x64\x7b\xf5\xf8\x6d\x54\xb0\x7f\x5f\xdf\x8f\x43\x7d\xdb\x10\x6a\x3f\xb6\xe3\xea\x49\x2b\x4c\xce\x1a\x67\x4c\xc7\x20\xcc\x54\x43\xf1\x65\xff\xd5\xdd\xb8\x15\x85\xad\x6e\x38\x25\xdc\x72\x74\x20\x75\xa8\x3d\x74\x68\x67\x61\xd4\xfd\xcd\xdb\xb9\x22\x90\xae\xdf\xcd\xcd\xa2\xe8\x72\x10\xe7\x3a\x53\xc8\x43\x27\x16\xac\xbd\xf2\x34\x17\x17\x38\x26\xac\x2b\x19\x3b\xe5\x76\x9f\x4f\xee\xd1\xa6\xc5\x33\xf7\xa9\x13\x10\xe9\x60\xec\xe7\x97\x2f\x2f\x2e\x2f\xae\x2f\xce\x5e\xb7\x75\x82\x51\x11\xe1\x52\x2b\x43\xa3\x2c\x26\x3c\x72\x0d\xab\xdc\x60\xe8\xc8\xba\xa4\xc2\x6f\xb9\x54\xde\xed\x24\x0c\x3a\xd7\x94\xc7\x9f\x76\xc9\x1e\xcd\xe2\x07\x98\x36\xcc\x3f\xa3\xac\xab\x62\x7b\x41\x8e\x33\x8c\xc7\x5f\xc3\x05\xf3\x0a\x83\x2b\x42\x0c\x2e\x4c\xa1\x12\xfb\x5d\x94\x62\xbf\xa7\x9d\x4e\x1a\x69\x1e\xd4\x89\xdb\x16\x22\xb0\xd1\x3b\xdf\x25\x21\xb4\xa7\x3e\xab\xba\xdc\xeb\xad\xe7\xbd\x55\xfd\x38\x11\xbc\xc2\x16\x31\x55\x0e\x1c\xba\xb1\x5a\x7c\x14\xdc\x9e\x6a\x5e\x4e\xc5\x40\xd1\x28\xcd\xc4\x25\x2f\xeb\x4c\x76\x99\xb6\x0f\xe8\xb5\x2c\xd7\xd2\x3b\x11\x96\x61\x11\x9a\x59\xc3\xc0\xec\x62\x14\xdb\x6e\x75\xae\xdf\xdc\x3d\x7d\x65\x59\x48\x1a\x7f\xe1\xae\xb4\xb6\x24\x61\xe3\xe0\xa7\xe8\xec\xeb\xca\x77\x36\x2f\x58\xd3\x77\xd0\x2d\xc4\x5e\x52\x4f\x3f\x1a\x3b\x8b\x9f\x3d\x3b\x6a\xa5\x9d\x4e\x94\x3f\xd0\x27\xe0\x2c\x21\x7f\x3d\x56\x55\x24\xd1\xe6\x44\x4b\xc0\x04\x52\x09\xc4\x02\x68\x59\x1a\x0d\x62\x02\xac\x68\xef\x64\xf5\xcc\xe4\xa0\x5f\x79\xc0\x29\x86\x2b\x97\x4d\x05\x4c\x94\x20\xf5\xa2\x63\x93\x85\xf6\x11\xc6\x64\x72\xa3\x04\xb2\x18\x17\xb0\x6a\x6b\x23\xb4\xad\x8d\x26\x49\x1b\x8d\x5f\xca\x1b\x47\xcb\xaa\xeb\x24\x3a\x60\x19\x23\xd6\xd1\xc7\xb8\x55\xce\x4a\x75\x0d\xd0\x7a\x51\x67\x17\xe3\x04\xb2\x6a\xc8\xde\xdb\xac\x0f\xce\x42\xfa\xe0\xcc\x32\xfd\x5e\xdf\x08\x36\xf9\x51\xe5\x13\x63\x5a\xdf\x5b\xd6\xe3\x65\xde\x05\x55\x63\xd9\xf4\x08\x0a\x5a\x4d\xd0\xf7\xf6\x55\x6e\x25\xd0\x99\x4b\xa4\x87\xaf\x10\xdd\x19\xf1\xea\x56\x45\x4a\xe0\xd6\x95\xd9\x2a\x75\xe6\xe8\xc8\x8e\xe5\xd8\x2c\x54\xca\x2b\x15\xc2\x02\x04\x5d\x69\x2d\xf7\xc7\xb5\xdc\x1f\xd5\x84\x64\x2f\x60\x19\xdf\xfc\xaf\xd9\x23\x78\xab\x9e\x9a\x58\x39\x51\xec\x08\x54\xed\xe2\x89\xc6\x5d\xb2\xc5\xc6\xb0\xfc\xb3\xed\xe9\x1b\xb6\x48\xe3\xae\xd0\x24\x82\xe9\xe0\x04\xe2\x0a\x89\xd3\x90\x84\xb1\x8a\x0f\x9c\x8a\x6b\xc7\x32\xc2\x95\x4a\x3a\x6b\x1b\xc8\x40\xf7\x06\xe0\xff\xae\xde\x30\xce\x49\xdd\x20\xef\xc6\x02\x93\xca\xe1\x06\x8a\xb8\xe4\xfa\xd4\x07\x0c\xf2\x1d\xa5\xce\x65\x62\x4d\xe8\x54\xb2\x2d\xdc\x0c\x48\x7f\xd4\x6c\x09\xe2\x6c\x06\x27\x52\x51\xdd\x75\xfd\x42\x75\x80\x9b\xf8\xb3\xde\xc4\xc6\x7a\xee\x1d\x4c\xf1\x17\x77\x49\xcc\x0c\xdd\x18\x52\x92\xa2\x33\xe1\x08\x35\x6a\x17\xa1\x60\x33\x92\xf4\x2d\xf3\xd1\xde\xd5\xae\xab\x5b\xab\x24\xcc\x23\x61\x56\x4b\x67\x70\x75\xc4\xb4\x03\x4f\x68\x4b\x30\x6e\x98\x58\x9b\xa8\x39\xd5\xbc\x83\xbf\xc0\xd4\x7e\xa3\x2a\x4c\xd6\xcb\x8d\x53\x0c\xc7\x55\x7f\xed\x05\xcb\xc2\xd0\x59\x4a\x9a\x80\x85\x60\xaa\xf6\xcd\x27\x15\xbe\xe7\xb5\x2d\xe9\x07\xd5\x42\x12\x17\xa9\x1f\x13\x5f\x4b\x55\x46\xb2\x86\xda\x80\x58\x9e\x30\xc6\x35\xab\x53\x57\xe8\x84\x8a\x6e\x3a\x29\x65\xc0\x5d\xa3\x41\x58\x15\x6d\xf0\x6e\x52\x54\x0f\x61\x35\x5e\xfd\xa9\xf3\x7b\xe0\xcd\x9c\x7d\xda\xb9\x29\x91\x80\x90\x86\xde\xc9\x9f\x5b\x81\x1e\xf9\x62\x96\x1a\xf5\x75\x60\xe7\x19\xd8\x26\xa5\x58\xed\xf2\xf3\xa9\xfb\xf0\x83\xc7\xd2\x33\x63\xf9\x9b\xb7\x6a\x35\x23\xf2\x96\xf6\xb4\xfa\x6a\x10\xda\x00\xec\xd3\xce\xd5\x0f\x00\x98\xdc\xe6\xa5\x24\xd0\x3a\xeb\xb2\x97\xfc\xb9\x29\xd3\x73\x39\x3d\x73\x25\x29\x33\xe6\x19\x65\x5d\x9b\x5b\xf3\xdd\x2a\x13\xe9\xc2\x49\xb6\xf9\x37\x9e\x0a\xf6\x36\x9b\xdf\xdb\x57\x7f\x62\xc9\xd2\x64\xd4\xd4\x76\x72\xac\xeb\xfe\xc6\x66\xdc\x57\xa6\x21\xef\xe5\xf9\xeb\xd7\x1f\xfe\x72\xf9\xf6\x6f\x97\x1f\x1c\x12\xf5\xc3\x2f\x6f\xaf\x2e\xae\x2f\xde\x5e\xba\x81\xef\x32\xfa\x65\xdd\xda\x5c\x43\x15\x4e\x75\x6a\xd4\x29\x67\xec\x77\x06\xf1\x80\xf2\x1a\x94\x60\xe2\x6c\x4a\xd6\xbc\xa0\xc3\x11\xba\xa9\x70\x9e\xdc\x17\x74\x98\xe2\xb3\x50\x6e\x86\xfa\xb3\x42\x49\xf6\x19\xaf\xbc\x89\x79\xa1\xc4\xd5\x9b\x02\x43\x05\x74\x32\x8e\x40\x09\xc7\x64\x94\xe6\xcc\x46\x13\x03\xe5\xc4\xc0\x2b\x05\x24\x10\x8b\x55\xfe\x15\x47\xba\x57\xa3\xbc\xb1\x99\xa7\x4d\xfe\xae\x90\x36\xc7\x6a\x70\xb4\xf0\x62\xc8\x47\x7e\x54\x33\xab\xb0\x11\xea\x77\x99\x0f\x03\xdb\x2a\xdd\x89\xe1\xc8\x9c\x89\x2a\x60\x6f\x98\x27\x16\xf2\xa6\x39\x6b\x0c\x61\x89\x8b\x54\xdf\x6e\xe4\xad\x1d\x3a\x1c\xc7\xde\x0a\xdb\xfe\xd0\xed\xd3\xca\x81\x03\xdd\x42\xe2\x70\x05\xa8\x74\x7a\xaf\xf4\x3a\xc1\xa5\x74\xc2\x49\xc9\xa1\xf0\xc0\x52\x0a\x9c\xa3\xda\x49\x75\x73\xc4\x7d\xb6\x01\x76\xba\x94\x07\x3c\x91\xff\x92\xe7\x01\x84\xfc\x05\x87\xe1\x8d\x89\x28\xf0\xbb\x4b\x81\xf7\x32\xbe\xc3\x07\x82\x5d\x79\xfd\xae\x9d\x70\x77\x15\x34\x90\x23\x9b\xba\xe9\xc6\x36\xc1\x75\x19\xf1\x4e\xac\x30\x43\x74\x0f\xae\xd0\x83\xf4\x8e\xab\x30\xc3\xf4\x4f\xad\xb7\xe2\x5e\x1e\x65\x4b\x5f\x69\x0b\x37\x7d\xb2\x85\x99\x5d\xc3\x01\x37\x39\xb4\x6b\x39\x10\x1c\xfc\x90\x8d\xd0\x0b\xf8\xb2\xba\xde\x6e\x79\xec\xd4\x96\xbf\xda\x78\xd4\xb5\x54\xd3\x08\xfb\xb9\x73\xfa\x85\x39\xfd\xcd\xb1\xe0\x5a\x7c\x98\x8d\x4c\x53\x98\x18\x3c\xb5\xc1\x72\x71\x34\xd5\x71\x54\x50\x85\x1e\xbb\x97\xcf\xbd\x6e\x7f\xeb\x25\x1a\x32\x65\xee\x4e\x29\xcd\x3c\xfb\x65\x5c\x35\xf9\xbd\x5a\xa5\x14\x82\x17\x7f\x44\xdc\xea\x9e\x35\x10\xeb\xce\x35\x96\x83\x83\x0d\x97\x76\x54\x5a\xb5\xd8\xec\xed\xca\xad\x97\xb4\x94\x6c\x25\xc8\x51\x70\x1b\x63\x2e\xec\x6a\x63\xbc\x69\xcc\xc6\x17\x20\xda\x49\xcd\xce\xe7\x66\xe7\xa7\x7a\xdb\x73\xbd\xed\x53\xb3\xe7\xb9\xd9\xf3\xa9\xdd\xf0\xe9\x16\xbb\x3d\x35\x5b\x9d\xeb\x5f\xb1\x32\x79\x17\x65\x5e\x85\x6b\xf6\x35\xa5\xbc\x7a\x0c\xd2\xaf\xdc\xd6\xe9\x57\x1e\x9b\xf4\x7f\xd5\x31\x48\xbf\xea\x18\xa4\xff\x5b\x8e\x41\xfa\xdd\xc7\x80\xaf\xa3\x5c\x25\xbb\xd2\x07\xa0\x50\xc9\xd4\xeb\x0e\x00\xce\x50\xef\x7e\xd0\x0f\xd4\xcb\x4d\x62\x25\xa2\x51\x34\x97\x77\x11\xab\x57\xcd\x1b\x33\x0b\x6d\xcc\x6c\xd3\x7d\xae\x26\xe9\x76\xb5\x89\x18\xf3\xca\x3a\xd7\x6d\xb6\x0d\x78\xab\x4d\xc0\x1e\x81\xba\x55\xc1\x97\x5b\x49\x81\x66\xc8\xf6\xfb\xa3\xcd\x42\x2f\x55\x58\x8f\x0e\x16\xae\xb0\xb2\x02\xbd\x78\xab\x96\x32\xc3\xae\xb9\x97\xf1\x56\x9e\x01\x37\x80\x72\x37\x95\xde\xbd\x67\x85\x1a\xa2\x2e\x83\x57\xfa\x7b\x6d\xea\xae\xfe\x5e\x14\x3d\x7e\xf4\xa4\x63\x9a\x97\xb3\xbf\xb9\x4f\x26\x13\x1e\x39\xdd\xc4\xf1\xf3\xe7\x4f\x62\xe3\x29\x99\x16\x28\xe9\xa9\x6d\xb6\x77\x70\xb4\xb1\x4d\xd3\x9c\xdc\x25\x75\x2d\x1d\x1c\x1f\x6f\xdf\x50\xbe\xec\x37\x4a\xb0\xeb\xdb\xd8\xeb\xbb\xad\x1c\x7c\x6b\x2b\x07\x6e\x2b\x87\xdf\xda\xca\x61\x1c\x48\xa0\x36\xf6\xdd\xb9\x1e\xd8\xb3\x67\x07\x6b\xc3\x57\x2a\x49\xc8\x94\xf6\x7b\x47\x4f\x8e\x1f\x3f\x22\xb3\xfa\x9d\x64\xec\xed\x6c\x44\x7e\xcb\x5a\xe9\x5d\xe5\x52\x72\xfa\x69\x9c\x2c\x93\x71\x2a\xee\xe9\x94\x38\x12\x44\x15\xd6\x12\xf4\x6d\xc0\xb6\x81\xc2\x4d\x55\x6c\xd9\x4d\x2b\x71\xff\xfb\x34\x13\x87\x07\xc6\x6a\xc3\x72\x7a\x3a\x83\x03\x76\x6e\xc1\x83\x16\x83\xee\x58\xb2\xd2\x58\x7a\x8e\xd3\x4d\xb0\xa7\xa9\xd7\x53\x33\x87\xb8\x2c\x47\x90\x55\x38\x22\xfd\x9d\xbd\x98\x31\xab\x8e\x96\xfd\x0c\xdd\x05\xdb\x1b\xa9\xfc\x9a\xa6\x64\xc9\x75\x56\xf2\x64\xde\xb0\xb5\xd4\xee\x2e\x32\x0d\x92\x9e\x0b\x84\xb8\x01\x76\x9a\xbb\xdb\x9b\x3a\xe3\xe9\x16\x4c\x40\xd4\xda\xf2\x5a\xad\xbd\xe7\xfd\x7d\xa4\xc1\xd4\xb6\xab\xc5\x5a\x30\x45\x45\x39\x16\x81\xc2\x86\x4f\xc0\x72\x2a\xa2\xb2\x4a\x13\x51\x51\x53\x08\x65\x0c\x0a\x6c\x96\x9d\x21\xe9\x11\xf4\x30\x60\xee\xa5\xea\x31\xbb\xea\xd5\x1e\x3d\x24\x00\x5e\x37\x43\x44\x68\x30\xd0\xd1\x90\xed\xf5\x47\x74\x1c\x09\xa2\x5c\xd1\x8b\x52\xa2\x0f\x0f\x37\xc3\x48\x10\x22\x8d\xf0\xc0\xa6\x35\x1b\x10\x60\x85\xcb\x53\x65\x64\x1c\xf5\xc8\x61\xac\x67\x29\xb6\x98\xa5\xd0\x03\xce\xa7\x81\x91\xa0\xb0\x61\x9c\x2f\x59\x6d\x99\x9d\x12\x20\x9e\x3f\x3f\x00\xc8\x71\x56\x7b\xe3\xda\xc2\xad\x32\x14\xc3\xd6\x83\x0f\xe2\xd9\xb3\xc3\xde\x3a\x12\xa4\x6f\x9c\xfd\x9d\xf4\x1e\x8d\x07\xc8\x05\x85\x3e\x3c\x2d\xe7\x50\x8d\xe8\x41\xff\xe8\xf1\xd1\x93\xc3\x47\x47\x68\xc6\xe1\xa2\x29\x05\xd9\xa1\x20\x40\x02\x61\x1c\xee\x5f\x5c\x3c\xe6\x62\x3d\xa4\x45\x75\x02\x4d\xa7\x18\x09\x28\xa6\x8d\xab\xaf\x18\x11\xe5\xc5\x4b\x52\xca\x87\x1a\x2a\xe6\x14\x44\x19\x49\xa3\x18\x83\x05\x27\x4b\xb1\xe2\xac\x2a\x8d\xff\xc6\xe0\x46\x0e\x58\x50\xab\x54\x9e\xa0\x81\xa0\x8f\x39\x58\x8c\x78\x58\xcb\xf7\xb5\x14\xdf\xee\x2f\x02\xeb\x3a\xb0\x4b\x4c\x54\x0d\x57\xd2\x0f\xd2\xc6\x19\xba\xfd\xd4\x49\xf0\xbe\x6b\x86\x12\x97\xe5\xdf\x1e\x67\x4a\x56\x9f\x69\xbf\x3f\x23\xda\xb4\x58\x50\x2b\x13\x3e\xe4\xea\x5a\x94\xe5\xe7\x16\x52\x71\x48\xab\x82\x45\xeb\xce\x12\x36\xa5\x2f\x27\xe6\x75\x50\x15\xb5\x68\xd1\xad\x0a\x92\xb0\xdc\x42\x35\xf2\x5d\xd3\x98\xdd\x4f\xfc\x10\x6f\x15\xcd\xd9\xcc\x11\x7f\xa9\xe8\xea\x10\xc9\x1d\xd2\x85\x82\x8d\xd6\x0f\x87\x45\x49\xae\xbd\x6c\x29\xf7\xae\x5a\xbe\x64\x2b\x3d\xae\x43\xe5\x06\xb8\x0e\x49\x55\x4f\x1c\x62\xe9\x4e\x4b\xe1\xdd\xbc\xce\x98\x60\x3e\x36\xfd\x29\x8f\x29\x59\xce\xd8\x66\x64\x95\xdb\x96\xc7\x27\xe2\x19\x07\x14\x91\x49\xfc\x24\x11\x84\x81\xe7\xda\xca\xf3\x17\x25\x15\x02\xd7\xb6\xce\x3f\x50\x89\x90\x16\xc0\x31\x04\x0d\x3f\xba\x22\xb9\xa5\x94\xce\xe5\x82\x62\x39\x3f\x55\x92\x2d\xaa\x8b\xdd\x78\xc1\xc1\xe2\x2f\xb3\xbd\x3d\xf9\x7a\x9c\x2f\x6e\xd2\x8c\x5d\x27\xb7\xb7\x6c\xd2\xe8\x8d\x00\xb4\x9e\x96\x5f\x3f\xcb\xac\x47\x42\x0a\x1e\x09\x72\x48\x92\x81\x4e\x21\x21\x26\xf6\x3e\x6e\xa5\xbb\x94\xce\x3b\x1d\x75\x71\x38\xec\xfc\x32\x52\xe9\xc7\xb0\xff\x2b\xb9\x3a\x81\x4b\x0b\xba\x66\xf2\x20\x4c\xd0\x21\xe4\x04\xed\xa1\xf9\x89\x09\xc2\xa0\xbb\xce\xfc\xae\x33\xaf\xeb\x2c\x86\x96\x32\xf6\x59\x40\x30\x22\x5e\x37\x94\xef\x01\xc2\x37\x00\x60\x91\x2c\xc3\x57\xaf\xb2\x12\xd3\x69\xda\xd2\x02\x33\x30\x85\xb3\xb3\xed\x52\x7a\x2e\x8b\x19\xa3\xfb\x17\xc9\x78\xc6\x28\xeb\xc2\xff\x13\x6b\xc1\xcf\xba\xef\x97\x93\x04\xee\x04\xb9\x63\x74\x01\xf5\xfb\x65\xca\xc5\xbd\xf3\xe9\xfd\xbb\x77\xe7\x97\xd7\x1f\xae\xcf\x7e\xa6\xac\xfb\xeb\xdb\xd7\x67\xd7\x17\xaf\xcf\xf1\xf1\xc5\xdb\xcb\xab\xeb\x33\xf3\xf5\x3a\xb9\x55\xba\x3f\x09\xe4\x77\xec\x2e\x2d\xd2\x3c\x53\xcd\xe8\x8a\x94\x75\xd1\xf6\xcf\xa9\x2e\x5f\x62\x30\xcd\xab\xfb\x6c\x3c\xe3\x79\x96\xfe\x8e\x8d\xe0\x98\x4d\xb0\x4d\x5d\x34\xcd\xb3\x33\x2e\xd2\x69\x32\x06\x5d\xd7\xeb\xb4\x10\x17\x82\x2d\xb4\xaa\xcc\x4e\x16\xb5\x5c\x4e\x6f\x5a\xe5\xd5\x6f\xd9\xc1\x64\x2d\x67\x8c\x97\xc9\x25\x8a\xdb\xea\xae\xc4\xd0\xb5\x02\x7e\x1e\x35\x56\x5a\x80\x36\xef\x92\xf9\x8a\x45\x31\xa5\xd4\x41\x9d\x0e\x94\x52\x92\x76\xd3\x09\x0e\x2f\x97\x9b\x2d\x91\x7f\x8a\x8d\x57\x8a\xec\x5e\xe3\xe6\x34\xcb\x18\xa7\xa2\x89\xe9\x81\x71\x54\x29\xe4\xa8\x47\xf2\xa1\x69\x6f\x14\x47\xb6\x3d\xa0\xbd\x1a\xe6\x17\xf5\x48\x52\x53\x15\xcc\x25\x7c\xc6\x76\x65\x8f\x76\x8e\xe7\xa8\xa5\x7c\x43\x42\x81\xe7\x98\x86\xdb\x5a\x3b\x0c\x86\xd3\x1d\xd9\x05\x88\x30\xf9\x72\x3a\xa1\x62\xed\xed\xca\x82\x94\xfb\x31\xd5\x7b\x1b\x9a\x07\x8e\x0e\x33\x7e\xce\x95\x21\x4a\xa4\x1c\xb3\xe3\x56\xe9\x20\xcc\xeb\x7b\xb9\x4c\x2e\x37\xf4\x73\x99\x5c\x3a\x3d\x8d\xb1\xa7\xbe\xe9\xc9\x3b\x81\xe3\xfa\x9e\x66\x1b\xfa\x11\x94\xd2\x19\xf6\x32\xc5\x5e\x0e\xec\x7c\x9c\x53\x3f\xd5\xe9\x89\xcb\x64\x62\x50\xdc\x48\xf8\xb7\x52\x8a\x33\x57\x52\x19\x92\xd3\xab\x93\x42\x79\x83\x30\xd2\xd8\x3b\xfe\x30\x0a\x7d\xe6\x92\x52\x05\x6e\xec\x09\x91\x4f\xca\x08\xae\x49\xfe\x59\x73\xd2\x74\x52\x3c\x35\xa1\x35\x64\x3d\xf2\xac\xdb\x8d\x4e\x0e\xa7\xbc\xb7\x37\x03\x39\x62\xea\x9c\xa2\xa5\x93\xd0\x85\xf9\x89\x5c\x7a\x3a\x45\xca\xbc\xe5\x27\x76\x61\xc3\xde\xa8\x94\xc1\xe5\x0e\x01\x16\xc9\x6f\x04\x22\xf5\x94\x13\xad\xdc\x9b\x22\xf1\x7a\x5d\xba\x20\x26\x64\x25\xe9\xb0\x0d\x04\xdf\xd7\x09\xa2\xe7\x49\x21\x80\x7b\xc4\x44\x7a\x60\x67\x5d\x88\x5f\x01\x98\xea\xc5\x37\x49\xa3\x1b\x57\xc3\xe9\x74\x97\xd2\x99\xb6\x39\x76\xc7\x32\x23\xe6\x95\x1a\x0b\xd2\xf3\x8b\xe5\x4a\xb0\x28\x8e\x4b\x9f\xd1\x1c\xaf\x82\x35\x4d\x54\x6d\x7f\x96\x7a\x81\xdd\xdb\x78\xd1\x52\x11\x10\x36\xa9\xb8\x32\x0d\xdb\x2c\x78\x74\xa6\x29\x2f\x04\x15\x24\xeb\x16\x6c\x9c\x67\x13\xca\x49\xb6\x91\xbe\xae\x1c\xa4\x32\x5d\x52\x39\x0c\x44\x28\x0b\x20\x3f\xc7\xe0\x4a\x84\x60\xae\x3c\x82\x93\xcf\xaa\x0d\x18\xa0\xc6\xf3\xda\x85\x57\x8e\x54\xbf\x53\x62\xf4\x45\xdc\x5a\x45\x77\x31\x86\x45\xa8\x03\x0a\x32\xf6\x1a\x24\x3c\x08\x12\x91\xdc\x16\x54\x10\xfe\x0d\x60\x68\x06\xc2\x16\x20\x28\xc9\x29\xe4\x50\x88\xa0\xfb\xfd\x0d\xee\xbe\x1a\x16\x2d\x41\x0d\xf4\x32\x49\x19\x5a\x2d\x93\x86\xd1\xbd\x82\xd1\xed\x77\xc3\x48\x82\x08\x76\x2a\x10\x8c\x72\xa7\xca\x3e\x7e\x24\xb0\x9a\xf4\x9a\xdb\x6e\x1f\x67\x80\x5a\xf4\x7b\xeb\xec\x9c\xb4\xbb\x5a\x56\x08\x17\xa6\xb3\x5c\x8a\xe4\x56\x1f\x76\x39\x61\x46\xca\x4d\xea\x73\x6f\xcf\xb2\xb3\x1f\x4b\xa4\xf4\x2d\x59\x45\xb7\x0a\xf8\x37\xcd\x16\x51\xb2\x03\x4d\xfc\x39\x16\x8f\x3e\xa2\xfb\x2a\x2a\xce\xdf\x52\x36\x17\xa7\xed\xc7\x66\xa7\xc3\x4e\xdc\xb4\xb8\x12\x1e\x9d\x8e\x47\x45\x3d\x3c\x44\xe5\x1a\x25\x9c\x47\xaa\x73\x31\xf4\x9a\xe4\xd1\x55\xe4\xd6\x26\x14\xe8\xc1\xc0\x90\xc5\x65\x8e\xe5\x06\x43\x9c\x7c\x27\x22\x84\x1d\x0d\xd0\xc9\xba\x86\x5d\x07\xc4\xb8\x50\x04\xe2\x56\x88\xb1\xf1\x70\x3b\xab\x60\x7a\x68\xd9\x26\x67\x90\xeb\x59\xf6\x15\x47\xcc\xc7\x6e\x37\x6a\xdf\x7c\xda\xa0\x12\x2c\x5f\x85\x0d\x9b\xc9\x26\xbe\x9e\xd0\xdd\x3e\xb1\x7b\x5c\x6d\x10\x6f\x8c\x94\x35\xea\x49\x18\xfb\x58\x77\x73\x3a\xbd\x9c\xfa\x23\x1c\x94\xbe\x47\x18\xcb\x3c\xb4\x21\xd2\x69\xb4\x5b\x6e\x2e\x0e\x77\x13\x79\x5a\x04\x33\x83\x9a\x1d\xcf\xb4\x64\x80\xbb\x5b\x5b\x37\x7d\xde\xaa\x02\x90\x1b\x4c\xeb\xf8\x4e\x9a\x49\x81\x53\x99\x2e\xa0\x51\x15\xa5\x34\x3b\x3d\x1f\x44\xa5\x15\x4a\x41\xde\x56\x97\x81\x7c\xd3\x24\x54\x1b\x95\xce\x42\x47\xce\x41\x78\x81\xa5\xef\x11\xe1\x30\x9c\x9e\x70\xe0\x13\x26\xd1\x6f\x27\x93\x9b\xc3\x9b\xc7\x4f\xd8\xfe\xe1\xe4\xe0\x60\xff\x88\x1d\xdd\xec\x3f\x79\xfc\x38\xd9\x7f\x74\xd8\x7f\x3c\x3e\x18\x1f\x8f\xfb\x47\xc7\x6d\x28\x5c\x9b\xc7\x1d\x37\xa8\xe2\x40\x99\xdd\x6e\xf3\x1a\x6e\xb9\x9e\x18\x83\x26\x2c\x32\xf0\x19\xfa\xcf\xe5\x54\xcd\x5f\x85\x0b\x08\x62\x4e\xd3\xde\xab\x9c\x47\x3c\x76\xd8\x0c\x91\xa4\x99\x3a\x30\x92\x5e\x62\x99\xfa\xf5\x91\xdd\x53\x2e\xff\x4a\xaa\x4e\x30\x0e\xca\x45\xc0\x1c\x6c\x91\x53\x01\xff\x95\xda\x24\xd9\x37\x91\xa9\x81\xcb\x0a\xf7\x88\x1e\x19\xe2\x11\x3d\x0c\xac\xf1\xab\x37\xad\xc8\x8a\x1c\x4c\x20\xfc\x52\x85\x37\xee\x90\x55\x79\x39\x0b\xe0\xd8\xb3\x6e\x31\xcb\x57\xf3\xc9\x3b\xb6\xc8\xef\x02\xeb\xb4\xeb\x0d\x09\xdd\x52\x58\xd5\x63\xc9\x05\x27\xd2\x75\x00\x51\xc0\x78\x1c\xc4\x36\x97\xf9\x84\x81\x7d\x84\x16\xe1\x6c\x97\xa5\x37\xd5\x12\x21\x8b\xef\x16\xc9\x92\x82\xaf\x87\x97\x44\x76\x9e\x16\xca\x1e\x57\x76\x97\x7d\x64\x13\xd9\x51\x10\x19\x9a\x75\x6d\xc4\x85\x69\x01\xb1\xbf\x03\x02\x14\x7f\x5c\x3e\xc8\x31\x35\x4b\x14\xc7\xba\x81\x28\x9c\xb2\x05\xf1\x82\x71\x6d\xa1\x18\xac\xd7\x6b\xfc\xb4\xa6\xf1\x81\x57\x8a\x04\x00\xc5\x30\xcd\x49\x80\x46\xdb\xdd\xd5\x50\xb4\x7a\xcf\x5a\x61\x96\x2d\xf5\x29\x29\xae\xe4\xa2\xd6\x68\x1b\x55\x41\x3d\x1d\xc3\x71\x8b\x4e\x47\xc0\x66\xb0\xa9\x16\x1b\x5a\x30\x94\x8b\x5c\xba\xcc\x07\x2d\xe4\x5a\x66\xf2\x68\x8e\xd0\x43\x20\x23\xd6\x7c\x88\x63\xe3\x51\x1a\x93\x54\xe1\xe2\x82\x71\xf1\x13\x9b\xe6\xbc\xcc\xdc\x38\x06\x5f\xb2\xcf\xcc\xe9\x33\x2d\xf5\x99\x53\xee\xf7\x99\x3a\x7d\xe6\xde\x59\xcd\xbc\x2e\xa3\x9c\x88\x98\xe4\xa0\x3d\xf7\x4e\x56\x79\x04\xb2\xdb\x16\xf3\x5a\xe2\x5d\x0e\xc7\x11\xac\xeb\xfc\x56\x6d\x46\xfe\x52\xab\x9a\x6a\x48\x0b\xe1\xd4\x9e\xb0\x39\x13\xcc\x59\x49\x98\x0a\xd8\x43\xa3\x6c\xbc\x76\xe1\xa1\x25\x23\x41\xc7\xb4\x39\x2c\x99\xd4\x32\xd6\xb2\xbc\x92\xdd\x1b\x8c\x1e\x10\xe1\xbe\x85\x43\x7f\xd6\x94\xe8\xb8\xba\x9b\x5b\xd6\xd8\xfe\xad\x89\x07\x91\x98\x36\x83\x3e\x55\x59\x29\xa1\xa7\x73\x0b\x9b\x9a\x44\xd0\xda\xc3\x2c\x72\xfe\xf0\xe0\x9d\xe7\x0c\xf2\x3a\xb8\xb4\x34\x38\xd6\xc9\x1f\x03\xa6\xb7\x9f\x88\xab\x57\xb0\x11\x6a\xbb\x91\x97\xe3\x2f\x6c\xc8\xba\x18\x2a\xac\x37\xa2\x6d\xf5\xb3\x4d\xe4\xeb\x5f\xf8\x2a\x63\xb4\x3f\xa2\x6d\xf8\xa5\x5e\xbe\xcc\x33\x46\x0f\x46\xb4\x2d\x7f\xb4\xd7\xd1\xd9\xc3\x43\x74\x46\xbf\xac\xd1\xab\xf9\xba\x1e\xa2\x1a\xcb\xa9\xd4\x28\xe8\x42\x8f\x30\xd0\xb6\x01\x90\x33\x5b\x90\x12\x68\xcb\xb8\x85\x5b\x80\xa0\x3d\x8a\x0a\x96\x4f\xb9\x5e\xfb\x26\x3f\x8d\xfb\x6c\x1c\x66\x90\xcf\x10\x10\x27\x27\xb1\x16\x75\xa1\x8c\x4b\x7f\x19\xe0\xda\xc9\x45\xc0\x48\x68\x6e\x48\xa8\x9d\x33\x05\x33\xb7\x18\xbc\x28\x97\x92\xb0\x1b\xb8\x48\xca\x14\x97\x5f\x22\xa5\xfe\x4f\x26\x77\x49\x36\x66\xd7\xf9\x5f\x58\xa3\x19\x2c\x4e\x5e\x63\x2d\xbb\xaf\x32\x2a\xb4\xee\x2a\xeb\x74\x80\xaa\xd8\xa5\x94\x9d\xc4\x9a\xd4\xe8\x41\xe0\x34\x73\xbc\x6c\xb0\xfb\x4c\x33\xa9\x16\xb0\x4e\xa9\x58\x1f\xdd\x72\x88\x39\x6f\x7f\xdb\x7b\x61\xe3\x30\x99\xde\xd5\x36\x5a\x7c\x16\xfb\x16\xc2\x09\x37\x90\x44\xe5\xb3\x9c\x4e\x95\xa5\x14\x40\x3b\x51\x9a\x9e\x1a\x90\xbe\x03\xa4\x16\x65\xf1\x00\x9c\xf3\xa2\x34\xb6\xdf\xde\x48\x14\x95\xe1\x4d\x26\x5f\x5c\x00\x9e\x8b\xb2\x98\xe8\x35\xd7\x93\x55\xcd\xd4\x5d\x1b\x76\x3a\xdc\x9b\xee\x49\xc4\x29\x8f\x91\x06\xb2\xc1\x79\x10\xac\xc2\xd5\x0e\x12\xe7\x0c\x20\x26\x8e\x00\x55\x12\xe4\x11\x08\x07\x92\xc9\x80\xff\x4d\x19\xf9\x6e\xb9\x29\x6c\x37\xc0\x5e\xc8\x1e\x72\xca\xe5\x05\xac\xfa\x8b\x5b\xb9\x33\x60\xae\xef\x5c\xfc\x78\x1a\x71\xb8\x4c\xd4\xdd\x92\xe1\x6f\xd5\x0a\x8e\x33\x57\xa4\x9d\x38\x85\xd5\x00\x37\x66\xed\x62\xec\x6e\xea\x28\x35\x53\x51\x60\xdf\x1a\xb8\x38\xfa\xcc\x9f\x6b\x4a\x45\xf9\x9e\xca\xe2\x96\xbe\xbb\xa2\x14\xc6\x98\xe2\x18\x53\x35\xc6\xec\x34\xb3\x63\x34\x19\x0d\x15\xe6\xab\xb9\x63\xcc\xe2\x79\x43\x43\xcc\x43\x10\x05\xe8\x89\x55\x5a\xaa\xb9\x01\xdc\x69\xf9\x3b\xc8\x39\x14\x5c\x1f\x0a\x85\x41\x34\x5d\xdf\x0a\x8d\x8e\xb9\x27\xb6\x44\x61\x47\xf1\x69\xc4\xf4\x05\x9d\xc5\x44\x74\xd5\x15\x1d\x01\x2c\xe2\x78\x80\x04\x76\x75\x3a\x80\xfd\xab\x16\x78\xb0\x65\x27\x0a\x75\xf9\xd7\x6e\x49\xc9\x7a\x5d\x36\x63\x50\xc6\x1c\xdb\x1b\x31\x90\xa0\x09\x84\x7d\x79\xb7\x70\x9f\xe6\xf9\xa7\xfd\x39\xbb\x63\x55\xe3\x07\x1d\xf7\xb4\x64\x02\xc1\x21\x9e\xeb\x1b\xff\xa0\x57\xe3\xa4\x2e\x0d\x97\xed\x7d\x75\xb5\x37\x0b\x11\x25\xa0\x47\x57\x4d\x36\xc5\x5f\xc5\xc0\xf7\x24\xa9\xaa\x8d\x8e\x83\x6a\xa3\x63\x57\x6d\x74\x3c\x1a\x7c\x59\x93\x42\x8e\x89\x01\xa5\xaf\xc3\xe9\x93\x15\x75\x83\x22\x68\x97\x01\x32\xa7\x97\xd1\x8a\xa4\x4a\xfd\x46\xc6\x74\xde\x5d\x24\x59\x72\xcb\x38\x99\xd2\x39\x04\x77\x82\x78\x70\xbb\x3f\x45\xaf\xa2\x31\x84\x65\x76\x02\xc7\x45\xd3\x38\x26\xe3\x38\x90\xcb\x23\xc9\xb2\x5c\xec\xa8\x90\x00\x3b\x26\x3c\x55\xb1\xf3\x29\x15\xb3\x1d\x0c\x94\xb5\xa3\x1c\x80\x8b\x9d\xa4\xd8\x49\x76\x78\x9e\x0b\x5b\xb2\xdb\x8e\x5b\x39\x85\x0e\x31\x9e\xee\x94\xac\x74\x64\x6d\xf4\x01\xfd\xc8\xee\x8b\x28\x89\x7d\x47\x17\x43\x32\x0e\x19\x49\x86\x6c\x34\x5a\xc7\x64\x42\x87\xed\x45\x92\x66\x72\x37\xcd\x0b\xb9\x43\x20\xf4\x4a\x7b\x44\x96\x74\x56\xa9\x8e\xd4\x82\x8d\x5c\x07\xb1\xec\xd6\x71\xcb\x0f\x36\xaf\xef\xdd\x05\xed\x9d\x2c\x9e\x1d\xfe\xa7\x8e\x42\x7c\xb2\xd8\xdb\x8b\xe1\x92\x32\x99\x4e\x41\xb3\x89\xbb\xa1\xfa\x85\xcc\x82\xc9\xcf\xf4\x30\xfa\xa3\x96\x57\x07\x34\xcc\x05\xc4\x1b\x52\x99\x75\x23\xfc\x4c\x96\x64\x42\x7a\x10\x4f\xd6\xab\xa0\xca\x96\x5e\xe6\xa5\xe7\x79\x4c\x70\x9f\x16\xb0\x4f\x0b\x26\x5e\x62\xe8\xb9\x17\x98\x16\xcd\xc3\xc7\x7f\x07\x43\x02\x85\x18\xea\x0b\xca\x72\xbf\xca\x72\xb7\x4c\x60\xdc\xa9\x5f\x93\xb2\x6d\xaf\xf6\x72\x9f\xf8\x91\x8e\x21\x5e\x46\x5e\x40\x10\x80\x64\xde\x4d\x44\xd4\xf3\x8e\xd4\x9d\x88\x38\x84\xa1\x04\x13\xa4\x52\x06\x33\x27\x7e\xc0\x0d\x61\x2a\xd7\x44\xe0\x3e\xf9\x56\xcb\x40\x49\xff\xd7\x98\xc9\xfc\x6d\x96\x0a\x56\x2c\x93\x71\x90\x8d\xc9\x59\x57\xb0\x42\x00\xef\xc2\xba\x59\xce\x17\x20\x28\x33\x41\xc6\x3e\x33\x39\x5a\x88\x01\xa0\xa3\x57\x04\x95\x60\xef\x99\xdc\x33\x98\x59\x49\x85\x9d\x36\x63\xe0\x4c\x19\xea\xa5\x79\xd6\xd8\xc6\x07\x51\xdf\x46\x5a\x18\x8f\x16\x59\xef\x55\xca\x95\xb0\x84\xde\x0a\x39\x40\x8d\x02\xee\x5f\xcd\x93\xdb\xe2\x15\xcf\x17\xf4\x15\x81\x68\x4e\x06\x3b\xdc\xd3\xdf\x09\xeb\xbe\x58\xf1\x02\x2c\x67\x5e\xe4\xd9\x98\x33\xc1\x7e\xca\x57\xd9\xa4\xa0\xac\x7b\x75\xfe\xee\xe2\xec\xf5\xc5\x3f\xce\xae\x2f\xde\x5e\x7e\x78\x75\xf1\xee\xea\xfa\xc3\xe5\xdb\x97\xe7\x1f\xae\xae\xdf\x5d\x5c\xfe\x0c\x06\x38\x68\x70\xa8\x67\xc1\xba\x97\xec\x13\x86\x1a\xb4\xef\x5e\xbe\x7d\x73\xcd\x99\x72\xce\xe3\x2b\x98\x26\x65\xdd\x8b\x97\x6f\xdf\xbc\x98\x25\xd9\x2d\x83\xce\x7e\xfd\xf9\xc3\xe5\xd9\x9b\xf3\xab\x5f\xce\x5e\x9c\xab\x3a\xf6\x63\xc3\xde\x61\xdd\x37\x17\x97\x17\x6f\xce\x5e\x7f\x78\x71\xf6\xcb\xd9\x4f\x17\xaf\x2f\xae\x2f\xce\xaf\x64\x03\xe7\xaf\xce\xde\xbf\xbe\xae\xbc\x56\xda\xeb\xf3\xec\x2e\xe5\x79\xb6\x50\x37\xaf\xff\xa4\xe2\xae\x31\x13\xb9\xe9\x67\xa8\x67\x23\x07\xa6\x37\x2b\x21\xbf\x5f\xa5\x8b\xe5\x9c\x05\x3e\xa8\x95\x7a\xc7\x8a\xd5\x5c\x68\x73\xaa\x34\xbb\xfd\xf5\x0d\x65\xdd\xd7\xf9\xa7\xd7\xf2\x82\x83\x87\x17\x79\x36\xc1\xd3\xe3\xda\x5f\x05\xc2\xaa\xb2\xee\xfb\xcb\x97\xe7\xaf\x2e\x2e\xcf\x5f\x7e\x78\x77\xfe\xea\xfc\xdd\xf9\x25\x80\xe9\xf2\xfd\xeb\xd7\xce\x0b\xc7\x69\x3f\x91\x8c\x6f\xd4\xa8\x65\x62\x92\xb2\x4a\x04\x43\xa7\x11\x10\x8e\x4d\xd3\xf9\xfc\x72\x35\x9f\x17\x71\xf4\xf4\x49\x8c\x36\x91\x8d\xfc\x59\x32\x29\x07\xad\x56\xe8\xa2\x72\x72\x0f\x82\x27\xf7\xc0\x3d\xb9\x07\xa3\x41\xbb\xb8\x2f\xc6\xc9\x7c\xde\x6e\x05\xc6\x38\x64\x23\xfa\x05\x0b\xd8\x92\x92\xd2\x22\xba\x20\x18\x30\x0b\x15\x95\x33\x20\xc7\x21\xdc\xba\x5a\x2f\x31\xe7\x09\x81\x3b\x14\x1f\x6c\xed\xb3\xa9\xa8\x84\x08\x24\x59\xfc\x25\xeb\x16\x4b\x49\xa0\xc9\x4a\x90\x9f\x15\x7b\xae\xf4\xe3\x28\x08\x4a\xd3\xe0\xa3\x56\xd6\xc5\xe1\x9f\x66\xe6\x2b\x80\x6f\xe0\x3e\xa3\x99\x94\x96\x0f\xc4\xa4\xd6\xa3\xf5\x6b\xed\x28\x40\xd2\x81\x06\x14\x4b\xce\xee\xb4\xed\xc4\x66\xcb\x5a\x67\x4f\x61\xec\x1c\xad\x4d\xf8\x79\x95\x4e\x94\x79\x97\xbc\x01\x6b\x7d\x0f\x5d\xb3\x2c\x47\xf4\xbe\xad\x6d\x6f\x83\x1e\x59\x2d\x21\xa5\x94\x9d\x4e\x07\x48\x84\xb3\xd3\xd9\x40\xa5\x98\x39\x9d\x0c\x76\xfb\xf0\x63\x39\xd0\x21\xa7\x29\xd5\xa1\xa8\x4f\xe5\x3d\x31\x86\xf8\x68\x60\x5f\xcd\x4a\xba\xfa\x1a\x79\xe7\x14\x84\xd5\x59\x49\x0f\x01\x81\x72\xaa\xc7\xb8\xe2\xd7\xf7\x9d\xb6\x30\x70\xb0\x6c\xf3\x5b\x2e\x61\xdd\xa4\x04\x28\xda\xda\xaa\x55\x79\xaa\x4a\x32\x47\xbf\xb7\x92\x48\x8b\x77\x3a\x51\xb8\x20\x55\x80\xb5\xba\x1b\x6d\x8f\x14\x1b\x0b\x8b\x72\x5c\x23\x6f\x5b\x00\x80\x57\x92\xf2\xfd\xf7\xec\x27\x68\x7c\x8a\xa3\xc4\xfc\x67\xad\x30\xc2\x35\xd6\x6e\x50\x56\xdb\xc3\x95\x90\xb0\xf6\x98\x50\x85\x76\x7b\x31\x59\xea\xdf\xfd\x98\x2c\xbe\x56\x41\x06\x2a\x88\x6f\xb0\xd8\x44\xdf\x9f\xfc\xa7\x3c\x9f\xbb\xc0\xb7\x6a\x65\x81\x5f\x83\xd2\x7e\xe6\x6a\xd8\xaa\xb7\xd4\x26\xe3\xa3\xad\x6c\x48\x96\x09\x17\x60\x68\x03\x13\x85\x04\x2c\x9e\xb5\x79\x1c\x89\x78\x1b\x2b\x9c\x2d\x0d\x6a\x8c\xc7\x39\x3a\xfc\x00\x50\x60\x0c\x01\xcf\x1f\xfb\x71\x28\xac\x75\x8d\x12\x5c\xc9\xbd\xce\x86\x62\x44\xef\x23\x1e\x3b\xee\x17\xda\x76\xf0\x94\x75\x7f\xcb\xd3\x2c\x6a\xb7\x75\xb0\x45\x85\x22\x7c\xbb\x05\xc7\x5c\xef\xde\x42\xbe\xad\x5f\xb6\x77\x0d\x6a\xea\x8a\x5c\x79\xbb\x9f\xb6\xdb\x83\x2b\x93\x22\x20\x81\x7c\x7b\xfd\x9a\x1c\x91\xf9\xb2\x0f\xa2\x3a\xc5\x79\xe4\x10\xf6\xab\xc4\x5b\x2a\xbf\xf7\x88\xc7\x11\x23\x19\x64\x59\x8e\xe5\x82\xcf\xf3\x64\x02\xfa\x42\x3f\x3e\x2d\xc9\x95\x95\xad\xec\xf4\xd1\x86\x4e\xb9\xa3\xec\x54\xf1\x47\x23\x2e\x9b\x76\x39\x2b\xdb\xda\xd1\x36\x53\x50\xe3\x93\x6d\x28\xf6\x03\x42\xe5\xea\xb6\x89\xd3\xda\xf1\xf6\xad\x81\x3c\xcd\x7d\xce\x4b\xcf\x09\xcd\x4f\x87\x20\x2c\x40\x9e\xc2\xef\x1e\xe3\x84\x92\xc4\xf6\xfe\x74\x13\x68\xec\x2a\xd8\x20\x06\x1c\x47\x82\x4d\xdb\xc8\x6e\x6f\x92\x65\x14\x0f\xb3\x51\xcb\xdc\x6c\x69\xa7\x03\xb1\x2a\xc0\xa5\x7d\x3e\x55\xa5\xa3\x2c\x8e\x89\x07\xdd\xd4\x8e\xe8\xa0\xd7\x38\x22\xf9\xff\x41\x8b\x95\x72\xfa\x70\xb2\xbb\xeb\xc0\xf4\xf1\x77\x4c\xca\x5f\x3c\x67\x88\x7a\xe4\xa6\x97\x27\x5b\x6d\xe5\x12\xa4\x70\x0d\xe2\x56\x7a\x1a\x61\x96\xf4\x74\x78\x30\x8a\x89\x79\xe8\xbb\x0f\xbd\x51\x1c\x0f\x74\x41\xc5\xdd\xd7\x3e\x38\xab\xda\x38\xb2\xdd\xdd\xf0\x88\xfc\xfd\x7e\x3a\x19\x2c\x6d\x8b\xfd\x9e\xaf\xd6\xf1\xb6\x9d\x0f\x35\x8d\xfb\xdd\x12\x5c\x09\xcf\x6d\x4e\x15\x6d\x2b\xef\xf5\xc9\x4b\x7d\x96\x71\x85\x4d\x58\xab\xa7\x62\xa3\x72\xc0\xf2\xf1\x93\xf4\x79\xef\x24\xdd\xdf\x8f\xbf\x64\xc3\x74\xbf\x3f\xf2\x87\xb1\xf6\x67\x28\x79\x7e\xb5\xa0\x68\x61\xd8\x7e\xf1\xfe\xdd\xbb\x8b\xf3\x97\x3b\x2f\xde\xbe\xf9\xe5\xed\xe5\xf9\xe5\xf5\x0e\x5c\xaa\x10\x30\x6c\x67\x98\x4e\xe8\xa3\x69\xaf\x37\x65\x37\x4f\xf7\x93\x1e\x9b\xee\x1f\x1d\x1f\x3d\xde\x7f\xfa\x94\x25\xfb\xc9\xf8\xf0\xe0\xc9\xf4\x49\x2f\x19\xb3\x64\xd4\xb6\x98\xf2\xc6\xb9\xa3\xa2\x5d\xf6\xf0\xb0\xcb\x86\xb7\x23\xc5\xa0\x7c\xd8\xe8\x0b\xe1\x5d\xae\x09\x07\x2b\x4f\xf9\x7b\x78\x3b\xa2\x26\x51\x81\x47\x8c\xac\xb2\x4f\xdc\xf3\xbf\x91\x4b\xc5\x19\x38\x1d\x7b\x51\x07\x5a\xbe\x96\xe7\xe4\xc4\x6c\x12\x50\xda\x40\xf0\xe9\x94\x72\x35\x04\x90\x11\xcb\x4b\xc4\x95\x9f\x2c\x39\x03\x0d\x55\xe6\xbc\x94\x5b\x21\x4b\x16\x6c\xd2\x5d\x30\x7e\xcb\xa2\x4c\x3d\xc5\x31\xd9\xbd\x89\x52\x63\xa8\x94\xb6\x04\x4d\xd7\x6b\xd2\x10\xf6\x41\x0d\xb3\x12\x83\xc0\x55\x00\x29\x56\x83\x1a\xe0\xc8\x4d\x76\xea\x89\x78\x74\xb6\x69\x4d\x7c\xc8\xd5\x38\xe5\x7b\xda\x05\x70\xc0\x03\x91\x0a\x3e\x39\xc4\xf2\xb9\x2c\xef\xdd\x61\xa6\xd8\xb9\x6b\x0e\x0a\x24\x25\x7b\x78\x68\xbc\x0c\x6d\xdd\xcf\xce\xf5\x89\xf9\x59\x2c\x5d\x6f\xf2\x63\xb0\x4e\xc7\xb6\x47\xdd\xf6\xfe\x74\xfd\xe6\xb5\x6d\xed\x6a\xeb\xd6\x2a\x3c\x44\x37\xcb\x27\xec\xfa\x7e\xc9\x6c\x6b\x6f\x9d\xd6\x30\x03\x8d\x2d\xbf\x6e\x94\x6d\x7c\x50\x5a\xef\x06\x5b\xa6\xe6\x84\xe1\x96\xd7\x93\xec\xbd\x80\x78\x37\x9a\x7e\xe3\x24\x75\x8d\x05\x49\xaa\xfc\x84\xda\x28\xe2\xdb\x17\xec\xb3\x68\xcb\xb7\xc9\xad\x72\x9f\xc3\xf2\xc6\xac\x2c\xf5\xcc\xca\x36\x84\x26\xaa\x31\x66\xaa\x72\xce\xcd\x76\x6f\x22\xb9\x6d\x09\xc7\x50\xaf\x6c\xeb\x16\x3f\x3c\x54\x5f\xd2\x92\xed\xb8\xd6\x94\x19\x42\x18\x0c\x9a\x02\x76\x55\xda\x63\xc5\x37\xb9\x6b\xb1\x5d\xc5\xec\x44\x82\xea\xed\x2c\xd7\xf8\x94\xd9\x5d\x1d\x63\x11\xa5\xa5\xcc\x27\x6a\x5f\x38\x26\xb2\x8e\xc5\x6c\xac\x83\xc0\x90\x8f\xff\x66\x9f\xd8\x0d\xf6\xd7\xbc\xc2\xf1\xd6\x72\x07\x70\xee\xd1\xc8\x99\x34\x58\x10\x34\x31\x34\xdb\x58\xfd\xc1\x5e\xd0\x8b\xef\x71\x2f\x7a\x0f\x05\xc6\x26\x17\xe3\xe1\xe1\x1c\xfe\x9a\x5c\x4e\xf6\xc8\x3d\x3c\x54\x8f\xed\x3a\x12\xf1\x69\x7f\x10\xc9\xe5\xe8\x74\xe4\x85\x72\xda\x1b\x7c\x96\x2f\x0f\x07\x81\x1e\x24\x82\xe8\x74\xfa\x20\x4a\xb0\x27\x5e\x16\x3f\x1a\x5c\xc9\xff\x8e\x07\x7d\xe4\x9e\x90\x02\x7b\x42\x02\x7a\x03\xf7\x22\x35\x5b\x94\xd3\x73\xd9\x82\xc5\x91\x42\x92\x11\x4c\x89\x54\x8b\x28\x46\x8b\x11\x94\x3a\x4a\xc4\x15\x71\x87\xd4\x7b\xba\x6d\x47\x88\xf5\xbc\x1e\xc5\x57\xf4\x74\x78\xb0\xa9\x27\x79\x72\x2c\x7e\xa0\xe7\x11\x77\xa7\xc5\x15\xad\x5d\xd7\xdd\x35\xfb\x2c\xa2\x34\x3e\x01\x9e\x10\xfd\x97\x63\x30\x3a\xd7\xf6\x89\x7f\x4b\x85\xa2\x38\xce\xa2\x9c\x08\x92\x3a\xc4\xda\x61\x6f\x5b\x28\x34\x4c\xf8\x15\x4f\x6e\xe5\x07\xa5\xcd\xc1\x86\xfb\x3f\xa0\x61\x50\xf1\x3a\x8d\x1e\xf8\x90\xb4\xe7\xa2\x94\xec\xce\x56\x38\xac\xa9\x60\x52\xd0\x59\xc6\xea\xa8\xbe\x6d\x3f\x6d\xa5\xad\x72\x5c\xdb\x7a\x4d\x8d\xfe\x41\x3d\x71\xec\x93\xa3\x25\x3e\x41\x85\xa0\xe7\xce\xca\xf5\x0f\xb7\xe4\x00\xf8\xf3\xe7\x87\x3a\x97\xdc\xe3\x0e\x37\xae\x6d\x9a\xcc\xf7\xec\x77\xfa\xfa\x75\xa9\x7f\x15\x16\x4f\x92\x51\x6e\xe9\x83\x9a\xd2\x26\xde\x9c\x57\xfa\x10\x4b\x9f\x67\xe3\x7c\xc2\x26\x36\x2b\x1b\xf7\x8a\x1d\x0d\xe0\xbf\xe3\x8d\x23\x59\x5b\x58\x1c\xd5\x6f\xb6\x16\x3a\x8b\xaf\xb4\xf3\x9d\x40\xee\xdd\x01\xe5\xf1\xe6\xea\xca\x74\xdf\xee\x5a\xa7\x76\x33\x17\x0b\x3c\x23\x30\x62\x90\xc7\x46\x09\x0b\x78\xbc\x9f\x99\xf5\x86\x04\x8c\x4e\x7b\x0d\x0c\x64\xcb\x3d\x41\x0e\x8a\xe9\x37\xb0\x83\x28\xa5\xf0\x8a\x37\xf0\x68\x2d\x1c\xa8\x5b\xfe\x68\xd3\x5e\xf3\x56\x48\xf3\x44\x2d\x56\x49\xd1\xe3\x4a\x32\x1e\x35\x48\x63\x24\x4e\x80\x2c\x39\xce\x20\x1e\x1d\x94\xb8\x40\x95\x1f\xc7\x0e\xb2\x19\x06\xf5\x67\xcb\x0d\x77\xe7\x1d\xb1\xa3\xc7\x61\xbe\x53\xb5\x81\x5c\xac\x53\xfc\x51\xfd\x36\x02\x0c\xaf\x58\x54\x7e\x8a\x5b\x8a\x7b\x49\x0a\xe0\xdd\xe5\x6a\x3e\x77\xa6\x74\xdc\x80\x44\x6d\x8b\xa8\x5c\x56\x32\x1a\x61\xa4\x33\xba\x3f\x6b\x63\x93\xc6\x1e\x56\xd3\x99\x82\x40\x5e\xa2\x5e\xe9\x45\xd2\x6a\x31\x52\xd0\xd4\x4d\x46\xba\xa2\x86\x79\x4e\xa7\xd1\xea\x79\x2f\xfe\x92\xd0\xa4\x3b\x96\xb8\xd7\xb1\x22\x98\xd3\xde\xc9\xfc\xd9\xea\x64\xbe\xb7\x17\x27\xae\xf0\xa9\x18\xce\x47\x24\xef\x26\x22\x9a\xc7\x92\x23\x76\x87\xe1\x8e\x20\x81\xc4\xc4\x92\x38\x77\x36\xc0\x71\xd3\x2e\x2c\x8b\x4f\xd2\x69\xe4\x5f\x88\x69\x1c\xa7\xfa\xf0\x76\x3a\xac\x7b\x9b\x8b\x1c\x36\xe9\xbc\x60\xca\x48\x05\x18\xfa\xac\xe4\xd8\x21\xf1\x63\x8e\x67\xdf\xa9\x46\x2a\x77\xeb\x8b\x28\x77\x51\xd2\x71\x93\xa0\xee\xab\x06\x2b\xef\xf1\x6f\x18\xac\x53\x6d\xf3\x60\x9b\xe5\x80\x5a\xec\x85\x43\x86\xe6\x29\x58\x52\x9a\x2e\x6c\x53\x0d\x87\x00\xab\x6e\xa2\x54\x5e\xb8\x2e\x4a\xc1\x69\x0a\x17\x7b\x3f\x3a\x0c\xf6\xc8\xb2\x3b\x95\x56\x17\xb0\x38\xd7\x58\x5c\xe4\x21\x19\x7d\xc4\xed\xa5\xd0\x94\x60\x67\x6b\x8f\x4f\x60\x10\x93\xa2\x60\x5c\xb4\x51\x66\xaf\xfc\xe5\x78\x77\x0c\xfe\x42\x5b\xb9\xcc\x86\xdc\x9d\xcc\x14\x35\x23\x62\x73\x77\x28\xf0\x12\xe1\xb3\x26\x01\x9d\xab\x6f\x4e\x29\xc7\xa3\xd7\x44\xc7\x45\x89\x23\xd7\xbf\x2c\x8a\x61\xef\xab\xdc\xef\x86\x09\xab\x49\x30\xf3\x35\x5e\x84\x60\x13\xcd\x49\x86\x00\xfb\x6d\xb5\x58\xee\xa7\xd3\xfd\x2c\x17\xfb\x98\x47\x71\xd2\x96\x5f\xc1\x81\x36\xab\xe3\x55\xbf\xcd\x3d\x68\x13\x5c\x60\xb5\x42\x36\x99\xee\x28\x5a\xbb\xac\x9b\xcc\x3f\x25\xf7\xc5\x3b\x03\xad\x4e\xc7\x61\xbc\x33\x17\x6b\xa8\x08\x05\x13\x00\x72\x35\x4a\x81\x3f\xbb\x99\xef\x7e\xab\x81\x5e\x93\xf8\x65\x7b\x57\x64\x34\x43\xe7\x5a\x88\x91\x4e\x14\xa8\xef\xf5\x3e\xcd\xbc\x20\x1c\x5f\xa7\x53\x0a\x49\x29\x3c\x3b\x4a\x3d\x79\x3b\xa1\xda\x34\x2f\xa6\x66\x65\x48\xea\x3d\x0c\x7f\xae\x2c\x29\x11\x7e\x37\xcc\x4d\x7a\xe2\xa8\xea\xb5\x09\xb4\x7a\xac\x57\xc5\xbb\x0d\x35\xfa\x2e\x85\x26\x8a\x4e\x31\x4b\x36\x6e\x48\x64\x72\xc3\xe6\x7b\xed\x9d\x61\x7b\x0f\x9e\x3f\xdc\xae\xd2\xc9\x5e\x7b\xd4\xf6\x79\xe0\x06\x8a\x32\xc4\x2d\x01\x07\x58\xa7\x58\x70\x98\xa1\x66\xc2\xb2\xd2\xec\x0b\x95\x47\x74\x8b\x96\x0f\x1b\x6e\x66\xbf\xe5\x7c\xc9\x32\x34\x7a\xda\xa6\xdd\x06\xba\xbe\x89\x89\x74\x7b\x71\xd8\xc7\xa3\x00\x39\x45\xf8\x16\x8a\xad\x70\x97\xa1\x5b\x5b\xd0\xd4\x0e\x49\x5f\xd6\x45\xed\x65\x2d\x68\xa1\xb1\x76\xe0\x8e\x2e\xe2\x78\x5d\xe9\x24\x8f\x63\x4e\xf3\x6a\x27\xab\x70\x27\x79\xdc\xe2\x74\xd5\xd0\xc9\x0a\x08\x31\x07\x78\xa0\xdc\x62\x8b\x5c\x30\x03\x42\x92\x10\x97\x1b\xa8\x10\xe2\x4e\xe5\x7c\xe9\xd7\x75\x16\x33\x2c\xd9\x71\xb8\x22\x47\x85\x2a\x7a\x10\xf7\x1c\x92\x84\x29\x6b\x89\xee\x74\xae\x02\x41\x93\x1a\xad\xab\xc0\x28\x42\xb2\x80\x33\x22\xa8\xa6\x47\xe3\x4a\x65\xc2\xf2\x1f\xa7\xe6\x78\x9e\x17\x76\x1e\x2d\x50\x22\x55\x6c\x5b\xed\x66\x1f\xf6\x46\xf2\x86\x18\xf6\x47\xc0\xbd\xdc\x75\x8b\xf1\x8c\x4d\x56\x73\x76\x21\x37\xf9\x7c\x8e\x57\x2b\x87\xf8\x81\x26\x5a\xc3\x2d\x13\x2f\x99\xb2\xf5\xcb\xb9\xa4\xbc\x53\x79\x5f\x64\xec\x13\xbc\xcd\x55\x8a\x4d\xc9\x1d\x5a\xf0\x37\xe9\x28\x9b\x75\xd7\x24\xa1\xb9\xb1\x88\x2e\xa8\x4a\x77\xcb\xc8\xaa\xb4\xe1\xe7\x1e\x1c\xc0\x8c\x7a\x6c\x0c\x12\xb3\x5b\xb0\xa5\x56\xfb\xe8\xed\x12\xfd\xcf\x0a\x32\xab\x1a\xbd\x4e\x24\x6b\xa0\x98\xee\x31\x29\xc8\x8a\xcc\xc8\x34\x6e\x35\x2c\xb9\x9c\x9f\x01\x53\x42\x30\x1e\xce\x92\x26\x12\x4c\xd7\xc9\x6d\x34\xf1\x89\xc7\xeb\xe4\x36\x8e\x96\x21\x49\xd7\x6f\xd1\x92\xc8\x06\x34\x3d\xf7\xdb\xf7\x6b\x06\x14\x11\x92\x6a\xf8\x81\x5a\xc0\x24\x7b\xb6\x5a\x01\x35\x10\x4d\xbe\xf0\x36\x2a\x03\x74\x0c\x0c\x47\xce\xf7\x7d\x17\x6b\xd9\xb5\x53\x2d\xaa\xf6\xba\xc4\xde\xad\x4b\xcc\xad\xf6\xbc\x74\x06\xd3\xca\x2c\x9d\x92\xc6\x0f\x0f\x91\xbf\x6f\x55\x29\xb3\x1e\x9c\x88\xb8\x1a\xd3\x23\xf3\x63\x2f\x14\xfa\x0e\x3b\xdc\x82\xa5\x00\x76\x35\x5f\x1e\x96\x76\xad\xa7\x16\x4f\x6a\x3e\x65\xb1\xe4\x4d\x4f\xeb\x04\x4f\xda\x02\xc1\x39\xce\x85\xfc\xac\xb3\x3b\x83\xfd\x29\x64\x62\x2f\x1c\x94\xd0\x24\xc9\x49\x71\xcc\x39\x8e\xb9\x6e\x60\x5c\x0e\xcc\x3f\x4f\x92\x6b\xd6\xab\x3e\xa7\x79\xcd\xa0\x73\x35\x68\x32\xa6\xe5\x61\x97\xed\x66\xa3\x84\xac\xc8\xee\x6e\x4a\xe6\x65\x5e\xaa\x08\x9d\x85\x97\x51\x41\xc6\xe6\x24\xbc\xfc\x5e\xaa\xdd\x8f\xf7\x91\x18\x63\x5e\x4b\xc6\x43\xec\xdd\x7d\x9c\x83\xa1\xdf\x31\x5c\x88\x1f\x62\xc3\xd3\x8c\x7d\x55\xc8\x90\x4d\x27\xc2\x0c\x4c\x9f\x09\xab\x22\xb3\x87\xc2\x3d\x01\x5b\xaa\xc8\x32\xab\x22\xd3\xfa\x31\xa3\x6a\x21\x70\x80\xec\x51\x30\xd0\xbd\xf4\xed\x69\x77\xe4\x15\x96\x7f\x5c\x2d\x03\xaa\x4c\x58\x07\x20\x3d\x2f\xea\x75\xf4\x0a\x69\x55\x75\x46\x4e\x0e\x16\x85\x07\x98\x48\xb4\x8b\x29\xe8\xf0\xb3\xa0\xbf\x7e\x5d\x28\x14\x47\xc1\xfa\x3d\x51\x74\x3c\x6d\xb9\x8d\xff\xc1\x9d\x90\x1c\xe9\x34\xe2\x60\x45\x59\x8e\xcd\x61\x87\x80\xbc\x1c\x1c\xec\x74\x1a\xdd\x48\x4a\x31\xa3\x1c\x28\xa0\x9d\x74\x1a\x55\x54\xc6\xbc\xd3\xe1\xf1\x97\x8c\x5e\x7a\xf9\xb3\x38\xe1\x16\x36\xc6\x20\xcd\x71\xb7\xbb\x37\xb9\xb5\x2c\x58\x78\x18\x26\x24\xab\x78\xf7\xbb\xc6\xae\xa2\xd6\x55\xc3\x2c\x48\x4b\x47\x81\xe8\x74\x6e\x94\x66\x54\x19\xd7\x7e\x40\xfb\x66\x13\xcb\x87\xbc\xde\x14\xce\x26\x2d\x84\xab\x3a\x0c\x99\x08\x32\x37\x92\x03\xdb\x4a\xaf\x68\x4d\x02\x87\x23\xb3\x84\x69\x21\x30\xc6\x96\x08\xc4\xd8\xfa\x14\x09\x27\xca\x56\xdc\x02\x39\x91\xb6\x63\xc3\x3e\xdd\x5c\x6b\xda\xc1\x5b\xd9\x01\xee\xb4\x2b\x71\x2e\x5f\x39\xda\x95\x9e\xbc\xa5\x90\xce\xc0\x9c\x87\xfd\x41\x2f\x76\xde\x5e\x27\xb7\xa7\x07\xf8\x6a\xc9\xd9\x32\xe1\x90\x10\xfb\xf4\x08\xdf\x29\x8a\x04\x5e\x3d\xc1\x57\x06\x57\xfc\x29\xcf\x3f\x9e\xf6\x1f\xe1\x6b\xc4\x60\xf0\xf2\xf0\xc0\xef\x05\x68\x9c\xd3\x47\x7e\xa3\x2f\x92\xf9\x9c\xf1\xd3\xfe\x81\x6e\x58\x21\x08\x68\xe0\xe0\xf8\x91\x57\x16\xa8\xc2\x6c\xcc\x4e\x8f\xfb\xb2\x69\x6b\x05\xf1\xbb\xeb\xd7\xb2\xbb\x1b\xb1\x8e\xd0\xf6\x8b\x8f\x1a\x74\x96\x8e\x84\x19\xe5\xcb\x1f\x35\xf1\xe5\xb2\x54\x8f\x1b\x14\x7e\xaa\x09\xe0\x14\x74\x1b\x72\x2f\x5e\xfb\x0d\x6c\x6b\x44\x99\x19\xf6\x49\xff\x2a\x2a\x57\xa6\x2f\x79\x07\x42\xb4\xea\xd5\xd7\x60\x66\x29\x87\x77\x11\xe5\x64\x45\x0a\x92\xb8\x83\x6c\xd0\xb3\x95\x14\x16\x15\x1a\x39\xa5\x99\x21\xa7\x72\xfa\x4a\xd9\xde\x79\x7e\x82\xe8\xd0\x10\xcb\xb9\x7d\x99\x18\x7c\x30\xc8\x08\xd6\x1b\xa4\x64\xec\x54\x18\xe4\xe8\x36\x01\xd8\x15\x03\xcc\x2b\x4c\x0b\x91\xe5\xe1\xa7\xba\x10\xd4\x89\xf7\xd5\x15\x8e\xc5\xe4\xe3\x10\x55\x95\x21\x4d\xd2\xb7\x9c\x2a\x29\x68\x52\xd2\x96\xaf\x1a\x81\x9f\x03\x0a\xae\xe3\xac\x30\x6a\x2a\xa9\xa0\xd8\x42\xe1\xd7\xd0\xaa\x49\x82\x3f\x86\x14\x23\x10\x92\xea\x46\x72\xb3\x4a\x80\xd8\x23\xbc\xbb\xca\x38\x4b\xc6\x33\xd9\x77\x1c\xc5\xad\x8c\x16\xeb\xa4\x62\xeb\xfa\x38\x20\xd9\x95\x37\x9f\xa3\xdc\xc4\xad\xd5\xba\x89\xd2\xf8\x94\x53\x25\xe0\x19\x08\xfa\x2a\x8a\x38\x35\xb4\x7a\x5c\x59\xc2\xd4\x2c\x21\x6a\x19\xdd\x75\x2c\xad\x9e\x30\xcb\xca\x37\xaf\xa3\xc3\xa8\x3d\xf6\x54\x00\x19\xb8\x80\x88\xae\x32\x93\xd2\x3c\xdf\x4a\xc2\x13\xa2\xd8\xc4\x5a\xed\x92\x5a\x01\x04\xf0\x6b\x15\xa1\xc3\xee\x4d\x94\x34\xc0\x32\xa5\x89\x8e\x66\xeb\x68\x15\x1f\x6f\xab\xa5\x0c\xd9\x40\xfb\x79\xcb\x14\x59\x9e\x3d\x7f\x7e\x44\x0a\xfa\xa4\x93\x91\x15\x1d\x8e\x5a\x47\x9d\xac\xd3\x59\xa9\x7e\x95\x7f\x6a\x4c\x0e\xdc\x77\xe0\xac\x1a\x93\xbe\xfb\x4e\x79\xae\x4a\xba\xc9\xf1\x00\x4d\x89\x3c\xd0\x09\xd9\xdd\x2d\x62\x92\x6a\x75\x1b\xb8\x7d\xda\xe9\x3c\xde\xac\xb2\xc5\x46\x95\xe7\xb0\x70\x6d\x67\x37\xe2\x40\x00\x39\xe6\xa8\xb0\xc8\xd0\x91\x1e\x3c\x6e\xb6\x72\x75\xed\x6f\x3d\xb5\xaf\x87\x17\xd3\xae\xdd\x74\x2d\xb9\xa8\x9d\x4e\x94\xd4\xb8\x46\x31\xa7\x2c\x15\x68\x6b\x59\x45\x57\x88\x9a\xac\x4e\x40\x73\xab\xa9\xeb\xe9\x98\xb2\x22\x88\xd8\xf2\x18\x84\xe9\x29\x49\x48\x8e\x41\x4f\x0a\x9a\x00\xff\xa2\xbb\x98\xd3\xc2\xf1\xa3\x96\xd7\xf8\xef\x51\xea\xb5\x4c\x8e\x62\x35\xe8\x31\xcd\x55\x76\x69\xe4\x7e\x0a\x32\xb5\x6f\xb2\x64\xc1\x0a\x32\xa3\x2b\xf7\x8e\x8e\xe6\x44\x21\xa2\x59\xfc\x25\xef\x8e\xe7\x2c\xe1\x8e\x56\x71\x42\x7b\x27\x93\x67\x63\x4d\x71\x4c\xf6\xf6\x62\x3c\xbc\xe3\xe1\x64\x64\xcb\x2d\xe9\xcc\x31\xc4\x24\x0b\x3a\x53\x96\xa0\xe4\x8e\x9a\xc4\x48\xf7\xb4\x77\x72\xff\xec\xee\xe4\xde\x36\xb2\x1c\xde\x3b\x8d\xdc\x7a\x7e\xd9\x8b\x98\x7c\xa0\xbd\x93\x0f\xcf\x6e\x75\xef\x1f\x6c\xc5\xc5\xf0\x76\xf8\x61\x34\x8a\x5b\x39\x6e\xe0\x8c\xdc\x92\x29\xb9\x23\xbb\xbd\x78\x9d\x69\x0f\x65\x95\x6d\xc9\x3e\x9a\xcd\xd8\x74\x9f\x5a\xa6\xd3\x97\x9a\x28\x49\x8e\xdd\x11\x20\xcc\xd1\x4b\xb4\xa2\x79\x79\xa9\x8b\xca\x52\x27\x06\x01\x2a\x91\x79\xeb\xf7\x68\x45\x1e\x1d\xc9\x2d\x38\xaf\x48\x72\x74\x0c\xed\x7e\x87\x93\xa9\x2d\xfe\x44\x96\x9e\x96\xb4\x7b\xda\xad\xdd\x94\xea\x1f\x40\xb9\x99\x6b\x88\x1f\xa3\xdf\x4f\x61\x22\x22\x83\xbe\x0e\x07\x45\xa6\x64\x4e\x66\x64\x77\x77\x0c\x30\x95\xaf\x4c\x56\x90\xc2\x8a\x82\xa0\xf5\x83\xe3\x47\x71\xa7\xb3\x1b\x90\x0a\x49\xaa\xb3\xc4\x09\xff\x2d\x5a\x92\x09\x29\x88\x6b\xae\xfe\x64\x13\xa9\xe0\x9f\xdf\xe0\x71\x83\xb3\xec\x4b\xf2\xf2\xb8\x95\x04\x24\x79\xae\xf7\x43\xbf\x24\x46\xbd\x61\xb7\x69\x06\x52\xdb\x9f\x79\xbe\x52\xb6\xed\x25\xb9\xac\xf2\xa3\x55\x46\xf3\xce\x14\x0e\x4b\x2d\xd5\xca\x47\xd9\xa7\x9d\x3f\x39\xf2\x8e\x66\x57\x85\xef\x90\x77\x6c\x90\x71\x34\xca\x00\x0b\x26\x5c\x49\x47\x41\x76\x77\x33\x49\x4a\xa8\x3d\xf3\xa7\xe6\x68\xb0\x86\x92\x2f\x02\x01\xec\xc6\xf3\xa4\x28\x9c\x6c\xd8\x5a\x4a\xb6\x31\xfd\xb5\x33\xa2\x80\x93\xab\x12\xe5\x7e\xb9\x53\x91\x3a\x09\x60\xb6\x65\x32\x66\x83\x8c\x08\xbe\x2a\x44\x9a\xdd\x0e\xf8\xba\xd5\x86\xee\xdb\x14\xec\xa1\xdd\xf1\xe8\x48\x08\xa4\x34\x83\x21\x1b\xd1\x54\x45\x4b\x32\x52\xd1\x92\xfb\xb0\x3f\x0d\x4c\xf2\xc4\x88\x50\x49\x9e\x40\xf4\x1d\x0e\xaf\xb4\x93\xea\x1c\x9f\xa6\x3b\xcf\x9b\xcb\x19\x85\x80\x74\x4e\x3a\xfc\x0d\xe5\x5d\x33\x41\x92\x50\xde\xd5\x53\x94\x68\xdb\x4e\x51\x80\xeb\x8d\xdc\x6f\xaf\x23\x77\xae\x71\x4c\x54\xd2\xc2\x5d\xe3\x32\x59\x6c\x96\x77\x09\x62\xb4\x2a\x70\x35\x9d\x94\xf5\x2e\x41\xa9\x57\x4a\x8a\x38\x5e\xaf\xe5\xb8\xa0\xcb\xba\x29\xaf\xca\x53\x06\x31\x16\x99\xd3\x28\xa5\x2b\x33\xef\x95\x37\xef\x95\x99\x37\xd9\x38\x7a\xcc\xd2\xe8\x4f\x61\xeb\x39\xcc\xad\xd7\x9c\xbf\xda\x65\x2e\xf9\x27\x8f\x6f\xec\xc3\xcd\xcc\x48\xdf\xe1\x2c\xdf\x57\xe2\xb2\x80\xbd\xfa\xcd\x9c\x75\x0b\xb0\xcf\x71\xd3\x86\x02\xdf\x76\xcb\x44\x24\xe2\x93\xfd\xfe\x2e\xa5\x79\xa7\x93\x06\x3c\xba\xf2\xbd\x3e\x49\x62\xc2\x51\xa2\xd5\xe9\x44\xfa\xa7\xdc\xbf\x89\x66\x5d\x9f\x6e\x32\x21\xab\x92\x49\xce\xf5\x96\x18\x4c\xeb\x5f\x74\x0d\x78\xa4\x55\x74\x27\xe9\xe4\x05\x5c\x2f\x5a\x89\x93\xf8\x8b\xc5\x3e\x2f\xd9\x58\xbc\x70\x54\x1b\x51\xfb\x65\xa9\x8e\xf2\x42\xff\xff\x69\x69\x63\x3b\x06\x54\xa4\x11\xef\x26\x6f\xbc\xea\xdd\xe1\x4c\xca\xbf\x3e\x70\x52\x25\xd6\xcf\x5c\x99\xb9\x7b\x65\x6d\x72\xdb\xfb\x21\xdd\x5e\x27\xb7\x97\xc9\x82\xf9\x3d\x87\xb8\x88\x0c\xc9\x94\x7e\x0d\x99\xe2\x2a\x9c\x9c\x71\x84\x99\x7d\x50\x3e\x29\xe2\x79\x6c\x14\x54\xd3\x12\x45\x43\x66\x2e\x15\xfa\x53\x34\x95\xcc\x7f\xa6\xd4\x44\x18\x60\x67\x46\x56\xa8\x1c\x95\x74\xaa\x3f\x68\x3c\x22\x3d\x7b\x44\xa2\x69\x23\x73\x9a\x38\x21\x5f\xb0\xfd\xb1\xdc\x07\x73\x64\x59\xf1\xf8\x5c\x43\x0d\x62\xde\x2a\x0e\xd1\xb1\x54\xda\xca\x69\xaf\xd6\xdd\xd2\x12\x1e\x09\x7d\x15\xe5\x0d\x62\x89\xa2\x46\x2c\x91\xfb\x8c\x6d\x12\x60\x67\x53\x3f\xe9\x5d\xea\x4e\xad\x2c\xa3\xb0\x64\x06\x77\xd5\x28\x4f\xb6\xe5\x8d\x32\x67\x6a\x56\xd5\xee\x6d\xde\x56\xa2\xd3\x97\xa6\x24\xc1\x4c\xa4\xb9\xb5\x68\xd8\x24\x8b\xf2\xda\xf2\x51\x5d\xc5\x8d\x33\xd3\xc9\x41\xfb\x40\xb8\x9b\xd9\x84\x88\xa4\xcc\x31\xe4\x73\xfa\xc8\x80\x79\x49\xb1\xa3\x59\x52\x9c\xdf\x25\x73\x8d\x6a\x53\x44\x8b\x1e\x61\x52\x72\x92\x95\xe5\xd5\x68\x72\xc7\x3c\xaf\x4c\xa1\x56\x5d\x11\xab\x47\xde\xb4\xeb\x9a\x33\x28\x23\x00\x79\x26\x95\xa3\x5c\x22\x2e\x81\x0d\x2b\x68\x82\x93\xdf\xef\x9f\x14\xcf\x69\xef\xa4\xd8\xdf\xd7\x97\x63\x32\x2c\x46\x92\x49\xa8\xb9\x29\xe4\xe7\x18\xce\xaa\x6a\x53\x5e\x19\x2b\xb2\xdb\xc7\x5b\x63\x2e\x6f\x0d\xc7\x02\x74\xbe\xd7\x27\xe3\x98\x64\xf6\xba\xd0\x3f\x87\xab\x11\x1d\x3b\xb3\xfe\xba\x0b\x23\x2d\xcd\x12\xf9\xcc\xd6\xfb\xa8\xdd\x51\x52\x06\x1d\x27\x0b\x02\x9a\xb1\x98\xc8\x2f\x69\x76\xc7\x38\xc4\xd0\x52\xa1\xb4\x9c\x4f\x98\xbb\xa5\x4d\x30\xd8\x96\xfa\x64\xa9\xf7\x66\x4f\xe1\xf2\x36\x46\x45\x5a\x15\x27\x3c\xfd\xfa\x2b\x24\xc4\x7e\x94\x8d\x30\x90\x45\x68\xa5\xf2\x12\x54\x41\x76\x10\x71\xe5\x24\x41\x3d\x95\xbd\x1f\xa3\x9c\xa4\x01\xe3\x90\x7f\x81\x28\xc6\x95\xab\x3e\x2d\x9b\x7e\x8c\xf3\xc5\x22\x15\x2e\xd3\x82\x74\xfa\xdf\x1a\x15\xee\x86\x00\xd1\xaa\xc6\xbc\x41\xe5\x9e\x77\x4d\x20\x35\xca\x89\xb9\x4f\x68\x46\x72\x8f\x4f\xa5\x29\xc9\x7d\x25\xbc\xa9\xd7\x26\xf9\x8f\xd4\x2d\x9a\x76\x8d\xbe\x1d\x97\x04\xd5\x48\xee\xa8\x5a\x5c\xab\x09\x05\x04\xf8\x52\x56\x6f\xff\x6a\x02\xcf\x76\xc0\xd1\x60\xa8\x02\xe8\x46\x85\xa5\xb2\xe0\x98\xa4\x93\x7d\x04\x89\x8a\x52\xd7\x96\x9f\xaa\x86\x75\x3f\x14\x48\x25\x93\x04\x0b\x33\x04\x92\x1a\x65\x0b\x8c\x02\x95\x35\x01\xee\x50\x08\xf0\x67\x76\xe8\x7b\xd4\xb1\xea\xe8\x26\xae\x5a\xf5\x57\x75\x64\x24\x15\x91\xcf\x59\x37\xcd\xa6\x79\xd4\x7e\x5f\xb0\x9d\xff\x19\xe7\x99\x60\x9f\xc5\xff\x90\x9d\x24\x9b\xec\xfc\x8f\x44\x4a\xcf\x96\x89\x98\x3d\x8f\xff\x67\x47\xe4\x3b\x10\xb4\x08\xe8\xe9\x1d\xc1\x16\xcb\x79\x22\x58\xb7\x1d\x13\x11\xb5\xe5\xbb\xb6\xd2\xbf\xfe\x9d\xfe\x0a\x5b\xf9\xe7\x06\x3d\xac\xd6\xc2\x16\x2a\x10\x16\xaa\xd7\xf2\x71\x32\xf7\x19\x50\x23\x57\x4a\x69\xef\x24\x7d\xa6\xef\x9a\x93\x54\xab\xcd\x72\x9a\x0d\xd3\x11\x49\xa8\x18\xe6\xfb\xfd\x11\xf0\xd4\x92\xf6\x53\x58\x33\xc7\x90\xcc\xaa\xe5\x61\x32\xa2\xc5\xba\x26\x1e\x4c\xbd\x5f\x26\x8c\xd1\x18\xb1\x42\x4b\x0a\x6d\x2e\xe7\xa9\x88\xda\x12\x00\xb9\xff\x98\xd0\x7c\xd8\x1b\x29\x4b\x21\x88\x6e\xd5\x97\xcc\x3d\x18\x2d\xd9\x9b\x4a\x1b\x20\x2b\xd0\x51\x4a\x93\x53\xa1\xca\x28\x59\xcf\x20\x1b\x26\xa3\x53\x41\xe5\x7f\x03\x49\x73\x25\xe6\xee\x68\xff\x57\x3b\xee\x74\x56\xea\xbb\xfc\x6f\x10\x09\x67\xac\xb6\x0d\x52\xd0\x34\x26\x92\x4a\x9c\xac\xc6\xac\x2e\x6f\x9d\xe2\x56\xd6\x26\x04\x14\x9a\xa2\x3c\xdd\x46\xcc\x91\x6e\x10\x78\x57\x04\xe2\xea\x4b\x06\x7c\x12\xfb\xb4\xf3\xb3\xf5\x08\x51\xf1\x32\xff\x1e\xb9\x81\x27\x34\xeb\x17\xf0\x17\x4b\x54\x74\xda\xd8\xa6\xe7\xb3\xe8\xf6\x9b\x8d\x68\x4a\xe2\x1a\xab\x94\xa9\xf1\xa5\x5c\xd1\x3c\xa4\x90\x9b\xe3\x6b\x07\x16\x99\xba\xec\x0d\x04\xd2\x98\x4c\x25\xf9\x00\x77\x38\x86\xe2\x88\x0a\xb2\x8a\xc9\x8c\x26\xba\xe3\x68\xea\x46\xea\x00\xd3\xb0\x99\x47\x59\x2e\xe9\x4c\x13\x9e\x0b\x3a\xd1\x44\x06\xb9\x73\xe8\x98\x7b\x5a\xa6\xd8\x16\x5a\x9a\xbb\xdb\x8f\xc9\x2d\xbd\x2b\xef\xcb\x7b\x20\x3c\x94\x52\x56\xbd\xbb\x53\x44\xb3\x7d\x11\xc7\xe4\xbe\x44\x79\xdd\xea\x57\xb0\x74\x77\xae\xd0\x52\x1f\xe2\x1b\x2d\x1c\x46\xe9\xe5\x5d\x39\x0c\x89\x16\x17\x8f\x5d\x71\x31\xac\xde\x27\x3a\x1e\x7e\x18\x91\x73\x3a\x1f\x7e\x92\xe7\xfc\xb3\x1a\x36\x9e\xf3\x4f\x71\xeb\x66\x78\x3e\xa2\x9f\xd7\xe9\x34\xba\x8d\x75\x7f\x57\xb4\x77\x72\xf5\x4c\x4f\xf7\xe4\x4a\x37\xf6\x96\x5e\xed\xf5\xc9\x19\xbd\x1d\x2e\x86\x57\x23\x1d\xf9\x64\x97\xd2\xb3\x4e\x47\xcd\x21\x7a\x4b\xce\xe2\xb5\xfa\xed\x0c\xf0\x46\xbb\xdb\x58\xe7\x1b\xb8\x60\x96\xfa\xfa\xfe\xcb\x16\x56\xd9\x8e\x01\x89\x8d\x67\xbe\x9d\x55\x81\x9b\xfb\xc2\x86\x19\x76\xf2\x39\x38\xc7\xf7\xd1\x56\x6e\x55\x9e\xeb\x93\xba\x3c\x74\x8e\x01\x48\x22\x62\xc5\x2f\xfa\xc4\x66\xd5\xf8\xf1\x80\x67\xb5\xd2\x95\x38\x2a\xf0\xbf\x44\x89\x1d\xa7\xeb\x7b\xd2\x40\xbd\x69\x1f\xb6\xd7\x69\xe1\x19\x9e\x3e\x3a\x0e\xf8\xb1\x41\x21\xa7\xcc\xa6\x20\x32\x1e\xa9\xeb\x44\x18\xd7\xd2\x48\x1b\x57\x3f\xc3\x60\xd0\x6a\xfa\xb1\x1e\xd5\x85\x60\x0b\x15\x13\x99\xa4\xa8\x9b\x70\x9c\x79\x60\x0f\xfc\x21\x24\x6c\x44\x32\x53\x5f\x75\xb2\xeb\xab\xf4\x66\x9e\x66\xb7\x54\x48\x9e\x10\x63\x64\xfe\x01\x5a\xf8\x6b\x93\x05\x13\x36\xb8\x4c\x38\xcb\x54\x38\x4e\x6c\x53\x67\xd9\x33\x26\x37\x94\x37\xa6\x54\x82\x06\x50\x5c\x53\x67\x78\x6f\x7b\x01\xc1\xa8\x89\x00\x5a\x53\x1c\x0a\xac\x31\x5f\x62\x53\x41\xf9\xdd\x8d\xfe\xe5\x86\x05\xfd\x2b\xc0\xe0\xbf\x37\x46\x5a\xa9\x42\x40\x05\xa1\xf8\xbf\x3d\xe9\x0c\x0b\x6e\x9a\x73\x66\x53\x96\x9b\xf9\xfc\xa3\xcc\x99\x32\x7f\x88\xe0\xa5\xc8\xec\x18\x50\xc0\xa1\xbb\x52\x42\x00\x1d\x08\x06\x18\x54\xbb\xb1\x54\xce\xa9\x40\xee\x0f\xd7\xa5\x31\x69\xe5\x34\x59\x5b\x59\xe7\x9f\xfd\x6c\x02\xd5\xe1\xf0\xd2\x70\x32\x7f\x38\x29\xe5\x7a\x38\x92\x75\x2f\x0d\x47\xa7\x00\x01\xa7\x73\xc8\x88\xe2\xc6\xf5\xcf\x5b\x29\xcd\x9d\xb1\x30\xb9\xda\xa0\x2a\x48\xa7\xd1\xae\x49\xa3\x0e\xa1\x6d\x76\x43\xe7\x5c\xdb\x08\xe1\x68\x2f\xaf\x22\x41\xda\xc5\xdd\x6d\x3b\x6e\x09\x7e\xff\x45\x03\xe3\x6c\xf2\x5b\x32\x66\x99\x80\x80\x03\xed\x1b\x00\x0d\x64\xb8\x68\x3f\x1b\xa7\x7c\x3c\x67\xcf\x9f\xfd\x11\x7f\xb4\xe3\xf5\x38\x11\xe3\x99\xc4\x10\xeb\x69\x9a\x25\xf3\xf9\xbd\x5e\x54\xc9\xa6\x73\xe5\xc3\x29\x27\xaf\x3d\x3c\x1f\x1e\xb8\x02\x10\x4c\xd2\x4a\xbf\xdf\xbf\xbb\x90\x15\xd8\x7a\x0d\x56\x0d\x76\x36\x1a\xf3\x78\x63\x8f\xda\x93\xf4\xae\x1d\x0c\x42\xe1\x70\x3d\x3f\x2a\x6c\x87\xbd\x72\x14\x84\x24\x64\xca\x91\x4d\x25\x87\x95\x9b\x38\x33\x92\x60\xcd\x4f\x59\x43\x4d\x37\x4e\x22\x54\x1d\x88\x32\x30\xb2\xaf\x6c\xa0\x46\x87\x04\x2a\x94\x57\x6f\xdf\x9d\x5f\xfc\x7c\xf9\xf6\xa7\x3f\x9f\xbf\xb8\x06\x6d\x91\xbc\x66\x2f\x93\x05\xeb\x8a\xfc\xfd\x72\xc9\xf8\x8b\xa4\x90\xd7\x18\xee\xcd\xf6\xb3\xe2\xee\xf6\xf9\x33\xd9\x51\x7a\x9b\x29\xba\xe4\x79\x7b\x8f\xef\xb5\x9f\xfd\xd1\x7f\xf9\xec\x8f\xb2\x64\xbb\x25\x94\x41\xa6\x1c\x20\xcd\xe1\xde\x74\x96\xd9\xfe\x5c\x1b\xd7\x92\x04\x3b\xc1\x56\xab\xad\x24\xa5\x56\xd6\x95\xd5\xf6\x4d\x19\x6c\x49\x92\x52\x90\x48\xab\x6c\xf4\x79\x0d\x02\x10\xe5\xd3\x0f\x92\x90\x9c\xc8\x23\xef\x84\x65\xf9\xab\x64\xb1\xe5\x75\x16\xa5\x44\x6e\xcd\x75\x24\x24\x2d\x4e\xb8\xe2\x1c\xb9\xa3\x0a\x81\x00\xb2\x8e\x3d\x6e\xa7\x13\xa2\x31\x82\x3b\x19\x8e\xbf\x9d\x7b\x1b\x26\xd3\x36\x09\x91\xea\x0f\xa5\xca\xc4\xda\x8e\xc9\x01\xa5\x54\x54\x0f\x5c\xac\x55\x37\xda\x28\xb4\xb7\x8e\x58\x7c\xfa\x2d\xfe\x7e\x26\xa2\x67\xdc\x5d\x15\x6c\xce\x8a\x02\x9d\xb9\xa8\x89\x79\x85\xce\x5d\xed\xf6\x57\x86\x8d\x6c\x3e\x58\x0a\xc7\xc1\xa9\xca\xe2\x00\x25\xb8\xe1\x6c\x68\x13\x28\xba\xdb\x27\x39\xe5\xa7\x1c\x9c\xf8\xd2\x7c\x55\xe0\x56\x18\x08\xcc\xf7\x9b\xce\x27\xad\xbc\xd3\xc9\x77\x52\xb4\xa3\xcc\xa7\x3b\xd7\xec\xb3\xd2\x3b\xee\xf6\x4a\xf9\xa9\x94\x0e\xd2\x07\x05\xe1\xb1\xf6\x73\xff\xba\x11\xea\x40\x62\x9d\x8e\x7f\x0d\x04\xfa\x88\x49\x82\x5b\x6f\xa0\x68\x18\xce\x68\x7b\x26\xc4\x72\xf0\xc7\x3f\x7e\xfa\xf4\xa9\xfb\xe9\xb0\x9b\xf3\xdb\x3f\x1e\xf4\x7a\x3d\x79\xac\xda\xad\x72\x74\x6f\x8e\x99\x30\x18\xfd\xe2\x1d\xe6\x41\x9f\x4c\x58\x31\x1e\xf4\x89\x48\xc5\x9c\x0d\xfa\x6b\x92\xb2\x12\x57\x02\x36\x7b\x27\xc3\xf6\x4d\x9b\xb4\x6f\xd2\x5b\xf9\x77\x9e\x8f\x3f\xfe\x6b\x95\x0b\x26\x1f\xf2\xc9\xbd\xfc\x8f\xb7\x49\x7b\x0c\x34\xa1\xfc\x91\x4f\xe4\xb7\x89\xdc\xaf\x72\xbb\x93\xf6\x64\x2e\xff\x08\xc8\x5d\x81\x09\x2c\xe4\xc7\x59\x5f\xfe\x39\x90\x7f\x0e\xe5\x9f\x23\xf9\xe7\x58\xfe\x79\x24\xff\xb0\x04\x0a\xc9\x26\x53\xf9\x6f\x21\xbb\x9f\xa7\xf0\x07\xd4\xa6\x46\xae\xda\x5e\x30\x91\xb4\x49\x3b\xcb\x61\x24\xb9\xec\x6e\x29\xff\x71\x39\x10\xbe\xba\x91\x83\x2c\xe4\xbf\x45\x32\x97\x1f\x8b\x65\x22\xab\x15\x82\xe7\xd0\x4c\x21\x78\xfa\x51\x96\x2d\x56\x37\xf0\x57\xd6\x06\x59\xb5\xfc\x5f\x0e\x7c\x25\xff\xc9\xaa\x77\x09\x6f\x8f\x82\xf9\x09\xf4\x9a\x42\xd8\xec\x3e\x12\xc0\x39\xa3\x7f\x1c\xfe\x53\xec\xff\x93\xef\xfc\xf3\xf3\x59\xef\x9f\xab\xfe\xa3\x27\xf2\xef\x93\xde\xf9\x3f\x57\x72\xcd\xf6\xe1\xbf\x33\xf9\xf7\xe0\x09\xfc\x7d\x0a\x7f\x5f\xc9\xbf\xc7\xaf\xfe\xb9\x3a\xec\xf5\x7a\xff\x5c\xbd\x3a\x7f\xf5\x6a\xf4\x47\x92\x30\xda\x5e\x65\xa0\x98\x61\x13\x6b\x43\x39\xc9\xc7\x70\xcb\x29\x33\x68\xfd\xa4\x8c\xaf\x18\x29\x59\x63\x57\x39\x31\x5d\x41\xd3\x8e\x60\x82\xf4\x5e\xed\x42\xeb\x84\xd7\x6c\xdd\x50\xae\x50\x71\xdf\x5d\xf9\x9f\xbd\x8e\x83\x58\x72\x4d\x4a\xef\x43\x71\xcf\x49\x06\xc8\xf4\x14\xdc\xfb\xdc\x2b\x95\x4a\xfa\xe2\xe1\x01\x48\x1e\x79\x03\x42\xb0\xc5\xa1\xd0\x17\xe1\x28\x1e\x44\x9c\xba\x5f\x77\xfb\x31\xe1\x9d\xce\xae\x42\x3f\xb0\x8a\xb5\x69\x3c\xd4\xb0\x76\x92\x9d\xf6\x1e\xdb\x6b\x4b\xfc\x91\x4e\xd8\x4e\x92\xed\x5c\xfd\xfa\xf3\x0e\xca\x0d\xdb\x7e\x92\xd0\xf0\x54\x2f\xaf\x22\xce\x08\xf3\xd5\xf3\x35\x50\x61\x71\x63\xca\x3c\x79\x15\xb1\x12\xc6\x82\x6b\x4b\x34\xe0\x5b\xac\xa7\xf1\xad\x1f\x45\xbd\x82\xe5\xad\x49\xa0\xd7\x4d\x06\x99\x8e\xe0\xf2\x64\x24\x93\x97\xa6\xb6\x41\x85\x78\x86\x25\xec\xcb\x1c\xec\x6b\xe3\x8a\x88\x98\x6d\xba\xfc\xb8\xa5\xf7\x55\x6d\xed\xb5\x21\x5c\x04\x2e\xab\x21\xc4\xe2\xa6\xfb\x14\x2c\xa5\xb0\xd1\xca\x20\x5b\x0e\xdd\x12\xd8\xbc\xad\x12\x00\x12\x09\x80\x64\xcb\xce\x92\x72\x67\x84\x79\x57\x40\xa2\xc0\x57\xd0\xfc\xd4\xa3\x60\x06\x2e\xcd\xd3\xf2\x48\x16\x46\x0a\x4c\x6e\xab\x96\xec\x7a\x53\xde\xc0\xd2\x0e\xbb\xf6\x33\x08\x7a\xeb\xbe\x6d\x1b\xc6\xd3\x1b\x25\x2f\x27\x95\xdc\x2d\xfc\x3b\x03\xee\x7d\x4b\x80\x86\xd2\x61\x0b\xe7\xfd\x68\x3e\x9f\x2a\x03\x48\xd6\x64\xc1\xa5\x4f\x4d\x25\x07\xc3\x61\x30\x07\xc3\xa1\x9b\x83\xe1\x10\x23\x1d\x4b\xfa\xdf\xed\xe2\xf2\x4a\x9e\x2b\xc2\xe3\x81\xff\x1e\x0f\x35\x5f\x47\x4a\x12\x53\x49\xf5\xc1\x4d\xde\xab\x8c\x0a\x16\x25\x92\x8a\x95\x9c\xa9\xfa\x49\x38\x78\x3f\x87\x72\x84\x64\xeb\x38\x2a\xd8\xc3\x43\x54\x30\x9b\xb0\x70\xce\xbe\x29\x58\x84\x43\x3c\x9a\xcb\x45\x10\xc7\xee\x4b\x79\x89\xd5\xe7\xaf\x6f\x5a\xd4\xc6\x95\x08\x42\x2b\xc3\x13\x16\xae\xa6\x62\xcc\x7a\xdf\x23\xb5\xe6\x78\xa2\x03\x99\x29\x8c\xe7\x9c\x9f\xf7\x93\x70\xf7\xc8\xba\xeb\xe4\xe6\x5f\x99\x2b\x8a\x6c\xcc\xe4\xaf\x31\xc3\x65\x1a\xe3\xac\xa7\x8c\x8e\x19\xae\xd7\x98\xc9\x05\x6b\x79\x09\x5a\xa6\xaa\xf6\x8c\xd1\x22\xb8\x90\xad\xf0\xf2\xce\x54\xb5\x09\xa3\xc3\xf6\x6f\xc9\x5d\x52\x8c\x79\xba\x14\x03\x49\xd2\xdc\xe8\xdf\x23\xb2\x94\x9f\xcf\xda\xa4\xfd\xd3\xdb\x97\x7f\x6f\x93\xf6\xeb\x8b\xcb\xbf\xb4\x49\xfb\xe2\xcd\xcf\xf2\xef\xab\x77\x67\x6f\xce\xe5\xc7\xb3\x2b\xf9\xdf\xab\xb7\xef\xde\xb4\x47\x64\x21\xeb\x9c\xbf\xf9\xe9\xfc\x65\x7b\x44\xee\xe4\xc3\x8c\xb3\xa9\xa4\xa3\xf8\x58\x52\x87\xc9\xf8\xe3\x2d\xcf\x57\xc0\xc0\x24\x30\x98\xf6\x88\xdc\xcb\x72\xb2\xc0\xc8\x4a\x80\x6e\x99\x7b\x2e\x41\xf7\xcf\x8c\xa2\x47\x38\xac\xd7\x8d\x57\x50\xdf\x21\xec\xe1\xe1\x96\x45\x4b\x79\x9f\xc6\x9d\xce\x2d\x8b\xee\xe0\xec\x9a\x5a\x1f\xbc\x5a\x3b\x36\xb2\x6c\x74\xcb\xa2\x85\xac\x06\xb5\xee\x65\x21\xa7\xda\x27\xbf\x1a\xf6\xfd\xf0\x80\xcd\x39\x31\x75\x59\xd9\xa0\x53\x3b\x1a\xaa\x01\x1a\x6e\x06\x68\x96\xcf\x91\x15\x7c\x64\x26\x3e\x64\x2b\x85\x4b\x33\xc8\xae\x0f\x4c\x9a\xd5\x9c\x7e\x42\x43\x91\x1b\x16\xa5\x92\x0b\xf9\xe2\x71\x21\xe3\x7c\xfe\x2a\xe7\xef\xdf\xbd\x46\xa7\x9c\x5b\x16\x4d\x18\x49\x74\x7f\xed\x55\x56\x24\x53\x36\x68\xef\x69\x6d\xad\x84\x8d\x6c\xe7\xd4\xf9\x34\xc8\x9d\x90\xbf\xcc\xa3\xb9\x80\x25\x4e\x5a\x78\xf7\xee\xb0\x38\x93\xa7\x9b\xb6\x97\x3c\x5f\xb6\xdd\xa0\x15\xa2\x2b\xf2\xd7\xf9\x27\x3d\x83\x56\x01\xc5\x25\xb5\xa6\xca\x92\x8c\x16\x8a\x12\x4b\x84\xe0\xf2\x51\x68\x5a\x48\x15\xc0\x54\x17\xed\x42\xdc\xcf\x19\xb0\x84\x7e\x8b\x0f\x0f\xe0\x6a\x8f\xf0\x22\x39\xcd\x48\x94\xd0\x2b\x36\x4c\x7d\xd8\x8d\xe2\x4e\x27\x19\xe6\x7e\xe5\x91\xdc\x27\xa6\xf3\x98\x7c\x31\xf9\xa7\x26\x83\x8c\x48\xa4\x33\xe0\x6b\xb8\x8d\xaf\x18\xfd\x72\x71\xf9\xcb\xfb\xeb\x81\xe4\xa1\x16\x83\xdd\x1e\x49\x56\x12\xce\x9c\x4b\x4e\x6a\xb7\x47\x24\x4f\x32\xd8\xed\xad\xc9\xd5\xf9\xeb\xf3\x17\xb6\xdc\x9a\xbc\xfd\xe5\xfa\xe2\xed\xa5\xf3\xe2\xfa\xfc\xbf\xaf\xcf\xde\x9d\x9f\x39\xaf\x5e\x9f\xfd\x74\xfe\xda\x79\x7e\x75\x71\xfe\xfa\xe5\xd5\xb9\xdb\xcc\xeb\xf3\x9f\xcf\x2f\x5f\xba\xed\x82\x78\xc7\x79\xf1\xd3\xfb\xeb\x6b\xb7\xa3\xb5\x3d\x59\x6f\x59\x59\x7e\xa2\x21\x96\xd2\x2f\x28\x8f\x1f\x30\xb0\x3b\xf6\xcc\x8f\xf9\x5a\xf9\x74\x55\x28\x6b\x93\x6a\x11\xc8\x3f\x92\x22\xb7\x43\x71\xa3\x80\x81\x10\x98\xc0\x16\x34\xb7\x69\xbd\x34\xdd\xa2\x00\x0e\x7a\x5e\x68\x40\x92\x2f\x83\x00\x51\x8a\x47\x2f\x76\xa8\x9d\x37\x0a\xa7\xcb\x61\x85\x2e\xf3\xa8\x0d\xcb\xd4\x56\xe8\xa0\xad\x41\x0d\xcf\x71\xa7\xd3\x06\x0d\x06\x58\x17\xaf\x2b\x4d\xff\xd2\xdc\x74\x5b\x2d\x24\x5a\x5f\xb7\x25\x45\x38\x16\xc0\x85\x85\x1a\xfb\x0d\x1b\x73\x5e\xbd\xc0\xeb\x08\x27\x6c\x4f\xd7\x19\x2b\xf9\x76\xe3\xbc\xc1\x8d\xf7\x1d\x93\xac\x3f\x38\x51\xca\x5f\xb0\x1d\x3f\x06\xb2\x4a\x5b\x2f\x7a\xb6\x6e\x05\x32\x68\x7d\x54\xf8\xff\xba\xf6\x42\xff\x37\x92\x61\x5e\x36\x7a\x6f\x23\xbe\x94\x57\xad\x46\x91\xbb\x12\x47\x22\xea\x2c\x39\xe0\x83\x00\x5d\xee\xd7\x04\x7f\xc0\x6e\x6c\xb1\xee\x87\x0f\xde\x7d\x9f\x93\x8c\x24\xf1\x3a\x18\x63\xda\x0a\xc7\x5f\x42\xea\xd6\xac\xdc\x49\x4a\x33\xad\x9c\x02\xcb\x28\xd9\x4f\x4b\x27\xdc\x39\x4d\x2b\x44\x42\x1e\x0f\xd2\x6e\xa9\x7b\x24\xce\x3e\xc2\xad\x5d\x93\xb3\xec\x5a\x2d\xc5\x8b\x7a\xda\xaa\x39\x8e\x02\xe1\x4e\xac\x71\x7d\xb4\xe4\x69\xa6\xe2\x1b\x03\x99\x85\x16\x48\xad\x88\xd0\x81\xb5\x95\x02\x56\x10\x04\xb9\xce\xd0\xa7\xa3\x6e\xbb\xc3\x80\xfb\xb3\x79\x05\x7c\xc8\x6b\xa8\xb7\x6c\x4f\x78\x33\xf3\x61\xa0\xfd\x11\x75\x46\xc4\x08\xc6\xaf\x47\x8f\x88\xf2\x22\xc5\xcd\xf4\x9f\x17\x65\xc0\x6e\x05\x27\x8e\x0f\xa8\x79\xec\x96\xe3\xa7\xa2\xdc\x9a\xe4\xe2\x49\x60\x9c\xf1\xa0\x52\x34\x04\x2e\xb3\x63\xc8\x9b\xff\xe7\x87\xd3\x23\x5f\x2a\x67\xf0\x5c\x22\xeb\xd4\x00\x06\x8f\x24\xd8\x26\x5a\xe9\x67\xe1\x27\x94\x22\x39\xd8\xac\x55\x77\x43\x39\x69\x9b\x7b\x0e\xcf\x59\xc4\x89\x3d\x8c\xea\x28\x12\xe1\x77\xa4\x1a\x74\xfa\x4a\xf5\xe9\x7b\xc1\x62\xf2\xee\xff\x83\xe5\x0f\x81\xe5\x35\x8b\xc9\x2f\xff\xcf\x61\x89\x6c\x9a\x8f\x7a\xf0\x36\x27\x9f\xa2\x3a\x84\x13\x0e\xe7\xe2\x9c\x6c\x8c\x3a\x42\x32\xfa\x09\xe2\x60\xea\xec\xee\x88\x5c\x32\xbb\x9f\x7e\xfb\xdf\x01\x03\x83\x95\x77\xfb\x2a\xa5\x7b\x05\x28\x86\x30\x01\x1b\xf4\xaf\x87\x4a\x4b\x74\x75\x13\x14\x12\x93\x29\x00\x58\x62\x12\x6e\x4f\xd7\x49\x88\x3d\x3c\x98\x1c\x22\x36\x27\xa0\x4d\xa3\x05\x52\x69\x4c\x0a\xd8\x6e\x0f\x42\x69\x41\x54\x19\x9b\xa8\x44\x0e\xf0\xb2\x56\x6e\xed\x45\xaf\x29\xe6\xb9\x28\xb4\xe8\x7a\x6c\x0d\xb3\xb4\xf9\x07\xd3\x66\x59\x3a\x04\xcb\xd2\x18\x31\xd1\x6c\xcd\xba\x3c\xcf\xfd\xac\x7c\xd6\x02\xe1\x1b\xd3\xe1\xf6\xfc\xcc\x3e\x7b\xfd\x98\x28\x9b\x4d\xca\xc1\x5a\x33\x1b\xa6\x23\x3a\x75\x49\x43\x89\x0b\x40\x22\x62\xfe\xc4\x10\x5d\x32\xfa\x52\xb0\xf9\x74\x20\xd6\x2a\x07\xb1\xbc\x31\x42\x91\x55\x02\x89\x7b\x7b\xc1\x91\xf6\xdc\x91\xf6\xe4\x48\xb9\x33\x52\x21\x47\x9a\xd1\xde\x49\xf6\x8c\x8a\x93\x6c\x6f\x2f\xe6\xc3\xac\x32\x52\x5e\x1e\xe9\xba\xd5\xa0\x1a\x90\xb3\x08\x6c\x3d\x89\xda\xe6\x53\x4f\x42\x0e\xeb\x38\xec\x8d\x70\xdd\x30\x2c\xce\x15\x9b\x4f\xeb\xac\x48\x6e\x99\x88\x7a\xb1\x2e\x08\xe6\x6f\xb5\xe2\x4a\x65\x20\x89\x65\xc1\xb4\xbd\xee\x40\xa8\x92\x66\x68\x94\xd2\xa9\xda\x9d\x02\x6b\x1b\x3b\xbf\xba\x71\x99\x1d\x87\x15\xac\xd5\x5c\x83\x99\x0d\x96\x90\x55\x6e\xd2\xac\x9c\xe4\x55\xeb\x65\x50\x1c\x29\x8c\x75\x61\x95\x11\x90\xa5\x7a\x84\xd9\x52\x65\xc0\xd4\xb6\x57\x06\x4b\x6d\xc1\x00\x04\x98\x93\xe5\x16\x53\xfa\xea\xd2\xa1\xe9\x33\x6b\xb8\xa4\xbf\x99\xf2\x8e\x71\x65\xb5\x82\x7b\xc0\x35\x7c\x83\x15\x7c\x00\x3b\xd5\x40\xc4\x3d\x4b\xe7\x93\x40\x59\xb5\xc3\xed\x76\xd4\x19\x79\x2b\xc8\xa5\x84\x5a\xca\x88\x25\xae\x04\x75\x62\xc0\xd0\xb2\xe7\xd4\x69\x1c\x75\xf6\x56\xcb\xf4\x2e\xc9\x6e\x19\xaa\x9a\x7e\x7a\xff\xf3\x60\x67\xac\xf4\x4d\xb7\x4c\xec\xfc\x41\xe9\x9a\xa6\x3c\x5f\xec\x80\x3d\xeb\xc9\x8e\xaa\x4f\x31\x10\xac\xd7\x66\xe0\x64\xb1\x91\x1c\x54\xf5\x46\xf9\xbf\x3a\x2c\x6f\x3c\xd4\xda\xbd\xa9\xc5\xbb\x54\x8c\xd1\x45\x1d\xe2\x37\x96\xf2\x2a\xba\xe0\x44\x87\xc5\x54\x6e\x02\xd6\x2b\xbb\x52\xc0\xf1\xd2\x2e\x95\xf0\x23\x14\xd6\xb7\xe4\x97\xb3\x05\x94\xba\xc0\x26\x94\xaa\x7c\xa9\x34\xa9\xae\xe3\x50\x0d\xfc\x52\xa9\x31\x31\x31\x01\x36\xb9\x99\x1b\x77\x9c\xd0\x29\xae\x0c\x15\x63\x9c\xc4\xc1\xf1\x9a\xe4\xfa\xc4\x71\xaf\x08\x35\x5b\x99\x8f\xdf\x6c\x69\x52\x6e\xb3\x35\xd1\x4d\x83\x18\xa8\x6e\x45\xfd\xce\xea\x76\x46\xa8\x57\x7f\x45\x1b\x3b\x2d\x2d\x7e\x4d\x9f\xe1\xad\x54\x82\x23\x46\x72\xa8\x22\x36\x67\x91\x75\xfb\x80\xa9\xc0\x3b\x2a\x1c\x4e\x2d\xbc\xaa\x3a\xc4\x5a\x69\x3d\x31\xda\x1a\x0b\x44\x5b\x83\x0c\xd9\x10\x70\xcd\xba\x73\x65\xf1\xda\xfa\x9b\x84\xd7\x99\xe4\x34\xb4\xc2\x24\xa1\xbd\x93\xe4\x59\xaa\x3b\x4a\x74\x47\x05\x4d\x87\xc9\xa8\x95\x0f\x93\x91\xe3\x95\x53\xd8\x8e\xd0\x8b\xde\x81\x04\xc1\x34\x10\xba\xad\xf9\xde\x5e\xbc\x1a\xce\x47\xaa\x4c\x7e\xef\x78\xc5\x8c\x69\xe3\x0e\x20\xd3\x9a\xef\x7a\x51\xc9\x8c\xf6\x4e\x66\xd6\xdc\x7e\xa6\x87\x3d\xa1\xd3\xe1\x6c\xd4\x1a\x0f\x67\xa3\x6e\xaa\x2a\x45\x13\x3b\xe8\x25\xdd\x66\x17\x90\x45\x63\xb1\x82\xdc\xd1\xde\xc9\xdd\x33\x1d\x5c\xe6\xe4\x4e\xf7\x7e\x4f\x17\xc3\xbb\x51\x6b\x39\xbc\x1b\x69\x27\xb0\xfb\x78\xad\x03\xfa\x35\x58\x76\x68\x2c\xa1\x02\x71\x3b\x51\x76\x39\x65\x95\xd0\xbb\x0a\x2f\x7f\x10\x3c\xc9\x8a\x04\xd5\x81\x26\x8c\x63\xb9\x05\x4d\x58\x97\x1b\x41\x1b\x6b\x1e\x42\x4d\xbc\x26\x6b\x42\x5d\x7a\xb4\x05\xa6\x47\xbb\x65\xe2\xac\xdc\x7d\xcd\x15\x5f\x1e\x26\x56\x7f\xf9\xf6\x4d\x5d\x8d\xf2\x04\x64\x0d\x50\xd5\x57\x8c\x57\x7c\xc8\xb0\x4f\x3b\x17\x92\x2f\x6a\x46\xb7\x4e\x15\xe7\x5c\x29\x32\x8a\x37\xa3\xd4\x52\x55\x3c\x29\xba\xea\x57\xa0\x4d\xb7\xa1\xba\x58\xd2\xe5\x66\x37\xe3\xc5\x50\xab\xa5\x48\xbf\xce\x34\x6b\x31\x5e\x69\x96\x58\x0e\x17\xbe\x8a\xf7\x1c\x9c\xe7\xd4\xac\xdb\xb9\xda\xaf\x14\xb2\x04\x58\x26\xf7\x55\x5e\xd5\xe4\xe2\x96\x40\x1d\xc9\x77\x28\xf1\xe3\xc6\x94\xa0\xce\x10\x2b\x79\x41\xdd\x5d\xe9\xce\xc5\x26\xf8\x64\xdd\xf3\xec\x2e\xe5\x79\x06\xba\xf4\xd7\x8a\x50\x7a\xd5\xa4\x9d\x4f\xa7\xd1\xae\x91\xb7\x7e\x4a\xb3\x49\xfe\xc9\x28\xe3\x5b\x82\x7e\x29\x9f\x17\xd0\x31\xcc\x54\x10\xc5\xd2\xc1\x50\x39\xfa\x41\xfd\x60\x7d\x73\xbe\x29\xf7\xfb\x6b\xa5\xcd\x56\x8e\xd1\xee\x8c\x5e\xa9\x19\xfd\xbe\x91\xe7\x57\x37\x52\x65\x95\x8e\x82\xab\x74\xe4\xae\xd2\xd1\x68\xb0\xdf\x27\x79\xb5\xee\x71\xb0\xee\xb1\x5b\xf7\x58\xd6\x45\xea\x55\x24\xe3\x8f\x5a\xde\x30\x63\xc9\x52\xe3\xc3\x25\xcf\x6f\x79\xb2\xd0\x62\x06\xf6\x59\x30\x9e\x99\x78\xb9\xcb\x31\x4d\x31\xc2\x6e\x42\x73\x24\xb9\x56\x9c\x43\x80\x90\xab\xf4\x77\x46\x7b\x8d\xde\x1a\xda\xd3\xaa\x82\x9b\x9c\xa0\x1b\xd8\xbc\x26\x4c\x4a\x1f\xd4\xf3\x74\xe9\x7d\x9e\xea\xfb\x0b\x9e\x8a\xe5\x7e\x5f\x52\x1d\xcb\x7c\xd9\xd4\x59\xe1\x55\x9a\x2e\xf7\xfb\x66\x66\xce\x7b\xc5\x9e\xd7\x77\x26\xbf\xf7\x81\xc8\x81\xb8\x54\x8b\x64\x3e\xdf\x7a\x86\x38\xc8\x86\x4a\xfe\x58\xa0\x6c\x1a\x29\xbe\x2c\x17\x79\x1d\xf3\xbf\x1c\xef\xb1\xfd\xea\xda\xb4\xf4\x12\x82\x0c\x40\xee\xfc\x2a\x3a\xd3\x1d\x2e\xc7\x66\xc1\xcd\x16\x91\x73\x4d\x26\x13\x8e\x44\x9d\x5a\xd5\xeb\x6f\x1b\x85\xec\xc7\x36\x52\x99\xb7\xee\x96\x27\xb2\x10\x58\xa3\x88\x44\x54\x6c\x32\x1d\x6c\x2a\x07\x4c\xdd\x1d\xdc\x4a\xa7\xd1\x3e\x08\xf6\x62\xc7\x56\xa2\xe5\x68\x6e\xb0\x60\x37\x87\xd0\x36\x11\x8b\x41\x36\x45\x9c\x10\xc8\x76\x5b\x73\x8f\x17\x5d\x8e\xf7\xe4\x89\xb0\x35\xe5\x28\xb5\x1f\xf8\xdb\x55\xd9\xd2\xc6\x91\x2a\xac\x20\xe2\x6d\x66\x2e\x17\xe1\xbf\xad\xc8\x8a\xd3\xe2\x4d\x32\x9e\xa5\x19\x3b\xf5\x9a\xc0\x97\x11\x8b\x07\xde\xfb\xab\xfb\x02\x30\x5a\xb9\x71\x2c\xef\x2d\x15\xa6\x42\x64\xa0\xe2\xc6\x6c\x88\xc7\x8f\x07\xde\x3c\xad\x67\xa4\xca\x49\x78\xfc\xc4\xff\x8e\x27\xcc\x7c\x7e\x5a\xa9\x6e\x37\xb7\x2e\xf4\xa8\x57\x6e\xa3\x5a\xe6\xd8\x2f\xa3\xe6\xd4\xcd\x97\x7d\xfc\x7e\xf4\xb4\xfa\x3d\x70\x50\x74\x6b\x07\x5e\x69\xf0\xee\x73\x5b\x3b\x38\xf2\xbe\xe3\x05\xa0\x3f\x1e\x07\x3e\x5e\xeb\x06\xd6\x2e\x94\x11\xfa\xa5\x45\x4c\xcc\xf7\x48\x10\x46\x10\xde\x48\xfc\xfe\x69\x93\x59\x33\xb8\xc0\x05\x9d\x49\xb7\xf4\x63\x83\x6e\x7e\xfa\xf6\x6e\xb6\xf7\x82\x23\xef\x9b\xee\x3d\x2d\xe9\x76\x33\x68\x38\xf4\x79\x6e\x49\x63\xfb\x72\x0c\x4e\x94\x57\x70\x57\x41\x9a\xaf\x2e\xfc\xf6\xa3\xd6\xd5\x7c\x06\x1b\xff\x9a\x6f\x4b\x27\x15\x8a\x1c\x19\xde\x75\xd9\x9d\xbe\x11\x27\xf9\x42\xc5\x1d\x28\xd3\xed\x7e\x46\x68\x87\x9e\x67\x48\xa6\x43\x82\xfb\x69\xce\x2f\x54\x5a\x25\x15\x72\x24\xa8\x3d\x96\xa3\x92\x6d\xc9\x77\x46\x99\x23\x3c\xd3\x3b\xcb\x78\x54\x82\x1e\x12\xbe\x06\x9b\xdb\x62\xb5\xa8\xb3\xe4\xf4\x3a\xa8\xb8\xfd\x59\xab\x8e\x40\xe3\xea\x1d\x3c\x5d\xf3\x64\xfc\x91\x49\x62\x8c\x64\xeb\x96\xb6\xbc\x09\xe5\x11\xab\x44\x11\xab\x95\x63\xbb\x7b\x60\x4d\x32\xb5\x56\x75\x1b\xcc\x2e\xa4\xc6\xc9\xb2\xca\x32\x5f\xd6\x19\xe9\x3b\xbb\x06\x3d\xa1\x2b\xaf\xdd\x86\xfc\xc9\xd7\x0a\xb7\xcb\xf0\x80\x38\x9a\x28\x66\xc5\xd5\x53\xfa\x3b\x59\x12\x18\x89\xe4\xe6\x5b\xda\xfc\xb5\xae\x4d\x28\xf9\x3a\x2d\xea\xad\x99\x83\xed\xfd\xdd\x6f\x8f\xb0\x52\x8b\x58\x36\x70\x8b\x6f\xad\x38\xea\x74\xdc\x27\x1d\x66\xa3\xba\x6e\x2d\xdf\x68\x91\x43\x8c\xbc\x52\x60\x50\x16\x13\xf1\xf0\x00\x3c\x97\x3a\x7b\xca\x89\x38\x62\x31\x2e\xe3\x87\x0f\xf9\x92\x65\x7a\xa3\x96\x7b\xd2\x42\x2d\x86\x7b\xa4\x11\xfe\x37\xaa\x91\x2e\xf8\x81\xa6\xbf\x33\x37\xf7\xd9\x87\x0f\x90\xf6\xa8\xb6\x1f\xb9\xaf\x64\x1f\xce\x70\xdc\x6e\xd4\x27\xdb\x44\xf9\x9b\x93\x99\xab\x8e\x7e\x52\x2d\x5b\xc7\x89\x56\xdd\x09\x92\xa4\xbb\x1d\x4a\xa8\x55\xdf\x46\x7c\x51\xf6\xc9\x20\xde\x86\x93\x4d\xb9\xc9\xa2\xea\xc6\xe7\xe8\x9f\xcb\x23\x42\x7e\xf6\x83\x97\x73\x4a\x62\x26\xf2\xd5\x57\x80\x5c\x50\x23\x60\x32\xe2\x4a\x17\x81\x73\x0c\xca\xae\x66\x97\x4a\x64\x9d\x39\x79\xae\x00\x30\x35\xf3\x31\xa4\x99\x04\x4a\xc5\x0c\x5a\x5d\x6f\x9e\x25\x74\xe6\x25\xc3\xaa\xdb\x57\x9f\xd2\xf9\xfc\x85\x97\x34\x8b\x68\x52\xa7\xfa\xc6\x4e\xce\x9c\x4b\x2f\x73\x58\xf0\xee\xa8\x1c\xcd\x83\xe0\xd1\x3c\x70\xb9\xbf\x03\x34\xd2\xc7\xb5\xa9\xa6\x37\x53\x97\x87\x02\x58\xf3\x30\x6c\xd0\x02\x67\x1d\x98\x4e\xe7\xa5\x6e\x9e\x7f\xc9\xb3\xdc\xaa\xc1\x4b\x5a\xab\x5f\x4e\x93\x56\x65\x04\x4c\x08\xaf\x2a\x08\x35\xb8\x1a\xd6\xd5\xbb\x0a\x74\x10\x8b\x3f\x44\xc6\xb8\xcb\xdb\x5d\x55\x6e\xc8\x23\x31\xac\x40\x3b\xf3\xd6\xad\x6e\x17\x94\x2a\x6b\x84\x21\x11\xdb\x64\xe2\xa0\xbc\x6a\xb7\x1a\x2f\x55\x50\xa3\xae\xef\x20\xc6\xda\x73\xae\x1b\xa9\x22\x52\x85\x1c\xcd\xfb\x46\x27\x9b\x4a\x2b\xe8\x62\x63\xda\x78\xbb\x05\xca\xd1\x8d\xf8\xf8\x4c\x35\x51\x3e\x2b\x95\x1d\xa0\x2b\xfb\x59\xe8\x64\x55\x9b\xf4\xb1\x1e\xd9\x79\xc3\xc6\x9d\xef\x26\x8b\x8c\x71\xbf\xd7\xb4\xe5\xa0\xbb\x49\xbe\xd0\xa8\xce\x58\x21\xd1\x32\x8a\x00\x3f\xac\x8a\x3f\x92\x6b\x48\xe0\xe0\x18\x4e\x52\x49\x7b\xa6\xee\x08\x36\x78\x3c\x2d\x02\xde\xbc\xe6\x62\xaf\x22\x2c\x05\x62\xdd\xf6\x2b\x9e\xdc\xd6\x20\x74\xcf\x2d\x2b\x9d\x46\x1e\x91\xfa\x57\xbf\x1f\x41\x1c\xff\xb5\xb2\x7f\xe0\xd7\x0e\x90\xbb\x7e\xeb\xff\x5d\xea\xc8\x5d\x2e\xc7\x83\xcf\x5b\x32\xf0\x3d\xdf\x0c\x30\xeb\x37\x18\xe8\xc3\x5d\x40\xe6\x6c\x2d\xb4\x79\xad\x74\xe1\xec\x0a\x88\x7e\xcc\x26\x2f\xf2\x4c\xe0\x2d\xed\xef\x3b\x3c\x74\xa2\xda\x6a\xd3\x5e\x5b\x65\xd5\x76\x1b\xb6\x75\xac\xee\x7f\xaf\xf9\x86\xc5\xf6\xe0\xaa\xcb\x7d\xcd\xd0\x2b\x9b\x34\xd0\xae\xc6\x13\x6a\x0b\x95\x57\xb6\xa6\x2f\x75\xfb\xf8\x73\xaf\x5d\x5c\x77\x07\x20\x6e\x2c\xc3\x6d\x63\x5d\x44\x02\x76\x86\x1b\x1d\x06\xeb\x11\x8a\x75\x1e\xf4\x36\x68\xa8\xc5\xef\x40\x2b\xb6\x97\xad\xb0\x4a\xa3\x9b\x99\x39\x23\xbe\xb7\x59\x99\x44\x23\x2e\x61\xe0\x58\xe9\x05\x2f\x5c\xa7\x1e\x1a\x47\x64\x81\x8c\x83\xe1\xa1\x94\xcc\xe0\x6d\xb7\x81\x68\xe2\xa5\x16\x4a\x36\xaa\xde\xf0\x51\xc3\xcb\xb2\x3b\x4f\x85\x02\xc1\x31\xdc\x40\x06\x90\xb6\x42\x1b\xa9\xea\x2a\x31\xc9\x1b\x15\x22\x26\xbb\x5f\x83\x32\x24\xc0\x79\xea\xc5\x5e\xaf\x89\x6a\xc7\x59\xed\xaf\x6e\xcb\xa9\xeb\xea\x5a\x2e\xd9\x27\xbc\x2f\x7f\x5a\xa5\xf3\x09\xe3\xf4\xbd\xd2\x4f\xfc\x6d\x93\x34\x48\x09\x0b\xfc\x38\x54\x7e\x46\x3c\xe7\x71\x62\x49\x94\xc2\x4b\x33\x0d\xf1\x0d\x9a\x15\x02\x93\xb2\x5a\xcd\x93\xe9\xba\x2d\x83\x0b\x4f\xa7\xa3\x35\xff\xb1\xb5\x1a\xec\x9d\x08\x6b\x10\x20\xf6\xf6\x62\x36\x14\x8e\x6e\x7d\x5d\x16\x7e\x34\x98\xaf\x81\x48\x60\xdb\xb0\x58\x6e\xd4\xa4\x6d\x43\x64\x39\x91\x95\xd6\x20\x3f\x0e\x13\x4f\x01\x54\xa3\x39\x1f\x04\xeb\xde\x1e\xc8\xf0\x9b\x08\x27\x2c\xb9\xbf\x8f\x46\x1b\x35\xd4\x5e\x8f\x52\xea\x96\xd7\xae\x12\x30\x3b\x9d\xf9\x11\xb7\x00\xfb\xb4\xf3\x27\x66\x59\x71\xb5\x11\xd8\xa7\x9d\x9f\x98\xc2\x7a\xa2\x91\x3a\xfd\x8a\x9e\x98\xdb\x83\x12\xaf\xfb\xc4\x70\x8d\xe9\x89\xde\x86\x95\x37\x0f\x0f\x9e\x1d\x12\xbe\x75\x6d\x54\xb4\x10\xc0\x6b\x59\x3b\xf6\x9b\x91\xc9\x1d\x58\x21\x48\x50\xfc\xf9\xaf\xef\x35\xae\xfe\x8a\xe8\x33\x81\x83\xc3\xaa\x9f\x9d\x68\xb9\xe4\xcf\xea\x7f\xb0\x84\xfe\x1b\x8b\xc9\xaf\xff\x17\x47\xcb\x59\x11\x0a\xc8\x1a\x3e\xe5\x90\x5f\xba\x74\xca\x03\x49\x16\x99\xab\x6e\x17\x43\x3e\xd2\xcc\x27\x4e\xb4\x55\x39\xb0\xdf\x8e\xc2\x48\x66\xc0\xf6\xf7\x06\x19\x77\x10\x7b\x42\x78\x5f\x10\xdb\x09\xd2\xfc\xf9\x2b\x11\xa5\x5f\x5d\x47\x73\x01\x64\x11\xa0\x5e\x98\x83\x11\xff\x2d\x38\xd1\x8e\x64\xc6\x92\x09\x48\xd5\xbe\x0a\x3d\xda\xfa\x22\x49\xe7\x51\xbc\x25\xaa\x6c\x42\x83\xcd\x88\x6f\x13\xba\xda\x80\x74\x6a\x71\x06\x9a\x83\xca\xc5\xfc\x99\xd1\x83\x47\x4f\x8e\x0e\x8f\x8f\x8e\x8f\xc9\x5f\xea\x0d\x42\xd5\x9d\xf7\x8d\xe6\xef\x12\x01\xe7\x5a\xbb\xf1\xad\xd6\xfe\xc3\x91\xa2\xc8\xbd\x2c\xba\xbf\x15\xb8\x29\x6b\x24\xfe\x60\x57\x6c\x27\xe5\xda\xa1\x28\x1b\xe4\x76\xb6\x5a\xdc\x30\x6e\x5d\x24\x44\xa7\x53\x79\xc7\x4f\x6d\xcf\x68\xaa\x0c\x21\x23\x42\x95\x8d\x63\x46\xb5\xd2\x2b\x9e\x2f\x22\x81\xfa\x50\xf5\x7e\x3c\xcf\x33\x63\xf7\xfc\x5b\xe1\x34\xae\xa8\x4a\xf9\x18\x52\xbb\x5a\xac\x33\x1c\x91\x8c\xb2\x93\xec\x19\x7a\x12\x38\xfa\xfb\x5b\x26\xa2\x2c\xb6\x2a\x1a\x10\x0e\xe6\xcb\x20\x55\x8c\xc3\xc9\x97\xf7\x26\x12\xc7\x27\x9e\x56\xcc\xa6\x3c\x9f\x5d\x83\x23\xd1\xb9\xc4\xba\xe0\x6b\x85\xf6\x6e\xaf\x85\x3a\x5c\xa1\xd4\xb7\xed\x9b\x3c\x9f\xb3\x24\x6b\x0f\xe0\xc9\xc6\x58\x1a\x98\x0a\xf0\x01\x01\x3b\x90\x24\xd5\x7f\xf4\x77\x69\xcf\x46\x5c\x53\xd3\x7e\x93\x88\x59\x37\xb9\x29\x2c\x97\xb1\x1b\xf1\xe7\x3f\xb3\xb8\x85\xd9\x00\x74\x83\xfd\xf5\x3a\x12\x71\xec\x4c\x12\xe6\xf5\x2e\xf9\x14\x31\x12\x50\x36\xeb\xc9\xe0\x78\xf5\x40\x10\x86\x6e\x05\x39\xb6\x67\x3d\x0d\x04\x77\x40\xf2\x8a\x90\x63\xa9\xc4\x35\xca\x72\xb1\x53\x2c\x52\x1b\xe2\xc7\xa9\xf5\xec\xd9\xe1\xc3\xd1\x1a\xac\xc4\xb7\xaa\xca\x64\x05\x88\x3b\xd7\xf2\x21\xab\xbf\x9f\xf6\xfb\x83\x43\xf5\x4d\x65\xb2\x34\x9f\xfa\x4f\x5b\x61\xf0\xef\x1c\x3c\x36\xf0\xab\x4b\xb2\xa2\xe0\x69\xa3\x0f\x20\x2f\xf8\x9b\x3e\xce\x2d\xfd\xe8\xe5\xca\xaa\x80\xfe\xff\x64\xca\x7d\x58\xbf\xaa\xdf\x94\x4e\x25\xb5\x31\x83\xa1\xd3\x9d\xfc\xd5\xb2\x00\x94\xb7\x37\xec\xb3\xde\x29\x0e\x6b\xf8\x7f\xc4\x68\x10\x32\x32\x40\xfb\x82\x43\xb3\x71\x94\x72\xbd\xdf\xf7\xb7\xe6\x4e\xdf\x28\xf6\x41\x56\xad\x34\xf0\xda\x28\xa1\xb4\xfb\x76\x02\x1d\x3d\xee\xe8\xae\x8c\x05\x01\x7b\xfe\xfc\x10\xad\x06\xf0\xd5\x7e\x24\xdf\xc5\xdb\x2c\x06\x53\x2b\xa2\xbc\x6f\x0b\x56\xa5\xb2\x15\x4c\xe0\x9b\x83\x69\xd0\x7b\xa0\xd7\xc8\x3a\xaa\x42\x8d\xdc\x9e\x6a\x7d\xce\x32\x39\x18\xe4\xec\xc8\x1f\x1a\xcd\xcb\x5c\x73\x23\xc3\xc1\x19\xf3\xae\x62\x49\xf9\x9a\xa9\x5c\xa0\x35\xae\x23\xb2\x9c\x0a\xf6\xcc\x48\x8f\xec\xf7\x63\x54\x34\x0b\x3f\xe8\x96\xeb\xb8\x85\xa5\x03\xc6\xd9\x42\x6d\x30\x49\x12\x02\x89\x56\xee\x47\x90\x1e\x61\x26\xe7\x4a\xb3\x17\xd6\xb2\x9c\xc5\xcd\x4e\x14\x7b\xd9\x43\x6f\x8d\x25\x7a\x0e\x81\x76\x20\x1b\xe7\x13\x36\xb9\x58\x2c\xd8\x24\x2d\xbb\x10\x96\x5b\x90\x1b\x3b\xd4\xc8\xe5\xca\x35\xeb\x68\xec\x19\x6d\x28\x45\x77\xb2\x5a\x56\xf9\xda\x6f\xbc\xe3\xb1\x71\xc7\x76\x4f\xdf\x26\xa6\x63\x34\xb4\x0f\x5f\x40\x5e\x15\xa1\x0d\xcf\x7e\xd8\xf0\xfa\xda\xf6\xca\xda\xc4\xe9\x51\xf9\x3e\x3c\xcb\x7d\xb9\x25\x8d\xdd\x5b\x5a\x47\x0c\x56\xda\xd9\xdf\x57\x83\x66\xec\xe3\x0f\x1b\x75\xaf\xd5\xdc\x25\x0b\x3a\x40\x7d\xa5\x6e\xdc\x27\xb3\xf0\x34\xd6\x75\xbc\xa7\xba\xac\xba\x37\x7d\x97\xd6\x4f\x77\x5a\xd9\xb4\x7c\x4f\xe0\x1e\x2f\x51\x72\x95\xc0\x62\x68\x31\x09\xf4\x93\xde\x40\xf0\x04\x3e\x97\xdb\x55\xf4\xcd\xde\x30\xa9\x70\xdd\x55\x53\x2c\xf7\xfa\x84\x53\xb1\xcf\x02\xb0\x72\x9a\xe3\xd8\x5c\x18\x39\xab\xe2\x88\x9c\x65\x31\x91\x97\x06\xbc\x61\xb4\x08\x3a\x62\xc6\x14\x3b\xd4\xfd\x5f\x37\x98\x3b\x61\xf8\xa4\x6e\x32\xff\x94\xdc\x17\xef\xd8\x5d\x32\x4f\x27\x09\xf8\xcd\x9b\x55\x4b\x3b\x9d\x54\x2d\xcc\x94\x27\x0b\x56\x63\xaf\xe4\x58\x26\x99\x5c\x16\x54\x38\x59\x2e\xb4\x24\xd7\x31\x43\x42\xb7\x87\x52\xdf\x34\x6f\x22\xe8\xd9\x67\x36\xae\x06\x16\x73\x4c\x26\xed\x20\xc1\x65\x05\x55\x20\x0a\xa9\x9c\xec\x72\x9b\xb9\xe0\xc4\xf3\xe4\x87\x6a\xbe\x19\x67\x14\xb7\x74\xb4\x94\xd3\xcc\xb1\x90\x93\xac\xfb\xa0\xd4\x17\x2a\x4f\x81\x3a\x29\x9b\xbd\x3a\xed\x2b\xbb\x3e\x54\x21\x04\xd1\xa0\xdb\xa4\xd6\x06\x0b\x61\xd5\xc1\x40\x08\x54\x76\x91\x6a\x5d\x65\xe5\x38\xff\x3c\x66\x4b\xf5\x91\x84\x47\xd9\x74\xe3\x43\xe1\xc6\x0b\xdf\x69\x4e\xdb\x28\x39\x12\x5d\x30\x2b\x4a\xb3\xdb\x5f\xdf\xd0\xbf\x2a\x51\xee\x7f\x37\x85\x5f\x51\x31\xae\x30\xac\x96\x0e\xc2\x92\x04\x93\x28\x15\x22\xe1\x82\x0a\x9d\x79\x98\x72\x92\x74\xf9\x2a\x13\xe9\x82\xd1\x8c\x24\x98\x3f\x09\x74\xb1\x6d\x92\xc0\x52\x2a\x41\x89\x8a\x04\xa9\x7f\x83\x4b\x2a\x67\x19\xcd\x49\x62\xd3\x2f\x25\xdf\x14\x36\x60\x2b\x01\x85\xea\xa3\x6c\xdd\x06\x26\x2c\x5b\x09\x2c\x0a\x5f\x4c\x91\x6d\x27\xa6\x28\x3c\xe1\x44\x16\x4e\x01\xc5\xe0\x64\xa8\x43\x8b\x60\xd1\xc4\x41\xd6\x2c\xcf\x29\x5c\xe9\x75\x16\x74\x3f\xd1\xe6\xda\x6a\x89\x74\x8e\x28\x23\x0e\xb3\x4d\x99\x4c\x5b\xff\xa8\xd9\x29\xa9\x4a\xb5\x05\x09\xce\x94\x87\x9b\xde\x29\x05\x2d\x07\x7d\x56\xa5\x4c\x56\x32\xd8\x13\x82\xdf\xb7\x89\x4a\x84\x52\x74\x3f\xa8\x64\x5a\xc6\xfc\xed\x3a\xb9\x35\x51\x98\xbd\x14\x5b\x31\x09\xc7\x92\x48\xf5\xa6\xc8\x69\x5a\xdd\x14\xb9\x9c\x24\x5a\x56\xa6\xbf\xab\x58\xa3\x72\xb7\x95\xc1\x22\x87\x81\xb4\x33\xba\x9b\x41\x92\xd9\x71\xbe\xb8\x49\x33\x76\x25\xf1\x7b\xec\xaf\x8c\x3c\xff\xf9\xf6\xeb\x88\xa2\xd4\xbc\x8c\x15\xc2\x8a\x0c\x87\x3a\x12\xcc\x4f\xfb\x45\xb4\xc2\x4a\xb7\x9c\x9b\xa2\x5c\x10\x6d\x8c\xcf\xd9\x1d\x29\xac\x56\x90\xa0\x8f\x21\xae\x7e\x2b\x35\x29\xe2\x21\xda\x25\x7d\xaf\x0d\x43\xa3\x15\xa4\x13\xcf\x34\xf7\xa2\x9e\xe3\x98\x8c\xe9\x52\xe8\x32\x82\xac\xc8\x3c\x26\x53\xbc\x76\x5e\xa7\xd9\x47\x06\x82\xb8\xd6\x58\x5f\x08\x51\x6e\x99\x79\x1e\x7f\xe1\xc8\x5d\xfc\xc1\xf0\x05\x91\x50\xaf\x62\x82\x10\x4f\xb3\x5b\x95\x31\xd6\xc1\xb6\x53\xf3\x55\xa5\xd6\x63\x8d\xa5\xd3\x78\xad\x6d\x7e\x24\x82\x49\xac\xaa\x9e\x16\x6b\x92\xae\xa3\xff\x66\x31\xf9\xf3\x66\x69\xac\xb2\xd1\xd7\xd7\xe7\x22\xe1\x1f\x21\x57\x9c\x40\x15\xcb\x05\xe8\x4e\xe9\x6e\xdf\xbc\x79\xc9\xe6\x4c\x30\xf3\x66\x91\x2c\x29\x93\x7f\x1d\xc3\xdf\x34\xbb\x95\x67\x03\xd7\xac\x49\x6e\xab\x54\xb3\xbe\xb2\xd2\x49\x3b\xac\x7b\xd0\x2b\xad\x06\xab\xd7\x5a\xf7\x45\x56\x0a\xbf\x62\x86\xfa\x15\x85\x58\xdf\xd9\xad\x15\x8d\xa5\xa7\xd1\x9c\xe6\xc3\x74\x14\x07\xd0\xda\xc0\x99\x39\x26\xb0\x4f\xba\x77\x8b\x57\x39\x57\x93\x97\xe3\x5a\xc5\x98\xd0\x1e\xb2\x55\xc1\xee\x73\x96\x7f\x66\x97\x3f\x8d\xbf\xe4\x43\x36\xa2\x53\x9a\xda\xd4\x3a\x44\xc4\x24\xad\x5f\xca\xf2\xc6\x32\x85\xd5\x3e\x98\x36\x56\x9e\xda\x33\xba\x8e\x49\x29\x5a\xe9\x94\x38\x86\x7f\x7a\x29\x7b\xe8\x58\x92\xb8\x3e\x90\xc8\x1b\xcb\x4f\x8b\xfc\x6e\x83\xfa\x58\xae\x48\x5e\x5a\x83\x84\xa6\x43\x36\x22\x05\x4d\x87\xd9\x48\xc5\x8a\x69\xfd\x23\x4a\x48\x65\x2d\xb2\xd3\x5a\xe8\xc7\x24\xc7\x58\x5a\x51\x22\x7f\x97\x02\x30\x17\x8a\x6f\x54\xfb\xaf\x86\x30\x96\x43\xe3\x54\x0c\xd9\xa8\xe5\x3a\x26\x46\x31\xf9\x73\xc4\x63\x7f\x8f\xea\xbe\x78\x4c\x54\xa3\x3b\xb2\x5e\x65\xa3\x03\xbc\x26\x79\x56\x75\x3f\x52\xdb\x31\x8c\x74\x23\x1f\xec\xea\x52\xb0\xcd\x6a\xa5\x58\x89\x7b\xf2\xae\x1d\xb8\x4e\x48\x41\x56\x6a\x86\xf3\x93\x68\x5e\xba\x72\xb0\x44\xe9\xca\x99\xa7\x85\xd8\x47\x5a\x64\x0e\x07\xd4\xcb\x71\x3f\x87\xdb\x59\xe5\xb2\x62\x13\x9a\x75\x2f\x2e\x2f\xae\x2f\xce\x5e\x93\xb9\x93\x9f\x6b\x85\x27\x61\xfe\x15\x77\x96\x3e\xd6\x73\xb8\xed\xdc\x2b\x25\x8e\x86\x2b\xc8\x02\x36\x1e\xc5\x64\xfe\xef\xb9\xd9\xd4\x7d\xb2\x1b\x6d\xcd\xed\xc6\x0f\x0f\xee\x63\xcb\x68\xbe\x0c\x68\x14\x8b\x60\xf2\x8e\xc9\x5b\x53\x27\xc2\xd3\x91\xe8\x7e\xdc\x55\x5a\x0a\x9b\xa7\x7b\xd5\x37\xa0\x3b\x30\x48\x08\xc4\xf5\x78\x80\x71\x89\xd2\xd8\x43\x9a\x78\x7d\x26\x54\x80\x09\x4d\x41\x93\x40\xa8\xf7\xc4\x0d\x7e\x1c\xe5\x15\x27\x88\x82\xe4\x0e\x25\xa7\x96\x67\x05\xf7\xe0\x9f\x15\x2b\x42\x8a\xb8\xa5\x72\xa4\xe9\xd4\x68\x57\xf7\xd9\x78\xc6\xf3\x2c\xfd\x9d\xf1\xe8\x8b\x48\xb8\x24\xe6\x57\xc4\x4c\x67\xc0\xd7\x71\xb7\xb8\xcf\xc6\xc6\x62\xd5\xef\xd3\x0b\x93\x5e\xc4\x6b\x16\xc8\x24\xea\x79\xa5\x4a\x60\xfa\xc8\xba\x0e\x35\x20\x48\x78\x80\xd8\x40\x4a\x81\xa4\x92\x36\x28\x7b\xa7\x44\x19\x50\x09\x26\x84\x6a\xd5\x59\xc4\x8b\xe0\xbe\x36\xe7\xc0\xd2\x10\x2a\x95\xad\xb9\x96\x85\xd8\xe2\x5a\x36\xe1\xae\x98\xa6\x9e\xfe\x04\xc4\x94\xb9\x9d\x91\x01\xa2\x0c\x35\x8a\x4d\xf7\x6c\x98\x2f\x34\x2d\x6c\xeb\x45\x88\x15\x34\xc1\x96\x2f\x0b\xa3\x10\xd0\xd6\x0a\xba\x4d\xd5\x20\xda\x66\x80\xa5\xa5\x68\xa2\x06\x83\x33\xc5\x33\x56\x7e\x5d\xe5\x35\x11\x99\xf2\x06\xb8\x3a\xc1\xc4\x1c\x71\x81\x76\xe7\x15\x25\xea\x85\x3b\xda\xe7\x82\x36\x92\x30\x9c\xf1\x92\x13\x93\x06\xd9\xf6\xa8\xc8\x17\xbc\x7d\x29\x4b\x25\x06\xbb\xfd\x75\x5c\x95\x93\x08\x2b\x27\x61\x9d\x0e\x33\x76\x72\x92\xa4\xf5\x5c\x38\x49\xea\x5f\xd6\x70\x66\xff\xaa\xb6\x65\xb5\x33\xb1\x8e\x0d\x65\x93\x6a\x52\x7e\x4b\x85\x78\x1d\xbf\xb9\xad\x82\xbc\xf8\x26\xb5\x78\x51\x52\x86\x37\xee\x33\x9e\x7f\x82\x14\xb4\x3b\xc5\x2c\x5f\xcd\x27\x3b\x19\xbb\x63\x7c\x67\x06\x56\x2b\x6d\x45\x60\x6c\xc7\x7b\xa2\xc9\x88\x65\x24\x51\x0a\xa1\xb0\xc6\x3b\x56\xac\xe6\x82\x72\x95\xa1\x25\xab\xdb\x99\x9e\x3a\xc2\x71\xeb\xc8\x0b\x8c\xa2\x01\xe8\x36\xd7\x96\xb8\xc9\x42\xde\xd8\xec\xd3\x4e\x21\x1c\x9f\x9b\x02\x5e\xcd\x45\x53\x68\x8e\x92\x4a\xc3\x0d\xd2\xb6\xdc\xeb\x7b\x52\x44\x95\xa0\x1d\x2a\xa8\x40\xcf\xa5\x21\x55\x3e\xa9\x41\x94\x5f\x43\xbc\x09\x26\x5c\x31\x3f\x9e\x43\x49\xe0\x3b\xd3\x66\x2d\xe7\xe2\x82\xce\xe1\xde\xc2\xa4\xad\x90\x8a\x76\xb9\x9f\xec\xf5\x5b\xb9\x6a\x0f\x72\x61\x24\x36\x22\xf5\x8a\x16\xfb\x18\x23\xc2\x19\xa4\x2e\xba\xd2\xd9\xa2\xe6\x8e\xdf\x55\x41\xc6\x94\xeb\x1e\xa6\x74\xb5\x7f\xf8\x9f\xe3\x96\xad\x33\x25\x63\x15\x1a\xb3\x9b\x34\xb8\x93\xd9\xbe\x12\x81\x11\x2d\x38\x4b\xe6\xf3\x7c\x5c\x2b\xb6\x05\xd1\x20\xa8\x59\x7b\x9d\x0e\x0a\xf8\xfc\x4c\xfd\x7e\xcb\xc6\xd8\x15\xa0\x92\x52\xde\xbd\x49\x0a\xb6\xc7\x48\x6e\x86\xbf\x97\xd9\x9c\xfc\xf9\x73\xda\x3b\xc9\xf7\xf7\x63\xa5\xea\x88\xf2\x3d\x55\x81\xe4\x7b\x69\xdc\xc2\xca\x94\x91\xcc\xfc\x12\x72\xf9\x29\x5b\x43\x38\x8e\xb2\xcc\x59\x23\x32\x63\x99\xe6\x4c\x59\xf5\x79\x3a\x13\x83\xf2\x17\x6c\x46\x5e\xf0\xb6\xa6\xda\x53\x58\x69\x8a\x95\xd4\x4b\x53\xde\xd5\x7e\xa5\xa8\x67\x90\x44\xa3\x71\x36\x42\xab\x27\x18\xab\xe4\xe8\x6b\x6e\xa9\x02\x6d\x3d\x9c\x3a\x2d\xe1\x00\x1c\xec\x24\x97\xf9\x12\x14\x97\x4d\xc1\x3c\x92\x3a\x5b\x53\x97\xc6\xbb\x4e\x6e\x6f\xd9\x24\x8e\x86\xe5\xa5\xb3\x53\x1c\xc5\xc6\x8e\x55\xc2\xbd\x51\xc2\x89\x67\x49\x96\x33\x95\xb6\xd0\x84\x56\x56\x66\xaf\x02\xf6\xbd\xc3\xff\x74\x7b\x50\x2f\xad\xda\x34\xdd\xee\xf2\x84\x8c\xbe\x15\x24\xe5\xe1\x27\xee\xae\x16\xcd\xbe\x22\xd3\xef\x17\x68\xc0\xdd\x1c\x9a\xde\xb6\x7d\x55\xf6\x9b\xce\x87\x8d\x44\x40\xbe\x01\xd5\x4a\xc8\xd2\x9e\x37\xc4\x1e\x09\x22\x61\xc5\xf9\xd8\x47\xae\x03\x1a\x29\x23\x38\x95\x01\x29\x84\x6d\xd3\x0a\xb6\xf5\x35\x8d\xc6\xb8\x4d\x0e\x45\x84\x86\xf2\x21\x90\x75\xbf\x32\x08\xde\x3d\x7f\xf3\xcb\xf5\xdf\x3f\x9c\xbd\x7b\x77\xf6\xf7\x35\x49\x43\xd8\x36\xdd\xb2\xdf\x94\xc8\xa3\x9a\x9e\x46\xdf\xd8\x7d\x3c\x88\xb6\x81\x99\xa4\x81\xcb\x38\xd5\x25\xd1\x25\xae\xe2\xee\xc1\xd5\x08\x50\x61\x4e\x63\x7d\xd2\x7b\x78\x60\xcf\x29\x3f\x9d\x0e\x32\x15\xcb\x13\x38\x81\x34\x84\xc2\x1c\xa4\x92\x38\x48\x45\xd1\xfd\x66\x74\x50\x7b\xc9\xd9\x92\x79\x61\x39\xed\x2d\x89\x78\x04\xac\x6b\x7a\x1e\xab\x06\x83\xce\xbc\x41\xa7\xee\xa0\x2d\xc8\xf9\x7e\x09\xea\xd9\x9e\x30\xb1\xcd\x72\x89\xba\x9f\x89\x93\x7c\x6f\x2f\x4e\x55\x34\x4e\x79\xaf\xe4\x31\x64\xa6\x6c\x6d\xb5\x23\xbf\x1a\x9d\x39\x58\x53\xb6\x6d\x00\xfc\xf0\x10\x39\xaf\x69\x08\xdf\x95\x01\x28\xd1\x88\x46\x58\xf6\x75\x63\x8f\xb6\x58\x4b\x65\xbc\xad\xdc\x95\xa4\x16\xc6\xad\x6a\x23\xd4\x55\xba\x46\x9c\xf0\xbd\xcc\x24\x5d\x63\x16\xd1\x25\x8d\xdc\xd7\xf7\xa9\x92\x3d\x33\x24\x07\x55\xba\x83\xf4\x76\xc0\x26\x6b\x93\xb2\x90\x85\x78\xa7\x8e\xf4\x9a\x4d\x42\x1a\xa8\x17\x3b\x22\x0c\x1a\x5a\x83\x92\xcb\xa5\xbb\x8b\x64\xe9\x24\x0b\x78\x3b\x6d\xb0\x02\x28\x55\xf5\x4f\x36\x64\xb1\xc5\x9b\xcd\x0d\x43\xb3\xd2\xd2\x25\xe3\x2e\xbb\x4c\x78\xc1\x2e\xc0\x85\xb6\xdf\xb3\x54\x82\x44\x02\x99\x42\x02\x62\x98\xd9\x39\xbc\x9d\x86\x26\xcd\xcc\x3d\xa1\x76\x41\xf1\xcd\xd7\x44\xf9\xd4\xe1\x5b\xc8\x1e\xe0\x23\x45\xfc\x92\x88\xcb\xea\xb7\x7f\xeb\xed\x51\x87\xa5\xbf\x71\xa8\xe1\xab\x05\xb5\xa7\x5b\x0d\x2c\x83\xeb\x25\xd3\xd7\xcb\x8f\x1d\x9f\xb9\x7b\xca\x0b\x93\xeb\xfe\x54\x83\x69\xa9\x11\xb8\x90\x06\x5e\x11\x67\x3d\x75\xa9\x34\x86\xbb\x61\x96\x84\x7c\x89\x21\x7f\x95\x21\x57\x0a\x93\xc8\x8a\x41\x9d\xf0\xa9\x08\x88\x28\xeb\xac\x63\x3c\x11\xa5\x13\x3a\xc2\xc1\x86\x0a\x4d\xa6\x34\x12\xa7\x76\x1c\x8a\x46\xc2\x19\xc4\xce\xa8\x5a\x7a\xd8\x70\xd9\xeb\xdb\x53\xe5\x01\xd8\x74\x7b\xae\xca\xb7\x27\x74\x15\xbc\x48\x17\x8c\xdf\x86\x44\xf4\x4d\xd7\xa8\x6a\xad\xfe\x1e\x25\xb9\x4e\xd1\xd1\xc2\xfc\xb5\x69\xf1\x8a\xe7\xbf\xb3\x2c\xe2\x71\xa7\x03\x56\xcf\x58\x0f\x12\x3e\x0d\x47\x36\x6e\xa8\x8a\x56\x2a\xdc\x30\xa5\xf9\x30\x19\x9d\x00\x1c\xb8\x81\x4f\x11\x77\x3a\x11\xa8\xdb\x57\xc5\x2c\x2a\x62\x49\x12\x80\x07\x8c\x8b\x2d\x93\x51\x1c\xaf\xfd\xbd\xbd\x05\x5a\x08\x6c\xbd\xb5\x84\x94\xc8\xaf\xee\x33\x31\x63\x22\x1d\x5f\x7a\x11\xce\x5c\xcc\xa5\x0c\x8b\xfa\xb1\xaa\x70\x26\x6a\x4a\xb6\xff\xab\xbd\xc7\x7e\x20\x47\x53\x59\x59\xe3\x8c\x27\xe7\xd0\x78\xb3\xab\x75\x0a\x50\x13\x0a\x1c\x1e\x30\xec\x8d\x52\x02\x86\x47\x52\x60\xe1\xc6\x5e\xb1\x4c\xa8\x5f\x0d\x78\x67\x14\x6e\xbf\x0a\xa6\x3f\x9c\x86\xd9\x44\xcf\x06\x68\x98\xcc\xa5\x61\x04\x11\x7b\x3c\x44\xc3\xac\x1a\x99\xb5\x2a\xab\x86\x60\xaf\x10\x23\x3e\xab\x66\x64\x2e\x6a\x54\x8b\x64\x69\x19\x9d\x1a\x93\xa8\xaf\x47\x8b\x8d\x26\xd4\x0a\x09\xf0\x0a\xe5\x90\x51\x51\x83\xc5\xb2\xd3\xe9\x80\xc3\xf5\x9f\x55\x49\x98\x52\x18\x65\x44\x58\x81\xd6\x3d\x05\x99\xca\xe3\x60\xec\x74\x53\x89\x34\xb2\x21\x1b\xa6\xa3\x11\x15\xc3\x74\x64\x28\x09\x0d\x85\xc6\x33\xb7\x48\x96\x8d\x1b\x68\x91\x2c\x03\x3b\xc7\xc3\x86\xce\x1e\x73\x6a\x79\x83\x6e\xd9\x40\xce\x72\xf0\xc2\x1b\x3c\x1b\x0a\x18\x7c\x36\x4c\x47\xeb\xc0\x6e\x9a\x6f\xa0\x85\xd2\x4c\x30\x9e\x25\xf3\x5f\xe5\xbc\x5d\xec\xa6\x3f\x5c\x7b\x6c\x49\xed\xf5\xed\x53\x29\x8a\xc2\xfa\x7e\x3a\xa8\xb6\xbb\x7a\x02\xc9\x1b\x77\x80\xcd\x2d\x4d\x78\x2b\x46\x3b\x4c\x0b\xa9\xc1\xe5\x5b\xf2\xdd\xdf\x33\x2e\x4d\xc9\x84\xd7\x24\xb0\x84\x3f\x98\xac\xa9\x20\x3c\x75\x6b\x67\xee\x7e\x4e\x69\xe6\x1e\x63\x1d\x82\xd2\x7d\x59\x89\x46\x99\x53\xf0\xa9\x88\x0e\xff\x33\x55\x49\x07\xcd\xe3\x5e\x5f\xbe\x28\x9c\x17\x07\x44\xc4\x6e\x14\x2d\x4a\x69\xa1\xf2\x7a\x0c\x0b\x92\x90\x7c\xb4\x99\xca\x19\x23\x95\xe3\x10\x37\x70\xdc\x8b\x66\x59\xa1\x2a\xd3\x74\xd0\xfd\x15\xf8\xf6\xcb\xa2\xbc\x92\xe5\xfb\xe2\xf0\x3f\x83\x37\xc6\x78\xb3\xce\x51\xed\x55\xe6\x4e\xba\xb4\x5b\x35\x4e\x6c\xd2\x87\x7d\xfd\x8e\x6a\x64\x1f\xcb\xc5\x5d\xdc\x8f\xb9\xf0\x87\xce\x80\x87\x87\xff\x29\xf6\x0e\x46\xa4\xfc\xaa\x5f\x79\x35\x1a\x21\x27\x38\x55\x0e\x1a\x2b\xd1\xcc\x6a\xfb\x87\x8d\xcc\x54\xad\xa4\xb9\x56\x4c\x26\xaa\x5c\x5a\x29\x37\x13\x64\x2a\x48\x0f\xa2\x3e\x63\x85\x9f\xaf\xe8\x44\xe9\x8b\x96\x4d\xf7\x7b\xc9\x40\x0a\x23\xc6\xa2\x35\xaa\x1f\xad\x4c\x19\x4c\x23\xe3\x33\x51\x31\x22\x20\x0d\x47\x8d\x25\x75\xd1\xf0\x2d\x60\x82\x54\x2d\x34\x4e\xc6\x33\xf6\x33\xcf\x57\xcb\xa2\xfa\x71\x9e\x16\x2a\x2d\x4f\x5d\xef\x3d\x07\x63\x15\x7d\xe7\x41\xb8\x5f\x84\xfb\xe5\xce\xfd\xa2\x22\x35\xcf\x9c\xe0\xb5\xf2\x4d\xc5\x32\xdc\x2d\x50\x32\x12\x0f\xc1\xcd\x02\xc5\x77\x2b\xab\xc0\x13\xcd\xb9\xb4\x6d\x39\xbf\x55\x30\xd0\x71\x74\x94\xf3\xa8\x7c\xf3\x3b\x8b\xfe\x80\x72\x1f\x6d\x07\x01\x03\x65\x46\x63\xfb\x65\xc2\x6e\x56\xb7\xca\xf4\x69\x10\x60\x0a\x92\xae\x53\x20\xca\xdd\xc0\xa9\xf0\x01\x4c\x3a\x06\xfe\xd5\x89\x75\xd0\xda\xc3\x54\x21\x22\x5e\xaf\x95\xf5\x40\x1e\x3a\xd2\x79\x77\xca\xc4\xb8\xd6\xb5\xc8\xb8\x7c\x0e\xd3\xee\x3b\x76\x9b\x16\x82\xf1\x21\x1b\x8d\xc0\x32\x63\x9e\x27\x93\x4a\xc5\x52\xc1\x52\x08\xe7\x08\x2a\x42\x97\xbf\xfa\xf4\x9c\x2f\xc1\x2a\xb5\xa2\x7b\x2b\xd7\xd1\xd8\xad\xd2\xa9\xac\x50\x1f\x70\x5b\x99\xf4\x38\x01\x7e\xa1\x78\x5d\xc4\x6c\x2c\x6d\xc2\xfd\xca\xc2\x61\x93\x0b\xf4\x11\xd4\xa6\xf8\x79\x4d\x9c\x69\xf4\x88\x85\xb8\xbe\x50\x4c\x4d\xfc\xba\xb6\x45\xfd\xdd\x2b\x5e\xeb\x8d\x07\x1c\x1f\x38\xae\xa5\xca\xd2\xc5\xf5\x52\xce\x8c\x59\xd9\x17\xa5\x5d\x15\x2a\xbc\x35\x1c\x83\x22\xfd\x9d\xe5\x92\x53\x26\x4a\x33\xcd\xa2\x2f\xb8\x65\x07\x82\xb0\xec\x6e\x90\xad\xc9\xa5\xca\xb7\x16\xa5\x64\x15\x83\x45\xb4\x35\x0c\x5b\x8e\xe9\xdc\x0f\x96\x2d\x5b\xfa\x1a\xd3\xc8\xb9\x1c\x75\x89\x30\x14\x9e\x25\x3f\xfd\x12\xd6\x93\x4d\xd7\xa4\xa8\xfb\x00\xc6\x59\x81\x4f\xc9\x7a\x4d\x8a\x8d\x13\x9d\x92\x5e\x4c\x12\x92\x9a\x89\x06\x91\x65\xdd\x8c\x20\x9c\x77\x29\x84\x78\x1e\x93\x22\x14\xc0\x16\x35\x71\x9e\x80\x98\x43\xbe\x1b\x48\x50\xe5\xa1\x24\x48\x23\x99\x07\x3d\x89\x50\xdb\xe6\x96\x1e\x54\x50\x5a\x14\x93\xc2\x7e\x29\xf4\x2b\x39\x95\x81\x73\x64\xb5\xfa\x96\xc5\x6b\xd9\x1d\xe4\xd6\x78\x61\x6e\x81\xca\x16\x74\x2e\x08\xc7\x5b\x5c\x83\x2b\x8a\x31\xbc\x81\x1a\x3a\x64\x77\x08\x37\xa6\x28\x2b\x48\xe9\x1c\xb5\xcf\x2f\x5f\xb6\x63\xcd\xd8\xd9\xb6\x8c\xf5\xb8\xdb\x27\x44\xbc\xcd\x69\x7a\xea\x58\x28\xa5\xf1\x40\xc7\x65\x00\xd3\x03\x35\x06\x52\xd0\x80\x31\x9f\x5e\xc0\x42\xc0\x8b\x48\x6e\xf0\x98\x28\xb3\xb8\x37\x51\x41\x58\xdc\x2a\x85\x9c\x5a\x91\x3c\x26\x02\xe3\xa2\x40\xfd\x77\xd1\x2a\x76\x5e\xa9\x33\xcb\x32\x11\x8c\x33\x5b\xde\x31\x26\x02\xbb\x01\xbc\x9e\x27\x5e\x5e\x45\x14\x07\xa2\xec\xc2\xac\x65\x5b\xff\xc0\x18\x56\x7a\xc3\x29\x6b\x19\xf5\x6e\x39\x8e\x09\xca\xb3\x8c\x4d\x9c\x1b\x8e\xec\x3c\x83\xbb\x03\xc6\x8b\xe6\xcd\x01\x6f\x28\x8f\x6c\xcd\xcc\xa5\x99\xe9\x78\x32\x2d\x37\x14\x15\xce\xe2\x20\x36\x81\xa8\x9a\x67\xe1\x5a\x09\x6c\x9a\x4a\xea\x4f\x25\x27\x95\xd3\x67\x00\x7f\x21\xd8\x22\xc4\x6a\x1a\x9a\x25\x8a\xbb\x8b\x64\x09\x41\xbb\x88\x0f\x0e\xa7\x95\x4a\xfc\xe1\xed\x96\xb0\x57\xb7\x84\x26\xa8\xb1\x84\x5f\xee\xdd\x94\x8c\xc9\x21\x59\x3b\x51\x93\x99\x20\x98\x56\x40\xdb\xcc\x97\x20\x95\xe8\x9d\xcb\x44\x54\x04\x56\x9e\xe4\xb8\xf6\x3e\xe9\xa6\x16\x72\x15\x97\x00\xb1\x02\x40\xe8\xc7\xea\x55\xe5\x3b\x37\xd4\x11\x95\x5a\xe6\x6a\xed\xda\x25\x74\x3f\xa7\x55\xff\x45\x17\x58\xa5\x40\xa8\xc1\x76\x6d\xb0\xeb\x0a\xbe\xa9\x31\xe2\x36\x7d\xfb\x0b\x6b\xec\x15\x53\xe3\xd5\x5e\x06\x90\x26\x64\xec\x9c\x6b\xe0\xa1\x46\xe1\x61\x02\xd3\x56\x9d\x3a\xae\xd4\x99\x09\xd7\x9d\x5b\x0b\xc6\x9a\x9a\x21\xb8\x38\xd5\x35\x44\xeb\xaa\xbb\xe4\xb1\x2c\x5f\x34\xe5\x63\x74\xe8\x66\xa7\x0b\xf7\x8a\xa9\xab\x59\xa5\xac\x9d\x06\xe4\xf6\x80\x05\xaa\x34\x11\xa6\xd6\x9d\xdb\x4b\xed\x29\xbc\x5d\xe4\xd7\x97\x35\x83\x71\xa3\xac\x79\x57\xa2\x6e\xa1\xd5\x3c\x5c\x27\xce\xb6\xea\xe8\x5d\x9e\x8b\x72\xb6\x4b\xab\x6e\xbe\xc4\xbc\xaf\x6e\xd4\x88\x4e\x87\x97\x33\x65\x7a\x73\x89\xc3\xcc\x09\x87\xd0\xf7\xaa\xd3\x9a\xf4\x9a\xe5\x2a\x4c\x13\xb7\x9b\x01\xaa\x77\xf5\x32\x5f\xd6\x81\xae\x0e\x22\xba\xea\xa6\x40\x65\xce\xa1\xae\xc4\x02\xc6\xa1\x6e\x48\x19\xab\x17\x1b\x8b\x45\x48\x11\xa3\x0c\xf5\x55\xce\x37\xa4\x91\x75\xeb\x43\x49\x7d\x41\xd7\xbb\xff\x5a\x77\xdf\x9a\x8c\x30\x44\x74\x3a\x4a\xb2\x14\x9f\xec\x46\xdc\x3a\xab\x45\x71\x0c\xce\x25\x27\xf1\x89\xb1\xd5\x04\x21\x85\x82\xd5\xe7\xaa\x29\xb6\xa6\x73\x58\x76\x47\xfc\x54\x2d\xfa\x5a\x09\x1c\xf2\xd2\xfd\x72\x85\x1a\x35\x87\x2b\x28\xbb\x1f\x3b\x62\xb4\x5d\x4a\x73\x23\xa1\x94\x65\xbd\x5c\x2e\x91\x92\x6e\xc6\x84\xd1\x2f\x72\x26\x83\xdd\x3e\x81\x19\x40\x3c\xed\xb5\x96\x4b\x7a\xce\xe6\xb6\x6c\x4f\x97\x95\x57\xa4\x50\x04\x2e\x62\xea\xd4\xc1\xea\xf1\x1a\x0f\x93\x3c\x12\xe1\xad\xe7\x85\xdc\x08\x51\xb3\x9c\xda\x50\x1a\x27\xfc\x39\xed\x9d\xf0\xfd\x7d\x8f\x62\x31\xc2\x00\x58\x7b\x4c\x54\x0d\x81\x39\x20\xea\x40\x94\x91\x32\xaf\x1a\x37\xdb\xdc\x40\xc9\x2d\x42\x98\x14\x0a\xa1\x7a\xfc\x89\xcf\xe0\xa1\x54\xd9\xa8\xa7\xbc\xdb\xbd\xdd\x54\xd3\xcf\xd4\xc3\xd6\x9b\x47\xe3\xd5\x30\x3d\x2e\xc7\x5b\x4c\x64\x39\x6e\x9c\xc5\x72\xec\x4c\x81\x27\x5b\x34\xc8\x93\xc6\x06\x79\xe2\x34\x38\xad\x6a\x5a\xaa\xe1\x0b\xa6\xcb\x9a\x06\x4d\xfa\x2a\xdb\x60\xb1\x4d\x83\x45\x73\x83\x85\xdb\x20\x1e\xd4\xc6\x56\xb5\xd3\x32\x96\x35\x75\x59\x76\xb7\x55\x3d\x96\xdd\xb9\x4e\xf1\xaf\xf3\x4f\xaf\xd9\x1d\x9b\xff\xfa\x86\x2e\x95\x70\x71\x51\x2b\x5c\xc4\x81\xdf\x2d\xc2\xb9\x6e\xca\xe8\xc8\xed\xfd\x6e\x81\xe8\xcc\x89\x00\x71\xb7\x59\xe6\xac\x08\x08\x47\x59\xf2\x8e\x4d\xa9\x70\xd3\x50\xdd\x25\xfc\x7a\x6b\x0f\x34\x25\x1f\xac\x7a\x9f\x09\xb0\x5a\xe0\xa3\x46\x27\x99\x46\x0b\xa8\x5b\x26\x7e\x4d\x78\x14\x5b\x33\xa2\xaa\xd8\x3a\x58\xde\x4b\x4a\xfe\x6b\xc8\x68\x19\x11\x8d\x0b\x02\xdd\x8b\x61\x6a\x01\x4e\xe5\xb4\xe5\x16\x3c\xbe\x0b\x1a\xcc\x16\xa2\x5e\xe3\x1e\x78\x79\xfe\xea\xec\xfd\xeb\xeb\x0f\x2f\xce\x7e\x39\xfb\xe9\xe2\xf5\xc5\xf5\xc5\xf9\x15\xd5\xec\xff\xeb\xe4\x3e\x5f\x09\x89\x89\xf1\xc5\x75\x72\x2b\x9f\x96\x9c\x2d\x13\xce\xce\xf8\x6d\x21\x1f\x15\xc4\xf5\x93\x89\x14\xfc\xa7\x3c\xff\x28\x31\x3e\x5e\x2c\xfa\xd1\x13\x2d\x98\xda\x8a\x96\x91\xdf\xd5\x48\x55\x69\xfd\x15\x92\x56\x66\x63\x59\x7e\xdd\x62\xdd\x37\x17\x97\x17\x6f\xce\x5e\x37\x0f\xba\xef\x0d\xba\xef\x0f\xba\xef\x0d\xba\xff\x95\x83\xee\x37\x0e\xba\x5f\x19\x74\x5f\x99\xe2\xdd\x0b\xda\xfe\x8f\xbd\x9b\x41\xef\x3f\xda\x2d\xb3\xe5\x6f\x85\x67\xd0\x91\xe5\x13\xa6\x04\x95\x94\xde\x8b\x35\xeb\x5e\x9d\xbf\xbb\x38\x7b\x7d\xf1\x8f\xb3\xeb\x8b\xb7\x97\x1f\x5e\x5d\xbc\xbb\xba\xfe\x70\xf9\xf6\xe5\xf9\x87\xab\xeb\x77\x17\x97\x3f\xd3\x7b\x75\x24\x6e\x6a\xbc\x45\x79\xe4\x3a\xe9\xea\x00\x05\x69\x39\x40\x81\x1f\xce\x22\xcd\x6e\xe1\x72\x7d\xc9\x96\x60\xc5\x92\x76\xc7\x49\x36\x51\x61\x50\x40\xa4\x9e\x76\xd3\xec\xb7\xff\x3f\x77\x7f\xda\xde\xb8\x71\x2d\x8a\xc2\xdf\xf9\x2b\x48\x9e\x04\x46\x1d\x96\xd8\xa4\xba\x93\x9d\x50\x5d\xe6\xe9\x41\x6d\xf7\x89\x7a\x48\x4b\x1d\x1f\x1f\x98\x5b\x81\xc8\xa2\x58\x16\x08\xd0\x85\x82\xd4\xb2\xc8\xf7\xb7\xbf\x4f\xad\x9a\x01\x90\x6a\x3b\xd9\xfb\xde\xe7\x7e\x21\x81\x42\xcd\xc3\xaa\x35\x2f\x3a\x17\x74\xf1\x61\xcd\x84\xa0\xca\x47\x64\x6f\x8c\xd9\xd0\x06\x75\xd1\x85\x8f\xc6\x98\x7d\x45\x64\xc8\x3f\x20\x7c\xf9\x75\x43\x60\xcb\xb8\xd9\x7f\x9c\xdb\x11\x54\xf9\x3a\x15\xf3\x15\x5d\x58\x8f\xd7\xa5\xe9\xf4\x95\xeb\xd7\x08\xe7\x4d\x67\x76\x9f\xe8\xea\x7e\xa1\x22\xa9\x74\xef\x98\x58\x75\x3d\xf3\xbd\x2e\x78\xba\xab\x36\x9b\x82\x0b\xba\xe8\x23\x4f\x3b\x97\x99\x6b\xf1\x15\xb8\x98\x36\x98\x94\x17\x19\xe0\xa4\xa7\x3d\x10\x92\x62\xbb\xbd\x13\x71\x81\xa2\xe8\x5a\xfe\xa1\x13\x54\x90\xc2\xf7\x43\xed\x64\xdc\x6e\xce\x0b\xcc\x7e\x9f\x23\x90\xbd\x31\x3e\x7c\x25\x65\x3b\x29\x58\xc5\x1f\xb9\x52\x01\x4d\x3c\x8f\x91\xa3\x09\x77\x1c\x33\x7f\xa8\x1d\x16\x45\x5e\x47\xa3\x28\xce\xbd\x6e\xfb\xb1\x11\x82\x3d\x44\xc3\x50\x06\xa6\xde\x5a\xc0\x11\x1d\x35\x86\xa6\xfc\x1d\x2b\x61\x4d\xdb\xf4\xc6\x6c\x14\x9d\xb0\x5f\xca\xe5\x63\x8f\x10\x1b\xd4\x8b\xd7\xb6\x26\xe4\xf9\x96\xf0\x96\x2d\x0f\xde\x73\x4f\x44\x14\xc5\xbd\x3b\x11\x0b\xb4\xdd\x9e\xca\xbf\x1e\x21\x39\x3a\x41\x56\x4b\x04\x4c\xc4\x85\xf2\x39\xd8\x85\x22\xc6\x6e\xa7\x25\x13\xf7\xc7\x4c\x04\x18\xd5\xf8\x67\x6a\x77\x20\x26\x52\xd3\xce\xb2\x31\xcc\x9a\xc0\xd8\x8d\xb2\xf6\x3e\x18\xa8\x1b\x14\xe7\x70\x84\x74\x0f\xbc\x8a\x72\x74\x27\xe2\x1c\x45\x51\x1c\x73\x92\x3b\x78\x34\x84\x15\x88\x9f\xfc\xe7\x1f\x7f\x1a\x5c\x4d\xe2\x9f\x16\x03\xf4\xc7\x3f\x3c\x41\x28\x8a\x78\x32\x9e\x4d\xdf\x83\x43\xca\x58\x3e\x23\x15\x0d\x17\xa4\xb0\xb1\xd7\x48\x30\x23\x39\xc2\xb4\x0e\x2b\x8c\x0f\xd2\x60\xcd\x63\xed\x90\x71\x5f\x4c\xa8\xdf\x32\x37\xf5\x16\xeb\x93\x73\x74\xd4\x31\x76\x72\x6e\x6a\xbc\x98\x5b\x77\x02\x14\x0a\x4f\xe5\xdf\xe1\xe1\xf1\xe6\xf0\x8e\x8e\x5a\x87\xc7\x51\xcb\x4c\x90\xfa\x32\x46\xd1\xde\xa6\x6a\x87\xa9\xa5\xd9\xdd\xfe\x38\x29\x21\x28\x70\x83\x36\x04\xe7\x76\xeb\x63\x79\x7e\x1d\x35\x53\xeb\x7d\x71\x45\xc2\x06\x94\x33\x07\x1d\xb3\x02\xb4\x3c\xbc\xe3\xe9\xd9\x77\x82\x3d\x9b\xb3\xdc\xd4\xec\xe9\x5a\x38\x95\x3c\x0c\xf4\x00\xde\x4e\x58\x51\x95\x76\x2a\xd2\xda\x8e\xeb\x84\x7a\xeb\x90\xca\x10\xd6\x0b\x9c\x46\xd1\x07\x11\xa7\xc8\x9a\x2b\xb7\xce\x76\x6a\xf3\x87\x99\xb4\x41\x72\xb8\xb6\x61\x16\x84\x70\xd1\x86\x3b\xfb\x13\xd7\x98\x55\xd5\x6c\xab\xc2\xac\x32\xa5\x95\x33\x04\xf4\x6b\xcb\x1d\x22\x02\x9b\x79\xb8\x68\x71\x1e\x2c\xc2\xbe\x93\xe4\x03\x06\x1a\x45\xe7\x10\x9c\xc3\x23\xa2\x01\xec\xfa\x4d\x9e\xf0\x28\xea\x9d\xcb\x83\x71\x82\x38\xe1\x6d\xbd\x69\x8d\x88\xe3\x34\x52\x00\x08\xee\x0d\x29\xb4\x6f\xa3\xaa\x2d\xc4\x96\xf1\x53\xd0\xd7\x95\xe0\xea\xe2\x7e\x63\x4d\x06\xb8\x03\x60\x72\xc9\x54\xdc\x3c\x8b\x62\x19\x71\xbd\x5b\xea\xa0\xe3\x18\x80\x88\x3c\xf8\x2d\xa8\xfc\x5f\x08\x21\xd4\xb6\x17\x45\xfd\x3f\x6e\xff\xd8\xb7\x69\x50\xff\x2e\x96\x78\xd5\x07\x39\x29\x56\x79\xe9\x60\x7b\x35\x08\x02\xaf\x41\xc0\x15\x01\x67\x46\xd5\xe8\x73\x27\x6c\x99\x4e\xad\xfe\xdc\x17\xa8\xb8\x00\x76\x36\xc4\x92\xf8\x2d\x61\x88\x74\x78\x94\x60\x24\x35\x58\x86\xdb\x36\xb6\x6c\x2d\xdc\xd8\x07\x4e\x41\x33\xf3\xa1\x90\x30\x8f\xc1\xaf\x28\x02\x98\x3d\x8d\xff\xc5\x8d\x80\x26\x31\x6f\x3d\xe2\x7b\x86\xac\x3b\x1a\x0c\x04\x1d\x08\x35\x78\x68\x7b\x47\xd1\x17\x75\xef\x84\x28\x9c\x3c\x99\x4a\x07\x6a\x93\xce\xe9\xe7\x4f\x6f\xe5\x01\xb0\x1b\x9f\x4a\x42\x0f\xb4\xc1\x09\xb1\xe1\x23\x83\xc4\xa1\x28\x3e\x6f\x36\x94\xbf\x4a\x4b\x49\xb4\x82\x43\xc8\x60\x97\xb6\x21\xd2\xc9\x4c\x29\x95\xa9\x81\x79\x91\xf5\x4b\xa4\x4f\x0b\x74\x4c\x77\xb8\x7f\xf1\xf2\xc3\xeb\x1f\xfb\x70\x32\x75\xcb\x41\x0b\x7b\x83\x11\x86\xf8\x74\x2b\xad\x61\x0c\x5a\x82\x58\x8f\x46\x1e\x59\x5f\xa3\xf6\x0d\xe7\x95\x6c\xd9\x71\xed\x01\x80\x9a\x2e\x8f\x5a\xa6\x49\x4e\x84\x55\xc4\x7a\x21\x62\x10\x94\xb2\x65\x5c\x20\xab\x38\x73\xab\x77\xa2\x84\x2e\xfa\x8d\x70\xa4\x90\x6e\x36\x2c\x37\x20\x40\x66\x56\xbb\xad\x40\x78\xbc\x67\x14\x7e\x3f\x1b\x44\xd1\x81\xd0\x43\x5e\xbc\xdb\x43\xe3\xb0\x83\x7d\x01\x4c\x4e\xa4\xc6\x66\x89\x14\x7f\x1c\xac\x36\x8e\xdc\x8c\xc3\x69\x71\xb2\x83\xe3\x30\x9d\xac\xd1\xa6\x87\x22\x51\x7e\xfd\x28\x42\x35\xe8\xdc\x57\x83\x76\x1c\x5e\x1d\xf9\x48\x03\x54\x17\x51\x29\x4f\xd8\x0c\x0e\x9b\xde\x60\xfb\x88\xcc\x1d\xd0\x02\xe1\xc0\xfc\x8e\xb7\x8c\xec\x50\x1c\x3f\x0f\xa5\xb7\x30\xa1\x9d\xe0\x31\x48\x49\x3b\x1e\x82\x30\x8f\xa2\xd6\x83\xa4\xf3\x07\x01\x36\xfd\xee\xd7\x7b\xe7\x79\xc0\xd4\x0a\xfb\xef\x94\x63\xb8\x36\xfa\x92\x0e\x7f\xa9\x28\xbf\x3f\xa7\x19\x9d\x8b\x82\xc7\xdf\x94\x73\xce\x36\x22\xb9\xce\xd6\x9c\xf4\xbf\x19\x88\xc1\x37\xfd\xd9\x37\x1a\x0f\x34\x20\xbb\xd3\x20\xcb\x5f\xa5\xb9\x24\xbe\x97\x2c\x5f\x74\x4b\xca\x95\x20\x76\xd1\x55\x14\xa3\x24\xbc\xba\xff\x64\xf9\x91\xbe\xa5\xfe\xd9\xff\xaa\x40\x9c\xff\x86\x78\xa0\x46\xa6\x62\xe7\x00\xea\x85\xdd\xe6\xe1\x66\xc4\xd2\x1f\x6d\x04\x34\x06\xee\x81\x05\xf7\x0d\xa8\x48\xb1\xa4\xbc\x03\x56\xc0\x01\xe4\x54\xbb\xb3\x48\x1f\x0d\x23\x9a\x42\x18\xd1\x83\x41\x31\xcd\x0d\xe3\x85\xc6\x09\xb3\x06\x20\xb3\xd6\x2b\x7b\x9b\x79\x48\x7c\x1d\x35\x81\x1d\xe9\x07\xe0\x32\x37\x43\x9b\xd8\x84\x1b\xb1\x49\x30\x7b\xbf\x35\xde\x97\x13\x91\x98\x5e\x3c\x56\x83\x6b\x6b\xda\x72\x31\xd9\x6a\x94\x3c\xab\x9d\xd7\xbf\xa7\x08\x51\x1a\xd8\x7c\x17\x7f\xa6\xc8\xb1\x03\xef\xc4\x5e\x1c\x73\x67\x33\x9d\x0a\x9f\x0e\x68\x23\xd1\x8f\x3c\x12\xdd\x93\x1b\x0b\x8f\x54\x17\x96\x54\x77\x15\x7f\xf1\x5b\x1f\xef\x69\xfd\x7c\x7f\x17\x25\x1a\x2c\x0f\x77\x03\x13\xb6\x85\x3f\x1c\x2e\xdc\xdd\x5f\xf2\x85\xa8\xc7\x18\x69\xf8\xcc\xd7\x17\x01\x4d\xf8\x4c\x1d\xc3\x5c\xe3\x3a\xd6\x74\x60\xb7\xa3\x43\xc3\xe5\xa3\x26\xb8\xdb\xa5\xd8\x21\x4c\xe3\xfe\xff\xba\xce\xd8\x7a\x4d\xf9\x93\x4a\xb0\xac\x8f\x93\x3e\xfd\xb2\x29\xb8\x28\xfb\xb8\x4f\xe5\x94\x1d\x5d\xa5\x57\x34\xeb\xcf\x70\x08\x48\xfa\x55\x49\xbb\xa5\xe0\x6c\x2e\xfa\x1d\x3a\x4c\xcb\x86\xe3\x4a\x38\x4a\xbd\x66\xf4\x0c\xb1\xdd\xf6\x55\x76\x39\xc0\x65\xca\xb2\x8a\x53\x88\x8a\x25\x6b\x61\xd7\xf9\x1e\x11\xe6\xf8\x44\x3c\xaf\x03\x2e\x08\xe0\xa6\x27\xc0\x81\x2a\x31\xf3\x59\x3b\x51\x64\x42\x6e\x38\x9f\x8b\xc8\xdd\x8b\x3c\xce\x25\xa9\x3d\x3a\x29\x9e\x33\x53\x6b\x61\x6a\x4d\x09\x4b\x8a\x59\x87\x26\xe9\x8c\xe4\x49\xea\x5b\x0b\x61\x3a\x5c\xb2\x2c\x7b\x5f\x65\x59\xb9\xa7\xc7\x72\xcc\xca\x10\x01\x22\x5b\xc2\xca\xa9\x30\x07\x09\x9f\x29\xe7\x9c\xee\xf8\xd3\x21\xcd\xcb\x8a\xd3\xef\x2a\xb6\x20\x85\x53\x45\x65\xbf\xaa\x24\x86\x29\x18\x37\x91\x14\xd3\x61\x95\xdf\xf1\x74\x13\x34\xeb\xc5\x7b\x69\xdc\x25\xa7\x10\x6b\x9f\x2e\xba\x80\xaa\x74\x45\xd1\xbd\xa2\xdd\x0d\xa7\x25\xcd\x85\x17\xc4\x04\x3a\x01\x59\x9b\x0b\xb9\xaf\x6e\x11\x16\xf7\x22\x62\x34\xa9\xec\xdf\xe9\xff\xab\xef\x55\xda\xf7\xe9\x6a\xd5\x03\xf0\x1d\xe9\x1b\x19\x10\xea\xd4\x11\xf5\x33\xdc\x49\xd4\xd3\x38\x23\xa6\xc4\xf9\xd9\xdb\x57\xa7\x84\x0e\x5f\xb3\xb9\x38\xa7\x32\x5d\xe9\xba\xab\x7e\x69\xce\x98\x36\xb0\xbd\xa1\xf7\xa5\xe6\x3c\x8f\x1c\xf0\x62\x81\x28\xe3\xf2\x5a\x2e\xd6\x60\x90\xbb\x33\x5c\x34\x33\x6c\xb7\xb2\x94\xcb\x92\x3a\x20\xac\xdb\x32\x02\x3d\x30\x4c\x52\x26\xba\x07\x6d\xd2\xd4\xd6\x38\xec\xf5\x2e\x5d\x2c\xda\xcc\x64\xeb\x1e\x49\xe9\xd4\xd6\x98\xd0\x19\x31\xaa\xb0\xf2\x55\x0e\x65\xa6\xc5\x93\x7b\x9c\x8f\xb6\x54\x67\xbc\x89\x7a\xb5\x4e\xf4\x44\x44\x51\xf3\xa3\xfa\x32\x73\xd2\x3a\xbd\x34\xa5\xf6\x6e\x75\x70\x1e\x94\x5e\x80\x89\xde\x67\xbc\xef\x59\xb3\xcd\x3d\xde\xc0\xda\x63\x85\x58\x7f\x80\x81\x9a\x83\x51\x11\xe2\xed\x31\x31\xea\x1a\x11\x61\xac\x0b\x6d\xef\xdd\x72\xe1\x2a\xdf\x50\xca\x82\xc7\x15\x48\xc4\xd1\x78\xe6\xa4\x12\x54\x7d\xa7\xb2\x75\xed\x3c\xbf\x45\x40\x6b\xbd\x4c\xf9\x6d\x1e\xd6\xcb\x00\xa5\x89\x47\x45\xfb\x35\x1f\x49\x1d\x73\x58\xaa\x8e\x77\xcc\x1a\xd3\xe8\xbc\xbf\x2b\xbc\xcc\x3a\x80\xd7\x02\x5b\x49\x3d\xd1\x9d\xf6\x49\x76\x70\x71\xb5\xdf\xea\x83\xe6\x56\xd4\xb7\xb0\xa8\x85\xf1\x95\x1f\x21\xae\x43\xca\xb2\xbd\x99\xe4\x47\x15\x26\xae\xe6\x52\xcb\xd5\x41\x5c\x4e\xb5\xb5\xda\x63\x45\xa8\x0d\x91\xcc\xc2\xd8\x82\x6d\x81\xf7\x84\x07\x20\xb4\x7a\xf0\x4e\x3b\x89\x34\x4a\xd9\xed\xa6\xf0\xf2\x2b\xb8\x13\x74\xb5\x1e\xd2\x00\x82\xde\x7b\x02\x1b\x15\x0d\x5a\x33\x35\x77\x38\x54\xd4\x6e\xe1\xbf\xfe\xce\x38\x26\xfe\x55\x67\x62\x64\x2a\x20\x63\xf5\x3c\x27\xb1\x80\x9d\x31\x55\x7f\x6a\xd3\x68\xd0\xa3\xe6\x9c\x02\x89\x46\x6f\x89\xca\x81\xb5\xfe\x85\xc0\xea\x5d\x7e\x07\xb5\x02\x55\xe5\x3e\xfb\x39\x58\x34\xbb\x20\xd3\x58\xe8\x96\x6c\xe5\xa6\x5e\xe5\x0d\x23\x68\xdf\x5b\x75\xaa\x9c\x46\x37\xd8\xd4\x1e\x91\x4f\x6f\xa7\xd4\x1f\x0b\xfc\x05\x15\x2a\xef\xec\xea\x6f\xaa\xfe\xf4\x50\xe0\x6f\xe2\xb7\xa7\xc7\x6c\x81\xa2\x77\x95\x65\xda\x37\xf1\x63\xba\x25\x2d\xc3\x38\x18\x44\xf2\x5f\xdc\x53\xe6\xe8\x6b\x96\x2b\x38\xa2\xfc\xb7\x1d\xce\xff\x47\x4e\x9b\x01\xab\xd0\x0b\x0d\x89\xf5\xc9\xb1\xab\x62\xf0\x8e\x39\x2c\x8a\xf2\x92\x3f\x8f\x15\xe5\x2c\x77\x54\x27\x44\x3c\x96\x90\x6d\x65\x30\x8c\x25\xa7\xf4\x57\x1a\x27\x33\xdf\x0c\x52\xa2\x34\xab\x1a\xb2\x7e\xbb\xf6\x51\xf5\x59\x10\x3c\x2f\x40\xcd\x61\xa1\xc0\x0b\xa7\x32\xf6\xd2\x88\x0d\xf6\x52\x44\x50\x9a\x26\x74\xb8\x99\x93\xd1\x8c\x80\x86\x9b\x7c\xe5\x29\x19\xcf\x08\xe8\xa7\xc9\xd7\xe5\x86\x1c\xcf\x08\x68\x97\xc9\xd7\x72\x43\x9e\xce\x08\xe8\x86\xc1\xeb\x88\x3c\x93\xaf\x23\xfd\x3a\x26\x7f\x92\xaf\x63\xf5\x2a\x46\xe4\xcf\x33\xd2\x17\xfa\xab\x18\x93\xff\x90\xaf\xfa\xeb\xed\x88\xfc\x65\x46\xfa\xb7\xa3\xfe\x4e\x92\x09\xb1\xdf\x49\xf2\xb0\x53\x5a\x8f\xde\x2c\xdc\x31\x4e\x8f\x96\x05\x5f\xa7\xe2\x37\x4d\x87\xa7\x65\xe1\x96\xb7\x65\x7b\xc0\x1e\x1b\xb2\x52\x5b\x13\x23\x49\x4b\x8e\x66\xf2\x1e\x96\x24\x15\x2b\x09\x97\x78\x7a\xd9\x16\x65\xdc\xed\x1a\x55\x42\x0c\x5d\x4c\xf3\xed\xd6\x26\x7a\x71\xca\xbd\xd4\x57\xc5\x7a\x53\xe4\x34\x17\xb5\xf4\x0b\x5e\x41\x88\xd9\x3d\xc9\xfb\x8a\xc9\xd7\xf3\x4d\x96\x0a\x2f\xed\x5d\xb1\x60\x4b\x46\xf9\x4e\x8d\x40\x43\xeb\xaf\x19\x00\xbf\x6e\xe9\x3f\xbf\x56\x15\xbd\x4b\xef\xaf\xe8\x59\x31\x4f\x25\xc8\x62\xe5\x77\x80\x51\xb3\xf2\x8d\xcf\xc6\xa4\xc3\x0f\x9b\xd2\xed\x43\xf9\xd2\xdc\x82\x20\x08\x93\x9b\x50\x3e\xa8\xdd\xa1\xf8\x30\xb0\x15\xd5\xa3\x4a\x36\xe2\x11\xb9\x27\xf5\xb3\xfa\x60\x86\x08\xdb\xd3\xbc\xa8\x4f\x4a\xa0\x2e\xf7\xe9\x4b\xe5\x17\x5e\x57\xa4\xa6\x0f\x76\xac\x7d\x53\x1f\xf5\x40\x5d\x1e\xb9\x8d\xeb\x89\x2a\xeb\x07\x4f\xd6\x21\x77\xb7\xf7\xae\x32\x04\xb3\x21\x37\xbc\x9f\xa0\xfb\xe2\xf3\x46\xff\x2a\xbb\xe3\x25\xa8\x2c\x6e\x3f\x91\xb1\x9c\x28\xf7\x1e\xf4\x58\x65\x18\xbb\xde\xba\x1c\xc1\x7e\x21\xe3\x63\x7f\xd4\x2e\x97\xdd\x3d\x64\x2c\x27\xd2\xbe\xaa\xaf\x3f\x32\x9a\x2d\xc8\x58\x4e\x25\x3c\xaa\xd4\x8f\x29\x07\x33\xca\xb1\x9c\x49\xfd\x12\xf6\x8a\x5f\x93\xb1\x37\x85\x2f\xf8\x75\x30\x2a\xf9\xf9\x3f\xdc\xa0\xcc\x57\xff\x00\x90\xb1\x9c\x3a\x3f\x25\xcc\x53\x1b\xdd\x5f\xbd\xcc\x2d\xa3\x7c\x4d\xaf\xaa\xeb\x6b\xca\xc9\xb1\x9c\x4b\xf3\x66\x16\x83\xd1\x5c\x9c\x33\xd0\x1d\xd7\x0e\xc1\x8f\xc7\xb0\x28\x8d\x0f\xaa\xc4\xe7\xfc\x26\x2f\xee\x72\x72\x2c\xe7\x54\xbf\xa8\x2f\xf2\x44\x1c\xcb\x79\xfc\x8e\x9a\x6d\xea\x8e\xcc\xb1\x9c\x46\xf7\xae\xbe\x7f\x9f\x96\x6a\xbb\x1e\xcb\xc9\x34\x6f\xe1\xb7\x8f\x29\x4f\xd7\x25\x39\xfe\xb3\x97\x43\xa5\x99\xfe\xe8\xe0\xa2\xe4\xf8\x3f\xa0\x47\x26\xd6\xa8\xaa\x85\x66\x1b\x39\x72\x39\x9f\xea\xd9\xec\x8f\x7c\x9e\x0a\x72\x0c\xfb\x0f\x9e\xfb\x9d\x70\x3e\x4e\xbf\x6c\x38\x2d\x4b\x56\xe4\xe4\xe9\x28\x98\x10\xf7\xc5\xc2\x72\x38\xe8\x00\xc6\x8d\xfa\x56\x2c\x82\xb3\x20\x2f\xbd\x1a\xac\x30\xa2\x5c\x99\xf5\x3b\xaa\x73\xc8\x39\x64\xc6\x19\x46\x2c\xbc\x19\x54\xdf\xbd\x19\x2d\xd4\x8d\x71\x95\xce\x6f\xae\x2a\x9e\xcb\x91\xfd\x4e\x0e\xd7\x55\xc5\xb2\xc5\xc7\x2c\x15\xf2\xbe\x01\x06\x8d\x8e\x07\x1a\xb2\x0a\x4a\x2a\x2e\xd8\x9a\x16\x95\xc0\x81\xbd\xf1\xae\xc6\x30\x60\xcb\xb8\x6f\x52\x1c\xad\xfc\x91\x17\x6b\x56\x5a\x8c\x55\xbf\x0e\x39\x2d\x8b\xec\xd6\x73\x09\xdc\x82\x1e\x0d\xc5\x8a\xe6\x60\x75\xda\x5e\xf5\xbb\x4a\x80\x8e\xdf\x87\xab\x92\xf2\x5b\x6a\x05\x48\x23\xcc\x94\xad\x66\xed\x7b\x4c\x11\x2e\xc8\xa2\x98\x57\x4a\x02\x12\x8a\xd0\xfb\x8e\x6d\xc4\x86\x85\x2a\x12\x17\xf8\x61\xbe\x4a\x79\x3a\x17\x94\xbf\x4e\x45\x3a\xe9\x8d\x76\x08\x37\xfb\x9a\x93\xc1\x20\xff\xe3\x31\x2e\x86\x8b\x54\xa4\xa4\xdf\x1f\xe4\x38\xb7\xac\xb5\x66\x7e\x1e\x53\x3c\x42\xbb\x1a\x47\x45\xf3\xd8\x74\x37\x1e\xdc\xc4\xd7\xcc\xfc\x8d\x0d\xb2\xfd\xae\xbd\xa3\x02\x7d\xd7\x2c\x62\x0b\xf8\xdf\x95\xa7\xa6\xe2\xae\x85\x3c\x7e\x9d\x0a\x3a\xcc\x8b\x3b\x08\xbe\x25\x31\x7c\xb9\xbc\xaa\xf2\xf7\x80\xf0\xef\x76\x8a\x93\xf8\xe4\xa7\xc5\xe0\x09\x2e\xc9\x9f\xdd\x4e\xa8\x5a\xe2\x36\x6b\xa6\x8c\x8d\x66\x4d\x44\x14\x51\x42\xe8\x76\xeb\x38\x2b\x32\x2d\x1d\x0a\x5a\x8a\x80\x8b\x94\x05\x14\x48\x91\x03\x7f\x6c\xbb\xb5\x8f\x17\x10\x7e\x22\x8a\x6a\x09\x89\x7d\x7f\x47\xc5\xaa\x58\xcc\x5c\x8d\x73\xe3\x40\xcb\xe0\xfc\x39\x39\x1a\x63\x46\x46\x9e\xc3\xed\x13\xf6\xbc\x38\x61\x03\xf2\x0c\xb1\x65\xcc\x13\x06\xf8\x51\x14\xf1\x84\x0d\xc6\x80\x24\xa0\x87\x9c\xb0\xce\x15\xa7\xe9\x8d\x73\x11\x65\x9b\x58\xee\x69\xe2\xb8\xa5\x89\x3f\x1f\x6c\xe2\xe8\x78\x6f\x23\xab\x3a\x17\xfd\x77\x4a\xc0\x46\x38\x27\xc9\xac\xe9\x11\x8b\x08\x23\xf8\xa6\x09\x1b\x3c\x1d\xf0\x19\x4e\x89\x09\xf7\x21\x93\x46\x32\x69\x0d\xd3\x0b\xef\x63\xc8\xc2\xaf\x4b\x78\x3b\x96\x6f\xca\x92\xdc\x76\xa2\x88\x22\x6d\x2e\xc3\xf2\x6e\x31\x2d\x14\x0b\x66\xd2\xef\xef\x8c\x09\x71\x8a\x5a\x46\xba\xa8\x8d\x14\xe7\x7a\xb9\x8c\x0b\xac\xa3\x12\x66\x13\xd1\x6f\x89\x48\x38\x61\x83\x38\x27\x71\x71\xc4\xd0\x93\x12\x1d\xe5\x7f\x2c\x67\x53\x46\xf8\xa0\x9c\x14\x84\x5b\xce\xee\xb7\xe0\xe7\x6b\xca\x06\xe5\x84\xc1\x6e\xde\xec\xb7\x98\xf8\x97\x18\x05\x0f\x3b\xfc\xbb\xd7\xe6\x61\xa7\x9d\x02\xff\x52\xd1\x8a\xbe\xa4\x2c\xbf\x86\xab\x84\x2e\x2c\x3b\x50\x2d\xc8\xdf\xe5\x77\xe5\xc5\xe0\x9d\xf1\x86\x02\xa2\x7a\xeb\x2f\x14\x6a\xb0\xa5\x40\x9e\xa2\xc9\xe6\x02\x22\x28\x58\x3f\x40\xd7\x59\x71\x95\x66\x1f\x74\x22\x3f\x44\x4d\xc3\xf2\xbd\x29\x78\x9d\x69\x4f\x9f\x7b\x6d\x1a\x97\xee\x01\xc7\x02\xbe\x24\x4f\xff\x27\x1d\x3c\x73\xc4\xed\x54\xd7\x38\xd1\x6a\xb4\x62\x08\x12\xf7\x26\xdb\x03\x73\x23\xb2\xd5\x7d\x07\xaf\x53\x57\xc0\xe1\xc1\x05\xc9\x87\xe9\x52\x50\xde\x69\xcc\x8f\x61\xb6\x61\xcb\x4d\x6c\x4e\xac\xf3\x2f\xb9\x6f\xe6\xbd\xf4\xda\xdc\x6a\x75\x09\x13\xd5\x34\x36\x52\xdc\x3d\x35\x75\xd8\x32\x4e\xad\xdc\xc0\x78\xad\xcc\xe2\xe6\x32\xa0\x0e\x27\xa5\x89\xf7\x7f\x5b\xdc\x80\xb1\xf1\x07\x05\xe0\x26\x5e\xb2\xd5\x65\xaf\x88\xdb\x02\x27\xd5\x73\xd3\xca\x49\xa5\x61\x9a\xfb\x3a\x20\xcf\x8c\x22\x64\x2c\x48\x9a\x54\x83\xf1\x0c\x45\x11\x8f\xd3\xa4\x9a\x61\x81\x65\xca\xf1\x0c\x97\xf0\xf0\x74\x86\xbc\xbd\xd5\x7b\x7c\x12\x9b\x43\x19\xae\xab\x52\x00\x5a\x7d\xf8\x6b\x6c\x75\x98\xc6\x3b\x1f\x80\x14\xc6\x1a\x7b\x6f\xab\xce\x03\x9c\xda\xff\xbd\xb1\x0a\x08\xd0\xdc\x93\xdf\x8e\x74\x2a\xec\xb3\xb8\x37\xd2\xa1\x45\xca\x1f\x0a\xbe\xd7\x30\x7b\x6f\xbb\xdf\x8e\x74\x04\xb0\x5a\x1b\x2a\xd6\x6f\x3e\xa7\x59\xab\xf6\xa7\xda\xa0\xa0\xf9\xa9\x80\xa9\xd9\xdb\x7a\x8b\x69\x6d\x83\x60\x1f\x43\xa8\x64\xd4\x09\x76\x9b\x16\x5c\x18\x9f\xca\x05\x99\x6b\x1d\x27\xeb\xe4\xe7\xdb\xa3\xf1\x34\xb6\xba\x3c\x05\x7e\x86\x70\x6f\x84\x26\xb1\xcd\xba\x6f\x39\x11\xfa\xf6\x68\x1c\x45\x71\x9e\x14\xf2\x72\x02\xce\x8f\x9e\xac\x9a\x94\x01\x87\xde\x4b\xfc\xe9\x50\x42\x06\x9d\x01\x3f\x40\xe2\x44\x69\x1d\xe8\x3b\xc5\x5c\x26\x62\x67\x6a\xfe\x9c\xb3\x5f\xaa\x47\x22\xd5\x35\x26\x86\x9a\x89\x21\x30\x31\x31\x0b\xc1\x62\x90\x1f\x7c\xb0\x63\x86\x5c\x5c\x32\x3d\xb5\x6c\x19\xdb\x4a\xac\xd7\x99\xbd\xc3\x39\x7a\xd6\x51\xfe\xdc\x05\x4e\x11\xa8\x0e\xe9\xc3\xec\x95\xe8\x94\x49\x31\x38\x9e\x11\x8e\xe5\xc3\xd3\x99\x8d\x9a\xf0\xf8\x54\x5c\x5e\x53\x01\xe4\xdb\xdb\x7c\x59\x34\x80\xad\x39\x27\x2b\x1f\x62\xe1\x67\x48\xf1\xbe\x25\x58\xa8\x4d\x20\x7a\xf0\x4c\x42\x84\x71\x41\x34\x01\x36\x73\x76\x0f\xaa\x2a\xae\xac\x07\x69\x1a\xeb\x00\xa1\x07\xf8\xfd\x57\x54\x37\x07\x85\x86\x02\x3d\xe4\x71\x81\x99\x0d\xe4\xb0\xde\x2b\x1b\xf9\x97\xa4\xab\xf2\x96\x6b\xb9\xae\xc3\x7b\x59\x93\x38\x30\x67\xbf\xa8\xeb\xf3\x61\x87\xdd\xeb\xfb\x74\x4d\xdf\xfa\x57\xa8\x4d\x2d\x81\xb5\xce\xe9\xa2\x9a\x7b\x1c\x58\x39\x4e\xc7\x5f\xe2\x33\xd8\x75\x9b\x98\x63\x91\xf0\x19\x16\x8a\x19\xeb\x1a\x3b\x28\xf1\x29\xe7\x2b\xba\xa8\xb2\xe6\xce\xf7\x7d\x20\x79\x95\x25\x74\x16\xec\xd8\xb4\x29\x2f\xff\xb1\xa8\xba\xa9\x10\x74\xbd\x11\x74\xd1\x15\x45\xd7\xb4\xd1\x4d\xf3\x6e\xaa\xa9\xb8\xbc\x9b\x76\xa1\xc6\x6e\xdc\x1f\xd0\x41\x1f\x75\xc5\x2a\x15\xdd\x45\x41\xcb\xfc\x1b\xd1\xa5\x5f\x58\x29\xfa\xa8\x63\x65\xe7\xfc\xdf\xd6\xce\xb2\xe0\xdd\xb4\xab\x76\x7d\x7b\xa3\x3e\x48\x69\x2c\x10\x9b\xa6\x1e\xc0\xd0\x91\x9f\x0b\x34\x49\x35\x33\x5c\xbf\xb7\xe0\x14\x9e\x07\x59\x39\xc5\x5f\xbf\xe5\xa2\xc8\x7f\x33\xc0\xd3\x6d\x12\xab\xce\xd1\xec\xf0\xf3\xfc\x04\x2e\xe1\x7a\x91\xa4\x25\xef\x0c\xf7\xc6\x84\x10\xe3\xe5\x58\xaf\xb7\x98\x21\x73\x4f\xc5\x08\xc0\x40\x4b\xd1\xc1\x00\x1b\x5d\xe7\x7a\xfb\xee\x6e\x05\x3d\x47\xb6\x8c\x95\x92\x90\xbe\x08\xc7\xde\xe5\xfb\x38\xfc\x71\xd2\x13\xb8\x44\x1e\x76\xe6\xce\x6a\x4c\x86\x51\x4a\x39\x41\xbc\x31\xf6\x62\x86\x45\x30\x46\x3e\xc3\xb9\x3c\x47\xb5\xf6\x81\x88\x1f\x0c\x3a\x4e\x13\x48\x49\x2a\x2c\xf8\xb8\x0d\x05\x3a\xca\x2d\x80\xd0\xa6\xcb\x27\x3d\xe5\x0f\x5c\xf9\x63\xe0\x36\xf8\x8c\xcb\x01\xe7\x32\x90\xc2\xec\xf0\x75\x8b\x30\xc3\xb6\x77\xe5\xbc\x36\xc0\xf8\xeb\x3b\x48\x1e\x17\x70\x8d\x8f\x4e\xfc\xc9\xce\x11\xd7\x22\xe3\x60\x5b\x75\xec\xed\xa1\xe8\xc5\x60\x93\xa5\x01\x9d\x81\x4b\x43\x62\xa7\x9d\x1a\x83\x84\x94\xd3\x98\x93\x42\xd6\xad\x54\xc3\x2c\xf5\x65\xc8\xed\x32\x8a\xd2\x2e\x90\x61\x82\xc8\xac\x28\x49\x67\x93\x16\x1e\x4b\x01\x37\xe8\x18\xdb\xce\x16\x08\xe7\xdf\x32\xe3\x38\x2e\x3f\x62\x1d\xea\x69\x05\x55\xce\x9e\x32\x23\xa3\x93\xec\x79\x75\x92\x0d\x06\x88\x26\xd9\xcc\xeb\x7b\x36\x70\x5e\x8a\x13\x8e\x05\xa6\x1e\x81\x7e\x19\xce\x27\x06\x4b\xd1\x63\x42\x1a\x13\x8b\xc2\x99\xc3\x2c\x9c\x1d\x65\x8e\xe7\xe6\xb3\x20\x57\xfa\x4a\xd2\x7c\x7a\x9b\x1b\x75\x28\x29\x64\x0d\x82\x14\x89\xaf\x9b\x10\xe7\xa4\x48\x8e\x67\x68\xca\xc8\x68\x52\x49\x4c\x42\xbb\x84\xd8\x6e\x63\x4e\x7a\x80\x61\x60\x97\x6a\x46\xa4\x3d\x78\xba\xa8\x16\x0c\x8f\x47\x08\xf3\x19\xec\xad\x3b\x32\xc2\xa7\x64\x84\x25\xdc\x3a\x27\x23\xfc\x81\x8c\xf0\x0b\x32\xc2\x37\x64\x84\x2f\xc8\x08\xbf\x22\x23\xfc\x8e\x8c\xf0\x27\x32\xc2\x1f\xc9\x08\xff\x4c\x46\xf8\x35\x19\xe1\xf7\x64\x84\xdf\x92\x11\x3e\x23\x23\xfc\x86\x8c\xf0\xaf\x64\x84\xbf\x27\x23\xfc\x92\x8c\xf0\xe7\x43\x92\x52\x67\x90\xa0\x6e\xbb\xd7\xa7\x2f\x3f\x7f\x67\xa3\x3b\x6b\x5d\x0d\x63\xe4\x1c\x38\x14\x56\x49\xe7\x81\xfe\xc9\x25\xbd\xa5\xb9\x78\x95\x66\xd9\x55\x3a\xbf\x29\xc9\x03\xcd\x17\xf2\xc6\x05\xaf\x70\x93\x64\xb6\x33\xc2\x58\xb6\xa6\x86\xd7\xf4\x76\x11\xc4\x5c\x92\x5f\x4a\x57\x61\x5a\x89\x82\x57\xb9\xed\x91\x49\x38\xaf\x05\x6b\x0a\x2e\xe0\x90\x74\xdd\x6e\x1f\x76\xcd\x38\xc4\x7e\x1e\xc3\xda\x04\xc4\x4f\x91\x52\x97\x7e\x12\xd9\x9b\x79\xb2\x2f\xb3\x07\xbc\x46\x66\x2c\x45\xfe\x52\xce\x43\x58\x9b\x4e\xdc\x6e\xef\x6d\xae\xd3\x7c\x51\xcf\x73\x9a\x2f\x5c\x0e\x88\x38\xf8\xa9\xca\x4f\xbf\x6c\x18\xa7\x8b\x0b\x35\x65\xea\x1b\xaf\x25\x83\xc3\x14\xa5\xca\xed\x97\x7e\xa1\x66\xf1\x34\x0f\xe4\xd3\xbf\x0e\x06\x8a\x22\xe2\x76\x9e\xc1\x86\xc6\x5f\x05\xde\xb6\x04\x7c\x78\x49\xf3\x85\x24\x92\x74\x40\x9a\xda\x20\x2f\x03\x6e\xf2\x76\x5b\x68\xd6\xc5\xc6\xf0\x97\x75\xbc\xe4\x7a\xe7\xd0\x21\x25\x26\xd8\x54\x7e\xf7\x4f\xb5\xdd\x2b\x75\x01\x4a\x15\x07\x20\x54\xa6\x37\xbb\x59\xd7\xd4\xb3\xae\x89\xcd\xc0\xa6\x31\xb5\x11\x1b\x14\x71\xa6\x7b\x14\x23\x34\x89\x3d\x53\xd1\x97\x83\x41\xcb\x69\x30\x8e\x98\x10\xfe\x7e\x30\xc0\xb4\xb5\x6d\x80\x8a\xeb\xda\xc5\x0c\x3a\xd6\xe7\xa6\xce\x4b\xc1\xd9\xf5\x35\xe5\x71\x1f\x06\xda\xc7\x12\x89\x44\xe1\x56\x52\xaa\xe3\xa0\x1e\x45\xc3\xa5\xfc\x62\xab\x81\x85\x19\x83\x02\x57\x91\x37\x15\x1d\x1d\x58\xef\xd9\xa3\xe1\x61\x6e\x17\xf7\x1b\x6a\x35\xf4\xd5\xb1\xee\x4a\x3a\xbc\x7b\x45\xbb\xa9\xe5\x5d\xf7\x91\xef\xb2\xa3\x06\x05\xea\x08\x28\xdf\x57\x3d\x18\x00\xc8\xde\x77\xa1\x82\x2e\xa0\x7f\xdd\x2b\x3a\x4f\x2b\x79\x35\x2a\xb4\x0f\x4c\xf4\x2d\xde\x67\xf5\x19\xe4\xe8\x96\xcb\xfd\x06\xf0\xed\x7d\xea\xd1\xed\xf6\x6b\xfb\xb5\x5c\xfe\x86\x8e\xa9\x33\xd0\x1b\x43\xa4\x13\x14\x5a\xa5\x70\xdf\x2a\x45\x73\x77\x05\x44\x1e\xe9\x8d\x30\xb7\x66\x41\x78\x8c\x30\x3b\x3a\x02\x8c\xba\x97\x7f\x45\xdf\xe6\x66\x7d\x2c\x8a\xec\x77\x09\xc2\x53\x56\xc1\x79\xf9\x60\xce\xcb\xfe\xcb\x0f\x0b\x42\x25\x00\xe3\x84\xca\xcb\x2f\x27\x34\x39\x0e\x35\x4e\x24\xc4\x89\x8d\x1d\x12\x1f\xfe\x5c\x84\x67\xf2\xc5\xbf\xa5\x0d\x59\xab\xd7\xc8\x82\x2e\x69\x9d\xe2\x44\x0f\x37\x83\x41\xc7\x31\xd5\xeb\x08\x81\x16\xfb\x28\x4c\x24\xff\xf6\xe9\x34\x3f\x7a\x3a\x19\x21\x5c\x90\xa7\x27\xc5\xf3\x5c\xc5\x5d\x4b\x8a\xa3\xa7\x3e\x2e\x52\x84\xfd\x30\xe4\x8a\x1e\x09\x50\xe5\x70\xa1\xf3\xd9\x70\x0e\x02\xc3\x18\xc2\x05\xf1\x36\x22\x0d\x3d\x5c\x78\x1d\x6c\xd2\xa0\x98\x7b\x1d\x14\xdf\x8e\xa7\xe2\x68\x2c\x3b\x98\x93\xf1\x49\xfe\x5c\x9c\xe4\xb0\x5b\xf2\xa3\xb1\xdf\xc1\x7c\xa6\x05\x86\xb5\xd9\xe5\xe0\xe3\x54\xa1\x85\x4c\xa1\x83\x2c\x39\x9e\x61\xcd\xfb\x83\x5b\x7e\x6a\x29\x33\x43\xef\x06\x73\xae\xd4\xb3\x0d\xc0\x8a\x91\x1d\x53\x4c\x75\x60\xfa\xde\x18\x57\xc1\x68\x21\x0a\xf8\x55\x56\x77\x91\xf6\xca\xf8\x23\xf8\xf7\x34\x0e\x37\xce\x2d\x4e\x84\x24\x7f\x74\x9c\x56\xd8\x11\x1f\x24\x60\xad\xef\x8a\x77\xff\x6d\xbb\x42\x36\xff\xf5\x3b\xa3\xd6\x59\xf4\xf0\xe9\xff\x6b\xbb\x63\x64\x76\x87\x95\x44\xb6\xb0\x4d\x3f\x9a\x7b\x2a\x4b\x05\xe5\xfe\xf4\x39\x00\x21\x2b\x81\xcf\x7e\xf9\x9f\x2d\x60\x69\xe8\xc4\xfd\x36\x48\xa3\xe5\x45\x96\x8e\xcf\xa7\xc6\x6c\x70\x32\x72\xec\xd1\x51\x14\x55\x71\x9e\x14\x47\xc0\x01\x8f\x3d\xfc\xdd\xb8\xab\x1b\x8f\x10\xc2\x89\x26\x4b\x66\xbb\xdf\xda\x07\x9a\x3c\xad\x01\x3d\x18\x72\x6c\x98\x69\x72\x12\xe4\x1d\x20\x44\x68\x6a\xf0\xda\x43\x7a\x2e\xf7\x36\xca\x89\xd0\x8c\x08\xd9\x28\x23\x42\x36\x5a\x10\x91\x3c\x95\x7b\x40\x24\xcf\xe4\x1e\x70\x2c\xa2\xed\x36\xc5\x15\x59\x42\x84\x70\x1f\x2f\x77\x31\x3b\x2a\x64\x42\xd1\xa8\x6e\xca\x9c\xe5\xf4\x7a\xc2\x70\x81\x70\x69\x18\xea\x00\xb7\x55\xff\x15\xad\x65\xa3\x4a\x42\x75\x20\x50\xd0\x8a\xd0\xd5\xe0\x59\x27\xf8\x96\xcd\x7a\x84\x5c\x5b\x59\x8b\x4d\x25\xcc\x8b\x6f\x01\x47\x5f\x22\x8d\xf3\x60\x52\xde\xff\xbb\x26\xa5\x72\xfb\x22\x8d\xa2\x14\x67\x41\xff\xf1\x5c\xcf\x51\xe6\x26\x66\xde\x32\x31\x95\x99\x98\x6a\xef\xc4\x28\xb5\xc8\x10\x2b\x56\x62\xf6\x41\x81\x37\x64\x3e\x78\xd6\xc9\x92\x8d\x44\x15\xae\x61\xfb\x5d\x23\x4c\x49\x96\xcc\xcd\x04\xae\xc9\x22\x5e\xe9\x7e\xcc\x07\x25\x21\x64\x8d\xb2\x64\x3e\x23\x2b\x0c\xe5\x98\x6b\xe6\x36\x5c\x83\xf9\xe0\x4f\xb3\x60\xe6\x0d\x06\xb2\xc6\x23\xbc\x92\x58\x27\xb0\x16\x6f\x11\x6e\xcb\x34\xc7\x25\xda\xc9\x3d\x33\x37\x43\xe3\x14\xb0\xe1\x2c\xbb\xf0\x88\xbc\x38\x5c\x33\x85\x55\x6b\xc2\xc5\x5b\xb7\xb7\x16\x6b\xb5\xda\x08\xae\x86\x3d\x14\x62\x0d\x43\x97\xd5\xaf\xd2\xb2\x59\x77\xa8\x57\xab\x06\x51\x17\xce\x68\x02\xc0\x75\xb1\xce\xd0\x3a\x1b\x0c\xb0\x31\x0d\x32\xe4\x43\xe7\x51\x8d\x86\xa9\xdf\xd3\x33\xb9\x2d\xa0\x7b\x31\x45\x93\x5e\x6c\xac\xb5\x24\x15\xb2\xdd\xf6\xa8\xa2\x07\xe0\x49\xb1\x3c\x51\x14\xe9\x44\xdd\x29\x6d\x8e\x11\x82\xe0\xa6\xe6\x7e\x1d\x44\xcb\x32\xed\xcc\x3a\xdf\x96\xa3\x63\xf8\x85\x70\x0b\xe8\x41\x3e\xe8\x89\x99\x34\x69\x70\x3c\x2f\xaa\x5c\x50\xae\x83\x0e\x9a\x37\xac\x66\x78\xb2\x0a\x8e\x2f\x2e\xf1\x31\xc2\x01\xb5\xa4\xc3\xb7\xd4\xe8\x23\x7b\x6b\x36\xc9\x2b\xf0\xc3\xdd\xa6\xdc\x2c\xa2\xa8\xc1\x0e\xd4\xa3\xd8\x21\x88\x70\x7e\x79\x40\x51\xbe\xd6\x01\xcd\xd3\x72\xec\x6c\x22\x9a\xfc\x6c\x9a\x2f\x00\xeb\xa6\x0b\xf0\x24\x56\x54\x92\x2c\x92\xb4\x9a\x26\x00\x30\x93\x24\x80\xe0\xf7\x0f\x39\xd1\xcc\x65\x50\x60\x61\x79\x9a\x65\xf7\x60\x2f\xc8\x10\x5b\xc6\x4c\x62\xfe\x8a\xef\xe7\x05\x76\x09\x98\xbf\x75\xce\xaf\x3e\xb1\xe6\xd6\x35\xdb\xbf\x50\x12\xa6\xee\x6f\xe1\xde\x78\xcc\x6c\xe3\x99\xb6\x46\xcf\x3a\xc7\xd9\xf5\x2a\xad\x03\x13\x4b\xac\x82\x9e\xaa\xc4\xbc\x7c\x76\x06\x58\xf0\xab\x25\x08\x09\x04\x8d\xa4\xd5\x6c\x25\x5a\x5a\x9a\x3a\x62\x43\x95\x99\x38\x23\x21\xc3\x84\x57\x42\xa6\xb8\x2e\xad\xe2\x50\xac\x29\xe7\x02\x84\x50\x4b\xd4\x0b\x23\x4b\x37\xbb\x1f\xd6\x31\x46\x38\x47\x72\xf9\x9c\x49\x59\x5d\x6c\xc5\xd0\x43\x1e\x33\xb7\xa6\x50\x58\x92\xdc\x66\x21\xf6\x94\x6e\xc9\x0f\x3d\x0d\xa0\x59\xf3\x4c\x3b\xae\x4c\xed\xaa\xb0\x0a\x58\x16\x4e\x3e\xce\x39\x53\x73\x53\xc3\xac\xda\xc4\xa8\xed\x08\xa1\xf1\x1f\x5c\xbf\xaf\x72\x9c\x92\xbb\xc1\xc0\xb0\xb6\x5b\x00\x2e\x0a\xd2\x80\x84\x97\x38\xa3\x6a\x9a\x99\x01\xb4\x5e\x23\x1d\x4f\x80\xba\xd0\xae\x87\x1d\x76\xd2\x76\x43\x95\x78\x84\x5b\x6a\x7f\xe4\x9a\x4a\xbd\xd5\x70\x10\xfb\x80\xa9\x6e\xcb\x30\x4f\xc4\x80\x94\x56\xa3\xc2\xdc\xb7\x62\xe6\x87\x3b\x6e\xeb\xb1\x38\x1a\xe3\x12\x01\x40\x10\x8f\xdc\xaa\xb8\x37\xb2\x6c\x2c\xe8\xb1\x3e\x87\x7b\x76\xfb\xa3\xec\x19\xf0\x0d\x77\xc0\x89\x46\x9e\xb0\x99\x3a\xcc\xfa\x58\x85\x3c\xc8\xc6\x7e\x7d\x8c\xd1\xeb\xc3\x9e\xe0\xdc\x85\xe0\x2d\x68\xc5\x7c\x85\x53\xa3\x3a\xd2\x9a\xaf\x55\x8e\x17\xe2\x6f\x82\x8c\x3c\xb7\xd0\x56\xc9\xc1\x67\xe7\x1a\x79\x55\x6d\x97\x9f\x88\xe7\x5c\xad\x2f\xc8\xb9\x12\x31\xfb\x96\x21\x50\xc7\xeb\x18\xc5\x38\x31\x78\x06\x33\x5b\x48\x3c\xd6\x08\x66\x65\x32\x50\x5a\xf2\xe1\xe9\x0c\x67\xf0\x60\x30\xb0\x1a\xd0\x73\x44\x55\x8e\x53\x5c\xe1\x42\x12\xbc\x19\xda\xed\xa8\xd9\x2a\x23\xeb\x96\xa1\xfd\xb8\xa8\x65\x6a\xdb\x3b\xcd\xb5\xda\x8f\x72\xed\xaf\xba\x51\xc6\xaf\xd6\xf7\xa1\x56\xdb\x09\x7b\x00\x98\xa9\xbc\xad\x08\xda\x2f\x3b\x50\x7d\x79\x64\x90\x12\x1c\xf5\xda\xc1\xd1\x43\x73\x6b\x28\x89\x4f\xdb\xca\x63\x4e\xde\xa5\x62\x35\x5c\xa7\x5f\xe2\x11\xa6\x47\x22\x00\x3b\xae\x63\xb5\xb2\x9e\x3e\xee\x01\x2e\xbe\xbd\x26\xf7\x23\x77\xb7\x0d\x5f\x88\x35\x86\xb6\xb9\x46\xa9\x9d\xe4\x00\xf2\x1f\x82\xe8\xba\xde\xf6\x43\x68\x70\x8c\xa6\x7c\x03\x69\x1e\x74\x3d\x6b\x00\x2e\xdf\x68\x9a\xac\x39\xab\xf4\x8b\x30\x2c\x7a\x23\x30\x00\x5c\xa9\xc3\xa7\xca\xdd\xca\xa4\xe5\x56\x1b\x1d\x34\xf0\x35\x68\xe8\x1e\x23\xdf\x07\x25\x90\x3a\xc5\x34\x5f\x4c\xbe\x60\x00\x88\xe5\x44\xa7\x9e\x43\xea\x68\x87\x75\x5b\xe5\xe4\x41\x35\xb2\x98\xbc\xc1\xf3\x62\xbd\xc9\xa8\x7c\xfe\x75\x87\x25\x46\xfc\x01\x4b\x8c\x66\xf2\x02\x03\x0b\x6a\x72\x83\xcd\x1c\x4c\x2e\x70\x9d\x2f\x36\x79\x85\x2d\xa3\x6a\xf2\x0e\xfb\xac\xa0\xc9\x27\xec\x69\x74\x7f\xc4\x70\x2b\x4f\x7e\xc6\x86\xe4\x9f\xbc\xc6\x86\xd0\x9d\xbc\xc7\x3e\xfd\x34\x79\xab\x5f\x27\x67\x38\x2b\x8a\x4d\x39\x79\x10\x85\x48\xb3\xc9\xf7\x38\xa7\xa5\xec\xe9\xcb\xdd\xce\x3a\x45\xf1\x41\xdb\x41\x0b\xe8\x00\x08\x3a\x13\xe8\xcf\x43\x25\xe4\xda\xe0\xcf\x0d\x13\x01\x9d\x22\xb1\x10\x6d\xaf\xf0\x03\xf9\xdc\x71\x86\x03\x3f\x28\xe3\x84\x45\x7a\x7d\x04\x51\x71\xbf\xca\x82\xad\xd5\xee\xe0\x91\x80\xb5\x97\xb7\x94\x0b\x36\xd7\x4a\xaf\xbc\xcd\x15\x55\xe8\x1b\xc0\xe0\x3c\xed\x1e\x3c\xfa\x86\x67\xd0\xfd\xe7\x0d\xbd\xff\x67\x97\x95\x5d\x4e\x7f\xa9\xe4\xa9\xed\x07\xc1\x8c\x6c\xbb\xe0\xf1\x27\x5d\x2c\x74\x94\x53\xf0\xfd\x45\xe4\xb5\xc9\x96\x71\x43\x12\xc9\x11\xe4\x3d\x5d\x5c\xd3\xb8\xc0\xaa\x1c\x47\x9e\xc7\xd9\x5b\x1b\xc2\xdc\x8a\x0e\xd2\xc1\xa0\xad\x14\x44\x27\x57\xae\xb0\xda\x5a\xca\xbd\x32\xaa\x44\x8e\x70\xe1\xb5\xa4\x5a\xc9\xdb\x5b\xd1\x25\x64\x1b\xa0\x2e\x53\x9b\x4e\x99\xa7\x6c\x99\x53\x98\x19\x98\x0b\xeb\xae\xcc\x2f\x49\xd3\xb6\xd8\x82\x76\x26\x87\x77\x69\x76\xa3\x7d\x5e\xb8\x42\xa2\xd8\x94\x05\x17\x2d\xd1\x43\xd2\xb9\xf2\x56\xa0\x0d\x54\xcd\xde\x31\x2e\xe5\x0f\x6e\x9b\x50\x45\xb4\xb4\x41\x2a\x35\x0f\x6c\x93\x8a\x95\xff\xce\x69\x29\xab\x86\x94\xc7\xb7\xd8\xde\xcd\xb5\x66\x65\xc9\xf2\xeb\xee\x0d\xbd\xf7\x1c\x4e\x4b\x88\x38\xda\x7a\xdd\xc2\x39\x19\x9d\xe4\xcf\x39\x70\x7a\xd9\x32\xd6\x1a\x42\x49\x3e\x43\xc3\x1b\x7a\x1f\xe0\x94\x01\x1f\x51\x8f\x8a\x0f\x14\x1d\x90\xf0\x19\x79\x60\x8b\x2f\x13\x8e\x25\x40\xa0\xf8\x36\xcd\x2c\x42\xaf\x5c\xaa\x2f\x33\xe5\x4c\xdd\x70\x41\x77\xad\x6b\x5d\x63\xf2\xab\x0b\x69\x45\xe7\x37\xf2\x5d\x76\xc9\x0d\x06\x86\xb2\x67\x1c\x22\xc9\x01\x21\x1e\xb2\xc5\x17\x3d\x80\x8e\x08\x3a\x2d\x7b\x0c\x9f\x31\x1d\xca\x3b\x5d\x82\xfe\xc0\x7b\x59\x9a\xdd\x34\x77\x82\x8e\x34\xe2\xb1\xd4\x47\x06\x4b\xaf\xfb\xd2\x51\x77\x4f\x22\x66\x1d\x2e\x1b\xd0\xcc\xa0\x5b\x56\x32\x11\x73\xdc\xef\xeb\x78\xff\xb0\xb7\xbc\x95\xc7\xf5\x5d\x09\xa3\x6f\x4a\x58\xa9\x5e\x9f\x16\x06\xc2\xfc\x7e\x9e\xd1\xee\x82\x0a\x70\x57\x33\xe9\xf6\x07\x62\xd0\xef\x3e\x3f\x92\x0f\x70\x8e\x25\xc6\xe2\xb4\xe4\x0f\x79\x45\xd2\x64\x46\x42\x13\x3e\x9b\xfd\xae\x16\xa1\x9f\xae\xf9\x9d\x21\x5c\x4c\xcc\x16\x6f\x56\xa8\x45\x3b\xe5\xa1\xa8\xa9\xa9\xe7\xa4\xad\x15\xed\xf1\xad\x36\x93\xb2\x78\x00\xfb\xf3\x01\x31\xdd\xd9\x21\xec\x3a\x9e\xa3\x5d\x6d\x1b\x42\xb7\x1a\x58\xac\xef\xb8\xc3\x9c\x64\xaf\x8f\x26\x49\xad\xa0\x4d\xec\x38\xfa\x60\x64\xd0\x3e\x3d\xb9\xf4\xb9\x38\xa1\xda\x7d\x60\x42\x67\x43\x79\x38\x88\x24\xb6\xfc\xbe\xc0\xac\xec\x17\x3e\x07\xa1\xb0\x61\xc8\x8c\x78\xdd\x80\xd6\xb9\x89\x7b\x26\xcf\xc1\x89\x05\xf4\x86\x21\x34\xda\x72\xc5\x87\x81\xfb\xe4\x5b\x32\xf2\x35\x3d\x93\x62\xa6\xec\x05\x64\xe7\xd0\xbc\xc8\x05\xcb\x2b\xea\x92\x48\x6f\x64\xa2\xef\x15\x08\x0b\x42\x48\x0a\x07\x54\xd1\x2b\xba\xe5\xff\x5f\x61\x96\xb4\x2a\x57\x6f\xf3\x79\xb1\x66\xf9\x75\xac\x55\x96\xbb\x5e\x50\x1e\x9d\xb9\xb6\x1c\x7e\xa9\x43\xee\x13\xd4\x5c\x1c\x8c\xc5\x03\xae\xbd\x34\x70\x83\xfe\x6f\xb7\xc2\xba\x8b\x3f\x78\x7b\xd4\x5c\x87\x81\xff\x73\x73\x48\x9e\xe7\xce\x7d\x98\x9a\x7e\x75\x56\x3a\x22\x66\x72\x36\x30\x78\xb6\xb4\xea\xc7\xf9\xd7\xdd\x15\x6d\x80\xbf\xd5\xbb\x4e\xe2\x15\x1b\x0c\x66\x64\xb4\xa5\xb5\x09\x0c\xbd\xeb\x18\xdf\x36\x00\x8c\x92\xa3\x23\xaf\xb8\x76\x15\xa4\xb0\x29\xdf\xa4\xf3\x6b\x31\xaa\x3b\x9e\x6e\xde\xa7\x82\xdd\xd2\xf3\x6a\x43\x1b\x26\x3a\xc0\x40\xf7\x62\xb1\x73\xa3\x3a\x6f\xa7\x01\x34\x1f\x0d\xb5\xe1\xc6\x40\x42\x67\x4e\xde\xe8\xf0\x83\xf5\xbc\x59\xf0\xc9\x83\x8e\xf9\x84\x69\x5e\xad\x35\x6a\xdc\x1b\xe3\x3b\xce\x84\x7a\x1e\xe1\x79\x91\x2f\xd9\x75\xa5\xbf\x8d\x76\x3b\xa4\x24\x89\x31\xc5\x39\xc2\x22\xce\x35\xf4\x9d\x4b\xc4\xff\x55\x9a\x65\xaf\x5a\x80\xef\x48\x85\xb8\xf5\xc2\x29\x90\x50\x25\x7b\xd4\xa1\x7b\x7b\xaf\xa9\x28\xae\x1c\x5f\xf0\x47\xc6\x42\x1f\xeb\xbd\x53\x1b\x12\x9a\x2f\x09\x8e\x7a\xaf\xe9\xe2\x82\xae\x25\x2d\x44\xcf\x20\xa2\x66\xd6\xe8\xa7\xbc\x5c\xb7\xdb\x58\x10\xaa\xdc\xf2\xc6\x23\xe4\x9c\x90\x0d\x79\x7a\x47\x04\x38\x4a\xf1\x49\xa1\x06\xff\x47\x35\x2f\xa2\x28\x0f\x96\x45\x20\xed\x54\x94\xc3\x17\xcc\x43\xf7\x66\xca\x6f\xdd\xc5\x8a\x95\x2e\x38\xa2\x72\xcd\xb6\x29\xca\x92\x5d\x65\xf4\x95\x9b\x8a\x4f\x50\xb0\x45\xc3\xa8\xee\x8e\x4e\xf6\x42\xb3\x06\xb6\xdb\x16\xb5\x52\xd1\x40\x64\x98\xc6\x00\x55\x4d\x10\x11\xae\x9a\x8b\x4a\x62\xb7\x35\xa7\x50\x54\xae\xba\xa6\x11\xf4\x7a\x2a\x9f\xb3\x6a\xc0\x1f\x96\x5a\x90\xfe\x2e\xdd\xf8\xdb\xb9\xc5\xe9\xa0\x68\x71\x3a\x28\x71\x91\x4e\x3e\x74\xdb\x96\xf8\x2f\xdb\x6d\x6f\x0c\x61\x87\xdc\xe2\x4b\xc8\xdb\x87\x1d\xd2\x67\x79\x37\x87\xd8\x19\x66\xa3\x90\xde\x08\x61\xdd\x47\x65\x9f\x6e\x5c\xe3\xca\x4d\x0e\x20\x29\xf7\xad\x80\x03\xc7\x6b\x3b\xef\xf4\x3f\x01\x6b\xa6\xd0\xd2\x5b\x13\x28\x7d\xdc\xff\x5f\x2a\xcf\x11\x93\x04\x71\x9e\x66\xe5\x13\x9a\xdf\x32\x5e\xe4\xca\x7c\xbf\x9f\x17\x0b\x7a\xb4\x2e\x24\x21\xda\x9a\xbb\x12\x2c\x2b\x5b\xbf\xc8\x8b\x26\x65\x60\x64\x6e\xbe\x32\xd8\x0d\xb2\x66\x30\xae\x6e\x2d\xb6\xa6\x22\xdd\xfb\x21\x73\x5f\xe6\x69\x9e\xf2\xfb\xa3\x25\x4d\x45\xc5\xa9\xd7\x05\x08\x63\xde\xc7\x81\x95\x7b\x7b\xf7\xca\xc2\x1f\x94\xec\x2f\x2f\xb2\xcc\xcf\xef\xd2\x9e\x64\xec\xca\x7b\xbd\x5c\xb3\x2f\xcc\x1b\x80\xa6\xa5\xdc\x3b\xe5\xb7\x6c\xee\xd5\xae\x77\x79\xed\xfd\xc9\xbc\x58\x6f\xd2\xf6\xe4\x4a\xd0\x45\x6b\xcf\x75\x28\xaf\xd6\x6f\xda\x17\x8c\x31\xe6\x7f\x72\x4b\x79\xb9\x6f\xa6\x6f\x19\xbd\x6b\x5f\x3a\x5e\x54\x22\x18\x8e\xbf\x3d\xbe\x08\x9a\xcb\x3a\x8f\x74\x24\x1c\x97\x8b\x4a\x5c\xcc\xbd\xf2\x2a\xcf\x8a\x62\xd3\x5e\x8b\xcc\x7a\x04\x71\x66\xf7\x35\x54\xdc\x05\x4b\x97\x6e\x36\x19\x9b\xd7\xf6\x8d\x97\xf8\x44\x59\x03\x96\x47\xda\x3d\x40\x7b\xd1\x27\x46\x76\xe5\xf5\x3a\xbf\x66\x79\xe3\xbd\x25\xe3\xa6\xc8\xee\x97\x2c\xcb\x82\xbd\xb6\xe1\x74\x9e\x0a\xba\x70\x1b\x31\xf4\x9c\x60\x4c\x6f\x40\xe9\xa5\xc2\x19\x9e\xe3\x25\x5e\xe1\x05\xde\xe0\x35\xbe\xc5\xf7\xf8\x1a\x5f\xe1\x4b\x7c\x87\x4f\xf1\x17\x7c\x8e\x3f\xe0\x17\xf8\x06\x5f\xe0\x57\xf8\x1d\xfe\x84\x3f\xe2\x9f\xf1\x6b\xfc\x1e\xbf\xfd\x1a\xae\xc7\x19\x69\x80\x52\x2e\xa1\x8d\xa0\x5f\xc4\x90\xad\xe1\xe8\x0f\x4f\x65\xb7\xa3\x68\xcf\x87\xed\xf6\x61\xd7\x39\x1b\xb2\xf2\xbd\xf1\x29\x2f\x21\xd4\xd9\x50\x14\x2a\x0a\x59\x13\x03\xe9\x43\xb9\xfe\x6e\x0f\xa4\x3a\xc3\xfd\xd3\xf7\xff\xe8\x63\x08\xba\x0e\x88\xc2\xe9\xfb\x7f\x84\xf7\xfa\x6e\x1f\x94\x3b\xc3\xfd\xac\x28\x6e\xaa\x8d\x5f\xfc\x0c\x52\xc0\xcb\x2e\x5c\xf8\xfa\xbd\x5e\xe3\xdb\xe1\xe9\xbb\x97\xa7\x9f\x2e\x4f\xff\xcf\xc5\xe9\xfb\xd7\x97\x1f\x3f\x7d\xb8\xf8\x70\xf1\xe3\xc7\xd3\xf3\x28\xda\xdf\xd1\x7a\xde\x3e\x7e\x08\x31\x90\x76\x7e\x18\x1f\x9e\xbe\xff\xc7\xb0\x51\x5a\x82\xe0\x33\xd9\xe5\x0f\x72\x1f\x93\x57\xf6\x11\x9f\xc9\x8e\x9b\xd4\xd2\xa5\xbe\x70\xdb\x94\xbc\x33\x2b\x8c\xcf\x86\xaf\xd5\xd3\x27\xbd\xaf\xc9\xd9\xd0\x3e\x7e\xf2\xb2\x79\xc5\x2d\x63\xf8\xa3\xf7\xfd\x14\xf6\x35\xf9\xb9\x91\x64\x73\xbf\xf6\x3e\x69\xe7\xb3\xef\xf5\x03\x3e\x1b\xae\x29\xbf\xa6\xe4\xbd\xfa\x87\xa1\xe5\x10\xe2\x5b\xf9\x63\x0d\x5e\xf1\xd9\xf0\xbb\xcf\x6f\x5f\x5f\xfe\xed\xf4\x47\xc2\xec\xa3\x2c\x53\xb1\xc5\x9b\x82\xcb\xec\xea\x09\x9f\x0d\x59\x5e\x82\x93\x55\x66\x9e\x64\x5b\xe9\x0d\x55\x2e\xcd\x98\x7b\xc6\x67\xc3\x79\x9a\xbf\x55\x76\x89\xcc\x3d\xcb\x0d\xca\xef\x6d\xba\x7d\xc6\x67\x80\xca\x12\x06\x7f\xf8\x6c\x58\xa9\x9e\x56\xaa\x87\xaf\xcc\xfd\x44\x0a\xf7\x8c\xcf\xb4\x93\x2d\x7e\x4f\x0a\xfb\xa8\xe6\x83\x72\x41\xe6\xfa\x41\xd6\x9d\xf2\x9c\xcc\xe1\x0f\x9f\x0d\xe1\xd6\x21\x73\xf5\x0f\xef\x1a\x32\x40\x9a\x7e\xf6\xd3\xdf\x54\xf9\xdc\xff\x26\xdf\x3b\x67\x43\x5e\xe5\x6f\xf3\xd7\xba\x32\xf7\x22\x17\x0b\x0c\x29\x5f\x04\x1b\x43\x66\x7b\xe0\xda\x2b\xd8\x6b\x5d\x15\x2b\xf2\xef\x21\x80\x37\x9f\xcc\x87\xfb\x3f\x62\xf3\xe9\x87\x94\xb7\x14\xf0\x52\x31\x2b\x5f\xe9\x0b\x69\x52\x0d\xdd\xcb\x4e\xad\x9e\xbe\xd2\x49\xea\xbd\xc8\x4d\x5e\x5d\x95\x73\xce\xae\x28\x49\xdd\x33\x3e\x1b\xbe\x0d\x91\x00\xf2\xe0\x4a\x4d\x82\x2a\x6c\xa1\x89\x5f\x41\x95\xfb\xe9\xde\x1b\x06\x92\x7f\x92\x2a\xd2\x5f\xf6\x8d\x57\x39\xb9\x19\x5e\xea\x8b\xe1\x53\x95\xab\xb4\xa1\xc3\x0c\xc8\x8d\xf7\x62\xbe\x82\xe1\xc0\x8d\xfa\x37\x69\x2c\x5f\xc8\x24\x96\x2f\x74\x8a\x56\x00\xba\xd1\x0f\x3a\xd5\x6a\x9b\xdd\xd8\x47\xfd\x85\x42\x05\xd4\x96\x5f\xa5\xe5\xb9\x66\xf0\x1b\x81\xe4\x4d\x4b\xa2\xce\x0d\x6a\x11\x37\xf0\xa7\x53\x94\x5c\xfe\x46\xfd\xeb\x34\xf0\xac\x78\xa3\x24\x26\x2a\xa5\x50\x7d\x29\x5c\x3f\xac\xea\xf1\x8d\x7d\xac\x7d\xf9\xa0\xca\xf8\xaf\x3a\x87\x55\x30\xbc\xb1\x8f\xc1\x6c\xd8\x71\xf8\xaf\xfb\xa0\xbb\x2c\x87\x8d\x2f\xf7\x4f\x55\x7e\x06\xa8\x02\x40\xfa\x1b\x09\x2b\x5f\x05\x5f\xea\x10\x1e\x6e\xbc\x37\xa4\xb2\xab\x6b\xf6\x64\x87\x2d\xe3\xb3\xa1\xc1\x9f\xc8\x1b\x7c\x36\xbc\x5c\x50\x15\x74\xa0\xe0\xa4\x1a\xe6\x40\xd9\xbe\xa6\xe5\xfc\x35\x9d\x17\x3c\x15\x00\x84\x2e\x05\xb8\xc5\x5f\x90\x6a\xa8\x9f\xf0\x9b\x61\x9a\xb1\xb4\x24\x95\xfa\x07\xe8\x33\x5f\xd1\x37\x50\x8b\xec\xa0\x7c\x5b\x80\x87\x72\x05\xc8\x4c\x17\x6c\x9c\x8d\xaa\x91\xb4\xff\xaa\xbb\x2c\xa9\x30\xb9\x6d\xc7\xf4\x7c\x34\xef\x9c\x4a\xde\x1b\x40\xca\x31\x37\x0c\x75\xe3\x5c\xb6\x7c\x21\xad\xf9\x01\xa6\x8b\x94\x94\xf0\xa7\x2e\x2b\x35\x34\xf5\xfc\x03\x13\x2b\x7d\xf7\xa8\x64\x2f\x41\x36\x74\x4d\xc5\xc7\x54\xac\x60\x11\xd4\xa3\xba\xda\x54\x6b\x0a\x2a\x9f\xc3\xab\x7a\xc0\x67\xc3\x37\xa7\x2f\x2e\x3e\x7f\x3a\x3d\x27\xf1\x08\x9b\xab\x05\xc5\x0f\xac\x3c\xcd\xe5\xd2\x2e\x26\xd9\xd0\x3e\xef\x70\x66\xf3\xc3\xc0\x60\xc2\x09\x1b\xc2\x3f\x3e\x1b\x16\x39\xa9\x86\x85\x3c\x10\xe9\x02\x7c\x7f\xca\x1b\x48\x2e\x97\x7b\x93\xdb\x13\xdc\x92\x7a\x9f\xc3\x04\xe8\x72\xbe\x38\xbd\x95\x10\xac\x72\xcf\xf8\x4c\x9e\x46\x93\x4b\xee\x02\xff\x15\x03\x92\x54\xe4\x94\x54\xfa\x01\x52\x14\xb5\x59\x99\x27\x48\x7b\x99\xa5\xf9\x0d\xa4\xc1\x13\xa4\x7d\x54\xce\xc6\x21\x55\x3f\xe3\xb3\x61\x5e\x08\xb6\xbc\x37\x9b\xe2\xd5\x2a\xcd\xaf\x65\xfd\x6d\xc9\x72\xf4\xb7\x94\x73\xb6\xa0\xaf\x56\x29\xcb\x65\xff\xc2\x04\x7c\xa6\x00\x58\x58\x4e\xe6\x6b\x4b\xc6\x67\x12\x34\x35\xf3\x36\x13\xe5\x31\x80\x27\x9d\xce\x20\x5f\x3d\x09\x9f\x0d\xad\xf1\xd6\x43\xb8\xd9\x27\xbd\x11\x5e\xa5\xa5\x79\x7d\x31\x9f\xd3\xb2\x2c\x78\x39\xe9\x8d\x76\x70\x3f\xfa\x99\x49\x55\x4b\x80\x7b\x57\xcc\x57\x7f\xa3\xf2\x9b\x79\x94\x77\x7b\xee\xa5\xbb\x17\xbb\x01\x60\x56\x7e\x80\x80\x2d\x6e\x13\xf8\x89\xb0\xc3\xe4\x3b\x38\x3c\xad\x86\xf6\x19\x9f\x0d\x97\x2c\x67\xe5\xca\xce\xb4\xff\x6a\x3a\xa4\x4f\x82\x7d\x76\x5d\xd2\x5f\xbc\x37\x53\xc6\xe4\x87\x3d\x01\xdd\x90\x38\x76\xe5\xbd\xb8\x5a\x5c\x0d\x30\x49\x10\xf4\x9e\x94\xda\x73\xc7\x3b\x75\x7e\x33\x76\xc5\x53\xae\x56\xc4\x3e\xab\xb3\x1c\xac\x56\xf0\xae\xce\x6c\xf0\xbd\xac\x7d\xa7\x5f\x36\xa9\xdd\x08\x2a\x4b\x3d\x49\x1d\x42\xe3\x2d\x4d\x1d\x42\xf3\x66\xd7\xc0\xfb\x1c\x26\xc8\xd2\x12\xc6\x2a\x8f\x5b\x06\xe2\xaa\x37\xb9\xd5\x5d\xb9\xc2\x95\x00\x0a\x9c\x54\xea\x1f\x9f\x0d\xdf\xe9\x77\xf8\xdf\x0f\x68\x8b\x5c\x93\xa9\x00\x5a\x2f\x00\x2d\x57\x49\x40\x55\x5c\x00\x46\xae\x13\xbe\x9a\x50\x11\xb4\x54\x04\x33\x54\x3a\x1f\xb2\xf2\x42\xa5\x40\x9d\x73\x50\xef\xd0\x09\xf5\x3a\xcf\x86\x97\x2f\x1d\x3e\xb2\xb4\xe8\xdd\xdb\xe1\xd9\x87\xef\xbe\x3b\xfd\x14\x45\xf1\xd9\xf0\xac\x00\xb5\xad\x95\xf9\x2a\x8b\xbd\x20\x97\xc3\x17\xf8\x6c\xa8\x49\xb3\x87\xac\x98\x4f\xd6\xc3\xac\x98\xe3\xbb\xc9\x7a\x78\x87\x17\x69\xb9\xa2\x9c\xfd\x4a\x27\xeb\xa1\x7d\xc6\x0b\x3a\x4f\xd7\x34\xd3\xc9\xf6\x05\x7b\xa9\x2e\x0d\x2e\x8c\xe5\xbd\x4c\xd3\x8f\xb8\xca\x17\x94\x97\xf3\x82\xcb\x9c\xee\x05\xcf\xd3\x0d\x13\xa9\xad\xc1\xbc\xc8\x23\xad\x66\x8d\x5c\xea\x07\x39\x62\x83\x58\x7f\xe4\xc5\x97\x7b\xb5\x70\x97\xc3\x66\x22\x9c\x49\x83\x9a\x07\x79\x5b\x52\xb1\xba\xf6\x53\x4e\xc9\xa5\x79\x82\xb4\xcd\x3d\x24\x6c\x14\x3c\x3e\xfd\xa5\x4a\x33\x72\x69\x9e\xf4\x8d\xf9\x86\xa7\x6b\x7a\x57\xf0\x1b\xc5\x1f\xbd\x1c\x36\xd2\x00\xd7\xfd\x39\x88\x06\x81\x1e\x76\x36\x75\xa8\x39\x3e\xe4\x56\x27\xb8\x2f\x8e\x6b\x44\x16\xee\xa3\x22\x6f\x2e\x87\x86\xb4\x79\x05\x3d\x06\xce\xdf\xa5\xf7\x02\x54\x9a\xe5\x27\x5e\x7a\x2f\xa6\x0e\x98\x01\x53\x11\xbc\xd8\x39\x37\x9f\xbc\x37\x59\x6a\xee\x51\x01\xb2\xa0\xff\x0e\x3d\xe1\xd4\xae\x99\x7b\xc1\x67\x43\x25\x15\x30\x3d\xf7\xde\xa0\xd4\xe6\xde\xf6\x5e\x3d\xca\x43\x59\x01\x33\x33\x18\x42\x23\xcd\xe5\x33\x55\xfb\xaf\xf8\x6c\xa8\x3c\xf3\xa9\x7e\x9e\x2b\xae\x13\xb9\x6c\x4b\x95\xb3\x25\x6f\x6f\xba\x90\x53\xa5\x9e\xf0\xd9\x50\x7b\x8e\x0c\x76\x50\x23\x0d\x66\x4d\xae\xa2\xee\xa6\x7b\x91\xa8\x0c\x70\x87\xc9\xa5\x7e\x80\x9d\x64\x3a\xab\x9f\x5a\x77\x7a\x91\x9f\x15\xe9\x82\xbc\xd3\x0f\x0a\x5d\x96\x4f\xdf\x17\xc5\x4d\x49\xde\x05\xaf\x9a\x28\xb5\x7b\xc5\x51\x7a\x2e\x59\x75\x7f\xe3\x7d\x3b\xb7\x1b\xcf\xa5\x5d\x06\x43\xbd\x0c\x06\xf9\xe9\xfc\x1f\x1f\xe5\x69\x3b\xff\xc7\x47\x58\x52\xc3\xe9\xb9\x74\xcf\xb2\x06\xe5\x70\x85\xdc\x0f\xd5\x83\xc2\xa3\x37\x34\x5f\xd0\x5c\xfc\x8d\xde\xc3\x0e\x15\xe4\x7a\xd8\x4c\xc4\x6f\x86\x14\x10\xa1\x2b\xf5\x8f\xdf\x48\x1c\xe6\x54\x27\x99\x47\x48\xcd\x29\xa4\xe4\x54\xe5\x51\x9f\xf1\x9b\xe1\x55\x51\x64\xe4\x0a\xfe\xf0\x1b\x15\xd3\x88\x5c\xa9\x7f\x59\x3b\x1c\xe1\x2b\xf5\x8f\xdf\x0c\xaf\x65\xc1\x6b\x01\x4f\x14\x1e\x65\x7d\x99\x4c\xcd\x04\x3c\x51\x78\x94\xa9\x45\x4e\x7f\x48\x65\x3f\xd4\x03\x7e\x33\xe4\x34\x5d\x94\xf5\x84\x0f\x79\x26\x33\x99\x47\xfc\xc6\x12\xea\x2c\xbf\x7e\x01\x74\xc1\x55\x23\x49\x92\x0c\xf9\x82\x5c\xc9\x5f\xd9\x14\x97\xb5\x72\xfc\x66\x58\x56\x6b\x72\x25\x7f\xe5\x60\x58\x2e\x87\xc2\x72\x18\xd8\x17\x18\xd6\x17\x78\xde\xc0\xf3\x46\xe6\x97\x1b\xfc\x0a\xfe\xe4\x1b\x15\xaf\xd9\x72\x29\x13\xd4\x93\xca\xfd\xf2\x5e\xe5\x7f\x29\x7b\xb7\x64\x99\xa4\x07\xaf\xf4\x83\x4d\x81\x4c\xe6\x11\xbf\x19\x56\x39\xfb\x85\x5c\xc1\x9f\x7e\x83\x1c\xea\x41\xa5\x14\xb9\x4a\x28\x64\x0f\x81\x1d\x5b\xca\x4d\x7d\xe5\x9e\xf1\x9b\xe1\x5c\x6e\x46\x48\xd5\x4f\xfb\xef\x46\x15\xa4\xfe\xbc\x0f\x82\x31\x4f\xee\xa5\xf8\x69\x6b\x20\x1e\xd4\x1d\x56\xc2\x6d\xb9\x06\x80\xac\x53\x0e\x5d\xba\x2f\x3f\x7c\xb8\x38\x7d\xdd\x52\x6f\x93\x6b\x57\xf9\x3c\xcd\x73\x9a\xf2\xf9\xea\x35\x2b\x81\xcc\x80\x36\x01\xe7\xd9\x93\x01\xee\x68\xe7\xe9\xfa\xce\x3d\xe3\x3b\xed\x2c\x78\xb8\x52\x3e\x83\xef\xf4\x03\x3e\x33\x5e\x84\x4d\x0e\x59\xc5\x8a\xce\x6f\xae\x8a\x2f\xb2\x06\xfd\x28\x41\x1b\xfd\x22\xde\x80\xd7\xe8\x3b\xf7\xac\xd3\x5f\x70\x9a\xea\x64\xf9\x88\xcf\x20\xce\x81\xdf\x95\xe0\xdd\x10\x7f\xe6\xfd\x5d\x9a\xa7\xd7\xd0\x87\x96\x54\x99\x79\x5e\x4b\x7b\x95\x6e\xd2\x2b\x96\x31\xc0\xf1\xee\xe4\x2d\x6e\x5f\x75\xdd\xc6\x6f\x78\x50\x75\x2d\x51\x66\x5d\x87\x49\xba\x62\x5d\xaf\xf9\xe8\xa5\xca\x09\x83\xfb\xe7\x2a\xe5\x25\x79\x10\x5a\xe6\x39\xb9\x1b\x9a\x47\xfc\x59\xb0\xac\x9c\x3c\xd0\x72\x9e\x6e\x3c\x7f\xca\x93\xbb\x61\x3d\x69\x27\x6f\xe5\xef\x2f\xde\x9d\xbd\xdc\x57\xd9\x0e\xef\x61\xda\x6a\x64\x2a\x8a\x62\xf5\xe0\x09\xe0\x57\x62\x9d\x9d\xa7\x4b\xda\xe4\x81\xc7\x23\x7c\x67\x3f\x23\x1d\x18\x11\x59\xcc\xcc\x95\x74\xb9\xdc\x47\x56\xca\x9e\xea\xcf\xee\x65\xff\xae\xbf\x38\x7d\xf7\xf1\xec\xc5\x05\xb0\xa7\xe5\xd6\xbe\x93\x18\xac\x11\x12\xab\x13\x74\xa7\xf0\x4d\x93\x74\xf0\x78\x40\x47\xff\x71\xfa\xe9\xfc\xed\x87\xf7\xe4\xd4\xc3\x3e\xff\xf7\xdf\x3f\x9f\x7e\xfa\xf1\xf2\xed\xfb\x8b\xd3\xef\x3e\xbd\xb8\x78\xfb\xe1\x7d\x14\xf5\xbe\x0c\x7f\xfe\x7b\x45\xf9\xbd\x39\x1b\x07\xd8\xe9\x7f\xd8\xcb\xbc\x30\x95\xec\xea\x82\xf0\xa0\x67\x23\xd5\x33\x46\xef\x60\xe5\xc9\x03\x2b\xcf\xd9\x7a\x93\xd1\x57\x19\x9b\xdf\x4c\xbe\x0c\x83\x77\x79\xca\xb5\x97\x6c\x59\x64\xf2\x65\x18\x26\xc8\xef\xf2\x5f\x27\xa9\xef\x5e\x82\xf9\xae\xe2\x1a\xba\xcf\xea\xdd\x7c\x55\x0e\xbd\x3f\xd1\xb9\xf0\xb2\x78\x89\x41\x2d\x2c\xbf\x76\x9f\x6a\x35\x06\xdf\x64\xa9\x4f\x45\x01\x5f\x75\xbd\xf6\x55\x7e\x83\xd0\xdd\xde\x47\xf7\x8e\x59\x79\xae\x83\x61\x02\x2f\xf5\x8d\x09\x9f\x3e\x91\x7b\xa9\xfd\xd3\x4e\x03\x17\x83\x47\x7d\xf1\xdf\x7c\x48\xa7\x44\x2b\xe4\x4b\x3d\xc5\xe0\x58\xaf\x59\xb9\xd1\xf4\xf4\x97\x7a\x8a\x04\x55\x85\x16\x65\x9c\xdb\x47\x89\x7b\x56\xa2\xf0\xbe\xf8\xaf\x00\x03\xca\x95\xf7\xd5\x7f\x95\x5f\x59\x29\x0a\x7e\xef\x67\x08\x53\x24\x3a\x53\xe4\xd4\xcb\xe0\xbf\x02\x2d\x60\xd0\xa8\x37\x05\x27\xe7\xe1\xbb\x27\xd2\x70\xe8\xd6\x9b\x74\x2e\x5b\x20\xe7\xfb\xbf\xb5\x96\x6b\x2d\x20\x91\xaf\xa2\x12\x94\xbf\x3e\x3f\x23\xe7\xee\xd9\xa6\xdb\x44\x93\x62\x12\x70\x3c\xc2\x21\xae\x88\x62\x25\x7a\xf3\xc5\x3e\x7d\xfc\xce\x27\x10\x5f\xa7\x22\x7d\xb1\x48\x37\xb2\xe2\x0f\xfe\x9b\x2f\xfc\x00\x19\x82\xcb\xd5\x9a\xae\x54\xe9\x57\xa9\x6c\x54\x29\x14\x19\x40\x7a\x24\xaf\x10\x96\x51\xde\x47\x51\x04\xb9\x4c\xfb\x07\x72\xb6\x55\xa7\xc8\x67\x1d\xd1\xfc\x57\xb2\xa7\x2a\x9d\xab\x23\x77\x70\x29\xc8\xaf\xf0\x87\xd5\xdb\xd0\x0c\xe2\xd7\xa1\x1b\x26\x7c\xf8\xfb\xe7\x9c\x09\xf7\xd5\x7f\x55\xcc\x8f\x6a\xf3\xa6\xe0\x9a\x3e\x27\xbf\xd6\x53\x76\x7b\xe7\x5e\xab\x77\x7f\x4f\xce\x3c\x89\xec\xf7\x38\x1f\xbe\x3d\xbf\x7c\xff\xe1\xf5\xe9\x34\x1f\x2a\xcd\x89\xa1\xd6\xbc\x20\x67\x13\x27\x79\xd5\x69\x4a\xf2\x4a\xda\xd2\xc9\x99\xaf\xc6\x61\x45\xf9\xbf\x4f\x31\xde\x25\xf4\x9f\x0e\xc7\xc7\xc3\x51\x5f\x55\x1e\x28\x78\xec\xab\x5a\x69\xcc\x34\xe4\xcb\xaa\x58\x14\xb5\x68\xe9\xe8\x81\x6b\x45\x93\x8e\x98\xc6\xf6\x85\x84\xdf\x30\xd5\xb3\xa4\xd3\x31\x35\xf3\x47\x04\x9a\x78\xc5\xc0\x3c\xcc\x66\xd6\x6f\x2e\xab\x1a\x0e\x97\xc7\xe5\x88\xd3\x79\x71\x9d\xb3\x5f\xc3\x08\x07\xbf\xdd\x8e\x20\xd0\xf9\xf2\x03\xe5\x58\x43\x1b\x15\x93\xd0\x29\x5c\x5d\x5e\x9a\x58\x2e\x3a\x94\x9f\x4c\xc2\x74\xa7\x34\x84\xea\x7a\x57\x4e\x73\x5c\xbb\x25\x5b\x6b\x88\xaa\x3d\x6a\xcb\x3a\xae\x21\x52\x2e\xf8\x39\xf7\x34\xdc\xf7\xab\x93\x9a\x32\x3a\x70\x3c\x87\xf8\xcd\x2f\x16\x0b\x00\x24\x51\x14\x53\x12\x26\xc5\x7e\xc3\xc6\xa7\x30\x35\xbe\xa4\x4c\x7a\xba\x58\x78\x3a\xb9\x14\x69\xed\x2d\x30\xe1\x74\x76\x9b\x2d\x1e\x3d\xc1\x1d\xd4\x2a\xbd\x55\x5e\x3c\x8d\xa9\x04\xcb\xbb\x62\x45\xad\x87\xa8\xee\x26\x2d\x4b\xe5\xf4\xf3\x9f\xa2\xf8\x67\x5f\x1b\x4d\x79\x8d\xc3\xa5\xe7\xf7\x00\xd7\xa6\x08\xed\x76\xda\xd8\xa2\xa9\xec\x5d\x40\x70\x6e\x6e\xcd\x94\x65\x5d\x9c\xe6\x2e\x45\x8d\x9a\x50\x2f\x2e\x45\x51\xb3\x3e\xb6\xb5\x32\x9c\x1a\x87\xdb\x74\x00\x1e\x06\x7b\x29\xf2\xe2\x70\xe6\xb1\x0a\xec\xdd\x49\xe3\x42\x3f\xfa\x7a\x5a\x69\xd3\xc3\xff\xa8\xe9\x42\x7f\x80\xf2\x01\xa1\x09\x9b\xf9\xea\xc9\xda\x76\xf0\x41\x26\x4d\x04\x11\x20\x15\x15\x10\xb2\x75\xa5\xe5\xb7\x7c\xd7\xa1\x46\x95\x77\xc7\x0e\x58\xb4\x04\x53\x93\xd0\x19\x11\x3b\x5c\xcb\x0f\x53\xbe\xc7\xf4\x57\xc5\x97\x66\x2e\xda\xbe\x9e\x52\x59\x53\xda\x51\xb3\x23\x67\x30\xc5\x39\xea\xe4\x51\x94\x1b\xf0\x76\x2a\x89\x48\x89\x38\xd6\x53\x62\x81\x4b\x84\x79\x5c\x22\x6f\x11\xca\x20\x86\x43\xb9\xc9\x98\x88\xfb\x4f\xfa\xca\xc8\x3f\x43\x20\x10\x85\x84\x9d\xf2\x29\xf9\xe4\x8f\xdb\x9f\x9e\x3c\xb9\xee\xec\x09\x02\xa1\xa6\xf1\xf9\xd3\xed\xf6\x48\x39\x2d\x35\x31\xe9\xfb\x7f\xec\xa3\x29\x9d\x2c\xe8\xbc\x58\xd0\xcf\x9f\xde\x5a\x94\x27\xa6\x68\xc8\xe9\x26\x4b\xe7\x34\xae\x30\xcd\xeb\xdf\x55\xc3\x73\xf2\xe4\x8f\xf1\x74\x72\x1c\x4f\x27\xcf\xb6\x7f\xde\xbe\xdc\xbe\x42\xdb\xa7\xf1\x74\xf2\x72\xfb\x7a\xfb\x02\x6d\x9f\x8d\x90\xdf\xa7\xa5\xdf\xa7\x46\x8d\x7e\x8b\x73\xdc\xec\x91\x6a\x71\x45\x9e\xc4\x3f\x3d\xd9\xfe\x34\xdc\xfe\xf4\x3f\xb7\x3f\x0d\xb6\x3f\x4d\xb7\x3f\x6d\xb7\x3f\xc5\xdb\x9f\xd0\xf6\xa7\x64\xfb\xd3\x6c\xfb\xd3\xc3\xf6\xa7\xdd\xf6\xa7\x9f\xd0\x93\x6b\xbc\x20\x41\xec\x2e\xbc\x31\x80\xcd\x23\x6f\xd2\xf2\xc3\x9d\x15\x0b\xb9\xce\xae\x1b\x8a\x9a\xd6\x11\x1c\xdd\x6e\x8d\x2d\xe1\x81\xa3\x2f\x4f\xb6\x3c\xfa\xaa\x74\x37\x2d\xe1\xe0\x97\x74\x5e\xe4\x0b\x07\x0f\xe4\xc1\x37\x08\xd3\x3f\x87\xca\x51\x70\x6f\xa3\x3d\x42\x63\x81\x0e\x35\xc0\x8b\x5b\xb6\xa0\xdd\x4d\xca\xd3\x75\xf7\x9f\x60\xb2\xf0\xcf\x66\x85\xda\x55\x60\x22\x66\x38\x27\x4d\x2b\xab\x29\x9f\xf4\xfb\x03\x6e\x3d\xae\x3e\x0e\xd3\x4c\xbb\x69\xd8\xf2\xd0\x39\x1c\xce\x77\xca\xa1\x4a\x32\xeb\xdc\x26\xa3\xd9\x5e\x4d\x74\x01\x9a\xe8\xa0\x07\x8a\x5b\xac\xaa\xb5\x8e\x7f\x3e\x9c\xaf\x52\xfe\xaa\x58\xd0\x17\x22\x66\xa8\x23\x71\x86\x4d\x25\x62\x30\xfb\xed\x8d\xad\x6d\x3a\xdf\xe1\xdb\x64\x5c\x6f\xcd\x7a\x19\x90\x45\x9e\xfd\x07\xee\x8d\x94\x1f\xf6\xdb\xe4\xf8\x60\xd6\xa3\x31\x54\xaf\xb2\x3e\xdb\x97\x55\x81\xde\x7b\x39\xd2\xfb\x70\xa4\xde\xe9\x83\x01\xda\xbd\xbd\xc2\xfd\x9f\x7e\xfa\xc3\xb8\x8f\x76\xf8\x3e\xe8\xae\x55\x2d\x8b\x93\xff\x7c\x32\x1b\xa0\xbe\xcc\x70\xdc\x9a\x61\xa8\xbf\x3e\x6b\xfb\xda\x57\x9d\xba\x96\x9d\xba\x3e\xdc\xa9\x1d\xbe\x6e\xce\x98\x5a\x9b\x75\x2c\xb0\xce\x65\xd7\xf5\x62\x78\xfa\xfe\xd5\x87\xd7\xa7\x97\x2f\xde\xbf\xbe\x7c\x7d\x0a\x8f\x1f\x5f\x5c\x7c\x7f\x79\x7e\xfa\xdd\xbb\xd3\xf7\x17\xe7\xd3\x65\xcc\xd1\x84\xcb\x6a\xf7\xcd\xae\x5f\xaf\xcc\x77\x68\x08\x57\x35\x1f\xc2\x0f\x3b\x84\x2f\x0f\xf9\x15\xbe\xb3\xf8\x85\x67\x41\xff\xec\x3f\xe0\xae\xf6\x36\xd1\x48\x22\xed\xde\x3d\x32\x46\xc8\x73\x86\x26\x3c\x78\x8b\x19\xb1\x5e\x1d\x8c\xa7\xa4\xa6\x31\xa0\xba\x15\x71\x05\xc1\xc1\xf1\x9c\x8c\x3a\xe3\xe3\x28\x2e\xc9\xf1\xf3\xe7\xf1\x9c\xf4\xfb\x84\x90\x6a\xfa\x6c\xf2\xa7\xbf\xc8\x87\xb0\x23\xd3\xf1\xe4\xd9\x71\x4b\xf2\xf1\x64\x84\x64\x2f\x2b\x52\x69\xf5\xf6\x31\xc2\x31\x23\x6c\xbb\x4d\x66\x48\xdd\x74\x15\xc2\x71\x41\x0a\x2f\x65\xd4\x23\xf1\xb3\xa8\x44\x08\xe1\xf1\xb3\xa8\x8c\x22\x9e\xcc\x67\x83\x01\xd6\x57\xe3\x83\x3c\xf4\x93\x39\x56\xba\xf9\x59\x5c\xa1\x9d\x39\x3d\x0f\x79\xba\xa6\xe5\x84\x6d\xb7\x97\xb8\x5c\x15\x55\x06\xca\x18\x0b\x5a\x4e\x8a\xed\xf6\xd2\xbb\xc6\x4f\x6b\xe8\x01\x85\x8e\xeb\x00\x45\xc3\x5c\x61\x6d\x44\x07\x41\xf9\xd2\xee\xff\x5e\x1b\xbc\x08\xe7\x95\x96\x2d\x0c\xe6\x07\xb5\x69\x37\xa3\xba\xb6\xdc\xbc\x7d\x11\xe7\xaa\x14\x9b\x8a\x89\x17\x4a\x38\x15\x82\xf2\x9c\xf4\xfb\xd6\x89\xc5\x35\xfd\x62\xd6\x0b\x92\x34\x9a\x50\x06\x89\x72\x36\x4c\x8a\x77\xf7\x9e\x07\xfb\xd5\x8c\x69\xaa\x06\xda\x83\x81\x1e\x41\x7c\x0c\x48\x98\xb8\x09\xb0\xb7\xab\x4c\xf0\xc2\xfe\xd7\xc1\x5e\x22\x21\xb1\xc4\x7d\x2c\xde\x93\x3f\x67\x60\xf8\x67\xa3\x07\xe5\xb3\x8e\x26\x8d\xe6\xa9\x88\x0b\x85\x10\xc6\x02\x79\xc0\xee\x4b\x60\xf4\x25\x07\xbc\xcf\x64\x19\xbe\x6e\xb7\xb1\x3f\x39\x12\xb0\x7f\xa2\xd7\xa7\x5f\x36\xb1\x3f\x87\x08\xf9\x53\xb8\xc3\x7e\x23\xd7\xf4\x80\x2d\x97\x5b\x1c\x2f\xe8\x3e\x18\xf6\x82\xd5\xae\x87\xf3\x9d\xe4\xce\x5e\x37\x0f\x2d\x8f\xf4\xa6\x48\x78\x92\xcf\xc0\x74\xeb\x34\x66\x18\x6e\x41\x63\xf0\xb0\xf3\x5c\x53\x07\x25\x74\xf6\x22\xc8\x5e\xec\xc2\x11\x6c\x2a\xd1\xee\x01\x04\xfa\xac\x2a\x04\x9b\x1e\xaf\x8e\xbc\xd3\xe8\x9f\xbd\xe6\x60\x16\xbf\xc4\x0c\x33\x63\xc5\xa9\x2a\xc5\x2c\x31\x29\x33\x92\x6b\xcf\x58\xb5\x69\x9a\xd6\xf7\x74\x3e\x64\x8b\x89\xc6\xf4\x5d\x32\xaa\xe7\xd3\x16\x5f\x43\xb6\xd0\x61\x89\xbd\x2a\x92\x5a\x02\x96\xd9\x66\x38\x0f\x67\x41\x49\x95\xf6\xf8\x7b\x0a\xd7\xb1\x67\x6c\x4e\x92\x59\xc7\xec\xdd\x0e\xac\xa9\xa8\xaf\xa9\x78\x64\x4d\x05\xac\xe9\xb9\x5c\x50\x24\x89\x33\x18\x06\x43\xfb\x16\x54\xc8\xbc\x85\x9f\xb7\xf0\xf6\x3e\x74\xe6\x45\x93\xe0\x09\xad\x19\x7f\xa9\x28\xbf\xd7\x31\x11\xe9\x76\xfb\xb0\xf3\x0e\xf9\x8d\x1d\x77\x87\x12\x77\x39\x3f\xf9\x69\xf0\xe4\x7a\x8d\xfb\x7f\x3c\x1e\x49\x5a\x8c\xdf\x3f\x08\xd2\x8a\x1c\x6b\x3f\x47\xf2\xaa\x21\xfd\xfe\xce\xe2\x03\x2f\xbc\x89\x56\xce\x48\x34\x0a\x5a\x4f\xc6\x41\xce\xf6\x8c\x8d\x7c\x60\x42\x57\xcf\x26\x13\x61\x42\x2e\x1a\x66\x9f\x00\xd4\x25\xb5\xa7\x7d\x42\x42\x94\x0f\xb5\x69\x29\x1e\x61\x89\xe3\x8c\x24\x0a\xd5\x81\x48\xae\x02\xb7\x40\x66\x5e\x14\x6a\x43\x10\xb1\xeb\x5c\x1c\x24\xac\xbc\x68\x63\x24\x2c\x8b\x19\xe9\xff\x67\x1f\x17\x24\x19\xe1\x11\x06\x07\x9b\xce\x6d\xa7\x35\xe4\xc5\xe0\xbe\xae\x22\xbd\x11\xce\xc8\x48\xde\xa3\x27\x73\x47\x1b\xce\xe5\xbe\x32\x4d\x2c\x09\x4d\xe6\x33\xbc\x22\x77\x71\x89\x97\x8a\x32\x2e\x10\x5e\x90\x95\x1a\x33\xde\x90\xd5\x30\xb8\xc7\x4e\xb2\xe7\xd6\x78\x35\x33\x5b\x74\x4d\xca\x24\x9b\x75\x9e\xf5\x08\x59\xc3\x75\x00\x37\x6e\x6f\x8c\x73\x92\x5b\x84\x11\x90\x4c\xcc\x06\xa4\xff\xa4\x8f\x73\x72\x9b\xa8\xac\xb3\x78\x8d\x73\x48\xbf\x77\x29\x08\xed\xd2\x64\x3e\x23\x0f\x86\x2e\x5d\x9a\xab\x07\xab\x0b\x76\x51\xbb\x5d\x37\xbb\x5d\x05\x4e\x8e\xdb\xdb\x43\x38\x77\x77\x57\x8a\x73\x7b\xd7\xb1\x41\xff\x0f\x7d\x9c\xeb\x3b\xac\xc0\x87\xac\xc9\xa2\x48\x0c\xd3\x52\xb9\x31\x1b\xa6\x92\xd8\x34\x2e\x50\xa0\x4f\x60\xfa\x5e\xd2\x6b\x70\xff\x38\x29\x0d\x49\x5d\x4e\xd2\x1d\xda\xe1\x8b\x80\x56\x52\x5f\xea\xf1\xcb\x7c\xf8\x01\x35\x6a\x37\xd2\x2d\x86\xd6\x17\x2b\xca\x69\x97\x95\xdd\xbc\xe8\x02\x0d\xde\x95\x25\x16\xdd\xfe\x80\xfa\x86\xf1\x9e\x53\x57\xdb\xaa\xdd\x26\x06\xe0\xd4\x3e\x04\x90\xc7\x7e\x84\xab\x34\xc9\x67\x84\x79\x74\x42\x38\xa8\x52\xb1\x9c\x9b\x68\x72\xaf\x17\x8c\x29\x2c\x67\x88\xac\x03\x77\xa2\x2e\x27\xe9\xae\x3e\x4c\x48\x4b\xf0\x97\xaf\x9a\x10\x46\xf8\xd0\xac\x90\x09\x08\x62\x46\x5d\x98\x51\xa7\x84\x25\x85\xda\xcc\xa9\xd9\xcc\xb9\xde\xb5\x03\x72\x9d\xa4\x7a\x93\xa6\xd8\xe1\x11\xfd\x27\xfd\x1e\xd1\x14\x96\x41\x8c\x73\x59\x64\x90\x23\x0c\x1b\xc7\x03\xa2\xaa\x3e\x7d\x4b\xaa\xc1\x83\x3c\x4b\x49\xf4\xe2\x20\x2f\x42\xf2\xda\x69\x9b\x2f\xaf\x48\xcb\x26\x4a\x66\x98\x1b\x0c\xff\x86\xde\x97\xb1\xa4\x3e\x40\x21\x20\xf6\x71\xf4\x7d\x58\x84\x5c\x69\x0c\xe1\x17\x67\x0e\x0f\xb1\xe1\x7f\x5a\x98\x0e\x0c\xa9\xfb\xac\x70\xf7\x59\x49\x46\x27\xe5\xf3\xc2\xd4\x5e\x9a\xda\x2b\x79\xe8\x92\x19\xe9\x0f\x5a\xea\x29\x92\x72\x86\x3a\xc2\x20\xe6\xca\x3a\x3c\x1d\x90\xfe\x9e\xec\x48\x87\xeb\x8a\x53\x64\x43\x9e\xfa\x3c\xc5\x69\xbf\x3f\xe9\x4f\xfb\x03\xa1\x59\x3d\x51\xbf\x76\x16\xc1\xd1\xee\xbe\xb9\xf4\x42\xb9\x18\x62\x26\xea\x23\xcc\xc9\xc3\x0e\x1f\xb8\xae\x93\x7c\x66\xb2\x93\x3e\xc2\x05\xb9\x89\x59\x32\x9a\x21\x9c\x12\x33\x1d\xb8\x94\xe0\xd1\xf8\x7f\xed\x48\x7c\xd7\xec\xc4\x69\x45\xfa\x82\x57\xb4\x3f\x89\xd3\x6f\x8f\xa3\xa8\x9f\xcc\x24\xe5\x53\x68\xfa\x25\x3d\x3a\x96\xbb\xab\x04\x77\xee\x49\x61\xd3\x47\x58\x7e\x99\x6d\xb7\x31\x4f\x8a\x19\x49\x66\x08\xe1\x0a\xfc\x2f\x4f\x65\xf3\xe3\x19\x9a\xf4\xfb\x08\x97\x53\xf9\xd9\xcc\xef\x04\xf2\x56\x7b\x8e\xb4\xe5\x82\xb7\xc5\x41\xd4\x58\x92\xbd\x9b\x66\x26\xfe\x4e\x6f\x2c\x77\x8e\x63\x8d\xfd\x8f\x3e\x3a\x01\x44\xbf\x00\xe6\x31\x35\xd4\xe2\x08\x17\xc8\x84\x29\xf4\xb2\x4f\xfb\xda\xdb\xad\x3c\x7f\x66\xc7\xd8\x42\xe9\x60\x8c\xed\x45\xd7\x09\x6a\x4b\x91\xf3\x81\x10\xae\xa9\xdc\x48\xea\x84\xd2\xe0\x84\x52\x38\xa1\x14\x69\x1f\xc1\xb4\xf3\x38\x61\x4e\x89\x3c\x4a\x93\x98\x3a\x74\x26\xa6\x08\x67\xde\x6b\xa6\x47\x35\xb7\x74\x49\x67\xfe\xed\x38\x8a\xfa\x4f\xfa\xc4\xeb\xc1\xfc\x68\x8c\xea\x13\x22\xd3\x70\x46\x32\x97\x92\x59\x3f\x06\x92\x86\xee\x8d\xdc\xe1\x5d\x92\xd1\xc9\xd2\x5e\xeb\x70\x2b\x7d\x88\x39\xa6\x3e\x01\xbc\x44\x08\x99\x0d\xba\x1c\x0c\xd0\x89\x29\xbc\x92\x00\x62\x41\x46\x27\x0b\x77\xfc\x17\xe0\xe3\x7b\x31\xb3\x20\x3f\x8a\x56\x3a\xd8\x44\xb2\x98\xa1\x0e\x6f\x67\x80\x00\x4c\x69\x83\xdd\x54\x5d\xaa\xdb\xad\x41\x56\x72\xc2\x55\xac\x1c\x9e\x8c\x25\x74\xe1\xc9\x31\x78\x42\xae\xe7\x2b\x49\x2a\xf3\x55\x24\x95\xf9\x32\x92\x26\xc7\xd6\xd3\x5d\x66\x69\x92\x23\xf0\x9e\x5a\x00\x6b\x31\xef\x11\x52\x9a\x2f\xe5\x11\xd0\x21\xac\x47\x48\x65\xd2\xaa\x23\x7b\x6d\x41\xfa\x94\x1d\x55\x13\x28\x35\x2d\x8f\xf2\xc9\x68\x87\x76\xf1\x4a\x2d\xdb\x86\xac\x92\x91\xf5\x95\xbd\x89\xa2\x8d\x37\x21\x31\x93\xef\x1a\x79\x88\x22\xe0\x20\xfd\x41\x2e\xab\x4d\xd4\xa7\xf1\xe8\x4f\x72\x71\x33\x8d\x7c\xec\x21\x97\x88\x43\x05\x80\x8a\x05\x62\x51\xf9\xe0\xe8\xb1\xed\x36\x08\xcb\xa0\xaf\x39\x40\x2a\x21\xf0\x02\x73\x26\xf3\x7d\x13\x43\x50\x68\x02\x97\x49\x50\x33\xc6\xca\x41\xd5\x8b\x98\xa3\x8e\xc5\xe9\x0d\xc3\xc5\x8b\xd7\x39\x3a\xa9\x1c\x1f\xa6\x32\x70\x2c\x23\x79\x52\xcd\xf0\x9c\x64\x1a\x15\x5c\xca\x7d\xe9\x23\x5d\x78\x45\xae\xf0\x42\x87\xa1\x98\xf7\x08\xb9\x8c\xa2\xa5\xfc\xb3\x57\xc0\x86\x8c\x4e\x36\xcf\xe7\xa6\xee\x8d\xac\x7b\x41\x7a\x23\xed\x53\x7a\x9e\x6c\x66\xf8\x16\x42\x6b\x26\xe9\x60\x30\xeb\xac\x08\x21\x57\x51\x14\xaf\xc8\xc3\x0e\xe1\x47\x4f\x63\x14\x2d\x93\xcd\x6c\xba\x4a\xd6\x33\x72\x1b\x45\x2d\x04\xc6\x2d\x9a\xa8\xaf\xbb\x32\xa9\x3c\x74\x32\xb3\xe8\x24\xf0\x5e\xcb\xc9\x0a\xb3\x52\x07\xcf\x9f\x2c\xec\x4d\x52\xee\xe2\x0d\xce\x30\x90\xf3\x12\x34\x1a\x3d\x97\xfe\x68\xf8\x74\xf8\xac\xff\x78\x0f\x25\x90\xbe\x18\xbe\x2f\xf8\x1a\x56\x8a\x93\x87\xdc\x3c\x9f\x2b\x3c\x64\x92\x61\x9b\xf4\x31\x15\xab\x49\xa9\xa5\x04\xf2\xc5\xe4\x59\x86\x70\x79\x9d\x6e\x5a\xb1\x25\x10\xa9\x74\x68\x5c\xc4\xfd\x3e\xe6\x35\xf1\x96\x0b\x1d\xde\xa5\xd6\xed\xbb\xbd\xe1\x0a\xc2\xb5\x2c\x07\x97\x01\xde\x50\xc8\x5b\x44\xee\x90\xb2\x65\x87\x94\x6a\x87\x08\xbd\xe9\x51\x27\x8d\xe7\x38\xc3\x45\x92\xcd\xd4\x96\x5c\x12\xee\x44\x3b\xd9\xac\xb3\x9c\xd2\x78\x8e\x97\xd0\xf6\x24\x57\xec\x79\x86\xe7\x68\xb7\x8b\x25\xc6\x12\xc8\x57\xc5\x54\xf9\x32\xc4\x54\x53\xe8\xca\xe3\x99\x0a\xf2\xa4\x03\x01\xbd\x22\x17\x9e\xe8\xf5\x95\x27\xc2\xe5\x97\x3f\x97\xa1\xcf\x82\x16\x2b\xec\xc0\xbb\x49\x9f\x97\xb7\x1b\xf9\x57\x97\x00\xb7\x19\x64\x37\xc4\xbf\x59\x71\xfd\xe2\xaa\xe0\x82\xdc\x61\x3a\x7c\xab\x8d\xd0\x01\x21\x06\x67\xd8\x74\x78\xc1\xd3\xbc\x64\xb2\x16\x65\x88\xe9\xa7\x28\xc2\x90\x0e\x95\xca\xd4\xc7\x17\x9f\x5e\xbc\x3b\xbf\x3c\xff\xf1\xdd\xcb\x0f\x67\x84\x0e\xeb\xef\xe7\x17\x2f\x2e\x4e\xdd\xab\x69\xcc\x55\x47\x5a\xa5\xd1\xc5\x1e\x97\x33\x76\xfb\x40\xbf\xd4\x9a\xc0\xbc\x1b\xd9\x1c\x44\x6c\xee\xbb\xea\x61\x9c\x74\xa1\xb9\x84\x6b\x5a\x96\xe9\x35\x05\x67\x1b\x2d\x79\x4c\xa5\x1b\x51\x71\xe5\xf0\xf9\x82\xa7\x73\x3a\xdd\x93\x1e\xae\xb8\x72\x92\xc6\xd5\x7f\x8b\x2f\x9c\x9a\x4f\x15\x55\xa7\xfd\x8a\x42\xf7\x59\xce\x95\x08\xa1\xca\x09\x4f\xba\x87\x55\x50\x7e\xbd\x78\xab\xaa\x91\xec\x20\x98\x46\xa5\x9e\x45\xcc\xe1\x8a\x87\x50\x82\x09\x9f\xd5\x83\xcb\x1b\x4c\x8a\x46\x11\xf5\x22\xf6\xf1\x28\xe2\xce\xdb\x15\x4d\xf8\xd1\x18\xee\xbf\xb6\xeb\x37\x8a\x4a\x23\xe4\xea\x7b\x64\x43\x1f\xed\xe2\xdc\xf2\xde\x04\xc9\x7d\x9a\x02\x27\xa9\x29\x33\xc2\x5c\x62\x16\x62\xe6\xe2\xc7\x49\x5c\x3f\x8c\x59\xef\xe1\xc1\x72\x78\xd4\x5e\xf0\x89\x80\x7e\x39\x5f\xf4\xd6\xe5\xa0\xfc\x44\x40\x1e\x66\xe2\x0e\x06\x02\xc4\x1a\x2b\x53\xa2\x04\x75\x16\x2e\xd0\x9a\xb2\x86\x24\x9f\xed\x76\xa1\xec\x13\xbc\x9e\x65\xc5\xb5\x8f\xa0\xff\xbb\x22\x9a\xe8\x80\x7f\x3c\x70\xde\xca\x14\xe6\x52\x00\xe6\xa2\x0e\x7b\xec\x6d\xf6\xee\xff\xe8\x0f\xd8\xa0\x3f\xe9\xf6\x07\x85\xc7\x89\x4b\xa1\x94\xce\x2e\xe9\x93\x20\x82\xbe\x15\xd2\xd4\x45\x89\x74\xbb\xa5\x5d\xe3\x3d\xa2\x58\x76\x15\x0e\xbb\xdd\x36\xa6\xb9\x9e\xf1\x3d\x7c\xdf\x1f\xbc\xbe\xe1\xb1\x2a\x8a\x54\x74\x32\xd8\xa1\x08\x3c\xd1\x9c\xb8\xe2\x1b\xef\x6a\x91\xb8\x7d\x9a\x65\x93\x87\x1d\x56\xa6\x7a\x0b\x08\x2e\x0f\x46\x58\xf2\x71\xd7\xa9\xe2\x7c\x98\x66\x99\x04\x1a\x6a\xc6\x7a\x63\xe5\x78\x4c\x6e\x19\xb9\x89\xf0\x3c\x16\x08\x53\x64\xf7\x2b\x9c\x0d\xef\xa4\x6c\xb7\xca\x53\x7d\xae\x8d\xbb\x16\xe0\x99\x4f\xf6\x0c\xb9\x9a\x04\x62\x4b\xbf\x90\x63\xf5\x73\x15\x55\x43\x71\xb0\xd7\x71\x81\xa2\x68\x1d\xa7\x08\x81\x83\x4c\x35\x66\xa0\xe8\xf5\xba\xe6\xda\xe6\x70\x61\x0e\x27\xa0\xd7\xa1\x57\xcc\x8c\x8c\xf0\xd2\x92\x6c\x27\xd9\xf3\x25\xb0\xbc\x0a\x15\x3c\x24\x4d\xb2\x19\x78\xdc\x69\xab\x48\x7b\xbd\x94\xdd\x92\x33\x9c\xf0\x03\x59\x2d\x66\x3a\xcd\xb5\xab\xc4\x9d\x2f\x3e\xb7\x87\x3d\x3c\x42\xd4\x83\x26\xb7\xde\x76\x52\x0a\x80\x13\x70\x71\xa7\x84\xaa\xfd\xcb\x4b\x75\x65\x5c\x1e\x1d\xff\x79\xfc\xd7\xbf\xfc\x79\x34\x1a\x8d\x9f\x3e\xfb\xd3\x5f\x8f\x47\x47\x4f\x9f\x1e\x1f\xdf\x3d\x95\x17\x58\x70\xab\xdc\x6b\xd1\x67\xff\xd2\xdc\x46\xa6\xec\xf1\xd3\xe3\xbf\xfe\xf5\xf8\x2f\x4f\x47\xc7\xa3\xa7\x47\xc7\x4f\x9f\x1e\x43\xe1\xf0\x8a\xba\xd6\x52\xc7\xfe\xe5\xe5\xdf\x3f\xba\xa2\x4f\xff\x7a\xfc\xd7\xbf\x1c\x3f\xfb\xcb\xb3\x67\x47\x4f\x8f\x75\xc1\xb6\x1b\xef\x0a\x8a\x5f\xee\x8f\x2b\x69\x10\x68\xc5\x19\xf7\x23\x95\x1a\x71\xe5\xd3\xd6\xc8\xb9\x4f\xfd\x60\xcd\x4f\x4d\x1c\x66\x3f\xb4\xa9\x29\xff\xac\xb5\xfc\x33\xbf\xfc\x33\x1b\xc7\xd9\x78\x32\x5c\xf2\x62\xed\xf9\x20\x17\x45\x20\x25\x63\xa5\xbe\x13\xad\xcb\x7c\x56\xbe\x98\x0b\x76\x0b\x3e\x52\x20\xa1\xe2\x99\xb6\x60\xec\x57\x9b\x45\x2a\x68\xdf\xba\x13\x2c\xb2\xdb\x46\x48\x68\x03\xcf\xc1\xd6\xc4\x55\xea\xe1\x01\x3d\xdb\xf6\xab\xb4\x2a\xe9\xe2\xe5\x3d\xf4\x81\xe5\xd7\x7e\xa6\x71\x3d\x93\xf6\xc6\x75\x30\x8f\xa9\xe8\x93\xe2\xf8\xb7\xe4\xbd\xbc\x65\xe0\xc3\xeb\xef\x9e\xf8\x40\x87\xb9\x4e\xee\x67\x84\x6f\xb7\x54\xf1\xc8\x4d\xd0\x08\x41\x73\x61\x98\xe7\x0a\x87\x33\xcc\xf3\x45\x2a\x52\xc5\x7f\x95\x4f\x10\x71\xd3\x9f\x98\xc5\xbb\x62\x41\x33\x57\xfb\xd5\xcc\xc6\xd3\xde\x28\x2b\xad\x60\x25\xc0\x36\xd3\x4f\x49\xae\x5d\x01\x6e\x50\x36\x17\x03\x46\x29\x77\xbd\x97\x58\x90\x5f\xcd\x86\xdd\x16\xc2\x58\xc1\xf9\x1f\x4a\xfa\x4b\x45\xf3\x39\x25\x47\x63\x5c\x04\x9e\xf8\x4d\x6f\x72\x63\x3d\x36\xe4\x54\x22\x1a\x12\xcb\x96\x35\xc4\x5e\xff\x0a\x17\x2d\xe2\xf0\xf2\xf5\xd2\xaf\x58\xbf\x5e\x1a\x45\x71\x7a\x28\xcf\x76\x0b\xb1\x99\x6c\xef\xd1\x6f\x58\x71\x59\x7b\x5f\xcb\x7e\xfa\x50\x8b\xdd\xca\x51\x14\xf7\xd2\x83\x23\xd8\x6e\xdb\xbe\x37\x5a\x41\x46\xdf\x51\xae\x16\x1f\x2a\xba\xcd\xae\x37\x0f\x10\x9c\xfa\x4a\x72\xef\x45\x2b\x97\xf9\x49\x06\xf7\x2a\x0d\x3f\xdf\x5b\x71\x3f\x5f\x52\x1e\x8d\x67\x80\x0e\xa3\x1a\xf9\x5c\x9e\x0c\x06\x95\xa1\x8a\x82\x22\x95\x62\xe1\x67\x43\x56\x6a\xaf\x3b\x0b\xed\x18\xb3\xb9\x89\x32\x55\x70\x17\xee\x22\x6a\x1c\xb1\x9f\xeb\x14\x13\xc5\xc8\xec\x26\x6e\xce\x41\xdc\x94\x5c\x33\x07\x77\xa6\x8d\x5d\xd7\x1b\xe3\xdb\x00\x8f\x49\x55\xce\xee\x51\x57\xe5\xe8\x23\x49\xa5\xb9\x52\xaa\x15\x50\xe6\x01\x22\x6c\xa8\xa4\x77\x2d\x88\x69\xa3\x2d\xa6\x8f\xf4\x50\xd8\xe6\x5e\xb3\x85\xe2\x6a\x50\x0c\xd1\xeb\x6e\xe3\xbe\x9a\x89\x2e\xf4\xb8\x8f\xfc\x68\x33\x6d\x47\x47\x75\x47\x03\x14\xe4\x1d\xe5\x43\x01\xee\xc5\x8a\xee\x8d\x10\xe3\xb7\x04\x19\xf5\xf7\x1d\x16\x6a\xa8\x7b\xd4\x97\xfc\x62\x6a\x4a\xe4\x67\x08\xf9\xae\x02\xb1\x7c\x45\x39\x9d\xd3\x96\x84\xb5\x68\x48\x22\x79\xa1\xe2\x6a\x68\x51\xa4\x92\x42\x6a\x15\x5c\x35\xc1\x3a\x84\x74\xf8\x87\xbc\xf1\x6b\x01\xb1\xbc\xad\x64\x07\xe5\xa5\xe5\x27\x78\xf7\xd4\xc8\x87\xc5\xea\xef\x07\x96\x65\xca\x93\x43\x6c\x7c\xf4\xfa\x9f\x5f\xb3\x45\xf8\x55\x8e\xc4\xf4\xb9\x31\x18\xdb\xd4\x76\x1b\x2f\x83\x31\x04\x27\xa0\x0e\x85\x25\xa6\xed\x76\x51\xf7\x2e\x2d\xcd\xc6\xed\x23\x6c\xaf\x6d\xef\x52\x71\x22\x3c\x3f\x2d\xf6\xde\x86\x1b\x4e\xeb\xe4\xb8\x3f\x38\xb8\xa7\x50\xe3\x22\x1f\xd5\x2f\xf2\x71\x30\x25\x29\xa4\x7a\x80\x52\x2f\x06\x4c\x0a\x5d\x30\x1e\x58\x83\xd3\xc6\x12\x1f\x9c\x7e\xaa\xab\x11\xfc\xbe\x31\xb1\x30\x1d\x56\x5a\xed\xd7\xe2\xe6\x4d\x5e\x01\x72\xe8\xfe\x34\x80\x0c\xdb\x0b\xf3\x60\xa6\xcc\x83\xe6\x26\x6c\x58\x1c\x7e\x80\x10\x0d\x42\x7f\x6b\x63\x14\xd7\x10\x1c\x6a\x77\x47\x59\x0b\x2d\xac\xfa\xdc\xc0\xc8\x46\xad\x18\xd9\x68\x16\x45\x41\x20\xf6\x26\x21\xf8\xed\x78\xea\xc7\x66\x37\x48\x1f\x6f\x66\x3c\xf6\x32\x1e\xdb\x8c\xcd\xa8\x9e\xdf\x3e\x6d\x45\x23\x59\x0b\x1a\xd9\x8a\x2f\xaa\xed\xac\x23\x5a\x39\x8e\x92\x9c\x8c\x46\x7c\x9d\xff\xae\xf9\xe8\x34\xc9\x50\xd0\xed\xa3\x58\xee\x6a\x5f\xa4\xdc\x20\xb4\x73\x8f\xd0\xe6\xdf\x1e\x4f\xf9\xd1\xb1\x24\xb4\x19\x39\x3e\x61\xcf\xb9\x89\xeb\x73\x74\xec\x13\xda\x4c\x47\xa4\xb1\xbb\x12\x86\x0d\x46\x60\x06\x9e\xfb\xf7\xb3\x91\x70\x35\xb0\xe1\xc1\x18\x81\xae\x50\xae\x80\x6d\x91\x65\xc5\xdd\x27\x7d\xb2\xca\x3d\x61\x4d\x54\x9b\x9d\xfd\xb0\xdb\x16\xf3\xb5\xd7\xea\x67\x79\xda\x4c\xaa\xb7\x1f\x87\x97\x27\x5c\x83\x02\xed\xd4\x42\xef\xf7\x88\xe8\xdd\xc7\xb1\x01\x81\xdd\xfe\x20\x00\x89\x83\x3e\xea\xcb\x6a\xb2\xa2\x26\xb0\x3c\x00\x45\x6d\xdc\x02\x5f\xcd\xd3\x99\x27\xc4\xd4\x14\xa3\xae\x4c\xdf\x38\x59\x57\x10\x76\xd8\x57\x4e\xd3\x8b\x40\x8f\xd1\xf6\xbc\xae\x3b\x41\xa3\x28\x60\x50\x5c\x4a\xf0\xe1\x13\x28\xbb\x56\xee\xe5\x65\x47\xe9\x3c\xca\x96\x7e\xa0\xe9\x4d\xe0\x4c\xf7\x3c\xb6\xfc\xa7\xe6\xce\x6e\x3d\x13\xe3\x59\xb8\xe1\x41\x76\xdb\x3c\xfc\xad\x65\x8f\x83\xf3\xe4\xe2\x46\xd3\x30\x4a\x20\xc3\x56\x36\xce\x00\x3f\xc4\x25\x61\x06\x45\xad\xcc\xa3\x0a\xc2\x9e\x11\x66\x2c\x17\xf0\x9c\x68\xb4\x48\xe2\x88\x5f\xc0\x2f\x36\x43\x51\xa4\x6d\x24\x96\x04\xcc\x35\x63\x86\xf0\x8a\x7c\x88\x97\x35\xef\xd2\x8a\x79\xf6\x70\x4d\x45\x77\x4d\x45\x2a\x29\x23\x87\xf7\xbd\x88\xc1\xa0\x85\x2d\x63\xcd\xca\x64\xe5\x1b\x5e\xfc\x4a\xf3\x98\xa3\xed\x96\xd7\xf8\x99\x71\xdf\xd4\xd0\xb7\x4c\xc3\x50\x3d\x18\x0c\xea\xac\xbf\xad\x1d\x18\x72\x98\xab\x22\xf8\x06\x21\x38\xe2\x39\x5e\x22\xec\xcc\x9a\xbe\x80\x6f\x6d\x86\x57\x08\xaf\x00\x37\x5b\x90\x87\x25\xcb\x17\xce\xb8\xd7\x09\xc5\x30\x23\xc9\xac\xf3\xd4\x93\xe1\x43\x44\xd2\xda\x8c\x53\xcf\x1a\x58\xb9\x0f\xdf\x79\xca\xc7\x05\x19\x9d\x18\x46\xd7\xb7\x85\x0a\xb3\xbc\x8c\x73\x3d\x9f\x34\x29\x24\xb6\xa8\x98\x48\x12\xf6\x16\x12\xff\xb4\x3a\xf7\x58\xce\xa8\x5c\x44\x37\x9b\xa9\x4a\x74\xab\xe8\x79\x52\x53\x9f\xda\x56\x40\xaf\x2d\xb2\x85\x25\x74\x33\x0a\x1a\x14\x82\xfd\x9a\x09\xb2\x11\x06\x85\xf2\x07\xae\x3a\x2a\x74\x51\x90\xa0\xf8\x25\x07\x5f\x5b\x32\x2b\xe6\x69\xf6\x5e\x8d\xc5\x03\x81\x72\x74\x46\x43\xc1\xb3\x37\xa0\x89\x73\x9b\x3f\xf3\x86\xec\x0d\xb7\x54\xc9\x1e\xb1\xe5\x39\x32\xdd\xed\x2c\xf2\x10\x45\xf1\x82\x7c\x88\x17\x38\x43\x08\x9b\xe5\x5f\x20\xbc\xd8\xa1\x50\xa3\x37\xdc\xc8\xa9\x10\x9c\x5d\x55\x82\xb6\x57\x5b\xdf\xcb\x14\x6d\xb7\x75\xde\x7c\xdc\x77\x95\xf4\xd1\xf4\xf0\x36\xa6\x72\x1b\x4f\x82\x54\x99\xe4\xba\xf8\xc2\xa7\x69\x00\x23\xa2\x1e\xa0\xa0\x2a\x24\x91\x15\xf3\xbc\xd3\xbb\x60\xba\xef\x83\xbc\x12\xaa\x2c\x83\x33\x70\x73\x88\xc1\x65\x43\xdb\x5c\xc2\x1e\xfa\xd8\xc2\xc6\x50\x5f\x88\xaf\xbf\xed\xf3\x58\x3c\x82\xd3\xe2\xa5\x20\xc9\x11\x5e\xee\xf7\x4a\xb1\xb1\xc6\x73\xc9\x4d\x58\xc0\x0d\x2f\xe6\xb4\x54\x7a\x5d\x71\x8e\x0e\x91\x55\xd7\xe0\xc7\xa1\x16\xd2\xb6\x85\x18\x74\x34\x9b\x81\x82\x48\x61\x81\xca\xd6\xbc\x4d\x7d\xac\xeb\x8d\x0e\xd4\x4f\x01\xef\x85\x8a\xf6\x2a\x8d\x75\x0e\x37\xed\x4f\x2a\x52\x94\x5e\xcb\xad\xcf\x55\xcc\x95\x37\x05\x07\x8c\x5f\x91\x66\xf5\xec\x5e\x6e\x5e\xe5\x2f\xe9\xb2\xe0\x14\x66\xe2\xfb\xa2\xb8\x89\x0f\x17\xa8\x57\xaf\xa2\xcd\x1d\x28\x60\x66\xb9\xad\xde\xdf\xd8\x6f\x1a\x76\xfc\xc5\x52\x50\xee\xf5\x5b\xa2\x0b\x87\x8a\x5c\xd1\x79\xb1\xa6\x66\x87\xe9\xfc\x72\x65\xc2\x0f\x6d\x0b\x64\xd4\x74\xec\x9a\xc7\x02\x75\x6c\x38\xb9\x52\xa4\xe5\xea\x93\xcf\xd8\x53\xf1\x60\xa8\x24\xed\xe5\x0f\xb0\xff\xe4\x43\x62\xf7\xf4\x8c\xe4\x36\x52\x96\x8d\xf0\xaa\x76\xd7\x49\xdc\xd7\x4f\x7d\xa6\x76\xd2\x76\xdb\x93\x97\x6c\xcc\x89\x30\x7a\x13\x1a\x68\xae\x58\x89\xb4\x4a\xed\x45\x13\x91\x82\x7b\xbd\x76\x74\x4c\x00\x73\xc8\xe7\x85\x37\xb0\x10\xa2\x88\x22\x05\xfd\x52\x5c\x20\x9c\xc2\x56\x07\x1d\x0a\x08\x8d\x31\xa7\x0b\xda\x12\xc4\x49\x6b\x4d\x1a\x23\x62\x6a\xc6\x52\x1b\x9a\x43\x46\x64\xd7\x0c\xad\x26\x9f\xb7\xdb\xfa\xa0\xa3\xa8\x67\x22\x0f\xd5\xc1\xe5\x46\x4b\x0c\xa3\xa8\xd7\x08\xae\xd0\xa3\x3d\x62\x95\xd7\x95\xa2\x87\xdf\xbf\x40\xec\x49\x11\xc8\xe5\x6a\xd5\x73\x14\x45\x9e\x14\xc4\x55\x65\x2a\xd9\xc5\xde\xf1\xc6\x54\x3f\xa0\x26\x76\x2b\xbb\x04\xb2\x34\x90\x96\x16\xd7\x4e\xf5\x56\x89\xde\x14\x20\x51\x8c\xf3\x7d\x9a\xa8\x5d\x3a\xbc\x34\x1e\xe2\x81\xbd\x57\x5b\x59\x05\x52\x81\x94\x6d\x1e\xe6\xa6\x16\x9c\x5b\x01\x4d\xc1\xc8\xae\x19\xca\xae\x37\xc2\xfd\x3b\x96\x65\x7a\x2f\x43\x35\x7d\xec\x37\xe4\x13\xf8\xde\xad\xe2\x12\x87\x57\xae\x07\xca\xd4\xaa\xf5\x53\x4c\x11\xc2\xa7\xb1\x50\xe6\x58\x00\x44\x70\x0b\xe0\x43\x7a\x58\xe1\x51\x6f\x3d\xa1\xcc\x44\xdf\x95\x53\x13\x90\x4a\xfb\x8e\x67\x4b\xef\xdb\x87\x94\xda\xd6\x5d\x40\xe8\xfa\x97\x58\x19\x90\x73\x72\x1a\x33\xc2\x91\xc2\x6c\x58\xcb\x98\xf8\x5e\x58\x49\x6b\xc2\x81\xa4\x98\x29\xf8\x14\x80\xc6\x76\xbe\x5c\xb3\x1d\x1a\xa3\xbd\x2d\x89\x9d\x86\xdb\xf2\x6c\x37\x66\xa7\xb1\x81\x6b\x32\x8b\x7a\x82\x82\x6e\xf5\xce\x7b\x90\x4e\x00\xa5\x4b\xc5\x7c\x55\xdb\xe4\x2d\x44\xae\x72\x05\x63\x6d\xf4\x15\xe7\x3a\xb0\x69\x0a\x6e\x78\xc5\x52\x0a\xd2\x5a\x35\x3f\xfd\x0b\xb6\x71\x9d\xb6\x70\x68\xa9\x8d\x4f\x13\x0b\x42\x51\x14\xb5\x69\xd9\xb7\x45\x6a\x81\x29\x9f\x36\xaf\x6c\xd2\x48\x39\x70\x53\x79\x10\x01\xc8\x04\xff\xa4\x6b\x86\xdc\x44\x07\x00\x0f\xb3\x1a\x61\x2c\x8e\x47\x98\xef\x89\x04\x0a\xd5\xec\x8b\x74\x19\x44\xa8\x85\x9c\x53\xef\x59\xa9\xb8\xb8\x95\x8c\xd1\x0e\xbc\x2f\x35\x18\x82\x97\x06\x2a\x99\x28\x9b\xfe\xc0\x0f\x47\xd9\xf4\x73\x4e\x9b\x49\x93\xb8\xd1\x07\xdc\xcc\x75\xb8\x5f\x66\x49\xbc\x28\x9e\x6d\x0a\x50\x37\x75\xd3\x1a\xea\x21\xbd\x22\xf6\xe2\x5c\x68\x33\x50\x43\x5c\xca\x23\xe2\xe9\x24\x41\xbe\x02\xa9\xbb\x0c\x19\x9c\x97\xe1\x10\xdf\x1d\x61\x7b\x4b\x92\x14\x97\x3b\x4b\xa8\xf2\x30\x60\x13\x02\x48\x83\x45\x18\xf8\xad\x05\xb3\x34\xb3\x1a\x45\xa2\x76\x36\x25\xcc\x3d\x74\x5c\x7d\x4c\xb7\x0d\x2a\x83\x32\x1b\x16\xbb\xf8\x06\xe1\x57\x8f\x4e\x8f\x66\x33\x98\xc9\x49\xbf\x66\x72\x1e\x76\x38\x75\x13\x95\xfe\x96\xc9\x68\xc5\xea\x3d\x33\x15\x55\xab\x44\xde\x68\x72\x35\x8b\xa2\xb8\x8a\x85\x93\xbd\xaa\x9b\x1c\x8b\xd0\x82\x2c\xb9\x9a\x19\x6b\x7a\x0f\x77\x32\x06\xc2\x1d\x7b\x6e\x17\xd4\x22\x88\x53\x46\x82\x77\xe8\xe8\x84\x0f\xd7\xfa\x1a\x91\x9f\xd7\xde\xc5\xc1\xa2\xe8\x14\x38\x29\xb1\xa9\xb6\x6d\xea\x99\x9d\xf7\x77\x8f\xcc\xbb\xd6\x32\x31\xb3\x5e\x34\x67\xdd\xce\xb9\xd9\x75\x0c\x17\x0e\xc1\xe5\xa4\xf0\x20\xf2\xb9\x4d\x8e\x39\xc2\xc5\x6e\xdf\x4a\x74\x8c\x1d\x75\x83\xdc\xca\x5b\x16\xc6\x6d\xd2\x96\x5b\x97\x2b\xbc\xa9\x96\x10\x62\x50\x6a\x5a\x58\x7e\x6d\x3c\x13\x2c\xba\x30\xa7\xfd\x50\x8f\xce\xb4\x1c\x28\x0a\xee\x70\xbe\x87\x84\xab\x6f\x16\x85\x36\xf3\x10\x91\xa5\xdb\x6d\x4c\x09\x37\x23\x7e\x00\xc6\xd5\xca\x8b\x11\x97\x27\x22\x19\xcd\x66\x92\x36\xb5\x52\x71\x37\xbb\x81\x8c\xdd\x25\xab\x1e\x2a\x3f\x3f\x58\x05\xbc\x6c\xc5\x52\x3c\x14\xc4\x16\x46\x8d\xeb\xcd\x23\x57\x4c\x6d\x63\xdf\x79\x8d\x35\xfe\xb0\xca\xe3\x4f\x2e\xd9\xe2\x0f\x4f\x86\x82\x96\x22\x66\x68\x9a\x27\x4c\x45\x1a\x9d\xa8\x27\x9c\xef\xf4\xfe\x83\x61\x7f\x6a\x99\xb6\xdf\xcd\xe1\xec\x88\x7d\x4a\x14\x3b\xfc\xf1\x70\xe8\xc1\x16\x05\x88\x5f\x9a\x1a\x1c\x0e\xb6\x1c\x62\x0a\x68\xbe\xfa\x59\x7a\xd5\x0a\x42\xfa\x7d\x93\x75\x11\xd7\xda\xc6\xcd\xab\xbc\xdf\x57\x46\x78\xb1\x18\x90\xfe\xb0\x8f\xb0\x18\x10\x45\xfa\x60\x70\xf6\x77\x1b\xf7\xbf\x01\x17\x1a\xdf\x80\xf2\x13\xfa\x1a\x36\x81\x01\x60\x5f\xd3\x7e\x97\x27\x54\x03\x75\xea\x71\x23\x54\xe3\xa2\xa6\xa4\xd3\x09\xf4\x93\x2c\xb9\xd3\x82\x5a\x7a\xfc\x1b\x6f\xb6\xe2\xfe\xb9\x48\xb9\xf0\xe4\x9c\x7d\x83\x81\x56\x78\x5f\x11\x7d\xff\x29\xfb\x37\x99\xbf\x29\x9e\x57\x43\x67\xfe\x48\x53\x12\x76\xfe\x5b\xab\xfc\x38\xe5\x96\x1d\x38\x09\xf3\xb4\x0d\x07\xe4\x1b\x92\x76\xfe\x39\xa6\xd8\x6f\x21\x49\xb5\x30\x47\x31\x5a\x77\x6d\x5d\xd7\x82\x7f\xe5\x5a\x1d\x79\x32\x0a\x8f\xa3\xda\x8a\x96\x2b\xa7\x43\x5e\x4d\xe0\x1b\xb5\xcb\x96\x5d\x45\x67\x77\x4d\xbc\xd2\xf6\xf9\x30\xd6\x24\x4a\xf1\xb0\x36\x18\xb9\x87\xea\xd5\xeb\x8e\xa6\x46\x43\xc1\x76\xb4\x6c\x9f\xde\x24\x9c\xb8\x99\x87\xa6\x80\x95\xca\xfe\xac\x83\x81\x04\x12\x3d\xcf\x58\x44\x89\x0a\x2c\x00\x00\xb7\x48\x46\x8e\xec\x3f\xc7\x96\x63\x20\x41\xb3\xe1\x61\xc7\xe1\xfe\xa9\x0f\xac\xbe\x79\x76\x9e\x8e\xb3\xe7\xd3\x25\xd8\xe6\x24\x18\xaa\xd9\x35\x6c\x72\x70\x02\xcc\xe2\xa5\x58\xe8\x1e\x95\xed\x3d\xfa\x28\xe9\x10\xba\x90\x7d\xb1\x11\xb7\xeb\x42\xfa\x8f\x70\xd0\x7e\xde\x17\x18\x5c\xa9\x52\x05\xc4\xbd\x66\x7f\xde\xa5\x56\x8c\xcf\x3d\x7b\x6d\x92\xef\x3a\x4d\x5d\xfd\x9f\xa1\x95\xd7\x07\xb1\x04\x7d\x01\xfc\x7e\x6d\xc4\x64\xf6\xfb\x35\x11\x1f\x76\xb8\x6c\x96\xfd\x93\x97\xe9\x4f\x56\xd2\xab\x91\x18\x56\x43\x62\x4a\x87\x36\x36\x75\x21\x8c\x88\x5b\x71\x90\xb9\x5c\x2a\x5f\x71\x29\xc7\x56\xa6\x55\x92\x02\xb3\xe0\xc6\x48\x31\xfb\x5d\x28\x4e\xba\xd9\x64\xf7\x17\x85\xea\x40\x1b\x00\xcf\x62\x0f\xd1\x36\x3e\x3e\x7c\xbc\xa2\x44\x28\x01\xbb\xb3\x40\x8f\xc2\x1a\x76\xf8\x76\xd8\x31\x07\x03\x4d\x46\xf2\x24\x77\x32\x10\x93\x23\x20\x76\x75\xbf\xf4\xd8\xcb\x98\x02\x66\x0e\xba\x13\x12\x0d\xaa\x7d\x6e\xf5\xdc\x02\xd8\x24\x4e\xb5\x81\xd6\x47\x9c\x05\xe8\x90\x95\x77\x23\xb0\xad\x71\x86\x01\x0a\x6e\x7a\x13\x0f\x4a\xf4\x05\x19\x01\x0c\x37\x76\xcc\xcf\xd3\x93\xc1\xa0\x50\xc1\xcf\x0b\x3b\x04\xc3\x3b\xf4\x8b\x87\xbc\x30\xf4\x30\x27\x45\x07\x74\xd3\x76\xaa\x5e\xe1\x82\x28\x17\xdf\x92\xd1\xc9\xd1\x51\x61\x24\x93\xb2\x6a\xbc\x22\xce\x2c\x7f\x61\xe0\x93\x3a\xf4\xc5\x0c\x6f\x80\x13\x25\xfb\xbd\x21\x4b\x65\x43\x66\x95\x17\xa6\xc5\xb7\x64\xae\x08\x52\x45\x57\xc3\x5e\xd1\xdd\x92\x35\xc4\x2b\xac\xcb\xe0\x0c\x1b\x17\x1d\xd7\x54\x78\x59\xde\x14\x5c\x5b\x6c\x69\x33\xa9\xb0\x0c\xe6\xb8\xd0\xe5\xbe\xaa\x09\xb9\x2e\x1b\xb2\xa9\x33\xb6\x01\x32\x6d\x2c\x05\xa7\x2d\xd7\x16\x51\xb4\xb0\xd8\x6b\x7d\x70\xde\x89\xb5\x99\xa2\x68\xe3\x71\x71\xd7\x51\x14\x6f\x0c\x0a\x05\x75\x19\x5a\xc9\xe5\x5a\x6b\xe7\x5f\x8b\x93\x58\x4e\xd6\x76\xbb\xa9\x73\x8e\xe3\x05\xb8\x36\x9a\x93\x77\xa9\x58\x0d\xd7\x2c\x8f\x0b\x3c\x47\xf8\x96\x6c\x10\xce\xa3\xa8\xc7\xa2\x28\xbe\x25\xb7\xad\x23\xba\xb5\x23\x42\xd8\xc7\x7b\x86\x55\x5e\xae\xd8\x52\xc4\xb7\x10\xa1\x3d\x73\xc1\xd7\x1b\xa6\x88\xef\x0a\x4e\xbb\xba\x16\xed\x9d\xad\xec\xde\x51\x4e\xad\x33\xc6\x55\x0a\x5e\x1a\x39\xed\xa6\x9c\x76\x17\x6a\xb1\xba\xc6\x00\xbf\xbb\x2c\x38\xf8\x72\x53\xdc\x90\x6e\x7f\xe0\xf8\xe7\xb9\xe6\x55\xb3\xfc\x36\xcd\xd8\x22\x15\xf4\x95\xb6\x22\x8b\x03\x2c\x6d\x8e\x70\x15\x97\x4d\xdd\x4f\x2f\x41\xe2\x68\x08\x97\xf2\x68\x36\x6b\x7b\xc4\xa5\x9a\x17\xdc\x7b\x30\xe0\xca\xf0\x24\xe1\xfe\x1d\x6e\xd0\x7e\xb0\x3f\x28\x8c\xf4\x3f\x75\xd2\xff\xd2\x5c\x91\x35\x3d\x80\x0e\x58\x05\xc9\xe9\x7c\x15\x88\x1a\x0a\x5c\x49\xc0\x00\xf1\xe8\xf3\xc7\x76\x7c\x0b\x70\x71\x2c\x02\x08\xb5\xed\x62\xe7\x03\x45\x95\x12\x9e\x38\xa4\x6e\x86\x02\x32\x67\xcf\x31\x31\x37\x6a\x47\x87\x88\x57\x06\x2e\x6c\x19\x03\xfe\x01\x17\x02\x21\xd4\xf9\xf9\x01\x8f\x15\x0a\xc3\xab\xdf\x23\xa1\x33\xa0\x92\xec\xc9\x16\x02\x92\x4e\x4a\x4a\x30\x73\x52\x5b\xcd\x06\x06\xa7\x77\xdd\x77\xc1\xd4\xc9\x8e\xa6\x00\x83\xdb\x47\xd2\x82\x24\x38\xc7\x10\x0f\x3b\xec\x00\x1e\x4e\x49\x32\x3b\x29\x8e\x8e\x4e\x8c\xa7\xce\x3c\x8a\x28\xb8\xf5\x93\xe3\x95\xe3\xf6\x08\x80\x2a\x9c\x54\x09\xcd\x65\xb7\x57\x71\x85\xa6\x2c\xc9\x94\x19\x93\x9a\xbb\x49\x43\xfc\x92\xe9\x3c\x65\x92\xcd\x26\xa9\xb2\xb7\xce\xe0\xec\xa5\x07\xce\xde\x8f\x45\xd5\x5d\xb0\x45\xfe\x8d\x73\x23\x48\xf3\xa2\xba\x5e\x75\x95\x1a\xd7\x13\x70\x84\xce\xe6\x4a\x7e\x4f\x05\xe5\x65\x57\x14\xdd\x32\x15\xac\x5c\xde\x77\xd3\x2c\xeb\x16\x4b\x38\x7c\xad\xa7\x52\x39\xd0\xe8\x0f\xe8\xa0\x3f\xec\xbe\x63\x65\x09\x5c\x01\x65\x29\xdb\xed\x0f\x52\x77\x4e\x1b\xfb\x57\x4e\xad\x66\xac\x7c\x42\xf8\xfd\xbf\x66\x73\xf8\x39\xb7\xb7\xf5\xe2\xf3\xa7\xb3\x53\x15\x78\x09\x32\xf8\x66\x87\xb5\x6c\xff\xef\x36\x3a\x7c\xfb\x35\x58\xe4\x3e\x24\xcd\xf1\x99\x2a\x9e\x29\x3c\x6c\x3f\xb2\xf6\x5b\x18\x7d\x7b\x90\x2d\xcb\xf3\xd7\x5a\x7e\x1f\x31\xdb\x87\x4c\xd9\x47\xab\x19\xaa\x0d\xd9\xbd\xdd\xfb\xde\xfb\xa6\x24\xaf\xbd\xb1\xc4\x5d\x74\x62\xcd\x6f\xab\x84\xb6\xa0\x31\x96\xa7\x10\xe4\x8d\x5d\x65\xf4\xe5\xfd\xe7\x4f\x67\x41\x8d\xa9\x17\x53\x5e\x1e\x67\x41\x46\x98\x5b\x67\x1a\x27\xe2\x39\x3f\x19\x0c\x84\xd1\xcd\x67\x89\x50\x36\xed\x06\x6f\x59\x92\x24\xd4\x45\x0c\xf0\x43\x2d\x18\x99\xcb\x7b\x76\xf9\x35\x68\xe4\x1c\x25\x42\x99\x08\x94\x6a\x88\xab\x16\x18\x3f\xc7\x4b\x9c\xd9\x2b\x7f\x41\x56\x9a\xb2\x5b\x4c\xcb\x78\x81\x26\xab\x50\xd6\xb1\x6a\x11\x74\x94\xc6\x57\x41\x00\x2b\xc5\xac\x53\x6c\xb7\xab\x06\x9e\xb0\x41\xd3\x58\x53\xb8\x41\x6e\xb2\x42\x93\x7a\xd2\xc6\xec\xf8\x2a\x0e\x8d\x46\x03\xa4\x1e\xbc\xd2\xc0\x11\x77\x6b\x76\x66\xa5\xc6\xd4\xd9\xdb\x59\xf6\x98\x95\xfb\xee\x37\x47\x84\x3b\x56\x5f\xb1\xfb\xc5\xc5\xb6\xbd\x37\x9e\x94\x3a\x8a\x9c\x94\x7a\xd4\xd1\x49\x62\xbb\x0d\x3e\x8c\x35\xd7\x39\x74\x8b\x83\xf3\x20\x41\x71\xf6\xb8\x1b\x41\xbe\x77\x04\x8c\x8c\x70\xe1\x2c\x57\xd9\xf3\xe2\x64\x30\x60\xc8\xda\x7e\x2a\xdf\x39\x34\x49\xd5\x68\x52\x37\x9a\x9d\x1d\xcd\x2d\xb8\xab\xdf\xa3\x08\x64\xe4\x2c\x59\x5a\x8a\x16\x2b\x2a\x4d\xb1\xfa\x3a\x41\x45\xb6\x38\x6f\x24\xee\x51\x43\xd7\x7e\x22\x75\x98\x54\xc7\xf5\x0b\x74\x8c\xb4\xc1\xa2\xdf\x7a\x4b\x69\x63\x99\x62\x8c\xd3\xb2\xe2\xda\x12\xdd\xf6\x9c\x28\xf7\x04\x36\x42\x88\xfe\x5a\x52\x11\x2b\xc5\x22\xde\xc6\x43\xe4\x35\x67\x07\x86\x49\xe9\x4e\xdf\x3a\xdd\xc4\x14\xef\xc5\xe3\xec\xbd\x8c\x73\xd2\x1b\x9d\xf0\x6f\xc9\x28\x8a\xf2\x93\xa3\x23\x67\x43\x68\x50\x37\x43\xec\x51\xe5\xac\x1c\x3f\xa4\xe5\xa4\xd8\xc9\x0d\xa2\x5c\xb7\x30\xf0\x8f\xb6\xdd\xf6\x83\x17\xe5\xb9\xc6\xf7\xd0\x73\xf4\x67\xb4\xdb\xa1\x1d\xe6\x87\x7c\x62\x75\xeb\xe3\xb0\xc0\x86\x42\x51\xef\xb0\x79\x2b\xd7\xc4\x60\x1c\x9f\xd1\xd9\x21\x32\xee\x19\xdd\x39\x93\x8c\x5c\x02\xfd\x9e\xd0\x0c\xef\xfa\xae\x08\x50\xc1\xfa\x47\x0d\xad\xe5\x0a\x5e\xaa\xbb\xa8\xdd\xbc\xa4\x68\xda\x25\x8e\xc2\xc1\x68\x5b\x13\x96\x03\x2b\xdd\x75\xd3\xf4\xd1\xc7\xee\x43\x00\x54\x20\x5c\x24\x57\xb3\x9a\x2d\x3b\x54\x27\x8a\x4f\x3a\xd0\x16\x14\x8c\x0b\x9c\xfb\x62\x5e\xcf\x6a\x42\x56\x62\x6d\x89\x8a\xd0\xd6\xa7\x65\x91\xd8\xf0\x52\xc9\x84\x3f\x7f\x3a\x8b\x0b\x70\x49\x39\x5c\xb0\x85\x9b\x98\x98\x35\x4f\x90\xcc\x24\x0a\xdb\x13\x7f\x44\xbd\x11\x32\xac\x51\xb7\x2e\x05\x18\x4f\x28\xb2\x2c\x30\xc7\x9a\x17\xeb\x4d\x46\x81\x1b\x87\x0b\xb9\x29\x9a\xd6\x1b\x75\x9f\xec\xfc\x3e\xd8\x5f\xd7\x54\x5c\x34\x2d\x3e\x40\x1f\xcc\x3a\x5e\xf4\x50\x39\xbd\xb6\xd4\xac\xae\x31\x26\x42\x3b\xd9\xfa\x01\x77\x50\xb0\x33\xde\x1a\x3c\xca\x88\x77\x8c\xab\xb2\xf7\xf4\x0e\xa0\x92\x06\xae\xda\xe9\xb7\x15\xdb\x70\xcd\x05\x3a\x8f\x7d\xcb\xb9\x70\xdb\x38\x8c\xd3\xe7\xcf\x04\xbd\x7a\x91\x2f\x20\x56\xde\xbf\xb7\x73\x0d\xa6\x70\xff\xf3\xa7\x33\x85\x1a\x83\xe5\x51\x5e\x88\xae\xc3\x3e\xfb\x46\x0d\xcd\x9b\x4d\xe1\xa6\xb1\x63\xb7\x55\x5d\x97\x44\xa9\x6e\xd4\x66\x80\x25\x57\x33\xb9\x65\xda\xf5\x73\x01\x4c\xd4\x47\x11\x82\x4a\xb7\x1b\x42\x0c\x2f\x76\xd7\x07\xb0\xad\xe6\xda\x2d\xae\xaf\xb8\xb0\x53\xd5\xb7\xec\x9f\x03\x3a\x7d\x98\x11\xed\xec\xaf\x0e\x41\x24\x84\x9d\xb6\x7e\x49\xee\x67\x13\xaf\x3f\x29\xa9\xf5\xb5\xc0\x02\xe1\x92\x6c\xe2\x00\xb8\xe0\x34\xdc\x1e\x6c\x19\x9f\xc5\xa9\x3f\x7b\x85\xf7\x82\x00\x4f\x28\x8d\x3b\xb1\x3a\x8f\xc0\x3b\xcf\xa5\x56\x42\x30\x73\x5e\xb5\x41\x34\xeb\x30\xad\x75\x40\xdb\xed\x5e\x38\x29\xe9\x3a\x8b\x8b\x3e\x0a\x4d\x5b\x61\x5b\x86\x53\x64\x2c\x3b\x44\xb5\x79\xa5\x79\x86\x71\xba\x07\xe2\x65\xa8\x1d\x0b\xb0\x3e\xdf\x48\x70\xf2\x53\x7c\x08\x75\x40\xb8\xa1\x22\xf8\xaf\x20\x7b\x96\xa1\x62\x14\x18\xcd\x73\xa8\x71\xf8\x46\x65\x32\x26\xbf\xee\x19\xb5\x60\x54\x07\x36\x41\x14\xc5\xbc\x65\x39\x51\xfb\x25\xc2\xed\x44\xd7\x67\x61\xcf\x0d\xea\xe4\x2f\x7c\x4f\x41\xc2\x31\xf7\xcc\x76\x1f\xbb\x7d\x72\x7b\x4f\x7a\x1b\x94\x83\x21\x8f\xb9\x2d\xce\xa9\x10\x19\xf5\xcd\x21\x75\xa5\xdd\xbb\x15\xcd\xfd\x74\x56\x76\x4d\x6d\x0b\x79\xa1\x30\xcd\x62\x53\xe1\xc1\x4f\xbf\x30\x08\x56\x64\xb9\xda\x29\x36\x83\xd8\x87\x4e\xa4\x10\x6f\x43\x42\x89\x45\xd1\x8a\xa2\x38\x85\xb1\xdf\x29\xc7\x06\x07\xdf\xbf\xd3\x52\x07\xdc\xcc\xf9\x5c\x99\x42\xab\x15\xd8\xb2\x2c\x8a\x58\x43\x19\x36\xf0\xa1\x13\x45\xb1\xc4\xef\x81\x73\x13\x52\x3f\xd6\xea\xc2\xda\x5c\xe1\xfe\x67\x89\x28\xb0\xfc\x5a\x19\x47\x74\x8d\x5a\xad\xf6\x70\xe8\x20\x9c\x6f\x8b\xae\xee\xa6\xd7\xaa\x86\x34\x49\x3d\xd1\x03\x30\x12\xf5\x59\x4c\x66\x58\x3b\x96\xa9\x39\x11\x1c\xa1\x69\x6c\xda\x7f\x21\x04\x5d\x6f\xa0\x07\xf2\x8a\xf2\x96\x5e\x14\x20\x10\xc7\xb5\x9b\x10\x4d\xda\xca\xee\x2d\xf7\xba\x81\x1c\x14\xa8\x06\xaa\x5a\x8c\x4b\xc1\x34\x8f\xb7\x6c\xe4\x16\xcc\x65\x8f\x0d\x9a\xe1\xb5\x02\xdb\x0a\x54\x52\xca\x6e\x91\x77\x17\x10\x5e\x0b\x02\x97\x29\x86\xd5\x89\xd9\xe0\xe1\x30\x5c\xf0\x0e\xe1\x4f\x7d\xa8\x33\xe2\x43\x52\x60\x8e\x50\xcf\x70\x3e\x6e\x5d\x3c\xd2\x4e\x3f\x35\xc5\xc8\x77\x31\x45\x72\xb2\x15\x45\xe5\xf0\x49\xa5\xd6\xde\xb4\x1e\x3e\x48\xaf\x35\x4c\x25\x5b\x7a\xd0\x1b\xe1\x7e\x80\xa5\xf6\x71\xa2\xed\xe3\x6b\xd8\x6b\x7b\x05\x16\x20\x2a\x40\x48\xb1\xa8\xe3\xb0\xee\xa6\x71\xf0\x80\x22\xac\xb7\x93\xbf\x78\x17\x9f\x5e\xbc\x3f\x7f\x7b\xf1\xf6\xc3\xfb\xee\xab\x0f\xef\x3e\x9e\x9d\x5e\x9c\x0e\xfb\x08\x07\x67\xd3\xd8\x49\x29\x34\x24\x55\x34\x7d\x9c\xfa\xa6\x83\x05\x72\x9c\xf6\xc0\x36\xb4\x13\x2a\x5c\xeb\xd8\xec\x29\xa6\x9e\xf3\x78\xd7\x04\xa6\xc6\x36\x7a\xa7\x78\x48\x29\xa0\x39\xc1\xfa\xb7\xa3\x37\x4e\x25\x7a\x93\x72\x01\xb3\x07\x13\x56\xfa\xb8\x94\xf6\x0b\xa1\x6e\xbb\x62\x48\xbf\x30\x41\x17\xfe\xa5\xc7\x07\x03\xa4\xe2\x7a\xc5\xcc\x66\x90\xf7\x99\xea\x9e\x15\xdb\xfb\x40\xca\x83\x58\x4e\x60\xf7\x49\x12\xce\x12\x80\x85\x29\x72\x0e\x7c\x65\x6c\x06\x4d\xc8\x7c\xf2\x3f\x16\x28\x00\x47\x96\x5b\xe0\x86\xd0\xf1\x18\x0b\xd4\xe7\xd2\x37\xf9\x04\xc5\xb0\xca\x35\x7b\xc0\xfa\xff\x83\x53\xec\xcd\x00\xd0\xf7\xf5\x09\xb0\xbd\x83\x39\x80\x2c\x6e\x0a\x3c\xe0\xfe\x35\xc3\x1d\x63\x11\xce\xb9\x3a\x5e\x0b\xbd\x98\xf5\xa6\xdd\xbe\xd5\x51\xa3\x3e\xf0\xcf\xaa\x40\x2c\x71\x85\xb0\x70\xc2\x67\xb8\xd9\x00\x55\x05\x7f\x63\xcd\xba\x14\x54\x39\x72\xe4\x57\x85\x1e\xd4\x3e\xf4\xa6\x3d\xdd\xc7\x98\x09\x10\x9b\x6a\xe7\x01\xa5\xaf\xa7\xaf\xe5\xe1\x0c\xc8\x67\x0d\x9d\x5b\xaf\xf8\x3a\x88\x36\x26\x3a\x6d\x5c\x21\xa1\xbc\x7f\x35\x40\x14\x0d\x41\x47\xe0\xa5\xce\x36\xd4\xc7\x89\x30\xbe\xb1\xb0\xae\xc9\x78\x01\x33\x80\x6b\x3f\x2b\x0a\x86\xd0\x3a\xf5\xfb\xf9\x25\x5a\x26\x97\x12\xe1\xc4\xb8\x8e\xf9\xcc\x00\x04\xf1\x60\x2f\xc2\x0a\xc2\x49\x92\x0f\x71\x0e\x32\xd6\xdc\xdd\x12\x1e\x53\xba\x50\x9a\x3d\x4e\x01\xd9\xab\x46\x27\xda\xa1\xcb\x1a\xeb\x69\x71\x70\x82\x01\x38\xc9\x6c\xf0\x10\xa7\xf8\x70\xd3\x4e\x60\x51\x95\x92\xa6\xb3\x72\x00\x67\x2a\xca\xa6\xa2\xa6\x4e\xdf\xca\x62\x9e\xc8\x89\xc0\xbd\x91\x9c\xde\x1a\xd0\x3b\x00\x23\x69\x43\xb7\xcc\xbd\x96\xe4\x21\x3c\x62\x12\xc5\x53\x40\x10\x9e\xd4\xf2\xc9\x47\x0b\x5a\xe4\x0b\x80\x88\x49\x32\xdb\xe1\xca\xb8\x95\x53\x5e\x03\xd3\xd6\xc0\x2f\x19\x29\x92\x7c\x86\xe7\x24\x4d\xf2\x59\x27\x8b\x22\xed\x57\x87\x10\x32\x57\x4f\xdb\x6d\xcc\x01\xf1\xe7\xd3\xb8\xb4\x27\x1a\x26\x6c\x8e\x70\x16\x45\xa5\x81\xdd\x46\x1c\x9e\x21\x34\xa9\xb6\xdb\xcc\xac\x55\x4f\xd6\xa5\x9f\xa7\x71\xa5\x34\xce\x6b\xb0\x47\xd7\x87\x26\xa5\x07\x29\x8d\x80\x4f\x0d\xc2\x0c\x00\x33\xe7\x66\xce\x8c\xa5\xd1\x07\x39\x2a\x8b\x70\x69\xde\x29\x69\xb4\xaa\x41\x31\xd6\x19\x86\x9c\xde\x52\x5e\x42\x8a\x5c\x48\x87\x7f\xb4\xea\xd4\x50\xe7\xa3\x03\xf8\xe0\x7e\x98\xc1\x60\x29\xeb\x9a\x32\x80\xae\x16\xa0\x6b\x4e\x5c\xfa\x49\xaa\xf4\x46\x6c\xc4\xc3\x3c\x49\x67\x9d\x2a\x2e\xb0\x53\x0f\x37\xfa\xb5\x0d\x31\x0f\xd8\x07\x29\xd3\x1a\xd5\x95\x22\x54\x24\x6f\xf3\x30\xb6\xdd\x06\xda\xe6\xda\xb3\x77\x9d\xd7\x6a\xb8\x26\x60\xb8\x8f\xe7\x84\x1e\x72\x8c\x85\x97\xc4\xf7\x6d\xc5\xa3\xa8\x47\x0f\x3a\xb4\xc2\x2b\x42\xeb\x64\x66\xe8\x1f\x8b\xe3\x45\xbd\xce\xb6\x2a\x1b\x3e\xb0\x3a\xf3\xed\x76\xb9\xdd\xae\xb6\xdb\xc5\x54\x8f\x09\x72\x48\x6c\x32\xd3\xe2\x4b\x87\x5f\x66\xa0\x44\xc0\xf7\x5e\x06\x0d\x2f\x48\x76\xa9\x95\xa7\x45\x51\xa7\x8e\x72\xa4\x3c\xe9\x10\x02\x3e\xee\xa3\x48\x87\x28\x95\x2f\x9a\xef\x65\x84\x69\xe1\x1d\x00\x80\x7f\x5f\x37\x24\xf0\xc7\x0c\xf3\x99\x0a\xa8\xc1\xf7\x38\x8e\xf3\xad\xfb\x61\x97\x8d\x40\xb7\xc2\x84\x0f\x03\x17\x5c\xd6\x5f\x3c\x93\xdb\xac\x48\xaa\xe1\x0d\xbd\x9f\x91\x4a\xc7\xc6\xe3\xda\xe1\x65\x35\xd4\x2d\xec\x6b\xae\x56\xd0\xea\x50\x2a\x26\x6c\xc8\x27\xd8\xaf\x5b\xdc\xa4\xf6\x56\xda\xcd\x92\xc1\xab\xf9\x41\x4c\xdb\x5c\x7c\x75\xf1\x4f\xb0\xc3\x61\x81\x4d\x95\x35\x0f\x11\x3e\xb5\x4b\xa3\xc8\xd7\x06\xb1\x1c\x57\x5c\x37\x89\x6f\x6d\x13\x01\x1b\x92\x6a\x17\x87\xfe\xc1\x57\x31\x1c\x77\x6a\x62\xda\x3a\xa1\x5a\xfa\xbd\xfe\x36\x1e\x19\x02\x6b\x1d\x02\x98\x98\xe0\x5c\x76\x58\x14\x24\xa0\x03\xbc\xee\xb6\x33\x3e\xf6\xdf\x6c\x78\x1f\x11\x5f\x03\xe5\x9c\x8c\x94\x73\xd5\x98\x91\x54\x22\x7c\x71\x78\x29\x26\x7c\x86\xe4\x75\xae\x35\x67\x0a\xc5\xf0\x02\x24\xb2\xf0\xb5\x83\x9b\xe7\x28\xc5\xc6\xa6\x34\x20\xed\xc4\x6c\x0f\xeb\xcf\x78\xe8\x0a\x4b\xc4\x29\x0e\xee\x68\x85\x02\xaa\xdb\xa4\xee\x48\x0a\xc6\x1a\x45\x8b\x76\x0a\xd8\xdc\x35\xde\x1d\xd3\x64\xbe\x1b\xb5\xe5\x86\x71\x8a\x6f\x1e\xaa\xc9\x14\xf5\x1f\x23\xad\x53\xbf\x57\xa2\xa9\x55\x75\x41\x21\xe1\xa0\x14\x53\x09\xe1\xe4\xca\x86\x17\x9e\xb5\x29\x38\x10\x15\x42\xd3\xcb\x1e\x6f\x2b\xa6\xc8\x78\xbf\xd2\x16\x9f\xbe\x48\xe6\xa2\xd8\x13\x3b\xe4\xdf\xe5\x9a\x78\x9f\x97\x9d\x69\xac\x43\x7b\xb5\xf6\xd9\x72\x6b\x7a\x63\xa4\xaf\x88\x70\x4c\xe0\xdf\x8e\x83\x07\x30\xbe\xa6\x0b\x96\x0a\xef\xc6\xf9\x6f\x1a\x54\xb7\xb5\x5f\x2a\x6c\xa8\xdc\x9b\x4b\x4e\xcb\xbd\xb1\xd6\x1a\xa2\x06\x4e\xc4\x54\xd4\xc4\x0a\x79\xcd\x09\xa4\x65\xe0\xc1\x8a\xe7\xc9\xc8\xb2\x08\x0c\x4f\x0c\x0c\x30\x58\x7e\xdd\x4d\xbb\xba\x03\x81\x35\x86\x11\xf4\xb4\x61\x41\x1e\xbb\x8c\x61\x8a\x8d\x1d\x4d\x0b\x09\xb3\xdd\x86\x62\x2e\x03\x64\x5a\x58\x69\x85\xef\x9d\x4d\x84\x08\x85\xf0\x5d\xb4\xa5\xd6\x45\x9b\xef\x9f\x2d\x55\x33\x09\x45\x7e\x60\x62\xb5\x57\x26\xbd\x67\xc7\xdb\xe6\x02\xb9\xd3\x7f\xf1\xee\x70\xaa\x16\x19\xd8\xca\x11\x96\x40\xd4\x33\x96\x8c\x67\x5a\x7b\xba\xce\x96\x2c\xd0\x21\x51\x17\x9e\x4b\xe4\x61\x49\x46\x78\x45\xca\xa6\xed\xc2\xc9\xf2\xf9\xea\x64\x30\x58\xa2\x87\x2a\x9e\x07\x8a\xb1\xc9\x72\xe6\x59\x80\xb9\x00\x92\xf3\x9a\xae\xfb\x5e\x54\x93\xe2\x39\xcc\x1c\x74\x6e\xbf\x20\xad\x75\x4c\xc2\x86\xb6\xf9\x4a\x51\x44\x72\x3f\xd3\xec\x7d\xc5\xd5\xb1\xda\x14\xc1\xd4\xe4\x4a\x67\x9d\x5b\x16\x64\x4b\xb7\x42\xd3\x86\xdc\xaf\x15\xc2\x19\x79\x67\x0a\x22\x99\x37\x44\x40\x0a\xef\x6f\xe1\x6d\x37\xd1\x72\x5f\x91\xaa\x44\x10\x00\x56\x6e\x00\x46\x32\x1b\xbc\xee\x39\x8b\xa2\x34\x99\x5b\x89\x11\x3d\x19\x0c\xe6\xe8\x84\x2d\xe3\x39\x21\x36\x5f\xd8\xfa\x52\xdd\x14\x9d\xa5\xcf\xbc\x4d\xad\x53\xb9\xf9\xc0\x04\xdd\xf1\x12\xb4\xee\xd6\x59\xec\x2d\x47\xe9\x96\xa3\x61\x04\xb0\xc4\x19\x2e\x75\x50\xe4\xc0\x8c\xcc\xc7\xe7\x54\xec\xb2\xed\xb6\x67\x3a\xd8\x55\x01\x07\x17\xe4\x61\xd7\xa9\xe2\x05\xe6\x46\xbf\x3c\xa0\x74\xec\x29\xb8\x95\x78\xf9\x1a\xad\xeb\x78\xf9\x2d\x8a\xa2\x45\x5b\x62\xbc\x48\x6e\x67\x64\x9d\xdc\x3a\xba\x71\x15\x45\xbd\x0d\x34\xe5\x2f\xfc\x7f\xf1\x31\x76\x47\x38\x80\xf7\xe1\xb6\x8b\x29\x86\xd3\x0d\xb1\xaa\xd4\xd5\x5a\x73\x86\xf8\x5f\xd2\xb7\xaf\xe7\xaa\x8f\xb1\xba\x2b\xb5\x29\x92\x09\xb1\xf1\xab\x8e\x3a\x02\xd1\x43\xfc\x80\x23\x79\xb1\xa0\x47\xeb\x62\x51\x65\xb4\x16\x6b\xa4\x1e\x51\xa4\x16\x4d\xc4\x72\xa2\x02\x34\xea\x52\x4b\xf6\x5e\xa5\xca\x3f\xa8\x13\x61\x6c\xb7\x71\x6b\x06\x88\xa2\x23\x76\x74\x98\x96\xe9\x86\xfc\x1d\xd3\x61\x9a\x65\xe4\x93\xfa\x57\x92\xc3\x05\xf9\x59\x62\x83\xe9\x9c\x92\xd7\x18\x9c\xb7\xac\xc8\x5b\xfd\x60\x72\xbc\x01\x7f\x14\xc0\x63\x22\xbf\x62\x18\x38\xe5\xe4\x7b\x78\x92\x63\x64\xcb\x7b\xf2\x0a\x83\xb2\xeb\x92\x5d\x57\x9c\x12\x89\x61\x16\x39\xd9\x50\xf9\xbf\x5c\x92\x35\x75\x2e\x2d\xc8\x0f\xd8\x48\x46\xc8\x2f\x58\x05\xb3\xf9\x8c\xe9\x70\xc9\x32\x41\x39\xf9\x4e\xf6\xae\xbc\xcf\x25\x51\x0e\xcb\x71\x01\x7e\x5f\x09\x1d\x5a\x47\x03\xc3\x79\x5a\x8a\xf6\x18\x27\x8c\x3c\xac\xd9\x17\x96\x4f\x5a\x5d\xbf\x14\x1a\x88\x16\xb9\xee\x97\x7a\x5b\x2e\xb1\x15\x22\x10\x7f\x3b\xe0\xb6\x39\xd5\x30\x80\xee\x70\xe1\x37\x63\x82\xdc\x5b\x2f\x16\x36\xcc\xbd\x1f\xbd\xf1\xe2\x7e\x43\xb5\x0a\xb7\xa9\x51\x05\x83\xbf\xa2\xdd\xb4\x6b\xcb\x1a\x81\x55\xae\x7d\x12\x31\xc2\x21\x16\x24\x84\x48\x90\x8f\x24\x99\x21\x7c\xa4\xa2\xc6\x99\xc8\x69\x02\xa8\x0a\xcd\xf5\xdb\xe1\x62\xb9\x9c\xb4\xde\x2f\xaa\xce\x8e\xd3\x44\x50\x55\x82\x0a\x9c\xab\xcb\x86\x6c\x63\x3a\xd0\x6a\x5c\xe0\xb1\x76\xc8\xac\x7b\xb0\xc3\x7a\x9e\x26\xf5\xdd\xac\x51\x23\xd5\x92\x8e\x62\xc9\x90\xef\x9d\xaf\x16\x78\x31\x1e\x61\x96\x14\x33\x04\x7e\x00\x77\xbb\x4e\xb8\xf6\x4c\xab\x9f\x3d\x30\xd0\xa6\x86\x90\x48\xbd\xf1\xce\x37\x12\x35\xf3\x7f\xec\x93\x93\xe1\x6d\xd0\x2d\x64\x4f\xe4\x0f\x11\x3b\x36\x84\x7d\x12\x17\x48\x5f\x50\xc9\xac\x16\xd4\x45\x8e\x43\x4e\xb0\x8e\x14\x0c\x81\xbd\x27\x14\x6f\xd2\xfb\xac\x48\x17\x13\xf0\xc4\x21\x86\x97\xd7\x15\x5b\xfc\x8d\xde\x63\xb6\x90\x6f\x6c\x81\xa9\xec\xf8\x7b\x95\x79\x41\x45\xca\x32\xf9\x81\xd3\xb2\xca\x04\x06\x4f\x7e\x6f\x17\x13\x2e\x49\x59\x99\x3b\x93\xf0\x40\x66\x80\x07\x2c\xd8\x9a\x9e\x8b\x74\xbd\x99\xbc\x96\xa4\x56\x5e\xdc\xc5\x08\x83\x4c\x6b\x52\x24\x7d\x37\xfc\xa3\x3b\x26\x56\x47\xa0\xa1\xde\x9f\x4d\x9d\x61\x80\xa9\x48\xbb\x99\xdb\xa1\x28\x2a\xa9\xb8\x60\x6b\x5a\x54\xc2\xd7\x37\x32\x6b\x41\xc9\xe8\x84\xba\xd8\x4e\xd4\xf0\x50\x05\x81\x88\x9b\x9c\x88\xa1\x1e\x71\x87\x0f\xe5\x58\x09\x1f\xde\xd0\xfb\x01\x1f\xb2\x05\xd6\xb1\x9d\xbe\xf3\x93\xf5\x08\x31\x57\xb6\x97\xc0\x61\x31\x1a\xf5\x90\xa2\xde\x10\x2e\xac\xdc\x4e\x68\x07\x4c\xa6\x25\xb4\x73\x11\x88\x77\xf8\x4f\xa3\x30\x6c\x8e\x51\x3b\x69\xf1\x22\x03\xda\xe2\xbe\xca\xbd\xb2\x79\x33\xeb\x4f\x3b\x0e\xc3\x92\xe9\xf1\x1c\x0b\x7b\x21\xad\x41\xb1\x02\x73\x3f\xf2\x0d\x7a\xd8\x29\xfc\x41\x9f\xf9\x15\x19\xe3\x05\x39\x76\x1b\x65\xe3\xe2\xe4\x87\xcd\x06\xdd\x88\x22\x99\x74\x5a\xeb\x9c\x85\x87\x84\x64\xd3\x9a\xa0\x65\x78\xa9\x28\x5c\x42\x56\x53\xf0\x08\x6e\x36\x10\x9a\x78\xdf\x16\x53\xb9\xde\xc6\x46\x15\x34\x42\xae\x83\xcc\x68\x72\x15\x1b\x59\xa2\xbb\x71\x20\xd6\x32\x21\x1c\x6a\xe6\x68\xb2\xd6\x24\x60\x8b\x27\x89\x6b\xed\x3a\x6e\x07\xff\x93\x16\x17\x3d\x7c\x5a\x3f\xfb\x85\x02\xdf\x0d\xab\x73\x08\x0c\xc1\xda\x0c\x75\xf9\xfd\x03\xb5\x11\x5d\x70\x6e\x64\x63\xcc\x69\x61\xee\x76\x31\xc7\x22\x18\x42\xbe\xdd\xc6\x2a\xc0\x45\x73\x2c\xb5\xc1\xd8\xac\x6a\x38\xf2\x06\x37\xc7\xa4\xd3\xcb\xa3\x88\x41\xb0\x56\xfd\x1d\x0c\xd4\xa9\x1a\xb1\xac\x51\x3b\x64\xb7\x4b\xbe\x76\x3b\x50\x6e\x2f\xa4\xbe\xdb\x30\x47\x4c\x4f\x4c\x9c\x13\x81\x74\xc4\x72\x89\x35\x9b\xbd\xaa\x44\xba\xfe\x2d\x41\x98\x5f\x87\x02\xd2\x20\x47\x95\x67\x4f\xac\x68\xae\xa7\xa3\x08\xfd\x7b\xc8\xbe\x16\x68\x67\x76\x20\x6c\xd4\x1c\xb3\x5a\x4c\x18\x6a\xf7\x87\xdc\x7d\xe6\x39\xa6\x76\x8b\xe0\xcb\x20\x90\xcc\xbd\xf1\x52\x65\x37\xd9\x52\xd2\xc7\x26\x3b\x11\xd8\x7e\x5a\x61\x20\x9f\x87\x97\x65\x75\x55\xce\x39\xbb\x72\x11\x84\xa7\xc5\xd0\x81\xaa\x28\xaa\xe4\xad\x98\x2d\x59\x96\xd1\x45\x1f\x53\x34\x31\x5b\xe4\x12\x53\xdf\xce\xfc\x7a\x5f\xe3\xea\x75\x81\xfd\x7e\x98\x3a\x6e\xc3\x3a\xae\xea\x92\xbe\xb0\x83\x60\x99\xa7\x0d\x6a\x69\xed\xec\xb0\x24\x9d\x11\x21\xff\x06\xab\x19\xe1\xf0\xb0\x98\x91\x1c\xc6\x99\xc2\xfc\x69\x76\x98\xdf\x7f\xd7\xf4\x65\x80\xac\xf9\x8d\x72\x62\xca\x42\xc8\xca\xda\xe4\x70\x38\xe6\xde\x14\x4d\xfa\x0a\x3d\x52\xb3\x85\x47\xbe\x66\x9d\xe3\xd1\x63\x06\xaa\x92\xe6\x66\x51\xd1\x76\x85\x8b\xb6\x4b\x9e\xa2\x9c\x88\xa4\x9c\x61\x26\xff\x06\x7c\x86\xf3\xe9\x5d\xac\x98\x99\x29\x9a\xb0\x38\x95\x58\x6c\xcb\xf2\x91\x91\x17\xa9\xea\xae\x41\x04\xe2\x94\xb4\x01\x02\x5c\x12\x65\x7a\x91\x22\xb9\x7b\x19\xe1\x71\xee\x89\xb9\x4b\x15\x17\xb6\x52\x18\x04\x23\x79\xc7\x40\xb2\x1e\x21\x4b\x40\x6c\x08\x11\xd3\xeb\x58\xe0\x1a\xa2\xf4\xc2\xa8\xb4\x95\xdd\xb9\xc1\x99\xe6\x69\xae\x14\x6f\x35\x31\x91\x8a\x6e\x99\xae\xa9\xc9\x39\xec\x23\x34\xe9\xc1\xed\x0d\x35\x16\x68\x92\x4e\xd7\xb1\xc0\x0c\x4d\x0c\x54\xb5\x2f\x8b\x28\xba\x86\x37\x14\x78\xb5\xf6\xe3\x74\x2a\xee\x8d\x5d\xc1\x5c\x56\x11\x45\x3d\xba\xdd\xe6\xaa\x02\x6b\x64\xd2\x6d\x6c\xfd\xf9\x2a\x65\xb9\x89\x96\xa7\xc2\x66\xc0\xaf\x22\x3c\x82\x2d\xe8\xe9\x0e\x2b\x1a\xc4\xdd\x16\xf1\x1c\x73\xcb\x1c\xd2\x6b\xde\xb6\x99\x6a\xcd\x31\x49\xff\x10\xb2\x44\x57\x8e\x1b\xe5\x43\x9a\x92\xc0\x58\xa6\x74\x22\x3a\x0d\xc0\x6d\x01\xce\x5d\x2c\xf7\x4c\x89\x53\x79\x15\x58\x98\x7c\x0b\x4e\xba\xf7\x98\xae\x84\x3e\x6c\x8d\x22\xcf\xab\xc0\x1c\x4e\x69\xd3\x18\xaf\x71\x10\xc7\x62\x6e\x15\xf7\x2f\x41\x4f\xe7\x43\xfe\x49\x51\x0a\xda\x47\xc3\x25\x2b\x3f\x97\x2c\xbf\x56\x84\xae\x22\x07\x08\x21\x37\x8d\xaf\x9a\x8b\xee\xdc\xeb\xc9\x6b\xd6\xe4\xca\x99\x50\x04\xbc\xd6\xbb\x33\xf8\xe2\x41\x07\xb7\x50\xac\x5d\xd8\xa3\xcf\xcd\x76\xab\x7d\xfb\xeb\x63\x64\xfa\xcc\xe9\x3a\x65\x39\xcb\xaf\xbd\x14\x80\x62\x9e\xdf\x7c\x33\x6a\x0a\x86\x9b\x4a\x1d\x1d\x9c\xf1\xd9\x84\x3d\x64\xb0\xd7\xa0\xd1\x6c\xd7\x53\x0a\x11\xaa\x79\x00\x4c\x0d\x1d\xac\xdb\x4a\xe7\xab\xd3\x5c\xf0\xfb\x98\x26\xf9\x0c\xe7\x20\xe3\x31\x8c\x4a\x3a\xbf\x79\x53\x65\x00\x92\xc0\xb6\x5e\xf5\xa6\x91\xee\xaf\x3f\x5b\xc6\x23\x62\xdd\xdd\x99\x41\x07\x6e\x09\xcd\xce\xbd\x8f\x83\x9e\x52\x54\x9b\x18\x25\xa3\x91\x10\x02\x68\xd0\x77\xe9\xfd\x15\xbd\x58\xd1\x3c\xbd\xca\x9a\x62\x4b\xff\x8c\xb6\xec\x34\x6b\x17\xd3\xdc\x1e\x3e\x4c\xeb\x8d\x3a\x0a\x6e\x51\xff\xd6\xad\xd0\x43\x6a\x20\x17\x5c\xef\x1a\x91\x73\xa0\x0b\xd5\xef\x11\x0d\x2c\x14\xf1\xfc\x42\xd8\x0b\x0c\x0b\x77\x81\x61\xee\x50\x86\x16\x92\x91\xa1\x7a\x25\x2b\x59\xda\x2f\xb5\xe7\x38\x58\x39\x3b\xbd\xeb\xe6\xf1\x1c\x75\x00\x0a\xa6\xd3\xeb\xb8\x94\x50\x30\xde\xc4\x25\x96\x48\x8e\xee\xe5\x1d\x33\x8c\x80\x17\x22\x06\x53\x85\x20\xe8\x4e\xf8\x5d\xd5\xd9\x82\x26\x0a\xed\x57\x51\xe2\x21\x7b\x0b\xfb\xde\x20\x4d\x4c\x1d\xb7\x05\x1b\x8b\xaa\x7d\x27\xb6\xa2\xf9\x53\x7f\x76\x82\xbd\x61\xb0\x36\x9b\xe1\x13\x4c\xb7\x37\x81\xde\xae\x5a\xbc\xd8\xcb\xea\x0c\x0e\x52\x87\x85\x18\x49\x0b\x7c\x52\xd6\xe1\x8b\xe9\x75\xcc\x64\xf3\x71\xb3\x7d\x53\x3f\xde\x7b\xc0\x90\xed\x9b\x29\xb4\xcf\xab\x8d\x3b\x5c\x47\x47\xc1\xc1\x49\xc4\x8c\x70\xa8\xc5\x9f\xfb\x03\x07\xa6\x23\xf1\xa5\x3a\x81\xe0\x2b\xa0\xb7\x6c\xc1\xdd\xa3\x39\x17\x26\x67\x23\xe2\xc4\xb9\x25\x98\x1e\x1d\x87\xba\xa7\x1f\x60\xe2\x27\x3e\x02\x09\x22\xf9\x09\xdf\x4d\xcc\x37\x87\x2d\x71\x9a\x96\x45\x3e\xe1\xca\x29\xd9\x07\x02\x4c\xb9\xcb\xfe\xc0\x11\xd3\x83\xfe\x51\x1f\xbf\xd0\xfe\xb9\xf6\x79\x60\xf7\x7a\xc8\x16\xe4\x85\x89\xb7\xa5\x68\x06\x0b\xc4\x9b\xd6\x97\x06\x7c\x05\x69\x1e\x7e\x45\x92\x19\x6e\x5e\xd8\x60\x46\xae\x2f\x6c\x84\xe7\xda\xc9\x59\x1b\x23\x29\x8a\x02\xf9\x6c\x0b\x53\xe9\xc7\xa2\x52\xfc\xa4\x4d\x5a\x96\x20\xb8\x82\x33\xc7\xbb\x8e\x55\x52\x82\xd9\xff\x92\xf1\x52\x74\xcd\xcd\xd7\x15\x05\xa4\x1a\xdb\x01\x0f\xf1\xe8\xa3\x9d\x76\x0a\xea\xab\xe3\xd2\x69\xdb\x45\xd8\x1b\x03\x08\x15\x21\x8c\xd0\xca\x56\x78\x6d\xa8\xaf\xd6\xaf\x86\x36\x33\x28\x63\x8e\x1e\xae\x95\x2f\xfe\x9d\xf1\x0c\x30\x79\x6c\xf4\x6f\x52\x96\xd1\x85\x1c\x8c\x1d\x40\xf7\x1b\x0d\x18\xbf\x99\x74\x3f\x66\x34\x2d\x69\xb7\x02\x00\x45\xbb\xdf\xe4\xf4\xee\x9b\x6e\xb1\x91\xb7\x6b\xc1\x31\x00\x2d\xed\xc7\xc4\x9f\x00\x83\x6b\x5e\x51\x40\x3f\xe9\x42\x4e\xa1\xe3\xd5\x0d\x61\x82\x0e\x63\x0e\xe6\x7a\x68\x97\x5f\x4a\xc4\x6b\x29\x28\xf7\x11\x2f\xe1\xd1\x6d\x8e\x51\x62\xb4\x9b\x81\xc6\x57\x04\xec\xee\xab\x62\x93\x81\x42\x9f\x61\x5c\x1e\x8c\x4c\xe6\xa9\xaf\x78\x73\x60\x44\xcf\x4d\xb4\x5f\xc3\xe2\xfd\x9e\xe8\xbf\xce\x83\x72\x3b\xfb\xe1\x91\xd2\x5a\x73\x76\x87\x76\x1a\xe0\xeb\x88\x6d\xcd\x40\x37\x17\xfe\x94\x3c\xc8\x6c\x6e\x2f\x01\x58\xb5\x2c\x62\x9f\x0d\xe1\x51\x41\xaf\xfc\xd9\x69\x61\xa3\x3d\x16\x16\x69\x30\x46\x98\x29\x3c\x62\x74\x52\x80\x4b\x02\x1b\x31\xc6\x49\x23\x8a\x99\xf6\x98\xf0\xa0\x0d\x11\x7b\x40\x78\x36\x2e\xc0\x14\x81\x7b\x90\x90\xe5\x74\x83\x5c\x00\x5b\x85\xc8\xa4\x3e\x22\x93\xf9\x98\xc1\x8d\xc4\x0c\x2c\x8f\xa7\xc4\x19\xc2\xa5\x21\xcc\x7a\xe3\x0e\x8b\xa2\x9e\x51\x3e\x4f\xc9\x45\x2c\xe9\x45\xb4\xcb\x93\x62\x46\xd2\x9d\x52\xb0\xaa\xd7\x92\x27\x7c\x56\x53\xfc\xa1\xd3\xeb\xb8\xc2\xd6\x8d\x32\x90\x77\xeb\xb8\x92\xf7\x63\xcf\xbd\xb5\x63\xb5\xb4\x55\xa8\x73\x34\x6e\x15\xe7\x50\x4f\x8f\x80\xef\x62\x87\xce\xa3\x49\x18\x32\x57\xa0\x5a\x93\xa1\xad\x38\x04\x06\xa2\x4e\x23\xd3\xb5\x9c\x23\xbd\x70\xb9\x8a\x25\x23\x67\x82\xca\xe5\x32\x85\x53\x32\x3a\x49\x1d\xf5\x9d\x42\xe7\x44\x92\xce\x66\x84\x25\xa9\x17\xae\xc5\xef\x9f\x84\x77\x13\x35\x23\x3b\xcc\xa6\xcd\xcb\x5e\x97\xb9\x19\xc2\xa6\xdc\x1f\xef\xe1\x9d\x2d\xb2\x43\xbb\xb8\xc2\xb9\xf6\x32\x8f\x26\xef\xfc\xb7\x9d\x13\x03\x5f\x5e\x02\x9c\xba\xbc\x24\xd4\x67\x79\xbe\x0b\xb9\x72\x5a\x5c\x1c\xe7\x4e\x61\x9d\x29\xb0\xcc\x2c\x1d\x48\x5d\xe9\x4f\x01\xe0\x51\xbd\x06\x68\xe3\x64\x37\x37\xf8\x46\x49\x6f\x32\x0c\xdf\xdb\x61\x56\x3d\xd0\x31\x30\xb8\xbf\x18\x99\x38\xe8\xcf\x1b\xdc\x6c\xa2\x65\xc8\xd6\xf9\xa4\x77\x1d\x18\x75\x66\x30\x1b\xd2\x42\x16\x0d\xc2\xef\x98\x58\x75\xd3\xbc\x9b\xca\x16\xfa\x08\x40\xe2\x8d\x12\x83\xed\x93\xc9\x3b\x8e\xb1\x3c\xa3\xf5\x2e\x22\x7b\x9a\x78\x9d\x7f\x61\xad\x81\xd2\x39\x7d\xa4\x1f\x08\xf3\x8e\x17\x17\xbd\x41\xbd\x59\x03\x4a\xb9\xfb\xaf\xb4\x4f\x11\x03\x22\x93\x7c\x86\x0e\xe0\x72\x6b\x6d\x39\xd8\xf2\xe9\x5a\x7d\x42\x6e\x93\xca\xc9\xd0\x74\x73\x06\xcf\x3f\x87\xa1\x0a\xf7\x4d\x4d\x50\x21\x86\x7a\x9c\x8f\x19\x23\x2b\x21\x1f\x82\x64\x08\xc8\x79\x0a\x08\xd9\xc7\x47\x7c\xe3\xd4\xc0\xb4\xb1\xae\xee\x8d\xad\x63\x9c\x47\x7d\xde\xec\xe2\x2f\xde\xc5\xf0\xf3\xe3\xfb\xee\x63\x7c\x03\x77\xa6\xdd\x71\x37\x8f\x6f\x37\x2d\x39\xfd\x8a\x5d\x67\x7b\xf2\xba\x76\x78\xc0\x2f\x11\x9c\x9e\x8f\xfe\x14\xfa\xd4\xc1\x39\xcc\xd9\xfb\x03\x73\x66\x39\xef\xf1\x57\xeb\x5f\xa2\xed\xb6\x66\x46\xf9\x75\xe1\x0f\x3b\x7b\xd6\x26\xc7\xcc\x2c\xcd\xef\x71\x02\xd9\xc6\x75\x09\x70\x6d\xab\xb1\x1a\x72\x4e\xf2\x7d\x9c\x13\xe7\xcf\xa8\xe6\x06\x86\x59\xb5\x75\x6b\xe8\xa5\xc9\xbf\x3a\x17\x87\x05\x60\xbf\x08\xce\x68\xfa\x9c\x29\xe8\x4f\x68\x22\x40\xdb\xdd\xe8\x7e\x39\x6e\x0b\xc7\xe2\x51\x56\x4b\xb8\x4d\xdf\xd6\x37\x87\x39\xf3\xb8\x71\x2b\x50\x8b\x3c\x10\x42\xa8\x2f\x78\x30\x18\x5b\xbb\x38\xda\xec\xde\x55\x5a\xae\xf6\xed\x5b\x5d\x55\xe0\xfd\xeb\x7d\xed\x78\xec\x14\x2a\x7c\xf6\xdf\x71\x92\xdf\x7b\x53\xf4\xe6\xbf\x7e\x8a\x3c\x9d\x88\xdf\x32\x43\x67\x30\x43\x60\x48\xe6\x4d\x92\xed\xf8\xaf\xca\xa9\x8d\x6c\xaf\x5d\x54\xab\xbe\xd1\x1d\xc2\xde\x5d\xfb\xbd\xa3\x21\x1e\xf4\x50\x6d\x64\x53\x80\x4e\x26\x78\x45\xc3\x19\xb7\x46\xdd\x42\x5c\xcd\x79\xca\x06\x15\x74\xcd\x73\xdd\xa9\x79\x3e\x3b\x0c\x80\x5e\x3e\xea\x3c\x7f\xdf\x62\x8f\x30\x73\xcb\xfd\xef\x81\x0e\x81\x87\xd5\xbd\x9c\xd9\xa2\xc1\x99\x2d\xf6\x71\x66\x0b\xc3\xb1\x59\xa7\x9b\x37\x39\x61\xfb\xa0\xcd\x61\xb6\x8d\xdc\x6f\x20\x16\xa9\xc3\x02\xaf\x6e\x09\x17\x90\xf6\x23\x6b\x91\xad\x3a\x1f\x70\x81\x05\x66\x90\xc5\x63\xb4\x3d\xc6\x0e\x0a\x81\xc9\xe7\x30\xe8\x75\x1b\xa3\x61\xba\xef\x8e\x5b\xa7\x9b\x2e\xfd\xb2\x01\x57\x9f\x69\xc0\x54\x48\xbb\x25\x9d\x17\xf9\xc2\xf2\x14\xfa\x48\x62\xfa\xfe\x41\x6c\x04\xeb\xd1\x01\xaf\x1a\xb8\x54\xeb\xe9\x93\x4d\x1f\xbe\x4f\xfd\x43\xf7\x52\x81\x25\xd9\x66\xcb\x99\xfb\xe1\x00\xb0\x70\xb9\x7e\x69\xe4\x52\x5e\xc1\x65\x26\xb9\xbf\xfe\x21\x2f\x9f\x1f\xf7\xed\x7e\x54\x73\xbd\x52\x97\x35\xfc\x2b\xdb\xfe\x77\xb0\xe1\xc3\x18\xd8\x46\xfc\xdb\xc2\x9b\xd7\x8a\x58\x6d\xfe\x28\x68\x8f\x90\x7f\xec\xd0\x57\x72\xef\xbf\xee\x50\x3c\x34\x36\x6c\xc7\x28\x9b\x5a\x8e\x7c\xfd\x90\x38\x43\xf1\xc2\x1a\xcd\xd7\xce\x48\x0a\x67\xa4\x30\x81\x0c\xdd\x81\x33\x9e\x9a\xf7\x1c\x1f\xbe\xdd\xc6\xf5\x1e\xfd\x43\x5d\xc8\x2f\xbd\x33\xf4\xdd\xbf\x70\x86\xd4\xfc\xda\x63\xf4\xdf\x7a\x88\x74\xdb\x5f\x7f\x8e\x7e\x6c\x3b\x47\x72\x81\xfe\x86\xff\x40\x46\x6e\x42\xfe\xae\xce\xca\x9c\x26\x7f\x98\x11\x8a\xe5\xff\x60\x3c\x23\x02\x1f\x13\x42\xe2\x3f\x0c\xc8\x31\x8a\xa2\x9c\x6a\x57\x6f\xff\x87\xf4\xab\x7c\x41\x97\x20\xa9\xb4\x53\x76\xc7\xf2\x45\x71\x37\x55\x7f\xe6\x36\xfb\xbf\xe4\xff\x80\x93\xd5\xff\x4d\xfe\xef\xf0\x5d\x25\xc0\xdd\xc3\x87\xab\x92\xf2\x5b\xca\xb7\xdb\xff\x3b\xfc\x81\x5e\xfd\x8d\x89\xfa\x17\x4c\xa9\xdf\x84\xe5\x9c\x94\x34\x5b\x46\x51\x5b\xe3\x3a\xe8\x55\x14\xf5\x13\xcd\x03\xd4\x29\xb3\x3e\x21\xe4\x61\x67\x23\x36\xab\x4b\x4c\x7f\x44\x58\xd0\xd6\xb1\x7c\x66\xb9\xf8\xcb\xab\x2c\x5d\x6f\xe8\x02\x96\xa4\xbd\x55\xb6\xde\x14\x5c\x9c\xcf\x39\xdb\x88\xb2\x3d\xcb\x3b\xe5\xe8\xf4\xd5\x2a\xcd\x73\xea\xb9\xc8\xe4\x5e\x7c\xda\x26\x4b\xcd\x47\x25\x28\x1e\x23\xc5\x11\xcf\x29\x66\x14\x17\x14\xa7\x14\x97\x14\x57\xf4\xff\xcf\xde\xbb\xad\xb9\x6d\x63\x0b\x83\xf7\x7a\x0a\x89\xd3\xcd\x26\x22\x48\x96\xec\x4e\xef\x6e\x56\xa1\xf4\xf9\x98\x38\xf1\x29\x76\xa5\x93\xb4\xac\xed\xcd\x92\xa0\x12\x63\x0a\x50\x83\x50\x95\x2b\x45\xcd\x37\x77\x73\x31\x6f\x30\x57\xf3\x2c\xf3\x28\xff\x93\xcc\x87\x85\x03\x01\x92\x2a\x3b\x7b\xf7\x1c\xbe\xf9\x7f\x5f\xb8\x44\x9c\x8f\x0b\xeb\xbc\x70\xa1\xf6\xca\x7b\xee\xa6\xf4\x81\x77\xcc\xd7\xb4\xa5\x2a\xf6\x87\x13\xaa\x36\xf3\x36\x99\xa8\x4d\xa6\x0b\x94\xa8\x3f\xc3\xe9\x02\xe9\x6f\xcb\xfc\x36\xa9\xd6\x0e\xe7\x0f\x64\x72\xa0\x74\x96\xec\x29\x31\x4b\x37\x66\xf4\x93\x3c\xcf\x97\x1f\x71\x51\xa7\x5d\x51\x51\xe6\x9c\x95\x63\xc6\x57\x74\xbc\x85\x6b\x7e\xef\xdf\x93\x59\x9a\xbc\x5f\x0d\xd1\xfb\x31\x9a\x05\xbf\xdf\x7f\x55\xa9\xdf\x7f\xb8\x87\x70\x78\xfe\x0b\x88\x32\x36\x51\x5b\x57\xd0\xf9\x74\x11\xc7\xd1\xd4\x7e\xdd\x87\x38\x45\x94\x94\x54\x3e\xdf\x1a\x83\x17\x84\x19\x6d\x87\xe2\xee\xef\x69\xb2\x56\x84\x71\xfa\xdd\x2c\xe1\x94\x4c\x70\xa6\xd7\xea\x3b\x95\x8c\x4b\x4a\x56\x7c\x09\xf7\xd4\x38\x83\x3d\xa7\x9f\xe4\x2b\xbe\xa2\x49\x14\x21\x9c\xd1\x31\xd7\xc7\x31\x29\x29\xbe\x5d\x6e\x32\x91\x2d\x25\x15\x4f\x32\x99\xa5\x60\xe0\xd4\xd9\x67\x49\x75\xa4\x16\x4e\xc9\x70\xc8\xe9\x1f\xef\x1f\x50\x2a\xe9\x2c\x49\x72\xdd\x77\x78\x1e\xd0\x58\x1d\xa0\xe9\x98\x33\xeb\x10\x77\x4d\xbb\xdb\xcd\x29\x14\xbd\x3f\xde\xf1\x52\x9a\x46\x92\x89\x9a\x1c\xb3\x52\x0c\x42\xc8\xcf\x47\x02\xb1\x09\xfa\xcf\x7d\x2e\x3c\xb6\xbf\xe6\x10\xe9\x73\xf1\xcc\x26\x46\x1e\xd3\x39\x42\x60\x18\x06\xd5\x92\xe8\x8a\x0a\xf9\x29\x6a\xc7\xc7\x4c\xbe\x27\x74\x2c\xf6\xec\x35\x7b\xc1\xf9\xae\xaa\xcc\x87\x31\x66\x46\x7e\x7f\xdf\xc3\x5e\xa4\xea\xdc\xb7\x1c\x96\x41\xe2\x21\x41\x90\x6b\x75\x83\xc8\x0f\xd8\xb0\xd6\xbb\x6c\x5d\xbc\x1b\x42\xf1\x04\x1d\xb4\xc6\x3f\x25\x3f\xf5\x8c\x82\xf1\x46\xeb\x0b\xae\x8e\x84\x02\xb3\xea\x12\x80\x0e\x78\x2a\x81\xea\xca\xf0\x31\x37\x81\x00\x12\xee\xab\x17\xd4\x5a\x64\xa6\xd4\x7a\xdd\x55\x0c\xbc\x6a\xe9\x29\xac\x28\x3e\x0e\x2a\x3b\x58\xc3\x3a\x63\xfc\xe1\xc3\x9b\xb7\xaf\x5f\x3e\x7f\xf7\xf4\xc3\xf3\x57\xef\xce\xdf\xfe\xf8\xf2\xe9\xab\xf3\x87\xe7\xcf\x5f\xbf\xfa\xf0\x41\xbf\xf9\x57\x94\x7c\xbe\xa8\xa3\x73\x6f\x68\x3f\x67\xfd\x2c\xf1\x34\x50\x23\xf0\x03\x73\x45\xd1\x55\x2b\xe4\xe7\x8d\xba\x7c\x3b\x9a\xdc\x50\x7c\x45\xe7\x37\x74\xa1\x81\xfe\x25\x25\xb7\x59\x99\xed\xd2\x1f\xb0\x5a\xdf\x74\x43\xb1\x0d\x43\xf7\x11\x7b\xea\xbe\x69\x8e\xb3\xa2\x48\xdf\xe2\x9a\x91\x92\xfe\x8a\x45\xb6\xa4\xe9\x13\xac\x68\xb0\xf4\x39\xf6\x48\xb1\xf4\x19\x36\xca\xe9\xe9\x6f\x18\x54\xd3\xd3\x6f\xb1\x53\x4c\x4f\x1f\x63\xa7\x96\x9e\x66\x98\xb3\x74\x47\x41\x35\x7a\x4b\xb1\xa5\x9b\x7e\xb2\x24\xd3\x3f\xf1\x36\xdb\xa5\x3f\x62\x58\xfa\x74\x45\xb1\x7e\x2e\xd3\x6f\x0e\x9e\xba\xff\xa5\xa2\xc4\x64\xa2\xf5\xf9\xb5\x74\xcc\x3b\xa4\x7a\xa7\x92\xe8\x57\xb0\xdf\x88\xf0\x7c\xe1\xe7\x06\x5a\xfe\x46\x1a\x61\xda\x4d\xd5\xd3\x34\xfe\x15\x4c\xc3\xf0\x87\x0f\xb4\x7c\x09\x86\x03\x0a\x50\x1c\xa0\x93\xa7\xaa\xbf\xf1\x63\xbe\xdd\x71\xa6\x20\x8e\xa0\x7c\x47\x59\x72\xfb\x87\xb4\x81\x0a\x00\xfa\x42\x0b\xaa\x76\xc9\xa9\xbe\xce\x74\xcb\x89\xd1\xba\xb1\xd9\xa9\x49\x0e\x12\x0f\x07\x84\xbb\x1e\xcf\x67\x59\x29\x1f\x71\xee\x8b\x21\xe1\x42\xb4\x05\xf4\xda\x04\xa2\xe3\x78\x6a\x6b\x88\x99\xfe\x33\x36\xe5\x88\x4c\x3a\x75\x4b\xf5\x00\xe2\x58\xff\x1d\x67\xdb\xd5\xcc\x2c\xef\x7c\x01\xea\xa8\x47\xfa\x9d\x99\xbf\xe3\xc7\x45\xbe\xbb\xe0\x99\x58\x7d\xf7\x0e\xfa\xa0\xcd\x14\x23\x5a\x6c\x03\xcb\xb6\xa4\xee\xd6\xbb\xe3\x22\xd1\xd8\xab\x9c\xb3\x85\x73\x9b\x3a\x67\x0b\x3b\x21\x1b\xfc\x69\xce\x16\xe4\x36\x4f\x19\x2e\xd2\xc1\x14\x9b\xcc\xf4\xb6\x8e\x67\x4e\x55\x25\xc0\x27\x72\x5b\x17\xe7\xb8\xfe\x0d\xfe\x46\x0b\xa2\x08\x65\x9b\x76\xa8\x1d\xe3\x12\x8a\xc5\x78\x49\x24\x16\xe3\x86\xa7\x13\x86\x6e\xc5\x18\x3c\xf7\xa3\xaa\x32\x7c\x2e\xbd\x74\xee\x92\xaa\x62\xb7\x86\x8a\xbd\x80\x73\x06\x81\x24\x99\x76\x2b\x19\x42\xcc\x2e\x08\xf4\xee\x66\x7b\xc1\x8b\x38\xd6\x7f\x1d\x76\x74\x9e\x5d\xc6\xf1\xb1\x1e\xdb\x65\xf1\xad\x96\xe6\x47\xfa\xb4\x47\x07\x84\x8f\x55\x8e\xea\x4b\x11\xd9\x6a\xea\x15\x05\x4b\xa1\x06\x88\xce\xd7\xc9\x34\x96\x60\xd9\x29\x20\x38\xee\x5f\xe3\xfa\x2a\xf4\xf2\x75\xf2\x67\x95\xdb\xa9\x3f\x0e\xca\x3d\xae\xa7\x50\x75\x9c\x35\x5c\xbf\x83\x11\xb0\x76\x17\x0d\x0e\x61\xba\x87\xce\x70\x64\xee\x78\xd4\x5c\x71\x3d\x0b\x05\x50\xee\xc3\x80\xb4\xf3\x7e\x9f\x11\xe5\x0c\x20\x75\x84\x65\x31\x5e\x81\x2e\x5e\x87\x10\x88\xce\xe5\xe2\x30\xbe\xc8\x99\x89\xf0\x91\xd7\xce\xd9\x18\x98\xbb\x77\x88\x9f\x1b\xb3\x9d\xb5\x2f\x82\x83\x7b\x87\x8e\x18\xa3\xd4\x93\x28\xad\x12\x89\xa3\x2c\x02\x16\x86\xea\x8e\x77\xbf\x9a\x66\x89\x6a\x86\x52\xf8\x76\xe8\xcb\x40\x8d\x4d\xfa\x8e\x44\x11\x16\x89\x18\x97\x64\x82\x0e\xc9\xbc\xa9\xc7\x12\x80\x53\xbd\x41\x1d\x60\xc4\x9e\xd4\xa8\x84\x1f\xcd\x8c\x71\x2e\xb5\x06\xc0\xac\x03\x49\xb0\xfb\x70\xe8\x34\x28\xea\xc4\x95\x6c\x77\x4d\x4b\x04\x97\x3e\xb0\xbf\xeb\x55\x98\xd9\xb1\xa5\xae\x43\x5f\x55\xbe\xa9\x5a\xe9\x0b\x2d\x27\x27\xa2\x96\x3b\x0a\x6b\xbe\xc1\xc0\x95\x66\x8f\x8d\xeb\xf3\x46\xfc\x8f\xaa\x1a\x4c\x31\x73\x16\x5b\x90\x3f\x98\xe0\x08\x0e\x64\x94\xb3\x3e\x8b\xe3\x84\x8d\xaf\x45\x2e\x4d\xde\xf1\x8b\xc9\xc6\x1f\xe9\x0d\xc8\xcb\x9b\xc0\x33\xe4\xf5\x8a\x38\xa6\x89\xb7\xf5\x0a\xba\x31\x48\x03\xb5\x28\x85\xbe\x61\x4e\xf6\x89\x48\xa6\x08\xe1\x0c\x7e\x3d\x40\x08\x97\xf0\xeb\xcf\x7e\x50\xb8\x7d\xb8\x0b\xc1\x19\xa6\xa9\x7b\x52\xa9\xa6\x7a\x8a\x63\x2c\x1a\x60\x7d\x26\x2d\xd0\x31\x48\xa8\xaf\xeb\x22\x8f\xd0\xd2\x8f\xb5\x5e\x88\x3a\xb1\xfd\xac\xbf\x2c\x40\xe3\xa6\x0c\xcc\xb8\x0e\xc8\x45\xb5\xd0\xbb\xd2\xee\xcb\xe7\x35\xbf\x55\xd8\x0b\x65\x4b\xdb\x03\x68\xa4\x6c\xb2\x92\xfd\x49\x51\xeb\x94\xf5\x73\xed\x9b\x26\x2f\xe9\xaa\x3f\xea\x97\xfb\x1d\x15\x09\x0a\x4a\x68\x8a\xde\x21\xda\x03\xd9\xc1\xde\x96\xa1\x01\x82\x63\x58\xd0\x54\x9a\x07\x31\x91\xb5\x84\xd8\x3d\x20\x97\x54\xbe\xb1\x7b\x07\x26\x62\xa8\xe6\xe7\x7a\xb0\xc6\xf2\x2a\x5e\xef\x54\xfb\x65\xa2\x76\x79\x5c\xe4\xa5\xa4\xec\x71\x91\x2f\x3f\x82\xcb\xfd\xd6\x51\xb9\xcb\x7e\xae\x66\x5d\x75\x6f\x04\x04\x3a\x50\x8f\xbf\xa0\x65\x09\xd8\xf5\xbe\x94\x7d\x9a\xcb\x0d\x15\xfd\x0b\x0a\xde\x8c\xfb\x5c\x78\x3b\x83\xc1\x6d\x73\x34\x74\x16\x7a\xbd\xe3\xf1\x3d\xc0\x2d\x45\x7d\x68\x6f\xbd\x5b\x9d\x9a\x67\x88\x62\x1f\xac\x4f\xb1\xbd\x36\x0a\xc4\xfb\x57\x4c\x23\x73\x58\x3d\x4c\xa6\x8f\x32\x58\xd3\x59\x67\xaa\xb6\xbd\xa1\x9e\xcc\x5e\x2a\xc4\x05\x67\x16\x34\x23\x9c\x27\xd2\x05\xa4\x0e\x56\xdf\x6a\xcb\x79\xa0\x44\x93\x6c\x2d\xa1\xde\xa4\x53\x1e\x38\xf1\x3d\xb2\x4e\xea\xc8\xa2\x19\xb4\xd6\x05\x6d\xa9\xc9\x9b\xd9\x1f\xc6\xe5\x84\x1e\xea\x43\xbd\xfc\x5a\x5b\x47\x1b\xf7\x75\xb6\xa1\xf3\x66\xf6\x47\xd0\x86\xa6\x12\x4c\x1b\xf4\xd3\xb1\x16\xe8\x27\xa8\x4f\x3f\x35\x6a\x43\x54\x44\xa3\xdf\x24\xb3\x9c\x51\x41\x6a\x44\x80\x30\x13\x3b\x11\x32\xd0\xcc\xfb\x48\x1d\xad\x7f\xc1\x57\x37\x2e\x16\xb7\x77\xb2\x5b\x8b\x1d\xaa\x79\x69\x01\x04\x14\xa7\x82\x24\x13\xec\xc6\x84\x14\x7a\xb3\xd4\x4d\x74\x3d\x42\x63\xee\xae\xce\x01\xb9\x9e\xf9\xe7\x7a\x55\x6f\x77\x41\x2f\x33\x49\xf5\x92\x29\xea\xda\x98\x35\xeb\x04\x3d\xa4\xa5\xc5\x89\xf5\xe6\x58\x05\xd7\x46\xb2\x76\xc4\x85\xbb\xb3\xe8\x75\x9f\xdb\xc9\x24\xb7\xfe\xbe\x67\x16\x4d\xc1\xfe\x4e\xea\xdf\x90\xea\xf6\x47\xfd\x52\x29\xf5\x82\x87\xbb\xe4\x8c\x4d\x25\xa6\xdb\x5c\x4a\x53\xc0\x5b\x90\xe0\x8c\x75\x2d\x8b\x75\xd9\x90\x44\x99\x29\x43\x5b\xb5\xf5\xca\x1c\x5f\xd4\x65\x12\x49\x53\x84\x1a\x23\x5a\xd3\xac\x3b\x1f\x40\xfa\xbd\xa3\x05\x05\xc3\x0d\xd9\xee\x82\x7e\xea\xec\xa0\x1e\x9e\x84\x12\xc1\xe0\x4a\x29\xf8\x4d\xc7\x75\x0e\x4e\xd5\xd8\x94\x4b\xba\x37\xea\xc8\xd6\x7e\xa6\x96\x71\xc1\x76\x58\x58\x10\x93\x97\xef\xf6\xbb\x1d\x78\x1e\xfc\x57\xc3\x97\x79\xb4\xe4\xbb\x9b\x08\x47\xcb\xbd\x8c\x16\x58\x12\x8b\x12\x7b\x0a\x87\x73\xba\x48\x29\x16\x64\x30\x08\x57\xfc\x31\xdf\x6e\x33\xb6\x72\x63\xab\x25\x9f\x6b\x2e\x9e\x66\xcd\xc0\xaf\xe0\xc8\xed\x33\x4d\x68\xbd\x76\x01\x91\xed\x65\xa0\x51\xb8\xf4\x75\x60\xa2\x55\x26\xb3\x91\x5b\xb6\x51\x34\x04\x22\x03\xfc\xa7\x3d\x94\x52\xe4\x17\x7b\x49\x13\x51\x47\x5b\x53\x6f\xa9\x9f\x71\xa8\x69\xe1\xe2\x70\xb7\x6f\x00\x63\xfb\xf5\xff\x23\x44\x97\xff\xf7\x88\xe8\x66\x44\x24\xf7\x15\x6e\x9b\x30\x92\xa1\x38\x66\x3e\x0a\xcb\x6a\x14\x96\x69\xbe\xe4\xfe\x78\x1c\xb5\xff\x27\xf0\x57\x2b\xe1\x6b\xa0\x76\xd6\xbf\x98\x42\x4b\x35\xbc\x83\x01\x3a\x6f\x79\x09\xfd\x7f\x05\x2b\xb1\x98\x47\xf3\x99\xa7\xfe\x63\x02\x0c\x2f\xfd\x8e\x10\x6a\x7f\x05\x88\x89\x45\x3e\x3c\x4c\x43\xe3\x13\x81\x97\x5b\xe2\x5c\x47\xd8\xa0\x0c\x05\x18\x23\x9c\x03\x66\x12\x39\x08\x1e\xac\xd1\x31\x38\x0e\x48\x8b\xd7\xcc\xb3\xec\x23\x4d\x90\xff\x66\x1a\x81\xa6\xce\xd6\x6f\x55\x52\x3f\x13\x75\xad\xa3\x4b\xac\xe9\x11\x12\x09\xa9\x00\x84\x03\x7f\xf6\xc7\x53\xcd\x03\x0c\x01\x54\xb4\xca\x45\x64\xf4\x95\xb4\x57\x5e\x3d\x30\x13\x1f\x20\xfb\x48\x8d\x1f\x1c\xeb\xd3\xa2\x43\xfc\x40\x83\x9a\x87\x56\x55\x12\x6e\xd6\x38\x5b\xad\x80\x27\xfc\xc2\x3c\x6d\x89\x45\x90\x8e\xf5\x89\xaa\x6a\x30\xa9\x73\xd5\x44\x9a\xe2\x19\x33\x39\xfd\xbe\x66\x82\x66\x11\x0a\x2b\x8c\x4b\x79\x53\xd0\xf1\x9a\x33\xf9\x2e\xff\x8d\x92\x68\x7a\x7f\x27\xa3\xce\x32\x17\x5c\xac\x14\xea\x38\xe9\xce\xde\x65\xab\x55\xce\x2e\x8f\xe6\x6f\x33\x71\x99\xb3\xe3\xd5\xb9\x71\xfd\x1e\x65\x17\x25\x2f\xf6\x92\x76\x96\x9b\xcb\x59\x24\xf2\xcb\x8d\x8c\xd2\xa8\xa0\x6b\x19\x2d\x48\x34\xfa\xdb\xdf\xfe\xf6\xb7\xdd\xa7\xc8\x38\x3b\x30\x5c\xfe\x5d\x76\x49\x7f\x79\xbd\x5e\x97\x0a\x0d\x3c\xba\xeb\xe5\x52\xf0\xa2\x38\xe7\xbb\x5e\xd7\xa0\x24\xdf\x11\x31\x8c\x76\x9f\x5a\x63\x09\x0e\x8b\xa0\xd9\x8a\xb3\x42\xbd\xe2\xad\xf5\x85\x43\x49\xdc\x59\xc7\xcd\x4d\xdf\xed\x28\x5b\x41\x70\xd6\x24\xa8\x88\x3a\x2e\x57\x88\x41\x77\x15\x57\xb8\x84\x2a\xea\xdd\x90\xfa\x10\x1e\xbb\x83\xde\xd1\x72\xf8\x92\x1b\xa0\xae\xfe\x3b\x0f\x66\xfb\xac\xd7\x76\x82\x5d\x97\xc7\xc3\xb4\xed\x84\x8e\x8d\xe4\xf8\x52\xb9\x3b\x60\xb0\xb7\x00\x42\x1c\x41\x72\xad\xd3\xc7\xcf\xac\xb2\x86\x44\xc7\xd7\xd8\x26\x1d\x85\x41\x46\x63\x14\x1c\x3f\xd4\x77\x94\x7e\xa2\x4b\x83\x80\x25\x1e\x38\xf7\x84\x7d\x94\x0c\xa6\xda\xed\xb9\xf6\x14\xa6\x75\x4b\x12\x0f\x4f\xf6\xd3\xbb\x50\x6c\x1f\xec\xc3\xdf\x44\xa1\x24\x7b\xf0\x3b\x1c\xa5\xd6\xbe\xa6\x83\x82\xf1\x08\x15\x7f\x79\x6a\xa2\xc4\x7b\x12\xf0\xb2\xa0\x99\x70\xc0\xde\xd0\x31\x41\x9a\xe6\xd3\x6a\xad\x7c\x6f\xe1\x82\x32\x47\x1f\x09\xdd\x8b\x79\x09\xcc\xd7\x78\xcd\x97\xfb\x32\x41\xd8\xdc\xf7\x4b\xea\xbf\xc8\xe6\xb4\x3c\x2c\x8a\xb7\x19\xbb\xa4\x65\xf2\xc5\x94\x45\x00\xb4\x6d\x1d\x4b\x3d\x95\x54\xfe\xcb\xde\x70\x8d\xf8\xd7\xb6\xba\xf6\x2d\xc7\x3a\xc3\x29\x2e\x65\x86\x92\x01\x0a\xa1\x91\xda\x8a\x93\xfb\xa7\xe7\x3a\xe2\x73\xdf\x0e\xb9\xaf\x1d\x01\x83\x0d\x98\x61\x10\xe9\xf6\xfb\x5c\xfd\xda\xcb\xe8\x4f\xe8\x00\x82\x90\xf6\x0b\xe6\xf7\xe4\x96\xc2\xd2\x82\xc1\x52\xd0\x86\xeb\x5d\xc3\xe9\x0b\xbc\x80\x24\xb5\x07\xca\x99\x27\x5f\x49\xf3\x84\x22\x54\x55\x53\x70\x4b\xca\xf8\x8a\x2a\x8c\xed\x8e\x89\x99\x01\xf8\x13\xcb\xfa\x3a\xcf\x40\xf5\x3f\x01\x99\xaa\xa7\x69\xf5\xc2\xec\x2a\xd2\x90\x44\x89\x56\x79\xa9\xd0\xe0\x55\x84\xbe\xa0\xcb\xcc\xd6\x1b\xfb\xa6\x75\x35\xfc\x07\x24\x94\x66\xab\x3e\x5f\xf7\xeb\x96\xeb\x6a\x76\x60\x7b\xd9\x1a\x57\xd2\x1c\x98\x6b\x14\x55\xd5\x1d\x83\xfe\x7d\xa3\xfe\x85\xef\xfb\xcb\x8c\xbd\xff\x93\xec\x2f\xf7\xb2\x0f\x81\xcc\xd7\x82\x6f\xfb\x46\x12\x5a\x6a\xcd\x28\x6f\x46\xea\x94\x74\xcc\xa4\xfc\x93\xd5\xe6\xb6\xb8\xe3\xe1\xee\x53\xa4\x8b\x01\x5d\x69\xbc\xc9\x59\xfa\x6f\x7f\x68\xd8\x27\xd5\x59\x2d\x66\x04\x2c\xdf\xbb\xa7\x2f\x9e\x3e\x3e\xd7\x51\x81\xd4\x79\x81\x50\xfe\xd4\xc1\x03\x85\xb4\xc2\xd9\xa8\xed\xcd\x9f\xbf\x7a\xf3\x63\xa3\x42\x55\x45\xe7\x4f\x7f\x3e\x7f\xf8\xf6\xe9\xc3\x46\x4b\xce\x2f\xfc\xb1\xfd\xe8\x09\xb5\x23\x77\xa1\x00\xd4\x80\xcc\x44\xff\xac\x01\x13\x00\xa3\x64\x82\xcd\x08\xad\x8f\x13\x0c\x2d\x1a\x90\xd5\xd5\x65\x3d\x29\x1d\x8b\xbc\x39\x38\xf0\xcb\xcf\x24\x5d\x69\xa2\x2e\x42\xea\xa0\x9b\x05\x31\x8c\xf8\x4e\x30\x89\xf3\x26\xc6\xa8\x47\x88\x7a\xb9\x99\xc2\x2b\xbe\xa2\x8f\x75\xeb\x3a\x76\x6c\x1b\xb2\x62\xa6\x70\x57\x5d\x31\x87\xd8\x49\x4e\xe0\x59\x93\x46\xf2\xd0\xdc\x66\x4f\xb8\x8c\x6e\x0f\x5e\x40\x69\x72\xdb\xf0\x33\xd7\x70\x79\x40\xad\xc6\x22\x05\x27\xe9\x46\x6b\x9e\xcd\xe9\xa2\xaa\xe0\x0f\x99\x2f\x10\x32\x4e\xcc\xd6\x2c\x95\x78\x29\x3f\xa5\xc2\xf8\x57\x3e\x60\xce\x96\xf4\x8e\xf6\x6b\x96\x47\x9e\xa0\x5b\x36\xe6\xeb\x75\xa2\x1d\x08\x18\xcd\x15\xe1\x6b\xae\x58\x5d\xa3\xf1\x07\x62\x90\x3b\x68\x33\xd7\x7e\x13\xb7\x79\x08\x24\x6b\x7b\xbf\xf9\x42\x7b\xdf\xd4\x12\x85\xda\x42\x6e\x8a\xb0\x20\x49\xd2\x31\x51\x04\x13\x9c\x2f\x90\x0b\x78\xa0\x43\x42\x88\x66\x18\x05\x31\x67\x8b\xf1\xda\xaa\xe3\xc0\xd7\x52\x7e\xf2\x8c\x95\xcc\x32\x1c\x71\x97\xd7\xd1\x35\x66\xda\x61\x1e\x78\xbb\xd7\x71\xf0\xa5\xef\xdc\xce\x8b\x80\x70\xc2\x4f\x33\x30\x19\x64\x73\xae\x46\xa1\x8d\xbb\xcd\xc7\xf8\x83\xfe\x34\x4e\xfb\x54\xaa\x17\x21\xd2\xb8\x52\x02\x5f\x7b\x79\x6a\x3c\xed\x43\xbf\x30\xe0\x03\xae\x01\x83\x68\xf3\x8c\xf4\x06\x8a\xe4\x6b\x70\x1e\x98\xfc\xc5\x07\x31\xcd\xb2\x2e\x82\x72\x1c\x0f\x44\x3b\xd6\xbc\x8d\xff\x6e\x74\xb9\x6a\xe5\xd4\x32\xd2\xb6\x70\x6c\xac\x99\x74\xc9\x31\x4e\xc3\xbb\x50\xa9\xd5\xf3\x78\xa8\xef\x85\x6b\x67\xcd\x12\x71\xa4\x8d\xf3\x4d\x2e\x3a\x9b\x78\xe6\xb8\x15\xb0\x17\x00\xb9\x3c\x83\xbc\xe6\x64\x6b\xa5\xec\x26\x81\xa9\xb2\xf1\xad\xc1\x87\x7c\xc8\x4d\x3b\xd1\x7e\xed\xa9\xd0\xfa\x09\xab\xfb\x56\x05\x3e\xdf\xbf\x56\x57\xac\xc5\xe0\x86\x45\x69\xe5\xdf\xfe\x2d\x39\x32\xd4\x43\xf7\x60\x7f\x57\xc3\x47\xe7\xd5\x9a\x99\xd9\xe1\xcf\xce\x2b\x4f\x02\x31\x89\xd1\x1d\x76\x6d\x75\x9b\xed\x87\xbe\x08\x9a\xa7\x03\xf7\xbf\x3d\x7f\xf9\xc2\x20\x33\xfa\xe3\x31\x2f\x0c\xd0\xc6\xea\x49\x7e\x65\x96\x3d\x42\x2d\xb0\x2a\x61\x4f\xba\xf4\xff\xfc\xb0\x02\x01\xbf\xcc\xeb\x2d\x8e\xa7\xc4\xc7\xc3\x0e\x58\xba\x3d\x6e\x3d\xc7\x2e\xb0\xb8\x67\xda\x18\xe8\x0c\xd3\xb6\xfa\x23\x8d\xe3\xc4\x29\x1c\xdb\x69\x80\xc6\xb1\xa8\x2a\x97\x11\x4e\x59\x67\xa3\x38\x8e\x34\x88\x88\x72\xe0\xd0\x26\xda\x1d\x9b\x35\x78\x91\xe6\x22\xcc\x27\x0b\xed\x58\x44\xef\x60\x97\x0f\xfc\x16\x8b\xbd\xaa\x82\x05\xd1\x73\x00\x9f\x01\xac\xab\xbe\x1d\xa6\xbd\x89\x30\xc0\xcf\xae\xc5\xe1\x38\xd0\xfa\x37\xe4\xbf\x3a\xda\x5e\x20\xc7\xce\x60\xbe\x61\x49\x90\xb7\xb5\xb6\xd4\x79\x6c\x08\xbf\x08\x4b\x84\x63\xe8\x21\xdc\xcc\x86\x30\x4c\xfa\x8a\xa8\x6b\xdd\x6d\xb2\xd1\x3b\x0e\x3c\x04\xce\x30\xff\x3d\xe0\x43\x57\x38\x1c\x0e\xc7\xe0\x32\x66\x98\xb7\xed\x0b\x7c\x39\x6b\x63\x0c\xb3\xdc\x9a\x6b\xef\x8b\xc2\x1b\x75\xb7\xdb\xc6\xdc\x53\x15\xb2\x57\x16\x1d\x69\x20\x69\x1f\x11\xd0\xad\xea\x96\x78\x3d\x84\xed\xb5\x1a\xd9\xf5\x01\xd8\x66\xbb\x2e\x28\xe4\x00\x47\x3d\xeb\x03\x6a\x5f\x64\x7d\xc3\xfe\x06\x28\x6f\x87\x3a\x9a\xbb\xb0\x03\xcb\xcb\xf2\x3b\x96\xcb\x0d\x2d\xed\xf9\x6a\x15\xe8\x31\x5b\x84\xb8\x5f\x76\x32\x55\xc5\xc6\x5b\xfe\xdb\xcb\x8e\xd4\xb2\x23\x91\x77\xa4\x5d\xd3\x8b\x8f\xb9\x6c\x64\x1c\xd9\x76\x8d\x13\x9d\x80\x4e\x8b\x05\x3a\x03\x42\xc4\x49\x43\x39\xc2\x3b\x06\x66\xc0\xaa\x86\xf9\xa9\xde\x61\xa7\xb7\x46\x09\x1d\xef\x32\x41\x19\xe0\xae\x07\x45\x72\x1c\x50\xe3\x19\x78\x42\x2f\xf6\x97\xc4\xfc\x05\x6b\x0b\xf3\x7b\x2c\xe8\xa5\x3a\x5d\xe2\x09\xdd\x09\xba\x04\x13\x0b\xcb\xc3\xf2\x4e\x78\xbb\xfc\x4f\x99\xe8\x2c\x78\x48\x0c\xe2\x0d\xda\xac\x81\xe6\x2c\x70\x0f\x4e\x92\x6e\x73\x0a\x28\x3e\x83\xff\x53\xa7\x53\x6e\x34\x70\x1d\x77\x6a\xfc\x13\xcd\x3e\xbe\xcc\x76\x55\x95\x50\xfb\x9b\x98\xbf\xa0\x42\x7b\x97\x52\xab\x1e\xc0\x4e\xd0\x35\x15\xaf\x32\x1b\x8f\xf3\xc3\xa5\x17\x14\x45\x7b\x06\xc2\x4c\x3b\xa7\x22\xda\x4f\x8f\x74\xda\xef\xf5\x81\xb2\xb1\x21\x6a\xc5\x19\x4f\xc5\xed\x09\x2d\xc1\xdc\x83\xeb\xa7\xb6\x8e\x70\x43\x08\x71\x86\x8b\xc7\x54\x6e\x9c\x96\x8d\x1e\x00\x9f\xe9\xaa\x29\x4d\xb8\xf6\xff\xa0\x4e\x89\x93\x6d\xe5\xc8\x61\x93\x9a\x04\xd4\xf0\x33\x57\xed\xb6\x9e\xa2\x6c\x96\xe9\xeb\xc9\xac\xc7\x8e\x03\xfe\xa0\xa9\xa0\xc7\x45\x56\x96\xff\x1d\x4a\xe9\xea\x57\xe8\xc3\x8e\xeb\xc0\x64\x9e\x5f\xb9\xb7\x9a\xd2\xfa\xff\xaa\x26\x57\x3d\x76\x6b\x5d\xf8\x3f\x94\xac\x7e\xa7\x92\x55\xbd\x84\x20\x1d\x7d\x9c\x15\xc5\xe3\x0d\x5d\x7e\xfc\xbf\x43\xd2\x1a\x28\x27\x58\x2b\x82\x35\x95\xcb\x8d\x1f\x54\x60\x11\x68\xfe\xb6\x14\x03\x04\xa1\x1a\xb2\x8e\xdf\xbe\xfb\xfb\x1b\xeb\x75\x05\x33\x32\x8f\x9e\x71\xb1\x7d\x92\xc9\x2c\xc2\xd1\xb3\xbc\xa0\x6f\x69\xb6\xa2\x22\xc2\xd1\xa3\x82\x5f\x44\x38\xfa\xf1\xed\x8b\x77\x34\x13\xcb\x8d\x89\x7d\x8d\x23\x2d\xba\x8f\x70\x04\xef\xf8\xa3\xfd\x7a\x4d\x45\xa4\x88\x5e\xd6\xf3\xa1\x24\x84\xb9\x82\xab\xbb\xcc\x64\x32\xb7\x43\x8e\xbe\x85\x0e\x54\x43\x6f\xe9\x3f\xf7\xb4\x94\xf0\xab\xdc\x71\x56\x52\xd5\xe8\x05\x17\xf2\x31\x67\x52\x28\xbc\x56\x44\x0b\x84\x70\xde\x56\xd4\x10\xe8\x96\xce\xc5\xe2\x98\x4a\xb9\xba\xd1\xb7\x8d\xcd\x3f\xc2\x77\x53\xcd\x1c\x42\x36\xad\xd4\x8d\x13\x79\x38\x04\x6f\x62\x97\x9f\xa7\x1a\xe0\xa1\xdb\xe6\x69\xb0\x22\xf2\x23\x63\x84\x60\x42\x56\x43\xa7\x74\xba\xeb\xb7\x87\x3b\x8f\xb0\xe3\xa5\xf8\x30\xb8\x16\xa8\x37\x91\xbf\xb6\xb0\x03\x78\x87\x10\xc8\xcf\xd7\x10\x2a\x2d\x27\xc3\x25\xd8\x68\x02\xad\x54\x17\x4a\x20\x94\x9d\x7d\x41\xb7\xf9\x3a\xe9\xe8\x19\xd5\xaf\x44\xab\xaf\x63\xcc\x9b\x7c\x0d\x1c\x1b\xf0\xb4\xed\x3f\x58\xc2\x06\x25\x60\x60\xdb\x68\x65\x19\x79\xb9\x53\x28\x10\x0c\xf1\x33\xda\x78\x60\x63\xa5\xee\x7e\xc7\x40\xbd\xf7\xcc\x3f\x89\xdd\xee\x19\x9c\x06\xbc\x71\x1d\x06\x3a\x7a\x36\x5c\x8f\x37\x47\xe8\x4c\xdd\x9f\x09\xe6\x35\x7f\x28\x3f\xe5\x27\xf9\x70\x88\x44\xc2\xe6\xb9\x63\xff\x0c\x9c\xda\xfd\x1b\x01\xf1\x04\xe8\xea\xe0\x98\xc5\x98\x1d\x37\x39\xef\x3c\x9a\x46\xfb\x98\x92\x3b\x5e\xb1\xff\xaa\xda\x2f\xf5\x4f\x98\xb0\x34\xde\x71\x63\x8e\xec\xc2\xe8\x8f\x59\x4b\x8e\xbb\x01\xfa\x1d\x2d\x71\x06\x6d\xb9\x96\x80\x78\xb9\xbb\x2d\xea\xee\x96\x7b\x1a\x81\xf9\x13\x5c\x35\xa7\x51\x6b\x09\xd7\x0e\x11\x59\x83\x00\x06\xa0\xf6\x2e\xbf\x64\x59\xb1\x88\xbe\xfc\x54\xea\xc5\xd0\x7c\x77\xb5\xca\x56\xd8\x6b\xd6\x08\x30\xa1\x36\xe6\x6f\xb8\xab\x50\xc8\xc8\x02\xcd\x97\xe7\x66\x43\xd1\x61\x1f\x40\xd5\xd2\xf7\xe1\xf1\xd9\x3d\xf6\x50\x59\xdc\x1c\x3f\xec\x7b\xd0\x85\x53\x8f\x3b\x6a\xb3\xf0\x9f\x83\x99\x25\xac\x64\xbd\xb1\xf4\xba\xcf\xfe\x4b\x30\x53\x9f\x93\x2f\x11\x4a\x03\xfb\x13\x82\x01\x99\x5a\x9e\x14\xba\x8b\x3e\xb1\x94\xf0\xac\xa9\x71\xa2\xda\x98\x25\x2d\x43\x61\xd3\xb6\x5e\x52\x84\x40\x83\x2a\xe8\x0f\x0f\xa6\x78\x30\x45\xe9\x91\xaa\x7a\xd9\xc0\x29\xa2\x42\xa6\x4c\xa5\x94\x92\x5b\xf5\xed\xa6\x7a\xb1\xbf\xb8\x28\x68\xa9\x6e\xd7\x52\xe1\x28\x85\x41\x9e\x0e\x26\x78\x38\x2c\xf0\x38\xd8\x60\x5f\x9a\xfe\x3b\x4f\x7e\xfd\x9c\xab\xd3\x6f\x45\x5b\xbf\xd7\x78\x2c\xc9\xeb\xd3\x37\x6f\x17\x58\x90\x16\xee\x80\xd9\x17\xd5\xd0\x17\x33\x0a\x89\xdf\x4e\x37\x17\xe3\x0f\x1f\x9e\xbd\x7e\xfb\x58\x5b\xc4\x3e\x7c\xf1\xe2\xc3\xc3\x47\xaf\xdf\x9e\x3f\x7e\xfd\xea\xfc\xed\xeb\x17\x2f\x9e\xbe\xfd\xf0\xe6\xf5\x8b\x5f\x9e\x3d\x7f\xf1\x62\x96\x28\x44\x95\x17\x74\x5c\xf0\xcb\x24\xfa\xd2\x6a\x44\x8a\x3d\xed\xe7\x65\xbf\xa4\x12\xf7\xaf\xf3\xa2\xe8\xaf\xb9\x58\x1a\x5c\xb2\x28\xfa\x3b\x5e\xdc\xac\xf3\x42\x0d\x76\x30\xe9\x64\xe0\xd0\xb1\x41\xab\x20\x1a\xb1\xf9\x7d\xd4\xac\x2a\xb1\x77\x09\x55\xd5\x80\x8e\x1b\x0b\x78\x40\x09\x85\xc0\x97\xcd\x0c\x92\x63\x93\xa6\xd7\x8e\x30\x74\xa8\xc5\xda\x72\x26\x53\xaa\xe8\xea\x93\x8e\x58\x1f\xb7\xa5\x87\x4d\xa6\x2d\xf4\x52\xbd\xb9\x18\xf4\x51\xd5\x81\xb4\xb8\x66\xae\xe3\x1a\x5a\x3d\x55\xf5\xad\x73\xf0\x45\xc1\x2f\x52\x1f\x71\x35\x45\x01\x7b\xd5\xbf\x7d\xcd\x05\x71\x73\xeb\xfb\x82\x29\xf8\x05\x1e\x4c\xcc\x0d\x76\xfb\xac\xae\x41\x82\xf0\xda\x20\xc6\x69\x8d\x22\xc3\xe8\xb2\x1a\xed\x4d\x03\x1c\x58\xe5\x1e\x34\x57\xdc\x2b\x83\x34\xc9\x3f\x77\x57\xe2\x39\x93\x7f\x85\x6a\x8b\x08\xbb\x44\x70\x0b\xd1\x9d\xea\x3b\x8b\xf0\x33\x9f\x33\x39\xfd\x4b\x67\x95\x8e\xe4\xe7\x4c\x3e\xb8\xdf\x59\xb8\x23\xf9\x59\xc1\xb3\xa3\xe9\x7f\xf9\xb3\x49\x5f\x60\x4e\xbc\xe9\x8f\xf3\xf2\xef\x39\xbd\xae\xaa\x6e\x3d\xe1\x3a\x84\xd4\x67\x19\xc0\xe8\x6c\xd4\x88\xe1\xa4\x89\xd3\x96\x11\x24\xf0\x1a\xdf\x39\x01\x04\xbe\x37\xff\xf7\x6c\xf4\xdb\x64\xf4\xb7\xf7\xa3\xff\xe9\x0f\x7f\x8c\xff\xf4\xd5\x70\xfc\xef\x1f\xfe\xa3\xfa\x9f\x17\xf7\xf2\xb1\xa4\x5a\xfa\xd2\x49\x87\x59\x5d\x00\xe7\x8a\x41\xe1\x7e\x1b\x38\x50\xfd\x75\x4e\x8b\x55\x9f\x65\x5b\x1a\x79\x48\x8d\xe4\x2f\xf8\x35\x15\x8f\xb3\x92\x26\x1e\x3d\x58\xb6\xb9\xe7\xc7\x87\xeb\x79\xed\xda\x7b\xf6\xc4\x8c\x7e\x6a\x69\xcf\x48\x42\xc7\x3a\xd6\x3b\x72\xe6\xe1\x9c\x51\xcf\x83\xaa\x81\xc4\xf2\x50\x1b\x11\xb3\xb1\xbd\x48\x0a\x71\x98\x37\x94\xbd\x17\x1d\xba\x98\x12\xc2\xc2\xb9\x51\x15\x4e\x33\x6a\x9b\xed\xc8\xed\x01\x07\x44\x6d\x31\xa3\x1d\x0a\xf4\xce\x0f\x9f\x56\xd9\xd3\x78\xaf\x71\x3a\xda\x72\xa3\xd8\xd5\x40\x58\x9d\xce\x27\x0b\x4c\x75\xe0\x3f\xdd\x08\x75\x34\x5f\xc8\x3e\x7b\x95\x6d\xa9\x5a\xfe\x76\x93\xed\x11\xcd\xa5\x6b\xcf\x0f\xeb\xa4\xcf\x19\x05\x01\xd5\x8f\x25\x5d\x21\x87\xc2\x77\x3b\xec\x79\x58\x08\x9a\xad\x6e\xfa\xea\xff\x08\xa1\x5e\x5d\x93\x0c\x26\x75\xc3\x6b\xdf\x1d\x3a\xbd\xee\x7b\x2e\x94\x40\xba\x41\xc7\x9c\x15\x3c\x5b\x05\x41\x96\x13\x08\x50\xb1\x2f\x24\x44\x25\xe2\x8c\x86\x8e\xa2\xd1\xad\x48\xa8\x8e\x9b\x85\x0e\xbe\x07\xab\x4d\x7d\x92\x54\x5f\x35\x64\xc4\x82\xf8\x8c\x42\x39\x56\xa3\x7e\x58\x7a\x37\x38\x09\xc3\x5c\xad\xdc\x7a\x80\x20\xdd\x71\x8e\x6d\x38\x4c\x4d\x3c\xe8\x6e\x6a\xf0\xa5\x96\xef\x46\xd2\x17\x5a\x63\xa3\xee\xad\xa4\x7a\xf9\xfc\x92\x08\x61\x39\xbe\x80\xbe\xeb\x6e\x77\x0d\x95\x98\x7a\x49\xa7\x5e\x98\x8e\x47\x7c\x75\xd3\xa1\xf7\xa2\x0b\xa8\x2a\xcf\x59\x2e\x09\xc5\x74\xd6\x61\x28\x52\x97\x02\x4d\x46\x9a\xb2\xb1\x7a\x47\xe2\x58\x3d\x08\x1e\x60\xca\xcb\x80\x11\x84\xbc\x8a\xaa\x24\x54\xb4\xaf\x44\x1c\xdb\x57\xe2\xcb\x1a\xb0\xa5\xa1\x11\xff\x4d\x8c\xe3\xc6\x9b\xf8\x65\xed\x9d\x1b\x35\x74\xa7\x51\x92\x06\xaf\x50\x1c\xdb\x39\x26\x89\x24\xea\x55\x57\x9d\x2b\x80\x7d\xb4\x79\x89\xd0\x2c\xa9\x3b\xf0\x0e\x0a\x59\xa9\x5d\xd6\xaf\x1b\x6e\x2c\xb9\x7d\x57\x93\x79\x67\xd5\x05\x6a\x0d\x2c\xf1\x1f\x91\xe3\x73\xad\x2a\xae\x4e\xcc\xec\xe8\x88\x6c\x70\x87\x7a\x35\x3e\x2f\x6b\x6c\x56\x89\x8c\xb6\xae\x86\xfd\xa5\x02\x31\x4e\x6b\x68\xa4\x5a\x50\x88\x52\x87\xd4\x6b\x16\xd4\x2a\x5b\xb5\x30\x68\x96\xdf\xdb\x15\x59\xce\x4e\xd4\x2b\x53\x52\x49\x7e\x3c\x7f\x36\xfa\x6b\xe4\x8f\xe1\x11\xec\x50\xf8\x0d\x88\xfc\x67\xdb\xef\xa8\x83\xfe\x0b\x07\xcb\x0c\xe2\xae\x09\x65\xbb\x5d\x91\x6b\xc9\xcf\xbd\x4f\xa3\xeb\xeb\xeb\x91\xba\x0a\xa3\xbd\x28\x28\x5b\xf2\x15\x5d\x35\xe7\x09\xee\x10\xcd\x19\xd4\x37\x5b\xdd\xa1\x16\xb9\xb5\xac\xc3\x50\xd2\xc0\x35\x43\x38\x45\x1f\x36\x6b\x17\x68\x8d\xfc\xb0\x8a\x77\x56\xda\x35\x3f\x7f\x66\xc3\xc6\xec\xdd\x6d\xab\xc4\x2c\xf9\x5e\x21\x0b\x10\x81\x2a\x5b\xf5\x6d\xc1\xbe\xaa\xd5\xcf\xca\xbe\x9a\x72\x8d\x46\xdc\x3d\x02\x75\x20\xb5\x88\x1e\x1e\x2f\xef\xb0\x1f\x53\x1e\x6c\x8c\x7b\x66\x96\xb2\xaa\xba\x16\xc9\x5f\x91\xd4\xed\x47\x62\xbc\xc8\x6d\x90\x8d\xb3\x0f\xf6\x2d\xcd\x5d\xc2\x12\x33\x9c\xfb\x7b\x55\x8b\x94\x8e\xef\x95\xf5\x27\x68\xd3\x71\xeb\x8d\x62\xf0\x46\x61\xfb\x38\x81\xfe\x38\x45\x98\xfd\x8e\xcd\xec\xd6\x23\x6b\x3d\x3d\xa1\x03\x79\xa7\x61\xc8\xc8\xe4\x84\xd5\x82\x2a\xab\x27\x66\xd0\xb6\xf1\x5a\xf0\xed\xe3\x4d\x26\x1e\xf3\x15\xd5\x5e\x5e\xea\xbd\xfc\x95\xe7\x2c\x89\x22\xe3\x3b\xa6\x3d\xd2\x7f\xd9\x21\x02\x23\xd0\x8e\x43\x14\x1e\x1d\xb8\x6e\xf5\xeb\x64\x6c\x01\xec\xab\x73\xe4\x08\x81\xad\xad\x39\x02\x37\xee\x08\xfc\x5a\x72\xf6\x25\x35\xbe\x7b\xf7\xfa\xd5\x78\xa7\x2e\xbd\x39\xb5\x07\xcf\xc2\xcf\xa0\x5f\x0d\xa9\x36\x25\x19\xc4\xfd\x21\x65\x22\x6d\x70\x5b\x8b\x71\xce\xa9\x09\xc2\xac\x7f\x13\x31\x13\xc3\x08\xf7\xa3\xa1\x4c\xe5\x01\xfb\x4d\x6b\x25\x38\x12\x4a\x4a\x40\x2f\xce\xd5\x57\xdd\x2c\xc2\x5a\xbe\x08\xd7\x27\x56\xcc\x90\xb4\x39\x41\xe9\x9e\x59\x3d\x0a\x1d\x3f\x35\x68\x67\x93\x95\x47\x63\xe6\x6f\xb3\x5d\x93\xe4\x56\xad\xa3\xb0\x85\x92\x76\xba\xb2\x76\xe3\x86\xd5\x09\xab\x18\x2c\xb7\x43\x49\x00\x16\xd1\x31\xaf\xb7\xd9\x0e\x1d\x1b\x89\x00\xfd\x57\xc3\x9e\x76\x3d\x8a\x05\x16\x06\x37\x0e\x7a\xfc\x48\x6f\xca\x36\xb8\x9e\x2f\x82\xc8\xdd\x6d\xe4\x5b\x63\xb8\x20\x32\x00\xdd\x34\x45\xea\x84\x0d\x03\xe5\xf2\x9f\x69\xda\x35\x2c\xbb\x1b\xa6\x4c\x8a\xfc\x3f\xd5\xb2\x37\xe8\xb9\xc0\x72\x51\xb7\x1f\x10\x55\x45\x9b\xbf\x54\x93\x57\x1d\x23\xb1\x51\xdc\xe7\xd1\x93\xa7\x2f\x9e\x9e\x3f\x8d\x70\xf4\xcd\xd3\xf3\x08\x47\xdf\x3e\x7d\xf8\x24\xc2\xd1\xeb\x37\xe7\xcf\x5f\xbf\x7a\x17\xe1\xe8\xcd\xeb\x77\x2a\xfd\xcd\x8f\xe7\x91\x17\x7f\xf8\xca\x53\x79\x01\x00\x9c\x48\x22\xab\xea\xf6\x80\x00\x4d\xee\x19\xf9\x8a\x23\xd1\xae\x9a\x04\x4d\x27\xf5\x1b\x92\x31\xfa\xca\xed\x45\x41\xa8\xfa\xdf\x18\xf3\x08\xba\xa2\x4c\xe6\x59\x51\x12\xea\x7f\x61\x69\x91\x04\x2b\x3f\x32\x9f\x00\x5d\x8b\x84\xda\x6f\x64\x6e\xd4\x96\xca\x0d\x5f\x11\x6a\x7e\x98\x44\xbe\xa2\x2a\x89\xaf\x8c\x1b\x32\xcd\x95\x52\x44\x2f\xfc\xc0\x79\x55\x69\xcd\x06\x5a\xa3\x9a\x10\x1a\xd2\xfb\xc6\x01\xf9\xe5\x3b\x72\x55\x93\x71\x74\xb7\x83\xc2\xfe\x9c\xa4\xff\xa5\x1d\xf0\x86\x29\x51\x99\x6d\xe9\x88\x8b\xfc\x32\x67\x11\x1e\xb8\x59\x87\x88\x52\xf7\x1a\xc8\x23\x6b\x90\x08\x22\xcd\x6f\xd3\xa5\xfd\xd0\xa7\x82\x11\x31\x96\xfc\xc7\xdd\xce\xf2\x19\xf0\xd6\x31\x51\x18\x3a\x1b\x4d\x67\x2c\xb5\x08\x38\xac\xa0\x84\x3f\xb6\x2d\xf8\x59\x1b\x94\x99\x25\x95\xe6\x87\x29\x65\xd6\xd7\x98\xf4\xac\xa9\x10\xd6\x0a\x2d\x81\x41\x58\xfb\x0b\x37\x32\x38\xa9\x61\x2a\x8a\xe3\xbc\xfb\x64\x29\x2a\x0d\x1e\xb2\xac\x28\xf8\x35\x5d\xf5\xd7\x5c\xf4\xbf\x79\x7a\xde\xe7\xa2\xaf\x1a\x02\xd5\x61\x5a\x82\xc2\x70\x48\xdb\x25\x79\x18\x7c\x36\xa0\x69\xcd\x23\xe6\x71\x63\x44\xbe\x4d\x10\x88\xfe\x64\x12\xc5\x51\x07\x13\xc0\xd0\xb2\xb5\xd9\x82\x29\x4c\x22\x50\xdb\xb6\xdc\x95\xb1\xa0\xbb\x22\x5b\xd2\xe4\xde\xfb\xe1\xbd\x4b\x1c\xf5\x23\xd0\x93\x36\x8f\x3b\x89\xba\x0a\xf4\xa4\x65\x2d\xac\xa8\xc2\x7c\x7f\x7c\xfb\xdc\x79\xe3\x4b\x18\xc2\x1d\xa9\x39\x02\x67\x7a\xb2\x15\xe3\x56\x87\xec\xbf\x75\xc8\x17\x30\xf1\x9d\x97\x30\xbd\x65\x32\x93\xfb\xb2\xf6\xcc\x29\x4d\xca\xec\xfe\x64\x92\xda\x0f\xa3\x63\xff\x91\x78\x55\xce\xc8\xfd\xc9\xc4\xda\x09\x43\xca\xe9\x83\xc9\xc4\x6f\x54\xd3\x40\xf5\x6f\x60\x69\xce\xa4\x97\x9b\x46\xaf\xbf\x0f\x69\xa4\xd6\x21\xc7\xee\xce\x49\xf5\x7f\x55\x59\xa2\xaa\xde\x5c\x8a\x0e\x57\x1e\x74\x5c\x16\xbc\xd3\x33\xa9\x6a\xf9\x4a\xcb\x7c\x6e\xd5\xd5\x4e\x43\x5a\xf3\x80\x0e\xd8\x68\x0e\x5e\xf9\x82\x29\x93\x76\xe9\xa7\x5d\x7e\x61\x77\x97\x49\xd8\x07\xbe\xd5\x73\x4f\xbd\x55\xc2\xde\x72\x34\x16\x0f\x9b\x45\x48\xcd\xa2\x78\xeb\x84\xf0\x5e\x14\xa9\x5d\x1b\x35\xf6\xcb\x71\x8b\xa9\xa3\x9f\x27\x3d\x10\xb8\x85\xb6\xfb\x89\xdf\x69\x14\x1d\x7c\x56\x24\x9c\x11\x1b\x01\x4c\xbb\x05\xb8\x20\xf3\x07\x93\x29\x7e\x30\xb9\x8f\x1f\x4c\x1e\xe0\x07\x93\x7f\xc3\x0f\x26\x7f\x5d\xf4\x2e\xc7\x82\xae\x72\xd1\x8e\xd9\x92\xaf\x93\xd1\x94\x10\x72\xe1\x45\xfa\xf7\xd5\x96\x32\x76\xd9\x64\x96\xea\x01\xf5\xd5\xd9\x0e\x5d\x43\x37\x86\x5e\x2f\xca\x6d\xc1\x35\xc1\x98\xd2\x03\x84\x00\x1c\x3f\x79\xfd\xf2\xe9\xa7\x25\x05\xeb\x7f\x22\x83\x4f\x10\xb8\x41\xf0\xd7\x20\xd9\x30\xeb\xaf\x41\x3d\xd1\xaf\xdd\x85\x3f\x19\xcf\xb7\xe6\x51\x61\xd9\x96\x12\x69\x90\x4c\x13\xef\xda\xc0\x1d\x1b\x88\x1e\xfe\x36\x07\x76\x54\x39\x09\xda\xf0\x4f\xd9\xb1\x7a\x81\x23\x8c\xc6\x7c\x6a\x5d\x22\x88\x35\x7c\x84\x51\x28\x6a\x2d\x67\x73\x2b\x70\x0e\x4f\x59\x66\x40\x78\x1c\xdb\x5f\x56\x3c\xec\x02\x0f\x27\xed\x55\x4c\xb4\xe4\x8b\xae\xac\xc6\x0d\x4c\x25\x42\x1a\x41\xd1\x77\xfa\xe7\x97\x2f\xbe\x95\x72\x67\x44\x48\xbe\x8f\x35\x74\x6b\x64\xd0\x09\x3a\x94\x1d\xcc\x4b\x47\x22\x12\x7b\x06\xba\xae\x4e\xe7\xbd\x49\x28\x01\xae\xcb\xc3\xa2\xb0\x4a\x41\x46\x61\x28\x41\x1a\x92\x68\x78\x83\xa9\x07\x88\xc5\xec\x3d\x9b\xbf\x97\xfd\x85\x85\xc8\x06\xb8\xeb\x9c\x7b\xdd\xaf\x41\xe3\x1d\x48\x1b\xef\x80\x7e\x52\x7a\xda\x15\xbd\x16\xe1\xd8\x57\x20\x8d\x5c\xb6\x83\xfc\x0c\xe7\x1a\xa2\xa3\x43\x8f\x01\xf0\x8b\x84\x19\xff\x8f\x6f\x5f\x28\x38\x5a\xce\xc0\x4d\x86\x4d\x4a\x59\xc8\x64\xfa\x79\x64\x16\x7a\xa4\xca\x5b\x45\x51\xd7\x48\xb3\x85\xb4\xfe\xa9\xd6\xaf\x27\x12\x7d\xf3\x72\xcc\x14\x71\x51\x76\x71\x8c\x79\x93\x7f\xfd\x8a\xca\x6b\x2e\x3e\xda\x57\xb8\xbf\x86\x30\x89\x91\x6d\x40\x6a\x9d\x96\xff\x4a\x13\x70\x4a\xda\x0d\x7c\xe1\x61\x84\x36\x76\x94\x25\x99\xc5\x16\x33\x40\x49\x07\x13\x84\xa3\x9c\x2d\x8b\xfd\x8a\x2a\x5c\x24\xf3\x71\xb5\x59\x39\xbe\xce\xe5\xe6\xb1\x87\xdd\x0d\x26\x69\xc4\xb7\xb9\x6c\x95\x8d\xe3\xa4\xa3\xf4\x14\x61\xb7\xee\x6a\xaa\xb0\xf6\x1e\x03\xd5\x5b\x7a\x00\xbd\x9a\xa9\x83\x33\xb7\xa1\xdd\x52\x11\x60\xa3\x99\x4d\xd6\x67\xda\x28\x05\xe1\xfa\x0e\x27\xf5\x25\x6e\xb9\xb9\x30\xa2\xfb\x3d\x82\x95\x05\x94\x1d\xe2\x0b\x2d\x37\x0a\x38\xfb\x8b\xfc\x67\x42\x48\x09\x2c\x94\x9b\x77\x3a\x30\xbd\x6b\xb6\xd3\x4f\x81\x6b\xf9\xa0\xda\x2e\xd5\x79\x76\xd8\x45\x56\xbf\x85\x33\x05\xd6\x53\x2f\x01\x1d\xd0\xe1\xc3\xd8\xca\xa4\xc9\x60\x82\xe5\x18\xd4\xfc\x14\x12\xa3\x7f\x91\x0f\x58\x8e\xcd\x0d\x26\x05\x96\x56\x22\x4d\xae\xe0\xb7\x5e\x46\x72\xa9\x40\x67\x5d\x8a\x7a\xa5\xa8\x57\x0a\x53\xdb\xe8\x01\x25\xb7\x07\x6d\x1c\x66\x3a\x6a\xb3\x51\x20\xb9\x9f\x97\x80\x80\x1a\x4d\x83\xfe\xa8\xbf\xcd\x6e\x2e\x68\xff\x86\xef\x45\xff\x42\xf0\xeb\x92\x8a\xbe\xb6\xfe\x28\xfb\x99\xa0\x50\x78\xc9\xaf\xa8\xa2\x16\xfa\xf4\x8a\x8a\x1b\xb9\x51\x3f\x6f\xf8\xbe\xcf\x28\x5d\xcd\xcc\xdd\xe4\x7e\x90\x83\xcc\x23\xfb\xf9\x68\x84\xe9\xc1\xaa\x5b\x9e\xd3\x52\xce\x12\xff\xcb\x53\x85\xcf\x1b\xc1\x3d\x4d\x0b\x6a\xd9\xb9\x82\x25\xce\xb5\x74\xbb\x0c\x1f\x0e\xed\x62\x1b\xdb\x0c\xea\x19\x66\xb4\x23\x41\x38\x6c\x01\x90\x9f\x04\x05\xcc\xbe\x0c\x67\x08\xd3\x30\x02\x9c\x5e\x4e\xe0\x84\x50\x1d\x48\xd3\x8d\xc6\xf4\xab\xd9\x4b\x2d\xb8\x6a\x19\x2f\x73\xba\x00\xed\xc9\x40\x65\xf5\x5e\xf6\x6b\xf6\xe9\x88\xde\xaa\x1f\xbb\xd5\x8b\x5a\x6b\xee\xf9\xaa\xff\x1f\x75\x0b\xff\xd1\xbf\xd8\xcb\x7e\x2e\xfb\xd7\x59\xd9\x17\x54\x3d\xec\x10\xdd\xf5\x3f\x40\xf3\x7f\xe4\x15\x8c\xd4\x19\x45\x9d\x96\x21\x61\x54\x89\xae\x12\x97\x05\xbf\xc8\x8a\x99\xfe\xd3\x59\xa2\xa4\xc5\x7a\xa6\xfe\x4b\x35\xc3\xc4\xdf\xcd\x40\x09\x57\xef\xff\x87\x2d\x5f\xe5\xeb\x9c\x8a\x97\x19\xcb\x2e\x15\x59\xb7\xcb\x2e\xf2\x42\xe6\xb4\x24\x77\x96\xc8\x65\xc0\xc7\xf0\x36\xb4\xaa\x12\x4a\xa2\x07\xe3\xe9\x83\x08\xe1\xdb\xc3\xe1\x80\x92\x50\x91\x25\x5f\x27\xbf\xdb\x0f\x37\x6a\xf8\xe1\xa6\x89\x8e\x2f\x7e\xc4\xd6\xa4\xed\x8f\xdb\xb9\xbe\x73\x6e\xb9\x29\x3a\x01\x74\xb8\xaa\xf4\x82\xa3\xf1\x63\xbe\xa2\x2f\x73\x78\xa4\xb4\x93\xfe\x63\x6b\x67\x90\xe2\xec\x2a\xbf\xcc\x24\x17\xe3\x7d\x49\xc5\xc3\x4b\xca\xa4\x42\x06\x5c\xea\xae\xc8\xe4\x9a\x8b\x2d\x16\xe4\xde\x25\x5d\x7e\xe4\xef\xef\xbd\x5f\xd5\x82\x7f\xcc\xc8\xbd\x97\xef\x9e\x3f\xed\xbf\x5f\xdd\x73\x69\x39\xb9\x77\x2e\x72\x05\xf9\xdf\xdf\x4b\x66\xe9\xfc\xdf\x46\x7f\x5b\x54\xef\x57\xb7\xf7\xf1\x01\xbd\x1f\x8f\xbf\x12\x57\x3a\xa6\xc4\x3d\xf0\x41\xa2\x6a\x70\xc2\xaa\x2a\xc7\x19\xe1\x71\x9c\xb0\x59\xcb\x61\xce\x4b\xa0\xba\xff\x92\xe6\xf3\xe9\x02\xe1\x92\xdc\xd3\x61\x48\xde\xdf\xab\x3b\xdd\x93\x32\x8e\xef\xfd\x20\xd5\xf8\x86\xef\xc7\xef\x57\xc3\x3a\xaf\x20\xf7\x1e\x6f\x04\xdf\x52\xbf\xc2\x92\xdc\x7b\xbd\xa3\x22\xf3\xd3\xd6\xe4\xde\xc3\xdd\xae\xa0\x7d\x45\x53\xee\x25\x15\x26\xab\x5e\x8f\x2b\xca\x56\x5c\x20\xbc\x21\xf7\x5e\x66\xcb\xfe\xeb\x77\xfd\x9f\xfb\xd3\xf7\xab\xf7\x4f\x92\xf9\x5f\xf5\x34\xdf\xaf\xd0\xfb\x27\x75\x93\x2b\x72\xef\xcd\x26\x63\x92\x6f\xbf\x7b\x57\xa7\xee\x4c\x47\x7a\x1e\x2e\x3d\x8e\xef\xbd\xe4\x17\x79\x41\xdf\xdf\x7b\x7f\xed\x4d\x60\x4b\x76\x55\x75\xef\x21\x5b\x09\x9e\xaf\xaa\x6b\x7a\xf1\xfa\x5d\xf5\xa8\xc8\x96\x1f\x1f\x51\x21\x6e\x2a\x98\x47\xff\x65\xce\x72\xfb\x93\x5f\xe4\xd5\xf3\xa7\xba\x2d\x6f\xb7\xae\xa0\x9d\x97\xd9\xd2\x34\x2d\x11\xbe\x21\xf7\xde\x5f\x3c\x16\xaf\xdf\xbd\xbf\xa8\xfb\xbb\x24\xf7\xae\x73\x66\x2b\x4a\x84\x2f\xc8\xd2\x59\x3c\x25\xf7\xfe\xae\xc3\x86\xbc\xbf\x97\xbc\x5f\x7d\xa5\xd6\xfa\x2b\x74\x0f\xf5\xd4\x23\x7e\x41\x5e\xed\xd5\x8d\x4b\x2e\xd4\x4e\x21\x7c\x11\xc7\x17\x67\x64\xfa\x75\x1c\x27\x4b\x32\x98\x62\x85\x35\x68\x48\xff\x81\x5c\xc5\x71\xb2\xaf\xaa\xa5\xda\x72\xe0\x42\x5d\x54\xd5\xc5\xe9\xf4\xfe\x78\x3a\x45\x08\x5f\x13\x51\x55\x3c\x8e\xb3\x33\xf2\x37\xfc\x54\xd5\xfd\x44\x06\xd3\x46\x68\x73\x63\x15\x20\x1b\xe1\xb2\xdf\x39\x83\x2c\x05\xf5\x74\x49\x4d\x91\x70\xed\x11\x8d\x48\x22\x67\xd7\x3c\x91\x08\xf4\xc2\x79\xf2\xb3\xd0\x71\x8a\xf0\x73\x8f\x61\x6e\xac\x78\x5a\x72\x49\x11\xc7\x89\x96\x73\x5c\xe5\x89\xc0\x9a\x3f\x84\x35\x4f\x68\x5c\xe4\x8c\xbe\xa3\xbb\x0c\xd8\x95\x96\x35\xb5\xe2\x4b\x13\x68\x49\x7b\xef\x7c\x37\xce\xd9\x6e\x2f\xdf\xc9\x9b\x82\x96\x73\xe9\x7d\x2d\xb4\xec\x07\x9b\x28\x4c\xab\xbc\xdc\x15\xd9\x0d\x54\x7a\x9d\x50\xb0\xa8\xe9\xe5\xe3\x6b\xa1\x10\x64\xe1\x5f\x76\xa0\xe7\xdf\x98\xda\x2f\xcd\x5f\x3d\x9c\x9f\x54\x69\x88\x49\x95\xf8\x8d\xba\x56\x40\x57\xf4\x55\xb6\xa5\x43\x12\xf5\xeb\x26\x47\x2a\x3f\x02\xcf\x03\x7b\xc9\xc1\x9f\x43\x1c\x0f\xb6\x5a\xe9\x68\xb7\x97\xce\xe7\xc5\xb7\xb6\x37\x4b\xb5\x53\x72\xfb\x91\xde\xbc\xcc\x76\x65\x3a\x5f\x60\xf5\xec\x17\xd9\x0d\xfc\x56\x2b\xf5\x0d\x65\xe9\x04\x52\xaf\x45\x2e\x41\x17\x79\x45\x8b\xec\x26\x67\x97\x8f\x8a\xbd\x00\x2c\x4a\x25\x42\xf3\x74\xa5\x7e\x96\xfb\x1d\x18\xc2\x3c\x5d\xe5\x12\xd4\x2b\x77\x59\x29\xe9\x73\xb6\xe4\xdb\x9c\x5d\x82\xbe\xe5\x5e\xfa\x9f\xda\x7d\x44\xce\x2e\x81\x26\x52\x3d\x88\xec\xf2\xd2\xfb\xde\xe4\x97\x9b\x22\xbf\xdc\x48\xcd\x53\xe0\xf8\x23\xbd\x79\x47\xff\xa9\xd5\x99\xcb\x1d\x5d\xe6\x59\xf1\x78\x93\x89\x52\x4b\x26\x8c\x57\x40\x09\x1e\x1a\x8c\x34\xa0\xe8\xe7\xac\xaf\x4e\xe8\xe9\x74\x1a\xc7\xdd\xda\xea\x7b\xb7\xd8\x7a\xc9\x04\x2d\xa9\x4c\x06\x13\x74\xc0\xf7\x27\xe1\x8b\xe2\x9c\xc8\xea\x0a\xbd\x5f\xf2\xc4\x7a\x08\xa3\x02\x47\x5b\xae\x16\x83\x5f\xb3\x08\x7f\x2f\x13\x8a\xf7\xea\x70\x35\xca\xac\x2e\x0a\xe3\x1c\xcb\x0c\x6b\x06\x45\x7d\xd6\x3e\x58\x4e\xe9\x50\x05\x96\x58\x2b\x85\xbe\x20\xf9\x3a\x11\x71\x3c\x58\xea\xcf\x38\x1e\x64\x22\x71\xc3\x81\xf2\xdf\xe6\x89\x73\xad\x4d\xc7\xeb\x9c\xad\x7e\xe2\x62\xf5\x50\x26\x02\xf5\x1e\x51\x55\x98\x2f\x31\x1b\x67\x6c\xb9\xe1\x02\x6b\x52\x0c\xa9\xc7\x33\x34\x02\xb1\x91\x12\xa0\xb9\x03\xea\x5d\x57\x55\x63\x22\x4b\x1d\x8f\x66\x4b\xd9\x3e\x0a\x86\xff\x52\x0f\xee\x60\xee\xa8\xa2\x85\x29\x5b\xa5\x93\x43\xe8\x37\x43\x82\x67\x9b\x2b\x7a\xce\xf7\xcb\x0d\xdc\xd6\x23\xb1\x1e\xfd\x72\x3a\x90\x1a\x9e\xd2\x07\x08\x27\x8c\x04\x79\x68\x4c\xd9\x8a\x0c\xd5\x59\x79\x92\x49\x1a\xea\xa6\x19\x38\xa4\x81\x98\x1c\x17\x74\x6d\xad\x27\x06\x13\x07\x4b\x54\xea\x88\xc2\x1f\xac\x1a\x97\x7c\x37\x02\x1f\x6f\x4e\xe2\xf8\x95\x18\xb2\xaf\xd8\xd9\x9f\x27\x93\x43\x63\x39\xa4\x1a\x42\x29\x33\x45\x4e\xb8\xd1\xe7\xde\x66\xe6\x6a\xbb\x1a\xe8\xc9\x74\x00\x8a\x2b\xfb\xe5\x86\x5a\xdf\x50\x76\x54\xd3\x9e\x3d\x6c\x26\x7f\x3e\x59\x78\x1a\x4c\xd9\x2a\xdf\x97\x3f\x9f\x92\x69\x1c\xdb\xaf\x5f\x4e\xc9\xf4\x90\xe4\x08\xdd\x82\xd3\x2c\xbb\x94\xc2\x62\xed\x6e\x65\x7a\xe1\x92\xde\xc2\xa8\x53\x8e\x15\x7d\x04\x57\x79\x27\xe8\x55\xca\x47\x4c\x2d\xe8\x29\x79\x30\x99\xcc\x98\x11\xfe\x4d\x09\xc9\x1b\x03\x56\x10\xcb\x6f\x0f\x96\xaf\x2e\x35\x9f\x2c\xc0\xd3\xde\xcf\x38\x2c\x25\xf9\xae\x5d\xe8\x17\xe0\x24\x74\xad\xac\x1a\x5b\x84\x8f\x1d\x8b\xd6\x18\x60\x2a\x20\x0b\xe9\x6e\x8e\xb2\x95\xd7\x5a\xed\xdd\xc5\x6f\xc4\xf8\x31\x51\x57\x4c\x62\x81\xac\x35\x20\x83\x09\xc6\xf1\x80\xe9\x5e\xe2\xd8\xae\xeb\x88\x8d\x61\x29\x4f\x1f\x4c\x26\xc6\x6a\x15\x67\xe0\x62\x93\x8b\x55\xa9\x20\x55\x38\x4a\x1c\xa9\x39\x47\xa8\xc7\xc9\x80\x8d\xd5\xa2\x57\x55\x99\x30\xac\x7f\xeb\x50\xcb\xbf\x52\xa0\x51\x52\x53\xa0\x55\xca\x14\x0d\x6e\x7a\x86\x52\x53\x75\x45\x93\x0c\x9e\x17\x3c\x41\xf8\x85\xbd\xfd\x2e\x75\x38\xc5\x13\x84\x9a\x2e\x88\x12\x6e\xa1\x03\xd7\xd0\x01\xd7\xae\x93\xbe\xcd\x13\x81\x0e\x79\x72\x6c\x5d\xb5\x4a\x7d\x84\xf3\x56\xb6\xfe\xd5\xd8\x42\x9b\x3d\x5e\x16\x39\x65\xf2\x5b\xaa\xa0\x7d\x1c\x27\x3b\x00\x21\x75\xb6\x73\xc2\x88\xf0\xb6\x33\xeb\x85\xba\xb2\x83\x09\xc2\x3f\xe4\x09\xad\x3b\xa3\xa8\x63\xa0\x00\xa5\xaf\x37\x94\x16\x21\xdc\xba\xb0\x70\xab\x59\xe1\xc9\xeb\x97\x2f\x55\x9d\x77\xcd\x29\xb4\x2b\x99\xe7\xfa\xc8\x74\xed\x63\xee\xa6\x43\x9a\x69\x6a\x1e\x64\xa2\x29\x60\x91\x5d\x5a\x3b\xea\x52\x81\x50\x49\x45\x37\x8c\xfe\x09\x60\x34\xbc\xd6\xdd\x05\x1a\xec\x98\xd6\x93\x32\xb0\xca\x24\xe6\xdd\x68\x98\x57\x3c\x31\x9f\xcf\x44\x76\xa9\xa3\x31\xf7\x84\x34\x88\x0e\x76\xaf\x0f\x0c\xf8\xf1\x5e\x94\x5c\x80\xb5\x79\x3b\x99\xbc\xe4\x49\xb4\xca\xaf\x22\x8d\x87\x45\x1e\x1a\xb3\x84\x02\xa5\x8f\xd9\xa8\x7a\x26\x39\xf2\xbb\x01\xe4\x6d\x97\x2d\xe9\x38\x67\x25\x15\xf2\x11\x5d\x73\x41\x3b\x3b\xf4\x6a\xe9\x96\x9e\xe4\x57\x08\xf5\xde\xf0\xee\xd2\x4c\x3b\x65\x41\x18\x16\x14\x1d\xb0\x06\x8c\xfe\x92\xb6\x3d\x0b\x2b\x6a\x68\x40\x35\x4a\x35\xf6\x31\x98\xaa\x72\x00\x77\xb4\x16\xa7\xd3\xc9\x04\x05\xf6\x7a\xd0\x09\xc8\xad\xed\x36\x35\xdf\x72\xb3\x27\xe0\x36\x7b\x95\xc9\xec\x5c\x64\xac\x5c\xab\xb3\x42\xe5\x93\x4c\x66\x49\xa4\x5d\x4a\xd2\x86\xcf\x2e\x38\x3d\x7e\x79\xba\x5e\xd3\xa5\x7c\xa8\x25\x91\x04\xdc\xde\xbd\x04\x78\xda\xd1\xae\xc8\x2e\x9f\x6f\xb3\x4b\xaa\x1e\x2b\x7b\x54\xd4\xbe\xe5\xdb\x4b\xb3\x6f\x7a\xf3\xac\x3b\xd6\xb4\xbf\xce\x3f\xd1\xd5\x49\x5f\x41\xc5\xb4\x3f\x39\xe9\x4b\xbe\x53\x7f\x23\xd4\x13\xe3\x52\x2c\xb5\x2b\xf0\x34\x57\x8d\xde\xbb\xcc\xd7\x27\x17\x59\x49\xff\xf2\x67\xfc\x76\x52\x7c\xf3\xfa\x49\xb1\x79\xf8\xc3\xc3\x47\x0f\xd5\xbf\xc7\xdf\x7e\xfd\xe8\xe1\xd3\xef\x1f\x3e\x7c\xfa\xf0\x05\x24\xa8\xf4\xa7\x0f\x1f\x3e\x7c\xfe\xf8\xfc\xe1\xd3\x87\xaf\xaf\x09\x89\xb0\xa2\x44\xc4\xf8\x3a\x5f\xc9\x0d\x11\xe3\x0d\x00\x0c\x32\xf5\x36\xda\xde\x27\xdf\x6f\xaa\x40\x58\x8c\x3f\x80\xaf\xd6\x31\x07\x87\xaf\x00\x4a\xee\x98\x7d\x22\xf0\x44\xc1\xcc\x65\x1c\x0b\xcf\x57\x44\xe0\x62\x14\xd4\x8f\x4d\x60\x9e\x95\xe0\xbb\x14\x10\xb9\x8d\x40\xb8\xa0\xd9\x15\xed\xbe\x8a\x2b\x01\xd6\x44\x16\x57\x35\x28\xe7\x25\x95\xcf\x72\x5a\xac\x12\xa4\x50\xca\x3d\x8e\x3e\xd2\x9b\xfd\x2e\x84\x34\x0f\x85\x17\x09\x08\xc0\x8d\x2e\xe7\xe1\x9b\xaf\x0d\xbe\xa9\x33\x00\x1b\x37\x39\x1f\xeb\x1c\x00\xe5\x11\x7e\xca\x93\x73\x01\xc6\x70\x3a\xf9\xa2\xd8\x0b\x48\x7d\x0c\xa9\x07\x43\x2f\x78\xf0\x2b\x5f\x27\xdf\x72\x7b\x28\x7f\xc9\x8d\xdb\x0a\x60\x18\xe7\xbf\x85\x8f\xb3\xd1\x58\x00\xb5\xff\x6e\xac\x8e\x6a\x51\xfb\x6f\x3c\xe1\x02\x1d\x30\xdc\x0e\x3d\x2b\xdb\xac\x1e\x90\x57\xe5\x37\x35\x36\x55\xe8\x5b\x88\x83\x0b\xbc\x91\x43\x82\xf0\x23\xe9\xd3\x36\xcb\xbd\x78\xbd\x1b\x83\xed\xd0\x8f\xbb\x95\xa2\x73\x06\x13\xfc\x21\xd7\xb2\x54\xd1\xa2\x94\xaa\x6a\x3f\xde\x64\xe5\x33\xfd\xbe\xcd\xbc\xc1\xea\x05\xd2\x2d\xdf\x9f\xa0\xf4\xb1\x30\xdd\xfc\x43\xa0\x7f\x88\xa6\x42\x51\x81\xe2\xf8\x1f\x62\x5e\x2c\x8c\x7d\xe9\xbc\x58\x60\xca\x50\xef\xef\x8e\xca\x5b\xe7\x2c\x2f\x37\xcf\x59\x0e\x86\xfd\xf5\x97\x51\x24\xb4\x14\xcb\x86\x4c\x4e\x36\xa7\xdc\x59\xc3\x0e\x87\x1b\xc4\xd9\x7c\x63\x88\xce\xde\x8f\x76\xb6\xa5\x6a\x26\x24\x1d\x23\x45\x3a\x6f\xf3\xdf\x68\x41\x2f\x73\xe0\x9d\xdd\x44\x84\x5c\x52\x69\x58\x25\x2b\x20\x5f\x93\x1c\xaa\x29\x58\x08\x3a\x6c\x6f\x29\x5b\x01\xd3\x17\x0c\xcd\x4c\x96\xf5\x6f\xec\xe7\x93\x48\x2d\x5d\xe4\x21\xd6\xaf\x6d\x68\x35\x13\xdd\xcd\xc5\xf4\x80\x63\x4d\x18\xce\xcd\xbb\x76\x91\x89\x67\x39\xd8\x4f\x1d\x7f\x03\x5c\xc9\xd1\x1a\x8a\x46\xa8\x5d\xbd\xe1\x54\x71\xb9\x1d\x31\x2e\x47\x46\x3f\x37\xc2\x91\x14\x7b\x0a\xf5\x2e\xf7\x52\xd2\xcf\xf7\xa9\x8b\xf9\x1d\xfa\x15\xbf\xb8\x37\xb3\x68\x77\x3d\x70\x20\x2b\xc6\xd6\x69\x62\xce\x59\xbb\x7c\x13\xb0\x0a\x5a\x80\x3f\x81\x93\xfe\x6f\x23\x90\x4d\xa7\xfd\x29\xb4\xe1\x1e\xb3\xcf\xbf\xa8\x50\x7e\x4b\xb3\x72\x2f\xe8\x1d\xa5\x4d\x09\x37\x99\x97\xbf\xbb\x06\x3c\xc9\x75\xf9\xb9\xeb\x35\x6c\xb1\xb1\x02\xfe\x64\xea\x75\x5c\xdc\xb1\x14\x7c\x2f\x55\xa9\xb4\xcf\x38\xd3\xbd\x2b\x88\xec\xed\xf1\xdc\x1f\x83\x1b\xd9\x22\x18\xbc\x4a\x2e\x23\x74\xbc\x1f\xbd\x55\xf9\x6f\x41\xc3\xa6\xab\xb0\x29\x28\x54\x17\xff\x09\x5e\x26\x1d\x6d\xce\x3c\x4f\xcf\x14\x2c\x6a\x1e\xc2\x66\xc7\xd6\xa7\xf9\x49\x5f\x57\x4a\xfb\xd1\x30\xe7\xc3\x68\xf7\xe9\xa4\x0f\xaf\x5d\xda\x9f\xee\x3e\x9d\x78\x47\xb4\xfc\xec\xb1\x2e\xdd\xe6\x7c\x03\xdf\x76\x58\x16\xb3\x0d\xa6\x06\xa3\x6f\x8c\xb9\xee\x6b\xd1\x71\x53\xbd\xfb\xd9\xba\x2a\x32\xbb\x78\xae\x4e\x6c\x84\xa3\x91\x3e\xb3\xe6\x5d\x0e\xfb\x0c\x2f\x77\xe3\xf6\x79\xad\x07\xdd\x47\x48\xb3\x4e\xfe\x0a\xf0\xca\x0c\xd0\xc0\xab\xdf\xa0\x57\x32\x9a\x06\x43\xf3\xdd\xcf\xbf\x05\x8c\x61\x82\x70\x59\x55\x22\x8e\xb7\x55\x95\x78\x45\x01\x81\x73\xfe\x74\xe0\x01\xf3\x31\x89\x59\xf0\x95\xb8\x59\xa1\x94\x7a\x1f\x6a\xba\x57\x39\xbd\x7e\x26\xf8\x96\xe8\x9f\xe7\x9c\x28\x98\x2f\x4a\x89\xf3\xb1\xa0\x3a\x94\xca\xdf\xeb\x32\x7e\x52\x50\x56\x55\x26\xf3\x05\xd4\x52\x60\x58\x17\xb1\x3b\x49\x3f\x49\x2a\x58\x56\x98\xcb\xb5\xb2\xe9\xaa\x96\xf6\x6c\x4f\x26\xea\x08\x64\xa5\x54\xaf\x84\xa6\xaf\x48\x9d\xa0\x4f\xeb\xa4\x97\x8f\xf7\xf0\x56\xbe\xc8\x19\xd5\xcc\xe1\xd2\x36\xc5\xe0\x3e\x3c\xca\xcc\xc9\xce\xc7\x17\x99\x70\xed\x5c\xd8\xe4\x89\x0f\xaa\xcb\xc7\x45\xbe\xdb\x69\xbb\x25\x7d\xfe\x5e\xed\xb7\xb6\xba\xf9\x7c\xce\x18\x15\x8d\x34\xe0\xe5\xd9\x7e\xb3\x22\xbf\x64\x3f\xe5\xab\x4b\x2a\x4b\xdd\xd0\x32\x5b\x6e\xe8\x4a\x15\xb2\xf5\x74\x8a\x42\x82\xdd\x88\x74\xd2\x1b\xbd\xd7\xdf\xda\xc6\xb6\xd9\x27\x35\xb5\xc6\xa7\xb6\xd4\x82\xb1\x9b\x94\xc7\x20\x50\x36\x03\x07\x12\xf1\xc9\xcf\xc4\xfe\xfa\xc5\xfe\x7a\xa7\xc8\x82\x9f\x83\xaf\x5f\xdc\xdd\xda\xe4\x6b\xa9\xeb\x97\xb4\x78\xc6\x85\x09\xdb\xfc\x92\xb2\xbd\x9b\x5a\x83\x9f\x85\x19\x18\xbb\x07\x8a\x7f\x0f\xb5\x1b\xb2\x15\x5f\x6a\x05\xc7\x77\x0a\x47\x7c\x09\xee\x0b\x2d\x83\x1c\xd7\xd9\x3a\x88\x08\xc2\x10\x0e\xcb\xb5\xf1\xb1\x6e\x23\x94\xb7\x42\x32\x50\x2c\x0f\xd7\x12\x0c\x91\xfc\x4f\xe3\x6c\x9f\xea\x7b\x53\x9a\x5c\xf5\xd3\x38\xce\x47\xa6\xe7\xb5\xe0\x4c\xe6\x10\xef\x03\x3e\xe1\xc8\x72\x85\x6e\x2a\x74\x0e\x5b\xa2\xc8\xf0\x93\x87\x43\x4c\x35\x76\x16\xc7\xdf\xc9\x60\xa0\xe7\x35\x6f\xf5\x95\xac\x69\x20\x84\x55\xd3\x66\xb6\x01\xaa\x83\x19\x11\x71\xfc\x32\x93\x1b\xb5\x73\xc9\xd7\x1e\xfe\xdf\x60\x29\xc0\x51\xb9\xf7\xdc\x6f\x75\xf4\xc0\xe9\x6c\x35\x18\x75\x8f\x98\xe1\x90\xe4\x8e\x54\x9b\x38\x91\x77\xbe\x56\x57\x5c\x1f\x48\xe7\xb7\x25\x23\x93\x93\xec\xd4\xa5\x5b\xa4\x2d\x1b\x0e\x91\x4b\x9c\x67\x0b\x03\x55\xe3\x38\xe1\x43\xd2\x91\x51\x9b\x34\xcc\xf8\x30\x81\x79\x2d\x69\x5e\x24\x39\x20\x60\xa6\xd5\x7b\x0c\x55\xd5\x14\x7d\x25\x53\x3e\x94\x87\x7a\xf5\x1e\x07\x9c\x69\xbe\xc4\x82\x9c\x83\x7a\x57\x7b\xd7\x75\x29\xad\xfc\x35\x20\xd4\x0d\xeb\x5d\x6e\xc8\x8a\xba\xd5\x97\xe6\xf0\x1c\x93\x43\x90\x3b\xf2\x3c\x05\xa5\xf2\xab\xe5\x76\x54\x8e\xde\xbf\x03\x05\xa5\x08\x0d\xeb\x0d\x95\x1b\xea\x17\x4d\xfe\xbd\x7a\x5f\xa2\xf7\xe5\x57\xa0\xc9\x04\xb5\x22\x84\xdf\x85\x27\xe5\xad\x1a\xd5\x9b\x84\x22\x0c\x47\x08\x77\x13\x17\xff\x04\x7d\xf5\xfb\x13\xaf\xe2\x9b\x0e\xf6\xbd\x7d\x3b\x82\x63\x66\xd2\x7a\x6f\xb9\x22\xcf\xed\x3e\x6b\xe3\x18\x51\x23\xe5\xb5\x6a\xd4\x9c\x2d\xb0\x82\xd8\xfe\xc3\xf0\xb9\x97\x59\x3d\xee\x08\xf5\x9a\x28\x09\xd3\xa0\x37\x22\x24\x87\x5b\xe7\xb3\x3c\xcc\x13\xce\x31\x37\xef\x99\xa6\x81\x1b\xa5\x2c\xa0\x55\x07\x05\xc2\x92\xa0\x83\x34\xe5\x9d\x98\x6a\x16\x45\x69\x04\xd8\x13\xfe\x35\x58\xdc\x5f\xef\x58\x23\x43\x37\x43\xe3\x3d\xef\xb6\x29\xac\x21\x88\xdf\x02\x1c\x2c\x09\x7d\xd7\x2d\x3f\x31\xfc\xee\x09\x71\x87\xae\xbe\x60\xce\x54\x09\xf6\xc1\x3b\xf0\x98\x11\x7a\x22\xc9\x2b\x96\x30\x74\x82\x6e\x19\x49\x72\x78\x19\xd9\x2a\x99\xe0\xc1\x04\x21\x30\x4a\xd2\xfc\x4d\xa1\xee\x15\x7c\x2e\x37\xa3\x7c\x2c\xf9\x78\xb9\x39\xa8\x96\x75\x1b\xcf\x4d\x1b\x86\x4e\xf1\x1a\xe9\x89\x11\x61\x7e\xaf\x23\xd7\x8e\x6a\x34\x61\xc0\xa5\x86\x4e\x50\xa3\x98\xee\xc4\xde\xdc\x7a\xb6\xaf\x3a\xd6\x11\x1b\x28\xd9\x93\xee\x31\xba\xce\x13\x81\x85\x06\x9b\x8a\x40\x0c\x5f\xa5\x27\x89\x4b\xf1\x32\xdd\x03\x35\xc1\xa2\xfb\x7a\x0b\xf2\x04\xbc\xea\x9e\x35\x1a\x04\x16\x79\xd8\x85\xa8\xdb\x25\x34\xb8\xfc\xcf\xeb\x19\xdc\xf0\x84\xba\x8b\x72\xec\xc0\xa2\x93\xd1\x14\x7c\x3f\x52\x7b\x0a\x55\xf2\xcc\x55\x24\xee\x57\xed\x15\xed\x48\x53\x0b\x94\xca\xb3\xd1\x14\x7c\x78\x78\x6d\xc1\x7d\x68\xb7\x66\x0d\xb2\xb1\x97\xa4\xbd\x60\x49\x3c\x45\xde\x8c\x5e\x74\xef\x89\xec\x3a\xdf\x98\x11\x00\xc1\x82\xef\xd9\x4a\xbf\x08\xe6\xd0\x0e\x0b\xff\x21\x71\x0e\x09\x7c\xee\x75\x7a\x84\xab\x8d\x15\x4e\xe6\x8a\xd4\x20\xd3\x2b\xa1\xeb\xc1\x10\xd2\x16\x87\x5b\x8f\xcc\x7b\xd4\xda\x1d\xe9\x22\xaa\x1f\x5b\x20\xec\x46\xe7\x5f\x64\x42\xdd\xd1\xb4\x06\x79\xc0\xc0\xd3\xf0\x65\x26\xd2\x09\x5e\xf1\xa5\x19\x28\x33\x63\xb2\x9f\xc3\xb5\x82\xba\x43\x59\x23\x81\x38\xc4\x0f\x53\xd9\x40\x18\xb1\x5e\x5f\x9d\x29\xbc\x57\xeb\x99\xf5\x70\xac\xb9\x36\x5b\x27\x7b\x87\xef\x2b\x2a\x64\x17\x49\xe7\xd1\x4e\xdb\x9c\x8d\x6a\xca\x48\x11\x73\xfe\x91\xba\x72\xd8\x68\xe4\x04\xf5\x1b\x2e\xf2\xdf\x3e\xd3\xaa\xa5\xbe\xa6\x93\xc9\x1f\x4f\xfa\xaa\x0f\x97\xd2\xee\x64\xe3\x75\xd2\xa3\x09\x43\x18\xe2\x1b\xfc\x92\x27\xac\x53\x02\xc0\x1a\x72\x0e\x99\xb0\x5a\x16\x80\x23\x35\xe9\x7c\x99\x15\x91\xe1\x84\xe5\x9d\x8d\xe4\xfe\x6e\xaa\x36\x72\x5f\x06\x12\xc1\x24\x39\x93\xa6\x19\xbd\xba\x1b\xba\xfc\x48\x57\xff\xa0\x82\x6b\xd4\x79\x30\xad\x49\xa8\x7a\x69\x2c\x1c\xcf\x99\x41\xa7\xdd\x56\xd4\x39\xba\x7e\x34\xfd\x2b\xbc\x2d\x6e\x37\x7f\x4b\xd0\x6d\xfd\xf5\x6d\x88\x3b\xd4\x84\x41\xf0\xaa\xd5\xc9\x3a\x12\x50\x82\x5a\x68\x1c\x64\x66\xab\x15\x78\xad\x8a\xe3\xe7\x3e\xe3\xde\x8a\x5a\xee\xac\x83\xba\xdb\x34\x0a\x1e\x2e\x41\x21\xd6\xc5\xbc\xbe\x11\x2e\xc3\xe8\x7b\x84\x86\x77\x4d\xbc\x27\x90\x43\xc8\xae\x0e\x35\x41\xab\x65\x44\x81\x9a\x80\xcf\x11\x35\xe8\xb2\x51\xa9\x38\xa6\xad\x40\x1b\xda\x0a\x46\x32\x77\xc0\x20\xeb\x94\x5f\xc6\xb2\xf2\x14\x1e\x75\x38\x4d\xef\xd4\x10\x22\x66\x5a\xc8\x86\xd2\x9d\x91\x6e\x61\xfa\xd9\xbd\x79\xf1\xfb\xf7\xa6\x3e\x30\x8f\x7c\x13\x20\x05\xaa\x91\xf3\xdd\x69\x1b\xb0\xa4\xa6\x42\x0a\xfc\x44\x7d\x54\x7b\x3f\x6a\x61\x96\xc5\x25\x72\x32\x39\xc9\x4f\xff\x1c\xc7\x62\xd0\xd1\x46\x55\xb1\x41\x57\x2b\xda\xed\x60\x57\x0d\xf5\xb2\x75\x11\x22\x71\xfc\x9d\x42\x43\x55\xef\x30\x6c\xfc\xe5\x43\xae\x67\xff\xa3\x2f\x96\xab\x5f\x27\xd0\xc9\xaf\x97\x4d\x53\xe8\xe0\xc7\x24\x40\xbb\x02\xbe\x46\x22\x6a\x9a\x9c\x8d\x21\x0e\x9e\xc6\x03\x71\x67\xa5\x47\x5c\x4a\xbe\x35\xb5\xcc\xa5\x67\xe3\x0b\x48\x75\xf5\x7c\x8e\x50\x10\xe9\xcf\xd4\xb6\x15\x54\xf9\x7e\xc9\x8b\x7c\xd5\x97\x22\x63\xa5\x16\x9b\x44\xd8\x8c\x03\xd4\xc8\xa1\xe0\x2c\x11\x6d\xbe\x6e\x80\xa3\x46\x17\x05\x5f\x7e\x84\x41\x77\x96\xdb\x84\x43\x75\x33\xec\x2c\x7c\xed\xaf\x86\x46\x8a\xd3\xcf\x0e\x40\x0d\x5b\x37\xee\x6f\x3d\xa8\x47\xeb\x97\xf2\x15\xfd\x24\xcf\xf9\x3b\xdb\x8a\x5f\xca\x7f\x4f\x13\xd1\xe0\x28\x1f\x99\x67\x47\xa1\x23\x93\xec\x28\xa9\x67\x68\x71\x19\xd8\x7d\x37\xcf\xbb\x7a\xf7\x30\xf4\x9f\x1a\x01\x07\xac\xb6\x83\x18\x4b\xbe\x9b\x39\x4a\x5b\xa1\x9d\x92\xef\x50\x4a\x3b\x84\xf3\x3d\x83\x37\xad\x0b\xae\x10\xef\xd1\x5e\xba\x9b\x9c\xfb\x2d\x9a\x53\x60\x7f\xa4\x6c\x48\xbb\x11\x22\x4e\x1e\xe6\xda\xf7\x74\xa6\x7f\xe5\x56\x03\x4a\x8c\x29\x2b\xf7\xc2\xe0\x74\x25\xb1\xdf\x1e\x45\xb0\xaf\x13\x0d\xfe\xde\x2b\x4f\xf9\x2c\xe1\xa4\xb4\xcd\x7d\xcc\x93\x6b\xf5\xb7\x44\xe8\xc8\x10\x10\x4a\xf5\xdc\x73\x96\xec\xb1\x04\xc6\x99\xc2\x97\x13\x84\xce\x48\xa6\xe8\xf9\xb0\xa5\x3d\x42\xa3\x23\x2d\xe1\x8c\xec\xad\x37\xc6\x5b\x35\xcc\x94\x63\xc9\x53\xb7\xb4\x19\xe6\xc3\x29\xf2\x30\xa4\x7f\x1e\x43\x59\x15\x86\xa7\xa5\xc2\x3e\x93\xac\xaa\x6a\x64\x16\x68\x0a\x20\x45\x8f\x9c\xcb\xda\x5e\x9e\x91\x6f\x12\x89\x46\x9d\x1a\x15\x43\x8d\xfb\x7a\xe8\x45\x7e\x04\x63\xe6\x84\xe9\xf3\xa9\x19\x22\x22\x60\x84\xac\x93\x81\x00\x5e\x47\xbe\x5a\x51\x06\x5e\x9f\xda\x23\x8a\x63\x28\x73\x69\x3e\x12\xef\xcb\x1c\x5b\xd0\x2b\xe2\xd6\x4e\x0b\xf2\x61\xfe\xd9\x45\x01\x5e\x52\x6a\xae\xcc\x9e\x4c\x4e\xf6\xa7\x8e\x1b\xb3\x1f\x0e\x51\x39\xdf\x2f\x82\x76\x0e\x47\x46\x91\xc8\x06\x4b\x19\x8a\xb3\x61\x6e\xc8\xe9\x7a\x7f\xfe\x9e\xd8\x28\x76\xc1\xd3\x60\x08\x96\xb6\x1e\x97\x66\xcd\xfc\xe2\x31\xf0\x0c\x9b\x77\x28\x01\x36\x8f\xa6\xc8\x7f\x29\xe0\xa4\x9b\x29\x80\xd6\x91\xc7\x24\xb5\x84\x2c\xb3\x42\x96\x6e\xee\x43\x8d\xe1\x0a\xd4\x16\x80\x68\x8a\xab\xdf\x96\x86\xd1\x42\x46\x08\x61\xae\x28\x6a\x77\x90\x82\xed\xce\x48\xee\x7f\x8f\x78\xed\x78\xad\xe6\x55\x04\xc0\x09\x00\x6a\x9b\xf7\xeb\x4e\x3f\xc7\x41\x55\xbf\xf1\x0c\x0d\xa7\x75\x65\xfb\xb6\xb5\xda\x1a\x66\x98\x35\x38\xc9\xed\x42\x33\xbb\xa2\xe9\x68\x8a\x8f\x0e\x36\xec\x4c\x1f\xec\x5f\xd5\x3b\x3f\x98\x1c\x9c\xa3\x44\x77\x0e\x7e\xd1\xcf\xb7\x59\x01\x6b\x6d\xef\x9d\x85\x67\x5c\x6c\x33\xd5\x49\xa2\x6e\x14\x2c\x69\xcd\x68\xf7\x89\xd4\x6f\x02\x7b\x15\x77\x21\x2f\xa9\x7c\xa4\x48\xd1\x9c\x5d\x3e\x06\x88\xf2\x16\x1c\x9d\x5a\x75\x45\xfd\xae\xdf\x55\xa8\xee\xe1\xfb\x10\xcc\xd7\x87\x4d\xa3\xfa\x39\xbd\xde\x71\x21\x6d\xa0\xb2\xab\x1c\x5c\x23\x93\x9f\x12\xa6\x59\xbe\xd8\x86\x38\xa5\xab\x5c\x72\xf1\xbc\xfc\x16\xae\x34\x19\x30\x07\xf3\xfc\x63\x02\x45\x4d\x86\xc3\x2e\x3a\x21\xbd\x5f\xd2\xee\x70\x17\xf1\xaa\x15\xc4\x8b\xd5\x13\x3d\x6c\x5d\x74\x23\x9d\xd7\x12\x90\xfb\x13\x13\x77\x7a\x95\x6f\x4b\x22\xa9\xcb\x04\xb7\xd1\x25\x99\x2f\xea\xf5\xf8\xc3\x31\xd4\x4b\x33\x6b\x00\xc8\x86\x73\x75\x01\xeb\xc1\x69\xdc\x60\x6a\x2d\xb1\x54\xc7\x71\x2c\xed\x9a\xc1\x43\x74\x46\x84\x13\x04\xf9\x79\x92\x9f\x9a\x9c\x73\xee\x34\xeb\x45\x5b\x06\x53\x55\x1d\x89\x67\xae\x2a\x52\xef\x60\x20\x16\x32\x59\x71\x3c\x21\x24\x17\x75\x68\xaa\xc1\xb4\xf7\x77\xed\xd0\x54\x0f\x5b\x7a\x6b\x63\x1f\x68\x66\x80\x11\x83\x03\x85\x79\x7d\x37\xc3\x49\x8d\x6a\x70\x67\xcf\xcb\x4b\xe0\xfc\x61\x66\x79\x59\x19\x71\x8f\x66\x8e\xfd\x69\x0f\x8f\xd5\x55\x48\xad\x5d\xa9\x53\x1e\xc7\x7c\xe4\x7d\xdf\x9f\xc0\x43\xeb\xc6\x63\xfa\xc1\x75\x11\x85\x78\x9b\x45\x39\xcb\xd4\xaa\xe8\xdf\xa3\x4c\xd7\x0d\xc6\xe3\x56\x0f\xe1\x4f\xd0\xee\x6f\x96\xeb\xcf\xd5\xc8\xbf\xb5\x5f\x99\x59\x99\x3d\xe1\x03\x6f\x1f\xab\x2a\x1b\xb8\x1d\x50\x1b\x14\x0a\xd7\x06\xb5\x4a\x9f\x4e\xf0\x8b\xc0\x71\xf5\x4a\xc0\xf7\x49\xa0\x53\xd6\x75\x37\x27\x84\x30\xe8\xb0\x8e\x64\x75\x66\x52\x60\x08\xa7\xe6\x43\x0d\x6f\x96\xe8\xdf\xe4\x1f\xd2\x34\x87\xeb\x4c\x22\x51\x9a\xd4\x9f\x67\x72\x16\x16\xae\xb3\x90\xe5\xd3\xe9\x24\x94\xd6\x59\xa7\x12\x02\x8f\x40\x3d\x33\x2c\xcd\x85\x13\x9a\x58\x44\x61\x8f\xd8\x0e\xf4\x54\xcc\xc2\x5a\xa6\x07\xe8\xdb\x16\xc2\x02\xd9\xbe\xce\xf9\x99\x38\xd2\xd3\x04\x43\x5f\x02\x21\x84\x7a\xb6\x34\x01\xa7\xbd\x98\xe3\xcc\x1e\x06\x23\x01\xd5\xb8\x99\x79\x7f\xfd\x23\x53\x13\x65\x20\xd7\xf7\x43\x7a\x7b\xf5\x01\xfc\xc3\x49\x28\xf4\x9d\x82\x1b\xbf\x87\x3b\x56\xc4\x71\x7d\xf7\x8f\xdd\xc5\xff\xfc\xfd\x0e\x71\x88\x25\x79\xc2\x9d\x13\xd4\x7e\x71\xf6\x67\x50\x85\x0b\xf5\x75\x1c\x6a\x6f\xb4\x23\x3e\x73\xb4\x70\x4e\x3a\x91\x17\xed\x8e\x5f\xb7\x8c\x33\xc2\x3d\x3c\xc0\xb7\x86\xaf\x23\x42\x8e\x19\xfd\x24\xdf\xe5\x17\x45\xce\x2e\xed\x08\xcb\x38\xbe\x52\xe8\xa7\xa7\x82\xa9\x08\xc2\x9f\x36\x94\x16\x26\x00\x19\xd1\x2e\x36\xda\x23\x4f\xe5\x31\xad\x3b\x09\x9e\x3a\xad\x79\x87\x39\x17\x78\xe9\x5d\x01\xbc\x26\x93\x93\xf5\x69\x61\xd1\xbf\xb5\x0d\xb9\xb3\x21\xc5\x7c\x0d\xe1\x29\x37\x16\x17\x3d\xb1\x11\x60\x37\x10\x5b\x2a\x8e\xf5\x5f\xaf\x73\x42\xb8\x89\x40\x95\x0d\x88\xce\x3d\x41\x19\xd9\x27\x99\x06\x0f\x2b\x92\x5b\xca\x46\xc6\xb1\x3c\x25\x4b\xd5\x48\xbd\x96\xbd\xcd\x58\x9b\x29\x97\x71\x9c\xdc\xf0\xc4\x7d\xe2\x48\xa3\x5b\x11\x02\x76\x77\xb2\x02\xf3\x6b\x41\x13\x8a\x37\x78\xa9\x0e\x37\x5e\xc5\x71\xf2\x56\x55\xa9\x9b\x43\xd8\xff\x0a\xd0\xbe\x86\xd6\xee\x39\xfd\x04\x13\x48\x7c\x8c\x73\xa9\xae\x0c\xce\xcc\x44\xfc\x5d\xd3\x61\x63\x21\xe0\x13\x29\xea\x41\xf4\x78\xc8\xde\xda\xe1\x0c\x1d\x96\x43\xb2\x81\x57\xe2\xa0\x17\xc6\x2e\xc8\x41\x5d\xca\xf6\x89\x36\xcf\x0d\xc2\x9f\x39\xb3\x91\xba\xb8\xc1\x1d\x12\x66\x77\xe3\x58\x1d\xfd\x81\x5a\xdb\xa5\xc1\x30\x2c\x0f\x75\xe9\x74\xd3\xdf\xf2\x44\x78\x7a\xbe\xfa\xdb\x57\x36\x42\x8e\x7a\x2e\x43\x12\x3b\xe4\x8d\xd4\xfc\xcf\x09\xde\xeb\xf1\x86\xfa\x13\x0d\x08\x8f\x1b\x00\xbe\x01\xdf\xb5\x44\xfc\xcf\x93\x09\x3c\x52\x47\xf4\x2c\x7c\xa7\xb9\x3f\x34\x03\x48\x49\xf7\x58\x62\x46\x06\x93\x93\x84\x1d\x67\x47\xc9\x26\x76\x34\xd0\xe8\x51\x55\x25\x21\x4d\x0f\x16\x37\xb7\x92\xef\x6a\x02\xf7\xb8\xa4\x63\xb4\x02\x14\x4b\xd3\xfe\xc0\x66\xac\x51\xc3\x1a\x98\x18\x10\x8b\xf0\x20\x69\xe2\x41\x35\x14\x38\x86\x0f\x85\x25\x14\xf0\x43\x71\xac\xd1\xb3\x13\xa6\xae\xc6\xed\x77\x89\x8b\x22\xf6\x42\xfd\xa4\x30\xa6\x47\x3a\xf4\xee\x3f\xe0\xcf\xc1\xfa\x78\x4a\x28\x8e\xf4\x52\x47\x21\xef\xd2\x3d\x4c\x5e\x87\x4d\x7d\x1c\x1f\x68\x99\xb7\xe5\x48\x69\xf5\xfc\x26\x7e\x9f\x76\xa3\xb4\x9c\x2e\xc2\xb4\xa3\x6b\xdc\x9a\x2a\x3e\x3e\x96\x8e\x95\x3b\x52\xfa\x9c\xb7\xd7\xb0\x3e\x54\x3f\xfb\x88\x2e\xa3\xd7\x9a\x12\x80\xb7\xec\x0f\xfa\x29\x85\xf5\xc5\x3f\xc0\x87\x11\xc5\x34\x96\x99\xe9\x65\x66\x08\xa4\x96\x2c\x2f\x37\x89\x4f\x0f\xff\xc3\x06\xe7\xee\x14\x0e\xd7\x42\x85\xb1\x93\x2f\x69\xca\xaa\xae\xd0\xc1\x69\x94\x60\x24\x71\xb4\x46\xe7\x75\xf6\xcb\x77\x30\x5e\x8d\x10\x2b\x94\x50\x7f\x17\x3a\xcd\x0c\x19\x2e\x16\x5e\x39\xdd\x71\xe7\x2c\xd3\xc3\xca\xc0\x63\xa6\xa6\xcb\x71\x69\xee\xec\x9c\xc1\x73\x33\x28\x1d\xef\x43\x5b\x0c\x64\xa7\x7f\xd5\x45\xf7\xa4\xd4\x90\xd8\x35\x3d\x0c\x12\x0c\x77\x3b\x27\xfb\x91\xc0\x82\xec\x6b\x28\x5d\xd8\x9a\x47\x08\xbf\x5e\x4e\x0a\xc3\x60\x1b\x15\x6a\x19\x0f\x1a\x87\xd0\x00\xc3\x2c\xd5\x08\x5c\x96\xe6\xa7\xf7\x21\x64\xd5\x2b\x99\x48\x84\x70\xb2\x3c\x1b\x4f\x26\xd3\xaa\x5a\x9e\x8e\xd4\x0f\x45\x36\xbc\xcb\x13\x5d\x51\xdd\x35\x4a\xcd\x07\xc2\xe0\x10\x44\x22\xc7\x79\xd1\x4f\xaf\x4e\xf5\xdf\x5f\xa8\xa2\x12\xe7\xeb\x05\x3a\x78\x87\x86\x52\xe7\x6b\xbb\xa9\x5b\x23\xc9\xe4\x44\x9e\xd2\xa6\x6e\xcd\x70\x28\x91\x4b\x9c\x4b\xab\x42\x43\x82\xb4\xc6\x23\x1e\xac\x66\xdd\x39\xd0\x3f\x47\x76\xfd\xf6\x80\x99\xfa\xcf\xe7\x78\x69\x4a\x14\x18\x61\x9c\x74\x71\xdb\x80\xfd\xc5\x4f\x38\xe1\xfe\xd3\x8a\x87\xc3\x0c\x89\x79\x4b\xc7\x64\x9e\x2d\x16\x84\x9b\xb1\x01\xbf\x8d\x7b\x5d\x0c\x73\xcc\x8e\xd6\xf1\x68\x62\x2b\x84\x06\x2e\xd6\x1b\x5e\xa6\xdf\x28\x1c\x49\x17\x3f\xe7\x32\x73\x02\xe5\x2e\xbe\x9d\x4e\x03\x79\xb0\x08\x44\xb5\x0c\xfb\x6f\x58\xb7\x28\xd9\xdb\x46\x40\x5b\x4c\x30\xc1\x50\x06\x23\x2d\xbe\xe3\xc2\x3b\xd9\x6b\xa2\x96\xd0\xe4\xcd\xf3\x45\x0f\xfc\x44\x47\x84\xf0\x19\xd7\x21\x14\x53\x8b\x20\xa9\xb4\xb2\xee\x20\x8d\x40\xd1\x08\x92\x33\x9a\xa8\x82\x7a\xe7\x55\x4a\x1c\xef\xa9\x51\x4a\x3f\xb8\xe6\xb5\xd5\xa8\x1b\x2c\xa3\x01\x9f\x05\xa2\x21\x1b\xcd\x13\x10\x50\x42\xc2\x97\xa9\x66\x83\x65\x12\x68\x85\xd4\x87\x4d\x3d\x1f\x8d\x24\xab\xe5\xa4\x11\x35\xdd\x83\xa9\xa8\x1a\x80\xd3\xea\xa3\x72\x36\xcb\x09\x69\x4d\x99\x40\xc9\xf5\x3e\xb2\x75\xeb\xa9\xe5\xb4\x93\xa1\xd1\x52\x14\xed\xd5\x11\x1f\x35\x3a\x46\x0c\x98\x9b\x25\xc7\x2b\x11\x63\x3e\x6f\xd5\xc9\x85\x53\xf1\x16\xe3\x8b\x7d\x5e\x48\x94\x72\xa3\x48\xe6\x06\xc4\x83\x01\x49\xbd\x30\x4e\x51\x0c\x33\x62\x46\xdc\xd3\x59\x6a\x18\x1a\x11\x4f\x4c\x98\x6a\x30\x73\x54\x18\xc7\x9d\x4b\x0a\xa5\x4c\x21\x5b\x58\x57\xc5\x6c\x7c\x71\x09\xf2\x46\x45\x78\x9b\x9f\x55\xa5\x55\x7e\x5c\xba\xfb\x98\x25\xae\x10\x71\x35\xb1\x57\x80\x78\x35\x31\x1c\x3f\x94\x6a\xb6\x71\x38\x35\x22\xbc\x55\xc8\x68\x2b\xb0\x8e\x85\x38\xa6\x8b\x99\xfb\x35\x8c\xfa\xd1\xd0\xf0\x0f\xeb\xf1\x46\x11\x4a\xc3\x34\x60\x4e\xa9\x8e\x1b\x1e\x01\x54\x99\x8b\x6c\xf9\xf1\x12\xd4\x57\xe0\x80\xd6\x9f\x48\xce\xfc\x4f\x6f\xb8\x32\x4d\x82\x9c\x23\xe4\x57\xd0\x58\xd0\xb4\x56\x0e\xed\x59\x82\xca\x43\x36\x00\x8b\xf0\x4b\x36\x44\xe6\xe1\x55\x93\xc8\x2a\x45\x41\x8f\xda\xc8\x4a\x75\x05\x93\x57\x60\x48\x2f\x18\xb4\x1b\xe8\x23\x86\x05\x52\x7d\x37\x06\xcd\x9b\xed\x55\x89\x22\x54\x5b\x59\xbb\x13\xe0\xfd\x0e\xf6\xc2\xa5\x06\xbb\xe1\x52\x7b\xb4\x79\x02\xa4\x2a\xe8\x59\xa1\x7b\x30\x12\x18\x8b\x97\xb5\xc8\x81\xb5\xc8\x5c\x93\xab\x0e\xf3\x65\xad\xbd\x5f\x7f\x3e\x72\xcb\x79\x77\x03\x8f\xbc\xed\x6a\xa7\xb9\x46\x61\x2e\x3a\x57\x0b\xe7\xad\x84\x01\x24\xce\x1d\x15\x3f\x6b\x53\x53\xef\x77\x3f\x1a\xb6\x3b\xc0\x91\x36\x18\x84\xf5\xed\x92\x9c\xb2\xb1\x7b\xd1\x46\x6c\xdc\x7c\xcf\x50\x60\x1a\x11\x0d\xdb\x25\xb4\xbc\x06\xe7\x0d\xf5\x8c\xd6\x4c\x2c\xd4\x38\xd8\x37\xc9\x1b\xe9\xcb\x4c\x7c\xa4\xc2\x44\x46\xec\xe0\x93\x54\x15\x47\xb7\x76\x91\xb4\x3e\xb0\xdb\xae\xcf\x2e\x90\x79\x51\xa3\x7f\xc5\x4a\x44\xda\x92\xb4\xa1\x1b\x52\x52\xf9\x23\xa3\x2b\x1d\x1d\x2e\xc9\x5a\x8b\x91\x79\x10\xb3\xb9\x3f\xe0\x91\x2d\xf0\x3a\xd2\xb5\x8b\x08\x77\x4b\xbf\xc0\x2d\x0c\x3f\xae\xe4\x07\x64\x53\x5d\x9e\x64\xdd\x02\x2c\x9f\x75\x21\xd0\xef\x93\x60\xd5\xcb\x6a\xd7\x4c\xa1\x39\xc7\x87\xd4\x38\x50\x2d\xbd\x5a\x4f\xd2\x04\x0b\x8e\x10\xe6\x0e\x57\x2d\xc9\xe4\xa4\x3c\x6d\x61\x6b\x35\xce\x5a\x5a\x7c\xbf\x8d\xd1\x95\x0b\x5c\x10\xde\x34\x28\xdc\x23\xb5\x80\xfb\x45\x0f\xfc\x5b\x76\x8b\xf7\x8a\x45\xd7\xb9\xba\x63\xf2\xfb\xe6\x2c\x99\xaf\x33\x60\xb2\x23\x14\x60\xe8\x06\x9f\x12\xe0\x72\xc1\xca\x5b\xb5\xc3\x05\xfb\x65\x40\x7f\x2d\x52\x36\xf0\xa8\x86\xe2\x27\xec\x84\xd9\x50\xde\x39\x61\x01\xbb\xb0\xb9\x23\x0e\x99\x63\xf5\xf9\x8b\xe3\x0e\x10\xc7\xd0\x61\x69\x07\xe7\x85\x6e\xf2\xc0\xac\xee\xce\xa2\x18\xce\x7b\x06\x60\x07\x06\xbf\xc8\x01\x49\xc8\xed\xab\x0a\x13\xb3\x08\x80\x4b\x55\x37\xc7\x01\x7a\xf7\xd8\xdb\x42\xee\x37\xd2\x08\x01\xf6\x20\x3d\x5e\x5a\x74\x14\xcb\x06\xae\xe6\xc6\xae\x5e\x83\x35\x7c\x68\x12\x4b\xd5\x1c\x4c\x74\x2c\x88\x52\xa2\x50\x07\x5d\x06\xb4\x95\xa2\x39\x4d\x55\xa0\xae\xd8\x42\xd7\x9e\x7a\x0b\xb2\x76\xa3\xc1\xb9\x79\x79\x9a\xa4\x16\x57\x20\x4c\x20\x45\xbe\x00\xed\x6a\xf2\x4f\xb2\x53\xef\x08\x67\x8e\x64\x9d\x67\xea\xc8\xd6\xe7\x70\x0f\x33\x6b\x4b\x98\xcd\x4e\xa2\xde\x7e\xbc\x81\xc8\xf7\xe0\x46\x01\x9c\x07\x95\x55\x55\xb4\x75\xd5\xf2\x4b\xc6\x05\x1d\x69\x41\x5d\x6d\x60\xb9\xa1\xc9\x1e\x17\x4d\x7f\x03\x5d\x30\xae\x40\x38\x8f\xe3\xfd\x38\xbb\xe0\x57\x74\xd6\xe0\x5d\x16\x8e\xff\x57\x55\x42\x03\xbe\x94\x07\x57\xab\x40\xf8\x1f\x60\x0d\x2d\xe8\x4a\x64\xd7\x81\xb8\x7f\x13\x3e\xdf\x0a\x99\xf8\x56\xab\xff\xa0\xdb\x44\xd4\x97\xa1\xaa\xfc\x2f\x32\x5f\x20\x64\x5d\xf5\x3b\x49\x9b\x4f\x5b\xf5\x64\xa0\x68\xe0\x60\xbd\x65\x75\x78\x3a\x47\x55\x95\xe4\x23\xd2\x7e\x02\xb0\x0c\xd5\xba\x5e\xe8\x96\x8e\xbc\x88\x32\x90\x75\x6b\xbd\x86\x43\xd0\x0f\x9c\xf0\x80\xd6\xf8\xba\xee\xc2\xd0\x40\x24\x72\x34\x10\xf6\xd6\x42\xf3\xc3\x9a\xf6\x00\x1d\xcf\x96\x85\x34\xcf\x3c\x1f\xc3\xd7\x3c\xb9\xd5\x5c\xbb\x8e\x10\xc5\xd4\x57\x84\x3e\xa3\x3e\x21\x3a\x9c\x82\xde\x9d\xaf\xab\xec\x0a\x18\x9e\xcf\x14\x64\xba\xa1\x6e\x32\x68\x58\x18\x05\x64\x4f\xcb\xb5\xa9\x9c\xd5\xcc\xd7\x4c\x15\x22\x67\x5a\xe5\x25\x8d\x26\x91\xd9\x58\x3a\xae\x95\xbc\x47\x89\x9c\xb1\x74\x62\x7c\x9a\x41\x75\x4f\x99\x22\xe0\x57\x79\xda\x55\xe1\x24\x46\x8d\x49\xe4\x86\x6b\x55\xfb\xf7\xef\x1a\xb6\x3f\xe2\x63\x5d\xaa\x31\x6b\x24\xbd\xa5\xfe\xdb\x39\x7d\xbf\x80\xd0\x3c\x73\x6f\xfa\xed\x32\x70\x96\x15\xce\x0f\xef\x4e\x2d\x42\xe3\x66\x8d\xb4\x66\x87\x2b\x30\x4a\x84\xb7\x58\xba\xa1\xd6\xd0\xf5\x79\x0d\x8e\xc1\x28\x3c\x06\xbc\xb9\x3c\x9d\xf3\x0a\x86\x7b\xa4\x17\xb5\x3e\x46\xf8\xd6\xa9\x41\x0d\xd1\x43\xbc\xad\x39\x9b\xc4\x71\x32\x21\x84\x19\x27\xf3\xbf\xd9\x82\xdf\x66\xcb\x8f\xc9\x51\x35\xec\x09\xc2\xb7\xb0\x9c\x29\xcc\x1f\x1b\x85\x38\x38\x39\x07\x08\xcd\xfe\xce\xe9\x5e\xa5\xa1\x8f\xd2\x7a\x76\xae\xc4\x80\xd0\x86\x3e\x77\xed\x53\xc6\xea\x40\xac\xf2\x52\x81\xa5\x6f\x55\xbe\x19\x2b\x05\x40\xe5\x46\xf5\x28\x13\x5e\x1b\xed\x5a\xc8\x1b\xd7\x39\xdf\xb5\x87\xa5\xcf\xa4\xcd\xf7\x06\x15\x66\x34\x87\xf4\x77\xea\x82\x36\x1f\x1b\x91\x6a\xa0\x55\x07\x1d\x70\xb0\xda\x1d\x61\x8c\xe3\x78\xb0\x99\x45\xd3\xfb\x70\x5c\x41\x75\xbd\xd7\x3a\x1e\x9b\x6e\x95\x77\x73\xe8\xda\x27\x7c\xc7\x73\x26\xa9\xf6\x84\x57\xb6\xaa\x85\xb9\xc6\xda\xaa\xb5\x94\xc4\xf8\xb5\x6b\x4e\xc9\xa4\x1f\x70\x7b\x21\x9a\xd1\xec\xbb\xfb\x03\x3f\x0d\x5a\x19\x3c\x99\xd2\x07\xb8\xe6\xd3\x25\xb5\x0c\xf8\x18\xe3\xd8\xc9\x11\x69\x41\xb5\xdb\x1f\xbe\x7d\xa3\xda\x4f\xb4\xeb\x2b\xd0\xc6\x32\x9c\xe5\x29\x1a\x10\x3a\x3b\x32\x0a\x2b\xc9\xb5\xa3\x10\x10\x06\x1e\x74\xfd\xdb\x9b\xe4\x2d\x70\xcd\x7a\xe8\x35\x68\x5a\x57\x06\xe1\x8e\x9c\x2b\x38\x0d\x07\xfc\xcc\x77\x4c\xff\xdb\x67\xde\x17\xcb\x08\xbc\x35\x77\x6f\x82\xf5\x85\xbc\xe3\xfe\xa1\xdb\x63\x57\x40\xe5\xb4\xe6\x77\x38\xf8\x83\x40\xb8\x69\x77\x40\x6e\xf5\xb3\x94\x3e\x03\x52\x31\xfd\xed\x80\xbf\xf7\x23\x24\xe9\xe8\x25\xe1\xbe\x0b\x6e\x1c\x00\x7a\x8a\x4d\x1a\xcb\xa8\x5d\x21\x87\xcd\x68\x81\x4d\x10\x8c\xdc\x20\x7f\x94\x4c\x4e\xe8\xa9\xdf\x90\x41\xf9\xe8\x70\x88\x7e\xc8\x8d\x93\xe5\x3a\x9c\x8a\x2e\x34\xa7\x0b\xa4\xdd\xd8\x80\x75\xf2\x1b\x5e\xb6\xe3\x2a\xb4\xbd\x7e\xae\x68\xe0\xf6\x73\x45\x3d\xbf\x9f\xc0\x86\xa4\x16\x54\x12\x79\xc0\x3b\xd5\xf2\x72\xbb\x6b\x37\xee\x85\xd8\x67\x74\xa4\xf1\xe6\xaa\xa2\xe3\xe5\x66\x24\xc7\xcb\x8d\xe7\x6a\x70\xeb\x33\x7b\xc1\x7c\x1a\x70\x6c\x55\xd4\xc3\x91\xaf\x68\xd0\xee\x4e\x7f\x9e\x4e\x66\x32\xf5\x30\xf6\x9b\x63\xa5\x68\xea\xc7\x33\xa1\x9e\x81\xb5\x35\xe7\x08\x5c\x62\x85\xae\x39\xcf\x41\x51\x0b\xd8\x0f\x17\x9a\x94\xaa\x47\xff\x21\xc0\xdd\xed\x0b\xba\xe2\x4b\xdf\x06\xd3\x9a\x9c\xb3\xaa\x4a\x18\xe1\xe3\x92\x16\x96\x1b\x61\x47\x11\xf8\xe2\xac\xaa\x08\xbe\x23\x42\x72\x5c\xaa\x0a\xbb\x22\x07\x95\xc4\x52\x51\x2f\xda\x4e\x1d\x22\x2c\xc4\x31\x1b\x0b\x9f\x7b\x7f\x36\x45\xf9\x3a\xb9\xa0\x71\x7c\x61\xd8\x5d\x3a\x30\xc0\x7b\x16\x21\x42\x8c\x8f\xc5\xb0\xca\x1f\x2f\x02\xa3\x4e\x42\x26\xe8\x76\x4f\xe6\x8b\xda\x47\x27\x99\x9c\x14\xa7\x61\xa9\x93\x62\x38\x44\x7b\x7d\xa2\x83\xf1\x99\x62\xf3\x62\xa1\xa8\x54\x78\xe9\x4b\xd7\x72\xa3\xe7\x38\x4e\xf6\xe4\x92\x27\x25\x6e\xbb\x8f\x06\x1f\xdd\x9a\x64\x2d\x9a\xf5\x46\xd3\x93\xe2\x4c\x0d\x6a\x34\xd2\x6b\xbe\x74\x25\x14\xc9\xbd\x26\x60\xfa\xbe\x4d\x10\xde\x90\xe5\x58\xf2\x04\xf5\x96\x63\xba\xdd\xc9\x9b\x04\xc5\x31\xa8\xa7\x9f\x4d\x66\x6b\xb2\xa2\xc9\x5a\x9f\xb6\xb5\x3a\x98\x02\xb4\xe6\x61\x3b\x9c\x63\xd5\x38\x1e\x64\xb3\x8d\x2a\xa9\xd5\x3a\xb0\x13\xc6\x5f\xe7\x09\x37\xba\x1e\x81\xdd\x29\xde\x8c\x97\x9b\xe1\x96\x27\x25\xb2\x1e\x23\x51\x6a\x36\x04\x54\x01\xf2\xf2\xd8\xee\xc4\x71\xb2\x26\x1b\x6f\x58\x13\x84\xac\x12\x8b\x31\xcd\x37\xfa\x09\xcf\xd5\x01\xc5\x3b\xa2\xf5\xd4\xd7\x58\xf2\x74\x83\x55\x83\xe9\x7e\xb6\x9f\x17\x7f\xdc\x9b\xae\x17\x69\x89\x75\x64\xa8\x34\xaf\xaa\x24\x9b\x99\x83\xe5\x26\xea\xb9\x7c\x9d\x45\xcb\xbd\x8c\xd2\x68\x08\xa7\x3f\x42\x87\xde\x73\x61\xb4\xb2\x76\x40\x76\x51\x1c\x41\xd6\x5b\x9a\xad\x22\x4c\xf1\x0e\x1d\xa4\x5a\x9f\x38\x7e\xaa\x2f\x1a\xfe\xa7\xd0\x9c\xe0\xd6\x50\xc9\xca\xa5\xca\x9b\x5d\xce\x2e\xc9\x60\x82\x3b\xcf\x3e\xe9\x18\x19\xf1\xb5\x79\xaf\x1b\x12\x94\x65\x91\xef\x2e\x78\x26\x56\x3a\x98\x60\x23\x41\x3d\xa2\xda\x15\x5b\x1d\xe5\x54\xf3\xe2\x44\x1d\x35\x78\x27\x00\x64\x3e\xd1\x4e\xe4\x15\x36\x38\xce\x4b\x35\xcb\xd7\xac\xb8\x49\x50\x55\x49\xc7\x13\x32\x48\x00\x4c\xaa\xaa\xbe\x91\x89\xf4\x4d\xc4\x3e\xd0\x44\xc1\x82\x89\x15\x47\xc1\x5a\xa3\x03\x0a\xd4\x47\xcc\x62\xdd\x06\x3c\x4b\xd0\x82\x11\xf9\x12\x14\xa3\x7d\xed\x91\x72\x9b\x09\xa9\x68\x3c\x56\x33\x1a\xac\x43\x87\x92\x16\x60\x84\xd4\xbc\x1c\x4c\x5d\x0e\x66\x2f\x47\xee\x4a\x58\x69\x77\x92\x83\xdf\xc8\xf1\x72\x73\x36\x9d\x4c\xaa\x8a\x81\x6e\x9c\x29\x32\x9a\x2e\x74\xae\x96\x3a\xe5\xf5\x07\xaa\x01\x9c\xf1\x75\xf1\x50\x9a\xa6\x10\xce\x88\x56\xb5\xe5\xe1\x54\xea\x57\x4c\x73\xe0\x1a\xd9\x16\x9a\x94\xda\x0c\x41\xba\x10\x3f\xcd\x72\xcb\x4d\x26\x1e\xca\xa4\x84\x08\xec\xe8\x36\x23\xbf\x88\x84\x62\x6f\x70\x38\x82\x95\x8a\x50\xef\x42\xd0\xec\xa3\x01\x3d\x75\x33\xb0\x63\x71\xdc\x48\xd0\xbe\xb9\x9d\xf6\xa1\x3f\x59\x7d\x3f\xad\x3e\xa3\x5b\x31\x84\x40\x5f\xf5\x68\xf7\xa8\x97\xc5\xb1\xbe\x2c\x41\x4f\xea\xc2\xf8\xcd\xfb\x1c\xbc\x4f\x0d\x31\xf7\x7c\x81\x85\xfa\x4f\x33\x94\xdc\x5e\x87\xfb\xec\xa9\x33\x90\x66\x91\x39\xf3\xf6\x10\x73\x72\xab\xfd\x85\xa6\x2b\x9a\xe4\x78\x82\x20\xa4\x0d\x7c\x80\x83\xd1\x43\x4f\x18\x40\xae\x4e\x3e\xfc\x82\x1d\x86\xc8\x4a\x2d\x67\xa3\xce\x44\x06\xc0\x8d\xc4\xba\xc7\xc0\x74\xf8\x9d\x7d\x60\x03\xf6\x91\xc2\x79\x97\x5c\x08\xba\x94\x11\x8e\xf8\x7a\x1d\x19\xc7\xa6\xcd\x32\xd9\x2e\x97\x59\x01\x2e\xeb\x8e\x14\x2b\x77\xb4\x28\x80\x5a\x8b\x70\xb4\xce\x8a\x92\x06\x4e\xcf\xa8\x23\x75\x96\x5b\x8b\xb0\xa8\x3b\xae\x41\x91\xa5\x2f\x77\xbc\x28\x72\x76\xf9\x2c\x2b\xa5\x0b\xe0\x6d\xd2\x02\xbc\x3f\x67\xd9\x72\xb9\x17\x99\xa4\xce\x85\xa3\x2b\xbf\xc9\xca\x76\xe2\x92\x6f\x77\xbc\x84\x66\x02\xb1\xf6\x43\xea\x90\xe9\x97\x5c\x03\xa4\x4c\xd0\xec\xb3\x0e\xa7\x0c\xd3\x08\x7c\x37\x7a\xae\xa6\x9c\x23\xaa\x29\xdd\xb6\xdd\x6e\xf9\xd6\xd9\xd4\xfa\xd1\x52\xcf\xda\xba\xe0\xd7\x69\x5f\xab\xbb\x9c\xf4\xbb\x3c\x78\x99\x3e\x1e\xf8\x7d\x4c\xc0\xb7\x95\xd3\x1c\x75\x14\x85\xa1\xc6\xa7\x93\xc9\x44\x11\x6f\xcd\x8d\x02\xef\xe7\x76\x17\x77\xb5\xa7\x1a\x63\xa0\x48\xa2\xa9\x33\x49\xbc\x28\xb2\xe5\xc7\x08\xe1\x77\xda\x1e\xc0\xf3\x92\xd3\xb5\x9d\x45\x56\xca\x87\x70\x2e\x41\x07\xb4\x91\x66\x14\x8b\x5d\x2a\x78\x0f\x0c\x0b\x42\x92\x29\x57\xa3\xce\x5d\xfb\x7f\x29\xb2\x25\x7d\x43\x45\xce\x57\xc1\x43\x74\x1e\x3c\x44\x57\xd2\xf1\x87\x8d\xcb\xd6\xaa\x12\x56\xab\xc8\x62\xd4\x0a\x6d\xd3\xd4\x9d\x03\x39\xa6\x0a\xce\xc9\x4e\x26\x0a\x8d\xb4\x09\x9c\x9c\xe7\x09\x58\xd6\x81\xa8\x20\xea\x71\x00\x3c\x59\x96\x70\xac\x50\x68\xf4\xc7\xfb\xb3\x08\x48\xa1\x28\xd5\x25\xac\xe5\xd5\xb5\x82\xca\xdb\x6c\x07\xc5\x70\x56\xef\x9a\xd1\x2c\x21\xa6\x1a\x21\xea\xac\x16\x45\xb6\x2b\xe9\x4c\x11\xf5\x2b\x1d\xf8\x4a\x48\x5c\x7a\xde\x6b\x42\x9c\x5a\xcb\x69\x2f\xb2\x95\x76\xc0\xe5\xf9\xa3\xa1\x81\x0e\x33\x70\xaf\x7c\xb5\x3c\xeb\xd2\x50\xd3\x1d\xac\x9d\x33\x5e\x2a\x4a\x51\xed\x52\x39\x17\x0b\x47\x86\xa8\xfe\xe1\x4d\x7f\xc3\xcb\x64\xe5\xfb\x91\x35\x36\x04\x53\x84\xc0\x4f\x88\xd9\x47\x41\x26\x1a\xf6\x6b\xe7\x22\xf2\xe4\x84\x11\xe6\x91\xac\x7a\x00\xac\xaa\x58\xd7\xe8\xfc\x9d\x02\x54\xd9\x57\x1b\x61\x81\xda\x71\xbb\xb2\x7e\x79\x42\xf5\x9a\x70\xb8\x1d\x3a\x36\x61\x81\x79\xbe\xd0\xaf\xa8\x56\x7a\x71\x47\xe7\x2d\x55\xdb\xae\x28\x74\xcf\xd7\x0e\x6d\x6a\x8d\xc3\x93\xe5\x69\x3b\xe5\xc4\xda\xbf\x54\xd5\xe0\x57\x9e\xb0\xda\x6b\xad\x5a\xd7\x15\x4d\x5e\xe7\x86\xe0\x42\xea\x5d\x50\xcb\xa8\xf7\x8d\x81\xc2\xd9\x60\x82\x25\x61\xe1\xc6\xa8\x05\xc6\x03\xe9\x21\x03\x82\x96\x72\xb6\xe5\x89\xfe\x65\x05\xef\xbd\x66\x3f\x1c\x61\xee\x23\xca\x08\xe7\x9a\xa8\xca\xc8\x03\xab\x56\x72\x0e\x01\xe5\x4d\x00\x01\x22\x01\xfd\xcf\xaa\x6a\x3a\x00\x55\x24\x3b\x0a\x67\x66\xf1\x60\x40\x02\x16\xaa\x6d\x42\xa1\xba\x41\x0e\xd6\xe1\x26\x32\x28\xf1\xf7\xac\xd8\x53\x87\x9b\x9f\x94\xde\xae\x0e\x08\x3b\x41\x25\xf1\x93\x7a\x56\x2c\x68\x75\x69\x0a\xb2\x57\xb7\xab\xac\x89\xc0\x65\xd2\xd2\xac\x1a\x4d\x4f\xf2\xd3\xa4\x98\x59\x25\xf7\x74\x82\x60\xd3\x6b\x81\x4e\x7e\x3a\x99\x41\x43\x69\x31\xcf\x17\xc6\x2e\x93\xd7\x76\x99\xe4\x81\xb5\x9d\xe5\xf3\x6c\x78\x1f\x8e\x45\x49\x88\xac\xaa\x92\x10\x61\xe9\x9e\xd7\x79\xa2\x1a\xd2\x4b\x9e\xea\x1d\x98\xe7\x0b\x84\xd7\xaa\xda\x62\xc8\xcc\x36\x24\xec\x74\x52\x55\xe5\x80\x48\x04\x54\x86\x6a\x33\x61\xb3\x69\x3a\x41\x0b\x84\x57\x34\x59\xe2\xb5\xc2\x49\xb4\x8e\xe0\x32\xc9\x70\x89\x05\x1c\x86\xb5\x77\x60\xd6\x38\xf7\x1d\xa1\x96\x81\x12\xdd\x8a\x64\xb3\xf6\x02\x8f\x44\x3a\x39\xd9\x9c\x6c\xc8\xc6\x2f\xac\x45\x6a\x64\x99\x28\x72\xc9\xdb\xa6\x49\xe3\x78\xfa\xe4\xd9\x4a\x1d\x98\xde\x6a\x48\x36\x5a\xa0\xa7\x5d\x26\x98\x6e\x0e\x5a\x31\x5e\xbf\xf3\x39\xdf\x97\x56\x78\xa9\x46\xbb\x22\xe2\x64\x77\xb2\x23\xbb\x66\xae\x1b\xc6\x0e\xef\xfc\x61\x28\x98\x72\x6c\x1c\xc3\xbb\xc7\xe1\x79\xb4\xa2\x5e\xbc\x47\x8d\x25\xd5\xc8\x48\xbe\xd5\x72\x1b\xef\x9d\xfb\xd5\x2f\xaf\x71\x2e\xc7\xd7\xa4\xd9\xca\x2f\xfa\x24\xa4\x81\xe6\x72\xd1\xa3\xe3\x92\x0b\x99\x74\x72\x61\x76\x0a\x6a\x1a\x8a\x58\x9a\x1f\xa0\x25\x0e\xce\x83\xd4\x3e\xd7\x22\xcc\x29\x60\x9c\x1d\x28\xa6\x76\xa3\x45\x81\x40\x50\xe7\x62\xa7\x50\x43\x45\x5b\xe3\xdc\x36\x79\x46\x26\x36\x12\xe4\x8d\xca\x35\x5d\xba\x7c\x5c\x92\x2b\xaf\x96\xfa\x83\xf0\x9e\x70\x4b\x9b\xcf\x6c\x49\x4b\x76\xa4\xdc\x25\x68\xec\xb3\xc7\x4e\x15\x99\x3c\x1a\x49\x4c\xad\x23\xa1\xd1\x88\xe1\xfb\xd8\x38\xd4\xdf\xcf\xca\x34\xc3\xfb\x59\x96\x96\x08\x1d\x0e\x1e\x2b\xcb\x6c\x87\xe7\x05\x2a\x7c\xd8\x4c\x99\xb9\x69\x88\x62\x59\x55\x14\x2d\xb0\xef\xa4\xec\x79\x58\xc5\xc9\x85\x8c\x24\xbd\x66\x0e\xa8\xe1\x69\x6b\x3d\x6a\x4d\x87\x7d\x5f\x47\x35\x05\xa8\x5f\xfb\x53\x53\x1a\xf9\x6c\x30\xdd\xe4\xa4\xf6\xb4\x11\x36\x58\x4b\xcb\x55\x0b\x67\x62\xb6\xa2\x89\xc0\x0a\xaf\xc0\x22\x60\x48\xa0\xb4\xcb\xbb\x3c\x1d\x2f\x37\x3d\xef\xb5\x23\x44\x21\x2c\x67\x72\x56\xb3\xe0\x24\x4a\xc5\xe9\xc4\x4b\x98\xa0\x94\x1e\x12\xa9\x3b\x91\x6d\xd6\x87\x37\xc5\x67\x0d\xac\xe1\xcc\x8e\x3f\x8e\xe5\x69\x38\x15\xcf\x49\x0d\x6d\x5a\x56\x38\x22\x28\x10\xa8\x8b\x39\x5b\x10\xbd\x88\x73\xb6\xa8\x7d\xf3\x79\x0e\x6e\x9a\xb2\xe0\x25\x18\x0d\x2c\xb7\x21\x53\xae\xaa\x28\x28\x51\xb2\x55\xed\x79\x4c\xdf\x3c\x2f\xba\x26\x27\x3b\xb5\xb2\x39\x3a\x9d\xf4\xf8\x40\x7d\x30\xf8\x98\x25\x39\x11\x58\x10\x86\x52\x9d\xac\x7a\x3b\x9d\xe8\xb8\x46\xc8\x3f\x7a\xbf\x2a\xb2\x4b\x34\x93\x58\x55\x89\x40\x31\xe2\x91\x37\xe8\x5f\xd4\x6f\x7b\x24\x61\x36\x14\xe8\x3b\x05\x39\x32\x71\xa3\x2e\x32\xd8\x8c\x4f\x10\x66\x5e\x13\x3f\x3a\x94\xa0\xbe\xd1\xf3\x05\xb6\xa8\x48\x9b\x88\x54\x6f\x12\x9b\xe7\x0b\xe2\xf5\x21\xac\xca\x2f\x56\x4f\x09\xd6\xba\x23\x30\xa0\x27\x14\x0c\x8d\xed\x40\x00\x84\xa1\x60\x0e\x3f\xb5\x94\x3b\x82\x5e\xad\x3b\xb0\x5e\x3e\x97\x0b\x22\xb0\x6d\x35\x6f\xb7\xea\x4f\xeb\x9f\xcd\x95\x79\x05\x8c\x96\xb0\xd0\xdf\x5b\xe8\xd0\x26\x2f\x25\x17\x37\xe3\x15\x67\x14\xe7\x64\xcb\x13\x86\x7a\x79\x1c\xe7\x66\x38\xb3\x84\xcd\x99\x63\x9b\x2c\x88\xc4\xdf\xd8\x36\x50\xfa\x4b\x5b\x73\xc5\x25\xdd\xba\x72\x0d\x03\x3e\x7f\xda\xa6\x77\xcc\x15\x32\xc5\xc6\x9a\x0d\xd7\x13\xc4\xb8\x77\x7d\x47\x8b\xd7\x3b\x50\xc3\xaa\xbf\xa1\x08\x28\x49\x27\x3a\xf1\x25\x5f\x9d\xe7\x5b\xea\xd5\x51\x9f\xb6\x8a\x2b\x5f\x55\xc7\x86\x21\x2d\xe7\x64\x62\xaf\x49\xf4\x55\x44\x48\x5e\x55\xd1\x50\xbb\x31\x6c\xb0\x8f\x3a\x98\xb4\x62\x5c\xf2\x2d\x85\x58\x93\x9a\xd8\xa5\x2b\x05\x91\x59\x57\xb2\x17\x6c\xa5\x5e\x7f\x6f\xe8\xa7\x04\x2e\xe3\x0c\xee\xa2\xe5\x71\x99\x72\x4f\x35\x13\xae\xc8\x6e\xd2\xaf\x27\x13\x30\x56\xe3\x78\xcb\x93\x1c\x36\x10\x29\xdc\x75\xa6\x7f\xcf\xf5\x1f\x7f\xeb\xd2\x5f\xc1\xff\x88\x2e\xda\x0b\x96\xab\x0e\xac\x83\x9b\x4b\xcd\xbd\x94\x1d\x11\x98\xc5\xf1\x60\x3a\xd0\x9a\x4d\x34\x13\x6f\xe9\x8a\xc7\xf1\xdb\x3c\xc9\xc7\x7b\x06\x2d\x1f\xec\x2d\xc1\xf5\x34\x34\x5f\x33\x5f\xa5\xaf\xb2\x57\xc1\x79\x71\xa7\xe4\x36\x01\x79\x50\x74\x01\x7a\x2e\x8e\x63\x60\x8c\x90\x10\x08\x46\xb6\x71\xac\x0a\x8d\x97\xdb\xa3\xe5\xc0\x3e\x9c\x74\x9b\x8c\xde\x1a\x3e\x8c\x34\xbb\x87\x9b\x72\xb4\x06\x26\xe2\xf1\xf7\x05\x99\x9c\x88\x1a\xc2\x8a\xe1\x10\x79\x25\xe7\x62\x41\x0c\xc4\x32\x20\x57\x2c\x0c\x90\xd4\x21\x6b\x74\x8a\xe1\x0d\x59\x6e\x33\xe8\xad\xeb\xdf\x07\x0b\x9f\x75\xe8\x97\xee\xb9\x61\xaa\x75\x87\xd4\x32\xa8\x72\x77\x2c\x03\x94\x52\xa5\xed\x41\x55\x44\x80\xb9\xd0\x0a\x40\xd9\x05\x68\x09\x0d\x50\x2a\x0f\xf6\x7a\xf7\x9c\x1b\x1d\x31\xbe\xc8\xb3\xb2\xaa\x14\x42\x23\x6b\xf8\x0a\x13\x6a\x02\x5d\x3d\xcb\xd3\xc9\x6c\x34\x4d\xa7\xa8\xf7\xbd\x9a\xfd\x0f\x46\x7f\x0c\x1c\x5e\x2a\x3a\x63\x30\x25\xc4\x79\x86\xaa\xaa\x81\x1a\x6e\x55\xfd\x53\xc0\xa4\xbc\xd3\xf1\xbd\xc5\xf7\xc6\xf4\x9f\xfb\xac\x28\x13\xe8\x0c\x81\x20\xaa\xa4\x05\x91\x66\x39\x12\xef\x90\xf9\x2c\x75\x2f\xb9\x0c\x97\x08\xdc\x4f\x4a\x7d\x98\x90\x65\xdd\x6b\xc3\xcb\x87\x4b\x99\x5f\xe5\xf2\x46\x87\xde\xa9\xdd\x2c\x00\x8f\xa5\x9e\x8f\x3e\xe2\xda\xf2\x31\x40\x5d\x7e\xe8\xb2\x23\xc1\x9c\x4c\x4e\xf8\xa9\x6c\xbc\x2d\xdc\x62\x8f\x99\xdb\xa0\x39\x5f\x80\xfe\x5a\x03\xe4\x74\xbc\x4c\xea\xb9\xf6\x1e\x23\xbe\xc0\x7b\xf2\x0f\xd5\x79\x66\xf9\x91\x65\x1c\x5b\x3c\x59\x6b\x9e\x15\xb6\x00\x6c\x1d\x64\xc3\x2f\x95\x79\x92\xe4\x55\xb5\x1f\x10\x5b\xbb\xaa\x0a\xf5\x01\xfb\xa9\xa0\x6d\x55\x81\xef\xd2\xf0\x99\xc2\x1c\x21\x9c\xcf\xb9\xbb\x00\x7b\x5c\x38\xfe\x67\x3f\x9f\xc1\xc3\x25\xbd\x47\xcb\x97\x32\xfe\xdc\x21\x19\xf4\x11\x27\x4d\xe6\x6f\x33\xf1\x91\xae\xde\xed\x32\xd6\xf4\x59\x1c\xe4\xb5\x94\xfc\x4a\x12\xe4\xcf\x33\xb5\x3e\xa5\x4e\x02\xe4\xc5\x18\xb5\x97\x80\x40\x57\x55\xb2\x1f\x43\xb4\xda\x32\xbf\xa2\x2f\xe8\x5a\xce\x74\xc6\x29\x3c\x10\xa9\xf9\x90\x96\xbf\x6d\xeb\x4a\x1e\xd6\x04\x1f\x66\x33\x95\x7e\x66\x2b\x4a\x7e\xa6\xab\x01\xa2\x95\xc7\x71\xf2\x83\x0e\x57\x02\x77\x57\x07\xee\x79\xca\xc0\x8c\x1a\xef\xc7\xf4\x93\xc2\xd9\x73\x59\xdc\x3c\x56\xf0\x95\xae\x74\xb5\x70\x1d\x6e\x47\xa3\xac\xb7\xe4\x4c\xe6\x6c\x4f\x0f\x9a\xa9\x02\x26\xfd\xe3\x4c\xf2\x6d\xbe\x44\x36\xcf\xe8\x87\x81\x8c\x12\x2f\xc9\x5e\x7b\x8d\x65\xa7\x93\xd9\x34\x1d\x4d\x91\x5e\x06\x20\xb3\xc3\x19\xa4\x8d\xc5\x40\x10\x59\xf3\x3b\xb5\x61\x4b\x3c\x62\x18\xac\x98\x03\xa3\x1b\x0e\x2c\x09\x84\xda\x59\x71\x9c\x14\x0a\xf9\x03\x83\x70\xb5\x74\xa7\x93\x59\x71\x3a\x49\x8b\xb3\x9a\x96\xfd\x59\xb7\x2c\xe1\x28\x18\x12\xdb\x1b\xac\x06\x26\x35\x9d\x3e\x6b\x0c\x2f\x6d\x8e\x5f\x93\xf0\x30\xde\x35\x66\x78\x7d\x64\xac\xeb\xd9\xcf\xba\x88\xee\x58\x47\x88\xb3\xa7\xd7\x3b\xa9\xff\xe8\x38\xa9\xac\xaa\xa6\x38\x23\xee\x10\x73\x9c\xa3\xaa\x1a\xe4\x71\xec\x25\x0d\x26\xa8\xaa\xdc\xf7\xa8\xa3\xcc\x88\x6b\x17\xbe\xba\xcf\x0c\x60\xdb\x32\x63\xf2\xe9\x2a\x97\x0a\x48\x05\x84\x8e\x07\x66\xbe\xf3\xc0\x8c\xc5\xee\x15\x6a\x3d\x21\x70\xee\x66\x86\xe8\x31\x75\x67\xf0\x0c\xad\xa8\xa1\xa6\x14\xb1\x05\x93\x4d\xc5\xd9\x24\x8e\x55\x05\x42\x14\xba\xed\x5f\xbf\x80\x70\x99\x85\x64\x98\xa3\xb1\x66\xae\x4d\x10\x94\xe8\x46\x8d\x5e\x84\xd5\x05\x1e\x2f\x37\x43\xff\xd1\x07\x73\xdc\x96\x17\xc8\x72\xc3\xaf\xeb\x08\x50\xcd\xdc\x9d\xa0\xbb\xcc\x7b\xe9\x12\x7f\x2d\xa4\x6c\x52\x45\x26\x46\xa4\xb6\x7e\x64\xc6\xa4\xbe\xfc\x7c\x54\x30\xf0\x1a\xe1\xde\x8a\x2f\x28\x6f\x9d\x85\xb5\xe9\x06\xeb\x37\x4c\x21\x4b\xd2\xb8\x5c\x09\x11\x78\xe7\xf8\xcd\x83\xe2\x99\x91\x3f\x96\x86\xac\xd7\xbb\xd8\x32\x8b\xae\xaa\x12\x98\x03\x76\x53\x9a\x06\xd6\xa8\xb6\xcd\x35\x9c\x83\x93\x64\xaf\x90\x28\x27\x34\xdd\xf0\x6b\x0d\x7a\x7e\xda\x50\xf6\xce\xc6\x31\x45\x71\x0c\x71\xd1\xcc\xbb\x90\x23\xbc\xaf\x2a\x06\x29\x98\x7b\xdc\x02\xcf\x6c\x52\x86\x58\xd6\x4b\xfd\xdd\x34\x3c\xf4\x6c\x2c\xca\x9c\x5d\x16\x06\xee\x69\xd5\xc3\x37\x54\xbc\x30\x2c\x7e\xd1\x6d\x27\x10\xfd\x9f\xff\x47\xd4\x11\x1b\x26\x42\x48\x3b\xb5\x0f\xd4\x8f\x0b\xab\xaf\x89\x73\xcf\x04\x9b\xa9\xff\xc3\xe4\xb6\xf2\xaa\xd3\x0a\x83\xd2\xe8\x2b\xcf\x6f\xa2\x37\x5e\xdd\x0a\x1b\x73\xb9\xa1\xc2\xc2\x83\xdf\x37\x72\xdf\xe2\xa3\xa4\x4b\xce\x56\x99\xb8\xa9\x27\xc5\xdb\x1a\x9f\x3c\x9c\x24\xf4\xed\x4d\x95\x07\x53\xd5\xb9\x6e\xc2\x3c\x9c\xf0\xf8\xaf\x5f\x7f\x95\xd8\x42\x6e\xc2\xae\x8e\x51\xd1\xf5\xac\x4d\xe5\x5d\xce\x57\xc0\xef\xd0\x17\x5d\x95\x65\x10\x19\xa1\x24\x99\x8e\x53\xba\xf7\xfd\x22\xd5\x21\x68\x30\x78\x7d\x18\x99\x24\xcf\xc6\x18\x8d\x32\xad\xc1\x5b\xf3\x97\x8b\x1a\x18\x4a\x60\x30\x40\x7c\x14\xe9\x3b\xc1\x96\x28\x74\x8a\xcd\x10\xe6\x5f\xe8\xf1\xbe\x34\xc4\x5b\xd4\x2d\x7d\xb4\x76\x2a\x54\x5b\xa6\x40\xf0\xb8\x68\x28\x1b\x76\x2a\xd6\x87\xce\x6c\x3f\xa2\xa9\x30\xc6\x5f\x75\xa4\x9c\x84\x8d\x8c\x9f\x53\x1f\xb2\x39\xbe\xf9\x95\x0e\xc5\x89\x97\x0a\x43\xca\xb1\x44\xa0\xc3\xe3\x01\xe8\x7a\x2d\x36\x89\xff\x28\x3c\x96\x06\xf0\x83\xf5\x11\xcc\x6f\x89\x6b\xe6\x4b\x9b\x2a\x06\x77\x80\x4e\xca\x03\xfd\x47\x85\x14\x91\xef\x99\x76\x30\x35\x08\x2d\xad\xd1\x2e\x6e\x31\x59\x3a\xe7\x8b\x93\x24\xd3\x08\x93\x88\xe3\x0c\x30\xa0\xaa\x92\x84\x98\x2f\xa2\x79\xec\x2c\xa9\x3d\x47\x42\x69\x35\x2d\xc7\x20\x54\x05\xd5\x98\xa7\x04\xce\xc9\x15\x2d\x66\x91\x90\x45\x94\xea\xd1\xe0\x1c\x62\xa3\xe6\x55\xe5\x8f\xf1\x90\x9c\xe7\xc9\x12\x61\x51\x55\x5a\xc5\x84\x10\x36\x5b\xa7\x2c\x64\x42\x98\x37\x7c\x89\x57\x78\x87\xb7\x64\xa3\x90\x7f\x23\x1f\xcc\xd7\x89\xc2\x13\xd0\x92\x6c\xf1\x8a\xec\xc8\x16\x8e\xa8\x8b\x9f\xbf\x24\x9b\x44\x8e\xa6\xd8\xc8\x07\x11\x86\x21\x11\x6b\x17\x74\x45\xb6\xbd\x2d\x59\xe2\x25\xb9\x3a\xac\x4c\x5d\xbc\x23\x4b\x7d\x5c\x0f\xe6\x04\xc0\x23\x4d\xc1\x5f\x4e\x89\xf0\x12\x62\xf4\x6e\xd5\xff\x67\x0f\x14\xae\x94\xac\x30\x7c\xe9\x73\xb8\xb5\xbe\x6c\xf1\x8a\x94\xee\xeb\x74\xa9\x1d\xa0\xe8\xc2\x3a\x4d\x97\x87\x0c\x84\xec\xe4\xe3\x58\x12\xb2\x8e\xe3\x64\x47\xf6\x08\x27\x03\x5e\x55\xd0\xf8\x29\x57\xff\x9b\x0f\x42\xb8\x6e\x4e\x8f\x18\x64\x2c\x1a\xe7\xe3\x64\xab\x6a\x65\x55\xb5\x34\xbd\x9c\x65\xe6\x47\x9d\xa4\x36\xc8\x3a\x9a\x35\x53\x3d\x33\x37\x54\xab\x82\x2c\x11\x5e\x9d\x96\xc3\xa9\x9d\xb2\x1a\x35\x8c\x13\xef\x46\xea\x97\x99\xe1\x01\x61\x17\xc8\x97\xb2\x55\x9a\x59\x61\x8b\xac\x95\xd5\xa4\x56\x56\xcb\xd7\x89\xc5\xe9\x8c\x82\xd9\xd2\x97\x40\x80\x86\x99\x36\xe4\xbd\xd5\xca\x61\x70\x6b\xd6\x46\x8e\xb7\xd3\x9f\xa6\x26\xde\x92\x67\x2c\x59\x21\xa2\xfe\xec\x10\xbe\x22\x61\x5b\xdb\xd9\xca\xbf\x68\xc3\xa9\xc6\x1e\xc7\x94\xad\xf0\x0d\x59\x5a\xb5\xb7\xed\x6c\xa2\xa5\x72\xd0\xb7\x96\x12\xf7\x14\x71\x7a\x05\xeb\x7d\x03\xdb\x7c\x7f\x96\x14\xc9\x95\x5e\x1b\x7c\x55\xef\xf2\x95\xdb\xe5\x22\x29\x31\x94\xc5\x37\xfa\xf8\xdc\xd8\x2c\x94\x36\xab\xea\x12\xa3\x3a\xd1\x96\x74\x3f\x75\xb7\xea\x9c\x94\x2e\x4d\xf7\x78\xa3\x1d\xe1\x84\xaf\x96\xef\x6e\x25\x97\xce\xad\x45\xa0\x06\xda\x0e\x21\x0e\x8c\xa0\xe7\x8a\x82\xb9\xca\x8a\x44\x8e\x2f\x8a\x9c\x7d\xa4\xc2\xb2\xe5\x07\x93\x9e\xac\x9d\x1a\x99\x97\x08\xfc\xe6\x40\x78\x3f\xf5\xb6\x35\x9f\xd9\x47\xaa\x85\xb7\x99\xa4\x67\x93\x99\x6b\x8f\x94\x54\xba\x5e\x3c\x95\xb2\x3b\x1b\x4f\x04\x19\x08\x04\xf1\x42\xb4\xa6\x41\x74\x38\xde\x1b\x4a\x8f\x66\xe9\x47\xe5\xce\x69\x98\xf6\x7d\xf9\x33\x97\xce\xa1\x8c\x09\x73\xa4\xcf\xc5\x3b\xb5\xa0\xe0\xa3\xc7\x8b\x41\x74\xda\x44\xf2\x80\xc0\x87\xa5\x77\x61\xe4\x41\x11\x5d\xe2\xa7\x3c\xc9\x64\xc8\x9f\xc8\x64\x23\x86\x8e\xf6\xfc\xe8\x1a\x97\x56\xb8\xe0\x25\x5a\x01\xb0\x76\x77\x64\x53\xdb\xd8\xa6\x8b\xe1\xee\xd8\x84\x9e\x17\xc4\x6b\x2e\x3e\x9e\xe7\xe0\x08\xa1\x64\x89\x84\x59\xe2\x52\xeb\x7a\xd8\x26\x91\x02\xd7\xf3\x85\x8d\xe7\x53\x67\x78\xf2\xa0\xc0\x91\x6c\xcb\xc1\xd0\xf0\xeb\x89\x1f\xc8\x9e\x1b\xd1\xd0\xb1\x31\x03\x0e\x6c\xde\x23\x83\xfc\x94\xa0\x27\xec\x5d\xe4\xb3\x7a\x0e\xdb\xec\xd3\xb7\x76\x89\x75\x64\x11\xbc\x27\xdf\x31\x60\xaf\x96\xb3\x7a\x5a\x0c\xa5\xc0\xc5\xb2\xf8\x59\x49\xf6\xe6\x87\xf1\xae\x67\xd2\xc1\x94\x92\x96\x40\x71\x2f\xf5\xef\xde\x72\x16\x66\x92\x65\x5a\x28\x08\x1b\x26\x86\x66\xa8\x6b\xa2\x40\x6f\xe6\x5c\xe8\xda\x6e\x9d\x78\xbf\x00\x87\x62\xc9\xa0\xa8\xaa\xc1\xb2\xaa\x8a\xda\x51\xc4\xb2\x76\xbc\x50\xf8\x8e\x22\x96\xbe\xad\xe7\x86\x4c\x4e\x06\xeb\x38\xde\x9c\x66\x7e\xb0\xce\x35\xc9\xe6\x9b\x45\xdd\xdd\x7c\xb3\xe8\xad\xe3\x38\x37\x46\x80\xf5\xb6\x02\x62\xe9\x82\x6e\x95\x33\x96\xfa\x6b\x65\x15\x0c\xbd\x35\x3f\x25\x77\x2d\x7a\x1c\x4b\x45\x7f\xea\x1a\x98\x35\x9a\xaf\xfb\xfd\xe3\xd7\x84\x4c\x1a\xdb\x62\xd4\x51\x86\x43\xef\x70\xb9\xe3\x7a\xe6\x54\x59\xe1\x46\x86\x87\x17\xf8\xe9\xa0\x80\x0a\xb1\x06\xcd\x48\xbe\x51\x05\x3b\x4c\x0d\xb4\x4b\x1f\x5b\xee\x44\x0e\x87\x88\x82\xa6\xe3\x5c\x2e\xb0\x76\x00\x83\x0e\x3e\x0c\x28\xdb\xc8\x33\x5f\x6a\xc4\xb9\xf6\x92\x0c\x91\xd8\x03\xe8\x10\x86\xf6\xe7\x2d\x9e\xb6\x93\x5e\xe1\x1c\x1b\x85\x7a\x9c\x11\x31\x1b\x4d\x53\x39\x4a\x3c\x80\x93\x33\x46\xc1\x4a\x63\x36\xa5\x0f\x52\x08\x6b\x56\x12\x79\x52\x9e\x65\x27\xa3\x51\x09\xf7\xa8\x3c\xb5\xfe\x11\xdd\x32\xe9\x4f\xa3\xd9\x01\x8a\xdc\xa5\xe1\x17\xed\xc3\xb0\x6b\x03\x51\x55\xba\xbe\xbb\xeb\x56\x99\xca\xdc\x89\x25\x4f\xf6\x66\x47\xd5\xc3\xe3\x45\xcf\xca\x2e\xde\xe5\xbf\x51\x74\x62\x50\x63\x85\xcb\x9d\x15\xc0\x6c\x24\xe5\x68\x8a\x19\x29\x6a\x56\xa2\xe5\x4b\xe3\x8c\xf0\x33\x66\x81\xd9\x75\x9e\x30\xcc\x47\x53\xe4\x0d\xca\xf1\x52\x48\xa6\xce\x88\x5e\x59\x9c\xa1\x74\x6f\x3f\x10\x66\x1a\x10\x71\x2c\x83\x10\xfa\x70\xfc\xb4\x5d\x2d\xce\xac\xb2\x98\x42\x57\x47\xd3\xaa\xe2\x70\xec\xaa\x8a\x9f\x91\xdc\xf3\x01\xc7\x4f\x6d\x7c\xc4\x9e\x08\x6f\x43\xd0\x39\xcc\x7d\x38\xe4\x07\xe0\x80\x27\xac\x06\xc2\x1c\xe1\xcc\xb3\x55\x97\x81\x67\x1f\x17\xfd\xb3\x76\xaf\xe5\xd9\x89\x87\x65\xb5\x0b\x50\xdf\x4f\xd4\xa8\xdd\x40\xd3\x81\xd4\xb2\x7e\xe6\xc3\xc0\x83\xb5\xf2\x77\x98\x6e\xdc\x8d\x40\x04\x72\xab\xf0\xa3\x48\xa7\x9d\xa0\x11\x8e\x14\xf9\x82\x05\xd1\x11\x90\xc7\xcd\xb8\xbd\xb3\x23\xe9\x89\x44\xa9\xb4\xde\x35\x21\x05\x33\x72\x0b\x74\xd5\x2e\x13\x25\x7d\xce\x64\x22\x7c\xd3\x60\x64\x4c\x9c\xda\xb9\x9a\xfd\xe7\x24\x2a\x79\xf9\x2a\x7b\x65\xac\xbe\x50\x55\xd9\x4f\x8d\x9c\x1a\x66\x5b\x18\x6e\x11\x61\x8f\xbb\xb1\xf6\x57\x38\xe7\xa3\xfa\x95\x09\xed\x70\x3d\x1b\xeb\x70\x4f\xee\x8a\xe9\x37\x82\xd6\x47\xed\x68\x1b\x75\x6b\xab\x2f\x6a\xcd\x6c\x76\x47\x73\xcd\xdd\xde\x49\xcf\x60\x9f\x5a\xae\xa8\xd9\xea\xdb\x6d\xb6\x4b\xdd\xa6\x82\x7e\x24\x2c\x8e\x97\x06\xdf\x87\x46\x4c\x39\xda\xb2\xe7\x87\xc6\x8d\x35\xff\x5d\xed\x97\x73\xb6\xe8\xee\x43\xe5\xe8\x7e\xee\xe8\x03\x54\xf3\x4c\x37\xc8\xc1\xf8\xdf\xdb\x0d\xd6\x8c\xf8\x74\x30\xf1\xa0\xf6\x56\xb6\xd8\xab\x97\x2a\xe9\x46\x63\x74\x90\xe1\xd9\x5e\xc9\x5a\x5d\xe5\x88\xa7\xc8\x16\x76\x87\x5a\xbb\x0a\xda\x8d\xc6\x05\xf1\xa2\x15\x3d\xe6\x0e\xff\x57\xf2\x8c\x68\x17\x58\xaf\x54\x47\xe6\xe7\x50\xbb\x04\x9d\x89\x14\x62\xf5\x7b\xe6\x15\x66\x0e\x06\xa7\x7b\x9d\x6b\xd6\x08\xcc\x41\xa0\x1e\x8b\xe3\x81\x76\x10\x35\x63\x44\xb3\x73\xe3\x98\x79\x1e\x60\xc1\x51\x1a\xc3\x02\x6b\xdf\xdb\xce\x6c\x25\x0c\x58\x8e\x8c\x2d\x57\x97\x66\x8d\xea\x52\x11\x5b\x12\x05\xe1\x02\x3a\xbc\x75\xd1\xeb\xfe\xcf\xd2\xea\x01\xc3\xe8\xf4\xe4\x4c\xa8\xad\x9c\x30\xed\xb6\x8b\x80\xd7\x2e\x86\x6a\x27\xfe\xe0\x20\x43\x7b\xc6\x78\xc3\x1b\x21\x06\xeb\x40\xce\xe0\x98\x8b\x1d\xb4\xd7\x67\xd3\xe4\x4e\x26\x4c\x77\x66\xce\x13\x28\x0e\xea\xe8\x67\x29\xc3\x82\x2e\x8d\xfa\xa5\x3a\x67\xb9\x77\x4d\x4c\xe8\x56\x7b\x9e\xf2\xb1\xfe\x81\x37\x59\xa9\xef\x61\x99\x0e\xa6\xde\x19\xbb\x94\xbe\x54\x41\x9a\xe2\xa0\x1d\xa3\xde\x5a\x78\x7d\xf0\x9e\x88\x61\xc2\xc0\x5f\x53\xad\xcf\x04\xfd\xb4\xdd\xad\xcc\x4a\x62\xf2\xe6\xfb\x45\x9a\xc8\xb1\x1a\x2b\xb8\x33\x50\x3f\x8c\x43\x47\x8d\x8e\x1d\xb1\x9c\x45\x58\x8e\xeb\xe1\x56\xd5\x51\xc7\xde\x9d\x21\x4d\x73\xc2\xe2\x18\x00\xa0\x71\x29\x6f\xef\xda\xc6\xb6\xc7\xe2\xb8\x4e\xbd\xd6\xce\x5d\xf3\xda\x97\x5e\xa3\xbc\x22\x19\xb4\x96\x51\xa3\x12\xc9\x7b\xb5\x28\x50\x36\x95\x7a\xe1\x79\x71\x93\x2a\x13\x85\xf0\x4c\x4e\x4a\x87\xe3\x8e\xa6\x60\x4d\x63\x38\xe4\x99\xf6\x5e\x93\xcd\xcb\xe1\x74\xd1\x03\x7a\x24\xbb\x28\x93\x7d\xed\x79\xd2\x50\xd5\x67\xf7\xe3\x98\x6b\x14\xd8\xe5\x0e\xc1\x2f\x25\xba\x77\x7f\x64\x1c\xcb\x1e\x4c\x09\xc7\x57\xb5\xe9\x40\x0f\x81\x2b\x60\xbd\x1b\xe1\x4a\xc3\x85\x49\x4a\x72\x44\x49\x05\x83\xca\xba\x84\xb3\x06\x82\x5c\xeb\x74\x13\x17\xc4\x2a\xa4\x2f\x09\x28\xa8\xe3\xb5\xa7\xb3\xae\x56\xef\x01\x21\x7b\xa7\xf6\x5b\xe3\x8d\x3a\x48\xff\x9f\x4f\x36\x6a\x25\xc0\x07\x72\x11\xc7\x8f\xb9\x11\xda\x18\x3f\x60\xc6\xa4\x48\x3b\xd6\x80\x28\xc1\xc3\x02\xa1\x13\x34\x1a\x15\xb0\x01\x27\x41\xd6\xf2\xd4\x7c\x3e\x65\xab\x2f\x6a\x6b\xa9\xda\x1a\x0e\x81\x54\x05\x3f\x81\x7f\xb3\x2e\xc9\x97\x5a\xf3\x5e\xb7\x35\xf2\x2b\xa1\x9c\xec\x7d\xcf\x6e\xc7\x4c\xc0\xad\x13\x37\x7e\xcc\xd1\x30\x32\x9c\xa1\x8f\x1c\x3c\xb3\x2c\x51\xeb\xd8\xf4\x72\xb2\xb2\xe2\xaf\xd5\xdc\x99\x04\xb0\xd9\xca\x1d\xa4\x74\xb2\x48\x3f\x48\x4d\xe8\xe4\x61\x53\x5d\xa3\xaa\xaa\x0f\x52\x0b\x2c\x14\x3e\x52\x55\xb9\x46\x44\xaa\x4a\xcd\x5a\x2b\xc7\xf7\x96\xa4\xc0\xc5\x88\x4c\xf1\xda\x5a\x21\x1c\x60\x6d\xa6\x53\x40\x8c\xdb\x16\xca\x06\xa7\x2a\x97\x82\x52\x56\x55\x46\x32\x0d\x5f\xe3\x82\x5f\xe6\xcb\xac\xf8\xf9\xc9\x9b\xe7\x55\xd5\x4e\x73\xe5\x56\xf4\x2a\x5f\x52\x5d\x6c\xe0\x9b\x9a\xaa\xeb\x07\x1e\x97\x7f\x70\x0f\xd6\x0f\xdc\x43\x01\x01\xf5\x2b\x77\x19\xab\x71\xbf\xa3\xc0\x05\x33\xb5\x42\x12\x4f\xf0\xf4\xe8\x0a\x39\x4d\x18\x13\x2c\x41\x5d\x45\x2d\xe6\x18\x19\x24\xee\x6c\x7a\xa8\xa3\x42\xf4\xa5\x79\x27\xdb\x73\xbb\xd7\x9a\x1a\x66\x8d\x62\xbf\xb4\x8a\xa9\x14\x07\xf6\x15\xfa\x29\xa1\xd3\xaf\x84\xc1\x37\xa5\xde\xb0\xaf\x04\x96\x7c\x97\x4a\x75\xb7\xbf\x62\xce\xe7\x85\xb9\xf3\x5f\x31\x75\xdd\x6b\xcf\xfc\xf6\xb5\x41\x9a\x22\xbe\x2d\xc0\xd5\xc6\x9a\x30\xe2\xd8\xc8\x4d\x27\xf6\xb5\x37\xec\x64\x45\xf6\xad\x93\x89\x9c\x2d\xf3\x5d\x07\x73\x7f\x6c\x91\x0f\xde\x7d\x1b\x14\x8a\x88\xcb\xab\x6a\xa0\x0f\x65\x1c\x0f\xcc\xa9\x34\x5c\x9f\x5d\xeb\xbe\x05\x43\x99\x4f\x16\xbd\x9c\xec\x66\x06\x5b\xd7\x3c\x4b\x83\x9c\x6b\xf1\x54\x10\xb9\x1a\xd6\x6d\x07\xdc\x4b\xb3\x6a\x3b\xb3\x6a\x07\x75\x91\x2c\x74\xda\x42\xc8\xda\xdd\x48\xc3\x4a\x28\x7e\x45\x72\x0b\x53\xbd\xd4\x1b\x92\x6c\x87\x57\xe8\xde\x7d\x7c\x69\xdf\xb7\xc6\x23\x82\x35\xa4\xbb\x74\x4b\x13\xc7\x83\xe4\xe6\xf4\x72\xbe\x59\x20\x80\x7e\x27\x60\xb6\x4e\x36\xb3\xcb\xf9\x66\x34\x5d\xa4\x13\xfc\x81\xa8\x5c\x7c\x6d\x48\x90\xc4\xad\xf0\x7a\x66\xd6\x26\xd5\x8b\x85\xec\x50\xbc\x59\x27\x5a\x94\xa0\x0b\x43\x7d\xbb\x9e\x41\x61\xb5\x0e\x17\x76\x0d\x3e\x1c\x7a\x2d\x90\x90\x5c\x8f\x2f\xf8\xe5\x1e\x9e\x86\xde\x17\x48\x4f\xa1\x86\x90\x7c\x47\xb6\xf8\x7a\x2c\x0c\x6b\xfe\xca\xdd\xa8\xeb\x83\x7b\x54\x90\x6e\x19\x30\x03\x8b\x2e\x90\x12\x21\xac\xe7\x5b\xfa\xd3\x29\x0d\x73\x59\x8d\x37\x9f\x95\xd0\x03\x28\xb5\xb8\x0d\x84\x54\xf3\xbb\xb4\x9b\x79\x78\x4d\x1b\x5e\x2b\x72\x96\xcb\x0e\x9f\x48\x72\x93\x97\x0a\x68\x68\xe3\x35\x6c\x82\xa7\x1a\xef\x52\xe4\x21\x4d\x5c\xec\x53\x6b\x0d\x68\xc3\xbc\x34\x62\x39\x94\x2e\x96\x15\x4f\x04\xa6\x5a\x6d\xa6\x53\x31\x13\x5d\x50\x72\x6b\x0d\xcd\xd3\xc1\x54\x9b\x85\x43\xfc\x21\xa7\x5f\x00\xf1\x28\x65\x97\x65\x23\x70\x50\x43\x5b\xc9\x63\x06\x90\xf9\xf8\x2a\x2b\xf6\x94\xb4\x4d\xd9\xf1\x15\x4f\x72\x84\x9c\x5c\x69\x20\xc2\xeb\x9f\x97\xf4\x31\xdf\xdd\x3c\xde\x5b\xda\xc9\x68\xe3\x7d\xa2\x89\x40\xbd\x70\xfc\x13\x3d\x7e\x8d\xf2\x1e\x30\xd8\xa8\x83\x33\xe0\x9b\x1d\x9d\x89\x71\x19\xcc\xaa\xd6\xfd\x53\x18\x6c\xc6\x51\xda\x9c\x8d\x1d\x34\x3b\x32\xe6\x43\xd0\x01\x04\x17\xe8\x30\x47\x9f\xa0\xc3\x81\x76\x87\x17\x65\xb8\xce\xf0\x9c\xa4\x82\xf1\x63\xde\x70\x61\x04\xde\xbe\x74\x1c\x59\x6d\x73\xef\xb3\xe4\x14\x08\x3b\x23\x7f\x53\x28\xa5\x6f\x65\x0a\x1b\x14\x98\x9d\x5a\x0f\xa1\x3b\x5e\x14\x49\x1d\x99\x56\x1b\x9f\x07\x9e\x15\xcc\xd9\xa9\x2a\xb0\xa1\x17\x10\x73\xa0\xd3\x06\x5f\xad\xfa\x78\x9d\x95\xf2\x0d\xb4\x59\x37\xaa\x16\x07\x97\xee\x8b\xef\x6e\xec\x67\x1d\x0e\xab\xdd\x35\x43\xb7\x99\x00\x0a\xa6\xaa\x60\x0c\xec\x73\x5d\x6b\xcf\x1b\xa6\x5f\x8f\xcd\x83\x23\x2d\xad\x06\xa4\xd0\xeb\x41\x9a\x1e\x24\xaa\xaa\x6f\x15\xc9\x57\x8f\x58\x1b\xe3\xc2\xf9\x68\x54\xb2\xc6\xb8\x70\x37\x34\xcc\x49\xa2\xb5\xe0\xdb\x08\xf5\x64\x6d\xc5\x0b\x1a\x44\xf6\x43\x1f\x30\x17\x0f\xd7\xcb\x21\x46\xba\x47\xb5\x45\x74\x2a\x40\xa7\xed\x9c\x7e\x02\xca\xd3\xef\x42\xf2\x08\xe1\x5b\xe7\x3a\x31\x0d\xf4\x27\x6c\x73\xd1\x01\x1d\xba\x26\x41\xd9\x2a\x98\x42\x30\xd0\xc4\x9e\x02\xfc\x65\x43\x86\xa3\x73\x40\x07\xdc\x54\x40\x3a\xe2\xfe\x67\xb9\xc5\x1d\x21\xd3\x15\x58\xb3\x64\x91\xc7\x00\xe7\x57\x5a\x51\xf5\xa7\x5c\x6e\xf4\xd4\xad\x52\xfa\x4b\xbd\x24\x6d\xd5\x5a\x2d\xc2\x47\xe0\xbc\xdd\x5e\xa2\x63\xe8\x56\xe6\xf9\xfd\x3f\x86\x6e\xa9\x5b\x7e\xce\x77\xbe\x0e\x8c\x27\x92\xe9\x0a\x74\x36\x9a\x4e\xc0\x32\x69\x37\xcc\xe0\x89\xe6\x56\xe0\x3c\x96\xa0\x8b\xf7\x45\x4d\x69\xfe\x17\xb4\x04\x38\x82\xd6\x04\x19\x19\xc1\x73\x6d\x07\x72\xc0\x81\x5a\xd8\x91\xf7\xc3\xb3\x5a\xe9\xbd\xe1\xbe\x98\x4e\x33\x27\x4a\x2e\x4a\x84\x21\xc7\x0f\xa6\xa2\x75\x78\xf5\xa7\x16\x98\x6b\x4f\xcb\xe7\x10\x5a\xc4\x7f\x87\x3c\xdd\x1a\x53\x40\xeb\xd5\x74\x94\x31\x6e\xe3\xf4\x5a\x98\x80\x8b\x58\xd0\x92\x86\x8f\x1f\xd0\xc7\xda\x14\x9e\x29\x38\xfb\x92\xb2\xfd\x1b\x0a\xfb\x63\x66\xa6\x5e\x6a\x77\xa6\x72\xc2\xac\x4c\xaf\xd3\xa8\xc0\x68\xae\xfb\x80\xdc\x70\xaf\xf3\x86\x51\xcc\x9e\x24\x92\xfc\x81\xc7\x71\xe2\x69\x90\x8d\x42\x75\x33\x70\x79\x91\x08\xc2\x82\x27\xd1\x47\x3b\xe9\x03\x84\x66\xd1\x28\x4a\x45\x55\x35\x4b\xf5\x82\xd7\xda\xbc\x26\x7b\xcc\x9a\xc1\xa1\xaf\x78\x12\x94\xd4\xbe\xe2\x01\xa0\x27\x6d\xd7\x01\x7b\x23\x4e\x52\x78\x4e\x63\xae\x5d\xfd\x45\xd1\x9d\xad\x69\xfd\xcf\xde\x51\xef\x05\xf2\x70\xc0\x97\x54\x3e\xcb\x69\xb1\x6a\x3b\xda\xea\x07\x3d\x1e\x70\xb9\xdf\xed\xb8\x90\xe5\x39\xdf\x2f\x37\xed\xe2\x83\xe9\x01\xc3\xac\xfd\xac\x7c\x9d\x44\x8c\x1b\x8d\xaf\x81\x3b\xc6\x16\x36\x08\xe3\x5b\x45\x21\xe7\xdb\xaa\xd2\xb1\x83\xc2\xe5\x42\x52\xdc\xdc\x86\x73\xb7\x91\xb4\x97\x99\x5c\x6e\x92\x5f\x38\x78\xee\xba\x28\xf6\x81\x33\xaf\xb0\x8a\xca\x4d\xec\x11\x7d\x63\xb5\x9b\x9a\xc5\xdb\xf7\xe0\xd8\xd1\x9f\xa8\xa6\x96\x34\xbf\xa2\xab\x67\xcd\x39\x43\x9d\xb2\xe0\xd7\xfa\xd1\x3c\x60\xfb\xbb\x1b\x98\xf6\xa8\xef\x81\xa2\xaa\xdc\xa7\x96\x82\x37\x56\x4c\xe5\x59\xf5\x80\x30\x28\xb9\x01\xf8\x60\x0d\xd0\x38\x83\xd4\x1f\x0e\x3a\x60\xfb\xa2\xb7\x07\xa4\xd0\x44\x3d\x2a\x19\xfa\xc5\x98\x60\x19\x8c\xeb\xfe\x24\xf4\x55\x67\x1f\x9c\xaa\xa2\xb3\x44\xb6\x7c\x6a\x78\x03\x40\x69\x42\xdb\xed\xfd\x65\x82\x05\xd2\x4f\xd0\xd1\x95\xd2\xcf\x4e\xb0\xb1\x16\xa7\x76\xd7\x04\xf4\x01\xba\x21\x0e\x98\x60\x34\x7c\x7d\x7d\xcf\x13\x89\xe2\x78\x20\xe2\x78\x10\xfa\xec\x50\x1b\x11\x3a\xff\xa1\x47\x9c\xff\xd8\x46\x3f\xd2\x9b\x77\xf4\x9f\x61\x28\x38\xa6\xc8\x35\x75\x55\x01\xa6\x81\x56\x94\x1a\x44\x07\x68\x73\xd5\x0c\xd5\xaa\x51\xbe\xd6\x95\x26\x84\x55\xd5\x55\x1c\xdf\x9b\xbf\xdf\xaf\xff\x6d\x32\x19\xa9\x3f\xeb\xf5\xe2\x9e\xf6\x60\xc3\x50\x9b\xe1\xae\x55\x8b\xe1\xe4\x27\x36\x10\xa6\x73\x14\xe3\xbb\x2f\x28\x69\xf1\x8c\x8b\xc7\xf5\xc2\xd5\x6e\xa0\x97\x9b\x4c\x3c\xd6\x8e\x7e\xb4\x6b\x80\xbf\xde\x9f\x3c\x18\x90\xbc\xaa\x04\xc0\xd0\xe8\xbf\xfd\x2f\xff\x5b\x84\xf0\x5f\xff\xf2\x97\xbf\x10\x92\x23\x1f\x80\xd8\x8e\xed\x49\xa6\x9f\xe8\xf2\x31\xdf\x6e\x33\xb6\x4a\xa2\x3d\x5b\xf1\x08\x1d\x3c\xdf\x40\x4e\x4f\x32\x67\x2e\xaa\x2e\xb6\xc6\x79\xe8\xa4\x3c\xdd\xc7\xb1\xf0\xc7\x53\x82\x09\x5a\x90\x70\x82\x86\x43\x2b\x97\x85\xc3\x6c\xc6\xd3\x94\x76\x83\xd3\x36\x66\xac\x3c\x4a\x84\x6d\x7f\x23\x43\x38\x14\xf5\x71\x98\x45\x5f\xe9\xdf\x34\xd2\x8a\x51\x6e\x4c\xea\x99\x50\xcf\x83\xf5\x58\x04\x54\xc4\xd9\x68\x3a\x33\x3b\x4f\x8a\xe0\xc1\x4a\xfd\x4f\xe6\x77\x11\xc7\x49\x71\x14\x5b\x6b\xe5\x10\x5a\xe3\x95\x7e\xa6\x66\x93\xd2\xff\x0c\x9e\x69\x1c\x54\x61\x1d\x8c\x5b\xdd\x56\xba\x6a\x01\x36\xef\x66\x9b\xf3\xa9\x2f\xbe\x7d\x80\xc2\x9b\x8f\x0e\x98\xb3\xef\xe9\xcd\x1b\x41\xcb\x00\x48\x7e\xf6\xd9\x32\x61\x62\x1d\xed\xa1\x1a\xf2\x8e\xe6\x1d\x34\xb6\x26\xb0\x85\xa7\xbd\x2b\x6b\x78\xb1\x27\xa5\x00\xe2\x07\x17\x84\x75\x85\x46\xcf\xd7\xc9\x3e\x8e\x07\x4b\x74\x2b\xbc\x67\xca\x27\x2f\x5f\xfb\xe3\x88\xe3\xd1\x94\xa8\xce\x8c\xdf\x25\x05\x76\xb2\x9c\x95\xe0\x16\xfe\x7b\x99\x08\xfc\x0b\x45\x09\xe4\xe3\x57\x34\xd9\x23\x45\x8d\xf6\xb4\xd6\x8b\x25\x03\x97\x65\xa9\xb6\x11\x7b\x01\xe9\xc2\x9c\xde\x91\x74\xd2\xa1\xa8\x1b\x19\x3f\x71\x9f\x45\x9c\x7d\x95\xf2\x3b\xda\xab\xdd\x00\x4d\x7c\x55\x5e\xfd\x65\x94\x80\x13\xeb\x63\xf7\x97\xd1\x0a\xb0\xe5\xaf\x8d\xe2\xaf\x17\x2f\x41\x17\xf8\x79\xb4\xd2\x38\xb0\x2d\xf1\xdb\x08\xee\x4d\xda\x9f\x4e\x26\x93\x93\x7e\x1d\x8b\x02\xaa\xf1\x59\x24\x2e\x2f\xb2\xe4\xfe\xd7\x5f\xe3\x7e\xfd\xdf\x78\xf2\x35\x8a\xd2\x48\x8a\x8c\x95\x9a\x69\x17\xa1\x61\xd4\xf0\x7d\x74\xd2\xd7\xbe\x85\x46\x66\xfc\x93\x56\x7e\xdb\x0b\x12\xdf\x65\xcb\x5c\xde\xa4\xaa\x87\x93\xfe\x3a\x2f\x24\x15\x69\x3f\x2b\x76\x9b\x2c\x31\x79\xe4\x6b\x74\xa2\x68\x5d\xcd\x34\xac\xb9\xd2\xbc\x28\x7e\xd1\x88\x6b\xe8\x34\xb2\x8c\xe3\xa0\xd0\x39\xd7\x1e\x3a\x77\xa0\x9e\x11\x80\xe6\x4e\x36\x4e\x55\x25\x96\x57\x11\xb0\x30\xfa\x91\x26\xe1\x9a\xaf\x9c\x7a\x5a\x59\x1b\x94\xd7\x47\x54\xfb\x3d\x3d\xcf\xb7\x94\xef\x65\xc2\xc6\x2b\x2a\xb5\x55\x84\xee\xf3\xa1\xba\x7b\xee\x76\x5e\x25\x08\x5f\xa3\xdb\x9f\x72\x1b\xd2\x6f\xeb\x3b\x26\xfd\x43\x9e\xe8\xb9\xe1\x68\xcb\xf7\x25\xdd\xef\x22\xbc\x45\xb8\xa4\xd2\x36\x7f\x83\xef\x4f\xd0\xa1\xf7\x4b\x67\x41\xe3\x15\xd2\x2f\xfd\xb5\xef\x65\xe1\x2a\xf1\x38\xf3\x79\x4d\xc5\x68\x09\x89\x23\xda\x3b\x16\x0d\x73\xfd\x22\x0d\x13\x3a\x33\xab\x97\x46\x11\xea\xd9\x95\x8c\xfe\xdb\xff\xfa\xbf\xd7\x3c\x20\x8e\xfd\x95\xa5\xa0\x46\xa9\x6a\xe3\x66\x9f\x64\xea\x27\x3d\x65\x2b\xc2\xeb\x17\xea\x8e\x25\xf7\xa4\xa1\x37\x89\xd1\xe9\xeb\xda\x39\x85\x28\x75\x5f\xf4\x0d\x6e\x5e\xd5\x35\xb6\xbc\x6d\x56\xbb\xa9\x2d\xc7\xbe\xbb\xdb\xa4\x0b\xc0\x91\xc2\x12\x81\xed\x15\x05\xc5\x69\xdd\x2c\x82\xbd\xef\x19\xb7\xb3\xb8\xf4\xb7\xbd\x6b\xae\xf5\x64\x75\x4c\xeb\x46\xdb\x71\x1c\x2e\xdc\xd9\x24\x8e\x61\x8d\x89\x7f\xaa\x67\x00\x30\x0b\x6b\x9b\xa4\x8e\x62\x22\x50\x4a\x87\xc3\xd3\xe9\x64\xd6\x75\x54\x89\x77\x7a\x4a\xfc\xf5\x64\x82\xd2\xc6\xad\x3a\xf4\x3e\x5f\xef\xfe\x64\x82\x0e\x07\x85\xd2\x6b\x6c\xcf\x58\xcf\x06\x6f\x0c\xad\x2a\x1f\x9d\x01\xc7\xc2\x75\x3c\x83\xf4\x82\x63\x46\xe9\xaa\x34\x5e\x60\x9c\xeb\xb3\x54\x91\x45\x3e\x97\x18\xe1\x8f\xbf\x93\x67\x6c\x18\xc6\xe3\x55\x7e\x65\x62\x27\x3d\xc9\xaf\x6a\x8e\x70\xfe\xaf\xe7\x08\x37\x78\x9f\xc2\x86\xf0\xaa\xc9\xdf\xc8\xda\x8f\xa8\x92\xbf\x97\xc1\x2b\xef\x62\xf0\xca\x2e\x06\x2f\x18\x91\xef\xa8\xc8\xa0\x73\x9f\xf4\x6c\x30\x7e\x9d\xd5\xfb\x44\xbd\xb3\xf8\xb3\x23\x3f\x80\x94\xa8\xe5\x3c\x74\xb0\x43\x1d\xde\x40\x9b\x2e\x45\x01\x90\x82\x53\xd1\x76\x5e\xd9\xe1\x6e\x14\xb7\x39\xe4\x9e\xf6\x3e\xb3\x62\x80\x80\xf1\x2f\x02\x95\x0e\xad\xe2\xd6\xe0\x33\x77\x15\xf1\x39\xce\xc7\xf9\xf3\x46\xe9\xd2\x19\x35\x65\x4b\x99\x5f\xd1\xa7\xda\x9b\x78\x0f\x18\xe1\x3e\x30\x0f\xd6\xbd\xdd\x67\x18\xf1\x05\x73\x47\xa7\x03\x54\x3f\x1c\xde\x51\x95\xfc\x4b\x9e\xb0\x2f\x62\x4a\x1f\x6c\xd9\x3b\x38\xb7\xd4\x53\x37\xcd\x64\xd6\x33\x90\xb5\xe6\xc4\xd2\x22\xad\x1f\x3e\x55\x24\x65\x18\x1a\x79\x02\xbf\x0f\xb5\x83\x8c\x1a\x85\xab\xb9\x48\x5c\xb3\x84\x5f\xe4\x8c\x26\x81\x4b\x50\x8b\xeb\x33\xec\xb1\x01\x9d\x6b\xd0\x91\x23\x57\x50\x8f\x43\xcc\x68\x7e\x4a\x5c\xae\xd6\xb0\xaf\xf1\x75\x5a\x90\x57\xe0\x5b\xca\xf7\x22\xca\xc1\x17\x57\x90\x32\xac\x5b\xb5\x1c\xe1\x70\x71\x6c\x18\x5d\x7f\x75\xfc\x9e\xd4\xf4\xcd\x42\x75\x55\x0f\x19\xca\xb4\x8e\x04\xe8\x5a\xe8\x09\x70\x42\x00\xed\x10\x31\x76\xeb\x58\x55\xf7\xde\xef\xef\x4f\x26\x17\x86\x08\xd5\x45\x34\x6b\xdf\xeb\xf4\xf8\x59\xd2\x31\x67\x56\x55\x25\xb5\x0f\xf3\xc7\xf5\xa8\x12\x11\x72\xaa\x89\x08\xd7\xcf\xb0\xae\xd5\x11\xab\x4f\x8c\xe4\xfb\xe5\xa6\xcd\xe5\x37\x01\xe0\xbd\xd6\x9f\xb2\x55\x52\x57\x6b\xcb\x5e\xa4\xcf\x0f\x18\x88\x80\x21\x10\xc7\x9a\x83\x61\x20\xbe\xc2\xd4\xbe\x91\x09\x40\x6b\xaf\x85\xef\x64\x02\xde\xf4\xeb\x05\xdf\xdd\x44\x38\x77\x9f\xaa\xc3\xfc\xcb\x18\xef\x8e\x19\x84\x07\xce\x4c\xbc\x6f\x78\x19\x8e\xb3\x16\xf0\x37\x30\x3d\xce\x59\x06\x83\x0d\x43\xc1\x79\xee\x90\x3c\xe7\x84\x71\x9c\x24\xa6\xa9\xaa\x72\x2e\xec\x55\x7b\x6f\xf4\x0d\xf1\xb8\xa1\xd8\xe5\xbd\xdc\x17\x32\xdf\x15\xd4\x03\xca\x14\x21\x3d\x8e\x66\xbd\xf6\x24\x6b\xcd\xd9\xa0\xf1\x9a\xff\xdd\xba\xa3\x8c\xbc\xa4\x6e\x61\xa8\xf1\xea\xf0\x4a\x87\xed\xcc\x3c\x27\xa0\x0a\xb2\x06\x25\xd7\xd6\x17\xa8\xfd\x6d\xca\xf5\xac\x5b\xc8\xf1\x45\xb6\xaa\xaa\x41\x5e\x55\xb9\xfe\x39\x01\xef\x4e\x37\xda\xef\x53\xed\x40\xcd\x66\x5c\xb9\x0c\x70\x68\x66\xf5\xbd\xce\xeb\x4e\x5d\x15\x9c\x85\xc9\x50\x01\x38\x3f\x55\xe5\x1c\x3b\x74\x6d\x0d\xde\x13\xaa\x9f\xb8\xc7\x7c\xcf\x64\x1c\xd7\x0e\x7a\x1d\x6b\x46\x5b\x8d\x0c\x4c\x3b\x05\x29\xe7\xff\x17\x6d\xef\xba\xdd\xb6\x91\xec\x8b\x7f\xe7\x53\x88\x58\x39\x38\xe8\xb0\x49\x93\xce\xe4\x9c\xd9\x90\x5a\x5c\x4e\x6c\xc7\x9e\xf8\xb6\x23\x27\x8e\x43\x73\xbc\x20\xb2\x29\x22\x06\x01\x4e\xa3\x29\x59\x11\xf9\x32\xff\x27\xfd\xaf\xae\xea\x2b\x00\xca\x9e\xd9\xeb\xf8\x83\x05\xf6\xfd\x5a\x5d\x5d\x5d\xf5\x2b\x07\x7d\x32\xb7\x7a\x1a\x0b\x56\x80\xd2\xe8\x14\xff\xcc\xf0\x8f\x4b\x98\x42\x40\x2f\x63\x77\x65\xb5\xe4\xe9\x62\xb6\x70\x71\x14\x95\xac\xfd\xc0\x87\xf3\xa1\xf7\xeb\xbb\xf9\xc1\x00\x2f\xeb\xfc\xf5\x6c\x3c\xf7\x95\x55\x67\x0f\x6d\x29\xe3\x43\x4f\x8a\xdb\x3b\xbc\x13\x7f\xaa\x34\xe6\x25\x35\xfe\x76\x69\xe6\x3e\x54\x44\x20\xf7\x5d\x81\x6e\xbe\x5b\xc6\xc1\xf2\x9f\xaa\x83\x5d\xeb\x88\x35\x4b\x25\x74\x65\xe3\x96\xfb\x3d\x1f\x65\xcb\x25\xe2\x1c\xaf\x40\x42\xa9\x4f\xb3\x47\x45\x01\xa1\x35\x1c\xf1\x7e\x1a\xba\x43\x2f\xed\x8a\x45\x71\x8b\x6e\xea\x25\xda\x81\xbf\x51\xdc\x18\x8a\x16\xfd\xe4\xf0\x63\x41\x05\x11\xb9\xc9\x0d\xdf\x5c\x72\xe1\xad\x76\xc5\x88\x36\xd3\x1f\x91\x1c\x07\x37\xb9\x26\x46\x2d\x69\xa3\xd6\x76\xd3\x5f\xde\x40\xb6\xf5\x1f\x8c\x34\x27\xac\xa8\x9d\x46\x6a\xea\x60\xc2\xee\x07\xa0\x39\x90\x03\x5c\x02\x69\x37\x75\x08\x18\xdf\x37\x55\xd2\x5c\xf5\x47\x1f\xb9\x1a\xe9\x8e\x3e\x79\x29\xb6\xbe\x31\xc8\x5f\x49\x77\x7a\x5d\x08\xc3\x01\x89\xe9\x86\x1b\x0e\x09\x0f\xed\x40\x1f\xf6\xa9\x4f\x27\x12\x71\x40\x92\xd4\x5d\x43\x37\xea\x79\xf9\x64\x99\xcb\xaa\xc3\x2d\x4b\x77\x0f\xe0\x5e\xe0\x11\x8c\x50\x3a\x2d\x59\x83\x7c\xa8\xe3\x6e\x53\x95\x8f\xca\x05\xaf\x25\x5e\xf0\xb2\xbc\x74\xc6\x26\x7f\xea\x71\x5f\xe6\xd7\x54\x92\x8e\xf7\x9e\xaf\x7b\xec\x31\x65\x38\x0e\xb1\xf3\xf5\x46\xa5\x30\x0f\x37\x5f\x7a\xa6\x5a\xe6\xd7\x5f\x7e\xa1\xba\xef\xd5\xc6\xdb\x56\xb8\x65\x9b\x43\x9e\x90\xa9\x15\x70\x7a\x43\x9c\xfe\xe4\xce\xe5\x7f\x63\x4f\x04\x30\xd3\x5f\xff\xd2\x73\x22\x4d\xd9\x8d\x27\x9e\x84\x37\x1b\x46\xc3\x87\x24\x7e\xb4\x6c\x89\xef\x2e\xcd\x66\x7e\xed\x12\xb3\x8c\x88\xdb\x17\xfd\x26\x0e\xb7\x0a\x04\x22\xeb\xed\x8b\x56\x22\x0c\x56\xc9\xec\xe6\xe8\x77\x40\x77\xdb\x04\xad\x62\x9e\xfa\x5b\x26\x18\x8d\xc6\x93\x64\xe3\xa9\xc7\xbc\xfd\x78\x64\xd0\xd0\xed\x16\x1d\xfc\x4a\x46\xa5\x77\x8c\xba\x6b\x45\x4e\xc5\x89\xdc\xcf\xad\x94\x26\xcd\x51\x3e\x45\xc4\x71\x09\x16\x7c\x81\xeb\x89\xf7\x3c\x91\x46\xda\x0c\x4a\xd4\xea\x1e\x9c\x08\xe4\x60\x80\xa7\x21\xc6\xc6\xb7\x7b\x6d\x82\x5d\x1f\xf5\x38\xdb\xd6\x42\x70\xdd\x04\xf1\x84\x91\xb3\x83\x8c\xa2\xc5\x9f\xc1\x7d\x16\xed\xda\x2b\x40\x27\x31\x92\x67\xc0\x74\x11\xd6\x78\x64\xbf\xaf\x34\x80\xa9\xc3\xf3\xf6\xdf\xc4\x72\x6d\xc6\xe3\xe7\x18\x33\x96\x70\x26\x04\x00\xfe\x21\x9a\x0f\x41\x6d\xf9\xd7\x79\x82\x09\x15\xdb\x81\xf6\xef\x35\x73\x21\x25\xb8\xac\x52\xfc\x89\x9f\x94\xb7\x92\x72\xc5\x31\x81\x3b\x53\xdf\x0f\x2a\x6a\xd4\x43\xb5\x95\xc3\xf0\xda\x99\xb6\x39\x9c\x39\xe4\xbf\x5c\x87\xe8\x42\x5b\xb0\x3c\xce\xaf\x61\xc5\xe2\x1d\x1f\x1a\x52\x78\x0d\xd9\x0d\x26\xba\x29\x3a\x8f\x0b\x85\xc6\x74\x61\x1b\x1b\x0c\x01\x98\x01\xe7\x86\xa7\xa9\x6a\xef\x90\x9d\xa2\x08\x7c\x75\xd0\x5a\x7b\x8d\x80\x8b\xbc\xba\x84\x64\x40\xec\x9c\x80\x69\x97\xa0\x0a\xf6\xc4\x07\xe7\x76\xd7\xc3\xab\xa6\x6f\x50\xb4\x0e\xed\x59\xc9\xad\xb1\x58\x8a\x22\xbc\xbd\x19\xef\xf2\x06\x30\x59\x8b\x68\x12\x73\x89\xbc\xa2\x51\x44\x08\xbd\xae\xf2\x65\x52\x0d\x98\xb6\xb0\x2f\xe8\xa2\xab\x32\x04\x3a\xc3\xea\x16\x44\x33\x91\xe0\x44\x6b\xf9\x32\x13\x9f\x00\x29\xbe\xa4\x63\xbc\x4e\x03\x78\x13\x4d\xb6\x6c\xb0\xe8\xf0\x34\x74\xc2\x47\xf9\x92\xb1\xed\x81\x58\xa2\x06\x6d\x58\xb9\xfb\x50\xc1\x56\x6a\xf9\x00\x62\x17\xa0\x7c\x55\x03\xf6\xc4\x20\xf8\x17\x88\xee\x51\x8c\x64\x45\x50\xc8\x52\xab\xab\x7a\xbe\x4a\xb4\x6b\x0a\xd6\xee\x00\x0e\x81\x91\x22\x46\xe6\xf5\xb6\x17\xda\x2f\x74\x60\x9e\x83\x4e\xef\x2e\xf1\x63\x40\xd5\xf7\xc1\x3f\x93\xad\xe0\xfb\x65\x7e\xbd\xdf\x92\x6f\x1e\xe4\x78\x23\xc7\x79\x7b\x95\x6d\x38\x42\x55\xa8\x5d\x6e\x4c\x07\xbe\x6b\x4f\xeb\x52\x87\xfc\x66\x5e\xae\xfb\x4b\xd3\xb0\x0c\x3b\x5d\xc3\xda\x21\xb4\x1a\xb0\x25\x42\x6e\xc3\x1b\xee\xa9\x5a\x2b\x54\xf6\x99\x38\x25\xe0\xb8\xd7\xdb\x35\xc6\xe6\xf6\x90\x48\x5a\xd3\x05\xcd\x68\x41\x08\x5d\xab\xf1\x43\x82\xb5\xe4\x49\xa6\x67\xaa\xa0\x37\x26\xb4\x08\x91\x85\xc9\xe9\xca\xbe\xbb\xc6\xf1\xda\x7e\x9f\x92\x7c\x95\x6c\xaa\x64\x45\x18\xdb\x54\xc9\x9a\x90\xd5\x68\x5b\x6d\x13\x42\xd7\xfa\x6f\x31\x1c\x5a\x39\xa5\x9a\xc5\x3e\x5b\xcf\xc6\x73\x6d\x8e\xb0\x42\x1c\x60\x48\x6e\xbe\xb2\xc1\xc0\x3e\x4c\x2f\xd9\x98\x6e\xd9\x98\x6e\x60\x01\xd0\x6b\xc8\x4b\x6f\xdd\x53\xf5\xc6\x3c\x04\x5c\xdb\xa7\xea\xe5\xd9\x6d\x1c\x6f\xfc\x97\xe9\x25\x61\xec\x3a\x0c\x38\x25\x83\xc1\xd2\x4e\xf7\x15\x83\x2e\xd0\x4b\xec\x03\xfd\xe8\x2a\xb0\x9a\xdd\x6a\x1f\xae\xac\xc1\x46\x3a\x26\xf4\xd2\x8f\x5a\xfb\x51\xe4\x74\x7b\xf6\x31\x8e\xaf\xfc\x3a\x6d\x41\xdb\xe1\x84\x30\x76\xe9\xc7\x5d\xfa\x71\xaa\x69\xdb\xde\x6a\xb6\xf2\xe0\x55\xaf\x2c\x24\xa2\x2b\x86\x50\x35\x26\xb8\x33\x30\x76\x89\x5b\xf6\x86\xc1\x94\x2e\x09\x7d\xc2\x60\x52\x6d\xdb\xa0\x77\xb6\x80\xd4\x21\xc3\xb9\xc9\xdd\xef\x55\x81\xfb\xfd\x96\x27\x37\xf4\x09\x99\x26\x3f\x08\xbd\x22\x56\xf4\x86\x3e\xa1\xd6\x3d\x15\xed\x8f\x89\x31\xfe\xbb\xff\xe9\xba\x5b\xfa\xd3\x54\x5b\xbb\x3f\x71\x47\x70\x2b\x6b\x8b\xb1\x70\x32\x38\x2d\xe9\x32\xcf\xde\x2d\x69\x57\x98\x9c\xd0\xee\xec\xa0\x3e\x13\x72\xc8\xb4\xc9\x53\x93\x03\x6d\x96\xde\xf6\x00\xba\xd8\x04\x22\xad\xe9\xcf\x8e\x97\xfd\x87\x24\xe6\x9b\xa4\x28\xc0\x03\x28\x8f\x4c\x66\x7d\xc6\x9d\xf0\x0f\x5e\xb9\x4d\xa6\x8f\x9c\x78\x12\x16\x95\x96\x8e\xf1\x32\xd6\x7a\x30\x09\x44\xbf\x23\x4d\x08\x9f\xe8\x58\xa6\x29\x66\xb7\xf6\x00\xe4\x68\xfb\xea\xea\xe8\xd0\x7e\x7f\xa4\x71\x17\x52\xa8\xf1\x54\x04\xfb\x47\xbd\xfc\x13\x73\x9b\x37\xfb\x61\x0a\x2a\x3d\xea\x2b\x75\x81\x84\x8e\xc9\xfd\x0f\x45\x76\x22\x9a\x7d\xc2\x3a\x03\x7d\x38\xde\x52\x6b\xb8\xac\x1a\x3a\x6a\xc7\x1f\x96\xc6\x87\xe0\x29\x89\xd0\x0b\x7c\xf9\xba\x40\xcc\x8e\x3b\xa3\xf3\x90\xbe\xe6\xb4\x71\xd0\xa4\x9f\xf8\x81\xbe\xf1\xdf\xa1\xee\x34\xc7\x76\xec\x7e\xa5\x81\xfb\x42\xaf\x05\xf3\x03\x45\xc8\xda\xa6\xd2\x27\x67\xc0\x21\x3a\x74\x07\x78\x64\xb1\xf9\xfa\x2c\x2c\x47\xb1\xf4\x01\xac\xa0\x4e\x10\x84\x39\x6e\x30\x04\xa9\x68\xa7\x04\xb8\x0a\xc3\x9f\xf8\x8d\x9f\x83\x1d\xae\xfd\xa5\x5a\x85\xa2\x3b\x61\xf0\x63\x4b\x83\x68\x6c\x84\x7a\x02\xf5\x91\x4b\x8d\x6b\x6c\x55\x1d\xdd\x8d\x72\xc9\xf9\xf6\xc7\x6a\x1b\x8c\x9c\xf3\xd8\x39\x9b\xd3\x7b\x9b\xc9\x67\xd2\xa2\xca\x6e\xb4\x48\xd0\x36\xd0\xc2\x2b\xb7\x63\xb0\x39\xbd\x96\x5f\x83\x60\x5c\xd5\xa6\x6b\x3e\x03\x76\x37\xd3\x3a\x16\x0d\x5b\xc8\x35\xba\xa3\x5f\x39\x9f\x1b\xb0\x45\x37\xbd\x4e\x03\xd4\xe8\xbf\x34\x24\xcd\x60\x9f\xcb\x38\x69\x62\x4d\xb7\xab\x14\x66\xee\x4a\x16\x82\x4f\x6b\x5f\x13\x92\x96\x9e\x9b\x89\x38\xde\xa2\x0e\x17\x48\x50\xcf\xd8\x98\x58\x1f\x00\xf8\x31\x9c\x1c\x0e\xf4\xcf\x60\xa5\xa3\xab\xc4\xd6\x32\xbf\xd5\x63\xac\x57\x82\xf5\xb7\x41\x0e\x54\x56\x1d\xe9\xaf\x8f\xa7\x87\xf1\x39\xb6\x93\x3c\x9f\x7a\x5e\x7e\x8d\x21\xeb\x52\x2c\xd6\x61\xfc\x62\x7d\x40\x2f\xae\x97\x92\x7e\x94\xda\x66\xcb\xfa\xc0\x05\xc3\x25\xeb\x96\x7a\xec\xb9\x55\xbd\x91\x9d\x58\x2a\x34\xd3\xe6\xc2\xdc\xb9\xde\x33\x9e\x66\x76\x8c\xa3\xb5\x30\x47\x6b\xe1\x7c\x95\xc8\xb3\xdd\x34\xc9\xd9\x98\x56\x6c\x62\x3d\x51\x91\x54\x9e\x15\xd3\x8a\x25\x39\x93\xc3\x1d\x19\x4c\xd2\xa4\x56\x04\xd4\x08\x81\x01\x0c\xaf\x88\x63\x55\xcc\x77\xf3\x73\x89\x98\x27\x49\xc5\x8a\xe1\x4e\xdd\x6c\xe4\xb9\x8a\x4d\x32\x6b\x20\x68\x35\x13\x50\xef\x03\xea\x7f\x38\xa7\x3b\x28\x45\x30\x06\xca\x35\x35\x17\x80\x8f\x38\xc5\x46\xa4\x26\x33\x94\x24\x08\x35\x86\x69\x08\x40\x97\x13\xb4\xe0\x85\x56\x0c\x1f\xce\x99\x2a\x74\xf8\xdd\x1c\x7f\x4f\xe6\x5e\x81\xa7\x44\xd5\xf8\x70\x90\xd4\x43\xf6\x1d\x99\x3b\x87\x5b\x8a\x83\x37\xb6\x71\x22\x8e\x73\x06\x1d\xc0\x72\xcf\x5c\x77\x4d\x47\xa1\x8a\xc1\xdf\xe6\x71\xdc\x57\x1f\xdf\xb7\xeb\x48\x60\xac\x55\xd7\x6c\xdf\x8d\xb7\x42\x6d\x95\x09\x32\x73\xfd\x54\x99\xe6\x80\x13\x57\x51\x23\xaf\x4e\x33\xea\x2c\x85\xd3\x1d\x35\x16\xc4\xa9\xaf\x68\xf2\xc4\x21\x9e\x68\xb1\x3b\x08\x89\x02\x5c\x08\x76\x77\xa0\xbc\x65\x8e\xae\xf1\x6b\xc0\x87\x13\x09\x69\x6d\x88\x4f\x01\xf4\xab\x89\x34\x21\xe7\xec\xce\x77\x69\xd8\x40\xc1\x6d\x80\x1f\x60\x65\xbf\x1c\x81\x2e\x20\xbd\x66\xf5\x5d\x3e\xb4\x54\x33\x9e\xc8\x86\x3f\xb0\x99\x9c\x7b\x9a\x44\x17\xd0\x0a\x68\x8b\x87\xb9\x85\x98\x28\xea\xfc\x7f\xa7\x3d\xd6\x87\x31\x6f\xf9\x67\x6d\x0d\xd2\x8a\x72\x40\x2a\x21\xd8\x8f\x6f\xd5\x1a\x78\x12\xde\x64\x9f\xd5\x85\xdc\x13\xb3\xd0\xb0\xcb\xaf\x76\xc0\x89\xd4\x0d\x5f\x81\xaf\xa5\x23\x1f\x5a\xe6\xb4\xcd\xae\xf8\xef\x46\x58\x96\xd8\xc7\x7b\xf3\xa1\x9f\xef\xf7\x7b\x1b\x73\x59\x2d\x6f\x89\xe7\x63\xde\xf3\x44\xd8\x5d\xfa\xfb\xff\xb4\xf4\x00\xb7\xe7\x93\x0c\xe0\x36\xe5\xe8\x26\x5f\x5e\x71\xe9\xf0\xcd\xd1\x1b\x89\x0d\x77\xd8\x5c\x39\xf1\xd3\xcf\xf2\xf9\x28\xbb\xac\xae\xb9\x91\x5c\xfc\x56\x06\x91\xa4\x87\x18\xb0\xac\xa2\x06\x8f\x60\xc0\x2a\xb8\x77\xab\x81\x8d\x3c\xef\x69\xa2\x87\x70\x1d\x51\x51\x2d\xb2\x22\x32\xce\x97\x3f\xe5\x09\xbe\xfb\xe9\x70\xc6\xca\x69\x36\x60\x3b\xdf\xa4\x37\xcd\x86\x0d\xc8\x13\x2d\xde\x8f\xd4\x88\x45\xa0\x97\x1d\xe1\x18\x42\x8d\xfa\x11\x8f\x77\x28\x4a\x1c\x53\xc8\xcc\x06\x00\xb5\xbe\x1d\x24\x5e\x41\xd3\x71\xaa\x66\x89\xf4\x0c\xd2\x31\x58\x12\x35\x52\xbc\x86\x14\x1a\x28\x97\xed\xa8\x40\x73\xd6\x01\xdb\x19\x1b\x23\x3d\x44\x99\x37\x44\x19\xf5\x1c\xe5\xbc\xf5\x21\x73\xc0\xfa\x8a\x59\xc1\x8d\x36\x3f\x2f\x99\x36\xea\x05\x85\x5a\x54\x95\x35\x9d\x17\xa4\x1c\x32\xd5\x0a\x9a\x0f\xd9\x23\x1f\x99\xc0\x0e\xa9\xd8\xef\xfb\xa2\xed\xec\x0e\x61\x6f\x8f\x1a\x6e\x0d\x58\xa5\x2b\x1d\x20\x7c\xa7\xf6\x14\xf7\xef\x8c\xab\x6f\xe9\x5e\x0e\x33\x67\x99\x9c\x0f\xc1\xb8\xcb\x23\x57\x3f\x06\x60\x25\x86\xbb\x82\x35\xd3\xf4\xd4\x48\x28\x2c\xf0\x92\x6e\xf0\x0f\x38\x59\xcc\x43\x2f\x38\x2f\xbd\xe2\x68\x45\xee\x1c\x8e\x61\x22\xa9\x7d\xe8\x05\x84\x94\x9c\x4a\x9a\x35\x1c\x39\xd2\xca\x41\xa6\x4f\x71\xe6\x99\xb6\x54\x36\x16\xcb\x7a\x41\x98\xb6\xd4\x41\xf5\xb5\x0f\x47\xb3\x43\xfe\x57\x20\xca\xec\xff\x7a\x68\x05\xf7\x8c\xfd\xa3\x4a\x04\x89\x63\x19\xc7\x3a\xf6\x6c\x37\x93\xea\x70\x44\x40\xda\x84\x33\x9e\x25\xaa\x84\xe1\x50\xce\xc9\x30\xb1\x65\x4c\xc7\xe9\x84\xd0\x52\x91\xb3\x94\x33\x48\xa5\xca\x39\xdb\x79\x66\xe8\x5e\x91\x03\x53\xa4\x3a\x8a\xa0\x56\xb6\x9b\x0d\x06\xaa\x4c\x5b\xa4\x2a\x4d\x95\x19\xc7\x20\xec\x95\x55\x1c\xf3\x73\x01\x2c\xdf\x34\x4b\xf8\x70\x42\xd2\x0c\x4c\x48\x0f\x25\xd3\x50\xee\xa1\xff\x4c\xf0\xe0\x00\xe0\x3f\xa5\xdd\x35\xe8\x41\xb3\x00\xcc\x78\x90\x67\xed\xcc\xd2\xce\x12\xed\x82\x7d\xc1\xea\xa4\xa0\x59\x86\xbe\x1d\x7c\x8f\x58\x7d\xf6\x7b\x15\xc7\xc9\x02\xa1\xa3\x21\xd9\xef\x15\x21\x74\xe1\x79\x60\x0c\xb0\x86\xc6\x3d\x09\x5e\xa9\xb0\x5d\xbe\x59\x7b\xe3\x78\x10\x2c\x40\x0d\xf8\x16\x1c\x28\x1c\x77\x0c\xfa\x49\xf5\x62\x10\x50\xa5\x60\x6d\x1b\xf8\x06\x84\x6d\xc8\xad\xe5\xfa\xa0\xd4\x67\xbb\xef\x94\x4e\x36\x3d\x04\x19\x17\xff\x06\x06\x6c\xf4\xf9\x17\x5e\xb0\x12\x70\xdc\xf2\x51\xb5\x93\x75\xbe\x44\xc8\xa3\xdc\xf3\x55\xd7\x05\xfb\x07\xfe\x16\xc4\xa0\x93\x5c\x92\x33\xcb\xa2\xbf\x91\x49\x69\x30\xff\x69\x7f\x4c\x0d\x1a\x50\xce\x1e\xe5\x49\x49\x05\x3e\x18\x20\x5e\x66\x69\x9c\x9d\xe5\xab\x24\x3f\xaf\xda\x45\xd8\x14\x14\xc1\xf2\x42\x57\xec\xfd\x31\x9d\x90\x9e\xc3\xcc\xf6\x70\x75\x20\x79\x4e\x4e\x4f\xcd\x6e\x7c\xac\xba\x94\xc1\x7e\x14\x84\xee\xd8\xf3\x32\xc9\xd4\xda\xd9\xc5\xb1\xf6\xd5\x30\x36\xfe\x31\xfb\xbb\xfd\xbe\x9f\xd4\xa3\xc5\xfa\x1c\x85\xbf\xa3\xc5\x7a\xbf\xaf\x81\x77\xb7\x01\x71\x5c\xc3\x50\x7a\x7e\x20\xea\x5e\xce\x5e\xe7\x49\xc6\x8a\x91\xac\x8c\x1b\x68\x3b\xa6\x8f\x65\x5b\x58\x9f\x0f\xe1\x8c\x32\x12\xfb\x87\xdf\xba\xb1\xed\x30\x39\xa5\x3b\xa6\xd1\xaf\x7c\xec\xf0\x32\x30\xbb\x5d\xea\xe7\x21\x3c\x23\xa9\xa4\x3b\x47\x6b\x58\x7f\x4c\xab\x73\x03\x44\xa1\x01\x1e\x86\x75\x5a\x9d\x81\x49\xac\x0e\x18\xd4\x69\x92\x21\x00\x00\xd8\xb3\x1e\x70\x1b\xbd\x85\x86\xae\x0c\x60\x91\x71\x86\xcf\x64\xa6\xc2\x97\x4c\xc0\xdf\x2d\x2b\x92\x35\xa1\x1b\x96\xd1\x6b\x56\x24\x4b\x42\x6f\x19\xe8\xef\x95\xe7\xd7\xde\xec\x0a\xba\xa4\xb7\x6a\xee\x80\xdb\x3e\x85\xd3\x69\x31\x5d\x32\xb6\xde\xef\x97\x8c\xed\x14\x1d\x5d\xd3\x09\x49\x97\xc3\xf5\x19\x9b\xb8\x4b\xce\x15\x2b\xcf\xb6\xfb\x7d\x39\xdc\x9e\xb1\xeb\x61\x39\x5d\xa7\x4b\x7a\xc9\xca\x61\x72\xc5\xd8\x7a\xba\x4d\xaf\xc9\x29\x40\xf7\xf8\xa8\x3d\x57\x08\xd4\x63\x45\xd5\x50\xff\x15\x85\x1c\x9b\xf4\x96\x5e\x9e\x0d\x27\xd3\xe1\x24\xbd\x3c\x9f\x80\xc3\x4c\xe8\xb0\x16\xd1\x2e\x78\x5e\x24\xab\x07\x0f\x09\xbd\x61\xeb\xc1\x47\xfd\x1c\x71\xc3\xd6\x76\xa9\x3d\x61\xe3\xd3\x27\x67\x1f\x4f\x07\x83\x27\xe4\x06\x5b\x7e\x43\x27\x58\xc8\x67\x56\x24\x37\xa4\xf7\xf9\xbc\x9c\x26\x4b\x76\x43\xaf\xd9\x67\x9a\xdc\xb2\x4c\x5d\x6a\xae\x07\x6c\xc2\xbf\x53\x23\xfa\x91\xa4\xc9\x9a\xdd\xd0\x2d\xfb\x0c\x03\xb7\x1a\xb2\x8f\xfe\xc2\x79\x25\x03\x2c\x1b\xde\x62\x63\x9b\x60\x87\x2e\xc6\xbc\xd6\x30\x76\x29\xc9\xdd\x25\x3a\x8d\xde\x0a\x1e\x35\x59\xf0\xbf\xfd\xd7\xe9\x60\x20\xc9\xa5\x0c\x10\x95\x1b\xb0\xf8\xaa\xdc\x57\xd5\x92\x27\x08\x96\xd3\x48\xac\x8a\xbe\x04\xfc\xff\x7f\xa7\x94\x43\x00\xc5\x78\x29\xcd\x4b\xea\xa5\x0c\x20\x1f\x1f\x7c\x3f\xb6\x90\x71\x00\x34\xde\xee\xab\xba\x24\xfe\xe2\x15\x06\x38\xea\x9e\x3f\xe7\xe7\xdd\xc3\x68\xef\x09\xcd\x51\xb4\x11\x5a\xa7\xc2\xc7\x0a\xb2\xff\x22\x42\x85\x1d\x54\xaa\x6e\x27\xbd\xa0\x43\x82\x58\x1e\xeb\x98\xa1\x7b\xce\x0c\xa4\xa3\x01\x09\x7a\x30\xb1\x9d\xcd\xcf\x1f\x7a\x9d\x75\x77\x9a\x1c\x4e\xc4\xc9\x18\x96\xd9\x0b\x49\x9f\x4a\xfa\x97\x76\x90\xfc\x4c\xb2\xb1\xa3\x0f\x3f\xe8\x8b\x1a\xbc\x0b\xb3\xbb\xc5\x26\xe5\x80\x05\x67\x44\x9c\x8a\xee\xa8\xfb\x26\x8e\x61\x8a\x6f\x86\x78\xac\x50\x0f\x13\x4f\xa5\xf3\x9c\x53\x21\x84\x9c\xbc\x55\x07\x9e\x8a\x42\x7c\xbd\xd7\x97\x7f\xd6\x18\x13\x3a\xa3\x7a\x06\xe2\x6d\xd1\x19\xf7\x63\x06\x32\xfd\x71\x5b\x4f\xc1\xd6\xf8\x12\xef\x58\xd0\x54\x7b\xd9\xd1\x3e\x84\xcd\xf5\x24\xfc\xf9\xa6\xd2\x75\xa1\x22\x8b\xa2\x65\xcb\x74\x30\x78\x26\x0f\xf4\x2f\x39\xfd\x4b\x8e\xaa\x6d\x6d\x1c\xe1\xc3\xc0\x90\xd4\xe0\x00\x56\x37\x65\xfd\x93\xa8\x76\x5b\xf6\x97\x64\x77\xd5\xb6\x4e\x67\x3a\x6a\x4e\x97\xbc\xc8\x6e\xf9\x52\x35\xf9\x32\x5b\x7c\xaa\xd3\xd9\xdc\xdb\xa6\xbf\x06\x18\xd6\x8d\xd2\x40\xd8\x02\x36\xcf\x49\xdb\x22\x80\x8f\x9a\x25\x53\xc5\x6d\x2c\x2b\x84\x36\x6b\xfa\x6e\x9b\x89\xf9\x68\x91\x15\x45\x12\xc2\x2d\x1b\xa8\xc9\xca\xaa\xfb\x05\xfe\x5d\x55\xf8\xac\x9c\xe3\x9b\x7b\xf7\xfc\xa0\xec\xa3\x19\x8b\x33\x74\x76\x2c\x93\xa9\x8b\x1c\x4b\x30\xeb\x2e\x70\x30\xf0\x7a\x41\x73\xf0\x9d\x76\xb8\x59\xe7\x05\x4f\x5c\x87\xc9\x81\x24\x92\x1c\x56\x79\x99\x15\xc5\xed\x9d\x5e\xe2\x2d\xcf\x76\x5e\x97\x61\x84\xa0\xaf\x6a\x94\xb4\xae\x0e\xe4\x3a\x0d\x46\xde\x91\x3f\x18\x19\xda\xe1\x24\xef\x9d\x4c\xd4\x58\xb7\x84\x9b\x7e\x9a\x92\xa9\x24\xb4\xd4\x9e\xdb\x96\x8f\xb5\xcb\x93\x72\xb4\xd9\xd5\x12\xf7\x4e\x1c\x7f\x93\x94\x60\xed\xa1\x53\x69\x9a\x70\x5f\xb9\xff\xfa\x8a\xba\x7f\xfb\x8a\x34\xef\x75\x1a\x1c\x47\xcf\x8f\x67\xb8\x58\x03\x8d\x8f\xd3\xee\x25\xaa\x21\x2a\xfa\xd2\xb3\x4b\xfa\xb1\xc8\xb7\x5b\xbe\x8c\x63\xe9\x4c\x92\x90\x6c\x03\x99\x02\x8d\x94\x10\x6b\x96\x75\xa7\x1c\xca\x4e\x90\x59\x2a\x35\x2d\x7a\xaa\x48\x91\x08\x1d\xc1\x00\x62\xac\x86\xb2\xd0\xf7\x4d\x8c\xdf\x64\xe2\x2a\x2f\x7f\x40\x0c\xa9\x61\xb3\x05\x5d\x39\xd0\xa4\x10\xd0\x77\xb1\x95\x61\xd9\xcd\xfe\xa2\x3a\x8d\xe2\x77\xf8\x28\xa0\x51\x71\xfc\x0a\x43\xdd\xec\x33\x3e\xf2\xe8\x2d\x6a\x39\x59\xb2\x8a\x80\x77\xf0\xf0\x66\x28\x19\x18\x9e\x3b\x3a\x06\xd4\xdf\xfb\x8d\xec\x67\x4b\xc9\x26\x4c\xa3\xb9\xcf\x73\xab\xa3\x42\xf6\x7b\xd1\x90\x55\xa9\x39\xeb\xc4\xc1\x34\x5d\x62\x3c\x58\xc3\x25\xbf\x39\xf9\x19\x34\x97\xfc\xd0\x3b\x75\x25\xf1\x5a\xaf\x5f\x6a\xd3\xa0\x3d\x07\x1a\x74\xda\x77\xfc\x7a\xcf\x32\xec\xf1\xc6\xa6\x8a\xe3\x7f\xe0\xe0\x5e\x66\xc2\xc8\x19\x5f\xa8\x90\x76\xd7\xfa\xdd\x7d\x83\xc1\xcc\x96\x7f\xee\x6a\x9c\xe6\xb7\x15\xdb\xc8\x44\xba\x02\xdc\x57\xa0\x9d\x80\x7c\xf1\x77\x54\x86\xe2\x0d\x23\x5e\x0c\x4a\x0c\xda\xa7\x47\x01\x13\x5a\x9b\x12\xd1\xbd\xd6\x45\xcb\x57\xd0\xa0\x51\xf6\x60\x25\x13\x49\x06\xb2\x85\xb9\x0c\x4b\x2e\xfb\x7c\x61\x8f\x47\x1f\xc7\xe6\xcb\xe5\x0e\xd7\xaa\x5c\x42\x68\xd2\x1c\x73\x58\x59\x8d\x93\x99\xa0\x5a\x22\x5a\x36\x2c\x9d\x7d\xb7\x38\xe6\xed\x4c\x2b\xb8\xf9\x0e\x1f\x7e\x6b\x4c\x7c\xcf\xec\x83\xa0\x5d\x40\x3f\x42\x89\x92\xde\xe1\x79\xd9\x39\xf8\xb8\x63\x1b\x63\x71\xa6\xb5\xa7\x6c\x40\x1c\x6f\x44\xe2\x7b\xf3\x6e\x43\x53\xbb\xc4\xcd\xd2\x40\x31\xc1\x5b\x09\x4d\x09\xf0\xc4\x73\xe8\xad\x7a\x1d\xc7\xc6\x96\x83\x3d\xae\xc0\x9e\xbe\x6f\x19\xe2\x75\x56\x3f\x45\x3b\x8c\x56\x50\x42\x48\xaf\x63\x90\xd5\xae\xbd\xdf\xf3\x5c\x2b\x8b\xba\xee\x76\xcf\xab\xe3\xfb\xfa\x5a\xc3\x0c\x29\x2b\x89\xe3\x1f\x60\xa7\xbb\x85\xec\x28\x9d\xdb\x8d\x7f\x74\xa4\x69\xae\x95\x38\xce\x25\xe8\x0e\xb5\xb1\x4b\x3c\x76\xb2\xdd\x2b\x34\xc7\x04\x2b\x41\x50\x98\x10\x71\x7c\xc5\x9b\x1e\x56\xdf\xdf\x43\x3d\x8c\xda\x22\x3e\x51\x37\x9b\xfe\xdf\xd0\x74\x7d\x1a\x6b\x6f\x43\x62\x74\xb3\xe6\xbc\x80\xd7\x97\xdf\x0d\x12\xa9\x47\xda\x9c\x5d\x80\xbf\x92\xfa\x01\xa5\x03\xdb\x28\xaf\x98\xa0\xd0\xf7\x1a\x01\xa1\x55\xb2\x22\xce\x1d\x16\xbd\x61\xe5\x7d\x4d\x43\x2f\xb4\xdf\x59\x6b\x05\x7c\x0c\x00\xab\x55\xa6\x46\xc0\x6a\x51\x1f\x0c\xa7\x5e\x6d\x04\x8c\xd6\xbf\x60\x7d\xac\xd2\xd1\xce\x86\x07\x29\xda\x83\xd6\xd1\x5d\x20\x59\xed\x91\xed\xee\xf0\x51\x9c\xae\x56\xb1\xc8\x5a\x1c\x21\xb7\x7e\x6d\x47\x3b\xac\x22\x83\x8a\x3b\xba\xfc\x02\x7d\xda\x79\x24\xe3\x5f\x00\x0e\x1e\xac\x0c\xc3\x87\xb7\x31\x92\xad\xaf\xab\xa4\xf4\x45\x58\xf8\x8a\xf2\x3d\x78\x70\xd7\xd2\xa2\xfe\x84\x66\xda\x45\x21\x28\xb3\xc6\xb1\xe8\x33\x39\x45\xb8\x35\x92\x66\x74\xc7\x7e\x15\x09\xf7\xbd\x90\x81\x10\x19\x65\xc9\x0d\xef\x64\x5b\x0a\x8f\x12\x64\xe8\x19\x3b\x76\xa6\x87\x70\xed\x7c\xc9\x20\x64\x92\x01\xc8\x5d\xb9\x47\x58\xd5\xe1\xbf\x08\x42\xd4\x50\x38\x75\xd1\x9d\xbf\x98\x93\xad\x6a\xe7\xce\x5f\x27\x16\x30\xb7\x51\xe8\xb0\x20\xe7\x13\x70\xe6\x05\x0e\x98\xc3\xc2\x70\xa5\x24\x1b\xbf\xb4\x17\xae\xed\xcd\xe2\x54\xd4\x70\x11\x94\xd7\xaf\x50\x55\xd0\x3c\xa8\x64\x87\x44\xd2\x17\xda\x0f\x7e\x83\xed\x22\x5d\x11\xb2\x6a\xcc\xb4\x66\x3f\x15\xf9\xf6\x43\xf3\x1a\x71\x5b\x80\x57\x0e\x69\x61\x0b\x15\x99\x83\x37\x71\xcc\x8d\xb9\x9e\x97\xb2\xfa\x2d\xe7\x37\x4e\x95\xf4\x3a\x44\xd8\x87\x27\x80\x7b\x1f\x5d\x68\x8e\x97\x27\x78\xe4\x19\x80\x8b\xc8\xb3\xf1\x34\x67\xfd\xb1\xc5\xfe\xc5\xd0\x73\x0d\xea\x80\xce\x57\x90\x3a\x78\x27\x54\xe3\xc9\x30\x20\x22\xa8\x0a\xd0\x9f\x78\x6a\xc2\x79\x1c\xf7\x97\x66\x05\x3b\xc7\x92\x00\xc4\x80\x16\xdb\x5d\xe0\x24\x06\x81\x04\x1a\x3b\x14\x9e\xa4\x79\x18\x08\xca\xdb\x9e\x08\xa5\xc3\xd9\x55\xfd\x44\x46\x5e\x38\x77\x12\x0d\x08\x13\x69\xbd\x50\x5a\x44\x94\x87\xdb\xcf\xa7\x91\x9a\xbe\xf6\x53\x54\xe8\x6e\x8c\x56\x7a\x86\xcd\xec\x24\x79\xf3\xf9\xb7\x6d\x42\x5d\x91\x83\x5a\x62\xda\x51\x70\x05\x78\x3f\xb7\x97\xfc\x19\x40\x95\xbc\x04\xb5\xe7\x9a\x66\x26\xf8\xd7\x72\xed\x47\xa0\x1d\xa0\x07\xab\x74\x5a\x9f\x55\xee\x81\xb5\x26\xd5\xac\x46\x15\x73\xe7\x65\xe9\xbf\xf3\x44\x85\xd2\x68\x9d\x2f\x39\x6a\x54\x67\x50\x44\x88\x2b\x0f\xd9\xb3\x66\x76\xf0\xd6\x0e\x20\xf3\xd1\xae\xd4\x05\x08\x2b\x9b\xf6\x25\x74\xe0\x16\xc6\x9d\x01\x47\x79\x2a\xd8\xec\x7c\xe4\x24\x46\x50\x85\xa4\x91\xf6\xd1\x10\x51\x19\x44\x3b\xce\xc3\x31\x0d\xa3\x55\x5e\xe6\xf5\x3a\xf1\x7d\xf1\x3b\x27\x16\x46\xa6\x63\x5e\x39\x13\xd2\x03\x29\x18\x98\x23\xba\x40\x2b\x55\x00\xc1\x8d\x77\x37\xfe\x59\x17\xd5\x74\x32\xd9\x59\x38\xea\x7a\x26\x9c\x66\xe2\x0a\xb6\x45\xdd\x55\x5b\x47\xaa\x66\xf5\x9e\xb3\x76\xdf\x6d\x4a\x58\x3b\xea\x39\xfa\x0d\xe0\xba\x68\x40\x95\x08\xdb\x00\xaa\x7a\x7e\x33\x8e\xa4\xf5\x5b\x02\x79\xfc\xc6\xfc\xf7\x91\xc6\x04\xf8\x95\xe8\x30\x61\xbf\x97\x5f\xdf\xb6\x7f\xbb\x61\x41\xab\x7e\xb7\xef\x53\x68\x25\x94\x97\x9c\x49\x63\x7a\x59\x4b\xd6\x12\x60\x50\x81\x4f\x0d\x92\x3d\x57\x81\xa7\x84\x83\xfb\xb8\x72\x99\x4c\x14\x3f\x8f\xb6\xf8\x09\x82\x9e\xcd\xe6\x84\x68\xe9\xa0\x7d\x3b\x11\x07\xe0\x62\xc1\x78\x28\xff\x4b\xe3\xd6\xa9\xaa\xa6\xaf\xf3\x64\xa3\xcd\xe7\x50\xb5\x66\x28\x06\x93\x74\x82\x69\xcb\x6a\xc9\x1d\xb2\x1d\xca\x67\x51\x17\x0c\x76\x35\xfb\x01\x69\xbe\xe7\xab\xbb\x4b\xad\x8b\xcd\xe6\xb4\x62\xf2\xb4\x3a\x13\xa7\x95\xd1\x41\xc8\x42\xff\x22\xf6\x5d\x51\x91\x25\xd2\x2b\x59\x35\xc8\xd0\x19\x9d\x76\x7c\x96\x79\xde\xa8\x6c\x75\xff\x90\x4d\x3e\x04\x7c\xec\xe9\x63\x5c\xbb\xd7\xb3\x8e\x3f\x13\xe1\x47\x0c\xf4\xc9\x9a\xff\xc5\x8d\xbb\x94\xb1\x79\xe9\x0b\xdc\x83\x95\x71\x2c\xac\x9b\x29\xeb\x7d\x3e\xd7\x7b\xf9\x05\x2a\xc9\x5c\x72\x51\xef\xf7\x1d\x81\x5a\xbf\xac\x1d\xc1\xa4\xf3\xde\xe2\x49\x58\x40\x89\xda\x38\xb9\x7a\x5b\x91\xcf\x71\xfc\x57\x69\x1f\x6d\xbd\x76\x48\xa1\xe6\xd7\xe8\x33\x88\x33\xcf\x2f\x96\xca\xf4\xcc\x64\x12\x83\x92\x9c\xbb\xb8\x29\xe4\x4b\x13\x17\x32\x60\x25\x35\xc5\x0e\x58\xe9\xca\x94\x67\x81\xaf\x2d\xe1\xb5\x2a\xac\x3c\x48\x48\xee\x92\x8a\x95\x8a\xa3\x11\xaa\x6e\x3a\x21\x64\xaa\x6b\xd3\xa9\xb4\x3a\x7e\x85\x78\x15\x84\xba\xbc\x0c\x05\x3f\xaf\x82\xf6\xa4\x50\x99\x35\x0c\xf1\x9b\x81\xc7\xf2\xa9\xa9\x50\x52\x49\x87\x47\xeb\x1b\xd3\x46\x8d\x6f\x2b\x53\x9f\x5f\x87\x59\x9d\x5e\x81\xb4\x0e\x3b\xd4\xcb\xe2\xb8\x3e\x56\x49\xa6\x2b\x19\x2d\xaa\x72\x91\xc9\x04\xb6\x44\xa6\xfb\x55\xeb\xfa\x6c\x6c\x90\xb9\xd6\x59\x49\x57\xff\x51\x65\x20\x6f\xbb\x22\xda\xa9\x95\x7d\xb6\xc3\x92\xa7\xfa\xef\x80\x95\xa9\x34\x81\x83\x1d\x2c\x73\x58\x87\x6d\x37\x3f\x80\xc6\xea\x39\x88\x17\x66\x0b\x77\xaf\xce\xde\x75\x97\x1b\xea\x63\x7e\x92\xf2\x55\x92\x83\x8f\xa4\xdc\xf9\x48\xd2\x9f\x83\xdc\xb4\xaa\x3c\xd2\x2a\xda\x4f\xe4\x59\xe9\x89\x09\xe5\x39\x2b\x43\xb7\x98\x95\x0e\x70\xae\x9b\x2c\xe7\x86\xa6\xf5\xce\x11\xa5\x3e\xa0\xf7\xfb\xc4\x7e\x2b\x5a\x79\x3a\x9c\x30\x76\x5b\x25\x19\x15\x24\x8e\x33\xed\x41\x26\x20\xd7\x30\x01\x77\x6d\xcf\x52\x2d\x5f\x9d\x3e\x7d\x69\x78\xd1\x54\x44\xb0\x4b\xf3\x80\x79\xbe\xa1\x74\x1f\x3a\x3d\x59\x39\x9f\x55\xc6\xdb\x62\x22\x9b\xaa\x5f\xb0\xfd\x9c\x26\x43\xe3\xad\x21\x4c\x4b\xf1\xbd\x45\x34\xbc\x7a\xa9\x42\xc5\xac\x9c\x23\x5d\xf4\xca\xf2\x1c\x92\x8b\xa6\x83\x9c\x8a\xe9\x96\xd3\xac\x51\x0b\x9c\xac\x9f\xf7\x7b\xc1\x8e\x91\x5e\xad\x29\x82\x70\x7b\x15\x85\x95\x91\x0a\xe7\xe5\x0c\xb1\x37\xdb\xfd\x54\x9c\x23\x78\x12\xda\x0d\xc0\x8b\x10\x94\x06\x06\x8f\x7d\x86\x43\x58\x9e\x8f\xe1\x6f\x85\x3e\xac\xb5\xf1\x63\x30\x88\x6c\x37\xc8\x66\x15\xe6\x1d\x4a\x5a\x0d\x06\xc6\x9b\xcc\x6e\x28\x7b\x72\xc0\x72\x2a\x06\x2c\x47\x23\x32\x4b\x86\x05\x01\x4b\x32\x5d\x76\x52\x9e\x8d\xa7\xe3\xd4\xab\x22\xa8\x43\x0c\x58\xf9\x6d\x36\xab\x86\x90\x6e\x92\x8e\x09\x56\x47\xd5\xde\x3e\x1c\xe9\xbd\xe7\x08\x58\x34\x5f\x7b\x82\x49\x14\x6c\xac\x27\x52\x76\x3c\x9a\x49\x78\x30\xd3\x87\xb5\x3a\x9d\xd4\x86\x00\x1f\x23\x76\x2f\x0c\x06\xc2\xea\xe2\x79\xae\x73\x45\xd7\xd3\x89\x04\xe3\xd0\x77\x22\xdb\xea\x17\x6b\xd6\x0d\x52\xae\xae\x88\x26\x25\x8a\x39\x5b\x09\x21\xd8\xb9\xc0\xf0\x5e\x86\x65\xfb\x61\x5c\x76\x6a\xb7\x76\xbe\x6b\x20\x4a\x84\xbc\xc8\xff\xe2\x49\xe0\xa0\x57\xef\x2c\xb7\x1b\xfe\x95\x27\x92\x9c\x8a\x3e\xb3\xfe\x10\x4e\x05\x13\x9e\xb3\x15\xb0\x30\x10\xfb\x3d\xe0\x68\x1a\x43\xc4\x38\x8e\xa4\xd8\x81\x6a\x61\xdb\xe8\x33\xbf\x2a\x2b\xc1\x87\x60\x00\x54\x47\xf0\x66\xe1\x8a\x03\xf1\x90\xba\xdf\x82\xd4\x43\xfb\x8b\xb4\xa6\x0a\x9e\x72\x5c\x73\x77\x35\x7c\x95\x0a\xd7\x04\xe8\x42\xbb\x19\x65\x25\x87\xda\xb0\x26\x0a\xd7\xe2\xb5\xf6\x63\x5f\x6b\x6a\x7c\xbf\x7e\xa2\x62\x70\x2b\x26\x2d\x44\xa6\x56\xe9\xcb\x6c\xd0\xfb\x21\x88\x60\x34\xf0\x89\xbb\x71\x80\xaa\x30\x1c\x57\xb4\x60\xa0\x8a\x55\xd1\x8c\x68\x56\x6a\xc2\x58\x01\x8a\x47\x71\x9c\xec\x9c\x3a\x59\xa1\x21\xac\x14\x9f\x69\x4c\xf0\x54\xca\xc5\x5a\xbb\x8b\x07\x4f\xa6\xd4\x68\xf0\x75\x38\x32\x1d\x9a\xb8\x5e\x01\x66\x7d\xc8\x13\x37\xe5\x6c\x00\xe2\x99\x24\xd5\x70\xe1\x5f\xc3\xb5\xde\x42\xa0\xf6\x46\x86\x0b\x87\x85\xef\xa9\x3e\xef\x44\x07\x16\x9e\x3f\x43\x09\xaf\x12\x09\x90\x61\x42\x43\x97\x01\xf0\x43\x1c\x9b\x07\x86\x00\x0f\x22\x21\x84\x20\x32\xde\x3a\x07\xf0\x7a\xf8\xfb\x33\xbf\xa5\x19\x22\xc2\x12\x94\xca\xda\x6b\xe8\x52\x64\x57\x57\x60\xb9\xd5\x9f\x1c\x85\xae\xea\x4a\x3d\x3e\xd0\xc9\x78\x4c\x1c\xdb\xd6\x5f\x08\x68\xa8\xd1\x92\xab\xf1\x67\xaf\xbe\xc9\xd5\x84\x6a\x29\x8a\x41\x0c\xfd\x2d\x4f\x54\xd2\x45\x56\xf3\x93\x49\x6a\x84\x40\x5a\x60\x5e\x5e\xa9\xfd\x3a\xed\x0c\x55\xec\x66\x39\x0d\x05\x87\xe4\xae\x9a\x7a\x6d\x7f\x52\x25\x57\x9c\x82\x15\x5b\xea\x3c\x1a\x2e\x76\x35\xbc\x39\xf4\xcc\x3d\xc2\xba\x14\xee\x3d\x95\x71\xfc\x54\x8e\x64\xbe\xe1\xe7\xf9\xf0\x6f\xe3\x31\x58\x55\x6c\x79\xf2\x54\x8e\xb6\x55\x4d\x05\x99\x96\x2c\x92\x22\xdf\x16\x3c\x4a\x5f\xc8\x38\x7e\xd1\x95\xfa\x85\x4d\x9d\x94\x2c\x5a\x56\xbb\xcb\x82\x47\xf4\xa9\x64\x77\x2a\x6d\x9a\xd3\x6d\x55\xa7\xe2\x40\x52\x15\x8d\xce\x7f\x22\xfa\xa2\x15\xdd\x33\x8b\x9d\x3b\x34\x53\x76\x3d\x95\xa3\x0d\x97\xd9\xcf\xfc\x36\x95\xa3\x85\x14\xc5\xcf\xfc\xd6\x53\xba\x54\x33\xf3\x58\x54\xdb\x38\x7e\x57\x81\xb4\x38\x44\xf1\x32\xd5\xa1\x68\x75\xc7\x3c\x0c\x5f\x41\x08\xc0\xb7\x25\x5b\x9e\x40\x8c\x36\x46\xda\xcd\x89\xc1\x34\x10\xe4\x6c\xac\xd6\x9f\xd6\xf0\xc3\xb4\x3b\x30\x47\xa2\x82\x9c\xdb\xb8\xb3\x31\x99\xb6\x45\xba\x0d\xba\x43\x77\x6e\xe4\x69\xc1\x7e\x0e\xe0\xaa\x17\xe4\xae\x46\xdf\x31\x5d\x0b\x14\x64\x8b\xb0\x24\x20\x54\xaf\x08\xb5\x72\xbf\xc9\xad\x62\x95\x87\xbe\x5a\x10\x15\x91\x7b\xce\x5a\x96\xa2\xc2\x70\x2b\x11\x75\x14\x69\x61\xbe\xc8\xa0\x15\xfb\xde\xc6\xbe\x27\x67\x93\x71\x1c\x27\xcf\xf2\x64\x41\x68\xbf\x8c\x63\xdb\x9b\xe1\xc3\xf1\xf8\x6c\x17\xc7\x3f\x70\x7b\xb4\xd3\x1a\xb0\x46\xff\x8b\xb1\x6c\xda\xbd\xbb\x02\x13\x03\xbb\x3d\xf2\x10\x60\x17\xc0\x85\xd2\x46\x20\x39\x90\xde\xf1\xc1\x02\x4f\x53\x1d\x83\x55\xd0\x46\x7a\x5c\x35\x1d\x81\x09\xe9\xbd\x3f\x36\xac\xef\xbb\x87\xd5\xf8\xa5\x5a\x90\xf4\x38\x26\x83\x5b\x09\x99\x56\xa5\x05\x27\x36\xc6\x49\x26\x2d\x58\xa6\x17\xbd\x59\x8b\xbd\x1c\x1e\xb1\x0d\x2d\x9b\x26\x3b\x4c\xe2\x2f\x62\x5a\xb3\xdd\xf9\x70\x32\x5d\xcc\x76\xf3\x54\xdb\x1a\x0a\x2a\x08\x49\x93\x5a\xa7\xf6\x3d\x67\xb8\x10\x34\x22\x54\xb4\xf6\x76\xea\xea\x40\xe7\x96\x66\xbf\x65\x85\x0a\x23\x25\x8b\x04\x5f\xc8\x08\xf4\xaf\x6b\xe6\xd7\x42\x05\xd3\x67\x6d\x1f\x34\x67\xe9\x8e\x0d\x27\xce\x3e\x40\x13\x03\x6b\x33\x61\xe0\x1b\xde\x55\x62\xf9\x48\x26\x82\xf4\x7c\x2b\x0a\x68\xc4\x7e\x9f\xc1\x45\xa6\x5c\x4e\x9f\xf1\x24\xa3\x35\x5d\x19\x33\xbc\x15\xda\xe0\xa5\x2b\x7b\x8d\x35\xc4\xc9\x56\xb0\x36\xad\x5b\xf2\x04\xed\xee\xe8\x18\x24\xf6\x19\xb5\x21\x80\x14\x41\xbe\xaa\xea\xb5\xa9\x7a\xad\xab\x5e\x6b\x5c\x63\xa6\x13\x08\xd2\xcb\xa7\xea\xee\xb3\x53\xb3\x63\x30\xd2\xe8\x7b\x15\xfb\x98\x27\x0b\x73\x43\x9d\xd5\x73\x42\x77\x84\xde\xe1\xe2\x49\xfb\x13\x5a\x89\xfc\x2a\x2f\xd3\xe8\x5b\x58\x60\xd1\x81\x90\x74\xe1\xc1\x1f\xa8\x09\x35\xc6\x98\x0d\x42\x16\xac\x09\x57\x95\xb9\x3b\xef\xec\xbd\xd8\x84\xed\x06\x13\xa2\x8e\x85\x7b\xab\x37\x0b\x90\xa4\xef\x54\x91\x3b\x5a\xd3\xba\x22\x69\xb2\x63\x63\xec\x8f\x36\x44\x9d\xd5\x73\x55\x54\x5d\xb9\x1c\x1a\x96\x1c\x3d\xda\x6e\x59\xf5\x45\xbf\x3e\x1b\x5f\x3b\xf1\x3a\x91\x86\x5a\x0e\x06\x1b\xba\xf0\x56\x14\xae\x3b\x35\xbb\xa8\x74\x6b\x8d\x7a\x17\x74\x49\xdc\xdd\xda\x9d\x72\x81\xb7\x28\x95\x1a\x4e\xa8\x25\x95\xf6\xc9\x24\x5f\x25\x4b\x26\xbd\x92\xef\xdc\x63\x1b\x88\xd8\x5a\x4c\x11\x05\xb6\xe9\x26\x57\x97\x5b\x8f\xc1\xa2\x62\xb4\x58\xd3\x8a\xd0\x95\x8d\x96\x7e\xb4\xd4\xd1\x6b\x87\xf3\xb0\xa0\x2b\x42\xbd\x87\x5a\xf8\xbd\x09\x7c\x22\xa8\x15\x6b\xac\x02\xae\x5d\x0c\x87\xbb\x00\x80\x95\x7a\x4f\x72\x61\x7a\x72\xba\x39\x63\xd7\xa7\x1b\x73\x75\xb9\x65\xd0\xa8\x8d\x6e\xcf\x15\x5b\x55\xc9\x2d\x55\x6d\xea\xad\x19\xdb\x4e\xb5\x4c\xd0\x6d\x98\x0d\xbd\x02\x84\x0e\xf5\x97\x90\xf4\xd6\xac\xc6\x2b\x45\x27\x8f\xa6\x85\x52\xb7\xb4\x22\x00\x88\x62\x5f\x1c\xc2\x1c\x48\x2c\xcc\x5a\x35\x04\xae\x63\xc9\xe6\xb8\x4d\x1a\xab\x93\xda\x75\x7b\x70\x0f\x6d\xf6\xc1\x45\x7a\x32\xa7\x4b\x56\xd3\x8f\xec\xd2\xec\xdb\x1b\x06\xaf\x8f\x66\xfb\xf4\x59\xa9\x8d\xa0\x1c\x61\x42\xfd\xed\x80\x2e\x49\xcd\xde\x61\x94\xeb\xb4\x6c\x51\x14\x19\x50\x94\x2d\x4f\x9e\x98\x9a\x3f\x92\xf3\xf1\x34\xb9\x61\x4f\xd0\xc8\xfc\x23\xbb\xe5\xc9\xa5\xe1\x2c\x4c\x2a\x45\xa6\x55\x12\x93\x87\x5d\xab\x44\xc0\x60\x3c\xd1\x66\xe0\x07\x5c\x9a\xcd\x21\x23\xbd\x7c\xb6\xb3\xd6\xe5\xd0\x9c\x8f\x84\xde\xb8\x31\xce\xd5\x38\xd6\xf0\xd0\xb4\x30\x4e\x09\xde\x25\xea\x0e\x71\x9a\x2c\xb4\x66\xd8\x6a\x24\xab\xfd\x1e\x7f\x9d\xad\xf0\x79\x33\x8e\xbd\x03\xfb\xe7\x86\x53\x8d\x0d\x63\x79\x1c\x5f\xa3\xef\xb5\xc9\xf7\x63\x6f\xe0\xd7\xee\x46\x73\x06\xde\x31\xa7\xc3\x87\xe3\xd4\x86\x9d\x1b\x27\x99\xd3\x87\xe3\x74\xdc\x5b\x7f\x45\x35\x49\xd5\xf1\x6c\x34\x60\x6b\xaa\xea\x57\x0d\x00\xe8\x61\x4b\x46\xae\xd4\x96\xe7\x5d\xbc\xb3\xe2\x94\x36\x6c\xf2\x60\x4c\xe1\xc4\x05\x09\xa6\x0f\xe3\xdf\xe6\xa2\xd4\xbd\x32\xa2\x97\x5d\x51\x8a\x13\xf8\x48\x68\x36\x5a\xe7\xb5\xac\xc4\x2d\x6c\xcc\x0b\x5e\xbc\x86\x15\xcb\xec\xb5\xed\xb2\xc1\xe2\x71\x72\x07\xcc\xff\xf4\x5a\xb1\xf2\x57\x09\x57\x3d\xf8\x88\x89\xae\x1c\xd3\x12\x36\xfc\x23\x6d\xb3\x22\xb6\x6d\xdd\x5c\xca\x47\xcb\x8d\x94\x74\x41\x0e\xea\x32\x42\x4b\x92\xfe\x4b\xd5\x0d\xc8\xbe\x7a\x48\xe3\xf8\x19\x00\xff\x6b\x97\xbd\xea\x42\xf2\x30\xad\x41\xd9\x0a\x5b\xa2\xfa\xf5\x32\x5f\x2e\x0b\xfe\xb8\xba\x29\x1d\xf3\x0a\xf6\x5b\x3f\x18\x24\xb2\xf2\x38\xf2\x6f\x9b\x95\xa3\xad\x2a\xbf\x4b\x6f\xa6\x2f\xf1\xc6\xd4\xc0\x00\xd1\x3c\x1c\x2f\xb2\xdb\xbc\xbc\xfa\xa1\xd8\x89\x27\xd7\xbc\x04\x6f\x45\xc7\xa0\x2e\x8f\x64\x41\xed\xc9\x63\xc5\x4d\xe8\x8f\x02\x51\x6c\xd5\xbd\xee\xd0\x78\x63\x2a\x3c\x41\x82\x01\x32\xcd\xdd\x75\x9e\xba\xab\xfd\xfb\xe6\x0d\xbe\x3f\x39\x80\x41\x13\x12\xf1\x55\x51\x55\xc2\xb3\x19\xbe\xda\x49\xc9\x45\x7d\xec\x84\x34\xfe\x6b\x2d\x2e\x46\x09\xf3\x25\x8d\x55\xab\x63\x26\x15\x97\xf7\x25\x17\x79\xf9\x2a\xa9\xce\x8d\xda\xc6\x7e\xdf\x17\x15\x28\x8b\x18\xb1\xc6\xaf\x50\x70\x35\x44\x0b\xd5\x61\xe6\x09\x56\xad\x04\x71\xc7\xc6\xa7\xbb\x33\x77\x36\x9a\xf6\xdb\x77\xe3\x9d\x81\xa4\xcd\x6c\x9c\x07\x5f\xb5\x03\x91\x72\x11\xc7\xc5\xfd\x3d\x3e\x37\xbe\xd4\x17\xec\x91\xf7\x98\xb5\x62\xad\x9a\x55\x91\xc6\xd3\x72\x0e\xcf\x0a\x9c\x2e\xe8\x8a\x4a\x42\xa1\x3f\xfe\x2c\x2e\x44\xf0\x98\xab\x27\x35\xc2\x92\x7e\x2c\xf2\xc5\xa7\x48\x31\xaf\xb0\x6f\x57\xc2\xe7\x4d\xd6\x0d\x39\x05\xb0\x0f\x42\x11\x91\xbe\x16\x50\xc4\x71\x3f\x13\x4e\x7b\x10\x24\x01\xb0\xcc\x69\x15\xc7\xc9\x4a\x78\x1b\xc7\x38\x7a\x86\xf5\x0e\xdc\xb2\x01\x37\x7f\x2b\xb2\xb2\x5e\x81\x37\xd1\x82\x43\x25\xe0\xb4\x2a\xb8\xcd\x12\x14\xfd\x94\xf6\x51\x5e\x8b\x16\x9e\xe6\x05\x57\xa9\xd4\x96\xf6\x82\x3c\x4b\x6c\x93\x85\x66\xec\x91\x10\xd9\x2d\x40\xbf\x83\x44\xd8\xbb\xad\x94\x1a\x3d\xd1\x8e\x73\x56\x14\xd5\x8d\xba\x10\xa9\xd2\xde\xde\x6e\x79\xbd\xdf\x0f\x27\x7d\x76\x5b\x25\xf7\x25\xa2\x88\xea\xef\x5e\x16\xf8\xcd\x89\x6b\x62\xaf\x1a\x55\x65\x51\x65\x4b\x45\xf8\x64\xdb\x4d\x67\x35\x12\xbc\xde\x15\x70\x68\x3f\x98\x7d\xf8\x3c\x1e\x0f\x3f\x7c\x1e\xff\xfd\xc3\xe7\x31\x1f\x7e\xf8\x3c\x59\xcd\xef\x1e\x1e\x0c\x12\x39\xa8\xa0\xb2\x28\x22\x34\x9b\x95\x73\xc6\xe9\x60\x50\x33\xb3\x7e\x76\x1a\x0b\x44\xb0\x17\x86\x54\x09\x42\x65\x95\x0a\xe3\x8a\xa0\x01\xa6\x97\x21\xac\x9b\xec\xc2\xcb\x23\xc4\xb2\xcb\x08\x6e\x7f\xe8\x3d\x37\x88\x55\x3b\x42\x7f\x0b\x60\x19\x7f\x11\xc9\x4e\xc3\xb8\x57\x80\x8b\xfa\xa8\xd6\x02\x9c\xc3\x81\x16\x6c\x7c\x5a\x9c\xe5\xa7\x83\x41\x41\x76\x49\x39\x2b\xe6\xb4\x70\x2e\x16\x64\xc7\xcd\x15\xd4\x22\x9b\x0e\x88\x04\x39\x77\x52\xf8\xae\x5c\x6a\xfd\x01\x6e\x56\x37\xad\x6c\x6a\x5a\xfa\x44\x1a\x44\x96\xf9\x2a\xc9\x9a\x6b\xf3\xca\xb8\x3d\x78\x0b\x20\x80\xe4\x78\x8b\xfb\xc9\xf5\x94\xeb\xdb\x63\xca\x8d\xd8\x06\xf1\x1b\x17\xe0\xd2\xb3\x0e\xbc\x52\xa8\xd9\xfe\x29\x18\x44\xc5\x2d\x2e\x60\x09\xe3\x88\x2d\x1c\xa1\x29\x88\x45\x0b\x8b\x22\xba\x98\x15\x06\x4a\x07\xbf\xb5\x8b\x51\x91\x5d\x81\x87\xd7\x96\x8f\x88\x8c\x46\x19\xc8\x2f\x23\xe3\xa9\xc0\x57\xe4\x0d\x87\x43\x93\x74\x4e\xee\x0e\x3e\x39\x59\x36\x5e\xb2\x54\x65\x46\xaf\x2b\xf9\x92\xea\x4f\x57\x36\x5f\x61\xc8\x85\x6a\xf8\x7b\x5b\xed\x56\x53\xb1\xa3\x4a\x72\x92\x9c\x3d\x44\x60\x0a\x3f\x98\x49\x2a\xf6\xfb\xdf\x13\x4e\x41\x4f\x5f\x1e\xfc\xda\xda\x0c\x56\x9f\xc9\xa0\x17\x1d\xaa\x9d\xb2\x5d\x42\x5b\x43\x54\x82\xbe\xee\xef\x40\x08\x15\x8f\x03\x52\x53\xd7\x99\x8d\x7d\x20\x4d\xc4\x54\xb2\x96\xce\x60\x7a\x5c\x77\x4f\x75\x93\x00\xe6\x90\x53\xde\x3e\xde\x25\x54\xff\xec\x88\xf6\xde\x50\xa0\x3f\x41\x25\x4c\xd2\x7f\x85\x80\x22\x1d\xfa\x9e\x5f\x18\x2a\x2c\xe7\x4b\x63\x05\xca\xa5\x52\xf3\xf9\xd7\x82\x8d\xe9\x2d\xce\x7c\xaf\x9a\xde\x0a\x36\x1c\x7d\xff\x5d\x2a\xd4\xd7\xe4\xfb\xb4\xc0\x90\xff\x9b\xae\xe2\x38\x51\x9f\x93\x07\xdf\xe1\xa9\x72\x25\xda\xea\x2e\x8c\xa3\xde\xf1\x63\x5e\xc8\xec\x77\x70\xe4\xeb\x7e\xbf\xf7\xad\xe0\x41\xe3\x43\x71\x47\x32\xcb\x0b\xf5\x95\x7d\xce\x01\xed\xe7\xd9\xeb\x5f\x9e\xff\xf1\xfa\xd5\xdb\x47\x2f\x3e\x3e\xfa\xfd\xf9\x85\x51\x0b\x81\x74\x9e\x4e\x48\x57\xd6\xdf\x9e\xfc\xf2\xf6\xf9\x8f\x3a\xe3\x54\xd8\x6c\x69\xa8\x49\xe2\x5a\x44\xe8\xdd\xe7\x54\xd2\xdb\x54\x1c\x3c\x88\xa3\x4b\xe1\xac\xef\x4b\x76\x05\x47\xaf\x3a\xd1\x3e\x83\x01\xf9\xad\xff\x56\x8a\xe2\x2d\x23\x9c\x2b\xac\x7e\x28\x4c\xf1\xf9\x2e\xd0\xfb\x5d\xd9\x58\x7c\x1e\xb3\xd1\xce\x64\x36\x8f\xe3\x02\xa4\x98\x2b\x7c\xa4\x8c\xe3\xeb\x38\xae\x09\x4f\x1d\x7e\xa7\x1c\xc9\x4c\x5c\x71\x49\x97\x0c\x99\xa6\xd3\x75\x9f\xed\x4e\xd7\x6c\xed\x3f\x81\x99\xf4\x5b\x36\x3e\xdd\x9e\x2d\x0d\x25\xdb\xe2\x5b\xf1\x72\xb6\x45\xe4\x57\xc6\xd6\x3e\x51\x59\xec\x84\x2a\xe1\x9d\x1a\x9f\xb7\x50\x0b\x5b\x23\xe7\x7c\xc2\x0f\xd8\x3c\xf0\x6c\xb9\x40\x95\xf4\x3e\xbb\xb5\x90\x1e\xaa\xcd\x71\xbc\x75\x5a\xc0\xa1\x86\xb4\xa7\x71\x3b\xa8\xbe\xbd\x15\x34\x1c\x8a\x61\x38\x14\xea\xf0\xdb\x7c\xa9\x28\xb0\x27\xc9\xfd\xb2\x70\xdb\x05\x83\x0e\xb6\x25\xda\x0b\xd5\x8a\x68\x7e\x16\xa1\x60\xb3\x40\x5f\x1e\x4d\x1a\x71\xcc\x6d\xdf\x60\x05\x6c\x18\x34\xf8\xb6\xa5\x74\x7c\xc5\x6e\x07\x59\xe7\x3b\x6a\x6f\x73\x36\x9e\xde\xfa\xaa\xe2\xb7\x83\xcd\xf0\xfb\x31\x49\xaf\x7c\xf1\x8a\x67\xf1\x7a\x35\xd8\x0c\xbe\x1f\x13\x6a\x49\xe6\xad\x41\x5b\xb8\x3a\x90\xc3\xb5\x38\x7b\x38\xb6\x0a\x4c\x41\xc3\xa7\x8d\x7e\xf8\xa3\x43\xb3\xc0\x08\xc0\x9b\x03\x13\xf3\xf8\x77\x96\xdb\xef\xf7\xac\x3a\x72\xcd\xb1\x9a\x19\x41\x5d\x86\x7f\xf2\xab\x1c\x06\x29\xa8\xf4\x2b\x0d\xe2\xde\x53\xa1\x08\x80\xad\x3b\x8e\xe5\x03\xfb\x63\xbf\xe7\x2e\xea\xf7\x38\xe6\x36\xea\xf7\x5e\xd8\xdd\xac\x65\xe6\x00\xf8\x12\xb7\x82\x25\xb7\xe2\xdb\x6b\x31\x10\xe4\x41\x72\x2d\x06\x13\x42\x07\x83\x6b\xa1\xd8\xa1\x87\xea\x50\x48\x13\x5b\xe2\xc0\x1f\x82\x01\xab\x88\x7f\xc1\xff\x28\x7c\x18\x9b\x1a\x10\x17\x23\xc6\x14\xb7\x59\xad\x4e\x80\xed\x90\xac\x28\x67\x72\xee\xdd\x9b\x9a\xae\x52\x7d\x10\x51\xf3\x28\xd6\x94\x03\xd3\x9c\xf5\x27\xc0\x06\x35\xdf\x93\xec\x45\xb2\xde\x6d\xb7\x82\xd7\xf5\x93\x65\x2e\x6b\x00\xce\x08\xcf\x7e\x7c\x87\xec\x4f\x14\xb1\x52\xcc\x58\x9f\x55\x95\xd5\x64\x6c\x26\x2b\xe9\x91\x62\x27\x4e\x5b\xef\x02\x47\x05\x2e\xad\x6f\xf2\xcf\xbc\xa8\x3b\x08\xfe\x95\xf0\xb4\x15\xe5\xe8\xf3\xb7\xec\x56\x50\x39\xba\xc5\xbf\x08\x31\x77\x23\x80\x25\x2f\x2a\x47\x63\x9f\x74\xbc\x96\xfb\x6e\x6f\x81\x1a\xc2\xa8\x2f\xcb\xc4\x5e\x4a\x23\x0d\x58\x1a\xf5\x6e\xc0\x53\x57\xf2\xfd\x98\x76\x5c\xc7\xb1\x08\x14\xe8\x34\xc2\x34\xbe\x56\xa7\x2f\x5b\x72\x20\x54\xb2\x7c\x10\x9d\x44\x03\xa9\xb5\xa4\x9b\xaf\x9f\x4d\xa3\x67\x5b\xf8\xcb\xac\xd3\xfc\x79\x8d\x8c\x42\x90\x6c\x56\xce\xd5\xd5\x11\x71\xcb\x89\x1d\x6e\xab\x93\x6a\x2e\x3a\xfc\xb3\x14\xd9\xcf\xfc\xb6\x8e\x63\x5d\x4c\x2b\x86\xa2\x8b\xab\x46\x34\xd6\x03\x71\x28\x98\x29\xcd\x0c\x45\x9b\x5d\x21\xf3\x88\xb1\xaa\x3d\x34\x92\x50\x3b\xbe\x90\xe0\x0f\x75\xc7\x8d\x3e\x71\x6d\x51\xbd\x8c\x28\x0e\x82\x4b\xd6\x57\xc9\x74\x99\x7d\x56\xed\xf7\xc9\xb3\x3c\x11\x84\xe6\x6a\xfd\x11\xaa\xce\x8b\x2a\x8e\x1f\x7c\xf8\xdf\xdf\xe8\x0b\x94\x24\x53\x9d\xa4\x3f\x26\x69\xbf\x5f\x79\xc8\x6e\xc2\xc7\xbc\xd9\xaa\x1e\xf5\x2d\x90\x6f\xbf\x8f\x7e\x9a\xdc\x9b\x51\x3f\x6c\xfd\x14\x16\x54\x74\xa1\xe2\x87\xd1\x40\x50\x19\x88\xe5\xf5\xd8\x7e\x34\x52\x7e\x72\x20\xfb\xfd\x13\x54\x0d\x94\x4d\x01\x7e\x7b\x9f\x4f\x1f\xfc\xf3\xaa\x9a\x3d\x1a\xfe\x31\xb7\xfd\x48\xe5\x68\x53\xa9\x4c\x24\x28\x9b\x1c\x48\xda\x59\x6e\x33\x15\x32\x5f\x17\x9a\xef\x72\xf8\x6c\x1d\x97\x7f\xd9\x7e\x72\x30\x92\x00\x74\x7c\x7b\x36\x99\xc4\xf1\xc3\xff\xab\x58\x20\x8d\x30\x0b\xb3\x8b\x55\x02\xe8\x76\x60\x1e\xa8\xd3\xf4\x64\x83\x26\x4c\xfe\x0f\xa0\x6a\x39\x4d\x06\x4d\xaa\x3e\x6b\xf5\x82\x45\x1c\x27\xaa\xc1\x53\x81\x20\x07\xfd\x32\x8e\xff\xfe\x77\x74\x42\x0d\xbe\xf1\xd5\x0d\xcc\xbc\xe4\xb9\x2b\x98\xba\x4d\x7e\xc1\x6d\x1e\xa1\x93\xbf\xf7\x55\xdd\x0f\x3e\x5c\xfa\xce\x84\x45\x55\xd7\xeb\x2c\x17\x1f\x8c\x2b\x30\x19\xdc\x74\x1e\xe7\xd7\x23\xeb\x86\x98\xec\xf7\xf7\x98\x8f\xb7\xfd\x1c\xc2\x40\xab\x6a\xbd\x41\x33\x17\xc8\xfd\x3e\x79\xae\x06\x38\xea\x6a\x4c\xd4\x10\xd1\x7e\xe2\xb7\xbb\x6d\xa4\xf6\x45\x5b\x72\x5b\x5d\x73\x11\x81\x27\xf2\x17\xf7\x95\xf7\xbe\xbb\xbc\xb6\xb4\xd5\x94\x77\x08\xad\xea\x1f\x61\x67\xfe\x4f\xb8\x02\x10\x39\x58\xdf\xe3\xdd\xe9\xc0\x51\x6b\x9c\xfa\xf6\xd0\x9f\x3a\x96\x5d\x3f\x69\x08\x99\xf6\x7b\xab\x20\x63\x67\x17\x36\xa2\x19\xb4\x6b\x35\x82\x7a\x01\x10\xb3\x93\x6d\x8b\x40\xf2\x64\x70\x8f\xe1\x6d\x0d\x40\x38\x2f\x2c\x0f\xa9\x37\x03\x0a\x11\x50\x6c\x0b\xca\x2e\xaa\xba\x9b\x75\xbe\x58\xab\xe3\x56\x7f\x9e\x4d\xc6\x64\xbf\xef\xeb\xa5\x49\x92\x26\x9d\xd6\x45\x22\x55\xf8\xdf\xd1\x40\x0c\xa2\xff\x1d\x7d\x99\x28\x1c\x08\xc8\xc9\x8e\xc3\x39\xc3\xe2\x27\x64\xbf\x6f\xde\xdf\x1d\xb0\x74\x68\xd4\xf1\x56\xdc\x2b\x5b\xfe\x82\xa0\x98\xd0\x00\xde\xb9\xc3\xf7\x4d\xd2\xf2\x41\x9f\x80\x6c\x32\x82\xdf\x11\xe5\x4e\x93\x43\xa7\x60\xfd\x31\x7d\xe1\x23\x64\x6a\x16\x36\x58\x9d\x3a\x6d\x64\x55\xdd\xd5\x24\x1c\x75\xec\xce\x9c\x02\x4d\x80\x52\x19\xfa\x23\xae\x83\x07\x98\xe0\xdc\xee\xca\xa0\x26\x84\x3e\x1c\x13\xd2\x71\x5e\x7b\x4e\x77\x12\x62\xce\x1b\x0f\x76\xef\xfe\x41\x87\x36\x36\x1d\xde\xe0\xa8\x5d\x16\x3b\xd1\x3d\x68\x13\xfa\xfc\xab\x07\x8d\xa0\x53\x64\xe3\x12\xc7\xcb\x76\x59\xe4\xe5\x27\x2e\x8e\xbd\x60\xb4\x27\xb3\x83\xbf\x3b\xc0\x33\x98\x0f\x0b\xa8\x8f\xce\xcc\x93\xf6\x53\x19\x10\x44\x27\x8a\xee\xa3\x28\xde\x48\xa2\xdd\x24\x46\x24\x8e\x1b\x62\x6a\x2f\x92\xaa\x8a\xa1\x1c\x20\x03\x90\x4a\xfb\x1c\xde\x40\x66\x7f\x81\x98\x2d\xe1\x15\x90\x68\x40\xaf\x5f\x04\xbb\xd0\x5a\xac\x4f\xca\x25\xeb\x74\x9b\xa1\xf2\x4c\x97\x3c\xe1\x0e\x74\x62\x10\x00\x23\x0c\x27\x74\xa3\x26\xc3\x57\x3a\x1c\x24\x13\x70\xef\xea\x52\x4d\xb9\xc1\x4c\x4b\x15\xcb\xcf\x47\xb2\xf2\x6e\xf9\x6f\x9c\xce\x36\x60\x3e\xa3\x33\x3d\x4f\x73\x9a\xf7\x5c\x94\xac\x7c\x30\xe8\x5f\x44\x22\xdd\x71\x0a\xcd\x0b\xd0\xc9\x86\x60\x3e\x08\x11\x43\xe9\xfa\x40\x86\x13\x4d\x03\x9d\x93\x23\x0d\xdc\x6c\x92\xab\x4b\xde\x80\x41\xf9\xa3\xc5\x1a\x4c\x09\x47\x8b\x35\x31\xe8\x6a\x1e\x50\x5e\x4b\x2f\x76\x36\xa7\x96\x29\xe5\x45\x03\x05\x3b\x00\xe4\x71\xd1\xb3\x72\xde\x13\xc1\xa3\xf9\x1b\x91\xe4\x16\x82\x9a\x50\xf8\x09\xe2\x4d\x75\x29\x37\x2c\xea\x63\xd5\x1a\xde\x50\xeb\xf1\x00\xe7\x44\x83\x0a\xbb\x6e\xaa\xbf\x53\xa7\x27\xc3\xb1\x93\x8b\xf5\x40\xa8\x6e\xa6\x4e\x5f\x26\xe1\x66\xf8\x50\x2f\x41\xa5\xf4\xaa\x78\x25\x42\x9c\xc0\xbb\x45\x56\x2e\x78\x81\xe8\x4d\x20\x84\xc7\x71\xa7\xb2\x4a\xd5\x20\xfa\xbe\x80\x8d\x5c\x5d\x8e\xf0\x83\x62\xde\xb6\xdb\x05\x5d\x24\xeb\x8f\x0f\x07\x6b\x8f\x05\x56\x0f\x1a\xa8\xc4\x1d\x26\x46\xed\x4a\x9a\x63\x57\x55\x0e\xa0\x8d\x14\x6c\xbc\x4d\xb0\xac\x30\x50\x10\x78\xd2\x4c\x3c\x13\x2d\x2d\x3c\x1f\xf7\xf1\xde\x02\x31\xd8\x40\x96\xab\x9b\x89\xa6\x4f\xe0\xa5\x17\x8d\x3a\x22\x78\x66\x55\x43\xb3\x01\x5b\x46\x80\x22\x68\xa6\x00\xfc\x1f\x42\x4b\xdb\x9d\xa9\x3a\xc8\x52\x7c\xa9\x28\xed\x20\x95\x76\x90\xca\x60\x90\x4a\xdd\x06\xef\x44\x7b\xee\xdf\x89\x01\x19\x01\xdd\x45\x5b\xd4\x23\xb3\x4d\x7e\x46\x2f\x61\xf4\xb9\x20\x3a\x47\x4f\xe7\xe8\xba\x7a\xea\x5c\x07\xe0\x3c\x90\x44\x05\x5d\x41\xae\x63\x13\xc7\x2a\xae\xdd\x53\x82\xe2\xd9\x57\xf6\x30\xb7\xda\xb1\x4f\x50\x6a\xd5\xe4\x10\x30\xd2\xd8\x64\xf0\x51\x2e\xb9\x30\xda\x16\x56\x69\xab\xe9\x87\x60\x04\xfe\x81\x96\x17\xdb\xac\xac\x5b\x58\xd6\x5e\x9c\x7b\x3a\x90\x8e\x0f\xf2\xe2\x67\x72\x8e\x3f\x45\xaf\x2f\xec\x69\xbe\xdf\x97\x71\xac\xdf\xbb\x4a\x2a\x54\x8f\xd0\xbe\xcd\x59\x06\x0a\x78\xe4\xe9\x97\x9d\xa6\x22\x39\x9b\xe1\xbc\x4a\x78\x75\x3a\xcc\x69\xc5\xc6\xa7\xd5\x59\xe9\x9a\xe3\x8c\x78\x33\x56\xce\xaa\x39\xbc\xe5\x22\x0a\x25\xa1\xf8\xe0\x9a\x77\x3c\xb0\xe6\xfa\x35\xb5\xaf\x08\x62\xa1\xd6\x4a\x6d\xc8\x25\xb8\x54\xd1\xbe\x8a\xc0\x2a\xfd\x7c\x4c\xcc\x7b\xea\x6c\x47\x27\x73\xba\x62\x7e\x0a\x34\x68\x5f\x33\x57\x90\xac\xc8\x69\xb2\x52\x25\xf5\xb3\x51\x5e\x2e\x8a\x5d\x9d\x5f\x73\x0d\xc6\xb0\x22\x71\xbc\xc0\xbe\x63\xdf\x0a\xbb\x66\xb1\xac\x03\xa1\xc9\xfa\xbc\x91\xf9\x17\x34\x67\xe8\xaf\x9b\xb9\x6b\x58\xe7\x55\xaa\xaa\x3e\x10\x9a\xc3\x73\xdc\xc2\xd8\x81\xe6\x74\x41\xe8\x6e\xc0\x9c\x6f\xd2\x83\x13\x87\xd8\x33\x02\xcf\x03\x50\x8b\xef\x78\xf1\x1c\x4e\x4e\xf3\x73\x36\x3e\x1d\x0e\x73\xf2\x42\xad\x46\xbd\xd5\x66\xf9\xdc\xed\x36\xf5\xc3\x6c\xb8\x7c\x3a\x8b\xa2\xb9\x71\x54\xae\xd5\x80\x5e\xe8\x7b\xa2\xdb\x76\x2f\xdc\x79\x35\xe9\x87\x68\x98\xfb\x7d\x14\x99\x20\x70\x72\x83\x0a\x6b\x7e\x6b\xcd\x2a\xd4\xe7\x46\xef\x4d\xae\xe5\x2f\x6a\x2b\x4d\x3d\xef\x82\xf9\x32\x7d\x95\xbd\x22\xf4\x99\x11\xd0\x3c\x42\xee\xc1\xc8\xad\x66\xf3\xde\x65\x1e\x28\x99\x00\xa1\xb7\xef\xb4\x25\xe5\x46\x4d\x45\xad\xdf\xbf\x14\x59\xd2\xbf\xd5\x81\x52\x1a\xf8\x3b\x93\xc6\xd6\x04\xac\xbf\xa9\xec\xe0\xf7\xfc\xa9\x4f\x70\x80\xce\xec\xf7\xfd\xa3\x64\x24\x30\x60\x75\x75\x57\x78\xf0\xd1\x8c\x45\xbb\x72\x59\xa9\xcb\xfd\x34\x1f\x2d\xab\x92\xa7\xf9\x48\x85\x94\x9c\xd6\x41\x1c\x06\xa6\x98\x48\xef\x8d\xcc\xf9\xee\x2a\x59\x36\xdb\xcd\xa9\x98\xf6\x4b\x7d\x9a\xee\xf7\xe5\x08\xfd\x97\x24\xe8\xa3\x26\x35\x31\xe4\x74\x37\x18\x90\x53\x34\x72\x32\x65\x60\x4b\x73\x50\x7a\xd1\x9a\x3c\x79\x87\x66\xcf\xa9\xaa\x09\x7d\x4e\x11\x5d\x1c\x9a\x30\xfd\x99\x27\x25\xad\xe1\x70\xe9\x37\x2a\x26\x9e\xbf\xb1\x93\xf7\xe0\xd1\x82\xde\x01\x4b\xfa\x0b\x5f\x56\xa0\xd2\xd6\xab\x58\x79\xc0\xcd\x3d\x9b\xf7\xfe\xcc\x93\x4a\x95\xa5\xd1\x09\xef\xb4\x99\x51\x5a\xd0\x2b\x5e\x6a\x17\xad\x69\x3e\x72\x3f\x60\xef\xb8\x9f\xac\xf4\x7e\xec\xf7\x83\x41\x3e\xda\x64\x9f\x7f\xb2\x41\x1a\x12\xf9\x3f\x20\xeb\x40\xdc\x76\xac\x34\x96\x4f\x6e\x97\xed\x70\x97\xed\x8c\x9a\xaf\x4d\xa2\x69\xd5\xca\x1c\x9f\x92\x2e\xe2\xb8\x0f\x27\xc3\x4a\xb1\xb1\xfe\xe8\x24\x66\x36\xd8\x98\xf4\x0a\xec\xfd\x4b\x58\xdf\x7a\xc5\xaf\xd9\x6e\x0a\x9b\x66\x45\xd2\x4d\x95\x64\xa4\xf7\x0c\x0b\x5a\xd3\xb7\x25\xa6\xa3\xfd\x1d\xba\xb3\xd5\x4e\x6d\x1b\xaa\x82\xda\x41\x88\xdd\xfc\xbf\x88\x64\x45\x0e\x46\x81\xb5\x63\x3f\xa1\x7f\x13\xbd\x9f\x96\xf7\xec\xa7\x15\xa1\xcb\x23\xfb\x69\x85\xfb\xc9\x34\x51\xed\x27\x6f\x47\xfd\xe5\x68\xc9\xd8\xbc\x28\xa2\x81\x1f\x93\xc8\xd8\x31\xad\x79\x7b\x55\x25\x3e\xc3\xd8\xe5\xe6\xce\xe9\x2a\x72\xdf\xf9\xc8\xc0\x39\xa4\x34\x2c\x2c\x77\xce\x4a\x20\x56\x3b\x26\x01\xc1\x6b\x93\x9d\x04\xc2\x44\xc0\xe1\x39\xd7\x0e\xb6\xb5\x71\x26\xfc\x1d\x4a\x40\x23\xf6\x6c\x24\x9d\xef\x5e\x80\x24\xb1\xe6\x86\xe5\x99\x01\xa3\x03\x2e\x98\x0b\x2c\xaf\x34\x97\x9c\xc8\x27\x35\xcf\x44\xe0\x63\x00\x27\xf5\x1e\xd6\xe6\x99\x61\x6d\x28\xaa\x0b\x5b\x46\xfe\x4c\xb7\x93\xe0\x50\x87\x97\x97\x63\xf7\x03\xcf\xc2\x27\xf1\xc2\xcf\x7d\x4d\x5c\xa3\x03\xe1\xe0\xf8\x4c\x4d\x56\x51\xac\x51\x97\x1d\x31\xaf\xa6\x1e\x34\x2b\x27\x54\x6a\x9d\x15\xbc\x6d\x21\x78\x36\xe8\xac\x80\xa2\xa9\x6e\xe4\x20\xa7\xf6\x26\x02\x47\xd6\x6c\x63\xb0\x8e\xc9\xbc\xc9\x4e\x1f\x2c\xbe\x88\x6b\x74\xcf\x16\x75\x0e\xd8\x6a\xba\x52\xc7\xa3\x2f\x79\x52\x01\x94\x40\x03\x69\xdb\xd4\x67\xcf\xb6\x76\x75\x84\x4a\xad\xec\xb0\x04\xdf\x89\xc1\x21\x4d\x11\x59\x41\x9f\x7a\xb8\xa8\x5a\x16\x4d\xd7\x0e\x6a\xdc\xb7\x89\x06\x45\x3b\x28\x2a\x83\x0b\x1a\xad\x59\x7f\x42\x77\xda\xf4\xfc\x38\x0a\xfb\x8e\xbd\xce\x93\xa7\x65\x82\xc0\xe1\xc6\x8f\x28\x2d\x91\xc3\xdc\x69\x93\xf2\x0e\xe6\x92\xb1\xdc\xa0\xba\x59\x64\x6f\x06\x36\x0e\x07\x42\x7a\x65\xa8\x8e\xe3\xf7\x12\x8c\x8a\x64\x95\x70\xd2\x5b\xab\x4a\xd5\x7a\x7c\x0b\x12\xf8\xa3\x8d\xb4\xad\xa9\x3a\xee\xaf\xb4\x2d\x48\x7d\x0c\xc8\x22\xe7\xb6\x81\x2f\xcc\x31\x68\x43\x18\xa7\x8d\x58\x26\x5d\x88\x07\x92\x50\x83\x0c\x03\xc4\x41\x06\xd5\x24\x04\xb3\x04\x80\xa4\x1e\xdc\x4d\x4a\x99\x73\xe1\xde\x4c\x5d\x98\x19\x58\x54\xf4\xf8\xdb\x58\x23\x40\x14\x8d\xe5\x9f\xe0\x60\x0f\x2b\x73\x01\xef\xc9\xd1\x6a\x57\x14\xd3\x7f\x80\x75\x1b\x06\xf7\xb5\x3a\xe3\x7e\xdf\x66\xac\x56\x16\x36\x9f\x40\x1e\x5d\xaf\x9b\xc4\x82\xa4\x60\x78\xaf\xc3\x23\xed\xad\xd4\x3f\xef\x0c\xc0\x0c\xa1\xab\x20\x04\x31\x71\x56\xfb\xfd\xc2\x18\x92\xe0\xb6\x00\x06\x35\x0b\xae\xac\x7a\x81\xa7\x76\xa9\xb7\xb6\x41\x6f\x65\x1e\x6c\x16\xf6\x72\xb8\x26\xea\xe4\xb3\x83\xec\xb0\x6d\x40\xae\xd4\x0c\xf4\x6e\x19\x6b\x72\xb8\x4f\xda\x07\x0a\xc7\x48\x00\x25\x2d\x49\xba\xce\xf5\x2b\x13\xfd\x09\x2e\xb7\x34\xab\x7c\xa2\xfa\x83\xf0\x2d\x93\x14\xdb\x0c\x97\x1a\x41\xe8\x96\xc3\x3d\xe7\x6c\x6c\x35\xf7\x7a\x25\x13\x54\xb0\xea\xd0\xf5\xd8\x0a\x9a\x20\x9e\xfe\x9c\xda\xd1\xcf\x1d\x8b\x2d\x80\xb5\xd6\xe3\x66\x06\x28\x3f\x78\x62\x83\x5f\xc5\xfd\x36\x52\xaf\x42\x5f\x08\x80\xef\x2f\x0c\xba\x48\x6d\xd0\x95\x8d\x86\x80\x19\x42\xfb\xc2\x3d\x6d\x85\xa4\x5d\xfa\xe4\x74\xc7\x96\xa0\x2d\x57\xb0\xbb\x43\x2f\x1f\x8a\xf3\x1d\xc0\x57\x89\xc1\xce\x2c\x1c\x5f\x39\x60\x50\xc8\x04\xf4\x51\xc5\x59\x46\xd7\x2c\x3f\x5f\x0c\x01\xd9\x5e\x9c\xd5\xa4\xf0\x54\xa4\x56\xd3\x71\x2a\xec\x09\x92\x9f\xd7\xe6\xfa\xb6\xf4\xac\x3d\x68\xb2\x9e\x2e\xd2\x9c\x0c\x77\xa4\xb7\xec\x33\xb5\x07\xfd\x32\x96\x28\xa4\xdb\xde\xdf\x55\x70\x97\xd5\x0e\x6a\x77\x16\xb4\x10\x36\x6c\xad\x7a\xab\x0e\x22\x43\x8c\x56\xf9\x67\xbe\xfc\x09\x8e\xdf\x69\x65\x75\x77\x3d\x58\xde\x74\x4c\xe8\x35\x2b\x87\xf2\x7c\x63\x7d\xe7\x02\xcf\x2d\x07\x1b\x42\xe5\xd9\x64\x3c\x2d\x7c\x95\xa7\x71\x2a\xcf\xb6\x61\x90\xa7\x7d\x21\x87\xc9\xf5\x74\x9c\x4e\xc6\x84\xa4\xe5\xf9\x66\xb0\x1d\x7e\xe7\xf5\x1b\x61\xf4\x06\x26\xc9\x70\x43\xa8\x67\x35\xfc\xce\x5e\x3e\xac\xd6\x92\xd6\x26\xda\xef\x7f\x13\x09\x37\xc8\x70\xd2\xdb\x68\x5e\xb9\xce\x0b\x64\x7b\xfc\x1a\xda\x67\xed\x34\x64\x20\x4d\xf1\xa2\x55\xbc\x9a\xae\xce\xd2\x71\x21\x06\xba\x2a\x69\x2b\x05\x19\xf8\x8e\x5d\xfe\x05\xf2\x72\xe8\x8e\xef\xc8\x1f\x75\x02\x13\x42\x05\x93\xb4\x64\xf2\x3e\xcf\x23\x72\xb4\x58\x4f\x9d\xbd\x8a\xfa\x39\x9c\x90\x54\xe5\x0b\x43\xc1\x2e\xac\xd9\x9e\x37\x55\xcd\x82\x4d\x8c\x58\x76\xa9\xab\x10\x1f\x41\x50\x7f\xed\x25\x44\x52\x83\x6c\x97\xf6\xc7\x1e\xb5\xf9\x4d\xb4\xe1\xd0\xbd\x6a\x10\x10\xfd\xae\xab\x01\xd6\xd4\x5e\x30\x74\xc0\xa2\x65\x15\xa5\xf9\xa9\x18\x8a\xbc\x01\x75\x88\x4e\x92\x68\xd9\x84\x3a\x04\x07\x49\xe0\x48\x70\x4b\x86\x52\x63\xf3\xf9\x66\x54\xa0\x7b\x4e\x35\x02\x7f\x60\x60\xa5\x31\x0f\x4b\x8b\x79\x28\x3b\xa0\xfd\xac\x51\x28\xec\xb1\xdc\x9b\x59\x6f\x2c\xde\x77\x20\x7e\xa0\x1d\xa8\xaf\x11\x17\x65\xcb\x65\x44\x68\x54\x6f\x32\xa1\x7d\xd2\x25\xd5\x68\x53\x2d\x39\xc0\xda\x94\x72\x9a\xb3\x1a\xb1\xc9\x52\xc1\xa2\xad\xe0\xd7\x91\x33\x0a\x68\x5a\xae\xd5\xec\x46\x5d\x26\x25\xa1\x3b\xb6\xa8\x12\x14\x6f\xe2\x6d\x24\x23\xbd\x1a\xef\xec\x8f\x56\x92\xab\x6a\xfc\x9f\x5a\x07\xeb\x5a\x3b\xe7\xc6\x8c\xa3\x0d\xa8\xc3\x3e\xf8\xe7\x87\xfa\xdb\x07\x64\x36\x46\x98\x98\xfd\xfe\xc1\x87\x0b\xfd\x24\x8c\xe9\x88\x7e\xb9\xf7\xba\x90\x14\x2c\xe8\x45\x92\x53\x5d\x26\xda\x33\x2d\x2c\x8f\x69\x8a\x60\xac\xaa\xf6\xfb\xe2\x1c\x9e\x57\x40\xd8\x60\xe4\x6c\x3d\xd3\xef\xc3\x41\x7b\x57\x1f\x53\xc1\xa2\xb2\x92\x51\x0f\x23\x18\x13\xd3\x82\xc9\xf3\x0a\xb9\xe8\x29\xda\xe7\x55\x54\x0e\x27\x24\x18\x82\x74\x9c\xc2\x80\x63\x86\xdd\xc0\x8d\x20\x36\xf3\xd7\x32\x97\x69\x54\xef\x2e\xa5\xc8\xc0\x5c\x10\x92\x0d\xbb\x93\x95\x00\x49\xe5\x0e\x49\x01\x4e\xc5\x77\x03\xa1\x0e\x17\x8f\x02\x16\xc6\x1c\x2b\x8a\xe8\x9a\x69\xff\xa9\x61\x81\xef\x72\xb9\x7e\x9b\x5d\x3a\xb1\xe6\xd2\xb7\x22\x29\x1e\x64\xe4\x74\x79\x3a\x1c\x2e\xc9\x7a\xc0\x32\xba\x1a\xb0\xe8\x03\xfa\x32\x5c\x9f\x15\x71\x9c\xac\x06\x6c\x5b\x25\xc5\x70\x4d\x08\x5d\xf5\xd9\xc2\x70\xb0\x3f\x88\xa4\xa2\x2b\xb0\x5b\xd3\xce\xb8\x25\x75\x23\xef\xbc\x2e\xb7\x56\x02\xed\x8f\xe1\x7e\xb7\x64\xe3\xd3\xe5\x59\xd5\xf1\xa8\xb1\x34\x8f\x1a\x5b\xe6\x47\xcf\x96\xe8\xdb\x33\xf0\x8c\x19\xc7\x5b\x73\xdd\xb4\x8a\xdd\xe4\xee\x9d\xba\x76\x2c\xa9\xbe\xc1\xae\x59\xa3\x75\x6b\x42\x8c\x1f\x45\x0f\xf0\xaf\xa5\xb9\x24\xd5\x4d\xc1\x28\xd8\x34\x67\x44\x4e\x2b\x00\xcb\xa0\xcf\xf5\x63\x40\x0a\xbe\x7a\x2c\xbc\x59\x8e\xf2\xf8\xa4\x4c\x2a\x9a\x13\x2b\x47\xd0\xb7\xd4\x1c\xdc\x16\x79\x94\xfa\xe7\xd6\xbb\x8f\x7d\x79\x35\x57\xf4\x92\xcd\xe6\x14\x51\x5c\x2d\x48\x10\x80\xb9\x9a\x3c\x15\x93\x89\x98\xe5\x73\x72\xea\x0c\x3b\xb6\x3c\xa9\xf0\x46\xb1\xa9\x92\x92\xe8\x07\xaf\x53\x0b\xf9\x86\x02\x28\xfd\x22\x96\x61\xca\xca\xbe\x98\xdd\xe1\x27\xc3\x08\x33\x66\x5a\xd6\x57\x91\xc3\x4f\x0d\x63\x3b\x27\x39\xf7\xa4\xa6\xf2\x9c\x8d\x4f\xe5\x70\x48\x7e\x10\x9a\xe7\x8e\x22\x5a\xce\xa4\x16\x9b\xc2\x97\xac\x68\x34\x58\xf2\x82\x4b\xc5\x3d\xc3\xb1\xe5\xf3\x77\xdf\x74\xf0\x77\xfa\xe8\x01\xf4\x93\x35\xad\x99\xa0\x88\x5e\x42\xab\xc0\x9b\x91\xd1\xf7\xa5\x35\x4b\xf2\xe9\x2e\x4b\x8b\x8c\xa8\xcb\x1a\x15\xc6\x3b\x13\xce\x57\x8d\xf7\x6f\xe0\x60\xab\x81\x20\xe6\xfa\xbd\xdf\x97\xe7\x8c\x5b\x98\xa4\x3a\xff\x8b\xef\xf7\x49\xc5\x4a\xda\xd7\x70\x29\xb4\x24\xc4\xd3\x12\xcc\x58\x3e\x4d\xc4\xd9\x78\x2a\xb2\x54\xaa\xba\x48\xaa\x7e\xed\xfc\xfb\x47\x3a\x46\x72\x93\xb1\xba\x67\x11\x67\x14\x9d\x5b\xac\x33\x01\x96\xa4\x85\xef\x1a\x6f\x51\x15\xbb\x4d\xa9\xc3\x01\x96\xc0\xc4\xdc\x54\x62\xa9\x7d\x0a\x5e\x89\x6a\xb7\x85\x34\x66\x16\x16\xb8\xdf\x56\xcc\xc5\xd1\x35\xf3\x04\x5a\x57\x5c\x3e\xe3\xc5\x96\x8b\x44\x52\x28\x0a\x3c\x4b\x46\x84\xaa\xfb\xdc\x69\x5f\xf5\x82\xec\xf7\x45\xd2\x5f\x92\x53\x40\x22\xd7\xbb\x72\x17\xb8\x43\xca\xc8\x7e\x1f\x7d\x28\x23\xba\x61\xaf\xab\x64\x4b\xd7\x64\x1a\xdd\x44\xe9\x2a\x8e\x55\x28\x63\xdb\x69\x54\x46\x69\x7f\xa5\x88\x7b\xad\x89\xfb\x96\xe0\xf6\x88\xb6\x40\x6a\x54\xe4\x72\xbf\xdf\xec\xf7\xc9\x86\x45\xaa\x05\x8b\x38\x5e\xf4\xd9\x86\xdc\x19\x66\x7d\x42\x8b\xc4\x6e\xdb\x7c\x95\x6c\xe2\x38\x59\xb0\x0d\xa1\xe2\x7c\x1c\xc7\x7d\x68\xa4\x46\xde\x05\xed\x77\xf6\x07\x47\xef\x55\x15\xcd\x08\x95\xb4\xf6\xb4\xce\x4e\xc0\x3f\xf0\x35\xd9\xef\x93\xeb\xd1\x3a\x97\x17\xc6\x63\xd9\xb5\x87\x53\x79\xec\x88\x85\x15\x57\x68\x28\x62\xeb\xd4\xd1\x78\x05\xf3\xd5\x80\x3b\x1d\x6f\x69\x70\xec\xff\x1c\x11\xb7\xa7\xdd\x2a\x0e\xc4\xb7\x49\x3d\x84\x95\x36\x19\x7d\x9f\x8e\xbe\x27\xdf\x06\xd7\x1c\xb4\xa7\xb5\xae\x2d\xf1\x26\x72\x3e\x9e\x5a\x6c\xde\xef\x52\x04\xc3\xfd\xce\x79\xcd\x42\x6b\xa7\x3f\xb5\x67\x33\xed\xbb\xcc\xf8\x74\xc3\xd1\xc5\x1b\xca\x78\x9a\x9f\xb1\x71\x9a\x9f\xb3\xca\x60\xbc\xdf\xed\xbc\xa1\x34\xf3\x34\x60\xdf\x7f\x6b\xf1\xac\x76\x87\x0b\xdf\xbf\xf2\xa2\x2a\x6b\x29\x76\x0b\x59\x89\xf4\x42\x7b\xd6\xf1\x68\x49\x03\xed\x46\xbb\x4b\xef\xb4\x34\xaa\xb9\x7c\x0d\x67\x5e\xc3\x9b\xf4\xb5\x73\xed\xad\xcf\x44\x5a\x32\x31\xe3\xf3\x9e\xfa\x0f\x4e\x8f\x48\x31\x12\x51\x9f\xa9\x4d\x0d\x81\x92\xfe\x21\x46\xeb\xac\x7e\x7d\x53\xbe\x11\xd5\x96\x0b\x79\x0b\xe6\x61\xda\x41\x3c\xfd\x43\xa5\x42\x07\xf1\x70\x35\x26\x07\x7a\xd5\x51\x7d\xe8\xcb\x59\xd7\x3e\xe3\x73\x48\xfd\xb8\x5a\x1c\xf3\xfa\xbc\xac\x16\x07\x9a\x2d\x97\x3f\x83\xaa\x67\xd3\x3b\x36\xc0\x85\x06\x2a\xa7\x72\x1a\x29\x62\x1c\xa5\xd1\xae\x04\x45\x92\x68\x9e\x6c\x4a\x34\x42\x45\x91\x42\xab\x24\x9f\x4c\xb7\x4b\x6c\x3a\xae\x19\x0c\x04\x78\x59\x9d\x89\x39\x53\xa3\x04\xde\x82\xca\x6c\xc3\x19\xe3\x9e\xd5\x18\xbc\xb6\x25\x82\x4e\x08\xed\x8f\xa1\x07\xaf\xaf\xb9\x28\xb2\xdb\xf4\x1b\x99\x74\xcd\x0a\x1f\xc9\xea\x13\x2f\xa7\x3c\xbd\x50\x74\xe8\x65\xb5\xd4\x7e\xb2\xcd\x4c\xa1\x96\x98\x40\xaf\x02\x17\xaa\x89\x44\xae\x45\x75\x03\x72\xe9\x27\x42\x54\x22\x89\x74\x1d\xf5\xc9\x26\xbb\x3d\x29\x2b\x79\x72\xc9\x4f\xa0\x37\xab\x5d\x31\x8a\x48\xcf\xeb\x5e\xa5\x93\xea\x87\x10\x35\xed\xa9\xa0\xea\xcf\xc5\x96\x2f\x52\x4e\xab\x6d\xf6\xaf\x1d\x4f\x25\xfa\x31\x51\xdf\x07\x03\xd0\x0a\x05\xa8\xa4\x3f\xf1\x72\x30\xa0\xff\x30\xb0\xb6\x44\x0f\x71\x67\x57\x8f\x0c\xb3\x69\x47\xd7\x38\x1b\x7f\xe6\x6a\x88\x4d\xcb\xe0\x84\x82\x91\x6f\x49\x4e\x78\x1c\x97\xf7\x4f\x45\x67\xf3\xe1\xf1\xc8\xf6\xe1\x40\x28\xf2\x89\xe0\x12\xab\x31\x59\xea\x7a\x6c\xaa\xed\x7b\x02\x1b\xc3\x0d\xf5\x43\x21\x8e\xbe\x49\x4f\xfd\x79\x1c\x01\xeb\xfe\x1c\xef\x1b\x9a\x8f\x4f\x91\xb5\x4e\xe5\x14\x38\x66\x8f\x2b\x26\xf4\x29\xb7\xfa\x8d\x60\x11\xfb\x5e\x68\xad\x46\x68\x8d\x6d\xad\xd5\x38\xfd\xc2\xa0\x37\x78\x28\xc1\x40\x57\xe7\x7e\x7c\xbe\x55\x92\x5b\xd7\xf5\xb9\xe3\x36\xcf\x15\x13\x6e\x9a\xe3\x85\x6b\xfb\x5b\xc1\xfc\xb0\x92\x85\xf5\xdb\x07\x90\x38\xfe\x17\x16\xa1\x5f\x05\x8c\xe3\x46\x03\xe7\x90\xb1\x1c\x41\x1b\x6a\xcf\xbf\x8b\x91\x8a\xf6\x3c\x99\x29\x02\x15\x3b\x24\x0f\x2d\x11\x4d\x32\x75\x61\x1f\xa7\x13\x42\x06\x13\xcf\xe4\xba\x3e\xdd\x9d\x09\x78\xfa\x37\x5d\xd8\x51\x6e\x85\xab\xed\xa1\xea\x8d\x19\x40\x74\x02\x76\xa0\x45\x7f\x33\x6c\x65\x31\x2b\xe7\xba\xc5\xa3\xc5\x5a\x9d\xc0\xef\xbc\x79\x2b\x0d\xe7\x5d\x51\x48\x08\x4e\xf7\x51\x78\x78\x20\x8a\x00\xbe\x55\x5b\xff\x91\x4c\xbb\xf4\xd8\x4e\x7e\x2f\xed\x8c\x23\x71\x55\x1d\x84\x1c\xf5\xfd\x19\x96\x3c\xe1\x44\x6b\x7c\xda\x5a\xde\xde\x6e\x79\x50\x13\xb9\xe3\x60\xc7\xeb\x16\x19\x8a\x46\xa8\x60\x3c\xc7\x82\x6e\x72\x2f\xda\x78\xf1\x2d\xd9\x98\xe6\x2c\x11\x0e\x56\xf2\xc1\x43\xe0\x09\xd0\x55\xac\x1a\x2e\x22\x99\x98\x3d\x9c\x23\x7b\xe6\x9f\xa9\x19\x2b\x07\xf9\xf9\x39\xb8\x25\x4d\xb2\xa9\x98\x3d\xfc\x36\x1b\x4e\xe6\xe9\x98\x9c\xb3\x8a\xe4\x2c\xb3\x66\xbb\xfd\x04\x22\x07\x93\xf9\x59\x45\xc8\x1d\x14\xf8\x6d\x36\x78\x38\xd7\x27\x6a\xc9\xb2\xc1\x04\x9f\x62\x6a\xb5\xd3\x10\xa0\xf6\xf5\x0a\x80\x06\x35\x6d\x39\x89\x48\x3a\x9c\x18\x5e\xa7\x3e\x1b\x4f\x65\x3a\x66\xac\x46\x96\x4b\x5a\xa4\x94\x7a\x38\xc1\x81\x52\xc4\xb7\x31\x46\x8d\x2d\xa4\xa8\x87\x33\x06\x01\xae\x45\x65\x9a\x5e\xb8\xef\x44\xe3\x65\xbb\xe9\x4d\x38\x41\xe2\x43\x20\x7f\x2a\xa1\x32\xe4\x38\xbb\x67\xd2\x14\x80\x69\xd0\x2d\xf1\x6c\x3c\xf7\xf2\x35\x97\x80\xd1\x91\x03\x56\x25\x2b\x9b\x27\xb7\xb5\x30\x39\x11\x5a\xcf\x21\x53\xf7\x0d\x9a\x33\x53\x15\xf6\x5d\xeb\x24\xb7\x48\x6c\x3e\x93\x73\x52\xce\xd4\x9f\x79\x1c\x1b\x95\x3a\xfc\xed\xd8\x70\x48\xe5\x6e\x61\xe3\xd3\xea\x4c\x05\x19\x02\x53\x19\x02\x93\x31\xcc\x3a\xab\xe6\xf3\x5e\x66\xcb\xcb\x0c\x96\xf2\x68\x0d\x7d\x44\x5c\xcb\x72\xe6\xff\x9e\x4f\x5d\xe5\x7e\x30\x49\x55\x80\x3a\x04\x82\xf6\x61\x08\x32\x76\x46\x57\xe8\xe3\x55\x51\x5d\x66\x45\xab\x55\x35\xb3\x71\xb3\x6a\xde\xab\x47\x5b\xc1\x97\x49\x0e\xb3\x49\xe2\x58\xa3\xf1\x0a\x5a\x8f\xae\xb3\x82\xd8\x5a\xf0\xa7\xc3\x2a\x55\x73\x74\x61\xaf\xfa\xc7\x39\xb1\x65\xb5\xb0\x4b\x53\xf3\x54\x09\x67\xcf\x41\x11\x12\xa5\x9e\x53\xa1\xaf\x5b\x42\xfb\xea\x4d\xb9\x22\x66\x40\x0e\x50\x5c\xf8\x63\x55\x89\x65\xf7\x52\x68\x51\x5d\x80\x2b\x33\x35\xbe\xd4\x35\xba\x9a\x14\xc9\x4e\xa3\xea\xf2\x4f\xc4\x70\x32\x47\xeb\x34\x24\x11\x29\x34\x0a\xe8\x5d\x2a\x90\x3e\xcb\xfd\x1e\xb9\x7f\xd5\x2a\x50\x26\xef\x68\x93\xae\xf6\x47\x5d\x6d\x58\x68\x58\x04\x64\x57\x17\xb0\xee\x22\xfe\x74\x63\xf5\x56\x5a\x02\x69\x0b\x40\xc4\x4c\xca\x41\x2e\x79\x00\xdc\xda\x47\xc6\x07\x67\x67\x79\xae\x18\x74\xb9\x46\xc1\x81\xc5\xf8\xe0\x95\x09\x92\xce\x47\x3e\x2d\x1c\x04\x5c\xb8\xe7\xad\xf9\x40\xf1\x16\xf0\x08\xd9\x88\x8e\x89\x01\x7f\xdd\xb0\xc7\x9a\x92\x14\x6e\x4f\x5f\x33\x75\x38\xfb\x6e\x26\xd1\xa5\x33\x3f\x0b\x13\x4c\x79\x23\x47\xca\xcf\xc1\x32\x8c\xe5\xe8\x6a\x9c\x0a\x16\x50\x72\xbd\xcd\x04\xb3\xa4\xec\x93\x1e\x02\x81\x83\x30\x3e\x32\x08\x83\xa4\x9c\xda\xaa\xb0\xa3\xc3\x4f\x79\x22\x48\xaa\x4e\x9a\x25\x5f\x65\xbb\x42\x3a\x7c\xdc\x0e\xde\xfe\x95\x4c\xfc\xa1\x73\xb9\x2c\xce\x6e\x47\xa6\xe7\xad\x4c\x35\x97\xf8\xba\x82\xee\x3b\xba\xd8\x35\x9d\xf7\x27\xe1\x75\xdc\xaa\x44\xb4\x1e\x80\x4b\xc6\xf5\x33\x8d\x76\x08\x02\x2f\x88\x41\x08\xbb\x3b\x38\x37\xe7\x33\x39\x67\x82\xf6\x45\x1c\x3f\xaa\x92\x12\xad\x18\xc3\xd4\x1a\x27\x7c\x7c\x50\xbc\x1a\xa8\x26\x61\x8b\x9b\x7c\xda\x75\x03\xaf\x55\xb1\x0d\x4c\x6f\xfc\x9e\xc0\x57\x6c\x9b\x5e\xf5\x2b\xac\x47\x91\xa1\x20\x60\xa6\x08\x60\xd2\x0e\xd4\x96\x81\x22\x91\xbe\x6a\x08\x7d\x54\x35\xd3\x92\x76\x76\x0d\xc5\x4e\x07\x83\x12\xba\xa3\x76\xd5\xf3\x72\x55\xa5\x8d\x17\xfe\xae\x25\xad\xce\xa3\x90\x97\x6d\x21\xff\x4a\xc6\x35\x3e\x6d\x63\x9d\x06\x49\x0f\x86\x35\x40\x9a\x95\x48\xf6\x1a\x80\x5f\x83\x34\xc6\xbd\xbb\xda\x7c\x92\xa2\x19\x5f\xca\xf1\xc9\x94\x6b\xcc\x36\xbf\x67\x69\x63\xda\x20\xe5\x8f\x45\x56\xd7\x3a\x39\x7c\xd3\xcb\x2b\x13\xa6\xbf\xe8\x8d\xc8\xb6\x26\xcc\x7e\xd3\x9b\x7c\x79\xc5\x25\x84\xe1\xd7\x01\x8e\x83\xdf\x72\x7e\xb3\xad\x44\xc7\x86\xd0\x7a\x22\x4d\x6a\xf2\xd4\xa8\x76\x37\x23\xde\x56\x07\xb8\x54\xbe\x83\xe2\x8f\x23\x63\xd2\x8c\x02\xfe\x25\x5d\xd0\x15\xf3\x4b\xa1\x6b\x96\x70\xf6\xb2\x93\x0e\x13\x62\x9e\x66\x96\x8c\x5b\xd1\x8e\xd4\xae\x01\x8d\x37\x21\x16\x19\x6f\x42\xe0\xc2\xf3\x7e\xac\x69\x8a\x90\xd0\x9d\x62\x8b\x9a\xcb\x5f\x4b\xbe\xcc\x65\x76\x59\x70\xf0\x81\xae\xfd\x2c\xf9\xce\x80\x24\xa1\x11\x18\x85\x31\x56\x92\x35\xdc\x96\xb7\x4e\xec\x97\x5d\x56\xd7\x5c\xcb\xfd\x4a\xae\x45\x86\x5a\x38\x67\x6f\x0d\xab\x6e\xc9\x53\x83\x90\x39\xd0\x40\xc8\x82\x2d\x09\xe0\x0d\x3c\xf0\x11\xdf\x02\xff\x34\x68\x06\x37\x52\xa5\xd0\xcd\xf6\xf9\x16\x44\xdf\xb2\xda\x9e\x87\x11\x53\xdd\xa7\x61\x18\x9c\x1e\x29\xe7\x8c\x6d\xe3\x38\x51\x79\xf4\xdb\x19\x5d\xda\x14\x88\xc9\xb0\x89\xe3\x64\xc9\x36\xc3\x20\x94\x1c\xcc\x2c\xca\x6a\xcb\x9c\xa7\x56\x08\x2a\x00\x53\x43\xff\x80\xd7\x3a\x16\x45\x34\x82\xaf\x88\xb1\x7c\x9a\x2c\x59\xc7\x80\x84\x35\xd0\x46\x01\xe3\xed\xe7\x88\xa4\x49\xa4\x0a\x87\x42\x96\x6c\x9c\x46\x1b\xc0\x3e\x8b\xd0\x02\x60\xc9\xba\xc6\xb9\xd1\xf0\x07\x0f\x49\xd8\xd0\x25\x34\x1e\x4d\x0e\x2a\xa4\x9b\x19\x5b\xd2\x9a\xad\xe9\x8e\x35\x06\x83\x16\x6c\xdd\x18\x40\xfd\xdc\x9c\x2c\xd8\xaf\x22\xb1\xdb\x84\x10\xdf\x89\xda\x56\xc5\x2c\x9a\xbe\xf6\xfa\xac\xe5\xea\xd2\xa5\x42\x5f\x77\x07\x2a\x45\x7e\x75\xc5\xc5\xeb\xf2\x67\x7e\xfb\xb8\xba\x81\x5b\xf9\x6b\x41\x82\x70\x30\xa2\x53\x11\x9f\x1a\x11\xbf\x6e\xd3\x47\x82\xf2\xcf\x7c\xf1\x63\xb5\xd9\x64\xe5\xb2\x49\x5f\x8b\x16\x5f\xef\xa8\x69\x51\xce\xb8\xef\xf8\x19\xa5\x1a\xa6\xfc\x27\x05\x5f\x48\x91\x2f\x9a\xa7\xcf\x13\x6e\x6d\x25\x09\x5d\xe5\xe5\xf2\x4d\x55\x3f\x6b\x91\x15\xc3\x98\x4c\x7a\x12\xa4\xd0\x39\x1b\x4e\xa8\x64\x43\x4f\x43\xb1\x62\x63\x9a\x35\xee\x93\xa7\xd5\x19\x20\x08\x64\xec\x1b\xef\x14\xce\x68\x0e\x65\x12\x23\x26\x05\xad\xfd\x53\xeb\x26\x8e\x6e\xaa\x6b\xfe\xec\x98\xb8\x0c\x8c\x37\x85\x86\x94\x75\x78\x47\x3f\xdc\xba\xd4\xa5\x3d\xfc\x45\x13\x8b\x56\xc0\x86\xc7\xcc\xa0\xcd\x8c\xd2\x8d\xe9\x37\x22\x11\x78\xf4\xa2\x31\x10\xf4\xdb\x19\x23\xca\xe2\x65\x75\xcd\x7f\xcb\xeb\x5d\x56\x14\xb7\x24\xe5\x67\xe3\x69\x69\xd8\xe0\x12\xd8\xe0\x03\xdd\x55\x6a\x0c\xf1\xed\xe6\xde\xe6\x5b\x28\xee\xd2\xbb\x08\x8c\xea\x6a\xc3\xe5\x3a\x2f\xaf\xb0\x53\x7c\x99\x90\x69\x79\x8f\x5d\xb1\x7d\x25\x4a\x7f\xd6\x72\x0c\x9f\x4b\xc0\xf9\xfa\x46\x24\x25\x15\xae\x4b\xfd\x89\xe5\x60\x54\x17\xf0\xf0\xc9\xc1\x96\x02\x12\x1d\xb4\xd9\x8c\xce\x22\xab\x34\x3f\x1c\xbc\x95\xf1\xdb\xf1\x95\x41\x2b\x56\x1e\x5f\x1d\x19\x1b\xd3\xba\xb9\x3a\xb2\x33\x79\x3a\x18\x64\x46\xda\x6e\xce\xa4\x9a\x82\x27\x3b\xef\x49\xaa\x9a\x56\x6c\x07\xbb\x3f\xc5\x3f\xac\xa2\x49\xcd\xfe\xdb\xca\x6f\x72\x2a\xdc\x72\x0a\xdd\x0e\xd6\xb8\x9e\x7e\xbb\x6f\x42\xbc\x89\x30\x3e\xa1\xfa\x8d\xa5\x83\x2a\xe8\xb0\x6e\xe2\x18\x35\x15\x3b\x26\x0c\x9a\x7c\xef\xda\xcc\x10\xf7\x86\x78\xb3\x90\x99\x85\x94\xc1\x42\xd2\xaa\x58\x2f\x65\x22\x68\x66\x90\xb7\x60\x3c\x0c\x44\xc9\x55\x95\x15\x3f\xc2\x4b\x18\x28\x18\xc0\x80\xf8\xa1\xc4\x78\xa6\xd2\xee\x26\x11\x04\x5e\x0d\x97\xa0\x28\x4d\x32\x6f\xb9\xfa\xd1\x46\xc6\x71\xc6\x58\x19\xde\x14\xe3\xf8\x9d\xd0\x57\x51\xfa\xa3\x6a\xcc\x4e\xb7\x03\x4e\x2b\x74\x71\x49\x77\xb0\xec\xa9\xb1\xa8\xf1\x6c\x6f\xc6\xa7\xd9\x59\xd9\xf1\xa6\x9d\x0d\x06\xc4\x0f\x9f\x65\x73\xaf\xe9\x2c\x9f\x65\x73\xbd\xde\x10\x37\xb6\x43\x18\xd3\x21\x95\xd2\x4a\x84\x20\x84\x32\x26\x88\xa8\x07\xe3\xdd\xa8\xdc\x2b\x1f\x0f\x5e\xf9\x4e\x13\xae\x21\xe7\xf7\xfb\x12\x8c\xf8\xb0\x33\x71\x2c\xa6\xc3\xa1\x48\x07\x83\xd2\x23\x73\xf6\xb9\x4f\x10\x9a\xb1\xd7\x15\x3c\x6b\x4f\x3b\x1e\x3c\x5e\x57\xa0\x81\x7c\x48\xdd\x6b\x5f\xd5\x95\xd0\x45\x73\x72\xe8\x78\x39\xe9\xfb\x09\xe2\xb8\xaf\xca\x25\x87\x53\x78\xee\xcb\x12\xd7\x9c\xe1\x84\x90\x53\x32\x1c\x6a\x87\x6c\x4e\xb0\x1b\x24\x2b\x55\x22\xc5\xc7\x77\x28\xb7\xa3\x69\x98\xd6\x64\x47\xe9\x2d\x9c\x69\xd5\xd5\x55\x01\xb2\xfd\x1b\x91\x4b\x1e\x34\x51\x6b\xcf\xc5\x31\x67\x4d\xe1\x3e\x24\xde\xef\x93\xa4\x2b\x9c\xf5\xbb\x42\xc9\xf4\x45\x15\x5c\xf5\xb4\x56\xd4\xe3\xfc\x3a\xb0\x43\xb6\x19\x22\x92\x3e\xff\x77\x73\xd0\xff\xd6\xd2\xcd\xc8\x06\xbe\x85\x1e\x46\x14\x1f\xb3\xba\x1a\xa6\x2e\xf6\xda\x81\xf4\xd1\x17\xab\x80\xb9\xbd\xe2\xf2\x69\xce\x8b\x65\x42\xd0\x3d\xf5\x81\x3a\xd4\x9b\x76\x09\xfd\xa4\x1f\xbc\x15\x38\xf3\xf7\xbe\x3d\x31\x16\x59\x29\x9f\x2c\x73\xa9\xae\xbf\x9a\x33\x69\x13\x35\x2d\xcf\x31\x3a\x7c\x12\x74\xf8\x80\x15\xa0\x76\xaa\x3c\x67\x87\xbe\x26\x5f\xa0\xe9\xd7\x4a\x82\x18\x75\x28\xb5\xbe\xd0\xf6\x1f\xfe\x05\xd0\x80\x25\x05\x43\x61\xb4\x25\x7b\xe6\x5a\x86\x6a\x80\x9e\x5e\x57\xd3\xcb\xfd\xda\x70\xbf\x01\x7a\xd6\x4a\x3f\xd2\x0c\x83\xd2\xad\xe7\x51\x8a\xfe\x45\x03\xa7\xf0\xc7\xf3\x20\x67\xe8\x5f\x05\xd2\xa5\x4e\x4b\x3d\x3e\x34\x5d\xdb\x97\x21\x1a\x1a\xbc\xb4\x47\xdd\x9e\x54\x7c\x9a\x70\xe6\xdf\xe9\x9a\xf2\x37\x7b\xb0\xc2\x6d\x95\xfa\xae\x01\x83\x05\xd0\xd6\x06\x24\xa4\xad\x0d\xc5\xa7\xdc\x33\x6f\xd0\x86\x0d\x50\x72\x6a\x14\x27\x57\xe0\x21\xcf\xb6\x8a\xdb\x14\x04\x64\x64\x20\xe6\x90\x95\x4e\x88\xde\xee\x05\xd8\x14\xed\xf7\x63\xb3\x64\x3c\xbb\x0a\xbb\x9a\x3a\x16\xc8\x9b\xaa\x66\xdc\xbd\xe5\x08\xc5\x61\xc3\x8e\xf2\x74\x01\xb0\x24\x23\xa1\x6b\xea\x14\xea\x78\x59\x6d\x31\x1a\x74\x0b\x79\x4b\xb7\x50\x27\x13\xda\xbb\xb6\xac\x5a\x3a\x86\x3a\x85\xbe\xcd\x42\x12\xa3\x6b\xc8\xad\xae\x21\x6e\x74\xa3\x6e\x18\xa8\xf4\x8a\x40\xdd\x10\xc0\x0c\x2e\xf2\xbf\x5a\xcf\x82\x01\x53\x6a\x35\x26\x3c\xda\xdd\x9e\xb1\xfd\xfe\xc1\x3f\x3f\x2c\x07\x06\x2f\x08\x81\x38\x14\x1b\x3f\xe5\x70\xb1\x49\xf9\xc1\x6d\x54\xd1\xd2\x9d\xc0\x8b\x10\xac\x77\x06\xaf\xdb\xde\x9e\x3d\x96\x1a\xf7\x14\x03\x98\x29\x8f\xab\xf5\x35\x5c\xe3\xf8\xb3\x71\x6b\x8a\x07\xa6\x68\x89\x23\x7a\xc8\x3b\x83\x3c\x2a\xa7\xa2\x21\x95\x68\x1b\x12\x6b\x01\x48\xcb\x88\x58\x87\x1b\x7e\x40\x22\x62\x9f\x0d\x9f\xc9\xf9\xa8\xac\x9e\xe1\xca\x27\x77\x5c\xf1\x20\x39\x8d\x30\x36\x32\x7a\x2f\x83\x41\x7e\x50\x7d\x31\xb8\x41\x62\xc1\x7f\x45\x93\xf5\xfe\x58\xd1\x77\x41\x23\xc1\x57\x82\xd7\xeb\x88\x9a\x27\x6a\x75\x63\xca\x8e\x69\x27\xfc\x24\xed\x3d\x88\xea\x9c\xc1\x64\x77\x92\xb7\xa6\x3f\xb0\x9e\x79\x4c\xf6\x77\x47\xa3\x71\x17\x41\x12\xbb\xfa\x1c\xb5\xf0\x68\x63\x18\x06\x17\xd1\x3f\x75\x6e\x43\x6f\xf6\x7b\x87\xe9\x39\x6c\x0a\x57\xc9\xf9\xe8\x7b\x12\xc7\x3f\xea\x3c\xf6\xdc\x6b\x0d\x4d\x7d\x93\x6d\x1f\x57\xad\xcb\x61\xf8\xf6\xe5\x9e\xbd\x16\x1b\x14\x26\x7e\xcc\xcd\xa0\x35\xba\xd5\x0d\x8f\x12\xf6\x38\x38\x06\x7c\x17\xf9\xad\xc1\xc3\xb5\xa0\x06\xef\x0f\xd3\x03\xdd\x60\x73\x62\x13\x2a\xf1\x64\x7a\xae\x2a\x84\x73\xf7\xdf\x3d\xa5\x41\x4e\xf7\x0e\xf7\x8d\x56\x37\xfa\x52\x11\x7a\x97\x1d\xdc\x91\xf8\xd5\x59\xcd\xc1\x08\x79\x51\x2e\xfc\x95\x39\xb5\x2d\xc1\xe1\x40\xcb\x2a\xb9\xc0\xed\xfa\xbb\x60\x17\x23\x2d\x47\xaf\xd9\xdd\x81\xfe\xa1\x02\x70\x9f\x23\xb4\x19\x48\xaf\x1d\x85\xfa\x87\xa7\xd3\xe5\x72\xa2\xd6\x8f\x88\xe3\x04\x74\x7b\x58\xc3\x35\x56\x49\xee\xca\x3e\xe3\x65\x1c\x6b\x7b\x66\x72\x48\x05\x9a\x53\xf0\x92\x5d\x8c\x9e\x97\xb9\x64\x77\xb2\x42\x92\xd6\xee\x87\xc7\x8e\x41\xda\xe8\x70\xe8\xfd\x43\x24\xd1\x75\x56\xec\x78\x44\xa3\xa8\x61\x22\x0a\xfe\xf2\x00\xdc\x2b\x51\x3c\x4f\x7f\x4c\xa8\x4a\x0e\x7a\x4a\x78\x2d\x69\xa6\x37\x0f\xb4\xa8\x84\xc4\x24\x7d\xa4\x38\x65\x9b\xd3\xe9\x15\x47\xf4\x21\x7d\xd4\x08\x37\xea\xc1\x00\x04\x03\xe1\x9e\xc2\x46\x64\x13\x6b\x2d\xf0\x88\xfe\x2d\x20\x79\x9f\x12\xdc\x04\x9c\x50\xb0\xbc\x72\xb5\x06\xb0\xd7\x9d\x0d\x07\xf2\xe7\x21\x64\x33\xe9\x3f\xe8\xd2\xd2\x77\x50\xd9\xe3\x8e\x0a\x77\x69\x7b\xe4\x6c\x6c\xde\xda\x2b\x03\x16\x63\x5e\xc6\xa5\xd6\x64\x1b\x4e\x18\xab\x8c\x12\x1b\xab\x06\xd6\x2a\x4e\x3f\x68\x2e\x79\x52\xd2\x8a\x90\x43\x39\x18\x1c\x88\x07\xbe\x20\x1a\x08\x00\xb9\xaf\xcb\x2a\xa9\x98\xe5\x73\x00\x72\x99\xe5\x73\x7d\x97\x50\x5f\x8b\xb5\xad\x01\x11\xbc\x61\x6c\xb7\x7c\x91\x67\x05\xde\xc0\xe8\x83\xd9\x87\xdd\x78\x3c\x1e\x0f\xd5\x9f\xc9\x4a\xfd\xff\x7f\xe1\xff\x6c\xf9\x61\xf7\x70\x3c\xbe\x1c\xc2\x9f\x95\xfa\xff\xe1\xdf\xe1\xff\xff\xfa\xb0\x5b\xf1\xd5\x6a\xfe\xe0\x8a\x36\x5f\x7e\x2c\xf0\xa3\x57\x07\x98\xfb\xfe\xc2\xaf\x9e\x7c\xde\x26\x72\x54\x57\x3b\xb1\xe0\xe0\x04\x5f\x1d\xc2\xd1\x07\x19\x91\x69\x14\xa5\xd1\x5e\x7d\xd1\xe8\x2a\x22\x54\xf4\xf5\x9a\x8e\x63\x3e\xd2\x14\x33\x21\xed\xe6\xbf\x29\xb2\x05\x5f\x57\xc5\xb2\xeb\x59\x49\x82\x63\xfe\x7a\x9b\x95\xe0\x99\xff\xff\x8b\x28\x88\xc8\xcb\xeb\xac\xc8\x97\xa0\xe3\xea\x41\x4b\xca\x5c\x16\x9c\x45\x1f\x3e\xec\xa2\x81\x03\x12\x7b\x24\x93\xb1\xba\x73\x6b\x4e\x61\xf2\x7f\x48\x4b\xea\x9e\x89\x3c\x1b\x16\xd9\x25\x2f\x22\xaa\x8b\x51\x14\x31\x68\x8d\xdf\x07\xbb\x36\xb9\x96\x0a\xea\x69\x70\x1b\x62\xbb\x93\x17\x8a\x77\x88\xe8\x66\x1a\x69\x97\x8d\x46\x52\x1f\xa5\x60\x03\x98\x09\x9e\x45\x34\xc0\x94\x69\x28\xa5\xb9\x62\x4e\x16\x59\x09\x6a\x69\xc9\x2d\x97\xe4\xe4\x92\x9f\xa0\x55\xde\xf2\x24\x2f\x4f\xb2\x13\xb1\x2b\xcb\xbc\xbc\x3a\x51\x35\x54\x22\xf2\x1a\xd8\x90\xbc\x45\xb4\x7f\x85\x11\x37\xeb\xaa\x00\x9f\xd5\x78\xb2\xfe\x00\x26\xf5\xde\x2e\x5d\xf3\x8d\xa2\x29\x9a\xb4\x85\x13\xf3\x52\xed\xd2\x5f\x82\x4d\x8a\x3a\x7f\xdd\x19\x7c\x1b\xda\x4d\x89\x58\xc9\xde\xe2\xd8\x94\x89\x20\xbd\x3c\x8e\x73\x00\x63\x5e\xac\xdd\x17\xa8\x44\xd3\x72\x94\x49\x0c\x37\x5f\x09\xa7\xf9\x7e\x8f\x48\xe4\x7a\x22\x0c\xde\x25\x12\x08\x47\x39\x0c\x83\xa6\xa8\x52\x63\x3e\xbb\xf8\xb8\x69\xf2\x45\xe0\x33\x15\x16\x05\x00\xda\x20\x81\x47\x56\x71\x93\x97\xe8\xec\x34\x8a\x9a\x29\x30\x1c\x5a\x97\x26\x5f\x44\x0a\xd3\xb5\xbc\x02\x16\xf5\x47\x4b\x16\x35\x89\xec\xc6\x06\xfb\x01\xa6\x04\x3c\x86\xd8\x89\xd1\xc7\x5d\x44\x67\xf3\xa0\xfb\xcf\x9d\x79\x47\x73\x2e\x3d\xdb\x3b\xb5\x20\xda\xa7\x44\xc3\x5b\x88\xff\x08\x32\xfd\xc9\x53\x1c\x46\x7e\x3c\x1a\xab\xa1\xe8\xd8\x3c\x8b\xea\x9a\xeb\x37\xdd\x57\xfc\xb3\x7c\x5b\x5d\x18\x24\xf2\xd6\x64\xfd\x10\x34\xd0\x22\x96\xeb\x2d\x16\x95\x99\xcc\xaf\x79\xb8\x48\x9f\xa9\x71\xfa\xa1\x0b\x2e\xbd\x0d\x0b\xcf\x9b\x5c\xe2\x57\xa0\xa3\x37\xad\xf3\x1a\x27\x96\x76\x05\xdf\xea\xc9\xbd\xe3\x2e\x50\x07\x0f\xf3\x46\x74\x42\x7f\xe9\x28\xf3\x69\x25\x36\x59\xfb\x11\xde\x08\x44\x0f\x5e\xa6\x7a\x5d\xdd\xa0\x05\xdc\xbb\x35\x2f\x2f\x8c\x17\x1f\x68\x14\x97\x8e\x48\x28\xfe\xd2\x8a\x5b\x5f\x97\x21\xaa\x9b\xd7\x80\x77\x79\xcd\x7f\xac\xb6\xb7\x3f\xee\xbc\x03\xdd\x88\x5a\x1a\x5d\x55\x6b\xc5\x41\x13\x32\x26\xa7\x09\x80\xee\xb5\xb0\xfa\x2e\x8b\x9d\x48\x02\x67\x03\x79\xad\xc8\xe4\x92\xf5\xc1\x67\x68\x3b\x78\xd2\x81\xf7\x87\x6d\xd0\x46\xe4\xe8\x0a\x4a\x35\x4e\x67\x02\xb6\xb6\xa3\x81\xb2\x8d\x49\xa7\x99\x6d\x37\x2d\xc6\x05\x63\x6b\x2f\x18\xbc\x19\xd9\x67\xfd\x04\x9d\xff\x22\x4d\x23\x1e\x62\x80\xe7\x40\xe1\xa9\xce\x5b\xd3\x9c\xc9\xe9\xfb\x3c\xfd\x26\xef\xe5\x1d\x48\xfd\xe8\x28\x02\xb4\x95\x23\x5a\xa2\xda\x32\xa1\xc7\x53\xaa\xa3\x45\x31\x46\x23\xf8\xb8\x2f\x25\x82\x83\x96\x20\x96\xbb\x2f\x5d\xc1\x33\xb5\x9d\xca\x11\x7c\x1c\x4f\xa9\x06\xa5\x1c\xa9\xbf\x8a\x2f\x01\x66\xb4\xed\x7b\xc5\xa7\xc8\xb8\x1a\x7e\x28\xf2\xf2\xd3\x2f\x99\xe4\x11\xfd\xfe\xbb\xb1\x1f\xe3\xcb\x6b\x22\x1a\x44\xe1\x0d\x51\x6d\x0a\x6f\xe5\xa2\x07\xb5\x1f\xbd\x04\x6f\xb8\x50\x5b\x08\x26\xcb\x4b\x78\x53\x89\x4f\x8a\x62\x46\x40\x1e\x6d\xd0\x63\x5e\x64\xb7\x5e\xd8\xaa\x50\x3b\xab\x04\x04\x2e\x28\xe2\x93\x2d\x21\x5b\x2e\x5f\x56\x4b\x0e\x6a\x0a\xb0\x92\x5c\xd4\x16\x65\x5b\x80\xe4\xe8\x15\xb6\x2b\x97\xd5\x63\xbe\x95\xeb\x88\x3e\x1c\x77\x90\xd1\x6a\x61\xdd\x75\xd9\xa4\x4c\xea\x85\xab\x63\x00\x8d\xd2\xb4\xf2\xe1\xf7\xba\xe4\x6b\xad\x0e\x61\x06\x6a\x32\xfe\x32\xab\xb2\xc9\x3e\x3f\xcb\xaf\xd6\x85\x1a\x24\x44\x5f\x88\xe8\x84\xff\xcd\xeb\xc6\xa6\xba\xc6\x8d\xa2\x38\x79\x1c\xd3\x0e\xfa\x7f\x6c\xcb\xbc\xd1\xda\x0d\x96\xc5\x93\xd9\x25\x30\xce\xc7\xee\x1a\x47\xee\x91\x23\x99\x5d\x82\x7e\x33\x93\xfb\x7d\x14\xe9\xc2\xb2\x9d\xac\x34\x5e\xa9\x33\x02\x95\xea\xd6\xa4\xee\x2b\x70\x67\x13\xf0\x2b\xdf\xf0\x97\x3a\xa4\x07\x37\xb3\xbc\x84\x00\x16\xd6\xef\x2e\x6d\x50\xc0\x7e\x1f\xa9\x62\x23\x10\x08\x24\x8d\x48\xc6\x09\xcd\xc4\x15\x18\xd2\x18\xb1\xcb\xf9\x43\x40\x9b\x5e\xf2\x2d\x57\xf7\x9b\x45\xce\x6b\x74\x63\xe4\xec\x52\x50\x3b\x16\x1f\x94\x6d\x76\xfa\x90\x10\x2a\x4b\xb8\x29\x1e\xa8\x6d\xe0\xf3\x97\x4f\x1a\x0d\x14\x2e\x8d\xe0\x75\x55\x5c\x37\x7b\xd1\x0d\x44\xcd\xe3\x58\x74\xbd\x71\x73\x06\x05\x5a\xc5\x0f\x1e\xc7\xed\xbc\xa0\xeb\xd9\x59\x00\xc4\x10\xc3\x92\xab\xa2\x50\x2f\xb4\x77\x04\x84\xe1\x4e\xc5\x82\x57\x97\x84\xb3\x8f\x1a\x89\x1a\x2d\x0c\x24\xfc\x71\xce\x52\x3b\x7a\xf0\xe0\x9f\xb3\x0f\x37\x1f\x86\xf3\xc1\x87\x07\xe6\x63\xf0\x79\x53\x7c\x63\x1f\x71\x2c\x1e\xb0\x3f\x36\x49\x94\x6d\xb7\x45\xbe\x00\x11\xd5\x83\xcf\x9b\xc2\x5e\x0d\xda\x75\x4c\xb1\x81\xfc\x90\xf2\xfd\x1e\xbf\x71\x01\x1c\xd4\x80\x6b\x65\xde\xc6\x8c\x48\x16\x56\x67\x01\x3e\x65\x39\x93\x7a\x38\xc0\x8d\xbb\x6b\x9d\x31\x47\xd1\xa8\x1f\x0f\xb6\x45\x96\x97\x91\x01\x4a\xd3\x40\x6b\xf9\x2a\x29\xdb\xea\xc6\xfe\x88\xe7\xac\x74\x55\xd8\x87\x34\xc5\xfa\xe7\x24\x6f\xe6\xac\x08\x00\x50\x76\x86\xce\xa2\x8f\xd1\xa0\x9a\x03\xae\x1f\xa1\xea\x7f\x96\xab\xcf\x03\x3c\xbb\x7a\xd3\x43\x65\xa0\x41\xac\xca\xb3\x3f\x99\x1f\xa7\xee\x52\x6a\x8f\xa8\x8a\x9c\xa8\x12\xda\xe6\x47\x40\x55\x5e\xc0\xac\xb2\x7e\xd2\x4a\x6f\x1b\xc0\x2c\xc2\x3c\xd0\xb6\xa2\x17\x58\xf9\x34\xfd\xf1\x7d\xca\xb7\x6f\xab\x27\xe5\x32\x41\x8b\x00\x7f\x43\x25\xfe\x98\x53\x2c\x56\x0f\xbd\xa1\x1b\x4f\x3e\x4b\x5e\xd6\xea\x48\x46\x72\x81\x0f\xcf\x1d\x73\x7f\xa3\x96\x70\x7b\x96\x38\x99\x96\x6a\x5b\xa5\xf0\x3f\xbb\x3b\x10\xd7\x19\x5b\x76\x8b\xf2\x58\x0a\xd1\xa0\x02\x8f\xab\xc5\xb1\x4c\xd7\xf9\xd1\x5c\x5a\x56\xf3\x0f\x54\x4b\xaf\x00\x7f\xcf\xc4\x29\x66\xe4\x59\x55\x7d\x0a\xc8\x46\x65\x10\xf6\x08\xfa\x5e\xc8\xd4\x68\xe0\x8c\xea\x61\x10\xfc\x2a\xaf\x25\x17\xf8\xd8\xdb\xf2\x70\xd0\x56\x8e\xe7\x64\xbf\x4f\x32\x18\x83\x0b\x18\x08\xad\x05\x9e\xce\xe6\x07\x42\x21\x02\xf4\x3d\x91\x9a\x61\xe1\x3f\x41\x8a\xce\x2a\x50\xaa\x16\xb6\xc2\xe0\xc7\x40\x61\x56\x03\x1d\x4d\xb0\xb6\x82\x2f\x53\x41\xaf\xb3\x22\x2d\x0f\xba\x57\xb5\xea\xd5\xa2\xda\xde\x82\x26\x39\x6b\x09\x8c\xfa\x63\xc6\x98\xb4\xc6\x4e\x1a\x77\xd4\xa4\xb7\xea\x05\x2e\xc8\xed\xf7\xbb\x83\xdd\x84\x25\x2c\xf4\xd0\xe8\xe7\x24\x2f\x6b\x99\x95\x0b\x45\x68\xe0\x48\x00\x8d\x8e\xdc\x3a\x5d\x9e\x13\x42\xc5\xac\x9c\xb3\xdc\x53\x79\xdf\xa9\xe6\x3a\x03\xb5\xd6\x98\xeb\x57\x4e\xee\xa5\x01\x1c\x7e\xfb\x2b\x01\xa3\xa6\x9e\x67\x46\xd1\xe8\x33\xbc\x69\x73\x17\x7d\xea\xec\xe7\x3c\xcb\x0b\xb4\xd4\x14\xfb\xbd\xc0\xa3\x8f\x19\x63\x4d\xc9\x04\x4a\x85\x28\x67\x18\x67\x5b\xbf\xdf\xa3\x11\x1c\xa7\x90\x20\x95\x07\x9c\x82\x02\xa7\x00\x14\xb1\x6a\x76\x87\x4e\x44\x1f\x15\x45\x73\x0f\x7b\x77\x8f\xc4\xa1\x8c\x69\x63\xa4\xb1\x79\x4d\x77\xf8\x66\x60\xff\x43\x91\xf5\x73\xd6\x5b\xf7\x14\xea\x43\x95\x44\x08\x38\x07\x17\x78\x2f\x74\xcd\xb3\x65\xa4\x4b\xfe\x94\x17\x45\x43\xf9\x9c\xdc\x81\x59\xbd\x0d\x90\x1a\x63\xcd\x18\x77\xe9\xa1\xbc\xb1\x58\x50\xce\x80\x2b\x40\x2b\x73\xb2\x2a\x0d\x35\x00\x40\x14\x5e\xea\x33\xbf\xa7\x53\x03\x82\x66\xde\x3c\x01\x27\xc5\x21\xe4\x4d\xe8\x98\x18\x8d\xa3\x63\x89\xd4\xaa\x38\x04\xaa\xb2\xc6\x3e\x4c\x03\x1f\x2b\xca\x09\x5a\xe4\x05\x97\xfc\xcb\xdd\xf6\x8b\x5a\x1a\x04\xd1\x84\x58\x1f\xc4\xb2\x4a\x5f\x18\x97\xfb\x1a\x21\x4e\xc7\xa2\x3f\x62\x53\x19\x82\x80\xad\xe4\x3d\xb5\xf1\x56\x6d\xbc\xa3\x36\x13\x66\x0a\xc6\x27\x88\xe5\x57\x94\xef\x59\x90\x3a\xb3\x0b\x3d\x76\x9e\xaa\xce\xe0\xfb\x9e\xdf\x0c\x45\x12\x8c\x81\x45\x82\x0f\xf2\x63\x78\x85\x17\x07\x9d\x09\x47\xf6\x68\xab\x7e\x69\x98\x52\xfc\xc7\xcd\x42\x3d\x9d\x66\x63\x5a\x0e\x2d\x7c\x7d\xce\xc1\x64\xdc\x68\x6c\xef\xd8\xda\x28\xa1\xe9\xea\x62\xd2\xd8\x5a\x2a\x28\x81\x57\xbe\x56\x94\x0a\x4a\x74\xae\x63\x3b\x33\x88\x33\xe5\x1c\x4b\x1c\xc4\xc1\x1b\x53\xf5\xb8\x5a\x80\x33\xa7\x46\xca\x86\xce\x58\x17\x21\x31\xd9\x9f\x34\xf4\x42\x8f\x64\xf6\x11\x15\x55\x4e\xf5\xfd\x15\x35\x07\xda\x6a\xce\x4a\xa6\xcc\x12\x1e\x90\x85\x83\xf3\x27\x3e\xd0\xde\x93\xf3\xac\x4e\x27\x87\xb0\xb2\x8b\xcd\x7f\x5a\x63\xee\x6a\xfc\x8a\xca\xbe\x38\x28\x47\x6a\xe9\x36\xd0\x71\x84\x50\x43\x02\x08\xf6\xbc\x4c\x4a\x72\x4a\xd0\x34\xa3\x5c\x26\x13\x75\xef\xd4\xa0\x4f\x0e\x58\x29\x67\x6f\xf3\xa4\x24\xb4\x62\xf9\x34\x9f\x8d\xe7\xa3\x82\x5f\xf3\xe2\x7f\x3d\x9c\xca\x2c\x29\x49\x2a\xe0\xff\xb2\x8b\xa4\x5a\x07\x1c\x72\xfa\x5a\x15\x91\x4a\x5a\xa1\x3f\x82\x2f\x0f\xfa\xd0\x1b\x88\xf6\xf6\xfc\xe2\x50\xfc\x5b\x54\xe4\xe4\x7f\xbe\x67\x51\x55\x56\xb7\xb7\x45\xe4\xfe\xdf\x37\xf7\x4b\xcd\xf9\x0f\xd6\xec\xff\x84\xe2\x75\x53\xb4\x93\x72\xb4\x58\x9f\xc1\x21\x0f\xbb\xb8\xd4\xa7\x71\xcd\x33\xb1\x58\x27\x0f\x3e\x5c\x3c\x20\x53\x7f\x8f\xa4\x65\xd0\x91\x5f\xb7\x8d\x1e\x80\x16\x6c\x32\x9c\x50\x44\xc2\xb0\x09\x41\x4b\xbd\x2b\x69\x90\xf2\x4d\x76\x75\x5f\x91\xc6\x78\x0f\x13\xde\x57\xa4\x4b\xa9\x86\xa0\x63\xf6\x41\xfb\x1b\x0a\xc5\xf7\x31\x93\xb4\x6b\x61\x63\xda\x30\x29\xe8\x91\xde\x5f\x2e\xa2\xc8\x78\xc9\xef\x2f\xdb\x4b\xfe\xae\x12\xcb\x7b\xcb\x06\x1c\x1a\x48\xfa\x93\xa8\x76\xdb\x7b\x0b\x46\x30\x1a\x97\xf8\xde\x82\xbd\xc4\xaa\x11\xf7\x16\x6c\x1a\xb1\xe4\xf0\x42\x89\x8f\x63\x8d\xc4\x5a\x4f\x3d\x18\x68\x9d\xbe\x69\xb7\xea\x27\x0f\x53\xab\x96\x7c\xb1\x74\xaf\x35\xa0\xd2\x7b\x7f\xe9\x5e\x6a\x18\x94\x2f\x16\x6f\x07\xc6\xe4\xf8\x42\x05\x36\x3d\x3e\xfb\x3f\xda\xc9\x26\x1b\xd0\x00\x56\x30\xa0\x6b\x36\xcb\xcb\x76\x83\x5a\x59\x00\x71\xce\x64\x78\xc1\xeb\xfa\x8b\x75\x58\xe4\x07\x95\xab\xe6\x42\xbe\xcd\x2e\x5b\xec\x44\xd3\x18\xe0\x83\x97\xfe\xa2\x5a\xb5\xf2\x38\xe5\xab\xd9\x9c\xa2\x2f\x97\xd0\x4b\x34\x90\xa4\x26\xc2\x5d\x17\xb6\x16\x6a\x14\x08\x03\xf2\x0f\x00\x0d\x8b\x2a\x71\x04\xca\xe2\xd5\x82\x0a\x36\xe9\x49\xbc\xdd\x6e\xab\xa4\x1c\x66\xff\xab\x24\xe4\xd0\xee\x40\x0d\x9a\x1d\xc6\x6e\xb4\xd5\xdf\x2e\x93\x88\x63\x63\x9d\x2a\x1a\x6d\x0d\x67\x92\xc8\x8e\x61\x04\x46\x30\x59\x59\x6f\xab\x9a\xc3\x43\x77\x50\xcb\x71\xe4\xae\x8e\xc1\xf2\x9c\xd0\x1c\x43\xcd\x40\xaa\x5f\x39\x16\x22\xf7\xae\x51\xe0\x7f\x95\x00\xae\x86\xba\x3b\x55\x0e\x6c\x3f\x07\x05\x85\x25\x4f\x30\x39\xcd\x11\x5e\x92\xc0\xc7\xf9\x98\x74\xc5\x0f\x26\x84\xda\x31\xfd\x25\x2b\xaf\xd4\x24\x68\x35\x6f\x9d\x7f\x10\x06\x3c\x84\xdb\xa8\x5f\xc5\x43\x42\x73\x1a\x0d\xec\x00\x45\x9e\x31\xbf\xc1\xe6\xb6\xca\x27\xc6\x78\xbf\xd1\x37\x03\x00\xd8\xcb\x50\x55\xa2\xab\x3d\x63\x32\xe0\x5d\x5e\xe0\x07\x99\x45\xcf\x72\x78\x12\xae\x91\xc3\x09\xed\x0c\xa7\x13\x12\xb6\xfa\x10\x7a\xf9\xc9\x69\x0e\x0b\xce\xbf\x47\xd7\x89\x20\x8a\x4f\x2a\xf9\x0d\x58\x85\x97\x4b\xd4\xed\xf9\x8f\x97\x83\x55\x9b\x41\x00\x9b\x53\x61\x56\x42\xd9\x91\x78\x26\xe6\xbd\xc6\xe0\x74\x0e\x08\x2d\x8d\x77\x22\x6d\x8a\xe4\x10\x04\xcd\xd2\xd7\xfc\x80\x77\x97\x1c\x4c\xa8\x46\x14\x24\x07\x83\x19\x47\xab\x2d\x2f\x5b\x17\xe2\x4e\x22\x52\x46\x34\xc2\xf7\xba\x2f\x68\xfb\xf3\x51\x23\x56\xdd\x10\xe9\xa2\x64\x17\x1a\x35\x29\xd0\x32\x5b\x85\x24\x08\xed\x53\xd1\x4f\xc5\xb6\xc8\x65\xf2\x60\x98\x4c\xfb\xdf\x90\x07\x8a\x94\x24\x9c\x55\xb3\xca\x4e\xf5\x9c\x8e\xc9\x69\x76\xe6\x02\xc0\x6e\x44\xa3\x34\x54\xb3\x0c\x44\xd5\x0f\xfe\x99\x2c\x36\xcb\xfd\x86\xcb\x6c\xbf\x21\xdf\x3c\xc8\x35\x5e\x26\x21\x39\xeb\x8f\xed\x3a\x7e\xf0\xcf\x2c\x29\x24\x99\xfa\x09\x64\x98\x20\x59\xec\x17\x52\x14\xfb\x45\x55\x4a\x51\x15\x41\x59\xc2\x24\x05\xb1\xdb\x83\x7f\xd6\xc9\x3a\x5f\xc9\x20\x49\x4b\xf3\xe5\xd7\x52\xf0\x45\x75\x55\xe6\x7f\xf1\xe5\xc9\xa6\x5a\xe6\xab\x9c\x8b\x13\x90\xd3\x9f\x44\x83\x9a\xf4\x4a\xf0\xb9\x64\xa4\x29\xa0\x9f\x1d\x3d\x2a\xe4\x30\x1a\x70\xed\xf5\x96\x45\x3f\x4a\x51\x60\x40\xae\x03\x36\x4b\xfc\x5d\xe2\x6f\xe3\x0b\x94\x13\xca\x0f\x8b\x72\x74\x99\xd5\xf9\x82\xdd\x01\x1b\x11\x39\xfe\x2a\xa2\xc8\x2c\x44\x1e\x1f\x15\xd1\x5f\xb7\x2a\x00\x39\xc5\x88\x02\xc7\x16\x39\x86\x30\xa2\xea\x42\x15\xd9\xbb\x55\x44\x9f\x55\x1b\x6e\x02\xdc\xcd\x2e\xa2\x9a\x31\x8c\x0c\x8b\x88\x21\xa6\x3c\xf3\x1d\xd1\xc7\x70\x02\xa7\x91\xcf\x63\x44\xf4\x87\x6c\xf1\xa9\xde\x66\x0b\x17\x61\x34\x79\x74\xef\x6c\x82\xa8\x95\x42\x9d\x17\x91\x3b\x3b\x6c\x16\xf5\x9d\x46\xee\x74\x57\x7d\x51\x1c\x41\xd4\xdc\xf8\x11\x7d\x0e\x87\x44\x1a\x35\x56\x75\x44\x9f\xd4\x8b\x34\x6a\x88\xe8\x22\xb5\xd2\x47\xdb\xc5\x63\xac\x92\xdd\xe1\x0c\x3d\x8a\xd2\xc8\xca\x06\x23\x8a\x81\x8f\xb1\xb9\x5a\x24\x65\x42\xff\x00\x74\xb2\x65\x65\x9b\x6a\x43\x05\x87\x50\xf8\xfd\xbe\xf1\x5b\x8d\x7c\xa4\x06\xd3\x88\x0e\x4c\x84\x9a\x17\x1d\x0e\x53\x84\xa1\xbf\x6e\x23\x7f\x66\x75\x7b\xd4\x1c\x84\x13\x8c\x11\xb0\x40\x54\x84\xe5\x40\x4d\x0c\xae\x13\x1b\xa5\x97\x0d\xac\x52\x9b\xc9\x2e\x06\x1d\xe1\xf2\xd8\x75\x83\x85\x35\xa6\xd1\xe3\xec\x6c\x0b\xd1\x9a\xd1\x45\xeb\x15\x82\xb1\x17\x6a\x90\xe1\x51\x1f\x7f\x3f\x8d\xd2\x48\x5d\xc3\xcd\xef\x9f\xf4\xef\x57\xfc\xb3\x0c\x47\xd7\xc4\xbc\x11\xfc\x3a\x8c\x79\x0a\xe3\x0c\xc4\x30\x8c\xf8\xc5\x45\x78\x53\x3a\xb3\x8b\x4a\xb1\x73\x26\x74\x6e\x43\x5f\x7a\x9d\xf9\x55\x4f\xb4\x5b\x3b\x41\x05\xbf\xea\x19\xf6\xa3\xd5\xf0\x75\x84\xaf\xb2\xa2\x50\xe4\x65\x77\xb5\x4e\x23\xd8\xe0\xb8\x0c\xf9\x26\x5b\xd4\xb7\x66\x0d\x3e\x8d\x1a\xbb\x5b\x8f\x7a\x14\xd2\x01\x0c\x7d\xd3\xb1\x3e\x5e\x35\x17\x87\x6a\x0e\x96\x6a\x6f\x1b\x3a\xf4\x07\x1b\xea\x17\xfa\xa8\xb5\x1e\x70\x89\x76\x2d\x86\xdf\xa2\x90\x34\xf8\x43\xe3\xe2\xbc\xc5\x1b\x35\xc9\x86\xde\x18\x6d\x9a\x00\x2d\xd4\xe9\xed\x65\xc3\x34\x3c\x5c\x83\xee\xee\x62\xca\xfb\x39\x4a\x23\x23\x3c\x37\x61\x6f\xa3\x34\x0a\xb9\x47\x13\xf3\x3a\x4a\x23\x73\xc4\xe2\x9c\x6c\x32\x9f\x36\x6c\x96\x6d\xd2\xb0\x59\x76\x50\x86\xcd\xb2\x83\x30\xe8\x40\x43\x07\x36\xcb\x80\x2c\x6c\x96\xdd\x54\x61\xb3\x34\xdb\xbf\x11\xda\x26\x15\xaa\x29\x86\x28\xd8\xd0\x60\x73\xfb\x14\x21\xdc\xdc\x01\x41\x50\x25\x05\x04\xc1\x2c\x8b\xcd\xb2\x41\x0f\x82\x55\xf4\x45\x82\x70\x2c\x95\x3f\xa5\xc7\x89\xc6\x66\x19\xd0\x8c\xcd\x32\x20\x19\x9b\xe5\x11\x8a\xe1\x45\x68\x82\x01\xf3\xa8\x37\x43\x8b\x5a\xb4\xe3\xdc\x44\xb7\xe9\xc5\x66\xd9\x41\x2e\x36\xcb\xd6\xc2\x0c\x5f\x00\xcc\x64\x79\x5d\x6d\x4a\xe3\xcd\xd4\x1f\xa7\x3a\x3a\xb6\x49\x74\xfc\x03\xa3\x79\xba\xb4\x56\x87\x4f\x8a\x66\x9a\x16\xd1\x08\x09\x51\x34\x87\x1d\xa0\x4f\x63\x76\x3d\x0d\xb6\x43\xea\x9f\x9b\xf4\x62\x54\x56\x62\x93\x15\xf9\x5f\x1a\x92\xb3\xc3\xe9\xbe\xf7\x46\x29\x4e\xf2\xf2\x84\xa3\x8d\x50\xe3\xdd\x56\x38\x4d\x35\xc5\x5e\x23\x2b\xa7\xb8\xac\xbd\xd7\xd6\x7d\xb2\xe4\xfb\x4c\x12\x99\x2d\xd6\xc4\xe8\x60\x08\x42\x14\xaf\x97\x97\x3b\x40\x9e\x89\x46\xa3\x11\x42\x87\xe0\xd6\x3c\x81\xf2\x4c\x8a\x83\xd3\x80\xbf\x02\x3b\x31\xe0\x5e\xa3\x93\x88\xd0\x15\xc8\x7a\x01\xe7\xac\x0d\x72\x46\xeb\x5e\xc5\x58\x6e\x79\xd8\x69\x52\xb3\x7c\xf4\x67\x95\x97\x98\x39\x63\x25\x49\x21\xcc\x00\xd1\x55\x83\x09\x09\x12\x40\xc3\x8c\x01\xb7\x9c\xd5\xd0\xc9\x1d\xbc\xde\xed\xfa\x2c\x6b\x73\x9e\xcf\xcb\x45\x55\xd6\x79\x2d\x79\x29\x4f\x2e\xf3\x72\x99\x97\x57\xf5\xc9\xaa\x12\xc0\x77\xa2\xda\x8a\x2a\x87\x65\x07\xaf\xab\xb6\x87\x05\x3e\x08\xf3\x59\x31\x67\x72\x56\x58\x2d\x07\x8e\x4f\xa2\x6b\xc5\xe9\x17\x55\xf5\x69\xb7\xfd\x99\xdf\x76\x3c\x7b\xe3\x28\x25\x12\x15\xa5\x09\x68\x0f\x4d\x25\x2a\x11\x71\x5a\x92\x54\xce\xb4\x9a\xc9\x84\x31\x96\x13\x63\x25\x57\xc1\x35\x3f\xf2\xe6\xc2\x45\xa2\xf7\x7d\x83\x06\xd0\x67\x79\x1c\x8b\x24\x37\x4a\x34\xd6\x55\x3f\x42\xd5\x78\x13\x8f\x1a\x46\x33\x44\x34\xc3\xa7\xec\x79\xd4\x67\xaf\xe1\xb7\xa7\xe7\x64\x54\xeb\xb1\x95\x61\x11\xe6\x21\x7d\x5d\xa2\xbb\x04\x17\x85\x1e\xb1\x42\xac\xbb\x20\x41\x07\xe8\x5d\xbb\x94\x59\x35\xb7\xae\xb5\x32\x62\x21\x30\x0e\x07\xba\x54\x43\x9d\xd7\x2f\xf5\xe5\x21\x1c\x6e\xb3\x4d\x3a\x34\x83\x78\xfa\x47\x35\xb3\x2e\xc9\xcd\x04\xc2\x96\x8e\xc0\x1e\x58\x11\x4e\xfd\x05\xc4\x41\x7f\xbf\xac\x96\xea\xeb\x40\xb7\xfa\x36\xf7\x2a\xdb\x74\xe8\x1d\x2c\xe2\xf8\xbb\xbf\xb1\xd0\xa5\xbc\xba\xc0\x3b\xd8\x6f\x14\x85\x07\x8d\xa0\x25\x13\x3d\x0f\xa5\xa9\xcf\x4a\xe3\x56\xfd\x27\x91\x6d\xd7\xe0\x66\x3d\x31\x6e\xd6\xe3\x18\x9a\x88\x2e\x41\x4a\x73\x2f\x2a\x09\x4d\x3e\x1e\x71\xbf\x8f\xbd\xb3\x19\xf4\xc5\xc9\xe4\xd0\xe9\x52\xe7\xb9\x5d\xe5\xd8\x2c\xbd\x0c\x70\xb1\x2a\x09\xed\x83\xb1\x07\x00\x3e\x60\x43\x70\x84\x6c\x42\x73\xe3\x2a\x09\x2d\x89\x77\xd3\xdd\xf8\x26\x9f\xed\x39\x59\x80\x92\x0d\x3f\x5c\xc0\x9d\xfd\x2d\xff\x2c\x1f\x09\x9e\xb5\x07\x37\x91\x4c\x4e\x6f\xaa\x44\x92\xf4\xee\x40\x46\x60\x18\xc5\x38\xfe\xa5\x7d\x39\x32\x2a\x89\x80\x24\xa4\xd5\x0c\x41\x8f\xcf\x44\x30\x17\xae\x3a\x33\xda\x3a\xdb\x14\x95\x27\xf8\x99\x04\xd1\x2c\x88\x35\xd8\xfd\x72\x64\x15\x17\xcd\x1b\xc7\xe3\x0a\xbc\x9d\xd9\x70\x26\x40\xe9\xd0\x58\x0a\x5f\x85\x86\x29\x56\xed\x91\x80\x2b\x7c\x0b\xec\x7d\x59\x2d\x6f\x0f\x9e\xc1\x2c\xb9\xd3\xdd\x64\x00\xd3\x80\x56\x5f\xa0\xd7\xc5\x47\xab\x4a\x6c\xe2\x38\x79\x9f\xeb\x6f\x1a\xd5\xbb\xcb\x4d\x2e\x23\x0a\x33\x86\x4a\xbe\x17\x10\xf4\x92\xcb\x75\xb5\x7c\x54\x54\xa5\xd3\x3d\xd3\x99\x2a\x45\x66\x21\x51\x4f\x8a\x5b\xbd\x21\x4d\x10\xf3\x24\x3e\x65\x02\x5e\x53\x31\xbc\xb2\x9f\x7e\x68\x76\x38\x2c\xc0\x6b\xc7\xfb\x8a\xdc\x1d\x0e\x72\xb4\xca\xcb\xbc\x5e\x83\x01\x9c\xff\x2a\x24\x47\x8a\xff\x60\x25\x05\x05\xd1\xf6\xbc\xfb\x5a\xef\x72\x24\xab\xae\x14\x41\x78\x5e\xbf\xca\x5e\xd1\x12\xd4\xcd\xb7\x99\xe0\xa5\x7c\x55\x2d\xb9\x76\x99\xa5\xf1\xb2\x46\x2d\x3b\xc6\x84\xa0\xb7\xf7\xdb\xc2\x3e\xd4\xa1\x7d\x87\x1e\xd9\x6f\x3a\x47\x36\x32\x8d\xf0\x35\x2c\x55\x2a\x3d\x0a\xe8\x53\xd1\xfd\x66\x15\x21\x87\x43\xbb\xa2\xb2\x2a\x79\xa4\x41\x4d\x2e\x82\x47\xb3\xa0\x0f\x28\xaf\x45\x16\x30\x91\x94\x8f\x4a\xfe\x59\x5e\xe4\x97\x45\x5e\x5e\x91\x83\xc3\x2c\x39\xa9\xf1\x28\xba\x56\x64\x0a\x09\xf7\x85\x14\x3c\xdb\x34\xd5\x1d\xd7\x79\x3d\xda\x56\xb5\x45\xa5\x10\x92\x8d\x0d\xb6\x83\xca\xc5\x38\xfe\xd2\x42\x6f\x45\x04\xff\x4e\x2d\x96\x30\xbe\x0b\xbd\x31\xf9\x5d\x10\x2c\x4d\x53\x52\x61\xee\x3b\x6c\x7c\xe8\x5d\x97\x3e\xa8\x3b\xaf\x8a\x63\xa6\x9c\xdb\xaa\x3e\x67\x5e\x4b\xf4\x49\x71\xa0\xf5\xbd\x79\x34\xc0\x86\xad\xf3\x40\xb7\x9c\x7f\x3a\x96\x41\x17\xad\x85\xab\xa6\x0c\xb2\xdf\xa3\x13\xee\x03\x55\xe3\xeb\x67\x56\xc7\xa7\x4e\x75\xd6\x6e\x1c\xf9\x72\xd9\x83\x01\x39\x50\x9e\x1d\x85\xcf\x3d\xd2\xa2\x4e\xb8\x59\x4e\xb4\x6e\x2a\xd3\x88\x02\xea\x1b\x56\x9c\x62\xdf\xa6\xf8\x47\xd1\x49\xae\xd8\x0c\xc0\x47\xd7\x2d\x1c\x0c\x4c\xc9\x54\x42\x73\xde\xad\xf3\x82\xdf\x87\xfa\xbe\xad\xea\x53\xf8\xe0\x99\x4c\x38\x39\xb5\x50\x54\x76\xb2\xb0\x20\x40\x7e\x4b\x3b\x64\xc3\xdc\x95\xf3\x60\xf6\xa1\x06\xbb\xc5\xf1\x5c\x73\x9a\xf7\x75\x1d\x90\x58\xcc\xaf\x5e\xb3\x56\x7e\xa0\x56\x3f\xb4\xe5\xbb\xdd\x5b\xd9\xe1\x12\x82\x1c\x5f\x98\x02\x63\x10\xaa\x77\x80\x99\x05\x79\x3e\x9c\x90\xe6\xa2\x93\x00\x63\x7f\x99\x2d\x3e\x35\x9e\x7f\x4d\x8a\x21\xe3\x07\x8a\x6f\xa4\xc7\xd6\x62\xb0\xa1\xce\xdc\x86\x34\x38\x23\xcd\xdd\xb5\xa8\xfc\x61\xa3\x2e\x43\xb0\x63\x3b\x36\x6b\x33\x08\x8a\x23\x47\x77\xb5\x36\x4d\xe9\xca\x34\x4c\xc2\xcd\x36\xed\x6a\x93\x8d\x0d\xda\x85\x60\xa8\x78\xcb\x6b\xe0\x0d\xd8\x61\x69\x94\x66\x01\xdb\x6c\x19\xff\xe3\xfa\xc1\xad\x54\xda\x61\xef\xd3\x82\xb1\xb7\x08\xa8\xfe\x12\xc1\x1b\x89\x5d\x1e\xda\x4b\x15\x77\xda\x09\x71\x5c\xe2\x3a\x3a\x1f\x1b\x07\x3f\x71\xdc\x9f\xf4\x99\x83\x8f\x51\x34\x81\x95\xa8\x05\x83\xfe\x86\x4a\x34\x17\xcf\x59\x87\xe5\x97\x50\xbb\xba\x7a\x51\xdd\x70\xf1\x63\x56\xf3\x84\xa4\xfc\x00\x10\xf4\xc1\x16\xaa\x77\x97\xb5\x14\xb6\x7c\xca\xad\x65\x31\x63\xb9\x53\xad\xef\x68\x88\x4d\x09\x0b\x7a\xb1\x13\xe2\x1e\x6b\xfb\xf6\x28\x78\xeb\x4f\x0d\xc8\x81\xae\xf3\x25\x7f\x9a\x8b\x5a\x36\xdf\x14\xed\xe9\x63\xa7\x67\xc0\x38\x30\x1d\xa6\x86\x84\x1c\x56\x79\x99\x15\xc5\x6d\x23\xa1\xda\x4b\x5a\xfb\xf4\xb6\x64\x63\x7a\xa5\x0e\x39\x75\xfa\x23\x3a\x69\xd7\x11\xa7\xf2\xd6\x6c\x36\xd7\x4b\x00\x14\xdc\x2d\x72\x84\x39\xe3\xf2\x25\x1b\x0c\x6e\xcb\x43\xaf\xac\x92\xab\x92\xd0\x2b\xef\xa8\x1a\x01\x36\x2d\x0b\x4f\x02\x44\x1d\xe2\x9f\xb7\x45\xbe\xc8\x65\x71\xfb\xa3\x4a\xc3\x97\x21\x0a\x46\xb5\x00\x07\x99\x8c\xa3\x07\xe1\x9d\x78\xbd\x05\x32\x12\xc7\x3f\x80\x95\xa7\xa8\x34\x5a\x03\xd4\x10\x91\x00\x03\x0f\x94\xa8\x48\x4f\x80\x53\x4f\x3f\x19\x45\x7c\x69\x2a\x46\xb2\x22\xf6\x62\x8a\xae\xc2\x69\x8e\x7f\xf4\x75\xcb\xf6\xdf\x77\xff\xaf\x59\x3b\x17\xa9\xee\x58\x35\xbb\x28\x93\x6c\xb4\x51\xc3\xb8\x04\xf3\x28\xc4\xbe\xe8\x71\x83\xb0\xb4\xa8\x8a\x22\xdb\xd6\x7c\x39\x05\x65\xed\xd7\x79\x92\x11\xe3\xec\x34\x05\x1b\x02\xe0\x70\xeb\x91\xac\xe0\xb9\x16\x12\x18\xf4\x95\xda\xc0\xec\x94\x3a\x9c\xd0\xa0\x32\xf6\xba\x59\x7b\x6d\x58\x6c\x93\x35\x6c\x44\x1c\xf7\x7f\x28\x3d\xc8\x44\x12\xc7\x3c\x8e\x2f\xf2\x24\xa3\x0d\xdf\x36\x68\x0c\xd3\xca\xdd\x6d\x1e\x4c\x1c\x0c\xfa\x3d\x83\xb7\x63\x4f\xcb\x24\x18\x3f\x42\x0b\xf6\x38\xd9\x91\x5e\x71\xee\x74\xbd\x9a\x8e\x72\x5b\x31\x6c\x47\x8f\xa4\x66\x45\x3b\xc6\x39\xd0\x25\x07\x7b\x49\xec\xe8\x1a\x38\xa9\x2d\x69\x3e\x30\x6e\x3d\xfc\x4e\x18\xc6\xac\xb5\x72\x59\x5f\xc7\x64\xb2\xda\xe4\x0b\x5d\xac\x0f\xab\x65\x88\x85\x1f\x06\xb6\x9a\x71\xfc\x8d\x7e\xab\x55\x7c\xb4\x71\x42\x0b\x93\x29\x74\xe9\x11\xc5\x8d\x46\xa8\x8c\xe3\x5f\x61\xf1\x23\xa5\x00\xfe\x56\x57\x86\x3f\x70\xbb\xc1\xbb\x69\xb0\x0b\xd5\x7e\x68\x5a\x4d\xa0\x36\x62\xcf\x62\x7a\x45\x97\x55\xf5\x49\x55\x1c\x69\x5e\x50\xa2\x79\x0b\x67\x13\x1f\xa6\x61\x7c\x9a\x77\x4e\xaf\xf3\x18\xe6\xe6\x36\x9f\xd3\x4c\xed\x8d\xaa\x63\x6f\x58\x89\x4b\x66\x96\xb7\x00\x07\x72\xd3\x2a\x7d\x9d\x27\x95\x5a\xe3\x08\x1a\x35\x9c\x30\xc6\x3d\x07\x03\x5e\x46\xd8\x2d\x65\x33\x9b\xac\x08\x0d\xf2\x58\x38\x3a\x11\xc7\xbe\x9b\xcc\xe6\x28\x69\xd8\x00\x9f\x5a\x79\x14\x09\x68\xca\x10\x34\x33\xa9\x83\xd4\x76\xb4\x4a\xed\x76\x11\xc7\x3f\xc9\x44\xd0\x46\x09\xf8\x64\x5f\x72\x0a\x3b\x9b\x1b\x5d\x16\x76\xad\xd2\x22\x6c\x86\xea\xc9\x13\xf0\x54\x6b\x70\x87\x6a\x23\x4a\x35\x6b\xb7\x1b\x90\xc8\x65\x68\x7a\x81\xa6\xb0\xcb\x11\x78\x94\x18\x57\xb4\xd2\x3a\x92\xd2\x94\x4c\xff\xee\x49\x8b\xe4\x64\xd4\x4d\x6b\xf6\x9b\xba\x49\x0d\xb3\x5e\x0d\xd4\xa1\x04\xa5\x01\xf0\xa9\x5b\xa3\xee\x76\x30\x7a\x88\x3e\x00\x75\x37\x0c\xf1\xfa\xad\xf5\xe2\xef\x90\x4d\xcb\x0d\x86\x71\x17\xdf\x93\xa3\x4d\x76\x7b\xc9\x9f\xe5\xcb\x25\x2f\x2d\x24\xb9\x76\xed\xdf\x15\x89\x6b\x6b\xbf\x37\x91\xbf\x96\x6b\x3f\xfa\x68\x84\xe7\xbc\x19\x51\x8b\xbc\x16\x1b\x7b\xa0\xb0\xb7\x88\xc1\xd0\xd5\x5b\x2f\xab\x76\x12\x74\x5b\x79\x81\x94\x13\x70\xdf\xf4\x1f\x8e\xc9\x69\x67\xbf\x5d\xc7\x9e\xdd\xdb\xad\x43\x4f\x9d\xfc\x4e\xb4\x74\x59\x36\x7d\x4b\x03\xfe\xe8\x1a\x8e\xe3\x0e\x25\x66\x93\x32\x29\xd9\x4d\x95\x94\x84\xe8\xb4\x4c\x8b\xe6\x2a\x36\x0b\x8a\x54\xfb\xbf\x9a\x8d\xd5\x11\x59\x6a\x0c\xae\x57\x9e\x8f\x93\xcb\xbc\x61\xd2\x50\x83\x39\x9d\x4b\xc8\xea\xd1\xa2\xa8\x4a\xae\xbe\x93\xfe\x98\x10\x5a\x61\x77\xa0\x96\x17\xe8\x13\x12\xff\x0a\x02\x35\x12\xcf\x19\xcf\xf8\x74\x77\x06\x9b\xed\x13\x5f\x3a\x42\xb5\x43\x69\x3f\x06\xcf\x76\xf3\x51\x5e\xbf\x01\xe2\x69\x9c\x95\x66\x6c\x53\x25\x00\xb7\x5b\xf2\x9b\x93\x8f\x25\xf8\xb6\x3b\x78\xbd\xd2\xf6\x50\x1b\xe4\x4c\xf4\xc4\x98\xe1\xfa\x59\xa2\xef\xc9\xcb\x92\xf8\x59\x70\x74\x54\x81\x57\x25\x20\x77\xd2\x8c\x6d\xd1\x30\xa9\x87\xe3\xae\x06\x94\x56\x80\x0f\x94\x9d\x8f\xf7\xfb\x31\x63\x99\x66\x7a\x2b\xa4\xeb\xef\xd6\xbc\x7c\xb2\xd9\xca\x5b\x53\x57\x05\x94\xc3\x28\xdd\x2c\xdf\xe5\x70\x54\x56\xee\x40\x53\x54\xa0\xf2\xc7\xd3\x01\xc6\xcc\xc2\x7c\xf3\x10\x60\x43\x03\xa2\xa9\x1d\x0f\x12\xf0\x97\xd5\xae\xe6\x60\x6f\x5d\xef\xf7\x7e\x89\x5f\x0d\xd1\x5e\x6a\x21\x0c\xc2\x5b\x27\x41\x19\x2e\x86\xe9\x49\xb6\x3d\x80\x55\xf9\x02\x45\xdb\xa8\x0f\x4f\x05\xad\xc8\x7e\x2f\xb5\xf3\x79\x01\x7f\xe3\x18\xd2\x08\x3f\x4d\xd7\xfb\x85\xaa\x27\x2f\xaf\x4e\x6c\xf9\x27\x78\xd4\x9e\x6c\x33\x21\x73\xc5\x34\x9f\xa0\x7b\x1f\xe0\x68\x4e\xb2\xf2\x84\x7f\xce\x6b\xc8\x52\x95\x3c\x22\xbd\xcf\xac\x3f\x3e\x54\xa3\x6c\xb9\x7c\x5b\x3d\x43\x33\xf4\x38\x7e\x93\x5b\x2f\xea\x12\xf0\x8e\x8d\xfb\x74\x38\xc8\x15\x8b\x1d\x81\xec\x8a\x17\xf4\x55\xf6\x4a\x83\xf0\xd2\x9d\x71\xae\x59\x80\xb7\x48\x5c\x55\x80\xbd\xb4\xd3\x1d\x19\x84\xf0\x18\x45\x1c\x57\x01\x1f\x56\x1c\x81\xdb\x7b\xaa\x92\x33\x56\x34\xb9\xa0\x38\x4e\x6a\x38\x32\x82\x62\x76\x7d\xdd\x10\xa0\xf2\x60\x3a\xd4\xb4\x47\xf7\xb9\xcd\xe0\xd7\x34\xf8\x65\xcd\xf8\xe4\x9c\xa4\x33\x39\xa7\x12\x63\x85\x77\x38\x28\x52\xaa\x78\x2c\x7e\x73\xf2\x59\x6d\xad\x1d\xd3\xb5\x4f\xe5\x68\xb1\x06\xf4\x48\x15\x86\x03\x30\x15\x26\x0c\xfc\x43\xec\x0e\x8d\xa6\xeb\xf1\xd2\xe3\xd8\x1e\x34\x49\xee\x7e\xc0\x4e\x40\xdf\x24\x1d\x13\x2c\x42\x6d\xa7\xd7\x25\xa8\xee\xc4\xf1\xfb\x3c\xa9\x68\x74\x09\xd2\x41\xb4\x79\x7b\x52\x86\x10\x22\xe4\xae\xb2\xac\x95\xca\xef\x10\x54\x93\x27\x6a\x8f\x25\xdc\xa2\x15\x2c\xab\xd2\x5c\x06\xf7\x7b\x1e\x80\x18\xd8\x08\x74\x54\xab\xca\xd3\x4b\x28\x21\x8d\x8e\x25\x95\xb9\x56\xd1\x4a\x73\x95\x30\x71\x05\xec\x07\xf4\x3b\xdf\x7d\xea\x87\xbb\xe7\x1f\x32\x29\x68\x63\x78\x9c\x12\xa6\xea\x54\x56\xd7\xaf\xb2\x0d\x57\xbb\x1a\xb0\x9d\xd4\x87\xb6\x9c\xbc\xc5\x5f\xbc\x5c\xda\xef\x45\x5d\x7b\x8e\x4f\xb1\xe0\xd3\xc5\x99\x9e\xae\xd3\xc5\x60\x40\xb8\x48\x0a\xba\x30\xb7\x9b\x5e\x65\x99\xe2\x6f\x78\x52\x00\xa3\x4b\xff\xc8\x93\xc2\x30\xb9\x8f\x96\x4b\xc5\xe2\x16\xb4\xb2\x5e\x8e\x2a\xb8\xc7\x7f\x04\x19\x2c\x1c\x2f\xf7\x5f\x52\x37\xfa\xb0\x33\x02\x27\x44\x43\x65\xd2\x3d\xf2\x82\x0a\x25\xf7\x7d\x00\xf2\x99\x98\x6b\x9e\x19\xce\x58\xef\xb9\xe5\x26\x40\x8c\x01\xb6\x4f\xd5\x5d\x7b\x56\x53\x6a\x8b\x80\x9b\x86\xed\x9b\xaa\x6e\x1b\x44\x75\x42\xcf\xe8\xda\x7c\x7f\xbb\x4f\x1a\x02\x43\x84\xb0\xf4\xa0\x2b\x8d\xe5\x87\xda\x4a\x25\x9b\x09\xd3\x37\x35\x8a\xf3\xde\x65\x9e\x04\x21\x41\xb5\xce\x8e\xb9\xc9\xbc\x0b\x33\x60\x5d\x1a\xd8\x26\x6e\x96\xcf\x4f\xb5\x4b\x2a\xb5\x02\xd5\xac\xc1\xa2\xd4\x43\x06\xbb\xd4\x15\xa4\xf9\x9c\x7c\x38\xa4\x13\x42\x7c\x77\xcf\x9f\xad\x70\xc8\x9b\x2a\x33\x53\xe0\xf4\xd8\x88\x97\x2a\x26\x5c\xb6\x0b\x0f\xbc\x8e\xdc\x33\x8d\x8d\x07\xfa\xd2\x54\xe0\x8c\x97\x4b\xaf\x31\xaf\xcb\x86\xf7\x67\xad\x6d\xed\x15\x59\x12\x3e\x2b\xe7\x1a\xf1\x14\x3c\xf3\x3b\x16\x4a\xc5\x58\x11\x95\xd7\xd8\x47\xae\xb1\x72\xb4\x52\xb4\xaa\xe9\x82\x46\xb0\xa7\xdc\x7a\xc4\x47\xee\x3f\x8e\xc1\xa9\xb1\x1f\x14\x5c\x92\x4a\x93\x45\x56\x8d\x0c\x26\xc0\x4f\x8e\x86\xc9\x71\x6c\x3d\xae\x9f\x78\x46\x63\xba\x8e\xc5\x9a\x56\xe0\xd3\x56\x7d\x65\x6c\xcc\x80\xff\x40\x71\x08\x3a\xe7\xaf\x5b\x96\xd5\xc1\xf8\x97\x5a\x75\x9f\x77\x5c\xfa\x38\xde\xf5\xf4\x45\x4f\x78\xe8\xfa\x50\xc1\x7e\x9f\x64\xa3\xbc\x5c\x14\xbb\x3a\xbf\x06\xc5\x93\x29\x46\x9c\x31\x99\xea\x2f\x49\x14\x81\x81\x35\x01\x2e\x63\xbd\xeb\x68\x66\xee\xa2\x7d\xb1\xdf\xf7\x4d\x25\x1e\xdb\x40\xac\x8f\x35\x5d\x29\x60\x0f\x7b\x55\x82\x26\xcb\x54\x85\x9f\x43\x8d\xb2\x3a\x97\xe4\x34\x29\xc1\x11\xb5\x9b\x62\x7d\x2a\x65\xda\x39\x37\xd5\xce\xfc\x54\x7a\x62\x4d\x85\x4f\xca\x03\xc0\xc6\x66\x84\xee\xfe\x9f\x8c\xd8\x57\x35\xfe\xeb\x06\xeb\x6b\xc6\xea\xeb\x27\xe8\x9e\x01\xb3\x23\xa5\x92\x0e\x25\x75\x7d\x71\x43\x38\x94\xe1\x20\x2a\x76\x37\x23\xb4\x60\x13\xc5\x03\x78\x66\x8b\x74\xa1\x58\x70\x0c\x32\x8a\xf0\x83\xa4\x98\xe6\x29\xfa\x12\x77\x67\xd0\x8a\x8d\x4f\x57\x67\x9e\x18\x62\xe5\xe1\x65\x27\x6b\x56\xcf\x56\x73\x70\xc7\x9e\x2c\xd9\x45\x99\xec\xe8\x5a\x0f\x08\x21\xd3\x22\x8e\x93\xb5\x22\x3c\x98\x7a\x69\xdb\xaa\xbe\x06\x0b\x92\x42\x64\x7e\x00\xa5\x18\x55\x21\x56\xb6\x0b\x2a\x03\xc5\x15\xba\x74\x52\x89\x64\xcd\x76\xba\x52\x5d\xfe\x80\x2d\x8c\x3c\x6e\x8d\x32\x0d\x6c\x4c\xed\x35\x66\xbf\x4f\x30\x8e\x2d\xa8\x6a\x97\xba\xd1\xf9\xd7\xb7\xb5\xf6\x63\x7a\x82\xa9\x06\x47\x93\x1d\x6a\x60\xf2\x3e\x95\x49\x4d\x08\xdd\x01\x77\xa7\x82\x76\x2a\x68\x47\x90\xf7\xdc\x32\xad\xec\xd3\x2f\xb0\x07\x1b\x7a\x1d\xce\xc0\xf0\xa1\x8a\xbe\x3e\x1f\xc7\x71\xed\xf5\x3d\x18\x68\x2d\x62\x9c\xad\xe6\xd8\x57\xf4\x2b\xde\x5a\x1b\x90\x00\xfb\x89\x4f\x11\xc8\xce\xf5\x5c\xa9\xd7\x50\xdc\x16\x73\x6d\x48\x4f\x7f\xed\x2c\x43\xb0\x75\xc4\xf6\xd3\x7d\x67\xe6\x60\x20\xfd\x33\x53\xfb\xb4\x10\x5a\xc0\x24\xf4\x7e\x11\xd0\x5c\xb8\x58\x99\x23\xac\x71\xbf\x02\x3d\x0d\x3c\xd3\x24\x9c\x69\x07\x7b\x8a\x63\x4d\x53\x8e\x30\xe7\xb6\x59\x6f\x03\xc4\xee\x0e\x49\x1b\x93\x33\xb8\x78\xd5\x1f\xa3\x01\x1f\xe5\xcb\x06\x1c\x0e\x90\x6b\x27\x8e\x1e\x83\xa7\x10\x30\x04\xf2\x26\x05\xce\x27\xed\x7d\xe3\x55\x9e\x08\x75\x1e\xd9\x03\x29\x3f\xe0\x65\xb8\x64\xfa\x3c\x6a\x54\x00\x3f\x4b\x27\x46\x6b\x32\x05\x6d\x0a\x25\x90\x42\x95\xb3\x7c\xae\x25\x54\x19\xe1\xa9\xc9\x57\xb3\xf1\x69\x7d\x96\xb9\x7c\xb5\x9b\x96\x1d\xcb\x66\xf5\x9c\x16\x6c\x7c\x5a\x58\x33\x8b\xd3\xc1\xa0\x50\x57\xef\x6a\x56\xcc\xed\x39\xbd\x33\x3b\xc0\xa8\xc3\x9d\xf0\x5e\x65\xa7\x1f\xbd\xf7\xab\xa3\x78\x96\xcf\x59\xe6\xb9\xc1\xb4\x03\xff\xa3\xf7\x0a\xc9\x9b\x47\xa2\x7f\xd6\xb7\xfd\x40\xa3\x03\x68\x9c\x7f\x27\xce\x49\x38\xe9\x85\x17\x1e\x98\x69\x57\xe3\x4b\xef\xb8\xff\xea\xf2\x83\xfb\x4f\xa3\x7c\xe9\x15\xfe\x4b\xc8\x33\x86\x14\x79\x38\x49\xc7\x2e\xe9\x9b\x23\x49\xf1\xb4\x08\x92\xfe\xd9\xf0\x09\xee\x8b\x9d\x86\x32\xf8\x09\x4e\x76\xfb\x4c\x34\x1d\xba\x72\xfd\xa6\x42\x81\x9f\xc0\xcf\x4a\x71\x10\x68\x2a\x44\xd1\xb3\x32\xd9\xef\xa1\x07\xc3\x5f\x4a\x0d\x97\x62\x9c\xd1\x0c\x2b\xc4\xd3\xc1\x2c\xb2\xa2\xb9\xa2\xca\xfb\x3d\xf4\x62\xf8\x06\x92\x1b\x0d\x35\x75\xb9\xcf\x97\x43\xb5\x4d\x5c\x1f\x1e\x37\xac\xe8\x41\x4f\xa9\x31\xdf\xa5\x3d\x17\x72\x6a\xfc\xb1\x7a\xef\x0f\x49\x8e\xe0\x4e\x76\xd3\xbb\xfb\x96\xf1\xfa\x37\xc5\x7e\xa4\xd0\x3a\x7d\x86\xfe\x59\xaa\xe3\xde\x2c\xd4\xb3\x31\xb8\x30\x64\x36\xa0\x83\x23\x7c\xe5\x4f\x0d\x34\xbc\x3f\xf6\xf8\xfe\xe7\xed\xe8\x89\x17\xfd\xa2\xed\x70\x8f\x21\xef\x47\x68\xa6\xfa\x5d\x35\xfb\x9d\x91\xfb\x76\xa5\xdb\x91\xa0\xdf\xd9\xea\x3d\xa6\x28\xec\x5e\xc4\xe9\x1d\x13\xba\x50\x93\x55\xe8\x07\x33\x9c\x5a\xbb\x5f\xd5\x0c\xe7\x84\xae\x30\x89\xac\x68\x89\x93\xe9\x12\xbc\x51\x09\xd0\xf3\xe2\xe2\x9c\x8d\xe3\x78\x75\xc6\xc6\xfb\xfd\xe2\x0c\xbe\xcf\x19\x8c\x23\xfe\x72\x8d\x0a\x57\x71\x1c\xe7\x8d\x2d\x60\x6a\x13\xe4\x9c\x8d\x53\xef\xd7\x98\xec\xf7\x58\xcd\xbf\x59\x18\xf4\xae\x24\x67\xa6\x38\xf3\x7b\x6c\x7d\x3f\xf6\xc7\xfe\x8d\xe6\x69\x78\x00\x9d\x4a\x06\xb3\x7d\x4a\xb8\xd9\x18\x43\x87\xde\xe0\x34\x5c\x6d\xfe\xbf\x82\xbd\x68\xe6\xb5\x64\x4f\x01\xe9\xd7\xac\x25\xc6\xca\xa9\x4c\x01\xab\xc1\x65\x7d\xe6\x51\x9e\xf3\xe0\xca\x69\x91\x9a\x7c\x8c\x09\x73\x06\x80\x04\xa4\xf4\x12\x7d\x11\x74\xc2\x34\x03\xea\x1f\x4c\x5c\x0b\x7e\x08\x1a\xff\x39\x8e\x65\x73\x29\x8a\x16\xf3\x1b\x1c\x2d\xf9\x2a\x49\x4a\x38\x59\xda\xbb\xd0\xe3\xdc\x90\xa8\xd8\xf1\xc7\xb3\xcb\x64\x70\x82\xc3\x38\x1e\x9b\xb4\x71\x5c\xb6\xa6\x1d\x45\x8d\xbf\x1a\x80\x79\x6f\x3a\x6d\x87\x7e\xf5\x19\x77\xac\x1b\x9e\x86\xf5\xc5\x52\x04\x5b\x02\x06\xc8\x8c\x0d\xe4\x44\xdc\x04\x7a\x51\x6a\x04\x85\xe0\x0a\x27\x2c\x77\xa7\x58\x48\x71\x6c\x55\xaa\xfa\x1a\xfc\xaf\xeb\x78\x93\x9e\x05\xe3\xed\xd3\x36\x35\xb0\x8a\x34\x7b\xd1\x47\x48\x5d\x3f\xef\x1a\xc8\x3c\x60\x8e\xf4\x50\xe4\x70\x15\x51\xff\x1b\x2e\x4a\xed\xd9\xbc\x73\xa0\x01\x15\xab\xab\x87\xc4\x4e\x41\xee\x4d\x41\x59\x25\x1f\x4b\x42\x3f\xfe\xc7\xba\x02\x47\x5f\x62\x7b\x4e\x73\x6a\x7c\xaa\xbd\x19\x37\x24\x1e\x83\x01\x27\x7e\x38\xf8\x36\x44\xf1\x5e\xaf\xa1\x30\x40\x0e\x87\xb0\x91\x1d\x4f\xa9\x81\x56\x93\x96\xc7\xc0\x82\x01\xdf\xfa\xb0\x27\xdf\x95\xec\x62\xf4\x02\x50\x82\xd5\x98\x77\x5d\x1b\xbd\x9d\x73\x92\x97\x27\x82\x88\xa6\x45\x02\x78\x02\x56\xb5\xcc\xca\x39\x03\xee\xaf\xd7\xd4\xc5\x28\xab\x25\x67\xd2\x93\x66\xfd\xcb\x56\xf1\x29\x4f\x24\x39\x4b\xb4\x2e\x05\x48\x20\x43\x0f\x4c\x80\x5d\x1a\x40\x3d\x83\x97\x36\x8e\x5c\xbb\xf0\x08\xd1\x6f\xe6\xad\xcb\x28\xe6\xea\x37\x45\xcb\x8c\xe8\x37\x45\xc3\x96\xe9\x07\x52\x98\x4e\x93\x08\x37\xf5\x9f\x55\x12\xa8\xed\x52\x0e\x5d\xb0\xda\x1c\x91\xf1\x0b\x9b\x9e\x08\x5e\x00\x92\xf5\x69\xd4\xe3\x23\x0f\x1e\x5b\x9d\xc6\x03\x16\xa1\xdf\x9d\x21\x80\x9e\x9c\x0c\xa3\x81\x6c\x41\x71\xfb\xb0\x31\xd1\xf6\xf3\x29\x18\x3d\x5b\x6f\x30\xba\x18\x74\xf6\x74\xe2\xe7\x0f\xfd\xbb\x06\xf9\xdf\xa8\x5b\xaa\x15\xb2\xf3\xac\xde\x09\x4e\x5f\x56\x09\x80\xad\xd0\x19\x76\x66\x6e\x06\xd0\xbb\x46\xe8\xb7\x56\x4c\xe0\x6b\xaa\xfa\xde\x44\xd5\x26\x79\x57\x12\xfa\xee\xde\x4d\xf2\xff\x73\xf7\x6e\xeb\x6d\x1b\x59\xa3\xe0\xbd\x9e\x42\xac\x49\xd0\xa8\xb0\x48\x91\x92\x6d\x59\xa0\xca\xdc\x3e\x26\x4e\x27\xb6\x13\x3b\xdd\x9d\xa6\xd8\x6e\x10\x28\x8a\x15\x83\x28\x06\x00\x25\xab\x05\xcc\xb7\xef\xe7\x9b\xef\xdb\x8f\xb0\x2f\xe6\x7a\x1e\x62\x3f\xc5\x5c\xff\x4f\x32\x5f\xad\x3a\x02\xa4\x6c\xa7\xf7\x3f\x17\xb3\x79\x01\x02\x75\x5c\x75\x5a\xb5\x6a\xd5\x3a\xec\x13\x9a\xb1\x97\x8b\xc6\xf1\x8d\xb9\xaa\x56\x7e\xd7\xe8\x6b\x1e\x16\xde\x15\x7c\x1e\x04\x55\xdb\xcb\x03\xf7\x49\x59\x8e\x2b\x49\x7f\x43\x09\x12\xe5\xb7\xd8\x7d\x07\x95\xe5\x76\x87\x06\xa5\x68\x97\xce\xfa\xd2\xeb\x2f\xb9\x76\xfe\xf3\x96\x87\x85\xf3\xa2\x34\x02\xdf\x91\xe0\x81\x4b\x28\xd9\x87\xae\x7a\x3c\xcc\xdd\x82\x0c\x04\x26\x20\x36\x93\x3b\x4f\x3d\x8d\x5c\x97\x7f\xfd\xf2\xcb\xfb\x95\xf6\xca\xdb\xea\x27\xaf\x4f\x0e\xbc\x54\xee\x06\x3c\xb7\xb0\x0f\xd8\x41\x1e\x04\x21\xb4\xc0\x80\xdd\xcf\x41\x22\xe3\xdb\x2a\xac\x5a\x9e\x0a\xf6\xbb\xe6\xf9\x3d\x0f\x95\x1a\x4b\x83\x35\x4e\xf8\xd5\xe0\x84\x1d\x6c\xa0\x38\xa2\xec\x63\x45\x19\xf9\x51\x41\x40\x8c\x28\xa1\x86\xb1\x98\x6a\x5f\x59\xd1\xd8\x5b\xed\xdf\x6a\x45\x7a\x9f\x4d\x0b\x27\x24\xb7\x76\xff\xdc\x65\xad\x4e\x3c\x63\x87\x4a\x10\xef\x28\x9c\x46\xff\xa8\x2f\xca\x3e\x06\x2b\x09\xe1\x22\x4e\x3e\x5c\x16\x62\x9b\xa7\x03\x3c\x0d\x2f\xde\xf6\xf1\x91\x39\x5d\x2a\xfb\x87\x8c\x32\xab\x65\x54\x28\xc1\x3d\xdc\x37\x41\x3a\xa0\x5f\x78\xb2\x7a\xc6\xc8\xeb\x6c\x3c\x9f\x22\xed\xf4\x5a\x7b\x7e\x50\xef\x5a\x2c\xa5\x9a\xe5\xf3\x69\xa5\xd0\xdd\xf1\x3c\xf2\xdc\x6c\x20\x80\xb1\xc4\xa8\x2f\x63\xfa\xf2\xf3\x2b\xf9\x89\xb5\x60\xac\xc4\x8e\x75\x0d\xff\x7d\x8a\x0e\x55\x32\xb7\x00\x5d\x7f\x7c\xe5\xfb\x49\x59\x64\x71\xfe\x41\x0e\x89\x43\x65\x36\x48\x1f\x68\x3c\x8b\x90\xa6\xdf\x3c\xbb\x92\xa1\xe7\x00\xf3\x50\x99\x82\x74\x25\x4c\xbb\x01\xa1\x36\x1b\x89\x23\x2d\x37\xed\xc0\xfa\xc9\xd3\x7b\x6a\x2f\xcc\xf1\x48\x71\xec\x73\x30\x5a\x3b\x9a\x77\xaa\x2f\x30\x54\x62\x16\x1f\x1b\x82\x69\x58\x7b\xd1\x5c\x29\x99\x63\x2d\x9d\x6a\x2f\x5c\x76\xae\x4a\x65\x69\x87\xa8\xaf\x4c\x19\xf7\xd1\xe1\x32\xe6\x19\x4b\x0f\x2b\x71\x18\xa7\x57\x71\x9e\xb0\xc3\x12\x04\xe3\x87\xc8\x9b\x5b\x7f\xf3\x81\x36\x81\xdc\xb3\x55\x58\x2a\x13\x71\x5a\xde\x91\xe5\x69\xb4\x04\x41\xcb\x52\x7b\xf5\x19\x6a\xc9\xc9\x10\x13\xb9\xa8\x23\xa1\x74\x3f\xb4\xed\x4c\x36\x2d\x41\xd2\x4d\xa4\x8c\x24\x38\x4a\x1a\xb8\x27\x12\x24\x56\x5b\x0c\x29\xa9\x8a\x3c\xa8\xe8\x0f\x2c\x8c\x89\x71\x4e\x4a\x32\x49\x0f\xc7\xfa\x1e\x4c\x9e\x6b\xca\xca\x5d\x28\x17\xf2\x14\x23\x5b\x7e\x95\xcb\xd3\x04\xfb\x58\x91\x1d\xa3\x35\x8a\x5b\x95\x03\x1f\x6d\x36\x57\x7c\xd0\xa5\x12\x66\x1f\x26\x2b\x1c\x04\xbd\xe5\x90\x89\x2c\xc4\x13\xac\x1b\x47\x55\xc3\x04\xfd\x29\x0f\x4b\xb2\x24\x09\x18\x56\xd8\x2a\xd6\x06\x07\x59\x06\x2b\xed\x3a\xdd\x46\x3c\xf4\xba\xf1\xef\xde\x01\x10\x58\xa4\x9a\x61\x5b\x0c\x7d\x13\xec\x7a\x89\x28\x7e\x9f\x83\xd8\x4f\xe2\xda\x3f\x22\x89\xc2\x06\xb6\xa9\xfb\x5a\x49\x56\x5e\x41\xbe\x4d\xf7\x20\x98\xc9\xdc\xca\xc0\x32\x52\x4e\x5d\xff\x9c\x87\x5f\xc9\x93\x71\x8e\x89\xc0\x13\xd7\x01\x72\x25\x2d\x95\x8c\xb9\x2d\x6b\xd7\xbe\xfa\x34\x2c\x69\x6f\x4c\xe2\x20\xa8\xb8\xa2\xcf\x09\x64\xc2\xea\xcf\xfa\x49\x25\x5b\xed\x15\x64\x4b\xff\x9c\x87\x3f\xc9\x0a\x97\x24\x27\x2b\x59\x29\x59\xa9\x9e\x49\xe9\x4a\xe2\x16\x39\x53\x0f\x52\x18\x23\xb4\x1e\xa0\x7e\xb8\x9d\xa6\x7d\xb9\xf4\xb7\x51\xaa\x68\xf0\x5e\x59\xd7\x49\x8f\x6e\xb5\xc1\xd7\xec\x5c\x0f\xd6\x04\xf3\x30\xa3\xd6\x51\xa0\x99\x9f\x59\xff\x3e\xbb\x87\x49\x82\x0f\x12\xba\x6d\x5a\x03\xdb\xd8\x02\x36\xa2\x9c\xb4\x9d\xc2\x43\x09\x72\xf0\x55\xfe\x03\x1e\x6e\xe4\xf0\x67\x74\xe3\xad\xef\xef\x77\xf4\x1a\x67\xc6\xb3\x90\x9c\xc2\xdf\xb2\x7c\x4e\x04\xbd\x6d\x0e\xd4\x64\x30\xf3\xd2\x38\xa1\x22\x45\xd7\xcd\x93\xbe\xa3\x92\x14\x27\x11\xbe\xf6\xa0\xf2\x96\xcb\x3c\xa7\xa3\x59\x7c\xe3\x91\xc2\x76\x7a\x75\x93\xcc\xe2\x39\xd9\xd2\xb1\x9c\x3d\x2d\x28\x94\xe1\xf7\x5d\xe3\xf7\x8e\x15\xb6\x9d\x64\xe7\xc6\x86\x6e\x4e\xf9\x6c\x3b\x3f\xc8\x1f\xc1\x21\x43\x93\x0e\x5b\x32\x26\x8c\xf0\xd9\xb6\x3f\x9e\xcb\x09\xb4\xed\xd3\x63\xe2\x8d\x80\x3c\xaf\x36\xc0\x60\xe3\xcb\xb0\x1c\x8a\x4d\xfc\xfb\x96\x61\x9b\xbd\x20\xdb\x41\x41\x18\xb8\x3b\xd2\xd0\x4a\x8a\x0d\x93\x2d\x2d\xfa\xc7\x8a\x51\xae\x0e\xb9\xe7\xdb\x49\xd1\xa7\xc7\x86\x8d\xc2\x67\x45\x7f\x3c\x3f\x50\x7f\x34\x14\x53\x21\x27\x48\x84\x10\xee\x77\xca\x6a\x1a\x77\x21\x7d\x0b\x4a\x47\x65\xc4\x09\x5c\x97\xb3\x32\x12\x43\xbd\x69\xc1\xb5\xb9\xd9\xb5\xa6\xda\xf9\xa5\x1b\x65\xc6\x5b\xbe\x30\x94\xf6\x52\x59\xd7\xe6\x6d\x36\x9a\xf7\x68\x67\xdc\x4d\xb7\x01\x8e\x7a\xcd\xc1\xaf\x22\xa7\x7a\xbe\xb4\x8e\x89\x9f\x5e\x60\x65\x1e\x7a\xf3\x25\xc7\x11\x98\xcd\x82\xaa\x40\x91\x1d\x34\xc7\x14\x18\x94\xeb\x17\xc2\x87\xba\x89\x53\x1d\xf7\x54\x7d\x52\x1b\x11\xb5\x23\x40\xd5\xaf\x95\x52\x39\xb4\x28\x28\x35\x9e\xc5\x0a\x91\x57\x5c\xe9\x08\xfa\xdf\xfd\xbe\x35\x51\xa3\x6b\x77\xfd\xa6\x71\x82\xb7\x3a\xbc\xa6\x88\x4f\xa1\x30\x98\xf6\x5a\x82\x81\x0a\x40\x25\x79\x5d\x8f\x88\x46\x5a\x5f\xe5\x21\x27\x05\x9e\xf4\x84\x41\x57\x3f\xc9\x10\x21\x77\x81\x56\x2e\x49\x7b\xff\x9a\x63\xf2\xab\x4f\x63\x82\x9f\x19\xb1\x47\xc5\xee\x35\xd7\x02\x76\x8a\x01\xc3\xe9\x6d\x43\x72\xde\xb2\x57\xc4\xb9\x33\xaf\xad\xfc\x74\x96\xdf\xec\x1a\xed\xf7\xae\x8c\xab\x16\x06\x9e\xe6\x3c\x2a\xb8\xa5\x2c\x66\x6c\x2e\xe9\xed\x19\x9b\x53\x6b\x74\x29\x3c\xba\x78\xdb\x3f\xba\x84\x55\xf1\x55\x80\xb0\xb7\xa3\x08\xee\xf3\x6d\x9c\x10\x98\xbd\x8f\x21\xe5\x14\x6d\xe2\x34\xe5\xf9\xe5\x00\xdc\x9d\x46\x87\xc3\xf1\xe6\x23\x52\xb2\x37\x24\xa7\xb7\x9b\x82\x45\x32\xe3\xa6\x60\x88\xcc\x8a\xb6\xbc\x98\x32\xe5\x48\xb4\x2f\xaf\xa8\x20\x89\xc8\xa2\x11\xd9\x88\x32\x1a\x91\x64\x1d\x31\x02\x6a\xed\xa0\xe4\x54\x46\xa1\xa8\xeb\x12\x64\x60\x2e\x59\xa5\x4c\xb4\x77\xfc\x51\xe1\xe6\xa0\x32\xe7\x29\x5f\x5d\x5f\x51\x40\x34\x04\xb7\x1a\xd5\x54\xfd\xe9\xd5\x10\x8d\xb0\x13\x65\x88\xc9\x96\x72\x1d\x3f\xe3\x83\xf1\x3c\x52\xbb\xfd\x41\x0e\x53\x62\x44\x72\x25\xc2\xf5\x81\xe5\x34\xe6\xe4\x2f\xbe\xc7\x29\x5d\xaf\x3c\x6c\xc7\xf4\x1d\x0f\xb7\x58\x79\x0d\xb0\x19\xb6\xdc\xfb\x22\x20\xa8\x3f\x5c\xc7\x1b\x3a\x9b\x93\x84\x87\x5b\x92\x13\x58\xf7\x5b\x52\xf5\x3c\x2f\x37\xec\x63\xc5\x8a\x3c\xce\x7e\x54\xc5\xa7\x41\xf0\x1a\xca\xc6\x64\xdb\x5d\x51\xed\x00\x83\x6b\x00\x08\xfd\x4e\x5f\x88\x3b\x52\x91\xdc\xe1\x26\x84\x76\x4a\x77\xd8\x0a\x8a\xb3\x5f\x7b\x0a\xb4\x71\xc4\x4b\xa7\x0a\xc5\x04\x18\x6f\xeb\x78\x63\x85\x57\xd5\x17\x6c\x42\x23\x22\xfb\x57\x4f\x86\xa1\x3c\x3c\xe7\xa9\xd2\x1f\xfd\x7d\x5f\x3f\xab\xd2\xf8\x34\xb4\x43\x0e\xbd\x09\x05\x12\x17\x06\xfe\x50\xe9\x6d\x83\xa3\xb0\x9d\x52\x4b\xbf\x7a\x01\xfe\x25\xa4\x0c\xc0\x24\xec\x94\xd3\xce\xa3\x82\xbc\x5c\xb7\x8d\x22\x18\x4a\xc3\x1b\x77\xcd\x01\x55\x2e\xd9\x98\x49\x78\x74\xb1\x48\xd6\x83\x2a\x5e\x5c\x2c\xf4\x42\xce\x9c\x40\x15\xae\xeb\x6c\xf8\xfb\x96\x15\x37\xca\x26\x86\x28\x82\xa0\x13\x10\xa2\xa1\xca\x8f\xf4\x0c\x33\x75\xd8\x42\x28\x52\x09\xc0\xe3\xd9\x60\x15\x27\x1f\x90\x3d\xc3\xfc\x04\x9a\x02\x05\xcb\x53\xe3\xd5\xc7\x92\xb4\x12\x67\x31\xac\xfe\x5c\x61\xbb\x03\xde\x49\xb0\x3b\xce\x24\x77\x38\x24\xe6\x1e\x55\x5a\x92\xad\xb9\x01\x53\x1d\xa4\xcd\xae\xa9\x15\x0e\x0b\x4f\xe3\xa4\xc3\xdb\x13\xd2\x1c\x5d\x92\x92\xe3\xa8\x22\x09\x88\x3a\xee\x71\xa1\x48\x96\xb4\x37\x96\x07\x94\xc4\x68\x5f\xe2\xdb\x4b\xa7\xd2\x9d\x14\x2c\xae\xd8\x33\xfd\xf9\xa2\x88\x2f\x95\xee\xb1\xc5\x0c\x2b\xe5\x9a\x32\x81\xf1\x51\x2e\x72\x56\x07\x8a\x38\x4c\xc0\x76\x63\x58\x61\xb2\xa1\xe9\x34\x55\xc7\xd1\xc1\x2a\xb2\x77\xdd\x70\xe9\xb5\xd1\x37\xe1\xdd\x3a\xdf\xb1\x8f\xc0\x99\x09\x33\x7d\x9e\x5d\x91\x55\x7f\x83\xf1\x81\x08\x82\xf8\xfc\x6c\x7a\xd9\x9a\xe0\x9e\x7c\xed\x7a\x8e\x71\xd4\x8e\xd5\x2e\xb0\xf5\x32\x61\x5a\xc7\x6c\x23\xca\xfe\x86\x40\x5c\x22\xb2\x3e\xdd\xe8\x30\xba\x01\x9a\x35\x35\xce\x34\x97\xe1\xaa\x4f\x37\xfd\x31\x41\x17\x15\xa2\x34\x9d\x8d\xe6\x0a\xe6\x2b\xd5\xa9\x5d\x43\x9b\x37\xf4\x6a\x00\x45\x7e\x7d\x35\x09\xd7\xf4\x2e\x40\x37\x22\xbc\xc1\x04\xd9\x99\x88\x3b\x22\xbd\x85\x00\x37\x72\x9b\x82\x95\x46\xe7\x10\x61\xb2\xde\x15\xfc\xad\x94\xb1\x9b\x0b\x65\x4d\x10\x9a\x72\xe3\x5c\xd9\x5c\x14\x1a\xe6\xba\x46\x17\xb9\x85\xff\x13\x80\xb9\x2c\x53\xf4\x1f\xff\xed\xff\x44\x11\xfa\x8f\xff\xf6\x7f\xed\xf1\x71\xb9\x03\xb1\x85\x05\xaa\x30\xb0\x8c\x01\x16\x59\x61\xab\xb7\xf6\x3b\xdb\x0c\x21\xeb\x67\x0a\xfe\x77\x67\x80\x01\x67\xff\x54\x18\xab\xa9\x00\x3a\xcf\x8d\x82\x59\x67\xb1\x56\xbd\xe5\xa0\xef\x2c\x0e\x37\x51\xd5\x05\xf3\x9e\xa2\xed\xa1\xea\xd2\x00\x1f\x04\xe1\x12\x84\x46\xf5\x94\x33\x29\xe0\xc6\xa2\xae\xf3\xba\xe6\x75\xbd\xac\xeb\xad\x9a\x69\x0b\x5a\x48\xc4\x00\xbc\xb0\x45\x9f\xe6\xca\x7a\xe0\xa2\x4f\xb5\x84\xfb\x7b\x5f\xc0\xfc\x72\x4e\x16\x64\xeb\x54\xeb\x83\x20\x7c\xaf\xdd\x90\x96\xaa\x1b\x76\x37\x88\xf7\xb8\xd9\x1f\x71\x89\x3d\xb2\xba\xe4\x6d\x21\x10\x74\x88\x48\x5b\x3a\x70\x70\xac\xae\xe0\xfb\xb4\xf8\xfa\x78\x0a\x34\xfe\xff\xf8\xef\xc8\x6a\x41\x03\x4b\xc8\x95\xb7\xe5\x2d\x46\xbe\xa5\xef\xec\x09\x5c\xe3\x3b\xca\xa7\xbc\x8f\x0e\x93\xf5\x00\x98\x7b\x83\x85\x28\x52\x56\xa0\x08\x75\x43\x2c\x5a\xca\x68\x01\xfd\x9f\xd0\xac\x6f\xef\xa2\x27\x0e\x76\x25\x00\x63\x79\xad\x4b\x43\xbf\xac\x68\x35\x5b\xc2\x7d\xed\x6a\x58\x89\x47\x59\x10\xac\xb4\x38\x56\xa6\xd0\x41\x63\xa2\x68\x62\x79\x55\x1d\x78\x0f\x20\xc0\x32\xe6\x64\xea\x41\x86\x21\x81\x22\xf9\xc8\x16\x13\x25\xfd\x44\x72\x6a\x12\x9a\x64\x19\x95\x6f\xfe\xcd\x67\xb6\x43\x94\xf7\xf2\x20\xf0\xaf\x91\x0e\xb8\xba\x94\xdf\x37\xf5\x08\xc7\x44\xa6\x87\xc5\xd7\xf6\x6f\x96\x33\x96\x96\x4f\xd5\xa0\xdb\xd5\x16\x04\x21\xaf\xeb\x90\xd3\xfd\xf3\xa1\x33\xf9\x8d\x31\x0a\x35\xf7\x30\x98\xb6\xdd\x59\xbb\xea\xb6\x07\x91\x62\xc8\x53\xac\x0d\x5f\xee\x42\x53\xb2\xea\x97\xdc\xb8\xa3\x0d\xf9\x5d\x33\x95\x63\xb7\x68\x5c\x1f\x25\xbc\xed\xd2\xb5\x7d\x23\xc8\xb5\xd3\x64\x22\xe8\xa8\x2d\xaf\x00\x23\x46\x32\x92\x90\x25\x59\x91\xd4\xda\x75\x22\x1b\x3a\x22\x6b\x1a\xbe\xa6\x63\x82\x10\x26\x57\x6a\x9b\xe3\xcb\xf0\x8a\xd2\x0d\xbe\xdd\xd2\x8c\x26\x74\x49\x4b\x8a\x10\x51\x0e\x54\xc9\x15\x1d\x1f\xb9\x5b\xb0\x1b\x72\x29\x09\xd3\x05\x1d\x4d\x16\xbe\x38\xc4\x42\x81\xf8\x9e\xe6\xb3\xc5\x9c\x5c\xd3\xf7\x46\x10\xd1\x97\x25\xbc\xd6\xb2\x84\xef\xf5\xed\xe0\x26\x08\xae\xbd\xf1\x9e\x5e\xaa\x81\xbe\xc6\xd1\x7b\x3d\x3d\x37\xf6\xf2\xf0\x3d\x5c\x1e\xca\xe7\xa3\x4d\x5d\x5f\xfb\x57\x90\xef\xe1\xca\x73\xe3\x95\x8b\xa7\xfa\x2a\xe2\x3d\xdc\x3f\xbe\x87\x2b\xc7\x4d\x10\x5c\x3d\x52\x01\xe1\x15\xc4\x90\x8c\xca\x5e\xb8\x6e\x11\x35\x5b\xc5\xe0\xf5\x02\x21\x45\xa9\x38\x63\x61\x39\x2d\xfb\x68\xa2\x0e\xf9\x10\x2c\x63\x9d\x84\x7b\xab\x71\x61\x62\xca\x72\x09\x64\x72\x23\x02\x6f\x40\xbf\x0a\x82\xf0\xa6\xae\xc3\x1b\x8f\x66\x74\xa9\xc8\x7b\x10\xa7\xbd\x56\xc8\x2e\x08\x7a\x4b\x40\xb3\xd7\xc6\x79\x72\xab\x2f\xc2\xde\x0a\x44\x4c\x8c\x2c\x20\xb9\xd6\x22\x26\x2b\xfa\x1e\x9b\x7e\x7d\xa4\xbb\x42\x6b\x4a\xca\xce\x80\xdb\x58\x89\x05\x6e\x60\x12\xa9\xf1\xbd\x31\xe3\xbb\xe8\xd3\x63\x7c\x33\x5b\xf4\xc7\x73\x05\x6d\xa6\x1a\x76\x33\x5b\xcc\x15\xef\x7e\x55\xd7\x2b\xdb\xfb\xae\x84\x4b\x7f\x86\x64\xa0\x32\x41\x2e\x4d\xa6\x15\x48\x34\x2a\x79\xd1\x11\x86\x09\xc8\x97\x21\xa4\x0a\x8d\x80\x63\x25\xa6\x69\x7f\x0c\xb2\x93\x78\xb0\xb1\x22\x8e\x6d\x01\x48\xe2\x52\x1b\xad\xab\x95\x99\x13\xe1\x8a\xf6\xc6\xb8\x91\x4d\xdb\x3c\xa2\x86\xfa\x31\xd3\xf9\xb9\x63\x12\xa5\xe4\x0a\xeb\xc5\xa0\xf5\xe5\x3e\xd2\x4d\x7f\xed\x09\x32\xf5\x34\x83\xf0\x2d\xfd\xf8\xe8\xf9\x74\x6d\x51\xe1\xf3\xc1\x06\x47\xeb\x83\xca\x1e\xe2\xc2\x8a\xbc\x25\xf1\x34\xee\x6f\xa3\x2d\x49\xc8\xa6\xff\xd6\xa8\xfc\xd2\xab\x69\x16\x21\x44\x96\xa4\x84\xde\xfe\xf8\x88\x3e\xc7\xb7\x6b\x6a\x0a\x93\x45\x91\x0d\x7d\x7e\xa0\xb0\xf2\x86\x7e\x24\x09\x45\xa8\x59\x5b\xc3\x6b\x82\x08\x5a\xcc\x5e\xf7\xfb\x73\x4c\x62\xca\x79\xa8\x3e\x48\xe5\x51\x21\x58\x6d\xf4\x87\xa6\x95\xaf\xe9\x78\xf2\xda\x49\x4e\xbc\x96\xa3\xd9\x82\xb6\x53\xf8\x1c\x13\x5d\xf0\xb8\x53\xb0\xc7\x04\x58\xb6\x77\xb9\x11\x75\x92\xe1\x20\x48\xa1\x65\xc3\x83\x00\x21\xea\xc9\xdf\xca\x29\x2a\xd1\x64\x5d\xb7\xe8\xa6\xbd\x3e\xb2\xbd\xda\x56\xfc\xd3\x77\x01\x87\xc5\xb4\x00\xef\x70\x2d\x39\x4a\x01\x37\x7e\x1c\xdf\x86\xbb\xe6\xdf\x14\xee\xa4\x15\x61\x1e\x17\x0b\x70\xb8\xcf\xd4\x02\x7e\x85\xb6\x13\x54\xea\x58\xe0\x71\x69\x4e\x86\xbe\xb1\x86\x7d\x1a\xa2\xe1\x4d\xc7\xc2\x5d\x19\x01\x09\xbf\x02\x6b\xf1\xf9\x7c\x2a\x03\xa3\xf1\x01\x77\x37\xdd\x5a\x53\x8a\xe3\x06\x2b\x80\x49\x0e\x5a\x2d\x0c\x1c\x18\xe4\x97\xea\x30\xe6\xf5\x46\xdc\x65\x91\x32\x22\xe8\x6c\x0e\x96\xbd\x25\xa1\x22\x9c\xc8\xec\xaf\x79\x98\xcd\x8a\x39\xe1\x61\x81\x49\xee\xae\x09\x94\x56\x4c\xa9\x07\x0d\xb4\xc7\x00\x21\x6a\xae\x6c\xa2\x64\x7e\x4a\x7d\xc7\xb1\x54\x9f\x5b\xfd\xb9\x92\x03\x9a\x61\xb9\xb3\x84\x99\x67\xf3\x7c\x43\x55\x8a\x81\xbe\x06\x75\x3a\x0c\x46\x2b\x2f\x1c\x91\x38\x1c\x91\xcc\x9a\xc2\x20\xc6\x24\x94\x2d\x48\x76\x37\xff\x17\x1b\xd8\x34\x56\xc1\x48\x4f\x39\x73\xb4\xf2\x0b\x1a\x8c\xf1\x81\x08\x97\x64\xa9\xc0\x4f\x31\xd9\x28\x03\xef\x50\xb4\xbe\xa9\xde\xc8\x83\x86\xe1\x30\x58\x88\x74\xe4\x1a\xdb\xd3\x45\x42\xa9\x12\xfc\x1e\x53\x6a\xa1\x10\x61\x42\x12\xc5\x2f\x35\x0b\xbf\x1c\x26\x2b\xdc\x5f\xf5\x5b\xc1\x5b\x19\x48\x52\x05\x75\x28\xa1\x1c\xfb\x50\xe2\xd6\xd0\xec\xcf\x2b\xc7\x89\xdc\x59\x5f\x36\x1b\xc9\xe1\x1c\x61\x65\x65\xdd\x6b\x03\x10\xfb\xb6\x15\x5f\x04\xbc\x2c\xac\xbf\xdc\x85\xc1\x94\xdf\xea\xc0\xfe\x98\x6c\x54\xbb\x6e\xbf\x04\x3a\x39\x1e\xab\x7d\x85\xa7\xf8\x60\xa7\x5f\x0e\x36\x8f\xc6\x3b\x23\x26\x2b\x1c\x8c\xef\x68\xe7\xa7\x16\x48\xca\xad\xd9\x1f\x65\x74\x84\xf9\x46\x0e\x68\x4b\x3e\xba\xa2\x23\x20\xf7\x3b\x92\xdf\x6c\x56\xb5\x74\xba\x48\xd1\x07\x31\x70\xab\xe1\xee\x5f\x9f\xbb\x9a\x37\xae\xe6\x44\x52\x76\x05\xcb\x29\xeb\xd6\xb5\x4f\x53\xc8\x70\xa6\x67\xf9\xfc\xa0\xea\x53\x3e\x4c\x56\xdb\xfc\x83\x3c\x7a\x87\x58\xd6\xcd\x8d\xd4\x01\x6f\x69\x9a\x29\x83\x2f\x60\x14\xac\x7d\xa3\xbf\xd3\xe0\x26\xe5\xbe\xd1\x2f\x5b\xfc\x9d\x96\x90\x3c\x39\xde\x86\xa8\x71\x79\x99\xe7\x2d\x7f\x25\x5d\x2c\x94\x53\xd6\xaf\x26\xc5\x79\xee\xf4\xa9\xb8\x6f\xc2\xa1\x98\xfb\xfd\x36\x70\x8d\xfa\x16\xe4\x3f\xff\xce\x43\x4e\xb4\xc9\x61\xd4\x52\x9b\xd7\x57\x35\xea\x42\xca\xd0\x3b\x1d\x7b\xff\x72\x61\x49\xa2\x3a\xbb\x31\xd6\xa2\x20\xaf\x75\x3a\xb2\x0b\xbc\x95\x8e\xd0\x22\x18\xa6\xd7\xd4\x9c\xf1\xab\xd7\x73\x9c\x61\xa3\x94\x5a\xb9\xb7\x6e\x32\xe6\xa9\x8d\x77\x1c\x70\xc8\x81\x06\xcf\x1b\xfe\x10\x12\x5e\xb1\xe2\xd5\x0e\x60\xae\x08\xd9\xa7\x0c\xfa\x14\x6c\xcb\x16\xbe\xc1\x13\x36\xf7\x25\x11\xc9\xe6\x8f\x8d\xb1\x9c\x38\x9f\x1a\x5b\x9b\x68\xb0\xa3\x00\xd9\x9a\xe2\x7b\xb4\xe8\x5a\xf1\xb0\x03\xd1\xdc\x9f\xd3\x20\xfd\x70\x6e\x45\x92\x2d\x1d\x56\x11\x3e\x60\x60\x70\xd6\xac\x34\x50\xc5\xf3\x60\x0c\x19\x11\x2d\xf1\x95\x01\x8d\x07\xb9\x5d\x1e\x94\x0a\x63\x1f\xc5\x82\x67\x6e\xfa\x40\xc6\x88\xe4\xfe\xb2\x00\x76\x71\x58\x0d\xa8\xc0\x56\xfe\x64\xa4\x90\x28\x1b\x28\x7d\x1d\xd7\x0b\xd5\xf9\xf1\xfd\x9d\xc2\xf5\xf5\xd9\xb8\xae\x7b\xed\x98\xd9\x68\xee\x39\x28\x4d\x39\xb6\xca\x52\x33\xbd\x0e\xcc\x4c\x0e\x4b\xdd\x20\x8b\x33\x66\xe0\x43\x85\x87\x25\x9e\x93\x6e\xa1\xad\xd9\x73\xc7\x72\x68\xeb\xb4\xdc\x31\x58\x15\x6e\x17\x5d\xcd\x1d\x44\xec\x4b\xd6\x8d\xec\x14\xc7\xe6\x21\xed\xb5\xd4\x5d\x04\xfb\x61\xc8\x5b\x68\xc2\x82\x02\x17\xd6\x7c\x77\xc2\x50\x01\x3b\x33\x1f\x7a\xb0\x69\x90\xb4\x8b\x97\x32\x08\x78\x0b\x79\x3d\xba\x3f\x72\xfd\x11\xd3\x76\xe4\xd7\xc7\xf7\xfb\xc7\xf7\x49\x49\xe3\x49\x79\xde\x8e\x9a\x18\x61\x77\x3d\x14\xbc\xb5\xca\x4b\x52\xf6\xe9\xf1\x7d\x8c\x0f\xb8\x9d\x86\x5b\x2b\x19\xb6\x6f\xf6\xf5\xfb\x39\x19\x91\x2d\x26\xdb\xd6\x00\xea\x62\x29\xef\xe0\x9a\x58\x4f\x09\x30\xc4\xf1\x76\xc3\xb3\x2c\xc4\x8d\x3a\x17\xb0\x01\x15\x4d\x43\x5c\x4c\xc7\x38\x62\x6f\xef\x0c\x3d\xa7\xe3\x11\xf6\xe5\xd8\x0e\x52\xa1\x75\x5d\x64\x0b\xe5\xce\xb5\x03\x33\xeb\x16\x32\xb8\x4f\xee\x63\x2d\xba\xa4\x5a\x01\xde\x8f\x14\x8a\x80\x7f\xc2\x6c\x7f\x54\xbe\xe8\x66\x41\x6f\x84\xcd\x64\x8b\x25\xa0\xc0\xd2\x09\xb4\xeb\xb5\x3f\x26\x23\x89\xf2\x81\xe6\x50\x53\x69\x07\x54\x7c\x60\xd7\xb3\xac\xdb\x5b\x41\xa4\x9a\x13\x46\xf3\xa6\xb2\xf1\x46\x6d\xfa\x7a\xc5\xb3\x3d\x8d\x7b\x34\x1e\x79\xd0\xb4\x3a\xfe\xf3\x58\xfa\x3f\x6f\x8e\x5b\xc3\x60\x1e\x52\x14\x03\x06\xb1\x1c\x6c\x14\xbc\x0a\x19\x89\x49\x81\x5b\x32\xed\x1a\x8f\xc5\xfb\xf0\x98\x30\xb6\xda\xd6\x9c\x8e\xc8\x15\xa7\x6f\x87\xcf\x44\xb2\xc7\x2a\xb6\x9d\x3d\xbe\x6f\xe5\x2b\xee\xae\x94\xd9\xf5\xe1\x95\x3b\x8c\x69\xb1\x21\x10\x9b\xa5\x23\x2c\xf7\x1f\x65\x9a\x5a\x52\x4c\x06\x87\xcd\x34\xb5\x8b\xd4\x15\x31\x9e\xe3\xb9\x9e\xdb\xa0\xff\x6e\x76\x5d\x2b\x29\x4c\xbd\x4f\x30\xe3\xa1\xed\x61\xf9\xa6\xae\x54\x40\xc6\xe2\xfc\x5b\x96\xb3\x02\x2e\x12\xe8\xd8\x6a\x82\x83\x4c\x00\x2d\xf4\xa1\x2b\x65\x61\x41\x46\x5a\xbe\xb9\x64\x19\x7d\x05\xac\x38\x85\xae\x94\xcd\x04\x98\x57\x4f\x79\xa8\xb6\x84\xca\x5a\xa2\x5b\x73\xbd\x0a\x45\x6a\xfc\x7f\x57\x9e\x45\x43\xb6\xa1\xb9\x31\xe3\x55\xb1\x3c\x95\xa0\xed\xf3\xb3\x1f\x6a\xc9\x51\xb8\xd6\x92\xe7\xdc\x52\x92\x09\x64\xa5\xc5\xc3\x95\xb5\x0f\x4e\x2a\x21\x1f\xec\x63\x15\xb1\x06\x93\x5f\x95\x3d\x3f\xa2\xa0\x8d\x05\x6e\x0e\x7c\xef\xe4\xf4\xbd\x08\xfd\xfd\x9e\xdc\x26\x22\x2f\xab\x62\x9b\x54\xa2\x88\xae\x38\xcc\xd8\x9d\x09\x5b\x4c\x55\xe3\xd4\x2c\x1a\xb8\x61\x20\xd5\x40\x9e\x53\x23\x2f\xda\x8f\xb4\xaf\x7d\x8b\xf9\x89\xdb\x23\xee\xa4\x09\x47\x5d\x1f\x64\x72\x35\x14\x7d\xe3\x7f\xcc\x91\xd2\x2d\x7c\xde\x02\x8b\x14\xd8\xd0\x28\xfb\xc8\x93\x16\x65\xd0\xca\x88\x1b\x62\x0c\x34\xef\xb1\x32\xfa\x51\xf7\xfd\x67\x1a\x69\x4e\xcc\x60\x05\x9e\x4d\xab\xa8\x52\x56\xef\x59\x5d\xfb\xd3\xc0\xf8\xc4\xc2\x0d\x29\x4d\x9d\x3f\x55\xe1\x6e\xb5\x29\xf3\xbb\x75\x84\x89\x35\x32\xd8\xaa\x76\x30\x3e\x78\x59\xf8\x93\xa3\xd2\x0e\xa7\x0b\x72\xad\x01\x2f\x5a\xfe\xae\xb1\x9a\x37\xbb\xb3\xcc\x5a\x8f\x31\x70\x21\x22\x8f\xe4\x51\x6f\xd4\x80\xf5\x31\x6f\x96\x55\x18\x37\x98\xf8\x8e\xbf\xa2\x5d\x0c\xf1\x44\x83\xc5\x08\x08\x46\x1a\x71\xe2\x82\x16\x53\xf3\x29\x67\x11\xc9\x55\xf7\xef\x2b\xc6\xd0\x88\xcf\x75\x4b\x4c\x3e\x86\x89\x2b\xb1\xd5\xf1\xc5\x34\x8f\x72\xd5\xf1\xc5\x9d\x1d\xaf\xdd\xfb\xdd\x65\x51\x56\x47\x7f\x07\x26\x88\x3c\xfb\xa0\x55\x10\x28\xae\x87\x2d\x41\x25\x89\x3a\xa6\xb8\x5e\x58\x28\x0d\x32\x34\x23\xc1\x5c\xe5\xaf\xb6\xeb\x45\xc7\xa5\xa3\x93\xea\xf1\xd2\xa9\x2a\xfe\xc2\xcb\x6d\x9c\xed\xba\x3a\x36\xbe\x06\xa0\xb0\x2e\x22\x71\xb5\x62\x02\xfa\x63\x0d\x91\x7d\xf1\x54\x6c\x3f\x61\x24\x14\x08\x7d\xeb\xa4\xf9\xae\x64\x90\xa0\x21\x46\x17\xec\x93\xc9\xfc\xb9\xda\x10\x6d\xbe\x64\x5f\xc3\xdd\xe8\x42\xeb\x95\x4d\x9c\x3b\xcd\xfe\xb2\xcc\x68\xbd\x84\xd8\x37\xc4\x0f\xa6\xdb\x95\xf3\x78\x58\x87\xe0\x71\x2e\x32\x3e\xe6\x55\x90\xfa\x88\x10\xcb\x21\x51\x5d\xa3\x4a\xa8\x17\xb3\x7a\xc1\x47\xba\x73\x19\x4e\xda\xae\xef\xee\xec\x3d\x96\x0d\x0b\x39\x8f\xcb\x86\xec\x38\x7a\xfc\x54\xa6\x3d\x5e\x21\x01\x3f\xe8\x3e\x68\x21\x08\xb5\x30\x7e\x67\xed\x25\xb1\x3b\x07\xa6\x4a\x2e\xbc\xae\x47\x38\x62\xd8\xaa\xd3\x60\xe2\x3b\x10\xfc\x92\xa2\xfd\xd5\x56\xd7\x0c\xab\x52\x3a\xde\x83\xf7\x15\xf4\x64\xb7\xa0\x2a\x08\x7c\x5c\xb0\xa7\xa0\xb2\x5b\x12\xbe\xfd\x45\xe7\xf8\x97\x57\xce\xbe\x9c\x4f\x6e\x3e\x9f\xf7\xd2\xd8\x1c\xb6\x43\x05\xeb\xa3\xea\x76\xcc\x0e\x18\xc6\xcc\x86\x41\xa3\xb7\x7b\xf4\xe6\x99\xef\x40\x93\xcf\xf2\x39\xd5\xbe\x1b\x6d\x0f\xc8\xdd\x4c\xcd\x3e\xd7\xa9\xcc\xb8\xd8\xc4\x86\x4c\x02\xc3\x9d\x9e\x5c\xaa\x65\x7f\x91\xd6\xdc\x57\x4e\x11\x1c\x66\x7e\xc6\x42\xae\xbb\xb5\xc1\x24\x4e\x3f\x3d\x3a\xde\xf1\xdb\x75\x86\x39\x55\x00\xb1\xec\x39\x9f\xbc\x6b\x2e\xb4\x6b\xcf\x49\xee\x71\x79\x61\x74\x2f\xfd\xc9\xb6\xf7\xe0\x69\x36\x36\x6f\x44\x14\x29\x50\xec\x71\x47\x6a\x76\x82\x42\xf6\x99\x76\xda\x0a\xef\x72\xbd\xe2\x83\x8a\x56\xd3\xca\x30\x5c\x38\x8e\x78\xf3\x47\x37\xe5\x4b\xb6\x77\x9d\xef\xfa\x9d\xfd\x4f\x83\x19\x4c\x42\xc0\xc5\xb3\xf1\xa4\x73\x17\x74\x98\x80\x52\x0a\xb7\x12\xac\x0d\xe9\x7a\xbe\xfc\xc4\xb9\x63\x36\x27\x9e\x1d\x55\x6f\xc8\x3d\x83\x4c\xf9\x8c\xcf\xa9\x56\x4b\xda\x75\x6c\x9b\xcb\x22\xeb\xda\x7a\xef\xdc\xad\x7e\xef\xaa\xe9\x80\x60\xaa\xb7\x4e\x86\xda\x60\x78\xbe\x65\x4c\xd4\x4c\xcc\x0f\xf2\x99\x98\x53\x45\xe1\xc4\xa6\x13\x2b\x11\xc5\xd0\x89\x77\x90\x34\x60\xe5\x57\x53\x35\x45\x63\x2e\x32\x82\x00\xf0\x3e\x58\x5b\xfa\x0c\xa8\x6d\xdb\x5b\x82\x72\xa2\xc4\xda\x2d\x91\xea\x79\xf0\xac\x94\xe0\xfa\xb3\x22\x2c\xb5\x6d\x02\x22\xc0\xc6\x70\x11\xfe\x5c\x84\x25\x48\x40\xa8\x93\x19\x18\x5c\x26\x82\x66\x04\xc5\xa0\xdf\x84\x28\xd5\xeb\x31\xa1\xcc\x1b\x19\x59\x22\xa8\xba\x27\xca\x6d\x6a\x62\x50\xc7\xf9\xe8\x20\x9f\xc5\x16\xbb\x2c\xa7\x59\xb4\x25\xcb\xe9\x36\xca\x34\x5b\xdf\x8f\xdd\x12\x67\xd2\x44\x06\xbd\x91\xeb\x94\x75\x90\x48\xa3\xa6\x68\x4e\x2a\x2d\xcb\x4c\xdd\x4a\x9e\x88\x47\x72\xa4\x06\x03\x6c\x28\x4d\xb0\x67\x70\x50\x4e\xff\xa2\x97\x7e\xa9\x4f\x03\xc9\x3a\x08\x7e\xd7\x6c\xc7\x64\x2d\x97\xff\x36\x4f\x45\x6b\x4e\xe0\xdb\x17\xba\x10\xe5\x1d\x4e\x11\x92\x77\x27\x02\xf7\x70\xa6\xa4\xfd\xf8\xac\x5b\x24\x98\x3d\x50\xa5\x7e\x36\x83\xf2\x3e\xa7\x32\x94\xac\x7a\x0e\x3b\x0a\x28\x05\x79\x2b\xdf\x3f\xb7\x31\x40\x11\x7b\xd2\xb5\x37\x75\x95\xba\x21\xfa\xd4\xd8\xe5\xad\x76\xdc\x2c\xe8\x54\xa4\xcb\xf6\xf7\x8c\xf7\x01\x42\x51\x21\x12\x75\xa8\x09\x52\xd7\xfd\xbe\xe2\xb7\x9a\x1c\x2d\x83\x7f\x3a\x8f\x0a\x6b\xe7\x32\xbe\x8b\x6e\x61\x80\x2a\x35\x04\x45\x23\xe9\x33\x67\x1f\x70\xc7\x43\x43\xe7\x0c\xec\x87\x0d\xd7\xf1\x47\x77\xc2\x06\x63\xfd\xc5\x87\xa7\xf2\xdc\xbd\x53\x4a\xf7\x34\xae\x99\x1d\x12\x36\x17\x1a\xca\x31\x21\xdd\xd0\x7d\x64\x23\x33\x8c\x56\x03\x89\xa4\x4a\x5f\x6f\xe8\x4e\xd8\x5b\x96\xed\x0b\x7e\x0d\x08\x82\x7a\x07\x7a\x13\x7b\x69\xeb\x6d\x08\x2f\x3b\x8d\x61\xed\x01\xdf\xcd\x43\xa9\x45\xe4\x9d\x16\xab\x6d\x66\x4f\x27\xeb\x31\x91\xc3\x15\xbd\xec\xf4\xaf\x0c\x54\xab\x60\x4f\xa4\x0a\xc6\x0d\x10\x8d\x3b\x05\xb7\x29\xe7\x2f\x1f\xc4\x83\x0a\x6a\xa5\x2f\x95\x6f\xec\xdc\xaa\x5b\x62\xeb\x9a\x99\x54\xba\x6e\x95\x48\x4f\xbf\x9d\x64\x8d\xa4\x46\xc0\x22\x7a\x16\x97\x7b\x37\x09\xdd\x97\xdf\xda\x43\x23\x52\x0a\xd4\x92\xa0\x9d\x9a\xf7\x08\x81\xb0\x0d\x22\xdd\xa6\xe5\x54\x19\x7e\x84\xc4\x4e\x9f\x33\x42\x4e\x89\x54\xc5\x39\xad\xcf\xdd\xe2\x4d\xcc\x75\x11\x6f\xb4\x3e\xa8\x24\xf8\x66\xf9\x1c\x28\xbf\x57\x22\x2c\xb4\x9e\x27\x84\x39\xf7\x60\xcc\xa9\x7b\x6a\x46\x1a\xe8\x8e\x1e\xd8\xfb\x16\x85\x8e\xd6\xe2\x8a\xfd\xff\xaf\x0f\x88\xbe\x6b\xe4\xcb\xb0\xc7\x5d\x9b\x9d\xe1\x0a\xb0\x5d\xa8\xae\x4a\x2d\xfb\x55\x80\xa1\x9a\x2a\x59\xa9\x5e\x53\xb2\x3f\xa2\xed\x50\x2d\xa6\x42\xeb\xe8\x0a\xa7\xa3\x0b\x7d\xe9\x7b\x0f\x34\x7a\xbd\xa1\x7e\x0b\x82\xb8\x67\xe5\xd4\xa6\x46\x8d\xca\x64\x88\xb1\x52\xdd\x6c\x5a\x5d\xaf\xe7\x9e\x32\x82\xf0\x89\x8e\xdf\xe5\x61\x68\x59\x0c\x76\x7d\xf8\x57\xa5\x15\x0e\xbe\x11\xc1\x6e\xae\x91\x8f\x08\x02\xde\x52\xe7\x17\x56\xb0\x2f\xce\xf8\x65\xfe\x57\xad\x9a\x2e\xd7\xca\xb7\xea\x06\xc2\xa8\x93\xb7\x0c\xc6\x1a\xed\x1b\xad\xca\x0e\x8a\x02\x46\xad\x7d\x36\xc7\xae\xbf\xcd\x8d\xc6\xe3\x6a\xaa\xfd\xc3\x73\x1c\x15\x86\x13\x6e\xcf\x0c\x85\x3b\x33\x78\xba\xef\x2e\x33\xc6\x64\x44\xb8\xb9\x0b\xa1\x15\x11\xca\x3f\x83\x13\x9c\xc8\xa9\xb2\xdd\xc0\x1c\xc3\xf5\x00\xac\xd9\x1a\x6e\x7d\xff\x2f\x39\xc8\x23\xe6\x60\xb0\x41\x8b\x77\x9a\x4b\x0e\x30\x08\xbb\x47\x23\xdd\x1b\x19\xc2\x1b\xcb\x21\x52\x87\x05\xb7\x46\xf4\x58\xb5\x2f\x6e\x8d\x2d\x5c\x62\xec\x1b\xef\x32\x2d\xb5\x85\xef\xfc\x13\xfc\x22\x52\x90\x02\xec\x9f\xdc\x6c\xe4\xc9\x1f\xf6\x44\xa4\x8e\xdb\x4f\xb4\x0c\x62\xb4\xcf\x94\xda\xad\x6f\xb8\x3a\xaa\xac\xc4\x61\x05\xd6\x14\xde\xdd\x6c\xd8\xd4\x0c\x59\x54\x61\xe2\x4c\x1f\x46\xc0\x38\x72\xdf\xa4\x6d\xf6\x2d\xea\x8d\x89\xb2\x67\xae\x12\xaa\x77\xb2\x63\x01\x5b\xc5\xee\x04\x37\x07\x9d\x46\x33\xea\x35\x5b\xce\x59\x27\x5a\x89\x1b\x62\x0d\xcb\x3e\xde\xe7\xd4\x0a\x4e\x36\x86\x6f\x14\xfa\x25\xe1\xfd\xe6\x3f\x3d\xf3\x21\xed\xf3\x8f\x77\x99\x21\xcf\x3a\x13\x3b\x7b\x95\x1c\x1f\xd7\x82\x9b\x4c\x29\x32\xef\x58\x7e\x79\x64\x62\x2a\x3d\xc7\x8d\x95\x17\x75\xe7\x22\x13\x69\x33\x37\xde\x61\xc8\xb6\x6d\x67\x5e\xb4\xfa\xc4\x67\x47\x1e\x78\xd4\x3e\x6b\x59\x21\xb2\xec\x6d\xed\x39\x41\x6b\xb9\xf8\x76\x9e\xed\xfd\xcb\x97\x9b\xc6\x2a\xcd\x81\x41\x9b\xc6\x52\x82\x61\x5b\x90\x36\xe5\x54\x83\xa0\x1c\x50\x3e\x82\x60\x85\xcf\x28\xdd\x6a\x29\x4c\x10\x07\x93\x89\x8c\x7f\x42\x1b\x41\xad\x3d\x6d\x15\xf4\x88\x56\xc3\x64\x55\xd7\x45\x10\xf4\x0a\x67\x21\xab\xae\xf5\xc9\x7e\xdb\xed\x52\x9b\xa4\xe9\xf7\x79\x83\x49\x0e\x64\xca\xe3\x2c\xeb\xf4\xa9\xb9\x1a\x9c\xcd\x77\xfb\x6a\x1f\x4a\xfb\x23\x53\x46\xdb\x4e\x34\x27\x65\xf0\xf0\x28\x81\x85\x10\x03\x1e\x26\xac\x21\x1b\x51\xbe\x28\x84\x3a\xbe\xec\xce\xe4\x16\xb7\x9c\xe4\x74\xdf\x79\xda\x6c\x39\x77\x37\xc2\x4a\x1d\x70\x9f\x83\xde\x07\xab\x86\xe2\x91\x35\xd7\x50\x51\x46\x7a\xa3\x03\x36\xa0\x82\xf4\xfb\x45\xe3\xb0\x0d\xf0\xe1\x2b\xac\x7d\x67\x7d\x94\x00\x77\x99\x9f\x6a\xe1\x75\xd6\x5a\xb2\x3a\x30\xee\x02\xb4\x2d\x21\x68\x08\x08\x43\xae\xce\x47\xce\x9a\xcd\x95\xf3\x3e\xf4\xa5\xad\xf3\xfa\x45\xcf\xec\xd6\x59\xa7\xaf\xa5\xc5\x4d\x63\x65\x73\xaa\x86\x24\x62\xb3\x8f\xa2\xd4\xd7\x7c\x5f\x7a\x47\xd2\xbd\x23\xdb\xc9\xa0\x1b\xe1\x78\xee\xfb\x6f\xfb\xde\x89\x0d\xa9\xfc\x9b\xbf\xaa\x7d\x13\x28\x23\x59\xe6\x58\x0d\x95\x77\xed\x06\xe7\x85\x16\xe5\xfc\x8c\x6d\xaa\x15\xdd\x21\xa8\x21\x18\x4a\x32\x24\x75\x68\xee\x07\x9c\x01\x75\xe8\x1c\xe5\xd5\xe1\x99\x48\xda\x1b\x56\x5d\x87\xa0\x3a\x78\xe0\x51\xdf\xaa\xad\xfb\xef\x72\x0e\x8c\x98\xa8\x99\xfa\xb0\x8c\x15\x33\x90\x79\x22\xcc\x3d\xb0\xaf\x01\x1e\x53\xc5\xb9\xba\x52\x95\xaf\x06\x99\x75\xc7\x84\x14\xa0\x00\x26\x52\x73\x1c\xf1\xfb\x7f\x7f\xb7\x33\xbd\x0b\xc9\x76\x82\x02\x9f\x39\x34\xf8\x9d\x84\x89\x15\x30\xfa\xc0\x52\x49\xb1\xb8\x2f\x5f\xab\x31\x15\x49\x94\x13\x57\x60\xe4\x97\x2e\xf1\x8c\xcd\x03\x49\x01\x68\xe3\x1d\x23\xea\x8d\xee\xcc\x39\xbf\xd3\x12\x40\xcb\x28\x66\x61\x50\x6e\x4e\x2b\x23\x5f\x64\x4d\x49\x3a\x7b\xea\xda\x94\x24\x98\xf5\x70\x61\x95\xe2\xd9\x6c\x18\xb8\xe3\x30\xbc\x1e\xf0\x03\x22\x48\x0c\xba\x8e\x70\x07\xe1\xde\x80\xae\xc0\x07\xb9\xb5\xfe\x05\x9d\x50\x62\xe2\x84\xec\x9a\xa6\x09\x73\x72\xad\x8d\xfc\x00\xa2\xdd\xe6\xb2\x0f\xba\x33\x48\xe2\x00\xff\x7e\xfd\x2d\xdc\xeb\x28\xbf\x4d\xc4\xeb\x6d\xbc\x47\x8a\xa7\xeb\x80\xa4\x6a\xb9\x89\xf9\xc0\xd2\x59\x35\x07\x1b\x5e\xd4\x93\x80\x94\x39\x8c\x09\x5a\x02\x02\x95\x16\x30\x05\x2c\x79\x9e\x87\x16\x70\x2d\x7d\xae\x5c\xda\x9a\x19\xd2\x9e\x22\x7a\x13\x98\x29\xe3\xb3\x3b\x9e\x57\x0a\xa3\xb2\xc3\x53\xac\x6e\x19\xd9\xfe\x8b\xf6\xb6\xa7\x03\xba\xef\x70\xac\xa6\x79\xfb\x44\xbc\x93\x50\x05\x03\x87\x1c\xae\xbd\x7f\x30\x2b\xb7\x8d\x94\x17\xed\x0b\xbb\x1f\x45\x7a\xe7\x1d\x97\x5c\x4c\x8a\x27\x94\xf2\xca\xbf\xaf\x6a\x27\x4b\xd6\x0d\x71\xbc\xc9\x3b\xd9\x08\x7a\x21\x4e\xb5\x62\x6b\xd8\x5a\x9d\xd1\xb7\xc2\xde\xe2\x59\x4c\xff\x29\xb1\xcc\xb7\x6c\xa3\xf4\x1e\x9b\x06\x13\x5f\x24\x60\xc8\x8c\x1b\xa1\x56\xa8\xec\x11\xe5\xa9\x8f\x53\x24\x3f\x0e\x15\xd5\x7a\xa8\x08\xf3\x43\xb9\x09\x1c\xda\xa6\x1e\x7a\x62\x04\xc8\xf3\x20\x6f\xe5\xb9\x2e\xf9\x21\xcf\x0f\xfd\x1a\x70\xab\xba\x8e\xa1\xb9\x4b\x8e\x83\xe0\x46\x84\x37\x9c\x5c\x72\x7c\x3e\x0a\x82\xf0\xad\x4b\x3d\xbb\xe4\xf3\x7d\x3e\x16\x77\x9b\xcf\xb4\x70\x27\x74\x03\xb8\x9a\x2b\x2e\x41\x6b\xab\xc4\x4d\x13\xfa\x10\xc8\x32\x31\xf6\x1c\x13\x59\x3d\xaa\xd0\x19\xd3\x08\x41\xbb\x4d\x19\x9e\xeb\xae\x37\xc5\x0e\xce\x77\x16\x9b\xb5\x6e\x62\xa2\x66\x31\x9c\xa0\x01\x9e\x1e\xe5\x86\x06\x14\x41\x50\x7a\x28\xed\x40\xd2\x6a\x5b\x89\x49\x55\x4a\xb2\xc5\x84\xe9\xd7\x9c\x6c\xc1\xc9\x01\x36\xa6\xf1\x5a\xc6\x5d\xdf\x73\xcf\x1b\x40\xb2\xde\x75\x42\xf3\x6e\xc5\xcb\x43\xa3\xbe\x76\xc8\xcb\xc3\x38\x2b\x58\x9c\xde\xc8\x11\xda\x96\x6c\x88\xf0\x01\xe0\x15\x5a\x81\x26\x07\x65\xe4\x69\xc8\x30\x79\x2c\x1f\xfb\x1d\xef\xd5\xf5\xab\x76\xe4\x1a\xac\x00\xfa\xbb\xcb\xf7\x55\xcb\x08\xd8\x35\xf7\xdc\x82\x0f\xa8\x66\xad\xe3\xf3\x51\x5d\x57\x92\xe0\x07\x12\x61\x0f\xe4\xac\x60\x12\xe2\x5c\x1c\xca\xfa\x0f\x51\x3f\xac\xfa\x26\x73\x1f\x81\x7b\xff\x15\xb3\x8d\x1b\x7a\x33\xb0\xa0\x6c\xd2\x53\x5e\x42\xca\x49\x8b\xee\x6c\x1d\x50\x3e\x27\x6a\x55\x9d\x0b\x7c\x5b\x50\xae\x11\x5e\x35\xa0\xc2\x1a\x85\xd6\xf2\xb5\xd5\xdc\xf3\xb0\xd1\x51\xc7\x53\xd7\x1e\x6d\xd3\xac\x9f\x71\x21\xc3\xac\xc1\x7e\x20\xc6\x0e\x38\xb5\x2e\x87\x42\x41\x85\x67\xf7\x2c\x59\x81\xa5\x16\x4b\xfc\x7b\xd1\x95\x8a\xd4\xf4\xbe\xc0\xc4\xd0\xf5\x16\xd2\x8f\x3b\x90\x76\x01\x6c\x99\xfc\x71\x0e\x3e\x94\x92\x4e\xbb\xb0\xb7\x2d\x73\x1f\xd5\x80\x79\x82\xb9\x3e\xd1\xcf\x26\xf9\x24\xa7\x46\x18\x0f\xe7\x4e\x12\xd4\x73\x9a\xc1\x3d\x5b\x8f\xd4\x0a\xe4\xed\x35\x5c\xee\xe4\xf5\x48\xa1\x5c\xb4\x59\x97\x67\x39\x35\x32\x7d\x93\x7c\x52\xd1\x9c\x78\xf5\xfa\xd6\x3d\x72\x37\x03\xf8\xbc\x47\x2b\x30\x3f\x58\xf4\x69\x2b\xbc\x35\x2b\xcc\xf0\xf7\x2b\x2d\x0c\x61\x41\x7f\xcc\xdb\x66\xaf\x21\xfa\x80\x45\xa9\xe8\x08\x01\xee\x88\x15\xb6\xe4\xfb\x77\xe6\xa4\xeb\x4c\x98\x8e\x8c\xf2\x03\x67\xbe\x1c\xe6\xa4\x12\xff\xf7\xa0\x74\x96\xcb\x95\x20\x63\x4f\x1b\xe1\xc6\xad\x3b\x83\x8e\x4b\xc5\xdc\x9c\x6a\x75\x8c\x27\x80\x05\x75\xc7\x5a\x6c\xb0\x1a\xd0\xd8\x56\xd0\xf7\xe6\xc1\x87\x8e\x9e\xf4\x88\x14\xf2\x7c\x03\x22\x28\xd8\x8c\x94\x3d\xfb\xed\xad\x9c\xd3\xc2\x56\xae\xee\xcc\x28\x33\xd5\x3a\x15\x07\xeb\x49\x55\x50\x73\x8a\x9d\x88\x89\xa0\x61\x41\x05\xf6\x87\x59\x55\x26\xee\xee\x6f\x79\x84\xf7\xfa\x1b\x8e\xf0\x94\x16\xae\xca\xd8\x54\x69\xb9\x0d\xb6\xb9\xef\xb8\x6f\x0b\x1e\xf4\xba\xda\xf2\x28\x86\x80\x57\x2a\x5f\x49\x6c\x56\x8f\x3c\x3a\xd8\x52\x9e\x3a\x7d\x10\x20\x5c\x8c\xf7\x5b\x4d\xc7\xf8\x9f\xea\xb8\x32\x3e\x1a\x39\x2f\xcf\x3f\x8a\xf4\x1d\x5f\x33\xe7\xd8\xfd\x2d\xcb\x20\xc0\x4b\x63\xee\x3e\xdc\x55\x88\x73\xd1\xec\xdd\x83\xb4\xd2\xb8\xab\x11\xa2\x8f\x3e\xed\x5b\x9b\xd6\x7d\x01\x65\x75\xed\x59\x6d\xfe\xb1\xb5\x0e\xd4\xd5\xed\xda\xf8\x7e\x81\xcb\xdb\x9f\x8b\xb0\xd2\x77\xb7\xcf\x9d\x5b\x1a\xe5\x16\xc6\xb2\xb5\x9e\x71\x60\xbc\x7a\x2e\x6b\x9c\x37\x9a\xfe\x18\x93\x1d\x9a\xf2\x33\x19\x14\x99\xe9\xa1\x9a\x9f\xed\x74\x9d\x30\x27\xd1\xcd\x97\x61\x6f\x2d\xc9\x2d\x7d\x69\x66\x64\x65\x87\x1b\xb1\x09\x7d\xab\x00\x6f\xf6\x18\x8d\xd2\xd4\xe6\x01\x6f\xdf\xc7\x51\x75\x5e\x17\x24\xa6\x7d\xb9\xc1\x3d\x8b\x2b\xd0\x7d\x0b\xb9\x19\x20\x9a\xd7\x35\xf7\x47\x83\x56\x43\x75\x81\x1d\x04\xee\x2d\x44\x7d\xe4\x62\x8c\x0b\xf6\x91\xf2\xef\xb5\x06\xb1\x76\x37\x27\x1e\xc5\x83\x96\x06\xa5\x86\x0d\x98\x87\xcf\x58\x16\xdf\xd4\x35\xfa\x66\x6f\x71\x60\x1e\x46\xdc\x61\x75\x78\x1a\xfe\x6c\x6e\x85\x30\x59\x0b\xf3\x8a\xa3\xd6\xad\x65\x10\xf4\x5c\x9c\xee\xc9\xa9\x0b\x69\x27\x7e\x34\x06\xd7\x86\x70\x59\xd9\x8a\x18\x1c\x9b\xab\xcb\xa9\xb9\x88\x82\x51\x68\xd5\xab\x6d\x59\x86\x9c\x78\xbd\xe9\x34\x29\xd6\x22\x14\xfa\x92\xb1\xc4\x07\xbb\x6e\x88\x40\x17\xd5\x85\x95\x32\x6c\x0a\x0e\xa2\x60\x96\x46\x36\xb3\xda\x00\xf5\xe4\xf6\x24\xce\xb7\xb2\x0a\xae\xa0\x01\xf4\xba\x0d\x82\xad\xbd\x71\xfd\x4d\x76\x56\xc9\x32\xa2\x53\x10\x41\x6f\x75\x81\xd1\x4c\x17\x36\x27\x6e\x79\x45\xbc\x7d\xfb\xa8\x5b\xad\xf6\xf1\x09\x6f\x75\x1b\x77\x58\x61\x82\x75\x54\xb9\xe2\xcb\x2a\xc4\x3a\xe3\x6c\xe4\xee\x7e\xdb\x09\x1a\xbf\x64\x50\x8d\xf0\x96\x78\xbf\xcf\xdb\x2b\x9c\xb4\x66\x16\xe5\x2d\x54\x13\xbb\x8e\xe7\x3e\x92\x21\xad\x09\xcd\x3b\xb8\xc5\x4c\x3b\x52\xd6\xb5\xb2\x2d\xa4\x27\xa8\xf2\xd0\xe6\x51\x8f\xbf\xb5\xf0\xc9\x5a\x80\xef\x86\x20\x28\x74\xcb\xe4\x1b\xfb\x7d\x1b\x67\x65\xc8\xc0\x51\xa3\xf1\x44\x66\x0b\x78\xb6\xb3\x52\xbb\xde\x51\xc0\x42\x82\xa6\x7c\xec\xad\x89\x91\x00\x29\x30\xf1\x24\xb2\x14\xeb\x46\xd1\xac\x24\xf7\x9c\xaf\x15\xf2\x54\xeb\xb1\x3c\x83\x20\xd4\x26\x25\xba\xb5\xd1\xdb\x06\xe3\x99\x98\xd3\x56\x7a\x49\xa5\x09\xdf\x5f\xdb\x2b\x43\x0a\xf5\xd8\x7e\xf2\x87\xdc\xe5\x69\x4e\xf3\x77\x77\xcc\x95\x4f\x2b\x79\xc4\xf0\xad\xe7\x62\xac\x6e\x17\xb4\xc7\xb1\xc2\x79\x1c\xab\xa6\x86\x91\x32\xad\x40\x6b\x3a\xf2\xac\xd8\xbe\xe4\x7b\xd4\x1b\x76\x84\xe1\xec\x2e\x2b\xec\x4d\xa2\x30\x58\x55\x1b\x90\x2c\xa6\x6f\x58\xcb\xcd\x2d\xdb\x3c\x15\x9b\x1b\xa5\x23\x20\x70\x24\xb0\xbb\x5b\x54\x7b\xb5\x12\xba\x02\x0d\x29\x5d\x86\x5d\x4f\x65\xd3\x75\xc7\x1a\xfb\x7e\x58\x95\xe9\x28\x92\xd0\x78\xb6\xd5\x87\x32\x95\x1f\x76\xa8\x44\xe3\x04\x11\x25\xc3\x4a\xa8\xcd\x49\x29\xb0\x36\x98\x38\xa2\x71\x29\x4f\x1d\x09\x0e\x33\xba\x34\xe6\x8b\xff\xa1\x06\x37\xbc\x48\xfb\xf8\xab\x23\xac\xce\xb2\x15\x51\x82\xbe\x61\x36\x1b\xcf\x31\x7e\x34\x18\x07\x41\xb8\x16\x61\x89\x67\xcb\x39\x4d\x66\xcb\x39\x51\x6a\x8c\x87\xf2\x5d\x9e\xef\xac\x63\x1d\xdb\xcb\x3f\x78\xf3\xb6\xd0\xf4\xda\x54\xfd\xf5\x69\x1e\x55\xe7\xe6\xd6\x40\x33\x8c\x41\x57\x3d\x59\x51\xff\x7c\xf8\x82\xdf\x65\xd8\xf7\x13\x5e\xc2\x94\xba\x88\x1d\xab\x5b\x31\x4c\xc4\x86\x03\xab\x2f\x54\x89\xa8\xb0\x63\x15\x62\xac\xa3\x69\x6f\xe4\x06\x40\xdd\x7f\x88\x8e\x90\x57\xd9\xef\xe3\x1f\xb8\x2d\x7a\x56\x1a\xa9\x48\x0d\x23\xe9\x44\x82\xf8\x93\x36\x64\x0d\x13\x41\x16\x6f\x8a\x36\x88\x79\xd7\xfb\x88\x8d\xd3\x5e\x48\x8a\xf3\xad\xe7\xf9\x4e\xbd\xd3\x94\x85\x5e\x68\x3f\x27\x5b\x63\x9f\x00\x93\xad\xdc\x00\x20\x81\x21\x20\x72\x08\x93\x91\x56\xdd\xbc\x3a\xa7\x36\x1e\xdf\xc6\xb4\x37\x36\x8c\xb1\xb8\xae\x43\xeb\xd3\x69\xa4\xfc\xbb\x73\x39\x2e\x1e\xfd\xf0\xaf\xf6\xa9\xc9\xa3\x5a\x72\x6a\xe9\x16\x38\x3f\xfa\x8e\xb2\xc2\x7c\x50\xe0\xc1\xf8\xe0\x85\xd9\x84\xb5\xe3\x16\xf2\xc2\x89\x61\xe8\xa0\x26\x17\xe1\x95\xb6\x94\xf4\x1d\xa7\x6f\x87\xec\xfd\xa6\x60\x6a\xfb\x5f\xc6\xdb\xac\xa2\x1d\xf5\xd8\x56\xe4\xb4\x1b\x10\xca\x5d\x5b\x4d\x52\xd0\x12\xa0\xbd\x71\x43\x9e\xa8\x72\xcb\x4a\x6c\xde\x14\x62\x13\x5f\xaa\x0d\xa4\x5d\x70\x27\x76\xba\x13\x02\x45\x27\x71\x9e\xb0\xec\xc9\x76\xb1\xc8\xe0\xbe\xd8\x71\x67\x7e\xf1\xed\x38\x18\x3e\x78\xaa\xa0\x7a\xa3\x60\x64\xe9\x74\x37\x28\x1a\x51\xda\x02\x19\x24\x01\xff\xea\x40\x6e\xc1\xf9\x9d\xac\x85\x3c\x01\x21\x7c\xcf\xa1\x01\x6f\xb9\x3d\xaa\xe2\xe2\x92\xc1\x75\x4c\x59\x24\xda\x0a\x90\xe7\xa8\xa0\x75\x22\xb8\x5e\xf1\x64\xb5\x7b\x22\x18\x07\x6c\xb8\xd8\x56\x95\xc8\xa7\x15\x1d\x47\xc7\xfe\xe7\x49\x74\xcf\x7e\xc2\xe1\xe1\x18\x63\x72\x05\xe4\x5d\x55\x64\x7f\x66\x37\x41\x30\x36\xe7\x8a\x13\x79\x8c\x90\x75\xfd\x2a\x1b\xd4\xea\x74\x4f\x68\x39\x4e\x53\xa0\xf8\x7e\xe0\x65\x25\xb7\x73\xbc\x1b\x04\x67\xfd\x9e\xe7\xa7\xd5\x38\x57\x87\x54\xb8\xf5\x15\x22\x91\xa3\x3e\x58\xf7\xf6\x54\xee\xd8\xf0\xbd\xba\x9e\x06\xd7\xe0\xde\x97\xdc\xe9\x26\x61\x3e\xab\xe6\x75\x0d\x7f\xde\xf5\x00\xb0\x62\xbf\x95\x7b\x86\xeb\xed\x3f\xef\xd8\x33\xb2\x45\xc9\x4e\xb0\x1f\xb3\xca\xf2\x2b\x8a\x29\x38\x11\xd7\x24\xd1\x68\x6a\x0c\x4b\xe1\xe8\x5b\x1e\xe5\x75\xfd\x2d\x87\x4e\xfa\x0a\x3a\x69\xb9\xdc\xdf\x4b\x8a\xcd\xd9\xed\xa8\x3d\xa1\x7b\xfa\x4a\xf9\xf2\x32\x7d\xe5\x7d\x75\xfa\xea\xd0\x6d\x95\xba\x99\x3d\x85\x15\x26\xdc\x37\x94\x04\x4e\x6b\x40\x1c\x97\x16\xf8\xd6\x6a\x3a\x72\x32\xb6\x6c\x77\xf2\x93\x6c\x4c\xc9\x2f\xf3\x38\xdb\xeb\xfc\xcd\x94\xaf\xdc\x17\x9a\x7b\x56\x8f\x13\xf3\xb8\x28\xe2\x1b\x6f\xdf\x85\x2e\x53\x9b\xae\xe5\x99\x92\x63\xbc\xcf\xa5\x4e\x31\xe3\x73\xcd\x67\x55\xa6\xbc\x70\x43\xfe\xc6\xb5\xc5\x04\x33\x8e\x7f\xe7\xfb\xc0\x19\xb7\xc1\x51\x63\x4c\xf8\x97\x42\x73\xf0\xaf\x6a\x9a\xd3\x7f\x55\xc3\x54\x9e\x5e\x58\xfa\x34\xce\xb2\x45\x9c\x7c\x28\xa3\xbf\xf1\x69\x4e\xff\xc6\xa3\x50\x3e\xe5\x91\xb9\x64\x95\x24\x4d\xc5\xb6\x0a\xbf\xe7\x64\xe4\xe9\xdb\x2b\xd9\xe3\xc2\xf7\x65\xa3\x59\x5b\x71\x58\xcc\xc4\x1c\xb7\xad\xa8\xec\xe3\x36\x33\xbf\xf9\xbc\x85\xd3\xbf\xe7\xf6\x92\xfc\x6f\xfc\xc0\x76\xcb\xdd\xee\x03\xd9\xac\x9a\xfb\xb6\xd8\x99\x68\x4b\xb4\xec\xa8\x0a\xaa\xb5\x7f\x0b\xe6\xea\x2b\xd2\xc6\xd0\x3b\x02\x97\x5d\x84\x28\xd1\x6a\x83\x09\x90\xdb\x85\x24\x95\x41\x2b\x10\x3c\x42\xfd\xc2\xc3\x0a\xa8\xe7\x44\xa4\x6c\x0d\x66\x76\x5f\x82\x67\x75\xcf\x4a\xb2\xf0\xb1\xdb\xfe\x85\x39\x4c\x40\x71\xe5\x71\x52\xf1\x2b\x5e\xdd\x28\xaf\x78\x1e\x53\x56\x8b\x06\xb5\x53\x7d\xe7\xe3\x8e\x4f\x25\x90\xd8\x63\x9f\xba\xa0\x76\x1d\x5c\x80\x98\x3c\x96\x07\x02\x18\x51\xf8\x72\xf0\x17\xa2\x75\x92\x55\xb3\x12\x5b\xcc\xe1\x12\xe6\xc2\x6c\x88\x66\x46\x76\xb0\x2b\xbe\xfd\x95\x5b\x09\x26\xdc\x90\x56\xd2\x0e\x8e\xc1\xb7\x5f\xf9\x69\x01\x19\x71\x41\x4f\x46\x44\x08\xfa\x76\xf8\x26\x2e\x4b\x7a\x5b\x89\xb7\xda\x25\x41\xf7\x52\xc3\x33\x7b\x0c\x69\x51\xd3\x90\x58\xd0\x5b\x75\xe5\x1d\xc9\x3d\xb8\x14\xf4\xd6\xa8\xf0\x7d\xb3\x16\xdb\x92\xa1\x86\x6c\xbd\xc0\xbe\x44\x63\xc8\xdb\xd4\x32\x61\x66\x08\x4f\x95\xe9\x8f\x4c\xf8\xeb\xaf\xe3\x31\x08\xdf\x82\xe0\x92\x59\x51\x3a\xa3\x53\x82\xf5\x56\x5b\x45\x98\xb6\x4a\x9d\xc8\xd6\x25\x62\x9b\x57\x4f\x45\xb6\x5d\x77\xb7\x27\xe5\x6d\xce\xee\x8a\x72\x04\xd5\xc9\x84\xc5\x85\x24\xaa\x67\xff\xb8\x28\x2f\xb6\xa3\x51\x3c\x9a\x03\x49\x0d\x91\xc6\xde\x8f\x5b\xcc\x60\x6c\x3b\xa6\xbc\xae\x47\xc6\xb1\x48\x49\x99\x92\x18\x7c\xbd\x0c\xd1\x45\x85\xb4\xf4\x7d\x79\x3e\xaa\xeb\xf2\x91\x73\xd5\x1c\xf7\xc3\x6a\x20\xf0\x41\xdc\xa7\xe5\x40\x90\xb8\x4f\x8b\x41\xfc\x75\x41\x04\x2d\xfb\xe3\xa6\x21\x4b\xd9\x80\x25\xcf\xd3\xbd\xf0\x77\x4f\x3e\xb6\x7a\xd1\xad\x3e\xc7\xe0\xda\x5a\x00\x4f\x85\xb5\x5c\x92\xc4\x54\x0c\x94\x4c\x09\xa5\xce\x8b\x3b\xef\xc7\x1e\x98\x79\xdf\x1e\x3e\x63\x52\x0d\x94\x8f\x3b\xde\x97\x39\x49\x4e\x45\x7f\x4c\xe4\x57\x31\xe0\x5f\x17\xf8\x51\xcb\x11\x35\x59\x09\x3a\x43\xc8\xdb\x5e\x37\xc2\x72\xbc\x56\xc2\x2a\xfd\xb3\x09\x5e\x69\x83\x50\x6b\x11\xae\x04\xee\xc3\x65\x9e\x2e\x68\x25\x66\xcc\xbb\xe2\x00\xd6\x98\xa5\x87\x66\x4e\x43\x69\x0e\x33\xfb\x4a\x74\x69\x3f\x10\xc4\x0f\x7d\x92\xea\x46\xec\xbb\xb6\x6f\x9d\x62\x41\xfc\xb6\x98\x7b\x8e\xb5\x0d\x6b\x75\xe0\x31\x1a\x2f\x77\x0a\x9a\xcd\xbb\x96\x73\xf2\x7e\x1f\x17\xb3\x7c\x4e\x95\xf0\x2e\xc9\xf7\x39\x50\x5c\xc8\xf5\xe0\xdd\xa9\x09\x6f\xf7\xb2\xce\xe9\x16\xbf\xb1\xc4\xd8\x7f\x9c\x16\xb4\xf5\x1d\x32\x1c\x85\x0b\x6f\x0d\x51\x46\x0a\xb8\xc8\x5e\x08\xd0\x7d\xbb\x16\xe0\x12\xc5\x67\x3f\x5e\x8b\x9d\x99\x04\x37\x5a\x70\x44\xbf\x6d\x30\x61\xb8\xb7\x73\x55\x9a\x63\xad\xaa\x58\x28\x99\xc0\x9d\x48\x40\x7a\xb4\xe5\x3b\xdc\x23\x50\x9f\x7b\x28\xfc\x8b\x76\xdd\xb1\x2d\xe5\xee\xeb\x56\xc5\x25\xc6\x4d\xb3\x99\xde\x31\xfc\x5c\xe4\xa0\xc2\x4a\x47\xc4\x0b\x7a\x9e\xa7\x94\x0d\xaf\x24\x61\x6e\xac\x08\x45\x60\x7b\xb1\x5d\x48\x55\xdc\xf8\xf3\x28\x81\x43\x77\x85\x6f\x1b\x2d\x5f\xf3\x51\xd0\xa3\x99\x44\x15\xe9\xf2\x62\x3b\xba\xff\xf0\x54\x3e\xcf\x46\x03\xf9\xb7\xbc\x77\xb1\x1d\x3d\x18\xc1\xc7\x83\xe5\xf2\x62\x7b\x32\xba\x27\x3f\x4e\x46\x67\xf0\x11\xab\x0f\x88\xb9\x07\xc9\xee\xa5\x8b\xfb\x17\xdb\x7b\x0c\x3e\xce\x96\x49\x72\xb1\x8d\x13\xf8\x48\x4f\xe3\xe5\xfc\x88\xbc\x95\x68\x81\x97\x7f\x15\x45\xfa\x74\xe5\xbb\xc6\xb2\xcb\xe2\xe8\xe2\xda\x1a\xda\xaf\x6b\xf6\x08\xfd\x8f\xff\x8a\xe0\x8c\x5e\x89\x5f\x36\x1b\x56\x3c\x8d\x4b\x16\x62\x25\xcb\xf3\x83\xb8\x36\x01\x75\xfd\x51\x58\xfb\xfc\xde\x72\x79\x2d\x3a\x0c\xd8\x5e\x2f\xac\x86\xa5\xd8\x16\x89\x8f\x69\x2e\xae\x91\xe2\x32\xbc\x95\x63\x0c\x5b\xb9\x2e\x2c\x82\x10\xef\x9e\x4a\xb4\xae\x69\xe4\xa4\x03\xb3\x41\x3b\x93\xad\xc2\x41\x20\x09\x14\x27\xbe\x6d\x65\x78\x65\xce\x0f\x82\xbc\xd3\x7d\x7f\xa2\xba\xf8\xe4\x81\x1c\x82\x7b\x0f\x4f\x06\xf0\x77\x06\x23\x31\x86\x91\x58\xa4\xf0\x84\x21\x4a\xc6\xf0\x3c\x86\xe7\x3d\x78\xde\x87\xa7\x1c\xba\x07\x63\x35\x5a\xe3\x58\x3e\xef\x2d\xe0\xe3\x3e\x93\xcf\xd3\x91\x7c\xa6\x0f\x20\x28\x4d\xe0\xc9\xe0\x83\xc1\x38\x33\xc8\xcf\x1e\xc2\x33\x56\x11\xb2\xda\xd3\xb1\xac\xf0\xf4\x04\x0a\x3e\xbd\x27\x0b\x3e\x8d\xa1\x94\xd3\x85\x2c\xf2\x94\x41\x2d\xa7\xcb\x93\x8b\xed\xe8\xe1\x18\x62\x1e\x8e\xcf\xe0\x09\x31\x0f\x8f\x21\xe6\xf8\xbe\xfa\x38\x85\xe7\x99\xfa\x90\x15\x9c\xa9\xe6\x9f\x8d\x64\x93\xce\x4e\x24\x64\x67\xf7\xa0\xdd\x67\xf7\x1e\xc2\x13\x52\xdd\x57\x41\xf7\x65\x63\xcf\x1e\x40\xda\x07\xb2\xe0\xb3\x87\x12\xbe\xb3\x05\xe4\x5b\xc8\xa6\x9e\x25\x2a\x29\xf4\xce\x59\x02\xb9\x53\x59\xed\x19\x83\x6c\x4c\x66\x8b\x47\x63\x78\xca\x90\x18\x2a\x8d\xef\x41\xc8\x3d\x08\xb9\x77\x0a\xcf\x87\xf0\x84\x66\xc4\x00\x46\x7c\x1f\x12\x41\x67\xc6\xa7\xea\x5d\x42\x14\x03\x14\xf1\x43\xc8\x0c\xb0\xc4\x0a\x8a\x18\x46\x27\x86\xd1\x89\x13\x28\x0f\x20\x8a\x01\x96\x18\x60\x59\x00\x2c\x0b\x80\x62\x71\xc2\xe0\x29\xc7\x7a\xa1\xba\x61\x71\xef\x1e\x3c\x65\xb6\xc5\xfd\x07\xf0\x94\xc5\x2d\xa0\x17\x16\xd0\x0b\x0b\xa8\x79\x01\xed\x5f\x24\x23\x78\x42\x7a\x68\x78\x72\x02\x23\x9d\xdc\x1b\xc1\xf3\x81\xfa\x78\x08\xcf\x58\x7d\xc8\xc4\x09\x74\x6e\x02\x55\x24\x50\x78\x02\x85\x27\xd0\xa0\x04\xe6\x5f\x02\x33\x2f\x49\x20\x4d\x02\xe1\x50\x51\x92\x42\xde\x14\xc2\xa1\x6d\x09\xb4\x2d\x85\xf6\xa4\xaa\x25\x29\xb4\x24\x85\xca\x52\x68\x43\x0a\xd5\xa4\x50\x4d\x9a\xc4\xf0\x94\xd5\xa4\xe9\x31\x64\x48\x21\x03\x94\x9a\x02\x8a\x62\x27\x63\x78\xde\x1b\xc0\x9f\xcc\xc1\xee\x9d\xc2\xc7\x3d\x59\x13\x5b\x40\xfc\x42\xc5\x2f\xce\xe0\xb9\x80\xa7\x04\x96\x25\x0f\x21\x02\x60\x5e\x8e\x1f\xc2\x53\x26\x5a\x9e\xdc\x87\xe7\x29\x3c\x21\xe4\x14\x60\x5e\x9e\xca\x62\x97\x0f\x61\x92\x2e\x1f\xde\x83\xe7\x03\x78\x42\x5a\x85\x2c\x97\x67\xea\x03\xe6\xf5\x12\xaa\x5a\xca\x3e\x1a\x8f\x8e\xd3\x81\xfc\x3b\x19\xc1\xf3\x58\x7d\x9c\xc2\xf3\x0c\x9e\x31\x3c\x53\x78\x32\xf9\xbc\xff\x10\x9e\x10\x7b\x9f\x41\x86\x07\x90\x1b\x00\x1a\x8f\x4e\xef\xc9\xa7\x1c\xf0\xf1\xe8\xe1\x7d\x78\x42\x4d\x0f\xa1\x8c\x33\xf9\x3c\xb9\xbf\xbc\xd8\x8e\x4f\xc7\x50\xdd\xe9\x58\x66\x38\x55\x75\x9f\x9e\xc0\xc7\xfd\x63\x78\x9e\xc8\xe7\x29\xbc\x9f\xc2\xfb\xe2\x14\x12\x49\x84\x33\x3e\x85\x06\x9c\x26\x67\x10\x94\x42\x7c\x2a\x23\x1e\x8e\xe4\x8a\x18\x3f\x1c\xc1\x47\x2c\x01\x3d\x3b\x96\xdd\x30\x3e\x3b\x3e\x86\xe7\x29\x3c\x65\x3b\xce\x4e\x20\xe4\x04\x0a\x39\x3b\x59\x5c\x6c\xc7\xf1\xf8\x14\x9e\x32\x3a\x96\x93\x6d\x1c\xdf\x97\xa3\x32\x8e\x25\xa6\x1a\xc7\xd0\xd8\x58\x4e\x8c\x71\xfc\xe0\x3e\x44\x3c\x48\xe4\xf3\xf4\x04\x3e\x4e\xd5\x87\x6c\xe1\x02\x70\xc7\x78\x31\x92\xc0\x2d\xa0\x69\x8b\x93\x07\x10\x04\xfd\x0a\x6b\x6a\xbc\x90\x6b\x7a\xbc\x78\x00\x50\x2f\xa0\xa1\x8b\x87\x23\x78\x8e\xe5\x33\x86\x9e\x59\xc4\xf7\xe1\xf9\x10\x9e\xb2\x51\xc9\x71\x22\x23\x92\x93\x13\x78\x3e\x80\xa7\x84\x3d\x49\xa1\xda\x24\x3d\x86\xe7\x3d\xf8\x60\x23\x78\x1e\xab\x8f\x87\xf0\x94\x1d\x94\x26\x90\x38\x65\x32\x7f\xba\x84\xe9\x90\xca\x4d\xf3\x78\x34\x4a\xe0\x99\xca\x27\x14\x79\x3c\x5a\x8e\x2e\xb6\xc7\x09\x5b\xca\x8f\x64\x39\xbe\xd8\x1e\xa7\x0c\x62\x52\xb5\x03\x1f\xc7\xb0\xe9\x1e\xc3\xc7\xd9\x19\x3c\xe3\x8b\x6d\xfc\xe0\x81\xcc\x12\x3f\x90\x83\x19\x3f\x90\x5d\x14\x3f\x38\x4d\xe5\x53\x96\x18\x3f\x90\x45\xc5\x0f\x25\xba\x8b\x1f\x8e\x1e\xc0\x73\x21\x9f\xc7\xf7\xe1\x09\x21\x12\x61\xc6\x0f\xa1\xba\xf8\x21\x64\x38\x3b\x96\x9d\x19\x9f\x49\x44\x1d\x9f\xc1\x3a\x8b\xcf\xee\x43\x0c\x2c\x88\xf8\x4c\x4e\xc3\xf8\x6c\x71\x02\x4f\x95\x58\x2e\xba\x18\x10\x72\x1c\x03\xa2\x8f\xe3\x63\x26\x9f\x72\xe9\xc6\xb1\x9c\x10\x71\x2c\x97\x5b\x1c\xcb\x3e\x8d\xe3\x7b\x27\xf0\x84\x0c\x72\x4f\x89\xe3\xc5\x31\x64\x5b\xdc\x83\xe7\x29\x3c\x1f\xc2\x13\x0a\x92\x98\x28\x8e\xe5\x4e\x18\x2f\xd8\x7d\x78\x3e\x84\x67\x7a\xb1\x4d\x35\xc1\xb1\x94\xfd\xb5\x5c\x8c\xd9\xc5\x76\xa9\x08\x92\x25\x1b\xc9\x20\x76\xac\x3e\x64\x9b\x97\xcb\x33\x06\xcf\xe5\xfc\xc8\x11\x0d\x4f\x5b\x64\x3a\x5c\xed\xca\x83\x24\x5c\xef\x3e\xa2\xa7\x0f\x1e\x06\xc1\x3b\x4b\x6d\x78\x57\xf7\xa2\x7b\x53\x76\x87\xe1\x73\x65\x6b\xaa\x00\xf7\xbc\xce\x7d\x48\x01\x3a\x41\xa1\x76\xef\x34\x4c\xca\xf2\x1d\xfb\x58\xd1\x1c\xef\x9a\x3c\xaa\x30\xff\x94\x81\x75\xeb\x5d\xa0\xc2\x1e\xbf\x1d\xb7\xb9\x38\x55\xcb\x23\x71\xab\xb8\x0a\x14\x95\x77\xaf\x54\x7e\x6e\xd3\x3e\x46\xda\x46\x56\x65\xef\x11\xaa\x47\xa3\xc9\x60\x50\x59\x06\xa0\x2a\x51\xdf\xfc\xc1\x07\xde\xe3\x68\xfb\x4d\x9b\x4c\x83\x8a\xda\x20\xe1\xe6\x83\xe8\xf6\x27\x18\xbf\x99\xde\xa5\x7f\xb6\x2f\xb1\x13\x41\x02\x93\xf3\xcf\xf3\x34\xcc\xeb\x9a\x29\xf3\x76\x25\xab\x80\xd0\x56\x5e\xbe\x79\x73\x87\x59\x9d\x96\x0f\x5c\xaf\xc7\x4d\x05\x92\xe4\xce\x87\xb2\xed\xef\x84\x1e\x71\x19\x1d\xfa\xae\x63\x0d\x25\xfe\xab\x70\xac\x79\xab\x6d\xee\xac\x04\xf6\x46\xe0\xae\x48\x5c\x31\x09\x29\x92\x13\x31\x4e\x2a\x30\x8b\x6f\x22\x14\xc4\x7e\x54\x85\x49\xae\xb8\x08\xbf\x29\x2e\x42\x5e\xc5\x3c\x2f\x3b\x4c\x09\xbe\x0c\x4f\x7c\x2d\x2c\x60\x12\x54\x3e\x88\xda\x96\xbe\xcc\xeb\x3c\x6c\x9a\x90\xb0\xc2\x07\xa9\x00\x2b\xbe\xe3\x3d\xc5\xac\x44\x59\x61\x52\x51\xca\x9c\xf9\x4c\x25\x4c\xd5\xa9\xc4\x23\xd5\x9f\x89\x96\x8a\xb7\xed\xe6\x38\xa9\xf8\x95\x59\x3b\x13\x50\xf3\x29\x84\xa8\xcc\x7f\x27\x1e\x33\xba\x2f\x7c\xcf\x9c\x7b\xe5\xaf\xf2\x96\xb7\xd2\x7f\xd4\x17\x17\x25\x46\x7d\xa6\x5d\x95\xca\xaf\x8b\x8b\xf2\x1b\x84\x1b\xf0\xc4\x31\x1e\x07\x41\xf8\xac\xe5\x5b\x4c\x0e\xba\x2e\x6a\x3f\xe0\xbb\x03\xde\x9a\x47\xe6\x3c\xf6\x52\x0e\x59\xb1\x56\x5e\x7f\xf6\x71\xa7\x5b\x2e\x80\xe8\x2b\x11\x56\x58\xb9\xcc\xd1\x3e\x82\x9d\x24\x98\xe2\xe4\xe7\x5a\x5b\x34\xf7\x3d\xba\x32\x1f\xed\xd8\xfb\xec\xdc\x6a\x8d\xf2\x69\x3e\x1b\xcf\xfb\x3c\x42\xe0\x53\xfb\x07\x09\x54\x9c\xa6\x5f\x04\xd5\x81\x82\x09\xb0\x63\x81\x15\x57\xd2\xc4\xf5\x69\x58\x58\xed\xd3\xca\x1f\xfc\x17\x3b\xdc\x08\xe6\xc9\x46\xef\x33\x13\x52\xcc\xf2\x79\x10\xf4\x5e\x09\xd0\x72\x32\xae\x64\x81\xd9\x65\x9c\xc8\xee\x3f\xc6\xff\x4b\x68\xc9\x80\xf6\x42\xbe\x64\x95\x1e\xaa\xf2\xc9\xcd\x53\xeb\x9d\xc0\x61\xbb\x2f\x49\x1e\x7a\x1c\x47\x84\xc9\xa7\x75\x2a\x86\x2e\xed\x41\x1e\x04\x2c\xcc\x35\x87\xf3\x3b\x41\xb5\xb6\xef\x13\x41\x7e\x11\xe4\xaf\xa2\xe3\x68\x5d\xf9\x83\x69\x2b\x06\x33\x6a\x7c\x59\x9b\x46\xa3\xb4\x88\x2f\x2f\xe3\x45\xc6\x90\x3c\xa5\xd6\x35\x04\x3c\x2b\xc4\x06\xbe\x9b\xd0\x93\xe1\xfe\x5d\xb4\x24\x47\x9f\x08\xc3\xe8\xf0\x5c\xfc\xfc\xc7\x7f\xfd\x3f\x10\x3e\x00\x54\xed\x79\x8e\xa9\xc8\x5d\xbb\x0f\xfa\x88\xf0\x1c\x63\x32\xea\x51\x1f\xff\xb7\xdc\x66\x07\x41\xf8\x44\xd0\xca\xf7\xf7\x7d\x4e\xc7\x20\xb6\xe5\xa5\x7a\x74\x1c\x04\x3d\xd5\xea\x87\x18\x37\x6a\x82\x3c\x11\xd3\x2e\x70\x91\x17\xf0\x3f\xfe\xbb\x76\x99\x87\xb4\x66\x71\x74\xc8\x73\x30\x9f\xbe\xc8\x44\xf2\x61\x72\xa8\xbd\x87\x8f\x37\x1f\x27\x87\xda\x21\xb9\xf6\xa6\x37\x18\x6f\x3e\x22\xcf\x33\xf0\x5d\xde\x93\x50\x8b\x25\xf5\x17\xd1\x72\xb4\xfe\x8b\x51\xdc\x3e\xfc\x45\x68\x55\x26\xe8\xba\x3b\x7b\xeb\xf1\xff\xf3\x7f\x3f\x46\x58\x4e\x9a\x0f\x02\x5c\x39\x8c\xb1\x9c\x65\x4f\xc4\x16\x6c\x66\x3c\x05\x8f\xe6\x3f\x03\x1f\x47\x39\x74\xae\x6b\xb9\x20\x96\x15\xa5\xc5\xb0\xf0\x7c\xba\xeb\x09\x91\xab\x72\xc6\xe4\xf8\xee\x72\x2c\x84\x34\x57\x45\x0c\x74\x51\xe7\x27\xea\x76\x54\x90\x6f\xe5\xe2\x77\x3a\x18\xf4\xa4\x47\xd1\x45\x7e\x91\x2f\x8c\xf2\xc2\xd1\x45\x7e\x64\x2e\x02\xa6\x3e\x43\xa7\x2d\xcb\x0a\xdc\x45\xcb\x59\xac\xce\x69\x3e\x71\xa2\x7f\x8e\x13\x93\xcb\x0d\x0c\x78\xbe\x1c\x8c\xfb\xb4\x79\xbe\xc2\x8a\xdf\x54\xda\xe5\x14\x33\x92\x77\x7c\x30\xc6\x53\x3e\x18\x47\x1c\x13\xab\x24\xff\x5a\x39\xb3\x92\x05\xf6\x68\x3c\x0d\xf5\xdd\x86\xf0\xcc\xc0\x62\x52\xf5\x69\xdc\x1f\xe3\xc8\xc6\xca\x9d\x8b\xf7\xc7\x9e\x20\xf0\x5e\x0b\x1a\xb6\xfd\xc5\x45\x3e\xad\x65\x2f\x34\xe4\xcf\x82\x5e\xf3\x3c\x15\xd7\x43\xdf\x24\xd2\xb4\xcb\x92\x73\x45\xb4\x58\x7c\x3d\xda\xe6\xf0\xed\x6c\x1a\xbd\x71\xd3\x86\x45\x16\x66\x85\x68\xaf\x73\x56\x18\xb7\x6b\xae\x9c\x36\xfd\xe3\x15\x69\x94\xca\xc3\x5e\x05\x92\x5f\xb0\x2b\x1b\x1a\x15\xf7\x28\xc3\x41\x30\xea\xd1\x6a\x98\x88\xb5\x8c\x7c\x9e\xa7\x6f\x04\xcf\xab\x32\x44\x00\xed\x3b\xf1\x3c\x4f\x11\xdc\xe1\x7c\x25\x28\x12\x79\x22\x36\x37\x88\xe7\xe1\xaf\xc2\xe1\x22\xb9\x03\xfc\x2a\x3a\x4b\x48\x27\x25\x48\x41\x30\x41\x98\x20\xd3\x2a\x47\xe5\xfe\x2a\x86\x2a\x21\x26\x3f\x09\xe7\xe8\xfd\x6f\x82\xfc\x5d\xce\xc9\x0f\xec\x46\xa2\xdc\x92\xde\x9e\x44\xe8\x79\x0e\xb4\xcf\xc3\x08\x3d\x89\x93\x0f\xe5\x26\x4e\x18\x22\x67\x11\x7a\x17\x2f\x10\x19\xbb\x04\xe3\x07\x11\x7a\xbb\xe2\xcb\x0a\x91\xf1\x69\x84\x9e\x56\x45\x86\xc8\xf8\x61\x84\x1e\x67\x32\xe8\x2c\x42\x6f\xe2\x6d\xc9\x10\x39\x1e\x45\xe8\x69\xbc\x29\x7f\x10\xc9\x07\x44\x8e\x4f\x23\xf4\xbc\x4c\x10\x39\x39\x8e\xd0\x5b\x55\xfa\xc9\x89\x4c\x7c\xc9\x7e\xd9\x20\x72\x72\x4f\xbd\x3f\x13\xd7\x39\x22\x27\xf7\x65\x7d\x29\x22\x27\x0f\x22\xf4\x9d\x58\xcb\xc4\xa7\x11\xfa\x81\xc9\x6a\x4f\x1e\x46\x08\xb2\x9c\x45\xe8\x67\xb9\xd4\x10\xb9\x37\x8a\x90\xca\x79\x4f\x96\x53\xf0\xbc\x7a\x9b\x14\xf2\xf3\x7e\x84\x5e\x82\x2e\x11\x22\xf7\x1e\x44\xe8\x99\xb2\xdd\x4e\xee\x9f\x45\x68\x82\xc8\x83\x71\x84\x28\x22\x67\xe3\x08\xfd\x28\x52\x44\xce\x8e\xcd\xcb\x89\x7e\x19\x8f\x1e\x44\xe8\x1b\xf9\x7f\x0a\x49\xc7\xa3\xb3\x08\x0d\x10\x19\x8f\x47\x11\x1a\xca\xff\x71\x84\x8e\x10\x19\xcb\x06\x9a\xd2\xc7\xa7\x27\x2a\xd1\xc3\x07\x50\xcd\xf8\xa1\xce\xfc\xf0\x61\x84\x88\xfc\xd7\x85\x9c\xe9\x42\xce\x74\x21\xb2\xfe\x7f\x22\x72\x2c\xbb\x71\x86\xc8\xb1\xec\xc3\x8b\x0b\xf9\x32\x8e\xd0\x5c\xfe\x1f\x47\xe8\x4f\x88\x3c\x38\x39\x96\xfd\x28\x7b\x41\xbe\x9e\x98\xd6\xcb\x8f\x7b\xa6\x9f\xe4\xc7\x7d\xdb\x45\x0f\x4e\x8e\x4f\x8f\x1d\x88\xf2\xf3\xc4\xf4\xad\xfc\x30\x3d\x2e\xdf\x1f\xb8\x71\x91\x9f\xa7\xfe\xd0\x3c\x38\x39\x19\x1d\xdb\x4e\xf5\x08\x90\xef\xdb\x67\xbe\x8c\x5d\xb1\xec\xeb\xe3\x29\x1b\x56\x22\x52\x5a\xa4\xde\x3d\x73\x7c\x47\x5a\x90\x85\x93\x59\xbc\x7b\xdf\xd8\x5d\x1a\x80\xcc\xbb\x13\x11\xfc\x5e\x84\xd5\x6c\x34\xc7\x91\x77\x7b\x5a\xdc\x9d\x9c\xc5\x21\x88\x6f\xe2\xa8\xa5\x6a\xec\xdd\xbc\xc6\x3e\x49\x76\xad\x64\x9c\x12\x38\x0f\xd0\x17\xb9\x24\x10\xf3\x1e\xd8\x12\xae\xe8\x6b\x1e\xe6\xd8\x38\x4d\x79\x27\x3f\x88\xa0\x7c\xca\x15\x91\xa8\x9a\x53\xc4\x61\x8e\xa3\x0a\x9e\x23\x03\x86\x3c\x54\x12\xe1\x1d\x7a\x79\xab\x52\x05\x82\xf6\x63\x92\x3b\x18\x0a\x1d\xa4\x2b\x53\x66\x51\xea\x7a\x44\xa9\xab\xb2\x6d\xab\x1e\x0c\x6f\xe4\xda\xbb\x85\xbe\xd6\xbc\x78\x7b\x84\x25\x72\x57\x15\x38\xdd\x9e\x6a\x98\xac\xce\xa9\x50\x2f\x1e\xa4\x2a\x9e\xc4\xd3\x51\x24\x3c\x64\x6e\x61\x17\x71\x47\x60\xc6\xc2\x62\x7b\x1d\x64\xcb\x8b\x1e\xcd\x83\xa0\x3a\xf7\xb2\xc6\xba\xd9\x7f\x13\x6d\x29\x85\xe2\x73\xce\x27\xc0\xc8\x34\x58\x71\xa8\x82\x00\x6c\x36\xb8\x5b\x47\x17\x49\x69\xa5\x2c\x3a\x50\x5a\x79\x34\x45\x61\x92\x02\xe4\x5c\xc1\x4a\x40\x6a\x55\x75\xe1\x54\xe7\xef\x81\x51\x88\x20\x08\xff\x26\x80\xaf\x80\xa3\x3d\x11\x39\x26\x05\x3e\x28\x68\xde\xec\xe9\x9b\x32\x6e\x5b\xad\xce\xad\xda\x7e\xbf\x90\x27\x3f\x50\x3c\xd2\x47\xba\x47\xa3\x20\x78\x2a\xb4\x82\x86\xd9\x8f\x2b\x8c\xf7\x51\xdf\xdb\xb8\x7b\x4e\x57\xd3\xdc\x37\x94\x73\x98\xb9\x44\xde\x75\x75\x1c\x2b\x43\x8d\x31\xe5\x33\x31\x27\x25\xd5\x30\xc6\x76\xca\x0e\x8a\x48\xe6\xd1\x8e\xa6\xca\x47\xb1\xd6\x09\x2f\xcf\x63\xe7\xbd\xea\x10\xec\x29\x94\x94\xc6\xda\xaa\x06\xbc\xba\x68\xa8\xa6\xc4\x94\x8a\x69\x19\x15\x8f\x46\x94\x86\x50\x63\x9f\x16\x73\x6c\xab\x92\x39\xb4\x4d\x3d\x80\xdd\x4b\xd3\x92\x37\x2e\x29\x14\xe1\x60\x04\xa0\x65\x6e\x32\x18\xcb\x81\xd1\xdf\x20\x3f\x2b\x03\x7c\x27\x7e\x3b\x7d\x25\x3b\xdf\xfa\xa2\x9b\xf0\xbd\x1d\xcf\x31\x9e\x60\xde\xb7\x96\x94\x0e\xf9\xf9\xa8\xae\xf9\xa3\x16\xd6\x98\x82\x50\x32\x6f\x7c\xf3\x6e\xee\xec\x3d\x9a\xb0\xf3\xf1\x68\xc2\xfa\x7d\xfc\x77\x31\x63\xfd\x7b\x0f\xe7\x14\x5e\xce\x1e\xcc\xa9\x12\xb6\x08\xb5\xbc\x3e\xa3\x0f\xee\x4f\xd8\x39\x3d\x73\xc9\x4d\x12\x68\xd3\x53\xcd\x3c\x73\xe9\xc7\x32\xf9\xf8\xd8\x95\x3e\x1e\x8f\x75\xf1\x80\xf3\xe7\x14\xbd\x40\x7d\xd6\xe0\x50\x21\xa8\x24\xa6\x3b\x46\x34\xd0\xc2\xfc\xaa\xb2\xba\x2e\x17\xad\x5f\x59\x96\xd5\xf5\xab\x57\x5f\x7f\xfd\xf5\x2b\xf8\x91\x57\xe4\xd5\xd8\xfe\x54\xd8\xab\x1f\xee\xfc\x7d\x49\xbc\xae\x68\x71\xe7\x8f\xc8\xea\xa1\x7e\x55\xde\xd7\x5f\x8f\xc7\xf0\x3a\xfe\xe1\x53\xc5\x7f\xa2\x5a\x15\x8f\x48\x45\x51\xe1\xfd\x48\xf1\xea\xd5\x1a\x7e\xc5\xbf\xf3\x5b\xb7\x7e\x3a\x30\xb7\xbf\xaf\xf3\x5c\x26\xfa\xb7\x8a\xfe\x9f\x03\x05\x7e\xd0\x32\xa4\xcd\x75\xc0\x5d\xe9\x9d\x77\xd3\xa3\x53\xf5\xf1\x30\x4e\xe6\x47\x24\xa7\x47\x33\x39\x09\xe6\x47\x84\xd3\xa3\xd9\x0f\x3f\x17\xf3\x23\x22\xe4\xdb\x62\x9c\xcf\x8f\x48\x4c\x8f\x66\xf2\xc5\xed\xff\x65\xcb\xf3\x06\x2c\x56\xe3\xd6\x08\x10\xb2\x36\xf9\x50\x09\x5a\x34\xdd\x4b\x7d\xe5\x5e\xb9\x57\x28\x1e\xc4\xd6\xb3\x71\x66\x5d\x8b\x92\x84\x6e\x8d\x1f\x8f\xa5\x3c\x0b\xad\xe8\x68\xb2\x3a\x4f\x26\xfd\xfe\x0a\x2f\xd5\xb9\xe3\x92\x86\x19\xdd\xfa\xec\xe6\x15\xc6\xe7\xf4\xf8\xde\xe9\xd4\x9e\x72\x32\x1c\x8d\xef\x1d\xdf\x3b\xa7\x59\x10\x64\xe7\x74\x7c\xff\xf8\xde\x14\xfd\x8c\xa2\xf1\xfd\x93\x07\x36\xf0\xf4\xf4\x64\x6a\xd1\x41\x36\x90\x71\x38\x1a\x9f\x9e\xda\x6c\xc7\xc7\xc7\xa3\x29\x2a\x50\xf4\x70\x7c\x76\x6c\x02\x1f\x1e\x8f\x4e\xa6\xe8\x1a\x45\x0f\x8f\x47\xf7\x28\xcd\xa6\x68\x81\x22\xf4\x03\xc2\x07\x2b\xea\x5c\x54\xa6\x14\xfd\x80\x2c\xe4\xb7\x68\x8d\x28\x0d\x2f\xe9\x72\xb6\x9a\xe3\xa9\x7c\xd2\x34\x4a\xe9\x65\xe3\xe7\xd9\x74\xf2\x8c\xbd\x3c\x41\x80\xe4\x31\x6e\xa3\xf2\xa2\x1c\x45\x5c\x75\xe3\x25\x0e\x82\x70\x43\x2f\x09\xc4\x5f\x06\x41\xa8\x52\xfc\x0c\xce\xf2\x45\x11\xae\xe8\x98\xa4\x74\x39\x1b\xcd\x65\xd1\x83\xb1\x2e\xbc\xdf\x2e\x5c\xd6\x95\xea\xff\xe5\x6c\xd5\x1f\xcf\x75\x4d\x63\x24\x89\xd9\x1e\xbd\xac\xeb\xb4\xa7\xa3\xea\x1a\x8d\x51\x0f\xd2\xe7\xf2\xbf\xae\x55\xa5\x29\x26\xb2\x4d\xaa\x56\x37\x6e\x72\xd4\x11\xf1\xea\xc3\xaa\xe8\x57\xc8\x72\xdd\xd1\xd7\x12\x78\x87\x5b\xd7\x74\xd5\x1f\x4f\xd6\xe7\x49\x10\x40\xd4\x72\xb6\x9e\x4f\xfa\xfd\x35\x9e\x98\x14\x57\x74\x15\x04\xa8\xa7\xc0\x1d\x48\x98\x54\xea\xb1\x4e\x3d\x05\xc8\x5f\x21\x72\x43\x57\x93\x9b\xf3\xf5\xa4\xdf\xbf\xc1\xcb\xd9\xcd\x9c\x5e\x1d\xac\xe8\x7a\x30\x6e\x0c\x9c\xa4\xd3\xef\x60\x5c\x00\x00\x3d\x40\x3f\x20\xf0\xdf\x08\xa5\x5e\xea\x1e\xf9\x61\xa7\xef\xf1\x4e\x93\x41\x9d\x1f\xd2\xa8\x06\x43\xc3\xbc\x46\xd9\xc8\xf5\x1c\xab\x76\x5d\x81\x2b\x62\xa8\x30\x5c\x4d\x55\x9b\x60\x5a\x91\xf7\x3a\x74\x7d\x9e\x4c\x65\x06\x35\xd9\xa0\x1f\xe8\xa2\xae\xdf\x4f\x25\x44\xe8\xe7\x4f\xb4\x54\x96\x7d\x4d\x9e\x83\x14\xb4\x07\x28\x06\xfd\x0b\x1f\x4a\x10\x75\xa1\x2b\x48\xd5\xef\xaf\x64\xaa\x20\xf0\x93\x40\xe3\x26\xcf\x9d\xf5\xe6\x32\x1c\x91\x8f\x64\xe5\xeb\xaa\xbd\xa5\x2b\xf2\x9a\x3e\x37\x26\x82\x5a\x65\xa1\x1f\x10\x4c\xa2\xb9\x2a\x48\xc6\xdd\xd0\xb7\x93\x9b\xf3\x15\x40\x13\x9b\xaa\x6e\x24\x34\x6f\xcf\x6f\x82\xe0\xb9\x11\x4e\x7e\x4d\x46\x44\xd5\x38\x26\x6f\xc9\x8d\x26\xcb\x1f\xd3\x1b\x5d\xc3\x8d\x2c\x25\x08\xfc\x22\xa0\x27\x26\x7b\x4a\x38\x26\x8f\x65\x09\xe4\xad\xf6\xe6\xdd\xef\xdf\x1c\xbc\x95\xb9\xef\xa8\x4d\xb6\x4f\x63\xb3\x31\xa5\xcf\x2d\xfd\x1b\x04\xe1\x35\xdd\x5a\x1d\x9d\x8b\xb2\xaf\xe4\x08\x21\x05\xe0\xc3\x6b\xc7\x4f\x26\xcf\x87\xdb\x5c\x69\xc6\x99\x9e\x1b\x11\x2f\x1e\x63\x4c\xc6\xe0\xa5\xf2\x39\xde\x57\xfc\x45\xd9\x57\x9a\x3f\xa1\x4a\x52\x89\x41\xa7\xf8\xd6\xa8\x24\x03\x3f\x32\x91\xa5\x1f\xb7\x61\xef\xc2\x33\x26\x10\x5b\x09\xf3\x8f\x31\x71\xe9\x7b\x6d\xc8\x5a\xb5\xb9\x54\x24\x91\x55\x91\xe7\x4d\xe3\xd8\x66\x6f\x87\x57\xac\x28\xb9\xc8\x29\xba\x3f\x1c\xdf\x1f\x1e\x23\xf2\xb6\xc1\x2d\xb5\x5a\x24\x40\xd2\xcd\x33\x30\xff\x71\x23\x8a\xaa\x0c\x82\x9d\x98\xb5\x48\xb7\x19\x9b\xb2\xb0\x60\xbf\x6f\x79\xc1\x42\x34\x1c\x1e\x0d\x87\x47\x19\x5f\x1c\x39\xb9\x62\x84\x71\xb4\x87\x57\x92\xb2\x25\x1c\x85\xd4\xff\x30\x5e\xa7\x53\xf5\x1a\xce\xf6\x17\x33\x27\x0c\x47\x2c\x74\x2c\x68\xdc\xb4\xdc\x69\xa0\x6d\xc9\x0e\xcb\xaa\xe0\x49\x85\xdc\x2e\x59\xd9\xcb\xa3\x5d\xe9\xba\x0a\xef\x5a\xa1\xf8\x25\x57\x50\xa4\x87\xe0\xf6\xf3\x10\xf5\x2b\x65\x7a\xa2\xe4\xeb\x4d\xc6\x64\x9b\x99\xaf\xad\x58\x78\xe5\xeb\x5d\xf4\x28\x9c\x46\xf8\x48\xd3\x00\xc8\xba\x05\x6f\x59\xf8\x51\x37\x37\xd3\x90\x0d\x39\x88\x5d\x3f\x8d\x4b\x06\x06\x9e\x10\x47\x98\x30\xca\xb4\xc4\x17\x8e\x98\x23\x5f\x89\x77\xe7\x13\x82\x58\x60\x35\x45\x28\x42\xff\x40\x18\xee\x7d\xe0\xfe\x07\x23\x52\x78\xf0\xe5\x21\x93\xc4\x78\xc8\x86\x39\xfb\x08\x9a\x2c\x72\xb2\xe0\x20\xa8\xc0\x3a\x74\x2b\x90\x68\x7b\xe0\x97\xec\x23\x2d\x40\x4d\xe2\x92\x7d\xc4\x86\x8c\xf8\xc0\xda\x8a\x3e\xbb\x9a\x8a\x72\xf7\xd8\xf1\x75\xe3\x6e\xe2\xb4\x5d\xc5\xf0\xe8\x62\x78\x74\x49\x5a\x16\x64\xb4\x45\xc2\x96\x60\x68\xd1\xef\x63\x4f\x53\x31\x08\xe0\xd4\xb8\x5b\x88\x77\x66\x03\xa1\xbb\x0f\x2c\xd7\x30\xa7\x71\x15\x53\xef\xfe\xec\x6e\x3f\xec\xda\xea\xcb\x46\x19\x7b\xb6\xf6\x40\x4d\x80\xd1\xa2\x35\x35\x8d\xa8\x17\x67\x34\xa0\x5d\x7e\x6d\x63\xb8\x50\xfe\xbb\x5b\x36\xe5\x08\x57\x10\x36\xca\xca\x8c\x48\xe2\xcc\x58\x9c\x91\xef\x43\x96\xa7\x41\x50\x68\x3c\xe3\x05\x62\xc3\x6b\xf0\xc2\xc0\x5b\xaf\x32\x0f\x68\xd5\x8e\x54\xac\x49\xf5\x56\x4e\x61\xa5\xd6\xaf\xfd\xbb\x1e\xb8\x12\xe4\x4c\x56\xc0\x80\x23\x77\x97\x01\x77\x4a\x03\xcf\xd3\x49\x9c\x83\xc3\xeb\x4e\x98\xbe\xc9\x1b\x26\xdb\xa2\x00\x26\x2c\x60\x45\x68\x39\x2d\x94\x9b\xeb\x7e\xa9\x6f\xe9\x88\x68\x9c\xba\x26\x9b\xe5\xca\xb1\xee\x9c\x64\x74\x34\xc9\xce\x0d\xb1\x39\xc9\xcc\x9d\x53\x42\xb7\xb3\x6c\x4e\x96\x34\xec\x25\x30\x96\xc3\x52\x64\x75\x5d\xc8\xbf\x10\x63\xd7\x4f\x89\x9e\xa9\x72\x02\x2a\x47\xad\x3a\xbd\x9c\xdd\x53\x5d\x0f\xf5\xc2\x22\xfd\x2e\x27\xd7\x34\x0c\x21\x45\xf2\xa1\xae\xcd\x9b\xa7\xb6\xa4\x73\x63\xd2\x29\x06\x16\x8c\x2d\x47\x6c\x24\x21\x01\x79\xed\x8b\x3f\x31\x54\x56\x13\x01\x4a\xed\x98\xe8\xcc\x72\x1c\x82\x20\x0e\x2b\x92\xfb\x41\x24\x31\x73\x59\x07\xca\x4e\xcc\x2b\x59\xbc\x7a\xd3\x6a\x55\xfa\x4b\x2b\xd6\xf5\x2b\xfd\xfd\x4b\xce\x2b\x9b\x35\x65\xdd\xac\xa0\x56\xbf\x34\xca\x10\xc7\x60\xf0\x45\x4f\x5e\x4d\x9a\xc8\x11\x58\xd1\xe3\xc9\xea\xdc\x24\x9b\xac\xfa\x7d\xa0\x17\x65\x41\x66\xf6\x2b\x95\x5a\x50\x9f\x95\x51\x04\x60\x8e\x34\xec\x40\x3a\x35\xde\xbd\xd4\x22\x4e\x3e\xfc\xb2\x09\x97\x6e\x3b\x1c\x84\xcb\x19\x50\xb8\x63\x13\x12\x8d\xa0\x6f\x54\x01\xa3\xb9\xd9\xed\x75\x48\x10\xe8\x17\x70\xa1\x30\x75\xe9\x4c\x9d\x8e\x35\x04\x43\x1d\x2a\x53\x7a\x4d\xdb\x09\xb4\xc2\xd8\x8c\x3a\x89\x73\xa5\x03\xdb\x63\x75\x6d\xb6\xb9\x9e\x45\x61\x75\xdd\xab\xf6\x84\x77\x6e\xaf\x0a\xef\xfc\x90\xdf\x2d\x65\x9b\x63\x85\x3a\xf7\x8a\x73\xf7\x84\x12\x5b\xaf\xda\x86\xa7\x8b\x7e\xbf\x69\x4b\x8d\xe3\x3d\xd9\x83\xa0\x18\x0c\x3c\x14\xe5\x33\xff\x60\x76\x71\x62\xec\x55\x29\xbe\xdd\x46\xd2\x02\x65\xe5\x1b\xc9\xd9\x02\x62\x33\xc1\x80\x0e\xca\xc9\x36\x08\x7a\xe5\x64\x4b\xb7\xd0\xa3\x38\xe4\xc3\x72\xc3\x92\xa9\xd0\x2f\x64\x0b\x7f\x38\xe2\xca\x34\x94\xa4\x93\x44\xca\x30\xe0\x8b\xad\x22\x0e\x33\x5a\x4e\x95\xe5\x28\x9d\x4a\x6e\x3a\xda\xe2\x9a\x72\x38\x2e\x4b\x20\x09\x24\x83\xd5\x12\x31\xe3\x25\x3f\xae\x58\x98\xe1\x03\x1f\x5e\x09\x90\xc6\xb8\x6d\x58\xe9\x2d\xd4\x91\x11\x59\x5e\xa4\xe1\x53\xe5\x25\x04\x96\xfe\x6e\x1e\x65\x9a\xd0\xe1\xcb\xc4\x7c\xda\xc2\x58\x9e\x46\x5c\xe3\xe6\x10\x5e\x30\xd1\x08\xd0\x84\x83\x77\x0f\xae\x8c\x20\x3f\xf7\x12\x82\xd6\x9f\x41\xd6\x51\x2c\xa9\x62\x98\xb8\xf1\x2c\x76\xba\x14\x51\xec\xcd\xcf\x32\xdc\x6b\xab\xba\x65\x9d\x4c\x42\x07\x6a\x90\x0e\x93\xab\x95\x8d\x3b\xa8\xdb\x8b\x0a\xfd\x46\x5a\x2f\x15\xea\xf6\xdc\x20\x86\xba\xd6\x89\x24\x9a\x4d\x45\x5e\xbd\x84\x60\xd5\x4f\x6d\x37\x1a\x9f\xb4\xc3\xc8\x97\x61\x05\x0a\x1d\xbe\x38\x8d\xc1\x83\x64\xb7\x68\xfc\x68\x30\x76\x84\xc2\x9b\xb8\x2c\xb5\xc2\x8c\xc5\x58\xd6\xca\x75\x49\x2b\xbb\x75\x1c\xb0\x08\xd8\x8a\x13\x07\x8c\x32\x04\x60\x85\xbb\xb6\x66\x33\xc9\x68\xa9\xcd\x00\x64\x6d\x9c\x08\x03\xd7\x0a\x7b\xb9\xfc\x81\xe7\x4a\x4c\xc9\x6c\x44\x99\xda\x61\xd4\x6e\xa7\x74\x72\x92\x20\x48\x66\xa3\x39\xbe\x8d\x07\x03\x12\x66\x9a\x92\xca\x0c\x79\x15\x4a\x38\xdb\xa1\x73\x4c\xb8\x35\x79\x9e\xf8\xd2\x2d\x9e\x7d\xa7\x46\xbb\xf4\x34\xac\xdd\xf3\xd1\x74\x14\x99\x5e\x98\xc5\xf3\xa6\x01\xc5\x67\x09\x20\x10\xa4\x72\x01\x39\xb2\x4c\x19\x41\xd6\x09\xf4\xda\x72\x91\xfe\x45\xb0\xcd\x1c\x2a\x9b\xdc\x0d\xf1\x03\xa9\x47\x1c\x09\x7c\x5b\x85\x82\x20\x58\x8d\xc8\x68\x32\xdd\x36\x64\x4b\xc5\x70\xcd\xaa\xb8\xae\x6f\x1b\x92\x51\x8f\x79\x94\x48\x1c\x25\xe4\x2c\x48\x7a\x74\x2b\xcf\xad\x1d\x64\x95\x60\x67\x61\x81\xc6\xb3\x64\xae\x18\x4c\x62\x96\xcc\x49\x4a\x47\x93\xf4\x7c\x65\x46\x30\x35\x23\xb8\xa1\xab\x59\x3a\x3f\x58\xba\xd3\x4e\x1e\x6e\x88\x3c\x19\x85\x1b\x3b\x7d\x37\x7a\x0c\xe5\x08\x64\xb4\x37\x52\xa2\x17\x6b\x7a\xeb\x70\xc9\x1e\x47\x0c\x0a\x41\xe8\x16\x12\xbd\xb5\x81\x15\x0c\x02\xab\xc1\x7b\x55\x45\x28\x5d\x50\xa8\x33\xca\xa6\xb3\x79\xa4\xf6\x18\xb0\x9e\xdb\xa9\xc4\x59\x46\x52\xb5\x54\x7a\x11\x98\x5a\x2a\xb3\x95\xea\xaa\x2a\xb5\x00\xef\xaa\xad\xb2\x74\x80\x79\xb3\x5e\x18\x9a\x83\xca\x5b\xe1\x40\x86\x79\x58\x8d\x0d\x2d\x70\x61\xe5\x61\x07\xe2\x67\xc2\x98\x54\x86\x8c\x09\x0b\x4d\x0c\xe9\x10\x5b\x8f\xef\xcd\xba\xda\xdd\x2d\x94\xd1\x37\xd8\x29\x8a\xbb\xf0\x73\xae\xaa\x06\x24\x9d\xfb\x48\xda\x90\x4a\xd4\x87\x6a\xea\x37\x24\xf2\x1b\xa2\xcb\x71\x44\x9a\xc4\xf0\xbb\xb5\x36\x4e\x09\x4c\x13\x28\x3c\x8c\x41\x84\x32\xcf\x59\xd1\xb6\xfa\xd9\xba\x27\x55\x78\x56\xc1\xcc\xfc\x4e\x33\x5b\x94\x83\xab\x69\xcc\x10\x95\x61\x4c\xb6\xb8\x91\x48\x62\x6b\xa7\xf9\x15\x18\x60\xc4\xdb\xee\x4a\xb8\x02\x2e\xc2\xec\x6a\x4e\xb7\xb3\x2b\x27\xfd\xb5\x6e\xfe\x97\x3c\x96\xb3\xe1\x7a\x9b\x55\x7c\x93\xb1\x8f\x3c\xbf\xec\xe0\x2e\xb3\x50\xbe\x54\x53\xad\x75\xc6\x75\x17\x7f\x7b\x64\x8f\x77\xa4\x76\x40\x4b\xdf\x6c\x95\x41\xc0\x1f\x0d\xc6\x53\xde\x37\xbb\x4c\xa4\x6c\x08\x08\x5a\xe9\xe3\xcd\xd4\xc8\xf0\x14\x38\x72\xc7\x23\x31\x35\x8e\x2d\x8a\x7e\x98\x4f\x3d\xef\x16\xd1\x08\x47\x83\x71\xe3\xb0\xcb\xdd\xa8\x47\x6c\x2b\x56\xb4\x69\x9d\x4a\xcf\x4b\x50\x87\xb6\xab\x3f\x67\xc5\x27\xb0\x4c\xb1\x53\xa0\xb7\xda\x49\x31\x84\xd0\x76\xb9\xf2\xe4\x60\xbf\x74\x05\xad\x30\xb0\x43\x61\x4b\x69\x45\xa9\x45\xa0\x83\x70\x63\x56\x95\x05\xc7\x90\x2a\xc2\xcf\xe4\x4c\xf0\x79\x81\x07\x99\xdc\x12\x61\xc4\x80\x00\x8f\x87\x49\x26\x4a\x16\x04\x5c\x1f\xf3\x4c\x67\xfb\x99\x4c\x11\x9e\xc5\x3a\x75\x90\x35\x54\x4d\xb8\xa4\xba\xa0\x69\x1e\x66\x44\xbf\x13\x2e\xcf\xa5\x24\x1e\x6e\xe2\xa2\x64\xcf\x58\xc6\xd7\xbc\x62\x45\x29\x07\x0b\x4b\xea\x6d\x23\xca\x20\xe8\xed\xc6\x5b\x09\x6c\x75\xde\xd4\xc5\x61\xf2\x09\xa0\x24\x31\x91\xf1\xf5\xdb\xea\x26\x93\xa7\x3b\xef\xab\x8f\x0e\x51\xbf\x1d\x30\x80\xf2\xd0\xc1\x52\xd9\x0d\x32\x1d\x42\x33\x2b\xf5\xb5\xd4\x4c\xd6\x92\xc6\xfe\xc1\x9d\x1b\x10\x9c\xde\x66\xb7\x08\x4c\x96\xb6\x69\x3b\x2d\x03\x3f\x26\x77\xb5\x01\x93\x58\x7d\xe9\x46\x84\xa5\xa4\xce\x35\xf8\x2e\x22\xf2\x3f\x30\x29\xbd\x43\xfe\xf8\x68\x44\xdc\xf8\x92\x84\x8e\x26\x89\x6f\x8c\x21\x51\x53\x62\x49\x56\xb4\x98\x25\x73\x3d\x72\x72\xc4\x56\x43\xb1\x61\xb9\x1a\x30\x6c\xc6\xc6\x8c\xc3\xaa\xdb\x0c\xe5\x26\x42\x0e\x8d\xca\xd7\x1d\x99\x95\xf9\xa6\xad\x85\xb6\x32\x1b\xa0\x42\xdc\x53\xf3\x12\x0a\xb5\x5e\x08\x42\x38\x1a\x61\xb2\x6a\x8d\xe5\xaa\x3b\x96\xed\x80\x81\x04\x00\x81\xf8\xde\x32\x08\x96\xe7\xdb\x20\x08\xb7\x74\x89\x9b\x6d\x4f\xf6\xc7\xfe\xe1\xdd\xea\xe1\x4d\xc1\x14\x90\x19\x59\xb5\x68\xcd\xc8\xee\xc9\x8f\x49\x6a\x77\x9d\x36\x3b\xcb\x88\x54\x7b\xbd\x30\xdd\x5d\xc1\x51\xe5\x94\x0b\x74\x1f\x98\x97\x70\x6f\xde\x48\x63\x12\x92\xe3\x48\xd1\xe9\x0d\x59\x64\x71\xfe\xa1\xed\x1d\xd6\x79\xd4\x69\x15\x92\xef\x03\x00\x4e\xa2\xb6\x0c\xb9\xee\xed\x47\xb8\x37\x7b\x94\x1b\x6c\xd6\x8a\xc6\xe8\x42\x6e\x63\xed\x2a\x0d\x32\x69\x97\x64\xd2\xa8\x59\xde\xb6\xd6\xb2\xc7\x60\x88\x46\x5b\xc5\x4c\xcc\x0f\x74\x25\x31\x4c\xb3\x9d\x72\x63\x03\x52\x7b\x9e\x69\x86\xce\x6e\x1f\xe7\xad\x79\x26\xf1\x28\x88\x40\x16\x3c\x79\xba\x8a\x8b\x32\xaa\x86\xad\xef\xcf\x91\x2b\x10\x3d\xbd\x35\xb4\x09\x7c\x12\x4d\xbb\x74\x7b\xbe\x89\x6c\x3a\x05\x83\x1a\x8e\x46\xfe\xfe\x13\x29\x8f\x85\xb8\x66\xc5\xfb\x44\xac\x37\x22\x97\xfb\xb6\x47\x39\xec\xd0\x23\xe4\x8b\x72\xc5\x69\x2a\xf2\x23\x09\xed\x91\x3a\xaf\xfc\x1b\x84\xcc\x1f\x80\x8a\xfc\x41\x60\xfe\x20\x39\xe4\x9d\xd4\xd0\xaa\x5a\x67\xca\xb0\xca\x22\x2e\x4a\xb4\xff\xe0\xd6\xa5\x9f\x42\x9f\x8d\x02\xee\xc0\x8e\x64\x39\x08\x93\x5b\x39\x45\x23\x74\x7b\x8b\x08\xac\x82\x08\x35\x0d\x32\xd3\xc1\xcb\xe3\x55\x89\x49\x07\xb1\x46\xda\xb3\x96\x05\xf4\xe5\x8f\xcf\x43\x55\xcb\xc7\x81\xcb\x38\xa8\xd8\x7a\x93\xc5\x15\x43\xa4\xdb\x0a\xfc\xbf\x24\x1d\xdb\xbe\x5e\x72\xec\x9a\xa3\x7f\x84\xd3\x48\x52\xf6\x71\x25\x8a\xba\x14\xcb\xfa\x03\xbb\xb9\x16\x45\x7a\x98\xd4\x49\x5c\xb2\x3a\x67\xd7\xf5\xec\x62\x76\xdb\x5c\x84\x64\x12\xcd\x6b\xfa\x08\x7f\xa5\xad\x07\x54\x60\x31\xf3\xdd\xcd\x86\xe1\xba\x46\xbf\x6f\xe3\x92\x83\xb9\x56\x13\x1a\x04\x47\x17\xb7\x17\xe5\x37\x26\x3d\xd3\xdb\x80\xdd\x44\x98\xdc\x23\x07\x61\x51\xd7\x23\x8c\x71\xd3\x9e\x5c\xbf\xc5\x57\x71\x99\x14\x7c\xe3\xfb\x23\x73\x5b\x05\x11\x24\xa6\x85\xc7\x3b\x26\x25\xd5\xa7\x2a\x49\x6f\x2b\x5e\x0d\xd9\xd2\x7c\xf8\x5b\x29\xf2\x2c\x25\x99\x7e\xad\xeb\x2d\x49\x68\x0e\xa6\x85\x54\xf9\x64\x49\xf3\xe1\xb5\xb6\x97\x00\x1a\x5e\x65\x5d\x1f\xcd\x2e\xae\xbf\xba\xf8\x18\x8f\x07\x17\xdb\xe5\x72\xb9\x9c\x1f\x91\x95\x2f\x24\xe5\x24\x55\x1d\x46\x53\x56\x8f\xe4\x59\x4b\x52\x19\x48\xf7\x24\x52\x1a\x27\x15\x65\xa1\x09\x3a\x8c\x41\x73\xc5\x0b\x58\x80\x06\x8e\x17\x90\x20\x4c\xb8\x0c\x30\x83\x83\xc0\x34\x2b\xd4\x80\xe2\x4a\xac\x91\xa9\x06\x3e\x1a\x12\xd3\x5b\xbe\x8c\x58\x88\xf8\x12\x61\x02\x62\x83\x51\x45\xae\xc1\x25\x18\x91\x3b\x46\x54\x90\x54\x44\x05\xa9\x8a\x9b\xa8\x20\x4b\x9e\xc7\x59\x26\xdf\x14\xec\x51\x4e\x80\x8f\x13\xe5\xc4\x30\x77\xa2\x9c\xe4\xec\x5a\x16\x99\xb3\x6b\x84\xb5\x3d\xc8\x28\x27\x70\x07\x19\xe5\x24\x65\x8b\xed\xe5\xa5\xdc\xe0\xc8\x55\x5c\xc8\x84\x57\xb1\x84\x13\xdc\x2f\xb8\xcf\x8c\x79\x1f\xa6\xdf\x64\x88\x5d\x04\x98\x80\xc8\xbc\x0c\x83\x17\x99\x4e\x40\x81\x4b\x68\x78\x79\xcd\x75\xb4\x7a\x83\x0c\x25\x53\xe9\x4b\x06\xb0\x29\x0b\x53\x2c\x44\xfa\x55\xf6\x5f\x1e\x71\xa2\x96\x57\xc4\x89\xbb\xcc\x94\xa1\xc5\x96\x45\x82\x2c\x63\xd9\x31\xca\x43\x5c\x24\xc8\xd6\xdc\xa5\x46\x82\xbc\x8a\x5f\x45\x82\xbc\xcc\x97\x3c\xe7\xd5\x4d\x24\x80\x6a\x97\xe5\xcb\x7f\x09\x00\x38\x4b\x94\x10\x80\x37\x42\x4c\xca\xed\x86\x01\xcc\x30\x20\x98\xdc\x70\x96\xa5\x51\x4e\x14\xbe\x90\x11\xea\x4d\x02\xb6\x36\x41\xea\x0d\x19\x97\xe1\x65\x94\x93\xf8\x3a\xe6\x95\xfc\x2f\x6f\xf2\x04\xca\x93\x2f\x48\x9d\xcf\x13\x63\x43\x48\xcf\x84\xab\xb8\xe0\xa0\x7e\x64\x66\x83\x09\x18\x9c\xa0\x86\x6c\xe9\x2d\xcf\x2b\x56\x2c\xe3\x84\xf9\xa0\x02\xe6\x87\x63\xa9\x1c\xe3\x78\xcd\x40\x9a\x3f\xca\x89\xc2\x60\x32\xa9\x7a\x93\x80\xe5\xdb\x75\x2b\x60\xb3\x5d\x64\x3c\xd1\x41\x7c\xc9\x99\x1c\xa1\x4d\xc1\xaf\x60\x73\xee\x84\x8a\x4a\xb9\x98\x6f\x87\xc7\x8b\xb2\x92\x2b\xad\x1b\x5c\x46\x9c\x28\x1c\x11\x95\x44\xf9\x8d\x8f\x4a\xb2\x10\x02\x3c\x9c\x96\x24\xce\x6f\xa2\xb2\x71\x22\x5f\x8a\x45\x11\xcf\xb2\x39\xdc\xbc\x59\x1e\x64\x13\x62\x92\xd2\xa3\x59\xff\x62\xf0\x4d\xf0\x35\x3d\x7f\xd4\x9b\xd6\xff\xfb\x3f\xe6\x47\x64\x43\x8f\xfe\xf1\x5f\x42\x39\xc1\xd9\xc7\xaa\xe6\x69\x0d\xd6\x5d\xea\x2c\xce\x2f\xb7\xf1\x25\xab\xc1\xf5\x9e\x56\xc0\x64\x45\x9d\xf1\xb2\xaa\x4b\x56\xd5\x05\xbb\x62\x45\xc9\x6a\x38\x3d\xd7\x0b\x89\x18\xaf\x44\x12\x2f\xea\xcb\x22\xde\xac\x30\xf2\xa4\xdc\xd6\x1d\x97\x7f\x9c\x32\x22\x68\xe1\x9b\x54\xbf\x0a\x99\x95\x88\x06\xf7\x6e\xea\xde\x47\x8e\xef\x9f\xd0\x9f\x28\xe5\x75\x8d\xfe\x84\x28\xb5\xc2\xba\x85\xa2\xb1\xf9\xbf\x18\x0d\x73\xca\xc9\x1e\xfd\x40\xc2\xa9\x72\x7e\xb9\x0d\x02\xf4\x5f\x40\x6b\x67\xc3\xd8\x87\x10\x6c\x6f\xab\xa3\xc6\xc6\x9e\x4d\x2b\x57\xde\x15\x59\x87\x48\xa1\xc8\x81\x41\x58\x04\xad\x59\x15\xeb\xdb\xee\x89\x92\x8b\x06\x57\x4e\x0a\x4e\xb8\x30\xed\x81\x45\x70\x3c\xc1\x9c\xf6\x78\x10\xa0\x8b\x0b\x44\x3d\x79\x58\x70\x13\xe9\x2a\xc1\xb2\x16\xcd\xe6\xb0\xba\xd6\xe0\x58\xd1\x26\x82\x3e\x81\x1b\xf9\x21\x02\xcd\x24\xe6\x64\x63\xd2\x7e\x38\x8d\x66\xec\xf9\x5c\x8e\xe8\x7c\x7a\x91\xf6\xf1\xf4\xc8\xb6\x66\x1d\x22\x35\x57\x10\x31\x2f\x7b\x0b\x42\xc3\x21\xf2\x33\x95\x9b\x82\xc5\x5e\x6b\xf9\x32\x3c\x9a\x5d\xcc\x2e\xe6\x72\xb3\xbb\xc0\x64\x72\x11\x5d\x0c\xe7\x7a\xf3\xe2\x5e\x4e\xc5\x4f\x47\xd4\x14\xcf\xe2\x2a\x44\x8f\x5a\x65\xd3\x47\x88\x78\xa8\x1b\xd2\x8f\xfc\xf4\x47\x1f\x8f\x5c\x91\x10\xf4\x57\x90\xf4\x3e\x9a\x5d\xa4\xf1\x60\x39\x3f\xe2\xd0\x67\xfb\x1b\xd6\x2e\x49\xdc\x55\xd2\x68\x70\xfa\x47\xca\x59\xdc\x59\xce\xf8\x93\xc5\x1c\x5d\xa4\x3b\x9d\xe4\x0f\xde\x37\xe1\x34\xba\x18\x5e\xa4\xdf\xe0\xe9\xbe\x61\xbc\x1b\xbc\x23\x7f\x0d\xe8\x6e\xfe\x06\xe1\x69\xe8\xad\x87\x1b\x72\x03\x33\x47\x1e\xef\x20\xc1\x91\x4c\xc0\x86\xe5\x07\xbe\x01\xed\xa9\x10\x2a\x48\xc4\x5a\xe2\x3b\x44\xec\x1b\xc6\x51\x05\xf6\xf8\xc7\x78\x1a\xee\xd5\xa9\x23\x05\xed\x8d\x49\x4e\x7b\x63\xb3\x06\x2a\xb7\x06\xb4\x25\x7e\x65\xa0\x13\x20\xad\x82\xc0\x8a\xf0\x1f\xa0\x19\x38\xaf\xcd\x69\x6f\x14\xe5\x41\x80\xe6\x2a\x41\x28\x4b\xc3\x4d\x41\x7b\x85\x59\x33\x55\xd3\x28\x6f\x35\xb6\xc3\x16\x61\x38\xbb\xe4\xeb\x9b\xed\x1c\x87\xd3\x9e\x7e\xfd\xe6\xe2\x18\xe3\xfe\xc5\x42\xf5\x17\x5c\xee\x6c\xec\x52\x1a\x1c\xcb\xe6\x84\xde\xa0\xa5\x90\xcc\x4e\x40\x6f\x2e\x12\xe6\xcb\x3e\x40\x3f\xff\xf3\x0e\x5c\x73\x49\x2e\xdd\xaa\xfc\xdf\xda\x83\xd1\xe9\x5f\xa6\xcf\x1e\xea\x1f\x72\xa4\xbb\x73\xe2\x8f\x82\x07\xf2\x11\xb6\x98\x5b\xaf\x80\xa5\x53\x56\xb4\xc9\x49\x4c\x57\xc3\x8d\xe6\x53\xbf\x2c\x9f\xe7\xdb\x35\x2b\xe4\x5e\x18\x0a\x1c\x04\x2b\x79\x1a\x36\x1b\x44\x10\xa0\x21\xea\xd1\xc2\xd2\xaa\xd3\x75\x18\x2b\x6b\x93\xb1\x32\x0e\x41\x04\x8e\xd6\xa1\xb7\xbf\x7a\xaf\xc2\xd7\x20\xb8\xe9\xdc\x2d\xaa\x09\xe3\xb0\xe5\xc4\xcd\x90\x22\x08\x72\x7c\xeb\xe3\x45\x6d\x31\x35\xa7\xe0\xe9\xc0\x8a\x3d\xef\x9f\xb0\x9e\x61\xb9\xbd\x75\xee\x22\x6a\x3d\x49\xc1\x33\x83\x1c\xe4\xa2\xae\xd1\x57\x0a\x10\xbd\x5a\x6e\x11\xc6\x77\x80\x24\xb3\x69\xb4\xee\xc1\xa5\xc8\x7c\x6f\xe2\xb5\x06\xac\xd1\xa2\xa8\xe1\xec\xb6\x99\x63\xef\xd8\xf1\x5e\x41\x5c\x0d\x97\x71\xf5\xb8\x28\xc4\xf5\x63\x30\x14\xea\x7d\x6a\xde\x86\xd5\x4c\x57\x47\x05\xab\x62\x2a\x11\xaa\xe6\x51\x28\x4d\x96\xb0\x38\x1f\xe1\xae\x95\xc3\xde\x58\xee\xb5\x83\xf1\x44\x3c\xa2\xa3\xc9\x60\x20\x9c\xcb\x18\x5d\xa0\x16\xd9\x16\x98\x94\x74\x61\x8b\x8f\x95\x09\xc6\x47\x74\x14\x04\xe5\xf9\x89\xd1\xc7\xb9\xed\xf7\x85\xee\x0f\xbe\x0c\x47\x94\x0e\x06\xb9\xf2\xb7\xd1\x18\xe9\xe3\xf2\x11\x3d\x91\x79\x1e\xe0\x7e\x3f\xb7\x32\xc9\x7a\xd2\xc6\x58\x6e\x8f\x23\x65\x8a\x18\xb6\x17\xf4\xa7\x8b\x23\xb3\xa5\xc4\x66\x65\x00\x4b\x09\xb0\x87\x57\x61\xd3\x40\x50\xb7\x97\x84\x56\x60\xbf\xa6\xb7\x92\xce\x8c\x7a\x23\x43\x28\xf5\x46\xc4\x4c\x51\x70\x4e\xa8\xe8\xa8\xde\x88\x28\x64\x21\xdf\x80\x84\xed\x8d\x48\x77\xc3\x8f\x5a\xe6\xac\x9f\x3b\x0b\x98\x70\x97\x0a\x56\x34\xe1\x3c\xc5\x52\x23\xb0\x9f\x28\x9b\x93\x46\x64\xff\x66\xc3\x24\x89\x23\xdf\x37\x05\xbb\xa2\x5c\xdb\xde\xcc\x97\x82\x0a\xed\x1a\x32\x37\xee\xf0\xc1\xfd\x34\xcd\xbd\xf9\xfc\x71\xd7\x32\x01\xdc\x53\xfd\x25\x2e\xca\x49\x31\x29\xa8\x12\x8d\xc1\x60\x9d\x57\xd2\xab\x2d\x31\x18\xcf\x81\xd3\x50\x93\x76\xc6\x91\x53\xc1\xae\xe0\x42\xab\xa0\xf9\xf0\xea\x4b\x0a\x6b\x94\x14\xb2\x66\x35\x01\x63\x5c\x35\x55\xbd\x2b\x77\x08\x3a\x3c\x51\xd7\x1b\x9e\x25\xbc\x96\x86\x8f\xbd\xfa\xb1\xa2\x00\x13\x26\x67\x25\x1b\x0c\xf0\xdb\x61\x92\x68\xab\xbe\x26\xd5\x8c\xf9\xb6\x60\x1f\x3b\x33\x86\xaf\x7d\x33\x86\xce\x63\x1c\xe9\x79\x3a\x8d\x1f\x60\xe3\x72\x67\xfc\x56\x67\x56\x77\xb4\xda\x49\x3a\x1c\x58\xd5\x67\x95\xe3\xad\x3a\x48\xcb\x79\xf9\x56\xbb\x80\xa0\xf2\x5c\x85\x48\x61\x7a\x58\x79\x74\x33\x37\xb6\x72\xa0\xec\x6c\xf6\xc2\xe8\xad\xac\x2a\x62\xe6\x9e\xd3\x46\x34\x8d\x59\x13\xb2\x8c\xcb\x4c\x2c\x3a\x85\xe4\x5e\x20\x5c\xed\xba\xcf\x6e\xa1\x2e\xa6\xd1\x8b\xe3\x9d\x4e\xa2\xce\x6a\x2a\x9d\x0e\xb1\x1d\x88\x1a\x6f\xe4\x9e\x86\xf8\x56\x37\xda\x34\x90\xde\xca\xd9\x13\x75\x42\xe5\x12\x2b\x6d\xa0\x6b\x0e\xd9\x09\xa2\xef\x3c\xb3\x45\x5e\xf1\x2e\x41\xa7\x68\x98\xa0\xa4\x0b\x45\x37\x91\x04\xca\x33\x17\xe4\x6b\x86\x76\x54\xb8\xec\x30\x92\xdc\x32\x4a\x58\xaa\x65\x5e\xe3\x0a\x81\x72\x27\xfb\xc8\x93\x38\x53\xae\x41\x73\x2f\xc0\x26\x6f\xf1\x9a\xb9\x4b\x31\x91\x44\x3f\x46\xe0\x1a\x1b\x78\x3d\x5c\xad\xeb\x09\xa7\x5c\xad\xbb\x9c\x72\x57\x8c\xcd\x07\x46\x47\x9f\x87\x39\x34\xb4\x60\xf1\x5a\xa3\x92\x10\x13\xed\x3e\xd0\x26\x25\x95\x73\xb6\x04\x81\x54\x22\x33\xcf\xa2\x91\xd5\x55\x33\xf3\x95\x59\xf8\x25\x04\x72\xd7\xc3\x48\x59\xae\x75\xcd\x04\x4b\x97\x0e\x9d\xed\xb4\x58\x92\x62\x06\xd6\x76\x79\xbe\xcb\x97\x3d\x96\xb7\x0f\x2b\x77\xa9\x79\x58\x50\xca\xa6\x8f\x43\x1c\xa1\x89\x84\x60\xfa\x3a\xc4\xd1\xe3\xb0\xf2\x09\x87\x67\xbe\x70\x2f\x70\x47\x54\x9e\x9f\x81\xea\x80\xd5\x66\xee\x77\x31\x89\x19\xf9\x2d\x44\x13\x84\xc9\x1b\x1c\x79\x6c\x24\x9b\x65\x29\x8a\x35\xc2\xe4\x15\x79\xd6\x4a\xb1\xd8\x49\xa1\xe2\x6f\x5d\x78\x83\x30\xa9\x18\x84\x4e\x90\x05\x9b\x2f\xe1\x3d\x44\x72\x02\x20\x6a\xe7\xa1\xeb\xae\xa5\x08\x02\x3b\x3b\x93\x99\x7b\x75\x62\x62\x94\xbe\xf1\xd3\x28\x29\xce\x10\x93\x1d\x88\xc9\x92\x75\xb8\xa2\x12\x8c\x1b\x26\xc3\x44\xb1\xd3\x86\x15\xd3\xcd\xb0\x34\x99\x4d\x01\x53\x1b\x93\x3f\xe3\xc8\xf0\x8a\x76\xbb\x08\x1a\x4d\x1c\x2f\xe9\x37\xa0\x83\xa0\x13\xa0\x54\xe0\x29\xa9\x6c\xaf\x64\x64\x04\x2c\x5b\xc3\x57\x52\x11\x36\x58\x31\xac\xba\x95\x3c\x95\xf9\x42\x84\xc9\x25\x0c\x1c\x56\x1d\x4f\x7e\x94\x19\x80\x09\xd3\xcd\xb0\x50\x23\xa0\x59\x44\xdd\xe6\x7c\x54\xb1\x9a\x5b\xd4\x8d\x7d\xab\x62\x35\x87\xa6\x5b\x72\xc9\x88\x1e\xe5\x6e\x3b\x15\x63\x49\xa5\x7f\x86\xa3\xd7\x5e\x91\xaf\xdc\x74\xf3\xcc\x39\x79\xb3\xfe\x87\x90\x11\x79\x94\xb1\x91\x2f\xbb\x91\xbe\x97\x97\x1f\xac\x08\xab\x99\x0d\x1e\x49\x43\x2d\x2a\x28\x9d\x08\x5b\x41\xab\xe9\x5f\xa2\xdf\x01\x5d\x85\xc8\x6d\x56\x87\x8f\xc3\xa7\xb2\x3d\xb2\x47\xbf\x0f\x4b\x46\xe0\xed\x8d\x04\x97\x3e\x42\x98\x14\xe4\x47\x75\x5e\xf1\xa7\x86\xc9\xfb\x3a\x7c\x2a\xbb\xc3\x4f\xdb\x68\xb1\xa0\xe9\x93\xe8\x3b\x83\x6c\xae\xbb\x32\x2f\x0c\x4f\x1f\x87\xf9\xbe\x09\x4a\x72\x6f\xb1\x99\xbe\xac\xa6\xff\x8a\x5e\xe0\x48\xc1\xad\xc6\x42\x02\xf9\x82\xfc\x68\x27\xc3\x1b\xc8\x68\x4f\x3d\x94\xb2\xba\x36\x0c\x09\x53\xc8\xcb\xe8\x15\x8e\xe0\x20\xa9\x0b\x99\x23\x4c\xde\x31\x9d\x57\xad\x60\xc6\xc2\x9f\x88\x9c\xcd\xda\xd7\x41\x64\xf9\xf0\x12\xe7\xfc\x02\x21\x39\xbb\xd6\x65\xec\xb9\x84\xdb\xbd\xb3\x01\xb6\x49\x35\x7d\x1c\xb2\xe9\xb7\xd1\xaf\x72\x5a\x30\x00\xa5\x69\xc0\x32\xc2\x63\xdf\x1d\xc0\x8b\xd6\x75\x9e\x3e\xc1\xce\x26\x17\xcd\x05\xbe\x98\x93\xf9\x11\x06\xc4\xf7\x3a\x7c\xe5\xe5\xf9\xd7\x17\xe6\x79\xe9\xe5\xf9\xae\x85\x2b\x89\x59\x9c\x38\x7a\x62\x3c\x37\xb8\xb4\x4f\xda\x16\x07\x46\x94\x16\xd3\xef\xa2\x27\x84\xab\xd7\x57\xd1\x4b\x63\xbc\x89\x3e\xd2\x05\x3d\x25\x85\x9c\x6c\xb0\x3c\xfd\x31\x99\x1e\x5d\xf4\x2f\xfa\xf5\x60\x60\x6e\x3c\xcc\x3c\x98\xea\x2e\x32\xe8\x81\x70\xd9\x31\x7c\x6f\xf7\x4f\x50\x8f\xb2\xa9\x9e\x0c\x8c\x85\x2f\xe5\x94\x25\x28\x89\xb3\x0c\x41\x82\xa1\x86\xe2\x2b\xf8\xea\x8c\xf7\x0b\x59\xc3\xdc\xcc\x18\xe5\x4b\xce\xb8\x94\xb3\x4d\xfe\xa5\xd5\x3d\x0a\x84\x9e\xde\x75\xd0\x57\xb7\xa8\x47\x2b\xeb\x79\xd5\x78\xae\x93\x4d\xf9\x45\x42\xfd\x8a\xfc\xd5\xeb\xbd\xbf\x6a\x4d\x19\xd4\xf8\x0b\xc7\x51\x81\xee\xdc\x67\x56\xb2\xc7\x2e\x90\x25\xba\xa2\x7e\xf7\x06\xfa\x7d\x68\x16\xb9\xc9\x87\xc9\xeb\x50\x4f\xe2\x67\x91\x3f\x3f\xfe\xf2\xe5\xd9\xfc\x29\xf2\xab\x45\x31\x48\x39\xc1\x41\x9e\x75\x76\x07\xbf\xe5\x71\x3e\x0e\xbf\xf3\x72\x7f\xfb\x87\x73\x3f\xf1\x72\xff\xd9\x81\x8c\x22\x3d\x7e\x6f\x08\xa0\xd4\xef\xf6\x21\xd2\xaf\x4c\x27\xef\x43\x52\xae\x36\xc3\xcb\x90\xd5\x79\xb9\x7f\xea\x12\x0e\xb6\x88\xba\xb6\x10\x2a\xac\x7a\x93\xb1\x69\xb8\xbf\x40\xa4\x1b\x29\xf1\x8e\x7a\x9b\xfe\x2d\xfa\xbb\xdc\xd1\x34\x0f\x4e\xe3\x24\x23\x9b\xe6\x17\xb4\x9d\xba\xa2\x22\x5d\x4f\x1f\x1d\xfa\xc5\x43\x49\x9d\x63\xa6\xea\x98\xbf\xab\xad\x4a\x31\xfd\x55\xd0\x4f\xde\xbc\x7f\x65\x26\xbc\x4c\xd7\xc2\x88\xaf\xf0\xce\xc4\xff\x9b\xd7\xf1\xb6\x23\xd4\xcc\xff\x3b\x8e\xee\x68\xf9\x0d\xf3\x9d\xa8\xfc\x7d\xcf\xd8\xbd\xb4\xc8\xfb\x35\x10\x21\xdd\x6a\xbf\xd7\xe7\x55\xa7\x53\x07\xde\x22\x8c\xae\xb2\xf5\x2a\xd7\x21\x9a\x0c\xde\x81\xa5\x4f\x41\x74\x69\x09\x6e\x17\x40\xfb\x48\xfd\xd5\xf5\x08\xf7\xc7\xe0\xdf\x9a\x14\x56\x73\x34\x57\xd6\x4a\x14\xd2\x91\x8b\xf6\x37\x89\x8b\x77\xb4\xe4\x01\x8a\xfd\x59\x5e\xab\xf2\x3c\x0b\x3b\x6c\xd7\x51\xc4\xc9\x24\x3f\xef\x1e\x5b\xc1\x12\xe0\xbe\xf3\xaa\x67\xfa\x4f\x62\x2b\x70\x1f\xa0\x3a\xa6\x35\xd7\x2b\xef\x82\x54\x21\x15\x0d\xcf\x33\x52\xf9\xa6\x5d\x0b\xa6\x17\x45\x12\x04\x6a\x20\xdc\x8e\xcf\xfd\x84\x39\x73\x6b\x95\xfa\xcb\xf4\x71\x6b\xcb\xe0\xec\xcb\x16\x99\x77\x61\x46\x1e\x87\xc2\xaf\x49\xb0\xd6\x4a\x3b\xd7\x48\xff\xfb\x90\x33\x82\x24\x01\x21\x98\x37\x71\xf5\xb4\x15\x7b\xe6\x4b\xcc\xbc\xe3\xbc\x24\x5a\x0a\x46\x32\x46\x12\xbf\xb2\xb2\x5d\x59\x67\x85\x94\xac\x4b\xed\x86\x1f\xc2\x4a\x4e\x13\xdc\x5d\x26\xa5\x03\x8a\x31\xa0\x90\xe6\xc8\xa7\x17\xb6\x4c\x12\x0c\xbb\x40\x6e\xd9\x7e\xbc\xd2\x93\x78\xc0\x92\x68\x4e\x5f\xf9\x9b\xe8\x48\x6e\xbc\xd3\x76\x07\x83\x6f\xfc\x9d\x55\x87\xc9\x1e\x18\x1b\xef\x64\xa4\xb7\xd1\x52\xf6\x0b\xc6\x91\x69\x5c\xd6\x5a\xaa\xd9\x97\x8d\x7c\x62\x47\x9e\xb4\xa7\x51\xec\xf7\xf7\xd2\x2b\xac\x75\x5a\x0a\x02\x73\xe6\xf1\xca\x37\xe4\x34\x51\x71\xea\x18\xe5\x0a\x5b\xd9\x2a\x3b\xb4\xaa\x26\xfd\x52\x47\xf8\x79\xb9\x52\xd6\x46\x5f\xba\x73\xdc\x59\x6f\xcd\xbc\x43\xd9\x7a\x67\x0a\x3c\x0e\x37\x0c\xa8\x2b\x2f\xbd\x2b\x7d\xd3\x1e\x4f\x9e\x6b\x6c\x2f\x96\x30\x8f\xc3\xbd\xbb\xda\x2b\xa0\xf0\xbe\x6b\x97\xb4\x6e\x97\x64\x00\xba\x92\x00\x7d\x79\xb1\x1e\x9c\x57\x7e\xe9\x57\xd0\x0b\x08\xcb\x89\x16\x04\x8f\x5b\xb4\xe2\x4d\xbb\xe6\x6f\x3e\x51\xc5\x0d\x9c\x20\xf7\x2e\x11\x15\x15\x5a\x62\xcf\x1e\x1f\x2e\xed\xf1\xa1\x90\x27\xca\x1f\x77\x17\xc5\xa5\x3f\x44\xad\x29\x7c\x09\x5d\xaf\xd6\x72\xee\xb7\x67\xe1\x4d\xac\x7d\xa8\x47\x03\xf5\xde\xcf\xf3\xbe\xdd\x4e\x2d\x0c\x60\x89\xcc\xf7\x6c\xf7\xc8\x7e\x0d\x87\xbe\x2e\xbc\xd7\x77\x2c\xe2\xbb\x88\x03\x38\xef\xf1\xe4\x13\xfd\x7a\x0d\xeb\x71\xdf\x4e\xba\x87\x82\x78\x1c\x3e\x67\xe4\x86\x91\x6b\x26\xa7\x91\x7a\xc1\xd1\x27\xc7\x4d\xa5\x30\x73\xea\xda\x21\x06\xb9\x4b\x74\x9b\xf7\x9c\xdd\xbd\xe1\xdf\xb9\xdf\xfb\x28\xe4\xe3\x97\x4f\xa8\x0f\x66\x19\xb6\x0f\xff\x77\x4e\x71\x97\xfa\x75\xf8\xcc\xab\xf2\x6d\x6b\x0a\x39\x72\x4a\xed\x82\xaf\x19\xf9\xe0\xcf\x84\xd7\x6d\x00\x2d\xd6\x7e\xad\xb1\x76\x17\xdb\xc2\x6c\x52\xed\x68\xa1\x5e\x03\x99\x9c\x6a\x8f\x5b\x58\xf4\xb1\x37\x3f\xe3\xf2\xb3\x74\xee\x6b\x1f\xba\x0f\x5e\xde\x65\x21\xd6\x9f\xcd\xed\x2f\xe6\x77\x7e\x47\xcc\xbd\x3e\x78\x49\x9e\xfa\x95\x3c\xf5\xd3\x19\xf6\xcf\xeb\x50\x1d\x9e\xe7\xc0\x74\x31\x27\xc0\xef\xc3\x7f\x11\x15\xf4\x3a\xfc\x5e\x9e\xac\xe6\xc8\x6f\xea\x8f\xfb\x4a\x7a\x1c\xae\x18\xf9\x91\x39\x1e\x97\x1c\xbb\x1f\xdd\xae\xad\x9b\xf3\xc6\x70\x1c\xf7\xaa\x43\x58\x0b\x82\xb7\xe6\xf8\x13\x5d\x11\x73\x99\x18\xa1\x52\x2c\x11\x49\x92\x68\x36\x27\x9a\xf6\x8b\x14\xdf\x33\x64\x92\xc0\x1b\xc4\x64\x44\x10\x18\xc9\x45\xa0\x6f\x69\x99\xc2\x51\xee\x18\xc4\x44\xf3\x7c\xfd\xb0\x20\xb8\xbd\xea\x24\x33\x02\xd5\x2c\x8d\x64\xe1\x8d\x53\x86\xf7\x39\xe8\x3b\xc2\x8a\x1d\x06\x7b\xe5\x33\xd8\xfd\x38\x4c\xaa\x1d\x6d\x09\xab\x8f\xac\x54\x1e\x20\xbb\x61\x0c\x76\x58\x27\x08\xb8\xc2\x08\x3c\x3f\xd9\x34\xea\x06\x48\x36\xbc\xf2\x59\xb1\x2d\xc5\x70\xa2\xae\x0c\x31\x71\x97\x93\x3d\x7a\xa3\x2f\x2e\xc1\x3e\x68\xd8\x36\x03\xa7\xb9\x46\xbe\x40\x49\x65\xed\x34\x9b\x4b\x54\x4a\xf9\xb4\x88\x3c\xd1\x45\xea\x0e\xfc\x3d\x10\xbc\xe9\xf7\x51\x8f\x8a\x20\x40\x83\x81\x7c\x99\x72\xb9\xc7\x25\x29\x4b\x50\x4b\xec\xc6\x78\x88\xb3\xb7\xd0\x09\xdc\x43\x69\x8a\x9f\x32\xcb\xdf\xa6\x9c\xd8\x95\x01\x4c\x1a\x49\x4b\x53\x41\x34\x06\x06\x9f\xc8\x9f\xef\x3b\xd6\xed\xbb\x11\x9e\x80\xd9\x9b\xd0\xf8\x49\x9b\x0a\xc5\x5e\x8d\xb2\xe9\xab\xe8\x19\x06\x51\x49\xed\x4b\x4d\x58\xcd\x7e\x31\x13\x8e\x3b\x2b\x8b\x9c\x60\x61\xb8\xb2\x07\x9d\x75\x3c\x35\x2f\xad\x5d\xb5\x08\x82\x8f\x60\xa1\x63\xea\x28\xe7\x63\x14\x55\x4d\x03\xae\x47\x39\x11\x44\x62\x9b\x1d\x21\x7f\xe3\xcb\xd4\xbb\x6a\xa6\x37\x1d\x0d\xda\x56\x74\x8f\x5e\x99\xe8\x91\xb6\xa2\x09\x4e\xd5\xf5\x05\xee\x08\x13\x41\xed\x8c\x82\x1b\x61\x20\x4a\x25\x79\x76\xb1\x38\x32\xc6\xd1\x3d\x3d\xf1\xca\x67\x4d\x4f\xb6\xea\x82\xd8\x78\xdd\x86\x58\xa3\x6f\x4b\xe9\x1b\x2c\xa8\x00\xa6\xbf\xbd\xd2\xcd\x7a\x74\xc9\xf4\xe5\xaf\xb9\x40\x11\xfa\x46\x01\x76\x2c\x0e\x0e\xf4\x54\x2e\x4c\x4a\x7d\x3d\x62\x93\xd8\x2c\x32\xde\xdc\x44\xd8\xf4\xca\x0c\x9f\x4e\x4d\x96\x94\x53\x9a\x1c\xb8\x7d\x2e\x65\x12\x55\x25\x5a\x7f\x4b\x2e\x97\x7e\xe8\x73\xaa\xdc\x7c\xae\x6b\x40\x8e\x2e\x60\xaa\x8e\x99\xfd\x71\x34\x52\xdc\x74\x89\xb4\xe5\x19\xeb\x16\x16\x83\x2b\xd1\x45\xfa\xd5\xc4\x91\x81\xbc\x5d\x7b\x1b\x17\x68\x48\x7d\xde\x59\x17\x22\x3f\x20\x35\x02\xc4\x76\x30\x71\x5d\x1f\xcd\x88\x95\xb6\xf2\x63\x60\x62\xe1\x69\x59\xd7\x31\x34\x41\xb3\xed\x7b\xfa\xfc\x5c\xd7\x4b\xb0\x72\x9a\x0f\x53\xb1\x5d\x64\x4c\x6b\x69\x43\xa2\xa9\x50\xcb\x65\x2a\xf4\x2d\x53\x3f\x5c\x4e\x47\xd1\x18\x47\xad\xa6\x4c\x47\x51\xdc\x0e\x02\xb1\x68\x90\x7f\xd6\x1b\x3f\xf6\xe6\xd4\x34\x8e\x8e\xbf\x89\xb1\xd3\x7d\x78\x99\x6f\xb6\x55\x04\xd3\x4f\x67\x3b\x1c\x7e\x33\x8d\x4c\xde\xa8\xbe\xb8\xad\x2f\x1a\xfc\xd5\x11\x01\x94\xff\x54\xe1\x22\xd0\xd7\x8e\x32\x65\x26\x12\x1d\x7d\x83\x5a\xb1\xcf\xf3\xd4\xc6\x7d\x73\x84\x48\xc6\x73\xa6\xa3\x5c\x9e\x23\x44\x96\x22\x4b\x23\xb4\x28\xc0\x5e\x32\x88\xcd\x3f\x29\xe2\xe4\x03\xab\xca\x08\x85\x78\x36\xbf\x6d\xfe\xf4\xa7\x0b\x74\x81\xfe\xf9\x4f\x44\x56\x2c\xdb\xb0\x02\x76\xa8\x6c\x0a\xcc\x19\x14\xb5\xe4\xac\x15\xbf\x06\xf4\x35\xb6\xf0\xf1\xa3\x36\x27\xf0\x71\x53\xb0\xb2\xe4\x22\x7f\x9c\x65\xe2\x9a\xa5\x51\x45\xca\x0f\x7c\xf3\xdc\x86\xef\xd9\x19\xe1\x56\xa8\x7d\x1f\x74\x50\xf5\xe8\xab\x20\xa8\x7a\xf4\x65\x5d\xbb\x1b\x21\xd0\xe0\x00\xeb\x3d\xbc\xac\x58\xf1\x1d\x80\x19\x22\x23\x92\x5d\x22\xd2\x82\x12\x44\xb3\xe7\x47\x7b\x85\xfc\xfd\x74\x7e\xa6\xbd\x89\x59\xb2\xfe\xa2\xc4\xf1\x66\x93\xf1\x04\xf6\xa5\x2f\xae\xc0\xcf\xf3\x71\xf0\xef\xe4\xfa\xb7\xa0\x93\x63\x4a\xf4\x55\x77\x77\x64\x41\x37\xe2\xd3\x60\xfe\xcf\x64\xcf\xd2\xfe\x27\xf3\x67\xe9\xbe\x12\x60\x20\x9c\x2c\xfe\xde\xdc\x2e\xfa\x73\x30\xfc\xb1\x82\x1a\x90\x1b\xe7\x39\x0b\x91\xaf\x40\x33\x9b\x13\xef\x2a\xbd\xa5\x46\xa1\xe5\xfc\xcd\xc2\x76\xba\x17\x8d\x57\xd6\x7f\x61\xeb\x05\x2b\x06\x69\x5c\xc5\x47\x71\x1a\x6f\x2a\x56\x1c\x0d\xb4\x80\x34\x22\x33\x7d\xc7\x57\x82\x6d\x76\xd0\x13\x41\x04\xa9\x2c\x3c\x5f\x4a\x94\x02\xca\x1d\x6d\x62\xa3\x03\x87\x62\xd7\xd9\x53\x09\xcf\x0f\xab\x69\x65\xdc\x29\x47\x15\xe1\xf4\xe8\xa2\x98\x5e\xe4\x47\x5a\x4a\xee\xe8\x62\x76\x31\xff\xca\x93\x52\x76\x66\x99\x81\xe8\xed\xc1\xc6\xae\x6d\x6b\xc0\x6b\x41\xc1\xf7\x02\xdd\xa3\xa9\x52\x4c\x8b\x10\x47\x05\x71\xde\x55\xe7\x94\xe5\xb2\x07\x7f\xf9\xf9\xe5\x53\xa3\x76\x14\x56\xb8\x8f\x28\xea\xef\x89\x29\xb4\xa0\x58\xe9\x2c\xce\x6f\xe9\x73\xd9\x03\xc3\x1f\xf9\x47\x6e\xcc\xe9\x87\xb7\x8b\x2d\xcf\xd2\x5f\x7e\xfe\x21\xda\x47\x79\xa9\x7d\x20\xcc\xf1\x2d\xdc\xd7\x2e\x79\x9e\xfe\xcc\x12\x10\x67\x32\x62\xce\x2b\x5e\x0e\xb7\x45\xf6\x42\x14\x2f\x6c\x6c\x58\x11\x90\x69\xb4\x99\x1e\x67\xd9\x5d\x39\x1e\x67\x59\xe8\x12\xff\xbe\x65\xc5\xcd\xbe\xa4\x3f\xc9\x88\x90\x13\xe6\x27\xbc\x1b\x96\x9f\x5c\xb4\x97\x49\x82\xf2\x63\x9c\xef\xad\xe0\x85\x8e\xdb\x81\xfd\xbb\xb8\xfc\x54\x1e\x1d\xbd\x93\xed\x09\xcb\x44\x7e\x59\xbe\x13\x77\x65\xb4\x09\x5a\x59\xb5\x97\x83\x3b\x1b\xf6\xd4\x8b\xf7\xfa\x6d\xbb\x49\x3f\x99\xed\x17\x2f\xbe\x55\x9f\x52\x38\xb9\x3b\xe3\x33\x2f\xde\x64\x34\x6b\xc0\x4f\xfd\xde\xcc\xa3\x50\xb9\xb8\x26\xef\xf7\x4e\x2c\x23\x49\x9f\xd3\xd9\x9c\x70\x3d\x21\x2f\x99\x72\x28\x4d\xd0\x4a\x94\x15\x28\xe1\x18\x08\xde\x14\x6c\xc9\x3f\x3a\xc2\x59\xd9\xc3\x53\x42\x70\x71\xb5\x7a\x21\x60\xab\x0d\x19\xc6\x60\x7f\x0a\x8c\x5f\x81\xb3\x5d\xfd\xb1\x77\xcd\x60\x22\x64\x02\x63\x5d\x51\x60\x92\x53\x65\x3a\x0a\x44\x9b\x49\x8f\x07\x41\x1e\x04\xe8\x08\xf5\x24\xcd\x63\xc9\x24\x90\x2d\x46\x47\xa8\x9f\x63\x92\x37\xa4\x3b\xeb\x77\x1c\x6d\xed\xef\x1f\x70\x8f\x4d\x5a\x0b\x20\xda\x47\xe9\xed\xf4\xab\xcd\x05\x93\xfb\x8b\xf2\x54\xed\x3c\x7b\xe0\xfc\x7c\x4e\xb3\x30\xbe\xb4\x79\xad\x8c\x7a\x75\xfc\x9b\x5d\x63\x97\xc8\xbf\x91\xdf\x5f\x28\x7f\xb0\x7f\xfd\xc5\xf2\x6f\xd4\xec\x2f\x99\x3f\x9a\x5d\xcd\xf7\x7d\x4b\xe6\xae\xb5\x92\xef\x44\x58\x65\x23\x64\x1c\xf4\xa9\x99\x5c\xd4\xb5\xde\x72\xac\x51\xca\x7f\x5c\x1c\x5d\x1c\x79\x8e\x8a\x8f\x56\x55\xb5\x09\x4b\x3c\x8d\x5a\x11\x53\x16\x81\x70\xb5\x73\x53\x33\xc2\x53\x84\xfa\x45\x9f\x45\x55\x5f\xae\x08\xa6\x8f\x8f\x33\x2b\xff\x5d\x04\x01\xb7\x0b\x32\xb7\x1f\x39\x26\xdc\x2d\xb5\x86\x78\xab\x78\x0f\x7d\xab\x9a\xa6\xed\xb0\x27\xf1\x9a\x65\xc0\x74\xf0\x8c\xc7\x6d\xb2\x6d\x11\x43\xa8\xc4\x3a\xf8\x80\x0d\x9f\xe8\x4e\x85\x6d\x8e\x6e\x81\x92\xa9\x58\xb1\xe6\x39\x7b\x22\xd2\x9b\x37\x85\x58\xf3\x92\xd1\xbd\x53\x42\x19\x97\x0f\xf1\xb0\x5a\xb1\x3c\xf4\x0d\x69\x28\x6a\xa0\x50\x6e\xf1\xe8\xf7\x6f\x5f\xbf\x52\xf6\x06\xc2\xc2\xf8\xa2\x51\xc6\x2d\x7a\xa1\xf0\x4d\x7a\xbe\xbd\xc9\xab\xf8\x23\x98\x11\x35\x76\x45\xc5\x81\x31\x3c\x22\x0f\x7d\xdb\xf2\xa0\xc7\x86\xe2\x43\x5d\x1f\x8f\xee\xf5\xe0\x84\x7b\x3c\xba\xaf\x5e\xd0\x77\xcf\x1f\x3f\x93\x23\x57\x0d\xd7\xac\x5a\x89\x74\x9a\x88\xbc\x14\x19\x1b\x5e\xc7\x45\x1e\xa2\x77\x2b\x5e\x1e\x16\xac\xdc\x88\xbc\x64\x87\xd7\x71\x79\xb8\xcd\xe3\x45\xc6\x0e\x2b\x71\xb8\x60\x87\x00\x5f\x7a\x18\x97\x87\x92\x34\x1c\x22\x52\xe0\x28\xa7\x6d\x0e\x5c\xae\x8c\x3c\x2d\x59\x95\xac\x3a\xde\xb9\x94\x44\x31\xb5\x06\x16\x4a\xa5\x3d\x05\x36\xe6\x42\x04\x39\x10\x36\xd2\x81\xb9\x0d\x31\x14\xd2\x41\x49\x77\x0c\x9b\x1c\x32\x27\x93\xea\x88\x1e\x6b\x3b\x0f\x4a\xd8\xb5\xbe\x9a\xc4\x79\x2e\xaa\x43\xb9\xa9\x1e\x56\x2b\x76\xf8\x4f\x48\xf7\x4f\xad\x0a\x7c\x28\x8a\x56\xa8\xe2\xaa\x0d\x0f\x9f\xf1\xf4\xf0\x46\x6c\x0f\xd7\x2c\xce\x65\x87\xc0\xa0\x64\x99\x4a\xab\x48\x41\x9d\x03\xf4\xb5\xa7\x08\xef\x85\x18\xd2\x58\xf3\x81\x65\x08\xdd\x05\x3d\xfb\xb3\xee\xf8\xef\x58\x9c\xb2\xa2\xa4\xbb\xb3\xb7\xed\x1e\x5e\xc9\xde\xb7\x0c\xa4\x56\x07\xbb\x8e\xe2\xf8\x5e\x37\x71\xb7\xce\x14\x41\x31\xcb\xe7\x24\xa6\x23\x52\xd2\xde\x78\x12\x9f\x1b\x6e\xd3\x24\x56\x36\xd6\xee\x3f\xa4\x94\x0a\xdf\xfe\x7a\x8c\xf1\x6d\x49\x7b\x23\x27\x66\x0f\xf6\xcd\x4a\x05\xe7\x96\x8a\x61\xb9\x5d\x28\xae\x39\xf8\x92\x1a\x56\x05\x5f\x87\x98\x64\xad\x98\xb8\x3f\x26\xa6\x2e\x93\xe4\x20\x0b\x82\xb0\x9a\x6d\xdb\x5e\xcc\xe7\x34\x23\xd5\x6c\x3b\xa7\x19\xb6\x3d\x57\x81\x2d\x31\x56\x70\x58\xac\x2f\xf3\x4a\x7c\x17\x97\x2b\xda\x25\x3a\x0d\xb1\x4c\x29\xc8\xb2\xe7\xf4\x96\xe7\x49\xb6\x4d\xd9\x4b\x75\xb2\x71\x6b\xc7\x14\x55\xbc\x10\x45\x58\x81\xf9\x82\x0c\x5c\xdd\x1d\xb4\x26\x97\xa5\xa8\xf9\x6e\xed\x86\xb3\x78\xdb\xf8\xee\x34\x3b\x89\x42\xa1\x21\x23\xa2\xd9\x4d\x05\x2c\xc0\x56\xd3\x60\xa3\x7d\x13\x17\xf1\x7a\xdf\x94\x70\xf8\xd1\x53\x6e\xf6\x34\xae\x4b\xb2\x05\x9c\x2d\x07\x52\x99\x3c\xe2\x25\xfc\x87\xb9\xe2\xb3\x71\x18\xf8\xdc\x8c\x39\x3f\x2f\x27\xbc\xdf\xc7\xc2\x31\x4e\x80\x47\x98\xcf\xf8\x1c\x47\x2c\x2c\xfa\x68\x86\xfa\xe1\x2e\x67\x7a\xc6\xe7\x53\x70\x8c\xd8\x47\x73\xa4\x92\x3b\xcd\x8a\x1d\x11\x36\x34\x53\x05\x1c\xaa\x29\x3d\x97\x7b\x81\x9e\xdd\xce\x24\x53\x25\x2c\xa2\x96\x34\x3d\x6e\x0c\xcc\xdb\x43\x9e\x1f\xe6\xd8\x40\xb3\xd5\x55\x6e\x4d\x95\x1a\x64\x07\xc0\x1f\x69\x39\x58\xb1\x9c\xf1\x39\x08\xdc\xab\x37\x50\x38\xf5\x4c\x78\xd8\xfa\xb7\xba\x56\x3b\x27\x43\x84\x08\xc3\x7a\x3f\x0a\x10\x76\x96\x84\xbf\x3e\x1e\x1d\x5d\x12\xd4\x97\x7b\x94\x6e\xa9\x3a\x7b\x3a\x81\x45\x82\xde\xbf\x67\xe5\x8f\x4a\x22\x94\xdc\x42\xad\xdd\x33\xef\xbe\x73\xaa\xfe\xf7\x8f\xa9\x73\x72\xa7\x55\x81\x3f\x5a\xb9\x3a\xb9\x4b\x0c\xac\x51\xfd\x81\xbf\x95\xea\xd2\xd4\xe5\x67\x68\x0e\xd9\x6f\xed\x62\x8a\xd0\xc0\x1c\x78\x89\x3b\xed\x29\x65\x0c\x7d\x90\x53\x1f\x70\xfe\xf2\x5e\xfd\x84\x97\x2c\x67\x45\x5c\xb1\x97\xe9\x0b\x51\xf8\x11\x76\x91\xec\x27\xc8\xbc\x55\x04\x64\xa4\x7f\x16\x52\x05\xf8\xc7\x1c\x15\xe2\x9f\x5f\x8c\x2e\x49\x9c\xb1\x32\x61\x8a\x30\xff\x7d\xcb\xca\x0a\x14\x72\xcc\xe1\x4f\xc3\x58\x88\xed\x46\x65\x2b\xef\x22\x72\x0d\x60\xb3\x6a\xde\x90\x72\x25\xb6\x59\xfa\x33\xcb\x44\xbc\x8f\xde\xf7\x5c\xdb\xb5\x92\xde\x45\xdd\xf7\xac\xe3\x2b\x9d\xfc\x49\x9c\x7c\x90\x40\xe5\x5f\x50\xc7\xe8\xae\x4c\x77\xd6\x36\x52\xb4\x91\x99\x19\xd5\x67\xa6\xa8\x56\x35\xf4\xf9\x28\x7e\xb2\xb2\x12\x05\x73\xfc\x96\x79\x47\x59\x7a\xbf\x55\x0c\x6d\x14\xdd\xe2\x77\x50\x4e\xa3\xe8\xb1\xaa\xf2\x50\xf1\xb5\x41\x6a\x24\xe6\x19\x4b\x91\xb6\xd7\xcd\x4b\x9d\x02\xa8\x01\xb9\x8b\xf9\xe4\x30\x04\x2a\x84\x03\xc4\x6f\x85\x0f\x0a\xa3\x03\xa5\x0c\x15\x6a\x83\x85\xda\xf8\xb7\x66\x4d\x71\x91\xd3\xc2\xff\xd2\x2e\x52\x78\xc6\xb4\x37\x59\xf3\xaa\x22\x32\x9e\xb3\x57\x20\xb2\xa7\xbd\x75\xa9\x0f\x15\xb9\x66\x65\x19\x5f\xca\x4c\xfa\x4d\x05\xe7\xaa\xa0\xdc\x16\x92\x9b\x02\x72\x2f\xb3\x3c\x9e\xd2\x02\xfe\x74\x83\xa1\xef\x4b\xca\xea\x7a\x76\x5b\xf1\x2a\x63\x91\xed\xa3\xe7\x6a\x58\x52\x56\xc5\x3c\x8b\xaa\x66\xde\xfc\x61\xec\x70\x67\x06\x55\xad\xdc\xf1\xde\x09\xc0\xbb\x88\xdc\x32\xab\xde\x29\x17\xd0\x25\xab\x76\x6d\xd5\x1d\x56\xc3\x9d\x9c\xcd\xe7\xeb\x81\x74\xef\x60\x83\xfd\x83\xf5\x78\x39\x15\x4b\xfb\x2d\x2b\xae\xcc\xec\x60\xc3\xa7\x22\x5f\x66\x3c\xa9\xcc\xf7\x2b\x51\xbd\x90\xeb\xc3\x7c\xbf\x10\xc5\x82\xa7\x29\xcb\x4d\xc0\x2f\x79\xbc\xad\x56\xa2\xe0\xff\x62\x36\xd1\xe3\x85\x28\x6c\x09\xef\xf8\x9a\x89\xad\xfd\x7c\x99\x5f\xc5\x19\xb7\x49\xf7\xe0\x5a\x79\x4c\x70\x22\x72\x77\xc8\x81\xab\x49\x1c\xba\xd5\x30\xbd\x6d\xa2\x0a\x9b\x29\x64\xcd\x09\x76\x45\x0a\xc5\x5e\x6d\x24\xa0\x20\x98\xb7\x0e\x0a\x92\xd7\x75\x4b\xb7\xc7\xee\xd3\x1d\xb2\x94\xb9\x18\x4c\x0a\xbd\x33\x50\x2e\x4f\x6d\x45\xe3\xda\x97\x93\xbb\x8b\xf0\x97\xe2\x5d\x85\x69\x0b\xb1\x22\x2c\x08\x7a\xb7\x62\x87\x1a\xd3\x1c\x16\xec\x37\xb0\x5e\x01\x74\x79\x22\xd6\x6b\x5e\x1d\x2e\x58\x12\x4b\x14\xc2\x2b\x38\xd4\x70\xd5\xe3\x48\x22\xb0\x56\xef\xc7\xda\xfa\xdd\x4e\xa1\x0e\x97\x54\x7c\xcd\xd2\x43\xb1\xad\x20\x77\x6b\x28\x4b\xcd\x14\xfd\x44\x6e\x59\x7b\x2c\xe7\x02\x53\xb5\x7b\xf3\x62\xab\x2d\x58\x7f\x22\x37\x87\xf3\x98\x9d\x5c\x50\xc2\xee\x6c\xcb\xcc\xb5\xe4\x27\x0b\x5a\x9a\x69\x0b\xa5\x74\x26\x71\x72\xa0\x6c\xe6\xee\x14\x91\xc8\x3d\xe2\xb0\x75\x78\x2a\x98\xf2\x21\x01\xe5\xb4\x17\xc7\xf2\x40\x99\x77\xff\x04\x24\x0a\x35\x1f\xa6\x5b\x38\x63\xc6\x87\x89\x5e\x6d\x50\x5a\x7b\xe9\xad\xb4\xed\xba\x3f\x50\x5a\x09\x2b\xf9\xd0\xe8\xb7\xb7\x97\x76\xfa\x99\x2d\x0b\xd4\x8c\xef\xde\xb2\x76\x2f\x09\x3e\x49\x9b\x7d\xe6\x6e\xe0\x3f\x0f\xed\xb6\xb8\x15\x5f\x8c\x0a\x5b\xb9\x3e\x89\x6e\x2d\x35\xf7\x45\x25\x17\x66\xbd\x37\x9f\xa5\x62\x7f\x2b\x45\x3e\x88\x37\xfc\xf3\x5d\x5e\xb0\xb2\xda\x73\xfd\xf2\x99\xf1\xe9\x8e\x80\xc4\x70\xff\x1f\x10\xc6\x9c\xda\x3b\x9d\x4f\x52\xc5\xae\xb9\xf1\x6f\xf1\xc7\xd7\x40\x34\x94\x3b\xdc\x3d\x8b\xce\xd5\xf5\xce\x2d\x58\x5f\x01\x11\xa3\x5c\x49\xc2\xb4\xbe\xea\xba\x75\xb1\x76\x95\xa7\xc3\x78\xc3\xd5\x0d\x9f\xde\x49\x14\x9f\x10\xcc\x1e\xe9\x3a\x9c\xe8\xd1\x4a\x31\x1e\x86\x8f\x93\x84\x6d\x2a\xda\x0d\xf8\x54\xe9\x24\x6f\xee\xa0\x93\xc7\x8e\x4e\xde\x73\x36\x57\x1d\x26\x61\x72\xac\x4b\x77\xf4\x86\x5b\x23\x77\xc9\xe2\xce\x59\xa0\x91\xfe\x5b\xfc\x31\xe4\x04\x7d\xfb\xfc\x1d\x22\xb7\x72\xcc\xa3\xdb\x25\xcf\x2a\x56\x44\xb7\x3c\x8d\x0a\x7d\x08\x23\x08\xae\xaa\xff\x10\x63\x30\x8d\xcb\x15\x2b\x5a\x9c\xc1\x70\x44\x3c\xde\x20\x56\x5c\xe9\x4f\xb1\x75\x55\xd3\xc0\x59\xeb\x2e\x9f\x40\x27\x32\xf7\x12\xfb\xdb\x3e\xe4\x29\x29\x48\xfb\x26\x66\x4f\x17\x08\x82\xde\x3c\x7e\xf7\xf4\x3b\xd3\x09\xbc\xc1\x6d\xda\x9c\x7f\x66\xe1\xa9\xe5\xf4\x99\x45\xf7\xef\x61\x3f\xa6\x8d\xde\xfd\xe7\xaf\x3c\x60\xa3\xe9\x55\x43\x57\x77\x2d\x45\x35\xaa\x3f\xbf\xfd\xcb\x9b\xa1\x66\xd3\x12\x41\x91\xb5\x18\xe6\x38\x85\xbf\x01\x97\x85\xc4\x7b\x23\x73\xd9\xcf\x3b\x2e\x11\xcd\xfc\x15\xc0\xc2\x15\x94\x0d\x95\x41\x42\xc3\xc6\xd3\x8e\x08\xb6\x25\xb1\x0b\x09\x06\x5d\x73\x77\x63\x67\x6c\x6a\xa8\x68\x96\x30\xb6\xca\x21\x22\x08\x44\xe7\xa0\x32\xb5\xc9\x04\x8e\x3c\x47\xca\x5b\x0d\x8d\x11\x6b\x53\xa6\x4e\xa1\xe3\xdf\xad\x0a\x71\x9d\xfb\xdc\x63\xc5\x37\x16\xb4\x95\xc0\x39\xe5\xab\x14\x39\x83\x28\xd5\xfe\x84\xde\x42\x03\xb0\x00\x05\xf0\xbc\x45\xee\xb8\x5c\x40\xd0\x74\xf3\x80\x78\x0f\x18\xe5\xd5\x25\xec\xbb\x81\x60\x9a\x0d\x0d\xf6\xb4\xb6\x45\x46\x64\x2f\x7a\x90\x81\x4f\x63\xdd\x89\x25\xfd\xcc\xe9\x25\x44\x1a\xe9\x68\x32\x20\x3a\x44\xfd\x02\x4c\xe7\x72\x78\x86\xa2\xae\x11\xc2\x96\x19\xa9\xca\x8d\xe2\xc6\x72\xd0\x54\x23\x1d\x4d\x16\x96\xb8\x09\x65\xcf\xaa\xb6\xde\x31\xcc\xa6\x8d\x84\xbb\x61\xae\xeb\x56\x0f\xb7\x46\x5d\xd0\xd8\x0e\xb3\xa7\x26\xe1\x59\x24\xd4\x90\x19\x7e\x3e\x71\xbd\xaa\x5d\x5c\xab\x0f\xa2\xab\x8b\xc0\xff\x8b\x7a\xf7\x29\xfb\xe4\x4b\x8b\x54\x61\xef\xd8\xc7\xca\x16\xa9\xd0\xdd\x1e\xae\x34\x56\xa6\x40\x1f\x67\x59\x27\x22\xc4\x7e\xdd\x4b\x4f\xd8\xb6\xf1\xee\x5a\xd9\x70\x29\x8a\xe7\x71\xb2\xf2\x65\xd1\xbc\x5b\xac\x59\x31\xa7\xac\xc1\xbe\xe1\xb5\x95\x27\xb9\x9a\x14\xe0\x77\x81\xc7\x59\x49\x51\x19\xaf\xd9\x40\x14\xfc\x52\xd2\x39\x0c\x7c\x6b\x60\x39\x1f\xe5\x86\x00\x57\x4b\x6a\x72\xd5\xb5\xba\xf6\xf0\x82\xa0\x34\x8d\x74\x3e\xb0\x9b\x32\xd4\xb9\x0d\x33\xda\xf8\xbd\x96\x73\xd2\x59\xb3\x99\x22\xfc\x68\x30\x9e\xa2\x00\x45\x68\x8a\x0e\x20\xb6\x4f\x11\xea\xe7\x7d\xe8\xae\x7d\x1c\x5b\x6c\x8a\x56\xf7\x14\x87\x6c\xb8\x10\xe9\x8d\xba\xee\x51\x6c\x70\xbe\xbc\x31\x69\x6c\x3f\x35\xc6\x4a\x73\x87\x90\xe8\xd0\x69\x64\x2f\x61\xa1\xd0\xf9\xf2\xff\xe5\xee\xdd\xbb\xdc\xb6\x91\x44\xf1\xff\xf5\x29\x24\xee\x5c\x2d\x71\x1b\x56\xd4\x33\xb3\xe7\xdc\x9f\x6c\xa6\x4f\xc7\x8f\x89\x67\x62\x3b\x6b\x3b\xc9\xce\x6a\x75\x7b\x69\x11\x6d\x61\xac\x26\x7b\x40\xc8\x9d\x9e\x16\xbf\xfb\xef\xa0\xf0\x06\x01\x4a\xed\xd8\x99\xec\xfd\xc7\x56\x93\x20\x1e\x85\x42\xa1\xde\x55\xb6\xfc\x5d\xd3\xf0\x85\x24\x81\xeb\xe6\xea\x7a\xc7\x49\x95\xf7\x59\x34\x63\xed\x7b\x75\x53\x13\x06\xd2\x1e\x9a\x6d\x9b\xe6\xc3\xee\x3a\xcf\x04\x07\x4d\xd7\x64\xa1\xbb\x83\xfc\x6f\xbb\x96\x3c\x13\xe4\x77\xa0\x6f\x69\xc4\x89\x76\x2d\x04\x86\xed\x47\xf2\x1a\x1c\xc7\x24\xe3\x9e\x67\x82\xef\xa7\xef\x17\xa4\xfe\x48\x59\x53\xcb\xd4\x49\x3a\xc1\xc9\x24\x07\xc4\x81\xce\x9e\xbe\xfc\x71\x3a\x85\xa2\x74\xf6\xc1\xec\xe2\xcf\xff\xfe\xc3\xd3\xd7\x7f\xbd\x78\xfe\xf2\xed\xd3\x3f\xbd\x3e\x7f\xfb\xfc\xd5\x4b\xb4\xdf\x4f\xca\xe9\x74\xd2\x74\x08\xb7\x0d\xe3\xce\x96\x44\x2e\x7f\x0f\x15\x10\x66\x85\xd6\xa5\x81\xea\xfc\xd1\xef\x8d\xcb\xab\x93\xb6\xe6\xae\xc3\x82\xd5\x13\x9d\xe7\xe2\x22\x87\x84\xce\x0f\x9b\x93\x13\x54\x2f\xe9\xb2\x59\xad\x0a\x22\xff\x37\xd4\x65\x98\x43\x8a\xb2\x11\xf7\xe2\x91\x34\x8b\xe0\x71\x15\xd2\xcd\xa5\x3e\xc8\x3a\x35\x82\x45\xba\x8c\x78\x0f\xc4\x27\xa1\xbb\x1d\xe4\x60\x64\x78\x3b\x36\x0e\x3b\xc8\x31\xe5\x0a\xb2\x49\xeb\x35\x29\x98\xd2\x52\x69\x5e\xc6\x99\x93\xe0\x64\x94\x5e\x38\xc6\x5d\xd5\x07\x87\x16\xff\x28\x0f\x20\x87\xd1\x95\xba\x3c\x1f\x29\xac\x17\x48\xf0\x22\x67\xc8\x9d\x60\xed\x4d\x90\x99\x09\x0e\x30\x81\xf7\x99\xa6\xda\xc2\x2f\x37\xd9\x5f\x91\x17\xa7\x55\xbb\x60\x9d\x1e\x34\xee\xb7\xe1\x8c\x2b\xb8\xdd\xa6\x70\x06\x34\xc8\x12\xfa\xee\x28\x45\xa7\x99\x64\x83\x29\xe6\xd8\x73\xad\xf2\xc0\xc0\xe4\xbc\xd4\x44\x52\x2e\x20\x9f\x7b\x2a\xd6\x5d\x2b\x31\x99\x75\xca\x9f\xe4\x98\xcd\xd0\x47\xcb\xf3\xee\x12\xa7\xd1\xbf\x89\x7c\x81\x23\x41\x05\xbe\x7f\xf5\xc6\x27\x03\x69\xb9\xa6\x76\xe4\x9a\xf4\x30\x58\x88\xa9\x4d\x51\x0b\x38\x96\x03\x8b\x68\xc4\x0a\x0e\x89\x37\x25\xce\xbe\xff\xc1\x27\x09\xd5\x90\x3f\x8c\x52\x98\xce\x68\xd5\xef\x6b\x00\x9e\x42\xd2\xf2\x5c\xd7\x10\xce\x9e\x3c\xfd\xee\xe9\xdb\xa7\x62\xaf\x2e\xc4\x5d\x7d\xfd\xfc\xc9\x33\xd6\x5c\x25\x3d\xd0\xf0\xd0\x86\x01\x52\x71\xa4\x6c\xf2\xe0\x15\xd6\x14\x74\x49\xad\x9f\x35\x30\xbb\x76\xd6\x15\xe9\x39\x9a\x35\xa8\x28\x8a\xf2\xcc\xfb\xaa\xc8\xb2\x45\xce\x8a\x06\xd7\x45\x76\x46\xab\x22\x3b\x29\x71\xcc\x15\x42\x49\xb6\xd6\xb8\x4a\xea\xaa\xfd\x89\xf2\xcd\xd9\x83\xd3\x49\xa1\x72\x4d\x09\x36\xa7\xc6\xda\x4f\xe0\x81\x36\x8d\xa2\x05\x33\xcd\xf3\x1a\x52\xc9\xfa\x73\xf0\xed\xfd\x26\x5a\xc5\xd6\x9e\x43\x28\xf0\xd2\xb9\x2a\x7f\xfe\xe1\xf5\x77\xdf\xc9\x3a\x36\xbf\x9f\xff\xf1\xff\x1c\x69\x3f\x93\x72\x83\x60\xd4\x5f\x94\xd7\x58\x92\x56\x0d\x77\xb7\xcf\x11\xef\x33\x9a\xdc\xd6\x8b\x08\xf6\x53\x45\x1d\x81\x23\x0a\x45\x50\xfc\x93\xf0\x9c\xe2\xe5\x0a\x61\xe9\x08\x45\x55\xa1\x4e\x8e\x3a\x9d\xc4\xd2\xf1\x4c\x8a\x8c\x25\x50\xd1\xfb\xd3\xc6\x1d\xcd\x71\x19\x9f\xc2\x72\xbe\x42\x42\xce\x59\x5a\xa6\x21\xb2\x0c\xeb\xab\xdf\x77\x45\x24\x33\x5a\x69\x2e\xf6\x84\x8e\xf4\x06\x9c\x34\x27\xfc\x6b\x50\x21\x89\xd1\x5b\xb9\x94\xe5\x0a\x21\xdc\x9c\x14\x5c\x69\x86\x6c\xca\xbb\x51\xbb\xac\x57\xca\xdd\x51\xf0\x7b\x6d\x87\x72\x8e\x29\xce\xa6\xb4\x6a\xff\xd7\xbf\x7d\xf3\xbf\xfe\xed\x49\x91\x19\xc7\x8d\xd8\x04\xb5\x7c\x63\x3b\x11\x14\xa1\xc3\xbe\xe8\x14\x52\x60\x99\x8d\x41\x19\xe9\xde\xec\xd6\x6b\xd2\x2a\x59\xdb\x04\x8d\xb1\x91\x6d\xa1\x54\xf7\x41\x0b\x29\xc4\xb9\x6a\xfd\x9c\x29\x4b\x8f\xde\x39\x69\x3c\x6b\xd8\x15\x10\x2f\x68\x63\xa4\x39\xa5\x98\x51\x64\x4b\x1b\x9e\xab\x27\x20\x63\x92\xea\x85\xb4\xa6\x98\x09\x8f\x94\x43\x33\x91\x0e\xcd\xe3\x3f\xce\x4f\x17\xde\x44\x7a\xfa\xf9\xbc\xc1\xa5\x74\x95\x1d\xff\x71\xfe\x07\xbf\xb1\xaf\x86\xf7\x5a\xfe\xd1\x6f\xe9\x29\xda\xbd\x86\xff\x9f\xdf\xd0\xd3\xa1\xcb\x86\xda\xdb\x56\x48\x54\x5f\x17\xff\x36\x9f\xfb\xa0\x73\x74\xe4\xd0\xbe\xf3\xde\xaa\x8f\xe5\x1b\x6c\xb6\x29\xe5\x96\x48\xbe\x2e\x7e\x3f\x9f\x4f\xa7\xe4\xd1\x1f\xe6\xf3\xfd\xfe\x0f\xf3\x3f\x0a\xd6\x5d\x7c\xa8\x76\x28\xf5\xe1\x1f\x7f\xff\x7b\xd9\x52\x10\xee\xe8\x25\x24\xf7\x11\x97\x3d\x77\x45\x2d\x9e\x64\x08\x5f\x16\x77\x3b\xb6\x5d\x10\x2c\xe5\xbe\x05\xef\xf0\xa6\x68\x66\x8e\xc6\x35\xb8\x18\xcb\x33\xa9\x20\x05\xf5\x92\x62\xd1\xf3\x4d\xe8\xbe\x47\x02\xe1\x09\x14\x4c\x9b\xb2\xdd\xe4\x77\xda\x7b\x6e\x41\xf0\x75\x79\xbb\x6d\xca\x4a\xca\xd2\x31\x97\x41\x71\x5d\x5e\xc2\xd9\xe8\xf7\xaf\xc3\x71\x74\x7f\x98\x15\x64\xa6\x7a\x94\x5e\x73\xcd\x07\x14\x9a\x01\x03\x46\x66\x9b\x5b\x3e\x52\x2d\x14\x53\xd4\xe5\x0d\x66\x98\xe3\x4b\x34\x92\x9e\x71\xe9\x08\x49\xb7\x83\xc6\x55\x68\x14\x35\x96\x7a\x27\x8a\x1b\xd3\xa1\xf4\xe9\x40\x1d\x82\xb0\x59\x1a\x44\x9b\x6d\x66\xad\x44\x15\xaf\x8e\xa4\x9d\x6c\x6a\x11\xeb\xe4\x22\xc4\xaf\x4b\x34\x92\x5b\xc0\x76\xca\xe1\x1a\x66\x41\x44\x13\xbc\x91\x53\x76\xbb\x3e\x6a\x40\x8e\x46\x9e\xfa\xa6\x60\x26\x6f\x31\xa8\x44\x7c\x8a\xc1\xcd\x1e\xbd\x25\x3f\x73\x5b\x48\x29\x97\x0c\x8e\x9c\x2b\x49\xcf\x95\xc3\x5c\x9b\xd9\x05\xb0\x28\x1b\xd4\xe1\xec\xc9\x9b\xc5\xf8\xf5\xd3\x37\x6f\x95\xa2\xeb\x5f\xc4\x1b\x55\x23\x9e\x37\xe3\xec\x84\x08\x96\x44\x3c\x54\x18\xea\x89\xb4\x52\x95\x29\x19\x1e\x68\x58\xa7\x5a\x42\x25\xb4\xbe\x7b\x24\xb4\x1f\x57\x0d\x69\xc1\xd2\xd7\x12\x72\xa5\x1c\x40\x75\xd1\x7a\x5a\x8f\x6f\x9b\x1d\x1b\x97\xd7\xd7\xd6\x2f\xb2\xf9\x48\x18\xa3\x15\x58\x59\x3f\xd2\x72\xfc\xdf\x65\x55\xbd\x62\xaf\xd4\xd3\x37\x65\x5d\xbd\x6b\x7e\xfe\x13\x38\x53\xb6\xff\x0d\xe5\x85\x37\x64\xac\xf5\x0a\xca\x54\x77\x96\xa1\x51\x6d\x67\xee\x9e\xc2\x88\xd8\x0e\x07\x4b\xfa\x78\x2a\x57\x52\xe3\x07\x99\x4b\x7d\x22\xd1\x38\xfe\x4f\xf0\xfe\x54\x5b\xe4\xcd\x3b\x4d\xaa\x62\x74\x87\xa0\x45\xf8\x81\x86\xd7\x8c\xb6\xcf\xca\x96\x7f\x03\x2a\x19\xf5\xad\xbb\xcf\xe2\x5b\xf9\xd4\x7f\xd8\x0d\x5a\x9b\xb4\x13\x4c\xd9\xb6\xf4\x7d\x9d\x07\xb4\x13\x22\xb1\x04\x09\x55\xc6\xf7\xbe\xa3\xb8\xd2\x1e\x4a\x37\x71\x13\xa4\x54\x9f\x31\xad\x9e\x0c\xfa\xef\xb0\x79\x83\x6b\xc1\x65\xaa\x3f\xf6\xfb\xdc\x7e\x22\x6d\x5e\x82\xfb\x9f\x4e\x41\x76\x02\x76\x15\x3c\x02\x4c\x01\xb2\xb4\x0d\xec\x6f\x6d\x53\x3f\x1c\xaf\x37\xe2\xdc\xf2\x62\xc7\x2f\x1f\xfc\x9f\x6c\x64\x3a\x5f\x66\xea\xcb\x07\xa2\xbf\x6c\x55\x50\x75\xdb\xe5\x7d\xf7\x78\x67\xaf\x36\x4a\xf0\x43\x01\x77\x2a\xf5\x78\x32\x42\x5d\x9a\xc5\x6c\x4e\x58\xae\x54\x94\x76\x11\xc4\xa6\x36\x15\x2f\x12\x4a\x41\xdd\x85\xb2\xf7\x1d\x5c\x9c\xd5\x22\xce\xde\x91\xcb\x86\x91\x37\xa4\xae\xbc\xfa\x97\xbe\xe2\x53\x2b\x8e\xfb\x7c\x9c\xa3\x96\x15\xfc\xb0\x42\x22\xa9\xee\xcd\x19\x36\x9f\x2e\xd9\x4a\x96\xf6\xed\x34\x58\x90\x38\x7c\x85\xc5\x3f\xc1\xdf\x32\xf1\x0c\x61\xa6\x8e\x85\x2f\x45\x01\x2d\x3a\x0a\xd7\x7d\x7b\x5d\xa4\x31\x93\xd3\x94\x92\xce\xba\xd9\x42\x40\xdc\xc1\xd6\x32\xf6\x01\x0a\x23\xf8\x21\x0c\x8a\xa2\x64\x82\xfa\x12\x15\xb1\xbe\xe1\xfc\xba\x0d\x22\x1a\x10\x67\xb7\x06\x5c\x27\xd9\x57\x5f\x41\x30\x83\xd2\xfa\xd7\xe8\xae\x47\x86\xfe\xda\xec\xc6\x25\x23\xe3\x5d\x4b\xeb\xf7\x92\x8f\x18\x3f\x29\x79\x39\xbe\xa1\x7c\x33\xae\x9b\xb1\x98\x52\x9f\xe2\xca\x1b\x61\x36\x06\x57\xfd\x1b\xba\xdd\x8e\x4b\xce\xc9\xd5\x35\x17\x44\x69\xd7\x12\x20\x48\xf0\x69\x73\x09\xbf\x35\xe8\xc6\x6a\xa9\x78\x7c\xb3\xa1\xeb\xcd\x98\x4a\xea\x2e\x15\xaf\x3b\x46\xaa\xf1\xa5\x22\x7d\x2a\x33\xbc\xd3\x0b\x44\x05\x48\x40\x8d\xbf\xdf\x12\xc1\x68\xb6\x84\x9b\xa1\x7e\xda\x50\x4e\xb6\xb4\xe5\x26\x99\x1c\xf4\xa5\xe7\xec\x28\x75\x67\x7f\x6b\x67\x76\x46\x00\x89\xc5\x38\x3b\xa9\xb5\x97\x92\x75\xef\x26\x1d\xee\xdf\xb5\xb1\x80\x65\xb0\xbe\x71\x37\x80\x82\x68\x63\x0b\x43\x77\x8e\xb7\x78\x9c\xe1\x4f\xf1\x9f\x2c\x92\x7d\x03\x52\x19\x48\x51\xe2\x4c\xff\x58\x2c\xb5\x6d\x25\xcb\x4e\x08\x56\x16\xaa\xb7\x1b\x32\x7e\x57\xae\x3f\x90\xba\x52\xf1\x14\x15\xa9\xe4\xce\x96\xb5\xf2\x47\xd1\x76\xab\x2c\x3b\x61\xdd\xaa\xc3\x29\x59\x23\xa5\xa7\xc2\x4d\xc1\x43\xfa\xb5\xdf\x67\x4f\xaf\xae\xf9\xed\xf8\xb1\x7a\x2c\x68\x46\x66\x9c\xd1\x0b\xa7\x74\x5b\x51\x14\x8d\x58\x8f\x14\xe3\xbe\xfe\xfd\xbf\xcd\xcf\xb2\xe5\xab\x2b\xca\x39\xa9\xc6\x52\x88\xbe\x1d\x7f\xfb\xf6\xc5\x77\xab\x6c\xc1\xf0\x32\x73\x30\x54\xdb\xd9\xb2\x93\xbc\x56\x16\x15\xb0\xb0\xd5\x70\xc4\x4f\xb2\xb1\x1c\x8f\x54\xe3\x52\x30\x2b\x38\xfb\x5e\xf2\xad\xe3\x3c\x3b\x69\x4e\x32\x94\x61\xba\x52\xca\x80\xff\xaa\xc5\x45\x69\x55\xca\xb1\x64\x2d\x50\x43\x89\x58\x9b\xa1\x72\xe0\x97\x7e\x99\xfa\xaf\xc2\xe6\xdd\xe3\xbe\xf9\xfb\x90\x9f\xcf\x47\xc2\x5a\x2a\x68\xf5\xaf\xe4\x3d\x6d\x1f\x64\x7f\x98\x9d\xfe\x7e\xf6\xc7\x2c\x31\xc1\x75\x59\x97\xec\xf6\xc1\x25\x29\xf9\x8e\x91\xf6\x2b\xf5\x99\x79\xf0\x4f\x98\xf1\xdd\x9b\xf3\x17\xdf\x7f\xf7\xf4\xe2\xd9\xd3\xf3\xb7\x3f\xbc\x7e\x7a\xf1\xec\xbb\xf3\x3f\x49\xf7\xe7\xd7\x4f\x1f\xbf\x7a\xfd\xe4\xe2\xc9\xf9\xdb\xf3\x8b\xa7\xaf\x5f\xbf\x7a\xfd\xa6\xff\xfc\xcd\xdb\xf3\xb7\x4f\x55\x79\xe1\xe3\x96\x7c\xc0\x07\xeb\x20\x84\x8e\x76\x24\xd6\xe7\x3e\x8f\x06\x4f\xbf\xb9\xbd\x7a\xd7\x6c\xa7\xd3\xac\x85\x1f\xe1\x8b\x19\xe5\x32\x85\xc6\x59\x44\x42\xd4\x05\x08\xbb\x68\x35\xcd\xe9\x74\x60\x38\xb8\xf9\x5b\xce\x76\x6b\xde\xb0\xa2\x28\xcc\xf3\x89\xfe\x6d\xf5\x79\x67\x7a\x6e\x0b\x33\x20\x12\x94\xf0\x13\x76\xbf\xb7\x65\x85\xff\x4c\x6e\x6f\x41\x66\x11\x64\x28\xc8\x4c\xfd\xf9\xc6\xf7\x60\xb5\xc4\xb4\xc8\x1d\x1f\x0b\xb3\x66\x20\x2f\x82\xba\x3c\x7d\xf9\xe3\x99\xd3\x60\xc1\x72\xf7\x15\x84\xe5\xca\x38\x32\xef\x0b\xf7\x8f\xc5\x5d\x17\x75\x97\x9d\xe4\x93\x7a\xf6\xf4\xe5\xf9\x37\xdf\x3d\xbd\x78\xf5\xfd\xdb\xe7\xaf\x5e\x9e\x7f\xa7\x27\xff\x66\xbf\x57\xdd\x12\xb4\xdf\x13\x55\x99\x3b\xe4\x56\x8d\x41\x16\xd7\x66\x99\xe0\x3e\xa9\x97\xdc\x28\xaf\x54\x9a\x37\x31\xe8\x80\x0b\x62\x04\x68\xda\xef\x54\x7c\xd6\x87\xb4\xf8\x2a\x02\x7f\xed\x6e\x1a\x7e\x04\x5b\x16\x7e\x23\xf7\x71\x97\x38\x76\xa0\xa6\x4e\xa4\x3b\x18\x70\xd3\x1f\x3c\x8c\xb1\x4f\x0f\x7b\x02\x91\x59\xc9\xb9\x27\xb1\xd7\xb1\x6a\x9e\x67\x79\x5d\x10\x4c\x14\x8a\xa1\x45\x5d\xd4\xfb\xfd\x5d\xa7\xbc\x7e\x74\x49\x47\xda\x9e\x73\xce\xe8\xbb\x1d\x07\x0f\xc5\x0f\xb4\xae\x16\x59\xa9\x1f\x65\xb8\x51\x62\x50\x6d\x3c\x14\x02\x83\xf6\x9d\xe7\xd4\x68\xae\x20\xc9\xd8\x42\x91\xbe\xba\xdc\xbe\x10\xc0\x0b\x83\xb0\x7c\xaf\x86\x19\x03\xbd\xb6\xc0\xcf\x67\x8d\xa0\x36\xb3\x4d\x09\x73\xcb\x19\x78\x98\x10\x74\x06\xdc\xa9\x99\xee\x8f\xe2\x3c\x0a\x19\x2e\xce\x9d\x44\x68\x86\x41\x4d\xf8\xf4\xcc\xff\x33\x5e\x8c\x64\xe1\x37\xea\x24\x6f\x5c\x43\xe4\x70\xeb\x2d\x5c\xf9\x5f\xb0\x08\x1a\x4e\xa7\x11\x68\xcc\x2e\xec\x82\xf5\xba\x72\x82\x26\x45\xc1\x3d\x9b\xa8\x60\xc8\x95\xff\xbe\x10\xfc\xe1\x6f\x02\x81\xf7\x8c\x5c\x35\x90\x63\x52\x9a\xce\x2e\xae\x4a\xf6\x41\x69\x0c\x15\xf7\x71\xde\x3e\xde\x92\xb2\xce\xed\xb5\x1f\x99\x47\x4b\xf8\x13\xca\xf8\xad\x01\xac\x4a\x26\x80\x04\xdb\x52\xe6\x14\x22\xed\xde\x69\x4b\x5d\xcc\x47\x09\xd3\x51\x0c\xfd\x58\x41\x30\x35\xe8\x97\xb3\x82\x63\x5a\x10\x84\x6d\xae\x40\x1d\x25\x38\x9d\xe6\xb4\xa8\xad\xba\xf9\x85\x36\x09\xe5\x14\x69\x85\xb4\x44\x58\x8a\x69\xfb\x9a\x6c\x41\xb4\x6b\x37\x14\x8a\xff\x68\x14\x65\x05\x13\x08\xae\x70\xd8\xcc\x38\xc3\x32\x5f\x8a\x32\x36\x8e\xc5\x93\x0f\xe4\x56\xd5\xb8\x39\x12\xa9\x07\xe0\xf7\x9e\x70\x9b\x55\x22\x8e\x17\x47\x40\xdf\xe9\x02\x73\xbd\xa3\xc3\x03\xe9\x1d\x6a\x60\x87\x36\xd2\xac\x1b\xec\x4f\x7f\x5f\x20\x00\xc8\xa1\x0b\x98\x17\x1c\xc0\xd6\xdb\x16\x10\xbb\xe3\xdb\x42\x90\x2e\x68\xa5\xe9\x88\xde\x04\x1e\xd9\x20\xb9\x21\x6a\x82\x7a\x3b\xbe\x2d\xdb\xb1\xfc\xfb\x33\x6f\x86\xce\x0d\x12\xdf\x8a\x83\xd4\x89\x99\x2d\x31\x1d\x89\x0d\x61\x41\xd7\x1a\xf8\xec\xf3\x85\x2a\xca\x1b\xe6\x00\x3b\x17\x5e\x43\xc7\x87\x88\x7d\x41\x7f\x7a\x71\x5f\x1c\xed\x46\x2f\x1a\x0f\x7a\xcf\x3b\x27\xf7\xc8\x2e\xcd\x17\x83\xfd\x1a\x04\x3c\xb2\x57\xd5\xfe\xb3\x7a\xfa\x03\xaa\xa5\xfd\xfc\xe5\xee\xfe\x66\xa5\x2d\x1b\xff\x1d\x65\x84\x06\x26\xe9\x2a\xa4\xfc\x54\x48\x86\xba\x0c\x39\x06\x45\x9d\xf1\xe5\x1b\xf2\x33\x54\xdc\x15\x5d\x57\x15\x51\x0e\x5e\xad\x0a\x4c\x94\x11\x89\x0d\x23\x98\x40\xc8\xf8\x07\x72\x0b\xd1\xb1\x0e\x7d\x4a\x70\x0f\x66\xa9\x99\x0c\x2c\x80\xae\x36\x65\x6b\xdc\x08\xd5\x40\x52\x4d\x0c\x79\x3c\xb2\x8a\xa4\xbe\x7a\x62\xdf\x84\xdf\x49\xc5\xb4\x9c\x98\x7b\x05\x33\xad\x9c\x76\x97\x2e\xd8\x6e\x1b\xd0\x9b\xce\xd4\xa2\x1d\x3c\x3e\x90\x5b\x63\x0c\xae\x1b\x33\x77\x39\xf8\x9b\x6b\xb2\xa6\x97\x94\x54\x79\x8d\x50\x04\xcc\x90\x34\xc2\x71\xb2\x71\x57\xff\xdc\xac\xc0\xfa\xb7\xa5\xa1\x53\x23\x5c\x16\x0e\x13\x91\xd7\xa0\x46\xa4\xba\xe6\xb3\x1c\xfc\x3d\xe1\x2f\xca\xeb\x6b\x52\xfd\x85\xdc\xe6\x30\x77\x2c\xd5\xbf\x68\xd4\x0a\x70\x8a\x27\x0a\xa4\xfd\x7d\x9c\x4e\x73\xd5\x4f\xff\x9d\xea\x8c\xcd\xc4\x45\x84\x9d\xad\x45\x08\x97\x67\x39\x5f\xb6\xab\xa2\x84\x48\x82\x99\xba\xc6\x66\xd7\xcd\xf6\xf6\xaa\x61\xd7\x1b\xba\x56\x43\x9a\xaf\xbe\xb7\xaf\x64\x1a\x24\x69\x5a\x5f\x40\x37\x70\x8f\x81\x17\x6b\xa3\xb9\x3e\xf3\xa1\x46\x51\xef\xaa\x87\x40\x43\x3c\xd0\x28\xb1\xb7\x2e\x34\x61\x79\x48\xbb\x78\x0c\xc1\x91\x1e\x03\x47\xfa\x29\x70\xac\x05\x1c\xe9\xaa\x70\x22\x39\xf2\x20\x8d\x84\x3c\x8e\x92\x6b\xd5\xcb\x7c\xd6\x30\x42\xdf\xd7\x62\xa6\xd2\xc1\x48\x74\x82\x7e\xe9\x46\x50\xb5\x11\xf6\xa8\xa4\x52\x22\x7d\xb6\x83\x32\xd6\x5f\xa7\x4e\x89\xe7\xaf\xf6\xcf\xd9\x23\x00\x8c\xe1\x14\xf3\x1a\x83\xff\x21\x70\x24\xd2\x79\xff\xd0\x29\x3e\x4b\x60\xb4\xc3\x29\x19\xba\x15\xc0\xe1\xbc\xae\xc4\x26\xd9\xbe\x7a\xc7\x43\x75\x72\xde\x3a\xad\xf5\x09\xc1\xc3\xcd\x86\xae\x8e\x90\xb2\x4a\xf8\xb8\x80\x81\xc8\x0a\x0d\x14\x79\x96\x46\x7c\x59\xaf\xd4\x75\x75\x9e\x53\x34\xbb\x2a\xaf\x23\xae\x0d\x77\xb4\x5a\x10\x70\x5a\x03\x26\xd8\xba\xb2\x81\x4b\x67\x12\x4e\x83\x37\xdd\x00\x66\xd4\xc7\x60\x46\xfd\x69\x98\x51\xaf\xcc\xf8\x52\xc5\x6e\x36\xcf\xd9\x5d\xd8\x89\x64\x83\x80\xd3\x76\xb3\xec\x68\xe8\x72\x49\xa9\x6a\x03\x5a\x26\xa0\x5f\x93\x9b\xb1\xca\x3a\x62\xea\x02\x4a\x67\x71\x93\x78\xa4\x39\x39\xd1\x15\x6f\xeb\x65\xb3\xc2\x6d\x51\xa6\x09\xcd\xe8\x10\xa1\x29\x31\xc7\x2d\xc2\x74\xd9\xac\x8a\xd6\x24\x98\xe9\x70\xea\x93\x88\x79\x81\x5e\xe6\x0e\xa3\x2a\x37\x86\xd6\x95\x3e\xe5\x72\xcb\x66\xb4\x86\xf2\xfa\xcf\xc0\xc1\x4a\x40\xdf\x72\x24\xee\x0d\xd8\x14\x54\xa6\x2c\x50\x2e\x55\xd0\x60\x20\xdb\x4e\x6c\x77\x1b\x4c\xd5\xce\xba\x6c\x08\x1a\x95\xd3\xa9\xf4\xd9\x1c\xd7\xcb\x72\xd5\x75\x1d\xde\x94\xad\x5e\xe2\xf9\xf6\xa6\xbc\x55\x67\x32\x62\x56\x90\x5e\xa1\x9c\x33\xcb\xae\x18\xe6\x6b\x3a\xcd\x4a\xf8\x5a\x2c\x9e\xcf\x88\xea\x11\xba\x8f\x13\x90\xd4\x00\x89\xf9\xa8\x28\x83\x81\x29\xec\xf7\x6c\x3a\xcd\xa4\x1a\xa5\x95\x7b\x60\x56\xee\xcf\xe3\xf9\xa1\x39\x24\x17\x99\x67\xb4\x52\x4b\x34\x7d\xef\xf7\x19\xad\x82\x67\xa8\x37\xa0\x4f\xf1\x3e\x6d\xe0\x07\x65\x5d\x81\xd9\x2a\x3a\x05\xf3\xb6\x3f\x97\xf4\x1d\x76\xaf\x89\x4c\x72\x59\xcd\xda\x19\xd7\x6e\x35\x92\x6b\x4e\xf1\xb6\xbf\xc6\x76\x3b\xa8\xde\x61\xe7\xb3\xd4\xd8\xa0\x4c\x83\x76\x99\x07\x6b\xbe\x4c\x25\xbd\x5b\xed\xf7\x1c\x2a\x18\xe3\x84\xa4\x31\x18\x25\x60\x95\x0a\xa4\x5c\x6f\xbc\xf3\xea\xa4\x91\x68\xd0\x1d\x19\x94\x12\x18\x12\xf8\xa0\xe5\x57\xc8\x34\x26\x8e\xfa\x74\x4a\x7b\xf2\x8f\xcd\x8c\xca\x70\x8d\x1b\x84\x7d\x2a\x95\xfe\xd0\xcd\x8c\x2a\x3f\x15\x42\x6a\xdd\x5f\xf7\xa1\x28\x05\xeb\x47\xc0\x70\x26\xc4\xc6\x19\x73\xd6\xdd\xce\xc0\x47\x0b\xfc\x36\x32\x4d\x03\x6d\x9e\x35\x7b\x15\x50\x5b\x22\xb6\x98\x3f\x2c\x1f\x51\x37\xe3\x9a\x94\x1b\xf0\xae\xa0\xcb\x72\x85\xb5\x1b\x85\xb5\x5e\x9b\x2d\x72\x00\x2e\xf8\xcb\x1d\xc2\xeb\x62\x0b\x83\xe3\xcb\x62\xab\x0d\xa3\xe0\x2d\xc8\xcc\x5f\x85\xfd\xb9\xdf\x2f\x57\xd8\xfe\x29\x7d\x75\xd7\x08\x5f\xa2\xbc\x75\x9a\x49\xcf\x67\xa5\x42\x6e\xf1\x25\x1a\x35\xcb\x72\x55\x08\xfe\x60\x6d\xf8\x83\x35\xdc\x09\xb2\x90\xf3\xa6\xd0\xb1\x04\xca\xdf\xad\x1d\x82\x17\xde\x80\x90\x90\xda\xb1\xcf\xb9\x15\xb0\x0d\xfa\x1e\x3a\x02\xa2\x14\xc1\x5d\x0c\x10\xdd\x09\x29\xea\x93\x20\xda\x22\xbc\x43\x79\x93\x82\x68\x83\x77\x48\xa5\xfe\x30\x81\x33\x8b\xd6\x00\xb6\x55\x80\x3d\x0a\x94\x5b\x00\xe5\xe0\xc2\x52\xfc\x19\x0c\x33\xe2\x71\xd9\x24\xaf\xb5\xc7\x95\x49\x97\x07\x17\xb6\xb8\xbb\x6b\xc7\xe1\xc8\xbf\xd5\x6b\x64\xd5\xab\x39\x15\x7b\xb7\xdb\x6e\xc1\x69\x38\x20\x33\xa0\x34\xb1\xd9\xf8\x58\x3c\xb5\x98\xcd\xf5\xa5\xf2\x74\xf9\x0f\xc4\x81\x2e\x98\x93\x72\x21\x95\x1b\xcc\x78\x1a\xd1\xf6\x65\x53\x13\x30\x38\x4c\x20\x63\xce\xac\xdc\x6e\x9b\x9b\x97\x62\x96\xda\xe7\xd9\xa9\x51\xa2\x14\xc7\xba\xc0\xc3\xbb\xa6\xd9\x92\xb2\x06\x5a\x7d\x46\x16\x56\xc3\x5c\xb0\xb3\xaf\xfe\x6f\xce\xd9\x8e\xec\xf9\xfe\x14\xfd\xee\x2b\xaa\x7d\x84\x9c\x2a\x8d\x05\x9b\x4e\x4f\xa5\x83\xf3\x81\x1c\x66\x07\xe7\x2a\xeb\x0a\x7c\x23\xa7\x23\xd5\xb7\x98\x1e\x84\x84\xb9\x3a\xf4\xb2\x64\x89\x71\xbd\x06\xee\xba\x5b\xa8\xf8\xd7\x13\x73\xaf\xc8\x90\x91\xe9\x54\xa7\x12\x7f\xf0\x6f\xb0\xec\x9c\x9d\x14\x7f\xc0\x82\xcc\x3d\x91\x89\x80\x64\xf9\xd2\x39\x66\xe8\x24\x5b\x64\x27\xfa\x01\x43\x48\xfa\x08\xcb\x66\xda\x82\xe3\x40\x87\x9f\x39\xaf\x17\x32\xc3\x39\x39\x53\x1b\x1d\x85\x98\x35\xa9\xbb\xf1\xee\xa2\x87\xe9\x74\x42\xdb\x97\xe5\x4b\x48\x3b\x3b\xe3\xcd\xf3\x37\xaf\xe4\x55\x98\x23\xed\x8b\x30\x72\xb3\x21\xd9\x9e\xa0\x56\x13\x99\x14\xc5\xe9\x57\x73\xf9\xe3\xc1\xe9\x57\xf3\x4e\xb2\xea\x47\x02\x58\xa3\x0b\x84\x1f\x4b\x23\xb3\x58\x0a\xec\x59\x93\xf3\x42\xe6\xfd\xca\x09\x42\x67\x7c\x70\x79\x9f\xd8\x5b\x27\x68\xd8\xe1\xb9\xc6\x91\x4d\x76\xac\xa0\x25\x6d\x0e\x9f\xfe\xb1\xcc\xa5\x2b\xd1\xf4\x2d\x2b\xeb\xf6\xb2\x61\x57\x45\x8d\xc9\x4c\xec\x92\x7d\x42\xb1\x0c\xed\x0d\x09\x04\x78\x50\xca\x05\xda\xc6\x25\x26\x8a\xb1\xb1\xcf\x5a\x4c\x66\xf6\x2f\x86\x15\xb1\xfa\xb6\xb4\xe6\xe0\x57\x9e\x7c\x21\xe4\x0e\xe0\x67\x8b\xe4\xaa\xc0\x32\x89\xad\xf1\xb8\xcd\x90\x4c\x5b\x0b\x2c\x2a\xda\xef\xbd\x66\x1e\x65\xfe\xe6\x56\xf4\xef\xb7\xff\x6c\x76\x15\x47\x6b\x7d\xc0\xb8\xe2\xb4\xb4\x3f\x87\x1d\x64\x3e\x9f\x11\xe5\x7e\xa6\x04\x7e\x38\x69\x90\xb3\x9a\x78\xde\xa0\xe1\xe4\x40\xc1\xe7\x9f\xe6\xab\xf0\xb9\xf2\x05\xb1\x5e\xbe\x20\x7b\x85\x3f\x69\xd6\x60\xad\x97\xe5\x55\x42\x8f\x59\xc7\xa9\x46\xe2\x9f\xc0\xae\x57\x97\xda\x75\x18\x29\xc7\xe2\x80\xdf\x79\xad\x32\x76\xa9\x92\x2d\x3a\xf9\x40\x3c\x57\xaa\xee\xca\xf0\xb1\xdc\xe1\x63\xe5\x4b\xc3\xcc\xb2\x62\xfe\x90\x3d\xf2\x1e\x3e\x64\x9a\xa3\xad\x0b\xf9\x62\xc9\x56\x23\x48\xf3\x30\x3c\xab\x1a\x75\x7a\xf6\x5d\x64\x52\x86\x95\xb2\x13\x73\x74\x2d\x4a\xc3\x62\x9b\x45\x54\x2d\xf6\xa5\xd4\xb9\x0c\x4f\xa7\x44\x23\x9d\xbe\xda\x64\x1e\x6f\xc5\x14\x0d\x17\x48\x1d\xcf\x55\xb7\x1b\x4b\x09\x9e\x94\xbc\x8c\xec\xa3\xe1\x9e\x20\x11\x9e\x8c\x64\xd4\xda\x90\x67\xac\xb9\x52\xce\x93\xa0\xdd\x91\x4c\x18\x0e\x86\x70\x67\x1a\xb9\x33\xe8\x65\xce\x8f\xeb\x37\x4b\x34\xc8\xf0\xc4\xd1\xdd\x5c\x08\x61\x4d\xb3\x7f\x3c\x5a\xcf\xcd\x36\xbe\xb2\x0d\xfd\x90\xf6\x98\x1a\xc8\x65\x18\x19\x26\x08\x10\xa0\xc3\x02\xda\x6a\x32\x03\x16\xef\xc4\x99\x11\x03\x13\x9d\x37\x3e\x80\x5b\x34\x0a\xb1\x86\xa0\x26\xdf\x10\x9f\xea\x9b\x21\xc7\xaf\xd8\xa9\x88\xd0\xef\x5b\xa7\xc4\x70\x54\xec\x4a\x00\x90\x51\x6c\xc6\x2b\xc7\x26\x01\xc1\x4a\x26\x32\xb7\x56\x9b\x5c\x3d\xae\x9d\x34\x2b\xd2\x0c\x2d\xbf\x90\xa5\xf7\xd6\x1b\xab\x23\x0e\xf1\x83\x4a\xb5\x6b\x60\xa1\x0b\x14\x6d\x26\x96\xc3\xed\x7b\x49\x57\x42\x34\x58\x92\x55\xf8\x58\x49\xd7\x6a\xfe\x09\xf1\xe3\x18\x0a\x66\x83\x23\x7a\xc7\x33\x76\xae\x0c\xb5\xc2\xff\x34\x22\x16\x9d\x96\x4b\xcc\x7a\xdb\xeb\x7e\x73\xf4\x0e\x7b\x1c\x86\xde\xe4\xb8\x0e\x86\xd8\x78\x3e\x16\x53\xae\x92\x84\x72\xd5\x0d\xe1\x09\x06\x5c\x36\x2b\x4d\x46\xfb\x6f\x46\x80\x11\xc0\x72\x86\xcb\xcb\x4b\x90\x4e\x1c\xc5\x4b\x90\x8d\x2d\x74\x28\x4a\x11\x2c\x29\xae\xa2\x0e\x27\x1a\x44\x08\x6c\x3e\xc7\x7c\xd6\xd2\xfa\xfd\x6e\x5b\x32\x48\xe1\x06\xb9\xd9\xfa\x0e\x40\x28\x87\x5a\x88\xd7\xa6\x33\xd1\xb5\x79\x9b\xea\xd9\x49\x0d\x47\x5c\xa2\x10\x2c\xce\x3f\x9b\x7e\x20\xf2\x0f\x62\x76\x4f\xc8\x7a\x5b\x32\x52\xbd\x28\xaf\xaf\x81\x71\xc6\xee\x27\x08\xf7\xb6\xfe\xc8\x3e\xbc\xaf\x8c\x83\x13\xad\xa4\x41\x4b\xed\xc6\xf3\x4a\x79\x68\x41\xa0\x97\xeb\x82\xa0\x8d\x90\x08\xdb\xc9\x78\x9f\x5a\x22\xa5\x7c\x8a\x3c\xac\x76\x5b\x7a\xf8\x2e\xfd\xf1\xfc\x4c\x0d\x82\x2a\x1a\xfe\x5d\xb4\x60\x1e\x04\x74\x36\x13\xed\xf1\x60\x7d\x3c\x07\xe4\xe7\x48\x62\xbf\x7b\x78\x4c\x0c\x75\x92\x12\xdf\xdd\xab\xe9\x08\x72\xcf\x9c\xeb\x3f\x81\x7a\xb9\x63\x84\x73\xc1\x60\x66\x10\x87\x84\xab\x34\xab\xa5\x9a\x47\xdb\x73\x2f\xd6\x65\xfd\xc6\x56\x1e\x40\x3e\x7e\x7a\x54\xdd\xb8\xd7\x36\x85\xf4\xd1\xcd\x99\x52\xab\x29\x0f\x09\xae\x77\x4c\xdc\xe4\x14\x39\x16\xac\x06\xd7\x5a\xad\xa4\xb3\xf6\xc6\xcc\x81\xc6\x14\x58\xaa\x74\x97\x65\xc2\xc8\x19\xda\xf7\xdc\xbb\xa7\x5c\x15\x4d\xf7\xc9\x6e\x24\x3e\x3c\xac\x5d\xdb\x77\xef\xc0\x4d\x41\x05\x13\x28\xb5\xf5\xd3\xe9\x44\xff\x94\x2a\x78\xda\xbe\x24\x37\x92\x7e\xaa\xd2\x6c\x74\xbf\x6f\x04\x68\xbd\x33\x11\x52\x4e\x03\xe0\x28\x74\x6a\x0f\x3a\x75\x08\x1d\x8f\xc8\xd6\x9e\x9b\x99\x07\x2c\xe5\x67\x0e\xac\x1a\x6c\x5e\xab\x9c\x1c\x07\xf1\x8e\xba\x78\x47\xab\x05\x9d\xd1\xaa\x1b\x85\x94\xbf\x5c\x29\x05\x66\xdb\x75\xdd\x27\xba\x27\xc8\x24\xf4\x6f\x82\x4f\xa5\xfb\x84\xb3\x1b\xc6\xca\xef\xdf\x52\xf4\x78\x20\x37\xc3\x40\x6e\x24\x90\xd3\x96\xe8\x66\x08\xfa\xc6\x19\xcf\x87\xbd\x66\x3e\xca\x82\xce\x64\xa2\xd2\x58\x46\x01\x62\xf1\x8a\xc4\xf0\x0a\x14\x3a\x96\x7b\xb1\x8c\xcb\xae\x98\x3f\xdc\x3d\x32\x3c\xcb\x4e\xf3\x2c\xdb\x82\x2e\x77\x2b\xbc\x1e\xa6\x2d\x5b\xb7\xe0\x49\xbb\xdc\xad\x14\x62\xac\xc5\x86\x6f\xc5\x86\x77\xfd\xab\xde\xdd\x70\x93\x17\x85\x3a\x3e\x77\xcd\x71\xe2\xfb\x31\x5a\x8b\xc1\x0c\xa3\x49\xe9\x7e\xc8\x99\xf4\x7e\x0e\xa6\x5a\x2e\xf8\x02\x2a\x80\xd2\x0b\x34\xd1\xba\xa4\x2b\xc2\xde\x13\x21\x98\xf6\xd4\x03\xd7\x8c\x5e\x95\xec\x56\xf0\x39\x19\xad\x32\x0c\x2d\x2b\x35\x3c\x25\xed\x62\xa9\xec\x80\x2b\x1c\x5c\xa6\x43\xec\x65\x52\xd1\x65\xf5\xfb\x82\xc9\x34\x9d\x91\x2a\x26\x54\xa8\x24\x2e\x96\x73\x5c\x92\x95\x65\x3f\x83\x4b\x02\x12\xe1\x48\xa7\xff\x91\x68\x58\x34\xae\xd5\x33\x17\x8f\x70\x69\xee\x8e\x0e\xf2\x42\xe2\x63\x04\x38\x53\x68\x92\x1e\x28\x34\x69\x3a\xb3\x55\xf7\x74\xb7\x89\xfb\x7a\xb8\x58\xe4\x90\x30\x38\xd4\x61\xb4\xa6\xa5\x37\x39\x27\xe3\xe6\xa1\x8e\x12\x95\x22\xbd\xee\x4c\x9b\x63\x3b\x8d\x56\xad\xf4\xba\x54\x2d\x8e\xed\xf0\x40\x6f\xc7\x76\x15\x29\xf0\x19\x6e\xc2\xe1\x4e\xd2\x45\x32\x4d\x5f\x6e\xf9\xbf\x63\xba\x4c\xd7\xc1\xb4\xca\x04\xa7\xc9\x31\x5d\xa6\x6b\x72\x5a\xfe\xdf\x69\x32\xdc\x65\xe7\x9c\xa4\x3e\xf2\x47\xcf\x54\x74\xc4\x37\xb4\x7e\x6f\x53\x3a\x25\xc6\x3a\x52\x49\xf2\x99\xc7\x0a\x8e\xcd\xf1\xe3\xc0\xd5\x7a\xaf\x61\x7a\xc7\xe9\x8b\x2e\x2a\x38\x69\x5f\x72\x61\xbf\xc6\x38\xde\x31\xfd\x52\x83\xc4\xce\xef\x3d\x36\xa9\xfc\x78\xfc\x16\xc5\xce\xf5\x17\x1a\x2a\x76\xde\xbf\xd0\x50\x6e\xe3\x2f\x86\xdd\x7e\xf3\x83\xc3\xf4\xb5\xb9\x0e\xb3\x36\x99\xbb\x3d\x7b\xd8\xf2\x0b\x3b\x3e\xbd\x8f\x22\x59\x72\x78\x92\x53\x06\xcf\x05\x6d\x32\x58\x2c\x57\x9d\x36\x3c\x28\xdd\xc8\x0b\xc2\x75\x91\x6f\x21\xd9\xb4\x42\xce\x83\x58\xac\xa2\x45\xba\xaf\x5d\x90\xbf\x0e\x72\x0d\xe2\x6d\xb1\x93\x8e\x2a\xeb\x62\x67\x1d\x55\xa4\xf3\x4a\xb1\xc5\x6b\xe8\xc9\x18\x2b\xd6\xd2\x2b\xda\xe8\x43\x2f\x1d\x89\x82\x19\x89\x62\x53\xcc\x71\x55\x98\xb2\x91\x9b\x47\xd5\xc3\x8d\x96\x2a\xae\xf1\x55\xc1\x96\x9b\x15\xfe\xd8\x9f\xce\x15\xc2\xb7\xc5\x47\x39\x9d\xf7\xc5\x47\xcf\x6f\xe6\x3d\xca\xaf\x1d\x57\x1a\xcf\x15\xe6\x1a\xbf\x47\xa3\xcb\xe5\x66\x55\xdc\x76\x6a\xe6\x97\x5a\x5f\x5a\xa6\x75\x6a\x2a\x27\xa4\x90\x69\x5d\xb7\xb7\xa3\xf4\x62\x08\xa7\x34\xd0\x7c\xb6\xa5\xf5\x87\x16\x1d\xad\x61\x93\xcd\xf1\x01\xad\x9a\xa3\xc3\xf9\x22\xaa\x34\x7c\x8c\x0e\xcd\xd5\x1e\x99\x49\xc6\x65\x83\x65\x98\x3a\xc7\x0a\x1f\x19\x5a\xd9\xe2\x18\xcd\x6c\xdd\x10\xb6\x26\xcf\x2b\x04\x56\x91\xa3\x6c\x17\x36\x81\xa7\x93\x24\x7e\xc0\x5e\xc1\x8a\xfa\xa0\xad\x02\x3b\xa2\x07\x5b\x41\xaa\x52\xb2\x82\xdf\x42\x74\xa6\x87\xac\x12\x31\x0f\xa1\xc0\xc6\x35\x60\xb6\xe0\xa0\x42\xa3\x95\xcc\x4c\x52\x15\x01\x60\xc4\x33\x13\x5d\x1a\x33\x92\x39\x1e\xa1\x2a\x39\xd4\x04\xb4\xd4\xc7\x3a\x30\x20\xe9\x4e\xc9\x8f\xb0\x25\x2a\x15\xba\x10\xa9\xac\xc3\x7f\x38\x5f\x8d\xb4\x16\x4f\x9c\xc0\x94\x63\x14\xa7\x29\x6c\x55\xc8\xfa\xe9\x26\x90\x23\x2d\x1e\x32\xe4\xfd\x17\x18\x3e\x96\xe5\x4a\x47\x72\xc9\x82\x91\xf0\x68\xd4\x73\x91\x97\x5d\xa1\xb6\xa0\x31\x17\xba\x33\x63\x0e\x49\xc0\x2f\xa7\xb0\x1d\x78\x87\xef\x3e\x90\xdb\x05\xc1\xba\xac\xd6\xb7\x65\xbb\x59\x70\x8f\x06\x88\x4b\x62\x41\x3b\xc8\xca\x1b\x81\xac\xee\xc9\x5a\xf4\x5d\xef\x5a\xaa\x9c\x64\x27\x1e\x86\xef\x10\x12\xd7\x8d\x73\x0b\xec\xcc\x2d\x10\x5d\x10\xd2\x37\xc7\xb6\x98\xc3\x95\xa3\xee\x88\xed\xa3\xf5\xc3\xad\xbe\x23\x2e\x8b\xdd\x72\xbb\x1a\xb5\xcb\xad\x63\x0f\x3a\x00\x80\xcb\x7b\x00\xa0\x33\x05\x59\xa5\xdb\xa9\xb8\xad\x76\xf1\xdb\xaa\xd8\x2d\x37\x62\x26\x9b\x94\x65\x4a\x0d\x7f\x8d\xba\xc6\x6a\xb5\xc4\xa7\x57\x06\x79\xbe\xa3\xf5\x07\x83\x34\xaa\x74\x35\x10\xfd\xe9\xd4\x31\x94\xc1\x93\xe5\x95\xc2\x9a\x8f\xce\x93\x87\x79\x53\x34\xfb\xfd\x5d\x87\xe4\xa3\xe2\x0e\x16\x45\xaa\xc5\xc7\xae\x6b\xb4\x29\xb5\x51\xc6\xd3\x7b\x59\xb6\x68\xc2\x8e\xe5\x69\x4b\x0e\x9c\x31\x45\x8c\x47\x49\xa5\xe7\xc1\x23\x47\x26\x45\x91\x5b\x1a\x7d\xcc\x61\x43\x2e\xec\x24\xbd\xe6\x9a\x5e\xab\x3c\xdf\x63\xae\x13\xcc\x0d\xde\xc1\xc9\x9c\xdc\xe1\x05\xa6\x5d\xe4\x41\xff\x6d\xbc\xb3\xc7\xb4\x1e\x53\xc4\x8a\x68\xa8\x52\x83\x89\x77\xaf\xd4\x62\x9e\xc3\x8e\x61\x0d\xb2\x59\xfa\xc3\x2b\xab\x41\x08\x1f\xe9\x2f\xd6\xef\xc6\x0f\x8c\x41\x08\xd7\xd2\x17\x33\x97\xf6\xe8\x65\xed\xc0\xad\x5e\x21\x19\xd5\x64\xd7\x92\xd8\xf9\x14\x90\xf4\xbd\x37\x9d\x0a\xe4\x9c\x4e\x73\xb1\xbf\x4b\xb2\x42\x32\x54\x2b\x67\x85\x0a\xd0\xec\x65\x58\x60\x90\x61\x81\x21\xe9\xad\xe2\x1a\x56\x92\xd5\xb7\x52\xc3\x4f\xf8\x7e\x3f\x11\x68\xb1\xdf\x43\x9d\x71\xf1\xd3\x8d\x86\xb9\xb8\xda\xb5\xfc\xd3\xbb\x17\xec\x22\x87\xd5\x49\xd7\xda\xa0\xf7\xb8\x4d\x22\x19\xba\x0a\xb1\x51\x26\xdb\xaf\xbb\x5b\x60\x43\x65\x5e\x98\x94\x5a\x9f\xf4\xae\xf1\x97\x91\x73\xb4\xdf\x47\xac\x52\x1c\xe2\x25\xae\xca\xfa\xf6\x6d\x23\x68\xb7\x20\xea\xf5\x7e\xaf\x9e\x68\x32\x5f\x1f\x65\x99\x94\x37\xaa\x20\x64\xd3\xa9\xc9\xa4\xf6\xdc\x09\xf4\xa2\xd5\x88\x02\x61\x1a\xe4\x02\x0b\x6a\x92\xb0\x24\xb9\x37\x0e\x12\xd6\xac\x6f\xab\x04\xe3\x0e\xe4\xc0\x45\x78\x88\xc2\x40\x07\xb1\x3b\xf7\xcc\xe9\xd5\x0d\x3f\x16\x32\xdd\x22\x76\xf5\x39\xed\x5d\x03\x13\x55\x84\xb7\x57\xd5\x20\x62\x4d\x05\x21\xcd\x0b\xd8\x85\x8a\xa9\xe8\x48\x63\x6c\xda\xfe\xea\x9a\x69\xf1\xaf\x66\x6a\x8d\x51\xa9\x7b\x18\x60\x7f\x0d\xab\x2b\x16\xec\x29\x98\x50\xbe\xa8\xe9\x2e\x65\x38\xc5\x1e\xbb\x44\xd1\x19\x5f\x36\x32\x10\x7b\x01\xbf\xe8\x2f\x09\xeb\xfe\xb5\xac\xa5\x36\x26\x3a\x34\x9b\xfe\x93\x4c\xa2\x58\xc2\xce\x33\x17\x07\x20\x72\x3d\xe8\x8c\xbc\x00\x0c\x60\x08\x21\x7a\x99\x33\x87\x9b\x60\xa0\x37\xb1\x80\x13\x7f\xd9\xda\x1a\x70\x41\xca\x87\xb8\xb6\xd2\xcd\x53\x99\xd3\xd3\xeb\xda\xc9\x87\xce\x9d\xb0\xb7\x3a\x92\x20\x54\x5c\x93\x2a\x2f\x28\x04\xcd\x40\x82\xea\x5e\x95\x69\x94\xeb\x46\x2a\x6d\xc0\xb0\x6e\x81\xe3\x1a\x61\x7e\xc0\x8b\x8f\x17\xcd\x61\x2f\x3e\x3e\x81\x88\x06\x9b\x98\x79\xc9\x8d\x07\x9f\xf8\x8d\x4d\x30\x2d\x07\x61\x99\x0f\x31\x7c\xe1\xb8\x01\xb7\xf7\xcb\x86\x06\x42\x7c\x94\x7b\x0f\xb9\x8f\x1b\x8f\x69\x2c\x58\xf9\x64\x7f\x2e\x79\x8d\x5e\x9d\x83\x15\xd3\xcc\xd7\x8b\xec\xc4\x8a\xf3\xcc\xcf\x49\xda\x1e\xb6\x8b\xf7\xab\x72\xfe\x62\x97\xf6\xa4\x35\xfc\x48\x7b\xf9\x97\x31\x89\x27\x3f\x88\x05\x81\x1c\x19\x41\x40\xa3\x11\x24\x5d\xda\x00\xdf\xf7\xc1\x97\x88\x92\xa4\x46\x11\x35\x47\xec\x1c\xa0\x93\x0c\x52\xf0\xba\xfa\x62\x20\x05\x83\xa1\xb5\x58\xcb\xa0\xcb\x95\xaf\x2d\x2e\x0b\xcf\xa3\x1a\xb7\x45\xdf\x87\xda\xcf\x34\x76\x55\x7e\x20\x4a\xaf\x1b\x49\xf1\x6d\x24\x80\x5d\x41\x1d\x9d\xb7\x27\xa3\x0b\xf8\x29\x42\x58\xe2\x36\xa1\x69\x7e\x98\x37\xd2\x63\x16\x1c\xad\xb7\x08\xaf\xa5\xe0\xd2\xc4\x35\xbd\x0c\xaf\x55\x45\x98\x81\x41\xfb\xfa\x74\xa3\x4d\x6f\x70\x5b\xd4\x90\x8d\x1b\x84\xdf\xe3\xd5\x63\x90\x9b\xc3\x49\x1e\xbf\x3b\x4a\x49\x36\x0a\x9c\xde\x77\x08\xb8\xa3\x10\xf6\x3b\xb9\x21\x57\xb6\x99\xe1\x8b\x4b\x47\x41\xde\xea\xbc\x1f\x07\x2d\x08\x14\x37\xb8\xd4\xea\xa7\x94\x05\x61\x97\xb4\x20\xec\xa6\xd3\xbc\x95\xe6\x83\x9d\x75\x3f\xda\x7a\xe5\x0e\x19\xc2\xeb\x62\x0e\x01\xc3\x4a\x71\xb2\x7e\x74\xf9\x70\xad\x15\x27\x9b\x62\xbb\x5c\xaf\x70\x55\x6c\xf0\x75\x31\x39\x1d\x65\x17\x82\x93\xde\xcc\xd6\x9b\x92\x9d\xf3\x7c\x2e\x00\x71\x5d\x4c\xe6\xa2\x85\x2a\x02\x95\x9f\x2a\x15\xe7\xd5\x30\x6c\xa5\x0a\x25\x80\xec\x15\xd2\x7a\x93\xc9\xb5\x62\x36\x68\xfb\xbd\x14\x36\x14\xc7\x74\x85\x39\xc2\xb7\x60\x7c\xd0\x3e\x76\x93\xa2\xb8\x45\x02\x1b\x3e\xee\xf7\xbe\xe7\xf7\xad\xea\xef\x3d\x7e\x87\x2f\x42\x6f\x6d\xe5\xff\x8d\xaf\xf0\x2d\xde\x20\x7c\x53\x5c\x48\xc4\x7e\x5a\x5c\x78\x36\x8b\xa7\x28\x7f\x5f\xb4\x71\x4c\x7e\x8f\x9f\xc2\x3a\x4a\x74\x33\x50\xaa\xe9\xe3\x74\x0a\x7a\x5c\xab\x5a\x85\x4a\x4d\x42\x28\x19\x7d\x9c\x4e\x27\x74\x3a\x9d\xb4\x30\xf8\x7e\xcf\xcf\xe4\xaf\x82\x2c\xda\x20\x94\x98\xa0\xce\x6a\xf5\x3e\x22\xd5\xee\xc6\x3c\xba\x41\xf9\xbb\xd4\x44\xdf\xe1\x1b\x65\xf4\x11\x53\xfa\x19\xbf\x09\xa1\x11\x3b\xf4\xb7\x78\x83\xb9\xcc\xe9\x8f\x5f\x15\x6f\x24\x78\xce\x8b\x37\x16\x3c\x6a\x0e\xaf\xf0\xf9\x74\x9a\xff\x9c\x1a\xfc\x67\x7c\x8e\x3a\x93\xdb\xbd\xed\xb0\xb7\xa9\xc9\xeb\xda\xa5\x75\x42\x52\x39\x1c\x0a\x12\x25\x9b\xb6\x6a\x27\x94\x1d\xf1\xb2\x15\xa5\xb0\xb3\x8e\x61\x27\x45\x9a\x13\x74\xa6\x46\x65\x02\x30\x9f\x14\x34\xae\x3b\x5d\x48\x89\x41\x31\x93\xc6\x16\x4c\x0b\x97\x5c\x40\xf1\x18\x41\x59\xa8\x8e\x44\xa7\x0e\xd9\x65\x0e\xd9\x85\x48\x73\xc8\x81\x99\x88\x35\xe7\x78\x87\x3a\xd4\x75\x4e\x3c\xcc\x2f\x74\xa0\x6f\xd2\x0e\xf4\x07\xe2\x9a\x0f\x7a\x46\x1f\x27\x89\x93\xe5\xa0\x5b\xa3\x9b\x59\x46\x45\x6b\xf8\x22\xfb\x7d\x1c\xfd\xc7\xa9\x44\x1a\xc7\x88\x2f\x7d\x39\x0e\x7b\x89\xae\x42\xd1\xb0\xc6\xd2\xaa\xe4\xa7\x73\x6a\xc2\x54\x73\x9e\x5c\xda\x08\xb9\x94\x1a\xb9\x94\xae\x8a\xf8\x8c\x5d\xec\xbc\xb7\x65\xc7\x5f\x01\x9b\xb9\x8a\x7a\xdc\xc0\x03\x5f\x55\x1f\x13\x8c\x71\x39\xbc\xf6\x9e\x00\xa1\x76\xa0\x71\x64\x08\xba\x2c\x57\x56\x08\x33\x95\x0e\xf9\x19\x18\x60\x9d\x20\x86\xd4\x19\x17\x1d\xa0\x6e\x71\x18\x13\x3b\xed\x38\x5d\xde\x8f\x87\x77\xbd\x57\x7f\xa5\x7c\x97\xae\xc2\x33\x48\xa0\xd0\x67\x37\x80\x99\x08\xf2\x2a\xa4\xac\xec\xf1\xe2\x0a\xfc\x30\x10\x8c\x40\x74\x54\x6c\x72\xc2\xff\xf6\x8b\xc0\x89\x15\xdc\x06\x8a\x3b\x8b\x62\x87\x17\xf5\xdb\x4d\x63\x1a\x08\x7a\xc7\x08\x90\x5f\x35\xac\x22\x8c\x54\x0f\x5a\xc2\xef\x95\xd4\xdd\x77\xc2\x8e\x89\x87\x01\x20\x58\x01\x35\x54\x36\x65\xfb\xea\xa6\x36\x80\x30\xe1\xe1\xe8\xcc\xc8\x61\x0b\x5d\x73\x4d\xa2\xf2\xd3\x8f\xa4\xe6\xa4\x32\xd5\xfe\xe0\x22\xfd\x9e\x35\x3f\xdf\x6a\xf4\x96\xcf\x55\x65\x3d\x78\xa3\x6a\xa4\x0b\xfe\x37\xa8\x54\x3e\x63\xa4\xac\xda\x5c\x17\x4f\x01\x16\x59\x79\xd6\xbb\x27\xe7\x98\xfe\x9d\xdc\x11\x3b\xef\xa0\xb4\x26\x0b\xec\xb5\xfc\x66\xe1\xd4\x0a\x54\xdd\xe8\x5a\xe8\xd2\x1a\x8e\x6c\xcd\xfb\xad\xd7\x55\xf9\x09\x5d\x09\xe0\xad\x8b\xd6\x1c\xfe\x08\x14\xdc\x7a\xed\x1d\xb8\x99\xf8\x5c\x95\x9b\x5d\x4a\xa7\xaf\xba\x30\x97\xcf\x1b\x5e\x72\x82\xdd\x8b\x40\x26\xa3\x15\x37\x80\x2c\xca\x5f\x72\x5a\xbf\x7f\x1e\xcb\x43\x4d\x67\x72\x30\x27\x2f\x13\x48\xbd\x90\x7c\x3e\xa8\x85\xe8\x50\x1e\xe4\xa5\xea\xb8\x74\x2e\xe6\x20\xcc\x56\xe7\xc9\xc8\xfb\xa6\x1f\xb5\xe5\x19\x42\x4b\xb2\x32\x6c\x91\x4b\xeb\xa5\xd8\x53\x1a\xc8\x45\xe0\xe2\x05\x32\x13\x9e\x67\x6a\x5f\x32\xa9\xcf\x83\x70\x0d\x33\x90\x5a\x6b\x4e\x54\x1d\xe8\xb0\xf2\x73\xde\x2b\xe2\x5c\x8b\x87\x4d\x0d\x3f\x89\xfc\x2d\xee\x7e\xce\xe8\xfb\xf7\x84\x89\x07\xea\xa7\x68\x71\x79\x09\x2d\x2e\x2f\x33\x84\x37\x65\xbb\x90\xe6\x7e\xc0\xe6\xaa\xf8\xea\xff\xfe\xd7\x57\x67\xe2\xa8\xfe\xd7\x57\xb9\x13\xcb\xe5\x07\x03\xfe\xd7\x57\xf9\xec\x7f\xa3\xaf\xf0\xb5\x6d\xfe\x15\xbe\x2a\xb2\x77\x65\x4b\x9c\x2a\x29\x1f\x2d\x46\xd8\xd2\xb7\x9a\xfd\xf8\x9e\x91\x16\x0a\xd0\xa2\xe9\xd4\xaf\xa6\x1f\xad\x2b\x66\xcb\xe8\x87\xbc\x31\x59\xb2\x15\xc2\xb4\x98\x3f\xa4\x36\x43\x22\xd5\xe2\x68\x53\x64\xaa\x0a\xc0\xf8\xdc\xd6\x71\x28\x8b\xec\x2b\x49\x8f\xcc\x12\xbf\xca\x4e\xd8\x88\x15\x45\x71\x05\x9a\x69\xf3\x95\x8e\xdf\xb6\x1f\x09\xc0\x4a\x76\xf8\x4e\x16\x6f\x6a\x74\x61\xa6\x7a\x49\x57\x58\xf2\x36\x8b\xbb\xeb\x06\x32\xaa\x2f\xca\xae\x53\x81\x08\x06\x30\xb7\x5e\xad\xa2\x01\xc0\x90\x28\xcf\x0f\x62\x86\x1c\x46\x34\x91\xbf\x66\x6a\x3c\x9b\x86\xc7\x7f\x3e\xbb\x82\x0a\x57\x15\x1a\xb1\x33\x56\xb0\xe5\xef\x57\x0b\x48\xca\xd3\x6b\xd7\x92\x92\xad\x37\xf9\xb5\x54\xc7\x5c\x21\xec\x98\x8a\xd9\x0a\x12\x56\x89\x1f\x4a\xbe\x9c\xc9\xa5\xef\xf7\x64\x06\xc0\x40\x6a\xad\x20\x42\x27\x49\x6f\x83\xef\x2e\x18\x79\x4f\x5b\x4e\xd8\xb7\x50\xe1\x97\x85\x1e\x06\x92\x78\xe8\x46\xa4\xd2\xcd\x8a\xbb\x77\x44\xb0\xa5\xba\x1a\x2c\xc1\xf2\xef\x1f\xe1\x2f\xde\x75\x58\x6a\xca\xbf\xb1\x25\x1c\x80\x39\x4f\x53\x32\xad\x9e\x97\x25\xa2\xc5\x5d\x0a\x1d\xf8\xba\xdc\x94\x61\x38\x3a\x98\x63\x28\x06\x9b\x3c\x41\xfb\x3d\x54\xc4\xcb\x09\xd6\xb9\x3e\x21\x0e\x51\x46\xb2\x74\x58\x15\x33\x6b\xc3\x5b\xe7\xaa\xbc\xfe\xe6\xd6\x52\x06\x9c\xa9\x86\x19\xc2\xea\xd9\xe1\x75\x99\x01\x3b\x84\x77\xf5\x87\xba\xb1\xf7\x68\x2a\x31\xa0\x01\x40\x2e\x13\x73\x2a\x3f\x15\xe9\xde\x63\x88\x2b\xa4\xe5\xba\xe6\xb7\xe1\xa4\xeb\x86\xe7\x99\x6c\x0c\xb4\xac\xac\x5e\xd5\xdb\xdb\x1c\xe1\xb2\x8a\x8b\xe0\x21\x4c\x55\xbf\x99\x4a\x5d\x7a\x51\x56\xca\x1f\x92\x19\x2f\xa4\x48\x63\x9d\x42\xb7\x8f\x32\xe9\x37\x33\x0f\x97\x72\xa8\xc0\xd9\x9b\xa4\x02\xca\xc5\x25\xad\xab\x57\x4c\x7a\x85\xab\x4a\x6b\xad\x53\x9f\xa2\xac\x2a\x49\xc7\xda\x5c\x3f\x72\xe1\x18\x7b\x5f\x37\x9c\x5e\xde\xea\xdd\x78\xbc\x29\xeb\xf7\x44\xd5\x31\x8d\x8c\x95\xcc\x28\xdb\x1b\x0b\xf7\xa9\x24\xff\xe4\xd4\xb2\x6c\x06\x11\x42\xb7\xb9\x41\x3e\x5c\xa2\x91\xcc\x16\xbb\xdf\xdf\x19\x0a\x0a\x75\x3f\x65\xfd\xb9\xb2\xeb\xa5\x91\xf5\x50\x2d\xb9\x87\xfb\x7d\xae\xb7\x4a\x57\x73\xf9\x12\xfb\xfd\xa3\xdc\x6d\x01\xe8\xc8\xec\xe8\x65\x9e\xc6\x32\xef\x9c\x30\x22\xf6\x53\x80\xc6\xa9\x11\x64\xd4\x37\x11\x16\x42\xd0\x00\x07\x09\x8e\x24\x26\x33\x69\xea\x32\xb5\x6d\x12\x68\x33\xf0\xd2\x1c\xc7\xae\xc3\xeb\x2d\x29\x99\x6b\x01\x39\xbc\x1b\xf0\x49\xae\xeb\xb0\xfc\x32\x80\xf7\x86\xb7\x59\x4e\x46\x47\x41\xfe\x48\xa0\x61\x26\x98\x8e\x58\x35\x7c\xe0\x93\x6d\x71\x7e\xcc\x67\x7a\x7d\xb1\xb2\xfc\xe8\x8e\xc4\x61\x0a\xdf\xf6\x2e\x38\x53\x5e\x4d\x76\x3a\x5b\x97\xdb\xad\xb4\xf7\xc9\x5c\xc3\x49\xae\xd0\xa3\x15\xaa\xc4\xe2\xdc\x63\x5f\xdf\xa5\xf4\x4a\x5e\x7a\x01\x01\xa4\x0b\xaf\x62\xda\xc4\xaf\x12\x77\x26\xff\x8b\x4c\x24\xbb\xb8\xc8\x4e\xc8\xc9\x8b\x92\x6f\x66\x97\xdb\xa6\x61\x39\xfc\x64\x65\x5d\x35\x57\x39\xfa\xdf\x4f\x4a\x2e\x60\x71\x93\x23\x74\x22\xda\x76\x28\xcf\x9e\x3c\xfd\xe6\x87\x3f\x3d\xe0\xed\x83\x77\xa2\x59\xe6\x4c\xf7\x26\x24\x53\xf3\x87\xec\x11\x8f\x24\x48\x11\xdc\xc4\xa8\x9e\x59\x2b\x5d\xe1\xfe\xb1\xdf\x4f\x4e\x41\x0f\x2e\xab\x8e\xc2\xfb\xc9\x1c\x67\x20\xfb\x66\x14\xcc\xea\x79\x3d\xbb\x61\x94\xab\x77\x69\x03\x21\xf8\x19\xe2\x1a\x75\x96\x15\x7b\x6a\x8a\x74\x19\xc3\x6b\xf1\x2e\x67\xca\x2d\x4b\xb0\x35\xd2\x59\xcd\xf1\x0a\x22\xca\x2b\x28\x67\x85\xa7\xde\xcc\x19\x42\x98\xc1\x06\xfc\x5c\x38\x08\x6e\xc6\x12\xfb\x23\xf9\x1a\xb0\xb0\x48\x87\xa0\xe5\xc5\x4a\x89\xec\xea\x78\x81\x23\x76\xa6\x04\x83\x8b\x0b\x95\x34\xfb\x2f\xe4\xb6\xff\xf0\x79\x7b\xde\xde\xd6\x6b\x01\x0f\xf5\x62\x53\xb6\x8f\xcb\xed\x7a\x07\x5e\xa2\xcf\x65\xab\x62\x72\x8a\x95\xca\x93\x91\x9a\x1b\x7d\xa5\x37\x6c\xf8\x8e\x84\x4f\x3a\xa9\x69\x96\x1e\x92\xc4\xe2\xb9\x95\xd0\xdc\xa9\xc6\x34\x41\x93\xd3\xa2\x28\x06\xe6\xa9\xa9\xc8\x5a\xbf\x50\xcf\xdd\x1a\x50\xce\x18\x1d\xb6\x43\x6a\x40\x7c\xe9\x61\xd5\x38\x30\x74\xd8\x3e\x5a\x0b\xac\x1e\x0d\x6e\x8c\x4a\xe8\x86\x1b\x5c\xe2\x16\xef\x54\x9a\x85\xc2\xe0\x08\xce\x1b\xeb\x1e\xae\x0a\x19\x42\xde\x62\x35\x9f\xfd\x3e\xdf\x15\xdc\x4d\xac\xae\x75\xa4\x58\x08\x8f\xbb\xb3\x9c\x15\x3b\x99\x4c\xbd\x56\xdb\x5d\x14\x45\xde\x16\x79\x59\xec\x90\xee\x78\x3a\xb5\x1a\xd7\x52\xac\x0f\xed\xf7\x2d\xd4\x28\x93\xfa\xbd\x62\x72\x1a\x81\x7f\xc1\x12\xd8\x58\x77\x98\x17\x04\xe7\xac\x58\x82\x67\x76\xf6\x81\xdc\x66\xa9\xc4\x7d\x7a\xa5\x62\xce\x5d\x87\xd5\x07\xb4\xae\x8e\xf8\x82\xd6\x95\xf9\x04\xb2\x24\x0e\x7d\x02\xe7\xea\xcc\xfe\x5c\xe4\xce\x71\x7b\x9a\x9b\x6e\x91\x73\x0c\x91\xe9\x5e\x81\xe7\xf0\xa4\x54\x43\xf3\xa1\x80\xfd\xe1\xaf\x6a\xa8\x92\xb0\x42\xd3\xe9\x4d\xce\xed\xd9\xc2\x0c\xe1\x1a\x9e\xe1\x1a\x61\xd2\xe5\x52\xab\xfc\xa6\x48\x33\xfd\xf2\x36\x55\xb2\xcc\xa8\x97\x91\x52\x5e\x99\x71\xef\xe1\xa4\xad\x5f\xe7\xfa\x05\xc7\xb0\x1c\xea\xee\xa8\xb4\xc2\xcb\x15\xc2\x44\xa6\x54\x46\xce\x8d\x4a\x3a\x8f\xef\x7f\x35\x30\x5f\x5f\xdd\x3e\x92\xd3\x37\x22\x8b\x97\xe6\x87\x94\xeb\xcd\x63\xd5\x85\x21\xea\x8e\xb7\xa7\xf2\xe8\x9a\xf9\x25\xd7\xc4\x5d\xff\x81\xdc\x16\x5c\x57\xa0\xcf\x19\x1a\x99\x2c\x7c\x6d\x5e\xc3\x72\x60\xee\x35\xc8\xae\xc1\xe4\xcf\x0f\x02\x5b\xdd\x36\x4a\xe3\x06\x29\x8b\x71\x98\x3e\xef\x1e\x0b\x01\x23\x55\x1d\xac\x02\xee\xb8\x0f\x70\xe8\x6a\xc0\x16\xf8\x11\x12\x6d\x8e\x89\x90\xd3\x23\x2c\x86\x40\x88\x9f\x05\x7b\x90\xd7\x48\xed\x10\xfe\x30\xb0\x32\x7d\x6b\x1b\x54\xc2\x7d\xc6\xcb\xc3\x22\x09\x04\x60\xbb\x5c\x6d\x0e\x17\xb2\xc8\xfc\x61\xfd\xc8\xc4\x04\xd6\xfa\xe2\xa7\xe2\xe2\x5f\xd6\xab\xd5\x48\x62\x13\x95\x6a\x41\xeb\x18\xec\xed\x83\xe5\x2b\xde\x3a\x06\x46\x12\x94\xad\x13\x5b\x19\x3e\x40\x6e\x6d\x49\x99\x01\xd7\x5e\xff\x8f\x9d\xce\xde\x82\x9c\x2e\xdb\x3b\x2b\xb3\x8d\x5f\x78\x3a\x56\xf1\xa9\x84\x86\xa3\x86\x7d\xad\x93\x76\xd1\x16\xaa\xe6\x9d\x89\xb5\xd5\x55\x9e\xbd\x23\xeb\xe6\x8a\xc0\xb3\x0c\x2d\xf4\x53\x5d\xfd\xfc\xa7\xb2\x7d\x4d\x5a\x22\xe0\x47\x66\x6e\xd0\x3e\x70\x96\x6d\x2e\xd9\xba\xef\x8b\x3b\x5a\x53\x4e\xcb\x2d\xa8\x52\x17\xd9\xae\x5e\x37\x57\xb2\x00\x77\x86\xd5\x88\x8b\xc9\x1c\x3b\xcf\x17\x77\x15\xad\xde\x10\x6e\x44\xfe\xd7\x78\xdb\x94\x15\xad\xdf\x0b\x70\xf8\xbe\x92\xe1\x6c\x02\x81\x13\x8e\xbf\x64\x7e\x2b\x27\xe2\x50\x91\x03\xb1\x1c\xd6\x6c\xb7\xa4\xfa\xa6\x5c\x7f\xc8\x90\xb4\xbc\x93\xca\x1f\x86\x0c\x77\x03\x96\x1f\x2a\x5a\xbe\x6d\xf2\x4c\x4c\x94\x54\xb3\xb6\xfc\x48\x2a\x28\xfa\x6d\x61\xe8\x4f\xfc\x86\x6e\xb7\x8f\x61\xc5\xc1\x48\x7e\x7f\xb4\x7e\xb6\xa5\xef\x37\x5c\xf4\x25\x55\xac\x11\xb7\x21\x4b\xf3\x94\x7e\x1c\xd7\x85\x49\x72\x3e\x62\x39\xd1\x39\x2d\xdd\x1e\xa0\xea\xac\xe8\xd5\x00\x60\x70\x22\xfe\xc2\xb0\x78\x0d\xda\xd9\xef\x4a\x4e\x58\x08\x46\x5f\xdd\x35\xbc\x3e\x68\x93\xa9\x89\xbc\xeb\x4f\x43\x3f\x76\xe1\xde\x1f\x9e\x94\xd5\x2d\x88\x8a\x1a\x60\x8b\x3b\xda\xbe\x29\x3f\xd2\xfa\xbd\xc0\xae\x1e\x42\x25\xf7\x25\x86\x01\xe2\xf9\xae\x76\x80\xff\x2c\xba\x7d\xa2\x59\x45\xab\x23\x76\xd5\x42\x51\x22\x21\xad\x3f\x36\x1f\xc8\x77\xf4\x92\xac\x6f\xd7\x5b\xf2\xb8\x94\x4b\x6e\x15\xf3\x5c\x89\x69\xbe\x95\xb9\x00\x07\xb6\xeb\xb3\xee\xc7\xe1\xb9\x99\x7e\xc1\x9f\x78\xb0\x57\xf7\xd0\xf7\x37\xcf\xe9\x25\xc3\x44\x6e\xa2\x9c\xe9\x1d\x6d\xa5\x8e\x74\x72\x8a\xdd\x54\x23\x83\x83\xc9\x86\xd5\xcc\x1b\xb4\x0b\x51\x20\xa4\x13\xaa\x72\x90\x98\x84\x52\x5e\x3d\x63\xcd\x95\xf5\x33\xe6\x70\x85\x21\x2c\xa9\xa5\x2c\xd7\x2a\x1d\xa9\x73\x1d\xc2\xe2\xea\x0d\x48\x1a\xea\x02\x4d\xee\x8d\x7e\x49\x72\x01\x22\xbb\x3b\x6d\x7d\x3c\x92\x54\x24\x85\x40\x47\xf5\x74\x88\x0c\xa8\x73\xe8\x29\xb8\x8f\xc6\x0c\xd8\xf8\x28\xb2\x0d\xe2\xba\x07\x67\x89\x41\x4e\x6d\xf4\xbf\x05\x32\xbd\xf4\x8e\x22\xda\x38\x60\x33\xd1\x9a\x2f\x9e\x38\x4c\xc8\xdf\x72\x47\x14\x76\x42\xc9\xee\xac\xbf\x15\x95\x3d\xb2\x82\x2f\xe9\x0a\xd7\x4b\xba\x2a\x58\xc4\x6d\x9e\x9d\x09\x69\x7b\x61\x64\xf6\xba\xcb\xbf\x47\x58\x69\x3f\x5e\x16\x4f\xf2\x3b\x73\xcc\x17\xca\x58\x06\x37\xe4\x4b\x72\x23\xa3\x19\x5e\xce\xd4\xb1\x98\xd9\x2d\x2c\x8e\x39\x08\xc7\xd1\xec\x97\xee\x81\xf9\x22\x43\x00\x37\xfb\x3c\x58\xa9\xe4\x1c\xaa\xcc\xd5\x1a\x7d\x77\xdc\x50\x07\xe9\x93\xe9\xf0\x99\xe8\xb0\xf3\x57\xe8\xd2\x93\xe2\x3b\x6c\xa1\xdb\x7b\x11\xc2\xe5\x5d\x08\x95\xef\xa3\x4d\xe2\x6e\x36\xbd\x13\x15\xac\x2b\xdc\x08\x4b\x10\x06\x37\x42\x9d\x4b\x05\xcd\xd9\x30\xc1\xad\x68\xf5\x5d\x53\xc6\x06\x0b\xb8\xa9\xc2\xa3\x41\xcf\x0d\x88\x9c\xd3\x7d\xcc\xac\xcc\xd2\x44\x0f\x92\x12\xcd\xdc\xfb\xb4\x78\x86\x9f\xa7\xf7\xe6\x13\x68\xfd\xf3\xc3\x47\xe5\xb3\x50\xbb\x1e\x76\xff\xa3\x70\xc9\x85\x74\xde\x73\xe9\x44\xce\x8b\xbf\xe5\xec\xcc\x17\xbf\x18\x5a\xdc\x75\x98\x23\xa4\x84\x23\xe0\x94\x0b\x86\xf9\xac\x15\xbf\x40\x4c\xaa\x31\x47\x3c\x74\x29\xa1\x68\x3a\xcd\x9c\x6f\xb2\x49\x51\xd0\xe9\x34\x33\x9f\xe9\x07\x21\x2d\xe2\x32\xab\xb5\x2c\x27\x09\xff\x61\x8e\xeb\x93\x6c\x96\x9d\x50\x64\x25\xd8\x2e\xbf\xd3\xf6\xb2\xc9\x29\xa6\xed\x77\x92\x0b\xb7\x7f\x90\x4a\xfe\x56\x5c\xbc\xf8\xa9\x79\x2e\x78\x2c\x77\x47\xfe\x01\x74\x4c\xfc\x50\x37\xfa\x3c\x7a\x13\xf5\x58\x2d\x77\xd7\x86\xd8\x7d\x08\x9c\x82\xa9\xda\x39\xcf\xe3\x72\x83\xba\xf1\x2f\xae\x1d\x37\x17\xa8\xbb\xd1\xdf\x7c\x5a\xbf\x17\xf8\x24\xf1\x20\x22\x16\x44\xd1\x45\x11\xef\x03\x87\xd0\x5c\x95\x49\x99\xe3\x5e\xb8\x68\xce\xf4\x00\x6f\xac\x56\x24\x20\x64\xb6\x72\x8e\xc9\xcf\x3d\xa6\xc2\x07\x8d\x2c\xd8\xf2\x2b\x4d\x13\x93\x99\xe0\xa1\xb7\xa4\xac\xe1\x74\xe6\x07\xd8\xcc\x21\x46\x12\xd7\x0d\x7f\xd6\xec\xea\x61\x16\x84\x48\x5b\x4d\xa7\xb7\x79\x11\x48\xac\x72\x29\x0e\xc6\x27\xd0\x4a\x60\x20\xb4\x5d\xdc\xb5\x84\xef\xae\x8f\x92\x20\xa7\x53\x32\x53\x0e\x66\x4f\x68\x05\xe7\x28\xef\x33\xab\xaf\x93\x7c\x61\x94\x91\x8c\xf1\x59\xb1\x8b\xe1\x68\x29\x54\x7f\xfd\xe5\xa5\xd1\x5f\xca\xe5\x0f\xd0\x8e\x88\x68\x26\x1e\xf7\x71\x04\xdd\x75\xda\x7d\xa9\x5a\xbc\xc4\x6a\xf1\x8b\xe7\x7a\x76\x3d\x0c\xf1\x74\x1a\x0e\x6f\xa3\x9a\x67\x2e\x29\x9c\x7b\x88\xe4\x28\x40\x62\x38\x13\x55\xab\xf8\xaa\x92\x4f\xd1\x23\x7c\x06\x41\xfb\x7e\x08\x09\xe0\x8f\xee\xac\x78\xf3\x99\x34\x10\x86\x7e\x0c\x5c\xd2\x29\xfd\xc0\x3f\x47\xba\xff\x62\x12\xf4\x27\x0a\xfc\x07\xc5\x2a\x4d\xdf\x9c\x1b\x3f\x86\xb6\x52\x96\x16\xf2\xb3\xb2\x1a\xf9\x29\xbc\x3e\x55\xce\xab\x68\x25\x8f\x91\x98\x4c\xec\x66\x91\x7b\x23\x21\x70\x8f\x2d\x1c\x90\xbb\x13\xaa\x88\xff\x11\xaa\x84\xf4\x81\x4b\xc1\xe6\xb7\xac\x1a\xe8\x8e\x42\x1a\xf0\xa1\xd7\xc2\x33\x94\xd8\x8b\xa1\x09\xbc\x17\x68\xb2\x88\xbc\x95\xc9\x26\x8f\x40\xb1\x0e\x4a\x3d\xe2\x8c\x35\x0d\x77\x9d\x08\xbe\xfd\x2d\x3b\x11\x88\x91\xbf\x49\x59\xfa\xe1\xee\xd6\x16\x57\x48\x2f\x58\xdc\x75\xc6\x8c\xea\xd4\x4c\x80\x85\x07\xae\xd2\xde\x19\x8f\x1b\x98\xfc\x0f\x9e\x57\x43\xcd\x36\x3a\xfb\xeb\x71\xbd\xaa\xe6\xc3\x7d\x7a\x66\x96\x82\xc8\x93\xf7\x5a\x25\xa2\x57\x7e\x7b\x66\x91\xf2\x1b\x5a\x15\xb2\x3e\xbc\x74\x97\x03\x46\x4d\xd6\xf4\x85\xca\x11\xde\x03\xf5\x85\xb4\xd2\x15\x26\xd5\x0c\xf6\xcd\x6a\x85\x9b\x1c\x51\x99\xf1\x43\xbe\xb0\x20\xb3\xde\x33\x65\x50\x19\x74\x67\x10\xb3\x2f\x42\xb7\x5b\x50\x4f\x05\x8b\x43\x9e\x99\xd9\x29\x2d\x41\x56\x23\xbe\x61\xcd\x0d\x58\xdf\x54\x54\x02\xb0\xe1\x19\x00\x6d\xfc\xaf\xd9\x89\x72\xfa\xad\xdb\x6b\xb2\x96\x76\x35\x95\xc1\x1f\x9d\x64\xff\x3a\xde\x94\xed\xb8\x6e\xc6\xa6\xcb\xb1\xa0\x75\x95\xf8\x8e\x88\xd7\xca\xc1\x67\x06\xca\x3e\xb7\x0c\x47\xca\x09\x54\xa6\x8b\xcf\xef\x54\xce\x47\x77\x0d\xa2\x87\x3e\xe8\xa2\x16\xc1\xb8\xbd\xd3\xb3\xfa\xc5\x77\x02\x4a\x25\x01\x03\xab\xcf\xef\xa3\xda\x9e\x61\x2a\xcf\x30\x11\x72\x74\xa2\x83\x25\x5d\xa9\x82\xa0\x8e\x95\x10\x53\x1b\xdf\x16\xf7\xc1\xc0\xb4\x90\xe9\x8a\x2a\x93\x0a\xc6\xc3\x5e\xc9\x43\x43\xc2\x9c\xe9\xd4\xd9\x62\xf7\x74\xf9\x9b\xec\xbe\x11\xdb\x4c\x2f\xf3\x49\xe2\x5b\xef\xd0\x25\x7a\xf1\xda\x88\xfe\x54\xcc\xba\x6f\x89\x7c\x41\x78\x69\x5c\x3c\x2c\xda\x03\xfd\x90\x7e\xba\x93\x72\xbf\x77\x12\xd2\x4c\x8a\x42\x7a\x49\xa0\xcf\x82\x86\xa6\xe3\xb1\x3b\xab\x24\x4e\xaa\x00\xb8\x17\x52\x69\x27\x6d\xa5\x82\x27\xc8\x11\xde\x15\xed\x74\x2a\xe3\x80\xad\xd7\xd5\x6e\x3a\x6d\x82\x8d\x81\xe4\x08\xd2\x3d\x1d\x42\xe5\x9d\x50\x3e\xf9\xb5\x2c\x34\x3c\x9d\x4e\xd8\xcc\x88\x05\x39\x3a\xa3\x67\x5e\xad\x67\xc1\x91\x2d\x98\x42\xd8\x37\x75\x79\xdd\x6e\x1a\xae\x6a\xb9\x22\x4c\xcf\xa2\x7b\x5a\xd4\x8b\x03\xbb\x54\xd4\xb8\x16\xd8\xa7\xc8\x65\x1c\xf7\x34\xe6\x81\x73\x63\xed\xa1\x88\x25\xb3\x3e\x5a\xd8\xe7\x1a\xb5\xa2\xdf\x0d\x20\x56\xac\x85\x46\x2b\x9a\x3e\x01\xb8\x29\xe8\xbd\x51\xae\xd9\xef\x8d\x73\xdc\x44\x97\x54\xff\x3c\x08\xa7\xba\xbd\x07\xba\x95\x31\x74\x1b\x99\xa0\x28\x85\x32\xac\x58\xae\xb0\xfc\x6b\x20\x02\x9f\x0e\x20\x23\x41\x23\xee\x62\xdc\x7e\x9f\xd7\x67\x4c\x87\x44\xd0\x4a\xa0\x9b\x74\x87\xe9\x61\x1d\x92\xc9\x6a\xce\x22\x7b\x5d\xb0\xc5\xe0\xfe\x15\x0c\x33\x81\x70\x5e\x62\x9f\x00\xed\x1c\x50\x06\x09\x80\x64\xfe\x54\xda\xcb\xd0\x73\xa0\x83\x48\x0e\x56\x6a\x23\xa2\x63\xbe\x26\x6e\x0f\xd1\xa2\x8d\x1e\x32\xb9\xc9\xc8\xd4\xd6\x85\xfe\x63\xb2\xaf\x61\xef\x2e\x1f\x9d\xdf\x13\xae\x54\x21\xd6\x85\xcb\xb9\xed\x7a\x5d\x7d\x74\x2a\x2d\x3a\xed\x9c\x8a\x4c\x24\x70\xfc\x16\x9d\x8f\x22\x9f\xc4\x6f\xc7\x54\x2e\x26\x27\x73\xc1\x92\xad\x5c\x0f\x1b\xcc\x50\xe7\x5c\x72\xc7\xbb\xb9\xf9\x80\x00\x30\x3f\xde\x96\x6d\x2b\xdd\xcb\xbe\x8d\xb8\x97\x7d\x1b\xb8\x97\xfd\x50\xf4\x0e\x03\x66\x96\x25\x77\x46\x4c\x64\x67\x97\x72\x57\x67\x28\x3b\xc1\x39\x2f\x6a\x64\x07\x0e\x80\xc4\xec\x1b\x08\xad\xb2\x2e\xd4\x4d\xdd\x72\xb6\x5b\xf3\x86\x15\x1c\xf3\xd9\xc5\x05\xbc\xbb\xb8\x00\xef\x27\xf9\x75\x84\xd9\x11\x64\x47\xc6\xcd\xd5\x4e\x67\x65\x55\xfd\x44\xf9\xe6\x79\x5d\x91\x9f\x63\xb4\x5a\x43\x7f\x47\x2b\x13\x45\x21\x5d\x63\x21\x20\x6b\x4d\xde\x10\xae\x03\xf0\xb7\xb4\x85\x2a\xa9\x13\x99\x99\x8a\xad\x4c\xba\x67\xb1\x8d\x93\x39\x96\x58\xc3\xcf\xa8\x4e\xc3\xb1\xa0\xb3\xf6\x1a\x58\x17\x8e\xe7\x58\x3b\xeb\xb7\xf4\x1f\xe4\xa4\x38\x55\x51\x7e\x75\x97\x33\x47\xf6\xf9\x49\x80\xdf\xd6\x9f\x34\xf0\x55\xdc\x13\x66\x4e\x3c\x07\xff\xfa\xf4\x8c\x3f\x38\x5d\xcc\xc5\xac\x4f\x1f\xd6\x8f\x38\x38\x5a\xb1\x65\xfd\xe0\x74\x65\x3f\x5d\xd6\xc6\x46\xdb\x07\x9b\xde\x4d\xe5\x16\xcc\x5c\x37\xe9\xbf\xbb\x80\x22\xb3\x4b\x5a\x97\xdb\xed\xad\xe7\xc8\x07\x54\x90\xcd\x2e\xda\xdd\xbb\x76\xcd\xe8\x3b\xc2\xf4\x4c\x8b\x39\xea\x9c\xbc\x56\xa6\xd3\x1f\x2d\xd1\x98\xf8\xc9\x51\x05\x69\x6d\x39\x6b\x6e\x85\xb8\x1a\x94\xca\x36\xef\xc0\x9e\xe0\x18\x26\xff\x1a\x24\x03\xf9\x7b\xee\x04\xbd\xda\x60\x57\x16\xc6\x8b\xba\xa9\xbc\x10\xee\xc3\xe5\xc7\xdc\x0f\xb5\xfd\x53\x28\x93\xea\xa2\xf6\x0e\x6b\x8b\x69\x01\xbe\xf3\x57\x54\x3a\xf4\x61\x93\x58\x7a\xfe\xb0\x7c\x44\x1f\x96\x27\x27\x48\xc8\x13\xcb\x72\x65\x72\x46\x37\x45\x39\x7a\xc7\x48\xf9\xa1\xd3\x6e\xbe\xd3\xa9\x4e\xd5\xda\x14\x54\x33\x54\x73\xbc\x2b\xe6\x4e\x1e\x9b\xc6\x4e\x65\x5b\xd0\x07\x0d\x5e\x17\xa7\x0f\xd7\x8f\x0a\x0a\x39\x79\x60\x10\xf6\x60\x2d\x87\xa9\x1f\xac\x57\xe8\x6e\x5b\xac\x1f\x9c\xaa\xa1\xda\xa2\x7e\xb0\x7d\xd0\xe0\x5d\xc1\xc4\xff\x3a\xb3\xf7\x25\x65\x2d\x97\x2a\x76\x38\x30\x8b\x06\x97\x55\x45\xaa\xc7\xcd\xae\xe6\x8b\x56\x05\xf5\xa8\x3f\x77\x52\x14\xfe\x4b\x34\x89\x80\x7c\xf6\x62\x07\x82\xb5\xaa\xb5\x8c\xef\x02\x9f\xe1\x9e\x15\xac\xf6\xd5\x29\xfc\x50\xc2\x05\x25\x2e\xaa\x2e\x0a\xef\x2f\x10\xfe\xe5\xb1\x55\xe8\xa8\x5c\xde\xa5\x5d\xc6\x11\xc0\xc1\x2d\xdf\xfc\x92\xbe\x82\xba\x67\x27\xe3\x44\xd1\x7f\x64\xc7\x58\xef\x98\xb5\x3b\x2e\x57\xf2\xe1\xe5\x76\xd7\x6e\x1e\x97\x75\x53\xd3\x75\x29\xe3\x41\x66\xae\xda\x5b\x16\x88\x28\xeb\xdb\x1f\x6a\x65\x37\xe9\xa1\xa1\x4a\xf9\xea\x76\x3f\x58\x13\xee\x42\x9c\x93\xab\x92\xab\xcb\x95\xd6\xef\xf7\xfb\x09\x31\x40\xc9\x51\x87\x96\xf3\x95\x0e\xcf\xd2\xe3\x7a\xc1\xd7\x8b\xa8\xf8\x37\x7f\x48\x1e\xf5\xa7\xa2\x24\xba\x93\x13\xff\xa2\x74\xdb\x28\x6e\x96\xc7\xa7\xc6\x9d\xa9\x79\xdc\x6c\x29\x70\xe6\xb1\x8c\xa0\xfa\x89\x6e\xb7\x3a\xde\x09\x9f\xe2\x39\xea\xc3\x5c\x93\x59\x82\xb5\xd3\x3a\xc4\x5b\xab\x00\xa8\x48\x7b\x1d\x08\xd7\x1b\xec\x09\xad\xfc\xb1\x26\xf3\x4e\x87\x14\x74\x58\x9a\x81\xcf\x79\x2a\x86\x32\xb2\x72\x9b\x0f\xda\x2c\xd0\xe3\x54\xb0\x8f\x26\x81\x2a\xce\x74\x60\xf4\x49\x93\x39\xc2\x3f\xca\xe0\x22\x4d\x9a\xff\x94\xf7\x06\x17\x8c\xba\x22\x15\x6c\x16\x9e\x6b\x5d\xf6\x22\x01\xe4\xfe\x07\x98\xcd\xdc\xb3\x8f\xd9\xcc\xd2\x85\x18\xbc\x03\xf8\x7a\xa7\x83\x68\x61\x7e\x08\xf6\xf7\x9e\xc2\x74\xea\x3e\xf8\x7a\xae\x93\x82\xf9\x7c\x51\x59\xdf\xaa\xfa\x2e\x60\x0f\x12\xed\x25\x24\x20\x14\xff\x03\xb9\xcd\x04\xa7\x2e\x8e\xc7\xf5\xb6\x5c\x27\xb2\xf2\x8c\xa0\xfb\xbc\xee\xef\xb8\x5a\x19\xc1\xe4\x44\x83\x05\x3a\xb6\x9e\xc8\x10\x1a\xab\x55\xfb\x3a\x11\x6b\x30\x03\x5c\xcf\xae\xca\xeb\xd8\xf9\x7e\x0b\x99\xbd\x10\x84\xc4\x26\x7a\x2f\xab\x0a\xb2\x87\x46\x3b\x66\xc3\x1d\x1b\x06\x85\x11\xce\x28\xf9\x48\xbe\x2b\x39\x69\x79\x0e\xa6\x4a\xf7\x49\x82\x89\xee\xcf\xe6\x3d\xe1\x89\xb9\x18\x67\x79\x65\xc9\xb4\x2d\xbf\xb9\xfd\x73\xdb\xd4\xe7\xd7\xd4\x95\xbb\x08\xd0\x66\x93\x26\x97\xe7\x19\xe4\xe2\xc0\xc4\x8d\xde\x08\xe9\xad\xac\xec\x73\x20\x2f\x03\x4c\x49\xe6\xad\xd4\x29\x18\x5e\x68\x34\x91\xf7\x8d\x6d\xe6\x61\x53\xe6\xee\xb0\x84\x2f\x64\x78\x2a\x3f\x26\xca\xb9\x63\x5e\x64\x4f\xde\x2c\xc6\xa6\xfb\x7f\x11\x6d\xc7\x5a\x2c\xb6\x2e\xf6\xc0\xee\x23\xac\x79\x53\xe0\x64\x74\x40\xe1\x4c\xaa\xf0\xa5\x89\x4c\x4c\x21\x99\x07\x83\x68\xed\x7a\x64\x4c\xd5\xc4\x3c\xcd\x1c\x71\x39\xcc\x21\xc2\x3a\x14\xa6\xa2\xe8\xd1\xbe\x70\x05\x0a\x9e\xb8\x1f\xe5\xad\xd6\x26\x78\x26\xb7\xcf\x9c\x39\x8a\x06\xe2\x47\x80\x08\x5e\x5a\x72\x17\x79\x8d\x70\xed\x45\x47\xfe\xce\xbd\xfd\xa6\x53\xa2\x0b\x2d\xa8\x1f\x33\x55\x39\x01\x38\x95\x7f\x1f\x52\xda\x5b\x5c\x54\x11\x7a\x3e\xe9\x28\x38\x76\x44\x40\xf0\x25\x73\xe3\xe8\x9c\xc7\x6f\x55\xdc\xa7\x04\x4c\x44\xc7\xcc\x67\x17\x3a\x15\x96\xef\x1c\xc6\x81\x34\x70\xf2\x56\xc8\x4a\xfd\xfd\xfc\x9d\x09\x92\x56\xc7\x02\xa1\xb3\x4c\xac\x32\x83\xea\x9e\x9d\x2a\x2d\x54\xf4\x70\x4f\xf2\x33\x45\xf8\xf5\xc8\xf6\x0b\xc9\x2e\x15\xe4\x72\xa2\x4b\x51\x68\xe0\x41\x66\x7e\x99\xfc\xe6\xde\x9d\x83\x1e\x4c\x1e\xdd\xbe\x0b\x95\x7a\x01\x23\xca\x63\x4c\x3a\x29\x90\x9a\xdd\xf9\x8f\xdf\xba\x25\xe8\x3f\x0f\x8b\xcd\x46\x98\xc3\xac\x2f\xce\xd5\x6e\x45\x2d\x9d\xd0\x84\x41\x26\x13\xf0\x83\xb5\x42\x1c\x5d\xd9\x6c\x35\x04\x22\x8c\x15\x53\x4c\x30\xe4\xb6\x5b\x89\xe5\xad\x4b\x71\x48\x94\x2c\x8e\x54\x79\x9f\xf0\x16\xb4\xb6\x93\xee\xcb\x88\xe9\x6e\x7c\x63\x51\xf7\x8f\x00\x18\x85\x92\xaa\x8c\xaa\xc3\xed\xe0\x51\xc8\x68\x45\x6a\x4e\xf9\x6d\x26\x5a\x0a\xf2\xd0\xdf\x04\x2f\x07\x77\x4c\x22\x0c\xe9\xa6\x73\x2d\xa8\x3b\xc9\xa4\xd2\x14\xa3\x00\xa6\xa4\xe6\xec\xc3\xd7\x58\xc4\xce\x22\x2f\x1d\xce\x6f\x21\xbd\xc2\xda\x99\xb8\x73\xdc\xae\xad\x94\xa7\x21\xe2\xb1\xc6\x72\x76\xb6\x52\xad\xa4\x0b\xa0\xda\x31\xed\x5d\x13\x94\x54\xc2\xfe\x50\x0b\xcc\x1e\xf3\x66\x7c\x49\xf8\x7a\x33\x96\x24\x6b\x2c\xce\xe1\xed\xb5\xb8\x85\x4c\x2f\x27\xd9\xf8\x86\xf2\x4d\xb3\xe3\xe3\xb2\x1e\xcb\xc8\x92\x56\x5d\x8d\x7d\x02\x00\x9f\x01\x74\xec\xa9\x27\x67\x44\x67\x33\x42\x52\xb9\x29\x7f\x77\x98\x16\x35\xce\x1b\xad\xe2\xbb\xa0\xc3\xfa\x3d\x1f\x74\xb4\x92\xda\xac\xff\xc8\xa9\xa3\xcd\x6a\x10\x2e\xe1\x19\x2e\xc5\xe5\x90\xff\xbb\x94\x98\xff\x7c\xe8\x5c\x9a\xc4\x63\x90\x2f\x48\x1f\xad\x46\x1d\x2d\x75\xf3\x63\x66\x8e\xd2\x07\x72\x5b\x50\xdc\xcc\xa2\x86\x81\xa2\xc6\x8d\x3c\x6c\x75\x3f\xad\xa1\x9c\xa6\xf2\x4c\x85\xbc\x87\xb2\x0a\xe3\x25\x61\xa4\x5e\xdb\x57\x9e\x14\x56\x30\xdc\x7c\xd1\xd3\x19\x3b\x97\x34\x38\x97\xc7\x93\x78\xa9\x63\x97\xff\xcb\xba\x66\x82\xee\xa8\xbf\x80\xae\xd3\xf8\xb5\xd7\xd7\x1e\x8b\x5b\x54\x1c\x13\x3f\xe9\x17\x04\xe4\x8b\x5e\x3e\xdf\x71\x0f\xe2\xff\xc9\x98\xd6\x2d\x2f\xeb\xb5\xb8\x9b\x5e\x91\x33\xb2\x08\x08\x01\xe6\xf1\xcd\x17\xfc\xa8\xe1\x3a\x5f\x9b\x35\xe4\x6f\x55\x6a\x00\x98\x76\x8f\x7e\x38\xa7\x27\xb2\xfd\xca\x34\x13\x81\xba\xae\xc2\x22\x60\x6b\x55\x73\x69\xa3\x85\x6a\x39\x92\x65\x0f\x58\x44\xde\x66\x9e\x38\xea\x54\xb0\x13\xf3\xf6\x0f\x7d\xc0\x3b\xc7\x26\x1e\xdd\x39\xe0\x8c\x69\x8f\x86\x44\x77\x2f\xd9\x73\x2c\x17\x9c\xea\x7c\x80\x96\x2b\xd2\x04\x75\xa1\x0c\x75\x20\xe4\x4b\x91\x87\x88\x11\xe7\xff\x19\xe2\x70\xcf\x03\xec\x49\x7e\xfa\xf8\xc6\xef\x75\xd7\x12\xd3\xa7\x30\x03\x8c\xbd\xc3\x01\xb7\x99\xe8\x9f\x56\xed\xe1\x8e\xb1\x9b\x9a\x8e\x68\x03\xa1\x60\xab\x80\x62\x25\x84\x64\x22\x6e\x20\x28\x84\xf8\xf9\xc9\x50\x41\x46\x3d\xfe\x18\x96\x6d\x8c\x97\x44\x9d\x63\x9d\x56\x37\x29\xc9\x07\x54\xcb\x51\xc2\xf3\x18\x76\xea\x40\x70\xa9\x6a\x69\x73\x28\x22\xd2\xe3\x59\xcc\x5e\x46\xbb\x80\xcd\x45\x32\x35\x87\x56\xc6\x46\x37\xc1\x14\xb2\xf2\xc5\xc2\x58\xa7\x90\x7c\xe5\xdc\x7f\x26\xb5\x0a\x4a\x0b\x10\x9b\xc8\x15\x24\x1d\x6d\x67\xbc\x91\x1c\x35\x9a\x91\x8f\x84\xdd\x46\xb4\xfe\x50\xc2\x8b\xa4\x49\xef\x20\x45\x05\x7a\x29\xff\x7a\x0e\xac\xe8\x25\x25\x2c\x47\xc8\xd3\xb3\x46\xa9\xbe\xcf\xe9\x9a\xd6\x09\x4e\xd1\x57\x44\x00\x98\x17\x47\x11\xe6\xf4\xfe\x1d\x24\xc8\xe9\x6e\x64\xe3\x68\x4f\x92\xb2\x1a\xf2\x09\x59\xab\xee\x9c\x9b\xa4\x28\xc8\x7e\x9f\x41\x1a\x9d\x33\x48\x3a\xdd\x2b\x03\x27\xee\xdb\xac\x85\x1c\x45\xde\xc3\x19\x6f\x64\xbe\xa3\x1c\x2d\xb2\xec\xc4\x89\x31\x64\xe4\xb7\x2e\x1b\xd6\xe4\x50\x42\x20\xeb\xd1\x66\x58\xf7\xb7\x8d\x24\xf1\x69\x1f\x3c\xf8\xaa\x35\x56\x86\x0b\x21\x3a\x43\x72\x7d\x40\x8d\x83\x1e\x6e\xef\xdd\xa0\x34\xd2\x13\xbe\xd4\xf8\x50\x45\x4f\xe3\xda\xa6\x6c\x23\x9f\xe8\x72\x74\xee\x37\xd2\x4d\x80\xc7\xbc\x0b\xbc\x76\x05\x10\xd1\xb2\xaa\xc2\x96\x5a\x35\xed\xb4\xe6\xab\x82\xf8\x6b\x37\xa2\x99\xba\x50\x3e\x86\xfe\x10\xba\xb2\x61\xaf\x27\xb7\xa6\xae\xee\x8c\xd6\x15\xf9\xf9\xd5\x65\x4e\xd0\x43\xc8\x8d\xa9\x95\xab\xfa\xbd\x32\x2d\x30\x7c\x2a\xfd\xe5\x9a\x9a\x97\xb4\x8e\x41\x04\x3e\x4f\xf4\x0d\x9f\x6e\x49\xc9\x52\xd7\x93\xfc\x62\x14\xec\xf1\xc8\x9a\x82\xe7\x0f\xf9\x23\x63\x72\xe1\x02\xbd\xc9\x92\xaf\xbc\x30\xc0\x1c\x75\x31\x9c\x08\x3c\x2b\xb4\x96\x7e\xc8\xa1\x40\xcd\x5f\x36\x35\x8e\x08\xf2\xe9\x31\x5f\xda\x4f\xd4\x4c\x0e\x7c\xa4\x5a\x99\xe4\x73\x66\x01\x91\x73\x80\xa4\x1c\xc8\x48\xc4\xad\x41\x3c\xd4\x7e\x0d\x98\xa6\x0e\xa0\x46\xc9\xab\xf2\x3a\x36\xc0\x90\xf2\x4e\x6b\xc2\x13\x97\x3f\xf4\xb9\x24\x86\xbb\x08\x8c\x37\x6e\x13\xd0\xfc\xd4\x44\x26\xfc\xed\x74\x42\xba\xb8\xf7\xa5\xf9\x2e\xf0\xb9\x24\xe0\x5d\xd9\xa3\x7b\x64\x29\x68\xde\x4a\xa7\xb8\xeb\xa4\x5a\x0d\x37\x32\xb1\xcb\x4f\xa4\xfc\xf0\xa2\xbc\xc6\x25\x29\x4e\x2d\xd1\x6e\x89\x53\xac\x8b\xa8\x24\xa5\x89\x65\x88\x5e\x76\x90\x7d\xb0\x21\x2a\xc3\x29\x47\x3a\x01\xec\xee\x10\xd9\xf3\xd4\xac\x17\x5a\x99\xf3\xa2\xbc\xf6\x53\xa2\xd5\xe4\x66\x7b\x2b\x3d\xcd\x2b\xff\x8d\xfb\x89\x98\x0a\x25\xb1\x4f\xe4\x9b\xa1\xbd\x94\xb5\xb8\x8a\xa8\x95\xa7\x50\xe6\x78\x2e\x2f\x2c\x4e\x64\x32\x4d\x29\x9d\x10\xf2\x01\xaa\xb5\xd7\x98\x19\x10\xd1\xb3\x1c\x28\xe5\x9b\xf5\x86\x54\xbb\x2d\xa9\x94\xc3\x42\x8e\xa6\x53\x3a\x5b\x0b\xc1\x72\x6b\x1e\x61\xaa\x14\x23\xef\x76\x74\x2b\x7b\x02\x31\x9b\x21\x81\x08\xb2\xff\x81\x79\x19\xa9\xd5\xda\xa1\xbc\xb5\x03\xb9\xd3\x69\x05\x65\xa2\x26\x84\x27\xf5\x74\xca\xed\x07\x70\x4e\x5f\x94\xd7\x4e\x2b\x2e\x0b\xaa\x01\x83\xf3\xcd\xed\xeb\x1e\xb7\x6f\xf0\xc3\x9d\x03\x99\xad\xb7\x54\x30\x51\x95\x83\xe1\x89\xc9\xc8\x32\x49\x12\xb7\xcc\x67\x62\x50\x05\x6b\xdb\x83\x2a\x93\x26\xbf\xc0\xe0\x40\xee\x7d\x01\x07\xa6\xd5\x72\x6b\x12\x58\xfe\x76\x41\xb5\x23\xeb\xdd\x55\xa3\x9e\x96\xec\x71\x59\xd7\x0d\x1f\xb7\x84\x8f\xf9\x86\x8c\x69\x35\xce\x4e\xf8\x49\x36\x16\x4c\xcd\x86\x68\xa5\x19\xb8\x21\x2e\xb2\x13\x76\x92\x8d\xcb\x56\xbc\x61\x64\x4c\xc1\x7b\xb1\xdd\x59\xdd\x1a\x95\x1f\xad\xcb\xf5\x86\x68\x5f\x45\x21\x5a\x81\x47\x72\xed\xa4\x89\xb2\x53\xa2\xf2\xd2\x05\x6b\xf1\x9d\x33\x79\x48\x87\xd4\x60\xae\x92\xe3\xba\x7b\x57\xfb\x5e\x75\x5c\x15\x02\x1c\xd8\x06\xef\x0b\x95\x73\xb5\x06\xfa\x29\xbe\x7f\x5e\xe5\x5c\x50\x0c\xee\x0c\x1d\xf5\x9c\x4a\x63\x91\x83\x9e\x2c\x75\x24\x72\x36\xab\xe4\x5f\x6f\x6e\xeb\x75\x2e\xe8\x98\x64\x72\x98\x18\x1a\x8e\x45\xb0\xa7\xba\x22\x2a\x0a\xe1\x22\xe6\xa4\x8d\xdd\x7c\xbf\xaf\xf7\xfb\xbc\x2e\x32\x89\x2c\x0f\x68\xb5\x50\xba\xcd\x9a\xdc\x3c\x56\x08\x94\x23\xb3\x1b\xe4\x66\x7c\x25\x0b\x6c\x5a\xda\x84\x6b\xb7\xa2\xf1\x81\xe3\x55\x56\x55\x4e\x0d\xc8\x03\x78\xc8\x97\x82\x72\x88\x55\x39\x33\x88\x08\x05\x25\x39\x39\xd1\x56\xa0\xf4\xfd\xe2\x0d\xe0\x6c\x24\x66\x32\xcc\xa2\x2e\xec\x39\x19\x09\x56\x46\xef\xb0\xbe\x21\x87\x0f\x68\x1f\x33\x08\x54\xbf\xe1\xee\xc0\x43\xfc\xa3\xa1\xcc\xe6\xa6\x04\xe6\x87\x27\x86\x4c\x77\xe5\x36\x0f\xfb\x0a\x6e\x4a\xe2\x04\xdd\xe8\x6c\x7f\xee\x4c\xd4\x35\xb8\x88\xed\x90\xbe\x22\x03\xc3\xd3\xf6\x37\x2f\x5d\xac\xe3\x31\x19\x97\xf1\xc7\x9b\xe8\x63\xbb\xde\xca\x15\xd9\x36\x04\xd8\xff\x1c\xfe\x2f\xa4\x73\x0d\xcf\xb3\x59\x86\x24\x6b\x74\x4d\x8a\x53\x7c\x95\xbc\xe6\xf5\x61\x8d\xcb\x38\xb4\x2a\xdc\xb3\xa6\x13\x4a\x6a\x9c\x2d\x6a\x1d\x2d\x95\xb0\xb5\x5e\x38\x6e\x82\xde\x0b\x2a\x43\x00\xfd\xc6\xd7\xa4\xae\x68\xfd\xde\x09\x00\x7e\x51\xd6\xe5\x7b\xc2\x9e\x6d\x77\xed\xa6\xdf\xb1\xe7\xa0\x14\x74\xff\x9a\xa8\xa8\x75\xff\xb3\xaa\x79\xd9\x70\x35\xa5\xe0\x0b\xeb\xb3\x18\xcc\xca\x4d\x0e\xe0\xbd\x91\x8b\xf6\x9f\xb5\x01\xf9\xf4\xdf\x5a\x67\x5f\xff\xf9\x45\x45\x2e\x09\x63\xa4\x7a\x2b\x23\xf0\xc2\xd7\xcc\x89\x89\x0e\xe7\xa0\xb4\x8f\xbd\xe7\x9e\x6e\x32\x98\x86\xd6\x55\x3c\x16\xd7\xdd\x80\xf8\xca\x88\x10\x9f\x88\xf5\xb2\x38\xfc\x81\xd5\xf0\xa8\x2a\x26\xed\x3d\xbf\xf9\xf9\xd0\x20\x9e\x87\x92\xbb\x2e\xd2\x47\x29\x17\x31\x8d\xaf\xa0\xaa\x7c\xfe\xa7\x1f\x9e\x3f\xb9\xf8\xcb\xd3\xbf\xae\x8a\x6b\x72\x72\x72\x62\x3c\x46\x1e\xc0\x2e\x65\xb1\xed\x77\x22\x01\xd5\xe6\x03\x77\xd5\xc7\x75\xed\x6b\xa8\xf1\x5c\xff\x7d\x08\xc7\x4d\xbb\x3e\x7e\x9b\x57\x3d\x14\xb3\xb3\x62\xa4\xb5\xe6\x81\x3e\xce\x39\xd3\xef\x63\x9c\xfb\xd2\xc3\x37\x6f\xd1\x06\xdb\x7a\xa0\xb0\xb8\xe6\xe9\x36\x28\xd4\x37\xeb\x31\xf4\xcd\x8c\xb6\xdf\xd2\xaa\x22\xf5\x33\xd6\x5c\xb9\x31\xff\xfd\xdb\x56\x29\x2f\x54\xa2\x13\xf0\x62\x9e\xd4\xb3\xd7\x4f\x1f\xbf\x7a\xfd\xe4\xe2\xc9\xf9\xdb\xf3\x8b\x37\x6f\xcf\xdf\x3e\xdd\xef\x75\x3b\x95\xee\x23\x47\x08\x8c\x5b\x91\xb6\xfa\xe2\x51\xd6\xdf\x67\xbb\xed\xf6\xd6\xc4\x8a\x2c\x20\xc8\x75\xe6\xa7\x2a\xd2\x29\x8a\x7d\x1f\x32\x9d\x7a\x26\xb5\x6b\x2a\xc0\x39\xca\x57\xa9\x77\x0e\xda\xec\xf7\x44\xd9\x3c\x3a\xdc\xc4\x67\x17\x83\x4e\x64\x7d\xd3\x69\x3e\xc9\x27\xee\xf6\x80\xa6\x5f\x05\xc4\xd0\xa6\x7e\xac\x83\x8d\x35\xd4\x0e\x34\xcb\x11\x80\x7d\x92\x47\x1a\xbf\x24\x37\x36\xbf\x7c\xd8\x09\xa9\xa2\xef\x5e\x92\x9b\x1c\x0d\x7d\x05\x03\xde\x7f\x23\x10\x12\xa0\xd3\x90\x7b\x5e\xff\xd0\x0e\x18\x2f\x20\x44\xc4\x1a\x2e\x26\x39\x51\xbe\x63\xbe\x73\x7b\xf8\x54\xb9\xb5\xc3\x38\x80\x92\x29\xad\xb1\x37\x45\xd5\x56\x7e\xa6\x30\xf4\xc8\x0f\x55\x6b\xfb\x69\x0c\x0f\x92\x5f\x92\xaa\x93\xc6\x2e\x88\x9a\x8f\xc7\x8e\x26\xbb\xe8\x7f\x26\x67\x21\x93\x49\x1c\x39\x0b\xd9\x58\x7e\x98\xc4\xe3\x71\x14\x8d\xd3\x08\x72\x36\x84\x3b\x8b\xd8\x34\xd4\x5b\x39\x8f\x97\xe4\xe6\x17\xcc\xe1\x25\xb9\x89\x8d\x0f\x58\x1d\x1d\xfb\x25\xb9\x91\xe3\x06\x69\xc4\x64\x31\x0b\x7f\xd8\xa7\xaf\x5f\xbf\x7a\xfd\x06\x0d\x00\x14\x3a\x11\xfd\x99\xf4\x2b\x47\xed\x84\x69\x2d\x3e\x35\x86\xe4\x30\x84\xda\xa3\x07\xd3\xe9\x24\x41\xda\x3c\x49\x47\x8a\x62\xac\xb8\x83\x1f\x0b\x8e\x7d\x93\x0c\x80\x04\xbb\x73\xe9\x03\x09\xab\xbb\x72\xe1\x5e\x9c\x58\xc5\x9c\x3b\x6f\xe0\x96\xef\x3c\x6f\x6d\x39\xef\x8c\x56\x82\x49\x27\x86\xd9\x27\x32\xd2\x4f\x8b\x9b\xb5\x75\x49\x7d\x5e\xe5\xb5\x64\x8f\x69\xc1\x83\x6c\xc2\x4f\x04\x2b\x0f\x69\x19\x22\xa1\x70\x4e\x54\x07\x45\x5a\xde\x68\x70\x19\x2a\xfa\xda\x62\xfe\xb0\x7d\x54\x6a\x11\xa4\xd5\x22\xc8\xae\x28\x97\xed\x0a\x6f\x0b\xba\xdc\xad\x46\x66\x01\x5b\x59\xd1\xca\x29\x61\xb0\x85\x28\xcd\xb3\x5b\x92\x93\xe5\x6e\x85\x16\xef\xd5\x0f\x2c\xfe\x2d\x1a\x2d\x57\x14\x3d\x24\xbc\x10\x93\x97\x1b\x2b\x05\x32\x15\xae\x9f\x9b\xaa\x27\x2a\xc6\x9c\xe1\xb5\xae\x8e\xd1\xea\xb2\xf7\x0c\x87\x75\xf0\x11\xf2\xf9\x1d\xae\x18\x8a\x67\xe5\x9a\x37\xec\x36\x16\x2d\x68\xf2\xbc\xe9\x3c\xed\x92\xc3\x78\x12\x30\x1c\xd6\x7f\xc1\x1d\x40\x60\xa6\xc3\xc5\x14\xbd\x10\x13\x87\xef\xea\xf3\xfa\x9a\x47\x92\x9c\xa0\x6d\xe3\xb1\x8c\xff\x98\x11\x4d\x88\x2b\x07\xa5\x7b\x09\xf8\x3c\x63\x68\x92\x2b\x8b\x4a\x16\x86\x57\xd3\x87\xc8\xbb\x36\xb5\x32\x25\x37\xe2\xa3\x13\x93\x1f\xe7\x86\xe3\xb9\xdf\x49\xaa\xf9\x92\xaf\xf4\x20\xd3\xe9\x31\xad\x72\xa4\x12\xa8\x8c\x87\x5a\x77\xb1\x09\xfb\xc2\xc4\x50\x92\x7a\x92\x12\x28\xc0\x6c\x14\xf6\xb4\xe4\xab\x91\x9d\x53\xef\x1d\x96\x41\xe5\x41\x98\xd2\x74\xca\x8c\x96\x20\x40\x5d\x38\x1d\xbe\x01\x26\xc9\x34\xc7\x33\x51\x35\x89\x4c\x8d\xe8\xee\xb8\x6b\x43\x10\x9e\x01\xa6\xc8\x7d\x9d\x4f\xe6\x26\x56\xa3\xae\x74\xfe\x2f\x5d\x4e\x50\x4c\x45\x30\x43\x11\xbd\x93\xf4\x20\x17\x87\x51\x7b\xac\x73\x59\xea\xd1\xf1\x70\x00\xd6\xdf\x51\xfd\x59\x0a\x3e\xd3\xb2\xc5\x9b\xf2\xa3\x0a\xf6\x65\x98\x20\xcc\x74\x28\x16\x8c\xcc\x4b\xc6\x49\x65\x4f\x5d\x78\x46\xbd\x13\xa9\xce\x87\x93\x7a\xc4\xd0\x1c\xef\x50\xe0\xcc\xf9\x2c\x93\xe1\x00\x0d\x38\x90\xfc\x54\x2a\x36\x06\x0c\xfb\xc9\xb0\x68\x89\x63\x77\xdd\x88\x81\xcd\xb2\xbf\xf7\xd7\xbb\x76\x03\xce\x5e\x50\x4b\x58\xaa\x37\x62\x15\x85\xb1\x77\x1d\x48\x9f\xfa\x66\x26\x2e\x85\x76\x73\xf4\xb2\x4f\x3f\x71\xd9\xa7\x48\x52\xc0\x9e\xad\x5f\x6d\x92\x0f\x7a\x15\x0f\x6c\xea\x79\x3a\xbb\x2f\xbb\x18\x37\x97\x0a\x05\x46\x4e\xe8\x6d\xbf\xd4\xa8\x17\xf0\xcc\x75\xb2\x78\x27\x63\x5d\x86\xef\x94\x63\xcc\x82\x61\x95\xdd\x6e\x41\x04\x68\x7a\xd1\x9a\x8e\x43\x57\x90\xdb\x10\xf3\x0e\xfb\x6b\x62\xcd\x8d\x6c\x26\x5b\x10\x70\x3f\xec\xaf\x62\xdd\x5c\x5d\x8b\x03\x80\xc7\xf2\x64\x8e\x2f\xb7\xe5\xfb\x36\x43\xd1\x30\xd7\xfe\x56\x89\x91\xe3\x67\x1a\xa0\xed\x25\x67\xed\xef\xaa\x23\x9e\xe5\xce\x91\x74\xbf\xd2\xf1\x25\x91\xfb\x24\xb7\x16\x93\xa8\xf4\x6e\xee\x86\x9e\x58\x2f\x77\x89\xed\xea\xd9\xbb\x72\xfd\xe1\xdd\x8e\xd5\x02\x7f\x54\x2b\x41\x12\xa0\x99\xd4\x53\xe0\xec\x62\xbd\x21\xeb\x0f\xcf\x1a\xf6\x8a\x5d\x6f\xca\x3a\x08\x14\x6c\x21\x58\x4a\x8a\x01\xa1\x24\x9a\x14\xb8\x7b\x53\x12\x1d\x78\xc6\xb1\xfe\xf5\xec\x5f\x83\x69\x6d\xdd\xe4\x14\xdb\xf5\xc9\x3e\x13\x70\x40\x43\x6a\x0f\x49\x94\x8d\x69\xa2\x3f\x9f\xde\xc8\x8a\xf0\x86\x36\x3e\xd9\x7a\x18\x86\x39\xc2\x7d\x94\xe8\x69\x0f\xd5\x23\x73\xb1\x82\x28\x3f\xdc\xf1\x11\xd3\x3e\x4a\xfd\xe3\x4c\x4c\x8c\x7a\x20\x8f\x84\x4b\xfd\xad\x92\x28\x95\x52\xa2\x91\xe5\x15\xbf\x89\x26\xf2\x91\x3a\x64\x9b\xbc\x24\x72\xb3\xf8\x5f\xf7\x03\xc7\x24\xc1\x86\x8e\x02\x7a\x62\xe3\xc5\x3f\x92\x9c\x62\x82\x03\x8e\x5d\x7c\x03\x9e\x00\xf8\xf8\x4f\xb4\x01\x17\x29\x49\x28\xbe\x2c\xcf\x7a\x76\x91\x72\x79\xb6\x79\x08\x6c\xa6\xcf\x23\xf3\xb3\x68\x23\xb5\x4e\xee\x52\xfb\x55\x9e\x70\x69\x4b\x42\x35\xfb\x7d\x83\xdb\x02\x1c\x35\x08\x96\x62\x16\xc5\xa9\xaa\xcc\x52\xe0\x32\xe3\x2d\x6a\xb0\xcd\x82\xd4\x54\x6a\x49\x04\x2c\x7e\x55\xc9\xcb\xb3\xa1\x44\x2a\xb2\x89\xf4\x65\x03\xc7\x64\x7f\x7d\x82\xa0\x3c\x2b\xe9\x96\x40\xa2\xdb\x73\xce\x05\x6f\x8d\x02\xc6\x3e\xca\x4e\xaa\x6c\x37\x5b\xa7\x76\xa7\x03\x53\xf0\x8a\x0a\x58\x94\x0b\x49\xc2\xdd\x7a\xdd\x02\xb4\x4e\x3e\x25\x4c\xb0\x89\x85\xdb\x9a\x02\xac\xbb\xb3\x5d\x2f\x96\x03\x07\x55\xaf\x17\xad\x4d\xe6\x71\x2f\xc0\x44\xa2\x44\x1a\xcf\x1f\x30\xc4\xa8\x20\x42\xf8\x14\xb9\x7e\x4e\xf7\xc7\xa0\x3a\x8a\x9d\xda\xf3\xcf\xa2\x58\xc8\x41\xeb\x9c\x58\xba\x08\xb3\x3b\xfc\x50\x80\x67\x8d\x70\x59\x4c\x26\xb5\x3f\xc9\xe9\x34\x78\x10\x32\xe6\x39\x1a\xd1\xe2\x2f\x26\x60\x51\xa9\x09\x2c\xee\x5b\x3e\x4c\xce\xe1\x4a\x81\x3b\x67\xd2\x0f\x01\xdb\xf5\x2d\xc2\x05\x63\x28\x84\x5e\xcb\x7a\x6c\xf2\x7c\x78\xa1\xff\x0b\x66\x8e\xd5\xb5\x7d\x8a\xbd\xac\xb6\x8d\x89\x74\x0e\x13\x1f\x94\x38\xa2\xca\xb0\xa9\x10\xb8\x49\x19\xd8\x03\x70\x41\x43\x09\x37\x2a\xfc\x90\x95\x23\x1f\x26\x5a\xf4\xe5\xb4\x03\x1f\x80\x15\xbb\x99\x41\xfc\x10\xac\xe3\xdb\x48\x0e\x2c\xcf\x6f\x5e\xf2\x90\x65\x11\x3d\xb4\xd6\x90\xe3\xf8\x4b\x95\xfb\x7d\x5e\x16\x21\x8d\x4f\x62\x8e\x34\x1e\x62\x8e\x69\x3a\x06\xa0\xee\xc5\x33\x4b\x47\x87\x3c\xd3\x10\x07\xd1\x00\xd7\x5d\x3a\x47\xc8\x47\x92\x37\x98\xe0\x80\x50\x61\xde\xbb\x25\x0e\x7e\x22\x6f\x56\xd4\x1d\xb4\x6e\x89\xcd\x2e\x71\xa9\x6f\x93\x18\xac\x87\xee\x12\xe7\xb4\xfe\x82\x9b\x24\xbc\x3c\x1a\x7b\x79\xd0\xfd\x9e\xea\xad\xf5\x7c\x95\x09\x6e\x40\xa7\xd5\xa8\xca\x6c\x9f\x97\xb6\xb7\x72\xc4\x1e\x12\x4a\x6f\x2c\x5c\x1e\x4b\xe0\xb5\x5e\xcc\x25\xef\xad\x21\xef\xa5\xa5\xdc\x25\xf0\x29\xd1\x5e\x86\x9c\x8e\xd2\x1a\x0f\xd0\xf7\x21\xa3\xa7\x63\x33\x35\xa8\xa0\x77\x80\x96\xa6\xf0\xb7\x79\x65\x30\x56\xcd\x34\xb3\xd2\x33\x1a\x91\x6d\x4b\x14\x9f\xe4\x15\x2c\x3d\xdb\x2c\xd6\xa3\x03\x73\x29\xa8\x55\xad\x85\x84\x25\xa5\xb0\x31\xb2\xe4\x31\x28\x39\x70\xe2\x05\x72\x98\x18\xa4\x91\x0f\xba\x38\x26\x8f\x7a\x37\x44\x1e\x5e\x11\x2d\xb4\xef\x61\x58\x3e\x39\x15\x30\xec\xb5\x7d\xb3\x69\x76\xdb\xea\x59\xc3\xd6\x44\x4a\x76\xf9\x64\x6e\x7c\x83\x3e\xf1\xd4\x34\xb1\x33\x81\xf4\x51\x89\x21\x2e\xc5\x35\x6e\x7a\x88\x9b\x3c\x07\x67\xf7\x46\xec\xb2\x43\x8b\xd2\x6e\xdc\x71\x9c\xe9\x67\xd8\x3a\x97\xa1\xfd\x1f\xb5\x79\x3d\xd6\xb1\xc6\xf4\x73\x6d\x50\x9c\xb5\x6c\x3a\xb4\x68\x1c\xd1\xd3\x9a\xb0\xfd\xca\x35\x31\xa1\xf8\x2c\xaa\x2e\x5e\xf4\x65\xc6\xaa\x2f\x62\x87\xfa\x68\xcf\x69\x65\x32\x8f\x6a\x93\x63\xfc\xc1\x80\x36\x39\xa1\x9e\x4d\xe8\x89\x13\xad\x3b\x84\x5b\x92\xdb\x5d\x35\xfe\x69\xe2\x11\x8a\xb8\x06\x4d\xe6\x5a\x5e\x4d\x65\x4d\x1c\x10\x56\xc3\x04\x8a\x8d\x53\x6d\x37\xe9\xb2\xe6\xf4\xe1\xd4\xe6\x25\x52\xb5\x4a\xf8\xee\xba\x57\x83\xc8\xf5\x1b\x8f\x69\x15\x49\xa0\xf1\x53\xee\x9f\xbd\x9c\xcb\xca\x06\x70\xe1\x95\x2c\xa7\x04\x2a\x71\x42\x0b\x9b\x9c\x3d\xd7\x0c\x85\x59\xe2\x8f\x7e\x90\x52\xe8\x87\xe7\x9f\x68\xf1\x95\x5d\x12\x98\x71\xe3\xd7\x40\xaa\x8f\xe0\xab\x9c\xe0\x5b\x92\x73\xe4\xf5\x98\xa2\x4f\x87\xfa\x74\x0f\xec\xfb\x5e\xaf\x29\x34\xa0\x97\xb9\xc1\x7c\xed\x26\x90\xc8\x64\xaa\x08\x12\xa9\xc6\xbc\x01\x27\x61\x9d\x91\x94\x37\xe2\x27\x17\x3f\x95\xab\xb0\x72\x30\xb0\x2e\xc3\x80\xa7\x23\x3d\x58\x6f\x03\x72\x82\x1c\xaf\xdf\xd8\xea\x7c\x9c\x1c\x25\x58\x3f\xda\x8a\x76\xb2\x0c\x0a\x51\xf8\xa2\xf4\xfd\x5e\xce\xfd\x0c\xdf\xd5\x42\x8a\x27\xa6\x82\x06\xb3\x3c\x0f\x07\xad\x9c\x97\xc3\x34\x55\x5f\xf6\x1b\x9b\xbf\xb3\x99\x39\x55\x5d\x22\x8a\x66\x98\x85\xd3\x24\x73\xbe\x0a\x0b\x74\xf5\xbe\x21\x2a\xa7\x90\xf8\x40\x17\x1c\x49\x34\xd7\xaf\x65\xe3\x58\xf9\x2f\xaf\xb9\x6d\x90\x69\x75\x66\xaf\xcc\x4c\x44\x9f\xa9\x91\xc6\x38\x06\x69\xb3\xb6\xa3\x7c\x8f\x79\xa3\xc4\xab\xd8\x00\xc0\x0f\x8f\x3a\x3e\x62\xd0\xb3\xbb\xae\x27\xce\x46\x93\xa1\xe3\x46\xa7\x5f\xff\xc9\x94\x33\x48\x19\x47\xa1\x13\x5b\xf5\x20\xf7\x2c\x49\xf6\x79\xe6\xf6\xaa\xcb\xf1\x24\xe0\xee\x15\xc7\x1d\xb6\x91\x89\x0f\xd2\xbc\x8a\x6b\x89\x35\xae\xe7\xe0\xc1\xaa\xee\xe1\x7a\x53\xd6\xd5\x96\x54\x4f\x3f\x92\x9a\xe7\x0c\x43\xd1\x08\xd1\x42\xc5\x71\xc3\x18\xb1\xe4\x60\x7d\x24\x4e\x91\x5e\x49\x79\x15\x51\x93\x89\xc5\x88\xc6\x55\xfb\x42\x6e\x7c\xe8\x1c\x11\xd0\xf8\x20\x9a\x28\xd4\xb0\x70\xe9\xd3\x1d\x48\xb4\x69\xf0\xd9\x49\x18\xf2\x18\x99\x46\xb8\xb8\x3c\xb2\xba\xe0\x7b\x7d\x3b\xa9\x46\x03\x73\x70\x00\xa1\xc9\xcf\x27\x4e\xc1\xff\x3c\x27\x43\x83\x8e\x06\xe1\xa8\x91\x23\xa9\xed\x00\x52\xed\x56\x62\x4a\x66\x4c\xcc\xd1\x28\x31\xc8\x74\xca\x0e\xeb\x61\x52\x33\xf4\xb5\x32\xbd\xd7\xee\xce\x02\xea\x1f\x03\x52\x32\x9d\x66\xe0\x38\x94\x4d\x20\x26\x57\xdf\x45\x5a\xdb\x18\x07\xb3\xfa\x04\x61\xf9\xb9\xba\x26\xef\xdb\x85\xfe\x0c\x79\xfd\xb8\x0e\x81\x6e\x8f\x49\x73\xb9\xae\x3e\x32\xec\xcc\x21\x89\x1e\xf8\x94\x3f\xd1\x5f\xc8\x0e\xfa\x45\x9a\x86\x9d\xf9\xa0\xa7\x58\x65\xa7\x51\x98\xdb\x4c\xf9\x17\x99\x08\xf5\x9e\xa5\xd2\xd2\x3e\xb7\xa4\x52\xe0\xd6\x21\xb3\x1d\x80\x8f\x8f\x49\x63\x98\x66\xf0\x24\x91\x71\xcb\xbe\xc4\x32\x5b\x80\xf8\xd2\xc4\xae\xf0\x4b\xe5\xea\x0f\xff\x17\x10\x05\xb0\x9c\xaf\x50\xe7\x48\xac\x9e\x43\x55\x5b\x94\xd6\x31\xf2\x24\x7b\xf0\x75\x76\x42\x46\x55\x73\x57\xce\xc8\xcf\x94\x4f\xa7\xf2\x7f\xc5\x94\x97\x45\xe9\x16\x64\xec\x6e\x36\x74\x4b\xf2\x49\xb9\x6c\x56\xf2\x74\xee\x8a\x35\x59\xb6\x70\xd4\x76\x88\x17\x3b\xc9\x26\xb7\x98\x15\xbb\x19\x11\x47\xac\xc5\xa5\x78\x0a\x94\x1d\xf4\x1c\xbc\x58\xae\x30\x2b\x96\x5a\xd1\x0f\x33\x86\x20\xd9\xba\x98\x63\x5a\x6c\x4d\xc5\xf9\x47\x14\x92\x21\xe7\x65\x51\x2e\xb7\xcb\x7a\xb5\x42\xb2\xcb\xe9\x54\x65\x69\x2f\x11\x2e\xe5\x80\x82\xa2\xaa\x47\x23\x98\x50\x21\xeb\xcf\xb5\x0b\x8e\xe5\x34\x16\x0c\xc3\x24\x16\x65\xd7\xd9\xc1\x58\x38\x18\x5b\xd6\x2b\x39\x8a\x84\x00\x4c\xac\x07\xc4\xa2\x3c\xda\x90\xef\x7e\x96\x41\x86\x23\x18\x98\x87\x03\x73\x31\x30\xcc\x59\x0d\x3c\x78\x86\x82\x1b\x31\xa1\xc6\xf2\xb9\x5d\xf9\xc1\x98\x88\x0f\xc6\xff\x0d\xbc\xee\x7f\x8f\x33\x9d\x67\xea\xa4\xc8\x9a\x7a\x9c\x9d\xa8\x58\x7d\x98\xc3\x49\x36\x86\x0d\x1f\xd3\x7a\x0c\xc0\x1b\x67\xb8\x3e\x29\x88\x8b\x3f\xb3\x71\x86\xad\x26\x6c\x3a\xcd\x45\x4f\x8f\x4b\x71\x38\x20\x09\xd5\x38\x2c\x1a\xc0\xd0\x49\x36\xcb\x10\x0e\x59\xf3\x5a\x9d\x03\x5b\x6c\x28\x1e\x48\xdb\x4b\xc0\xc6\x9d\x04\x6c\x26\x9a\x96\x40\x80\x0f\x5f\x32\x37\x01\x1b\x5b\x8d\x4e\x8d\xc9\x3d\x74\x75\x57\x89\xff\xf5\xd1\x57\x8a\x07\xb9\x01\xfe\x65\x01\xb0\x81\x5d\x48\x38\xb1\x05\x8e\x9c\x21\x77\x10\x06\x05\x87\x33\xc1\xbe\x40\x89\xc5\xe5\xa5\x46\x52\xd8\x43\x42\xec\x51\xca\x7a\x02\x89\xc2\x75\xaa\x65\xdc\xa0\x8e\x98\xe4\xc9\x9d\xd4\x1e\x0d\x55\x25\x4b\xc4\x63\x81\xbb\xfc\xe4\x34\xe2\x38\x75\xa0\xc8\x99\x24\x6d\xd7\x52\x65\x35\x20\x3a\x63\xf0\xd0\xf1\x9d\x25\xfb\xca\x08\x63\x4b\x76\xd3\x8a\xd7\x68\xc4\x5d\xb1\xfd\x4a\x2a\x87\x4c\xcc\x55\x8d\x24\x63\x6d\x66\x75\x96\x33\x2f\x87\x4f\x0b\xd9\xcf\xbd\x27\x50\xf0\x29\x78\xb6\xac\x57\x05\x9f\x5d\x5c\x6b\xef\x17\xc7\x12\x5e\x63\x8a\xd0\x22\x67\x4e\x25\x1f\xe8\xd3\x29\x2e\x20\x3b\x74\x4a\x0c\xd5\xab\x82\xba\x16\x84\xbe\xe2\x80\x49\x0c\x8b\x0c\x98\x64\xa3\xb1\x1b\x17\x1c\x07\x87\x32\x09\x38\x31\x17\x77\x55\xc9\xcb\x85\xab\x76\xae\xa5\x93\x29\x4f\x25\xa8\x61\xb3\x8b\x75\x23\xb6\x9b\x7f\xdf\x9f\xdc\xdb\xe6\xcf\x6f\x5e\xbd\xcc\x09\x16\xcb\x53\x42\xcc\xc1\xd6\x5c\xb4\x96\x1e\x11\x07\x9a\x46\xd5\x09\xfd\x54\x24\xfb\x7d\x56\xef\x04\x96\xb8\x99\x48\xee\xa4\x35\x11\xd3\x6a\x41\xba\x85\xfc\x2b\xef\xa7\xde\x3a\x0b\x1f\x2c\x08\x72\xd4\x8c\xb4\x5a\xb0\x19\xad\x64\xa9\x63\x06\x8e\x42\x3d\x1a\xdd\x17\x97\x80\x98\xb0\x5e\x78\x8f\xce\xb7\x64\xb2\x26\x1b\xd2\x02\xee\xc8\x91\xe3\x42\x74\x7e\x0a\x5a\x29\x6d\x5f\x55\x10\xcc\xa7\x53\xe5\x7f\x4c\x3c\xf2\xe5\x84\x57\x87\xea\x52\xe2\x07\xed\x41\x02\xe6\x23\xe4\xa3\x1e\x53\xa8\x64\x74\xed\xac\xd5\x67\x5e\xa5\xd7\x2d\x09\x22\x9f\xfa\x0e\x80\xde\x60\xad\x51\x73\x08\x16\xe9\x4e\x3b\x81\x4f\xe6\xbe\xeb\x37\xe9\x0c\x47\x69\xd8\xb4\x1e\xf0\x43\xb7\xdf\x30\xfa\xea\xbe\x73\x38\xf5\xe7\x00\xd6\xfd\x40\x68\x0e\x25\x71\x0d\x8b\x80\x9f\x1c\x25\xb4\x87\xa6\xc6\x5e\x5f\xff\xa3\x85\xf4\xb4\xd4\x84\xc9\x11\x3a\x45\x39\xdd\xca\x2d\x67\xf8\xb6\x49\xa9\xd7\x82\x54\x4f\x8e\xa4\x80\x33\x00\x6e\x9b\xa1\xd9\x45\x59\x55\x46\xd5\x7a\xa0\xfa\xa3\x07\x98\xe3\x7a\xd7\xa1\xcc\x52\xcd\xd2\x2b\xc5\xe8\x6e\xfa\x71\x1d\x9a\xa8\xe1\xc6\x96\x9e\x3c\x18\xfa\x21\x63\x30\x22\x2a\xa1\xf7\x84\xcb\x2e\xfa\xf1\x1f\xe6\x55\x7e\xd7\x21\x23\x16\x2c\x8e\x9a\xe5\x7b\x27\x25\x3b\xfa\x7a\xee\x23\x99\xaa\x84\x59\xc6\xd4\xa1\xd1\xd0\x11\x95\x2f\x51\xe6\x1f\x8c\x44\x75\xf8\xd3\x85\x40\x06\x36\x86\xd8\x09\x12\x56\x5d\x67\x9a\x4d\x4a\x23\x51\xce\x30\x59\xb2\x95\xb6\xe6\x7c\x0c\x70\xd9\xaf\xac\x8a\x30\x18\xa4\x15\x78\xa6\xd3\x9c\x16\xcb\x3b\x4e\xf9\x96\x2c\x32\xd5\x66\xac\x4a\xbb\x56\x42\x0a\xdf\x2e\xb2\x0c\x4b\x0f\x82\xc5\xdd\x75\x03\xf4\x7a\x91\x7d\x05\x69\x6a\xba\x6e\x15\xb9\x58\x65\x1d\x4d\xa8\x99\x2e\xd8\x0c\x52\xe5\x77\x9d\xb8\x76\x84\x4c\x32\xee\xcd\x4b\x89\x81\xc7\x75\x23\x3b\x51\x79\x06\x05\xd4\x9a\x04\xd4\x9a\x23\xa0\xd6\x60\x02\xc2\xd5\x00\xa8\x8e\x98\x94\xab\x5a\x90\xdb\x19\xea\x16\x94\xa0\x3c\x4a\x23\x80\x4c\x01\x3a\x88\xce\xfb\xbd\xce\x61\x25\x87\x52\x73\x74\x47\xcc\x89\xab\x3c\x8a\x34\xe8\x53\x49\x57\x15\x41\xfb\x1f\x68\xbd\x9c\x3d\x09\x89\x9b\x27\xb9\xa1\xae\x67\xf1\x51\xc0\x14\x82\x89\xca\x62\x16\x49\x66\xfc\x48\xa5\xa7\x30\x97\x2b\xa4\x16\x51\xb7\xf3\x49\xf6\x75\x26\x49\xa2\x0a\x84\x0d\xbd\x0e\x3c\x45\xa8\x0d\xa5\x55\x6e\x06\x13\x23\xcc\xbd\xd0\xaa\xce\x91\x63\x7f\x04\x2f\x01\x59\x50\xe8\xcf\x8e\x69\x4d\xfa\xd4\xd4\x98\x23\x8f\xb3\x23\x90\x87\x50\x34\x26\x24\xda\xda\xc4\x3e\x38\xb3\x28\x98\xf1\x80\x0b\xd3\x50\x59\x46\xf3\x88\x84\x52\xd0\xce\x66\x87\xb2\xf1\xc7\x0e\xbf\x62\xfc\xbb\x7c\x78\x22\x74\x7c\x21\x2d\xb7\x72\x16\x76\xeb\x90\x99\x48\xe4\xd4\xe7\x9e\x43\x76\xf0\x4d\xa0\xcb\x74\xa2\x9a\xc9\xcd\xf8\x3f\x43\x58\x06\x31\x26\xa6\xb5\xad\x69\xe6\xd4\x58\x08\x67\x63\x53\xc9\xc8\x3e\x9c\xb6\x9e\x72\x4b\x09\xa8\x6e\x0e\x7e\x10\x1c\x02\x3e\x4f\xa1\x61\xc0\xed\x85\x66\x70\x63\xa5\x26\x98\xf8\x5e\x24\xce\xcb\x0e\xb7\xc4\xaf\x9b\xd2\x6b\x52\xf4\xd6\x28\xd9\x92\xa3\x60\xee\x7d\x61\x20\x1e\x84\x9d\x93\x9b\xf1\x0f\x28\x16\x91\xee\x6c\xb7\xc6\xde\x23\x77\x5a\x37\x77\x36\xd9\x04\xb4\xc7\x92\x97\xf5\xc2\xde\xed\x9a\x43\x51\xfe\xb8\x75\x87\x5f\xd9\xb5\xf7\xe2\xf1\x97\xe6\x6e\xeb\xbd\x33\xb3\x70\x03\x95\x87\x6b\xce\x39\x9e\xe1\xfa\x63\xc3\x0d\x27\x3e\x9d\x78\x2c\x83\xcc\xe3\xb6\xed\xe5\x71\xa3\xf2\x21\xa6\x28\xc8\xca\xf2\x91\xb8\x2e\x86\xf4\x32\x4f\x06\x98\x39\xfe\x2a\x7c\x85\x59\xc2\x5d\xe4\x14\x89\x7e\x58\xda\xf1\x64\x2e\x19\x90\xa6\x18\x0a\x61\x53\x4a\xb0\x66\x3a\xf5\x69\x2b\x03\x51\x78\x3a\xcd\x1b\xed\xc7\xe5\x79\x57\x4c\xa7\x4d\xe0\xef\x25\x13\x52\x34\x81\xab\x57\x24\x8f\xac\xc4\x24\x84\x8d\x33\xe8\xc0\x12\x4e\x91\x5c\xbe\x2b\x0e\x3f\x6f\xdf\xf0\x72\x4b\xa4\x63\x8d\x4d\xa9\x79\x4b\xbc\x74\xb7\x42\x82\x7f\x4f\x9c\x1a\x68\x70\x1f\x03\xe3\x47\x90\x83\x8a\xe2\xa6\x21\xe0\x3a\x69\xe4\x4c\x71\x0b\x4f\xa7\x2a\xc8\x5d\xaf\xcf\xd2\x8d\xb3\xb7\x39\x57\x9e\xcd\x26\x6f\x2d\x91\xc1\xb3\xef\x88\xd2\xd0\x48\x8b\xa5\x95\x3b\x60\x23\x2e\x08\xbe\x21\xf8\xa9\x69\x23\x73\xd7\x56\x79\xa0\x28\x8d\xe8\x1d\x02\x8e\x39\xa8\x98\x18\x94\x4e\xea\xd0\x8c\x91\x52\x66\x97\x42\xf8\xe7\xfe\x70\x92\xc7\x9e\xe9\x4c\x8a\xfd\xf1\x26\x4e\xc1\x1b\xbf\x31\xfa\x7a\x1e\xf4\xff\x26\x4c\x27\x21\x39\xee\xb3\x9f\xc9\xe2\x29\x19\x5d\xc4\x93\x4d\x1c\x09\x00\x4d\xf4\x55\x59\x12\x9b\xb4\xcd\xc6\xbc\x13\x2f\xc8\xfd\x1e\x70\x72\x6d\x3a\xde\x8a\x16\x4f\xc5\x36\x7d\xa1\x69\xbf\x24\x37\x67\xc4\xc4\xc5\xdf\x6f\xba\x60\xc5\x0a\xa7\x0a\x88\xf5\x8a\x44\xeb\xd8\x35\xf8\xee\xfe\x55\xe9\xe2\x52\x9f\x99\x20\xb0\xa4\xaf\xc9\xdf\x77\xa4\xe5\x40\x92\x3b\xac\x84\xec\x97\x84\xdf\x34\xec\x83\x4a\xc5\xdc\x1b\x34\x65\x58\xfb\x51\x72\xf6\x1d\x56\xe9\x20\x04\xf8\x8d\x8b\x80\xfd\x83\x54\xe2\x77\x3f\xf9\xc2\x62\x68\x4f\x66\xca\x3b\x24\x8b\x94\x48\xb4\x18\x1e\xfd\x02\x75\x08\xeb\x3c\x0d\x72\x16\x0a\x5b\x16\x17\xe2\x8f\x97\xe4\x66\x71\x23\x7e\xc0\xf4\x17\x6f\x08\xbe\xb8\x2a\xd9\x87\xe7\x1e\x7c\xce\x5b\xd0\x78\x2c\x92\x71\xb1\x07\xa1\xab\x33\xe1\x45\x00\x0c\x86\x69\x93\xbf\x40\x4e\xd1\x68\x69\x1c\x87\x0a\xf1\xa7\x97\x67\x40\x45\x7b\x87\x09\x09\x40\x49\x24\xa3\x10\xa4\x3b\x21\x9c\xfb\x10\xbc\x51\x63\x23\xe6\xc5\x7b\xcd\x26\x20\x55\x2f\x8f\x91\xf7\xb4\xe5\x84\x7d\x0b\x96\x17\xd6\xba\x5f\x92\xb8\x70\xd7\xe1\x64\x1b\x8d\x24\x71\xf4\xd4\x95\xab\xa9\x39\x71\xf4\x32\xa7\x9e\x34\xc7\x0a\xe7\xef\x1c\x21\x9b\xaa\xa0\x80\xd2\x35\x7e\xbe\x82\x26\x9a\xaf\x80\x4b\x45\x0f\xe4\x2b\x68\x96\xe2\xbf\x95\xe3\x73\xe4\x11\xc5\x98\xe8\xb6\x08\x1c\x27\xe2\x2b\x51\x6a\xe3\x9e\x96\x27\x47\x4e\x32\x5d\x65\xec\xf1\xbc\x1b\x4d\xf9\x1d\x3d\x65\x2a\xa6\x0c\xbd\x0d\x29\x2a\x96\x74\x85\xf9\x52\xfc\x07\x36\xf9\x81\xb6\x41\x6d\xbf\xf0\x86\xf0\xf5\x60\x91\x15\xf4\x28\x42\xf0\xb1\xd1\x4a\xf5\x54\x8c\xd8\x94\x5b\x4e\x16\x42\x0b\x49\x67\x50\xc1\xda\x29\xd8\x0c\x39\xf8\x40\xa1\x9e\x2a\x83\x18\xab\x33\x1e\xd4\x83\xce\x1e\x54\xe4\xb2\xdc\x6d\x39\x94\x09\x3b\x66\x06\x36\x6f\xab\x9d\x0a\x03\x17\x32\x81\x36\xb7\x72\x9d\x15\x05\xee\xc7\xfc\xf1\x03\xe8\x38\xcd\x9f\xd2\x11\xc0\xfc\x29\x09\x92\xfc\xd3\x3b\x4a\xee\x23\x07\x8a\xd6\x6c\xaf\xa1\x5a\x57\x8b\x01\x1f\xc5\x00\x0c\xe2\x38\xca\xcd\x75\x0d\xf6\xc7\xee\x88\xfb\x0d\xec\x81\x1b\xc0\xdf\xbf\xa1\xfc\x8f\xdd\xb6\x39\x7c\x0b\x6c\x68\xa4\xa2\x9b\x3b\x03\xff\x2b\xe5\xc0\x50\x2a\x4d\xaa\x1b\xac\xdc\x1b\xbe\x1f\xcf\x1a\x4c\x28\x48\x5b\x8d\x7b\x7a\xe6\x04\x6e\x8d\xde\x91\x3c\x62\xd9\x4d\xda\x36\x19\x98\x35\x31\x8f\xdf\x9e\x32\x5c\xb3\xe7\x1c\x77\x64\x9d\xed\xa8\x53\x5d\xdf\x55\xe4\xd0\xde\xc4\x9c\x4b\x12\x4c\x84\x52\x7f\xa4\xee\x49\x00\xa4\x7f\x6e\x8e\x5d\x4a\x70\xd8\xc4\x09\x97\x2a\xab\xa7\x82\x13\x6a\x69\x53\x1f\xd7\x93\x9e\x63\xaf\x76\x53\x50\x19\x31\x5a\x32\xa3\xed\x55\x1f\x8c\x9e\xa3\x32\x56\x4a\xc3\x4e\xaa\x83\x4d\x8d\xd4\x7d\xd4\x55\xd8\x9c\x21\x63\x55\x37\xac\x31\x8c\x68\x35\xa1\x4a\x78\x03\xe1\x95\x77\xfe\xb3\x45\xd8\xa8\x43\xf8\xb8\x75\xa8\x12\x59\xe9\x12\x8e\x4c\xae\x44\x59\xef\x13\xb0\x53\xae\x6a\x99\x7e\xeb\x14\xd8\x73\xd3\x97\x0e\x57\x9e\x7b\x20\x24\xe1\xe2\xd4\xad\x3d\xe7\x97\x10\xa7\xab\x11\x77\xd9\xdd\x5a\x65\x9a\xdf\x94\x6d\x4e\x8c\x9b\xeb\x00\x57\xdc\xe1\x92\x73\xe6\xe2\x50\x87\x8d\xb4\x7c\x2c\x09\x74\xd5\xa0\x7e\x20\x05\xea\xb0\x52\x55\x7e\x5a\x5f\x36\x6a\x46\x1c\xa1\x8a\xbc\xdb\xbd\x7f\x5e\x5f\x36\xfd\x4a\x9e\xcb\x8c\x56\xd9\x0a\xf3\xe2\xae\x93\x7e\x48\xd2\x4a\x18\xaf\xf4\xef\x16\x26\x27\xda\x45\xa4\xd3\x45\x5c\x96\xd2\x03\x3b\xb3\xe7\x3e\xc3\xd7\x96\xfe\x11\x4c\x7e\xbe\x2e\xeb\x6a\x31\x99\x77\x2b\x4f\xe5\xd6\x0b\xa7\x77\xae\x20\x1b\x7a\xb9\xa4\xa0\x7f\xd0\x29\xa1\x64\x69\xf1\xdc\x79\x21\xb8\xe3\x5a\xce\x4a\xce\x84\xce\xc4\x7f\xee\x1c\x1a\x67\x0e\x08\x29\x6f\xea\x5c\x66\x6f\xd1\xe5\xf1\xfc\x3e\xb2\x67\x90\x46\xc3\xed\x64\xe9\x04\x5a\x66\x7d\xf9\x23\x13\x92\x99\x14\x13\x32\x57\xa6\xb4\x0e\x75\x5a\x74\xc3\x46\xd8\x59\x75\x08\x42\x67\x80\x96\xc3\x46\xdd\xd1\x7a\xbd\xdd\x55\xe4\x15\xdf\x10\xe6\xdc\x22\x93\x39\x7e\xcf\x9a\xdd\x75\xbb\xa8\xc5\x5a\x04\x29\xfb\xe8\x68\x15\x16\xac\xeb\x3a\x1c\xf5\x6f\xed\xeb\x2a\x13\x3e\xa8\x1d\x0e\x37\x24\xc6\xe8\x39\x45\x97\x52\xf9\x10\x5c\x0d\xd3\xb3\x86\xc5\x30\x39\x90\x77\x9d\x4e\x71\xe6\xb9\x9c\x7c\x73\xfb\xb2\xbc\x22\xca\x0a\x08\xe5\x27\x4c\x48\x4a\xf2\x84\xb8\x53\x74\x23\x58\x70\x92\xa9\x43\x1a\x76\xae\xe7\xf3\x3d\x01\x37\xc8\x1e\x87\x50\x0b\x02\x73\x3a\x34\x8a\x67\x4b\x7e\xe5\xe4\x07\xc5\x99\x2c\x40\x71\xe7\x66\x61\x16\x42\x5d\x5c\xbb\xa9\x24\xa0\xd9\x85\xf8\xaa\x53\xa7\xf5\x9c\x14\xbd\xcf\x43\x7d\xb6\xa2\xc9\xe0\x91\xa8\xd3\x91\xc7\xaf\x43\x93\x66\x7d\x58\xc1\x7a\xd4\xbd\xda\x59\xf5\xe8\x07\x4f\x7f\xd7\x1d\x03\x19\x5a\x65\xf8\x9c\x20\xfc\x8a\xcc\x18\x69\xae\x49\x0d\xc6\x8f\xfc\x8e\xb6\x52\xa6\x9d\xcc\xdd\x8c\x0f\xe0\x05\x71\x7b\x4d\x82\xac\x49\x8b\x98\x45\x2a\xf4\x8e\x1d\xc2\x4e\x27\x61\x3c\xef\x85\xe9\x1b\xd4\x7d\x51\x5e\x0f\x08\xd3\xaa\x8b\x58\x39\x0f\x14\x47\xfe\xf4\x5c\xed\x80\x99\xac\x9c\xb7\x24\x2b\xe4\x44\x16\x78\x21\x8f\x97\xb4\xae\x9e\x7b\xa7\x05\xb9\x51\x08\x45\x8d\xeb\x0e\x07\xad\xa2\xb3\x80\xee\x22\xe0\x95\x5d\x4a\x73\x9e\xab\x76\x85\x49\x60\x5d\x67\x55\x5a\x6e\xfa\x1e\x5b\xbb\xa2\xd5\x41\xdc\x4e\xa1\x81\x9d\x3e\xe0\xa1\x22\xd7\xbe\xa8\x6d\x23\x4c\x8b\xbc\x71\xa0\x34\x48\x6c\x6a\x84\xe0\x7e\xc1\x65\xd1\x98\x91\xc1\xc6\xad\xaa\x94\xea\xf2\x7e\x2f\x4c\x01\x04\xe9\xcb\x6b\xf0\x98\x04\xe5\xf7\x0a\x0a\xa6\xe2\x72\x60\x06\x72\x9f\x26\xa5\x5e\x4e\xa3\x82\xc5\x4b\xb9\xab\x6e\xa2\xfc\x5d\x01\x4c\xcf\x8c\xb6\x92\xf9\x69\xd1\x59\x3b\xbb\xa4\x5b\x4e\x58\xaf\x30\x1b\x2f\x58\x1f\xa6\x70\x4b\x22\xb3\x34\xa5\xf0\xe5\x1a\x58\x86\x81\x34\x4f\xf6\xfb\xba\x70\xfe\xec\x54\xe6\x13\x35\xd5\xdd\x74\x2a\xef\x55\xc5\x38\x35\x78\x87\x30\x9f\x01\x2f\xb5\x16\xa7\x71\x3a\x25\xb9\xfb\x37\xc0\xa6\x41\xb8\xe9\x6c\x3a\x35\xb1\xfa\x39\xe4\x78\x54\x95\xf7\x43\x44\x59\x17\xdb\xde\x22\xb9\xb6\x0e\xf7\x17\xc9\xa3\x8b\x1c\x13\xf0\xf0\x33\xeb\x00\x87\xd8\xb5\xf5\xbb\xd8\x16\x6b\x84\xeb\x62\xbb\x9c\xaf\x24\x2b\x41\xe5\x6f\x85\x0e\xf0\x5b\xf5\xa8\xd4\x3e\xd2\x91\x8e\x61\xe0\x1d\x6a\x2c\x1a\x2e\xa8\x49\x06\x56\x76\x5d\x90\x39\xed\x8d\xf7\xb7\xd8\xd0\xc3\x0a\xb6\x3b\xcd\x19\x2e\x57\x0e\xcb\xb9\x5c\x75\x3d\xa6\xea\xb1\xea\xc3\x80\x21\xe0\xe4\x02\x6f\xd0\xe9\x94\x2c\xa5\x91\x67\x65\x99\x3b\x4c\x3a\x84\x55\x79\xc2\xb7\xb7\xd7\xa4\x5d\xbc\xc2\x91\xc3\xb2\xf8\xe0\x3f\x95\x74\x6b\x71\x8e\x2f\x29\xd9\x56\x87\x17\x25\x98\xf7\x17\xe5\xf5\x2f\x5d\xc2\x19\x51\x35\x43\xe4\x3a\xd0\x82\xa9\x08\x42\xb8\x64\x85\x04\x24\x5f\x67\xc6\xfd\x34\x53\x6b\x74\x95\x75\x07\xf8\x9f\xe3\xae\x82\x9e\xcb\x2e\x24\x80\xd2\x05\x37\xa1\xd6\x4e\xe7\xf2\x5a\x12\xbc\xc1\x50\x56\xe0\x89\x0e\xaa\xb6\x04\x2a\xd0\xcf\x1f\xd6\x56\xd5\x67\xdc\xa0\x69\xc1\x96\xf5\x6a\x64\x86\x05\xdf\xd2\x8a\x70\xc2\xae\x68\xed\x79\x28\x47\x46\xd7\x39\x29\xa1\x4e\x83\xf8\x5f\xe0\xbd\x8a\x45\x77\x18\x2a\xe6\x5c\x11\xf4\xcc\x37\x1a\x4a\xde\x3c\x78\x58\x9f\x65\x4d\x4d\xde\x36\xaf\x6a\x92\x2d\xb2\xab\xb2\xbe\xd5\xbf\xa3\xcd\x40\x92\xd1\xed\xd4\x1f\xd1\x86\x2f\x1b\xa7\x43\xf8\x43\x8a\x69\x71\xc3\xc0\xe7\xc4\x41\x07\xc5\x72\x06\xb4\xa2\xe0\xd8\xe0\x22\x8a\xe0\x18\xa8\xbf\x2e\x1b\x76\xe5\x29\x6a\x3e\x75\x8a\x49\x61\x0d\xae\x28\x8b\xf7\x9a\x07\x89\xa2\x7c\x8a\x73\x0d\x51\xcf\x82\xf4\x7e\x68\xfe\x36\xb2\xe4\x03\x43\x45\xa1\x74\xfc\xa8\x5a\xe9\xd3\xe7\x49\xa5\xbb\xce\x42\xc7\x63\xd8\x11\xcd\xcd\x9a\x21\xcd\x2c\xbf\x25\x45\xf6\x94\x0a\x41\x4c\x56\x10\x1f\x37\x6c\x5c\x8e\xb5\xfb\xc8\x98\xb6\x63\x46\xfe\xbe\xa3\x8c\x54\xe3\xb2\x15\x4d\xb4\x9a\x60\x96\xe1\xc7\x07\xaa\x87\x2d\x2f\x56\x41\x75\x0c\xa8\x22\xe2\x3d\xba\xa1\xdb\xad\x54\xfc\x9a\x60\xbb\x36\x5a\x16\xc4\xbc\x96\xad\xdb\x58\xcf\x64\xa8\xd3\xb0\x06\x43\xaf\xc3\xe5\x6a\xa8\x00\xd9\x85\xb8\x99\x14\xbb\x9b\x8e\xc0\x57\xbe\x3a\x4e\x5b\x5d\x52\x47\xe7\xed\x0b\x86\x1d\xce\xa3\x47\x2f\xf3\x7c\x78\xd2\x83\x6f\x05\x2b\x86\x94\xf4\xaf\x7a\xc7\x93\xb9\x29\x7c\x18\x03\x93\x56\x7b\xc6\x41\x38\x1f\x39\xd9\xc2\xf4\x62\x6d\x7a\xca\x51\x33\xfb\x5b\x43\x3d\xf5\x58\xe3\xa4\xac\x6c\x6f\xeb\xb5\x17\x37\x92\x61\x8a\xe9\xec\xe2\x72\xbb\x6b\x37\xdf\xc7\x97\x20\x50\xbd\x33\x2a\xe1\x84\x3b\xa1\x1b\x0a\xa5\x33\x4f\x5c\xa8\xd4\x13\x7e\x45\xb1\x7a\x3a\xad\x23\x7d\xe5\x72\x8f\x86\x26\x12\xe6\x6c\x3f\x3d\x00\x46\x37\xee\x27\xb1\x3d\xa3\x43\xf8\x38\x8c\xce\x8e\x89\x2c\x58\xb4\x0e\x8d\xb2\x25\x90\x8a\x3f\x6a\xf8\x90\x25\x5b\x61\x2a\xfe\x3b\x39\x55\x75\x43\x71\x03\x7f\xfe\x5e\xb0\xed\xe2\xc7\x1f\x56\x42\x46\xd1\x90\x03\xb1\x05\x8d\xda\xe9\xb4\x8d\x45\x48\xe7\x25\xea\x60\x87\x2c\xe5\xf4\x52\xa8\x1f\x3c\x2b\x89\xef\xd4\xb9\x49\xe7\x66\x3f\xd8\xf1\x40\x5a\x77\xd9\xb7\xbd\xe6\x8f\x8a\xba\xd1\x1d\x5f\xd9\x93\xad\xc9\xc3\x07\x05\xff\xc1\x21\x97\x7c\x85\x4c\x5e\xbc\xbf\x90\x5b\x77\xcb\x54\x35\x41\x3f\xf7\xdc\x3f\x65\x62\x3a\x61\x5f\x7f\x72\x07\xa2\xc2\x9d\xba\x6f\x93\x17\x44\xb2\x06\x61\xd1\xbe\xb7\x44\x7b\x89\x0f\x1f\x53\x3a\x9d\xd2\xb8\x26\xaa\x76\xa6\x92\x8a\xd4\x3f\x76\x26\x6a\x02\x71\xc2\x6c\xba\xb1\xe3\xa5\x83\xf2\xbf\xd0\xda\xc3\x28\x7e\x77\x32\xf1\x38\x72\xff\x0e\x39\x7a\x20\xa7\x33\x35\x88\xf5\xf4\x8c\x25\x4f\x3b\xb4\xce\xc8\x71\xf4\x3a\x54\xfd\x1c\x2a\x0c\xe9\x7e\xef\x46\x38\xd9\xaf\x13\x95\x5e\x8e\x9c\xe6\x31\x37\x86\xa9\xb2\x23\x6e\x0e\x6f\x38\x79\x69\x54\xb4\x5d\x37\x75\x4d\xd6\xfd\x72\x1a\x9f\x6f\x12\x30\x78\x34\xdb\x54\xbf\x1c\xde\x0b\xe2\x5a\xb7\x27\xf9\x84\x4c\xa7\x13\xee\xb8\x06\xbe\x76\x3c\x33\x71\xe3\x18\x3d\xea\x86\x5d\x95\x32\x75\x75\x7b\xdd\xd4\xad\xd1\xed\xe0\xc6\xf9\xfc\x7b\x12\xa4\xd0\x73\xbc\x05\x7a\x35\x68\xa1\x64\x5e\x11\x3a\x14\x30\x53\x47\x54\xbe\xbf\x23\x3f\x73\x56\xae\xf9\x22\x84\x9d\x31\xae\x75\x9e\xf3\xe3\xdf\x82\x15\x88\x89\x68\x8d\xd3\x79\x4e\x53\xf1\x8c\x24\x34\x9d\x36\x4a\xa7\x09\xc5\x02\xc4\x95\x67\xf5\x99\x08\xef\x0a\x32\xbb\xa4\x75\x25\x4b\xa8\xe3\x16\xd7\xb8\x44\x78\x2b\x93\xac\x4b\x47\x9f\xf1\xb9\xb4\x26\xfe\x8b\x6e\x37\x6e\x2e\xc7\xff\x0a\xc5\x46\xff\x35\xb3\x25\x4a\x8a\xa2\xd8\xf5\xeb\x97\x2a\x4b\xa4\x19\x63\x2c\x67\x49\xaa\xf1\xae\x96\x7a\xe0\x0a\xc3\x09\x1a\xdf\x94\xed\xf8\x23\x61\xb7\xe3\x2d\xfd\x40\xb6\xb7\xe3\x72\x7c\x45\x5b\x5e\x7e\x20\xc6\x4d\x33\xdf\x15\x7f\xcd\x77\x98\xe3\x2d\x0a\x2d\x94\x86\x18\xbc\x26\xf9\xf7\x62\x47\xc1\x6d\x57\xae\x07\x2e\xff\x4c\x4f\xc0\x71\xfa\x9c\x5d\x00\xd3\x48\x51\xa7\xda\x88\x35\x3f\x95\x9b\x34\xbe\x2e\x6f\x6d\x6e\x79\xe6\x60\xc6\x13\x12\x10\x20\xa5\xee\xcc\x9b\x82\x43\xb6\x5c\xec\xc4\x05\x73\xc7\xfc\x35\xa3\x15\x2e\x0b\xee\x46\xab\x8e\x43\x9a\x26\x9a\x93\x19\xad\x8c\x93\x2f\x34\x26\xbd\x10\x5f\xd2\x0f\xf1\x1d\x49\xfc\x08\xde\xe0\x36\x42\x37\x13\x83\x6b\x18\x12\x69\x4a\xf9\x89\x95\xd7\xd7\x84\xe1\xa6\x90\xf2\x30\x4c\xde\x7a\xe2\xb7\x05\x4d\xf0\x16\x79\xa9\x12\x6e\xb6\x3a\x0b\x33\x1d\xba\x9a\x6b\xb4\x6c\x57\xa0\xef\x03\x4d\x83\x0e\xe4\xb5\x2c\xc4\xa2\x95\x6a\xb8\x5d\xd7\x75\xf6\xc2\xca\x19\xe6\xa0\x76\xf4\x46\x32\x6a\x8d\xbf\x90\x5b\xbc\x2d\x5a\xa9\xf1\x58\x17\xe5\x72\xb7\x9a\x4e\xc5\xbf\xb0\x47\x23\xaf\x0c\xcd\x74\x6a\x50\x78\xbd\xdf\xe7\xa2\x15\x7c\xb0\xdf\xdf\x75\xd8\x7c\x13\x67\xc5\x21\xeb\x02\x14\xd0\x65\x0e\x70\xca\xe2\x8e\x56\x0b\x2a\x33\xfe\x36\x9d\x37\x1c\x3f\x13\xc4\xc2\x91\x5a\x4a\xb4\x90\x4f\xee\x3a\xec\x55\xaf\x11\x67\xd1\x16\x7e\xed\xf2\x35\xde\x62\x8e\x50\xd7\x01\xc9\x22\x42\xd0\x11\xc3\x34\x72\x98\xb2\xeb\xb0\xaf\x48\x6e\xd0\x59\x03\x64\xa2\x44\x8b\x32\x6f\x10\x1a\x29\x9b\xaf\x8c\x92\xbe\x53\xc1\xbf\xf2\x73\x96\x2c\x0e\x91\xd3\xe2\xae\xc3\x74\x09\xe5\x3e\x57\x85\xfc\xb8\x85\x70\xb3\xce\x39\x18\x2f\xc3\x83\x11\x90\x9a\x46\x71\xdb\xe7\xdb\xad\x74\xcf\x6b\x66\x81\x6b\x48\x5e\x0b\x02\xd5\x2f\xdc\x60\xdc\xcc\x93\x8e\x09\x92\x88\x9d\x4b\x05\x99\x3c\xcd\x25\xea\x0c\xe1\x68\x8b\xbf\xe6\x2d\xe6\x38\x45\xd5\xce\xb7\x5b\x79\xd0\x69\x8a\xb2\x94\x21\x65\xa1\x1e\x65\x39\xdf\x6e\xfb\x84\xa5\x44\x42\xdc\x32\x3e\x5f\x6a\xdd\xcd\x01\x6a\xa3\xe7\xf3\xbb\x3b\xb3\x1f\x5d\xe6\x80\xf9\xb9\x53\x16\x3d\x5a\x41\x55\x2b\x1c\x65\xd4\x1e\xe4\x8c\x10\xe2\x90\x99\x9d\xed\xea\xbb\xdf\x7c\x4d\xd9\x67\x83\x35\x5d\x9d\xac\x0e\x0c\x1c\x42\xef\x4c\x0e\x82\x56\xa1\x54\xa4\x86\xa3\x4c\x58\xae\xb4\x28\x2a\x9d\x04\xf1\x63\x53\x75\x51\xa7\xdb\x6b\xe2\x7c\x2f\x48\x94\xae\xb9\xe2\x7b\xd8\x14\x2c\x78\xa0\xe2\x94\xa4\x07\x80\x20\x10\xf2\x97\x29\x18\x59\x5b\x07\x72\xa3\x85\x99\xd9\x39\xc7\x23\x6c\x8c\x2c\x6e\x1a\x9e\x05\x7f\x2f\xf2\x70\xf5\xbd\x85\xcf\x2e\xc4\x9d\x6a\xfd\xaa\x42\x78\xa1\x30\x2a\xee\x60\x88\x1a\x80\xc9\x44\xc2\x01\xcc\xfa\xa3\x02\x78\xa1\x2b\x41\xbf\x56\x68\x3a\xfd\xae\x17\x65\x53\xcb\x87\x82\xac\x09\x66\x0f\xff\x43\xbb\xc0\x43\x17\x10\xe1\xf2\x8b\xdc\xe0\xa5\xb7\xa0\x17\xe0\xa2\x4d\xfa\xe2\x2f\xa9\x26\x30\xe5\x2f\x54\x09\x42\xef\x2f\x40\x74\xf5\x04\x0e\xb5\x5b\xb4\x42\x6a\xe7\xec\x4f\xa5\x76\x90\xf3\xda\xa9\xd6\x8a\xa2\xa9\xba\x1e\x8c\x5c\x6f\xcb\x35\xf1\x97\x11\x70\x50\x6f\xa1\xcc\x7b\xbb\xdb\x72\x41\x1d\xca\x71\x4b\xd8\x47\xc2\xc6\x7f\xdf\x09\x5e\x29\xbf\x6c\xd8\xb8\xdc\x6e\xc7\xfd\x98\xcd\xb1\x00\x6b\x8b\xc6\xb4\x1d\xd3\xab\xab\x1d\x9c\xbc\xd9\xf8\x6d\x33\xbe\x6a\x2a\x7a\x79\x3b\x56\xab\x6e\xf1\x78\xd7\x92\x31\x6f\xe4\x95\x81\x32\x81\x00\xe0\x7d\x1e\x38\xe1\x5b\xb5\x6a\xca\xf3\xde\xb4\x38\xb3\x40\x48\xc6\x40\xaa\x44\x03\xae\x06\x5b\x7a\xbe\x9d\xf3\xc7\x2a\xe7\x75\xdf\xf6\x19\xaa\x7a\x4d\x20\xcf\x4c\x7f\xeb\x68\x05\x20\x2f\x9d\x13\x7c\xdb\x61\x99\x5f\xa0\xef\x42\xa5\xb5\x90\xfd\xfc\x59\x7a\x93\x33\x84\xfa\x39\xbc\xed\x76\x8e\x2c\x6a\x39\xdf\x60\x1d\xad\xa5\x9d\x90\xe5\xf8\x79\xb4\xa2\x0f\x89\xe3\x08\x8e\xd6\xe5\xec\x97\xeb\xd4\x45\x3c\xfb\x73\x38\xb5\xf7\x60\x7c\xf2\x82\xa4\x75\xf8\xa2\x0f\x9c\x7e\x7d\x13\x73\xc9\x7a\x7b\x89\xef\x94\x6b\xe3\x64\xde\xa1\x0e\xc3\xe5\xe7\xd7\x7e\xf1\xb6\x32\xbd\x89\xe2\x43\x79\x2f\xc8\x64\x3b\x2a\x4d\xc2\x27\xf5\x25\x3f\x75\x7b\xf3\xdd\x3d\x83\x60\x07\xb8\x8d\x9d\xcc\x13\x6e\x61\x31\x97\x31\x8a\x71\x27\xa5\x86\x08\xad\x3f\x36\x1f\x48\x9e\x89\x6f\xc5\x25\x92\x66\x57\x5c\x1e\xa0\x37\xaa\x6a\xe4\x3c\xb7\xbc\x45\xd9\x73\xe4\x84\xd2\x5d\x17\x15\x6d\xdb\x66\x4d\x4b\x0e\xa9\x29\x5e\xdd\xd4\xf2\xeb\x36\x81\xec\xdc\x46\xca\x18\x88\xa5\x6b\xda\xf1\x20\x36\x75\x24\x8b\x87\x80\x5b\x1c\x78\xdc\x09\xf4\xa9\x75\x78\x88\x98\x80\x4a\x08\xd3\xa3\xcf\x57\x2a\x51\x8c\x6d\xed\xac\x52\xa7\x8b\xb9\xa1\x5b\x5d\xb4\xa8\x4f\xe0\xa3\xe3\x98\x6b\x2c\x05\x86\xdc\xa9\x02\x19\xa0\x8a\x0a\x72\x0c\x5f\xeb\x48\xba\xb9\xb9\x21\x87\x5c\x49\x93\x3e\xce\x7e\x6e\xda\x67\xaa\xde\x9c\x05\xbf\xe0\x29\x32\x24\x9d\x3c\xdd\x8b\x39\x72\x0e\xd3\xb8\x7e\xac\x26\x00\xcc\x0c\x08\x7f\x4b\x8a\x7f\x10\x7d\x93\xc6\xef\xd1\xc8\x2d\xe9\x63\xcb\x7e\xaf\x15\x11\xe8\x08\x00\xc9\x16\x70\x65\x15\xf6\xa7\x7b\x41\x6e\x69\xfd\x41\x71\x2b\xf0\x53\xbe\xfb\x1c\x37\x24\xa4\x81\x0b\x2f\xc7\xe0\x5a\xcc\x50\x94\x00\xca\x03\x13\xc2\x1d\x48\xa1\x38\xde\xbd\x37\x30\x62\xe6\x04\x07\x5e\xc0\x93\x5e\x0c\x3b\x56\x88\x7e\xd1\x12\x9e\x24\x6e\x7e\x40\x8e\xdd\xec\x96\x70\x4b\xd5\x0c\x4f\xe3\xa7\xf6\xd1\x75\x5b\xe6\xd8\x5e\x05\x8b\xc9\xa9\xac\x21\xf3\x5c\x30\x5e\xe2\x17\xc2\x00\x6a\xf9\x00\x7e\x9a\x1c\x5e\xfa\x9c\x5e\x94\xfa\x3c\xfd\x44\xf9\xc6\x3d\xab\x2a\x35\x80\xc9\x39\x04\xe9\x7c\xc4\xb8\x19\xd2\xd9\x03\xd9\xae\x9e\x35\xf5\x9a\x18\x4b\x30\x78\x8d\x67\xd8\xb6\x14\xd8\xf8\x0d\x89\x16\x81\xc3\x3f\x1c\xb0\xbb\x2a\x7e\x8b\x38\x89\x0a\x82\x5c\xf1\xa7\xbd\x82\x61\xd6\x3c\xba\xa5\x1f\xfd\x1c\x57\xe9\xd2\xfd\xca\x72\x35\xd0\x42\xf1\xfe\xdf\x37\xd7\x3b\x70\xe9\xf0\x3a\x1e\x36\xb8\x06\x19\xb3\xfa\x59\x3f\x3c\xf7\x4a\x9b\x59\x8b\x38\xfa\x6b\x53\x3b\xf2\x9e\x5f\xc7\x5f\xc6\xb2\x74\x59\xe4\x05\xa7\x36\x72\xa8\xc4\x3f\xb0\x33\xc3\x4d\xb4\x99\x95\xf9\xd6\x43\x70\xe0\xca\x19\x24\xea\x58\xf2\x95\x6b\xdb\x45\xd3\xe9\x37\xc4\x31\xb4\x96\x30\xcb\x56\xd5\x06\x94\xbd\x80\x6d\x53\xda\x52\x3d\x3b\xa7\x7f\xca\x9e\x35\xcc\xb8\xfa\x15\x29\x77\x9d\xe5\x4a\xb9\xe4\xf0\x88\x4b\x0e\x5f\xd6\xab\x11\x3d\xbc\xc6\x53\x4c\x67\xb4\xfd\x96\x56\x15\xa9\xad\x4a\x5b\xe7\xb6\x32\x99\x3f\xa9\x0c\x35\xd7\x26\xe7\x10\x39\x97\x64\x35\x6a\x94\xbf\xad\xa4\x52\xdf\xf9\x2d\xf2\x06\x12\x48\x3b\x59\x5a\xdd\x4d\xb4\x16\xd4\xf9\x43\x6e\xed\xa5\x5c\x2c\xc7\xae\x17\xf2\x12\xd4\x05\xf3\xe4\x36\x41\x8d\x5b\xae\xc2\x10\x6b\x37\x0c\xb1\x5e\xd2\xd5\x2c\xca\xa0\xe5\x90\x26\x29\xec\x47\x87\x02\x76\x39\x73\xcc\xd0\xa9\x4c\xb7\x1a\x1b\xcc\xd4\xc7\x54\x73\xaf\x43\xc7\x91\x20\x07\x0d\x0e\x6e\x7d\xce\xb1\x58\x34\x4c\x27\x0a\xd6\x78\xb6\xff\x41\x84\x59\xae\x14\xb0\xb8\x0b\x2c\x1b\x01\xb1\x02\xbd\x57\x1a\x25\x70\x5b\x34\x3e\xe4\x46\xe5\x7e\x6f\x8a\xf0\xe7\x68\xbf\xd7\x31\x2e\x90\x95\x11\xd0\xa7\x41\x18\x92\x30\xe5\x04\x21\x5c\x82\xae\xc5\x3e\x37\x6c\x1a\xea\x5c\x04\x21\xb3\x08\x9f\x9e\x33\x34\xaa\xfd\x46\xd1\x1d\xae\x8d\x66\x4d\x77\xb9\xdf\xeb\xef\xd0\xd7\xf3\x4e\x07\x15\xce\x2e\xda\xdb\x7a\x3d\x0c\xd5\x08\x11\x90\x98\xe8\xeb\x32\x19\xc2\xb4\x98\xd4\xfb\x3d\x68\x7b\x74\xcc\x50\x53\x04\x35\x38\x80\x50\xbd\x28\xaf\x41\xe2\x44\x9e\x87\x6e\x63\x98\x3a\x54\x14\x5e\xd6\x4d\xf3\x5c\x56\x8b\xdb\xef\x27\x25\xba\xab\x4d\x0c\xf7\xd1\xd8\xc4\x82\xc2\x65\x76\x39\x56\x2d\xa7\x55\x32\x1f\x69\x4b\xdf\x6d\x03\xc0\x7e\x03\x81\xdf\x62\xe2\x3b\x81\x49\xdb\x62\xfe\x70\xfb\x48\x2b\xa9\x1e\x6e\x35\x26\xad\x8b\x76\xb9\x5d\xe1\xcb\x62\x1d\xa0\xca\x44\x50\xcf\x4b\x13\x03\x95\x5f\x2a\xac\xc0\x3b\x89\x10\x6b\x84\xba\x9d\xf1\x8e\x8d\xa3\xc0\x4e\x91\x4f\x57\x6f\x99\xac\x11\x12\xa3\x54\xdc\xcb\x1e\x8c\x7b\xd2\x28\x16\xcc\x86\xf7\x59\xe8\xe7\x70\x68\x04\x48\x84\xae\x98\xce\x3e\x7e\x89\x63\xed\x14\xa1\x62\x47\x00\x9c\xa0\x91\x1a\xcf\xcd\x3f\xa4\x19\x1d\x53\xe4\x3d\x32\x97\x82\x3b\x25\x2a\xf8\xe0\x28\x45\x9c\x26\x0f\x20\x30\x41\x2a\xb3\x54\x8b\x8f\xb9\x8f\x60\xf7\x8f\xbd\x6f\x9c\x24\x58\xfd\x45\x47\x8f\xe8\x3f\x88\x91\x3d\x6d\x04\x06\x31\x15\xca\xb4\x3c\xc0\xe1\xce\xc6\xbd\xe2\x87\x2e\x57\xaa\xd8\x4b\x78\x6d\xb5\x13\xfe\x81\xe7\x68\x3a\xfd\xbb\x3a\x55\xce\x2c\xcf\xd3\xbc\x56\xca\x43\x20\xde\x3f\x43\x67\x7f\x27\x39\xc3\xb4\xf8\x36\xbe\x30\xe0\xdd\x17\xbc\xb7\x40\x16\x59\x9c\xbb\x20\x7c\x98\xff\xae\x43\xfe\xbb\x36\xfc\x37\x5a\xdc\x7b\x42\x07\xe6\xd3\x1d\xc3\xa6\x6a\xbc\xc0\x14\x6e\xc3\x98\x78\x7e\x04\x63\x18\x77\x3e\xa6\x75\x45\x7e\x7e\x25\xce\xac\x68\xf4\xe0\x74\x52\x14\x26\x6e\x84\xcc\xda\x6b\xa8\x49\xc9\xf0\x29\xc2\x93\xb9\xf6\x44\x38\xed\xf2\xc3\x93\xc6\x04\xf9\xf7\x47\xef\x80\xf2\xd5\x88\x4d\xa7\x44\x1a\x08\x3c\xda\x1c\x69\x2a\xe9\x5e\x4a\xe2\x09\xce\xc4\xdf\x89\xb9\xe4\x1c\x7d\x45\xa2\x90\x55\xbf\x66\x55\x38\x7c\x5c\xfd\x62\x05\xc9\xc8\x74\x9d\x4a\x5a\x47\xed\xb0\x1e\xe0\x27\xd2\x2f\xf1\x0c\xc5\xa9\x78\xac\x1c\x57\x44\xae\x9a\xe3\x43\x7c\xb8\x03\x91\x9e\xe7\xc6\x4f\x20\xc1\x11\x67\xf6\xe6\xd5\xdf\xfb\xf6\x28\xf0\x5a\xd7\xf6\xa8\x47\xb5\xb4\x49\x91\x25\x5b\x05\xec\xa5\xb8\xe7\x38\xea\x6c\x5f\x3f\xfe\xe6\x6d\x5b\x7f\x1d\xb4\x6d\x49\x5f\x00\xad\x56\x74\x7c\xd6\x3c\x97\xe0\x0f\xb4\xae\xbc\x07\x4e\xee\x3a\xf7\xf1\x15\x11\xb4\xc2\x77\x27\x5e\x97\x75\x53\xd3\x75\xb9\x7d\x11\x79\xd9\x77\x62\xfe\x40\x6e\xbd\xbf\xad\x9d\xdd\x7f\x1c\x99\xa5\x57\xa8\x36\x98\xae\x5f\x08\x2f\x31\xc2\xb3\x86\x3d\xbf\x12\x74\x82\xf2\x60\x59\xc1\x27\x17\xda\xc1\xaf\xd7\xd9\x05\x27\x57\xd7\x56\xea\xf3\xd6\x1a\xe6\x61\x33\x6a\x02\xd6\x4f\x51\xe6\x7d\xb9\x29\xbd\x12\xe6\x44\x07\xd4\x85\x8d\xce\xeb\x5b\xd7\x41\xa2\xb7\x3d\xfe\x38\xc0\xe9\x87\x5d\xf4\x12\xa9\x99\x49\x8a\x9b\xc3\x6b\x2d\x4e\xdf\x9b\xde\x1e\xf8\x48\x44\x1d\xfc\x91\x91\x36\xca\xe5\x84\xf5\xaa\x73\x47\x0b\x0b\x8f\x42\x6c\xab\x7d\x44\x83\xc4\x86\x09\x3c\x73\xde\x79\x1e\xed\x02\xc3\x98\xf8\xd7\x55\x0c\x3a\x68\xc6\x63\x18\xa6\xab\x86\x27\x11\x6d\x52\x14\xe5\x74\x5a\x26\xf0\x8d\x0d\xa1\x5a\x04\x71\x4e\xf4\x4c\x1d\x04\x74\xcc\x7c\x49\xf4\x8b\x61\x92\x93\xb1\x3b\x8e\x45\x4e\x83\x18\x06\xc5\xb1\x54\x62\xcf\x64\x6e\x6d\xcd\x90\x85\xa4\xa7\x7b\xa2\xa1\x33\x6c\xa4\xa4\xd8\x24\x82\x3a\x1d\x76\xbf\x7c\x13\xff\x30\x9f\x04\x60\x55\x39\x57\xfc\xae\x10\xf4\xb5\x29\xdb\x37\xbb\xeb\xeb\x86\x71\x07\xf6\xe9\x42\x0e\x9e\xf3\xdd\xa4\x80\x84\xf7\xb1\x8f\x6c\xda\x8c\x44\x83\xfe\xe0\xf7\x1a\x94\xa5\x06\x63\xe1\x20\xf6\x94\x3c\xa1\x95\xb7\xd3\x71\x76\x41\x17\xcc\xb0\xd0\x1b\xe9\xb0\xed\xcb\x86\x9d\x6f\xf5\x41\x72\x62\x67\xc0\x01\x93\x0c\x2d\x27\x67\xc8\xa6\xde\x65\x18\x72\x4b\x31\xbf\x24\x2a\x47\xfe\xe4\xa5\xef\x2c\xd5\xa5\x30\xf4\x22\x84\xe0\x68\x97\x34\x29\x8a\x48\x9b\xfd\xde\x04\x65\x86\x6b\xce\xdd\xaf\xc1\x83\x08\x53\x7f\x5d\x09\x41\x29\xa6\xf0\x51\xb7\xba\x43\x79\x40\x61\x15\xbb\xe5\xc3\x36\x32\x42\x40\xa9\x01\x76\xb4\x92\xae\x68\x23\xbe\xa4\xab\xfd\x3e\x17\xff\x89\x7b\x9e\xe4\x35\x42\x9d\xcd\x2c\x36\x7f\xd8\x3c\x8a\x52\x35\x6f\xdc\x46\x8f\xab\x2b\x16\xc5\x1a\x2f\x9b\x95\xf1\x76\xd2\x13\x28\xc5\x04\x5a\x39\x81\x56\x4d\xa0\x84\x7c\xc1\x34\x05\x4f\x0f\x5a\x13\x97\x42\xee\xf7\x10\x37\xa6\x32\x13\x9e\x69\x1f\xf9\xab\xe6\xa3\xb3\x53\xca\x4e\x66\x6c\x09\xf2\xfd\x63\x3d\xe1\x74\xc3\x5e\x06\x4f\xa9\xa0\x9a\xcc\x91\x2a\x94\x21\x13\x80\x46\x29\x9b\x68\x25\x96\x24\xb5\x6e\x40\x2c\x7b\xaa\x6b\x20\xad\x44\xb4\x02\xd5\x61\xbc\x7a\x4e\x6f\x57\x1f\xda\x52\x55\x0f\x8d\x94\xb2\x9c\xaf\x46\xd1\xc5\x0b\x96\xd1\x32\x88\xe9\xad\x7a\xc8\xc2\x5e\xeb\x82\x05\xbd\x46\x40\x96\xd7\x72\xe7\x64\x83\xf3\xad\xf3\xaa\x55\xe0\x8c\x94\x22\x8c\x27\x46\xd5\x76\x48\xbd\x58\x93\x5a\xcd\xe9\x3e\x32\x85\xe4\x38\xbd\x75\xaa\x0e\xe5\x28\xa0\xf2\x32\xdd\x41\xf9\x22\x77\x2c\xa7\xff\x84\xe2\x66\x44\xfa\x02\x8d\x13\xc1\xd2\xdf\x09\x69\x46\xa6\x82\x91\x8f\xf7\xee\xeb\x0a\x53\xfd\xfb\xdf\xc3\x57\xb6\x9e\x93\xa0\xa2\x27\x27\x66\x9c\x18\xb8\x92\xe6\x80\x20\xd4\xe8\xc4\xd6\x4b\xe7\xd2\xdd\x25\xde\x61\x0e\x91\x48\xec\x84\xab\x43\x31\xd0\x6a\x60\x5a\x45\xc4\x2c\xd8\xdb\x40\xa3\x15\x8e\xbf\x56\x9a\x40\x8d\x64\xbb\xeb\x48\x8d\x23\x50\x20\xa7\x11\x00\x3b\xe7\x3a\xc2\x90\xe8\x53\x9d\xea\xbd\x70\x45\x5b\x53\xe4\xd6\x5c\x72\x6e\x05\x87\x81\x7b\x8c\x6b\x57\x9c\xd1\x8b\x9c\x87\xdc\x1b\x4a\x01\x38\x60\x57\x55\x8d\x83\xc4\x80\x51\x26\xc4\x19\xd8\x78\x45\x44\xf9\x0a\x2c\x68\x43\x9a\xab\x5c\x8d\xea\xfd\x3e\x3f\xd0\x46\x66\xb5\x0f\x13\xb1\x03\xdf\x79\xa7\x73\x11\xdc\x01\x83\xbe\x70\x29\x7e\xd7\x41\xd6\xfb\xfa\x68\x28\xd8\x23\xfd\x79\x0f\x43\x9a\x24\x06\xe7\x61\xb8\x21\x1a\x9c\xdf\x3d\x4e\x85\xd6\xe5\x1f\x7d\xbb\xd9\x6d\x39\xb0\x20\xa7\x5a\x58\x4e\x74\x89\xa8\x23\xb0\x49\xcc\x29\xc5\x99\x0e\x61\xc6\xa7\x7d\x35\x00\xe7\x10\x27\x0e\xdd\x00\x1e\x81\x2d\xfc\x60\x75\xef\x86\x12\x90\xe7\x86\x1e\x5d\x59\x32\xf4\x13\xe5\x9b\xe7\x75\x45\x7e\x96\xca\x5d\x78\x2d\x23\xb4\x5e\xab\x02\x03\x76\x55\xb2\x72\xad\x6d\x37\x4c\x19\x14\x97\xec\x6c\x5e\x8a\x46\x0c\x00\xe0\xf8\x3d\xe4\x80\x57\x9f\xb0\x1d\x02\x28\x9f\xf0\xd9\x2f\xa0\x0a\x9e\xe8\x8c\xc0\x31\xfd\xfe\x48\x34\x0c\x37\x74\xec\xfd\x10\xde\xfd\x31\xde\x2f\x7d\x78\xef\x7b\x66\xff\x87\x1e\xd5\x21\x40\xc7\x80\xe8\x2c\x2e\x5a\xce\x79\xe8\xe0\x68\x35\x3a\x2f\x5e\xe8\xdc\x6a\xce\x71\xd1\x05\x9e\xe3\xc0\x1f\xb8\x52\x7a\x8d\x63\x04\x5b\x6f\xb5\xf5\x26\x1c\x22\xf9\xbf\xce\x2a\x07\xee\x87\xfb\xdd\xa0\x03\xeb\xee\x5d\x54\x06\x00\x47\x71\xe0\x8f\x9b\xab\x6b\xd1\x7e\x7b\x1b\x05\x49\xe8\xd9\xdc\x63\xb5\x86\x44\xea\x60\x8d\xd8\x99\x7f\x58\xb4\xd2\xca\xcd\xc3\xca\x87\x1a\x39\x31\x56\x42\xb6\x9e\x4e\xf3\x17\x79\x8d\x89\x47\x97\x63\x4b\x13\x40\x17\xc4\x5f\xca\xe3\xa8\x1b\x79\x58\xa3\x65\x80\x1a\xc5\x75\x8d\xbd\x06\x46\x34\x96\xcd\xb5\x53\x4a\x02\xae\xfe\xde\x1d\xb9\x73\x51\x8c\xf6\xb7\x33\xe1\xf6\xe2\x0a\xb2\x23\x5f\x95\xeb\x25\x42\x80\x8a\xc3\x3d\x1e\x0c\xac\x22\x4a\xd8\x37\x05\x84\x65\xcd\x32\x4f\x35\x9b\x10\xff\x9a\xeb\x5b\x27\x21\x79\xc4\xd4\x1c\x5e\xe3\x39\x5f\xd6\xab\xc8\xe2\x7a\xc5\x6e\xbd\x95\x68\x7e\xc0\xae\xcc\xb5\x38\x68\x1f\x79\x17\x7b\x20\x6c\x5b\xfa\x06\x3b\x4a\x83\xef\x68\xfd\xa1\xbf\x37\xa0\x0b\x27\xb6\x55\x20\x08\x2b\xe3\x71\xac\xb6\xd6\xc0\x9d\xa5\xa3\x44\x20\x12\x42\xa7\xea\x97\xdb\xea\x3f\xf4\xfa\x15\xaf\x07\xb9\x9a\x80\x2a\x28\xc9\x29\x3e\x8d\x68\x11\xf5\x58\x3b\x62\xbb\x89\xeb\x94\x63\x1d\xc5\x5b\xea\xae\x22\xea\x88\x7e\x2f\x31\xfd\x76\xbc\x03\xa9\x9f\x3e\xd0\x81\x6c\xa4\x3b\xe8\x15\xca\x89\x6c\x60\xaf\x89\x03\x89\xbe\xed\x24\x06\x85\x7e\x2b\xe8\xe2\xda\x73\x53\x73\xd4\x10\x93\x53\x5c\x8b\x73\x09\x9a\xd7\x2b\xc2\x4b\xcf\x43\xef\x05\x11\x32\x8c\xb2\xf3\x3b\x7a\xe3\x4a\xdc\x1a\xb6\x62\xa8\x6c\x2c\x05\x1e\x19\x3d\xcc\xa5\xef\xca\x18\xd2\xaf\xe8\xa2\x4a\x8a\x6c\x4d\xa7\x93\x81\xcd\x47\x77\x4c\x7b\x55\xd2\xc2\x8b\x38\xdd\x28\x53\xcf\xd9\x72\x25\x33\xfd\x85\x63\x53\xcc\x51\x07\x0b\x01\x3f\x04\xa8\xf8\x2e\x7e\xcc\x54\x92\x32\xed\xc1\xe6\xc2\xad\xbd\xa1\x7c\xbd\xc9\x75\x9a\x6a\x74\xb7\x2e\x5b\xa2\xd3\x57\x2f\xb4\xe9\x7a\x04\x4f\x55\x49\x5b\xf5\xf4\x6e\xc3\xc8\xe5\x82\x74\x9d\x13\xdc\xd6\xe5\xe1\x90\xa3\x66\x3a\x6d\x66\xa2\xa9\xfe\x5f\x07\xc0\x89\x76\x10\x52\xef\x43\x51\x90\x84\x5c\xb6\x44\xb0\x1a\xe7\x68\x27\xea\x10\x69\x2d\xad\x4a\x42\x29\xb7\x60\xbf\xf7\x3d\x45\xd4\xa6\x4d\xa7\x73\xd3\x44\xd1\xc5\xd1\xb1\xc4\x63\xa0\xdc\xd1\x61\x5d\xe9\xe9\xb0\xc6\x55\x29\x33\x04\xc2\x18\x9f\xb5\x01\x2d\xe2\x84\x2b\x3e\xa8\x0d\x2f\xfa\xd0\xa6\xe7\x85\x81\xc7\x13\x95\xb8\x6e\xed\x50\x97\xcd\x16\x65\x33\xb2\x89\xbc\x5e\xb7\xcd\xba\xdc\x02\x29\xef\x91\x00\x49\xfb\x2c\x36\x46\x08\x63\xc4\x31\x21\x8c\x53\x54\x19\x99\x07\x02\x15\x9d\x95\xa9\x6b\xd2\x56\x3a\x73\xec\x76\xb1\x12\x76\x96\x77\xd9\x84\x66\x3e\x93\xd8\x4d\xe5\x2b\x4d\xb0\x5a\x3d\x22\x27\xbe\x95\xe9\x47\x59\xbc\x66\x20\x1a\x91\x63\x33\x9c\x86\x63\x76\xfd\x69\x16\x61\x21\x3c\xe7\x9d\x0c\xc8\xfc\x31\x16\x90\xf9\xa3\x13\x90\x69\x7d\x38\xfe\xf4\x9b\x77\xae\xf8\x4b\xc4\x8f\x1d\x33\xbb\x82\x3a\x0f\x33\x6b\x68\x8f\xd6\xb2\xd0\x49\xe8\xc0\x14\x67\x5a\x49\x96\x11\x59\xce\x09\x90\x59\x1b\x79\x4b\xaf\xb4\x93\x7d\x1a\x4b\x6b\xe5\xbc\x3d\x90\xf6\xad\x74\xbd\x2e\xca\x70\xe8\xe5\x2a\x1c\x16\x9e\x44\x87\x9c\x9c\x0e\x0d\x27\x03\xe6\x61\x30\x09\xc6\xb2\x63\xe2\x70\xf1\xa2\x46\x16\x25\x02\x71\x81\xd9\x37\x08\x3b\x98\xe3\xa6\xc8\x2e\x38\xe6\xb3\x8b\x0b\x78\x77\x71\x51\xb0\x91\x9b\x31\xa3\xee\x1b\xa5\x53\x0a\xf2\x98\x9e\x29\xaa\xea\x03\x85\x93\xb9\x6e\xd9\x99\xdf\x52\xd6\x83\x32\x1e\x67\x73\xac\xd5\x90\x41\x0b\x95\x3b\x15\xbb\xd1\xd9\xf1\x89\xf9\xa8\x22\x18\xd4\xf6\xb0\xa1\x8e\xa3\x3b\xb7\xe7\x44\x7b\xb7\x6b\x5f\x7a\x51\x8c\x86\xa4\xc8\x66\x33\x35\x91\x87\x39\xdc\x5f\x4b\x17\xac\x35\xb9\x44\x1c\xc4\xdc\x4b\xf8\xb9\xf5\xb6\x94\x1f\x38\xee\xbf\xf1\x20\xef\x2a\xfe\xfc\x64\x6b\x12\x8c\xc7\x4b\xd5\x4e\x9e\x1e\x36\x1a\xc2\x8d\xe9\x34\x0f\x92\xf6\xc4\x76\xdf\xfa\x2b\x22\x5c\x7f\xfd\xe0\x54\x81\x3b\x8e\x45\x35\x3e\xf5\xf1\xe4\xd0\xb4\x63\x18\x73\x5f\x0b\x5e\x7f\xbc\xe1\x6f\xed\x98\x29\x39\xd9\xb3\xfe\xc5\x57\x1a\xba\x8d\xf9\x9b\xfd\x0b\xa6\xe4\x6c\x76\x5a\xfa\xe6\xb1\x55\xf7\xda\x7b\x67\x66\x14\x33\xeb\x86\x5b\xfc\x50\xfa\xa3\x0e\xee\x31\xf8\xa6\x0e\xaa\x20\x39\x2c\x62\x58\xc8\xe7\xb1\x99\xe0\xd8\x01\x8a\xe4\xfe\xf6\xeb\x0d\x0a\x01\xff\xc1\xa9\x4a\xe1\x2d\x57\x42\x50\x07\x4e\xec\x82\xfa\xae\x4b\x9e\xb3\xc8\xf9\x83\x8c\xb6\x16\x86\xfe\x74\x7b\x38\x12\x3d\x99\x76\xaf\x0e\x9d\xc7\xfe\x6e\x1d\x3a\x0a\x2a\x49\x18\xd3\xca\x19\xaf\x86\x5f\xb0\x61\x86\xd3\x8d\xd1\x97\xda\xec\x57\x9a\xba\x1c\x29\x9a\x7b\xf5\x22\x22\xb0\x18\x50\x00\x18\x4a\x43\xa0\xf4\xf8\x72\xe5\x25\x03\x08\x4f\xa0\xf6\xf0\xef\x9b\xd3\xc1\x5d\x0e\xa4\x4c\x74\xc0\x31\x96\x4b\x23\xaf\x8c\xbf\xd2\x51\x09\x10\xdc\x10\x35\x96\xd7\xc6\x64\xec\x16\x4f\xe1\x83\xe6\x2e\x08\x11\xd2\xd3\xa0\xc5\x1c\x37\x76\x1a\xf4\x51\x63\xa3\x9d\xca\x82\x40\x8d\x9e\x61\x23\x5f\x89\x74\x3a\x95\xa8\xbd\xb2\x94\xd9\xae\x41\x9e\x79\x5e\x53\x4e\x53\xe6\x49\x9b\xad\x34\x10\xdd\xd0\x74\x4a\xa6\x53\x29\x7a\x2b\x52\x35\x18\x0f\x67\x63\xe1\x06\x2e\x12\x36\x6c\x65\x67\x81\x22\xd0\x7d\x96\xb4\xbc\x8b\x9b\x20\x42\x1f\x12\xda\x3a\x93\xae\xa3\xb3\xb8\x1c\x32\x02\x09\x25\xa3\x23\xef\x91\x23\x24\x3c\xc7\xc5\x1f\x13\x21\xe1\x91\x98\x84\x87\xa3\x47\xe4\x13\x67\xe0\x1f\xb3\xa3\x27\xf0\x9e\x70\x9f\xd9\x31\xe9\xf6\xfd\xbc\xfa\x71\xe5\x89\x38\xa3\x32\xcd\x57\x9f\xac\x24\xe3\xeb\x21\xbb\x48\xdb\xec\xd8\x9a\x3c\xaf\x48\xcd\xe9\x25\x05\x35\xbd\x36\x85\x29\x45\x85\xd2\x6c\x14\x77\x4a\xb5\xb1\x30\x2f\x4d\xbc\x35\x51\x33\x90\x39\x86\xf4\x23\x71\xad\x7a\x2e\x79\xd2\x3f\x90\x88\xe5\x26\xe5\x65\x40\x61\x9b\xce\x84\xb6\x2f\x9b\x1a\xe2\xff\x98\x92\x24\x64\x6c\x14\x73\xca\x6d\x99\xb3\x11\xe8\x7f\x89\xab\xff\x65\xcb\x7a\x15\x6e\xa0\xbf\x7d\x41\xf6\xcb\x65\xbd\x92\x02\x2e\xfc\xa2\x15\xea\x94\x77\x40\xf4\x34\xe7\x4c\xf1\xe2\x43\x9a\x5b\x08\x1e\xa5\x45\x8d\xf3\x46\xcb\xfd\xe5\x76\xfb\xdc\x75\x3f\x6c\xcf\x19\xd1\xc5\x9d\x02\x41\xde\xc1\x41\x6f\x7f\x19\xa9\x76\x6b\x92\x47\xa3\x3d\xc9\x7e\xcf\x6d\xf4\x65\x87\x27\xa7\x26\x5b\x26\x51\x4c\x83\x56\x65\x03\x99\x8f\xb1\x11\x07\xfa\x9f\x84\x03\x20\x3c\x21\x52\x26\xff\x13\xc9\xa9\x23\x93\x37\x10\xde\x29\x1e\xe2\x12\xe1\xba\xcb\xff\x4a\x1c\xa9\xfc\x77\xbf\x79\xa9\xfc\xdf\xbf\x98\x54\xde\xf3\x40\x4d\x4a\xcd\x71\xd1\xda\x11\x7d\x23\x7d\x29\xf9\x38\xe8\xe9\x37\x24\x35\x9b\xbc\xb1\x3d\x63\x01\x31\xde\x69\x9e\xb3\xdd\xc2\x55\x19\xb9\xbe\xbd\x51\x36\x37\x8f\xb7\x3e\xc6\xe0\x7f\xb4\xfe\x33\xea\x4c\x7a\x8a\xd4\xed\x3f\xec\xfe\xe3\x2e\x33\xea\x4b\x14\x15\xf3\xbd\xc5\x26\x5d\x63\xfc\x6f\x86\xad\xb3\x2e\x69\x3b\x38\x63\xc3\xc1\x0e\x79\xea\x5d\x45\x9e\xf5\xf1\x33\xc6\x38\x90\xc3\xae\x7e\x4a\x51\x30\xac\x6f\x39\xa8\x6d\xf9\xbc\x90\x0d\xd9\x9f\x7b\xea\x60\x7e\x01\x4a\x1a\x94\x3b\x4e\x89\x73\x6f\x1d\xce\xd0\x11\x8a\x67\xc2\xfe\x62\x92\x71\x14\xd4\xe0\x1f\x1b\xdb\x99\xc2\xcd\x8b\xd7\xc3\x3d\xe7\xb3\x04\xe1\x1c\x5a\x61\x72\x89\x11\x97\x86\x43\xab\x54\x9f\xf4\x04\xd9\xf8\xb4\x86\x05\xf6\x41\xf2\xd8\x7b\x6e\xa5\xf2\x49\x04\x7e\x67\x3c\x30\xe5\x2f\x12\xe0\xd2\xf6\xad\xf0\x30\xa5\xa0\x1b\xd3\x27\x0c\x02\xfb\x38\xf1\x7f\x50\x81\x38\xe8\xe4\xf7\x79\xee\x93\xc8\x42\x43\x2a\x30\x78\xf8\x0f\xa3\xda\x90\xee\x22\xba\xc0\x03\x18\x7e\x4f\x5d\xc7\xd1\xf3\x3c\x18\x32\x10\xd5\xba\x1d\xa1\xff\xfb\x84\x93\x6a\x65\xbc\x64\x85\x80\x94\x94\x37\x28\x34\xc4\x87\x3b\x5a\xea\xbb\x87\x96\x78\xf8\x26\x1b\xa0\x7d\xbf\xf8\x4e\x99\x7f\xba\x8a\xf8\x9f\xad\x20\xb6\x50\x18\x92\xb1\xa1\xfc\xb0\x27\x65\x47\x48\x81\x96\x8e\xfa\xe4\x33\x21\x47\xeb\xfc\xf9\x89\xcf\x14\x71\x49\xcb\xf3\xee\xc5\xa5\x44\x71\x3e\x24\x8a\x5b\x37\x0d\x68\x09\xda\x00\xe2\x4b\xe8\xbc\x27\xa1\xf3\x98\x84\xce\x8f\x90\xd0\x03\xf1\x1c\x8c\x29\x72\xc2\x2a\x96\xd0\xb1\xaf\x1c\x29\x71\x2b\x71\x5b\xc8\xda\x08\xf7\x84\xed\x18\x23\xc6\x6c\xb0\x56\xfc\xf5\xe7\x11\xb7\x7b\x7b\xa7\x65\xe8\xdc\xad\x6d\x6e\xa4\x60\x95\x22\xf8\x77\x31\xe9\xf7\x77\xbe\xf4\x2b\x06\xf9\x8f\x43\xa9\xe2\x9c\x38\x65\x5d\x3d\x2b\x52\xa5\xcb\x85\x6c\x10\x3b\x0d\xf0\xa3\xff\x20\x95\x1f\x22\x7a\x54\xa3\x74\xde\x38\x6f\xc0\x0f\x82\xe8\xb9\x4f\xbc\x56\x45\xff\x0b\xf5\xd7\x50\x76\xb9\x4d\x19\x0b\x63\x35\x61\xbd\xf1\x09\x2f\xc9\xaa\xc3\x46\x63\x9c\x4a\xcc\x93\xfa\xda\xcf\x75\x11\xab\xf3\x86\xee\x48\xce\x30\x87\xf0\x0e\xc8\x9f\xf1\x9e\xf0\xfb\x8e\x82\x59\xc1\x55\x26\xa0\x09\xf3\x42\x3c\x1d\xbf\x55\x7a\xe8\xec\x24\x4b\x12\x84\xdf\xd9\xb4\xc5\x30\xa8\x3c\x97\x4b\xb2\x4a\xd6\xa4\x61\xfe\x50\x89\x3a\x09\x6e\xca\xfd\x1a\x41\x09\x81\xd8\x67\xf1\x42\x49\xc1\xd7\x6a\xd3\x5d\xb7\x2f\x59\xee\xf1\xac\x26\x37\xe3\xbf\x10\x48\x8c\x4f\x30\xc3\x0d\x5a\x88\x27\xff\xee\x3e\xe9\x72\xea\x22\x1b\xae\x31\xa4\x0b\x33\x29\x82\x7c\xef\x8f\xff\xfc\xcd\xeb\x99\xfe\x4c\x8a\x53\xec\x62\x55\x2c\xbf\x86\x66\xf4\x4c\x4e\x08\xed\x14\x5e\xe9\x4c\x03\x9a\xe3\xd0\x59\x02\xbc\xf3\xaa\x12\x1e\x5c\x10\xa8\xb0\x16\x64\xa1\x60\x49\x32\x71\x11\x8f\x08\x08\xf2\x65\xd8\xc4\x2c\xde\xb7\x20\x66\xf8\x8f\xde\x5d\xb6\xcf\x83\x56\x4e\xb1\xb1\x5e\x72\x8c\x67\x5b\xfa\x7e\xc3\xcf\x53\x0d\xaa\x30\x33\x85\x29\x1c\x55\xe9\x0c\x37\xc1\x84\x54\x71\xfc\xe8\x63\xda\xd4\x8f\x9b\xab\x2b\xda\x7b\x1f\xc0\xc7\x4b\xa0\x10\x85\x8e\xc3\x85\x45\xf6\x20\x9a\xe1\x53\xc2\xca\xfc\x29\xe1\x64\xb2\x31\xb4\x84\xe7\xc8\xa4\x48\xa0\x60\xc6\xea\x11\xd0\x26\xce\x98\xf4\xf3\x1d\xdc\x51\xc5\x48\xe8\x62\x1a\x3e\x66\x61\x8d\x48\x0b\x0f\xad\xba\x0e\xcb\x3a\xcb\x49\x16\xc1\xaf\xbe\x2e\x16\x64\x92\xd2\xf9\xcb\xeb\x17\xb8\x12\x0c\x80\xe5\x1f\x2e\xd6\xf0\xb4\xfa\x8b\xa0\xca\xc4\xa9\x62\x87\x90\x5f\x72\x44\xb6\x06\x47\x54\xaf\x59\x1f\xb5\x74\xfd\x77\xc9\xe5\xc8\x51\x9d\x12\x9f\xb9\x60\x79\x83\x1c\x09\x0a\xa3\x08\xdf\x5d\x87\xa1\x19\xc0\xb4\x18\x29\xab\x82\xa2\xf5\x92\x8d\x61\x02\x4a\x42\x78\x96\xa8\xd4\x13\xd2\x63\x48\x2d\x5f\xd8\xb9\xe2\xf0\x81\x62\x68\x1b\x71\x43\xf6\xa6\x7e\xa8\xfc\x82\x07\x84\x7e\x6a\x27\xe7\x35\x32\x61\xe3\x62\xac\x0b\x70\xb2\x90\x15\x19\xdd\x31\xea\xd9\xeb\xa7\x8f\x5f\xbd\x7e\x72\xf1\xe4\xfc\xed\xf9\xc5\xd3\xd7\xaf\x5f\xbd\x7e\xa3\x81\x25\xa9\x8b\xd9\xf5\x08\xb1\x89\x08\x53\x5e\xd1\xc7\x00\x15\x0d\x9a\xba\x98\x28\x84\x0c\x40\xf6\xfe\xe4\x34\x00\x0e\xce\x71\xbf\x5f\xae\x44\x2f\xb4\xef\xde\xe9\x00\xb1\x88\x02\xd1\x7f\xd3\xdf\xd0\xb0\x85\xc0\x4f\x31\x96\x0c\xb1\x90\x5c\x65\x04\x31\x0c\x71\xd2\x7e\xc2\x91\x63\x22\xa7\xac\x1b\x26\x3c\x47\x6d\x57\xa2\xb9\xe0\xa8\xfb\x5f\x90\xfe\xb0\x04\x7b\x27\x57\x9d\x2d\x43\x19\xeb\x4b\xca\xae\x48\x95\xa3\x63\x26\x67\x68\xe9\x11\xd3\x74\xe8\xae\xe8\x01\xa8\x5d\x1f\x3c\xe1\x71\x18\xb8\x24\xdc\xd7\x95\xaf\x2d\xf0\x51\x12\xd0\xbc\x7f\xc0\x13\x19\x3d\xfa\xf8\x7b\x88\x27\x73\xaa\xe6\xb3\xc2\xe7\x34\x0f\x15\xd0\x06\xef\x76\xaf\xff\x25\x5d\x69\xbf\xf6\xfe\x1b\x55\x37\xd1\x7b\x0c\xbe\xb6\x14\xe9\xe4\xaa\x1d\x10\xf0\x14\x01\x1c\x48\x58\xb1\x8e\x10\x4b\xee\x2d\x87\x98\x38\x2c\x97\x8a\xd5\xc5\x5c\x30\xb5\x66\x85\x8f\xa8\x5d\x65\x03\x39\x20\xa1\xb6\x69\xb3\x1a\x95\xcb\xf9\xaa\x28\x8a\x72\x79\xba\x32\x79\xef\xd8\xb2\x59\xc1\x8c\x7b\xc3\x0f\x4c\x55\x5e\x05\xbc\x3f\x17\x3d\xbd\x3e\xb6\xe0\xba\xf0\xae\x94\xbb\x0e\xab\x7c\x33\x31\x49\xa8\xf1\xd6\x5d\x23\x5c\x16\x73\x48\x82\xab\x16\x59\x3e\x6a\x1f\x96\x7a\x91\xbb\xa2\x59\x96\xab\x11\x5d\xee\x56\xc5\x92\x2c\x77\x2b\x5c\x2f\x77\xab\x95\xe6\x54\xa9\x3c\x2f\xe2\x62\x4c\x9f\x90\x97\xe4\x06\x0e\x45\xb3\xdd\xbe\x2b\xd7\x1f\xe2\x50\x00\x08\x84\xd7\xaf\xa1\x26\x36\x2d\x53\xe4\xda\x03\xc5\x43\xff\x56\xe8\xdf\xa5\xc1\xf1\x33\x2e\x9e\x4a\x93\xec\xc6\xbc\x3a\xda\x6d\xff\xe2\x34\x9a\xa7\x08\xb1\x33\x2c\x82\x69\x32\x78\xb0\x9d\xcb\x69\x80\x22\x61\x02\x38\xdf\x23\x62\x3d\xf2\x72\x60\xe2\x40\xda\x2a\x5a\x85\x97\x7a\x9f\x8a\x9a\xbb\x2f\x49\x38\x63\xec\xa6\x0b\x18\x09\x05\xe5\x7c\x05\x6e\xfa\xe0\x91\xf5\xa9\xdc\x89\x47\xb0\xdc\x82\x9d\xc1\x4d\x4b\xfa\xd7\x2c\xee\xb3\x37\x42\x72\xb7\x98\xa0\x6a\x10\x79\x99\xd1\x5d\xd6\xcd\x96\xe9\x4f\x71\x6d\x49\x22\x6e\xd4\xce\x07\xf0\x20\xcd\xcf\xdd\x0b\x4f\x80\x6d\x1b\x28\xe2\x1a\xb2\x3d\x6f\xde\x9e\xbf\x7d\xaa\x36\x21\xc2\xd2\xb8\x9d\x1f\xc5\xd1\x28\x86\x46\xf9\x12\xc5\x92\x79\xa5\x08\x3c\x41\x5a\xcd\x29\xb1\xb4\x25\xfc\x09\x65\xfc\xb6\xdf\x55\x98\xbe\x3a\xd6\xd7\x88\x19\xdf\xda\x20\x39\x4d\x0b\x5e\xa3\x8d\x78\xf8\xb6\x89\x75\x6e\x8b\xc3\x46\x27\x19\x76\x06\xc5\x62\x1b\xe7\xe0\xc5\x27\xfc\xff\xb3\xf7\xee\xed\x6d\xdb\x68\xa2\xf8\xff\xfa\x14\x12\xcf\x73\x54\x62\x0d\x29\x72\xd2\xbd\x8c\x1c\x46\xe3\x26\xe9\x34\xb3\x4d\x93\x5f\x92\x4e\xa7\x47\xd5\x7a\x69\x09\x92\xd0\xd0\x80\x06\x84\xec\x78\x2c\x7d\xf7\xdf\x83\x2b\x01\x12\x94\x28\xc7\x49\xd3\x8e\xf7\xd9\x69\x2c\x02\x78\x71\x7f\x6f\x78\x2f\x3b\x20\x56\x82\xfb\xe8\x11\x4e\xe5\xad\xfa\x29\xcd\xdf\x20\x81\xd6\x2a\xae\x8b\x6a\x0d\xaa\x38\xaf\x7a\xd0\x64\x04\xd8\x22\x98\x12\x28\x2c\x09\x2b\x04\x46\xc5\xda\x62\x6e\x48\x2d\x6b\x51\x89\xc7\x82\x98\x4d\xba\xdd\x58\xff\x55\x4b\x8c\x54\xb1\xc9\x82\x5c\x77\xf2\xc3\xdc\x6d\xcc\xcb\x7c\xb7\x7d\x5e\xbe\x4b\x9e\xdb\x3e\x7d\xdc\xc5\x21\x0d\x01\xdb\xb3\xeb\x9e\xed\x88\xde\x71\x03\xce\x2e\x54\x10\x5c\xb1\x5b\x32\x12\x36\xe4\x49\x92\xc4\xa8\x08\xd5\x5f\x5d\xee\x51\xed\x3e\xa1\xc9\xb0\xc0\x62\x63\x34\x01\xa5\x78\xbd\x5e\x5f\x7a\xe5\x44\xf3\xd0\xa2\x39\x43\x48\xcb\x5d\x7b\x70\x86\x77\x34\x58\x2d\x49\x1e\x34\x9e\xcd\x66\x67\xe7\x5e\xb1\x91\x77\xd6\x24\xa3\xe9\xac\x46\xde\x71\xb4\x20\x36\x1b\x9f\xf6\x9b\x2b\xd1\x5e\x4f\x09\x52\xa3\xe7\xb1\x20\x2a\x0a\xa0\x50\xb6\x16\x27\x1c\xb0\xee\x52\x87\x03\x8e\x24\xbd\x20\xeb\xd5\x2b\xb6\x5a\xa6\x04\xb9\x28\x2b\x02\xea\x0e\xec\xa8\x52\x97\x1f\x22\xcd\xb2\x37\xc8\x09\x71\xac\xb0\x95\xc4\x2e\x61\x51\xc3\xb3\xf4\x3d\x3a\xe2\x40\x88\x03\x63\x3e\x29\x27\xbb\x06\x26\xfe\xb4\x79\xa0\x18\x6c\x63\x04\xc0\x0e\x40\xae\xc9\x30\xf3\x37\x81\x39\x41\x8e\x6b\x16\xd3\xe8\x21\xea\x22\x2f\x97\xae\x6c\xd5\x8c\xdb\x31\x25\xe4\xd5\x88\xd0\x7e\x88\xe7\x00\xf2\x2a\x27\xf6\x6e\x4e\x5c\x6b\x92\x92\x07\xd2\xc6\x59\x75\xb6\xb7\xd4\x8d\x3b\x3a\x9b\x61\x86\xa6\x3c\xbb\xae\xee\x78\xf5\x78\x8c\x27\xad\x1d\x98\xb3\x1a\x63\xdb\xf1\x1c\xf2\xc2\x2f\xc8\xe8\x98\xc1\x58\x80\x2d\x94\x20\xe3\x64\x41\x20\x16\x4b\xad\x78\xe2\xe0\x99\xac\x3a\x81\xc8\xe0\x0d\xd2\xd4\xff\xaf\xe8\xe8\x48\x1a\xdc\x6a\xf3\x7b\x5e\x3c\xbf\x6a\x75\x25\xa9\x06\x1e\x94\x6f\x0b\x4b\x3c\xe7\x31\x68\x71\x13\xb5\xbd\x55\x04\xa8\xc4\xbb\xd6\x2b\x96\xe2\xd5\x49\xfa\x98\x16\x27\x38\x35\xde\xc0\x52\xb4\xca\xdb\x98\xe4\x3c\x25\x53\xe9\xd3\xdd\xed\x9a\xa1\x3c\x26\xdd\xae\x19\x67\x0e\x60\x31\x42\xb0\x75\x12\x20\x88\x53\x21\x50\x98\xa4\x1d\x3b\x03\xa8\x06\x90\xb1\x75\xce\xb2\xc5\x41\xcc\x7b\x00\x09\x09\xf7\x23\x37\x0b\x13\xac\x4f\xfc\x53\x29\x8d\x9a\x44\xae\xd5\x77\xa8\x9b\x6d\x91\xe3\xbc\x93\x24\xae\x13\x46\xe9\x08\x93\xaa\x42\x03\xe2\x84\x38\xec\xbd\xaf\xd1\x90\x39\x91\xc9\x2e\x9d\x87\x4c\x93\x1c\x38\xc8\x30\x2f\x6b\x0b\xd6\xc9\xe0\x64\x5d\xa4\x0a\x59\x1b\x89\x39\x4b\x72\x21\x26\x4f\x13\x34\xce\xa4\x0e\x24\xc2\xb3\xa8\x93\x24\x99\x2a\x9e\x27\x74\x9c\x4d\x36\x1b\x3c\xce\x26\x70\x69\xec\xc3\xb5\x67\xbf\x9d\xf3\x7c\x34\x97\x4f\x49\x32\x76\x80\xf6\xf3\xb7\x93\x8a\xec\x03\xb2\xcf\x31\xc4\x19\x9c\x82\xd6\x39\x43\xe9\x7b\x15\x03\xe0\xdc\xb0\x26\xa5\x16\x45\x00\x5a\xd1\x02\xc6\xcb\x44\x1a\x04\xc4\x19\x00\x7b\x6c\x2e\x96\x3b\x8c\xf8\xdc\x9e\xcd\x9b\x98\xdf\xaf\x66\x8f\x3f\x45\xaf\x33\x34\x4f\xd7\x19\x1f\xf2\x71\x36\x49\xa6\x5b\xe5\x9f\x6f\x64\xbf\xa9\x77\x61\x76\xcb\xc9\xbb\x1c\x8a\x0a\xc1\xbe\x09\x92\x63\xbb\x4c\xe6\x62\x00\x3b\x1a\xb0\x15\x57\xb6\x7e\xee\xd2\xe0\xbb\x4c\xcb\x48\x9b\xf5\x8f\x36\x0d\x9e\x83\xbd\xb7\xc2\x66\xa3\x24\xc5\x28\xb5\x3e\xa2\xca\xe7\x7c\x1c\x2d\xe5\x82\x13\x56\x4b\x80\xee\x70\x09\x50\x38\xd1\x03\xe7\xb1\x4a\x45\xa5\xe4\x2d\x49\xfe\x9e\x61\x8d\x9b\x42\x9a\x6d\xa9\xd3\xd0\xaf\x0a\x85\x7e\x20\x80\xbe\xc6\x4a\xf3\xa9\xd9\x14\x65\x35\x2f\xed\xc8\x2b\x08\xc4\x20\x0f\x98\x25\x3b\xd4\x5b\x92\xd4\x64\xdd\x6e\x9c\x56\x70\x2b\xb0\xe9\x51\xb5\x5a\xa2\xde\xf2\x61\xb7\xaa\xc2\xe8\x72\xd7\x52\xbd\x89\x13\x34\xa6\x49\x3e\x26\x93\x89\xda\x7f\x9b\xaf\xbf\x93\x24\xe9\x98\x4e\x4c\x2e\x4a\x9c\x3f\xff\xc7\x3a\xcd\x62\x21\xf2\x41\x0c\x36\x1b\x6e\x35\xb5\xee\x8d\xe3\xf4\xad\x8c\x46\x52\xe5\x59\xa2\xc7\xd5\x4c\x91\x43\xfd\x09\xcf\x8e\xa2\x27\x51\x39\xe8\x84\x33\xfb\xba\xd0\x13\xf5\xaf\x1e\xd5\xf7\xa2\x90\x86\x34\xf0\xf4\xb6\x85\x39\xf2\x73\x8c\x56\x21\xa1\x22\xb6\x85\x77\xec\x9b\x0d\xb3\xa4\x1a\x8b\x43\x9f\xa5\xff\xd0\xdf\x4d\x64\xa6\xe0\xcb\x6e\x31\x06\xb1\xe1\xcd\xba\x9e\x29\xe3\x2d\xf7\xb5\x61\xd7\xaa\x28\xd1\xa8\x66\x3d\x94\x05\x97\x13\xe5\x23\x74\x49\x43\xf1\x3e\x4a\x0f\x52\xa1\x66\x86\xe3\x0c\xe5\xe0\x2f\x45\xda\x08\xa2\x06\x04\x2b\x11\x39\x82\x51\xea\x9d\x10\x25\xe5\x7b\xd2\x6c\x41\x43\xcf\x69\x71\x6d\xd9\xce\xc5\xae\x56\xaf\x5d\xfa\x00\x64\xed\xd3\xf4\xff\x2a\x71\x46\xb0\xfa\x08\x71\x39\xce\x88\x40\x8b\xe0\x06\xed\x88\xa0\x2f\x9f\x99\xfd\x74\x04\x4a\x05\xbf\xcb\x1c\x56\xbf\x4d\xef\x37\x8b\x8c\x81\xb2\x11\x60\xca\x0b\x57\xa1\x99\xb3\x6f\xac\xd8\x1b\x8f\x23\x42\xd9\x85\x1c\x49\xe9\x4c\x45\xf9\x35\x99\x96\xbf\x09\xde\x2e\x5f\xa2\x59\x34\x71\x26\x49\xb8\x47\x79\xd6\x31\x2a\xa5\x8d\xae\x78\x1c\x4e\x55\x3e\x73\x00\xb9\x1a\x1e\xe6\xe1\x14\xaa\x94\x27\xda\x09\xf0\xf9\x0f\x7f\x83\xc7\x00\xa6\xa6\xe2\x5b\xc4\x2e\xf1\x74\x4f\x12\xe0\xfd\x19\x7d\xcf\x8a\xce\x12\xc6\x8d\x5a\x61\x5a\xca\x85\xa9\x3c\x98\x51\x7c\x53\xa4\xa9\xda\x96\x92\xab\xbe\x4d\x2f\x65\xf4\x12\xf5\x51\xc5\xc0\x49\xa7\x9c\xb2\xeb\xa7\xe9\x74\x19\xbc\x64\x21\xde\xe7\x19\x9a\xef\xab\xef\x31\xe3\xfb\x2a\x07\x47\xa7\x14\xe4\x25\x23\x3f\x5b\x2a\x28\x0e\x9a\xf9\xf9\xdf\x2a\x6d\xeb\x8a\x75\x7f\xdf\x22\x3e\x5d\xca\x55\x7b\x99\xae\xcc\xb8\x95\x03\xe4\xbe\x11\xe7\xe6\x62\xec\xab\xe9\xdb\xd1\xa0\xab\xf6\x53\x64\xa2\x31\x38\xbb\x3a\x54\x3e\x6e\xaa\xef\x61\xd4\xfb\x35\xa7\xa4\x97\xae\x70\x04\x35\x8b\xab\xfd\x32\x75\x2e\x32\xed\x0d\x3f\x8b\x23\xdd\x24\x82\x15\x09\xbd\x9c\x34\xd9\xd4\xf4\xb1\xa6\xfe\xaa\xb2\xe0\x6d\x01\x74\x53\xd4\x0d\xeb\x34\xf0\x36\xb5\x09\xef\xff\x4a\x71\x28\xf1\x3a\x73\x8f\x6c\xa5\x92\x62\x44\xcf\x05\x3b\x84\x2b\x6f\x98\x1c\xf8\x16\xbb\xb8\x8f\x67\x02\xd3\x88\x7f\x13\xd6\x3f\x5b\x20\x82\x58\xca\xd1\x8b\x99\x54\x0b\x00\x88\xf5\x43\x8f\xac\xa8\xb3\xeb\xe4\x28\x66\xa0\x7f\xbe\xc6\x99\xac\x25\x4b\xac\xb1\x51\x26\xcd\x68\x95\x4e\x57\xbf\x8e\x39\xb3\x96\xdf\x8a\xeb\x8f\x05\xaf\x28\x36\xab\xe8\xb7\x76\x5d\xfc\xd5\x34\x1d\xca\x24\xee\x45\x6b\x69\x5e\x28\x40\x8f\x82\x5f\xd5\x6e\x09\xc0\x43\xa5\xb3\x72\x6d\x2f\x3c\x02\x80\x3c\xb3\x8c\x18\x6c\xa1\xab\xb6\x2c\x55\x75\x8b\x44\xd5\xb9\x10\x33\xcb\x8f\x20\xee\xc1\x10\x15\x74\x75\x95\x7f\xad\xf8\x50\x69\xe7\xed\x27\x97\x79\x35\x6d\xc2\x50\xd0\xcf\x28\x7d\xbf\x5e\x89\x6d\x80\x1e\xd5\x66\x09\xdb\x6c\xc4\x86\x6b\x26\x58\x01\xff\x96\x32\xbd\xb3\x23\xc2\x4d\x62\xd0\x62\x2c\x54\xd0\x31\x99\xce\xff\xad\xb8\x58\xff\xa7\x28\x6a\x47\x47\xe4\x28\x6a\x5f\x61\xbe\x6c\xe3\xd9\xb0\x1d\xd9\xd8\xe7\xb2\xfd\x37\xd7\x1e\x32\x90\x80\xb6\xf0\xac\x66\x56\x2a\xd2\x6d\x9f\xc9\x10\x87\xc0\x63\x1f\x8c\x6a\x51\x22\x0f\x59\xb7\x65\x12\xf0\x95\xd2\xc0\x4b\x5b\x89\xca\xb9\x70\x6c\x2b\x5a\xd6\xe8\x47\x85\x55\x54\x11\x15\xdd\x73\xc0\xc0\xa8\xae\xd7\xa1\x8a\x5a\x28\xe9\xd0\x82\xd1\x35\xd1\xcd\x47\xea\xf6\xbc\x79\xfb\xb7\xd7\xfd\xd7\x8c\x5e\xe0\x5c\xd0\xe0\x9c\x66\x97\x32\x1a\x73\x1c\x57\x9b\x6c\x36\x66\x04\xdf\x94\x4a\xfc\xb1\x00\xfb\x78\x5b\x19\x0d\xdc\xd9\xab\x59\xe9\xd2\x26\x0c\x83\x22\x61\x11\x03\x4e\xf0\x4f\xc9\xcd\x56\xf9\xef\xca\xf1\x74\xbb\xc8\xfc\xa9\x5e\x51\xcc\x2f\x00\xbd\xd3\x22\x15\x05\xfe\x86\xcb\x51\xd6\x9d\x1c\xe4\x8a\x22\xee\x19\x92\xaf\xc7\x7a\xf4\x55\xa0\xe1\x09\x38\x06\xf6\xf5\xbb\x27\x2a\x7d\x4f\x53\x41\x86\x62\x30\x42\xfd\xb3\x95\x5a\xb5\xd7\x8c\x7e\xb8\x1e\xee\x5c\x4d\x75\x17\xbf\xb9\x7e\x31\x2b\xe7\xb1\x2f\x54\x66\x45\xcc\x01\x6e\x43\x07\xd9\x2b\x5a\xc9\x9b\xcc\xc6\x58\x3f\xed\x39\x57\x8d\xc8\x60\xc0\xf6\x90\x66\xb1\x33\xa8\x34\xcb\x04\x82\x95\xfc\x93\x4e\x8f\x29\x2f\x77\x79\x81\xe5\x20\xdb\x74\xae\x2f\xe7\x54\xab\x1b\x22\x75\x22\xc4\x6a\xec\x20\x35\x6e\xd6\xcb\x40\x4e\xe8\x92\x07\x7b\x82\xcb\xf7\x8f\x02\x98\x27\xd8\x51\x1c\xae\x93\x1d\xeb\x0a\x4a\xdc\xa0\xb3\x9d\xce\xa2\xa8\x5e\x53\x60\xb3\xa9\xc6\xeb\xe4\xe7\x78\x0d\xb9\x9a\xf9\x77\x29\x99\x65\xa8\xad\xa9\xb5\x7b\xc6\xe8\xbc\xfd\x55\x74\x94\x1f\x45\x5f\x15\xc7\xeb\x2b\xb9\x2a\x5f\x45\xa0\xdc\x37\x36\xb6\x46\x6f\x50\xfc\x5a\xe6\xcf\x86\x82\x15\x94\x16\xb4\x44\xb2\xb7\x1a\xac\x43\xcd\x15\x4b\x24\x84\x70\xe8\x8b\x09\x8c\x5e\xb5\x65\x88\xdc\x6f\xc5\xbd\x8e\x25\xc1\x34\xe7\xb3\xdb\xc5\x25\xd2\x00\xd1\x56\x4d\xe5\xf9\x07\xce\xd2\x29\x6f\xaf\xd2\x6b\x51\xee\x4c\x20\x02\x3a\x69\xa8\x83\xd6\xb4\x17\x05\x74\x5c\x63\xa0\xa2\x1b\xfe\xe1\x7f\x99\x92\xeb\x06\x87\x16\x39\x87\x76\x47\x80\x8c\xf2\xc5\x1a\x93\x09\x2c\x9b\x6e\x78\x9b\xad\xce\x6d\x79\x50\x55\xd4\x5f\xba\x8f\x45\x16\x55\xef\xb3\x45\xfc\x78\x26\xc3\x04\x15\x27\x0d\xbb\x27\x6d\x86\xe6\x88\xc5\x91\xec\x0a\x93\x85\xba\x0b\x5f\xb9\x58\x46\x6a\xa8\x6f\xb0\x87\x5a\x10\xd4\x27\x93\x0d\x31\x34\x59\x07\xf8\x16\x8a\x83\xae\x07\xd1\x42\x92\x97\xc1\x64\x61\x82\xfc\x14\xa1\x33\x5d\x16\xb7\x9f\xe3\x7f\xa2\x6e\x17\xf3\xdd\xd9\x44\xa5\xa3\xea\x69\x96\xbd\x76\x9a\xa2\x5c\x91\xb7\x3c\x00\xb6\x08\x8b\xb0\x4c\xf3\x98\xc8\x94\xe9\x39\xe2\x31\x81\x32\x31\xb1\xe4\x3d\x89\xb5\xe2\x83\xe9\x16\x86\x7b\xa8\x08\x44\xde\xe3\x9e\xff\x05\x93\x85\x7d\x31\xf5\xa6\x68\xb4\x7d\x9a\x06\x38\xa9\xc4\x65\xf9\xb7\x94\xbd\x13\x07\xd3\x7d\xfb\xf1\xda\x6b\x3d\xa7\xc4\x4b\x35\x8d\x6b\xcf\xad\x5c\x42\x92\x30\xf7\x42\x48\x43\xbc\x4e\x87\x48\xe4\x21\x4e\xbd\x54\xa6\xd2\x34\x43\xf9\x14\x7d\x2b\x2f\xf0\x3f\xd6\x28\xe7\xb9\x13\xd9\x09\xa6\xce\x15\x90\xd8\x2b\x24\x56\xac\x65\xa5\x9f\x50\xfa\x5e\x48\x2d\x2a\x77\x39\x75\x93\x96\x23\x93\xb4\xdc\x3b\x50\xad\x74\x9c\x4d\x92\x39\x5c\xcb\x3d\x9a\xc3\xa9\x49\x37\x09\x60\x3e\x9e\xf7\xf1\x6c\x92\x4c\x8b\xb4\xae\xcb\x42\xb3\xc9\xfa\x2e\xa6\x8e\x91\x0f\x16\x22\x0b\xa7\x65\x91\x29\xb3\x58\x95\x3b\x69\x67\x67\xe5\x75\x0b\xcd\x4e\xd9\x5e\xa2\x1a\xdb\x4b\xa4\x6c\x2f\xf3\x31\x15\x03\x96\x46\x2e\xea\xcf\x84\xc2\x14\xa4\xd5\xfe\x69\x91\x78\xcc\xa4\x7a\x87\xd3\xc2\xb4\x33\x7b\x3c\x2d\x56\x6e\x9e\xf0\x71\x36\x69\x31\xb5\x1a\x9b\x8d\x4e\xe6\x3e\x77\x73\xb9\xaf\xe2\xb5\x33\xa3\x55\xb3\x3c\xba\xea\x3d\x51\x66\xe4\xa1\x49\x3e\xc6\x72\xec\x32\xea\xb2\x33\x5e\xb1\x14\x31\xdf\x6c\xa4\x02\x84\x31\xca\xe2\xe8\xf9\x87\x95\x34\x03\x92\x94\x02\x0b\x9c\xc1\x69\xfb\x1c\xb5\x57\x0c\xe5\x88\x70\x65\xb7\x80\xda\xfa\xd4\xb5\x57\x8c\x5e\xe2\x19\x9a\x19\x94\x0d\xdb\xe7\x6b\xde\xc6\xbc\x7d\x95\xe6\x6d\x42\x79\x7b\x2e\x08\x40\x5f\x10\xdf\x2d\x9e\x0b\x22\x63\x06\x7e\xe1\x9f\xbb\xcb\x64\x70\x72\xf9\x98\x9e\x5c\x1e\x1d\x81\x8b\xf1\xe5\x24\x49\xc7\x97\x93\x32\x75\x5d\xcb\xfb\xfd\x0a\x14\x8f\xa2\xd7\x09\xe9\x0b\xe6\x71\xa5\x3d\x16\xbf\xa5\xec\x5b\x7d\xf8\x15\x07\x79\x01\xe0\x22\x19\xc0\xf3\xe4\xda\x2c\xd1\xe2\xf1\xf9\xc9\x42\x2c\x91\x81\x71\x96\x5c\x8f\x17\x13\x78\x25\xff\x31\xd7\xe2\xb9\x33\xbc\x2b\x00\x3f\xf8\x3f\xdf\x26\x83\x93\xb7\x8f\xaf\x4e\xde\x9a\xa5\x7e\x95\x9c\x8d\xdf\x4e\xfa\x67\xfe\xf1\xff\x30\x7e\x3b\x49\x5e\xc1\xe7\xf2\x9f\x3e\x9e\x89\x25\xb8\x7a\x72\x0c\x3c\xfd\xcf\xaf\x28\x26\x90\x41\x0e\x9f\x43\x04\xd7\x65\xb2\xcc\xc1\xcd\x4c\x66\xbd\xdf\x82\xfe\x34\xe5\xa5\xb7\x05\x75\x18\x84\xb4\x18\x7f\x28\x62\x8b\x0b\x26\xfd\xb9\x0d\x89\xb6\x8c\xf3\xf1\x87\xf1\x60\x22\x4e\x00\xd8\xea\x07\x2b\x33\xf7\xd3\x64\x70\x72\xfa\x98\x9e\x9c\x1e\x1d\x01\x41\xcc\x4e\x27\x60\x0b\xa5\x24\x3a\x47\x0c\x91\x69\x19\x01\xa9\x23\x27\x79\x3a\xa2\xc4\x2e\x8b\x91\x4b\xb2\x97\xe0\x59\xe4\xf5\xd2\x5a\x23\x0b\x71\x0b\x57\x08\xbd\xdf\xc1\x83\x85\xa0\x87\x04\x36\x06\x09\x18\xd5\x77\xeb\xa8\xd3\xb4\x58\x7b\xc6\x50\x50\x58\x85\x32\xcc\x06\x9e\xb5\xaa\x3c\x60\x95\xe7\x68\xed\x91\xcc\xb6\xd0\x1f\xe6\xde\x29\x42\x5c\xc8\xad\x62\x65\xd4\xcc\x3c\xb9\xb5\xd3\x51\xe9\x3a\x75\xf2\x79\x21\x4c\xb3\xda\x1e\x6a\xf6\x03\x41\xd5\x5b\x65\x71\x14\x6b\x7f\xc7\x4c\x52\x9d\x40\xd4\x98\x5b\x12\x00\xf4\x2b\xee\xb0\xea\x89\xd9\x80\x35\x67\x41\xd6\x9c\x17\x41\xb8\x71\x5f\x05\x6a\x5a\x27\x8a\xdb\x36\x6f\xc6\x1c\xa6\x32\x41\x37\xcc\x92\x3a\xfe\x5a\x57\xd5\xfc\x29\x73\x05\xb9\xaf\xda\x0a\x73\x4a\xe0\x82\x71\x2d\x78\xf6\x7f\x58\xbe\x3d\x03\xf0\xa7\xf8\x6f\x42\xba\x2d\x5f\x77\x52\xe5\xc2\xcd\x38\x39\xcc\xf5\xb1\x50\xdc\xb8\x1e\x44\x04\x5a\xcf\x44\x45\x2a\x38\x75\xc5\x38\xa5\x49\xc1\x99\x9b\xa5\x4e\x95\x73\x3b\x95\xff\x08\xbe\xa8\x10\x9d\xc2\x5c\x77\x65\x56\xfa\xa5\xdd\x9f\x5d\x80\x2d\x77\xb5\x0d\xd0\x68\x96\xe4\xb6\x69\x99\x56\x0f\xfc\x9b\xeb\xbf\xe6\x94\x9c\xae\xb0\xf1\xc2\x0b\xec\x73\x61\x3f\x2a\xdd\x81\x11\xa8\x1e\x1c\x43\x75\x4d\x0c\x4e\x5a\xce\xd3\x0b\xc5\xac\x03\x39\x2c\xa4\x27\x42\xbd\xcb\x3b\x5c\x27\xb4\x36\x81\x06\xcc\x54\x61\xc0\x8e\x00\x4e\x2b\xdd\xc9\x8b\x00\xe7\x09\xad\xa6\xb2\x68\xed\x48\xcc\xd0\xed\xc6\xf3\xcd\x66\xbd\xd9\xa4\x9b\x4d\x27\xef\x76\x3b\x53\x00\xca\xea\xb2\xe2\xd0\x96\x1a\xcb\xf5\xab\x3e\x36\x28\xb5\xd9\xcd\x2c\xe5\xe9\xb0\x36\xf8\xe1\x3b\x6d\x82\x1a\x8e\x7f\x68\x63\x41\x38\x99\x2f\x74\x04\x05\xa2\x33\xbb\xda\xf0\x09\x62\x48\x3f\xa5\x1a\x6d\x55\x9d\x9c\x95\x5f\x2f\x44\xfa\x31\x7e\x99\x64\x62\x96\x70\x96\xac\x37\x9b\x69\xb7\x5b\x93\xaa\xc1\x4b\xd3\xf0\x64\x20\x4f\xc6\xbc\xdb\xed\x88\x11\x2c\x37\x9b\x99\xce\x81\xb0\x32\xf9\x1c\x6a\x66\x89\x4b\xd4\x5a\x0e\x4f\x4d\x58\x45\xdc\x2d\xaf\xb5\x5c\xe8\x95\x38\xc7\x78\x1e\xcb\x91\x8a\xce\x6e\x14\x33\x73\x87\x7d\x55\xa5\xd7\xf8\x42\xf4\xba\xf3\xec\x4b\x6d\x31\x6f\x70\xb5\x5c\x1f\x7c\x69\xad\x66\xfa\x46\x66\x65\xa5\x6b\xe9\xee\xf9\xf0\x3d\xf3\x91\x3e\x02\x52\x19\x63\x0c\x80\x3e\x13\x12\x77\x32\x5e\xef\x47\xe3\xb6\xb2\xd2\x16\x79\x18\xaf\x2d\x64\x64\x05\xfd\x93\x61\x70\xdb\x7f\xe4\xbc\x14\x88\x65\x1f\xc5\x0e\x4a\x87\x05\x32\x37\x8c\xcc\x4e\xdc\x5d\x3f\x91\x83\x91\xb5\x38\x7f\x76\x90\xdf\x63\xf2\xfe\x5b\x46\x2f\x76\xa0\x6b\xf7\x24\x85\x71\xda\xc8\xde\x26\x77\xa7\x0e\xc1\x5d\xa8\xdb\xdd\x85\x9f\x0a\xdd\x54\x03\xdc\xa3\xf0\x20\xd9\xda\x60\x34\x68\x24\xfe\x18\x96\xde\x62\x87\x81\x2b\x27\xd9\x28\xa3\x62\x36\x53\x69\x42\xd2\xf6\xd1\xb1\xc2\x49\x08\xeb\x4b\x68\xad\x22\xeb\x2e\x9c\x42\x8c\xea\x3d\xef\xf7\x45\xfe\xe0\x32\x39\x80\xfa\x09\x4c\xef\x30\xc2\x52\x8d\x0d\x0a\x0c\xeb\xaa\xc9\xea\x14\xab\xd8\xdf\x59\x01\x71\xe9\xbf\xb5\xec\x3e\xf4\x76\x1f\xe5\x0e\xcd\x04\xc1\x92\x63\x83\x2b\x4d\xb3\x74\xa6\xa7\x8b\xa4\xb0\xe8\xd3\x89\x87\xbc\x3c\x44\x56\xb9\xac\xe6\x37\xeb\x76\x3b\xab\x51\xe7\xc2\x3a\x43\x6b\xf4\x8b\xbd\xa7\x15\x73\x44\xbc\x49\x80\xe1\x45\xa8\x8e\x3c\x46\xc3\x90\x90\x82\xab\x97\xab\x6e\x79\xf6\x83\x0e\x3d\x73\x61\x89\x3d\xfe\xb1\x46\xac\xcc\xba\x5b\xfe\x63\xdb\x92\x2f\x94\x1a\x11\x69\x03\x5d\xc9\x40\xf8\x9f\x92\x72\x1d\x73\x33\xce\x9d\xc7\x4e\x35\x12\xd9\x5f\x8c\x21\x57\xd8\x51\x22\xb0\xd0\x18\x1c\x3c\x95\xc5\xbb\x68\x8f\x43\x65\x18\x68\xe1\x04\x6f\x36\x3c\x60\x01\xa1\x29\x94\xa6\x2b\xaf\xe9\x6a\xed\x58\x66\x2b\xce\xc5\x9e\x97\xfc\x96\x8f\x01\x6a\x6e\x9a\xa2\x41\xea\xbc\x04\xe4\xc9\xcf\x71\x5e\xf3\x12\x20\x5b\x69\x8a\x50\x21\x53\xd4\x98\x86\x17\x64\x8a\x09\x0a\x95\x42\xaa\xc9\x8b\x6c\x1e\x09\xd2\x6a\x08\x50\x6e\x97\x1c\x8f\xb0\x74\xa7\xf4\x8d\x1d\xe2\x35\xcc\xc1\x10\x27\xb7\x5f\x26\x28\x20\x40\xbc\x87\xc2\xa9\x89\x89\x59\x05\x08\x5a\x89\x8c\x99\x93\xd8\xe8\x19\xb9\x04\x4b\xc6\xed\x29\x62\x9f\x85\x8f\x2c\xdd\x7b\x64\xe1\x3a\x70\xce\xac\x67\xb7\x7b\xca\x60\xfa\x31\x07\xc4\x3e\x17\x51\xa8\x9c\x17\x8a\x00\xcb\x3f\xc7\xe9\xae\x43\x52\xbc\x17\x85\x8e\x8a\x95\xc3\x4a\x47\x85\x5a\x66\xc6\x01\x52\x7d\x1d\xc2\xa0\xc9\x76\xda\x67\x51\x66\x23\x16\x41\x22\x3a\x09\x30\x02\x66\xda\x23\x54\x55\xf2\x00\xad\x3b\x38\xcd\xca\x2f\xa5\x85\xe6\xa5\x55\x45\xf8\xa7\x59\x16\xeb\x48\x40\x2b\x84\xde\xcb\x9f\x40\xbd\x25\x99\xf2\xea\xd9\xf1\x93\xe5\xdc\x6c\x4d\x96\x8b\x80\x5d\x86\x74\x8d\xf4\x9f\xf6\xd5\x4e\xe7\x88\xc7\x1c\x46\x38\x97\xf9\x9a\x30\x59\x44\xb0\x33\x00\x30\x8b\x7f\x40\x31\x31\x47\x99\x01\x83\xf7\x78\xff\xac\xc4\x11\xb3\x9a\x27\xfd\x53\x13\x66\x10\x83\x51\x7c\x58\x5f\xfa\x9d\x9f\x55\xdf\xf9\xbd\x07\xd9\xf2\xf9\xe4\x00\x0c\xe3\xb8\xda\xaa\xfe\xa9\xdf\x19\x23\xe8\x76\x77\x8f\xb2\x34\x46\xb8\x6f\x28\x62\xeb\x66\x78\xa6\xd2\x60\xf9\xdb\xe7\x45\x8e\xf3\x90\x94\xd7\x42\x3e\x7b\xeb\xd3\x10\x10\xa0\x2a\x27\x29\x00\x2f\xc3\xc6\xe7\x56\x7e\x56\x8f\x34\xc6\x68\x26\x0c\xd6\xe8\xed\x5a\x6e\x6a\x3a\x04\xb8\x79\x2d\x52\x11\xfe\x9d\xc3\x6c\x4a\x18\xd8\x8a\xa3\x9f\x71\xc4\xdc\xd7\xad\x2d\x34\xe4\xff\x6d\x7a\x59\x66\x48\x2d\x53\x5d\x96\xb3\x18\x50\x9a\x89\x33\xe3\xd8\xf5\xed\x3a\xcb\xae\xb5\xdb\x7e\xc1\x75\xf1\x02\x39\xa9\x80\xe7\xfa\x89\x50\x1f\xfe\x9f\x6c\x68\x9f\x38\x60\x76\xa7\x9e\x3a\x6e\x72\xdd\xe7\x90\x14\xaf\x8f\x7c\x0b\xa0\xf3\x74\xf8\x8a\x4c\x77\x3c\x1f\xbe\x2e\x40\x02\xfd\xde\xe7\x7c\xaa\x89\x5a\xe8\x0d\x24\x97\xa9\x65\x8c\x27\xb1\x6f\x19\xe8\xe4\xe6\x1d\x40\x56\xbc\xb4\xf0\xc7\xac\x48\x2b\x82\xa5\x8f\x20\xa4\x09\xee\x9b\xe9\xc8\x47\x53\x33\x21\xc9\x6c\xfb\x1c\xbc\xa0\xab\x25\x3c\xe1\xc5\x40\xc9\x8c\xc7\x0e\x9e\xc7\x01\x77\x7a\x90\x25\x36\xa0\xc4\x28\x72\x4d\xe8\xa2\x61\x5e\x44\xbd\x11\x85\xae\xc9\x56\x34\x8c\xdc\x1c\x0c\x91\x3a\x4d\x78\x1e\x47\x8c\x52\xae\xad\xbb\x66\xfd\x3c\xbd\x44\xb3\x28\x49\x92\x72\x12\x1e\xf1\x5f\x39\xbe\x9b\xb4\xd8\xfa\xd6\x94\x12\x8e\xc9\x1a\x6d\xef\x66\x50\xdb\x02\x76\xce\x85\xb8\x2d\xf6\x3b\x83\x14\x88\x13\x3e\xc3\x33\xb1\x33\xf5\xef\x07\x2d\x1d\x1b\x4b\x49\x45\xd0\x1e\xc6\x67\x26\x22\x85\xd4\x2f\xab\xcb\xfa\x53\x9a\xbf\x20\x97\x69\x86\xab\x9c\x41\xc8\x6f\x7c\xe4\x02\xd3\x0d\x65\x02\x63\xc8\xc0\xb0\xae\xcc\xed\x4c\x3e\xb2\x55\x5e\x1e\x8a\x76\xea\x11\x4e\x66\x9c\x2a\x82\x4f\x54\x86\x66\x55\xfb\x6e\x84\x0a\x55\xb6\x85\x67\x02\xb5\x84\xd1\x95\x56\x43\x30\x1b\xa2\x02\x92\x8a\xc9\x9c\x4c\x03\x87\x13\x49\x00\x48\x29\x4f\x93\x92\xe4\x1c\x72\x83\xf8\x7a\xa5\x83\xf0\x43\x3c\xaa\x43\x82\xda\xc2\x1b\xcf\xb4\x07\x3d\xd1\xc2\x43\x6d\x55\x2b\xb5\x0b\x0e\x8c\x6c\xa1\xe1\x90\x6a\xb4\x58\xbe\x51\xb1\x6f\x08\x29\x90\x63\x9a\xe7\x23\xfd\xef\x90\x6f\x61\xb9\x76\x0d\x6a\x87\x2c\x59\x73\x27\xbc\x7b\xd5\x72\x19\x72\x89\x24\xb5\xc4\xc6\x80\x32\x7b\x29\x8c\xc9\xf5\x8b\xea\x0f\xb4\x2d\x9b\xca\x27\x51\xf9\x1c\xda\x9e\x53\xd6\xfe\x2a\x3a\xe2\x52\x83\xde\x2a\x62\x31\x9e\x2d\xd3\xfc\x65\xfd\x64\x5d\x8a\xa3\xa3\x96\xed\x1f\xe2\x16\x0a\x34\x5b\xbb\x74\x3a\x39\x94\x01\xeb\xab\x5c\x39\x18\xf1\x3d\x19\x72\xac\xa8\x68\x1c\x13\x94\x06\x85\xfb\x2f\x4c\x67\x3b\xc6\xe0\x73\x63\x7b\x4c\x78\x25\xef\x9c\xa0\x3e\x26\xd3\x6c\x3d\x43\x52\x7f\x8e\xa5\xdb\xa6\x7a\x08\xc7\xd5\xbc\x59\xb2\xef\x92\x84\x2a\xd3\x68\xe1\x79\x1c\xd4\x30\x83\x1b\x52\x4a\x05\xac\x58\xf5\xe2\x15\x8c\xa8\x07\x68\x15\x1c\x53\xf5\x43\xc7\x6c\x92\x04\x3b\x53\xa0\xdc\xc4\x5d\x74\xeb\x3b\x73\x68\x35\x8f\x5e\xb8\x5a\x10\xca\x26\xb8\x52\x5a\xb2\xba\xf5\xa2\xc4\xca\x25\x15\x08\x41\xf1\x32\x82\x32\x2a\xbe\x3b\x84\x38\x21\x91\x39\x6e\xc5\xf4\xb9\x27\x66\x6b\xdf\x57\x6b\x7e\x2e\x15\xaf\x3a\x33\x31\x49\x8a\x24\xb7\x5e\x85\x28\x5d\xad\x32\x3c\x95\x7a\x20\x71\xc8\xfb\x4e\xef\xea\xcc\x12\x89\x19\xc5\x6f\x9b\xde\xaa\x5e\x56\x37\x86\xb1\xe6\xc1\x83\x39\xcd\x1b\x28\x99\x4d\xf3\x42\xeb\xa8\x75\x9c\xe5\xb4\xbd\xdf\x96\xf0\x33\xf4\x43\xd0\x5a\x61\x0d\x95\x1e\x31\xa5\xe1\xd1\xae\x3c\xbe\x12\x37\xd7\xb8\x0b\xd7\xde\xce\xaa\x47\x83\x8e\x8c\x5b\x18\xac\x7a\xc6\xe0\xce\xf0\x6c\xa8\x2e\x9d\x61\xd8\xf1\x66\x03\x2d\x1e\xb6\x83\x09\xf9\x4d\x3a\x36\xda\xe2\x88\xa3\x6d\xbd\xb7\x85\x8c\x14\xe2\xf8\xe3\x55\x1c\x38\x1a\xcc\x38\xe8\xf3\xd1\x78\xd2\x2d\xbe\x23\xad\xb2\x9a\x72\x04\x94\x2a\x6e\x97\x8f\x49\x65\x22\x75\xba\xd7\x61\x00\x31\x5a\x8a\xba\x40\xfc\x9b\x6b\xf7\x59\xa4\x0a\x27\x40\xdc\xeb\x9f\xef\x15\x79\x77\xb9\x2a\x41\x7b\x77\x5a\xd4\x97\x2b\xcb\x55\x92\x57\xa3\xe2\x28\x02\xb6\x30\x50\xbb\xfe\x46\x09\x6c\x88\x78\x5c\x3c\x17\xb0\x1d\xed\x9c\xa7\xc5\xf0\xc4\xc0\x16\x5a\x6f\xab\x9d\x16\x13\x55\x44\xc3\xac\xea\xc6\xd5\xd7\x59\x26\xc5\x82\x55\x89\xf0\x21\x41\x57\x4f\x4d\xc8\xd6\xaa\x2a\x85\xf2\xa3\x23\x87\x5f\x53\x6c\x48\x23\xd1\xb1\xcc\xba\x54\xf7\x3b\x2f\x9f\xfb\xf2\x56\xcb\xf1\xbf\x4c\x57\xda\x33\x06\x16\xa2\x41\x3d\x8f\x52\xf5\x20\x82\x24\x61\x63\x2e\x2f\x0c\x31\x72\x1a\xd1\xf8\xdc\x5e\x8e\x57\x57\x04\xb1\xb2\xa0\xd9\x49\x92\x58\x92\x50\xb5\x33\x91\xf5\x0d\x3a\x12\xf2\x74\x45\x6d\x41\x60\x24\x0f\x50\xa4\x2d\x1c\x45\xaf\x09\x51\x54\xc4\x05\xa8\xdc\xcc\x34\x29\xd8\x6c\xaa\xf0\x3d\x4a\xd1\xbc\x23\x0f\xae\xec\x58\xab\xd4\xc4\x92\x08\x04\x50\xf5\x3f\x72\x87\x45\x47\x4c\x3a\x18\x87\xe6\x4b\xc1\x50\x55\xf5\x74\x27\x75\xe3\x18\x53\x39\x6f\x30\x14\x93\x1d\x3b\x9e\x54\x41\xe8\x45\xb1\xf1\x60\xd8\x09\xdb\x05\x27\x7b\x11\xb2\x81\x73\xfe\xf7\x1d\x8d\x92\xd7\xd8\xdd\x9d\x8e\x02\xf0\x27\x3b\x20\x4e\x17\x9f\xe2\x8c\xf8\x6a\xe3\xd4\x21\x1d\x14\x46\xda\x09\xee\xad\x1d\x42\xf8\x14\xa5\x23\x36\x4e\x27\x35\x83\x8e\x8e\xd2\xc3\x0e\x52\xea\x1f\x24\x3d\x86\xa8\x0e\xbe\xad\xd0\xf0\x24\x59\x78\xfa\x20\x5d\xe1\x2c\xd3\x46\xce\xb7\xf1\x10\x0d\xfa\x43\x16\xb4\x35\x80\x24\x6d\x10\xa3\x90\xe7\xa3\x43\x95\xcb\xae\x8e\x45\x91\x55\x9d\x49\xb1\xc2\xa8\x0d\x0a\x1a\x2e\x45\xd5\x3a\x49\xe3\xd8\x9a\xaa\x87\x1c\x3d\x4d\xa2\x5c\xe3\x71\xb4\x43\x14\xe1\x5e\x69\x61\xe1\x1e\x70\x0c\x96\xf9\xfe\xa4\x52\xea\xc7\x40\x9f\x8a\xa7\xaf\x2d\x76\x77\xa5\x1c\xbd\x35\x34\x05\x58\xa3\xa4\x92\xe1\xb0\xfc\xa4\x50\x31\x68\x99\x6a\xc9\xc0\x2e\x65\xbd\x64\x51\x59\x3b\x7f\xdf\x8b\xc5\xdb\x67\xf2\xef\xcd\xd6\x07\x52\x5e\x0b\xbf\xb4\xc1\x62\xf8\x0d\x76\xae\xc6\x19\x67\x78\xb1\x40\xec\x19\x9a\x23\xc6\xd0\xec\x9d\xfa\x99\xfb\xeb\xb2\x75\x9c\xb9\x73\xee\x1b\xa6\xd1\x84\x94\x75\x7a\x69\x42\x1c\x8f\x0c\xcf\x52\x25\x05\xb7\xf5\x05\x1a\xb3\x49\x2c\x4d\x47\xc0\x16\xc0\x2c\xd1\x4f\x30\x29\x80\xd3\xc4\x7b\x52\x49\xc9\xac\xad\x02\x16\xb6\xd3\x73\xba\xe6\xed\xe8\x88\x15\x0e\x50\x62\x06\xf2\x81\x87\x86\xec\x59\xa6\xca\x9e\x85\x56\xed\x59\x3c\xa3\x9f\x3d\xd2\x39\x86\x29\x5c\xcb\x08\xac\xb1\x7c\x2d\xca\xa4\xc9\x0b\x82\xa4\x8f\x67\x82\xc9\xb3\x62\x7b\xb7\x1b\xaf\x13\x6c\x7f\x02\xa9\x2c\x55\xfa\x3a\xde\xf7\x34\x7c\x31\xd5\x56\x1a\xe9\x16\xc0\x75\xb7\x6b\x5e\x95\xb4\xe9\x86\xc0\x0b\x06\xca\x70\xbd\x15\x2b\x44\x7d\x67\x24\xa5\x13\x44\x6e\xec\x2b\xdc\xd7\xfa\x39\xa9\xa1\x19\xc5\x2c\x89\x4c\x8b\x28\x49\x84\x00\x4d\xe7\xed\xac\x8f\xd4\xba\xaa\xe8\x8f\xa3\xd2\xef\xb8\x98\x19\x18\xaa\x10\x92\x12\xd3\xc9\x70\x9f\xcb\x18\xf5\xd5\x37\x31\x9f\xb2\xaa\x31\xa6\x90\x41\x04\xc0\xd0\x29\x52\xba\x22\x0a\x85\x08\x23\xd5\x48\x68\x0b\xa7\x8e\xd5\xff\x9a\x97\x84\xd1\x31\x53\x19\x52\x94\x45\x49\x4c\x92\x8c\x4b\x61\x0d\x6c\x36\x31\x09\xc6\xf0\x2c\x51\x77\xc9\x4e\xb3\xfe\xbc\xd0\x9a\x45\x17\xf8\x03\x26\x92\x98\x43\x9c\x10\x15\x89\x27\xcd\x73\xa5\x63\xd1\x47\xfe\x95\x0d\x2c\x80\x41\x8b\xf6\x19\xa2\x2b\x44\x9e\x8a\x6a\xf1\xcd\xd9\x19\xce\x5f\x4a\x18\x9d\x01\x3c\x3b\x53\xe0\xf0\x16\x40\xc1\x1d\x2f\x70\xce\x91\xe8\x44\x62\x96\xe8\x88\xc3\x22\x76\x4b\xa6\xc2\x24\x6c\xd5\x0c\x60\xa7\xe0\x4c\xd6\x59\xa6\x99\x13\x3b\x98\xe2\x82\x75\xbb\xb8\xbf\x4c\xf3\x57\x57\xc4\x66\x0b\x89\x6c\xa1\x90\xf3\x62\xa7\x72\xc2\x80\x4c\x4c\x93\x10\xab\x7d\x29\x96\x37\xf3\xe3\x34\x54\x96\xca\x5f\x26\x33\x03\xb0\x45\xfd\x1d\x0f\xda\xc9\x77\x08\xa2\xbe\x0e\xbb\xbf\x80\xa8\xef\x61\xa7\x44\x86\x11\xb6\x9a\x8f\xe4\xbf\xc5\x2f\x59\xf0\x4a\x14\xbc\x62\x33\xc4\xd0\xec\x2d\xe2\xc9\x8f\x10\x19\x6c\xa1\xaa\xa6\xc5\x87\xa2\xfd\xb2\xf8\xa8\x04\xdd\x24\x87\xa8\xef\x0e\xe7\x9f\xc8\xff\x60\x42\x38\xfc\x58\x7c\x57\x69\x94\xb8\xfc\xed\xe4\xbd\xfa\x59\xd6\xa0\x54\x29\x82\x93\x7f\x42\xd4\x37\x2f\x45\xc9\x37\xce\x0f\xb7\xb7\x6f\x45\x1b\xe9\x95\x99\xa4\x02\xe0\xd9\x39\x26\xb3\xe4\x27\xf1\xd7\x62\x9d\xb2\x59\xf2\x0f\xf1\x27\x95\x43\x7d\x91\x9f\x66\xf8\x12\x25\x7f\x83\xa8\x3f\xa5\x48\x9a\x74\x25\x5c\x00\x98\xe1\xf9\x5c\xc1\xfb\x0b\x34\x77\xca\xb9\x67\xc9\xb5\xfd\x2a\x7e\xbe\x53\xa9\xd3\x93\x4b\x88\xfa\xb2\x13\xeb\xd3\xa5\x06\xf2\x33\x44\x85\x3c\xf8\xd2\x9e\x8c\x73\x88\xfc\x6c\x5b\xc9\xbb\x52\x82\x0b\x39\x6f\x51\xf0\xb2\x9c\xf9\x42\x7c\x7c\x5a\x9b\xba\x26\x3a\x3b\x43\xf9\x4b\x2a\x68\x61\x04\x6f\x64\xf2\x9b\x61\x67\x20\xd1\x94\xaa\x1b\x47\x7f\x96\xf1\x07\x7b\x02\x9d\x3d\x90\x7c\xdb\x03\x4c\x66\xe8\x43\x04\xc7\x11\xfa\xb0\xa2\x8c\xe7\x11\x0c\x54\xea\xad\x18\xbe\x4c\x39\x8a\x26\xd0\xbf\xec\xd1\x3a\x47\xed\x9c\x33\x3c\xe5\x51\xeb\xd0\x71\xd5\x4f\xc4\xb0\x8e\xf0\xa6\x48\xf2\x23\xae\x79\x38\x4a\x0d\x57\x3b\xbf\xdd\x05\xb1\xba\x11\x8d\x81\x57\x9b\x6e\xf7\xac\xe9\x25\x62\xb9\x40\xef\xce\xaa\x4e\x3c\x32\xf1\x71\xcb\x86\xfa\x7a\x7d\x6c\x1a\x76\xfb\x21\x7a\xd4\x3f\x7e\xd8\xff\x3a\xda\x82\x56\x79\x78\xe2\xc8\xa5\x9c\xb2\xfc\x81\xa0\xd1\x94\x20\xc2\x77\x6d\x7e\x51\x7d\xcd\x71\x26\x1a\x65\x59\xba\xca\x51\x4f\x06\xdc\xd9\x51\xd1\x7e\x28\x1d\x16\x41\x4e\xbc\x79\x17\x71\x6b\x3c\x74\xe8\xae\x53\x55\x69\x6e\x85\x31\xb4\x8d\x11\xd8\x6c\x2a\x8e\xad\x9d\xf8\xed\xf5\xc5\x39\xcd\xfa\x98\x23\x39\x8c\x36\x26\x6d\xb5\xc4\xb2\x41\x34\x56\x58\xa0\x7d\x6a\x04\x8c\x49\x94\x24\x46\x43\x59\x24\x3b\x34\xc1\xbd\x54\x42\x43\x64\xa5\x40\xed\xb6\x23\xe3\x6e\x76\x06\xf2\xf1\x0a\x52\xb3\x11\x9c\x5d\x5b\x66\x31\x85\x79\x82\xc6\xa5\xc1\x4c\x62\x70\xd2\x89\x49\x12\xa7\x49\xde\x27\xe8\x03\x8f\x01\xe8\xcf\x28\x51\x59\xfb\x14\x5b\x9b\xf6\xe5\x5e\x03\xd8\xe1\x9b\x8d\x09\xdb\xd9\x49\x12\x0e\x4e\x44\x97\xe0\x64\xab\x5c\xb3\xd6\xe0\x06\x8b\x21\xd0\x64\xbd\x9d\x63\x92\x66\xd9\xf5\x8d\x18\x00\x31\xd6\x7f\x42\x28\x12\x43\xde\x6c\xcc\x5f\x31\xb0\x35\x25\x99\x55\xd4\x9f\x6e\x8b\x0c\x5d\x72\x1d\x9d\x65\x35\xfe\xd5\x04\x5d\xb5\xdf\x5d\xaf\x90\x7e\x66\xd2\xcc\x45\x3b\xe5\x1c\x5d\xac\x78\x9b\xd3\xb6\x94\xb6\xd6\x53\xbe\x66\xa8\x4d\x28\xe9\xc9\x29\x9f\x67\x05\x2f\x14\x81\x6d\xec\x30\x19\xd8\x61\xf6\xf6\xed\xf9\x8d\xff\x2c\x1e\xf0\x10\x72\x83\xe9\x72\xe9\x1d\xc4\x27\x3a\x94\xae\x99\x5a\xf9\xc0\xc8\xae\x3e\xd1\x61\xf1\x1e\xb8\xe6\x8c\x5e\xc4\x08\x94\xfa\x6f\xbe\xb2\xf9\x8a\xa1\x74\xb6\x6b\x51\x6f\x81\x42\xb2\xf4\x9a\xae\x79\x82\xfa\x3c\x5d\xa8\xa4\x65\x45\x78\xd1\x6f\xb0\xb4\x49\xc8\x13\xa4\xd8\x20\x51\x1e\xfa\xe6\xfd\x70\x01\x98\xfb\xa0\xb8\xb8\x78\x00\x85\x30\xae\xd1\xc2\x4f\x98\x2f\x5f\xa7\x2c\xbd\xc8\x81\xa7\xf9\x2f\x3c\x70\xac\xe8\x6f\xbc\x2e\x1e\xb9\x71\xfa\x4c\xe1\xf8\xd1\x64\xe4\xfe\x18\xaa\x00\x85\xf1\x00\x72\x83\x0e\x81\xe0\x3b\x3b\xa8\xc2\xb6\x55\x26\x1a\x81\x22\x7f\x4b\xa5\xb0\x15\x5a\x19\xff\x88\x52\x30\xa2\xc6\xae\x63\x38\x9e\x6c\x75\xbc\x86\xf1\x60\x32\x8a\x22\x13\xe3\x97\xc1\x68\x18\x01\xf3\x4b\x14\x82\xa1\xcd\xcc\x15\xe8\x43\x63\x03\x00\x55\xf6\xba\x52\x76\x3b\x00\xc9\x16\xb8\x43\x4b\xa8\x76\xc7\xfa\xe2\x96\xbb\x72\x86\xdc\xe5\xae\x14\xb6\x42\x87\xae\xd1\x72\x5b\x27\x9d\xfa\x45\x57\x82\xa4\xf8\xe4\xad\x7d\xa5\xc3\x26\x6b\x5f\x88\xea\x05\x26\xab\xae\xfd\x1b\xf4\x8f\x35\x66\x68\x56\xd9\x03\x63\x9f\xef\xaf\x20\x2b\xb0\x0a\x80\x32\x70\xbb\xfb\x45\xaf\x9a\xf3\x69\x8c\x26\x2d\xd2\x5f\x13\x19\xc9\x59\xeb\xcf\x08\xc4\x31\x75\xd2\x2e\x7a\xb5\x13\x02\xd9\x16\x22\x21\x4d\x14\x57\x37\x6d\x29\xff\xf1\xdc\xd9\xac\x3c\x02\x2d\xef\xae\xaf\x5b\x3a\x0e\x70\x70\x47\x83\xdb\xa6\xc4\xa9\xa9\x68\x12\xb8\x73\xc1\x8b\x35\x6d\x29\x4f\xf5\x03\x56\xd2\x11\x3b\x49\xcc\xe1\x31\x18\x0f\x0a\x3f\x23\x17\x4b\x6b\x4c\xc7\x64\x08\x10\xfd\x4b\x0e\xc3\x94\xcc\x5b\x16\x31\x06\xd5\x3f\xe5\xab\x02\xb9\x4b\x8b\x00\x54\x6f\xf4\x48\xd9\x02\x08\xf1\xaf\xb8\x31\x6c\x52\x0d\xf1\x62\x1f\x16\x6b\x06\xac\x87\x22\xc6\xbb\x0d\x30\x9c\x65\xce\xcb\x70\xe9\x0f\xe4\x46\xf4\xe6\x18\x65\xb3\xde\x0c\xe5\x53\x86\x57\x82\x1f\x6b\xc6\x8e\xda\x63\xcd\x9d\x63\xcd\x43\x4a\x0b\x45\x3b\xbb\xdd\x28\x97\x7f\x94\x0b\x2c\x51\x1d\x85\xd4\x3b\xaa\x26\xda\x86\xde\xa8\x50\xb7\xbb\xa3\x3b\x19\x34\x5d\xf1\x1a\x94\x25\x49\x62\xbf\x77\xcc\xdf\xc5\x12\x8e\xcc\xd8\x86\xb6\x43\x81\xa5\x0a\x2e\x84\xdd\xf3\x9e\xff\x82\xbc\xa7\xe3\xe1\x25\x0e\xc0\x23\xa9\x82\x1a\x0f\x26\x90\x26\x64\x7c\x3c\x81\x69\x42\xc6\x0f\xed\x95\x7c\x24\xad\x66\x4c\x80\x8c\x48\xed\xa1\xd8\x38\x1e\x63\xa0\x9c\x68\x3a\x49\x82\xc5\x45\x90\xdb\x56\x1c\x59\xda\xed\xc6\x5e\xfd\xb4\xa8\x9f\x76\xbb\x51\x21\x80\x46\x98\xb4\xc5\x17\x97\xd2\xc8\x6f\x9b\x8d\x35\x44\x48\x6f\xc5\xe8\xe1\xfc\x5b\x81\x08\x9e\x59\x3c\x90\x10\xf9\xd5\xf9\x10\xb8\x82\xa4\xc2\x2c\xeb\x58\x29\x31\xf2\x11\xec\xb1\xbf\x38\xd5\x6b\xcb\xbb\xdd\xc8\x1e\x6d\x31\x25\xde\xed\x76\x78\xff\xec\x0c\xe7\x4f\x75\x94\xc7\x67\x06\x93\x89\x7b\xd5\x04\xd3\x95\x85\xd1\x4f\x2d\x67\x7b\x30\xab\x53\xf4\x30\x92\xba\xc7\x25\x34\xa5\x3e\xc6\x8d\x26\x57\x08\xd0\x8d\x04\xf3\x7d\x58\xff\x6e\x55\x36\x28\xc4\x59\x86\x0e\x50\x80\x7e\xb2\x2a\xfd\x24\x0e\xfd\x64\x26\x72\x1b\x93\x21\xdb\xc8\x18\xbb\xf4\x13\x9b\x13\x27\xf9\x25\xf7\xf8\x82\x98\x80\x11\xd2\xbc\x8f\x4e\x68\x4a\x40\xe8\xfd\x86\x57\x07\xe0\x05\x92\xb3\xa1\xe3\x8a\x98\x71\x81\x01\xb4\x4b\x7d\x31\xc3\x5d\x8e\xc9\x04\xc8\x5c\x8e\x68\x17\xe3\x92\x04\x03\x68\xdc\x6a\xb4\x2a\x2a\x06\x2f\xc2\x61\x14\xa3\x25\x55\x76\x63\x27\x64\x52\xbf\x0e\x75\x1b\x51\x5e\x07\x62\xd7\x81\xa9\x75\xa8\x9c\xf5\x07\x54\xe9\x99\x7b\x39\x0a\xe8\x9e\xee\xf0\xea\xea\x84\x03\x86\x32\xd6\xa4\xef\x06\x37\x71\x80\x84\x7b\x8f\x37\x1c\x80\x20\x0d\x7a\x9a\x12\x42\x79\x5b\xd0\xe7\x76\xda\x96\x37\xaf\x9d\xe6\xed\xd4\xae\x76\x04\xb6\x40\x47\x3a\x05\x26\x15\x8d\xca\x33\x50\x08\x1d\x95\x98\xfc\x8e\xb1\x93\x68\x22\x0e\x52\xc1\x14\xc8\xf6\x95\x08\xfe\x2a\x52\xd2\x14\xbd\x45\x61\x2b\x3b\x59\x29\xc3\x39\xb7\xb1\x81\x73\xfc\x4f\x94\x0c\x7c\xd8\xe9\x2c\x9c\x89\x8d\x9b\x88\xf8\x8b\x35\x9e\x59\x4b\xbf\x72\xc7\xc6\x22\x4a\x26\xb5\xd1\x31\x64\x84\xec\x48\xc6\x6c\x22\xc4\x27\xc1\x08\xdb\x9c\x41\xa2\x77\x6c\xde\x6f\xd5\xf8\xfc\xb1\x28\x5b\xfd\xbb\x1a\x8e\xd8\x52\x41\x3b\xc5\x20\xc0\x8d\x4e\x04\x26\x7e\x68\xdd\x04\xee\xcb\x73\xf8\x6a\xee\xd8\x58\xd2\x27\xbd\xe3\x6e\x17\xf7\xf3\x95\x14\x31\x29\x34\xf9\x31\xf4\xe0\xf5\x95\xe9\x0c\xf4\x5e\x76\x8e\xfd\x19\xd4\x27\x2e\xb6\xd1\xeb\x04\x24\xbf\xd1\x32\xf5\xd1\x28\x9e\xc7\x5e\xed\x22\x9f\x94\x3a\xdb\xe5\x85\xb0\x0b\x6f\x1a\x39\x2b\x32\xe6\x13\xbf\x33\x6d\x79\x59\xe9\xb0\xe3\x76\xe8\x5a\x4a\x9a\xb5\x7c\x98\x24\x15\xdc\x01\x76\xa4\xef\x47\x8a\x85\x2d\xb0\xc7\xf1\x44\xbe\x8b\xe9\xf0\x51\xa6\xa5\x46\x64\x6e\x78\x1f\x14\x73\x81\x4f\xb7\xfe\xc0\xb9\x7e\x73\x09\xe8\xe9\xcd\x30\x8d\x62\xa0\x74\x7b\xe8\xea\xba\x9a\xe4\x89\xa0\xab\x58\x1f\x4c\x87\x58\x17\x01\xbf\x64\x04\x32\xd4\xec\x92\x39\x95\x00\x2a\xad\x7e\x68\x47\x0a\x2c\x2a\xaf\xa7\xac\xa1\xa7\x27\xc3\xca\xcb\xc3\x66\x77\x43\x88\xac\x68\x1b\xbb\x4c\x09\xaf\xe2\x57\x86\xc8\x0c\xb1\xde\x05\x9d\xc9\x00\x05\xf9\x83\xe2\xaf\x19\x9e\xf5\x30\xc9\x11\xe3\x1f\x21\x07\xde\x5a\x40\xfa\xdd\xe8\x5a\x1b\x4a\x12\x1f\xff\x66\xe3\x3e\x93\x9f\xe5\x88\xbf\xd4\x3b\xa5\xdf\x49\xab\xa6\x19\x37\xd3\x74\x95\x9e\xe3\x0c\x73\x8c\x72\x1d\x24\xe2\xec\xc2\x6f\xf5\xd4\xa9\x12\x47\x8f\xfa\xc7\x8f\x22\x13\xf1\xdc\xc0\xf7\xbd\xf5\xe4\xac\xb2\xac\x5a\xe8\x69\x08\x79\x4c\xfa\x2b\x9a\x4b\x73\xea\x34\x03\x27\xf1\x00\x4a\xf5\x65\xcc\x20\xd6\xd7\xed\x18\x40\xd2\x27\xe9\x05\x9a\x81\x2d\x54\xf6\x31\xe1\x1e\xb5\x51\x56\xb0\x70\x5b\x18\x53\x7c\x46\xf2\x2c\xd5\xa8\x66\x77\xd8\xc1\x97\x4a\x4d\xf6\xfe\x52\xdd\x5f\x2a\x0f\x30\xca\x90\x58\x6f\xe5\x27\xbe\xf3\xa2\x49\xaf\x3c\x5d\x3d\xe1\xf5\xb7\x07\xb9\x1e\xb4\xba\xbe\xe0\x75\x62\x16\xbe\x9c\xc4\xbd\x9c\xcc\x5e\xce\x3f\xd4\x05\xbc\xc2\x59\xd6\xb3\x89\x42\xef\xaf\xe0\xfd\x15\xfc\xa4\x57\x70\x27\x01\xbb\x9b\xfb\xf9\x85\x5d\x41\xa5\x74\x4a\x7f\x4d\x3f\x14\x8a\x26\xed\x79\x7f\xff\x9e\x50\xff\x9e\xb0\x43\x24\xf2\xb3\x14\x16\x1a\xe0\xc4\xfd\xb1\xd9\x74\x8e\x61\xe5\xdd\x11\x46\xf2\xe6\x45\x98\xb4\xd5\xbb\xe4\x15\xc3\xdc\xbe\x49\xd6\xdd\x5d\xa2\x23\x1f\x6e\x3d\xfd\x77\xe1\x26\xd5\x61\x9b\x8d\x51\x52\x0b\x01\x30\x66\xc0\x5d\xaf\x8e\x59\x2f\x7f\xdd\x4b\x01\x23\xec\x09\xb4\x91\x77\xf5\x31\x14\x07\xac\xbd\x4c\x73\xf2\x15\x6f\x9f\x23\x44\xda\xd2\x2d\x2f\xcd\x70\x8e\x66\xed\x5e\x5b\xda\xfd\xc7\xc0\xab\x21\x8e\x2c\x72\x62\xbb\x48\xac\x3b\x64\x9e\xe9\x88\xeb\xe7\x15\xe3\x24\x5a\x13\x35\xef\x59\x31\xde\x37\x68\x9e\xa1\x29\xef\x76\xf5\x1f\xfd\x05\xe2\x23\xe7\xef\x1a\xcf\x4b\xff\xbe\x89\x8d\x3c\xe9\x54\x90\xb5\xff\xc4\xad\x51\x36\xe4\x85\x76\x3f\x46\x09\x15\x48\xfc\x04\x9c\x38\xb3\x30\x4e\xdc\x86\xb1\xd6\x70\x95\xed\xa7\x81\x56\x68\x36\x63\xe2\x84\xaf\x95\xd1\xb2\x46\xf2\xbf\xaa\x3f\x06\x86\x58\x3d\xd7\x6c\xc5\x21\x14\x73\xd8\x6c\xdc\xb3\x48\x9d\x0b\x47\x4d\x5f\x39\xe2\xaf\xcd\x34\x5e\xcd\x47\xc5\x08\x9c\xaf\xc1\x3b\xd4\x3f\x3b\x93\xf3\x3f\x3b\xdb\x6c\x82\xad\x64\x2c\x46\xef\x32\xa4\xae\x8a\x33\x4e\xc3\x43\x28\xbf\xa3\x55\xfb\x4b\x38\x44\x6a\x86\x77\x45\xa0\x7c\x55\x8b\x8b\xa1\x1c\xef\xc1\x4f\x89\x78\xb5\x1f\x3d\x80\x44\xfd\x45\x63\x0e\xd4\xae\x16\x41\x67\xa4\x59\x43\x0e\xd7\x30\x0b\x25\x07\x91\x23\x0a\xdc\x52\x6e\x8f\x20\x0f\x0f\xef\xad\xb8\x71\x6d\xf4\x61\xc5\x50\x9e\x8b\x59\x5f\xac\x73\xde\x46\x98\x2f\x11\x6b\x9f\x23\x69\x05\xdd\xa6\xcc\x1b\x6f\xcb\x51\xa5\x94\x34\x20\xbc\xdb\x75\x93\xf0\xdd\x38\xb8\x74\xa8\xf7\x01\x41\x83\xa7\x86\x9d\x01\x74\x71\x9a\xd8\xa2\x2d\x80\xbc\xdb\x4d\xb5\x4d\x36\x0f\xe4\xd9\x91\x51\x38\x61\xbc\x36\xb9\x32\xf9\x12\x91\x08\x2a\xd8\x21\x81\x35\x4d\x70\x4c\xdd\xd4\x80\x00\xea\x36\xca\xf3\xd1\x5b\x67\x48\x9c\xa8\xc5\x1f\x96\xda\x91\xed\xc3\x92\xc1\x54\x65\x19\x64\x71\xee\xcc\x6f\x0d\x60\x26\xbf\xc1\x0c\x40\xbe\x8d\x5d\xba\x99\xef\xa1\x9b\x02\x40\x1e\xc1\xf1\xc4\xcd\x65\xb6\xa7\x8d\x7a\xe3\x59\x20\xde\x5b\xa2\x74\x86\x9a\x3e\xe2\xdf\xc9\x5b\x97\x3e\x64\x5e\xb2\x32\xc1\x7e\x7a\x1f\x78\xe9\x71\x5a\x27\xcb\x89\xfd\xac\xb0\x40\x46\xe1\x0c\x47\x76\xe0\xf4\x7b\x7a\x25\x78\xbc\x1c\xc5\x40\x66\x7c\xf2\xbe\x14\xf1\x6a\xd9\x08\x8d\xd9\x44\xbb\xb8\x6d\x1b\x2d\x1c\xce\x7b\xfa\x4d\xf6\xb3\xbe\x11\xaa\x01\x57\x9e\x83\x51\xb3\x41\xaf\x52\x96\xa3\x1e\x43\xf9\x8a\x92\x1c\xe9\x8d\xcf\x3f\xef\x0c\xd4\x66\xaa\x94\xe5\x45\x04\x51\xc7\x64\x2a\x5f\x65\x98\x0b\xac\xc5\xd0\x6c\x3d\x45\x21\x6b\x1c\x48\x12\xae\xeb\x45\xc3\x08\x40\x5c\xd6\x37\xef\x10\xb3\x58\x42\x7e\x63\x41\x8b\x7d\x4a\x41\x0b\x52\x69\x1d\x28\x3d\x91\x8c\x0c\xd0\xa2\x09\xed\x73\x86\x2f\x62\x13\xbf\x31\x2d\xcc\xd5\x4c\x81\xf1\xe2\xee\x76\x63\x34\xa6\x93\x24\x97\xf9\x8c\x98\xd4\x76\x3f\x7d\xf3\xfd\xb7\x2e\x95\xe3\x49\xf4\x0b\xfb\x85\x44\x2d\x5d\xc4\x1b\x9d\xbe\x35\xcb\x7a\x4b\x94\xad\x3e\xe9\x91\x93\x47\xfc\xc7\x37\xdf\x27\x4c\x59\x28\xac\xb3\x4c\xfc\xaa\xde\xa1\x4e\x07\xf5\x2f\xa4\xc9\x09\x97\x73\x5c\xa6\x97\xe8\x6d\x7a\x81\xbe\xa3\x79\x19\x55\x59\x7b\x0e\x71\xd2\x98\x93\xce\x81\xa8\xcd\x9f\xd2\x2c\x49\x54\x6e\x21\xf9\xa3\xdb\x25\xfd\x25\xcd\xb9\x10\xbc\x64\x81\xf9\x21\x0a\xc4\xa4\x55\x6d\xca\xf8\x56\x2f\xe7\x83\xff\x89\x97\x9c\xaf\x36\xe2\x3f\x39\x78\xd0\x72\xb9\x7e\xfd\x5c\x22\x33\xe3\x17\xcc\xa8\xbd\xfa\xdf\xa6\x39\xff\x86\x52\xfb\x94\x35\xa3\x53\x79\x46\x35\x19\x7d\xae\xc4\xc5\x38\x4a\x65\xf4\x92\x25\x43\xf3\x04\x41\x21\x8a\xa9\x8c\xef\x89\x69\xdf\x67\xea\x31\x39\x8e\xd6\x2c\x8b\x80\x5a\xc8\xe2\xf9\xe7\x46\xb4\x1c\x72\x09\x00\x9a\x89\x0e\xb9\x9d\x33\x34\x73\x14\x75\xf4\x9f\x50\x4c\x51\xd4\xa1\x8c\xc3\x55\xca\x97\xba\xdc\xfc\x09\x73\x94\xb2\xe9\x72\x28\x18\x37\xf1\x07\x5c\xa6\xb9\xf8\x25\xfe\xd9\xd6\x60\x34\xf1\x9f\x1e\x53\x09\x80\x7c\x33\x06\xa7\x92\x74\xd9\xca\xfd\xba\x77\x6f\xad\x50\xab\x9d\xd0\xd0\xb4\x83\x59\x61\x83\xb9\x5f\x12\x56\x3e\x40\xf7\xf2\x6f\xbd\xfc\x7b\xb7\xdc\xf2\x1f\x4a\x6e\xfd\x83\x31\xee\xb9\x62\xdc\x7d\xa1\x53\x53\x9f\xea\x99\x7b\x99\xae\x46\x3a\x1d\xb1\xe6\xe3\x5a\x56\x40\x2d\xed\x92\x09\x57\xb5\xd9\xc4\x2c\x41\xb0\x77\x9c\x24\xc9\xb7\xba\x4a\x89\x86\x33\x60\x5f\xf1\xa3\x31\x49\x39\xbe\x44\xed\x29\x9d\xa1\x89\x13\xbc\x01\xa9\xbb\xdf\x0a\x2f\x3e\xba\xc3\x25\x77\xe3\x4d\x98\x3c\xab\xcb\x34\x77\x38\x0d\x29\x39\xab\x68\x9a\xb9\x8c\x6a\x43\xbc\x33\x6e\xef\xad\x10\x8a\xec\xd3\x39\x5c\xeb\xc0\x2d\xee\x4b\xf5\xd6\x27\x71\x81\x6d\x46\x7b\xf6\x98\x40\xd7\x0b\xee\x78\xdf\x8e\xe7\x31\x81\x61\x39\xdf\xd1\xc7\xa4\xee\x4b\x7b\x0d\x41\xd4\x8a\x98\xcd\xa6\x63\x54\x32\x76\x70\x85\xa9\x03\x9e\xc7\x95\xd2\x7e\xbe\x4c\x2f\xbc\x2a\x81\x73\xe6\x26\x35\xec\x28\xdb\x58\xbd\x52\xcf\x52\x8e\x6a\x99\xc1\x4a\x67\xb1\xa8\x5e\x91\xd8\x00\xec\x0c\xb4\x21\x6c\xc1\xa8\x1c\x6f\xb7\x31\x18\x55\x20\xd4\x68\x99\xc6\xe2\xe8\x4c\x5a\x44\x5a\xc2\x58\xbb\x7d\x6e\x22\xef\x12\x74\x15\xdb\xc3\x7e\x8e\xc9\x4c\x57\x11\x47\xc5\xcd\xbb\x9c\xc7\x18\x7a\x2e\x03\x78\x0b\x0c\x34\x99\x70\xdb\x46\xd1\x28\x76\x2b\xf7\xb4\x32\xf9\x5d\x68\x65\x2c\xec\xb5\x43\xe3\xd6\x9f\x51\xe5\x74\x2b\xbb\xd8\xd3\x5f\xd3\x0f\xf2\xa2\x27\x67\xf2\xf7\x8f\x24\x5d\xf3\x25\x65\xf8\x9f\x48\x39\xeb\x87\xec\x1a\xcf\x62\x04\x46\x1e\x65\x9b\x0f\xbf\x1e\x48\x2b\xd8\xad\xe2\x65\x29\x3b\xc7\xb3\x19\x22\x07\x80\x58\x0e\xbf\x1e\x3c\x2a\x40\xb8\x01\x03\x9a\x01\x98\x0e\xbf\x7e\xf8\xb0\x00\xf0\x4d\x6a\xb2\x2f\x1e\x00\x63\x36\xfc\x7a\x30\x28\x60\xfc\xa0\xf3\xa9\x1e\x00\x61\x35\xfc\x7a\xf0\x75\x01\xe1\x2f\x94\xa0\x03\x5a\x5f\x0c\xbf\x3e\x76\xfa\x7f\x87\x2f\x10\x5d\xd7\x4f\xc0\x6b\x7b\xa9\xda\x9c\x9e\x53\x76\xc8\x94\xaf\x87\x4e\x87\x4f\x29\x99\x67\x78\x7a\x48\xfb\xc5\xf0\xeb\xc1\x9f\x0a\x08\x6f\x11\xbb\x44\xec\x80\xf6\xe7\x43\xf4\x24\xf9\xf7\xc1\xa0\xdb\x45\x8f\xff\x63\x30\xd0\x50\xd6\xd3\x29\xca\xf3\x8a\x38\xce\x13\xd4\xaa\xaa\x14\x64\x0a\x69\x29\x05\xbc\x20\x82\x94\x1c\x0f\x0a\x04\xc1\x9f\x24\x0f\x05\x70\xfe\xf8\xd1\x60\xb0\xd9\x3c\x92\x9b\xc3\x45\x2f\xee\x48\x51\xdf\x9f\x39\xea\x3b\xcb\x88\xfa\xde\x3e\xa0\x7e\xb1\xa9\xa8\xef\x1f\x11\xd4\x2f\x1f\x3b\xd4\x2f\x5d\x06\xd4\xaf\xde\x31\xe4\xc5\xc7\x10\xbd\xdb\x6b\xe9\x30\xed\x59\xad\xc6\xd6\x04\x03\xa1\x55\x47\xb6\xe3\xa0\x23\xdb\xb1\xeb\xc8\x76\x3c\x19\x46\xa2\xc3\xb6\x40\x19\xd2\xd1\xbe\x3d\x4f\xb1\x60\xe3\x60\x5a\x05\xf8\xd0\x69\xf9\x70\xe2\x73\x30\x6d\x66\x95\xba\x31\x4e\xb4\x5e\x77\xed\xeb\x75\x65\xc4\x13\x1d\x8c\x3e\x41\x10\xcb\x10\xc7\xeb\x3c\x49\x21\x36\x94\x1c\xc7\x1c\xd2\x58\xce\x1f\x58\x0d\x63\xb1\x24\xc6\xa3\xaa\x7e\x35\x2a\xa3\x09\x0f\x05\xc1\x48\xef\x95\x0c\x15\xab\xd2\x73\xa2\x59\xfb\x1c\x4d\x53\x21\xbe\xe8\xac\x9a\x58\xed\x4d\x04\xbf\x7e\xf8\xb0\x70\x29\x13\x83\x2c\xf4\x9f\xde\xfe\x19\xff\xad\xbb\x18\xa0\xdc\x18\x73\x5e\xfc\xcd\xf9\x7a\x70\x5c\x37\x9c\x00\x1a\xd7\x09\xbf\x3e\xf9\xa2\xad\x73\xc4\xda\x58\xe5\x22\x5d\x21\x76\x81\xb9\x28\xe5\x54\xfc\x98\x53\x76\x21\xad\x14\x8b\xa3\xd6\x17\xf3\x78\x54\x37\x8f\xd2\xdd\x59\xea\x24\x30\x77\x3d\x09\x31\xae\x54\x8e\x13\x93\x29\x65\x0c\x4d\x79\x76\x2d\x47\x36\xa8\x1b\x59\xf9\x9e\xab\x5c\x96\xab\x3b\x1a\x9a\x0a\x61\x59\xce\xe9\x0a\xbf\x1e\x7c\x5d\x37\x1e\x1f\x0f\xad\xe4\x68\x2e\xee\x76\x34\x72\x53\xdb\x19\x25\x0b\xc4\xda\xe9\x65\x8a\x33\xc1\x14\x8b\x61\x1d\xd7\x2e\x53\x81\x2a\x2f\xe4\x90\x2e\xeb\x86\xd4\x78\x44\x2a\xb3\xc5\xbb\x25\x6a\xa7\x3e\xce\xe2\xf8\x02\xcd\xda\x74\xcd\x23\xd8\xab\xbd\x18\x1e\x26\xbf\x94\x43\xba\xfe\x74\x43\x12\xfb\x97\x0a\x42\x22\xae\x6b\xed\x1a\x39\xa4\x46\x65\x1b\x5f\xdc\xc9\xbe\x05\xc6\xa3\x30\x47\x7b\xb6\x46\xe2\x42\xa6\xed\xa9\x26\x7a\xe2\x64\xfd\xa9\x6e\x78\x3e\x65\x5c\xc8\x11\x9e\xd7\x3f\x1e\xe2\x8f\xc6\x24\x7a\x78\xb9\xa4\xcf\x6d\xa9\x68\x8a\x20\x0e\x0f\xcf\x76\x7d\x56\xc7\x16\x65\x5b\x9f\xd4\x9f\x87\xf5\x59\x81\x30\x20\x4e\xe9\xa7\x51\xcd\xdd\x59\xec\x17\x5d\xdf\x8f\xc9\xb2\x47\xcb\x58\x37\x55\xa3\xd8\x73\xbf\x29\xad\xb8\xf8\xd3\xff\xde\xf0\xd1\xa6\xe1\xab\x5e\x53\x85\x7c\xb3\xb7\xae\x9d\x66\x3b\xe5\xb0\x2c\x2a\xcd\x13\x4c\x61\x5e\xa7\xb9\xf4\xa5\xba\x3f\x96\xe6\xf2\x6e\x74\xca\x99\xd6\x29\xbf\x43\x39\x87\xd3\xe4\xc1\xff\x38\x81\x40\x7f\x79\x10\x8f\x86\x97\x64\xf6\x4b\x3f\x5d\xe1\x5f\x8e\xc0\xe8\xd7\x9c\x92\x07\xb8\x58\xde\xb9\xfb\xdc\x11\x0f\x60\xea\x06\x54\xe8\x76\x8b\x27\x10\x37\x46\x9b\xa3\x7a\x88\x1e\x44\xd2\x09\x73\xba\x4c\xd9\x29\x8f\x07\x7e\x46\xfa\x9a\x5a\xc6\x67\xb3\x77\xec\xa7\x7b\x77\xa4\xef\x7c\x7d\xae\x0e\x54\xec\xd6\xb9\xf0\xeb\xc8\xc7\xab\x01\xf4\xc0\x5c\x3a\x55\x54\x98\xc6\x18\x25\x2b\xe9\xef\x33\x33\x3f\x2f\xe4\x4f\xb4\x55\x54\x68\xd0\x52\xeb\xc7\x51\xce\x31\x59\x74\xbb\x99\x0d\xe2\xf6\x53\x2a\x4e\x4f\x20\x54\xa1\x10\xdd\xae\xb5\xaf\xd7\x42\xaf\xbf\x0c\x08\x67\x54\x5f\x37\x53\x4a\x38\x22\xfc\xdd\xf5\x0a\x0d\xdd\x08\xf1\x0f\x3e\xf4\xae\xae\xae\x7a\x82\xf3\xe9\xad\x59\x86\xc8\x94\xce\xd0\xec\xa4\x2d\x96\x26\x47\x3c\xf9\xf1\xdd\xb7\xbd\xff\x8a\xa0\xbe\xc3\x9a\xcd\x97\x4f\x27\xe6\x6f\x92\x5e\xa0\x7c\x95\x4e\x91\xf9\xc0\xd9\x3a\xe7\x68\xf6\x1d\xcd\xb9\x6d\xa0\xb1\x4d\x30\xc2\xb4\xb4\x32\xa0\x2a\x67\x97\xfc\x6e\x1c\x99\xce\x2e\xd2\xf7\x48\x93\x06\xe5\x12\x49\xd0\x55\x3b\x37\x47\xa2\xf4\xce\x4a\xaa\x09\xdc\x35\xfc\xbe\x41\x45\x2d\x14\xb3\x40\x3e\x77\xfb\xc6\x8b\x8a\x9a\x32\x6e\x3c\xd8\xba\xe8\x63\xd8\x2e\x42\x69\xc8\x68\xff\x30\x6a\x17\xf1\x34\x58\x7f\xcd\x32\x18\xb5\x0d\x84\x08\x38\xe6\x4a\x1f\x96\x2c\x21\xd2\x92\x02\x6f\x21\x4b\xaf\x9a\xad\x83\x9f\x4d\xc0\x5f\x8c\x2d\x74\x3f\x54\xe2\xae\xaa\x40\xbb\x50\xa7\x04\x5e\xd2\xd9\x66\xa3\x32\x14\x6c\x36\xd1\x5f\x9e\xbf\x8b\x60\x96\xdc\xa8\x82\x61\x0a\xc5\xf7\x61\x0a\xd7\x2c\x1b\x22\x31\x8b\xed\x49\x30\xa0\x84\xd4\xe4\x99\x43\x24\x1f\xb4\x65\xc6\x45\x9a\xf0\xbe\x3e\x1e\x7a\xc0\xb2\x87\x4e\x92\xa0\x6e\xb7\x13\x77\xe6\xf2\x31\xa2\x23\xa3\x7b\xe0\xe2\x3a\x53\x18\x3d\x55\xe0\x7a\x02\x5e\x04\x00\xf0\x1c\xca\xd7\x31\x01\x5b\x10\xa7\x50\x5d\x12\xd9\x57\xf2\xd7\xb7\xaf\x7e\xe8\xab\x8b\x88\xe7\x45\xde\x08\x78\x7d\x94\x1c\x6b\x69\x50\x07\xcb\x30\x48\x43\xee\x0a\x02\x70\x59\x7f\x76\x18\xb8\x99\x4a\xe7\xff\xe2\x23\x56\x24\x40\x45\x02\xa1\xfd\xa5\x4c\xdd\xf6\x46\xef\x6c\x9c\x6b\x59\x15\xc6\x03\x48\x8a\xbe\x64\xec\xeb\xd3\x2c\x33\xf5\xbe\x53\x8b\x12\x03\x00\x31\xcc\x80\x0d\x11\xe3\x68\xdb\x40\xbc\xd6\xf1\x5f\xa6\xc9\x8d\x16\x86\x87\x18\x72\xf4\x41\x46\xfc\x5b\xe7\xc3\x14\xfe\xfa\x8f\xbf\x7f\xf7\x66\x98\x43\x73\xb0\x86\xeb\xad\xc6\x10\x6c\x4d\xd4\xab\xb8\x64\x3c\x19\x9c\xaa\xd4\x10\x37\x4a\xea\xfc\x58\x78\x08\xce\xc1\x76\x0b\xfa\x82\x59\x74\x97\x0b\xc3\x14\xdc\xd8\x06\x2f\xc8\x33\x74\xbe\x5e\xb8\x38\x49\x72\x9c\x9a\x6b\x53\x07\x02\xcd\xda\x29\x69\xa3\x8b\x15\xbf\x6e\xab\xdd\x93\x99\x58\xec\x75\xca\xaa\xd7\x29\x53\xd7\x09\xb6\xaf\x96\x78\xba\x6c\x4f\xd5\xd3\xd8\x39\x6a\x4b\xe6\x42\x08\x68\x92\x73\x55\x36\x07\xf2\x58\xb4\xdf\x68\x44\xac\x9e\x24\xcc\x7b\xc4\xcd\xb6\x1f\x01\x18\xc9\x66\x4c\x31\x91\x89\x8c\x50\x50\x5c\xf6\x77\xe8\x03\xd7\xc8\x33\x97\xe9\x57\x65\x65\xb9\x41\x76\xcf\xfd\xda\x60\xb3\x49\x5b\x79\x12\x71\x25\x46\x48\x88\xf2\x31\x87\x7b\x92\xc5\x30\x92\x5c\xbf\x5b\x5c\x30\xf9\xc3\xca\xb9\x42\xe1\x73\x85\xea\xcf\xd5\x1a\xea\x94\xb5\xce\xf1\x59\xbb\xdb\x8d\xf5\x76\x23\x28\xa7\xfe\x6e\xc9\xe8\x15\x19\xa6\xc5\xe6\xe7\x3b\x0e\x13\xe8\xa7\xd9\x55\x7a\x9d\xbb\x9b\x7b\xdd\x4b\x8e\xeb\xf1\x22\xaa\x6e\xa4\xbc\x81\x05\x2e\x5c\x4a\x5c\x38\x85\xcb\x2d\x5c\xd1\x0a\x41\x70\x11\x9e\x26\x19\xa2\x40\x87\xac\x9e\x09\x44\xf1\x8e\xea\xf4\x8e\x32\xa7\x1b\x8c\x5e\xbf\x7a\xfb\x2e\x02\x32\xc9\xca\x5d\x40\xfb\x51\x03\x13\x14\xe2\x0e\xc0\x9d\xbe\x7b\xfa\x9d\x04\xe8\x47\x75\xbe\x25\xb8\x67\xcf\xbf\x7f\xfe\xee\xb9\x81\x87\x78\x39\x63\x83\x0b\x52\xa6\xaf\x91\x89\x17\x7c\xfb\x5e\xf9\x0a\x55\x55\x0f\x6e\x36\xbd\x63\x99\x51\xde\xbe\x1e\x3e\x88\x40\x5d\x66\xa5\x17\xbc\x9d\x23\x74\x91\xb7\xaf\xe9\xba\xcd\x19\x56\x8a\x1d\xc1\x2f\xff\xaf\x38\xab\xff\x2b\x7e\x09\xea\xd4\x4e\xdb\x7a\x66\x9d\xf6\x8f\x39\x6a\xf3\xa5\xa8\xa1\x3f\xfd\x6f\x5b\x11\x20\x29\xa4\xa1\x74\xd6\x8f\xca\xd9\xd8\xeb\xe3\xa0\x6f\x61\x68\x89\x82\xab\x11\xa3\x04\x6d\x36\x37\x5b\x20\x8f\xa6\x7c\xa9\x91\x19\xdb\xbf\x5d\x67\x99\xbe\x49\xdf\xa5\xc1\x1c\x49\x45\x54\x7a\xd9\x7b\x64\xe4\x98\x52\x02\x9a\x34\xcf\xf1\x82\xc4\x37\x5b\xc8\x21\x02\x5b\xa8\x29\x78\x00\xe0\x2d\x95\xb2\x36\x11\x6a\x6c\xc6\xe4\x74\x09\x80\xb8\x5f\x9a\x5f\x3a\x5f\xe3\x6c\xf6\xe3\x9b\xef\x15\x17\xc5\xf5\x8c\x3d\xba\xaf\x88\xf6\x3b\x55\x60\xfe\xdc\x6c\x22\xc1\x88\x8b\x52\x87\xc4\x27\xc6\xb8\x51\xba\x70\xc7\x5e\x19\x18\x95\x57\xc7\x29\x8c\xc0\xd0\xe7\x15\xf4\x7e\xca\x54\x94\x6f\x11\x99\x19\x0c\x26\xd3\x5c\xe9\x65\xd5\x53\xa8\xee\x4c\x6c\xab\x08\xb0\xb6\xb6\xf9\x4b\xec\x2d\xe4\x5b\x68\x27\x7f\xa7\x0b\xaf\x68\x36\x2d\xec\xb2\x80\x6b\x9b\xe7\x06\x21\x52\x46\x44\xd6\x2b\xbf\x38\x35\x34\xe7\x11\x68\x49\x27\x85\x64\x16\x13\x30\xba\x88\x09\x18\x12\xa8\xc3\x0c\x11\x27\xc5\xa8\x65\xa5\xab\x60\x6c\x51\x04\x5a\x58\xc0\x1a\xe1\xe4\x32\xc6\x60\x38\x93\x81\x77\x62\x9c\x5c\xc4\x18\x00\xa8\xec\x37\x16\xcf\x3f\xac\xe2\xe8\x7f\xe2\x07\x60\x64\x71\xb3\xa8\x0d\xe5\xad\x96\xa2\x85\xb4\x13\xd4\x63\xc0\x0e\x7e\x96\x42\x89\x58\x17\x66\x23\xd9\x58\x89\x85\x99\x60\x05\x50\x87\x21\x17\xe0\xb6\xd0\x27\x63\x3b\x72\x41\x89\x1d\xb6\x8f\x3a\xfa\x11\x78\xc4\x86\xb1\xe6\x7d\x6d\x74\xd9\x12\xe9\x95\xf5\xf4\x21\x52\xf2\xcc\x53\xa5\x9c\x55\xe8\xc8\xc9\x38\x1c\x28\x2e\x99\x45\xdb\x04\xc0\x32\xe5\x96\x1a\x50\x45\x4b\xae\x2d\xa8\x81\x4a\x3d\xc6\xab\x6a\xf4\x98\x68\xaf\xfd\x02\x88\xaf\xa2\x2e\x43\x28\x95\x56\x9b\xbb\x0f\x07\xe5\xc6\x5e\x59\xb5\x69\x49\x05\x5d\x6e\x5d\x2e\xae\x02\xf0\x74\xc6\xe5\xe6\x7e\x61\xb5\xb1\xd5\xec\x96\x1b\x16\x05\xd5\x46\x05\x17\x54\x6e\x55\x94\x94\xdb\x78\xfa\xc7\x72\x33\xbf\xb0\xda\xa1\xa3\xf9\x2b\x37\x75\x8b\x08\x44\x4e\x9e\xd7\xd4\x64\xb4\x21\x88\xa5\x1c\x3d\x43\x5c\xea\x4d\x5f\xa2\x3c\x4f\x17\xc8\x9e\xa7\x96\x1d\xbb\x61\xeb\x63\x02\x85\xdc\x62\x14\x95\x54\x0a\x6b\x7c\xba\x54\x22\x71\x88\x4a\x85\x94\x1d\x31\x77\xf5\x97\xea\x52\x8f\xb8\xb9\xbc\xc3\xca\xfb\x27\x1f\xf1\x24\x49\xd0\x30\x9e\x52\x92\xd3\x0c\xf5\xaf\x52\x46\xe2\xc8\x15\xc7\xdb\x94\x64\xd7\x6d\x75\x5f\x73\xcd\x8a\xe7\x82\x4b\x66\x68\x81\x3e\xa0\xbc\xdf\x8e\x20\x87\x91\x54\xf1\x2b\x3e\x5a\x30\xcf\x9d\x63\x79\xb7\x2a\xf8\xbb\x26\xdb\x87\xcc\xfc\x20\xb8\x77\x92\x20\x89\x14\x5b\x2c\x61\x9b\x4d\x14\x41\x92\x90\x3a\x04\x29\xca\xcb\xd9\x70\x74\x05\x77\x02\x91\xb5\xb9\x3f\x8d\x01\x94\x01\x3e\xa9\xb5\xa0\x05\x31\x03\xd6\x94\xd3\x04\x01\x29\xa3\x6f\x06\x36\x9b\xb8\xd3\xc1\xb5\x56\xf8\xbc\xef\x6c\x96\x94\x3f\xb7\xa2\x89\x00\xe3\x5a\xdc\x82\x58\xe3\x9c\x9a\xe3\x11\x40\x83\x12\xef\xa8\x41\x3b\x82\x30\x2f\x0b\xc2\x9b\x4d\x24\x29\x6e\xdb\xfb\xdc\xa2\x49\x24\x18\xfb\x07\x4b\x7e\x91\x09\x89\x22\xf5\x7d\x03\xba\x5d\x66\x9f\x66\xff\x7d\x30\x8a\xc6\xaf\xf4\x93\xdb\xf7\xf2\xe3\x75\xfb\xbb\x77\x2f\xbf\x9f\x44\xc3\x92\x08\xcd\x8c\x81\x75\x11\x27\x94\x54\x99\x78\x22\x99\x78\xb8\x4e\x22\x9d\x48\xb0\x1d\xdb\xea\x29\x8c\x80\xe5\x89\xc6\x91\xdc\x9d\xf6\xe9\x5f\x4f\xff\xde\x36\x5a\x7d\x5b\x35\x97\xfa\x11\x23\x11\xba\x42\x82\x10\x65\xe8\x44\x13\x95\x5f\x88\xa0\x2a\x01\xbc\x5c\x71\x71\xd1\x7c\x91\x92\xaa\x2b\xd5\xa5\x52\x13\x96\x51\xf3\x6e\x20\x7e\x5d\x03\xc1\xc5\xc0\xbb\xdb\xbb\x35\x4d\xeb\x12\x06\xde\x0d\xa0\x54\xd9\xc0\xf0\xd0\xf0\x6e\x08\x5e\x55\xd3\xde\x62\xe3\xdd\x6d\x6d\x35\xd3\xce\x91\x57\x77\x36\x2c\xea\x99\x96\x1e\x4a\xde\xdd\xd8\xab\x6a\xda\x3b\x78\x79\x77\x6b\xa7\xa2\x6d\xab\x58\x8c\x3d\xed\x54\x25\xd5\xa6\x2a\xf2\xfb\xc9\xe7\x0a\xab\x39\x79\x81\x8c\xad\xb9\x36\x7d\x73\xac\xc2\xb6\x4e\x42\xbd\x3a\x78\x5e\x66\x3e\xb6\xf5\x3c\x8e\x17\xfb\x9f\x6e\xf2\xf5\x6a\x45\x1b\x07\xaf\xb9\x1b\xad\x3e\x0f\x6a\x95\xc5\x70\xc4\xf2\xe3\x29\xd2\xee\xea\x98\x68\x3b\x37\xf9\x31\x8e\xe4\x63\x11\x50\x0a\x63\x55\x63\xaa\x23\x1d\xf6\xd3\x0c\xa7\xb9\xaa\xa1\x61\xf4\x15\x2d\x70\x54\xca\xfb\x9b\x38\x8c\xb1\xd5\x52\x37\xe8\xc8\xc8\x72\x50\x6a\x30\xc2\x86\x89\x2a\x57\xd9\xaf\xe9\x07\x2d\x62\x86\x65\xd1\x6a\x3a\x52\x45\xb6\x9c\xee\x22\xe0\x48\xf8\x04\xf8\x1b\x5e\xe3\x8a\xa2\x37\x3c\x43\x8b\x74\x7a\xfd\xc0\x1e\xa9\x9e\xd4\xe3\xd8\xc7\xb5\xda\xe7\xbb\xda\x07\xb1\x9d\x4f\x97\xbe\x17\x87\xbe\x2d\xc1\x2c\x3d\xbf\xe3\x67\x2e\xd7\x84\xde\xbe\x08\x15\x8a\x67\x76\x77\x4f\x61\x38\x78\x69\xf6\xa3\x07\xe6\xbc\x9e\x97\x34\x37\x1d\x52\x08\xa0\x36\x00\x9a\x65\x76\x3a\x5c\x27\x65\xe9\x76\x8d\xf0\xae\xe3\x18\x9a\xb4\x48\xdb\x18\x27\x9e\xd3\x22\x06\xa3\x9b\xed\x10\x83\x11\xd6\x55\xfc\xbc\xd3\xca\x6a\x5b\xfc\xeb\xa7\x33\x72\x55\x10\xd6\xea\xcb\xd8\x70\x15\xbc\x04\xd7\x9f\x00\x64\x9a\x1b\xbe\x51\x1f\x86\x45\x1d\x04\x20\xc7\x3c\x43\x43\xbe\xdd\x82\x61\x4c\x13\x0c\xfd\xc1\x53\x31\xb8\xf2\xa8\x8c\xb5\x77\xcc\xc1\x68\x17\xcc\xbe\xfc\x77\xb3\x91\x5a\xe9\xf3\x74\xfa\x1e\x91\x99\x7e\xa4\x99\xa1\x59\xfb\x0a\xf3\xa5\x54\x4e\x2b\xf3\x82\x99\x64\xe2\x86\x7c\x3b\xdc\x01\xd3\x99\x1e\x90\x43\xf6\xc2\x96\x63\x30\x1a\xef\x68\x8c\xb7\x93\xe1\xce\xf2\x5b\x0d\x18\x6f\x27\x8a\x91\xa3\x3e\x72\xc1\x61\xe4\xc2\xd2\xab\x5a\xcc\xf1\x59\x7c\x90\xfc\xe7\x97\xb2\x01\x83\xb9\x2a\xa0\xcf\xd2\x2b\x59\xa5\xc6\xb7\x6a\x9f\x11\xc3\x97\x35\x17\x4b\x02\x6a\xe7\xa3\xc9\xa6\xb1\xb1\xb8\x2b\x67\xb1\x7f\x39\xb4\xee\x08\xd6\xdc\xf3\x8c\x62\x31\x0f\x7b\x46\xf1\xdf\xd6\x33\x8a\x07\x93\xc1\xc4\xf8\xb7\x08\x55\x41\x3d\xf5\x79\x4d\xb4\x8c\x4f\x1e\xaa\xe2\xb4\x60\x9f\x64\x96\xbb\x24\x48\x61\x4d\xee\x58\xc3\xd7\x55\x3c\x18\x61\x9e\xa4\x6e\x5c\x02\x9d\xdd\x61\x9f\xa9\x9f\x3f\xb9\x4f\x1b\xf0\x02\xc7\x1c\x84\x59\x4b\xab\x41\xaa\x0c\xe7\x8f\xe3\x34\x47\x6d\xb4\x8b\xd4\xb3\xf1\xf6\xf6\x7e\x1d\x46\x97\xae\x3d\x9a\x8b\x2b\x7f\xfd\xc7\x1a\xb1\xeb\xcf\xe3\x40\xbb\xcb\xc3\x79\x54\x50\x01\x29\x66\x54\x3d\x97\x89\x92\x8f\x76\xfa\xd9\x9e\xa7\x39\x9e\xf6\x66\x8c\xae\x66\xf4\x8a\x14\x29\xcb\xf2\x07\x7e\x49\x4f\x3f\xb9\xec\x8b\x95\x6e\x01\x58\xaa\x52\xea\x81\xa3\x8b\x55\x96\x72\x94\x37\xe9\x2b\x0c\x42\xc7\xa6\x4f\xb3\xa9\xcc\xce\xd8\x33\x51\xbf\x76\xd7\xcf\xa7\x8c\x66\x85\x85\x5f\xc8\x3a\xaf\xb4\x8b\x5a\xa5\x06\x65\x6c\x18\x38\x0d\x1a\x92\xc5\xf3\x3f\x2a\xa5\x5b\xde\xe7\x0d\xbb\xb3\xbc\x61\xae\x9d\xe0\xef\x20\x6c\xd9\x6a\x07\x93\x33\xff\xf2\x99\x9c\x8b\x92\x9b\xec\xc5\x17\x19\xb6\xec\xf2\xb7\x0e\x5b\xe6\x58\x8f\xc6\x97\xbf\x05\x2f\x78\xed\xf1\x82\xd7\x77\xea\x20\xbb\x70\xb1\xba\x32\x5a\xb4\xa6\x0e\x6d\x37\x66\x12\x01\x26\x4a\xbb\xf7\x5e\x43\x65\x0a\xaf\x31\x9a\x6c\x01\xa4\xee\x35\xec\x74\xdc\x9f\x90\x96\x2e\x61\xc7\xff\x00\xe3\xe2\x4e\xd2\xcd\x86\xf6\xcd\xf1\xfe\x27\x62\xa0\xdb\x8d\xa9\x7f\x47\x69\xc2\x4c\x58\xf5\x3e\x43\x97\x88\xe5\xea\x2f\x3f\xf2\x8f\xfb\xec\x6d\x4e\xe7\x66\xc3\xb6\x90\x02\x88\x1d\xe3\x03\xaf\x37\xd9\x99\x1c\x8b\xff\x7d\xe4\xfd\x52\x47\x07\x03\x63\x5a\xeb\x15\x6a\xde\x04\x40\x7b\xb3\xcb\x3d\xd4\xe1\x18\x2e\x86\x46\x13\x15\xc5\x9d\x16\xbb\x74\x2e\x59\x64\x71\x87\x50\xb7\x1b\x77\x74\x6a\xb3\xef\x71\xce\x37\x1b\xf7\x97\x34\xf8\x48\x31\xc9\xc3\x6c\x8b\x65\x18\xc4\x85\x42\x89\x0c\x7b\x83\x08\xd7\xc1\x5e\x0a\x3c\xe1\x3a\x72\x88\xb3\x74\x85\xc9\x8c\x5e\x19\xd9\xf9\x94\xe0\x0b\x69\xb6\xfc\x2d\x4b\x2f\x50\x39\x0b\x3a\x4b\x74\xed\x05\xe2\x26\x9f\xce\x5b\x7e\x9d\xc9\xa0\x30\x82\x69\x26\x94\x20\x29\x05\xf6\x53\x03\x48\xa5\xb3\x8e\xd8\x9a\x10\xf5\x98\xea\x16\xbe\xce\xd2\x6b\x99\x81\x18\xdc\xc8\xc4\x10\xcf\x2f\x11\xe1\x62\xb2\x88\x20\x16\x47\xb6\x1e\x22\xb3\x08\x3a\x42\xb6\xa8\xce\xd0\x05\xbd\x44\x3b\x5b\x30\x00\x79\x0c\xb6\x40\x07\xb6\x91\x7f\xde\x0d\x5b\x7a\x95\xc4\x32\xd7\x24\xd7\x79\xd3\x40\x5c\xd8\xc4\xaa\x07\x48\x6e\x12\xbd\x81\x38\x8a\x84\x94\xe4\xeb\xcc\xe3\x68\x26\xcd\xcf\x53\x25\x06\xd8\x0c\xfa\x45\x39\xa7\xab\x08\x46\x19\x9a\x0b\x1e\x90\xe1\xc5\x52\xfc\x7b\x85\x67\x7c\x19\xc1\x68\x89\xf4\x07\x2a\x84\x0b\xb9\x07\x79\x04\x20\x8d\xb3\x24\x8d\xe3\x45\x1c\xd7\x7a\x6d\xea\x74\x04\x90\x95\x6d\x90\x3f\x49\xb4\x57\x5e\xe4\x37\x20\xd5\x44\x30\xd8\xe1\x92\x88\xb8\x1c\x83\x13\xfa\x98\x9c\xd0\xa3\x23\x80\xc7\xd4\x4d\x04\x43\x6d\x46\x1e\x96\xac\x14\x68\x49\x3e\x38\x50\x8e\x4e\x36\x64\xc1\x58\x94\x4d\x6c\x0e\x46\x00\x00\xe8\xe3\xfc\x1d\x5d\x4f\x97\xcf\x90\x90\x77\x92\x6f\x28\xcd\x50\x4a\xe2\x4e\x47\x1d\xe6\x6e\x37\xa2\x84\x8b\x0a\x39\x4f\x19\x17\x58\x4a\x15\x00\xc8\x04\x11\x7b\x49\x2f\xd1\x2c\xe9\x1c\x43\xe7\xdc\x2a\xa1\x29\x8a\x20\xeb\x73\x96\x12\xc5\x7a\x63\xb2\x78\x61\x4a\x82\x37\xb4\xe7\xd5\xed\x61\xe2\xb7\x47\xb3\xc6\xcd\xd1\xac\xd2\x1a\x93\xc5\xab\x35\x3f\xa0\x7b\xe9\xc0\xc7\xfa\x4a\x24\x10\xd8\xf7\x94\x4c\x51\x2e\x04\x98\x64\x3c\x81\x6c\xab\xc2\xaa\x51\x98\xfe\x0b\x44\x84\xbc\x2e\x45\x84\x7c\x6a\xc4\x32\x00\x59\xc2\x61\x4c\x4d\x38\x48\x81\xea\x2b\xe1\x20\xc1\xcd\x45\x7c\x59\x8a\x01\xa9\x2a\xaa\x20\x2a\x41\xd5\x83\x32\xb7\x32\x9b\xf3\x62\x56\xb3\x69\x1a\xab\xf7\x0a\x8d\xb8\xdb\xac\xbf\x26\xf8\x1f\x6b\xf4\x62\xa6\xc1\xd9\x03\xfa\x9c\x88\x09\xce\xba\x5d\x95\xd4\x03\x71\x07\x35\xca\x33\xa2\xc6\x16\x3c\xbd\x60\xbb\x85\x6a\xb6\x39\xe2\xeb\x55\x35\xfa\x65\xc9\x16\xc5\x86\x17\x93\x4a\x81\xb7\x48\x30\x8f\x62\xab\xc7\xb3\x94\xa7\x3d\x74\x3e\xeb\xe1\x59\xb2\x67\xfc\x30\xea\x71\x86\x17\x0b\xc4\x26\x11\x00\x2d\x59\x49\x5b\xbd\x51\xca\x5f\xd2\x75\x8e\x9e\xd1\x2b\x87\xf3\x24\xe0\x86\xdb\xdb\xb9\xd9\xa0\x82\x3a\x92\x3e\x4f\xd9\x02\x71\xc1\x0e\x74\xbb\x2c\x50\x30\x52\xa1\x70\x22\xd3\x3c\x82\x9d\x63\x30\xec\x58\x24\x89\x62\x87\xd7\x3d\x8f\x4b\x0c\xe9\x79\x5c\x3b\xe1\x94\xe1\xb4\x47\xaf\x48\x9e\x38\xb6\x1e\x36\xed\x68\xde\xc7\x33\xc5\x7d\xc0\x48\x46\x0b\xb2\x6c\x6b\xb7\x8b\x43\xd5\x04\xad\xdc\x6c\x50\x8c\xa1\x0d\xbe\xd3\x39\xde\xda\x79\x40\xee\x1c\x1f\x31\x29\xbb\xaa\xe9\x54\x3d\xa7\x4e\x33\x9a\xa3\x98\xc0\xce\x00\x0c\x43\x73\xde\x42\x3b\x95\x0a\xf1\x55\x66\xd3\x94\x72\xf9\xb9\xb0\x32\x0d\xec\x8a\x80\x0f\x35\x67\x50\x25\xe2\x0c\xe5\xf8\x9f\x48\x9f\x37\xb6\x26\x19\xa5\xab\xd3\xab\x94\xa1\x37\xc8\x28\x2d\x76\xb4\xa6\x0c\x23\xc2\xe5\xb9\x9d\x2e\x53\xb2\xd8\x07\x48\x9b\xa3\x39\x08\xbf\xdb\x8d\xeb\x67\x19\x39\x88\x5f\xdf\x08\xf1\xe1\xad\xf8\xf0\x9d\x9c\x29\x93\xb3\xdb\x07\x41\xb2\x1b\xbb\xd6\xc7\x64\x75\x12\x7b\x10\x40\xb9\xba\xf1\x02\xf1\xb7\xd5\xc2\x98\x99\xe6\xe9\x6c\xa6\xca\xe5\xd8\x30\x59\xc8\x1c\x86\xfa\xb6\x72\x94\x32\xb1\xfd\x01\xfc\xa4\x6d\xe0\x05\xc3\xf4\x97\x8c\x9e\xa7\x99\x9c\x43\x1e\x6b\xb0\xaa\xa4\x04\xd9\x8c\x38\x4c\x1f\xec\x82\x84\xd8\xb0\x43\xcf\xce\xee\x4d\x0b\x32\x7a\x87\xee\x5b\x3d\x90\xfd\x5b\x67\x57\x58\xa1\x50\xf4\x22\x10\x11\xd8\xc5\x89\xad\x1a\x5c\x2c\x38\x6e\x77\x53\x6a\xf0\x72\x88\x25\x10\x9c\x6b\x69\x14\xaf\xd6\x55\x4a\x64\x86\x01\x99\xb5\xbe\x2d\x0f\xc3\xb3\xbd\x50\xd9\x2e\x5e\x08\x3e\x7c\x8a\x46\x25\x99\xc1\xff\x35\x2c\x95\x42\x2c\x13\x6a\x53\x82\x7e\xa0\x33\x14\x77\x06\xa0\x85\xfb\x02\xd1\x47\x45\x02\x6c\x2c\xf0\x7a\x4f\x56\x8a\x00\x8c\x79\x82\x0b\x71\x06\xe8\x2d\x31\xd4\x11\x2e\xe3\x5a\x8a\x64\x02\xbb\xb6\x05\xd6\x84\x31\xf3\xe1\xa4\x33\x13\xb1\x8a\x05\x81\x18\xb6\xc8\x87\x42\x44\x1b\x44\x66\x4f\x97\x38\x9b\xc5\xd8\xbd\x9f\xcd\x29\x25\x3c\x8b\xb1\xbb\xa5\x44\x4f\xca\x00\xdd\xca\x1c\x0b\x0e\x31\x7d\xb9\x56\xb8\xec\xd5\xb9\xf2\xdf\x6a\x72\x90\x2e\x4a\x6d\x24\xd3\x5c\x06\xe4\x09\xee\x31\x1a\x0f\x26\x62\x5d\xd0\x4c\x6c\x8e\xe1\xb7\x37\x1b\xf9\x5d\x0d\xd1\x2b\x01\x82\x8d\x0a\xa3\x54\x21\x34\xc1\xe0\x38\xfa\x54\xfd\x11\x0b\xbe\x4b\x4c\x58\x6c\x87\xe0\xb1\xf2\xf5\x39\x67\x48\x89\x4f\x15\xec\xb4\x77\x05\x34\xb6\xaa\xf4\x36\xc3\xf9\x94\x12\x82\xa6\x3c\xae\x19\x50\xa2\x93\x6f\xe8\x0e\xcb\x08\x21\xd0\xd3\x3e\xb4\x2e\x16\xca\xc5\x2f\x82\x74\x3a\xe8\xc5\xef\xcb\x29\xac\x9b\x54\x21\x4e\x0c\x9a\xa0\xa6\xa6\xdd\x87\x77\x2e\x30\x88\x92\x27\x9a\xcf\x8b\x19\xae\x81\x15\xe4\xb4\xe8\xa1\x42\x3b\x02\xd0\xad\x2a\x21\x30\x9f\x43\xb8\x80\x20\x80\x03\x19\x01\x3b\xf2\x30\x49\xad\xbf\x77\xe3\x89\x40\x9d\xc8\x49\x34\x28\x9d\x05\x2d\x98\xd7\x12\x09\x82\xd8\xa0\x43\x71\x8d\xc0\x09\xeb\x76\xa3\x6f\x5e\x3d\xfb\x59\x29\x3f\xb4\xe4\xdf\xe7\xf4\xc7\xd5\xaa\xb0\x1f\x8e\xbe\x7b\xf7\xf2\xfb\x1d\x35\x4e\x00\x57\xfe\x1f\x4c\x88\x1d\xe1\x6e\x99\xdb\xad\x75\xe7\x2a\x68\x43\x99\x41\x08\x4d\xd4\xe4\xa9\xe4\x3a\x51\xa0\x58\x68\xd5\xca\x2c\x42\xc9\x3a\xc9\xe1\xae\x79\xc1\x5d\x23\x15\x3f\x5d\xfd\xbc\xb1\x6b\x25\xd5\xaf\xa7\x26\x6a\x8d\x86\x6b\xdb\x41\x99\x46\xd3\x54\x53\xa5\xcf\x50\xc6\xd3\x1c\xc4\x5c\xea\xc7\xfa\x33\xf1\xf3\xef\x30\x35\x7f\xfe\xdc\xa2\x8f\x99\xfe\xfa\x03\x5a\xc8\x90\x9b\xa3\x98\x26\xe5\x6f\x90\x9b\xc9\x3c\xd3\x3e\xc8\x00\x0c\xe9\x13\x53\xed\xb5\x3c\x1a\x7e\x53\xf3\x2d\xd8\x34\x35\xbd\xfe\x5c\xf4\x9a\x26\xe5\x6f\xe1\xa6\xa6\xd7\x9f\x4d\x0f\xdd\xae\xd3\x76\x57\xb7\x85\xa5\xd3\x6b\x55\x24\x38\x87\x98\x6e\x36\x29\xe8\x76\x95\x61\x3b\xce\xb5\xa8\x60\x16\x97\xc2\x14\x3a\x0b\xac\xd5\x5d\x15\xd8\xdb\xd6\x0e\x7c\x77\xb5\x44\x28\x8b\x20\x87\x37\xd3\x74\xc5\xd7\x4c\x4a\xcb\xab\x34\xcf\xf1\x25\x1a\x76\x8e\xb7\x3b\x58\xc5\x24\x84\x51\x83\x97\x78\x6f\x27\x5b\x3d\x76\x8f\xd9\xdd\xcf\xac\x26\x95\x12\xd5\xa6\x84\xbf\xf6\x5c\x0d\x70\x53\xbd\x47\xb5\xc8\x4e\x25\xf5\x94\x54\xba\x56\x78\x51\xbc\x73\x13\x89\x25\xc0\x65\x57\x55\xf2\x5c\xf0\x8c\xf5\xbd\xa0\x5a\x5c\x58\xc6\xe3\x07\x4f\x2d\xb8\x99\x9f\x62\x76\x3b\x3b\x6a\x32\xc1\x32\xbb\x1b\x85\x63\xf9\x44\x1c\xe5\xf2\x29\xcf\x1a\x15\xbf\xba\x32\x92\x8b\xe0\x4c\x73\x9a\x5d\xa2\x37\x32\x2a\x88\x0a\xe9\x14\xeb\x6c\xf9\x43\x44\x2e\x31\xa3\xe4\x42\xaa\xda\xfb\xce\x2f\x3b\x04\x47\xb1\xab\x79\xe5\x9a\x41\xb4\xed\x65\x59\x20\xc3\x56\x7f\x73\xfd\x62\xa6\xe9\x72\x01\xc6\xd1\xc8\xf0\xeb\x0c\x55\xc0\xa9\x0d\x8b\x22\x68\x53\xbb\xae\xa0\x76\xf9\xcb\xd0\x9c\x9b\x70\x1f\x52\x89\x6c\x32\x16\x4b\x4d\x32\x54\x61\x2c\xfa\x4a\x9d\x0c\xb5\x3f\x96\xa3\x53\xb6\xe9\x4a\xba\x5d\xf7\xc1\x28\x0d\x3c\x18\x71\x70\x83\x8e\x5c\xcb\x54\x18\x0d\x1d\x0f\x94\x74\xcc\x27\x30\x3a\x89\x80\xd2\xb8\xc5\xa2\x2e\xa7\x2b\xc7\xb7\x9d\xcb\x62\x00\x99\x2e\x15\x43\x77\x43\x82\xe8\x62\xa2\x8b\xe5\x6c\x9c\x72\xa2\xcb\xb1\x2e\x97\x13\x74\xca\xb1\x2e\xa7\xba\x5c\xcd\xd9\xa9\x40\x01\xd0\xea\x3f\xfd\x50\xbe\xe4\x17\xd9\xdb\x74\x2e\xdd\x10\x64\x7a\x96\x59\xec\xc4\xbf\x85\x14\xc0\x54\x7e\x33\x86\x35\xc0\x29\x0c\x1c\xc4\xb1\xaf\xe1\x9f\xc0\x7d\x4f\x9b\xd3\x9d\xf0\x00\x9c\xba\x1a\xc7\x85\x5f\x3d\x74\x08\xc7\xf9\x81\x7d\x06\x80\xec\xee\x55\x1f\xcf\xf1\xfa\xc0\x8e\x54\xbb\x3d\xb0\x95\x32\x52\xaf\xe2\x99\xe2\x56\x0f\xed\x47\xc2\xd8\xdd\x4f\xa1\x46\xf9\xa8\xae\x2c\x98\xdd\xbd\x39\x2a\x85\x8f\xea\xae\x80\xd3\xa8\x3f\xa9\x3c\xb8\x8b\x0e\x05\xa0\x06\xfb\x56\x95\xfa\x3e\x7e\x1f\x2b\x30\x9b\xed\xeb\x1d\x0f\xa5\x16\xec\x9e\xd1\x54\xa5\xd3\x8f\x1b\x46\x05\x5e\x83\xfe\x3d\x89\xf5\xe3\xbb\x77\xc1\xed\xee\xbd\x4e\x60\xfd\xa8\x31\xd4\x00\x2d\x8d\x24\x4b\xa6\x00\x6c\x36\x99\xfc\x9f\x63\x16\x78\x75\x7b\xb3\x40\xfd\x72\xf1\x59\xcc\x02\x4d\x5f\x65\xd3\xbd\x80\xd9\x1e\x81\x4e\xdc\x37\x3f\x3f\xdf\x1f\xd4\x5c\x2f\xfd\x5d\x58\x96\xe5\x3b\x2c\xcb\xe8\x97\x6f\x59\xf6\x5b\x85\xdd\xb7\x03\xc8\x3c\x93\xa9\xec\x4e\x4d\xa6\xa6\xf7\x26\x53\x5f\xae\xc9\xd4\xdd\x98\xee\xcc\xeb\xec\x76\x62\x52\xb5\xdb\x89\xe3\x69\x1c\xe3\x3f\xae\x2d\x4d\x6e\x6d\x69\xd6\xcd\x6c\x69\x90\x79\xd1\x4b\xa2\x69\x86\xa7\xef\xa5\x09\x09\xa7\x2b\xb1\x1d\xe9\x42\x72\x40\xd2\x56\x46\x9b\x8f\x08\x1a\xf4\xc7\x37\x1f\xc9\xf6\x98\x8f\x10\x63\x3e\xa2\x5e\x18\xed\xeb\x62\x48\x39\xeb\xeb\xe4\x67\x38\x97\xd2\xde\x66\x13\x5d\x88\x56\x52\xa2\x30\xaa\x5b\xbb\x17\xdd\xae\x24\x04\xfd\xf3\x35\xe7\x54\x10\x27\xa5\x75\xf1\xb7\x45\xd0\xda\xd2\x27\xa3\x52\x3b\x13\xdf\xdf\xa1\x0f\x5c\xd9\x32\x60\x4a\x7e\x24\x1c\x67\x72\x9c\xeb\x95\xa9\xc5\xe9\x62\x91\xa1\x17\xf9\x37\x08\x93\x85\xe2\xf3\x66\xdf\x5c\xcb\x47\x5b\xa5\x4a\x1a\x35\xab\x96\x74\x8e\x87\xe1\x97\x07\xd5\x34\x46\xce\x93\xab\x5a\xb1\xa7\xea\xa8\x55\x57\x2b\x64\xd4\x6c\xb4\x2a\x66\x1d\x70\xfe\x4c\xa5\x51\x17\xcb\xd8\xf1\x7a\xde\x6c\x6a\x97\x5b\x9d\xee\x3b\x5f\xea\xcf\xb9\x88\xe5\x55\xfc\x6f\x74\x7d\xe8\xa9\x8b\x8f\x65\xaa\x18\x41\xf3\x9e\xd2\x19\x1a\xed\xe9\x72\xf8\xe8\xa1\x57\x5d\x66\x84\xf2\x95\xd0\x70\xdf\xa8\x87\x0f\xff\xd3\x85\xa1\x4d\x98\x6a\x6c\x5b\xaa\x47\xe5\x9d\x15\x84\x3e\xee\xbd\xef\xac\x2c\xd2\x04\x3b\x7a\x4e\x66\xb5\xcb\xd9\x60\x0f\x07\x10\x89\xb3\x52\x56\xf8\xd7\x1f\xcb\xd8\x7b\x46\x2c\xd7\xab\x2c\x26\x2c\xbd\x3a\x1e\x1f\xf8\xea\x58\x5d\x04\x88\xf4\x3b\x43\x7f\x4e\xa7\xeb\x3c\x06\x30\x47\x5c\x87\xe4\x2c\x9b\x0b\xcb\x04\x95\xa6\x3e\xe0\xec\xfa\x26\xe6\x95\x64\x94\x97\x32\x15\xa5\x44\x35\x5a\x21\x0d\x80\x64\x0f\x8a\x4f\xb1\x21\x35\x9d\x81\xf8\x7f\x6d\x9d\x59\x24\xc5\xe2\x92\xf4\x79\x55\xc1\x76\x8e\x49\x9a\x65\xd7\x37\x76\xbc\x33\x9c\xcb\xa0\x93\xaa\x1e\x17\xdb\x39\x90\xe9\x41\xcb\x2f\x30\xc1\x47\x4f\x3d\xff\x90\xba\x7c\x0f\x0e\xfa\xe8\x15\xdf\x0d\xe0\x42\x21\x69\xd3\x5c\xff\x74\x5e\x89\x8b\xf9\x94\x0a\x77\xdd\x8f\xdb\x75\x55\x0c\xf5\x9c\xce\xae\x1d\xd3\x75\x05\xae\xc6\x70\x9d\xa3\x0f\xbc\x97\x4b\xca\xd3\x33\x27\x3d\x72\x46\xfd\xe9\x1f\xd7\x77\xdc\xf5\xdd\xa4\xf1\x30\x14\x73\xfb\xf5\x4b\x67\xb3\x03\x17\x6f\x02\xba\xdd\xd4\x53\x57\x13\xc9\xe5\xa7\x31\x83\x38\xa0\xae\xae\x70\x26\x87\xaa\x62\xf0\x2e\x68\x00\x62\x57\x07\x33\x0d\xd5\xd6\x34\xfe\x0e\xfa\x55\x90\x9a\xf4\x69\x29\xe2\x1d\xf4\x6a\x60\x35\xe9\xd7\x25\x52\x77\xd0\xb5\x03\xae\x71\xef\x92\x72\xdd\x55\xdf\x02\xd8\xee\x9e\xc3\xb8\xf4\xa3\xfa\x0f\x82\xdc\x3d\x8a\x0a\x06\xfc\xa8\x01\x94\xa1\xed\xe9\xfb\xe3\x55\xae\x7b\xe0\x95\xfa\x27\x09\x06\x60\xb3\x21\xe2\x7f\x8e\xa2\x73\x7e\x6b\x45\xe7\xe7\x50\x70\xde\xc2\xdf\x59\xfb\x7a\x1f\xe0\xcd\xdc\x72\x75\x71\x4e\x76\xca\x3f\xa8\x5a\x74\xfd\xbb\x50\x8b\x66\x3b\xd4\xa2\xf9\x97\xaf\x16\x9d\x96\x1c\x6e\xa7\x5f\xa4\xc3\xed\xfc\xb7\x76\xb8\xf5\xc3\x06\xfc\x06\xda\xe3\xa5\xa7\x3d\x5e\xfe\x46\xc1\x57\x02\x7a\xc9\x19\x5c\xc1\x0b\x78\x09\xaf\xe1\x02\x9e\x27\xe3\x46\xfe\x7f\x13\x78\x56\xab\xcd\xa4\x21\x6d\xe6\x2c\x71\x13\x26\xff\xd1\xb4\x99\x99\xd5\x66\xce\x9b\x69\x33\x39\x5d\x25\x2a\x1d\x83\x34\x94\x31\x7f\xcb\xd5\x36\x3f\xe4\x92\x9b\x1f\x6a\xdd\xcd\x2f\xc7\x50\x26\xb9\xd9\xca\xe8\xdd\xe7\x19\x9e\x9e\xbe\x7e\xa1\x7e\x7a\xe6\xf5\xca\x85\xf0\x12\x31\x8e\xa7\x69\xf6\x5a\xd3\xaf\x24\x4a\xd7\x9c\x46\x02\x34\x65\xf8\x9f\x94\xf0\x50\x99\x8c\x97\xfb\x4e\x3d\xfd\xfd\x24\xc7\xe3\xe8\x58\x31\xa4\xff\x02\x3a\xd6\xe5\x1e\x1d\x2b\xde\xe3\xa2\x37\x8d\xe7\x87\xba\xe8\xb5\x0a\x43\xb8\xfe\x7a\x35\x4b\x39\x92\xbe\xca\xf1\x8d\xf1\x5a\xd3\x71\x30\x17\x6b\x3c\x93\x09\x24\x04\x28\x88\xf3\x57\x2b\x44\x94\x72\x4e\xd3\x95\xec\x5a\x7c\x92\xea\xc7\x63\x68\xa4\x34\xad\xbe\xb3\xaa\x9d\xce\x31\xd4\xfa\x9b\xe1\x0d\xb5\x10\xc4\x5f\x32\x29\xb7\x86\x2e\xd5\x5e\xaa\x48\xfe\xe9\x96\x29\xb5\xcf\xd0\x51\x3e\xb9\xa5\x85\x59\xf7\x50\x5b\x4b\x9a\xdf\x4e\xad\xed\x56\x3b\xdf\x39\x8e\x89\xa5\xdf\x9b\x4d\x43\x4f\x45\x54\xf6\x4e\xa4\xe4\x05\xc1\x5c\x2b\xf4\xd4\x0f\xd7\x7f\x69\x86\x67\x6f\xd0\x14\xe1\x4b\x74\xca\x79\x50\xd3\x52\xdd\xc3\x4a\x9b\xfd\xdb\xd9\x51\x2a\xe0\x33\x9a\xcd\x9e\xe9\xc5\x87\xcc\x7c\x35\xdb\xd1\xaa\xd4\x49\x18\x64\xdd\x6e\x07\x8d\x02\x36\xf4\xd0\x6d\x0b\x86\x1d\xd6\xed\x22\x13\x20\x32\x50\x11\x49\x0b\xae\x62\xe2\x57\x38\xcb\xb4\x8a\xba\xd1\xa4\xbd\xfa\x3b\x26\x6c\xec\x65\x55\x6e\xb3\xd3\xd7\x2f\xf4\xd2\x3b\x5f\x64\x32\x9a\x62\x24\xe2\xb4\xd5\xea\x33\x3d\x3d\xba\xb2\x1d\x37\xe8\xce\x39\xc6\xa5\x02\x75\x1b\xf4\x67\x4a\xc4\x8f\x6e\xb7\x73\x6c\xf4\xea\xea\x4b\xec\x37\x82\x08\xe8\x06\xde\xad\xd3\x17\xcb\xf3\x2a\x91\x77\xa0\x3a\x62\x43\xb5\xca\xe3\xee\x76\x3b\x35\x03\xd7\x4b\x53\x1e\x78\xb7\xdb\x89\xf5\x40\x9f\x8a\xae\xfc\xb1\xcb\x4f\xb5\x83\xf7\xd6\x2b\x36\xee\x45\x9a\x3f\xc0\x28\x8f\x6f\x96\x06\xd3\x0f\x25\x41\xb9\xf4\x7f\x72\xba\x52\x7f\x48\x43\x48\x45\x72\xa4\xc9\xa2\xfc\x53\x99\x37\xca\x3f\xb5\x25\xa3\xf4\x7e\xd1\x9b\xbe\x62\xe8\x12\xd3\x75\xfe\xb7\x32\xb9\xf1\x4a\xbf\xab\x92\x1c\xd5\x73\xed\xda\x4b\x3b\x70\x60\x43\x95\xde\xc2\xf5\xb7\x58\xe1\x1a\xdf\x5f\xe9\xb4\xcb\xd3\xf3\x17\x64\x86\x3e\x3c\xe9\x1d\x8b\x9f\x5a\xd7\xbc\x75\x1c\x6e\x04\x7a\xab\x3d\xaa\xe5\x6d\x1c\x15\x08\x53\xb2\xed\x06\xb3\xba\xe8\x87\xed\x72\x9c\x31\xde\x74\x65\xc0\xc6\xf6\x76\xb7\x25\x6f\xe1\xa5\x0b\xf9\x27\x59\x33\x3c\x8f\x51\xb7\xcb\xcd\x3b\x4e\xc5\x6c\x33\xa9\xf9\xbe\xd9\x34\x36\x41\x6e\x39\x39\xf4\x16\xde\x31\x8e\xaa\x9c\x4b\x04\xa3\x32\xa3\x13\xc1\xa8\xc2\xc5\x44\x30\xaa\x3f\x8a\x4e\x61\xf9\x14\x4b\xa1\xdf\x61\xad\x84\x58\x66\x57\x59\x19\xae\x2b\x59\x46\x4d\xc3\x6a\x0d\x4c\xfb\xcd\x86\xb8\xe9\x01\xb4\x77\x6a\x75\x79\x20\xf3\x33\x26\x49\x2c\xeb\xb8\xc6\x89\xa6\x58\x9c\x4a\x6b\x7d\xee\x57\x08\x21\xa6\x42\xa8\x73\xae\x7f\x88\xfb\x73\xd0\x41\x95\x6d\x84\x0e\xeb\x39\x2c\x1b\x6d\xcb\xac\x3a\xac\x2f\x8d\x6a\xbb\xdd\xd8\x1a\x76\xe8\x4f\x82\xeb\x95\x92\xba\xe0\x7e\x23\x27\xe5\xa2\x2d\x85\xd1\xea\x43\x04\x8c\xc1\x86\xd3\x52\x60\xa2\x51\x4c\x14\xb3\x5c\x6d\x2a\x8d\xcd\x65\x5b\x48\x5c\x26\xba\x02\x47\x96\x75\xbb\xb1\xf7\xdb\xd8\x89\x18\x2b\x92\x40\x7d\x03\xb5\xda\xb5\xb2\x6d\x37\x7d\x5b\x66\x3e\x30\x07\x89\x38\x95\xa6\x42\x72\xd2\x55\x58\xca\x34\xbe\x6e\x0d\x14\xb6\x95\x00\xb4\x34\x50\x85\xa0\xed\xe9\x35\x08\xd7\x6e\x48\xd7\x08\x5b\x0f\xf5\x04\x6d\x39\xb7\x19\xc2\x90\x10\xdd\xc7\x68\x52\x74\x3e\x46\x13\xd9\xb1\xb3\xd9\x63\x34\x71\x4a\xc1\x16\xc8\x2c\xd9\x86\x46\x71\xba\x02\x46\xb0\x1f\x4f\xac\xc4\x45\xdb\x58\x45\x93\x16\x43\x29\xcf\x70\x4c\x45\x27\x11\x59\x0b\xfe\xa5\x50\x4d\x15\xa5\x23\xac\xdc\xd4\x8a\x79\x53\xdf\xd6\xbf\xa8\xaa\x97\x60\xd8\xbc\x05\x00\xa0\x25\xc5\xf1\x53\x13\x10\x21\x36\x66\xe5\x58\xa7\xaf\x38\x89\x8a\xc0\x9d\x01\xb2\x4a\x4a\x34\x30\x40\xe5\x82\xf7\x6d\x37\xe1\x0c\xdc\x41\xe2\xb0\xae\x92\x8b\xa8\x7b\x99\xaa\x72\x15\xa5\xcf\xfe\xa3\x36\x08\x10\x60\x2b\x35\x78\xec\x8f\xe2\x24\xeb\xba\xad\x01\x70\xec\x00\x70\xaa\xd4\xbb\x44\x2a\x46\x36\xb7\x81\xf7\xed\xb8\x23\x58\x89\x55\x5e\xe6\x85\x7c\x04\xba\x9b\x17\xe5\x00\x16\x5e\x34\x67\x0b\xc4\x9f\x15\x18\xf9\x45\xf5\x9d\xdd\xd0\xde\x8f\x73\xe1\x91\x71\xab\xa4\x37\x90\xb4\x3a\x70\xca\xba\xdd\x5d\xa1\x47\x0b\x1d\xda\x38\x28\x0f\x45\x93\x6e\xb7\xb6\xc8\xa5\x35\x75\xf2\xd4\x15\x65\x17\x4b\x9a\xa1\x28\xe4\x58\x54\xe7\x51\xa4\xc4\x96\xf2\xd2\xc5\x60\x0b\xf3\x52\x92\x42\xdd\xa0\xd0\x97\x8e\xea\xda\x0e\x91\x7a\x4e\x5c\x7b\xcf\x89\x58\x7a\xd2\xac\x63\x06\x69\xf5\x39\x71\x95\xf8\x83\xbd\x48\x2a\xce\x2f\x97\x7b\x15\x8d\x69\x8d\x2b\x4a\x04\xe0\x75\xe2\x16\x2e\x92\x9b\xad\x87\x64\x2f\xc3\xe8\x75\x21\x70\xe5\xa5\x32\xce\x5c\xf8\xc6\x99\xee\x4f\xb8\x28\x1b\x67\x2e\x6a\x8d\x33\x17\x9b\xcd\xa2\x6c\x9c\xb9\xf0\x55\xe0\x8b\xe4\xa2\x81\x71\xa6\x97\x5e\x32\x9e\xc1\x95\x94\x23\xd0\x16\x2e\x00\xbc\x76\x8c\x33\x17\x25\xd3\xc9\x85\x36\xce\xf4\xbe\x8f\x16\x55\xe3\xcc\x6b\x6b\x9c\xb9\xd8\x6d\x9c\x59\xee\x21\xac\xdd\x14\x23\x5c\x88\xc9\x69\xe3\xcc\x24\x05\x60\xb3\xa1\xe2\x7f\xce\x5b\xd3\xd9\xbe\xb7\xa6\x83\x22\xe1\xfe\x06\xd9\x58\xbe\x7b\xf7\xf2\xfb\x6f\x52\x96\xf7\xcd\x40\xe3\x1b\x3c\x1b\x46\xcb\x3f\xe5\xc7\xe9\x5f\x7f\xc5\x11\x3c\xcf\xe8\xf4\xfd\xf0\xab\x1b\xfd\x06\x93\x47\xc3\x71\x64\x1d\xae\x9c\xbf\xfe\xac\x3b\xd1\x21\x25\xa2\x3f\xfb\x0c\x2c\x8c\xfe\x7c\xe9\x70\xb7\x7f\x5e\xba\x3f\x66\x98\x45\x30\xea\xa6\x4a\xc3\x11\xfd\xd9\x79\x2b\xeb\x6a\xb0\xb2\x0d\xbf\xc8\xde\xa5\x8b\x68\x02\xa3\x5c\x20\x74\xa9\x04\x88\x86\xe3\xf1\xd7\x30\xc2\xf3\x08\x8e\xc7\x0f\x1f\xc1\x3f\xc1\x71\xa4\x88\x50\x34\x99\x4c\x24\xaf\x00\x6f\x4a\xf5\x07\x30\x6a\xb7\xa3\x09\x1c\xff\x27\x8c\x66\xf8\x32\x82\x9c\xad\xd1\x04\x8e\x8f\x07\x30\x9a\xea\xf1\xef\x54\x01\x19\xd4\xd5\xa3\x0c\x2f\x30\x11\xa0\xfe\x6b\x02\x05\xdc\x5f\x7e\x91\xbf\xdc\x11\x7d\x0d\xc7\xb5\x23\x29\xea\x7d\x0d\xc7\x11\xbd\x44\x2c\x4b\xaf\xf7\x0c\x5c\xfd\xdf\x6d\x86\x6f\xe1\xab\xe1\xfe\xc9\x19\xf2\x44\x26\x38\x4e\x2f\x10\x47\x4c\x74\x35\xd9\xca\x11\xa8\xa9\x64\x88\xcb\x31\xfe\x17\x8c\x9c\x27\x50\xf5\xa1\x87\xac\xf7\x9d\xfc\x4d\x99\x9e\xf6\xf1\xb1\x98\xb7\x1a\xa1\x9a\xce\xc4\xfe\x33\x1e\x47\x5a\x6d\x2f\xc6\xb2\xbf\x5d\xd3\x05\xf9\x0f\x28\x20\x3c\x94\x00\xc6\xe3\xe3\x87\x30\xc2\xb3\x48\x7e\x1b\xc0\x71\x54\x88\xa9\x72\x85\x65\xb9\x5e\xaf\xf1\x43\x71\x6e\x76\xed\x79\x7b\xe7\x81\xe8\xa9\x5e\xfe\x43\x0d\xbd\x51\xdd\x7f\xd7\x75\x8b\xf1\x95\xc2\xb2\x88\x21\x8a\x95\xf1\x0f\xd2\x5e\xe8\x98\xf4\x56\xf2\xca\xe9\xc5\xb3\x5d\x3c\x92\xe7\xd0\x4c\xdc\x78\x32\xea\xbe\xd5\x4f\x5b\x2a\x6f\xa4\x28\xfb\x4f\x75\x78\xc7\xc7\x8f\xa0\x38\x32\x8f\xa4\x46\xb2\x87\x49\x8e\x18\xd7\xc3\x92\xcd\xa5\xdf\xa1\x82\x1e\xaa\x23\x56\x57\xf3\x80\x52\xb6\xb5\x02\x64\x7d\x13\x0b\xb6\xe2\x78\xb6\xbb\x4d\xe1\x28\x68\xeb\x5d\xe1\x2c\xeb\xcd\x8c\x42\xd1\xd6\xac\xf5\x6c\xdb\xd7\xd0\x71\x0d\x6c\xda\x47\xa4\x97\x7e\x3c\x91\x9b\x18\x38\xc7\xbf\xfc\x42\xda\x6d\xf7\x30\x1f\x7f\x0d\x8f\x07\xf6\x8a\x16\x25\xd5\xab\xba\xe3\x1e\x3f\x34\x17\x39\x70\xc1\x43\xc8\x88\x78\xf7\x59\xdf\x9b\xaa\x97\xac\x9a\x4b\xb4\x58\x8b\xfb\x15\x11\xf4\x81\xbf\xc5\xe7\x99\xca\x0e\x35\x8e\xfe\xef\x74\xcd\x72\xca\x86\x83\xff\x1b\x99\xce\xef\x11\xdf\x67\x40\x7c\xc7\xf7\x88\xef\x1e\xf1\xdd\x23\x3e\x59\x78\xbc\x03\xf1\xd5\x7c\x57\xd0\xd4\x18\xf6\xa0\x88\xc6\x1c\xe5\xb1\xb9\x89\xe2\x6c\xb9\xd7\xf0\x00\x6e\x53\x9e\xea\x25\xcd\x66\xd2\x2d\x56\xb6\xd3\x87\x38\x9a\xe1\x7c\x95\xa5\xd7\xc3\x36\xa1\x04\x9d\x34\xc3\x6f\xe2\xd3\x32\xcd\x9f\x5f\xa6\x59\x34\x9c\xa7\x59\x8e\xb6\x5f\xc1\x0b\xc4\xd3\xe1\xcd\x85\x14\x1f\x04\x7a\x1a\x7e\xb4\x38\xd3\x5f\x9e\xe7\xd1\xbe\x44\x85\x1f\xe1\x20\xfc\x05\x49\x4b\x57\x6f\x5f\xfd\x29\xfb\x79\x45\xf6\x49\x4b\x15\x19\xa9\x5e\x24\xaa\x48\x4f\xae\x4c\x64\x04\xa5\xa6\xc2\xd1\xad\xc8\xd8\x9f\x6e\x47\xc5\x02\xcd\xf6\xcb\x61\x55\xf2\xb5\x9f\x3c\x15\xe7\xc0\xa3\x15\xff\xbe\x8b\x56\xe8\x36\x01\x5a\x11\x22\x38\x7a\xc1\xc8\x34\x95\xb2\xf9\x1e\x90\x8a\x6c\x38\xc2\xde\x24\x0c\xfb\xd1\xad\x61\x3f\x0a\xc0\x36\x34\xee\xa1\x47\xe3\x18\x95\xd8\x41\xf9\x70\x45\xfa\x23\x4f\xcf\xa5\xe2\x5d\xaf\xd8\x9a\x64\x48\x2e\xb1\xa6\xdf\x91\xb5\xae\x17\xeb\x37\x28\x36\x5d\xd1\xc5\xe2\xed\x4e\xef\x8a\x69\x66\x5e\xec\x64\xb3\xc2\x7d\xdf\x34\xb4\x21\x83\x9b\xf0\x1a\x05\x37\xe1\x82\xf5\x61\xa1\x0f\xab\x94\xcc\x64\xbc\x19\x6f\x5d\xff\xc3\x15\xfc\x65\xce\x6f\x54\x9a\x83\x6c\x6e\x67\x19\x68\xee\xad\x40\x19\xc0\x23\xf8\x9f\x3b\x09\x5e\xd0\x5a\xdb\x52\x49\x19\xfc\xc1\x71\x71\xb4\xfc\x47\xd9\x93\xa0\xd4\x42\x3b\x06\xf9\xb5\x95\xfd\x7f\xa9\xe6\x7b\x74\x1d\x82\x6c\xac\xf6\x4b\xb5\xdd\xf0\xb2\x7e\x03\xc7\xd6\x3e\xd4\x46\x46\x93\x0d\xb4\x78\x4e\x66\x8d\x49\xbd\x26\xf2\xff\xe5\xd0\xf8\x8f\xa0\xee\x9f\x92\x96\xe9\xe3\xfc\x89\x68\xd9\x97\x44\xc3\xfe\xdf\xb3\xff\x9e\xce\x1e\x5c\xd4\xd0\xb0\x74\x85\x7d\x7a\x53\x28\xeb\xbc\x30\xc8\xe2\x83\x17\x70\x51\x7c\xd0\x97\xfb\xa9\x63\x3d\xff\x67\xbd\xb0\xc5\xb7\x10\xdd\xba\xc2\x7c\x69\xe8\xd2\x32\xcd\x97\x4a\x9a\x14\xe4\xc7\x62\x07\x68\xee\x3c\x2c\x6e\x2f\x74\x38\xee\x77\x86\x4a\x98\x14\xf9\x8a\x62\xa9\xe3\xeb\xbc\xf3\x78\x68\x2c\x54\x5e\xa0\x96\x50\xa9\x8b\x39\x42\xe5\x66\x40\x05\xe6\x2f\x91\x61\x4b\x3f\xff\x53\xd1\xaf\xda\xa8\x28\x05\x09\x76\x38\x82\x65\xad\xe1\x00\x8c\x0a\x1e\xc3\xd0\x6a\x86\xd2\x19\x25\x99\x8b\xbc\x8a\xb1\x4e\x7c\xb2\x15\xa8\x5b\x74\xb6\xbf\xae\x3f\x98\xfd\xf5\x2f\xab\xb0\x27\xfb\xd7\xec\x3f\x82\x6b\x36\xb5\x1b\x7e\xf0\x9a\x95\x8f\x70\xf9\x8c\xbb\x7c\x9b\xf7\x0e\x74\x8b\xa4\x26\x5f\xf8\xae\xfc\xbb\xc3\x74\x40\x7f\xd9\xb5\x58\xae\x48\xd4\x2d\x76\xb6\xb6\xae\xbb\xa4\xfb\x6b\x8b\x25\xdf\x5f\x4b\x6e\x49\x83\xa5\x51\x66\xe7\x7b\xeb\xa9\x2d\x6d\xb0\x2d\xa8\x21\x40\xef\x48\x38\x67\xbf\x9e\x7b\x76\xdf\x18\xea\x77\xb5\x4e\x73\xe4\x0a\xab\x92\x70\xfa\x7a\xa1\x9a\x77\x5d\xc9\x07\x3d\xd2\x62\xe6\xf1\xd7\x82\xed\xb4\x9c\xfb\xe4\x96\x62\xb3\xe5\x07\xca\xc0\x76\x8b\xb0\xbf\x05\x3f\x10\xe6\x03\x5a\x3b\xf9\x80\x7a\xc7\xae\x46\xc4\xdf\xf1\x5f\xd0\x4e\x5f\x85\xa3\x13\x4e\x48\xc8\xce\x83\x26\xa4\x6a\xcb\x91\x26\xa4\x6a\x65\x0f\xf3\x84\xec\x30\x23\x81\x6b\xa7\xb8\x6c\x30\x02\x33\x93\x2c\x6b\x95\x2e\xd0\xdf\x5f\xcd\xe7\x39\xe2\x70\xea\x7e\xfc\x59\x7f\x9c\x27\xa8\xbf\x40\xfc\x1b\xba\x26\x33\x4c\x16\x4f\x33\x8c\x08\x7f\xa3\x02\x9d\x2f\x93\xb9\x32\xab\x9a\x25\x73\x69\x9a\xb5\x4a\xe6\xda\x40\xe9\x22\x99\x1b\x43\xa3\xcb\x84\xd7\x42\xb8\x4e\x2e\x4d\xb5\x45\x72\xa9\xdb\x9e\x27\x65\x57\x63\xd1\x42\x4e\x7a\xb3\xd1\x43\xc4\x84\x98\x75\x38\x4b\x6e\xb6\xf0\x2a\x71\x83\x4f\xc3\xe7\xb5\xc9\xc0\xae\x40\xdf\xec\xe2\x49\xc4\x50\x26\xe3\x24\xcb\x60\xab\xdd\x6e\x94\x9e\xe7\x34\x5b\x73\xfb\xdb\x44\xcd\xbe\xaa\x8b\x89\x7d\x95\x5c\x1d\xdc\xad\x34\xea\xb0\x3d\x27\x49\xf2\x7c\xb3\x29\x7a\x16\xbf\x95\xf1\xc8\x87\xe4\xaa\x6e\xdd\x5a\xcb\x5e\xf2\x41\x2f\xbd\xf8\x4b\xac\xfd\x55\x9f\xca\x1d\x53\xc1\xb8\xbb\xdd\x78\xd9\x4b\xfc\x6f\x3a\xd4\xed\xf7\xba\x59\xb0\xf0\x1d\x5d\x81\xed\x22\x49\x47\xab\xe1\x02\xa6\xdd\x6e\x7c\xa6\x2d\xd1\x16\xca\xc8\xf2\x6d\xb2\x3c\xca\xe4\x0c\xa4\xfb\x47\x92\x24\x58\x8c\x7e\xcd\x69\x4f\x62\x69\xf1\x41\x0d\xff\x55\xf2\x32\xe5\xcb\xfe\x05\x26\xf1\x39\x5c\x1e\x2d\x40\x4f\xfd\x4e\x3f\xc4\x03\xb8\x04\xf0\xd4\x2f\x5f\xf9\xe5\x47\xab\xde\x02\xb4\x70\xb2\x78\xf2\xaa\xdb\x3d\x7d\xf2\x6a\xa4\xb1\xfb\x70\xf1\xe4\xb4\xdb\x7d\xf5\xe4\x74\xa4\xa8\xc2\x30\xdf\x6c\xd4\x5f\x2a\x38\xb3\x19\x59\x4f\x55\x2f\x86\xf3\x7e\xcf\x70\xde\x35\x1c\xce\xbb\x6e\xf7\xfd\x93\x77\xa6\xf7\xc5\x93\xf7\xdd\xee\xbb\x27\xef\xed\xf0\xc4\x70\xd4\x9f\xdb\xa8\x18\xc2\xe8\x4c\xdb\x06\x9e\xf7\xe2\xb7\x47\x2b\x30\x3c\xd3\x56\x8a\x53\x44\xb8\xb4\x63\x4b\xf0\xe8\xed\x51\x2c\x7a\x79\xf0\x70\xf8\x56\x2e\xf5\xd3\x64\x56\x39\x2a\x75\xc7\xcb\xbb\x30\xc0\xb1\x81\xbd\xfe\x9b\x10\x2d\xe2\xa8\x88\x38\xb8\xd9\xc4\x4f\x8f\x92\x29\x80\x51\x7a\x4e\x15\x54\x0a\xce\xa4\xbd\xe5\xd3\xde\x75\xcb\xae\xe2\x39\xca\xe8\x95\x57\x7a\x74\x21\x4b\xe5\x72\xbe\x14\x3f\x8f\xae\x1f\x4f\x8f\xdc\x0b\xf9\x9d\xba\xca\x6f\x92\xd9\x93\xeb\x16\x4d\x0a\x18\xeb\x6e\xb7\xf3\xb2\xdb\x7d\x33\xd2\x9d\x0e\x8b\xce\x45\xd1\x9b\x6e\xf7\xe5\x48\xd7\x1e\xae\x37\x9b\xb8\xf8\xa5\x2b\x02\x68\x06\xe1\x8e\x6c\x74\x31\xec\x5d\x1b\x73\xbb\x9b\x2a\x3a\x1d\x62\x58\x46\xa6\x43\x0a\xa5\x02\x76\x78\xe6\xb8\x77\xb2\x02\x3f\x4b\xdc\x2c\xd1\x70\x00\x3b\xa7\x21\xec\x9c\x27\x37\x5b\xef\x46\x50\x05\x65\x5d\x8f\x39\x5b\xb8\x1e\x27\xca\xbd\x0f\xe1\xe7\xa3\x0a\xea\x6b\xe5\x21\xc7\xac\xb5\x3c\x5b\x47\x58\x5d\xdc\x27\x99\x3d\x9b\xe5\x7b\x52\x1c\x3e\x3d\xe2\x69\xfd\x88\x35\x6a\x9e\xd7\x8f\x5b\xd5\x68\xe5\xca\x58\x32\xb9\x91\x8e\x01\xf1\xb4\x37\x07\x0f\x1e\x6e\xeb\x2e\xa7\xee\x78\xb9\x83\xc8\xcc\x76\x2c\x55\x70\xfe\x4b\x75\xd7\x9e\xcc\xd4\x88\x42\xd3\x2f\xae\x26\xed\x76\xe3\x20\x14\x5d\xc5\x98\x08\x16\xe7\x35\x1d\xc5\x79\xd5\x53\x2e\x85\x58\x60\xc2\x7a\x4a\x67\xd7\x85\xd3\xd5\xb0\x87\x35\xd5\xdb\x82\x61\x00\x98\x3e\xe1\x30\xff\x18\xef\x4d\xc7\x7a\x8b\x40\x0c\xa9\xb5\xe0\xa2\xa5\xcc\x3a\x4c\x3b\xe8\x68\x0b\xac\xc2\x45\x67\xc8\xeb\x4a\xb6\x10\x15\x86\xeb\x3f\x69\x83\x9a\x59\xe1\xc7\xe1\x16\xeb\x6e\x0a\x5b\x55\x88\xca\x99\x23\x92\xaa\x59\x67\x7d\x2e\x4f\xc8\x12\x8f\x5a\x72\x4b\x58\x21\x49\x1e\xc4\xe2\x7c\x6d\x14\x2d\x03\x0f\xe4\xb5\x9c\xe3\x0f\xd2\x46\xd2\xa9\x09\xca\x31\xce\x05\xda\x6c\x15\xac\x19\x3a\xc1\x09\xf6\x53\x0a\x9d\x00\x3c\x8f\xeb\xc7\x85\x01\x8c\x3b\x6c\xb3\x91\x4c\x32\x9e\x0a\xa6\xc1\xe9\xae\xdb\x25\x7d\x8e\x72\x1e\xf3\x3e\xbd\x44\x6c\x9e\xd1\xab\xa3\xe2\xcf\x9f\x9d\xbf\xff\x6e\x53\x5f\xdb\xd8\x74\xde\x20\xb7\xfb\x54\x57\xc1\x5c\xea\x9f\x4c\x57\x55\x4a\x93\x51\xd9\x48\x9c\xa0\x22\x65\x86\xb5\xe2\xc3\xa3\xc1\x10\xc3\xdc\x94\xfd\x0c\xd7\x45\x59\x3e\x1a\x0c\x73\x98\x99\xb2\x97\x82\xad\x9a\x16\xc5\xd9\x88\x0f\x25\xff\x31\x95\x3e\xa2\x37\xd3\x24\x49\x58\xb7\x1b\xa7\xff\x96\x10\xb8\xfe\xb7\x44\xfb\x82\xcc\x13\x1a\x83\x56\xfa\x6f\xc9\x5c\x7c\x9c\x1b\x0a\xa1\x86\x32\x4c\xa1\xea\x77\xb8\xde\x6e\xdd\x49\x7c\x8f\x09\x52\x24\x2c\xa1\xea\x7b\x29\x55\x48\xc9\xd7\xdd\x86\x11\x4c\x6e\xfc\x6c\x1f\xc3\x01\xf4\x73\x78\x98\x0f\x3f\x97\x6b\xfc\x5c\xd4\xd8\xca\x03\x78\xe2\xe4\xd2\x95\xde\x5a\x49\x92\xa0\x13\xc0\x12\xa4\x39\x34\x89\xf9\x7b\xc8\xe5\x8a\x21\xb1\xa5\x6a\xf8\xb6\x58\x13\x64\x5c\xca\x46\x72\x94\xf4\x90\xcb\x0d\xe2\x52\xca\x91\xa3\x84\x05\x2b\xfc\x1c\x00\xf0\x8e\xae\x6c\x71\xd1\x9e\x78\xe5\x45\xca\x5f\xc1\x26\x5b\x07\x7d\xb1\xf8\xe5\x84\x21\x49\x39\x4e\x86\x23\x32\x41\x9a\xf8\x79\x10\xdd\x50\xa8\x65\x37\xed\x27\x5f\x3b\x96\xa9\x85\x4b\xf6\xd7\x93\x91\xfb\x63\x38\x9e\xc8\x03\x93\x26\x37\xfa\x31\x6d\x48\x60\x31\xf1\xe1\x00\xda\x59\x88\x1d\x12\x55\x85\xdc\xe5\x6e\x05\x71\xb7\xa2\xa5\x28\x3f\xf1\xb7\x83\x78\xdb\xa1\x29\x7c\xf9\xcc\xf4\x88\xc7\xa0\xfb\xe7\x27\x0f\x94\xfe\x5c\x6d\x2a\x16\xbb\x74\xae\xd6\x6e\xa1\x9a\xc1\xb4\x16\x8d\x11\xd0\x8a\x96\x78\x36\x43\x44\x60\xb0\x69\x81\x96\xc4\x15\x73\x06\x90\xb8\xa3\x39\xe2\x90\x3f\xc9\xca\x99\x6c\x78\x2f\x29\x7f\x1b\xf2\xc7\x59\x39\x57\x8e\x53\xcd\x4e\x87\x27\x83\x9a\x71\xfc\xec\x8c\xe3\x1d\x5d\x25\xce\xd4\x8e\x18\x64\x66\x14\x76\xf6\x23\x66\xc1\x17\x2b\xc2\xcc\x28\x8a\xdc\x39\x4e\x35\x3b\x0a\x26\x46\x81\xe7\x31\xe9\x24\x09\xee\x76\x63\xbe\xd9\x30\x8b\x9d\xf5\xf1\x73\x85\x3f\xac\x02\xe7\x4e\x53\x1e\x8f\xd3\x49\xe1\x5c\xe0\x7d\xdd\xda\x63\x0d\xd3\x64\x70\x92\x3e\xa6\x26\xd4\x49\x7a\x74\x04\x62\x9c\x50\x51\xab\xaf\xcf\xa2\xbb\xe2\xd8\xbf\x8f\x7e\x0d\xb1\x16\xd8\xd9\x66\x88\xfa\xdf\xbf\xf8\xe1\xf9\xdb\xb3\xd7\xcf\xdf\x9c\xbd\x3e\xfd\xcb\xf3\x04\xf5\x9f\xbd\x7a\x79\xf6\xec\xf9\xf7\xef\x4e\xab\x1f\x44\x5d\xbf\xc6\x8b\xbf\x3f\xff\xde\x7f\x81\x18\xb4\xaa\x15\x78\xab\x02\xe5\x58\xfb\xe2\x3d\x6c\x55\x7a\x64\x2a\xf2\x77\xf2\xa8\x55\x19\x1d\xd1\x3e\x71\x64\x9d\x65\x6e\x5c\x70\xe5\x29\x8b\x2b\x9e\x8c\x3a\x3e\x9f\x5a\x83\x38\xc2\x73\x96\x5e\x20\xe9\xe9\x9f\xb3\x69\x12\xfd\x9f\x08\x22\xed\xed\xb4\x2a\xe2\x15\x18\xa6\xc1\x96\x5d\xe2\x1c\x9f\xe3\x0c\xf3\xeb\xc4\x9c\x36\x5b\xa6\xfd\xaf\x06\xab\x0f\xc5\x37\xe3\x52\xe5\x7d\x3c\xa7\x6c\x86\x58\xa2\xd2\x8b\x97\x82\xa4\xb9\x59\xfc\x10\xd0\x0b\xa9\x12\x56\x49\x84\x21\x2f\xa1\x69\xd2\xe2\xca\xed\x13\x40\x2e\x8d\xf4\x51\x1c\x3d\xee\xcc\xe8\x94\x5f\xaf\x50\x7b\xc9\x2f\xb2\x27\x8f\xf5\x7f\x51\x3a\x7b\xf2\xf8\x81\xfa\x47\xf4\xf3\xe4\x71\xbe\x4a\xc9\x93\xbf\x3f\x7e\x20\xff\x7d\xfc\x40\x7d\x7c\x20\xab\x47\x02\x9e\xf1\xdd\x11\x72\x87\x1c\xd9\x1c\xb3\xdc\xb0\x36\x72\x7c\x5a\x19\xa0\x09\x86\x3f\x0d\x37\x6f\x20\xb2\xde\x4d\xb8\xca\x8b\x4c\x33\x2c\xfe\xb7\x3a\xa7\x29\x9b\xb9\xaa\xb8\x29\x5d\x5d\xf7\xf4\x93\xb6\x17\xa8\x29\xd4\x2e\xa8\xcc\x73\x21\xf8\xc1\x94\xea\x94\x6e\xcc\xf1\x24\x29\x05\xe2\x91\xb1\x3b\xfa\x38\x57\x31\x3c\x10\x28\x68\x0c\x4f\x06\x90\x39\xf1\x3d\x90\x49\x42\x78\xc2\x1f\x9b\xbf\x4f\xf8\xd1\x11\x60\x63\x3e\x49\xd0\x98\x9b\x08\x1f\x6d\xb6\xdd\x4a\x82\x5d\xea\xaa\x14\x8a\xa9\x8d\x4d\xa8\x6e\x59\x39\x1a\xab\x38\x42\xed\x53\x43\x93\x26\x82\x53\xad\x84\xcf\xe1\x54\xa7\x7d\x51\x81\x73\x2c\x1a\x52\x13\x99\x33\x7a\x21\x36\xc6\xef\x1f\xdc\x04\x23\x68\xbc\x20\x97\x69\x86\x67\xed\x94\x8b\x75\xe6\x6d\x4e\xdb\xf9\x8a\xa1\x74\xd6\x26\x94\xf4\xe4\x38\xcf\xb3\x22\xa0\x4a\x04\xb6\xf1\x5d\x45\x91\x21\xc9\x38\xca\xd7\xd3\x29\x52\x5a\x6a\x31\x9e\x68\x02\x71\x52\x0a\x9a\xd1\x47\x1f\x38\x22\xb3\xf8\x46\x05\x8e\x19\xda\xa4\x63\x50\x6b\xe1\x86\xc6\x3a\x02\x4a\x8d\xb7\xf8\x94\x0f\xc7\x91\x3a\x22\x5c\x9c\x0f\x9b\xb0\xf8\x1b\x2c\x45\x31\x59\x6c\x0e\xd8\x3b\xf4\x81\x0f\xa5\x51\x84\xfd\x24\x43\x15\x46\xd0\xa9\x23\xe3\x72\x56\x6a\xc9\xaf\x6e\xbd\x53\xb9\xd6\xe5\x7a\xea\xc9\xd0\x5a\x71\x88\xd5\x97\xf1\xaf\x4a\x2f\x9d\x0c\xa7\xbd\x2c\x3d\x47\x59\x04\x23\x8e\x79\x86\xa2\x09\x74\x5a\xd8\x59\x3a\xee\x71\x82\xba\x0b\x02\xa5\xec\x08\xe4\xbb\xd6\xb0\x33\x80\x67\x0a\x21\x3e\x35\x23\x08\x67\xcc\xea\x7b\x4b\x00\xad\xe7\x75\x19\xe2\x28\xfa\x3f\xbe\x8f\xb7\x26\x36\x2f\x66\xda\x3d\x5d\xff\x36\x47\x5f\x9c\x30\xcd\x51\xd8\x11\xfc\xf5\x6d\xcc\xe1\x8d\x58\xd6\x61\x20\x94\x18\x1a\x21\xed\xf1\xb3\x05\x5b\x78\x66\x1d\xed\x74\x8c\x91\x9a\x74\xde\xb8\xe0\xe3\x5a\xa4\xea\x45\x45\xc0\x0d\xea\x8b\x7f\xa1\xef\x1c\xdf\xe1\x36\x92\x82\x5d\x8d\x31\x99\x78\x57\x65\xdb\x8a\x72\x79\xc3\xdc\x31\xf2\x7e\x8e\x88\xde\x62\x9b\x0a\x76\x8c\x6c\x9c\x1e\x26\x23\xf5\x0c\x91\x2f\x26\xcb\xaf\xdb\x2d\xf0\x66\x16\xdc\x19\x7f\x4f\xb4\xd3\xa1\xfd\xdd\xd7\x76\x2a\xb1\x17\xeb\xa5\xbc\xd3\xb1\x8e\x89\x52\x5e\x43\x21\x29\x97\x7d\x23\x2d\xe8\x08\x22\xb0\x85\x33\x3c\x7b\x21\x0d\x51\x4d\x16\xdd\xf2\xd0\xce\x64\xb0\xb1\x5d\xf1\x3b\xaa\xf3\x8b\x15\xe0\x1f\xa5\xef\xa6\x8c\x7b\x72\x67\x60\x9d\xd0\x22\x75\x23\x6e\xb0\x98\xfe\x13\x10\xde\x43\xc3\xb4\x04\xfd\x00\xe7\xce\xf5\xce\xd7\x2b\x41\xbf\xa4\x21\xd2\x27\x36\x02\x41\x7d\x9c\xdb\x45\x78\x6b\xfa\xf5\x39\x33\x75\xf5\xba\xdd\xea\x15\x1c\x55\x3f\xf5\x71\x6e\xc1\x54\x7d\x34\x3b\xc7\xdb\x56\x4d\x97\x5c\x33\x76\xda\x12\x45\xae\x4b\x5f\x2d\x4f\xcc\xdd\x25\x65\x7b\x96\x74\x2f\x79\xff\x82\x2c\x6b\x4e\x7f\xbc\x3e\xbe\x7c\xf5\xf3\x69\xd8\xb2\xc6\xda\xd4\x54\x0c\x60\x8e\xbf\x86\xc7\xfe\x2b\x68\xe3\x97\xcd\xc3\x16\xab\x91\x75\x93\x00\x29\xb8\x45\x17\x86\xf8\xdd\x53\x04\xb6\x8e\x23\x93\x4d\x82\x03\x70\x1b\xef\x64\xc6\x3e\x62\x93\xea\x98\x02\xcb\x03\x44\xb0\xc2\x1f\xe4\x4b\xba\xce\x66\xef\x50\xca\x9e\xd1\x2b\xf2\x4a\x46\x71\x12\xe4\x51\x8c\xd7\xa0\x0c\xdf\xd7\x37\xae\xba\x29\x07\x5d\xb6\x33\x4a\xdf\xaf\x57\x71\x94\x23\x76\x89\xa7\x68\xd8\x33\x1c\x72\x04\xfa\x02\xfa\x16\x40\x2c\x3a\x3b\x08\xd7\xd9\x9e\x34\x7e\x0e\x0d\x3f\x02\x1a\x95\x9d\x71\xfd\xfd\x3b\x94\x4a\x74\xe8\x7d\x18\x96\x49\x9e\x6c\x82\xf3\x6f\xd3\x9c\x9f\x53\xca\x63\x50\x91\xa1\xfc\x10\x2f\x5f\x89\xf3\x38\x26\xe9\x05\x4a\x4a\x47\xa0\xa7\x4c\x0d\x27\x5f\xed\x08\x10\xb3\xa3\x35\x22\x33\xd1\xb6\x08\x03\x53\x84\xfa\x44\x7d\xc7\xfb\xe8\x84\x75\xbb\xac\x93\x24\xfc\x04\xd8\x4e\x04\x00\x4f\xfa\x90\xc9\x87\xbd\x66\xad\xfa\xca\xc8\x89\x59\x5d\x29\xe4\x32\x60\x8f\xb3\x42\x81\x3c\x9c\x81\x18\x99\xc6\xc3\x5e\xd2\xf7\xba\x6b\xa6\x0f\x89\xbe\x27\x82\x37\xfc\xf4\x38\x4d\x27\x87\x54\x3d\xdb\xcb\xb2\x6b\x94\x7b\x6f\xf6\x17\x84\x87\x8f\xe8\x11\xbd\x7a\x77\x31\x0f\xe2\xe1\xa0\x4f\xb1\xef\x0c\xf7\xb5\x34\xe7\xb1\x48\xe0\xe3\x7d\xe0\x5c\xa7\x11\x71\xf6\x3d\x7f\x36\x71\x0f\x2a\x98\xd4\x5c\x23\xed\x3c\x62\xfc\xc6\x23\xd7\xf1\xe3\x58\x39\x9b\xc8\xea\x85\x09\x9c\x31\xf1\x69\xde\x95\xbc\x73\xbb\x3a\xda\xe7\x41\x77\x28\xc1\x6a\x74\xa0\x1a\xd3\x2a\xc5\x89\x9b\xd7\x8b\x07\xbd\x15\xc3\x97\x29\x47\x0f\x14\xeb\xeb\x17\x7f\xfa\x53\x1a\x08\x4c\x51\xa4\xad\xb2\xd1\x89\x63\x06\x8f\xc1\x78\x60\xd5\x01\x5e\xb2\x56\x9c\x8b\x73\x2d\xd3\xb5\x12\xd0\xed\xc6\x24\x21\x7d\x35\x0b\x00\x91\xf8\xb5\xd9\x44\x11\xd8\x6e\x5b\xa5\x0c\xe7\x01\xfd\x85\x8e\x1e\x57\xd1\x60\x18\xbd\x64\x6b\x8f\xce\x01\x04\x21\x2a\x7c\x3c\x9e\x40\x92\x74\x06\x10\x27\x9d\x63\x48\xcd\xf5\xe4\xec\xda\xe2\xec\x14\xe6\x09\x1a\x97\xe0\x4f\x62\x70\xd2\x89\x49\x12\xa7\x49\x2e\x51\x73\x0c\x40\x7f\x46\x09\x02\x32\x8a\x92\x0c\xae\x93\xaa\x50\x10\x00\x76\xf8\x66\xc3\xb4\x22\x45\x3e\xe1\x9c\x88\x2e\xc1\x89\xce\x98\xb1\x06\x37\x58\x0c\x81\x26\x6b\x9b\x25\x43\x0c\xa0\x43\xba\xdd\xbc\xaf\xc6\x5e\xfc\x15\x17\xa9\x34\xf0\x3c\xc6\x3a\x64\x28\xdd\x6e\xad\x4e\x46\x85\x10\x6e\xaa\x08\x91\x42\xc2\x7a\xca\xd7\x0c\xd5\x6a\x43\xb6\x71\x18\xa7\x96\x0e\xad\xf9\x77\x9a\x5e\xa0\x0c\xff\x13\xd5\x31\x59\x07\x9d\xf5\xbb\xe6\xb5\xcc\xe0\x5c\x4c\x2c\xe8\xab\xfd\x2e\xa3\xf4\xda\x68\x64\xde\x99\x36\x75\xdc\xeb\x1c\x92\x0d\xd8\x81\xcb\xb5\xc2\x3c\xfd\x82\x17\xcc\x0c\xaf\xba\x64\xb6\x64\xe7\xa2\x99\x5a\x77\xbc\x6c\x59\x9a\xe7\x78\x7e\xfd\x65\x2e\x9a\x1e\x5c\x65\xc9\xcc\xf7\x5d\x0b\xa6\xeb\xdc\xed\x72\xcd\xd2\x7c\x89\xd8\x97\x7a\xc8\xec\xe8\xca\x0b\x56\x14\xec\x58\x31\x5b\xe9\x6e\x97\x6c\xc9\x2f\xb2\x5e\x9e\xce\xbf\xcc\x25\x33\xd9\xd0\xcb\x2b\x66\xbf\xef\x58\x30\x53\xe7\x8e\xd7\x6b\x7d\x91\x92\xd2\x09\xbb\x5b\xfe\xc4\xf4\x90\xe0\x7b\xb6\xe1\x77\xc1\x36\x40\x96\x3c\x38\x3b\xda\xf4\x8e\x1e\x2c\x20\x49\xa2\xb6\xf3\x56\x85\x0b\x83\x19\x1e\x23\xcd\x49\xe2\x79\x5c\xc7\x45\x62\xb1\x46\x38\xc1\x96\x8b\x54\x71\x15\xb1\xde\xa6\x48\x67\x13\x49\x70\x9f\xd3\xef\xe9\x95\x31\x58\xee\x33\x24\x5d\x67\x65\xba\x55\xe7\x7d\x7a\x99\xb2\x53\x1e\x0f\x80\x6f\xde\x7c\x44\x75\x6c\xb0\x63\xb0\xdd\x7d\x35\xf0\x41\x57\x23\x13\x03\x9a\xa6\x79\x53\x54\xa2\x4c\x9a\x9c\x56\x77\x83\x75\x2a\x79\xa9\x6f\x71\x07\xed\xa0\xfc\x67\x2e\xb7\x20\x1e\x40\x27\xf1\x41\x81\x84\xf6\x60\x1b\x72\xd0\x92\xca\xd7\xa3\xe6\xf4\x4c\xad\x68\xd1\xe8\xcb\x59\x50\x33\xa6\xf2\x7a\xda\xef\x9f\x67\x39\x19\xbe\x38\x6c\x29\x65\x83\x2f\x68\x19\x19\xbe\xa8\x2c\xa1\xf8\xf6\x99\x96\x6f\x4d\xa6\x32\x6a\xe7\xa7\xa2\x7d\xa6\x07\x6d\x53\x72\x4f\xfb\xbe\x74\xda\x57\x32\xcb\xd0\xf1\xba\x63\x04\x1f\x01\x48\x12\x36\x1e\x4c\x20\x4e\xd8\xf8\x78\x62\x17\x51\xda\x89\x1e\x7f\x3d\x18\x62\x98\x26\x6c\xfc\x70\x02\xf3\xa2\x24\xdd\x6c\x52\xb8\x4e\xf2\x11\xed\x3d\x1a\xd2\x83\x75\x2e\xa4\xdb\x25\xc6\x4c\x70\x3d\xca\x47\xa4\x9f\xaf\xcf\x55\x61\x3c\x80\x6b\x70\x14\xf5\xfb\xfd\x68\x58\xfe\x3c\x24\x7b\xe8\xe0\x61\x2c\xe2\x9a\xcc\x10\xcb\xa7\x94\x7d\x99\x3c\x75\x31\xbc\x32\x57\xed\x94\xec\xe0\xab\x8b\x5a\x77\xcb\x59\xaf\x05\x87\x72\x30\xfb\xe0\xb4\xfa\x72\xd0\xb4\x1d\x54\x19\x57\x17\x05\x9f\x05\x61\x5f\xdd\xc2\xa1\xd1\xa4\xd1\xd5\x68\x85\x27\x08\xfa\x18\x96\x83\x11\x1f\x3a\x06\x4a\x1c\x00\xcd\x4f\x0e\x40\xff\x22\x5d\xf9\xa7\xe5\x6a\x77\xd8\x59\x64\xed\x51\xc0\x16\x8e\x27\xb7\xb2\x48\xba\x92\x8e\x09\xbb\x56\x8d\x37\x5a\xb5\x0a\x3f\xfa\xd9\x34\xd0\xe6\x0d\xaf\x62\xeb\x3c\x08\xda\x3a\x0f\x5c\x5b\xe7\xc1\x64\x18\x45\xd2\x21\x42\x1b\xba\xd8\x37\x2d\x14\x4e\xb5\xf4\xfc\xc3\x0a\x4d\x39\x9a\xb5\xd3\xb6\x6a\x01\xdb\x0b\xca\xdb\x69\x3b\x3a\x72\x32\xd9\x8d\x9c\x57\xb2\xa1\xa4\x96\x45\x1a\x3a\x5f\xf8\x30\xda\xed\x3f\x4c\x22\xc3\xe6\x67\x25\xc4\x9e\xdf\x1f\x95\xfa\xa3\x62\xe5\xd4\x07\xf1\x68\xf8\x3f\x9b\x5f\xf2\x4d\x6f\xf3\xcb\x03\xf0\xcb\xdb\x07\x0b\x18\x4c\xb5\xe7\xc9\xad\xdb\x7f\xe9\xa3\x56\x12\x5d\xee\x8f\x99\x7f\xcc\x18\xbe\xf8\x97\x46\x45\x41\xee\xe9\xfe\x90\x94\x70\x91\x8b\x4d\xfe\xf8\x67\x85\x5e\xac\xa8\xb4\x8f\x0d\x30\xc2\x19\xcd\xd7\x0c\x59\x8b\xe6\xdf\xc0\x24\xe4\xec\x2c\xa3\xe9\x0c\x31\xc8\x92\x9b\xd3\xa7\xef\x5e\xbc\xfa\x41\x65\x13\x6b\xe9\xe1\x2f\xf9\x45\x76\x9e\xb2\xfc\xc1\x7b\x74\x7d\x45\xd9\x2c\x2f\x0f\x1a\x93\x36\xd7\xb9\x3c\xd8\xf5\x88\x25\xe2\x87\xcc\xca\x1c\x37\x85\x00\x8c\xad\x03\xa3\x6b\x2e\xef\xd4\x41\x7d\x0a\x99\xbe\xda\x6b\x63\x58\x00\x68\xb9\x80\xf5\xd5\xfc\x1d\xde\x9f\x1c\xb6\x9b\x4a\xac\xb9\x58\x67\x1c\xf7\x52\xc1\x9a\x1f\x66\x45\xe1\xf3\xff\x9f\xd9\xbb\xe1\x6e\x4d\x38\x3c\xf6\xdf\x98\x4b\x69\xab\xc0\x8a\xfd\x39\x83\x24\xd9\xe7\x42\x52\x64\x2d\x66\x89\x74\xdc\x8c\xd9\xed\xbc\x31\x9a\x68\x54\xa4\x2b\x0f\xb1\xe2\x94\xaf\x00\x29\x0c\xbe\xe5\x16\xe7\x11\xc4\x52\xde\xaa\x5d\x85\x62\x16\x3a\x81\xe4\x69\x8c\xc0\x10\x6d\x41\xd5\x44\xd1\x98\x13\x81\xad\xca\x78\x93\x3f\xc3\xb3\xa7\xcb\x94\x2c\x90\x36\xac\xa4\x3a\x1e\x71\xac\x3b\xef\x8f\x27\x11\xac\x58\x45\x32\xa4\x97\x5a\x76\xfc\xdf\xe8\x3a\xd7\x56\xee\x62\xa5\xcb\x7d\xea\x59\x00\xeb\x29\x52\x2a\x12\xcd\x23\xd0\x32\x73\x79\x7e\xb1\xe2\xd7\x31\x31\x73\x29\x9d\x17\x7f\x1a\x42\x94\x1c\x36\xa9\x57\xb2\xf1\xff\x4c\xfe\x44\x2c\xc1\x1f\x73\x92\xf6\xfa\xf5\x00\x21\xef\xea\x39\xd6\x6f\xa4\x09\x0a\x1c\xda\x49\xbb\x91\xd2\x2a\x26\xb0\xaf\x61\x4f\x14\xc8\xeb\x77\xb9\xe6\x00\xa8\x5d\xde\x6c\xc6\x13\xe9\xc5\x26\x0e\x34\x03\x32\x50\xc7\x1c\x67\x1c\xb1\xc0\xf1\x96\x29\xcb\xb0\x93\xb2\x6c\x0b\x5a\xb4\xea\x37\xc2\x4b\xd7\x41\xdc\x1f\x04\x39\x54\xe9\x47\x01\xe4\x4d\x9b\x30\x99\x25\x4a\x34\x09\x5e\x44\x39\x03\x99\x93\x4f\x33\x15\x2c\x80\x98\xa2\xb3\x33\x85\x98\xad\x07\x8e\x9f\xc7\x17\x49\xdf\x92\xc3\x71\x3e\x41\x68\x26\x8a\xd3\xeb\x9c\xa7\xd3\xf7\x9f\xdf\x7a\xee\x23\x99\x40\xde\xda\x8d\xb8\xe5\x11\x2d\x1b\x77\x47\x6a\xd6\xf2\xe4\x46\x66\xea\xea\x17\x5d\x29\x86\xa6\x34\xbe\xea\xb9\x54\x20\x22\x00\x59\xa5\xc8\x40\x0c\x1e\x5a\xdd\x41\xc1\x56\x2a\x8f\x61\xb0\x15\xd2\x6d\x3a\x7b\x45\xb2\xeb\x58\x5c\xbe\x30\xc5\x91\x75\x93\x98\x25\x8f\xf6\xe2\x9a\x82\xf0\xf0\xc4\x77\x40\xd4\x0f\x1f\x9f\x88\x48\x7f\xf9\x2f\x20\x64\xb3\x51\xef\xe2\xe6\xf1\x63\xb3\x69\xfe\x0c\xb2\x15\xfb\xf5\x29\x29\xb8\x24\xe1\xe3\xc1\x44\xe0\xb0\xf1\xf1\x04\xa6\x09\x19\x3f\x2c\xd9\x8f\x1a\x6a\x96\x8a\x55\x49\x13\x2a\xea\xca\x9c\x56\x65\x04\xa3\x4f\x29\xc4\xd5\x22\x7b\x4a\x61\x5a\x2d\x34\xd7\x80\xee\x24\xf5\x4d\x49\xc4\x1e\xfa\x50\x28\x66\x5c\xcf\xbb\x26\xd8\xcc\xfc\xab\x1c\xaa\x83\x8a\xff\x5b\xb1\xbd\xf7\x9e\xc4\x9f\xdb\x93\xd8\x2e\xaa\x00\x6b\xd6\xaa\x4a\x15\x20\x77\x97\x4e\xe0\xd7\xc1\x09\x79\x8c\x4e\xc8\xd1\x11\xe0\x63\x32\x71\x28\x05\x99\xd8\x84\xba\x09\x17\xfc\x01\xa8\xe1\x76\x8b\x04\x9f\x08\x46\x82\x0a\x08\x7e\xc0\xbb\x6e\x86\x70\x54\x1d\x3a\x6d\x0c\x87\x32\x3d\x83\xc4\xf8\xa6\xf2\x4a\xb7\x65\x82\x42\x20\x02\xe5\xfb\x5d\xbc\x95\xf4\x39\x55\x3f\xc0\x70\xcc\x27\x76\x68\x31\x4a\xc4\x94\x54\xff\x7a\x60\x48\x3b\x99\x4e\xc0\xad\xc4\x22\x75\x8b\x12\x12\x96\xbb\x71\xe9\x51\x8f\x94\xfc\x25\x5b\xcd\x6f\xab\x98\xce\xe1\xa2\xe5\x47\x72\x0a\xe3\x12\x0e\x3d\x8d\x91\xc9\x71\x78\xbb\xd5\x12\xb3\xf0\x9e\x8e\xbc\xe7\xd0\xdb\xf8\x43\xd6\x2f\xd9\x74\xb9\x26\xef\x6f\x15\x5e\xb4\x31\x86\x2a\xf8\x85\x20\xb7\xd0\xf9\x54\x88\x46\x77\xdc\xfa\x63\xb3\x0d\x72\x1d\x3f\x21\xd7\x70\x9b\x13\x2c\x0f\x55\x82\xeb\x4e\xb0\x09\x74\x09\x89\xfa\x73\x8a\x70\xe6\x99\x26\x1a\x73\x17\x9c\xac\x52\x96\xa3\x17\x44\xda\x28\x0e\x84\xf4\xc5\x62\x0c\x07\x32\x96\x4d\x61\xae\x58\x20\x35\xc9\xb4\x38\x7c\x05\x8c\xd4\x66\x44\x00\xc0\x4e\xba\xd9\xd0\xc7\xc7\xfa\x54\x38\xf9\x9f\xf3\x64\x00\xd7\x49\xef\x18\x66\x0e\x09\x20\x71\xfa\x80\x02\x70\x92\x3f\x4e\x4f\x40\x36\x3e\x3a\x5a\x4f\x12\xae\xaf\x75\x0e\xf3\xa3\x84\x5a\xcc\x9a\x6d\x95\xed\xe3\x61\x82\xc2\xfa\x22\xd2\x62\x5a\x59\xce\x2d\x25\xf2\x75\x25\xba\x82\xbb\xc7\x71\x45\x6e\x58\x5f\x44\x00\x22\x25\x61\xd7\xa8\x95\xa4\x05\xcc\xc3\x92\x05\xcc\x4e\x65\x4e\x90\xc3\x93\x83\x27\x9f\x87\x83\x73\x10\x1b\x3d\x08\xb1\xd1\x8b\x55\x3a\x6d\xea\x54\x78\x8f\xda\xee\x51\xdb\x6d\xdf\x0d\x58\xdd\xcd\xdf\x75\x09\x03\xbe\x7b\xe6\x5c\x31\x30\x8a\x6b\xee\x22\xdb\x71\xe7\x8c\x5e\xf1\x34\x1e\xb3\x49\x71\x03\x4b\x98\xc7\x28\xaf\x0c\x44\xd3\xf5\x6b\x86\x72\x44\x78\x73\xed\xdc\x21\x17\xf7\x30\x8e\x44\x01\xb9\xd5\x0b\xc1\xe7\x97\x99\xc8\x67\x90\x5c\x0e\x11\x07\x7d\x8c\x74\xeb\xd1\x35\xbc\x40\x8e\x70\xf5\xf9\x65\xc6\xaa\x33\x03\x49\xc4\x52\x39\x6a\x0e\xeb\x4f\x60\xc9\xa6\x2f\x69\xf1\x98\xde\x8e\x47\xd7\x87\xb4\x8e\xc7\xa1\x35\x5e\x0b\xb7\x27\x66\x2a\x42\xe7\x2d\x15\x11\x75\xba\xd8\x7a\x08\xea\xed\x1e\x93\x69\xb6\x9e\xa1\x7c\x9f\x25\xa2\x7b\x0c\x0a\xea\xe9\x5b\x12\x1a\xe4\xc4\x25\x8f\x52\xe6\xf6\x74\x34\x98\x4e\x80\xa1\x2b\x3f\x19\x75\xbb\x05\x0a\x44\x05\x83\x37\x42\x01\x7b\x3e\xe6\xbe\x70\x93\x98\x41\x0e\xb6\xb0\x33\x00\x43\x35\xd0\x5b\x6e\xbd\xda\x8b\xfa\xbd\xf7\xc5\xd9\xdb\xef\xfa\x0c\x4d\xef\xd9\x97\x7b\xf6\xa5\x21\x81\xd8\xc1\xe0\x3b\x92\x92\x52\xef\x6a\x77\x2e\x02\x89\x5e\x6e\x81\x34\x7f\x58\x8b\x3a\x31\x06\xb0\x83\xf3\x1f\xd2\x1f\x62\x6c\x4f\x88\xb5\x63\x21\xd2\xb0\xfd\x18\x40\xdc\x23\xb7\x63\x9f\xa6\x32\x20\x77\x30\x58\x5f\xd8\x54\xfb\x50\xe3\x03\x7b\x7b\x18\x5d\xdd\x5f\x9f\xfb\xeb\xf3\x25\x72\xff\x87\x8b\xe0\x58\xb3\x32\x04\x6c\xa1\xfc\xfa\x74\x1f\x9f\x1e\xd4\x2d\xdc\x25\xa3\xae\x24\x89\xde\x79\x38\x08\x40\x2d\x4f\x91\xf7\xd0\x3f\xd6\x69\xd6\xfc\x29\xe4\xfe\x46\xde\xdf\xc8\xc3\xa2\xbe\x1e\x74\x23\xb9\x10\x1a\x94\x5b\x18\x57\x37\x92\x2b\xb7\x30\x5e\xbc\x8e\x96\xf8\x52\x6a\x99\x50\xf3\x45\x12\x54\x9a\x60\x88\x2d\x41\xad\xb9\xcb\xb4\x5a\x72\x7e\xfd\x3a\xe5\x4b\x47\xa3\x56\x14\xc9\xb9\x3a\x3a\xb8\xa0\xae\x4d\xb5\xaf\xc7\x04\x06\xbe\x81\xb6\x57\xd7\xa8\x1b\x84\x4c\x10\x14\x08\x50\x65\x29\x10\x00\x0d\xed\x9f\x8a\xa4\x3e\xa4\x65\xf6\xca\x2a\x20\x62\x06\x46\x01\x53\x54\xc7\xa4\xb5\xc0\x06\xcc\xd5\x81\x42\x04\x80\x63\xdb\x4a\x1c\x29\xa4\xe2\x30\x66\xde\xc6\x20\x73\x9b\x54\xc4\x10\x03\x77\xab\x9f\xa9\x76\x69\x52\xfa\x7f\x46\xe9\x74\xd9\x2f\x5e\xfc\x00\x24\xc6\x44\x6c\xf7\x8a\x48\xfb\x9c\x4f\xa2\x76\x39\x88\x5d\x52\xb3\xb9\x67\x98\xee\xd1\xf3\x1f\x83\x61\xaa\xc4\x22\x4e\xb3\xec\x5c\x5a\xa5\xec\x79\xb8\xd0\xf5\x76\xdc\x44\x0b\x69\x2f\x22\xb5\x55\xef\x08\x61\xf2\x9d\x38\x28\x82\xa8\x19\xca\xe1\x9f\x0c\xe5\x1c\xc8\x40\x92\x59\x89\x7d\xbc\xc7\x39\xf7\x38\xe7\x4b\xc1\x39\x81\x48\x01\xac\x62\x30\xf7\x25\xf1\x77\x8d\xf9\xba\x56\x19\x13\xdd\xa9\xe9\x7a\xf9\xa9\xbb\x8e\x3f\xaa\x61\x47\x6b\x2c\xb5\x77\x72\xa3\x25\xfb\x1b\x0e\xfa\x02\xb7\x7c\x23\x0d\x97\xc0\xf6\x20\xab\xf3\x4f\x87\xed\x32\x71\xfa\x6f\x97\xca\xf7\x1e\xdb\xfd\x6b\x60\xbb\xe0\x93\x5f\xc5\x67\x26\xf4\xd2\x11\x88\x5c\xc0\x62\x0e\x54\xf0\x82\x21\xba\x0d\x1e\xd5\x07\xb6\xa1\xbe\x76\x1f\x4e\x25\x75\xcf\xde\x15\x0c\x4a\x00\x64\x9f\x58\xcf\x75\x90\x64\xb4\x60\x74\xbd\xba\xe7\x53\xee\x6f\xee\xe7\xe0\x53\x9a\xda\x81\x05\x1c\x9a\x2a\x5a\x1b\x3d\x26\xf5\x08\x1c\x3b\xfe\xc6\x15\xf7\x22\x7b\x47\xdd\xa7\x55\xee\x3b\xc0\xb1\x42\xa1\x51\x68\xbd\x36\x9b\xd8\xd4\x39\x8d\x01\x64\xe3\xc2\xe6\x99\x80\x49\x22\x15\xd7\x72\xf7\xa5\x5d\x1a\xdb\xc2\x03\xb1\xc6\x5d\x49\x7f\x15\x16\xec\x33\x31\x5a\xa8\x11\x67\xd5\x94\x63\x62\xa0\x19\x07\x66\x1c\xc9\x7e\x73\xa5\xd2\x32\xcd\x7b\x44\x66\xba\x6a\xf4\x42\x60\xfe\x55\x4d\x3e\x83\x7d\x43\xf8\x2d\x42\x65\x01\x0d\x23\x75\xac\xac\x0a\x94\x42\xb0\x62\x30\xfe\x30\x68\x30\xfe\x70\xd2\xed\xba\xbf\xa0\x36\x11\x10\xd3\x04\x02\x1e\xc4\xe6\x72\x76\xe2\x01\x24\x85\xba\x92\x42\x04\xb1\xa3\x6c\x36\x4a\x52\x7a\x2b\x84\xb3\x4c\xf3\x1f\xd0\x07\xbe\xd3\x70\x81\xdd\x85\xe1\x82\xd8\xf6\x15\x43\x97\x98\xae\x9b\x9a\xac\x98\x7f\x8b\x66\x7f\xf8\xed\x37\x53\xfd\xcc\x47\xe0\xb5\xee\xf6\xd3\x1f\x03\x4c\xee\xed\x57\xee\x79\xa6\x2f\xd4\x7e\xe5\xe8\x56\xf6\x2b\x98\x7c\x36\xfb\x15\x4c\x38\x62\x39\x9a\x36\x25\x9e\x1f\xeb\x7d\x78\x57\x1c\x6c\xe8\xc1\xcd\xea\xab\xed\xa4\x6e\xad\x46\xc1\xe4\x92\xbe\xff\xa4\xd6\xc1\x75\x58\xe5\x77\xe3\x14\xf9\xe9\x44\x16\xb5\xf8\x75\x8e\x7c\x46\xee\x78\xf3\xf6\x6f\xaf\xfb\xa9\x9b\x58\xd9\xd7\x02\x04\x2d\x74\x61\x9a\xd0\xfe\x8a\xae\xe2\x1a\x8f\xc5\x14\x8c\xaa\xae\xfd\xbb\xc3\x8c\x70\x76\xfd\x42\x0e\x38\x96\xc9\xb2\x1d\xef\x4b\x81\x70\xb6\xd5\x04\x5c\x95\x76\xa9\x6a\xb7\x75\xdf\x7f\xcb\x71\x2f\x77\x27\x77\xac\x3f\xc8\xbf\x52\x7c\xaf\x0c\xbc\x27\x8f\x5f\xe4\xd3\xc7\x6e\x81\xdb\x1c\x31\x52\x50\xe1\x08\x46\xb5\x16\x2f\x52\x09\x20\x4e\xfb\x97\x64\xbc\x76\x91\xde\xab\xf4\xee\xef\xdf\xef\xf3\xfe\x7d\xc9\x0a\xaf\xcf\xf8\xb2\x28\x88\xff\x37\xd7\x8e\xed\xc3\x17\xf1\xcc\x77\x91\xde\x5b\x9d\xdf\x63\x95\x3f\x28\x56\x69\x6a\x44\xb5\x0f\xaf\xdc\xce\x84\xea\x33\xe3\x96\x2f\x0d\xb3\x1c\xa0\x48\x57\xfa\xcd\x05\xe2\x3d\x19\x8b\xee\x0e\x94\xa9\x87\x78\x00\xda\x24\xa5\xb7\x55\x90\x96\x23\xc2\x30\x88\xc4\x81\xa3\xde\x6b\x94\xf5\xfc\xeb\x1d\xb7\x04\xde\x2b\x6b\x88\x0c\xa2\xc4\x49\x92\xd0\x11\xb2\xde\xd1\x0c\xf4\x15\x06\x3c\xe5\x31\x3e\x3a\xbe\xd5\x8d\x14\x5b\xb1\x33\x9c\x0d\xab\x0f\x67\xd3\x7c\xc3\xd5\x30\x7b\xe9\x7d\x10\x83\x7b\x82\xd2\x4c\x8b\xaa\xb7\xac\xec\x45\x6b\xb7\xb8\x1c\x4f\xc5\x31\x98\xb2\x77\xe2\x76\x91\x6f\x4d\xf3\x83\xad\x45\xc2\xe1\x51\x0c\xda\x0a\xca\x81\x21\xf3\x7f\x89\xcc\x55\xab\x2a\x65\xd2\x6f\xe6\x77\x17\x1a\x45\x0f\x2f\x60\xd0\x57\xa6\x9d\x9f\x2d\x38\xca\x41\xba\x65\x15\x85\x2f\xcd\xee\x11\xcb\x3d\x62\x39\xf8\x79\xc6\xb5\xe1\x0a\xba\xea\xb0\x60\x88\xf9\xed\xad\xd0\x8a\x3e\xa8\x9f\xeb\xd1\x65\x85\x57\xa1\xd8\xf3\x4d\x1e\xae\xf1\x0a\x35\xe3\xb3\xfc\x60\xeb\x77\x9f\xe4\x29\xb8\x4c\xbc\x2f\x06\xd8\xb2\x7c\x49\xb7\x1b\x93\xb1\xfd\x35\x11\xa7\xb5\xf5\x29\xb4\xdc\x6a\x59\x0e\xf3\x0f\x5d\x31\x7a\x81\x73\x74\x80\x87\x28\x0b\x7b\x7b\x49\x5b\x49\xbe\x44\x24\x66\x60\xc8\xbc\x98\x21\x1f\x1d\x1f\xb8\x88\xfa\xe7\xdc\xc0\x22\xae\x4c\x25\xbe\x24\x71\xc2\xcc\x48\xcb\xaa\xc1\x09\x7e\xcc\x4f\xf0\xd1\x11\x20\x63\xec\xc6\x97\xc4\x93\xc2\x52\x2b\x60\xe8\x09\xb1\xbd\x53\x2a\x67\x1d\xf7\x63\x9a\x10\x39\x55\x19\xe9\x42\xbf\x8d\xde\xea\xe6\xa9\xa7\x9e\x6f\x75\xc7\xf2\xfe\x89\xbd\xac\xe7\x7a\xef\xf8\xdc\x1c\x66\x3e\xf2\x87\x14\x78\x76\x8a\x35\x6a\xef\x6b\xc4\x9a\xde\xed\xc4\x1a\xb3\xe8\x9f\x5e\xb4\xf9\xc7\x1a\xad\x3f\x39\x5e\xf8\x94\x37\x9c\xed\xbe\xe1\xcc\xdc\x70\x76\xf8\x0d\x67\x95\x1b\xce\x2a\x37\xdc\xad\xbe\x0f\xf7\x05\x38\xe7\x32\xbc\x2d\x18\x56\xbf\x29\xe7\x89\x8f\x42\x22\x72\x9b\x3f\x17\xed\x66\x82\x95\x3e\xe8\x4c\xc9\x18\x81\x0c\xe7\x15\x32\x7c\x1f\x8d\xe0\x9e\xff\xdd\x86\xac\x17\x74\xa8\x80\x60\x20\xf5\x34\x89\xce\x29\xcd\x50\x2a\x98\x61\x7d\xb6\xc5\x06\xbd\x9a\xcb\x70\xea\x69\x4b\x05\x1b\x1d\x4b\x7b\x26\xfc\x98\x02\xb3\xfe\xeb\x24\x1d\xf1\x7e\xc6\xd1\x50\xfc\x17\x66\x09\x3e\x59\xc7\x19\xa4\xe0\x24\x3b\x3a\x02\xb9\x5a\xeb\x4c\x92\x03\xfc\xa4\x68\x36\x95\xcd\x16\xb2\xd9\x82\xc3\x79\x82\x4f\xa6\xf1\x5c\x34\x9b\xf7\x7a\xa6\xd9\xbc\x08\x7d\x96\x24\x09\xed\x76\xd3\x6e\x57\x17\x51\x00\xf3\xdb\x5c\x6a\x79\xcf\x3e\x17\x1f\xa0\xd0\xe3\xbd\x9c\x7a\x7f\x4f\xbf\xc4\x17\x95\x03\x5d\x44\x03\xcf\x27\x4d\xfc\x47\x31\xc1\x1c\xa7\xd9\xdf\x9a\xf8\x8a\x1e\xe2\xbe\x5e\x02\x5c\x79\x8a\xa9\x49\x9c\x53\xbc\xc8\x04\x3c\x32\x3d\x90\x01\xaf\x77\x7e\x9b\x30\x21\x49\xd8\x41\x22\xac\x16\x74\x5d\x58\x8c\xe6\xcf\x70\x59\x5c\xba\x83\x36\xf2\x91\x27\x5f\x86\x8f\x3c\x43\xf2\x0d\xe0\x3e\xc8\xd2\x3d\xba\xfc\xa2\xd0\xe5\x7d\x90\xa5\x1a\x53\x99\x3f\x58\x90\xa5\x4e\xa3\x20\x4b\x9d\xdb\x44\x59\xf2\xe1\xfe\x8e\x83\x2c\x35\x4f\x50\xc2\xd0\x0a\xdd\x3f\xe7\xde\xa3\xe7\xbb\x70\x8a\xd1\x0f\x30\x44\x7a\xbd\x44\x9d\x92\xc4\x49\xc0\x68\x8c\x27\x43\x75\x3a\x94\x66\x47\x4c\x1a\xde\xa8\xe5\x1a\x92\x6d\x29\x6b\x91\x3d\x5f\x78\x7b\x2b\x1a\xa1\x8e\xf6\x67\xd3\xf5\xa0\x4b\xc4\x1a\xe7\x94\xbe\xbf\x49\xff\x8a\x37\xe9\xf7\x9b\xdd\x41\x6a\xf3\x4d\xae\xdd\xbe\x3e\xeb\x31\x00\xc3\x31\x9b\x7c\x31\x16\xf4\xf9\x72\x3d\x9f\x67\xf7\x57\xf0\xfe\x0a\x36\xb7\x4d\x42\x09\x2a\x72\x48\x5f\xaa\xf4\xcb\x5e\x90\x09\x27\xa0\xbf\xcc\xcf\xe4\xa7\xc1\xf7\x49\x1c\x07\xdd\x2e\xdf\x6c\x64\x0a\x29\x96\x92\x19\xbd\x38\xc1\x4f\x8e\x4f\x80\x4e\x30\x35\xcf\xa8\x00\x10\x83\x7f\xc3\xbd\x9e\x20\x9e\x68\x8c\x27\x50\xfc\x27\x41\x63\x26\xfe\x62\x93\x84\xd8\x87\x98\xdb\xa0\x0b\x7d\x05\xee\x34\x42\xce\xc3\x92\x76\xb9\x55\x76\x61\xa5\x35\x42\x50\x21\x37\xd5\x22\x18\x0a\x20\x8b\x29\xc4\x6e\xae\x18\x3a\xf9\x72\x22\xed\xc8\xa3\x71\x8f\x50\xee\x11\xca\x97\x48\xd3\x6f\x1d\x0e\x90\x9a\xd0\xed\x42\x0a\xfd\x62\xa8\x37\x65\x65\xad\xe2\xfd\x65\xbb\xbf\x6c\x5f\xc2\x65\xb3\xd9\x53\xc5\x7d\x53\x2e\xe1\x10\x27\x3c\x66\x1e\x5b\x1d\xd7\x33\x06\x18\x6c\x36\x65\xcd\xa1\xdc\xb4\x24\xe0\xd2\x52\x04\x9d\x2b\x97\x88\x2b\x22\x66\x9d\xef\xce\xbb\xb6\x85\xb6\x62\xfd\x7d\x76\x60\xed\x55\x0c\x16\x75\xab\x2e\x2f\x46\x25\xba\x57\xff\x07\x03\xfa\xbd\xdb\x04\xa3\xea\x8b\xd1\xb8\x9e\x30\xb7\x71\xa6\xf1\x60\xb8\xf3\xfb\x22\xfc\x6a\x78\x7a\xab\x78\x12\xf7\x78\xf0\x1e\x0f\x7e\x81\x2e\x7b\x26\x51\x8c\x34\xe1\xfa\x52\xb8\x0d\x4e\x17\x8b\xec\x96\x86\xd5\xaa\xed\x17\x6d\x5a\xad\x86\xf8\xf9\x8d\xab\xcd\xd2\xdc\xc7\xc2\xf9\x44\x5a\xf7\x00\xcb\xaf\xaf\xd7\x43\x10\x30\x0e\x2d\xd3\x73\xac\x8d\x78\xab\xb1\xdb\xcc\xab\x28\xed\x4b\x7b\xe5\x57\x73\x19\xde\x31\xf1\x49\x83\xea\xa0\x77\x9c\x24\x09\xdf\x6c\xf8\x91\xf8\x03\x8d\x06\x43\x7e\x74\xbc\x75\xde\xd8\x68\xa1\x33\x81\x1c\x54\x31\x04\x86\x04\x52\x99\x13\x36\x58\xd4\x41\xb7\xb3\xed\x54\x87\xef\x73\x29\xfc\xd7\xa4\x39\xe6\xf8\x5d\x44\xc2\x92\x13\xba\x35\x42\xbd\xc2\x7c\x49\xd7\xb7\x0d\x0d\xf6\xdb\xe4\x03\xfd\xa8\xec\x9e\xbc\x62\x28\xcd\x21\x09\xa0\xb1\x66\xe9\x47\xe5\xbb\xf4\x88\x0f\x79\x11\xac\x76\xeb\x78\x8a\x4b\x87\x48\xbd\xc4\x02\x23\xdd\xe6\x7a\xe8\xe6\x3b\x4d\xe9\xf9\xc7\x98\xd2\x6b\x47\x87\x83\x68\x69\xba\x5a\x21\x32\x6b\x54\x53\x33\xeb\xfb\x53\xd3\x2e\xd7\xe4\x7d\xa3\x8a\x26\x21\xfb\x01\x29\xa0\x0f\xc9\x8c\xdb\x30\x9f\x6a\xd3\xc4\x91\x07\xe5\xbf\x6b\x9e\x5e\xe9\x80\xac\x28\x07\xa4\x14\x38\x24\x88\xf9\x21\x51\x7b\x0f\x0d\xf5\xda\x30\x26\xe8\x41\xc1\x0f\x9b\x87\x04\x6c\x1a\x73\xad\x79\x74\xa8\x86\xe1\x5e\x3e\x3e\xa2\x71\xc0\xe5\xff\x10\x2f\xde\x03\x1d\x1b\x3f\xde\x9b\xb1\xea\xa6\xd5\xd8\xe7\xa7\xb1\x23\x47\x73\xe3\xf0\x83\xcc\x28\x9b\x5b\xe9\x1c\x60\x86\x70\xc0\x73\x69\xe3\x67\x90\x03\x94\xb8\x4d\x95\x1c\x07\x4b\x6a\x77\x21\x9e\x95\x58\xb8\xe6\xcc\x4d\x35\x2c\x33\xc4\x90\xc2\x14\xe6\x70\x0d\x33\x38\x85\x73\xb8\x84\x33\xb8\x82\x17\xf0\x12\x5e\xc3\x05\x3c\x87\x67\xf0\x0a\x3e\x87\x1f\xe0\x5b\xf8\x0a\x9e\xc2\xf7\xf0\x1d\x7c\x0a\x5f\xc2\x37\xf0\x35\xfc\x15\x3e\x83\x3f\xc0\x17\xf0\x7b\xf8\x2d\xfc\x27\xfc\x0e\x7e\xf3\xb1\x4c\x5f\x6d\x83\x53\x49\x64\xbf\xd3\x3c\xd5\x0d\x22\xeb\x0b\x25\x73\x0c\x3b\x03\xb8\x40\x3c\x10\x77\xd2\x32\x02\xdb\x9d\x80\x05\x4d\x3e\x08\x2e\x6b\x04\xf7\xa9\x20\xe1\x07\xc1\x25\xcd\xe0\x2a\x8a\x7f\x10\x64\xdc\x18\xf2\x9a\xa3\x83\x20\xd3\x86\x90\x15\x3f\x71\x10\xe8\xb4\x11\xe8\x67\x68\x7a\x10\xd4\xbc\x19\x54\x46\x57\x07\x81\x5d\x37\x02\xfb\xad\xe4\x57\xbe\x39\xec\xb8\x65\x07\x80\x3e\x08\xf0\xb4\x21\x60\x32\x3b\x70\xc4\xf3\x66\x80\x15\x9f\x75\x10\xe4\x65\x23\xc8\x7f\x11\x6c\xd9\x81\x63\x9e\x35\x82\xfc\x9d\x0a\xf6\x7f\x10\xe4\x55\x53\xc8\x26\x86\xfc\x41\xd0\x2f\x1a\x41\x7f\x41\x0e\xbb\x25\x97\x0d\xa1\x6a\x7e\xf2\x20\xd8\xd7\x0d\x61\x0b\xf6\xf3\x20\xc0\x8b\x46\x80\xff\x4a\xf1\x61\x67\xee\xbc\x11\xd8\x97\xe9\xa1\x27\xee\xac\x29\xdc\x83\xa0\x5e\x35\x82\x7a\xf0\x21\x7e\xde\x08\xec\x2b\xed\x2b\x7f\x10\xe8\x0f\xcd\x40\x6b\xb6\xfc\x20\xd0\x6f\x1b\x81\x7e\x8d\x57\xe8\x54\xb6\x3c\x08\xf8\xab\xc6\xc0\x0f\x02\x7b\xda\x0c\xec\x6d\x70\xc5\xfb\x46\xa0\xff\x3f\x21\x51\x1c\x04\xf7\x5d\x23\xb8\x6f\x84\x00\x72\x10\xdc\xa7\x0e\xdc\x7a\x56\xf2\x8d\x94\x57\x0e\x02\xfc\xb2\xd9\x80\xa5\x78\x73\xe0\xad\x7e\xd3\x10\xb4\x10\x86\x0e\x02\xfc\xba\x21\x60\x29\x3b\x1d\x04\xf9\xd7\x46\x90\xdf\x2a\x51\xeb\x20\xc8\xcf\x9a\x41\x16\x92\xd9\x41\x70\x7f\x68\x06\x97\xb2\x43\x77\xef\x45\x23\xc0\xef\xd2\x03\x29\xd3\xf7\xcd\xc0\x4a\xa1\xef\x16\x98\xe8\xdb\x03\xc0\x1f\x04\xf8\x9f\x8d\x00\xff\x48\x0e\x1d\xf0\x77\x8d\xe0\xfe\xa4\x24\xd6\x83\x20\x7f\xe3\x40\x6e\xa2\xef\xad\x84\xac\x68\xf6\xec\x77\x0b\xd5\x75\xc6\x51\xf0\x25\xaa\x8d\x1e\x27\x7c\x2b\x2b\xd4\x95\xcb\xe2\x45\x6d\xfb\x27\x89\xae\x50\x57\x2e\x97\xb9\xe1\x52\x38\xd1\x7e\xee\xdc\x35\xf6\x23\x9e\x80\x1c\xa8\x32\x91\x94\xd2\xf6\xb3\x16\x91\xc1\xf2\xcd\x03\x03\x52\x29\x6a\x03\xc9\x2b\x4a\x61\x5c\x24\x90\x2d\x00\x3a\x37\x93\xd3\xde\xbc\x1c\xda\xcc\x51\x6d\xfa\x24\x19\x8c\xe8\x90\xac\xb3\xec\x80\x75\xb4\xaf\x3a\x9f\xec\x40\x55\x97\xc6\x0d\x95\x25\xb3\xea\xc8\x11\x6c\x36\x32\x79\xa9\x14\xc0\xe1\xbe\x08\x3b\x4f\x8e\xff\x7f\xf6\xde\xb5\xbd\x6d\x1b\x6b\x14\xfd\xae\x5f\x21\xf3\xe9\x51\x89\x57\x30\x2d\xa7\xb3\xcf\xb3\x37\x1d\x56\x6f\x9a\xcb\x4c\xf6\xb4\x49\x77\x92\xce\x9c\xd9\xaa\xc6\xa5\x25\xc8\xc6\x84\x02\x34\x20\x68\xc7\xb5\xf8\xdf\xcf\x83\x2b\x01\x12\x94\xe4\xdc\x7a\x99\x7e\x49\x2c\x10\x77\x2c\x2c\xac\xfb\x9a\xb2\xe3\xd3\x54\xa6\xfe\x39\x75\x23\xed\x1c\x9f\x86\x63\xed\x98\x38\x59\x48\xfb\x76\x1f\xba\x3d\x06\x60\x3e\xe3\xf6\x38\x77\xe2\x3d\x43\x4a\x4d\xff\xf7\xeb\x97\x2f\x92\x52\x6a\xd6\xf1\xea\x36\x46\x20\xcb\xb2\x56\x19\x37\xfa\x2e\x5c\x3e\x15\x2b\xd4\x86\x34\x7e\x99\xf4\xcd\xbc\xd7\x6e\x29\x19\xf6\xe7\x85\x26\xed\x0c\xa7\x87\x6e\x1b\x04\x4a\x73\x04\xab\xf0\xef\x7e\xbd\xdf\xfa\x4c\x18\xaa\x7b\x62\x1d\x3d\xb7\x4f\x8f\x76\xfa\xe2\x41\x8d\x46\x1d\x53\x85\xf7\x8c\x8c\x75\x57\x07\xc2\x3f\xb6\x36\x55\xc6\x9e\x02\xa3\xd1\xae\x2a\xd2\x28\x4c\xda\x76\x84\x4e\x80\x2c\x2a\xc6\x10\x59\xdc\x9e\x1c\x5f\x54\xab\x15\x62\xc7\x1b\x5a\xe0\xc5\xa1\x36\xcb\xf7\xdd\xcb\x81\xc2\x46\x6d\x1c\x75\x86\x92\x7c\xc1\xf1\x35\x7a\x93\x97\x6f\x9f\x6b\x18\x32\xfb\xf5\x10\x25\xeb\xfc\xdd\xe3\x66\xaa\x67\xc6\xb0\x43\xc7\xbe\x5a\xfa\xad\xca\x2b\xbc\xe2\xb1\x0a\xec\xc6\xc1\x05\x43\xf9\xdb\x41\xb8\x7f\x69\x56\xc7\x41\x5d\x0f\x7c\xd3\x14\xf3\x52\xb6\xc6\x3d\x0e\x8f\xa7\x66\x79\xbc\x6b\x09\x35\x4a\x10\x91\x6d\xc5\xd7\xf2\x7b\xb9\xc5\xd9\x1d\x43\xff\xae\x30\x43\xe5\x0f\xe4\x82\x56\x64\x89\x96\xce\x60\x82\xa6\x29\x17\x57\x48\x6c\xa1\x67\xb7\x26\x83\x07\x0b\x72\x47\x30\xed\xdf\x23\xb6\xa2\x6c\xfd\x9a\xe7\xbc\x2a\x43\x11\x41\xc5\x7a\xbe\x9e\x4c\xa3\xb2\x5a\x2c\x10\x5a\x46\x69\xa4\x27\x12\xd5\x82\x48\x58\x32\xba\xf9\x3f\x76\x4d\x76\x62\x0b\x31\xf9\xe2\x15\xca\x4b\x4a\xd2\x08\xf3\xe1\x05\x2a\x28\xb9\x2c\x87\x9c\x0e\xf3\xe1\x97\xa2\xd5\x97\x43\xd1\x62\xc8\xaf\x72\x3e\xbc\xc9\xcb\x61\x5e\x30\x94\x2f\x6f\x87\xac\x22\x04\x93\xcb\xa8\x7f\xf2\x10\x25\xe5\x46\xd0\xf8\xde\x4e\x49\x1b\xbb\xc4\x1d\x18\x06\xb7\x1b\x4e\xc2\xe5\x7a\xa7\x3f\x68\x6b\xa4\x52\x5a\xee\x8b\x9a\xc7\x4b\x72\x49\x31\xb9\xbc\xcf\xd6\x30\x54\xf2\x9c\x71\x81\x9d\xda\x3b\x94\x6c\xd4\x8c\x62\x80\x96\xc3\xfc\x32\xc7\xa4\x67\x93\x0c\x70\x07\xe0\x09\xb2\x30\xd0\x0f\xb8\x04\x66\xfd\xf8\x72\xb8\xcf\xe4\xcc\xa1\x0c\x26\x90\x65\xba\xdc\xec\xe1\x19\x7f\x68\xfe\x3e\xe3\xe3\x31\x60\x33\x3e\xcf\xd0\x8c\xdb\x57\x9e\xd5\x61\xfb\x31\x06\x00\x34\x96\xa9\x99\xb1\x51\x92\x8e\x62\xeb\xfc\x9d\x44\x95\xf6\xb2\xf8\x57\x0b\x0c\x0e\x05\x0a\x0e\x95\xd1\xe5\xfb\x9f\xb2\xea\xee\xdc\x6a\x55\xed\x45\xf8\xa6\xe2\x7f\x45\x68\xf3\x6d\xce\x51\xc9\x0f\x3c\xef\xb7\xb6\xc1\xaf\xf4\x42\x1c\x9f\x82\x7a\x0f\xe2\x57\x63\xc8\x07\x55\x3f\xbb\xe6\x61\x0d\x3f\xbf\x4e\x53\x9e\x97\x6f\x8f\xed\xa3\x1f\xaa\x22\x9f\xe6\x4f\x60\x25\x7a\x95\x97\x57\x19\x4a\x58\xbe\x40\xe2\xaa\x14\xc5\x6b\xc4\x79\x81\x96\xea\x87\x6f\x25\xc7\xd0\x25\x22\xca\x7e\xf2\x55\x45\x38\x5e\x0b\xf0\x63\x6f\x63\x2a\xc8\xda\x52\x9b\x2d\xc9\x84\x7a\xdf\xab\xf5\xc3\x28\x2f\x8a\x08\xe6\xa0\x79\x18\xa8\x0b\x53\xdd\xfe\x6e\x98\xeb\xe7\xcf\xf5\xb3\x76\x06\xca\x1b\xcc\x17\x57\xb1\x4a\x44\x9b\xe9\x74\xc4\x77\x8b\xbc\x44\xc3\x49\xda\xd0\xcc\x17\xac\xda\xf0\x38\xd2\x0f\x3e\x44\x60\x20\xab\x9c\xa6\xe2\xbf\x08\x91\x65\xd4\x54\x2e\x39\xdd\xc4\xa0\xae\x21\x81\x02\x44\x40\xad\x56\xdc\xba\xf2\x93\x2c\xcb\xec\x85\x36\x0f\xda\xc0\x5c\x7b\x92\x4d\xce\x48\x73\xc9\xc7\x63\xcd\x43\xe5\x19\x9a\x11\x19\x3b\xef\x28\xdf\x6e\x8f\xf2\x19\x4b\x6e\x31\x2a\x96\x02\x38\x94\x25\xea\xdc\xa6\x7c\x10\x37\x5e\x45\xdb\x3b\x3a\x85\x55\x86\x3a\x79\x02\xb5\x85\xa7\x21\x8f\x4c\x8e\xf4\xbb\x15\x49\x29\xcc\xd9\x65\x99\xce\xd0\xbc\x06\xc9\xb9\x44\x99\x4d\x4e\xc2\xd3\xa3\x2c\x63\xc9\xb9\xa0\xf3\x0a\x24\x3a\x13\xb7\x1b\x8d\x46\x71\x99\x1d\x4d\x00\x64\x4d\x8a\xc1\x72\x8a\xe3\x0a\xa4\x55\x5f\x8a\x42\xa4\x4c\xe6\x6b\x20\xae\xb8\x03\x23\xee\x99\xcb\xb3\xd6\x1f\xc4\x91\x43\x0d\x54\x61\xb8\x10\x9f\x74\x2d\x09\x81\x7e\x4f\xa2\x28\x82\x81\x89\x68\x00\x7f\x8b\x6e\x4b\xc1\x55\xae\x5b\xc0\x62\xa6\x3b\xe3\x73\x69\x01\x6e\xa1\x2e\xf7\x82\x7b\xdb\xe2\xd2\xf0\xbd\x6d\xd3\x3c\xac\x76\x9d\x66\xe2\x4f\x98\xbb\xb9\x22\x97\x68\x85\x58\x0c\x06\x68\xc6\xe6\x31\x06\x2a\x6c\x69\x9e\x30\x54\xd2\xe2\x1a\x41\xf1\xd7\xbf\x64\xce\x50\xe7\x4c\x1d\x5a\xb6\xdc\x6e\xe5\xfe\x43\x1a\xcc\x6c\x2f\x8e\xa7\xb1\xf7\xa5\xab\x46\xdb\x3e\x35\xaf\x69\x0c\xd2\x90\xbf\x4c\x72\x7e\x8e\x16\xe7\x1a\x29\x9f\x8f\x46\xad\x82\x18\x08\xc6\xbc\x86\x45\x96\x27\x1a\x3b\x25\xda\x57\x21\xae\x2c\x20\x14\x7e\xa3\xac\x82\xc5\x3e\xac\x87\xc8\x22\xdf\x94\x55\x91\x73\xb4\x94\x78\xec\x9e\xc8\xee\x53\xf1\x18\xcd\x7d\x31\xde\x0b\xe7\xeb\xfc\x2d\x7a\xae\x0d\xc0\xd3\x0e\x7f\x21\xdf\x89\x4b\xc4\xe3\x48\x13\x18\x11\x68\x22\xdf\x6a\x82\x40\x06\x99\x13\xf5\xc4\xb5\x03\x35\xd4\x35\x95\x14\x23\x24\x19\x73\x96\x1d\x78\x0b\x3e\x2e\xaf\x29\xf6\x55\x49\xf5\x1e\x2b\xdf\x82\xac\x6d\x92\x62\x05\x3c\xca\x65\x9b\xd9\x84\xa6\xbe\x21\x36\xab\x48\x72\x81\xc9\x52\x45\x61\x71\x36\x0a\xaf\x62\xec\x73\x49\x1a\xfa\xf0\x8c\xcf\x1b\x62\xa8\xcb\xab\x35\xb4\x91\xb8\x4d\x93\xb3\xfc\x21\x3a\xcb\x25\x45\x94\xbb\xf2\x8f\x5c\xa2\x4c\x32\x1a\x11\xed\xa3\x73\xa7\x2e\x11\x33\xc9\x56\x15\xab\xd1\x58\xdd\x96\xd0\xd4\xb4\x06\xe3\x62\x2a\xfa\xb8\xf0\x2f\x45\xbf\x51\x60\x6c\x75\x19\x10\xec\xe2\x9e\x2b\xb4\xd1\xc7\x7b\xbc\xa6\x4b\xbc\xc2\x88\x95\xc7\x6b\xfc\x0e\xf7\x98\x90\x3b\x0d\x0d\x29\xc4\xc2\x9f\x7d\x4e\xf4\xe3\xd3\x0e\x66\xde\xdf\x99\x69\x6b\x72\x41\x46\xd8\x91\xe8\xf0\xb5\x99\x60\x47\xd2\x88\x05\x4f\x7d\x2e\x40\x56\x9a\x15\x7c\x9f\xf3\x2b\x0b\x9d\xca\xa0\xba\xfd\xd5\xc6\x86\x4d\xce\xed\xba\xeb\xb6\x4d\x92\x7d\x1c\xd5\xda\x15\xf5\x99\xa2\xe4\xdc\xfd\x0d\x7d\xa2\x59\x7c\xf6\x4b\x6a\x50\x0f\x42\xcb\xbb\xf3\xba\x49\x59\x80\x1b\x85\xad\xae\xd2\xd3\x93\x09\xf4\x57\x22\xb1\x05\x3c\xbf\xca\xcb\x1f\x4a\xb4\x34\xbd\xa7\x47\xa7\xb2\xec\x35\xe2\xdf\xb8\x83\xe8\xe2\xa7\x44\xd0\x0e\xcb\xa7\xd7\xe2\xa2\x88\x42\x87\x43\x0a\x19\x3d\x29\x5c\xc5\x7a\x39\x30\xf1\x94\xab\xc9\xef\x6a\xdd\x5d\x1f\xa8\xa1\xa0\xf1\x77\x35\x0a\x32\xc3\xa0\x86\x0d\x8d\xbf\xaf\x75\x80\x83\x00\x75\xfb\xd4\x02\xe4\x81\x44\xcd\xed\x8d\x15\x8f\xad\xfa\xe0\x77\x90\x21\x88\xe5\xa0\x40\x7e\xae\xa1\x34\x3b\xee\xef\xd6\x3b\xc3\x4e\x63\x24\x0e\x06\x2d\x43\xf6\x72\x66\x52\xde\x11\x9a\x59\xd5\x70\x89\x2e\xaa\xcb\xde\x76\xf2\xab\xad\x5c\xf7\xb8\x2b\x88\xe7\xbf\x0b\x3b\xa2\x19\x0a\xee\x47\xeb\x42\x64\x1c\x62\xc5\x40\xb5\xf7\x28\xcb\x4e\x4f\x26\x82\x26\xe9\x7c\x39\x05\xd0\xa1\xa4\x44\xf3\xbb\x3d\x68\xce\xc1\x56\x9f\x52\x28\x36\xb1\x41\x0a\x75\x07\xe6\xfd\x2f\xf2\xd2\xf0\xb9\x68\xa9\x2e\xa1\x28\x7a\x2d\xae\x91\x5b\xf0\x4a\x71\x9a\x4e\x0d\xc1\xf3\x96\xe5\xaa\x2a\x9a\xb2\xc7\x8a\xaa\x46\x4d\x89\xf4\xeb\x72\xfb\x79\x2c\xaf\x9e\x5b\xf2\x9c\x2c\xbc\x66\x9a\x7c\x78\x4c\x2b\xc2\xd3\x09\x94\xd2\xab\xbf\xe4\x64\x59\xa0\x67\x55\xb1\xc2\x85\x1e\xcf\x29\x57\xca\x73\x55\x8c\x09\xf6\x6e\x92\x02\x98\xb2\xda\x20\xe6\xd2\x2b\xf6\x79\x05\x9a\x74\xe9\x8a\x43\xb2\xd9\x5c\x7d\x0b\xf0\xbf\xd9\x6c\x5e\x43\x85\x45\x1e\x15\x45\x40\xc0\x32\x9b\x0f\x64\xdb\x10\xef\x8d\x7a\x87\x84\x93\xde\x4f\x86\x66\xe0\x7a\xc2\x3b\x3a\x0e\xf3\xf1\x7d\x9f\x9c\x8e\x05\xbb\x50\xc3\x40\xcf\x69\xd7\x8c\xb7\xa1\x12\x68\xc6\xce\xe8\x43\x36\x26\x67\xe3\x31\x35\x9c\x1e\x9f\xd1\xf9\x20\x17\x6c\x8c\x86\xa4\xed\x36\x97\xb4\x58\xb2\x44\x0b\x86\xc4\xd6\x5b\xe0\x8d\x48\xb5\x56\xa8\x31\x02\x30\x37\x04\x3d\x02\x10\x8f\x46\xd8\xb8\x27\x8b\xb6\xa0\xe6\x7a\xdd\xb1\xd4\xa9\x85\xa5\x1e\x6d\xcf\x5a\x0f\xc2\x05\xfb\xab\xb6\x02\x93\xce\x3c\x5c\xc8\x8b\x0c\xf1\x18\xaa\xe8\x4e\xb8\x77\x5f\xe5\xc4\xcd\x68\xe7\xab\xa2\x2a\xaf\x64\xa3\x32\x06\x35\x74\x7f\xbb\xe0\xda\x50\x8b\x02\xfa\xb2\xc9\x19\x7f\xb8\x07\x22\xce\xc6\x63\x0e\x90\x16\x37\xf7\x54\x15\xd4\x9f\xdc\xc0\x41\x2f\xb0\x87\x35\x7b\xb3\x39\x64\xd9\x04\x12\xcb\xed\x9f\xb1\x87\xe2\x9c\x99\x21\x4b\x04\xc3\x37\x38\x3a\xb5\x9a\x01\xe5\x34\x19\xe1\xf2\x19\x26\xb8\xbc\x12\x3b\x34\x1a\x29\xf9\x61\x8c\x2d\x39\xca\xeb\xde\xa9\xea\xfd\x72\x11\x71\x62\x8e\x59\xbd\x2d\x83\x26\x83\x87\xba\xf1\x2a\x11\xcf\xde\x5d\xb2\xec\x6b\xef\x2e\xe1\xf9\x80\x7a\x20\x1b\x6b\xec\x21\x7e\xbb\x55\x63\x0a\x20\xcb\xa8\x24\xf7\x64\x20\x7e\x0d\x9e\xcc\x38\xbf\xf9\xd0\xa7\xfb\x73\xa2\x50\xf8\xdf\x5f\x19\x29\x1e\x6b\x16\xa7\x18\x82\x3d\x97\xf6\x6c\x3c\xce\xbd\xb3\x0f\x54\x9d\xe5\xe6\xec\xc5\xd9\x76\x13\xc2\x36\x8f\x51\xb4\x0f\xf9\x08\xb8\xed\xec\x45\x00\xf9\x29\xa2\x25\x53\xf7\x47\x3a\x55\xef\xbc\x41\xac\xe7\x8a\x99\x6d\x91\x4f\xb0\x16\xe3\x24\xe7\x94\x3c\x13\x1c\x3a\xfe\x19\x79\xa1\x2f\x7b\x06\xb1\x7d\x68\x69\x1d\xea\x88\x7e\x06\xce\x8e\xa8\xe3\x30\xaf\x98\xc4\x15\x02\xb4\xc9\xb4\x53\xa7\x79\xfd\x44\xad\x34\x7e\x10\xae\xa6\x9f\x3f\x59\xe7\x2b\x51\xc5\x03\x10\x3d\x9c\x7e\x11\xe5\x70\x9d\xaf\xcd\xeb\x28\x83\x77\xc0\x86\x19\xa5\x44\xc6\x43\xe7\x1e\x6e\x01\x92\xaf\xf2\x08\x22\x70\xc7\xc7\x63\xe7\xd2\xf4\x5f\x67\xaa\xae\x33\x4d\xce\x4b\x84\xc8\x73\xb2\x44\xef\x1e\xf2\xd1\x28\x76\x0b\x24\x55\x44\x05\x03\xe7\x93\x39\xae\x35\x40\xb3\xef\x12\x0a\xec\x59\xcb\x81\xa5\x30\x41\x52\x95\x11\x38\x23\x67\xa0\x59\x31\x81\xee\x89\x89\x07\xa9\xfd\x4d\x83\x8c\xb8\x47\x24\x23\x5e\x57\xf5\x6e\x3f\xdc\xb6\xa4\x45\xb5\xda\xc3\x4a\x2a\xf1\x72\xbf\xb8\xa6\xe4\xd2\x39\x59\x71\xa5\xf7\xe2\x61\xbb\x8e\x31\x7d\x0e\xb8\xd8\x09\x32\xe2\xcb\xc0\x00\x08\xba\xd0\x3f\xce\x09\xa1\x7c\xb8\xc8\x8b\x62\x98\x0f\x17\x45\x5e\x96\xc3\xbc\x1c\xe6\x56\x8e\x17\xbd\x97\x37\xec\x1b\x4b\xe8\xeb\xea\x99\x53\x66\x24\xe2\x6e\x51\x88\xda\xb4\xde\x2c\xf0\x0e\x97\xb6\x6a\x2a\x08\x79\x1d\x43\xa0\x4b\xf2\x47\x0f\x9b\x8a\xd1\x58\x21\x64\xb3\xaf\x2f\xf2\x35\x1a\x47\x5f\x47\x35\x3c\x6f\x20\xe7\x25\x7b\x61\x20\xa5\x95\x95\x34\x11\xfb\xe3\x82\x98\x87\x86\x70\x69\x68\xdc\x56\xab\x0b\x4a\x8b\x38\x0a\x8f\x20\xdb\xe9\xc1\x8e\x4e\x6b\x63\xe4\x13\xda\xaf\xee\x1e\xd9\x4f\xd4\x3e\xbf\x43\x14\x83\x3b\xc5\x44\x41\x04\x6a\x28\xf5\x5a\x3a\x2d\x58\x59\xe2\x4b\x02\x62\xda\x84\x5e\x80\xa4\xcb\x8f\xef\x11\xb8\xb5\x94\x2a\x87\x5c\x80\x8f\x2d\x8c\xfc\xfe\xe9\xab\x67\x2f\x5f\x7d\x77\xfe\xe6\x1f\xdf\x3f\x3d\xff\xf6\xf9\x8b\xbf\x3e\x7d\x92\xb5\x4a\x7f\x78\x11\x2e\x7f\xf2\xf4\xd9\xa3\x1f\xbe\x7d\xd3\x88\x54\x2e\x91\x79\x3d\xcd\x7b\x94\x05\xbc\x7b\x66\xb9\x55\x58\xcd\xa5\x42\x0e\x2f\x15\xd6\xcd\x4a\xd1\x07\xcd\x56\x50\x69\x59\xb2\xee\x63\xd6\xb1\xb0\x38\x0d\x5a\x58\x9c\xba\x16\x16\xa7\x8e\x85\xc5\xc1\xb9\xc7\xee\x97\x77\x6c\xa5\xa2\x6d\x48\x40\x21\x50\x66\x0b\xac\x75\xd4\x82\x48\x00\x98\x5a\x5f\x2e\x2f\xbc\xc4\xbb\xc1\x7d\x8c\x42\xa5\x11\xc4\xbd\xe7\x11\x05\x8b\x23\x48\xdb\x2d\x82\xf5\x4d\xed\x5c\xf0\x47\xae\xc2\xa1\x61\xd9\x47\x23\x94\x90\x7c\x8d\xb2\x2c\x63\xcd\x13\x53\x85\x22\x9e\xe8\x13\x1a\xb4\x45\x0a\xaf\xab\x8b\x72\xc1\xf0\x05\x5a\x0a\xae\x3e\xe6\x8e\x10\xfb\xdc\x98\xfe\x00\x30\x43\x73\xab\xd1\x6e\xb8\xc1\x5a\x6a\x9d\x8a\xec\xce\xc4\x44\xd1\x72\xa9\x25\x2e\x37\xb4\x44\xe6\x67\x8b\x86\x48\x27\x50\xdc\x2b\xf5\x51\x29\x9f\xe6\xd0\x9f\x8a\x14\x59\xb1\x8a\x7c\x4b\xa9\x44\x78\x4a\x86\xd1\x2b\xc8\xf2\x34\xc3\x6a\x4c\xcd\x9d\x08\x54\x9f\x12\x78\x8e\xde\x6d\xd0\x82\x97\xdf\x62\xf2\x16\x2d\xff\x81\x51\x21\x87\x50\x17\x4d\x36\x40\xe2\x3d\xd0\x4c\x71\xe9\x70\xeb\x47\xa7\x10\x97\xf2\xb1\x50\x7f\x5a\x8e\xbc\x85\xf6\x72\xb2\x8c\x23\xf3\x59\xa1\x4b\x97\xac\x87\xce\x27\xd1\x51\x43\x37\xab\x6e\x4d\x4d\xf5\xab\x07\xb5\x12\xca\x63\xbf\x57\xf9\xa6\x76\xb3\x49\x97\x4f\x18\xdd\x6c\xc4\xdb\xdf\x9a\x52\x33\xac\x3f\xbf\x9d\x79\x65\x74\xa6\x1b\xdb\x29\x98\x4a\xf3\x0c\xf1\x67\xda\xad\xd5\x0c\x07\xa6\x5a\xc1\x1f\xae\xd8\x2c\x63\x1a\xad\xcc\xdf\x9d\x7a\xce\x8c\xc1\x34\x32\x1a\xfc\x34\xba\xc9\x31\x17\x7f\xd5\x62\x6b\xf5\xcc\x02\x1b\xd1\xb7\xf8\x43\xd6\xeb\xac\x64\x34\x3a\xda\x35\xb1\x1a\xc0\x73\x69\x9e\x9a\x9e\x6a\x9a\xbf\x4f\x18\xe7\xf2\x4b\x8a\xb1\x6e\x86\x99\x8a\x82\xb4\x13\xcc\xd6\x9d\xf6\xd1\xc4\x70\xc8\x86\xcb\xfb\x9e\xd1\x05\x42\xcb\x98\x27\xff\x78\xfe\xf4\xdb\x27\x8f\xbe\xf9\xf6\xe9\xf9\xe3\x97\x2f\xde\x3c\x7f\xf1\xc3\x53\x93\xcb\x50\x37\xe1\x0c\x5f\x5e\x22\x26\xaf\x4d\x1c\x95\xa6\xcf\x46\x04\x09\xea\x20\x65\x21\x39\x6c\x23\xc9\xc8\x22\x4d\x56\x28\x6e\x45\x2b\x31\x24\x99\x1c\x35\x66\x35\x11\x8c\x51\x86\x6d\x50\x6f\xc8\xb3\xe3\x53\x30\x8e\xc9\x76\x1b\x45\x60\x6c\x22\x1e\xf2\x31\x03\x46\x30\xd4\x55\xa6\xbd\xa7\xb1\x5e\x64\x75\x9c\xd2\xf6\x03\xbd\xdb\x14\x78\x81\x79\x71\x2b\x89\x3c\xb4\x8c\x94\x35\x5a\x6b\xef\x03\x07\xec\x42\x68\x57\x4e\xe2\x81\x96\x09\x78\xd5\x4d\x6d\x22\x65\x22\x1e\x05\x16\x81\xed\x36\x7a\x58\x91\xb7\x84\xde\x90\xaf\xa3\x41\x37\x69\x56\x83\xcb\x22\x18\xb9\xcc\xe3\xf0\xcb\x68\xcc\xc6\xd1\x97\x72\x61\xe6\x6a\x0d\x2f\xd0\x22\x17\x34\x46\x34\x46\xe3\x28\x19\x3e\xa3\x6c\xb8\xa6\x4c\x50\xbf\xe2\x2c\xe4\x9b\x06\x87\x25\x42\xe9\xf0\x8a\xf3\x4d\x7a\x72\xd2\xa1\x5c\xc4\x8d\x39\x59\xd2\x45\x79\x22\xe9\x9d\x45\xf3\x18\x4a\x8d\xa3\x11\xdb\x34\x80\x38\xb5\x84\xa5\x80\xbd\xd7\x94\x12\x1f\xfe\x1e\xbd\x78\xfc\xf4\x5b\x28\x90\x29\x48\xb5\x40\xc7\x70\xa1\x12\xc3\x7e\x05\xea\x5a\xe0\xf4\x95\x7d\x22\xf4\x4b\xd3\xbe\xc1\xfd\x22\xed\x15\x62\x01\x95\xba\x95\xd2\xdf\x5e\xa0\x57\x4a\x7f\xf4\xc4\xfb\x22\xeb\x19\xed\xb5\xb8\xb6\x9d\xaa\x5d\x71\xa8\x6c\x33\x1a\xa9\x1f\x5d\x53\x08\x19\xaf\x2a\xf4\x6d\xea\x0e\xa9\xb5\x59\x4a\xf0\xa0\xf4\x8d\xa9\xff\x5d\x46\x12\x93\x45\xf2\x2d\x02\xe2\x36\x5e\x21\x92\x56\x71\x24\xfe\x8f\x00\x94\xf6\xa3\xe2\xb7\xfc\x23\x02\x50\x6b\xdf\x45\x91\xfe\x33\x02\xd0\xee\x75\xea\x13\xa2\x3a\x7a\x9b\x20\x57\x94\x60\x4b\xa1\xac\xf1\x18\x76\x2f\x43\x4c\xb2\xaf\x20\x96\xe6\xe7\x8a\x51\xea\x58\x40\x01\x18\x3b\xda\x05\x63\x45\xfd\xf4\xc5\xdf\x92\x27\x4f\xbf\xf9\xe1\xcf\xe7\x6f\x1e\xbd\xfe\xeb\x6b\x30\x1a\x2d\x28\x29\x69\x81\x92\x82\x5e\x86\x3a\xc1\x8a\x7c\x61\x10\x4b\x84\x62\xc9\x52\x85\x94\xda\x77\xa3\xbd\xc3\xc1\x38\xa6\xe7\x0c\x95\x55\x21\x93\xe0\x68\x79\x44\x07\xa5\xba\x2f\xbc\x42\xaa\xbd\x39\x92\x40\xfa\xa0\xaf\x0f\xb9\x33\xe1\xe6\x48\x7d\x12\xcd\xbb\x82\x0c\xbf\x46\x37\xfd\x9d\xf3\x2c\x37\xf8\x5e\x93\x54\x16\x90\x59\x65\x25\x3b\x8f\x75\x82\xba\x32\x76\x2b\x0b\x10\x31\x35\x14\xa5\xa4\x24\xa9\xed\x46\xfa\x02\x36\x82\x22\xdf\x28\xce\xbb\xbd\xb6\x91\x15\xf6\x75\xbe\x64\xb3\xb9\x15\xe2\xb6\xbf\xb5\x84\xbc\x9d\xab\xb4\x6b\x65\x35\x0c\x7e\x48\x7d\xd3\x82\x7d\xd7\xbf\x33\x25\x57\x86\x2c\x9e\xa9\xbe\x99\x6b\x01\x10\x7a\xc8\xcf\xc6\x63\x04\x7a\xaa\xcd\xd0\x3c\xd6\x52\xe3\xc0\xce\x48\x0b\x0f\x67\x86\x6f\xae\x18\xbd\xf9\x81\x5c\x49\xad\x8c\x14\x43\x4a\x88\xfa\x36\xe7\x62\xc6\x35\xdc\x5f\x2b\x6c\x81\x32\x08\xd0\xf6\xdb\xed\x83\xa3\x1e\x34\x65\xee\x2e\xab\x48\x23\x3b\x76\xac\x38\xf2\xc5\xdb\x8b\x8a\x11\xc4\x94\xbc\x54\xbc\x61\xe5\x6c\xcf\xf7\x86\x81\x74\x29\x2d\xd4\x99\x54\x19\x23\x8d\xed\xcc\x2c\x24\x36\xd7\xc8\xd0\x7c\xab\xc5\x66\x84\x61\xda\xdd\x01\x63\xe0\x17\x5a\xa4\x36\xf4\x3b\x4d\x83\xa4\x90\x32\x48\xb5\xc4\xd0\x40\x59\xaa\xcb\x16\x0f\x82\x2d\x90\x91\x54\xca\x2b\xdb\x7e\xf4\xd5\xdd\x06\x5e\x3f\x5f\x05\xfb\xb1\xf4\x71\xb8\x23\x8f\x16\x00\xea\xd1\x54\x78\x20\x08\xf7\x86\xed\xf2\xcc\x91\x6c\xe9\xc0\xff\xa9\xd4\x01\x48\x9a\x2f\x9e\xe3\xf2\xcf\xc6\x8c\xf2\x09\x25\xa8\xc7\xb2\xe9\xdc\xda\x5a\x2a\x59\xb0\x16\x39\x3d\x79\xf9\xe2\x69\x94\x65\x19\xda\x6e\xa3\xa7\xaf\x5e\xbd\x7c\xf5\xf4\x89\xfc\x29\xae\x2c\x2a\xab\x35\xb2\x7d\xb7\x5e\x24\xce\x6e\xef\xf2\x46\x1e\x6f\x68\x28\x33\x16\x37\x86\x56\x31\x98\xf1\x79\x8c\xcc\xcd\xb2\xb3\x90\x59\x37\x33\xa6\x9e\x53\xc8\x64\x94\xde\x69\x68\xa6\x99\x9a\x63\x1a\xfe\xf6\x97\x47\xaf\xcf\xbf\x7b\xf9\xea\xe9\xf9\xdf\x1e\x7d\xfb\xc3\xd3\xd7\x91\x0e\xde\x4b\x0c\xf6\x6b\x8d\x47\x60\xb8\x1b\xb3\xf4\x26\xd2\xaf\xac\xd6\xe5\x3c\x47\xa3\x38\xd4\xb1\xc1\x7f\x7e\x69\xe2\x72\xb2\x59\x96\xd1\xed\xd6\x3c\xa9\x37\x39\x23\x71\xf4\x0f\x5a\x0d\x37\x46\x61\x37\xcc\x87\x49\x21\x47\x8a\xc1\x50\x3c\xa8\x43\x1d\x5c\x68\x88\xd7\x6b\xb4\xc4\x39\x47\xc5\xed\x50\xda\x91\x62\x72\x79\xa2\x0e\x10\x93\xcb\x21\xe6\xc9\xf0\xcd\x15\x2e\x87\xb8\x1c\x2a\xb2\x50\x50\xcc\x15\x29\xab\xcd\x86\x0a\x92\x6f\x18\x5f\x54\x7c\xb8\xc6\x97\x57\x7c\x78\x81\x86\x4d\x39\x26\xc3\x55\x25\xe3\x8d\x5e\x23\x56\x4a\xfb\xdc\xd5\xb0\x43\x62\x82\xc4\x50\x91\x81\x0d\xc9\x8e\x4e\x01\xcc\x95\x81\x96\x80\x46\xe7\xe8\xfb\xf8\x28\x23\x70\x30\x0f\x91\xf9\x9d\x19\xfc\xda\x98\xe9\xc5\xc0\xe8\x30\x75\x81\xc4\xac\x61\x33\x3e\x77\x88\x15\x71\x54\xe0\xd2\x4f\x0f\xbd\xe3\x9e\xe9\xde\x79\xbe\xbc\x16\x37\x54\x8a\xfa\xd3\x96\xa1\x98\x43\x62\x89\xcb\xa0\x6d\x75\xc7\x63\xa7\xbc\x86\x2e\x09\x1d\x20\xd7\x98\x8b\xcf\xdd\xc1\xdc\xde\x1d\x8a\xe0\x5b\x4a\x37\xd3\x06\x35\xff\x8b\x62\x2f\x1d\x7e\x00\xcf\x47\x2a\xf2\x55\x19\x41\x06\x99\xa5\xe8\x95\x84\x0c\xa4\x25\xe2\x6f\xf0\x1a\xd1\x8a\x07\xb3\xea\x9b\xea\x72\xc2\x35\x3c\x05\x35\xd4\x25\x69\xdb\x4e\xac\xe7\xe5\x09\xac\x0c\x01\x73\x11\x3c\xf6\x42\xe6\xe6\x6f\x73\xbd\xfb\xb6\xac\x33\x9e\x66\xfc\xcc\x5e\xb9\x4f\x9f\x86\xfa\x57\x7a\x17\x5b\xf5\x8e\xf6\x54\x74\x77\xe2\xde\xdb\x96\xda\xce\x1d\xf3\x50\xef\x2c\x40\x03\x2a\x6d\x1c\xda\xb3\x50\x8b\x95\x43\xc8\x6a\x6a\x28\x04\x65\x0f\x22\x09\xa5\xe5\x2b\x39\x3f\xb4\x94\x68\x47\x2d\x24\x54\xed\x31\x25\x1c\x93\x0a\x35\xd5\xc4\xe4\x76\x74\xe5\x4e\x98\xd9\x57\xda\xbc\xc8\x21\xb9\x45\xda\xf9\xf2\xea\xe9\x9b\x1f\x5e\xbd\x68\xf3\x92\x0c\x9e\x7a\x6f\xac\xdb\xe2\xcd\x5f\x5e\xbd\xfc\x7b\xb7\xc1\x83\xde\x06\x8a\x69\x4d\xf7\xf1\xf9\xb0\x9f\x9f\xf5\xf7\x38\x8d\xbe\x79\xfa\x4c\xbc\x2a\x8f\x5f\x3d\x7d\xf4\xe6\x69\x04\x5b\x88\xdd\x9a\xf0\xf5\x6e\x6e\x6b\xe3\xb4\x4a\x76\x40\xc4\xa1\x76\x26\x6e\x63\xcb\xee\x98\x3a\xc9\xba\x7b\xda\xe1\x2f\x74\xb8\x56\x07\xc1\xe8\xcb\xd4\x7a\xcb\xa5\x51\x09\x0c\x5c\x60\x99\xb6\xd6\xbe\x86\x47\x07\x40\xa0\x7c\x04\x0c\xe0\x75\x24\x06\xa1\x57\x11\x3e\x70\xa0\xce\x6d\xde\x95\x5b\x29\xa9\x55\xa8\x93\x01\x9e\x62\xdf\x4e\xfe\x55\x7e\x23\xbf\xf8\x97\xfa\xef\x98\x5f\xbd\xc6\xe2\x82\xa9\x19\x62\xc3\xbf\xc7\x66\xf5\xcb\x27\x9a\xa8\x8a\xb1\x6f\xfd\x0e\x20\x9e\xf1\x8e\xdf\xc6\xd4\x6c\xee\x35\x7d\xab\x66\x2f\x3e\xc6\x38\x68\x95\x8f\xa5\x7b\xc0\x34\x46\x19\x86\x0a\xb9\x89\x73\x6c\x4e\x07\x2a\xd7\x53\xdf\xe7\x22\x31\x28\x86\xc0\xa0\x60\x10\x81\x1a\x1e\xd2\x40\xde\x22\x51\x1b\x98\x63\xe9\xdb\x93\xfd\x15\x1a\x14\xd6\xfa\xd6\x65\x38\xcd\x64\xdc\x65\xf6\xae\xc3\xdd\xff\xf6\x23\x1c\xf2\x72\x70\xed\x2e\xfa\xa9\x63\x3e\x75\xe5\x40\x31\x90\x94\x72\x8a\x24\xb1\xec\x9f\x9b\x3f\x7d\x76\x6b\xd2\xba\x04\x0e\xde\x45\xef\xea\xed\x1e\x74\x41\x88\x81\x86\x00\x15\xc3\xb9\x1c\x43\x98\xc8\x68\xab\x44\xcc\x0a\x83\xc2\x48\x4d\xc8\x04\x13\x31\x87\xa4\x95\x03\x31\xcc\x68\xc4\x13\x3d\x8f\xd1\x88\x35\x4c\x33\xe9\xaa\xe6\xb0\x56\xcd\x91\xaf\x4f\xa7\x44\x05\x2c\xa0\xd9\xe9\x19\x7d\x48\xce\xe8\x78\x0c\xf0\x8c\xfa\x01\x0b\xe8\x7c\x60\xfb\xb6\x2a\xa6\x19\x1b\x47\x69\x34\x46\x73\x63\x04\xff\x0b\x59\xe1\x63\x20\xb8\xae\xba\x1e\x14\x81\xd3\xcc\xba\xf8\x59\x99\x4b\xd9\xf8\x14\x01\x05\x1b\xed\xb3\xc9\x51\xdb\x49\xbb\x16\x37\x4a\x86\x85\xec\xa5\x60\xe1\xab\x40\x0d\x56\x7a\xb0\xb3\xbe\xba\xd1\x54\x73\xd6\x46\x3a\xd5\xdb\xbb\x23\xc9\xad\x41\xcb\x8f\x83\x7a\xbc\xc9\x51\x96\xe1\x40\xb1\xe8\xbf\x0b\x8f\x68\x27\x30\xd2\xf6\x57\x0d\x83\x6c\x34\xe2\x47\x59\x26\xfe\x4b\x70\xf9\x04\x95\x9c\xd1\x5b\x29\xaf\xf4\xda\x5a\xfd\x59\x04\x8c\x81\x65\xf4\x53\x34\xd6\x06\x8a\x2d\x73\x88\x9f\x22\x58\xca\xcf\xb4\xe7\xf3\xc0\x63\xb7\xbe\xec\x70\x36\xc3\x25\xe2\x68\xc1\x25\xef\xb5\xa1\x1c\x11\x8e\x05\xf7\x37\xbc\xca\x7f\xce\xd9\x92\x56\xe5\x30\x2a\x51\xb1\xd2\x52\xf5\x61\x41\xe9\x26\x1a\x5e\x20\x7e\x83\x10\x19\x6e\x72\x41\x4a\x2a\x4e\xed\xcb\x71\x3e\x8e\x86\x39\x59\x0e\x17\x57\xb8\x58\xaa\xc2\x68\x5c\x8e\xa3\x64\xf8\x7c\x35\xbc\xa5\xd5\xf0\x26\x27\xbc\xf3\x75\xc8\xa9\xe0\xc8\xac\x3e\xe0\xe6\xaa\xd5\x71\x24\x3b\xc6\x8d\xca\x00\x0e\x37\x05\x12\xf4\xcf\x42\xe6\x47\x19\xfe\xd4\x28\x6e\x7e\x12\xbd\xfd\x64\x79\x48\xe7\xc3\xfe\x49\xbc\x45\x68\x63\x7c\x6c\x87\xf9\x8a\x23\xb6\x6f\x1a\x7a\x7c\xcc\xd5\xa8\x15\x09\x8c\x1b\x81\xba\xa6\x56\xa7\x53\x6b\xbd\xfd\x22\x68\x31\x53\x38\xb6\x5c\x2b\x97\x27\x38\x38\xaa\xc8\xd4\xfd\xe1\x98\x25\x2c\x8c\x57\x88\x1e\x30\x97\xe6\x25\xf1\x9d\x54\x5f\x23\xb8\x22\x29\x87\x1a\x5c\xe5\x3b\x58\x43\x06\x1a\x77\x4a\xc7\xdc\x6a\x71\x80\xc1\x89\x01\xc1\x8f\xe0\xf3\xfb\xa1\xa6\x57\xf7\x34\xf4\xea\x7a\xf2\x85\x83\x1a\x7f\xb8\x59\xcc\x9b\xbc\x7c\xdb\x32\xae\xd2\x76\x2e\x67\x2e\x56\x75\x2c\x85\x24\x38\x38\x86\x7d\x67\xec\x21\xb7\x86\x7d\xe3\xb1\x55\x90\xcc\xd8\x7c\x40\x92\x26\xa4\x55\xe6\xfe\xd8\x6e\x8f\x4e\x21\x11\x98\x69\x85\x2f\x2b\xf5\xfd\x68\x62\xf4\x05\x98\x0c\xc9\x68\x14\x93\xe4\x86\x61\xae\xbf\xf5\x87\xd1\x22\xc9\x5b\x74\x2b\x83\xf3\xd4\x20\xf6\x3d\x4d\x3f\xbe\x11\x9b\x6f\x3f\xf2\xf9\x9e\x50\xd1\xa1\x8e\x5e\x9d\x05\xa8\x31\xf5\x94\x8e\x46\x51\x29\xff\x68\x7f\xb0\x32\x9b\x69\xc8\xa7\x46\x13\x74\x75\xc8\xe1\x06\x05\x9d\x0c\xcd\x70\x32\xee\x92\xca\x94\x43\x59\x96\x65\xb6\xfc\xc8\xfc\xdd\x98\x8d\x4d\xcd\xdc\x52\x3b\x20\xbc\x0a\xbb\x87\x9c\x37\x76\x2d\xbe\x01\x8a\x2c\x51\xc8\x4d\x35\xf1\x9c\x37\xc2\x26\xed\x1d\xca\x8a\x37\x0e\x90\x0a\x7c\x91\x84\x5b\x01\xb0\x0e\x0e\x63\xf3\x41\xc7\xe7\xc8\xbe\xc8\xaf\xaf\x72\x26\xe8\x6a\x23\x62\x68\xe6\xa8\x4b\xdc\x39\x2a\x9f\x43\x73\xb9\x76\x5b\x28\xc6\x55\x76\xb7\xd2\xb6\x37\x06\x0f\x6a\xc5\x92\x4a\xbb\x65\xf4\x4c\x02\x57\xdc\x3e\x12\x58\xb3\xbb\x29\x65\xd8\x29\xc5\xd2\xb9\xbb\xfc\x52\x9c\x58\x48\xba\xfa\x8a\x80\x4e\x8a\xa2\x97\x37\x04\x31\x4f\xa0\x07\x20\xcf\xd0\x14\x25\x54\x7c\x79\x4e\x44\x1f\x72\x54\x81\xfb\x9b\x0d\x34\x7a\xc9\x67\xb9\x00\x98\xdb\x8c\xb6\x3d\x83\xf5\x8e\xae\x08\xa8\xe3\x09\xc4\xc9\xf9\xa2\x40\x39\xa9\x36\x2f\x89\x26\x53\x40\x57\x8c\x68\xe4\xfb\x8f\x8a\x22\x82\x77\x4c\xc7\xb5\xe0\x57\x68\xa8\x33\x49\x61\x3e\x2c\xf0\x35\x2a\x87\x94\x48\x95\xff\x52\x75\x85\x96\x43\xca\x86\x15\x61\x88\x2c\x11\x43\xcb\x48\xea\x47\xe4\xc6\x86\x21\x49\xcb\x88\x0a\x4a\xa4\xfe\xb0\xdf\xb5\x96\x03\xa8\xc2\x11\xf0\x33\x22\xef\x38\x71\x21\x8b\xcc\x1b\x67\xe6\xe6\x1c\xb3\x99\x25\xd2\x4b\xa3\x7b\x31\xdf\xb6\xdb\xd9\x1c\xc0\x52\x06\x23\x41\x35\x54\x67\xdd\x55\x2e\x48\xb3\xcd\xae\x6d\x22\xd0\x91\x83\x90\x83\xf5\x34\xc6\xfb\x07\xad\x04\x19\x31\xa4\x44\xdb\x75\x38\x62\x6f\x81\x79\xa4\xd8\x1b\x93\x61\x2e\x49\x8f\xa4\x71\xc3\xbe\xb2\xde\x9d\xea\xae\xca\x73\xf0\xee\x2a\x0f\x59\xe6\xb5\x2e\xaf\x0c\x63\x60\xa8\x95\x60\x30\xec\x7b\x8e\x62\x4c\x03\xd5\x49\x16\x2d\x15\x8c\x0d\x84\xed\x84\x6d\xd0\xe0\xe6\x11\x1d\x16\xba\xce\x29\xc3\x97\x58\x57\xd2\x3f\xda\x1e\xa4\x0d\x70\xdb\xb2\x46\xbe\xca\xf4\x67\xfb\x1b\x7a\x74\x71\xc3\xea\xdb\xa2\xba\xc7\x78\xc8\x35\x4b\xde\x65\x91\x1c\xb8\x65\xa9\x75\xc9\xbd\x27\xa2\x74\x3c\xc5\x75\x74\x8d\xdd\xe0\xec\x21\x43\x8d\x22\x05\x1f\x14\x32\xf7\xd4\xbc\x10\xf4\xab\xa7\x6d\xdf\x64\x57\x88\x66\xaf\xc3\x74\xc7\x55\x11\xd7\x04\x01\x90\x22\xa8\x5d\x6e\x42\x3b\x12\x02\x00\x49\x81\xe2\x30\x1c\x48\xa4\xe6\x17\x39\xf0\xa8\x6c\x2a\x79\x63\xc5\x11\x30\xae\x0c\x0b\x18\x3c\x00\xf3\x01\xdb\x09\x09\xc2\xa4\xa0\x32\x70\x9b\x24\x89\x14\xd4\x03\x19\xf9\xaa\x9e\x6d\x8b\xcb\x6b\xd8\x80\x96\x11\x1c\x6b\x14\x1a\x14\x40\x5a\xd7\xb0\xc8\x70\xf2\xfc\xc5\xdf\x5e\xfe\xf5\x29\x5c\x04\x6c\x9c\x95\x94\x49\x4d\x3b\xfc\xa0\xd4\xb0\x18\x62\x32\xac\xa6\x61\xea\x4d\x90\x34\x9a\x20\x5d\x40\x3f\xfc\xa9\x4b\x1b\x8a\xdf\x86\x16\x94\x94\x6b\x5a\xcd\x8a\x79\xb6\x80\x15\x00\x70\x93\xb5\xc8\x58\x6d\xf3\x6e\x49\xb5\xb5\x4f\x32\xe3\x55\xcc\x80\xef\xf1\xc4\x5c\xd7\x26\x13\xe9\x60\x96\xcf\x61\x95\x09\xda\x59\x3c\x7b\xe7\x0e\x81\xae\x05\xa6\xec\x3c\x1a\xdf\x8e\xc7\x03\x3e\xab\xe6\xd9\x75\xac\xba\x87\x28\xe6\xb0\x94\xe0\x0d\x2b\xd7\x61\xe5\xda\xe8\x70\xc2\x16\xc5\xa4\x31\x18\x46\x60\xc0\xa6\x5d\x25\xd3\x4b\xb2\x30\xd1\x2f\xb4\x25\xfa\xac\x51\x3b\x11\xc8\xed\xa5\x50\x94\x63\x93\x2a\x51\x5a\x09\x2a\xcb\xed\xe6\x60\x00\x48\x49\x13\x9f\x81\x78\xd6\xc8\xad\xfd\xdc\xf8\x8e\x02\xb9\xe7\x28\x80\x5b\x8e\x02\x1b\xc7\x51\xe0\xae\x44\xdc\xf3\xe3\xb6\x9a\x16\x31\x99\xd7\x82\x0c\x79\x2d\x6a\x68\x4d\x95\x5f\xb8\xcb\x71\x36\xe8\x1b\x6d\xd4\x60\x5d\xef\xeb\xb6\xae\xf7\xcd\x15\x1a\x0a\xbe\x89\xae\x86\x7e\x47\x31\xb0\x8a\xde\x7c\x58\x6e\xd0\x42\x30\x71\x9a\x3f\x37\x2c\x9d\x60\xbd\x97\x68\xc3\xd0\x22\x97\xd2\x0a\xb2\x1c\xde\x50\xf2\xe5\x3e\x75\x6e\x19\xd4\xe7\x26\xc3\xef\x95\x08\x41\x0d\x76\xab\x5f\x5a\x67\x30\x52\x72\x94\x2f\xe1\x10\x25\x97\xc9\xf0\xa7\x68\xcc\xc7\x51\x2a\xeb\xc4\x49\x92\x00\x13\x16\x20\x06\xad\xf0\x63\xb1\x79\x23\xfc\xe2\x71\x04\x7e\x8a\x00\x5c\x6b\x25\x47\xbe\x5c\x7e\x8b\x4b\x8e\x08\x62\x50\x93\xae\xd2\x7b\x5e\x1a\x9f\x40\x0e\x6d\xfc\x15\x78\x74\xba\xb3\x95\x42\x28\x4f\xbd\xb6\x0e\x55\xd6\x6a\xfd\x52\xa7\x90\x35\xad\x2d\x71\xeb\x0f\x39\x01\x35\x74\xf5\xb9\x3e\xda\x69\x26\x9a\xb5\x7e\x0b\x72\xa9\xbd\x18\x2f\x98\x5c\x6b\x9d\x2d\xe8\x32\xa6\xb4\x2f\x7b\x87\x6e\xaf\x36\x0b\x96\x36\xd3\x68\x7f\xe9\x4c\xa6\xb3\x7d\x9d\x29\x59\xf2\xff\x53\xf2\x38\x66\x90\x8c\xeb\x51\x03\xf4\x42\x87\x86\x7c\x44\xba\x60\xad\x80\xd8\x90\x27\x92\xe8\x16\x9c\x75\x89\xb8\xa0\xc1\x31\x2f\x0d\x69\x7e\x8d\xf3\xe1\x97\xfe\x9b\xf0\x65\x32\x7c\x8d\x90\xbd\x62\x58\x12\xed\xca\xba\x62\x45\xd9\x70\x89\x78\x8e\x8b\x32\x89\x24\x5b\xb5\x07\x01\x85\x3c\x95\xa4\xdc\xeb\x36\x9b\x1c\x20\x40\xf2\xe4\x3d\x9f\x32\x50\x42\xdb\x09\xa2\xc0\x79\xe9\x24\x76\x54\x9f\xbf\x13\xf3\xb0\xa4\x4b\xaf\x77\xc3\x25\xf7\xdd\xcd\x26\x8e\xb3\x58\xb8\xaa\x71\x70\x94\x35\x9f\x2f\x8b\x90\x27\x44\xe3\xbd\x66\x3a\x0b\x18\xff\x1f\xd9\x27\xcc\x15\x1e\x8f\x46\x5e\xb9\x71\x61\xab\xfb\xdd\x2e\x0e\x1a\x6c\x18\x1c\xcc\xf1\x6d\x08\x0d\x3a\x8d\x94\xb3\x72\x94\x46\x78\x59\xa0\xa8\x06\x2d\x8a\x5c\x33\xdb\x8a\x2c\x93\x3f\x88\x24\xd4\x95\x17\x8f\xa3\xcf\x81\x0e\xb8\xa4\xbc\xe5\x3a\x5c\xe4\x25\x97\x6d\x1a\xca\xca\x75\xc9\x06\x5e\x70\x8b\x6e\x3d\xbf\xa3\x26\x50\x46\xb7\x66\x13\x62\x00\xb4\xe3\x63\x04\x86\x6f\x8c\x75\x81\x1f\x39\xa3\x5b\xd7\xba\x23\x03\x2f\xa2\x46\xb7\xa2\x71\x36\x06\x7e\xa0\x8d\x40\x8f\xc6\x46\x0f\xb4\x03\x70\x74\xeb\x3a\xfe\xc7\xc0\x0f\xcd\xe1\xd7\x6d\xc5\x4e\x68\xce\x20\x9d\x40\x0b\xd8\xe9\x04\x36\x9e\xc4\xe9\x64\x67\x04\x0d\xb4\xdd\xde\xd5\x90\x65\x3c\x51\x72\x04\xa9\xeb\x67\xa8\x44\x5c\x9b\xea\x65\x6c\xbb\x35\xae\x11\x8f\x8a\x5e\xef\x08\x81\xe6\xf8\x15\x92\x01\x34\xa3\x0e\x95\xdd\x34\x67\x00\x12\x6b\xb0\x6b\x87\x89\x81\x09\x81\x73\xa0\x1d\xbf\xc7\x7e\x1a\x6a\x4a\xd3\xfe\x46\x2d\xd9\x0e\xe2\x24\x40\xbf\xe1\x53\x15\xdc\x37\x53\xe8\x98\xef\x97\xc8\xf8\xb8\x63\x54\xaa\x08\x2e\xbb\xe2\xb4\xb4\x23\xb9\x84\xa2\xbd\x7c\x9e\x58\x2e\xd2\x37\x7d\x37\xb2\xbf\xc9\x31\x3f\x5e\x51\xf6\x11\x3c\x53\x2d\xa5\xcc\x1a\xe9\xb3\x2b\x78\x79\x85\x56\x48\x74\x66\x64\xce\x62\x6f\x87\x57\x79\xa9\x08\x48\x44\x86\x98\x60\x8e\xf3\x02\x97\x68\x39\x3c\x1e\x4a\x51\x5d\x0c\xbc\x1a\xda\xff\xc6\xf0\x87\x47\x7c\xbb\x35\x52\xbb\x23\x23\xa0\xe5\xae\xd8\xb6\x29\x9d\xa2\x94\xd7\xed\xb8\x45\x9e\x7e\xdf\xed\x41\x6c\xe6\x51\x96\xf1\xb0\xb4\x5c\x52\xea\x02\xf2\x19\x2a\xa5\xbd\xe2\xba\x2a\xf9\x10\x61\x7e\x85\x98\xa0\x85\x45\xeb\x21\x65\x8e\xf8\x1c\x4a\x22\x20\x1a\x9b\x11\x80\x8a\xec\xa5\xde\x6a\x93\xe1\x5d\xbf\x6f\x52\x55\xee\x70\x12\x8e\x9c\x39\xd5\xef\x27\xf2\x18\xc6\x53\x97\x41\x6c\x33\x8f\x82\x54\xe0\xa3\x91\xd1\x3a\x29\x58\x56\x5d\xbf\x5c\x4d\x83\xa5\xca\x72\x0b\x25\xe7\xe7\x72\x16\xe7\xe7\x19\x07\xf5\xaf\xce\x41\x5e\x40\xee\x33\xca\x24\xa2\x0b\xc4\x72\x97\xb3\x28\x65\x78\x6d\x5b\x57\x52\x99\xe1\xa4\x01\xa2\x76\xa5\xcd\xe9\x6c\x7d\xcb\x06\xb6\x6d\x11\x9d\x46\x85\x2e\xab\xb5\x27\xfa\x6f\x4e\x73\xd4\xe6\xc9\xb9\x17\x8c\x94\x8d\x46\x28\x76\xc1\x51\xa1\x6d\x24\x93\x89\x43\x5e\xd7\x31\x80\x79\xcf\xa2\x5d\xc7\x7a\x63\xcf\x10\x23\x38\xbb\x7b\x8b\x6e\x53\xe5\x91\xa4\xfd\x67\xdb\xf2\x5c\x7d\xbf\x63\x2d\xd8\xb5\x66\x13\x6f\xa8\x8e\xdd\xaa\x64\xe1\x40\x05\x3e\xb5\x59\x2a\x5c\x46\x7e\x0e\x20\x12\x93\x6b\x45\xda\xf1\x75\x58\x6a\x7a\xa5\xa1\x45\x95\x5c\x1f\xc6\x65\x03\xfa\xdb\xad\xde\xc1\x4b\xff\x8a\x88\xb1\xad\x43\x38\x00\x4d\xc6\x0c\xeb\xc1\x90\x21\xc8\x6b\x1b\x57\xae\x84\x39\x80\x34\x2e\xf5\xea\x3b\xa6\x20\xed\x8d\x90\xf6\x20\x01\x6b\x5b\xf9\x20\xd9\x31\x7c\xd7\x88\x3d\xe6\x1d\xda\x04\x43\x6e\x4d\x29\xb6\xa6\xea\xdd\x1a\x79\xc1\xbd\xcd\x21\x1f\x61\x73\x88\x66\x57\x32\x01\x7e\x96\x09\xcd\x38\x24\x1f\xb8\x4f\x8d\x10\x09\x62\x17\x16\x6b\x48\xb3\xa3\x53\x17\x3e\x09\xb8\xa3\xe2\xce\xe0\x58\x87\x8e\xdc\xb9\x61\x20\x94\xb5\xc1\xa0\x70\x71\x10\x54\xab\xf2\x97\x4a\xaa\x69\x44\x03\xd3\x78\xd7\xd7\x16\x13\x2e\x16\xec\xcd\xda\x6c\x53\xc2\xd0\x9a\x5e\x23\xbf\x2d\xf1\x1a\xd6\xc6\x82\x50\xb7\xa0\x04\x05\x7a\x77\xfa\xa6\xdb\xad\xed\x9e\xae\x56\x9d\xee\x1a\xe0\x28\x76\x02\x47\xd8\x72\xeb\x40\x9b\x88\x6f\x28\x2d\x50\x4e\x06\x3e\x84\xd1\x8f\x00\x61\xb4\x81\x30\x2a\x10\x5c\xc6\x21\x4d\x36\x0c\x2d\xf1\x22\xe7\xd6\x8f\x2a\xa4\x45\x26\x53\x12\xd4\x01\x67\x59\x46\x6a\x48\x3f\x11\x80\x2a\x19\x7f\x63\x7a\x64\xce\x46\xa1\x67\xa9\xbb\x22\xdd\xf9\xc7\x18\xd8\x20\xe0\xfb\x60\x18\x03\x78\x34\xa9\xa5\x12\x0c\xc7\xb6\x59\x0b\x3c\x8d\x50\x4a\xc1\x8e\x7c\x18\xa4\x16\xd5\x03\x9d\x16\x58\xda\x36\xc4\x6d\x50\x5b\x00\xda\x49\x76\x9a\x54\x2f\x8a\x1b\x38\x96\xf1\xd9\xf7\x18\xaa\x98\xc0\xc5\x1f\x3b\x38\x8a\x9a\x82\x8a\x58\x9c\x11\x13\xd1\x43\x30\x30\x5f\x36\xb3\xfb\x72\xc8\xd1\x7a\x53\xe4\x1c\x0d\xd5\x3c\x24\xeb\xa3\xac\x38\x97\x51\x2b\xfa\x93\xb6\xb2\x9e\x4d\x8c\x88\xe9\x88\x88\x5b\x67\x39\x1f\x15\x63\xa6\x13\x27\x19\x18\x5f\x2e\xb5\x1d\xae\x0c\x71\x46\xac\x72\x97\xd5\x73\xd7\x16\x48\x81\x8e\xea\x27\x51\x53\x8b\xc9\x61\x7b\x6f\x85\x8d\x1f\x63\xe3\x3d\xda\x9f\x79\xf9\x74\x42\x0b\xb5\x63\x37\x7f\x89\x66\xef\x43\x06\xea\x0e\xf4\x01\x32\xb8\x7b\x6f\x18\xa8\xc1\x60\xff\xde\xb4\x23\x88\x7f\x9a\x74\x4c\xa1\x09\x76\xf8\x72\xc8\xb2\x58\xe0\x33\xdf\xd8\x86\x83\x29\x4f\x1d\x33\x19\x0e\x00\x24\x2a\xa2\x36\x0e\x44\xd4\x26\x5a\x4d\x68\x55\x1e\xbf\x9c\x31\xec\x1e\x86\x74\x47\x7a\xba\xc3\xe3\x84\x35\xd6\x6f\x1f\x62\xf2\xa6\x43\x96\xdd\x37\xc9\xc6\x6e\x2e\xfb\x03\xa3\x96\x99\x74\xfe\x1f\x0e\x84\x2b\xca\xd0\x35\x62\x59\x97\xd9\x69\xb1\x4b\x2d\x4e\x0b\x25\x5c\x39\x26\x35\xf9\x3a\x74\xf6\x8e\x26\xc8\x53\x6f\x0a\x0f\x1d\xe2\x33\x10\xf5\xa9\x08\x65\x7c\x50\xc8\xe3\x19\x49\x96\xb8\xdc\x14\xf9\xad\x22\xab\xc7\xd1\x30\x96\x01\x16\x23\xc8\xa4\xb6\xce\xd3\x69\xeb\x26\x9e\x36\xbb\xa5\x6c\x6e\x59\x31\xec\x30\x61\x88\x27\xb0\xec\x44\x11\x07\xda\x54\x07\xe2\x26\xb2\x58\x5b\x96\x8a\xac\x6e\x7c\x87\x62\xbc\xab\x15\x97\xf9\x22\x5a\x8b\xcf\x10\x0c\x73\xe9\x5c\x2f\xdf\x1c\x5c\xc3\xa4\x09\xc6\x4c\x6f\xb5\x8a\x0d\x77\xe0\x7e\x3b\x0b\xfa\x35\xee\xe9\x3d\x77\x07\x77\x03\xbf\xf9\x5b\x24\x1f\xfb\x4a\xa3\xe1\xf3\x12\xf1\xc7\x45\x5e\x96\x78\xf1\x04\x2d\xa8\x76\x0d\x75\xbe\x69\x41\xa4\xfd\xd8\xbc\x79\x45\xb3\xad\xb6\x8c\xc7\x2e\x17\x6d\x89\x62\x39\x4d\xa9\xf5\x55\x7f\x28\x17\xa8\x96\xa8\x13\x01\x5f\xd7\xed\xb0\xb5\x66\xf9\x55\xcc\xc5\x0a\xd4\xdd\xa2\xe2\x5f\x3f\x27\x0a\x75\x7e\x78\xf1\xd7\x48\xf3\xb7\xc9\x7a\x22\x43\xb0\x5e\x99\x4c\x29\x54\xfe\x07\x9b\x6b\xce\xcd\x5f\x6d\x99\x4b\xee\xfd\x6c\x4b\x59\x72\xef\x67\x40\xa6\x92\xb7\x4b\x1c\xa4\xc4\xcd\x5f\x7b\xde\x0a\x25\x2f\xfc\x59\x3c\xd9\x9d\xcf\x7b\x1e\x91\x4f\xf4\xa6\xdf\x49\x9d\x49\x60\x38\xd8\xcc\xd6\x15\x77\xec\x49\x6c\xa2\x5f\xba\x83\x28\x11\x07\xf6\x7c\x31\x15\x1f\x62\x32\x44\x3d\x66\x28\xa2\xaa\x5e\x0a\xbb\x97\x19\x8a\x78\xef\x05\xbd\x55\xb7\xe5\xbe\xdc\xf8\x37\x67\x5a\xc7\xad\x42\xed\xf0\xf7\xa1\xee\x70\xf9\x54\x85\xb4\x57\x6d\x43\x72\x3e\x34\x1a\x05\x9d\xb4\x04\x33\x1c\xb4\xe0\x45\x82\xf3\xdd\x6e\x83\x5f\xda\xbc\x7a\x4f\x07\x01\xce\x5c\xca\x0d\x1f\x99\x9b\x2a\x09\xd1\x8e\x05\x67\x47\x8e\x78\x90\x13\xd4\x57\x53\x72\xfc\x95\x72\x82\xfa\xca\x73\x82\xfa\xaa\xe5\x04\x25\x05\xee\xc9\x0d\x2e\x0a\x63\x31\xaa\xb6\xa8\xfb\x21\x31\x96\x3d\x92\x7b\x2c\x4b\x54\x9e\x1b\xcb\x50\x56\x9e\x9f\xdb\xf4\x51\x6e\x1b\x58\x66\xb3\xf9\xc0\x2b\xca\x02\x1a\x79\x45\x30\xda\x70\x27\xfc\x21\x93\x24\x62\x39\xe3\xf3\x18\x0c\xf2\x90\xac\x0e\xde\x67\x6e\x59\x59\xdf\xa7\xba\x8a\x0d\xe1\x6a\x74\x66\xac\x89\x43\x88\x81\xca\x26\x65\x70\x5d\xf7\x9d\xd4\x28\x98\xa9\x40\x46\xeb\x76\x0e\xa9\xa6\x67\x06\xee\x0c\x45\xcf\x2a\x92\x14\x32\x04\x0b\x93\x8e\x8f\x83\xc6\x6f\xdb\xcb\x6b\x14\xf4\xab\xd7\xf6\x69\x1c\xd4\x90\x89\xa9\x19\x87\xd2\xac\x92\x18\xfa\xa6\x4f\xd4\x5d\x69\x51\x37\xcb\x6f\xde\x04\x56\x63\x50\x41\x7c\x57\x43\x0a\x5d\x61\x6f\x4b\x3a\x11\xf6\x3c\xe7\x8e\x9c\x21\x87\x24\xd1\x11\x92\xc4\x88\x20\x10\x77\xf3\x06\x93\x25\xbd\x49\x04\xfc\xb3\xe7\x84\x23\x76\x9d\x17\x31\x96\xda\x28\x88\x02\xe2\xdc\xc0\xc6\x07\x92\x5d\xd9\xa7\xdf\xa4\x8e\xf2\xb7\x13\xcd\xe8\x3c\xbe\x0b\xf8\xb8\xab\x97\x38\xcb\xf2\xed\x96\x65\x59\x39\xe5\x36\x94\x16\x01\x29\x37\xa1\x62\x08\xa8\x6b\x38\x01\xd0\x76\x5f\x43\xe6\x58\x92\xe9\x26\x59\xc7\xd3\xd4\x8d\xed\xe5\x07\xea\x42\x32\x81\x8b\x6b\xa2\x91\x79\xbe\x3f\xdb\x6d\x8b\x0d\x23\x55\x51\x64\x19\xda\xad\x46\xa1\xe4\x1a\x31\x3e\xac\x88\xc2\xa3\xd2\x92\x5b\x2a\x9c\x38\xd5\xa6\x25\x11\x18\x18\x9d\x52\x8c\x9a\x08\xe7\x3c\x3b\x3d\xe3\x0f\xdb\x88\x46\xde\xce\xb6\x8f\x93\x60\xe5\xf4\x7c\x8e\xb2\xc6\x62\x90\x88\x87\x84\x01\xbd\x88\x66\x6f\xae\xf2\xf2\xe5\x0d\xb1\x44\x96\x14\xcc\x89\x4d\x1f\x8d\x62\x34\x23\xf3\x8c\xcd\xc8\xdc\xaa\x00\x90\xd8\x14\x65\x58\x99\x45\xe7\xda\x15\xf6\x5c\x39\x48\x9c\x9f\x47\x4e\x56\xbb\x99\x7e\x10\x2f\x0b\xbc\x5e\x23\x66\xb9\x73\x65\xf9\x67\x1f\x75\x46\x2b\x8e\xc9\xe5\xf1\x15\x5f\x17\x17\x39\x2b\x4f\xde\xa2\xdb\x1b\xca\x96\xe5\xc9\x42\x09\x1c\x8e\xc3\x0d\x7a\xeb\xcd\x75\x44\x58\x62\xb6\x08\x0b\x84\xbb\x8a\xc9\x0c\xcf\xb1\x09\xf3\x78\x7e\x5e\xd0\x7c\x29\x4f\xfb\x12\x97\x9c\xdd\x82\x3b\xbb\xac\x4e\x0d\x99\x19\x56\xb6\x07\xba\x8e\x8a\x21\x50\x9b\xe8\xc5\x2d\x21\xa2\x34\xbd\x5c\x9c\xdb\xd2\xf3\xf3\x08\x0a\x74\xdc\x15\xf0\x65\x11\x41\xef\x78\x04\xcb\x2c\x46\x6d\x1f\xcd\x2c\x92\x80\x14\x41\xd4\xf1\xd9\xcf\x4c\x76\x42\x30\x40\x1d\x67\xcd\x4c\xcb\x9e\x44\xc3\x73\x43\xf7\x5a\xba\x4d\x2d\xae\x5d\x3c\x70\x88\xb7\x16\x8e\x01\x77\x6e\x80\xf4\xca\x5e\x1c\xf9\xd0\x67\x28\x44\x00\x6d\x6e\x4f\xc4\x3f\x61\x12\x4e\x7f\x14\xfb\xf2\x39\x52\xd2\xab\x34\x51\x8d\x9a\x39\xd3\x64\x79\x96\x65\x68\x1a\xd9\x6b\x18\xa5\x2c\x46\x00\x6c\xb7\xea\x12\xdb\x70\x2d\x43\x24\x9f\xdf\xb6\x84\x45\x70\x00\xc6\x01\x44\xb9\x7f\x8a\xd6\x56\xaa\x2b\x16\x18\x93\x0e\x6a\x1d\xa2\x58\x8b\x00\xfa\x27\x45\x5a\x93\x22\xce\xa4\x88\x19\x81\xe8\xc4\x80\xfa\x79\xab\x8c\xe1\xb0\xca\xad\x16\x57\x19\xb5\xc9\xf2\x09\x00\x5f\x67\x13\x60\x43\x3b\x57\x12\x35\xf8\xeb\x21\x40\xce\xa7\xcc\x88\x16\x3d\x01\x88\x25\xd6\xa8\x1a\x4a\xe0\xf8\xb8\xfa\x3a\x9b\x9c\x81\x72\x56\xcd\x33\x14\x8b\xff\xf4\x52\x6a\x54\x94\x68\x88\x57\x71\x67\x4b\x08\x00\xa2\x4f\xb9\x1b\xaa\xee\xc0\xd4\x25\xae\xea\xf9\x49\xce\x91\xa8\x89\x6e\xe4\x9f\xb1\x0c\x55\x2f\x9e\xb1\x18\xa8\x16\x77\x65\x76\xa7\xf8\x3d\x9b\x4d\x54\x4c\x4f\x1a\x68\x93\xc3\x10\x1a\x81\x05\x18\x8d\xa2\xf3\x73\xb1\xdd\x45\x52\x56\x17\x2a\x2f\x7c\x3c\x81\x0f\x04\xa6\x2b\x67\xc5\x3c\xc3\x53\x71\xcd\x0b\xb3\xb2\x54\xfc\x0d\x6a\x2c\x63\xfa\x4b\x4a\x84\xc8\x30\x45\xe2\x2f\x47\x6d\x51\xd6\x02\xce\x20\x99\xce\xe6\xda\xf0\xca\xfc\x05\x6c\x8c\xe9\xdf\x8b\xe3\x5b\xff\x6d\x97\x17\xfa\x33\x09\x5d\x7d\x83\x42\x31\x7a\x7f\xf6\xc4\xcd\x4e\xa9\xa4\x45\x55\x07\xe0\xa7\x0f\x4f\x77\xd7\xdb\x40\xcd\xe1\xce\x67\xe0\x2e\x51\x30\x8a\xb0\xd9\x8b\x7a\x57\x87\x8f\xed\x89\x1c\xd4\x29\x73\x3a\xed\xec\xe1\x32\xe7\xf9\xf1\x9a\x2e\x51\x71\xbc\x62\xf9\xa5\x24\x31\x4e\x72\x81\x39\x4e\xcc\xef\xd0\xe6\xee\x68\x26\xcd\x27\x65\xe8\xcd\x5d\x75\x9b\xce\x77\xd5\x12\x3c\xf6\x89\x41\x26\xc7\x74\x75\x2c\x60\xf5\xbe\x19\x23\x54\x8a\x26\xf5\x9c\x7b\x41\x0a\xa4\x03\x4d\xd4\xa4\x6f\xd5\x11\x06\x4a\x4e\x19\x8a\x00\x2c\x5b\x21\x0d\xc4\xd0\x00\x56\xad\x3e\x36\xca\xd5\x01\xc0\xc2\xff\x40\xb4\x3d\xa6\xc1\x69\x56\xdc\xef\xe5\xa4\x25\x70\x65\x38\x0c\x6f\x18\x81\xc7\xe3\x09\x64\x09\x2e\x9f\xe9\xdd\x00\x12\x95\x2f\xb4\x22\xec\x2a\x53\x9f\x05\x05\x4f\xf2\xe2\x3b\xb1\x71\xcf\x28\x03\xf1\x02\x08\x0e\x60\x41\xd9\xf2\x49\xce\xf3\xc6\x2d\x12\x0c\xae\xb6\x5b\xd9\xa6\x44\xdc\xf4\x29\x3f\x81\x78\x01\x29\x2c\x14\xae\x8f\x17\x19\x9f\xad\xe6\x60\x8a\xa7\xed\xca\xa2\x3f\x51\x97\x80\x26\x8e\x92\x63\x7c\x27\x3f\x2c\xd4\xb4\xd4\xed\x6d\x66\x9e\xc3\x52\x0c\x01\x2b\xd8\x3c\x9c\x8b\xfa\xfe\x4a\x25\xad\x8d\xee\xa6\x6e\xe5\xd6\x11\x57\x1f\x88\x36\x1d\x24\x94\xad\xa5\x60\x47\x4c\x3e\x84\x50\xb5\xa2\xbb\x13\x9b\x91\x12\x8e\x54\xe6\x2b\x65\xf1\x7f\xae\x96\xf4\x9a\xe4\x9b\xf2\x8a\xf6\x46\x00\xef\xcd\x8f\xdc\x6a\x1f\xab\xb0\x97\x32\x5b\xcd\x63\x19\x27\x61\xf9\x88\x73\x86\x2f\x2a\xee\x5b\xd3\x07\x7b\x45\x49\x4f\x4b\xdd\x6d\xbe\xcc\x37\x1c\xb1\x27\x78\xf9\x98\xae\xd7\x98\x07\x82\xbe\xee\xcd\x02\xd7\x49\x3e\xac\x22\xbd\x25\x9d\xce\x63\x34\x1a\xa1\x19\x9b\xb7\x87\x56\x61\xf5\x3f\xca\xc8\xad\x71\x15\xd7\x85\xe4\x80\x57\x79\xf9\x04\x33\x7e\xeb\xec\x5e\xdb\x72\xfb\xbf\x51\xbe\xb8\x4a\xba\x15\x23\x18\x69\x41\x79\x5e\xe8\x80\xc3\x7d\x96\xac\x3b\xe6\x6c\x23\xbd\x3f\x22\xb7\x71\x14\x18\x45\xe0\x5c\x46\x95\x79\xc0\x8e\x33\xde\xbf\x2f\x8a\x1d\x8b\xa3\x6e\x67\x11\xa8\x61\x89\x58\x57\x84\xe9\x05\x55\xd4\xcd\x6d\x45\xd1\x8a\xa1\x4d\x91\x2f\xd0\x63\x05\xee\x9d\xc0\x7e\x8a\xd9\xeb\xbf\x1c\x34\xd3\xf7\xc7\x10\x97\x08\xa2\x31\x07\x90\x39\xea\x4d\x3d\x84\xec\x92\x82\x1a\xe6\xcb\xa5\x41\x0c\xbd\xb9\x34\xa5\xe1\x83\x66\x92\xc5\x24\xd7\xf4\x1a\xed\x6d\x64\x8c\x1f\x6c\x3b\x1f\x0b\x05\xec\xaa\xdb\x0b\x33\x0f\x82\x17\x3b\xa9\x79\x10\xba\x3b\xa1\xdf\x04\x9c\xb5\x51\x5e\x4c\x1c\xe9\x8b\xf2\x47\xac\xca\x2b\x3d\x37\x0c\x6a\xe8\x88\xc9\xde\x03\x14\x82\x99\xc1\x13\x2d\x5c\x93\x06\x1e\xae\x73\xb0\x06\xef\xfd\xad\xea\x1a\x38\xfe\x1d\xf4\x3e\xc4\x42\xf3\xea\x87\x29\xb1\xdd\xef\xbc\x6c\xdd\xb6\x63\xf8\x60\x92\x6c\xe0\x82\xaf\xe4\x86\xbe\x67\xf4\xdd\xad\xf5\xea\x4f\x0c\x21\x05\xef\x94\x2f\x6d\xe3\x59\xf1\x21\xf9\x33\xcf\x37\x88\x2c\x31\xb9\x14\x4f\x8e\xe1\xe2\x3a\x61\xcc\x5b\x88\x67\x36\x17\xf0\xaa\x6f\xe1\x5e\xf3\x7a\xbd\x22\x79\xd0\x92\x40\xde\xf1\x1a\x71\xc9\xa2\x49\x04\xc1\xab\x4d\xe7\x19\xb4\xe1\x17\x9c\x49\x1f\x09\x16\xf9\xae\xbb\x16\x34\x70\x63\xab\x79\x4f\xab\xf6\xa2\x5b\xe7\x6f\x91\x35\x54\x08\x84\x20\xb3\x98\xa3\x93\x18\xa1\xbd\x21\x02\x89\x58\xd4\x31\x71\xde\x67\x06\x23\xc5\xb5\x46\xc0\x26\x00\x0d\xec\x78\x5d\x1f\xf0\xf8\xa3\x83\xdf\x75\x4e\xd5\xb2\x0e\x7b\xb4\xf7\x3d\xc1\x3a\x04\xa1\x3d\x91\x18\x81\x4e\x68\xca\xce\x86\x78\xd3\xd8\xf9\xd4\x8a\x09\x1c\xf0\x2e\xce\xe6\x07\xbd\x80\x93\xa3\xcc\xf1\x04\xcb\x99\x36\x63\xb4\x53\xe9\xd0\x4e\xad\x2e\xc1\x81\x0f\x60\x89\xb8\x0e\x14\x12\xef\xef\x71\xff\x73\xe7\x9c\x98\xc4\x50\xfa\x89\x13\x07\x22\x8f\xee\x5e\x17\x7b\xd0\x8a\x34\xd2\x7a\x2f\xba\x2f\x89\xa2\xfe\x07\x81\xb4\x32\x1d\xf2\x40\xd1\xd9\x06\x17\x3e\xc1\x4b\x59\x03\x48\x0c\x28\x4d\x28\xd3\x76\x85\x57\xa8\x44\x1c\x68\x8b\x78\x13\x96\xe1\xa9\x40\x6a\x25\x0e\x79\xa6\xaa\x79\xc6\xd1\x38\x38\xff\x04\x2f\x23\x30\x8e\x40\xe4\x63\x7f\x72\x20\xf6\x77\xc8\xa9\xf7\xc1\xfc\xf7\xe1\x19\xdb\x6c\xe9\x01\x2f\xca\x67\xe4\x41\x8d\xf0\xef\x83\xad\x7f\x5c\xde\x2c\x43\x89\x5c\x75\xd6\x94\x3f\x6a\xfd\x36\x0c\xa6\x92\x1a\xfe\x6e\x84\x51\x9e\x58\xda\xa5\x46\xa3\xe3\xf5\xea\x38\x1a\xa3\xb3\x98\x8f\x46\x31\x19\x67\xd1\x17\x91\xa4\x39\x47\x23\x96\x6c\x68\x71\xbb\xa6\x6c\x73\x85\x17\xa0\xf9\x1a\xb3\x44\xf4\xfb\x57\x74\xbb\xdd\x6a\x9a\xad\x21\x50\x6b\xd7\x58\xc4\x88\x13\x94\xf5\xaf\x62\x2b\x11\xc4\xa5\xbd\xb0\xe9\xd1\x04\x36\x3c\xb9\xf8\x65\x18\x4e\x9e\xf1\xed\xf6\xae\xb6\x76\x20\x2d\x74\x7b\xe7\x09\x67\x2c\x09\x1a\x4f\x20\x0d\x70\xf1\xf2\xe2\x43\x63\xd9\x9f\x48\x0a\x14\x6a\x87\x8d\x46\xd9\xe6\x32\xfa\x0e\xa3\x2e\x25\xe3\xf2\xc1\x0f\x84\xd0\xc6\xbb\x87\xcc\x77\x0e\x99\x67\x3a\x88\x35\x82\xb9\x78\x7d\xf1\x8e\x29\xe4\x82\x9c\x4c\xd6\x88\xe7\x82\xe0\xb5\x9b\xbc\x50\x22\x19\x0b\x44\x6a\xd3\x9d\x79\x62\x68\x83\x5d\xf4\xcc\x14\x4b\xff\x88\xb8\x14\x73\x80\x91\xbc\x1f\x52\xfe\x52\xb6\x25\x1f\x76\x36\xb9\x96\xb3\x5b\x1b\x1d\x57\x42\x6d\xe5\x63\xa3\xd1\x51\x31\x2d\xb2\x2a\xad\x46\xa3\xea\x28\xcb\x8a\x69\x5c\x6c\xb7\x71\x91\x91\x58\x4c\x0a\x40\x7f\x80\x73\x81\x2e\x66\xf9\x3c\x2b\x60\xe1\xbc\xe5\x15\x00\x69\x91\x55\xb0\xa8\xdb\x28\x62\xdf\xba\x9a\x7d\x56\xb0\x63\x44\xf8\x39\x98\xc6\x6c\xbb\x8d\x59\xa6\xce\x11\x28\xb9\x8c\x79\x2d\x73\x00\x52\xad\x44\xc8\x47\xa3\x58\xe5\x7e\x08\x4f\x96\xcf\x8f\xb2\x8c\x6d\xb7\xcc\x0d\xaa\xc9\xfa\xdf\x25\xdc\xf3\x2e\x31\xf9\x28\xe1\x9e\x47\x09\xb2\xda\x39\xf0\x55\x8c\x4c\x9a\x74\x23\x90\x94\x46\x2f\xdd\xe9\x4d\x03\x65\x33\x36\xef\x09\xbf\xd3\xa8\x45\x02\x48\xc8\x9e\xa9\x54\xd0\x03\xc1\xa0\xb9\x05\x71\xa3\xac\x88\xdc\xf2\x48\x2a\x51\xdb\xb5\x95\x9a\x42\xd4\x55\xb0\x76\xe4\x6a\x6b\x04\x54\xe1\x6c\x36\xaf\x7b\xdd\x51\xfc\xce\xa6\x38\x95\xb6\xd7\x92\x2a\x8f\xb1\x94\x2e\xc5\x13\xb9\x3f\xb5\x83\xd4\xfd\x8b\x6b\xef\x4a\x15\x47\xcd\xab\x85\xa0\xc6\x39\xc0\xbd\x41\xac\x91\x77\xe6\x7d\x90\x46\xa4\xf3\x55\x9c\x43\x2c\x6e\x90\x51\x4d\xc3\x2a\xcb\x7b\xaf\x10\xb6\x9e\x9d\xd5\x68\xa4\xba\x75\x44\x93\x25\x98\x56\x59\x99\x96\xa3\x51\x79\x94\x65\xd5\xb4\x9a\xc6\x79\xe0\x30\xf1\x3c\xab\xa0\x6c\xdc\x91\x2b\x56\xb0\x04\x20\x8d\x2b\x35\xe5\xb6\x00\x91\x41\x24\x5f\x58\x0e\x05\x8e\xea\xe9\x19\xa4\x55\x56\xc2\xaa\xf6\xf7\x42\x9a\xe4\x2a\x73\x42\xa6\xb1\x5a\xd1\xb7\x2f\x4c\x0a\x5e\x4b\xa0\xa4\xaf\xed\x25\x02\xbd\x9f\x5d\x01\x6a\x29\x01\xd3\xc2\x49\x0e\xbc\x7b\xec\xcb\x49\x73\xb9\x84\x41\x1e\x5e\x68\x05\xd5\x6d\x11\x0b\x55\xca\xb7\x3c\x73\x31\x57\x11\x58\x3b\x11\xb7\x3a\xef\xbb\xaf\x72\x0f\x7a\xef\xab\x34\x72\xcc\x95\xf1\x87\x4f\x61\x04\x21\x90\x6f\xb7\x31\xcf\x04\xc4\x2d\x5c\x58\x3c\x56\x17\x43\x66\x33\xf0\x61\xb1\xb9\xf5\xc4\x0a\x6d\x8d\x6e\x47\xbf\xae\xf6\x01\x55\xac\x37\xd6\x81\xad\x04\x12\x91\xd3\xca\x7b\xa7\xe3\x84\x05\xec\xd3\xfc\xca\xb8\x5b\x53\x69\xa6\x8f\x34\xca\x00\x69\x6b\x15\x66\xf2\xc0\x7f\x88\x48\x57\x83\x62\xa7\xde\x9a\x33\xd1\x73\x46\x66\xce\x3e\x11\xd7\xc7\xc1\xf7\xb3\xf8\xbb\xde\xe8\x1e\xf9\xbe\x79\x6c\xef\x1a\xa0\x95\x5f\x24\x5d\x99\x30\x94\x2f\x5f\x92\x42\xf0\x43\x87\x11\xf6\xd2\x74\x21\xac\xf8\x39\x51\x02\x31\xaf\x48\x36\xf7\x8b\x8e\x37\x0c\x5f\x4b\xa6\xd2\x6b\x6b\x18\x37\x56\x9e\xfc\xab\x74\x4c\x3f\x3e\x31\x19\xdf\x62\x1e\x3e\xa5\xfd\xfe\xff\x7e\xfd\xf2\xc5\x6b\xbb\xcc\x0c\x25\xf2\x00\x33\x94\xbc\x16\xfb\xe6\xd2\xeb\x55\x46\x92\xe7\xee\x29\x3b\xde\xbc\x45\x46\x92\x57\xcd\x41\xdb\x0f\x83\x16\x29\xd5\x24\x8f\x98\xf1\xf9\x40\x9a\x7e\xb6\xdc\xd8\x50\x46\x7a\xd8\x5a\x0b\xdf\x4d\x02\x65\xdf\x55\xd7\x7b\xc5\xf7\x8d\x65\x7b\x0b\x0b\xc7\x7a\x26\x51\xd7\x7e\xd4\xe5\x02\xde\xa1\x7c\x71\x65\x60\xf8\xaf\xe8\x36\x94\xb3\xce\x9c\x6b\xd6\xfa\x6d\xbd\x12\xcd\x4d\x6d\x14\xa9\x6f\xd1\xad\x09\xcc\x67\xab\x03\x2b\x14\x95\x26\x7a\xfe\xb8\xdd\xfc\x05\x8d\xfc\x4b\x85\x0f\x6d\x35\xf0\x4c\x0e\xb5\xe9\x9e\xf7\x88\x32\x30\x90\x1e\xda\x02\xeb\x0a\x44\x61\x6e\x6f\x9f\x10\xe3\x5c\xa2\x15\x49\xca\xb7\xea\xd9\x9d\xa0\x8a\x4d\x94\x75\xa4\x2d\x7e\xb7\x8a\x4c\xc2\x88\xe4\x68\x7e\x8d\xd6\x60\xa2\x9e\xac\xb5\x57\xd4\x7e\xbf\xfd\x6f\x55\x99\xa1\xb9\x9c\x6d\x60\x14\xf7\xa5\xf9\x18\xe3\x64\x3c\x38\xf8\x72\x87\x62\x0c\x97\x2f\xd0\x4d\x76\x74\x0a\xd1\x34\x46\x09\xd3\xa9\x52\xcb\x2b\xbc\x29\x4d\x48\x14\x49\xeb\xbf\x72\xbf\xc4\x48\x5a\x44\xdb\xe4\x5f\x12\x41\xfe\x9d\xe5\x9b\x8d\x7a\xfe\xd5\x3d\x7e\xae\x73\x5e\x48\xd4\x24\xfd\x7a\x45\x1b\x1d\x8c\xab\xc0\x88\xf0\xe7\x4b\xa3\xeb\x59\x0a\xf2\x80\x24\x0b\x8a\xd8\x02\x3d\x5f\x82\x58\x54\x05\x00\xa2\x0c\x25\x8d\xcc\x05\x86\xa0\x50\x51\xb8\xbe\xde\xae\x31\x73\xed\xaa\xef\x66\x7c\xde\xa4\x00\xd9\xdd\x97\x77\x40\x81\xbe\x80\x8d\x1d\xa5\x76\x4a\x85\x80\x5f\xfe\x55\xdc\xbc\x86\xbb\xf1\xef\xbb\xaa\x29\x70\xb6\x3e\xab\x73\x4c\x9e\x15\xf8\xf2\x8a\x3f\x6a\xad\xf3\xdc\x59\xb8\xcd\x33\xd9\x94\xa9\x9c\x77\xfa\x14\x3b\x5d\xb8\x5f\xab\xcd\x32\xe7\x28\xa0\x3d\x85\xd2\xf0\xa2\x51\x2f\x33\x44\x37\x88\xc4\x77\xbd\x9a\xa4\x26\x08\x3d\x41\x37\xc3\x16\x32\x17\x34\x84\x19\x14\x06\xa2\x14\x03\x19\x0d\x27\xc7\x82\x84\x1c\x30\x93\x7a\x4a\x25\x9c\x73\x62\x10\xaf\x37\xfc\x16\x32\x9f\xee\x93\x57\x5a\x76\xce\xda\x2c\xb8\xea\x5f\xf1\x80\x2c\x91\x76\x8e\xf2\x9b\x4d\xfe\x23\x67\xa1\x20\xd2\xb1\xdc\x1d\x8d\x70\x8b\x50\x95\xfc\xbd\xce\xdd\x11\x47\x82\x80\x10\x6c\x36\x16\x57\xc4\xec\x84\xf4\xd7\xaf\x5d\x81\x48\x4b\xb7\x10\x09\x94\x8f\x55\xc0\x34\x93\x45\xf0\x58\xaf\x2c\x72\x4c\xf1\x8e\x4e\x5d\xb8\x59\x6b\x82\xc7\x81\x99\xbc\x6d\x7f\xc6\x5d\x21\x30\x7b\xd6\x52\x35\xb7\xf4\x7b\xce\x9e\x43\xa6\x6e\x96\x55\x0e\x7c\x67\x6e\xa3\xcb\x80\x6b\x9d\xae\x83\xb8\xa7\xa1\x43\x47\x49\x41\xe9\xdb\x6a\xe3\x68\x55\x59\x1a\x8d\xb9\xed\xc7\x7a\x17\xb1\x29\x4b\xed\x8f\xb8\xa7\xa5\x25\x57\x22\x00\xa6\x2c\xed\xab\x65\xf6\x0f\xd4\xf2\x72\xa7\x7b\xc5\xd7\x02\xa8\x59\x07\xa8\xdf\x57\x05\x39\xb0\x71\x9d\xf3\x5e\x31\x92\x63\x9d\xef\xd8\xf4\xf1\x00\xe3\xdf\x3c\xc5\x72\x57\xc2\xdf\x04\x8a\x1a\x8d\x64\x44\x72\xad\xac\x84\x4b\x54\x20\x8e\x7a\x7b\x13\x2d\x7a\xc7\x5c\x4a\x8e\xb3\x3b\x9e\x96\x91\x00\x47\x38\x64\xe1\x6e\xbb\x65\xae\xd0\xa8\x34\xe5\x87\xcd\xcb\xf4\x1c\x3a\x09\xe9\xda\x16\xdf\xad\x30\x2a\x96\x1d\x2d\x4d\x97\x94\x43\x37\xc3\xef\xf2\x8d\x07\xa8\x02\x69\xb7\xad\x7e\xdb\x0f\x80\x03\xcd\x53\xa4\xf4\x4c\xb0\x91\x25\x80\x54\x54\x70\xdf\x34\x5b\x89\x25\x6f\x31\x59\xaa\x0a\x16\x57\x8e\x46\xb6\x0f\x8b\x80\xa5\xa5\x03\xf2\x79\x0d\xc9\x61\xc1\xc8\x57\xb2\x45\xb0\x7b\x55\x91\x8b\xc9\x5b\x0f\x85\x22\xdc\x40\x50\x7f\xad\xb3\x02\xce\xd0\x7c\x10\xf6\x08\x62\x6d\xd3\x1b\xf1\x46\x0b\xd2\xa0\xf3\x21\x06\x7a\x01\x6a\xce\x2d\xf5\x5a\x04\x43\x08\x80\xcf\x26\xf3\x36\x29\x22\x51\xaf\x4d\xab\x66\x61\xe0\x80\x97\x35\x60\xe5\xc2\x94\x57\xb6\x9c\x51\xc0\xf0\x03\x76\x2e\xee\x7d\x47\xec\x76\x1a\x9b\x21\x0b\x18\x2d\xda\x6f\x64\xe8\xec\xb8\x93\x15\x69\x2f\x59\x2c\x85\x7f\xdc\x3d\x6d\xe9\x8a\xc0\xe6\xd9\x4c\xfc\x3b\x9b\xcc\xa1\xfc\xff\x74\x3e\xd5\xff\x9b\x35\xa5\xfa\xf7\xdc\x1c\xd3\x4a\xcc\x50\x60\x31\x45\x7d\x74\x37\xe3\x5e\xc4\xcc\x0e\x8b\x2a\x3d\xd4\x42\x0e\xf3\xf7\xbc\x7c\x25\xdd\x52\x5a\xf1\x1f\x3f\x84\x7c\x52\x67\xad\x86\xc2\x1d\x44\xcd\x59\x4e\xca\x15\x65\xeb\xf6\x2b\x87\x57\xb1\x78\x4e\x90\x35\x08\x57\xba\x11\x3f\x96\xc8\x5e\x54\xde\xfb\x4e\x46\x76\xe0\x34\x1a\x2b\x5b\x79\x9e\x5c\x89\xe5\x4b\xb7\x8a\x5c\x1f\xa9\xe5\x09\x93\xb5\xcc\x6c\x76\xf2\x4f\x31\x8b\xd8\xe0\x96\xad\x2f\x24\xda\xca\x7f\x41\x3c\x4d\x7f\xfc\x22\x9e\xfd\xf3\x8b\xf9\x18\x80\xa9\xfa\x95\x88\x3f\xbf\x38\x01\x10\x67\x64\x76\x3a\x87\x34\x23\xb3\x07\x73\x98\x67\x64\xf6\xd5\x1c\x96\x19\x4f\x56\x2a\x52\xfa\x33\x19\xa3\xce\x99\x1c\x06\x83\x32\x8b\xcb\xac\x1c\x8d\x04\x29\x9d\x97\x25\xf0\x4d\x03\x29\x74\x34\x43\x6f\x6e\x37\x92\x93\x4f\x73\x28\x09\xf5\xb4\xa1\xd9\x25\xf5\xa7\xdc\x46\xa4\x8f\x58\x69\x7d\x63\xb8\x79\x8a\x99\x44\xe2\x86\x99\x6f\xa2\xd8\x1b\x36\x9f\x39\x25\x2d\x49\x80\x3d\xda\xc3\x44\x30\xbb\x0c\x70\xf7\x6b\x56\xd1\xbb\xae\x94\xe3\xc3\x65\x1b\x97\x88\x3f\x5a\xf0\x2a\x2f\x0c\x94\xcb\x34\x60\x58\x70\x32\x2d\x52\x20\xa3\x10\x75\x44\xa5\x59\xee\x17\x4a\x8b\x8d\x12\xa2\x96\x1c\x34\xeb\x08\x67\x28\xac\x14\x9c\x15\x19\x8e\xb9\xfc\x09\x17\x59\xbb\x5d\x5c\x34\x04\x63\xbc\x90\x42\x59\x58\xc6\x0b\x59\xb9\x96\x3e\xab\x81\x11\x5c\x7d\x26\x72\xa9\xdb\xda\x84\xd7\x52\x27\x6b\x20\xaa\xf1\xb2\xc9\xa5\xe5\x35\x74\x0d\x89\xb4\x8d\x44\x98\xa7\x45\x59\x96\xf1\xe9\x24\x3d\xad\x3b\x66\x3b\x4d\x2e\x0f\x9d\x07\xd2\xd5\x9e\x42\x92\x85\x9e\x18\x26\xd1\x8d\xc5\x55\x1e\x9a\x25\x02\xa3\x3a\x8a\x06\xd7\xc6\x98\x01\xc3\xa7\x09\x66\xc0\x72\xa3\x26\x52\xb9\x77\x90\xcd\x67\x0f\xc3\xcb\xcb\xd2\xde\x7c\x2c\xd5\x8e\x07\xd8\xc7\xd0\x80\x20\xb3\xc1\xe3\xf1\x5e\x13\x56\xd3\xbe\xc3\x7f\xde\x35\xaf\x4a\x8a\x82\xef\xf2\x6e\x23\xd5\xf0\xd4\x3a\x78\x3f\xde\x67\x77\xa1\x4e\x93\x5a\x62\x58\x41\x56\xd8\x2c\xdb\x6c\xeb\x34\x64\xa6\x01\x23\x63\x9d\x91\x46\x51\x2d\x69\x2b\x97\x64\x74\xaf\x56\xc3\xb9\xed\xa5\x21\x67\xf3\x0f\x21\x1f\xe5\x68\x32\xab\xa0\xcc\xed\x1e\xa2\xfa\xda\x16\xf8\x8e\xc3\xbb\xab\xa2\x97\x49\xff\xd8\x8c\xb7\xb5\xf3\xf3\xed\xd6\xf1\x5d\xa7\xbe\x21\xb5\x07\x9e\x4d\xad\xdc\x17\x50\x52\x87\x99\x23\x61\x16\x99\x03\xd8\xf9\x22\x00\x3d\x66\xae\x4d\x93\x67\xc6\xd0\x50\xcc\xad\x2d\x8f\x02\xd4\x29\x07\x77\x28\x21\x94\xe3\xd5\xad\xd9\x55\x75\x2b\xcc\x9e\xd9\xb9\xeb\xc8\x6d\x62\xce\x8e\x22\xd9\x05\x66\x5e\xbb\xa1\xa5\x0e\xb4\xcd\xe9\x75\x8d\x09\xd6\xd6\x19\x01\x3e\x81\xac\x7d\x67\x5d\xfb\x8c\x1f\xda\x79\xa0\x81\x51\x3f\x1d\xd8\xec\x80\xda\x8e\x59\xd3\x27\xd3\x14\x78\x31\x4e\x64\x80\xfd\x4d\xbe\x40\x56\xa0\xf9\xb7\xa7\xaf\x5e\x3f\x7f\xf9\xc2\xc9\x93\x63\x85\x2c\xac\x53\x24\x55\x76\x29\xe9\x94\xbf\xb1\x44\x12\x0e\xb7\x69\x2a\x58\x89\x13\x6c\x7d\xb0\x2c\x30\x34\xfb\x93\x96\x56\xc1\x05\x3d\xa5\xa1\xf3\x41\xfe\x56\xa6\x77\x69\xa9\x74\x78\xd0\xbb\x3c\x4e\x5d\xf9\xbb\x36\xe6\x72\x05\xbe\x60\x39\xc3\x82\x31\x68\x15\x34\x94\x59\x24\x6f\xff\xd0\x2c\xa5\x8c\x60\x95\xe8\x0d\x73\x3d\xca\xaa\xc3\x2e\x8a\xd1\x32\xf5\xa8\xbb\xac\x22\xeb\x63\xbb\xb4\xb6\x95\xb5\x92\x64\x6a\xeb\x68\xb3\xfc\xf7\xe6\x67\x18\x08\xca\xc7\xb3\xbe\xf7\x11\xb6\xa5\x34\x5a\x8b\x11\x83\x01\x1f\x8d\xa8\x8c\x89\xab\x33\x11\xe2\xec\x0e\x97\x4f\xd7\x1b\x7e\x9b\x1e\x9d\x42\x5c\x7e\x4b\xf3\x25\x26\x97\xcd\x0f\xb4\x54\x7f\xcb\xcd\x56\x7f\xbe\xce\xaf\x6d\x95\x27\x52\x74\xa3\xeb\xbc\x40\x37\xea\x8f\xbf\xe5\x05\x5e\xa6\x47\x13\xb8\xc4\xcb\xd7\x56\x40\x7a\x9b\xf2\xe4\x15\xa5\x4a\x5a\xab\xa5\xac\x49\x99\x5f\xa3\x65\xe2\xd7\x83\x26\x50\x92\xa4\x1f\x4a\xdf\x43\xaf\x86\x17\x68\x41\xd7\x48\x4d\xc8\xfb\x20\xf8\x72\xb4\xfc\x26\x5f\xbc\xf5\xcb\xa5\x38\x38\x6d\x16\x3a\x81\x8d\x88\xd7\x37\x32\x4e\x24\xca\xc3\xe2\xf7\x1b\x1a\x47\x7a\x8e\x0a\xbd\x2c\x23\x50\x43\xf1\x7e\x1f\xde\x50\x2e\x2e\x02\x75\xad\x07\x4c\xef\x0e\x6c\x6f\x1a\x42\xf9\x47\xda\x49\xbf\xf3\x21\x10\xd0\xa6\x56\xfb\xac\x57\x18\xb0\x29\xf4\x15\x5d\xc5\xc6\x51\xc8\x25\x08\x6c\xb7\xb9\xa4\x78\x7a\xb6\x47\x9c\x40\x40\x7b\xd4\x7b\x92\x81\xed\x50\xca\x07\xb5\x93\xfa\x30\xc4\x71\x6a\x98\x9c\x18\xd0\x9b\x28\x83\xfd\x94\xf4\x68\xab\xfa\x76\xb9\x86\x7a\x00\xaf\x53\xd3\x57\x07\x18\x03\x50\xac\xdb\x27\x15\x51\x84\xaf\xf8\xbb\xdd\xee\x9e\x93\x0a\x42\xf3\xae\x45\xd4\x0e\x92\xa0\x86\xb2\x43\x9e\x8a\x24\xb1\x17\x76\xbb\x8d\xdb\x74\x61\x9b\xae\xf3\xcf\x59\x9e\xb0\x64\x44\xc9\x32\x8e\x9c\x83\x8b\x00\x68\x51\x94\xe0\xae\x11\xe8\xf6\x8f\xe0\x48\xb3\x66\x7c\x0e\x3b\x13\x7d\x81\x6e\xb6\x5b\x33\x5e\x7b\x2f\x23\xc8\x41\x8d\xdd\x6c\x56\xda\x65\xd5\x84\xdb\xa0\x43\x4c\xe2\xb6\x49\x98\x8d\x58\x2e\xe5\x69\x40\x4a\xd0\xb8\x93\x3b\x07\xd5\x31\x99\xb6\x18\x20\x90\xde\xd5\x90\x03\x90\xa8\xcc\xcd\x4a\xd3\x44\x20\x4f\xe4\x03\x28\x43\xf8\x61\xc8\x01\x6f\x39\xd9\xc7\x14\x8c\x46\x91\xd3\x26\x3a\xca\x32\x2a\x5e\x1d\xd3\xcc\x14\x34\xf6\x38\x2c\xe6\x33\x2a\x85\xf6\xe2\xff\x0c\xc9\xff\x20\x87\x78\x1c\x25\xd1\x98\x3a\x61\xb9\x6b\xc1\x37\x56\x45\x01\x23\x46\xa9\xf4\xb8\xb4\xcf\x37\x3e\xec\xf9\xee\x92\x76\x3d\x0f\xb9\xad\xf8\x71\x5f\x72\xfd\x3e\x77\xbd\x52\x95\x74\x49\xe9\x00\xad\x83\xea\x12\x05\x7c\x17\xfc\x20\x33\xae\x6d\x61\x4f\xb2\x7f\xbb\x12\xbb\x91\xc6\x3d\xc1\xf5\xc1\x81\x7c\x8a\xb4\x17\x90\x33\xac\x4c\x21\x10\x74\xa1\xf8\x28\xd3\x40\xc6\xf7\x62\x8a\x1a\x2f\x8c\x14\x39\x73\x69\xcf\xa4\x11\xe5\xb5\x7d\x54\x24\x3b\x08\x83\x72\x12\x95\x44\xa7\x71\x97\x3e\xda\x39\x61\x57\xeb\x6a\x74\x6a\x9e\x78\xd3\x01\x48\xe0\x39\x42\x74\x03\xdd\xdd\x97\x2d\x39\x90\x01\x0b\x71\x42\x9f\x07\x4e\xfb\x40\xb2\x2b\xde\xd7\xa0\x31\x15\xff\xa7\xa8\xcf\xdd\xd9\x83\xb6\xd7\x98\x5c\x16\x32\xe2\x92\x72\x67\xd9\x01\x78\xc1\x23\x6c\xe4\x4d\x4d\x82\xda\xde\x71\x3d\x8d\x70\x8c\x1a\xe9\x15\x68\x3e\x29\xcf\xe1\x8f\x74\xc6\x07\xe0\x9a\x9d\xe6\x6f\xc7\xf9\x06\x7f\x22\xbf\xc7\x03\xf1\x51\x48\x30\xbe\x13\x51\x85\x40\x81\xab\x10\x5b\xa1\x43\xdf\xd9\x89\xf1\x84\x93\xe2\xc4\x03\x0f\x4f\x85\x03\x81\xf6\xeb\x1e\xdd\xbf\xef\xaa\xdb\xf5\x49\x0c\xac\xdf\xc1\x66\x52\x44\x25\x1e\x57\xf1\x92\x65\xd2\xcf\x1d\xf2\x1a\x76\x96\xda\x73\x6f\xb4\xc1\x31\xcb\x7c\xc3\x1f\x65\xdb\x20\xd3\x38\xf9\x8b\x66\x00\xe2\x8c\x37\x06\x10\x0c\x40\x9a\x39\xc6\x0a\x31\x86\x6d\x2f\x01\x1d\xb5\x42\x40\x97\x63\x19\x14\x81\xf7\x72\xe7\x0a\x3b\x3b\x7d\xf2\xc8\x2f\x61\x0d\x99\xab\x6f\x0f\x44\xa7\xd9\x2d\xc5\xfa\xd4\x53\x8e\xfe\x94\x4c\x92\x49\x14\x9c\x95\x63\xfa\xea\x62\x87\xff\x6e\x9b\xd0\xba\x26\xb2\x9d\x8f\x3e\xde\x68\xa4\x73\xff\xdd\xb1\xba\x0d\x49\xa8\x5a\x0b\x65\x99\x74\x8f\x6a\xd1\x75\x91\xb5\x24\x99\x5a\x91\x52\xca\x20\xc9\xc8\x68\x44\x76\x54\xb6\x72\xa6\x94\x40\x9c\xe1\xd1\x08\xef\xa8\x6c\x05\x4f\x29\x1e\xb8\x41\x58\xfa\x25\x5e\x44\x19\x55\x47\x4f\x5e\x47\xf7\x11\x0a\x3d\xa6\x0c\x7d\x2b\x4b\x6f\xe3\x48\x56\x1a\x0a\xe2\x3c\x82\xd4\x8a\x86\x06\xca\x2b\x42\xf5\x20\x3e\x3e\x52\x9a\x00\x8b\x21\x05\xcf\x88\x0b\x8e\x58\xd9\xb5\x92\x9c\xe9\x00\xb2\x92\x9c\x8f\x04\x0a\x58\xa4\x91\xf8\xb3\x86\xf6\x8b\x4e\xe8\xb8\x34\x9f\xed\x6f\xa7\xce\xe3\x02\xe5\xc4\x54\x50\x3f\xea\xb9\x40\x29\x1c\x2d\x82\x26\x97\xe8\x28\x53\x9b\x6c\xa3\x91\xd5\x70\x41\x8b\x6a\x4d\xc4\x1e\xbe\xa1\x4f\x44\x4f\x81\x76\x6a\x99\x4a\x4d\x91\x2c\xf2\x0d\xe6\x0a\x87\x78\xe5\x15\x59\x22\x56\x2e\x28\x13\xa8\xd5\x7a\x5c\x9f\x9c\x9f\x5c\xc2\x68\x18\x81\x84\x33\xbc\x96\xfe\xc6\x6a\xc4\xf2\x19\x65\x32\x15\x74\x18\xdf\x41\x96\xd9\x6d\xb2\x9b\xf0\x7c\x19\xd5\x73\x48\xb2\x09\xc4\x1e\x31\xe1\xc5\xbd\x71\x51\x57\xc0\xd2\x43\xa7\x48\x26\xe3\xf1\xd7\xb8\x41\x73\xdf\xe2\x35\xe6\xbe\x09\x59\x9e\xf1\xa4\xbd\x39\x31\x05\x03\xa6\xd4\x15\x6a\x72\x54\xcd\x2c\x97\x0a\x77\x26\x6d\x5e\x95\x41\x5c\xd9\x52\xdc\xe1\x55\xdc\x8e\xca\xf8\xf0\x41\x63\xfd\xa5\x02\x88\x3f\x36\x56\x7c\x7f\x45\xb7\x03\x99\xc7\xf9\xce\x28\x0e\xb5\x46\x5c\xde\xd3\x34\x4e\xfe\x0b\x9c\x80\x81\x4e\x60\x46\xe4\x8b\x42\x66\xa7\xf3\x26\xd3\x53\x43\xd7\xea\x98\x13\xc9\x06\xa1\xb7\x8f\x0a\x15\x74\xd4\xce\xf2\xb1\x5c\x9f\x34\x2e\x28\xfb\x0f\x62\x02\x49\x76\x87\x4d\x7a\x4d\xbd\xcd\x58\xb0\xd7\x0d\x21\xd5\xa3\x40\xc4\x2a\x1f\xf5\x78\xfc\x35\xef\xdd\x6c\x32\xc3\x73\x2f\xe4\x11\x16\x9b\x49\x9c\x69\xfe\x55\x07\x71\x0c\x4c\x71\x36\xb7\x2f\xf1\xa3\x78\x26\x66\x35\x07\x7b\x67\x85\x1c\x3b\x56\x79\x98\x48\x1e\x5f\x17\x5a\x3c\x75\x93\xa8\xd8\xd1\x7e\x8a\x37\xdc\xce\x53\xdd\xf8\xc0\x76\xaa\x4e\xee\x94\x44\x06\x99\xac\x9d\xe2\xca\x03\xd8\xdc\x75\xf3\x25\x24\x4e\x1a\x8d\x8e\x3a\xed\xe4\x95\x4f\x8f\x76\xb4\xaa\xfd\xb3\x0e\xd2\x37\xd1\x45\x91\x2f\xde\x46\xcd\xa6\xb9\xa3\x4c\x79\x16\x5d\x32\x84\x48\xb4\x7b\x72\xb1\xec\xa7\x12\x84\x11\xb7\xd9\x7c\xd5\xb8\x41\x23\x57\x1b\x78\xc2\xc6\x42\xd1\xa7\x07\x0d\x56\x0c\x0d\x34\x17\x84\xc8\xde\x33\x25\xcd\x99\x0e\x9a\x04\xfb\x03\xd2\x3d\x5e\x62\xa2\x79\xb9\xd6\x37\x31\x4e\x6e\x58\xbe\xd1\x76\xad\x08\x80\x7a\xd0\xc9\xec\x2c\x43\xf9\x51\x01\x32\xed\xd0\xc3\x3a\xc8\xaf\x9f\x3e\x47\xd5\x76\x43\xdb\xbb\x6f\x42\xd0\x1c\xcd\x9c\x86\x8a\xa6\x52\x83\x7e\x0a\x43\xbf\x3c\xdf\xd3\x4d\x55\xe4\x1c\x2d\xd5\xc4\x1f\x29\x8e\xf1\xc0\x60\x71\x3b\xfa\xd8\x19\x40\x4e\x6a\xbd\xcb\x83\x87\x51\xd5\x77\xf6\xe8\xd9\x3d\x1f\xdc\xb1\xd7\x6a\x67\xff\xdf\xe5\xe4\xf6\x7e\x7b\x63\x5b\xec\xec\x57\x07\x39\xbe\x5f\xd7\x6e\xa3\x43\x7a\xbf\xff\xe4\xdb\x0d\x0f\x19\x45\x7d\xbf\xef\x10\xaa\xd5\xce\xfe\xdf\x07\x32\x0f\x85\x44\xa7\xde\x77\x39\xc9\x2f\x11\x7b\x9f\x21\x74\xd3\x03\x46\x52\x04\xe1\xbd\x46\x10\x4d\xf6\xf4\xdc\x58\xcd\xde\xa3\xef\xa6\xd1\xee\xde\x8d\x78\xfe\xf0\xae\x4d\x8b\x9d\xfd\x36\xc6\xb8\x07\x76\x6b\x1a\x1c\xd4\xeb\xfb\xc0\x4c\xa0\xed\xce\xb1\x8c\x6f\xcc\xc1\x03\x98\x06\x3b\x7b\xed\xfa\x05\x1c\xdc\x7f\xb7\xe9\xce\x91\x1a\xfd\xc1\x33\x7a\x38\xd8\x7b\xad\xf6\xf4\xdf\x80\x98\x84\x87\xfb\x0d\xd3\x6d\x7c\xf0\x68\xe5\xfb\x8e\x54\xea\x51\x8c\x75\x25\x83\x28\x79\xf2\x5a\xaa\xc5\x9f\x08\x4a\x5b\x3f\x78\xd2\x8a\x10\x9b\xfc\x3c\xbd\xee\xb5\xcf\x9e\x3e\x7a\xf3\xc3\xab\xa7\xaf\x9b\xaa\xbd\xc9\x5b\xfa\xd7\xd5\x23\x09\x08\xf3\xfd\xda\xb0\xac\x9f\xed\x37\x15\x3e\xae\x25\x41\x6f\x03\xc3\x85\xdf\x3f\xfa\xec\xce\xf5\x95\x27\x48\x53\x10\x7b\xd6\xa9\xea\x7d\xae\xd5\x3e\xba\xa0\x8c\x6b\x63\xfd\x43\x29\x28\xdb\x64\x27\x70\x6b\xb8\xbb\x67\xdf\x4e\xa3\x3d\xf1\x7c\xc9\xaa\xc0\x8b\x7b\x4e\xdd\x6b\xb5\xb3\xff\x67\x94\x5d\xe0\xe5\x12\x91\xfb\x0d\xe0\x37\xdb\x43\xfe\x5d\xe7\x85\x75\x94\x38\x98\xfa\x6b\x1a\xed\xec\xfd\x05\xe5\xcf\x68\x45\xee\xd9\xbd\xd7\x6a\xf7\xa3\x25\xc9\xfd\xfb\xf5\xee\xb4\xd9\xd9\xb7\x4e\xd8\x71\xbf\xce\xdd\x46\x3b\x7b\xff\x81\xe4\x15\xbf\xa2\x0c\xff\x8c\xee\xb9\x3b\x9d\x96\x3b\xc7\x51\xd7\x5d\xd9\x85\xd1\xbf\xe4\xe5\xd5\xc1\xe3\x74\x5a\x1e\x30\x8e\xa8\xf6\x86\xde\x8f\x78\xe8\xb4\xdc\x8f\xc3\xac\xfa\x65\x2f\x16\xeb\x51\xd4\xfc\xf6\xd0\x36\x43\x25\xdf\xbf\x5c\x59\xeb\xb7\xba\x54\xce\x77\x3c\xbf\x21\x79\xf9\xaf\x66\x69\x62\xea\xbd\xeb\x0a\xd8\xf2\xee\xd1\x18\x74\xc2\x6f\x60\xb2\x2a\xd0\x82\x3b\xa9\x2e\xb5\x46\x92\x57\x9b\x63\xeb\x89\xec\x7f\x6c\x32\xa3\x1d\xcb\x21\x8e\x4b\xc4\xae\xf1\xa2\xa3\xb0\xb0\x4a\x2c\x4f\xef\xd9\x53\xa5\x47\xeb\x61\x89\xa7\xdd\x77\x70\x07\xcc\xee\xa2\x41\xfa\x66\xd3\x3f\xcd\x9e\x11\x5b\x35\xfa\xbf\x06\xa6\xd4\xaf\xaf\x51\x16\xc5\xb0\x82\x05\x5c\xc0\x15\xbc\x82\x4b\xb8\x81\x6b\x78\xdd\x82\x4e\xbc\x8a\x3f\x40\x67\xe5\x05\xa3\xd5\x3a\x11\xeb\xb4\x75\xfa\x63\x12\xcf\x26\xc7\xff\x6b\xbe\x3d\x9d\x4d\x8e\x1f\xcc\xc1\x8f\xc9\x09\x70\xf2\x1d\xa9\x56\x3a\xe3\x51\xa3\x5e\x19\xea\x14\x3a\xe5\x30\xe7\xc3\x02\xe5\x25\x57\x35\x87\xa7\xc9\xe9\x57\xc9\x04\x0e\x2f\x2a\x3e\xbc\xa5\xd5\xf0\x2a\xbf\x46\x43\xe3\xdc\xa0\x07\x1f\x47\xc9\xf0\x7b\xd1\x08\x0d\xab\xcd\x25\xcb\x97\x48\x54\x65\x43\xad\xed\x1a\xd2\x95\xea\x0c\x0e\xf9\x15\x22\xb6\x4e\x33\x7a\x12\x81\x01\x4b\x9e\xbc\xee\x78\x63\xc9\x42\x57\x50\x93\x31\xef\xa7\x57\x41\x67\xb0\x63\xfe\x6f\xaf\x8a\x15\xc5\x34\xb5\x6c\x91\xaa\xa8\xbc\xbf\xae\xfd\x19\x58\x5e\x3c\x63\xcd\xdf\xea\x93\xb8\xee\xd9\xb5\xfc\x4f\x15\x28\x31\x5b\xa6\xf7\xb8\x54\x85\x9e\x88\x2c\x63\xfe\x6f\x55\xc5\xf0\xcd\x19\xb3\x7f\xaa\x0f\x86\x5b\xaa\xfc\x39\xb9\x74\x69\xb6\xf2\xbf\xb9\x34\x59\xb6\xf2\x7e\xaa\x0a\x2e\x69\x92\xad\xbc\x9f\xba\x77\x4b\x51\x67\x2b\xe7\x87\xfa\xd8\xa1\x3a\xb2\x55\xb7\x4c\x55\xf5\xa9\xcf\x6c\xd5\x2a\x50\x95\x3c\x1a\x2f\x5b\xf9\xbf\x55\x15\x8f\x4c\xce\x56\xfe\x6f\xbd\x81\x0d\x2d\x97\xad\xdc\x5f\xea\x73\x87\xb4\xc8\x56\xdd\x32\xb7\xaa\x43\xed\xd8\xaa\x4e\x99\x1d\xd4\xb8\x05\x5e\xf9\x67\xe0\x71\xba\xcc\xfb\xa9\x81\xaa\x11\x90\x08\xb0\x6a\x7e\x79\xe7\x1b\x92\x0a\x67\x6c\xd7\x57\x0d\xc7\x0e\xa4\xb7\x40\xbc\x2b\x72\xf3\xc7\xd7\x85\xba\xf2\xd3\xd7\x6f\xcc\x2a\x16\xfe\x0a\xbf\xa9\x70\xb1\xfc\xe1\xd5\xb7\x32\xd5\x4b\x56\xf9\xbf\x07\xb6\xb5\xb3\x45\x6b\xbf\x83\x96\x5f\xe5\xa6\xfb\xf5\xd1\xf7\xcf\xcd\xe0\x45\xf0\xab\xd3\x7c\xe9\x57\xb0\x9e\x0f\x59\xde\x3a\x98\x9c\xa3\xe6\x63\xe9\xff\xd6\xa7\x2a\x95\xaa\x6e\xa5\x56\x89\x86\xdb\x4a\x60\x30\xb7\x5a\xab\x44\xef\x13\xa5\x05\xca\x89\x5b\xaf\x5d\xa4\x51\xc7\xfa\x02\x2d\x97\xe6\x30\x4b\xb5\xaf\xeb\x60\xb1\x6a\x70\x81\x0a\x4a\x2e\xcb\x37\x34\xbb\x6e\xfe\x56\x9f\xae\xf2\x52\x1c\x7b\x76\x6d\xfe\x32\x67\xdf\x88\x69\xe4\xa9\x37\x3f\x55\x05\x15\x16\xc7\xea\x42\x1b\x67\x57\xfd\xb9\x21\x25\x24\xae\x7e\xad\x08\x89\x26\xd0\x49\x0f\x21\x25\x1a\x1f\x24\x95\x6b\x52\xa0\x9e\xb6\xd2\xa3\x9e\x42\xf5\x1a\x06\x25\x74\x4a\xd9\x24\x80\xfd\xc9\x6b\xc7\x5e\xe6\xb6\x8f\x0c\xeb\xa3\x87\x3e\x9f\x89\x0c\xb8\x8b\x4d\x5c\x90\x29\x4a\x91\x13\x44\xc6\x8d\x16\x22\x66\x95\x6a\x2d\x72\xd8\x76\xc6\xc4\x6c\xfb\x4d\x12\xcb\xfb\xf8\x00\x4f\xaa\xf8\x2b\x59\xa3\xbd\x68\x07\xaf\xd2\xb6\xd8\xc9\x35\xeb\x7b\x7a\x70\xaf\xba\x7e\xef\xde\xb9\xc4\x71\x2f\xc3\xd1\xd4\xf9\x0d\x40\xc8\x60\xe7\x2a\x55\x86\x6a\x81\x28\x8f\x95\x74\xdd\x24\xf9\x3f\x60\xf5\xbf\x6a\x66\x39\x84\xff\x0f\x38\xf5\x43\x44\x23\x21\x3e\xe9\x57\xba\x0b\xfb\x50\x45\x37\x22\xe5\x81\x8b\xfe\x3d\x2c\x78\xb7\x44\xe8\x37\x02\xe7\xfb\x17\xdc\x12\x71\xec\x73\xf4\x0c\x0b\x57\x3e\x9f\x9c\xe0\xfd\x85\x1e\x21\x31\xcb\x2e\x79\xc3\xa7\x21\x50\x8a\x0c\xc1\xc2\xf1\xd6\x95\xa6\xba\x7a\xd6\xe9\x3a\x17\xa8\x95\x7b\x8c\x0d\x80\xbe\x5b\x58\xd3\xb4\x71\xd2\xb8\x50\xa4\x6f\x04\xab\x0e\x15\x2c\xe6\x11\x6a\xb2\x94\x87\x59\xf9\x94\x7a\x5f\x65\x22\x49\x70\x51\xbd\x45\x8c\xf7\x35\x50\x49\x46\x45\x83\x16\x91\x0f\xea\x18\x81\x60\x90\x2b\x4c\xc4\xfe\x6e\xb7\xe6\x2f\x4c\xc9\x80\xab\xe8\xab\x48\xa5\xc7\x91\x9e\x72\x2c\x32\x59\xa7\x60\x9b\x96\x83\x4d\x75\x46\x2b\x09\xab\xfb\x6b\xba\xfb\xdf\xdf\xa0\x77\xd6\x66\xf1\x2f\x55\xd4\x63\x6d\x02\x2a\x56\x41\xbd\x12\x67\x29\x2e\x0d\x71\x57\x4a\x13\x79\x4e\x49\x7a\x74\x5a\xbb\xf3\xb2\x53\x6a\x57\x71\x37\x3c\x14\xfa\xae\x89\x92\xd4\x5f\x57\xdd\x0e\x1a\xae\x68\x80\x51\xd7\x2a\xf7\xd4\x6a\x2e\x62\xbe\x7f\xe0\xa6\x32\x69\x2a\x57\xe2\x4a\x64\xad\x2d\x87\x71\x25\xa8\xb1\xa9\xfc\x37\x2e\x40\x5a\x75\xe2\x2b\x15\x00\x88\x8d\xf6\x46\x72\x7b\xb0\x86\xdb\x3a\x9e\x00\x2c\xc4\x31\xaa\x7c\xba\x3d\x74\xbf\x6e\xb9\x5b\x96\xfc\x1b\x45\xf5\x8e\xf8\xf9\x80\x47\xed\x13\x39\x04\x7e\xbe\xe5\x7e\x36\x77\x07\x1d\xc5\xd1\xf1\x7f\xf8\x2a\x39\x7d\x90\xfc\xa9\xeb\x00\x81\x0a\x24\x9d\xdf\x54\x4a\x78\x9b\x19\xde\x94\x7f\xa2\xa9\x6a\x67\xb1\xee\x1e\x76\xec\xb9\xdb\xe9\xbe\xbd\x64\xe0\xad\xb8\x09\x43\x6c\x82\x10\x3a\x15\x43\x86\xb1\xb3\x39\x24\x32\x18\x6a\x76\x74\x0a\xa9\xd9\x2d\xce\x6e\xad\x9f\x6e\x0e\xcb\x0c\xcd\x5a\xfd\xcf\x63\x70\x76\x14\x93\x2c\xce\xb3\x32\x21\xe8\x1d\x8f\x01\x48\x96\x94\x20\x15\x55\x52\x5a\xa9\xe6\x2a\x1b\x3b\x80\x47\x7c\xbb\x65\xda\x08\xfd\x28\xcb\x38\x38\x13\x43\x82\xb3\x7a\x21\x25\xf8\x15\xb8\xc3\x62\x0a\x34\xab\xea\x15\x26\x79\x51\xdc\xde\x89\x09\x1c\x91\xd1\xa8\x4c\xd4\xdc\x9b\xbf\x62\x60\x2b\xe1\x55\x8c\xb5\x9c\x9f\x5a\x4b\x74\x56\xcb\xe5\x0d\x1a\xf9\xbf\x40\xf0\x5a\xfa\xaf\xc5\xc2\xc3\x9c\x73\xb4\xde\xf0\x21\xa7\x43\x19\x00\xb3\x5a\xf0\x8a\xa1\x21\xa1\xe4\x58\xae\xf0\xa2\x40\xd6\x87\x27\x02\x75\x1d\x3b\x81\x81\x58\x0c\xee\xea\x76\xee\xe7\xbf\x48\x60\xb1\xde\x18\xef\x99\x80\x8f\xe7\x97\xd2\x97\x99\xe9\xd0\xca\x74\xbd\xa1\x04\x11\xae\x0a\x6b\xa8\xdd\x4b\x3b\x46\xd5\x2c\xe3\x31\x82\xa7\x60\x36\x91\x79\xd4\x59\x96\x65\x6e\x7f\x5e\x54\x3d\xaf\x53\x99\x84\x44\x53\x03\x47\x36\xf0\xa4\x4d\x58\xc4\xaf\xd0\xd0\xcc\x71\xb8\xc9\xcb\x12\x2d\xc5\x96\x89\xe2\x9f\xf4\xad\xf8\x69\xa8\xee\xc9\x70\x5d\x95\x7c\x78\x81\x86\xf9\x50\xf7\x27\x81\x88\x8c\xb3\x68\x18\xdf\xd2\xca\x34\xff\x29\x1a\xb3\x71\xf4\x13\x88\xf4\xe1\x63\x70\x57\x3b\xaa\x1a\x79\x4c\x04\x78\x6e\x05\xcd\xae\x44\xc7\xcb\x5b\x92\xaf\xf1\xc2\xde\x49\xb3\x52\x6f\x55\xd3\xc0\xee\x75\x9a\x1e\xe7\x05\x8f\xd2\x43\x6a\x46\x21\x24\xb6\x42\x7c\x71\x75\x92\xff\x2b\x6f\xe9\x36\x65\xf9\x47\x8f\xb7\x12\x70\x37\x63\x4e\xc6\x05\x8b\x6e\x81\xfc\x90\xf0\x2b\x44\xe2\x96\x8b\x2a\x4a\xe8\x5b\x8b\x31\x12\xf1\xd2\xc7\xe6\x92\xa0\x3a\x20\x68\x53\x0b\xec\x9a\x4b\x7d\x5c\x2c\x8d\x4b\x57\x8b\xf2\x0a\x95\x1b\x4a\x4a\x14\x8a\x71\xf7\xa7\xc9\x69\x96\x65\x48\x7a\xfc\x57\xa5\x8e\x89\x67\x34\x2b\xbb\x1b\x7e\xd5\x69\xa8\xf1\xc0\xce\x66\x0f\x1e\x74\x9a\x7d\x93\x2f\x5f\xa1\x7f\x57\xa8\xe4\xbb\x07\x9c\x74\x5a\x1a\xfd\xce\xee\x76\x7f\xea\xb4\xfb\x33\x25\x68\x67\x9b\xd3\xee\x58\xae\x22\xab\xd3\xc2\xb5\x35\x13\x0d\x55\xe8\x7c\xd1\xcc\xe8\x97\x76\x4f\xf1\x7f\x75\x86\x73\xd4\x4e\xbb\x9a\x9a\x46\x5f\x67\xff\x63\x32\x91\x51\x78\xe5\xcf\x87\xff\xef\x64\xd2\x07\x7c\x52\x96\x55\x1a\xa6\x51\x15\x86\x6e\x1b\xf4\x5a\x55\x1c\x17\xe5\xc9\xba\x22\x97\xc7\x9a\xc8\x3f\x5e\x51\xdb\x3a\x50\x75\x89\x38\x62\x6b\x4c\xd0\xf1\x05\x5d\xde\x1e\x6f\x94\x92\xf4\x7e\xc9\xda\x0d\xcb\x71\x57\x0f\xdc\x98\x8c\x01\x77\x30\xc7\xc5\x67\xc6\xe6\x99\x0c\xdc\x79\xef\x74\xe2\x10\x25\x57\x28\x5f\x22\x56\xbe\xa1\x5a\x07\x8c\x61\xfb\x4d\x92\x52\x33\xeb\xa3\xa8\xeb\xeb\x58\xde\xf7\x4f\x11\x5b\x43\x81\xec\x34\x23\xe5\xe7\x5b\xb6\x99\xad\xc8\x76\x7b\x57\x0f\x70\x52\x31\xc1\x47\x63\x19\x1d\x2f\xe3\x83\x76\x06\x7b\x9d\x52\x52\x4d\x28\x02\x03\x3a\x1a\xc5\xd8\x2c\x48\xd7\xd3\x31\xf6\x6d\xb1\xe8\x19\x52\x60\x1c\x21\x65\x66\x49\x8b\xf4\x6c\x8a\xa7\xe8\xcf\x4f\xdf\x88\x37\x21\x4f\xd6\x88\x5f\xd1\xe5\x76\x7b\x94\x27\xe2\x54\xb7\x5b\x1b\xc3\x3c\x37\x5d\x8e\x46\xb1\xfd\x7b\x16\xe9\x34\x9b\xc7\x6f\x74\x1c\x3f\xe7\x93\x4e\xfe\xaa\xf3\x27\x82\xed\xb6\x69\xd7\xf4\x26\x27\xd8\xdb\x5f\xe6\xc6\x93\x97\xd2\x91\xb3\xe1\xe2\x2a\x67\x25\xe2\x59\xc5\x57\xc7\xff\x33\x02\x30\x57\x5b\x1c\xcc\x65\xad\x7c\x8a\x20\xcd\xee\x2a\x56\xa4\x08\xaa\xe5\xa5\xbc\x86\xb9\x7a\x00\x9d\xc3\xd1\xed\xbc\x48\x89\xe7\xe2\xbb\xc6\x5d\x71\x0e\x12\xf5\xf8\xb6\x47\x52\xcf\x01\x96\x9d\xa9\xa7\x18\x8b\xe3\x95\xd1\xfa\x21\x02\x75\xe0\x65\xf1\xec\x96\x5f\xbd\xfe\xdb\xf7\x82\x0f\xbc\x8a\xef\x98\x46\x05\x29\x82\x9b\xfc\xb6\xa0\xf9\x32\x95\xd1\xeb\x9d\x87\x4a\x79\x28\x75\xbb\x6c\x98\x77\xd5\x85\x0c\xa3\xa4\x3b\x11\x04\x0b\x77\x5e\x32\x35\xd7\xd7\xd5\x62\x81\xca\x52\xce\x96\x41\x6a\xde\xb5\xf6\x42\x98\x1a\x12\xba\x9b\xb1\x23\x53\x88\x40\x11\x66\xcb\x90\x80\x69\xb1\x05\xd0\x2b\x4f\x0f\x7b\x90\xd5\xc1\xea\x59\xa6\x5d\xb4\xa2\x2e\x08\x4a\xae\x72\xb2\x2c\x2c\xbe\x8f\xb9\xc6\x91\x10\xc7\xdc\x00\x16\x50\x09\xbb\xf4\x4c\xe9\x68\x44\x05\xc6\x77\x0c\x23\xa6\xce\x51\x30\x19\xf6\x33\xa6\x20\xa5\x35\xdc\x08\x68\x7b\xa6\x26\xaf\x06\x78\x46\x59\x3b\xd7\xbd\x9f\x31\xcb\x20\xe9\x37\xe8\x1d\x57\x6b\xe8\xd6\x57\x41\x6e\x25\x89\x41\xcd\xa9\x50\x7d\x4b\xc5\xb1\xf5\x0d\x1a\xbb\x30\x7a\xe0\xd2\x75\x7f\xde\x5b\x23\x53\x24\xca\xb4\x34\xbd\x54\x9a\xb8\xb7\x9f\x94\x86\xf9\xbe\xc8\x31\xd1\x78\x38\xf0\xe4\xce\x54\x74\x21\xcd\x90\xcd\x05\x82\xd2\xc3\xd8\x60\x73\x89\x89\xca\xaa\x25\x4c\xbd\x04\xd9\xce\x27\xeb\x97\x09\x77\x80\x12\x2e\x19\xc0\xd6\x4d\x6e\x9c\x89\x15\x27\x90\xfd\xef\xd7\x2f\x5f\xa8\x03\x8c\x19\xd0\xe4\xbf\x02\x9c\xa3\x98\xba\x21\x13\x5e\xdf\x12\xae\x41\xcd\xd8\x71\x51\xed\x59\x69\x20\x72\x70\x24\xe8\xd9\xed\xf6\xc1\xe4\x4f\xca\xc7\xfc\xc1\xe4\x7f\xa8\x3f\xa2\xbf\x3c\x7d\xf4\x24\x12\x6c\xa6\x7e\x03\xa6\x0b\x4a\x4a\x5a\xa0\xe4\x26\x67\x24\x8e\xde\x5c\xe1\x72\x68\x50\xcb\xf0\x26\x2f\x87\x95\x74\xb1\x10\x8c\xcd\x05\x1a\xca\xf9\x2d\x87\x79\x39\x14\x48\x3a\x89\x20\x03\x29\x31\xa9\xb9\x8d\xc3\x67\x3f\xbd\xbc\x9b\xf8\xe8\x4a\xef\xdd\x56\x56\xbc\x73\xfc\xef\x0a\xb1\xdb\xe3\x4d\xce\xf2\x75\xbb\xaa\x82\xe5\x8f\x1f\x1e\x3b\x24\x0c\x77\xb3\xd0\xeb\xf7\xf8\x6e\xc1\xd0\x12\x11\x8e\xf3\xa2\x4c\xa3\x32\x5f\xa3\x63\x95\xe2\x3a\xaa\x21\x92\xd1\x8c\x88\xde\xf6\xcc\xfe\xb5\xdd\x12\x49\x09\x6c\xb7\xf2\x79\x06\x09\xa7\x3f\x6c\x36\x88\x3d\xce\x4b\x14\x03\xf1\x26\xe4\x3c\x07\x82\x13\xd5\xaf\x77\xd3\x50\x1d\xa6\x53\x24\xc1\xc5\xcd\xae\xa0\x5b\x6b\xe9\x82\x25\x44\x04\xba\x6e\x82\xcb\x4f\x23\xf0\xf5\xf1\xe9\x34\x1a\x45\x69\x34\x8d\x06\xf2\xeb\x38\x8b\xa2\x31\x1e\x4b\x64\x6d\x77\xfe\xff\x88\x8d\xff\x5e\xee\x3b\x30\x5d\xd7\x32\x9b\xa1\x24\x38\xbc\x9b\x6e\x2b\x4c\x89\x24\x31\x14\x7c\x2b\xe6\x17\xaf\x6e\xcd\xd7\x54\x7f\x55\x3f\x9b\xe4\xbd\x3b\x01\xa8\x0f\x14\xfa\x00\x28\x04\x15\x1f\x0e\x13\xa1\x6d\xc9\xf0\xef\x2d\xa8\x27\x24\xd9\xc9\x8f\xb3\x1f\xe7\x5f\x9c\x04\x28\x7a\xec\x84\x9c\xb6\x5f\x51\xdc\xa4\xe6\x84\x05\x5c\x0c\x64\xe6\xcc\x8e\x84\xae\x04\x60\x45\x59\x5c\x65\x13\x99\xe2\x57\x41\xe8\x59\xf5\xb0\x38\xab\xc6\x63\x40\x12\xae\x68\xb1\x29\x8d\x31\xcc\x61\x39\xab\xe6\x20\x45\x71\x3e\x8e\x66\xd1\x38\xf6\x22\xd2\xc9\x6f\xd3\x2a\x8d\x22\x30\x8e\xe6\x91\xaa\x6b\x13\xc1\x4a\x10\x6e\x81\xa6\x1e\x7b\x31\xc4\x64\x58\x02\xd3\xeb\x42\xb7\x5e\x98\xd6\x7a\xe8\xa6\xaf\xfb\xac\x40\x34\x16\x33\x91\x3c\xa4\xfa\x4b\x09\xfc\x54\x6f\xde\xf8\x0b\x3d\xaa\x21\xdb\xea\x38\x8a\x20\x02\xc9\xbf\x28\x26\x71\x34\x8a\x9c\x00\x1e\xff\xcf\x83\xc9\xc9\x25\x8c\xc6\x11\xf0\x22\x69\x6b\x5a\xd8\xa6\x25\x1a\x8d\x74\xb8\x37\xf9\x27\xcb\x22\x19\x23\x29\x94\x47\x65\xca\x62\x90\x32\x88\x66\x48\xaf\x60\x9e\x21\xb2\xa0\x4b\xf4\xc3\xab\xe7\x8f\x8d\xe8\x27\xe6\x60\x1c\x65\xd1\x38\xf0\x85\x01\x37\x84\x75\x37\xb4\x9f\x35\x4f\xef\x8f\x5b\xdd\x54\x29\xf0\xc5\x49\x79\x5b\x72\xb4\xee\xf9\x88\xde\xf1\x13\x2d\x41\xfb\x44\x52\xa4\x57\x55\x81\x4a\xf1\x92\x62\x72\x59\x15\x39\xc3\x3f\x23\x41\xa9\x15\x15\x93\x97\xdd\x18\x5b\xf3\xe4\xb9\x99\x98\xdf\x92\x7b\x3f\x7b\x54\x06\xca\xfa\x39\x7a\xde\x98\xee\xdf\x85\x55\x05\xea\x79\x59\xa2\x0d\x43\x0b\xc1\xa8\x2a\x0b\xed\x66\xec\x21\x2e\x87\xf6\xeb\xd2\x5a\x5d\xa3\x77\x82\x9d\xc2\xbc\xb8\x4d\x87\x78\x2d\x76\x7b\xd8\x34\x59\x31\xba\x1e\x7e\xd9\xda\xdd\x2f\xcf\x22\x78\x74\x0a\xef\xf0\x32\x6d\x6f\x7c\x72\x59\xd0\x8b\xbc\x28\x23\x58\x11\x8e\x8b\x34\xfa\xca\x84\x48\x72\x36\xa1\xdf\x92\xc9\x0d\x4b\x03\x23\x67\x5b\xef\xbb\x68\x4d\x02\x3a\x3d\xc4\xe0\xf0\xf5\xdf\x0d\x9d\x86\xc3\xfa\xa3\xee\x82\xd3\xf3\xa1\xfb\x60\x01\xea\x3d\x77\xc1\xb6\xbf\xdf\x1e\xd8\x66\x1f\x79\x07\x6c\xbf\xb5\x47\x2f\x39\x00\x02\xdd\x4b\xe4\x34\x80\xfe\x55\xf3\x36\xb3\x7d\x2b\xfd\xbb\xb5\x03\xd5\xb4\x50\x85\xc0\x39\xbd\x98\x26\x84\x4f\x7c\x6c\x72\x16\x1f\x4d\xb2\x4c\x93\x7a\x4f\x5f\xfc\x2d\x79\xfa\xff\xbd\x79\xfa\xe2\xc9\xf9\xf7\xaf\x5e\xbe\x79\xf9\xe6\x1f\xdf\x3f\x7d\xbd\xdd\xee\xf8\xa8\x8f\x0c\x8c\x46\x3d\x4e\x1e\xe6\x48\x6d\x8e\xd8\xf7\x81\x8e\x76\x27\xbf\x2e\x08\xe9\x2c\x20\x9e\xb8\x00\xa1\xf3\xcb\xd5\xfd\xb7\xa7\xbb\x47\xef\x85\x49\x3a\xbb\xf4\xab\xc3\x26\xe1\x9d\x72\x46\x73\xf6\xaa\xcb\xd2\xfb\x00\x6e\x94\xb4\x0e\x38\xed\x78\x7d\x7b\x9e\x5c\xcd\xb4\xe5\x6f\x91\xd6\xfd\xee\xe3\xaf\x2c\x5d\x62\x94\x2b\x1d\xd5\xac\xd5\x9e\xf2\x6c\x02\x59\xa6\xcb\x0d\x97\x72\xc6\x1f\x9a\xbf\xcf\xf8\x78\x0c\xd8\x8c\xcf\x55\x66\x62\xab\xc4\xd4\x7f\xa8\x8e\xc5\xde\xc7\x08\xbc\x8f\x98\xd8\xe0\x29\x5f\x60\xea\x8b\xad\x34\xcf\x84\x6e\xe2\x67\xba\xdc\x01\x9f\x0b\x4c\x4c\xf4\x01\xe5\x50\x31\x13\x64\xd7\x5c\xd0\xdc\x8b\x9c\xc7\x62\x07\x40\x13\x14\xf9\x41\x96\x65\x58\x2f\x6d\x34\xc2\x3a\x74\xd9\x0d\xe6\x57\xb4\xe2\x8f\x69\x45\x78\xca\x66\x91\xfe\x7d\xbc\x10\x05\xd1\xdc\xc7\xaf\x7e\xa8\x03\x12\x63\x00\x02\x92\x9d\x30\x18\x78\x37\xe6\x33\x00\xc2\x27\x38\x10\x4f\x8a\xe8\x5d\x0a\x34\x9b\xcc\xf7\x6f\x85\x21\x2e\x0f\x23\x42\x4f\xf6\x6d\x89\xff\x82\x1c\xd2\x15\xa6\x24\x94\x7b\xe4\xa3\x93\xaf\xcd\x5b\xdb\x26\x65\xed\x8b\xdc\x90\xb2\x26\xa0\xac\x9d\xb8\x4c\x47\x69\xcb\x63\xe2\x1a\x47\x35\xed\xdd\x24\x69\xee\x18\xac\xf5\x86\x37\x73\x61\xde\xbb\xef\x4d\xd9\x8e\x71\xd0\x09\x7a\xdb\xf9\xc9\x05\x7b\x77\x6a\xd6\x65\x3a\x9b\x9d\x7c\x71\x02\x23\x31\xce\xec\xa4\xfc\xe2\x04\x9b\xbf\xff\x19\xe7\xef\xb6\x82\x65\x05\x58\x15\x7f\x71\x8a\xd4\x97\x98\x2e\x38\xdd\x6c\xaf\x31\x03\x95\xf9\x84\xdb\x5f\xb0\xff\x21\x2f\x70\x5e\x6e\x95\x2c\x6f\x7b\x41\x49\x55\x82\x56\xa7\x17\x15\x30\x9d\x95\x4d\xd9\x6a\x95\x17\x5b\x4e\xd7\x39\x07\x54\x7f\xa5\xe6\xeb\x8c\xe3\x39\xa8\xd6\xba\x38\x77\x0a\x73\xaf\xac\xd4\x0b\xb0\xdd\x4e\xd3\x78\xf6\xcf\xd5\x1c\xac\xd0\x36\x9e\x15\x6c\x0e\x56\x66\x32\x5f\x3c\xb8\x36\x95\xae\xf0\x35\x32\xc5\x66\xc0\x7f\xe6\x08\xd3\xea\x76\xbe\xfd\x77\x05\x6e\xcd\x02\x4d\x83\x77\xdb\xc5\xd5\xb6\x2c\xb7\xe5\x55\x7b\x69\xeb\x9c\xb3\xed\x35\x62\x7c\x8b\xc9\x12\xc4\xd3\x14\xbf\xdb\xa2\x77\xa6\x16\x5e\x20\xb3\xe3\xeb\x6d\x01\x68\x55\xa2\xe6\x8b\xf3\x01\x2f\xba\xe5\xd4\xf6\x82\x88\x2d\x42\xc4\x14\xaa\xe1\xff\x5d\xe1\x9f\x4d\xc9\xcf\x62\xac\x39\x34\xd0\x2c\x8e\x5f\x6d\x8e\xaa\x5a\x96\x7e\x53\x02\xd0\x8d\x3d\xfd\x9b\x32\xb0\xc5\xd5\x5a\x15\xc6\x39\x20\x79\x71\xbb\x8d\x2f\x40\xbe\x8d\x97\x00\xe7\x97\x84\x6e\xe3\x0d\x90\xc1\xf8\xaf\x90\xf8\x93\x51\x59\x56\x82\x5b\x42\x37\xdb\x98\x83\x2b\x04\xe2\x12\x97\xdb\x12\xd9\x71\x4b\xac\x47\xf9\x67\x2e\xfa\xeb\xff\x2e\x4f\xf0\x1a\x99\xd9\xad\x90\x73\x6c\xa5\xb7\x08\xde\x2d\x92\xa7\xee\x34\x0e\x9c\x2f\xb6\x5f\x6f\xf5\xde\x00\xc4\x9a\x42\xf9\xb7\x3e\x5e\x40\xaf\x9b\x0f\xe2\xef\x0e\x40\x20\x6f\xf8\xf6\x79\x8a\x23\x37\x00\x5f\x82\x18\x95\x60\xea\xcd\x96\xb6\xda\xc7\xe5\x15\x6d\xaf\x68\xc1\x70\xa9\xae\x6b\x8c\xcb\x6d\xb3\x5f\xd8\xde\x66\xf0\x6e\x86\xd1\xdc\xb4\x7a\x87\x3b\x97\x39\xae\xca\x2d\x36\xed\xaa\xb2\xf7\xe2\x76\x26\x28\xe1\x10\x11\x77\x3a\x16\xda\x05\x74\x9b\x2d\x7b\xd7\x5c\x07\xb7\x1c\xbf\x73\xe0\xf4\xe7\xd6\x52\x97\x39\xcf\x2f\xf2\xd2\x5d\xee\x1c\x62\xc6\x90\x84\xdf\xef\x73\xcc\x04\x0e\x8b\x04\x35\x20\x4d\xd7\x37\x88\x6e\x0a\xb9\x9b\xd1\x3a\x17\x05\x6b\x75\x33\xa2\xc5\x15\x2e\x96\x11\x54\xff\x33\x5d\x58\xa2\x77\xd2\xba\xf8\x9d\x3a\xcb\x68\x4d\xaf\x91\x68\x43\x35\x1a\x88\x16\xf4\x26\x82\xd1\x5b\x4c\x54\x97\x3f\xd3\xf5\x05\x16\x35\xd4\x1f\xf2\x2e\x55\x44\x92\x35\xd2\x40\x72\x16\xa1\x7f\x57\x78\xa3\x73\x83\x61\xb2\xa2\x6c\xad\x52\x8a\xc3\x88\xa9\x68\x04\x6b\x4a\xd0\xad\x18\x74\x83\x16\xa2\x07\x65\x81\x2c\xff\x58\xe1\xf2\x4a\xfc\xbe\x42\x68\x13\xc1\xe8\x5f\x28\x17\x4f\x41\xb4\xa1\x85\xbc\xf1\x5d\x11\xf2\xbe\x17\xfe\x53\x1a\x30\x9e\xfc\xf3\xc7\xf2\xbf\xbe\x38\x81\x2c\x3b\x89\x67\x3f\xde\xfc\x78\x72\x3c\x1f\xcf\xce\x7f\x3c\xf9\xb1\x3c\x9e\x83\x78\x96\x1f\xff\xfc\xe3\x72\x3e\xfe\x02\x9c\x40\x62\x6a\x88\x4f\x63\x10\xcf\x1e\x1d\xff\xdf\xb9\xae\xf0\x5f\xa2\x02\xce\x4e\xfc\xb2\x93\x56\x4e\x15\x27\x89\x88\x0c\x16\xcb\x0d\x31\xcd\x1e\x92\x33\x36\x1e\x03\x94\x38\xa7\x30\xe3\x33\x36\x4f\x38\xfd\x96\xde\x18\xa5\xc3\x3c\x3b\x9a\x74\xf2\xa5\x34\x7d\x1a\xda\x53\x05\xfe\x35\x9d\x93\x87\xf8\x8c\x08\x6a\x3d\xe3\x33\x32\x87\x28\xb1\x60\x37\x63\xb3\x49\x67\x04\x36\x3b\x6d\x57\x3a\xdd\x5b\xe9\x39\xb9\x46\xac\x44\x3d\x75\x27\x3d\x75\x43\x83\x4f\xe6\x5e\x9a\x3e\x70\x17\xa3\x0c\x6d\xb7\x77\x35\x70\xf7\x26\xf3\x76\x6a\xbb\xad\x62\xe0\x0e\x21\xef\x53\xd6\x2e\x90\xd5\xdc\x24\x07\x4c\xd2\x37\x96\x86\x30\xf4\x50\xb9\xdd\xce\x9c\xb7\xa5\x21\xa1\x64\xb9\xed\x33\x15\x83\xb6\x57\x25\x0b\xdd\xab\x54\xc5\xa0\x1e\xd0\x58\x50\x62\x4e\x31\x80\xb9\x2c\xf2\x27\xa8\xcd\x29\x91\x54\xec\x3d\xce\x17\x57\x28\x06\x35\x5e\xc5\x47\x5e\x5a\x99\xd1\xe8\xe8\x65\x37\xcf\x66\x2b\x20\x38\x68\x1b\x27\x2a\x05\xe2\x05\xa3\x37\x25\x62\xc3\x25\x45\xe5\x90\x50\x3e\x2c\xab\x8d\x64\x9b\x03\x3d\xc2\xe1\x46\x71\xd9\x1b\x5a\xdc\xae\x70\x31\x14\xec\xcf\x10\x95\xff\xe3\xb8\xbc\xca\xd7\xe9\xf0\x8a\xf3\x4d\x7a\x72\x72\x89\x79\x82\xe9\xc9\xed\x37\x3f\x3c\x60\x97\x91\x63\x70\x5a\xd9\xec\x21\x81\xce\x1b\x0d\xfa\xf9\x12\x2f\x78\xa6\x13\x20\x98\xcc\x3f\xa2\x0c\xa2\xba\x6c\x18\xba\xec\xce\xd9\x96\x8e\x05\xd0\xa6\x62\x97\x66\xc7\xd4\x26\xba\x64\x6f\xaf\xad\xc4\x42\xb4\xf8\xa1\x44\xcb\xec\x68\x02\xb5\x29\x91\xec\x65\x86\xe6\xdb\x6d\xdc\x2a\xc9\xf4\x6f\x47\x30\x81\x80\xce\xb2\xe1\x90\xd2\x21\x73\xe5\x76\x4c\xeb\xaf\x1f\x8c\x46\x8d\x65\x8f\xf9\x38\x7b\x30\x9f\xba\x3f\xd2\xbb\x7a\xd0\x9d\xa8\xce\x36\x31\x93\x0c\x4a\xe2\xf2\xa8\x7e\x96\xd1\xf3\x8d\x9a\x38\x69\x96\x62\x4b\xf4\x52\x1a\x49\x94\xe2\x12\x41\x5d\xc3\x66\x2b\xbb\x76\x56\xce\x34\x4e\xbd\xfd\xca\x2a\xb3\xef\x7a\x0c\x51\x50\xc3\x25\x2e\xfb\xcf\xcc\x34\x55\xe9\x31\xdc\xb6\x4d\xc9\x41\xa7\xe8\x1f\x48\xff\x79\xb4\x9a\xb5\x39\xf7\xb6\xe1\x58\x0d\x55\x8d\x96\x99\x49\x6b\x27\x46\xa3\x1e\x00\x94\xc8\xc5\x60\x14\x25\x50\x10\x47\xd6\xc2\x78\xa0\x6e\x10\xcd\x87\x8c\x63\x3a\xd9\x35\x90\x8b\x96\xdc\xcd\x3c\x60\x24\x95\x59\x57\x8d\x05\x67\xa8\xdb\x77\x83\x15\xef\xbd\x8a\xdc\xeb\x5b\x4c\x7d\x2e\x7a\xb4\xc7\x13\xf2\xd3\x38\xe8\x00\xe1\x79\xa0\x8f\x8f\x72\x29\xf5\x34\x54\x65\x99\x63\x5a\xce\x48\x93\x2c\x62\x8c\x0e\x04\xb8\x45\x76\xb3\x40\x1a\x9f\x1e\x65\x99\xb2\x36\x2a\x68\xce\x63\xa4\x82\x84\x7b\xdd\xf1\x83\xbb\x03\x2d\x84\x30\xe5\x29\x1a\x47\xc3\x68\xcc\x1d\x38\xeb\xc9\x0c\x13\xbe\x4b\xe7\x87\xb4\x0a\xae\xdb\x34\x0c\xce\x54\xbf\x96\x02\x70\x54\x5b\xf7\x80\x28\xcc\xd5\x11\xc9\xf0\x4c\x86\xaa\x59\x98\x3f\x56\xe6\x8f\x2b\xf3\xc7\xd2\xfc\xb1\x31\x8e\x20\x78\x15\x97\xd9\x11\xda\x6e\xb9\x52\x57\x23\x00\xab\x0c\xdb\xbf\x4b\xcf\x07\x65\x95\xb5\x00\x1a\xc6\x57\x19\x4b\xd0\x3b\xb4\x88\x11\xd8\x6e\x89\xf9\x53\x9c\xcd\x32\xbb\x9a\x3d\x68\xd1\x2d\xde\x4d\x74\x29\xb8\xd5\x5c\xe7\xf8\xee\x7e\x5a\xce\x9b\x39\x08\x0a\x6e\x33\xc4\x64\x28\xb5\xf1\x2b\x1d\x21\x6a\x33\x8e\xbe\x88\xac\x13\xcc\x22\xcb\x67\x9b\x39\xac\x46\xa3\x7c\xb6\x9c\x8f\x46\xf1\x22\xeb\x4b\x37\xb1\x00\x70\xd3\xfb\x71\x03\x94\x1f\x9d\xd2\x5a\x0b\xfa\xe0\x15\xba\x7c\xfa\x6e\x13\x6f\x60\x84\x23\x00\x17\x60\x60\x08\xca\x75\x46\x0d\x0d\xb9\xfe\x7a\x32\x1a\x1d\xc5\x9b\x2c\x2e\x32\x3a\x5b\x1f\x9f\xce\xc1\x6c\x32\x07\x66\x43\xcf\xd6\xc7\xc7\xe0\x4c\xcf\x54\x56\x2a\x04\xad\x24\xea\xc0\x45\x56\x28\x62\xd1\x8c\xb9\x81\x0b\x81\x5c\x1b\x21\xce\x3e\x7d\x51\x4b\x96\x77\x6f\x09\xe1\x47\xb7\x2f\xd9\xad\x80\x46\xe1\xb7\x47\x92\x42\x1a\x73\xc4\x4e\xe4\xac\x46\xb6\x07\x3a\xc2\x64\xe4\xa1\x33\xb4\xf7\x39\xec\xf6\x99\xb4\x2e\xf4\x9e\xad\xee\x4a\x92\x3f\x6b\x9c\x15\xbc\x8a\x5d\xbf\x24\xe0\x29\x8b\xb4\xaf\x92\x9a\x57\xac\xac\xb6\xf4\x97\x37\xdf\x7d\xfb\x4d\xce\xca\x56\x7d\x5d\x2a\x13\xf4\x7d\x43\x2b\xb2\xfc\x8b\x6d\xea\x57\x94\x36\x9c\x17\xe1\xaa\xa1\x1d\x2b\x30\x41\xc7\xe5\xf5\xa5\x95\xdf\x37\x45\x61\xf0\xb4\x0d\xd4\xfe\x5e\x22\x82\x58\xfe\xb1\xc3\xa0\xa0\x44\x0d\xf4\xfa\xfa\xd2\x73\xb8\x69\xec\xdc\x95\x85\x2f\xe5\x1c\xaf\x6e\x81\x4a\x75\xe5\xe7\x13\x19\xd8\x17\x8d\x8e\x46\x27\x3f\x26\xe5\xf5\xe5\x17\x27\xea\x92\xcb\x84\xae\xad\xfa\x49\x29\x38\xfa\x78\x02\x8f\xff\xe4\xe8\x52\xa8\x1a\x47\x42\xb0\xcc\x9b\x0f\x62\x0a\x49\xb2\x90\x7f\x42\xf7\xeb\x1b\xcc\x0b\xa4\xbe\x72\xf9\x27\xf4\xb0\xd6\x15\x5f\x17\xaf\xf3\x15\x8a\xe9\xee\x53\xf0\x37\xf5\xd3\x01\xac\xda\xb8\xc0\xc5\x8b\xd1\x76\x1b\xb9\xb6\x40\xff\xfc\xf1\xe4\xe4\x12\x7a\x45\xaa\x24\x89\xe4\x3d\x6e\xf6\x26\xeb\xb8\x4b\x1e\xf1\xe6\x61\xb0\x4c\x92\xe9\x26\x7a\x28\x61\xec\x4b\xf1\xdf\x50\xee\x68\x16\x7d\x39\xe6\xe3\x2f\xa3\x2f\x9b\x8e\xe5\xb6\x1e\xd2\xf1\xb1\x20\x3e\x50\x63\x6f\xf8\x50\x9e\xc2\xd7\x11\x98\x36\x23\x9e\xe8\xc2\x38\xf9\xaf\x29\x78\xf8\xe3\x89\xfa\x75\x72\xb9\x86\xb6\xfa\x98\x8f\xa3\x87\x27\xa6\x6d\xea\xce\xf6\xa4\xbc\xbe\xfc\x3a\x0a\x57\xd5\x1f\x03\x67\x5b\xd0\x7c\x79\xdc\x44\x7e\x62\xc1\xcc\xfa\x3a\x0c\xe2\xee\x4b\xe4\x78\x3f\x5a\x9f\xc3\xb6\x9d\xbb\xe4\x36\xe4\x3f\x47\x13\x95\xd8\x92\x75\xb8\x67\x41\x45\x49\x4f\x41\x35\xfe\x30\x27\x43\x67\x7e\x49\x64\x52\x00\x5a\xd5\x98\x35\x98\x94\x56\x66\xdb\x6d\xac\xfe\xc8\x90\xbe\x33\x28\x29\xf2\x92\x3f\x37\x3b\x7f\x12\x81\xf1\x29\x00\x90\xd4\xae\x8e\xb6\x31\x56\x6e\x9d\x14\x87\x46\x0f\x7b\x6c\xc4\x3c\x1f\xa4\x65\xf5\x77\xd0\xbc\xff\x38\xe3\xe3\xe8\xc4\x3b\x87\x08\x52\x5d\xa8\x33\xd6\xb5\xbe\xe6\xd9\x6c\x0e\x4b\xf1\x4f\x95\xb9\xe6\xae\x25\x2a\x56\x89\x3e\xb1\x7f\x95\xc9\x39\xca\xdf\x9e\x97\x08\x11\x00\x8b\x6c\x72\x56\x3c\xac\x0c\xa1\x51\x8c\xc7\xea\x9c\x16\x59\x35\x2b\xe6\x03\x81\x8b\x16\xde\x5e\x61\x38\x01\x53\x12\x2f\x60\x74\x2c\x10\x93\xcc\x20\xad\xb8\x9e\x05\x48\xbb\xd5\x29\x9c\x08\xcc\xe5\x37\x28\x4d\x03\x50\xc7\xe1\xb5\x93\x6c\x72\x46\x1e\x36\x32\x34\x29\x9c\x73\x16\x1b\xb3\x98\xcf\xc8\x1c\x80\x5a\x80\x50\x0e\xe0\xbd\xba\x51\x9b\xf7\x3c\xd4\x5d\x8c\x60\x19\xb8\x12\xeb\x7c\xc1\xe8\xb1\xf5\xed\xbe\xa8\x70\xb1\x3c\x36\x69\x5b\x0f\xc4\x79\x16\xb4\xf8\x6f\x46\xfd\xdf\xf5\x18\x46\xc9\x82\x16\x45\xbe\x29\xd1\x5f\xd1\x6d\x09\x49\x26\xf3\x2d\xc9\x5c\x52\x10\x67\x28\x59\x15\x39\xe7\x88\xc8\x8f\x54\x5c\x99\xf2\xdb\xfc\xe7\xdb\x40\x3e\x21\xb3\x54\xd4\xe1\x03\x61\x9e\xd9\x7c\xbe\x65\x36\x39\x2b\x1f\xa2\xb3\x72\x3c\x06\xf9\xac\x9c\x3b\x7c\x61\x39\x57\x01\x20\x02\x0f\xc2\x9d\x00\xfa\x14\x35\xef\xe3\x29\x80\x8b\xbc\x28\x2e\xf2\xc5\xdb\xb4\x31\xe8\x3c\x3e\x9d\xd7\x75\x9c\x8b\x4b\x50\xc9\x7b\x02\x17\x59\x95\x98\x8a\x70\x95\xb1\xb8\x50\x98\xe5\x2a\xb8\x13\x98\x2c\xe8\x1a\x93\xcb\xc7\xa6\x85\xd8\x0d\x25\x65\x7b\xc4\x2e\x4b\x88\x0d\x3b\x14\x34\x2f\xc5\x21\x12\xd2\xf3\xa2\x23\xea\x3f\x04\x40\x9d\xc6\x38\xbb\xab\xa1\x7c\xfa\xa5\xdb\xdb\x25\x0a\xf9\x8c\x0c\x65\x85\x9e\x3e\x04\x77\x5a\xea\xe6\xa5\xd7\x1c\x62\xed\x4c\x64\xe8\x63\x9a\xc9\xaa\x40\x6e\x86\xee\x8e\xc2\x99\xec\x0a\x5b\x23\x0e\x1e\x37\xbd\x8b\xfe\x5d\x3b\xdd\xbb\xf6\xe6\xa4\x0b\xd8\x6c\x4d\x50\x1e\xb0\xf2\xd3\xdc\x5a\xc7\xa8\x3b\xe9\x48\xf7\x8e\xa7\x08\xca\x6b\x98\x32\xf8\x16\xdd\xa6\x32\x31\x8b\xdd\x62\x43\xfc\x4c\x63\x2c\xe6\x2e\x0f\x1e\x80\xa4\xdc\x68\x10\x98\x40\x02\x52\x2c\x33\xd4\x6d\x62\x02\x20\xae\xeb\x16\x19\x6a\x6e\xb3\x6f\x48\xc2\x63\x1c\x17\x00\x98\x25\xcf\xae\xe6\x40\x71\x4f\x12\x05\x3c\xae\x18\xc3\x68\xf9\x58\x37\x0d\x9d\x88\x2d\xe2\xdd\x22\xc7\x17\xc6\x1b\x54\xdd\x5f\xc7\x16\x4b\x2c\x42\xb9\xf8\x34\x0c\x89\x9d\x12\x97\x53\xda\x8b\xb3\xa4\xb5\x7b\x4e\xf8\xa7\x32\x0b\x18\xa0\xe4\xd1\xab\x57\x8f\xfe\x71\xfe\xf4\xd1\xe3\xbf\x64\xd1\x7f\xa3\x7c\x71\x95\x44\xd0\x94\x7e\xfb\xf4\xc5\x9f\xdf\xfc\x25\x8b\x66\xf3\xa8\x13\x9f\xce\x9f\xa9\x41\x30\xc7\x6f\x51\x30\x99\xb4\x5f\x1b\xbd\xdb\xe4\x64\x79\x6c\x92\xcc\xf7\xd4\x72\x56\x7f\x5f\x23\xad\x4e\xa0\x03\x13\x18\x61\x86\xe6\x03\x97\xb0\xb7\x24\x8d\xa4\x62\x8c\x39\xd3\xd7\xa7\xdd\x38\x1a\xce\xb9\x2b\x70\x4c\x18\x5a\x56\x0b\x14\x87\xae\x05\x4f\x56\x32\x5f\x5f\xdc\x85\xa4\x63\xe5\xdb\x6e\xc9\x12\x27\x73\x1b\x32\xe0\xc1\x40\x0d\x67\x73\x50\xc7\x18\x0c\x8c\xc3\xa0\x69\xc0\x9c\x13\x03\x03\xa7\x4f\x2a\x99\x8d\x6e\x45\x75\x88\x00\x40\xc9\xa3\x4c\x67\x51\x34\x4f\xe9\xd7\x93\xe9\xac\xc1\xb5\xf4\xf8\x14\xcc\xd3\xf6\x8e\x7c\xc8\x23\xd4\x4d\xe5\xdb\x0f\x2f\x41\x67\x97\x1d\xe0\x75\x6f\xea\x55\x06\x3e\x69\x9c\x3b\x42\xbe\xda\x3e\xbb\xe7\x40\x05\xcb\x98\x39\x15\x7b\x18\x1a\x7d\xd1\x8c\x68\x78\x99\x92\x19\x69\xde\xa7\xf1\x69\x3a\x81\x24\x23\xb6\x9d\x8f\x23\x2d\x20\x51\x65\xf3\x78\x67\x16\xb7\x14\x0f\xb0\x42\x94\xdf\xe5\x9b\x94\xd4\xef\x73\x00\xee\x4b\xff\x77\xcc\xaf\xbe\xcb\x37\x32\x43\x51\x88\x3a\x30\xef\x4f\x8c\x40\xe2\x4d\x62\x1f\x5e\x32\x68\xf7\xb8\x22\x65\xbe\x0a\xda\xdf\xed\x21\xbe\x82\xb5\x2e\x11\x3f\x96\x8b\xb1\xfd\x06\xab\x69\x72\x45\x82\x8e\xa9\xf9\xd1\x8d\xd0\x06\x9e\xf9\x9e\x03\x13\x77\xee\x0e\x07\x3d\x98\x64\x62\x4c\x49\x5d\xa5\x96\xb7\x81\x0e\x8d\x95\x3a\xd6\x61\x07\x6e\xf4\xc7\xda\xe1\xd6\xb5\xdb\x7d\x0a\x07\x6c\xff\x21\x69\x9d\x3f\xcc\x70\xb2\x77\xe7\x9b\xad\xb5\xbb\x4d\x82\xbb\x8d\x0f\xdf\x6d\x49\xeb\x1c\x4b\x19\x41\x90\x51\x78\xbf\x0d\x3b\x64\xd3\xbd\x4d\xbd\xf7\x73\xf8\x71\x77\xdd\xe9\xbb\x0a\xd1\x3f\x86\x0b\x28\xba\x5c\xc0\x42\x73\x01\x05\x80\xab\x6c\x72\xb6\x7a\x58\x9c\xad\xc6\x63\xb0\x98\xad\x5c\x2e\x60\x35\xd7\x04\xba\x34\x8c\x0d\x60\x2c\x10\x2f\x00\x5c\x66\x57\x3e\x56\x82\x9b\xec\x2a\x51\xc8\x71\xa0\x64\xed\xb3\x79\x83\xef\xaf\x63\x47\x6a\xa7\x23\x28\xac\x5b\xd4\x29\xa4\xcd\x2d\x9d\xd1\xb9\x74\x26\xeb\xc0\x98\xa2\x5b\xb1\x47\xb7\x92\x1a\x00\xc8\x6a\x00\xf3\xac\x72\x29\x75\x6a\x52\x7f\xb7\xf6\x59\x85\xbd\x68\x40\x28\x07\xb5\x8a\xe0\x7d\x57\x0f\x96\xdd\xe7\xc7\xc6\x7e\x20\x32\x7b\xff\x80\x6c\xb7\x71\x5b\xc2\xe0\x50\x35\x59\x43\xd5\xe8\x17\x6e\x31\xdb\xcc\xf8\x5c\x46\x84\x92\x62\x0f\x66\xa9\x00\xec\x92\x0b\xdb\x6d\xcf\x57\x43\x23\xb4\x99\x52\x54\xcb\xb9\x99\x87\x2f\xe4\x13\xde\x9d\xd4\x34\xd2\x9b\x98\x44\x63\x94\x46\x84\x12\x25\x9c\x2c\x93\x68\xcc\x55\x87\x83\xb5\x92\x26\x50\x00\xc9\x68\x14\xdf\xce\x22\xf1\xb0\x8f\xd9\x38\x7a\x82\x97\x8f\xaf\x72\x72\x89\x22\x93\xb8\x99\x9a\x54\xb7\x14\x5e\x03\x93\x78\xf7\x32\x2b\x4d\x04\xae\x5b\x78\x47\xc9\x73\x82\xb9\x4e\x22\x4d\x49\x1c\x61\x82\x79\xe4\x7a\x1f\x5c\x2b\x4a\x5c\x39\x1b\x08\x3c\x70\x91\xed\xe2\x20\x5a\x02\xf6\xcf\xc4\xf4\xc7\x7e\xd8\x8c\x85\xc3\xc2\x74\x59\x59\xc5\x29\x66\xe1\x08\x13\x38\xcb\x95\xc0\x19\x0c\xf0\x76\x1b\x4b\x8b\xff\x21\x85\xb9\x60\x10\x25\xeb\xa8\x76\xb1\xcc\x24\x53\x1a\x13\x49\xfd\x5a\x5d\x40\x39\x28\x33\x6b\x7a\x22\xf8\xf2\x94\xc1\x86\x9f\x6b\xce\x53\x6f\xb8\x6f\xaa\x22\x36\x57\xf2\xaa\x31\x81\x25\x80\xc8\xf5\xf6\x57\xf5\xad\xbb\xe5\x68\x84\x12\x2a\x90\xf1\x0d\x2e\x8a\x27\xa8\xe4\x8c\xde\x3e\x35\x11\xf8\x9c\xc3\x2b\x93\xa5\xfa\x18\x3b\xc4\x72\x59\xab\x5b\x76\x09\x11\xbc\x10\x4c\xe5\xb2\x43\x90\xcb\x10\xb2\x6d\x38\xb5\x2c\x01\x1e\x8d\x62\x32\xa3\x36\x1c\x43\x0c\xe6\x7d\xc8\x80\x69\x64\x80\x25\x32\x40\xb5\x94\x3a\xc2\xbb\x36\x37\xaa\x16\x1d\x6d\x18\xba\x46\x84\x3f\xa1\xd5\x45\x81\x5e\x21\xb2\x44\x2c\x82\x47\x13\x23\xa9\x2f\x11\xd7\x78\x02\xa3\x32\x26\x49\xb3\x9f\x10\x3b\x75\xfa\x7b\x3a\x35\xb5\x2e\x55\x2d\x8b\x66\x40\x3d\x07\x82\x2d\xc9\x97\x2f\x49\x71\x1b\xdb\xd9\x5d\xd4\xb5\x17\x98\xe7\xef\x28\x7f\xfb\x5d\xbe\x81\xb9\x02\x0b\x0d\x0a\xde\x61\x9a\xe8\x76\xa6\x6f\x7b\x2d\xd3\xd6\xa5\x74\x90\x5c\x5b\x71\x67\xc2\xb5\xc9\x3d\x84\x5a\x41\xff\x16\xdd\x42\x05\xbc\x49\x60\x75\x03\x94\xe0\x52\x43\x02\x26\x97\xca\x44\xc0\x1e\x7e\xca\xb6\x5b\x94\x10\xca\xf1\xea\xd6\xa0\x5a\x35\x2b\xc9\x46\xed\x7f\xdf\x15\xe7\x7f\x8f\xa7\xfd\x50\xaa\x4a\x7f\xfe\xa4\x2e\x24\x3c\x28\xbe\x00\x71\xe3\x5a\xb2\x67\xf9\x2d\xae\xfb\xb8\xc0\xed\xb0\xda\x87\xf0\xea\x9f\x3e\xde\x9d\xc3\x69\x77\x59\x6c\xe6\x7c\xd5\xc8\xd1\xbf\xb4\x0c\x68\xe6\xf9\x7e\xbb\xf1\x79\x95\xb6\xea\xe9\x68\x58\x52\x75\xa9\xd4\x94\x1c\xe4\x80\xbc\x89\x70\x81\x94\xd5\x92\x11\x90\xb1\xc4\xf6\x2c\x31\xc4\x28\xed\x3d\xef\x1d\xe4\xfd\xa7\x3c\xec\x36\xe3\x1d\x96\xae\x38\x9a\x1d\xde\xe8\xe0\x86\x91\x0c\x3f\x2c\x29\x0a\x0e\x20\x3a\xe8\xfc\x7d\x8a\x7b\xdf\xae\x60\x87\x21\x38\x58\xfe\x20\x80\xd5\x04\x6d\x70\x96\x66\x9e\x68\x94\x9c\x2f\xd1\x46\xe0\x3d\xc2\x05\x7d\x2b\xde\x60\xab\x4c\xc6\xfa\x31\xb6\x4a\xb1\x18\x43\x26\x2d\x5b\x7b\x65\x5b\x43\x34\xd0\xb6\x6c\x08\x74\x74\x62\x61\xa1\x07\x93\x1f\xeb\x8f\xaa\x6f\x90\x70\x4d\x62\x5f\x92\xaf\x23\x3f\xe3\xcc\x93\xe4\x4b\x99\x9b\x89\x89\x25\x03\x77\xa9\x08\x71\x54\x89\xcc\x99\xfa\x03\x72\x00\xa9\x92\x82\x8b\x92\x52\x96\x34\x71\x43\xf7\x1d\x74\x57\xaa\x70\x38\x43\xf7\xc9\xe1\xdf\x3c\x95\x1d\xbb\xba\x49\xd0\xae\x6e\xe2\xda\xd5\x4d\xe6\xe9\x5d\x0d\x3b\xca\x59\xe0\x9b\xda\x09\x7a\x7f\xca\x52\x94\xc8\x35\x1e\xbc\x59\x1f\xf1\x4a\xfc\x5a\xf6\x09\x59\x5a\x84\x64\x7a\x3b\xa4\xfa\xeb\x2d\x32\xba\x2e\x7f\x27\x09\x98\x92\xe4\xfc\x12\x71\x2e\xf8\x04\xc1\x3e\x30\x88\x41\xda\xb9\x7f\x64\x4a\x34\x55\x84\xcb\x6f\x8a\x9c\xbc\x15\x2d\x59\xda\xd0\x68\x3a\x64\xd9\xce\x8d\xef\x8d\x27\xd2\x27\x10\xba\x8f\x04\xe3\x40\x6a\x28\x58\xad\xc8\x7f\xbe\x3d\xac\xce\x81\xfd\xc9\xd0\x40\x45\xcf\x57\x96\xdf\xf4\x7d\x41\xf9\xb2\x6f\x57\x4c\x5a\xad\x3d\x59\x2b\x3f\x59\xc4\xf4\x66\xc9\xf7\x0e\x99\xbe\xa3\x53\x79\x96\xd2\xe2\xe5\xf1\xfd\xfa\x67\x87\xf5\xef\x13\x92\x07\xf6\x4d\x0e\xea\x5b\x00\xc4\x3d\x3b\xc6\x87\x77\xfc\x5e\x13\xa7\x87\xf5\x6f\xa0\xf3\xa0\x3e\xf3\x83\xfa\x94\x30\x7d\x50\x7f\xe5\x61\xfd\xa9\x9b\x70\x50\x8f\xd5\x41\x3d\xda\xfb\x73\x58\xa7\xc5\xae\x90\xff\xfd\x8f\xc4\x67\xa5\xb0\x0d\x49\x14\x16\x3f\x88\xf9\x98\xbe\xf7\x61\xe6\x16\x02\xfc\x43\x10\xff\xc1\x82\x78\xa8\x0c\x4c\xe4\x20\x07\x6d\xfe\x27\xe2\xdb\xfd\x93\xfd\x75\x33\xef\x16\x31\xed\x5b\xba\xc0\x36\xbf\xbd\x44\x21\xfe\x1a\x6c\x0a\xcc\xe3\x9c\xb1\xfc\xf6\x30\xa3\x82\x5e\xfd\xc8\xa7\x63\xe1\x03\xfe\x30\xa7\x41\x7a\xf4\xd4\xa5\x47\x4f\xe7\xe9\x6c\x1e\x4c\xc7\xe0\x70\x72\x4a\x1b\x60\x22\x78\xbb\x06\x03\x9e\xfe\xdf\x08\xfc\x71\x13\x59\xb8\xdc\x14\x98\xc7\x51\x12\x01\x98\x67\x74\x46\x1d\x76\x8b\x64\x13\x19\x31\xdb\x72\xce\x77\x11\x98\xe6\x49\x59\x5d\xa8\x99\xc4\xa7\x30\xb7\xd5\x81\xe9\x09\x46\x20\x9d\xe5\xf3\x5a\x05\x0e\x0c\x4c\x45\x6b\x0f\x94\x92\x5d\x32\xaf\x53\x94\x45\x51\x8a\x05\x75\x1e\x37\x06\x9c\x13\x88\x8f\x4f\xa5\xc3\x4d\x50\x01\x6f\xb6\x0d\x8d\x46\xd2\xa0\x81\xd8\x81\x10\x18\x8d\x88\x65\x6d\x8d\xec\xda\xb7\x22\x9a\xc8\x16\x5a\x1f\x5f\x66\xfe\xdc\xd2\xb8\x29\x11\x1b\x07\x4f\xbd\xda\xe3\x8c\x08\x2e\xa1\x1c\x67\xd1\x5d\x34\x26\x3a\x54\x21\x8c\xc0\x38\xaa\x23\x23\x6d\x35\xc4\x3d\x02\xd3\x32\x45\xe3\x28\x89\xc6\x7b\x15\xe5\xf2\xe9\xff\x05\x9e\x3d\x5f\xb7\x11\xb0\x3d\x40\xb5\x2b\x28\xde\xbb\x0c\x45\x71\xec\xbb\x81\x3d\x64\xf8\x6f\x0f\xff\x34\xf4\xd0\xc1\xfc\xd8\x67\x48\x03\x62\x75\x3b\x7e\x7c\x30\xd7\xf2\xc0\xba\xd9\x91\xd1\xc8\x8d\x2b\xda\xc8\x95\xc8\x34\xaa\x88\x9a\xc8\x32\x4a\x59\x4c\x80\xbc\x5b\x25\xe2\x53\x65\x61\x28\xff\x4e\x5b\xd6\x86\x0e\xf9\x1f\xf6\x1b\x04\xb0\x6d\x22\x8e\x41\xfd\x7b\x0b\x1f\xdb\x85\x1a\x2a\x96\x6f\x81\x40\xd0\x1d\x79\x79\x0f\xa8\x09\x5b\xaf\x7c\x52\xcc\x10\xd0\xe3\x77\x5f\x31\x48\xb4\x4a\x93\x01\x88\xb3\xc9\x19\x7e\xc8\xce\xf0\x78\x0c\xc8\x0c\xbb\x7a\x7c\xdc\x38\x4f\x5b\x2f\x2a\x3f\xa2\x57\x57\x7f\xe9\xaa\x4e\x3b\xc3\x1a\x4d\x2a\x17\x6f\x89\xb4\x02\x57\x51\x18\x66\xc4\x1d\x96\x38\x96\x5c\x56\xab\x0b\x99\xd4\x7e\x85\x4c\x2a\xdb\x87\xb4\xc8\x0b\x44\x96\x79\x2b\xc5\xa6\xaa\xd6\x1c\x58\xf8\x68\x3f\x32\x91\xa8\x9f\xf9\xee\x3d\xeb\xe8\xfe\xff\xc8\x08\xc6\x7f\xc1\x8c\x60\x87\xc4\x72\xfb\x20\x82\xf0\xae\x96\x5e\x34\x68\xbb\x95\xc9\x64\x74\xdb\xaf\x40\x70\x21\x2e\x84\xa6\x43\xb3\x2c\x95\x10\x74\x48\x57\x36\x8f\x57\x09\x87\x39\x1f\xae\x69\xc9\x87\x5f\x45\x46\x00\x2f\x00\xe0\x2b\x00\x69\x86\x67\x93\x39\xcc\x33\x3c\x3b\x9d\xc3\x32\xc3\xb3\x07\x8e\x03\x8a\xd6\xe5\x33\x00\x0b\xad\x17\x5e\x23\x76\x89\xe2\x0a\x96\x20\x28\x2b\xa5\xd2\xec\x5c\x5e\xab\x38\x87\x45\x50\x17\xdb\xbe\x51\xcb\x8a\xe9\x00\x39\xbf\xf8\x3d\xbc\x47\xb0\x3e\x07\xd7\x99\x05\x98\x37\xb1\xe1\x7a\x7f\x19\xf3\x11\x14\x0c\x9f\xd8\xd9\x41\x15\x99\xe8\x57\xb0\xeb\x7f\x60\xbf\xdf\x1b\xf6\x13\xfb\xfb\x40\xd0\x0c\x32\x80\x11\x95\x31\x8f\x24\x62\xa3\xaa\x46\xde\x38\xc3\xbe\xbc\x21\x88\x29\x83\x2c\x19\x54\x7f\x34\xca\xdb\x79\x65\x03\x45\x71\xb4\xa0\x64\x85\x2f\x53\x44\xae\x31\xa3\x44\x42\xad\xd6\xa8\x96\x59\x9e\x30\x54\xd2\xe2\x1a\xed\x6f\x32\x28\x5b\xbe\xb9\xa5\xb9\x04\x09\xad\xf8\xa6\xe2\xcf\xd4\x2d\x11\x24\x45\x08\xe1\x61\x90\xa8\x7b\x14\xd3\xc3\x2e\x1d\xa3\xeb\x63\x42\x6f\x7e\x05\xd7\xee\x20\x64\xe7\x46\xc7\x6a\xc8\xad\xe6\x4d\x8b\x65\xa6\x26\xba\x91\x91\x1c\xc2\xd4\xdf\x2f\x87\x05\xe5\x8f\x17\xf4\x26\x66\x07\x9d\xcd\x55\xb5\xce\x49\x27\x8e\xec\x1f\x28\xf1\x0f\x94\xf8\xa9\x50\x62\x37\xf8\x44\xf9\x44\x13\x13\x31\x06\xd2\x62\xb3\x4b\x66\xc4\x18\x00\x88\x13\x03\xad\x07\x22\x9e\x82\x0a\xc2\xec\x0f\xd0\xfe\x03\xb4\x7f\x35\xa0\xdd\x7e\x49\x05\x54\x2b\x30\x3d\x10\xa6\x0d\xfc\xfe\xe2\x30\xfd\x7e\x7c\xc3\xaf\xe4\x95\x3c\x64\xa7\x39\xfd\x83\x68\xf9\x5c\x44\x0b\xa7\x0d\xc9\xd2\x76\xb6\xed\x9c\xcb\xcf\xbf\x82\x33\xf9\x03\xa3\xff\x07\x61\xf4\x0e\xfb\xc3\x7f\x3e\x10\x5b\x57\x7c\xf1\x2b\x00\xd6\xf7\x43\xd5\x15\x5f\xfc\x26\xa4\x3b\x8d\xe1\x43\xfe\x39\x92\x83\x7a\xd1\xc5\x8c\xaf\x88\x16\x48\x6a\x6d\x29\x91\x9d\x97\x88\x5d\xcb\xb0\x0e\x26\xae\xe9\x73\xc2\x11\xbb\xce\x8b\xf4\xe8\x14\xaa\xb4\x31\x8f\x8a\x82\xde\x3c\x5d\x6f\xf8\x6d\xda\x72\xc9\xba\xa0\xb4\x88\x0d\x57\x7e\x7e\xae\xd8\xf8\xf3\xf3\x24\xb7\x2d\x22\x00\x75\x34\xde\xf2\xcf\xed\xce\x8e\x26\x50\x11\x15\x2f\xd9\x1b\xbc\x46\xff\x97\x12\xa4\x9c\x45\x96\x1d\x1f\x16\x3d\x84\x21\x95\xcd\x6f\xae\x9b\x79\xae\x2d\x2a\x36\x21\xd2\x93\x94\xee\x4e\xfa\xef\x60\x80\x0c\xed\xa6\xc5\x13\xac\x17\x3e\x68\x27\xc7\x6e\x6d\x4c\x04\x4c\xe8\xd9\x45\x81\x72\x39\x75\x16\x2b\x37\x39\x1d\x38\x52\xd5\x93\x1f\xb2\x12\x71\xf1\x07\xad\xb8\xab\xe4\x55\x43\xb0\x8a\x04\x34\xbf\xcc\x9f\xbc\x4e\x16\xfc\x9c\xf0\x98\xc0\xd3\x89\x0c\x0a\x02\xd7\x94\x6d\xae\xbe\x53\xc7\x19\x0e\x6f\xa0\xb6\x4a\x2e\xcc\xec\x12\xc4\x9d\xbc\xdf\xfa\xa2\x5b\x8b\x64\x96\x31\x93\x5c\x4a\x54\xc2\x30\xd2\x5b\x0e\x20\xc9\x48\xeb\x93\xdd\x7d\x00\x99\x94\x89\xcb\xaa\xda\xa0\x40\x93\x8b\x0c\xc8\x9d\x41\x09\xff\x59\x7f\xe0\x3f\xc7\x04\x48\x1f\x80\x66\xfb\x5c\x65\xb0\x2d\x15\x5b\xd6\xdd\x50\x50\x43\xed\x6e\xd4\x89\xbd\xeb\x1d\xc7\xfe\x1c\xea\xfb\xef\x2a\x2e\x8f\xf3\x15\x47\x2c\xa8\x2f\x0c\x5e\x6b\xff\xa3\x8a\xe1\xa6\xaa\x18\x33\xa6\x4f\x88\x35\x1b\xa4\xd8\x72\x0e\x4b\x7b\x13\x0e\x19\x80\x91\x70\xb2\x61\x68\x81\x4b\x4c\x89\x0a\xb4\xae\x00\x88\x3a\x00\x34\xd8\xbb\xa9\x83\x96\x0c\xb1\x05\x66\xe2\xb5\x37\xaa\xc4\x4a\x90\x07\x85\xe3\x62\x73\x9a\x65\x59\x39\x2d\xb4\x15\xc9\x6c\x32\x07\xe9\x03\x51\x34\x1a\xc5\x95\x53\x08\x6d\x8d\xd3\x39\x00\x30\xd6\xbe\x6a\xce\x8d\x88\xf3\x44\xe3\x07\x35\xc7\x1c\x56\x00\xde\xa9\xf5\xa4\x18\x9a\xd5\xa4\xb4\x06\x40\x3c\x0b\xe2\x88\x75\x55\x06\x0b\xab\x11\x55\x81\xb0\x0e\x82\x92\x0b\xb4\xa2\x2c\xac\x56\xde\x01\x09\x3b\x41\xe9\xd3\x81\x09\xdb\x05\x26\xfc\x0f\x30\xe9\x01\x93\x6f\xe4\x19\x7f\x28\x9c\xf0\x1b\x84\xc8\x7f\x24\xa0\x60\xb2\x28\xaa\x12\x5f\x63\x7e\x2b\xa1\x45\x03\x4e\x7e\x7f\xc0\x29\xfb\x01\x47\x40\x4b\xe3\x82\x07\x0b\x0b\x47\x82\x8d\x29\x1e\x3e\xd8\x6e\x8b\x8f\xa0\xb3\x45\xef\x36\x68\xc1\xd1\x72\xf8\x60\x48\x99\xd5\xdc\x2e\x1c\x20\x2d\xbe\x7e\x30\x1a\x2d\x14\x04\x56\x49\x79\x85\x57\x82\x89\x09\x42\x61\xe9\x43\x61\x09\x17\x0d\x14\xd2\x06\x0a\x73\x03\x85\x12\x82\x2c\x18\xfe\x42\xa4\x6e\xd5\x38\xbe\x13\x88\x0f\xbf\x00\x3a\x49\xf9\xde\x67\xf5\xf7\x7b\x0d\xfe\x63\xf0\xe5\xeb\x7c\x8d\x5e\xb2\x8f\xf0\xb8\x1a\x98\xf9\xe3\x91\xfd\x4f\x01\x9a\x8f\xf1\xd4\x0a\xa8\xf9\x03\x56\x7e\xef\xb0\xf2\x01\x30\xa2\x7e\x1e\xe7\xcb\xb0\xb7\xca\x27\x02\x13\xd7\xeb\xfb\x37\x12\xae\xf6\x43\xc0\x13\x7b\xe0\xf9\x09\xc9\x3e\x0b\x9e\x02\x32\xe1\xa2\x05\x9e\xd5\x74\xd1\x06\xcf\x6a\x34\x8a\x88\x24\xee\x22\x9b\x6c\x9b\xdf\x6e\xd0\xcb\x95\xaa\x34\x1a\x35\x71\x93\xda\x9f\x4f\xe7\x40\x77\xa8\xa7\xbb\x80\x32\xf5\x6e\x1a\xbb\xb7\x00\x76\xab\x68\x37\x8b\x53\x00\x0e\x25\x06\x8b\x7e\x62\x30\x5f\x2e\x2d\xf8\x2f\x2c\xf8\x1f\x4a\x8c\x69\xf0\x0f\x9b\xda\xfe\xba\x50\xe5\x1f\x5a\x8c\xdf\x9a\x16\xe3\xfe\x28\xc3\x44\xa6\xf8\x20\xeb\xdc\xbd\x78\x04\x7e\x7a\xfb\x5d\xd6\x8f\xa5\x7a\x5e\x67\x98\x1b\x93\xdf\x32\xcb\x67\x93\x39\xac\xb2\x7c\x76\x2a\xde\xd8\x7c\xf6\x40\xe0\x32\xdf\xe4\x97\x83\x81\x4e\x29\xb7\x30\xbd\xd9\xdf\x16\xa3\x8a\x99\xac\xf4\x4c\xf2\xb2\xc4\x97\x24\x5e\xc0\x26\x41\x5d\x07\xef\x30\x8d\x77\xe2\xb2\xef\xc5\x6d\xac\x87\x2b\xb8\xba\x0f\x86\x59\xe2\xd5\xea\x0f\xec\xf2\x07\x76\xf9\x25\xb1\x8b\xab\x18\xf1\xa9\xe5\x55\x41\x73\xde\x4b\x98\xdc\x07\xa7\x3c\x90\xc9\x2c\x34\x99\xf6\xa1\x58\x45\xa6\xe5\xb8\x40\xc3\x07\xd1\x01\xb4\x8f\xd6\x09\x17\x59\xa5\x52\x53\x55\xae\x95\x4f\x1f\x85\x11\xf7\x8a\x99\x12\x71\x63\xe3\x02\x32\x88\xef\x75\xcf\xef\xe1\x2c\xf0\xcb\x73\x56\x7e\xc0\x32\x93\xe7\x44\xc3\x00\xce\xd8\x7d\x89\x53\xda\xaf\x5a\x0b\xb8\x8d\x3c\xf8\x68\xcf\x8e\x01\x90\x3c\xa3\xe6\x60\x7f\xd5\xee\x0f\xfd\x4f\x50\x9e\x9c\x63\x0b\x91\xa4\x81\x48\x5c\x83\xc6\xa2\xf2\x10\xad\x9d\x86\xc7\x90\x13\xc5\xaf\xeb\xe5\xd9\x09\xa8\xfa\xb7\x32\x72\xef\x0f\xee\xa8\xd9\x05\xaf\xf6\xa1\xda\xf0\xc3\xa4\x0b\xf6\x4e\xdc\x9b\x61\xeb\xbf\x13\x30\xf7\x04\xf3\xf9\xfd\xe8\x30\xb2\x53\x26\xdf\x26\xc8\x74\xe2\x1e\x29\xb4\x08\xcf\xa7\xb5\x7b\x4d\x00\x53\x97\x99\x3b\x15\xf4\xa7\x51\x80\xe3\x52\x5a\x30\xc4\x05\x98\x0a\x5e\x32\x9f\x56\x8e\x6c\x23\xcd\xbf\x7e\x30\x1a\xc5\xb6\xf5\x83\x39\x80\xee\x77\x90\xea\x5f\x45\x98\x07\xa4\x3e\x0f\x48\xa1\x43\x93\xf9\xf7\xc2\x78\x38\x58\x36\xb0\xba\x0f\xc2\x0e\x3b\x3c\xfc\x86\xae\xc8\x7d\x5e\xfd\x2b\xbc\x44\xaf\xab\xd5\x0a\xbf\x93\x40\x2d\x7e\x3e\x92\xbf\xfa\x44\x66\x26\x6a\xb4\x20\x17\x04\xd9\x1d\x35\x3d\x0c\x71\x39\xb4\x1f\x96\x82\xd2\x5b\xe5\xd7\xb4\x92\x10\x69\x3b\x8e\xa0\xf5\xe8\x66\xf0\x0e\x2f\x53\x6f\xd7\x04\xf3\x4e\x89\x4e\xfb\x67\x9e\x64\xe7\x44\x2a\xc2\x71\x91\x46\xff\x33\x99\x24\x93\xa8\x3e\xc0\x9a\x61\xbf\x00\x8f\x6d\xb7\x64\x07\xf2\x6d\x49\xde\x7e\xb9\x17\xa2\x8f\xff\x30\x1e\x23\xe5\x7d\x61\xfc\xf7\x0f\xdf\x50\xd0\xb2\x31\xc9\x10\xf4\xcf\x89\x80\x29\x49\x9d\x1d\x26\xc0\x75\x2b\xb5\xc2\x28\x58\x7a\x37\xa2\x6a\x6e\x44\x71\x7f\xa4\xbf\xd8\x67\x63\x14\x42\x79\x0b\x43\xbb\xd0\xe6\xf8\xab\xe6\xf8\x8b\x5a\x7b\x0c\xfd\xd2\x6a\xcf\xbc\x51\x7b\x96\xf7\x93\xb3\x95\xd5\x05\x67\xf9\xe2\xb3\xd2\x23\x7f\xc8\x9a\xff\x90\x35\x7f\x24\x59\xb3\x01\xdf\x0f\x17\x38\x73\x7a\xbc\xcc\xf9\x7f\x8a\x6a\x4e\x60\xd5\xef\x19\xda\x45\x68\x7c\xe8\xd3\xbe\x03\xad\x9a\x57\x3d\xee\x57\xa3\x71\xfa\x4b\xe3\x54\x04\xde\x57\x75\x17\x72\x7d\xf9\x3d\x42\x92\x0f\x47\x1f\x40\xbe\xaa\x1e\x3e\x19\xf9\x6a\xce\xe3\x0f\xe2\xb5\x43\xbc\x2a\xcf\xa1\x7b\x91\xae\x9c\xfe\xfe\x21\xfb\x3f\x82\x70\xfd\xe5\x51\xec\x7b\x93\xad\x07\x1b\xbe\x7f\xaa\xf8\x58\xfd\x26\xed\x07\x7b\x3d\x1c\x78\xfc\xfb\x7d\x23\x3a\x87\x8f\x7d\xbc\x83\x7f\x0d\x78\x87\x35\xc0\x47\xea\x43\xa4\xa5\x07\x3a\x8f\xfe\xf2\xc8\x24\x10\x2f\x70\xaf\x6a\xa6\xef\x48\xbb\xa2\x72\x42\x6f\x62\x70\xc8\x7e\x55\x04\xbf\xfb\xc5\x37\xec\x0f\x9d\xe5\xef\x47\x67\x19\xf6\xf1\x3c\x05\xb3\x89\xaf\xc4\xfb\x48\x80\x2e\xe0\x57\xa6\xe0\x39\x00\xd4\x0f\x73\x0b\xfd\x03\xd2\xff\x80\xf4\x0f\x80\xf4\xde\xf8\x14\xef\x0f\xf4\x15\x5f\xc4\x9e\x87\x70\x8c\x21\xdd\x09\xf2\xda\x0b\x76\x67\xe0\x8a\x4f\x45\xe3\xa8\x65\xbc\x56\x33\x30\x9b\xa6\x0a\x9f\x5e\x23\xc2\xd1\x12\xde\x9d\x37\xaf\x7a\x55\x14\xd0\x68\x83\x9a\xbf\x5f\x6e\xc4\xc4\x4a\x55\xe4\xe9\xb3\x54\x51\xe3\x9c\x9b\xf6\x87\x1e\x56\x19\x5c\x42\x01\xc0\x92\x55\xbe\xe0\x94\xdd\x3e\xa3\x2c\x1c\xad\x2b\x91\x19\x4d\xb6\xdb\xbb\xda\xcf\x98\x25\x73\x1c\x36\x47\x23\x2a\x78\x81\x8d\x1b\x72\xa5\x35\xad\xe8\xbc\x71\xee\xbd\x0b\xc7\x0b\x6e\x9f\x7f\xd3\x02\xd4\xb0\xf4\x22\xf0\xea\x44\x4f\x0d\x50\xf0\x9f\x81\xd7\x4b\x19\xe8\x05\x32\x00\xd9\x60\x41\x49\x49\x0b\x94\xdc\xe4\x8c\xc4\xd1\xcc\x05\x9b\xb9\xb9\x29\x68\x29\xee\x4a\x89\xf8\x50\x34\xfe\x99\x12\x04\x87\x17\x15\x1f\x1a\x56\x4e\x17\x0a\xce\x9b\x50\x2e\x2a\x56\x9b\x24\x92\x51\x9d\x4b\xc4\xbf\x55\xa7\xe9\x5e\x0f\xe5\xcf\x2a\x55\xbe\xea\xab\x20\xf4\x60\xb5\x59\xe6\x1c\x05\xaa\x7f\xa8\xed\x5c\x60\x38\xc8\x41\x0d\xdd\xa2\xc0\xf5\x7d\xff\x01\x43\x89\x16\xe5\xf6\x1b\x3a\x16\xb5\xe0\x9a\xd5\x6e\x40\x10\x77\x23\xe4\xe1\x2a\x19\x03\x67\xf8\xf2\x12\xb1\x58\x3b\x2d\x6b\x67\xf2\x08\x22\x05\x0f\xc6\xc9\xbc\x6f\xa7\xcd\x77\xb9\xd7\x7e\x91\xd7\xa4\x0d\x31\x0d\xc0\xa0\xf6\x44\xb8\xef\xd7\xae\xa6\x82\xcb\x8e\xe7\x76\x20\xb0\x81\xa9\x25\x67\xb3\x6e\x35\xb0\x09\x1c\xc3\x31\x52\x1c\x24\xe9\xd8\x23\xb6\xf7\x3a\xb2\xee\xf4\x8e\x27\x77\x9f\x19\x4c\x13\xb6\x3a\xec\xe8\x2d\x58\x74\xdc\x76\xf4\xc6\xca\xd1\xbb\xe2\x8b\x5d\x53\x0f\x85\x70\xb8\xdf\x0a\x80\x9e\x85\xe5\x94\x76\xb9\xa3\xa3\x1d\xef\x40\x58\xae\xf2\x0b\xc4\x87\xb7\x45\x5c\xa3\x2e\x41\x25\xf0\xd1\x68\x92\x65\x82\xcd\xfd\x38\x56\x66\xae\xcd\x44\x81\xf2\x92\x0f\x4f\x23\x43\x71\x71\xf1\x22\x0b\x08\x68\x62\x39\x6c\xb7\x6c\x16\xc9\x9f\xc7\x48\xc6\x76\x90\x91\x23\xc5\xf3\x92\x65\x78\x34\x8a\xbb\x2c\x74\x3b\x7e\x44\x04\xda\xb1\xfa\x09\x00\x8a\x50\x51\xeb\xf6\xb1\xed\x97\xfe\x5a\x72\x32\x94\xe3\x0e\xe5\x26\x0e\xe5\xc8\x70\x68\x83\xa5\xc3\x21\x65\xc3\x28\x02\xc3\x9b\xbc\x1c\x6e\xf2\xb2\x54\x58\xd9\xed\x63\xa8\x4e\xf6\x4b\x9b\x9b\x0e\xf5\xc5\x06\xe8\x00\x08\xbd\x46\x8c\xe1\xa5\xa0\x7d\x6c\x46\x92\x6e\x4e\xb0\x8f\x0b\x1f\x66\x1c\x97\xfc\xfd\xff\xd9\x7b\xb3\xf6\x36\x8e\x63\x61\xf8\x9e\xbf\x02\x98\x37\x07\x99\x0e\x1b\x20\x40\x52\x1b\xa8\x31\x2d\x6b\xb1\x75\x62\x59\x8a\x44\xdb\x71\x60\x1c\xbe\x43\xa0\x41\x4c\x34\x98\x81\x67\x1a\x94\x68\x02\xcf\x93\xc4\x4b\x9c\x38\x9b\xcd\x24\xce\x62\x29\x89\x97\xc4\x8e\xb3\x58\x49\x9c\x68\x89\xed\x0b\xed\xef\x85\xcf\x6f\x20\x2f\x75\xf3\xfd\x85\xef\xe9\xbd\x67\x03\x40\x91\xb2\x9d\x44\xc9\x63\xb1\xd0\xdd\xd3\x55\xbd\x55\x57\x55\x57\x57\x0b\xb9\x13\xd1\xa7\x61\xc5\x43\xb1\xa9\xa1\xba\x49\x81\x31\xc3\x75\x33\x0b\x88\xba\x3b\x1b\x50\x7b\x1b\x8b\xc4\x14\xdd\xd0\xd3\x9f\x63\x36\x6d\x6b\xcb\xe6\x0f\x45\xde\x56\x4c\x20\x03\xd3\x06\xfd\x7e\x0c\xd5\x30\xf1\xbe\xdf\x37\x6a\x2c\xce\x7e\xee\x80\x68\x72\xdd\xb0\x2c\xe1\x56\x2d\xe3\xc9\xcb\x77\x86\x59\xcc\x72\xa5\x18\x24\xac\x69\x1a\x7e\xb2\x81\x8c\x27\x49\x87\x5d\x22\xf5\x64\x0a\xd1\xa6\xf6\x96\x74\x5c\xde\x71\x5a\x26\x2a\xb5\x6d\xc6\xf4\x94\x62\x23\x17\x1a\x98\x18\x1a\xb2\x7d\x0b\xf3\x80\x57\xed\xeb\xcb\x22\x88\x4b\x53\x38\xf2\xc6\xab\xdc\x07\x89\xb4\x34\x18\xd4\xf9\xcb\xd5\x76\x72\x09\x75\xed\x65\x54\xc4\x0e\x76\x91\xd4\x19\x55\xd2\x98\xab\x48\x9e\x69\xe3\xf4\x9d\x98\xd6\x84\xb4\x27\xa3\xb7\x75\x1c\xcd\xf5\x3d\xdd\xaf\x3f\x16\x52\x87\x34\x60\x81\x60\x7d\xd4\x09\x33\x23\xeb\xb4\x91\xdd\x3c\x64\x63\x3b\x2b\xdf\xf1\x1c\x9c\x88\x66\xc2\x54\x1f\x33\xa9\xe6\x44\x50\x1a\x80\x69\x93\x6b\x8e\x08\x9a\xb3\xdc\x73\x9a\x44\x4c\x17\x2f\xa9\xa7\x05\xbf\x91\x2e\xaf\x23\xea\x96\x11\x63\xf8\x1d\x82\xb5\x01\x0c\x24\x3f\x70\x4a\x4e\xd3\x4a\xc1\x09\x9d\x12\x1d\x07\x0b\xf1\x67\x5a\x88\x54\xc1\xa8\x94\xcf\x67\x07\x3d\xaf\x14\x36\xda\x88\x74\xfe\x71\xaf\x81\x4c\x83\xde\x08\x17\x2f\x68\xc7\xc9\x12\x1d\x68\x00\x88\xa1\x07\xa0\x61\xa4\x46\x81\x89\xe9\x2f\x19\x6d\x0a\xd2\x88\x9e\x40\xa5\x00\x75\xfc\x15\x22\x22\x4c\xc4\xfa\x46\xd7\x83\x5c\xdf\x3f\xdd\xeb\x9a\x46\xe0\xf7\x30\x0a\xaa\x1d\xdb\xf1\x68\x37\x99\x5e\x69\x91\xa5\x1d\x73\x1a\x81\xef\x3a\x4b\xfd\xbe\x57\x62\x29\x44\xe9\x01\x25\xbb\x81\x9d\x15\xb4\x10\xd8\x5e\xe8\x60\xe6\xa1\x90\xdd\xcc\x09\x67\xde\x21\x9c\xa9\xe3\x84\xa8\xc4\x15\x7a\x5d\x53\xf3\xd5\x2b\xdc\xa8\x29\xbc\x12\x47\x74\xaa\x0f\x31\x11\x3f\x41\x75\x2b\xa5\x07\x11\xd5\x7e\xd8\x92\x96\x2a\xb4\x4a\xcb\x7c\xc0\xba\xe1\x77\xef\xdd\x3b\xd5\x29\x8b\x36\xa6\x5c\xaf\x8d\xb3\xe0\x34\xae\xe2\x9f\x46\x5e\x28\x66\xe5\x01\x13\x24\x8b\x30\x5e\x6b\xc0\xb2\x38\xed\x64\x93\xe9\xf0\x59\x27\xc4\x8e\xb7\x4c\xa7\xdf\x82\xbd\x6c\xd2\xe8\x45\x94\xcc\x53\xa8\x6b\xd3\xcd\xaa\x6a\xe4\xfa\x39\x43\x24\x9f\x08\xe8\x83\xc3\xd5\x7c\x59\xa4\x9c\x44\x5d\xd7\x6e\x70\x65\x9f\x91\xc2\x60\xca\xa2\x17\x48\xc2\x21\x56\x32\x4c\xd1\x09\x13\xb1\xac\x62\xd8\x8d\x88\x7c\x1d\x2d\xc4\x69\xa1\x4a\x41\x46\x11\x4e\x9c\x01\x26\x98\x18\x48\xb6\x03\x5e\x33\x11\xbc\xd5\x2f\x8b\x6c\x3d\xbc\x48\x97\xd5\x5b\x28\x90\x84\xbc\xc5\x4a\xf2\x44\x2b\x50\xe5\x02\x56\xb9\x28\xe7\xd1\x72\x3c\xd1\xf2\x88\x22\xe5\xb5\x51\xe0\xe0\x23\x81\xdf\x39\x11\xa0\x15\xc7\xef\xa5\x75\x01\xad\x9b\x66\x4e\xe0\x42\xc1\x1c\x49\xa8\x82\x53\x48\xd6\x28\xc5\x02\x02\x60\x00\x09\x7b\x4b\xd1\x90\x99\x36\x48\x07\x8d\x2c\xe3\xe6\x43\xab\xa6\xe1\x10\x35\xb0\xe4\x34\xe9\xcd\x00\xc9\x89\xf5\x92\xe2\x55\x2d\xfa\xb8\x0b\x3d\x44\x25\x0b\x06\x98\x5a\x19\x22\x9f\x05\xaa\x61\x72\x37\x16\x29\x96\x0f\x11\xb5\x3c\x5a\x01\xfd\x03\x79\x24\xad\x44\x87\x99\x42\x67\x4d\x4e\x27\x92\xe5\xd0\x37\xc6\x1a\xc8\xf4\x60\x85\xa8\xb7\x74\x71\x8d\x5a\x20\x0e\x00\x03\x76\xa4\xaf\xb7\x8a\x9d\xda\x16\x99\x65\xdb\x16\x5d\xc9\xa8\xb5\xa1\xcd\xa8\x45\xc3\x08\x1d\x46\x29\x77\xdb\xca\xe8\xad\x09\xe1\x8d\x3d\x7a\x75\x87\x43\x96\x77\x7c\x15\xf0\x74\x30\x59\x01\x03\xc8\x96\xfc\x56\x26\x01\xd3\xb6\xe9\xf0\x38\xfa\x68\x92\x99\xee\xa9\xce\x71\xa8\x66\x6d\x3a\xac\x87\x3c\x00\x55\x51\xfe\xb9\x45\xe6\x69\xc4\xe7\xfe\x80\x99\xd1\x13\x60\xc2\xe7\x3b\x1d\x97\x90\x83\xd1\x5d\xe2\xdf\x45\x97\x14\x49\x97\xac\x38\xa1\xb3\xe4\xa2\x05\xc6\xb5\xe2\x16\x3e\x81\x26\x2e\xee\x2a\x15\x27\x5e\x39\xff\x02\x40\x6c\xa1\x79\xa1\x29\x54\x89\x32\x51\xab\xcf\xe1\x62\x71\x4e\xac\x26\xaa\x33\x10\xe5\x54\xf0\x0b\xb0\x16\x94\x7a\x1e\x0b\xc4\xe3\x81\x89\xa5\x00\xd9\xa7\x07\x7a\x92\x32\x90\x0f\x00\x0c\xfd\x00\xa3\x66\x06\xd9\x91\x46\x25\xa9\x4f\xa7\x3c\xfa\x11\x61\xba\xf9\x32\x7d\x8e\x4f\x8a\x58\x07\xa8\xff\x93\x5a\xc9\x69\x2f\xf0\x51\x45\x40\x70\x9d\xb5\x80\xc6\xcb\xcd\x57\x78\x3d\x6c\x86\x7b\x40\x5c\xbe\xf0\xc8\x3a\xf3\x0b\x05\xd3\x44\xfa\xb2\x40\x00\x68\xdc\xce\x8f\x70\x3b\xd9\x1f\x08\xb0\xc7\x04\x83\x7e\xdf\xd4\x48\x95\x28\xa0\xf6\xd8\x1f\x74\x4a\x01\x6a\xf6\x1a\x28\xe6\xe1\x21\x5b\xc2\xd5\x1a\x0c\xe4\xb3\xff\x42\x3c\x1f\x6f\xd4\xf5\xd1\xa0\x63\x5f\xab\xc3\xc0\x2a\xd3\x47\xc2\xb9\xb2\x18\xec\xf7\xe6\x82\xc9\x49\xf9\x70\x7f\x2d\xa8\x4f\x70\x31\xb4\x50\x30\x31\x97\x3e\x59\x02\x80\xc1\x64\x65\xbf\x57\x28\xc8\x64\xd5\x05\xea\xd1\x7a\x29\xbb\x0e\x60\xc6\x66\x1e\xd3\xd0\xf2\x6c\xe3\x6f\xdb\xe1\x11\x3b\xc4\x4b\xbe\x8f\x4d\x00\x54\xa3\x9a\x7e\x83\xaa\x59\xa4\x5d\x87\x5d\x44\x35\xae\x87\x56\x17\xec\xe5\xc7\xec\x0e\x32\xb9\xe6\x42\x1a\x57\x8e\x2b\xc1\x9c\x8b\x30\x35\xb8\xd4\xb5\x03\xe4\xe1\xc7\xfc\xa6\x10\x58\x0f\xb6\x1d\xb7\x69\x06\x60\x30\x80\x3a\xf2\xa4\xbd\x3c\x9f\x1f\x2a\xd1\x72\xf9\xad\xda\xe2\x15\x18\xa3\x85\x3f\xff\x0c\x0a\x8a\x21\x72\x51\x83\x05\x87\xf5\x3d\xd2\xaa\x29\x3d\xbd\xd8\xe9\xb9\xd8\xe9\xc6\xe3\xdb\x3f\xc8\x6a\x68\xa2\x86\x4f\x3b\x3e\x54\xdf\x4b\x21\x31\x52\x3d\x51\xa3\x5d\x1b\xa3\x70\x0c\x44\x69\xdf\x33\xc3\x9e\x7c\xd6\xad\x65\xbb\xee\x92\xdd\x38\x5d\x74\x5a\x45\xf5\xda\x5e\xf2\x89\xde\x98\x54\x4a\x67\x97\x7a\xae\x1c\x36\x60\x0b\xb6\x61\x13\x76\x61\x47\x69\xa6\x2b\xca\x8c\x67\xae\xfc\xfb\xbc\xad\x47\x38\xc7\x40\x36\x72\x55\xf5\x50\x50\x28\x64\x49\xeb\x38\xf2\xf0\x63\x50\x52\x3f\x20\x3b\x44\xea\x89\x1c\xfd\x27\x14\xaf\x3b\x56\x83\x92\x00\x21\x13\xf5\x89\xf2\xec\x60\xc7\x76\x9d\x67\x51\x30\x1f\xf9\xc5\xac\x36\x1e\xa8\x32\xf9\x7f\xa0\x11\xbb\xcc\x18\x92\x7a\x4e\xaf\x3c\x17\xec\xc7\x92\x77\x88\x35\xe6\x59\x98\xf0\x0d\x4f\x23\xd3\xd2\x7f\xf4\xfb\x84\xd7\x46\x48\x25\xac\xd1\x60\x4f\x40\x3b\xec\x4d\x47\x4f\x92\x6c\xe5\xcb\xd9\x4f\x63\x7a\xa5\xd3\x68\x15\x7a\x60\xa0\xa8\x5c\xd2\xe6\xcd\x92\xb0\x4e\xb1\x23\x12\x36\x28\xc7\x5b\xf3\x3c\x75\x39\x92\x9a\x3a\x15\x4a\x8b\x8b\x74\x34\x17\x17\xfb\xfd\xd4\xaf\x28\xef\x8e\x8c\xe9\x22\xdf\x62\xa4\xe7\x27\xd2\x2c\xcc\x27\x51\x0b\x05\xc8\x6b\x08\x0b\x17\x61\x1e\xb9\xb6\x1d\x7a\x5f\xc4\xb9\x25\x84\xbc\x9c\x18\x8a\x10\x35\x73\xc5\x1c\xd7\xa5\x22\x25\xc8\x00\xa1\xa6\x72\xa8\x42\x0a\xf5\x19\x7d\xcb\x30\xcf\xa4\xb7\x5e\x37\xfb\x45\x36\x18\xd9\x54\x0b\x43\x3a\x51\x21\xd6\x9a\x75\x58\x7f\x6f\x9b\x6d\x8d\xea\x94\x92\x23\x3a\x8d\x56\x43\xd3\x03\xa9\x9b\xae\x5f\x43\x75\xcb\xab\xa1\xfa\x00\x40\x5f\x9f\x1b\xf9\xbc\xfe\x13\xfa\xb1\x99\x91\x8f\x26\x40\x53\x4d\x14\xbf\xdf\xf7\xf5\xb9\x0b\x0a\x05\xd3\x8f\x4e\x1c\x22\xde\x33\x89\x19\x94\x02\xb4\x82\x82\x90\x41\xd1\x8d\x96\x2d\x40\x7e\x34\xc3\x1d\x2e\xfa\xfd\x60\x00\x7d\x2a\x33\xca\xc3\xb8\x08\x36\x8a\x8c\xd2\x12\x4d\x9f\xf7\x93\xeb\xc9\x11\xeb\x09\x46\x32\xb9\x92\x0d\x94\x97\x70\x1c\x43\x36\x4b\xf0\x49\xe3\x88\xc0\x0a\xa0\xbf\x43\xc6\xb9\xb3\x96\x78\xb4\x02\xb3\x0d\x15\x50\xab\x93\xcf\xd2\x5c\x7b\xd5\xef\x61\xfd\x29\x6f\x68\x93\x1c\x4f\xf9\xa6\x1a\xa9\x5b\xc9\x14\x3f\xc7\xa3\x2e\xc8\xd1\x0f\x18\xfd\x3d\x2b\x21\xd3\xb2\x2f\x0e\xba\x76\x48\x64\x15\x37\x59\xc0\x5e\xe2\xa7\x06\x46\x88\xec\xa0\xd1\x3e\xec\x91\x31\x6f\x1a\x50\x7e\x2b\x77\x42\x00\x1b\x31\xb4\xd1\x05\xa0\x18\x9a\x49\xd6\x8a\x4b\x0f\x73\xfa\xfd\x5a\x1d\x88\xf7\x9c\x89\x86\x51\xac\x88\x27\x42\x05\xc7\x73\x26\x27\x81\xd3\x32\xe5\x5d\xd6\x67\x7a\xb6\x6b\x06\x35\xa7\x0e\x11\x00\x6b\x9e\xe5\x08\xf9\x98\x4f\xac\x07\x8a\x95\xf9\x40\x53\x04\x41\x35\x90\xea\x14\x11\x0b\x1c\xb3\x65\xf9\xa6\xd9\xb4\x0e\x9b\x66\x3b\x72\x9a\xa5\x99\x6b\xb9\x64\xcc\x16\xe2\x9c\x99\xf0\xdf\xc9\x9b\xca\x1e\xee\xb7\x72\x18\xa4\x1f\x6f\x1d\xb4\x3d\xcf\xc7\x94\x97\xe4\xec\x1c\xf5\x3a\xc8\xd9\x61\xce\x96\x27\x66\x06\x61\x6b\x54\x70\xc4\xca\x2e\xee\x27\xed\xe2\xb6\x66\x17\xf7\xc9\x00\x97\xe7\xc2\xfd\xfe\x5c\x38\x39\x09\xec\x5a\xa8\xdb\xc5\x43\x69\x17\x67\x6a\x3a\x5c\x25\x32\x31\x99\x71\xc8\x5a\x32\x31\xa0\xb1\x51\x5c\x6e\x32\x47\xb0\x46\xca\xc8\x93\x14\x1b\x00\xd0\xef\x8b\x97\x7e\xf3\x96\xb5\x62\x3a\x40\xdf\xa7\xe5\xdb\xe2\xce\xfc\x22\xd9\xbe\x9c\x94\x89\x00\x9b\x70\x91\x9e\x5d\xae\x9a\x01\x34\x58\x20\x44\x7e\x32\xae\x15\xea\x46\x0a\xf5\x1c\xb7\x79\x8a\xce\x09\x1a\x94\xa1\xc3\x33\x83\x81\xf4\xbc\x9e\xc8\x72\xa5\x4a\x21\x0e\x0b\x2b\x8c\x85\xd3\xc7\xe5\x14\x61\xf8\x39\x74\xb6\x1b\xa0\x30\x24\x23\x4e\x43\x58\x20\x07\xb7\x51\x90\x5b\x42\x39\xf2\x75\xce\x0f\x22\x03\x35\x81\x94\xc4\x11\x8f\x72\x43\xc5\x73\x91\x09\xd7\x34\xd1\xa5\xca\xd9\x81\x26\x27\xe4\xcb\x51\x79\x22\x5f\xa6\x5a\x46\xa1\xc0\xf6\x95\x81\x89\xb9\x9e\x2a\x7b\x8b\x68\x60\x18\x9a\x9e\x55\x5b\x3b\x8d\x56\xab\x46\xdb\xf6\x9a\x2e\x3a\xde\x45\x9e\xc1\x45\x8d\x44\xaf\x50\xf9\xde\xf7\x48\x99\x42\x21\x5f\xb1\x2c\x4b\x4b\xa1\xa5\xf8\xc9\x4c\xbe\xc2\x1c\x2a\x5a\x7e\xa3\x17\x1e\xf5\xba\x3d\xaa\x4f\x0d\xa0\x8e\xe9\x08\xc9\x4b\x47\xc5\x6b\xa5\x25\x0a\x05\xfd\x17\xcd\x87\x23\xeb\xfe\x32\x5a\x6d\xfa\x67\x32\x1a\xa2\x7b\x57\xf9\x1e\x2f\x1a\x6d\x0f\x4f\xa4\xe5\xe7\x09\x67\xc1\x7e\x97\xb0\x66\x7b\x99\x3d\x12\x04\x60\xbe\x02\xaa\x95\x19\x7a\x14\x7d\x1a\xad\x1e\xf4\x9b\x34\xb8\x85\x13\x92\x9e\x48\xff\x42\xbd\x1d\x5f\x6a\x3b\xcb\x6d\xd7\x59\x6e\x63\xd4\x9c\x47\x92\x6d\x15\x0a\xf4\x99\x7c\x95\xa0\xde\x96\xd7\xbf\x00\xf3\x26\xa2\xa6\x74\xdf\x0b\x4b\x0d\xd7\x0f\x91\x89\x19\x3d\x7a\x7a\xdb\x27\x19\x91\x0f\x61\x4a\x31\xed\x73\x29\x36\x8a\xae\x54\x1d\x9c\xec\x47\xa6\x88\x0b\xfb\xa2\xd4\xec\x9e\xe9\xa1\x60\x95\x2d\x39\xb2\x22\xfe\x4f\x52\x0d\x29\xf2\x95\x2d\x77\x98\xa2\x43\x30\x14\x0d\x19\xb3\xb8\xd4\xf3\x9c\x67\x7a\xe8\x68\x13\x80\x09\xba\x06\x28\x1d\x26\x18\x48\xc2\x58\x49\xe4\xd9\x44\x27\xd6\x77\x9b\xf8\xab\xea\x4c\xef\xac\xa5\x68\x43\x0a\xbd\xd8\xe0\xa2\x5e\x77\xfa\x26\x46\x06\x96\xf2\xfa\x44\x0e\xd9\x8b\x99\x92\x9c\x33\xd4\x14\x14\xc3\x97\x20\x87\x21\xa8\xd5\xe3\xae\x59\x4a\x7e\x61\xb6\xd6\xf9\x5a\xbd\x8a\xb4\xd6\xb2\x8d\x73\xc1\x5e\x3a\xca\xb6\xcd\xd4\x6a\x47\xec\xdf\x62\x6e\xc7\x19\x2b\x5f\x5e\x91\x8d\x78\xde\x28\x56\x8c\x2a\x2b\xce\xf7\xea\x7e\xdf\x28\x1b\x83\x41\x1d\x14\x0a\xcb\x66\xa0\xb1\x25\x8f\x4a\x59\xcb\x66\x00\x1d\x00\x31\x3d\xc3\x55\x99\x29\x6c\xbc\x66\xd7\x29\x2b\xd3\x39\x15\x8c\x3e\x8d\xaf\xf3\x34\x4d\xa2\xa2\x26\xff\x01\x80\x5d\xeb\xb0\xd9\xd6\x91\x64\x6d\x06\xb5\x70\xbb\xa8\x62\x88\xb2\xe7\x5d\xad\x57\x87\x4a\xc5\x38\x7e\xc6\x13\x72\xdc\x21\x14\x36\x02\xa7\x4b\x56\xc3\x78\x55\x01\xa8\x95\x4b\x50\xa0\xa6\x56\x2d\x2a\x55\x6d\x11\xbd\xac\x67\x38\xba\xe4\xd4\xab\xb9\x5b\x6e\x68\xac\x8a\xe1\x18\xf5\x4d\x88\x37\x71\x91\x31\xab\x2d\xe2\xd5\x2a\x1a\x07\x23\xdf\x8c\x76\x00\x25\xab\x69\x1c\x9c\x72\x93\xda\x01\xac\xa2\xae\x18\xde\x4e\x62\xad\xc4\x64\xa2\x5a\x63\xbb\x6b\xa4\x65\xb5\x89\x78\xd7\xa2\xff\x69\xc6\xb2\xb3\x89\x07\xc2\xb6\x64\x2c\x93\x8c\xeb\xd3\x32\x9a\x49\x84\x23\xdc\xf7\xa9\x99\x04\x6a\x26\x30\x65\xf6\x6a\x68\xe6\x8b\xc6\xbf\xab\xd9\xab\xf5\x2f\x61\x49\x6a\x6b\x43\xd1\xfe\x2c\x2c\x49\xcd\xcf\xce\x92\xd4\x8d\x58\x92\xba\x3b\x6a\x49\xea\xdc\xb7\x24\xfd\xbb\x5b\x92\x56\xac\x33\x8e\xd7\xf4\xcf\x14\x0a\xec\x6f\xc9\xb3\x57\x9c\x65\xca\x96\xe2\x09\xa5\x5e\x88\x82\x03\xcb\xc8\xc3\x55\xc3\x80\xab\xd6\x8a\xd4\x58\x8c\x63\xa7\x8e\x1e\xce\x19\xe0\x81\x62\xa5\xdf\xd7\x92\x17\x02\xa7\x89\x3c\x3c\x45\x73\xe0\xb2\x65\x7a\x29\x46\x2b\x27\xd3\x68\xe5\x27\x8c\x49\x8c\x8b\x97\xd6\x98\x00\xbb\x80\xce\x0a\x56\x04\xa5\x16\xc5\x7e\x0f\x68\xcc\xb5\xf8\xe7\xf4\x64\xb4\xed\xbb\xd4\xe1\x47\x54\x16\xfb\xd2\x00\xd0\x33\x43\xcb\x31\x4d\xd7\xea\x98\x66\x6f\x2c\xf3\x8e\xd8\x1f\x3e\x6d\x33\x4f\x2b\x69\xe6\xe9\x6a\x66\x9e\x16\x91\x09\xca\x73\x9d\xfd\xad\xb9\xce\xe4\x24\xe8\xd6\x3a\xba\x99\xa7\x13\x37\xf3\x48\x23\x4f\x7b\x94\x91\xa7\x1b\x37\xf2\x34\xb2\x8d\x3c\x4d\x66\xe4\xf1\xad\x00\xda\x96\x81\xd1\x59\x7c\x0c\xd9\x61\x2f\x20\x63\x10\x5a\x2e\xec\x59\x4d\x33\x00\x30\xcc\x3a\x55\x21\x5d\xab\x9f\xaa\x84\x99\xa7\x2a\x61\xc6\xa9\x4a\x18\x3f\x55\x09\x23\x6b\x37\x4c\xae\xdd\x9e\x3a\x55\x81\x41\x69\xd1\xb5\x43\x7c\x94\x2a\xfb\x56\xbe\xf2\x1f\x66\x51\xea\x8e\x6b\x51\x6a\x3a\xcd\x93\xa8\x81\x9c\x15\x74\x00\xe3\x20\x69\xeb\x91\xf7\x20\xa8\xd1\x45\xc8\xa5\xf4\x06\x15\x57\x4a\xb1\x69\xc8\x74\x03\xf2\x44\xf2\x83\xf0\x2e\x66\x6c\x29\x14\xf2\x5a\xba\x4c\xcc\xf4\xf0\x63\x96\x0f\x03\x32\x67\x32\xed\x4b\x61\x13\x61\x9c\x04\x1a\xba\x46\x8f\xfd\x00\x51\x4b\xc8\x29\xbc\xea\xa2\x14\xab\x95\xb0\x84\x70\x0e\xb9\x8c\xf0\x41\xce\x63\xe8\x17\xd4\x4c\x6c\xe1\x52\xcb\xf7\x58\x15\xf4\x7e\x3e\xf9\xf5\x84\x1d\x38\xb6\x87\x59\x24\x5e\xdf\xc3\x4f\x22\x67\xb9\xcd\xc2\xf1\xd2\xc2\xce\xb3\x2c\x7a\x93\xeb\x78\xe8\x11\x96\x17\xf2\xbc\x23\x76\xc7\x71\x57\x27\xb8\xb7\x50\xb7\x87\x8f\xf8\x1e\xb6\x0c\x69\x49\x09\xa0\x91\x33\xa4\x4b\xb5\x17\xf9\xe5\x44\x7e\xf9\xd0\x98\x52\xbf\xec\x48\x5e\xa8\xba\x81\x19\x95\x98\xa2\x9d\xdd\x05\xa8\x84\xed\x60\x19\x51\x11\x89\x8c\xbb\xb3\xd4\xc3\xc8\x34\x9a\x36\xb6\x8b\x82\xb3\x16\xd9\x01\x00\xf5\xff\xc2\x60\x0d\xa5\x98\xcb\x98\x6b\x14\xf2\x30\xf7\x70\x32\x45\x70\x71\x6d\xcc\x50\x93\x7b\xf0\xe8\xe3\x28\xb2\xd8\x1d\xcf\xe4\xf8\x72\xd3\x58\xa0\x19\x94\x98\x0e\x95\x69\xea\xe2\x46\x41\x9a\x1f\xb5\x13\x0a\xf3\x63\xbf\x9f\x86\xc9\xa7\x56\xd1\xb1\x6d\x93\xba\x89\x75\xb8\x55\x52\x73\x80\x4f\xb3\x4c\x92\x5e\xdd\x4b\x44\x4e\x61\x9a\xe4\x6e\x33\xc9\xb2\xd1\x9b\x28\x72\xe4\xd8\xb5\x5c\x31\xa0\x69\x9d\x5b\x4b\x4b\xe4\x1b\x4e\xb1\x52\xa7\x6e\x86\xe9\x8b\xcb\x95\xe3\x15\xd5\x45\x4d\x1c\x5b\xdf\x00\xaa\x90\x60\x82\x61\xce\x67\x2f\x58\x13\x83\xea\x90\x5c\xcd\xa3\x06\x6a\x16\xaf\x23\x0e\x72\x9b\xc2\xab\x2e\x7d\xf8\xc0\x80\x3a\x02\x99\xb2\x37\x1f\xb0\x66\xf7\x12\xa5\x8a\xff\xdc\x6f\xed\x2b\xf7\xfb\x33\xd3\x91\x0e\x27\xf9\x89\xee\x4e\x58\x08\xd9\xec\x1d\x6a\xa5\x46\x25\xb6\xa5\x1e\xc0\xf3\x0a\x24\x6d\xd5\x2f\x97\x62\x55\x35\xd7\x62\x8f\x71\xad\x56\x31\xad\x84\xd9\x50\x1e\x7f\x0d\x61\x92\x69\xdd\x12\xa0\xae\xcf\xfc\xb7\xa3\xdd\xa6\xcc\xd8\x44\x48\x8e\x7a\x30\x25\xd6\xa6\x74\x92\x13\x7b\x40\x39\x62\x7e\x95\xec\x8c\xde\x5d\x63\x96\x48\x4d\x4c\x28\x9d\x71\x9a\xb8\x1d\xab\x59\xc8\x7f\x30\x5a\x83\x74\xdc\xe3\x37\x5b\xda\xb8\xe3\x9e\xb2\x5b\xc8\x34\x68\x25\xd5\x9c\xb2\x3c\x4f\x4e\xef\x82\x46\xf7\xac\xa1\x7c\xa0\x86\x7f\x59\x29\x97\xff\x6b\x4e\xdb\x26\x3a\xf6\xea\x12\x3a\xa1\x4b\x94\xc9\x2e\xcf\xaf\x02\xbd\xa1\xdb\xea\xbb\x79\x83\x5b\x69\x35\x29\xb6\xdf\x37\xb8\x9d\xb6\x95\x62\xa7\x6d\x65\xd9\x69\x23\x32\x58\x2d\xed\x92\xc6\x76\xed\x44\x1d\xb3\x97\x62\x19\x4e\x9b\xa7\x35\x7f\xb4\x09\x6c\xcc\xba\x68\xd8\x61\xcd\x1c\x16\xfd\x2e\x39\x5e\x35\x7b\x8b\xa8\x13\x55\x0c\xc7\x98\x14\x24\xb6\x6a\xfb\x1b\x5e\xdd\x70\xec\xd1\xfd\x7b\x5b\x98\x23\x55\x0d\xc7\x1a\xd9\x5c\xb7\x85\x54\xaf\x69\x1c\x9c\x77\x6d\x60\x1d\x52\x57\x0c\x6f\x68\xf5\x88\xde\x13\xd2\xff\x34\xeb\xe7\xf2\x5d\xb9\x0a\xde\x6b\x63\xe7\x36\x1c\x03\xc7\xf9\xd2\x67\x47\x30\xc5\x8e\x8d\x1b\x6d\xaa\x50\x67\x7e\xb3\x1c\xf8\xbd\x6e\x91\xc2\xda\x95\x18\xaf\xd1\x0b\x02\xe4\x35\xe2\x37\x63\x94\x4a\x9d\x62\x8c\x4d\xf8\x21\xc2\x15\xb8\x0a\x97\xe1\x12\x5c\x84\x67\xe0\x61\x78\x16\x9e\x82\xc7\xe1\x01\x78\x1a\x2e\xc0\x83\xf0\x18\x3c\x09\x4f\xc0\xaf\xc3\x43\xf0\x31\x78\x14\x3e\x0a\x8f\xc0\x67\xe1\x23\xf0\x21\xf8\x38\x7c\x12\x3e\x03\x9f\x80\x4f\xc1\x87\xe1\x97\xe1\x17\xe0\x57\xe0\x57\xe1\xd7\xe0\x7f\x43\x84\x20\x46\x30\x40\xd0\x43\xd0\x41\xd0\x47\xd0\x46\x30\x44\xb0\x87\x20\x51\x36\x91\xb2\xfe\xb6\x90\x66\x73\x6c\xa1\x7f\x57\xfb\x6f\x1b\xfd\x2b\xf9\x3d\x36\xd1\xbf\x84\xb9\xba\x8b\x3e\x3b\x73\x71\x07\x89\x73\x0e\x3e\x77\x3b\xc8\x32\xd4\xc2\x97\xd6\x8a\x93\xa8\x45\x16\x70\xa1\xc0\x01\xc2\x3e\xe7\x35\xb8\x1a\x3f\x36\x89\xc5\x2d\x92\xe3\x30\x97\x4f\xdc\x3b\x6e\xdb\xa1\xc6\x89\xf9\xed\x63\x88\x81\x34\x90\x98\xc8\x5a\x21\x7d\x04\xe6\xc0\x9c\x6c\x02\x8b\xe3\xe3\xb4\x4c\x4f\x78\xbd\x8f\x62\xec\x1e\xf9\x40\x5e\xde\x24\x0d\xa0\xff\x32\x84\x01\xa8\x3a\x4c\xf5\x19\x30\xbb\x37\x0c\xfa\x7d\x7d\xea\xaf\xe8\x2b\x7c\x05\x7d\x16\xc7\x0a\xab\x28\x62\xdc\x5f\xcd\x20\xe2\x2e\xad\xfb\xcb\xe8\xbe\x79\xff\xf3\x6b\xde\x57\x6e\xd2\x28\xea\xc8\xa4\x1c\x54\xa2\x0e\x29\xca\xad\x19\x45\xa6\x1d\xf6\xa9\x31\x78\x5e\x42\x26\xa8\xa2\x1d\x3a\x3d\x38\x83\xac\x35\x2e\x07\x54\x6b\x75\x18\xa0\x90\x5e\xcb\x54\xe0\x41\xbf\xe7\xe1\x6a\x59\x9a\xe7\x45\x9f\x69\x8e\x4a\x22\x49\xe9\x74\x55\xc3\x80\xae\x1d\xe2\x53\x34\x05\x35\x65\x9a\x6f\x37\x1d\x6f\xb9\x9a\xaf\x40\x27\x3c\x40\xaf\x17\x13\x78\x11\x9d\xed\x3a\x74\x26\x9d\x8a\x54\xb1\x18\xa0\x2e\xb2\xb1\xe3\x2d\x1f\x6c\xdb\x41\xd5\x30\x06\xf0\x30\xb2\xcc\x30\xe5\x0c\xa2\x97\x79\x06\xe1\xc6\x1c\x52\xc9\x0c\x8c\x3b\xa9\xe6\x2b\x00\xb6\x62\x69\xbe\x00\x8f\x31\xf1\x08\xc0\x76\xdc\x05\xf7\x51\xd6\x9c\x1c\xef\xc0\x52\xa9\x64\x00\xd8\x8c\x97\x7a\xcc\xcf\xf1\xbe\xcc\xb5\xfc\x1e\xbd\x9d\xda\x8d\x97\x59\x58\xed\x22\x16\x90\x89\xb4\xdf\x00\xb0\x93\x42\xf5\x4a\x16\x85\x8f\x68\xde\x66\x70\x35\xab\x14\xc1\x71\xa0\x8d\xec\xa6\x6c\xd0\x72\x0a\x92\xa5\x54\xb7\xe1\xc5\x61\xde\xc7\x53\xcc\xa3\x47\xc8\x93\x06\x80\x67\x86\x16\x57\xe5\x0e\x0f\x2d\x17\x39\xf7\xa7\x12\xa8\x01\xe0\xd9\xa1\x9f\x28\xf7\xe7\x53\x43\xcb\xb1\x7e\x2e\x76\x50\x18\xda\xcb\x44\xef\x3c\x3e\x9c\x92\x88\xc6\x78\x20\xd3\xc5\x59\x2d\xda\x01\x80\xa7\xe3\x55\x2e\xf5\x30\xa6\xea\xd7\x02\xc9\x71\xb4\x1c\x29\x81\x27\x27\xdd\xc1\x78\x59\x1c\x1b\x46\xed\xa3\xe4\x08\x1f\x1b\xee\xee\x0d\x8d\x6e\x6f\xc9\x75\x1a\x07\x4e\x1c\x2d\x89\x05\x69\x00\x78\x32\xf1\x55\x33\xf0\xbb\x44\x9f\x1a\xfa\xd9\x89\xe4\x71\x9d\x2c\xb6\xc6\x97\xbe\xc6\x24\x22\x1c\x66\x20\xbd\xcb\x25\x70\x4c\x0e\xce\xd7\x53\x8e\x11\x79\x51\x1d\x43\x8c\xe1\x44\xea\x17\xac\x67\x60\x00\x78\x88\x74\xa9\x5d\xc2\x76\x78\x1a\x98\x01\x5a\x46\x1e\x13\xe3\x4f\xf6\x3c\xec\x74\x50\xa9\x63\x07\xa7\xe5\xa0\xe6\x90\xa9\xc7\x7e\xe6\x3e\x24\xe2\xea\x65\xf2\xe3\x33\x81\xdd\x8d\xcc\x08\x2a\x42\xcd\x81\xf0\x8c\x83\x1b\x6d\x7e\x83\xd8\x62\x37\x9d\xc1\x5a\xc3\x0e\x51\xae\x5c\x15\xd5\x59\x15\xc8\xef\x55\xab\x76\x45\x99\x20\x3d\x78\xe0\x56\x4b\x7e\x71\xdf\x09\x1f\xeb\x75\xba\x76\xf3\xcb\x68\x95\x46\xdf\x33\x89\x1c\x66\x3a\x45\x6b\x76\x2f\xe1\x8b\xdc\x1a\xd6\x0a\xfc\x0e\xa9\x80\x7c\x68\x3a\x00\x9a\xa1\xd5\x13\xa6\xea\x2c\x64\xf3\xbd\x6a\x3c\x3f\x85\x53\x4f\xf6\x80\x8c\xa6\x36\x6f\xb2\x6b\x8e\x86\x01\xaa\x9e\xd5\x83\xb1\xcf\xc5\x69\x4f\x2c\x59\xf7\xaf\x0d\x26\xc9\xe8\xf8\xe2\x08\x9a\x99\x2c\xf8\x85\x60\xf5\x05\x67\x21\xf1\xfa\x75\xb7\xdb\x6a\x7e\x3c\xe4\x62\x63\xdb\x1e\x66\x51\x0b\xa8\x92\x0e\xa0\x99\x2c\xe4\xdb\x29\x6c\x63\x64\xae\xa5\x6e\x71\x63\x75\x6e\x7c\x17\xf4\x06\x9a\x6f\xb2\xe9\xb2\x11\x6c\x39\x5e\xf3\x49\x07\xb7\x8f\xb7\x5a\xe2\xc2\x73\x0a\xcd\x21\x0c\x60\xbe\x0c\x80\x30\xf6\xc7\xfb\x66\x3e\x9e\x2c\x6c\xc8\xb2\x5f\x4d\x57\xfa\x73\x27\x4b\x85\x8d\xc0\x77\xdd\x05\x9f\x16\x02\xf1\xd6\xc5\x8e\x14\x68\x19\x71\xe3\xbf\x32\x03\xd9\x92\x74\x3a\x88\xee\xdf\x15\x34\x03\x26\xe8\xe2\xa8\xcc\x54\xc7\xec\xcd\x54\x81\x41\xd4\x32\x5b\x25\x7f\x0d\xe4\x35\x8d\x6a\xe4\x30\x86\x9a\xf9\xd9\x52\x02\x03\x40\xc4\xd0\x10\xdb\x01\x15\x56\x4d\x00\x1f\xbb\x4b\x56\x71\x8f\x18\x04\xef\xae\x69\x88\x59\xb3\xa6\xab\x01\xf5\x3f\xf7\x70\x64\xca\xc9\x33\x9a\x80\x37\xff\x2e\x5b\x7f\xf4\xf3\xd5\x7a\xac\xbb\x61\xf0\x2b\xe8\x44\x1c\x3e\x11\xf8\x67\x57\xf9\xba\x66\x3d\xc0\x9d\x8b\x4d\xaa\xa0\xd1\xf0\x9f\x98\xde\x4e\x02\x29\x2b\x53\xca\xa4\x4c\x46\xa6\xf8\xa7\xc5\xc4\xdc\x25\x7a\x7a\x57\x6a\x4f\x0b\x3c\xa2\x9f\xf7\x54\x23\x61\x2d\xac\x3d\xc3\xf0\x55\x28\xbe\x96\xe3\x39\x61\xdb\xdc\x23\x26\x6a\x79\x8c\xa1\x82\xb5\xda\x34\x84\x7b\x60\xa5\x5c\xaf\xa7\x0c\xdb\xa3\x5b\x1d\x36\xa9\xfd\x2b\x7f\x88\x1d\x9f\xb8\x34\x33\x8d\x33\xc6\xfa\x9f\x76\xfb\x2c\x0c\xc4\xc4\xf5\x44\xb7\x3b\xd6\x22\x32\xbd\xb4\x11\x14\x4a\x8b\x03\x17\x03\xfb\x0c\xe3\x08\x27\x79\x9a\x97\xd4\x43\xa2\x82\x41\x95\xf2\xfc\x06\x01\xf9\x68\x02\x82\x25\x32\x4a\x22\x40\x4e\x88\x74\x51\xdb\xd4\xd8\x17\xbb\x7e\x26\x87\x90\x37\xb7\x52\x86\xa8\x84\xcb\x16\x2a\xb1\xc0\xc8\xe5\xd4\xf9\x97\xa4\x4f\x47\x2e\xb9\x60\xb4\x27\x2b\x33\x30\xc5\x82\x48\x34\x5b\xaf\x81\xdc\x42\x41\x40\xa6\x36\xc7\x2a\x92\xa7\xee\x1e\x6f\x92\x95\x61\xa5\x0c\x2b\x33\xb0\xb2\x3b\x75\x9e\x85\xe6\x11\xab\x67\x9a\x8f\x58\xcb\xc8\x34\x9f\xfd\x0f\xb8\x45\xd7\x46\xea\x1a\xdd\x0a\xda\xf2\x3d\xba\x16\xca\xf6\xb1\xea\x22\x7e\x93\x8e\xaa\x02\xfc\x8a\xc1\x93\x4e\x13\xb7\x0d\xf8\x08\xec\xb2\x38\xa0\x04\x3f\x34\xb8\x9f\xc5\x29\xba\xdb\x1a\xf0\xa1\x68\xae\x54\x25\x1e\x8f\xa6\xf3\x39\x25\x84\x6a\xf8\x64\x34\xdb\xf3\x99\xce\x10\xca\x02\xcf\x44\x0b\x44\x65\x72\xf8\x44\x34\x97\x5e\x4c\x3a\xee\x09\xcf\x9f\xa7\xa2\xb9\x49\x35\xd5\x80\x0f\x47\x8b\x24\xb5\x9a\x2f\x47\x0b\x48\x11\xe4\xb8\xf7\x88\xbf\x42\x0a\x7c\x21\x5a\x80\xc6\x02\x4b\xde\x2a\xf9\x4a\xb4\x54\xd6\xe5\x93\xaf\x46\x8b\xf9\x89\x02\x5f\x8b\x16\xa0\xea\xa8\x96\xfd\xdf\xb1\xe6\x24\x2e\xd2\x20\x34\xa4\x3f\xb5\x72\x38\x56\x4e\x53\x3d\xb5\x52\x41\xac\x54\xfc\x9e\x80\x87\x52\xe9\x39\xe9\xbb\xc8\x80\x8e\xcc\x0c\x94\x7c\x66\x9d\x41\x91\xb6\x2b\xed\x32\x5e\x95\x18\xa9\xe3\xd1\x72\x76\x3a\xca\x85\xd5\xae\xe3\x2d\x2f\xd8\xe1\x69\x03\x86\xb1\x22\x8b\xba\xbc\x82\x9a\xac\x50\x2f\xbd\x10\x1f\x32\x56\xc6\x8d\x95\x61\x67\x7e\x07\xc2\x55\xaf\xc1\x05\x42\x5a\xac\xa1\x1a\xfa\x1f\xe5\xf1\xc7\xad\xce\x63\xb8\xfc\x39\x9e\x93\xf4\x67\x01\x6b\x1d\x64\x12\xfe\xa6\x9f\x9c\xf2\xa2\x2c\x02\x4b\x7a\x74\x7b\xb6\x4d\xca\x19\x75\x80\x09\xfc\x16\xf7\xf5\xad\xf2\x90\x75\xcc\x5d\x4f\x2e\x67\x9e\x2c\x7f\x73\x43\xa3\x2c\x4d\x7e\x40\x76\x7c\xcd\xd3\xd8\x0f\x28\xb4\x0d\x51\x92\xff\x54\x5e\x62\x67\x1c\xd7\xe5\x11\x07\xc7\x6c\x62\xe4\x8b\xd1\x2d\x15\x41\xa9\xd8\xcb\xd6\xe1\x51\x4f\x88\x83\x99\x05\xc4\x4c\x17\x25\x02\xb4\xec\x84\x18\x05\x07\x4e\x1c\xe5\xf2\xab\x96\xc2\x4c\x6f\xb2\x39\x8b\x5a\xd6\xa8\x0b\x9e\xf1\x10\x98\x51\x55\x0c\x22\x30\x21\xfd\x83\x12\x65\xe5\x6d\xd3\x8c\xf1\x94\x5e\x44\x7a\x6c\xeb\x35\x59\xaa\x8a\x21\x67\x9e\x47\xe5\x13\x6c\x11\x43\x9e\x38\x75\x96\x7e\x3c\x58\xdd\x20\x1d\x8c\xd5\x2f\x38\xe1\x0a\xb8\x8d\x5b\xd0\xb1\xae\x89\x5c\x89\x56\x4e\x71\xd8\x34\xfc\x2e\xf2\x1c\x6f\x99\x9a\x58\x0c\xa2\x05\x1b\xa7\xb9\x8f\x01\x61\x0f\xf4\xf9\xcb\x7e\x7f\x66\x6f\x3e\x72\xc5\x78\xb6\xac\xff\xee\xf7\x71\xc2\x4b\x32\x5b\xba\x8c\xb5\xf1\x20\xd9\x62\x47\x35\x92\x16\x8a\xb6\xf2\x20\xbb\x33\x3c\xb4\x99\x59\xad\x64\xc6\xdf\xa4\xcc\x9a\x34\xfe\x0f\xe2\xe4\x66\x7a\x67\xd2\x19\x0a\x03\x2b\xea\xbd\x38\x91\xe2\xb4\x69\xe2\xa8\xdf\x66\x90\x9c\xc7\xc2\x93\x33\xcd\xcc\x40\xfd\x08\xd3\x7c\x12\xab\x81\xb6\xaa\x64\x53\xd2\x68\x45\xc2\x31\x99\x3f\x0a\xd1\x74\x42\x16\xfa\x42\xe0\xcd\xec\x15\xa4\x75\xc8\xa2\xf0\xe6\x48\x1b\xbb\x68\x48\x8b\x0c\xab\x12\x94\x2e\xab\xbe\xc7\x02\xf3\x9b\x28\xde\x19\x38\x82\x90\x99\x47\x33\x7c\x63\x65\x24\x56\xc7\x5b\xee\xf7\xcd\x98\x57\x29\x98\xd7\x66\x24\xdb\x4e\x4d\xe9\xab\x49\x7e\xf1\xfc\x2e\x0a\x5a\x7e\xd0\xe1\x25\x10\x2f\x22\x92\x8f\x38\x2e\x46\x01\xf3\xc7\x14\x64\x31\xce\x9d\x39\x87\xf3\x3c\x22\x99\xe3\x2d\x20\x1a\xb7\xac\x50\xa0\x1b\x62\xc3\x75\x90\x87\x9f\x12\x91\x05\xb4\x19\x9a\x92\xa4\x4a\x1f\xb3\x71\xbb\x64\x2f\x85\x66\x66\x99\xa2\x84\xc0\xfe\x69\x10\x71\xf4\xcb\xb4\x5b\xa5\xb9\xc2\xc6\xc7\x02\x48\x23\x59\x44\x2e\xce\x34\xaf\x45\xa2\x02\xc4\x6e\xf5\xb3\xd5\xc4\x15\x82\xed\xfb\x22\x27\x57\x10\x53\xfc\x8e\x76\x3a\xa8\xe9\xd8\x18\x45\x3c\x60\x27\x68\x48\x3d\xea\x8c\xdc\xc0\x81\xfb\x65\xb4\xda\xef\xa3\x52\x07\x61\xfb\xcb\x68\x75\xdc\x2f\x87\xb9\xe1\x66\x58\xb0\x11\x51\x02\xd5\xed\x77\x25\x43\x96\xf8\xec\x32\x11\xc3\x40\x9a\x3d\x33\x9d\xd7\x5d\x79\x23\x8f\xf1\xd0\x70\xc6\xca\x0f\x9b\xbf\xac\x27\x5d\xc4\x4e\x75\xed\x06\x7d\x3c\x63\x7c\x9f\x6f\x7e\x92\x9f\x8f\xf6\x6b\xbf\x9f\xaf\xe4\xc7\xe8\x6c\x3e\x61\xe3\x74\x69\x2b\x97\x8b\x31\x19\x43\x2c\x22\x37\x14\x0a\xda\x90\x8b\x6f\xf4\x70\xf5\xc3\x83\xaa\x3f\x50\x99\xc7\xc5\x4a\x95\x06\xdb\xa9\xe8\xc1\xd5\x8b\x95\xf4\xf0\xea\x11\x3c\xba\x50\x54\x8b\xcf\x7d\x2d\x20\x3f\x0b\xa9\xea\xa4\x05\x12\x7c\x68\xf5\x68\x33\xcd\xd3\x2e\x45\x3a\x88\x2e\x19\x2d\xd8\x04\x7d\x84\x61\x8d\x45\x6d\x1d\xc3\x70\xcf\x8d\x3e\x44\xf8\x71\x5a\x26\x0d\xdd\x61\xb3\xcf\x43\xcb\x89\x46\xc2\x38\xe0\xba\xa6\x51\xa3\x37\x20\x18\x3d\xec\xfe\x43\xdd\x00\x25\x07\xa3\x8e\x69\xd3\x2a\x42\xf6\x75\xcf\x0a\x4b\x3e\x35\xbb\x2f\xf8\xdd\xa2\xa3\x60\xe8\x5a\xbd\x49\x91\xc7\xee\x82\x4c\xb8\x0f\x38\x91\x84\x49\x47\xf6\x6a\x77\x5e\x83\x2d\xb7\x18\x2d\x58\xed\xed\xd7\xb2\x69\x6c\x55\x55\xb8\x47\x26\x70\x7c\x0e\x73\x96\x91\x11\xb6\x25\x75\x27\x60\x73\x93\x86\xfd\x26\x1b\x1a\xe7\x61\xe9\x81\x5d\x12\x73\x3b\x1d\xfd\x43\x6e\x2f\xd8\x12\xf6\x26\x4a\xe2\x27\x95\x48\xf4\xe4\xc7\x48\xec\xc3\x5b\xbd\x43\x4d\xfc\xd4\xdb\x26\xe9\x4e\xd1\x67\xc6\xba\x1b\x00\x8d\x10\xe1\xa3\xe2\xc4\x16\xe6\xcb\x5a\xdd\x8a\xb8\x9d\xaa\xbd\xa2\xdf\xa0\xd0\x32\x32\x7a\x2c\x22\x4b\x49\xf7\x10\x5d\x90\x6a\x51\x99\x22\x5d\x7e\xc8\x78\xdf\x69\x3a\xf5\x7d\xa7\xe9\x7a\xa1\xa0\xff\x12\xef\xe5\x12\x2e\xc2\x90\x48\x5b\x30\xea\xf7\x6b\x75\xc8\xad\xfe\x11\xd3\x08\x0c\x74\xca\xf4\xf3\xb7\x34\x0a\x95\x87\x5d\x82\xc6\x99\x54\x1a\x67\x22\x34\xce\xc4\x68\xf4\xb8\xf9\x45\x21\x8d\x91\x9a\x6e\xa6\xa1\x7e\xa0\x92\xea\x88\x65\x25\x7b\xb5\x0c\xd1\x73\xe9\x63\x45\x64\x57\xb7\x9b\x4d\x51\x80\xc6\xc9\xd6\x7e\x9b\x46\xad\xce\x27\x08\xab\x2f\x82\xf6\x80\xd7\xe4\xb6\x7a\xa1\x09\xf9\xec\x3b\x4e\x78\x68\x89\x70\xdf\x59\xdf\x45\x64\xcc\xd8\x09\xd8\x16\x1a\xa5\xe9\xe6\x42\x20\x16\xef\xc0\xcc\xdf\x6d\x1b\x45\x9d\xb4\xa2\x78\xfb\x44\x66\xbc\x81\x91\x8f\x48\xe3\xaa\x28\x9f\x38\xa8\x57\x37\x50\x92\x6b\x47\xba\x6a\x21\x98\xa9\x92\xc4\xd5\xcd\xac\xcb\x9e\x13\xa9\x8e\xd1\x14\x67\xd2\xaa\x3b\x9f\x91\x1e\x63\x69\x5c\x53\x48\x96\x1b\xa1\x69\x46\x1a\x90\x31\x19\x32\xe4\xa6\x7c\x3c\x42\xb3\xce\x9e\xc5\xad\x26\xa2\x95\x52\xd7\xbb\x09\x29\x59\x51\xdd\x06\x70\x3d\x34\x42\x98\x70\x9a\x0b\xa4\xcf\x5c\x30\xf2\x5c\x29\x88\x9e\x2b\x31\x09\x16\xc7\x86\x36\xf2\x96\x87\x50\xca\xf4\x0b\x53\x60\x3e\x60\x1d\xc8\x38\x15\x51\x8b\xf5\xdc\x89\x34\x6a\x03\x79\x1c\x96\xa0\x7b\xdc\x53\xb0\x01\x8e\x7a\x50\xa4\x5a\x2c\x62\xc3\x13\x99\xca\x69\x43\x93\x39\x2c\x59\x3a\xb6\x9c\xdb\x74\xa0\x12\x33\xfa\x54\xba\xe2\x1b\xb9\xb9\x9c\xf0\x8b\x60\x5a\x41\xaa\x0d\x99\x9f\xa2\x11\x81\x70\xd8\xc9\x23\x1a\xc3\xf7\x71\x54\x77\xa3\x58\x77\xcb\x86\x45\x14\xea\xec\x7b\xbc\xfa\x94\x48\x6f\x27\x14\x0a\x50\x6a\x1b\xb0\xde\x06\x94\x6c\x02\x1a\xd9\x02\x0c\x86\x9c\x95\x26\xda\x93\x31\x54\x28\x76\x8d\x95\x5a\x8b\x83\x94\x29\xad\x53\x3b\x20\x8a\x0c\xa6\xcf\x04\x31\xff\x72\x79\x59\x92\x4c\x2d\x0f\x1a\xb8\x8d\x3c\x83\x2b\x95\xe9\x03\x2d\x15\x4b\xe8\xf1\x85\xc9\x94\x17\x7a\xe8\x3c\xa4\xdb\x9c\xbb\xe9\x29\x67\x68\x4f\xb1\x38\xf6\x29\x4d\x4e\x62\x8a\x2c\x00\x4d\xa7\xcc\xd6\x5c\x73\x33\x91\xab\xc6\xfd\xfe\x6c\x59\xff\x3d\x1f\xd3\x90\x1f\xef\x1e\x62\x2a\x2a\x8b\x9e\x98\x59\xee\xb0\xc7\xac\x3d\xd5\x7d\xc3\x4a\x2d\xd8\x4b\xa4\xcc\xf4\x9e\xa1\x55\x9d\x3a\x48\x0a\xc5\xec\x20\x71\x92\x86\xd9\x40\xe2\x7e\x4d\x60\x2d\x79\x3b\x1d\xa6\x5c\xf8\x9d\x60\x33\x2f\xd6\x23\x95\x6a\xb1\x02\x03\xa6\x62\xda\xcd\x15\xc2\x10\x18\x5f\xb3\x97\xc4\x6b\x9f\x99\xca\x66\x2c\x39\x1a\xdd\x71\x22\xc3\x1c\xa4\xbc\xad\x02\xf9\x3e\xe7\x10\x6f\xab\x80\xcf\x98\x8c\x72\xf1\x5b\xed\xb1\x31\xdb\x4a\x3f\x6a\x72\x6a\x76\xc3\x46\x98\xd1\xf8\x75\xfe\x21\x1d\x83\xc4\xd8\xa4\x5b\x96\x60\xbe\x92\xd2\x16\x6a\xc9\x49\x6b\x4b\xcd\x58\x38\xfc\xd5\x85\x03\x27\x0f\x1f\x30\xa0\x71\xf4\xb1\x13\x8f\x2f\x18\xf5\x92\xe3\x35\xdc\x5e\x13\x85\xea\x0a\xbd\xe7\x37\x11\xf5\x26\x9f\x1f\x86\x3b\xee\xd3\xb6\x85\x6e\x61\x6f\xf6\x64\xb7\x2a\x65\x86\x6e\xa3\x07\xd3\x86\x7b\xc1\x5e\xca\x14\x87\xb3\x6c\x92\xe9\xf3\xe6\xd4\xc1\x6d\x55\x94\xa5\x4f\xa4\x6c\xdb\xa9\x1a\x81\x38\x96\x89\xa7\x97\xa2\x15\x6f\x57\xef\xe0\xf7\x40\x86\xd0\x7d\x4a\x86\x77\x1c\x41\xf8\x29\x29\xad\x9b\xe9\x19\xe3\x91\x3e\x9e\x3a\x91\xa0\x3b\x6e\x5e\x1d\xb2\x39\x68\xd6\xda\x7d\xbb\x23\xd6\xda\x4a\x79\x57\x5c\xc9\xc2\x69\xb6\x82\xd8\x19\xa4\x7a\x7e\x47\xce\x0c\xf1\x02\xcf\x90\xe3\x49\x10\xb1\x3b\x8e\x3a\x0d\x84\x58\x52\x26\x8f\x0e\xb2\xa2\xae\x62\x14\x62\xc3\xb2\xd2\x9f\xca\x0b\x50\xe8\xbb\x2b\xe8\x24\xad\x3d\x60\x2b\x33\xfd\xed\x70\xed\xd7\xb8\x71\x64\xa9\x2f\x40\x56\x28\xd9\x3c\xea\xf7\x51\xd2\xbd\x91\x79\x07\x50\xff\xc6\x7e\x3f\x1f\x39\x8a\x62\x12\xcd\xfc\x78\x86\x19\x5d\x94\x10\xaa\x31\x94\x27\x36\x49\x2f\x0c\xcd\xcc\x0e\x55\x64\x5b\x71\x6f\x63\xfc\x38\xb9\x9a\x24\xe7\xbb\x62\x61\x45\xc6\x56\x25\x5b\x08\x22\xcb\xb2\xf0\x3c\xaa\x9a\xf1\x73\x37\xde\xd8\x94\x65\x1c\xa3\x36\xfb\xa5\xc0\xac\xfe\x38\x2e\x65\x63\xdd\xd2\x96\x15\xef\x15\x6d\x29\x68\x71\x7a\xac\xe2\xe4\xdd\x09\x79\x21\x6c\x48\x25\xc5\xa2\x2d\xee\x59\x2c\xc9\xd3\xbf\x48\x70\xe3\x54\xe2\x0f\xe9\x17\x37\xb6\x46\xbd\xb8\xf3\xb1\x3d\xf2\x45\x2d\xa9\xf4\x47\xae\x95\x68\x81\x39\x7a\x21\x3e\xd5\xf6\xb9\x2b\xa7\xf4\x39\x4b\x9d\x76\x71\x2f\x7f\xae\x43\xf1\x77\xa7\xe3\x46\x93\x58\xd0\xb9\x42\x21\x9f\xd7\xf4\x8c\xd8\x4f\x8e\x38\xb5\xaa\xc8\xdd\x95\x38\xdd\x8f\xf9\xfc\xd3\xac\xb5\xb2\x15\xa2\x75\x4c\x85\x82\xa9\x13\x98\x38\xfc\x8e\x2b\x08\xc2\xc2\x48\x76\x83\x3a\x28\x14\x9a\x28\x25\xc8\x08\x49\x4c\x8d\x32\x92\xe2\x8a\x58\x73\xb7\x1b\x57\xe4\x21\x6b\x19\x99\xcf\xea\x68\x62\xfe\x8c\xdb\x0f\x71\xfb\x78\x02\x85\x74\x8a\xac\xb5\xb6\x5b\xf9\x93\x89\xca\xe3\x9e\x95\xb5\xf6\x76\x71\x3c\x93\xc0\x91\x74\xcf\xac\x35\xb7\x8b\xe5\x89\x04\x96\x98\x8f\x67\xad\xbb\x5d\x14\x4f\x25\x50\xc4\x1c\x45\x6b\x9d\xed\xa2\x78\x38\x81\x22\xcd\xdb\xb4\xb6\xb2\x5d\x3c\x5f\x4e\xe0\x49\xba\xac\xd6\x56\xb7\x8b\xe5\x0b\x09\x2c\x49\xbf\xd7\xda\xf2\x76\xb1\x7c\x25\x81\x25\xc3\x79\xb6\xb6\xb4\x5d\x54\x5f\x4d\xa0\xca\x0c\xff\xbe\xb8\x5d\x5c\x5f\x4b\xe0\x4a\xba\xf1\xd6\xce\x6c\x17\xcb\x7f\x27\xb0\xc4\x7d\x81\x6b\x87\xb7\x8b\x03\xa1\xe4\x6c\x4b\x86\xe6\x3f\xbb\x5d\x34\x38\x89\x26\xcb\x2d\xb9\x76\x6a\xbb\xc8\x82\x24\xb2\x74\xdf\xe6\xda\xf1\xed\xa2\xf2\x92\xa8\x12\x81\xd4\x0f\x6c\x17\x89\x93\x39\x46\xcc\xcb\xba\x76\x7a\xbb\x18\xe2\xd5\x6b\xca\xcd\x96\x9f\x13\xc8\xa8\x08\xc0\x67\x75\x0f\xd8\xe4\x6c\xb8\xeb\xf7\x0b\xd2\xeb\x19\x81\x4f\x6a\x18\xdb\x43\xa7\x2e\x98\x47\xb0\xf9\xc9\x11\x8b\xf9\xba\xd7\x16\xb6\x3b\x66\x76\xca\xac\xc8\x70\x98\xaf\x1d\xdc\xe9\x09\x32\x4c\x6b\xa9\x1d\xdb\x62\x27\x0e\xa9\x6c\xc4\x28\x0e\xd5\x3f\x6a\x27\xb7\x41\x47\xbc\xb6\x11\x84\x64\xe8\x11\xb5\x13\x5b\x24\x21\xbd\x9e\x31\x91\xeb\xca\x40\xed\xeb\x77\x89\x59\xab\x64\x04\xda\xa8\x9b\xf8\x56\x23\xa9\x65\x57\x35\x02\xed\x76\x1e\x02\xc9\xaa\x68\x2c\x94\xdc\x2d\x7a\x07\x70\xb2\x9a\xc6\x42\x7a\x97\xd1\xf1\x32\x6b\x1a\x35\xa6\x9a\x93\xf2\xf6\x46\x54\x55\x34\x0a\xa5\x8c\x70\xb7\x2d\x7c\xbc\x96\xd1\xc8\xd8\x59\xe0\x76\x91\xf1\xe0\x29\xc3\x91\x09\x2f\xe4\xed\x21\xe3\xb5\x8c\x35\x5d\xe2\xde\xbb\x3b\x30\x6f\x62\x55\x8e\x45\xc6\x4e\xe2\x1f\x13\xb1\xe6\xcf\xba\xcd\xb1\x15\xf5\x6c\xa5\xc3\xef\xf2\x95\xa0\x51\x15\x6e\x85\x04\xe6\x23\xb8\x73\x14\xd0\xfa\xc6\x22\x60\xe7\x1a\xbf\x85\x56\xef\x58\x73\xd3\xda\x19\x66\x4a\xdc\xfa\x25\xc3\xda\xa1\xed\x8a\x55\xbd\x24\x9e\xd4\x9b\x8a\xb5\xc7\xb6\x8b\xc9\xcd\xc4\x14\xb9\xee\x58\x3b\xba\x5d\x44\x8d\x24\xa2\x8c\x3b\x93\xb5\x47\xb7\x8b\xeb\x88\xf5\x2c\x00\xfd\xfe\x11\xfa\x9f\x16\x63\xf5\x30\xba\xab\x20\xab\xf1\xe8\x52\xf7\x38\xe6\x6a\x1c\xdd\x78\xcf\x4b\xa9\xb0\xa2\xbe\x76\x49\xc0\xff\x77\x0d\x2a\x6a\xff\x4b\x44\xe9\x0c\xf5\xb0\x7b\x79\x1c\xb9\x8b\xef\xd3\x28\x49\x69\x57\x7e\xe7\x63\x9e\x10\x9f\x5e\x88\x4f\x7a\x87\x4a\x91\xdf\xd3\x66\x52\xef\xb3\x08\x5e\xe9\x46\x62\x57\xba\x3b\x1a\xba\xb2\x71\x3f\x72\xe5\xe7\x37\x72\xe5\xce\x84\x96\x6c\x25\xc3\x34\x8a\xe7\xa3\x92\x61\x1a\x4d\xb3\x61\x9a\xce\xc8\x18\x22\x9f\x76\xfc\x90\xa4\xb7\x3e\x74\xb4\x8b\x54\x1e\xe9\xb5\xf2\x9c\xbf\xdf\x9b\xf3\x27\x27\x81\x53\xf3\xf5\xeb\x53\xbe\xf4\xd9\x0f\x2c\x76\x9b\x04\x9a\xc8\xea\x8d\x8a\x1b\xe2\x00\x00\x40\xc9\xee\x61\x9f\xbe\xa4\x4b\x38\xe2\x7f\x56\xf8\x02\x77\xdc\xe8\x05\xda\x7d\x7d\x7e\xaf\x2c\xd3\x13\x87\x72\xe0\x61\xb7\xf9\x23\x2f\xea\x8e\xf1\x1e\x91\xf2\x23\x18\xfd\x1e\xd1\x38\x0f\xc9\x0c\x7d\x38\x26\x5f\x99\x88\xba\x5f\xca\x2b\xdb\xd1\xa7\x72\xe2\xae\x56\xc3\x9f\x84\x56\xde\x19\x13\xaa\xb9\x44\x38\x0a\x4c\xbd\xff\xd4\x54\x24\x52\x84\x78\xdd\x19\x8a\x33\x65\x3b\xe5\x48\xd9\xce\x38\x51\xde\xa6\x1e\xea\x0c\xd3\x43\x1d\x5d\x55\x68\x44\xcb\xea\xfd\xb0\x2d\xa4\x5a\x45\x31\x8c\x9e\xe5\x10\xa9\xd7\x23\xff\x69\x42\x6f\xeb\xee\x64\xde\x4f\x4b\xd8\xbd\x2f\xe5\xde\x97\x72\xef\x4b\xb9\x3b\x2d\xe5\xee\x8c\xfc\xd4\x80\x2d\x2b\x9f\x17\x8f\x7b\x1a\xbe\x87\xfd\x5e\xa3\x4d\x03\xb0\x91\x59\xc3\x32\x26\xb4\xd0\xff\x72\x35\x1c\xb1\x43\xfc\x90\xef\xe3\x42\x21\x45\x2a\x30\x1b\xe2\xd5\x3b\xbe\x67\x6a\x5c\xac\xc4\x1c\x65\xc2\x42\xc1\x6c\x08\xd8\x6a\x94\x3a\x21\xf7\x3e\x11\x17\xa4\xfb\xfd\x46\xa9\xe3\x3f\x9b\x92\x7a\x06\x2d\x9d\x76\x70\x2c\x03\xc0\x94\x29\xd8\x60\xdb\x55\x88\x29\x32\x0e\x5b\xf1\xf8\x82\x6a\x8f\x9a\xc3\x85\x02\xdd\x23\xa9\xaf\x36\x11\x62\xe6\x98\xa7\xba\x20\x54\x7b\x67\x0d\x4f\x60\x0b\x97\xba\x76\x80\x3c\xfc\x98\xdf\x44\x03\xdd\x05\x13\x30\x3f\xff\xc8\xeb\x23\x5b\x13\x55\xdb\xd6\x7d\x51\x55\x13\x55\x9d\x70\x81\xcc\xcc\x43\x68\xc5\x69\x20\xab\x75\x5f\x5a\x4d\x97\x56\xed\x66\xf3\x11\x2a\xb3\xa4\x3c\xad\x19\x91\xc6\x68\x70\x9c\xe8\x6b\x8c\x81\xef\x22\xf6\xfc\x22\xf3\x36\x21\xcc\x3d\xed\xc9\x0e\x99\x16\x88\x8b\x0d\x7c\x61\x65\xc4\x33\xa0\xb7\xa5\x0a\x85\xbc\xa7\x95\xb3\x03\xc7\x2e\x8a\x48\x37\x16\x0e\x7a\xa8\x2e\x6e\x48\x3a\x96\x97\xf6\x4c\xa4\x5e\x29\xe9\x72\x13\x97\x16\x59\xda\x91\xc0\xef\x1c\x25\xc9\xa6\x03\xe8\x7d\xe9\x09\x1a\x12\xc4\x6e\x36\xa9\x27\xfa\xa3\x4e\x88\x91\x87\x02\xd3\xe8\xf8\xbd\x10\xf5\xba\x06\x4c\xe1\xea\x9e\x89\xd3\x1f\x85\x84\x48\xde\xa3\x8a\xbb\x49\xf1\xfb\xba\x69\x58\x98\x17\xd5\x78\x78\x54\x58\x32\x85\x2a\x32\xdd\x45\xbf\x48\x0e\x10\x50\x91\xb9\x6d\x87\xc7\xfc\x15\xd4\x24\x1b\x3d\xf5\x8f\x65\xfe\xfd\x31\x72\x28\x43\x27\xe9\x06\xe9\x9b\x89\x34\x8a\x35\x9e\x0f\x35\xa1\x3c\xb3\x28\xab\x8d\xde\x2f\xcb\x2c\x83\xbc\x66\xb4\xfd\x4c\xba\x41\xe3\x4f\x99\x00\xd0\x61\x4c\xde\x58\x91\x0d\x07\x7a\x1f\x54\x64\x34\x98\x7c\x30\xde\x44\x23\x13\x78\xf4\x44\xcb\x98\x16\x69\xd3\xcf\x63\xee\xdd\x60\xa0\xad\x9f\x74\x25\x4a\xde\xab\xd2\x33\xf5\xfb\x4d\xda\x2d\xd7\x18\x96\xb4\x65\xad\x36\x31\x54\x0a\xbb\xae\x83\x4d\xa3\x64\x00\x71\xa3\x91\xcb\xdf\xb5\xae\x1d\x84\xe8\xa8\x87\x4d\x5c\x2b\xd7\x61\xa5\x0c\xea\x22\x32\x8b\x10\x37\x69\x80\x16\x2b\x48\xfb\xc2\x63\x5f\xc8\xd0\xbd\x5b\xd6\xcb\x9a\x56\x94\x39\x75\xad\xb8\x92\xd4\x19\xf9\x54\x4f\x44\x4d\xd2\x6b\x03\x70\xc5\xd2\x33\x57\xad\xb5\x01\xd4\x2d\x7c\x9d\x74\x0b\xdf\x6a\x0d\xd5\xad\x0e\xb3\xf0\xad\x46\x2d\x7c\xfa\x4f\xb8\x1a\xb7\xf0\xad\x66\x5a\xf8\x56\xfb\xfd\xd5\xb8\x85\x6f\x35\x2a\x78\xaf\x5a\xdd\x31\x2c\x7c\x91\xe7\x5c\x4c\x22\x49\x20\xd0\xef\xa3\x01\x5c\x05\x70\x45\xb3\xf0\xad\xc6\xec\x6f\xab\xdc\xc2\x17\x49\x9f\x5f\x4d\x5a\xf8\x56\xa4\x85\x6f\x75\xb8\x85\x2f\x8e\x21\x5d\xf4\x24\x14\xae\x92\xc6\x31\x0b\x5f\x86\xae\x7a\x77\x8f\xe0\x45\x1e\xc7\xb8\xd7\xfa\xaa\x8e\x6b\x1c\x9d\x55\x69\xac\x8e\xa6\x67\x38\xff\xae\x1a\xab\x3f\x44\x17\x74\x3e\xff\xba\xa0\xad\x8d\x91\xfd\x59\xe8\x82\x11\x5d\xda\x0c\x3f\x3f\xba\x60\x6f\x4b\x0a\x8a\x97\xad\x9c\x64\xc9\xe3\x3b\xa8\x9a\x08\xcd\x04\xfa\xdc\xd2\x6a\xe2\x8c\x38\xaa\xf2\xdd\xde\x7f\x63\xf5\x20\xcc\x56\x0f\xe8\x36\x9c\x64\xc3\xbd\xbb\x64\xc3\xc9\xd7\x92\xee\x39\x37\x4e\xa2\xbc\xcf\x94\xef\x33\xe5\xfb\x4c\xf9\x3e\x53\xbe\xcf\x94\xd3\xde\x99\xbb\xd7\x0c\x39\x86\xee\x3e\x33\xbe\xcf\x8c\xef\x33\xe3\xfb\xcc\xf8\x3e\x33\x8e\x3c\x0e\x7a\xaf\xb9\xb0\x0c\xfb\x70\xff\x50\xfd\xfe\xa1\xfa\xfd\x43\xf5\xcf\xdb\xa1\x3a\x94\x27\xbf\x5b\x74\x50\x1c\x7a\xea\xfb\x69\x6e\x1b\xfc\x84\xb6\x37\x64\xdb\xb8\x7f\x02\x9b\x72\x02\xdb\x70\x91\x9d\x15\xf0\x2e\x25\x1c\x60\x86\x7b\x1f\x7d\x06\x82\x19\xd2\xf5\xe3\x39\xea\x9e\x47\xbd\x28\x84\xcf\xde\x96\xcf\x61\x5a\x96\x20\xb1\x9d\x38\x81\x69\x6e\xed\x04\x86\xd5\x03\x60\x37\x72\xf6\xd2\x89\x9f\xbd\x34\xd3\xcf\x5e\x3a\x35\x54\xb7\x9a\xec\xec\xa5\x13\x3d\x7b\xd1\x7f\xc2\x4e\xfc\xec\xa5\x93\x79\xf6\xd2\xe9\xf7\x3b\xf1\xb3\x97\x4e\x94\x3f\x77\xac\xf6\x96\xcf\x5e\xc8\x7a\xe6\x67\x2f\x1d\x00\xbb\xda\xd9\x4b\x27\x76\x32\xd2\xe1\x67\x2f\x91\xf4\xf9\x4e\xf2\xec\xa5\x2b\xcf\x5e\x3a\xc3\xcf\x5e\xe2\x18\xd2\x39\x14\xa1\xb0\x43\x1a\x37\xf4\xec\x65\x65\xb8\x48\xd3\x46\x6e\x17\x05\xe1\x54\x4a\x80\x25\x27\x4c\xb3\xf6\xa5\xd4\xd1\xc3\x8e\x1b\x4e\xd1\xb2\x45\x0a\xc7\x04\x94\x98\x78\xa2\x9d\x68\xeb\x5d\x1e\x5b\x36\xd4\xb9\x44\x0b\x95\x0d\xf4\x2d\x29\xce\xe0\x29\x3b\x8c\xc9\x2a\x39\x47\xf8\xfb\xd3\x0f\x8c\x1a\xdb\x68\x73\x07\x04\x33\xab\x93\x95\xc5\xbb\x56\xce\xe4\x12\xf6\xf9\xbb\xd6\x74\xc8\x10\x10\x88\x27\x98\x50\x51\xab\x43\x8f\xc8\x03\x8e\x95\xaf\x40\x5f\x6c\x00\x38\x58\x95\x82\x87\x0d\x43\x0b\xd5\x62\xc4\xd4\x4d\x30\x97\x27\x7b\x80\x6d\x85\xf4\x69\x4f\xb2\x3e\x9b\xbe\x87\xc8\x6c\x0d\x58\x90\x2b\x9b\xcd\x23\x00\x89\x58\x10\x70\xc1\x85\xb2\xcc\x39\x82\x12\xcc\x0d\xd8\x63\x9f\x3d\xb0\xe6\x10\x12\x7c\xab\x37\x68\x39\x9e\xed\xba\xab\x6b\x84\x00\xaf\xdf\x27\x33\xc1\xb2\xc2\x12\x23\xb9\xdf\x17\x90\x09\x64\x49\xfa\xb8\x05\xe3\xc1\xfe\x60\x20\x4f\x76\x69\x3f\x6a\xdd\x0a\xd6\x52\xf9\xf4\x51\x6f\xc5\x76\x9d\x66\xce\xc6\x44\x5a\xc5\x39\xec\xe7\x9a\x88\xb1\xd6\x5e\x80\x72\x9e\xef\x15\x69\x93\x97\x5c\xb5\x39\x91\x0d\x46\xdb\xc1\xa5\x63\x80\x67\x91\x09\x50\x01\xb5\xb2\x16\x82\x1e\x97\x9c\xf0\x61\x32\x93\x80\xe9\xdd\xd5\xd6\x4c\xe7\xe7\x09\x32\x3d\x99\x93\xd8\x51\x56\x9d\xe5\xa5\x6f\xdb\x0e\x0f\xd8\xf7\x08\x5d\x07\x25\xb6\x1c\x4c\x4f\xbf\x5e\xe6\x6c\x67\x05\x69\x81\x2e\xe4\x22\xaa\x47\x7c\x24\xd2\xd7\x06\xbe\xbf\x36\xfe\x03\xd7\x46\xa0\x9c\x66\xc8\x04\x98\x26\x5c\x3d\xa8\x95\xeb\xd0\xb1\x82\x5a\xa5\x4e\x9d\xaa\x68\x33\x1c\xe5\xbf\x2f\x23\x52\x8b\xf9\xe0\x00\xa5\x05\x31\xcf\x3c\x47\x68\x41\xd4\x41\x4f\x95\x67\x4f\x83\x39\x35\xbf\x0e\x3d\x79\x23\xa0\x3c\x21\xc5\x0c\xde\x03\xd1\xe2\x1e\x74\x76\x68\x61\xca\xc0\xa2\x41\xfa\xda\xf4\x52\xd7\x66\xa0\xaf\x4d\x6f\xf8\xda\x1c\xa9\x52\x17\x3b\x3d\x17\x3b\x5d\x17\x8d\xb9\x3e\x77\x46\x57\x10\x31\x4c\x1f\x59\x38\xf6\xe8\x43\x76\x10\x96\x04\x9d\xe6\x9a\xd3\xac\x1a\x2b\x5f\x79\x1c\x1f\x99\xc5\x1d\x03\x2e\xb9\x7e\xe3\x74\xf5\x8b\x6b\x5c\xf7\x0d\x8d\x6a\x8d\x47\x96\x31\x44\xec\x1b\x03\x1a\x0f\x46\xc2\x03\x19\x0f\xda\x81\x63\x33\xf1\x6d\x09\x35\x1f\x5a\x15\x49\x7c\x7e\x8a\x9f\x8f\xda\x4b\xc8\x8d\xfc\x70\x65\xe9\xf4\xa0\x5d\xc6\x83\xb6\xeb\xfa\x67\x0e\x32\x49\xd2\x78\xb0\x61\xbb\x8d\x1e\x21\xfb\x84\x1f\x3a\x9c\xa8\x07\x63\x71\xd8\x8c\x07\xd3\xa2\xa6\x19\x0f\xca\x07\xef\x08\xac\x07\x5f\xa1\x96\x93\xb3\x38\xb0\x09\x10\x0f\x80\x65\x3c\xd8\xf6\x03\xe7\x59\xdf\xc3\xb6\xab\x23\xe5\xe2\x92\xbb\x7a\xbc\x8b\x3c\x56\x69\x3c\x78\x9e\xf1\xa0\x8c\xd5\xc7\xc1\x68\x00\x42\xe3\xc1\x64\x28\x3c\xe3\x41\xf6\x72\x0e\x83\xd8\xfb\x78\x1c\x66\xc1\x41\x08\xc8\x6f\x7f\x18\x0f\xca\xab\x15\x12\x8c\x50\x1e\xf1\x66\x89\xfc\x8c\x16\x8b\x06\x2d\x34\x1e\x8c\x84\x5d\x21\x3f\xbd\x26\x0a\x8e\x7a\x27\x5c\x1a\x97\xda\x78\x50\x05\x42\x30\x1e\x14\xe1\x2e\x04\xc4\x6f\x1d\xa9\x84\x23\x0e\x72\xb5\x9f\x5a\x4b\x59\xc2\x89\x28\x91\x6a\xf7\x52\xf0\x51\x8c\x3a\x11\x8a\x29\xbd\x84\x0f\xd2\xa9\xe8\x60\x36\x09\xb1\xbd\xc4\xbc\xe9\xd4\xfc\x3c\x4a\xeb\x59\x41\x01\x76\x1a\x91\xf1\x2b\xd8\x18\x07\xa4\xe3\x0a\x7c\xb2\x18\x75\x68\x84\xd8\xc6\xd4\x8d\x9c\xcc\xfa\xda\x2e\x68\xe8\xeb\xd6\x80\xb5\x5a\x65\x06\xce\xee\xa9\xd7\x61\xad\xf6\x99\xad\x80\xac\x90\x73\xc6\x83\xf1\xb0\x60\xdb\x5c\x2d\x34\xaa\x96\x2d\xbe\xfa\xf7\x59\x3c\x3c\x96\x44\x74\x1d\x79\xf2\x1e\x17\xf9\xc1\x42\xff\x7c\x66\xcb\x2b\x40\xcf\xf4\x9c\x80\x2f\x81\xcf\xe9\x52\xd3\x82\x68\xe9\xbf\xf5\x2f\x47\x2d\x41\xb5\x5e\xc9\x82\x9a\x9e\x81\x33\xb0\x46\xd6\xd6\xf4\x0c\x9c\x95\xd0\x2e\x09\xed\x96\xd0\x1e\x09\xed\x95\xd0\x3e\x09\x95\x61\x2d\x2b\x2e\xa3\x5e\x22\xba\x58\x78\x4e\xa5\x2c\xab\xa9\x54\x14\x38\xcd\xc1\x69\x68\xe8\xcb\x82\xe7\x2a\xb2\x2b\x8a\xee\x8a\x22\xbc\xa2\x28\xaf\x28\xd2\x2b\x8a\xf6\x8a\x22\x7e\x5a\x11\x30\xad\x08\x98\x9e\x56\xa0\xc2\x36\xad\xb0\x4d\xef\x8a\x34\x5f\x0f\x75\x22\x4a\xec\x4e\x29\x21\x26\x7d\x22\x83\x2e\x00\xf1\xa5\xa2\x79\x5a\xd1\x3c\xad\x68\x9e\x51\x34\xcf\x28\x9a\x67\x14\xcd\x33\x33\xaa\xff\xe4\xdc\xe6\x59\xaa\x0d\x33\xaa\x0d\x33\x8a\xd8\x19\x85\x7d\x46\x61\x9f\x51\xd8\x67\x15\xf6\x59\x85\x7d\x56\x61\x9f\x9d\x89\xb4\x3c\x2b\x14\x1c\x6b\xee\x5e\x68\x68\x47\x26\x35\xf1\x51\x62\x7a\xd7\xd9\x26\x10\x9f\xc1\xb3\xb4\x39\x75\x81\x59\xb5\x68\x76\x77\x8c\x08\x16\x0b\x70\xc1\x5e\x62\xce\xd6\xf4\x9b\xb5\xd8\x06\x54\x86\xc6\xd3\x4f\x7b\xb9\x1c\xa9\xbd\x32\x0b\x67\xf7\x32\x24\xda\xbc\x60\xd8\x20\x2f\x49\x9a\x60\x74\xed\xc0\xee\x20\x8c\x02\x52\x45\x05\x4e\xd7\x07\xd1\xfc\xb6\x1d\x1e\x5e\xb1\x5d\xa3\xda\xb2\xdd\x10\x0d\xbe\x08\x3b\x08\xdb\xd5\xb5\x0e\x15\x24\x1f\xb3\x3b\x28\xed\xa1\xeb\x2d\x48\xb5\xa5\xf6\x52\x68\x0c\x06\xba\xc4\x8c\x77\x4a\x62\x4e\x3b\xf5\xfa\xac\x25\xe7\xc6\x8c\xd7\x7b\xe4\xe8\xf2\x4c\xa6\xe4\x6c\x40\xc3\x69\x9e\x55\x3c\x96\x6e\x76\x4e\x88\x97\xfc\xb3\x8c\x35\xea\x62\x4b\x64\x7b\xe2\x5b\x99\x94\x50\x34\xa9\x25\xb6\x03\x24\x64\x97\x3d\xd0\xe8\xb9\x06\xa4\x63\x4c\x66\xcf\x34\x21\xc2\x80\x35\xb2\x6c\xd3\x22\x9b\x8b\x1e\x56\x6f\x96\x42\xce\x91\x0d\xf1\x4a\xa9\xc1\x27\x36\xa9\xab\xc1\xf9\xfe\x18\x35\xd1\xc9\x3b\x03\xf7\xd5\x61\x6d\x06\x1a\x34\x5c\x69\xe4\x22\x88\x5c\x12\xf4\xba\x03\x63\xd9\x6c\x39\xa8\xf2\xf4\xaa\x0b\xbf\x66\x9d\x5d\x7c\xaf\x36\xd1\x61\x6d\x16\x1a\xc8\xa6\x71\xd8\x44\x43\xe4\x76\x47\x4a\x13\x9d\x36\x6d\xc1\xe5\x72\x6c\xbd\xed\x81\x86\xeb\x18\x90\x5e\xe4\x80\xb5\x4a\x45\xb6\x79\xdc\x2e\xcc\x19\x8c\x9d\x38\x2d\x43\x2e\x5b\xf5\xe6\x36\x59\x89\xa3\xeb\x28\x16\xd5\x07\x94\xe2\x8c\x86\xf6\x3c\x17\x51\xda\x44\x53\x35\x3c\xc3\x9b\xaa\x35\x37\xec\xda\x9e\x6a\x70\x19\xb2\x7b\x5a\xd0\x58\xea\x61\xcc\x36\x3b\x92\x48\xef\xb9\xb8\x5c\x8a\x65\x17\x81\x72\x88\xc7\x2b\xe0\x45\xc6\x99\x1c\xec\xcb\xe2\x12\x66\x15\x57\x20\xbb\x13\x23\x86\x88\xdf\x8a\xd1\x98\x9c\xde\xea\x9c\xfc\xdf\xd5\xd7\xb4\x9f\xa4\xa6\x7d\x43\x98\x61\x7d\xc0\xfa\x90\x76\x19\x1f\x96\x59\x6d\x5e\x44\x45\x9f\x71\x7b\xae\x92\xb6\x6b\x0c\xaf\xb6\x46\xb8\x17\x93\x98\xe3\x9a\x35\xdd\x47\xf6\x92\x9e\xb5\x9b\xbe\xe7\xae\xca\xda\xd8\x07\x82\x28\xbe\x55\x45\x4a\xf1\x8d\x21\xbb\x80\x22\x4a\xd5\x43\x00\xc1\x24\x86\xf4\xdb\xa8\x3e\x98\x85\xb1\xbd\x29\x8a\x6b\x68\xe5\x2c\x73\x9c\x01\xa4\xbb\x59\x82\x16\x35\x98\x7b\xa1\x61\x7b\x4d\xd9\xd6\xc8\xfd\x0a\xde\x21\x9e\xaf\x0f\x50\x84\x85\xca\x2e\xd1\xff\x64\xb7\x3c\x6b\xd5\x0c\x99\xfd\xd1\x0b\x1f\x74\x42\x57\x98\x54\x14\xbb\x0a\xc2\x07\x64\x9c\xc9\x9c\xda\x9f\xb3\x3a\xdb\x29\xab\x59\x31\x82\xe1\x39\x4c\x1d\xd2\x37\x8d\x21\xad\x11\x6f\x79\xc8\x35\xcd\x3e\xe7\x1f\xda\x3d\xec\x93\x35\xe1\x22\x4c\x98\x88\xdf\x6a\x45\x73\x82\x80\x6d\x85\xf1\x0c\xbb\xeb\x60\x7a\x08\x15\xcd\x0b\xbb\xc8\x75\x1b\x6d\xd4\x38\x6d\x40\x83\x12\x68\x8c\xb3\xad\xa5\xd3\x38\x62\x73\x63\xc7\x7c\x50\x6d\x1b\xe2\xa1\x0d\x43\x16\xa1\x5c\xb0\xe1\x7b\x38\x20\xfb\xbc\x52\x59\x04\xb5\x78\xd5\x45\x6a\xaf\xe2\x54\x1c\xe3\x44\x50\xad\xf3\x14\x2d\x22\xbf\x88\xde\x3b\xe2\xdf\x75\xec\xd5\x25\x74\x22\x32\x8b\x79\x71\xa5\x8d\xa7\x72\x7c\x5a\x46\x89\x15\x52\x8f\x12\x39\x4c\x9b\xe3\xea\xa4\xbe\xd1\xb6\x78\x9c\x45\xa1\x6e\x45\x76\xe1\x25\x16\x0f\x51\x28\x60\x91\x3c\x3e\x75\xa2\x5a\x04\x53\xaf\x63\x25\x4f\xcb\x80\x29\x19\xaa\x08\x2f\xdd\x74\xc8\x2e\x10\xa2\x40\x97\xc3\x43\xec\x07\x5a\xff\x85\xda\xce\x3f\x1e\xe7\xdf\x17\xd9\x3a\xb7\xb8\x7e\xc9\xda\xe9\x85\x45\xa7\xc1\xb6\xc3\x14\xac\xf7\x5a\xb8\x16\x02\xf0\x3d\x10\xb2\x3f\x4f\x32\xf5\xde\xdd\x5f\x6b\x3f\xf6\x14\x3a\x99\x2e\x53\xcb\xb7\x7c\xa0\x71\x40\xb3\x99\x19\xd0\x50\x90\xdc\x57\x31\x0a\x3a\x06\x34\x62\x51\xb3\x8d\x87\x74\x03\x81\x01\x8d\x05\xa1\x58\x70\x89\x9d\x7f\x26\x2d\x5b\xba\x0c\xee\x78\xf4\x38\x9f\x9a\xe6\x3c\xa7\x43\x6d\x01\x09\x53\x4c\x22\x21\xc3\xf6\x92\xb0\xb7\xc4\xac\x7d\x09\x9b\x5e\x37\x5e\x4f\xc4\xf0\x93\x6e\x6e\x8b\xd9\xf2\x52\xac\x6f\x09\x1b\x54\x9a\xbd\x46\xb3\x01\x2a\x45\x24\x6a\x1f\xd2\x4d\x3e\xdb\xb6\x88\xea\x76\xb0\xa4\x91\x37\xcd\x5e\xbb\x64\x87\x4e\x43\x3d\xf6\xc4\x2c\xb6\xd3\x7b\xb9\xc5\xf6\x6e\x3b\x27\xd5\xfa\x98\xb0\xea\x45\x8c\x8c\xc2\x82\x38\xca\xd4\x37\xa2\x9b\x53\x2c\xb8\xdc\xd2\x30\xd2\x24\xc4\x36\x90\x38\xe1\x5a\x66\xb4\x01\x09\x13\x10\x6b\xcc\x50\xcb\x10\x49\x8d\xc4\x55\x4f\x5a\xa3\x34\xb3\x93\x66\x47\xa2\x0a\x5c\xb2\x65\xa3\x6c\x20\xbb\xa1\xd0\xa3\xc4\x72\xa5\x03\xab\xc9\x29\xa3\x8c\x3c\x6c\xc7\xd0\x05\x07\x61\xbe\xe2\x89\x4c\xe7\x89\x6d\xdc\xd4\xc4\x1f\xdd\xfb\x9b\x62\x5e\x2f\xad\x1a\x9a\xe5\x4b\x2f\xe2\x88\x79\xae\xac\x61\x7a\x36\xd7\xa1\x94\x7d\x2c\x91\xe9\x6a\xb5\xcf\xc6\x4b\xa8\xb5\xa1\x6c\x67\x62\x7b\x67\x4b\x45\x19\xd2\x52\x04\x02\x4d\x54\xd6\xa4\x62\x31\x48\x11\x1d\xc2\x0f\x84\x62\xc9\x06\xd0\x28\x1b\x71\x49\x79\xe4\xee\x1e\x8b\xf0\x1d\x13\x09\x34\xa9\x23\xf1\x89\x30\x62\x66\x48\x22\x89\xf2\xd4\x66\xc2\x85\xb9\x9a\xce\x9d\x84\x66\x25\x9b\xc3\x2d\x98\x9a\x71\x41\xea\x44\x19\xb3\x90\x6b\xdb\x2e\xc2\xa2\xe3\xc6\xb6\x15\x8e\xad\x52\xec\xd6\xed\xda\x9c\x6d\xe1\x8e\xbb\x60\x2f\x8f\xb3\x39\xc8\x83\x98\x88\x81\x29\x79\xb4\x92\x66\x66\xd2\xcf\x43\xc6\x3c\xd9\x88\x1c\x9b\x8c\x3e\x93\x10\xd6\xaf\x0c\xcd\x58\x75\xe1\xa2\x08\x85\xcd\xbc\x59\x8d\xa1\x26\x73\xcd\x50\x4f\xbe\xe5\x66\x27\x2a\xd2\xcb\xc4\x58\x0f\x0c\x37\x95\xab\x64\x3e\x99\x32\xc4\xda\xb8\xc1\xbe\x1c\xd5\x39\x53\x8f\x1d\x52\xed\xee\xda\x59\xc1\x74\xb4\x31\xea\x9d\xd1\xc8\x01\xc2\x10\x3e\x19\x51\xca\x2b\xd3\xac\x4f\xb5\xce\x2a\x47\x4d\xc6\xa2\x78\x5c\x62\xde\x07\x2b\xe5\xb8\xe5\x38\x52\x60\xaf\x92\xa9\xe9\xfc\xcd\xd6\xec\x53\xd8\xf7\x41\xdf\xc3\xa2\x63\x46\xb1\xef\xf8\x33\x29\x72\x69\x8b\x65\xa1\xcf\x9b\x06\xab\x58\xcd\x9b\x6d\xae\xe5\xcc\x73\xa4\x2d\xaf\xe8\x3d\xfa\x8a\x4e\x17\x1b\xd5\xf2\x18\x47\x80\x8c\xac\xf0\xec\xa3\xcc\x94\x75\x2e\x99\xc4\x98\xab\x7c\xe8\x72\xad\xcc\x8e\x98\xb0\xa9\xe7\x60\x99\x0b\x35\x65\x85\x8d\x71\x5c\x35\xc6\xf2\x95\x5c\x22\x61\x6d\x19\x67\xe9\x8a\x65\x37\x64\x41\xec\x49\x33\x2f\x72\x31\x2c\xf5\xc9\x9d\x4c\xa3\xcc\xe8\x69\x99\xf1\xb0\xd9\xd8\xd3\x52\x9f\x98\xbb\xf5\x89\x99\x72\x6e\xac\xcc\x92\x29\xb8\x8d\x8c\xa1\x1f\xda\x53\xbb\xb3\x6d\x57\x43\x8c\x7b\xb3\x5a\x47\x6a\x2f\x08\x0d\xeb\x45\xfe\xe5\x2e\x58\x99\x19\xd7\x98\x3b\x4b\xca\x6e\xc9\x14\x1a\xa5\x30\xe1\x93\xb0\x05\x03\x7c\xcf\x1d\xd7\x10\xa1\x1f\xad\x28\x43\x3d\xe7\x08\x46\x86\xad\x3c\xe5\x54\x63\x1c\x2c\xb9\xcc\x9c\x62\xd1\xf3\x8b\x3c\x5e\xa1\x76\x4d\x57\x27\x89\xab\xe1\x19\x14\x29\x03\x3a\x9b\x41\x29\x9d\x17\x33\x4e\x47\xbf\xdc\x97\x48\x4f\x4b\xdd\x92\xed\x74\xbc\x01\x1f\xb1\x3c\x13\xbe\x22\x77\xb5\x30\xb9\x56\x17\xd1\x55\xe2\x7c\x73\xb4\x95\x56\x4e\x15\xb6\xc0\x93\xa2\x20\x75\xd9\x39\x2a\xce\x1f\xe5\xde\xa0\xb6\xa3\x11\x4e\x30\xc9\x37\x3d\x13\x6e\x40\x1a\xf7\x48\x0a\x62\x86\x91\x26\xc5\x25\xf6\x91\x68\x22\x34\xf8\x4b\xc2\x22\x3b\x7a\xc6\x9f\xa0\x49\xcb\x8b\xd3\x36\x5a\x98\x4a\x88\x53\x31\xef\x94\xb8\x34\x95\x36\xe5\x66\xe1\xae\xa1\xe2\xd4\x4c\x4c\x9c\xca\x10\xa8\xb2\xac\xfd\x23\x26\x64\xba\x6b\xd9\x5d\x48\x31\xd3\xd1\xcd\x42\x4c\x11\x7e\x38\xa5\x10\x26\xc5\x80\xca\xc8\x0d\x74\x7a\x2b\x12\x65\xca\xe1\x10\xeb\x9e\x7b\x64\x81\xbd\x07\x06\xd7\x21\x6f\xc1\x7c\xd6\xf6\xd7\x43\x27\x4e\x3f\x7c\xda\xc1\x8f\xa4\xdb\x5f\xb3\xfc\x18\x52\xc5\xd4\x88\x64\x9a\x22\x8c\x8e\xf0\x63\xd0\x45\xa9\x3d\xa3\x0e\xb2\xf8\x0e\xd7\x74\x56\xc6\xb6\xe8\xcb\x23\x90\xe8\xfe\x94\x7d\x20\xf6\xa9\x9d\x6b\xf1\x1d\xb4\xe1\x77\x96\x7c\xbe\xab\x8f\x60\xf5\x3c\x60\x46\xe4\x18\x4e\x3b\xcb\xaa\x8c\x7f\x96\xa5\x1b\xab\x12\x27\x53\x33\x63\x9d\x24\x69\x07\x42\xb3\x89\xd3\x22\xcd\xe0\xb3\x6b\xc8\x31\x53\xf2\x08\x6a\x5b\x87\x47\x5a\xbc\xfb\xb4\x63\xa3\xf1\x1d\x08\xee\x1d\x9b\x89\xf1\x84\x7b\xc1\x75\x3e\x87\xec\xe6\xf1\x85\xaf\x3c\x75\xa6\xfd\xe4\xa1\x74\x76\xf3\x30\xbb\x10\x18\x3d\xdc\x31\xc8\xe2\x64\x32\x8b\x3c\xea\xd1\xf8\x52\x44\xa8\xd1\xce\x6e\x94\x7c\x93\x26\xca\x24\xbd\x97\x35\xd9\x27\x21\x39\xf1\x23\x90\x71\x5c\xaf\x92\x02\x7a\xea\xc2\x1b\x71\x88\x2d\x17\x45\xf2\xd4\x9a\xe8\xe1\x43\x66\xbe\x1e\xc2\x34\xc3\x85\x48\x72\xd9\xdd\x4a\x4a\x1b\x47\xb9\x12\xfe\xaf\x63\xba\x4b\xec\xa4\xf6\xc1\xa9\x1c\x4b\xf5\x60\x4a\x06\x77\xd5\xdd\x9e\x7f\x85\xa6\xe5\x0f\x11\xbb\x2a\x49\x67\x9c\x44\x11\xcd\x33\x63\x48\x47\x6b\x5e\x6c\x95\xe9\x21\x5d\x1d\xf1\x83\x19\x7e\xb7\x56\x63\xe3\x5b\x56\x4b\x2a\xba\x08\xc8\x2b\xcc\x94\x05\x67\x52\xbc\xb7\xf7\x8d\x65\xc1\x4c\x91\x3a\xf5\xa5\x24\x02\xf4\x6d\x51\xfd\xd1\xd6\x73\x06\xb3\x18\x93\x31\xc4\x5b\x69\xe8\x88\xb4\xe6\xee\xd3\x44\x17\xb5\x19\x42\xa3\x34\xdc\xe3\x7c\xdc\x3e\x8a\xbb\x5f\xc5\xbc\xe5\x93\x9a\x49\x9a\x58\xbd\x2b\x62\xa9\xcd\x56\x9a\xb7\xe5\x22\x76\x17\x6b\x5f\x78\x06\x52\x3e\xa9\x5d\x6a\x65\x9d\x9a\x39\xc9\xb5\x92\x89\x29\x98\xf4\x01\xe5\x0c\x54\xa0\xd1\x1d\x6b\x74\xe7\xcd\x99\xb8\xf3\x26\x69\x88\x3a\x07\x53\x15\x34\x7a\x41\xc0\x96\xb8\x22\xf3\x99\x54\x52\xb4\x30\xdc\x29\xd4\x24\x43\x84\x67\xce\x26\xf6\xcd\xb8\x46\x97\xe8\x84\x99\x19\x35\x61\x46\xcb\x44\x49\x5d\x16\xce\x66\x71\x4f\xe6\xc1\x27\x7d\x71\xee\xa1\x20\x75\x0f\x25\xa8\x8c\x18\xd1\x9f\xb5\x14\xb5\x72\xf2\xf8\x57\xbf\xfa\xb0\xbf\x2f\x5d\x8a\x52\x0e\x1b\x51\xeb\xf7\x90\x8d\x7d\xd8\x66\xa3\xeb\x5b\xcc\x85\x6a\x4c\xaf\xc1\x98\xed\x9d\x48\x2e\x91\x2d\x7a\xfa\x6e\x76\xe8\x7b\x35\x89\x34\x62\xef\xc9\x44\x1a\x1a\xe5\xf6\xb3\x9e\x4f\xde\x81\xd6\xc2\xae\xc3\xd3\x47\x32\x8c\x00\x62\xeb\xcf\xbe\x3f\xb9\x25\x96\xaf\x36\xf4\x51\xac\x38\xe1\x47\x1f\x67\xc5\xa3\x38\xe1\x5d\x78\xfe\xb1\x40\x23\x1e\x3d\x53\x8c\x08\x94\xc2\xa0\x28\x8e\xa9\x93\x13\x57\x72\xdc\xe9\x88\xc8\x7d\x4f\x99\x5f\x92\xf6\x7b\x31\x7d\xb3\xe3\x81\x7e\xd6\x53\xf7\xcc\x91\x63\x7b\x0e\xac\x1c\x7d\x2a\xd3\x7e\x15\x39\xc2\xca\x50\xe0\xee\xc1\x51\xcc\x3d\x50\x82\x12\x51\x52\xc7\x91\x04\x0c\x7d\x02\xa7\x1c\xb2\xc4\x37\xfd\x7b\x3c\x5d\xa3\x6d\xb8\x17\x53\xf5\x73\x78\x6f\xec\xe0\x1e\x7b\x5f\xe3\x50\xbb\x97\x31\x47\xb7\x74\x36\x9f\x65\xe4\x18\xc7\xc9\x74\xa8\x08\x30\xde\xb5\xa9\x98\xf9\x60\x9c\xdb\x06\xa9\xb7\x66\xe4\xd7\x5b\xbd\x20\x23\xdd\xdb\xb3\xef\xc6\xa4\xb6\x24\xb3\xe8\x0e\xdd\x8f\xb9\x1b\x1f\x73\x79\x03\x0a\xa3\x8e\xdc\x6c\x66\x89\xa4\x9f\xd2\x8c\xb4\x9b\x36\x23\xa4\x75\x98\x7e\x61\x46\x69\x15\x11\x7f\xc0\xd4\xcb\x64\xe3\x99\x0d\xee\x46\x3a\xa4\x91\xde\xc4\xad\xb0\xa1\xd7\xff\xd8\xdc\x8d\x5a\x87\x53\xaf\x15\x6a\x05\x39\x13\xbc\xfa\xda\x16\x0c\xbd\x63\x8d\xf4\x90\x19\x3d\x2d\x67\x74\x4c\xf2\x95\xdc\x77\xbc\x29\xf6\x2f\x74\x5b\xe1\xee\x2f\x29\xb0\xa8\x6e\xe2\x72\x74\xb1\x65\xbb\xee\x92\xdd\x38\x5d\x74\x5a\x45\xf5\x32\xe4\x3d\xe7\xe1\x29\x61\x43\x19\x27\x17\x84\x99\x6b\xcb\x08\xeb\xcf\x32\xcb\x58\x58\x30\xd4\x33\x68\x98\x5c\x9e\x27\x03\xed\x05\xf3\xa8\x1a\x0c\x06\x60\xb0\xa5\xae\x10\xd7\x72\x65\x4c\x8c\x4f\xaf\x13\xb4\x98\x60\xb1\x6e\x30\x22\x1e\x9e\x48\x7f\xd3\x8d\x07\x94\x6a\x3b\x21\x0f\xaf\x4a\x50\x3b\x28\x24\xc8\xf5\xaf\x58\xb4\x29\x44\xa3\x4d\x95\xb4\x0c\x11\xe9\xd3\x29\x14\x3c\xcb\xb2\xf4\x68\xb4\x1a\x3d\x1e\x0f\x2b\xb5\x8c\xb0\x89\x68\x10\x4a\xa0\x87\x04\x8e\x94\xa4\x61\x35\xc7\xec\x76\x3d\xae\xe0\xd6\x83\xa8\xc9\x50\xbb\x79\x54\x28\xe4\xf3\x3a\x89\x9a\xb2\x00\x12\x79\x42\x94\x4c\x0f\xce\x55\x8e\x07\x3f\xcd\x21\xd3\x63\xa1\xd6\x3c\xa0\x3d\x09\x2a\xdf\xd0\x74\xac\xf2\x9c\xb3\x5f\x61\xf0\xa0\xc1\x42\x72\x19\x60\xce\x11\xa1\x89\x7d\xcb\x2b\xb1\x40\x6c\x07\xf0\xbc\x02\x4d\x07\x54\xbd\x9a\x53\x9f\xc0\xa6\x0f\xe6\x91\xd6\xcd\xbe\x46\x27\xa8\x06\x93\x93\x83\x81\x89\x00\x0c\x22\xc1\xf6\xd4\xd3\x8d\x69\x54\x3b\x8c\x6a\x27\x95\x6a\x16\x3d\x4c\xe1\x73\x34\xaa\x7d\x41\xb5\x6d\x39\x8a\x6a\x05\x9a\x3e\xa8\x3a\x35\x9f\xc6\x2c\xc3\xa6\xcd\x9f\xdf\x0b\x2d\x9d\x7e\x5b\xa7\x9f\x14\x0c\x1f\x28\x56\x04\x25\xe1\x00\xb9\x21\x22\xd4\xd9\x64\xa5\x4a\x02\x27\x3c\xd2\x4e\xf6\xab\x58\x19\x44\xa2\x03\x3b\x23\x9b\x0b\x7d\xde\xe0\x7e\x3f\xd8\x5f\xe6\x95\xae\x89\x5d\xb5\x9a\xaf\x40\x46\x11\x8f\xd4\x39\x90\x7d\x61\x5b\x65\x18\x5a\xe9\x7d\xe1\xed\xb7\x82\x42\xc1\xde\x1f\xce\x31\xdc\xbd\x8c\x2e\xb1\x49\x97\xd8\xbc\x4b\x7a\xbc\x4b\xdc\x48\x97\xf4\xb4\x2e\x81\x7e\xbf\xaf\x4f\xcb\x9e\x76\xd7\x90\xf5\x97\x2b\x7a\xc5\x95\x9d\xe5\x69\x9d\xa5\xda\x35\xac\x26\xd1\xe2\xde\x80\x76\xad\xcd\xa6\x11\xcc\x57\x40\xbf\x3f\xa4\x67\x12\x4f\x1f\xb0\xa5\xb1\x26\x57\x55\x15\x95\x24\xcc\xbf\x0d\xab\x78\x20\x63\x4b\x97\xda\x76\xa8\x05\x9c\x35\x35\x92\x68\xe0\x3f\xf9\x80\x23\x92\x60\x64\x6e\xd3\x80\xdf\x64\x3c\xd5\x10\x91\x25\x0a\x43\xeb\x98\x8d\xdb\xa5\x8e\xe3\x99\x0c\xb0\xcf\x9a\x8c\xe5\x4c\xfa\xb0\x0c\xa0\x5d\xac\x00\xd8\xb3\xc8\x5c\x09\x01\x74\xad\x9e\xac\x1e\x36\xac\x1e\x7f\x07\x71\xae\x51\x28\xb8\x7c\x38\x5b\xac\xec\xa4\xe5\x83\x09\xd7\x6a\xe9\xc5\x5b\xbc\xb8\x08\x95\xd7\xb8\x9b\xc8\x78\x3c\xe2\xa5\x85\x21\x2a\x35\xfc\x9e\x87\xf9\xe9\x2a\x8d\x8b\x47\xed\xcd\xc7\x5b\x2c\x89\x46\xb1\x64\x18\x0f\x60\x7a\x4a\x62\x39\x10\x95\x5a\x8e\xd7\x64\x05\x9e\x74\x70\xfb\x78\xab\x15\xa2\xc8\xa6\x41\xe3\x35\x73\x1e\x03\x6d\x18\x26\x1e\xf4\x7d\x60\x56\x8b\x6f\xab\x1e\xef\x9d\xad\x17\x0a\xfa\x2f\xd8\xb3\xca\xd0\xb5\x12\x9b\x6d\x3e\x6f\x0f\x52\x16\x5b\x03\xb6\xd4\xe0\xb4\xb5\xb5\xd3\x50\x6b\x07\x36\xad\xf2\x5c\x73\x7f\x7b\xae\x29\xf8\x49\xd7\x6a\xa8\xc5\xa3\x40\xb3\x09\xaa\x8d\x5a\xb3\x0e\x3b\x96\x3e\x93\xbb\xfa\x4c\x26\x4b\x22\x1f\xf6\xfb\xf9\x0e\x7b\xc0\xd9\xec\x02\x16\x82\xd9\x8c\x7c\xa0\x16\x58\xab\xdf\xef\x00\xe8\x9a\x22\xf8\x21\x5d\x45\x39\xcf\xec\xc2\x00\x3c\x60\x95\xe7\xcd\xde\x7e\x67\xde\xef\xf7\x4d\xdf\xea\x82\xaa\x6d\x75\x61\x6f\x72\x12\x54\x7b\x93\x93\x74\xf5\xa9\xef\xc4\x8a\x81\x76\xbf\xef\x0f\xe8\x90\xb8\xca\xcd\xcb\xd2\x3a\x45\x1b\x0b\x3b\x39\x0e\x33\xa9\xe3\x30\x13\x19\x87\x99\xfa\x04\x63\xa5\xac\x51\x07\x4c\xc0\xdf\xa9\x50\x8d\x0c\x54\x07\x4b\x06\xe6\x5a\xe5\x39\x77\x7f\x6f\xce\x15\x1d\xdd\xb0\x02\xd5\xd1\x0a\x34\x5d\x50\x0d\x6a\x2e\xe5\x52\x79\xbb\xdf\xcf\x47\xc6\x4d\x63\x40\xb4\x87\x1b\x40\xac\x11\xbd\x93\x1b\x7a\x27\x7b\xd0\x81\x36\x98\x50\xb9\x2d\x45\xdd\x03\xe5\x42\x21\x64\x21\x3e\x7d\x3a\x5f\x00\x1b\x02\xc7\x6c\x40\x8f\x0c\x81\xcc\x6e\xc8\x17\x2b\xc2\x81\x12\x8d\xb4\x38\x69\x11\x51\x51\x3c\x8c\xca\x3d\x13\xe9\xc3\xc7\xda\x19\x0f\x74\x2c\x54\x12\xaa\x1b\xf4\xad\xa0\xdf\x77\x26\xf4\xb8\xfa\x7e\xbf\x5f\xac\x58\x96\x45\xe4\x46\x5f\xc6\x57\xb5\xc9\x2f\x58\x91\xe1\xf1\xe9\x48\xdb\xcd\x15\xdb\x6b\x20\x76\xf5\x87\xf4\x0d\x5f\xaa\x36\x44\x25\x22\x91\x74\x0f\x39\x76\x23\x70\xb0\xd3\x08\xad\x9e\xa2\x9c\x79\xd7\x06\xe9\xb2\x5d\xcf\x44\xa0\x84\xfd\xc7\xbb\x5d\x14\x1c\xb4\x69\xb4\x6a\xce\x07\x4c\x1a\x9b\x3d\x92\x05\xb4\xfe\x58\x58\xed\xa2\x03\x6d\x64\x37\xb7\x5a\x3d\xd5\xd4\x42\xc2\x3e\xd2\x30\xcc\x57\xaa\xc5\xca\x80\x4f\xbb\x35\x63\xf3\xd5\xbf\x1b\x55\xe3\x80\x01\x8d\xff\xef\x9f\xbf\xe1\xd0\xd5\x6f\x08\xe0\x9b\x02\xf8\x16\x07\x36\x2e\xff\x56\x42\x6f\x49\xe8\xf7\x12\x7a\x47\x7c\xf0\x1c\x07\xae\x89\xba\xae\xa9\x2a\xde\x97\xd0\x9f\x24\xf4\x37\x09\xfd\x85\x43\xb7\x04\xa6\x9b\xbf\x16\x95\x3e\x2f\x52\xce\xcb\xd2\x6f\x88\xbc\x17\x44\xde\x65\x01\x7c\x5f\x54\x24\x48\xb8\xa5\x48\xf8\xb5\x84\xfe\x20\x21\xd1\x11\x1b\x17\x25\xcd\x02\xe1\x2d\x51\xe9\xe6\x85\x3f\x73\xe8\xce\xeb\x94\x50\x8a\xfb\x45\x02\x1d\x26\x38\xff\x29\xa1\x37\x04\x74\xe7\x75\xda\xb6\xe3\x14\xa4\x38\x1e\xa7\xe0\x45\x02\x3e\x41\xc1\xcb\x0a\xa4\x15\x3c\x45\x30\xbd\xfa\x0f\xa3\x6a\x3c\x44\x07\xe6\x0d\x0e\x6d\x5c\xfc\x96\x84\x9e\x97\xd0\x8b\x1c\xba\xfd\x1c\x07\x6e\x88\x52\x37\xbe\xc9\x81\xcd\x57\x09\xb6\x83\xb4\xb2\x37\x39\x74\xed\x45\x01\xbc\x24\x80\xef\x0a\xe0\x7b\x1c\xb8\xfa\x6d\x0e\x6c\x5c\x14\x85\x6e\x88\xa4\x5b\x57\x38\x70\xe7\xf5\x8f\x38\xb4\xf9\xea\x25\xa3\x6a\x1c\xa2\x68\xde\xe2\xd0\xc6\xc5\xef\x72\xe8\xda\x0f\x64\xd2\xf7\x24\xf4\x23\x09\xbd\x2a\x21\x51\xee\x9a\xc8\xbc\xf1\xb2\x00\x44\x5d\x37\xbe\xc3\x81\x3b\xe7\x04\xca\x9b\x17\x08\xf0\x35\x02\x3d\x2f\x21\x32\x46\x87\x9e\x25\xd0\x0b\x02\xda\x7c\x95\x74\xf7\x61\x4a\xe4\xdb\x1c\xba\xfa\x92\x00\xbe\x23\x80\xef\x72\x60\xe3\xca\x37\x04\x74\xf9\x23\x99\xf6\xbc\x84\xbe\x25\x73\xff\xc9\xa1\x6b\xaf\x8a\xa4\x8b\x3f\x96\xd0\x4f\x45\xa6\x48\xba\x26\x52\xae\xbe\x2c\x6b\x10\x84\x5d\xfb\x05\x07\x6e\x09\x3c\xb7\x5e\x94\x85\x2e\x4a\xd4\x22\xed\xd6\x3b\x12\xcd\xeb\xa2\x86\x9f\xc9\x24\x05\x89\x5a\x6f\xfc\x48\x00\x3f\xe0\xc0\xe6\xab\x64\x30\x8f\xd0\x3e\xf9\x2d\x87\x36\x2e\x9e\xe7\xd0\x8d\x57\x38\x70\xe7\x9c\x28\xb6\xf9\x2a\x69\xed\xc3\xf4\x83\xdf\x71\xe8\xe6\xdf\x38\x70\xed\x75\x0e\x6c\x5c\xfc\xb5\x48\x3a\x2f\x00\x91\x72\xf3\xb7\x22\xe5\x0d\x91\xf2\x16\x07\x6e\xac\x73\xe0\xce\x79\x51\xfa\xce\xb9\x0f\x25\xf4\x11\x87\x36\x5f\x25\x69\x8f\x50\x1a\xde\xe1\xd0\xb5\xb7\x38\xb0\x71\xf1\x0d\x09\xfd\x96\x43\xb7\xce\xcb\x24\x55\xec\x1d\x09\xfd\x5e\xd4\x21\xca\x6f\x5e\xf8\x9d\x84\x3e\xe0\xd0\x9d\xf3\xdf\x17\x69\xaf\x12\x42\x8e\x52\xf4\xef\x72\xe8\xea\xf7\x04\xf0\x7d\x01\xfc\x80\x03\xd7\xde\x11\xc0\xef\x05\xf0\x07\x01\xbc\x2f\x0a\xff\x90\x03\x1b\x17\xff\x24\xa0\x2b\x2f\x71\xe8\xa6\xc8\xbc\x25\x52\x6e\x7d\x57\x16\x12\xd0\x35\xf9\xdd\x45\x51\xfb\x8d\xd7\x38\xb0\xf9\xea\xc7\x46\xd5\xf8\x6f\x4a\xf0\xef\x39\x74\xed\x6f\x1c\xb8\xfd\x12\x07\x36\xd7\xc9\x7c\xff\x32\x2d\xf5\x1e\x87\x36\x2e\xbe\xcf\xa1\x9b\xef\xc8\xa4\xbf\x70\xe8\xda\xdf\x65\xd2\xdf\x38\x74\xe3\x67\x1c\xd8\xbc\xf0\x2e\x87\xee\x9c\xfb\x86\x84\xbe\x25\xa1\xe7\x05\x74\xfe\x0d\xf1\xc5\x3a\xe1\x59\x8f\x52\xf4\x7f\xe0\xd0\xb5\x8f\x05\x70\x49\x00\x1f\x72\x60\xe3\xe2\xdf\x25\x74\x51\x64\x5e\x91\x49\xff\x94\xd0\x65\x0e\x5d\x17\xd5\xdf\x12\x55\x6c\x5e\x78\x43\x42\xbf\xe6\xd0\x9d\x73\x2f\x49\xe8\x45\x01\x9d\xff\x06\x87\x6e\x12\x16\xf8\x28\xe9\xac\x9b\xb4\xd8\xd7\x29\xdd\xa4\x55\xc7\x28\xdd\x7f\xe4\xd0\xc6\xc5\x8f\x04\x74\xe9\x1b\x12\x12\xe5\x36\x2f\xfc\x89\x43\x37\x5e\x17\x49\xeb\x84\x85\x3f\x46\x2b\xf9\x13\x87\x6e\x5e\xe4\xc0\x75\x91\x77\xf5\x15\x0e\x6c\x5c\x7a\x5e\xe4\x7d\x5b\x26\xbd\x28\x92\x5e\x90\x49\xdf\x95\xd0\x4b\x1c\xba\xf5\x6b\x0e\xdc\x38\xc7\x81\x3b\xe7\x7f\x24\xa1\xb7\x04\x6a\xfa\x21\x6d\x27\xe1\x51\x8f\xb1\x76\x12\x9c\xc7\x29\x89\x7f\xe6\xd0\xd5\x57\x05\xb0\x2e\x80\x1f\x73\x60\xe3\xca\xab\x12\xfa\x91\x84\x7e\x2a\x21\x51\xee\xea\x4f\x44\xd2\xa5\xef\x71\xe8\xd6\x1f\x64\xd2\x0f\x38\x74\xfd\x7b\x32\x49\x56\x76\x49\x20\xb8\x2e\x4a\xdd\xfa\x93\x00\xde\x17\xb5\x0b\x84\xb7\x7e\x2f\x31\xcb\x3a\x45\x4d\x37\x5f\x11\x85\x24\x05\xa2\xcc\x8d\x5f\xcb\xcf\x5e\x97\xd0\x2f\x24\xa4\x72\xcf\x4b\xe8\x0d\x09\x49\x9a\xaf\xfc\x4c\x60\x12\x54\xdc\x14\x4d\xbc\x2a\xb3\x3e\x12\x28\x5f\x14\xc0\xaf\x38\x70\xe7\xdc\x77\x25\x24\xea\xbc\x41\xd1\x1c\xa5\x69\x94\x58\x4a\x36\x4d\x7c\x9c\x0e\x16\x99\x04\x27\xe8\x60\xbd\xcf\xa1\x8d\x4b\x3f\x96\xd0\x4f\x39\x74\xe3\x2d\x0e\x6c\x5e\x78\x93\x43\x77\xce\xfd\x48\x42\xaf\x4a\x48\x7c\xba\xb9\x4e\xc8\xfb\x0a\xad\xf8\x02\x87\xee\x9c\xfb\xa9\x84\x7e\xc6\xa1\xdb\xdf\xe5\xc0\xe6\x3a\x99\xa1\x27\xe9\x07\x7f\xe1\xd0\xf5\x1f\x73\x60\xe3\xd2\xcf\x44\x92\x00\x6e\xfd\x48\x00\xaf\xca\x42\xbf\x90\xd0\xeb\xa2\xf8\x4f\x65\xd2\x79\x0e\xdd\xfe\x1e\x07\x36\x2f\xbc\xc5\xa1\x3b\xe7\xc4\x97\x77\xce\xff\x56\x42\xdf\x12\xe5\xd6\xc9\xa2\x38\x45\x29\xfb\x2b\x87\x36\x2e\x9f\xe7\xd0\xf5\x5f\x88\xa4\x4b\x6f\x89\xa4\xd7\x65\xd2\xaf\x45\xd2\xaf\x65\xd2\x6f\x25\xf4\x86\x84\xde\xe1\xd0\xad\x9f\x89\xf2\xa2\xfa\xcd\x0b\x1f\x71\xe8\xce\xf9\x77\x24\xf4\xbc\xc8\x5d\x27\xd2\xc8\x02\x25\xed\x6f\x1c\xda\xb8\xf4\x7b\x0e\x5d\x7f\x4b\x26\xfd\x81\x43\xb7\x7e\x21\xf2\xde\x90\x79\xef\x4b\xe8\x4f\x22\xf3\xb7\x1c\xb8\x21\xbe\xbb\x21\xb2\x6e\x7d\xc4\x81\x3b\xe7\x5f\x14\xd0\xeb\x84\xb0\x85\xaf\x51\x7a\xc8\x70\x3e\x4e\xe9\xf9\x80\x43\x57\x7f\x2e\x80\x5f\x08\xe0\x97\x1c\xb8\xfe\x0e\x07\x36\x2e\x5d\x14\x49\xbf\x97\x49\x97\x45\xd2\x1f\xc4\x77\xaf\x73\xe0\xa6\xa8\xe0\xe6\x6b\x02\xf8\x89\x00\x04\xb6\x8d\x2b\xbf\x15\xdf\xff\x49\x00\xef\x8b\x42\xeb\x1c\xb8\xf5\x63\x01\xfc\x94\x03\x37\xfe\x2c\xbf\x97\x94\x5c\x91\x64\x5e\xf9\x93\x84\xfe\x20\xa1\xf7\x25\xf4\x96\xa4\xfd\x2f\x02\xe5\x5f\x64\xd2\xdf\x25\xf4\x37\x0e\xdd\x7e\x9e\x03\x9b\xeb\x84\x7b\x3e\x41\xbb\xed\xef\x1c\xda\xb8\xf4\x4f\x09\x7d\xc4\xa1\x1b\x7f\xe1\xc0\x9d\x73\xe7\x39\x74\xfb\x05\x99\x44\xa6\xd8\x13\x54\x31\x58\x27\x53\xfc\x49\x5a\xdd\x3f\x38\xb4\x71\xf9\x1b\x12\xfa\x16\x87\xae\xff\x4d\x26\xbd\x28\xa1\xe7\x25\xf4\x12\x87\x36\x2f\xfc\x45\x40\xeb\x44\x68\xf9\x2a\xad\xf8\x22\x87\x36\x2e\x7f\x57\x42\xdf\xe3\xd0\xe6\x3a\x61\x35\x4f\xd1\x72\x97\x38\xb4\x71\xe5\x2f\x1c\xba\x7a\x8e\x03\xd7\xff\x2e\xf3\x2e\x72\xe8\x96\x28\xb4\x71\x59\x54\x71\xfd\xa2\x2c\xa5\xca\xff\x8d\x43\x37\xfe\xca\x81\xdb\x3f\x90\x79\x1f\x71\x68\x73\x9d\xc8\x43\x5f\xa3\x54\x5c\xe6\xd0\xf5\x4b\x1c\xd8\xb8\xfc\x23\x91\x74\x45\x00\x1f\xca\xbc\x57\x25\xf4\x63\x0e\xdd\xf8\x80\x03\xb7\xde\xe2\xc0\xe6\x85\x8f\x25\xf4\x1e\x87\xee\x9c\x7b\x43\xa4\xad\x93\xfa\x6d\x82\xfc\xc3\x6f\x72\x68\xe3\xf2\x2f\x38\x74\xf5\xd7\x02\xf8\x8d\x00\xde\x90\x85\x7e\x27\xa1\xb7\x25\xf4\x9e\x84\xde\x15\x1f\xbc\xc9\x81\x6b\xa2\xfa\x6b\xcf\xc9\x42\x17\x24\xf4\x67\x09\x7d\x20\xa1\xbf\x72\xe8\x96\xc0\x74\x53\x52\xf1\x96\x48\xf9\x95\x2c\x2d\xf0\x5c\x15\xd4\xdc\xbc\x22\x80\x1f\x88\x8a\x04\x09\xb7\x14\x09\xbf\x91\xd0\x1f\x25\xf4\x0f\x01\x5d\x94\x34\xbf\xc0\x81\xcd\x0b\xa2\xfa\xdb\xa2\xe3\xee\xbc\x4e\x09\xa5\xb8\xc9\x5a\xb6\x11\xc1\xf9\xa1\x84\xde\x14\xd0\x9d\xd7\x69\xdb\x7c\x0a\x52\x1c\x3d\x0a\x92\xb1\xb6\x57\x28\x78\x45\x81\xb4\x82\x55\x3a\x44\x64\x3f\x5f\xa2\x43\xf4\x2d\x0e\x6d\x5c\x7c\x4e\x42\x2f\x48\xe8\xdb\x1c\xba\xf1\x0d\x01\x88\x52\xb7\xd7\x39\xb0\xb9\x4e\xe6\x4c\x83\x56\xf6\x1c\x87\xae\x7d\x5b\x00\xdf\x11\xc0\xcb\x02\xf8\x3e\x07\xae\xfe\x8e\x03\x1b\x17\x45\xa1\x1b\x2f\x71\xe0\xd6\x3f\x39\x70\xe7\xf5\x8f\x39\xb4\xf9\xe2\xf3\x02\x5a\x27\xa8\x9b\x14\xe1\xf3\x1c\xda\xb8\xf8\x32\x87\xae\xfd\x50\x26\x7d\x5f\x42\xaf\x48\x68\x5d\x42\xa2\xdc\x35\x91\x79\xe3\x7b\x1c\xb8\xfd\x53\x01\xbc\xc6\x81\x3b\xe7\x2e\x73\xe8\x26\x19\x99\x26\xd5\x9a\x5f\x14\xd0\xe6\x3a\x59\x2b\x88\x12\xf4\x02\x87\xae\xbe\x23\x80\x77\x05\xf0\x7b\x0e\x6c\x5c\xf9\xa6\x80\x2e\x7f\x2c\xd3\x5e\x90\xd0\x73\x32\xf7\x43\x0e\x5d\x5b\x17\x49\x17\x7f\x22\xa1\xd7\x44\xa6\x48\xba\x26\x52\xae\xbe\x27\x6b\xb8\x22\xf2\x7e\xc9\x81\x5b\x02\xcf\xad\x6f\xcb\x42\x97\x24\x6a\x91\x76\xeb\x5d\x89\xe6\x9c\xa8\xe1\xe7\x32\x49\x41\xa2\xd6\xdb\xe2\xc3\xdb\x22\xe5\xa6\xf8\x6e\x73\x9d\xd0\xd7\xa2\x9d\xf3\x22\x87\x36\x2e\xfe\x8a\x43\x37\x5e\xe5\xc0\x9d\x73\xff\xe4\xd0\xe6\x3a\xe9\xfe\x65\xfa\xc1\xb7\x39\x74\xf3\x03\x0e\x5c\x3b\xc7\x81\x8d\x8b\xbf\x11\x49\xbf\x12\x80\x48\xb9\xf9\x3b\x91\xf2\xa6\x48\x79\x9b\x03\xb7\x7f\xcd\x81\x3b\xe7\x45\xe9\x8d\x0f\x2e\x89\xb4\x73\x1f\x73\x68\x73\x9d\xf4\x65\x9b\xd2\xf0\x12\x87\xae\xbd\xcd\x81\x8d\x8b\x6f\x4a\xe8\x77\x1c\xba\xf5\x2b\x99\xa4\x8a\xbd\x2b\xa1\xf7\x04\x74\xf9\xa7\xa2\x36\xf1\xe5\xe6\x85\x77\x24\xf4\x77\x0e\xdd\x16\x75\xdc\x20\x7d\xd7\x5e\xa1\x14\x11\x01\xc9\xa1\x14\x7d\x87\x43\x57\xff\x20\x80\x3f\x0a\xe0\x4f\x1c\xb8\xf6\xae\x00\xde\x13\x80\x2c\xf3\x67\x0e\x6c\x5c\x94\xd0\x15\x51\xe5\xcd\x1f\x71\xe0\x96\x48\xb9\xf5\xb2\x2c\x24\xa0\x6b\xaa\x06\x51\xe9\xed\x77\x44\xde\x05\x0e\x6c\xae\x93\x69\xf2\x75\x4a\xf0\x77\x39\x74\xed\x03\x0e\xdc\x7c\x9f\x03\xb7\xbf\xc3\x81\xcd\x75\xb2\x43\x9c\xa6\xc5\x5f\xe6\xd0\xc6\xc5\x0b\x1c\xba\xf9\xae\x4c\xfa\x2b\x87\xae\xfd\x43\x26\x7d\xc0\xa1\x1b\x3f\xe7\xc0\xe6\x85\xdf\x73\xe8\xce\xb9\x6f\x4a\xe8\x39\x09\xbd\x20\xa0\xf3\x6f\x8a\x2f\xd6\xc9\xc4\x75\x29\xfa\xef\x71\xe8\xfa\x37\x38\x70\xed\xb2\x00\x3e\xe2\xc0\xc6\xc5\x7f\x48\xe8\x92\xc8\xfc\xa7\x4c\xfa\x50\x42\x57\x44\x5d\x1f\x0b\xe0\x5b\x1c\xb8\xf1\x0b\x0e\xdc\x7e\x8f\x03\x9b\x17\x7e\xc3\xa1\x3b\xe7\xbe\x23\xa0\xf3\xdf\x94\x69\xdf\xe6\xd0\x4d\x9a\xc9\x3a\x8d\xc8\x85\x1d\x4a\xf5\xf7\x39\xb4\x71\xf1\x63\x01\x5d\xfa\xa6\x84\x9e\xe3\xd0\xed\x0b\x02\xf8\x33\x07\x36\xd7\xc9\x92\xf2\x68\x1d\x3f\xe0\xd0\xcd\x4b\x1c\xb8\xfe\x3c\x07\xae\x5e\xe0\xc0\xc6\xa5\x17\x44\xde\x4b\x32\xe9\xdb\x22\xe9\x45\x99\xf4\xb2\x84\xbe\xc3\xa1\x1b\xe7\x39\x70\xfb\x2f\xa2\xb8\xc8\xba\x73\xfe\x15\x09\xbd\x2d\x68\x20\xc3\xe0\xb1\x56\x92\x2f\x7d\x4a\xe1\x0f\x39\x74\xf5\x2f\x02\xf8\xab\x00\xfe\xc6\x81\x8d\x2b\xeb\x12\x7a\x45\x42\xaf\x49\xe8\x27\xe2\x83\x0f\x44\xd2\xa5\xef\x73\xe8\xd6\x1f\x65\x92\x40\x74\xfd\xfb\x32\x49\x56\x76\x49\x20\xb8\x2e\x4a\xdd\xfa\xb3\x00\x2e\x88\xda\xff\x2e\x52\xde\x93\x98\x65\x9d\xa2\xa6\x9b\xaf\x8a\x42\x92\x02\x51\xe6\xc6\x6f\xe4\x67\xe7\x24\xf4\x4b\x09\xa9\xdc\x5f\x49\xe8\x4d\x09\x49\x9a\xaf\xfc\x5c\x60\x12\x54\xdc\x14\x4d\xbc\x7a\x51\xa4\x7c\xcc\x81\xdb\x3f\xe6\xc0\x9d\x73\x2f\x4b\x48\x54\x75\x5b\xf4\xd6\x0d\x8a\x86\x72\x06\x0a\x51\x81\xe3\x1c\x25\xdb\xa7\x83\x45\x08\xea\xd2\xc1\xfa\x11\x87\x36\x2e\xfd\x44\x42\xaf\x71\xe8\xc6\xdb\x22\xe9\x83\x0f\x39\x74\xe7\xdc\x2b\x12\x5a\x97\x90\xf8\x74\x73\x9d\xb0\xee\x67\x68\xc5\xaf\x70\xe8\xf6\xcb\x1c\xb8\x73\xee\x35\x09\xfd\x9c\x43\x9b\xeb\xa4\x93\x02\xfa\xc1\xab\x1c\xba\xfe\x13\x0e\x6c\x5c\xfa\xb9\x48\x12\xc0\xad\x57\x04\xb0\x2e\x0b\xfd\x52\x42\xe7\x44\xf1\xd7\x64\xd2\xaf\x38\x74\xfb\xfb\x02\xf8\x90\x03\x77\xce\x89\x0f\xef\x9c\xff\x9d\x84\x9e\xe3\xd0\xe6\x3a\x91\x78\x43\x4a\xd8\x3a\x87\xae\xfe\x8a\x03\xd7\x7f\xc9\x81\x8d\x4b\x6f\x8b\xa4\x73\x32\xe9\x37\x22\xe9\x37\x32\xe9\x77\x12\x7a\x53\x42\xef\x72\xe8\xd6\xcf\x45\x79\x51\xfd\xad\x8f\x39\x70\xe7\xfc\xbb\x12\x7a\x41\x7c\x78\x59\x20\xdf\x5c\x27\x95\x61\x4a\xe2\x8f\x39\xb4\x71\xe9\x3d\x01\x5d\x7e\x8d\x43\xd7\xdf\x96\x99\x7f\xe4\xd0\xad\x5f\x8a\xbc\x37\x65\xde\x05\x09\xfd\x59\x64\xfe\x8e\x03\x37\xc4\x77\xff\xef\x25\x0e\x6c\x5e\xf8\x2d\x87\xee\x9c\xff\xb6\x80\x5e\x27\xd4\x62\x26\x6c\x11\x49\xbd\x47\x49\xfb\x09\x87\xae\x5e\x12\xc0\x65\x01\x5c\xe1\xc0\xf5\x77\x39\xb0\x71\x49\x14\xba\xfe\x9e\x4c\x92\xa5\xfe\x28\xbe\xfb\x27\x07\x6e\xbe\x2e\x80\x9f\x09\xe0\xa7\x02\xf8\x85\xf8\xfe\xca\xef\xc4\xf7\x7f\x16\xc0\x05\x51\xe8\xc7\x1c\xb8\x25\x88\xbc\xf5\x1a\x07\x6e\xbc\x2f\xbf\x97\x94\x5c\x91\x64\x5e\xf9\xb3\x84\xfe\x28\xa1\x0b\x12\x7a\x5b\xd2\xfe\x57\x81\xf2\xaf\x32\xe9\x1f\x12\xfa\x80\x43\xff\xef\x3b\x1c\xd8\x5c\x27\x5f\xae\xd0\x6e\xfb\x29\x87\x36\x2e\x7d\x28\xa1\x8f\x39\xf4\xff\x5e\xe6\xc0\x9d\x73\xbf\x12\x49\xdf\x93\x49\x64\xda\xad\x30\x0d\x82\x0c\xd2\x19\x5a\xdd\x6b\x1c\xda\xb8\xfc\x4d\x09\x3d\xc7\xa1\xeb\x1f\xc8\xa4\x6f\x4b\xe8\x05\x09\xfd\x4c\x42\xdf\xe1\xd0\xe6\x85\xbf\x0a\x68\x9d\xf4\xee\x59\x8a\xe2\x67\x1c\xda\xb8\xfc\xb2\x84\xbe\xcf\xa1\xcd\x75\x22\x7b\xac\xd2\x72\x3f\xe7\xd0\xc6\x95\xbf\x72\xe8\xea\x87\x1c\xb8\xfe\x0f\x99\x77\x89\x43\xb7\x44\xa1\x8d\xcb\x3f\x14\xc5\x3f\x96\xa5\x64\xf9\xcb\xaa\xd6\x0f\x38\x74\xe3\x6f\x1c\xb8\xfd\x43\x99\x27\xbe\xdc\x5c\x27\x63\xf9\x2c\xa5\xe7\x17\x1c\xba\x7e\x99\x03\x1b\x97\x5f\x11\x49\xff\x14\xc0\x47\x32\x6f\x5d\x42\x3f\xe1\xd0\x8d\xbf\x73\xe0\xd6\xdb\x1c\xb8\xfd\x0d\x0e\x6c\x5e\xf8\x03\x87\xee\x9c\x7b\x93\x43\x9f\x90\x0d\xf8\x93\x57\x08\x44\x96\xd3\x27\x3f\x21\x10\xe9\xda\x4f\x5e\x23\x10\x91\xc3\x3e\xf9\x39\x81\x7e\x2f\x21\x32\xb8\x9f\xfc\x8a\x40\x64\xf7\xff\xe4\x6d\x02\xbd\x27\x21\xd2\xbc\x4f\xde\x25\x10\x41\xf6\xc9\x05\x02\x91\x69\xf9\xc9\x07\x04\x22\xd2\xe6\x27\xff\x20\x10\x99\xb4\x9f\x5c\x32\xa0\xf1\xbf\xdf\x15\xd0\x27\x3f\x92\x69\x14\xc7\xc7\x04\x22\x83\xf6\xbf\x2f\x10\xe8\x65\x01\x7d\xf2\xbe\x4c\x23\x94\xfe\xef\x77\x08\x44\xa4\xa4\xff\x7d\xce\x18\x4c\xa4\x3d\xc9\x6f\x18\x25\x16\xad\xd1\x44\xa0\x14\x20\xea\xe4\x6c\x4e\xd5\xfe\xe7\xe9\x5e\xb9\x5c\x2e\x17\xc9\x9f\x3d\x87\xeb\x53\xcb\x30\xc5\xab\x36\xac\xa1\x7a\xbf\x8f\xd2\x9c\x32\x03\x14\xfa\xee\x0a\x0a\xa6\x5a\xc8\xc6\xbd\x00\x85\x06\xac\xd5\x75\x07\xd3\xec\x2f\xc4\x6d\xd9\xc4\x03\xd2\xb2\x84\x00\xc2\x29\xea\x3e\xed\x34\x86\x3f\x1e\xbd\x65\xf7\xaa\xcc\x0f\xe4\x1d\x8d\x35\xf5\xee\x78\x35\x5f\x86\xe9\xee\xc4\x58\x78\x58\x0c\x06\x20\xbb\xb9\x02\xf8\xcf\x6b\xb1\x6c\xcc\x54\xc3\xf7\xb0\xed\x78\x28\x28\x36\xd1\x52\x6f\xb9\x68\x37\xed\x2e\xde\x6a\x97\x4c\x89\xb0\xe2\x63\xbf\x23\xae\xfc\x3e\x71\x89\x3a\x66\x9b\x1e\x3a\x93\x3b\x89\x96\x0f\x9f\xed\x9a\xc6\xff\x4c\xcd\x1b\x93\xc1\xa4\x31\x65\x96\x26\xc1\x94\x31\x89\x26\x8d\x2f\x70\x1f\x4a\xaf\xe7\xba\x79\xcb\x52\x7e\xbb\xb5\x4a\xfd\x6e\xbc\xf8\x84\xb3\x36\xf3\x73\x3a\x28\x7a\xe1\x10\xe9\x84\x03\xac\x0f\x4a\xe8\x2c\x46\x5e\xd3\x5c\x5b\x64\x6e\xfd\x27\x69\xb8\xee\x60\xb5\x4a\xaf\x6e\x38\x9e\x13\x19\x07\xea\xb0\xbd\x18\xf6\xba\x28\x28\xd9\xdd\xae\xbb\x6a\x92\x14\x28\x1d\xc1\x00\x64\x25\xa2\x75\xf5\xfb\x66\x5a\xb2\x45\x7a\x03\x97\x8e\x45\x12\xc1\x00\x36\x6c\xef\xa0\x8d\x6d\xd7\x5f\x3e\xec\xe1\xc0\x41\xe1\x43\xab\x0b\xab\x5d\x54\x4d\x72\x08\xa3\xe3\x37\x91\x6b\x58\x96\x85\xfa\xfd\x91\xb4\x91\x9a\x47\x54\x2b\x1c\xd3\xb0\x95\x46\x70\x49\xdd\x7c\x08\x4d\x00\x3d\xe5\xed\x06\x1d\xf6\x81\x47\xb2\xba\x76\x03\xf1\xa2\x27\x02\xd4\x72\xce\x42\xdf\x2a\x43\xdb\xc2\xf2\xc9\xe3\xfd\xb6\xf2\x55\x0e\x2d\xcc\x5d\x92\x8b\x95\xbc\x65\x85\xd2\xab\x0a\x01\xe1\xb9\x4b\x26\x53\x08\x63\x08\xba\x7e\xf3\x98\x86\xa3\xdf\x77\xc0\x44\xaf\xdf\x37\x7b\x56\x58\x0a\xbb\xae\x83\x4d\x34\x69\x84\x53\x06\x28\x75\xfd\xae\x09\x00\xf4\x4a\x76\xb3\xc9\x5f\xd8\xee\x01\xf9\x96\xb4\xb7\xc5\xb5\x34\x9a\x7d\xf2\xab\x09\xa4\x7c\xb1\x65\x37\xb0\x1f\xac\x66\x15\xea\xd8\xa7\x51\xb1\xe9\xd0\xfe\xb7\x83\xd5\xd8\xe2\x22\xeb\x67\xbb\xf7\x15\xa2\xb3\x8b\xdf\xbf\x83\xea\xb6\x05\x0b\x93\xfe\xf5\xb0\x84\xd8\xa4\x28\x14\xcc\x44\x9a\x56\x6a\x11\xd9\xa7\x17\x43\x84\x3c\xc0\x9f\x83\x4e\x60\xd0\x56\x8b\xe6\x62\x89\xc1\x9a\x99\xf2\x06\xba\x7a\x75\xdb\x6f\xe5\x30\x00\xa9\x8f\x78\x1f\xb4\x3d\xcf\xc7\xb9\x86\xed\xba\x39\x3b\x47\xfb\x35\x67\x87\x39\x5b\xfa\xb5\x1a\x60\x00\xd8\x64\x47\x62\x01\x0a\xca\x71\xbf\x9f\x68\xce\x40\x7a\x3b\xab\x67\xd4\xb5\x99\x9d\xf4\xa5\xe5\xef\xb2\x97\x4e\xa3\xd5\xd0\x8c\xd4\x4f\xfd\xfc\x54\x2d\x6d\x3b\x4c\xbb\x1d\x43\x5a\x99\x8b\x7c\x17\xfd\x6c\x19\xa5\x5e\xaa\xe1\x84\x9b\x88\x60\x19\x70\x97\x52\xf1\x38\x3e\x27\x49\x70\x2f\x3e\xaf\x8e\xe3\x36\x0a\xaa\x71\xaf\x4b\x7e\xd1\xa4\xe5\x78\x7c\xc9\x90\x76\x9a\x88\xb2\x5a\xc5\xa2\x19\x7d\x67\x71\x60\x37\xf0\x21\xc6\x38\x0f\xd3\x29\x6e\x06\x90\x95\x95\xb3\xc6\xd3\x06\x8a\x0f\x52\xee\xf0\xd9\x2e\x75\xdd\xcc\x61\x3f\x47\x30\x55\x73\x5f\x34\x26\x51\xa9\xd5\x73\x5d\x82\x6e\xd2\xf8\x62\xee\x8c\x83\xdb\x8e\x47\xd2\x03\xf2\x73\xa9\x87\x73\xcb\x3e\xce\x7d\x51\xde\x5d\xfa\x62\x29\x77\xc8\x69\xe6\x56\xfd\x5e\xae\xe5\x07\xcb\x88\x3e\xd8\xfe\x45\xb6\xd0\x72\x9c\x99\xc7\xab\x99\x37\xa4\xef\x27\x6d\x42\xd8\xf6\x7b\x6e\xf3\xc9\xc0\xee\x1e\x65\x31\xb1\x8f\xb0\x25\x68\x7a\x90\xbe\x5e\xef\x59\x66\x19\xca\x8d\x14\x98\x1e\x61\x0d\x83\x01\xec\xda\x41\xc8\x2e\x75\xc5\x5e\xf6\xcf\x93\x16\xa3\x12\xcd\x6f\x92\x02\xf2\x69\x7f\x7e\x8d\x95\xaf\xa9\x40\x00\x9e\x00\xa8\x47\x2b\x65\x45\xc6\x83\xcc\x13\x7a\xda\xb2\x2c\xf1\xf2\xbb\xb8\x60\xe2\xd4\xca\x75\x51\xac\xaa\x8a\xf9\xa2\x18\xf5\x7d\xad\x55\xea\xfc\xf7\xbc\x19\x58\x7e\xad\x5c\x87\x9e\x65\x3c\x68\x4c\x3a\xb5\x4a\x1d\x54\x4d\x4c\x8b\x40\x99\x45\x93\x27\xe8\x05\x04\x7e\x21\x84\xd4\xa0\x61\xc1\x14\x2f\x0c\x2c\x9b\x7d\x60\x93\x2d\xd6\x10\x77\xd7\xc8\x96\x12\x14\x0a\x04\x35\x2e\xb9\x76\xc8\x1c\xdb\x8f\xb7\x4c\x43\xbb\xd3\x66\xc0\x32\xeb\xd0\x48\xe2\xa4\x07\xb1\x85\x4b\xa1\xeb\x34\x90\x59\xa9\x08\xef\xe1\xc0\x32\xb5\xee\xa8\x1a\x00\x28\x42\xb9\x13\xab\x07\x75\x7f\x69\xba\x9e\x0d\xc9\xef\xe5\x28\xaf\xa9\x81\x20\x82\x92\x98\x5f\x55\x04\xbb\x74\x23\xa8\x62\xbe\x15\xb2\x9f\xe6\x1a\x59\x62\xd5\x60\x00\x20\x03\xe4\x17\x4f\x3a\xb8\xed\xf7\xa8\x7b\x6e\x35\x84\x04\x51\xd5\x83\x81\xef\xe3\x6a\x0f\xf2\xe5\x74\x0c\xe1\xb6\xcf\x50\x19\x3c\xc9\x98\x64\x24\x9e\xc2\x81\xe3\x2d\x97\xd8\xae\xd0\x5a\x35\x03\x40\xe6\x90\xdb\x0b\x68\x10\xc3\x26\xa9\x35\x64\x32\x44\x9a\x5c\x41\xf8\xfe\x82\xcf\xea\x48\xbf\x90\x35\x64\x3b\x9d\x24\xe3\x8e\x27\x8d\xaa\x31\x80\x59\xb3\x3d\x29\x3c\xe6\x2b\x83\x61\xe2\x8c\xc9\x39\x27\x43\xf4\x90\x1d\xa2\xe6\x49\xbe\x57\x59\xf9\xf2\x96\xc5\x1a\x4f\x30\x62\xcf\x0f\x3a\xb4\x4b\x0e\xda\x8d\x36\x22\x6b\x2f\x50\x6b\x8f\x17\x8a\x75\x9b\x95\x96\xd8\xef\x8f\xf3\x29\xd1\xb5\x5a\xce\xb2\xa0\x2c\x3d\x97\xcc\x57\xf2\xd7\x10\x34\x36\x51\x37\x40\x0d\x1b\xa3\xe6\x89\xa8\x50\x61\x91\x4e\x93\x2d\x48\x11\xc0\x72\x69\x8d\xa4\x5a\x9b\x99\x91\x63\xc5\xd2\x89\x98\x33\x10\xf3\x2d\xc1\xb9\xb9\x1c\x26\x79\x13\xbd\x4a\x66\xe1\x52\x62\x7e\x4a\xa6\xc3\x57\x89\x21\xf7\x46\xcb\x22\xf3\x9e\x6c\xaf\x6d\x27\xac\x05\x75\xba\x62\x39\x6c\x62\xc2\xfc\x7a\xae\x6b\x59\x9e\x4c\x2f\xe9\x7b\x09\x2b\x31\x80\x8b\xe9\xbd\x20\x7c\xfa\x35\xc6\x22\x55\x15\x7e\x7d\xa2\x32\x6f\xb4\x91\xdb\x45\x01\xe1\x29\xb8\x56\xae\xcf\x93\x7f\xc8\xec\x9d\xc4\x84\x27\x49\x9d\x78\x71\x6a\x19\x1a\x45\x03\x54\x65\x7e\x64\xa5\x35\xed\xb0\x8d\x02\xd2\x63\xd1\xcf\x9e\x2e\x91\xef\xa6\x0c\x00\xaa\x48\x5b\x81\x99\x83\x15\x9b\x13\xda\x60\x25\x73\x2c\x22\x42\x1a\x60\x00\xbb\x7e\x93\x2e\x89\x47\x7d\xff\x74\xaf\x4b\x38\x07\x9b\x20\xb1\xb5\xcb\x37\xdb\x52\x0a\x8b\x11\xe3\xa2\x73\x58\x5c\x22\x43\x43\x24\x2e\x2b\x50\x0d\xfa\x1f\xc5\x4d\x9f\x9e\x9a\x82\x86\x01\x00\x44\x93\xc6\x14\x53\x96\x8c\x49\xf6\x95\xa2\x49\x6d\xe9\x59\xd3\x67\x88\xd0\x3c\x84\xcd\x44\x76\xd5\xac\x0e\x30\x31\x44\x5a\xff\xc8\x20\x0a\xe1\x51\xef\x54\x6f\xa9\xe9\x24\x85\x91\xed\xd1\xe4\xb4\x4c\x3c\x69\x19\xda\xd5\x6a\x43\xbf\x53\x4e\x77\x6a\xd2\x3d\xfd\xbe\xde\x8f\x53\x25\x8c\x42\x6c\xa2\xb4\x81\x91\x37\x49\xc6\x69\x27\x5f\x1a\x87\xbd\x65\xc7\x4b\x5f\x09\x29\x18\x26\x8d\x29\x44\x3f\x30\x28\xf9\x69\x8a\x55\xdb\x0e\xc9\x4a\x8b\x30\x95\x54\x51\x0c\x2b\x22\x4e\xfa\x3d\x8c\x8e\xd9\xdd\x71\xc9\x20\x8c\x63\xd2\x98\x0a\xc8\x67\xe1\x70\x52\x02\x30\x8e\x54\x28\xd7\x3a\x11\x9f\x38\x51\x0b\x7c\x7a\x67\x0d\x7b\x84\xb7\x20\x55\x03\xe5\x41\xb8\x50\x30\x85\xb2\xbe\x70\xf8\xd8\x89\x47\x0f\x2c\x1c\x3e\x55\x4b\x6d\x4c\x1d\x40\x3c\x80\x1d\xdb\xf1\x32\xa6\xbf\xd3\x32\x0d\x92\xcd\xa6\x44\xda\xb8\x6b\x5a\x00\xdb\x55\xa7\x88\xbc\xca\xd6\x96\xb8\x10\x94\x5e\x77\xda\x97\x51\x0e\x62\xb2\x8a\x00\xaf\x34\x05\xfd\x40\x88\x2b\x23\xd7\x47\xe6\x9a\x94\x45\x6a\x0c\xdb\xa4\xc1\x0a\x19\x75\xda\x8f\x23\xca\xb0\x0e\x94\x0d\x64\x13\xfe\x84\x8d\x31\x0a\xbc\xb0\x1a\xbb\xc9\x9e\x90\x26\x6a\x91\xd5\xa2\xfa\x09\x46\xd2\x93\xec\x80\x0b\x19\x91\x71\x63\x69\x89\x2e\xaf\x0f\x40\x29\x40\x76\xf3\xb8\xe7\xae\x9a\x00\x46\xb5\x97\x18\xe3\x15\x76\x0b\x75\xa5\xde\x34\xb2\xda\x46\xef\xd4\x4b\x09\xbd\x0c\x7d\x2b\x10\x86\x09\x67\xbf\xaf\xae\x7e\xdb\x56\x50\x73\xea\x25\xa2\x76\x0a\xe5\x92\x2c\x1a\xbb\x50\x30\x6d\x86\x86\xbd\xb1\xad\xa9\x54\x36\x44\x00\x40\xbb\x50\xc8\x5c\x59\x36\x93\x98\x6d\x00\x85\x98\xba\xe8\xfa\xcb\x8c\x40\xa2\xa1\x40\x1b\x40\x65\xf6\x1a\x0c\x60\x1c\x47\xea\x8e\x13\xd9\x28\x89\x36\x15\x84\x0d\x3f\x10\x2a\x1e\xca\x53\x61\x3e\x93\x26\xa2\x16\x0d\x63\x05\xa9\x4a\xf9\x81\xce\x92\xb3\xdc\xf3\x7b\x61\x8e\x7d\x94\xa3\x33\x8d\x29\x7d\x44\xb9\xb3\xbd\xa6\xd0\xd0\x98\x4e\x33\x04\xbd\x52\xa8\x46\x30\x25\xa1\x18\x4b\xdb\x83\x92\x02\xa6\x8a\x66\xed\x7f\x9e\x9e\xaa\x7f\x09\x7c\x61\x0a\x1a\x53\x8b\x5f\xa8\xc4\xf4\xc2\xb4\x2a\x3d\x30\x2f\xef\x4e\x43\x97\x0e\x02\x7b\x90\x91\xdd\xaa\x1e\x43\x1a\x8b\xa0\x88\x29\xd8\x18\xe6\xcb\x60\x00\xd5\x00\x57\xe3\xc6\x1d\xa7\xc5\x2f\x68\x1e\x7e\xec\x89\xd2\xa3\xc7\x1f\x5e\x3c\x76\xfc\xd0\xe3\x8f\x1e\x5e\x3c\x79\xf8\xd4\xf1\x47\x9f\x38\x7c\xb2\xdf\xc7\x25\xa2\x91\xd0\x3c\x91\x28\x58\xb3\x52\x32\xe7\x8d\xda\xe6\xeb\xeb\x75\xa3\x6a\xd4\x72\x75\x63\xc2\xd3\x24\x10\x21\x85\xed\x2e\xcf\x1b\x25\xa3\x4a\x06\xf1\x40\x10\xd8\xab\xe6\xee\x72\x31\x51\x0a\x94\xbe\xee\x3b\x9e\x69\x94\x0c\x00\x83\x7e\xdf\xe4\xab\x29\xd1\x31\x54\x28\x6c\xf8\x5e\xe8\xbb\xa8\x50\xe0\x40\xc9\xf1\x5a\x7e\xf4\x97\xe9\x40\x85\x03\x7a\x90\xea\x48\xa7\x3d\xff\x8c\x77\xc4\x0f\xb6\x6b\x7b\x8c\xab\x03\x6c\x29\xe3\x8c\xa5\x8c\x6b\x4e\x1d\x72\xcd\x02\x07\xb6\x17\x92\x4d\x6a\xc1\x97\x26\xe1\x23\x3d\xd7\xf5\xe8\x90\x42\x1b\x4c\x84\x64\x91\xd6\xc2\xba\x45\x06\x50\x2e\x46\x38\xec\xc3\x74\x49\x30\xa1\x87\xa2\x01\x8d\xe8\x41\xf6\x05\xe8\x58\x74\x77\xa0\x54\x0b\xa3\xa7\x07\xa8\xa1\x54\xfc\x74\xe8\xd2\xa1\x16\x80\x42\xc1\x66\xda\x38\x6d\x5f\x51\x58\x11\x0a\x05\x29\x69\x7b\x1c\x98\x94\x16\x06\xb1\xae\x98\xb4\xcd\x75\x72\x7f\x52\x14\x24\x4d\x65\xaa\x77\x90\xba\x87\xd1\xed\x4b\xcc\x70\x66\x0b\x10\x84\x85\x40\x43\x2c\xae\x4a\xcf\x47\x11\x89\x64\x20\x97\x58\xaa\x20\x91\xb2\xcc\xa4\xe5\x8b\x05\x50\xa2\xff\xe4\xcb\x6a\xb1\x11\xdc\x7c\xe8\xd9\x56\x27\x27\x02\xc4\x83\x01\x98\x70\x4a\x01\xf2\xbb\x88\x69\xc4\xe6\x5a\x8a\x4e\x1b\x3f\x21\x70\xb2\x4d\xc0\xa9\xe6\xdc\x4f\x3f\xc6\xce\x5a\x23\x40\x11\xc1\x4a\xda\x0a\x52\x74\x3d\xc4\x0d\x83\xf3\x02\x30\x31\x51\x8f\x06\x43\x0e\x12\xd3\x0d\xd2\x9f\x5e\x43\xd9\xd8\x23\x8b\xd7\xc5\x5a\x4b\x4f\x82\x80\x0a\x4f\xb1\x48\x48\xb3\xe8\x7c\x68\x22\x17\x61\x24\xd2\x20\x4a\x6d\x5a\xd7\xf7\x42\x67\x05\x4d\x31\x0d\x34\x9c\xea\xa0\xa6\x63\xdf\xa3\x46\x71\x6b\x60\xd2\x7a\x9c\xb0\x7b\x53\x0e\x5c\x72\x42\xc6\x89\x63\xfb\xdf\x29\x1a\xe4\xae\xe4\x60\x14\xd8\xd8\x0f\x72\x8e\x30\x3f\x6b\x05\xd3\x78\x4d\xad\x0e\x3d\x2b\x4f\xf6\x83\x7c\x05\xfa\xc2\x1a\x80\x83\x55\x15\x8b\x03\x86\x16\xaa\xc5\xea\xaf\x9b\x60\x2e\x6f\x7a\x96\x69\x5b\x61\xc9\x43\x67\xb1\x09\x40\xa9\xe9\x7b\x88\x05\xfc\xa0\xf7\xfc\xed\x12\x6d\x25\x80\x79\xdc\xef\x0b\x61\x29\x6f\x59\x18\xcc\x11\x94\x60\x6e\xd0\xa0\xa7\x7b\x3d\xb0\xe6\x10\x12\x7c\xab\x37\x68\x39\x9e\xed\xba\xab\x6b\x84\x80\xbc\x57\x28\x10\xd1\x9f\xd0\xae\x20\x13\xc8\x42\x0e\xe1\x74\x4c\xcc\xf0\xe5\xc1\x4c\x30\xa0\xcd\x9b\x48\x15\x3f\xf8\x23\xc9\x39\x22\xd3\x75\xba\xd4\x4e\xdc\x44\x21\x0e\x7a\x0d\xdc\x0b\x50\xce\xf3\xbd\x22\x6d\xe1\x92\xab\x8e\x18\x0c\x30\x18\x98\x7a\xb4\x2d\x1e\x7f\x90\xce\x0d\x69\x49\x8f\xdb\xc8\xd8\xac\x24\xac\x71\x62\xcc\xd3\x3f\x26\x7d\xd2\x99\x06\x4a\xbe\xc7\xe1\x83\x6d\xdb\x5b\x46\x4d\x43\x3f\xa4\x27\x02\x0c\x97\xb1\x4d\x30\x00\x03\x48\x4b\x72\xe1\xdb\xf1\xe8\xfc\x0b\x51\xb0\x42\xb8\x29\xd9\x71\x69\xc9\x34\xf3\xbe\x89\x60\x05\xd4\xca\xf5\x89\x48\x20\x2a\x65\x46\xa5\xf5\x96\x8c\xc9\x80\x86\x78\x02\x13\x99\x0b\x85\xbf\xee\xec\x3c\x4b\x56\x8b\x4a\xbf\xab\x28\x4f\xa4\x75\xec\xed\x63\x1e\x73\x83\xef\xfa\xa6\xb1\x14\x20\xfb\x74\xd7\x77\xa8\xfa\xbe\xc6\xc6\x07\x3b\x84\xbb\xe5\x2b\x03\x70\x57\xf1\x5a\x24\xdd\x34\x64\x8b\x18\xe1\x35\x4f\x8b\xd2\xa6\x9a\x53\x8c\x10\xa0\xbe\xad\xe2\xa1\x5c\x84\xf0\x1d\x16\x61\xac\x78\x2f\x19\x49\x3a\x77\xe4\xbb\x00\x7f\x4f\x8e\x74\xd4\x50\x5a\xf9\xb4\x49\x61\x79\x70\x8c\x86\xed\xa8\xf7\xc3\x04\x9b\xa4\x29\xdb\x14\xe3\x45\x85\x02\x8f\xec\x19\xcf\x90\x4c\x6a\x3e\xcd\x98\xc7\x77\xba\x41\xaa\x6a\x5e\x28\x0c\x41\x87\x4a\x44\x4a\xa5\xcc\xc2\x0f\x2c\xcb\x92\xe9\x79\x01\xab\xc3\xb9\x79\x41\x5b\x55\x22\x4c\x70\x90\x53\xac\xaf\x05\x0b\xe1\x22\xfd\x0a\xf2\x30\x6a\xc2\xb5\xc5\x8e\xdf\x38\x8d\x9a\x7c\x55\x63\xfa\x9a\xfa\x32\xe4\xa9\x0f\xc9\x89\x58\x35\x9a\x28\x3c\x8d\xfd\xae\x01\xc5\x18\x8f\x52\xc2\x73\xe2\xfc\x5d\xb1\x1d\x5e\xad\x01\xe6\x6b\x89\x44\x85\xcb\x00\xf5\x6a\xad\x0e\x06\x00\xba\x64\x7d\x7a\x28\x08\xab\x6b\x03\x8e\x97\xc3\xcf\xb8\x3a\x17\x74\x5a\xa6\xc1\xa2\xd1\x18\x96\x65\x99\x86\x0a\x37\x28\x7b\xf7\x8c\xe3\x35\xfd\x33\xf3\x5a\x56\x35\x30\x59\x22\x00\x85\x02\x83\x98\x1f\xc8\x31\x32\xc9\xc4\x66\x96\xc8\x98\x48\x78\xbb\x10\xf1\x7e\x1b\x6c\x59\xc5\xb9\x39\x7e\xc6\x43\x01\xcd\x06\x91\x18\xb4\xd1\x2c\xae\xf1\x44\xf8\x54\x95\x1a\x93\xc0\x04\x2e\x14\x22\xa7\xc1\xa0\xd4\xf2\x83\xc3\x76\xa3\xad\x86\x47\x1e\xa9\x1a\x4e\x98\x7d\x5c\xc4\x89\x4a\xac\x22\x0f\xc6\xa3\x08\xf2\xe9\x50\xaa\xd5\x23\x9b\x87\xae\x79\xb2\x2d\x87\x95\x33\x54\x60\x9a\x00\x3c\x50\xac\x0c\x00\x80\x19\xb8\x82\x38\x2e\x6f\x18\x02\x0f\x90\xaa\x10\x77\xe5\x09\x20\xae\x05\x75\xba\x6b\xd1\x56\x51\xcd\x2c\x3e\x65\xef\x82\xf6\x8e\xdd\x35\xd3\x3c\x5d\xc8\xcc\x28\x66\x9e\x09\x20\x30\x10\xda\x6b\xce\x20\x13\x5b\x3c\x91\x7d\x4c\xdb\x7b\x13\x47\x5f\xbc\x4c\x7c\x87\x5e\x23\x8d\x12\x15\xd0\x75\xac\x7f\xc9\x28\x08\x7a\x5e\xc9\xf7\x1a\x88\xcd\x35\x36\x05\x53\x50\x02\xbe\xaa\x32\xd5\x43\x1a\xd2\x29\x65\xfd\x46\x0c\xb0\xac\x8b\x9e\x71\x0d\x60\x62\xa2\xe9\x46\x74\x00\x96\xeb\x84\x87\x88\xfc\xe3\xaf\x92\x8f\x89\xee\x5e\x0a\x55\xbf\x06\x61\x89\x28\x9a\x44\x3d\x2a\xf1\x9e\x9e\x0f\xe2\x1d\xaf\xbc\x63\x10\xa8\x26\x72\x03\xd4\xf1\x57\x90\x2c\x00\x83\x52\xa4\x83\x4c\x00\x06\x13\x8a\x56\xc9\x56\x0c\x50\x43\x75\xcb\x61\xce\x37\x8f\xf2\xd4\x42\x21\xf2\x33\x32\xdc\xb2\x77\x4d\xe6\x80\x05\xc9\xc8\x42\x87\x4c\xbe\x34\x47\x1d\xc2\x4e\x8b\x67\x6c\xb2\x51\x84\x53\xf4\xbd\x77\xfe\x2b\x6d\xc7\xd3\x0b\xa7\x26\x4e\x79\xbe\xdf\xd5\x53\xee\x81\x43\x4e\x9a\x86\x27\xc3\x22\x12\x29\x57\x5a\x35\xc8\xa4\x1e\xde\xe0\x4c\x5f\xa4\x48\x29\xf6\xb7\xd8\xb1\x3d\x9b\xc6\xf8\x4e\x2b\xa3\xb7\x39\xb5\x40\xb4\x6f\xb3\xd0\x14\x5b\x7e\x50\xec\x06\x7e\xc7\xa1\x0f\xf5\x45\xfb\x8e\x45\x59\xbb\x47\x8e\x94\x42\xd4\x1c\xdb\x93\x52\x7c\x30\x18\x56\x6b\xcf\xdb\x72\xbd\xea\x93\xa1\x35\x2f\x23\xfc\xa4\x98\x89\x63\xd6\xac\x3e\x19\x5a\xf3\x62\x80\x42\x34\xbe\x47\x29\x2b\x3e\x8a\xd6\x13\xc8\x6b\x3a\xde\x32\xc3\x7f\x0a\xdb\x18\x6d\x85\xec\xe4\xd7\x43\xf1\xb5\xed\x30\xf2\xc5\xf8\x5d\x94\xf8\x72\x28\x9e\x05\x14\xf2\x1e\x1d\x13\x41\xa0\xf9\xdf\x66\x57\x4b\x97\xca\x96\xea\xf5\xc6\xaa\x97\x2c\xb0\x23\x7e\x70\x82\x2f\xaf\xf1\xaa\x76\x86\xb9\x0c\x0f\xe7\x7d\x5b\xd7\xf9\xa2\x47\x31\xe5\xb9\x60\xbf\xb4\xc7\x06\xc2\x16\xeb\x59\x44\x6e\x98\xf0\x4a\x8a\x7a\x4b\xff\xd1\xef\xe7\x2b\xd0\xe3\xae\x1a\x3d\x96\x9f\x2f\x8b\x97\x3a\x1d\x2f\x47\x3d\x15\x4a\x67\x02\x07\xf3\xbc\xec\x2e\xf3\x88\x90\x06\xc9\xd6\xb1\x33\x4f\x16\x04\x9f\x0f\xef\x46\xa2\xd4\x5a\x78\x40\x29\x22\x4c\x55\xec\x1e\x81\x85\xa0\xe9\x59\xb5\xb5\xd3\x68\xb5\x6a\x2c\xa1\x65\xc7\x3b\x10\xae\x7a\x0d\x03\xb2\x86\xa5\x0b\x60\x83\x01\x64\x1f\x20\xaf\x99\x55\x5c\x96\x21\x53\xe3\x71\x0f\x3b\x6e\x66\x9d\xf9\xb2\x2c\x4c\x9d\xcd\x8f\x7a\x2d\x3f\xb3\x70\xad\x3e\x18\xd4\x41\xa1\x80\xcd\x40\xa9\x5c\xd0\x03\xd0\xa1\x69\xd0\x01\xcc\xf3\x51\x8d\x46\x30\x7c\x12\x67\xcc\xdf\x71\xf6\xc5\xb1\x1d\xdb\x53\x0c\x7b\xe9\x66\x3d\xed\x48\xa3\x0c\x03\x4b\x1d\xbe\xc8\x03\x97\x39\xbc\x5f\xc0\x73\x78\x72\x12\x04\x35\x5c\xb7\x50\x0d\x4b\x43\x4e\x40\xc3\x47\xf7\xfb\x31\x54\xc3\x8c\x84\xfd\xbe\x51\x63\xaa\x5a\xee\x80\x50\x81\xea\x44\x6b\xe3\x6b\x40\xf9\x9d\x62\x5f\xa8\x25\xb6\xeb\x6a\xe6\x45\xd6\x90\x56\xe0\x77\x88\x08\x12\xc5\x4f\x24\xe7\xf1\xec\x71\x61\x37\x40\x76\x33\xd3\x14\x67\x82\x68\x48\xec\x7f\x73\xd6\xe1\x58\xe5\x09\x2d\x3a\xb3\xe2\xcf\x93\x93\x03\x76\x44\x95\xc1\x5a\x88\xcc\xf9\x69\x32\x17\x27\x3c\xc9\xe5\x17\xd4\xb4\xf2\x15\x9e\x88\x51\x27\xa4\x13\xf8\x98\xdd\xd5\x99\x10\x87\xd1\x59\xbc\xe0\x9f\x46\x9e\x15\xf4\xfb\x3e\x6d\x8f\x03\x6d\x18\xca\x28\xf5\x84\x31\xd9\x82\x31\x29\x91\x2a\xc1\x15\x12\x14\xf4\xfb\x26\x75\xd7\x15\xdf\x30\x62\x53\x49\x2d\x03\xc9\x78\x86\xb2\x3e\x66\x39\x48\x84\xf9\x2d\xa7\x86\xf9\x2d\xd7\xe7\xf5\x1f\xd5\x68\x73\x4d\x00\x71\xb2\xa6\x8a\xf6\x49\xa5\xce\x0f\xbf\xe4\xd1\xb6\x68\x89\xf0\x60\xa4\x5d\x2b\x0e\xc2\x13\x6e\xd5\xaa\x25\x74\x10\x51\x33\xd7\xf2\x83\x9c\xba\x53\x06\x0d\xea\x46\xed\xe0\x9c\x13\xe6\x6c\x97\xac\xb8\xd5\x5c\x97\x89\x40\x25\x03\x08\xdb\x9b\xac\x31\x72\x5e\xcd\x50\x87\x34\xba\xfe\xda\x32\xc2\xb9\x10\xdb\x8d\xd3\xba\xb8\x43\x13\x06\xd0\xb5\x97\x90\x5b\xc5\x64\x6e\x8f\xde\x2d\xb8\xd7\xf4\x18\x8d\x13\x55\x8c\xd1\x34\x3a\x8b\xd9\xd3\x91\x6e\xb4\x81\x1a\x1e\x76\x24\x44\xd5\xa6\xb1\xb7\x2b\x76\xae\xa9\xf5\x86\xf3\x2c\xda\xc2\x06\x96\x63\x26\x23\xfe\x31\x2d\x14\x12\x5d\x98\xee\x6a\x9e\xe9\x68\xbb\x9a\x0d\x60\x48\xd3\x60\x98\xd8\xd5\xec\x11\xbb\xda\x6a\x17\x29\x6d\x6f\xf8\x3d\xbf\xe1\x3a\xd9\xa8\x3d\x31\x5b\xf7\xbd\x57\x4f\x67\xb0\x09\x8a\x26\xca\x6a\xcb\x9b\x60\x17\xa3\x84\x1a\x6c\x70\xe2\x05\x5d\x23\xe4\xd8\xb8\xba\x7b\xaf\x6c\xf4\x62\x21\x47\x34\x79\xcc\x96\x13\xe5\x8e\xd4\x63\x10\x69\x0a\x61\xac\xa4\x98\xae\xb4\x30\x2d\xaa\x34\xbc\x94\x63\x44\x64\x61\x39\xc1\xe0\x7d\xd1\x63\x5b\xa2\x07\x65\x8b\x88\x74\x39\x53\x7f\xf5\xee\xc6\x25\xfa\x26\x92\x29\x46\x24\xa9\xbc\xd2\x47\x00\x12\xaa\xa6\xe5\x71\x93\x32\xdf\x26\x75\x99\x51\xec\x3a\x6b\x9c\x73\x55\xcb\x90\x4f\xd7\xea\xda\x60\xa0\x0c\xde\x09\x5b\x32\xdf\xed\x71\x49\x72\x32\x13\x80\x35\x54\xe2\xf5\x4c\x4e\x4e\x08\x9f\x63\xc9\xab\x28\x63\xe1\xb5\xd7\x30\x9d\x5c\x75\xb2\x2f\x13\xc1\x9c\x30\x1e\x4d\xea\xd2\xb8\x18\x10\x55\x3e\x50\x1e\x70\x0f\x4c\x14\xe2\x42\x41\xc1\x72\xc2\xb3\xf6\x26\x8f\x23\xf2\x1e\x3d\xc4\x4c\x2e\xce\xb3\xb8\xd8\x41\x76\xd8\x0b\x50\xa0\xce\xa5\x22\xc9\x9f\xc9\xc3\x73\xb1\x63\x9b\xc4\xc9\xef\x98\xc7\xbd\x0d\xdb\x5b\xb1\x43\xab\xe9\x37\x68\x32\xf7\x5c\x38\xec\xd2\x37\xb0\x4c\x83\x65\x8b\xbb\x06\x0d\x7c\xd6\xd2\xbe\x22\xf3\xeb\xa0\xef\x91\xbe\x30\x8d\xe9\xa6\x01\x06\xf0\x8c\xd3\xc4\xed\x14\x9f\x98\xa4\x98\x91\x2a\xb0\x54\xea\x51\xe9\x83\x3e\x1e\xa3\xfc\x66\x4c\x41\x45\xa9\xe5\x7b\xd8\xc2\x8a\xac\x12\x1f\x8b\x05\x42\x0b\x02\x25\x4a\xc7\x00\xba\x8e\x87\xc2\x54\xeb\x75\x82\xa0\xe9\x54\x82\xa6\x75\x82\xa6\x05\x41\x09\x4a\x02\xf5\x2a\x82\x27\x2f\x14\x4c\x3d\xed\x4d\x01\xe8\x58\xd2\x61\x89\xbd\x7e\xe3\xc9\x8b\xa4\xca\xc1\xcb\xe3\x97\x48\x0d\x83\x60\x57\xfc\x2f\xb4\x6c\x71\x3b\x21\x67\x00\xfe\x5a\x46\x79\xce\xdd\x2f\xc8\x2e\x56\xf4\xe7\x17\x52\x7b\x23\xac\xb9\xf5\x49\xf2\x39\xeb\x94\x39\xb3\x37\x69\x35\xc0\x03\xa4\x3b\x9d\xc9\x49\xd8\xb3\x1a\x60\xc0\x1e\x5c\xc8\xfc\x5c\xff\xb4\xa5\x7f\xda\x52\x37\x51\x9d\x01\x6c\x39\x98\x7c\x72\x2a\x7a\x81\x61\x47\xfa\x1c\xf2\xb3\x04\x4a\x07\x7d\x93\x47\x5c\xda\x15\x63\xc0\x0f\x76\xa6\x9e\x6e\x4e\x4e\xe9\xce\x04\xf4\xc5\x96\x96\xeb\xfb\x81\x49\x5d\x1f\x8f\xb8\xbe\x8d\x4d\x07\x7c\x09\x4f\x11\xfd\x68\xf8\xfb\x65\x38\xe8\xe1\x76\x51\xf8\xdf\x88\xbf\xec\x55\xbd\xa4\x28\x12\x29\xcc\x3c\x92\x58\x5a\xc3\xf7\x56\x50\x80\xb7\xa2\xa4\x6b\xda\x24\x24\x53\x4a\x68\x93\xfb\x3d\xaa\x51\x12\xb6\x5a\xb1\xac\xd8\x6d\x40\x54\x0b\xea\xca\x1f\x87\x68\x9b\x12\x46\x72\xc2\xdc\xd5\x5d\x74\xdb\x6b\xd2\x7d\x23\xd5\xf9\x84\x35\xd9\x0c\x52\xb8\x67\x6a\xff\xa1\x67\x7a\xb6\xbb\x8d\xa7\xb7\x72\xa8\x56\xae\x5b\x96\x85\xee\xf2\x62\x3d\xc5\x1f\xf1\xb4\x48\x6b\x0e\x1e\xb7\x39\xcb\xf8\xde\x6d\x00\xcb\xd8\x0a\xee\xbb\x66\xfd\x6b\xb8\x66\xe9\x0b\x58\x0b\x1e\x61\x22\x38\x4d\xb7\x81\x5a\xb9\x0e\x7d\xcb\xab\x55\x94\x90\x4a\x44\xa6\x06\x7a\xac\x47\x66\x57\xa1\x60\x1a\x1e\x85\x8c\xbc\xf0\x4a\x70\x08\xa7\xb5\x58\xbe\xe9\x00\x00\x13\x25\xfc\x42\xc1\xf4\x45\x09\x1f\x00\x00\x9d\x07\xfc\xc1\x0e\x2d\xd4\x65\x7c\x0f\x1f\x7e\x5e\x26\xa2\xe8\xfd\xb9\x7d\x7f\x6e\x6f\x69\x6e\x5b\x3b\x36\xb9\x9d\xb0\x68\x93\xb9\x74\x57\x1b\x51\x54\x41\x55\xaa\xe8\xfe\x80\xaa\xa3\x62\x7b\xe6\xbe\x90\x62\xd2\xd6\xb0\xdc\x9e\xf3\x95\x09\x79\xe2\x70\x57\x2f\xbc\xd1\x2a\x77\x6e\x13\x73\xc2\x22\x99\x13\xf7\xca\x67\xfa\xfe\x3a\xff\xd7\x58\xe7\xc3\x67\xd3\xd8\xbe\xbb\x4e\x78\x98\x4c\x26\xba\x18\xb7\x30\x01\xb7\x20\x17\xde\xd5\x9a\x39\x4c\x05\xbf\xfb\x9b\xce\xbf\xc8\x64\x8c\x6a\x44\x6a\xc2\x4d\xb3\x77\x85\xcb\xf4\x5d\x61\x6d\xcb\x91\x73\x8f\x0c\xb3\xe9\x41\x07\xec\xd4\x5e\xe1\xde\x43\x11\xdf\xbd\x2f\xe2\xff\x4b\xce\xc8\xcf\x52\x0c\xda\xbf\x63\x52\x90\x7b\x2f\x45\x7c\xf7\xbe\x88\x7f\x7f\x6e\x6f\x79\x6e\xef\x9c\x88\xef\xf9\x78\x4b\x42\x45\xa6\xb1\x29\x7f\xf7\xc6\x26\xcf\xc7\x74\x3f\x62\x4d\xd8\x39\x81\xdd\xf3\xf1\xe7\xc1\x08\x59\x1e\x6a\x84\xdc\xa6\x96\xe3\xf9\x78\xe7\xac\x8e\x7e\xba\x4f\xd5\xe7\xaa\xbf\x76\xd6\x68\xeb\x07\x3b\xd7\x7b\x67\x3f\x85\xee\xe3\xfc\x2f\xd6\x3b\xe5\x3a\xc8\x27\xfb\xac\x52\xbf\xab\x9b\x76\x67\x77\xa2\x4f\xd2\x9a\xf9\xa9\xde\xa9\xe6\x71\x72\xc4\xf9\xe6\x32\xf5\x81\x31\x9c\x70\x81\x90\xb4\xca\x22\x56\x18\x4b\xbe\xef\x22\x5b\x0f\xa1\x25\x23\xf4\xc4\x05\x66\xb1\xe1\xce\x97\xf3\x96\x15\xa9\x53\x3c\xab\x5d\xcd\xe7\x23\x77\x94\x9d\x95\xd5\x62\xc3\x6f\xa2\x8e\x43\xf6\x1d\x2d\xa0\xd1\x54\x34\xe7\xde\xf7\x8b\x88\x8e\xcb\x09\x90\xe7\xa1\xd8\x5e\x66\xa1\xef\x30\x3a\x8b\xed\x00\xd9\x06\x24\x64\x1d\xa3\x64\x65\x5d\x52\x6d\x3a\xcd\xa3\x5e\x88\x02\xcc\x0f\x40\xef\x26\x7a\xae\xc2\xa2\x5d\x7f\x51\x89\x06\xa0\x0e\x02\x0b\xe8\x2c\x3e\x10\x20\x5b\xbb\xfd\x86\x18\xce\xa3\x4d\x43\xbf\x8a\xcb\x53\x0d\xc0\x13\x43\x84\x7b\xdd\x83\xb2\x3a\x7a\x7f\xe5\x11\xdb\x6b\xba\x28\x30\x8d\x06\xbd\xb7\x63\x40\x75\xad\x27\x6c\xb4\x11\xe9\xbe\x27\x48\xdf\x3d\xde\x6d\xda\x18\x35\x0f\xd0\x26\x81\x01\x69\xee\x49\xe4\x35\xf5\xa0\x9b\x63\xb7\xb3\x47\xeb\x52\x84\xf0\x5b\xb2\x66\x46\x36\xc5\x6f\x82\x01\x74\xc2\x27\x9c\xd0\x59\x72\xd1\x21\xa7\xc9\xae\x19\xf1\xc1\xf0\x97\xc8\x38\x90\x56\xc8\x22\x91\x5b\x57\x8c\xae\x33\xb6\xc8\xcc\x5b\x5a\xff\xaa\x4f\x80\x58\x15\x41\xcf\x93\xad\x3f\xee\x35\x90\x69\x04\xb4\xad\x7a\xef\x60\x7f\x79\xd9\x45\xf4\x53\xc7\x75\xf0\x2a\x59\xf9\xd9\x3d\x16\x3b\xd4\xcc\xbc\x4a\x15\x22\xaf\x99\xfc\x9a\xf9\x63\xf0\x7e\x80\xa4\x86\x01\x1c\x32\x98\x89\x70\x2b\x4c\x1e\x53\x48\x97\x1c\xaf\x49\x1d\x2c\x27\xe2\xf3\xae\x44\x3f\x12\x41\x0c\x7d\xb2\x5e\xcf\x38\xae\xcb\xaf\x58\xf1\xa9\xcd\xbb\x21\xd1\xc1\x7a\x35\xad\x16\xad\x67\x40\x29\x4d\x6b\x93\x3e\x6f\xc4\xe6\x97\xf4\x4e\x84\xd8\x12\x1c\x06\x32\xef\x58\x44\xf7\x43\x5c\x0b\xea\xda\xb9\x6f\x50\x9f\x90\xdd\xc7\xaa\xd7\xe7\x5f\x8d\x39\xc2\x72\xf4\x46\x5d\x78\xda\x6d\xd1\x97\x68\xeb\x7e\x44\xe9\xbe\x3d\x18\x00\x30\x80\xf1\xf9\x93\x7e\xc7\x33\x31\x45\x27\x52\xe6\x32\x12\x4e\x05\x5a\xb2\x85\x20\x12\xd1\x8d\xb4\x71\x09\x50\x2b\x40\x61\x9b\x3e\xd4\x9f\xbe\x0c\x63\x33\x35\x51\xc3\x32\xc2\xac\xa0\x89\xc8\xe6\x8a\x53\x90\x84\xaa\x08\x9d\xaa\x19\xeb\x7d\x58\x8b\x7d\x56\xc4\x00\x13\x28\x7a\xef\x14\xa5\xdc\x3b\x15\x64\xa6\xe3\x31\x31\xa4\xd6\xf3\x01\x9d\xb5\x29\xe4\x3c\x91\xee\x28\xab\x88\x61\x6e\xd4\x60\x42\xf2\x8d\x58\x7f\xf0\x85\x99\xde\x13\x2c\x13\xf5\xfb\x06\x73\x72\x89\x2f\xa6\xed\xed\x13\x25\xec\xcb\xed\x40\x67\xfd\x91\x4d\x43\x39\xe2\x1d\xe5\x7a\x5b\xfa\xd6\x01\x44\x6c\x91\x38\x96\xe8\x15\x9a\xd8\x06\x2e\x1d\x9b\x48\x5a\x31\xb9\x77\x43\x43\xdb\xd3\xef\x95\x6b\xe5\x8e\x3a\x36\x2d\x0a\xf5\x36\x4c\x0b\xca\x32\x80\xfa\x26\xac\x2f\x97\x20\x7a\xbf\x37\xd1\xe9\x48\xc9\xa1\xd1\x8d\x3c\x20\xcb\x51\x20\x3d\xe2\x07\xd9\x01\x57\x25\x65\x35\x54\x1f\xc0\x38\x86\x21\x11\x75\x23\x5f\x5a\x18\xe2\x01\x0c\x9d\x65\xcf\x76\x63\x0d\x50\xbe\x48\x09\x56\xec\x70\x0e\xe8\x3d\x30\x3d\xef\x15\xa7\xab\x65\x00\x7d\x6b\x7a\xce\xdf\xef\x51\x7f\x24\xa7\xe6\x17\xa7\x75\xa6\xec\xd7\x27\x54\x7b\x19\x32\xd1\xeb\x22\x19\xd6\x10\x0c\x3e\x6b\x7e\xec\x50\x7e\x9c\x5c\x24\x91\x51\x88\xac\x8c\xc8\x28\x44\xd6\x46\xc7\x27\x6d\x4f\xbb\x9f\xca\x73\x5c\x67\x69\x0b\x2f\x49\xb0\x50\x69\xaa\x17\x9d\xf0\x18\xad\x86\x85\xae\x4b\x26\xab\x50\x71\xa8\xe4\x84\x0f\xa1\x96\x1f\x20\x33\x00\xf3\xc5\x4a\x95\x24\x9c\xb2\x3b\xf4\x67\xb9\x5a\x99\x48\x38\xa5\x4b\xc7\xd5\x5c\x37\xf0\x57\x9c\x26\x8b\x68\xfe\x7f\x89\x7c\x6e\x07\xe8\xff\xe6\x6c\x6a\x04\xc2\x39\xd6\x90\x1c\x73\x77\x0d\x8d\xbb\xd0\xa5\x14\xe1\xca\x2f\x96\xa3\xb1\x02\x2d\x37\x2d\x4d\xfb\xc2\xf5\x3d\x94\xb4\x0d\x46\xb5\x3d\xce\xf2\x35\x47\x2d\x79\x2d\x30\x31\x68\x64\x68\xee\xb9\xce\x11\x22\xb7\x55\x62\x08\x07\x00\xf2\x30\x11\xa5\x33\x68\xa9\x6b\x37\x4e\xff\x77\xe8\x7b\xdd\x45\xaa\x37\x2e\xda\x3d\xec\x2f\x3a\x1d\x42\xcb\xa2\x35\x5e\xb1\x7e\xbf\x56\x07\xcc\xbe\x58\xab\x4d\xd7\x61\x2d\x2e\x07\x46\x1a\xc1\x56\x39\x99\x00\x87\x6c\x8c\xa0\x23\x41\xfd\xba\x0e\xbb\xbf\x6c\x6b\x37\x73\x42\x15\x7f\x2b\x87\x4c\x2c\xbf\x32\x27\x31\xd1\x33\xc4\x1a\x0b\x99\xe3\x9c\x15\xc2\xb0\xd4\x40\x8e\xab\x06\x2a\xd0\x3e\x0f\xd4\xe7\x41\xb1\x42\xbe\x37\x03\x58\x01\x90\xcc\x52\x18\x0c\x60\x58\x0a\xfc\x9e\xd7\x4c\xd1\x60\x43\x26\x11\xb2\xca\xb5\x78\x84\xa8\x88\xf7\x07\x45\x34\x8f\xab\xf4\x73\xbf\xd5\x8a\x78\x39\x47\x98\xb4\x89\x34\xea\x91\x08\x08\x1d\xcc\x57\xaa\x9a\xe7\x5f\x00\x00\x44\x94\x12\xa2\x70\x68\xcd\x60\xb7\xba\x69\x28\x7b\x68\x5b\x35\xea\x84\x29\x09\xa2\x4e\x86\xac\x3e\x27\x5a\x9f\x03\x60\xde\x0c\xf6\x7b\x85\x82\xf3\x40\x59\x2e\x57\x7b\xa2\xe9\xaf\xd9\x6c\xec\x7c\x8d\xaa\x80\xf7\x89\xc3\xfa\x64\x70\xa6\xed\xb8\xc8\xf4\xf7\x07\x85\x42\xb0\xdf\x93\xad\xb6\x09\x81\x2d\xc7\x8d\xf8\xda\xab\x96\xfa\x71\xbf\x6a\xfc\x80\x85\x01\xe1\xa6\x73\xc8\xc4\x00\xe6\x03\x13\x83\x39\x40\x7d\xf8\x17\x9c\x0e\x32\x71\xb1\x42\xf6\x39\xd5\x6b\x1e\xfd\x0c\x3d\x60\x21\xe0\xb4\x4c\x6f\x7f\x99\x7d\x3d\x39\xe9\xed\xb7\xca\x73\xec\x07\xd1\xfa\x8b\x15\x5a\x1b\x02\x73\x60\x8e\x86\xbf\xa7\x39\xc5\xa2\xf7\x40\xa4\x98\x56\x8a\x68\x08\x41\xa1\x60\x86\xa5\x86\xdf\xf3\xb4\xa1\xc2\xd0\xd7\xee\x09\x0b\xca\x26\x31\x80\x8e\xfa\xe5\x93\x7e\xf1\xc8\x3f\x0e\x80\xfa\xa8\xd1\x33\x3c\xa2\x7c\x94\xd0\x0a\xd2\x5f\xe7\xd0\xac\xb3\x96\xf6\x01\x02\xd0\x09\x8f\x10\x81\x01\x51\xe6\x8a\x1e\x28\xcf\xa3\x07\x2a\xf3\xa2\x5b\x4d\x7b\x5e\xef\x43\xd1\xef\x26\x06\xff\x85\x2c\xab\x3c\x48\x09\x4f\x97\xe3\x4d\x22\x1c\x89\x97\x02\x55\x16\x1b\x9f\xe8\x8a\xfc\xf6\x9b\xaf\xfb\x93\x0f\x62\x3b\x03\x52\x2d\x45\x93\x18\xc4\xb3\xc5\x44\x2e\xa2\x01\x98\xb0\xb7\xd9\xd2\xe8\x24\x51\x73\x41\xfb\x14\x4f\x21\xf0\x25\xa4\x93\x41\xd9\x0a\xd6\x46\x67\x32\x48\x29\xc0\x39\x73\x50\xc4\x60\x0a\x0d\x40\xd5\x66\x9d\xc0\x63\x30\xda\xb0\x67\x99\x36\x5b\x5f\x70\x37\x9a\x05\xd0\xb5\x76\x97\x67\xf7\xa2\x5d\xb0\xa1\x77\x0f\xd2\xfb\x03\x15\xa9\x4e\x7c\xcc\x71\x5d\x27\x44\x0d\xdf\x6b\xd2\xeb\x47\xc3\xfa\xaf\x82\x66\xbe\x94\xd5\x87\x26\x2e\x22\x30\x55\x41\x33\x83\xb4\xf7\xc8\x28\xaa\xc7\x17\x0e\x9e\x12\x88\x06\x00\xb6\xac\x06\x6c\x5b\x66\x83\xd3\xbd\x25\x3a\x8b\x84\x14\x9a\x7e\x6a\x3c\xd2\xf1\x97\x7a\x43\x09\xef\x65\x93\x7d\xcc\xf1\x7a\x18\x51\x9a\x01\x6c\x5a\x6d\xd8\xb5\xcc\xf6\x0e\x11\x5d\x8c\x62\x48\x21\x32\xd2\x8a\x99\xdd\x68\xd7\x88\x11\x20\x45\xb2\xdb\xf2\x88\xdf\x0b\x78\x4b\x3a\x56\x17\xae\x58\x66\x37\xbb\x25\xac\x70\x19\xd2\xff\xa7\x13\x46\x79\x2c\xad\x99\x42\x20\x73\x89\x11\xe2\x8a\x26\x0d\xe9\x40\x1a\xf3\xac\xef\xa1\xe3\x74\x67\x11\x7d\x10\x4f\x25\x7d\x31\xb5\x77\xf7\xec\xb0\xd6\x30\x9c\x2c\x4e\xd1\xaa\xb5\xa2\xb6\xdd\x65\xad\x64\xca\xaa\xa4\xdf\x61\xad\x06\xf1\x63\xd5\x04\x93\x7b\x8a\x08\xfc\xd7\x1e\x22\x63\xdd\x65\x17\xec\x19\x3a\x42\x5b\xef\x04\x77\x00\x06\x2b\x6c\x94\xe8\x7a\x5f\xb2\x96\xcd\x32\x80\x8b\xd6\xb2\x59\x01\xf0\x8c\xb5\x6c\x4e\x03\x78\xd8\x5a\x36\x67\x00\x3c\x6b\x2d\x9b\xb3\x00\x9e\xb2\x96\xcd\x5d\x00\x1e\xb7\x96\xcd\xdd\x00\x1e\xb0\xcc\x25\x3e\xca\x8b\xfc\xef\x19\xfe\xf7\x30\xff\x7b\x96\xff\x3d\xc5\xff\x1e\xcf\x9e\x15\xb4\x95\x44\xc2\x18\xb3\x7f\x8e\xf9\x1e\x6e\xb3\x0e\x62\x60\xf6\x24\x61\x21\x3f\x78\xa9\x62\xe4\x93\xca\xf4\x97\x58\xc7\x1d\xe9\xb9\xee\x53\xf4\x92\x15\x2b\xa0\x7e\x83\x21\x4b\x98\xd5\x42\xe6\xc9\x69\xeb\x00\x5c\xb0\xcc\x03\xd9\x0d\x64\x85\xcb\x70\x0b\x6d\x94\x44\xc4\x48\x1a\xd1\xd2\xec\xb6\x64\x37\x45\x2b\x03\xc0\xc4\x42\xf6\x96\xa5\xb6\xa8\xe8\xde\xc5\x37\xac\x94\x65\x21\xab\xd6\x37\xac\x28\x4e\xb6\x7d\xb1\xb5\xa1\xf5\xd3\xf0\xb5\xa2\xb6\x38\x59\x51\xac\x5a\xb6\xe7\x01\x6d\x53\x3b\x68\x2d\xc0\x63\x96\xb9\x90\x3d\x4c\xda\x6e\x92\x39\x2e\x3b\xc0\xfd\x1f\x5f\x38\x18\xd9\x00\x4e\x5a\xc7\xe0\x09\xcb\x3c\x36\x94\x30\xf1\xc5\x90\x29\xb3\x63\x2c\xfd\xf1\x85\x83\x1a\x57\xff\xba\x75\x02\x1e\xb2\xcc\x13\x43\xc9\x1b\x63\x46\x3f\xbe\x70\x50\x31\x36\xf1\x63\x38\x7b\x1f\xc9\xae\x65\x35\x8c\x63\x3f\x66\x1d\x52\x1c\xfb\xe8\x70\x8e\x2d\x3e\xc5\xd1\x7a\xb4\xdf\x09\xd6\xbd\xad\x76\x0e\xe7\xe1\x8c\x27\x1f\xd2\x78\xf2\xa3\xd6\x51\xc2\x93\x8f\x58\x47\x09\x6b\x7c\xd6\x3a\x4a\x78\xf2\x23\xd6\x51\xc2\x93\x1f\xb2\x8e\x12\x9e\xfc\xb8\x75\x94\xf0\xe4\x27\xad\xa3\x84\x27\x3f\x63\x99\x8f\xf2\x31\x3a\xc2\xff\x3e\xcb\xff\x3e\xc2\xff\x3e\xc4\xff\x3e\xce\xff\x3e\x39\x74\x4c\x23\x6c\x79\xec\xb6\x6b\xcc\x59\xfe\x1a\xc5\xb5\x54\xc1\x62\xfc\x43\xc9\xa5\x1f\x5f\x38\x18\x67\x6e\x91\xa4\x21\x0c\x4e\x55\x47\x26\xc9\x13\xd6\x33\xf0\x29\xcb\x7c\x66\xf8\x72\x8b\x71\xec\xb1\x9b\x1f\xe5\xdb\x11\x0a\x47\x77\xc2\xd0\x06\x0e\x6d\x5f\x94\x87\x3f\xb5\x93\x3c\x5c\xaf\x3d\xce\xc6\x23\x98\x75\x4e\x1e\xed\xc2\x91\xab\x47\xf1\x73\xbd\xc6\x24\x8a\x24\x57\x7f\xd8\x7a\x6a\xe2\x29\x3e\x94\x41\xa9\x69\x62\x68\x34\xd2\xa2\x3b\x86\x03\x20\xf2\xbd\x11\xf9\xcb\x69\xf9\x2d\x95\x1f\x8c\xc8\x6f\xa6\xe5\x37\x55\xfe\x52\x5a\x7e\x47\xe5\xdb\x69\xf9\xab\x2a\xff\xeb\x69\xf9\x4b\x2a\xbf\x3d\x22\x1f\xa5\xe5\x2f\xaa\x7c\x27\x2d\xff\xac\xca\x6f\xa5\xe5\x9f\x56\xf9\xa7\xd3\xf2\x0f\xaa\x7c\x3f\x2d\xff\xa4\xca\xef\xa4\xe5\x7f\x5d\xe5\xbb\x69\xf9\x8f\xa9\xfc\x5e\x5a\xfe\xa3\x2a\x3f\x1c\x91\xdf\x4d\xcb\x3f\xa2\xf2\x71\x5a\xfe\x43\x2a\xff\x99\xb4\xfc\x27\x54\xfe\x4a\x5a\xfe\xc3\x83\x18\x73\xc8\xb0\x0d\xc6\x8b\x68\x4f\x77\x5a\x9a\x25\xd6\x0a\x60\x10\x09\x2c\x8c\xb4\x17\xc1\x1d\xdd\xa1\x32\x7a\x9a\xa2\x55\xa7\xdd\x81\xa6\x4f\x86\x82\xa0\xe6\xd5\x2d\x5c\xf3\x34\xe3\xbd\x66\x95\x04\x6b\xdc\x78\x62\x3c\xfd\x74\xf8\x25\xb3\x36\x59\xac\xcf\x3f\xfd\x74\x73\x12\x90\x9f\x06\x0c\x63\xe9\x5f\x7a\xfa\xe9\x12\xcd\x37\xe7\xab\x35\x74\xb8\xae\xca\xcf\xf3\x2f\x7a\x5b\xf8\xe2\xbf\xd8\x27\xae\x35\xf5\x3f\xff\xc7\xac\x95\x8b\xfb\xec\x62\xab\xbe\x36\x33\x00\x5f\x98\x82\x8d\x68\xe2\x6e\x9a\xd8\xb2\x22\xaf\x3f\x07\xcb\x4b\x4f\x3f\x6d\x1a\x93\x35\x1b\xda\xd0\xae\x4f\x1a\x4f\x3f\x0d\xbe\x60\x00\xd8\xce\x28\xd6\x83\x3d\xd8\x53\xc5\x9a\x89\x62\xb6\x56\x1d\x0c\x55\xc9\x6e\x56\x49\x5a\xa3\x5e\xb2\x13\x2d\xd9\x0e\x5d\x56\x30\x8c\xa2\x5e\x49\x14\xb3\xb5\x72\x7a\x85\xab\xd6\x9a\xed\x3a\x0d\xb4\xe4\xf6\x50\xb5\xb2\x6b\xcf\xbe\xe9\x99\xbd\x33\xd0\xf6\xb0\xf3\x4c\x0f\x9d\x69\x3b\x18\x55\x2b\xbb\x67\x67\x67\x67\xf6\xec\x82\xf6\x33\x3d\xbb\xba\x7b\xd7\xae\x19\x06\x76\xec\xc0\xf1\x50\x75\xef\xcc\xde\xbd\xbb\x76\xcf\x42\xfb\xd9\x5e\xc0\xaa\x98\xad\xec\xd9\x05\x97\x90\xb3\x4c\xbe\xad\x54\xf6\x4d\xef\x2e\xc3\x25\x27\x7c\x86\x60\xd8\xbd\x67\x4f\x79\x7a\x76\x16\x2e\xb9\x76\xe3\x74\xb5\x4c\xfe\x7a\x8d\x36\x6a\xda\x6e\xc7\xf7\x9a\x34\x7f\xba\x3c\xbb\x0b\x52\x7a\xa6\x77\x31\x60\xc5\xf1\x5d\x84\xab\xfb\xca\xbb\x76\x4d\x97\xa7\xe1\x52\xe0\x9f\xf1\xaa\x95\xf2\xde\xe9\xd9\xe9\x99\x59\xb8\xd4\x0b\xdc\xd5\x33\xbe\xdf\xac\x56\x66\x77\xed\xdb\x3d\x3d\x53\x81\x0d\xbb\x89\x30\xad\x62\xf7\xf4\xee\xdd\xbb\xa6\xf7\xc2\x46\xdb\x0e\x70\x80\x7a\x21\x23\x78\x66\xd7\x34\x6c\xb4\xfd\x86\x4f\x5f\x02\xab\xcc\xec\xd9\xbb\x6f\x76\x4f\x19\x36\xfc\xc0\x76\x09\x11\xb3\xb3\xd3\x7b\xa6\xc9\x4f\xaf\xe5\xfa\x67\x50\xc0\xea\xda\xb5\xaf\xb2\x6f\x6f\x85\x26\x87\x8e\x7b\x9a\x52\xbb\x6b\x66\xef\x5e\xd8\x08\x9c\x4e\xe8\x7b\xd5\xca\xec\xec\xf4\x4c\xa5\x5c\x86\x8d\x55\xdb\xe3\x5d\xd5\xb4\x83\xd3\xac\x77\x67\xf6\xd1\x1f\x34\x6f\x66\xd7\x9e\xe9\x19\xfa\x73\xd9\x77\x9b\xc8\x0b\x08\xf9\xd3\xe5\x7d\xd3\xfb\x78\xa9\xe5\xc0\x5e\xad\x56\x2a\x95\xca\xbe\x72\x65\x0f\x4f\x41\xff\x3f\x79\xef\xbe\xde\xb6\xad\x3c\x8a\xfe\xef\xa7\xb0\xf9\x6b\x54\x40\x1c\xd1\xa4\xee\xa6\x0d\xeb\x64\x25\xe9\x4a\xda\xdc\x1a\x3b\xbd\x29\xaa\x3f\x5a\x82\x24\xc6\x14\xa9\x92\xa0\x2f\xb5\xb4\xdf\xea\xbc\xc0\x79\xb2\xf3\xe1\x42\x12\x94\x28\xdb\x59\x6b\xfd\xf6\xd9\x67\xef\x7e\x8d\x45\x82\x83\xc1\x60\x30\x00\x06\xc0\x60\x86\x86\x6e\xb3\xd3\xb5\xed\xec\x7d\x03\xe2\x6a\xee\x5d\xf9\xae\xd3\x6c\xb7\x5a\xcd\x8e\x44\xb3\xf0\x66\x34\x64\x9e\x7b\xe4\xd8\x47\xdd\xb6\x2c\x31\x0a\xfc\x6b\x2a\xb1\x75\x3a\x47\xbd\xa3\x23\x09\x1a\x89\xf9\x52\xd4\xbe\xd7\x69\xda\x2a\x6d\x3c\xf7\x27\xae\x63\xdb\x6d\xdb\x76\x9a\x22\x2d\xa6\x13\x81\xae\x63\xb7\xc5\x7b\x22\xda\xce\x75\x3a\x2d\xbb\xdf\x76\x64\xbe\x84\x7a\xb2\x80\xa3\xb6\x73\x74\xe4\xc8\x02\x44\x60\x1a\xc1\x8a\x76\xaf\xd5\x6e\xb5\x7b\x45\xaa\xa8\x2d\xe7\x5c\xfb\xa8\xa3\xa7\xd2\x72\x2a\x4b\xe3\xbf\xd2\xc8\x4f\xa8\xdb\x69\x1e\xb5\x65\x5a\x26\x1c\xdd\xa3\xa3\x0e\xe7\x1d\xa5\xcb\xa5\x1f\x8a\xc6\x71\xba\x47\xbc\x10\x4a\x97\xc9\xd5\x9d\x2c\xf8\xc8\xe9\x38\x30\xf1\x17\xa2\xc0\xee\x91\xdd\x6f\x76\x3b\xf2\x9d\x6a\xef\xd1\x64\xa6\xda\xbc\x69\xdb\x2d\xe7\xe8\x08\xa6\x7e\x4c\x2f\x63\x7f\x7c\xe5\x3a\x9c\x41\x4e\xbb\x0b\xd3\x80\x4b\x4b\xd6\x47\x7a\xbd\xce\x51\xd3\x86\x69\x14\xd3\x84\xa9\xa6\x6a\x76\x5b\xfd\x76\x13\xa6\xe9\x78\x9e\xf8\x9e\xa0\xc8\x39\x6a\x75\x60\xe6\xf9\x61\x72\x19\xc5\x11\x17\x98\x5e\xbb\xdd\xb5\x61\x36\x8f\x12\x96\xe1\x6a\x39\xdd\x6e\xcf\x01\x2e\x19\x3c\x53\xb7\xdb\x6b\xda\xa0\xc9\x49\xbb\xd5\x3c\x72\x78\x12\xaf\x44\xbf\xdd\x74\x78\x53\xc8\x32\x5b\xcd\x5e\xb7\x2f\x9f\xef\x68\x10\x44\x37\xae\xe3\xb4\xed\x96\xdd\xe9\x80\xa8\x62\x06\x3d\x8f\x42\x7a\x37\xa1\x37\xaa\xc3\x76\x6d\x98\x47\x2c\xe3\x5b\xab\xdf\x6b\xdb\xe0\x87\x13\xdf\x0b\x79\x6b\x3b\xad\x76\xa7\xdf\x69\xb6\x45\xd2\x2c\x12\x5c\x6c\xb5\x6c\xf0\xaf\xa3\xf8\x4e\xd4\xbd\xd7\xb4\x6d\x50\xe2\xd7\xe9\xf5\x7b\xdd\xae\x0d\x81\x77\x2d\xed\xce\x9c\x8e\xd3\x6a\x72\xc9\xc8\x52\x2e\x83\x34\x99\x8b\x7c\xad\x56\xb7\x03\x81\x77\x13\x4a\xea\xfb\xce\x91\x7d\xd4\xeb\x42\x40\x17\x51\x38\x9e\xfb\xd3\x29\x17\x2c\xce\xdb\x7e\xbf\x03\x81\x3f\x9b\xcb\x5e\xed\x38\xad\xa3\x56\xb3\xd3\x96\x49\xaa\xd7\x76\x7a\x5d\xa7\xd3\xea\xaa\x34\xde\xc9\x9c\x76\xaf\xdd\xe9\x1c\x1d\xc9\xa4\x9c\x81\x19\x63\xba\xed\x76\xbf\xc9\xc9\x12\x5f\x45\x7f\x6b\xf5\xfb\xcd\x56\xb3\x95\x25\x49\x09\x3e\xea\x37\x3b\xdd\x3c\x69\x13\x2a\x63\x5a\xa7\xdf\xee\x2a\x1a\xb3\x1e\xd1\xed\x75\x9a\xbd\x6e\x53\x25\x66\x5d\xa2\xe9\xb4\x9b\xfd\x23\x55\x6c\x26\x98\xfd\x23\xdb\x6e\xb5\x55\x29\x45\x97\xe8\xf5\x5b\xad\x5e\xa7\x55\x4a\xa6\x9b\xc9\x8c\xd2\x40\xb1\xa5\xd3\xe7\x5d\x4b\xa6\xe7\xd5\xec\xf5\x7a\x4e\x9f\x27\x2e\xf8\x18\xd6\xec\xdb\xe2\x51\xc9\x4b\xab\x79\xc4\x9b\x32\xf0\x43\x1a\x0a\x96\x74\xba\x3d\x1b\xb2\x61\x23\x17\xd9\x85\x17\x47\x51\x28\xc6\xce\xae\xdd\x17\x51\x40\xd2\x85\x36\x0b\x74\x7b\xad\x5e\xab\xd9\x54\x1f\x54\xd7\xe9\xa8\xd7\x6c\x14\x69\x36\x1d\x2e\xd9\x2a\x75\x99\xc6\xcb\x80\xba\x47\xdd\x6e\xb3\xdb\x6f\xa9\xc4\x9c\x4b\xad\xa3\x5e\xdf\x3e\xca\x60\x8b\xa1\xa3\x6f\xf7\x7b\xbd\x23\x3b\x4b\x5f\xc6\x7e\x38\x93\x39\xba\x6d\xa7\xd3\x56\xe9\xc5\x40\xd1\xee\xf5\x9a\x2d\x3b\x83\x97\x83\x85\x94\x69\xbb\xdd\x73\x7a\x2d\x58\xf8\x93\xb0\x10\xac\x6e\xbb\x7d\xe4\x34\x61\xe1\x87\x8c\x2b\x3f\x0b\x3e\x83\x35\x9d\x7e\xc7\x86\x85\x9f\xb0\xbb\x38\x4a\xb2\x49\x8c\x67\x8d\xc6\x63\x2f\xf1\x43\x95\xd2\x3c\x82\xd0\xbb\xf6\xbe\x46\xf9\x98\xd0\xed\x77\xfb\x1d\x9e\x78\xe7\x3a\xcd\x3e\x44\xc1\x24\xf0\xc6\xfc\x4b\xb7\xdd\xea\x74\x78\x82\x7f\x4d\x45\x9f\x6c\xf5\xba\xf2\x6d\x12\x7b\x97\x6e\xcf\x6e\xf7\x7b\xad\x23\x28\x86\xe4\x4e\x8b\x8f\x2e\xf2\x5d\x90\xdf\xed\x35\x8f\x5a\xed\x36\x64\xbc\x6d\xb7\x9c\x0e\x6f\xfa\xa5\x17\x50\x6d\xa8\xe8\x74\x3b\x3d\xa7\x65\xcb\x64\xc1\x26\xc7\xb6\x9b\x9d\x7e\x5f\x26\x15\x7c\x72\x9c\x4e\xf3\xe8\xa8\xdb\x15\xc9\x1a\x9b\xda\xad\xbe\xd3\xb4\x5b\xb0\xf4\x96\xde\x9d\x77\x33\xf7\x97\xb2\xe3\xda\xbd\x1e\x2c\xa9\x37\x9e\x2f\xd3\xe9\x54\xd4\xb5\xd7\xed\xb5\x60\x49\xe3\x94\x8f\x17\xdd\xfe\xd1\x91\x03\x59\xdf\xe8\x3a\x76\xab\x03\xcb\x20\x5d\xf0\x39\xba\xd9\xee\xb6\x7a\xb0\x8c\x6e\x26\x6a\x90\x75\x1c\x3e\xb3\x3a\x36\x28\x91\xe0\x52\xd6\x6b\x75\x21\xa6\x97\x74\x3c\xf6\x54\x6a\xb7\x7b\xd4\xeb\xf7\x1d\x50\xd5\x77\x9c\x6e\xdf\x86\x38\x4a\xee\x94\x3e\xd0\x6c\x75\x7a\x1d\xe7\x08\xe2\xe8\xce\x93\xfd\xa1\xdd\xec\x77\xf9\x34\x91\x78\x93\x49\x40\x25\xd8\x91\xd3\xec\x39\xfd\x1e\xe4\x7d\xb4\xed\x74\xfb\xfd\x26\x24\x5e\x38\xc9\x30\x75\xed\x56\xb3\xdf\x6d\x43\x21\x8c\x76\xc7\x6e\x35\x7b\x3c\x21\x99\xd3\x40\xa8\x08\xbd\x76\xb7\xd5\x87\xc4\xa7\x61\xe8\xb9\x8e\xdd\xb1\xbb\xbd\xa3\x1e\x24\xbe\x88\xdd\xe5\x34\xbb\xad\x26\x1f\x35\x4a\xfd\xbb\xe5\x40\x21\xc8\xdd\xa3\x9e\x6d\x77\x55\x8a\xec\xec\xad\x5e\xf3\xa8\xdd\x06\xad\x9f\x67\x29\xa1\xea\xc8\x9d\xa3\x96\x0d\x25\xa1\xef\xb4\xed\x1e\x14\x43\x40\xbb\xdb\xb4\x8f\xfa\x36\x30\x3e\xfc\xb5\x78\x67\xe1\x2f\xd4\x0b\xdc\x56\xb3\x7f\xd4\x15\x66\x53\x2c\xa0\xae\xd3\x6e\xda\xed\x7e\xbf\x0f\x2c\x5a\x78\x2c\x12\xa3\x7e\xcf\x3e\xea\x80\xd6\x73\x9a\x1d\xa7\xdf\xe9\x82\x9a\x60\x9d\x4e\xb7\xe5\xd8\xfd\x2e\xdc\xcc\xa9\xc7\x84\x66\xd7\xe2\x35\x2a\x26\xc0\x5e\xd3\xe9\xc8\xd7\x64\x11\x5d\x65\xca\x5f\xbf\x03\xda\x48\xd4\x3d\xea\xda\xea\x3d\x13\x47\xa7\xdd\xb1\x7b\xed\xf5\xc6\xa9\x8a\x30\x1e\xc8\x6d\x05\x08\xa2\xa6\x61\x60\x8b\xc5\xfe\x02\x61\x8b\x45\x6f\xb9\x56\xf6\xc2\x4b\x28\xc2\x80\x18\x09\x2c\x7a\x4b\xc7\x88\x62\x3c\xe0\x9a\xef\x2d\x42\x8c\x08\x4f\x40\x6f\x42\x26\xa2\x31\x83\xd3\xc5\xf8\xf4\xb4\x5f\x73\x3a\x2b\x76\x7a\xda\xae\x35\xdb\x36\x88\x07\xa7\xb3\x6a\xb6\xed\x1a\x03\xe4\x74\x6a\x0c\x9f\x9c\xb4\x57\xfc\x01\x1c\x11\xb3\x7e\x5c\x20\xbe\x44\xdb\x18\x39\xc8\x74\xb3\x6c\xf1\x95\x0d\x9b\xfc\x4f\x6b\xa4\x10\xcd\x37\xa1\x9a\x9d\x4e\x9d\x43\x1e\x72\x7d\x51\xbe\x34\xf5\x97\x96\x7c\x91\xb9\x27\x45\xee\x8b\x4d\xfc\x6c\xd8\x96\xf1\xf5\x97\x3a\xd0\x13\xd1\xe7\x99\x17\x45\xe6\x0f\x45\x09\x0a\xa6\x44\xcb\xf5\x13\x20\x25\x5a\x11\xc2\xf2\xc3\x4d\x58\x18\xde\x70\x2e\xde\x0d\xe9\x08\xbb\x86\x08\x55\xb8\xf4\xe2\x2c\x28\xb2\x62\xcb\x7b\xef\x3d\x64\xff\x6c\xb5\xa7\x93\x4b\xc6\xa5\xb6\x67\x25\xc1\xe9\xe9\xa9\xd3\xad\xf1\x85\x02\xe5\xad\xcb\x1f\x9a\x9d\x4e\x8d\x82\xa3\x39\xef\xbd\xc8\xbc\xfb\x17\x99\x4f\x88\x5d\xab\x21\x4a\x18\x89\xc9\x7b\xef\x3d\x06\x85\x4e\xc1\x15\x79\x6f\xf4\x7d\x35\xdd\xa1\x6d\xb4\x5a\x21\x4a\xb8\xac\x62\xc8\x88\x47\x94\x50\x2b\x9e\x5d\x22\x8c\xad\x18\xa8\x35\x03\x6a\x5d\x02\xb5\xa2\xa5\x37\xf6\xd9\x1d\x16\xd1\x2d\x6f\x0b\xe4\xaf\xb6\x08\x73\x08\xd9\xb2\xe7\x1b\x70\x1a\xdc\x12\x81\x32\x20\xfa\xc0\x71\x75\x52\x0b\xf2\xa5\xfd\x64\x4c\x4c\x15\xb9\x76\x46\x4c\xe5\x07\xf7\x92\x98\x2a\xc2\xad\xa2\x89\x98\x61\x81\xe1\x4c\xbb\xa1\x93\xed\x05\x2e\xbc\x5b\x64\x4b\x8b\x8d\x85\x1f\x72\xb9\x92\x2f\xc2\xde\x47\xb8\x3f\xb4\x31\xc6\x27\x4e\x77\x60\xd8\x86\x6b\x18\xd8\x2c\x7c\x27\x22\xa7\xab\xd1\xf7\xa1\xb2\x19\x06\x79\x23\xb8\xf1\x09\xb1\x57\xab\xf8\x94\x38\x22\x91\x27\xb1\xac\xa1\xf2\x46\xba\xaa\x68\xa4\xe7\x4f\xe3\xe3\x86\xd9\x62\xa9\x39\xaf\xb0\x26\x57\x57\x88\x5a\x73\xa0\x56\x02\xd4\x0a\xb4\xf6\xdb\xdb\xcc\xa5\x0b\xc1\x01\x2d\xa1\xd8\x82\xbd\x2a\xae\xba\x4a\xcb\xa8\x92\xb4\x1c\x72\xc6\xc6\x84\x5a\x33\xf1\x14\x12\x6a\x5d\x8a\x27\x9f\xe4\xbc\x97\x55\x04\xaf\x68\x18\x95\x92\x70\xf6\x40\x4a\xbc\x86\x0f\x01\x41\x9e\xe9\xe3\xc3\x66\x36\x78\xa6\x03\x94\x10\xc6\xf9\x31\x40\x71\x23\xc4\x87\xa9\xd9\xad\xa3\xf8\x24\xc4\x6e\x2c\x53\xc3\x06\xe3\xa9\x4d\x17\xb1\x46\xcc\x9f\xda\x90\x1e\x92\xe0\xc4\xea\x0c\x3c\xd3\x77\x9b\x0d\x8e\x37\xa9\x93\xae\x8d\xdd\x94\x04\xa7\x76\xad\x16\x9c\x38\x03\xdb\x4d\x54\x8b\x24\x90\x82\xce\xa7\x75\x26\xb0\x57\x0f\x0a\xec\xd5\x86\xc0\xce\x73\x81\x4d\x72\x81\x0d\x1e\x14\xd8\xf3\x6c\xc7\x4b\xd5\x95\x8f\x6d\x88\x9e\x74\xed\x01\x33\x85\x15\x4b\x9d\x1e\x76\x6d\x97\x9e\x38\x7d\x7b\x10\xbb\xf4\xa4\xd9\x2e\x3e\xa1\x66\xdb\x6e\x50\xcc\x01\x18\x5e\x87\x28\x82\x19\xdc\x4f\xfc\x64\x19\x78\x77\x22\x64\xc1\xf6\x86\x9c\xec\x57\xbc\xc9\x2c\x0d\x10\xe1\x35\xcc\xe9\xed\xc3\xf0\x73\x7a\x8b\xc4\x6d\x02\xd9\x35\x1e\x04\x36\x0d\x63\xbd\xc6\x10\xa2\x5b\x78\x05\x3e\x8a\xe0\xfe\x32\xe6\x3a\x2a\xad\x34\x38\xa6\xca\x7e\x8d\x0e\x9c\x43\xab\x27\x4d\xd8\x96\xd1\x0d\xe2\x6f\x40\xb3\xa1\x4d\x62\xaf\x67\x23\x42\xf6\x70\x99\x3d\xe4\x6d\x27\x56\xd5\x8f\x95\xa4\x97\xf3\xaf\x95\x12\xcf\x2e\x77\xb9\xfb\x87\x87\x1b\xc1\x3e\x51\x91\xda\x95\x1d\x7f\x7c\x42\xf8\x98\x5f\xcb\xd2\x67\x2a\x7d\xb6\x91\x7e\xa9\xd2\x2f\x37\xd2\x15\x4d\xea\xab\x7a\x3b\x21\xce\x8e\x46\x35\xfe\xcb\x30\xcf\x54\x45\x71\xf6\x34\xcb\x9f\x2e\x77\x34\xb2\x76\x57\x41\x15\xa1\x3a\x28\x12\x3e\xfe\x28\xf1\x93\xf7\xde\x7b\x3e\x45\x2a\x2b\xc4\x8d\x81\xd7\x01\x8a\x31\x1e\x18\x5c\x40\x0c\x97\xff\x78\xc8\xc0\xe6\x13\xc6\x68\x45\xaa\x18\xa8\x4d\x03\xf6\x8d\x27\x67\x9a\xfd\x2b\x99\x2e\x55\x26\x51\x2f\x3a\x30\xb0\xe1\x8a\xfc\xd4\x34\xb0\x81\xd7\x6b\xcc\x05\xfb\x0a\x9e\xff\x67\x04\xfb\x4a\x16\x3a\x57\xe3\x86\x1a\x34\xfe\x93\x42\xfd\xd4\x12\x36\x04\x5a\x6b\xef\xf9\xb3\x56\xd7\x36\x5b\x5d\xbb\xae\x50\x9d\xd8\x18\x58\xde\xe0\xab\x95\x7c\x92\xf8\xf1\xc0\x76\x55\x49\x59\x74\x6b\x11\x8f\x19\xc5\x7c\x3c\x8e\x5d\xa7\x11\xe3\x3a\x03\x9f\x34\xeb\x71\x23\xdc\x2b\x69\x43\xe7\x88\x9e\x12\x3e\xc4\xd1\x46\xb3\x6d\xbb\xd4\x74\x9a\x36\xf8\x7c\x86\xe0\x03\x65\xf6\x70\xe2\x34\xed\x01\x35\x05\x44\x23\x87\xd8\xe4\xd7\x43\x5d\x10\x65\x5d\x27\x51\x9d\x26\x39\x21\xce\x46\x35\x70\xd1\xc1\x02\x05\x15\x9c\x10\xe7\x09\xdd\x6e\xad\x9c\xc2\xbf\x90\xf3\xdc\xc7\x37\x87\x4e\xdf\x86\x77\xc4\xe9\xdb\x87\x2a\x05\x3e\x11\xeb\xa8\xdb\x6e\x36\xe1\x23\x71\xe0\x2b\xb1\xfa\xcd\x4e\xd3\x81\x97\xa4\x7d\xd8\x3c\x82\xf7\xa4\xcb\x7f\xde\x90\x56\xfd\x7d\xfd\x3d\xbc\x25\xef\xf9\x6f\xb1\xc0\xf8\xa1\x4a\x01\x78\xad\xcf\xde\xaf\x91\x9c\xf8\xbd\x0d\x05\x6e\x6b\x52\xff\x5d\x20\x52\x2d\x69\xcd\xf1\x36\x12\x1b\x6c\x1d\x81\xba\xd6\x6b\xcd\xeb\x2f\xf6\xb6\x60\x45\xed\xc6\x51\x82\xf8\xc4\x65\x8d\xe5\x7b\xc2\x67\x7e\xf9\xae\xcd\xb0\x25\x2a\x6e\x85\x1a\xc2\xd5\x44\xe5\x4e\x1f\x42\xf0\xc9\x5f\x88\x5a\x31\x86\x48\x3c\xcc\xb8\xde\xc0\x1f\x2e\xb9\xba\xf0\x0f\x84\xac\x66\xb3\xd9\xb1\xdb\x9d\xba\x6f\x5a\x3d\xa7\xdb\xef\xf5\xbb\xf5\xc8\xb4\xec\xae\xdd\x75\xba\x47\x75\x0f\x1f\x7e\xc4\x45\x74\x04\x11\xde\x3b\x12\xea\x42\x4c\x42\x92\xb8\x28\x16\x48\xda\xad\xae\xdd\x6b\xf7\x38\x92\x56\xbf\x63\x77\xdb\x47\x1c\x89\xd3\x6e\xd9\x7d\xbb\xcd\x91\x7c\xc2\x10\x0a\x48\x5b\xec\xd9\x35\x39\xa4\x7d\xd4\x73\x78\xc9\x11\x2f\xb9\xed\xf4\x5a\x2d\x0e\xf9\x15\xcb\xfe\xf6\x1a\x39\x4e\xb7\x9e\x34\x9c\x2e\x74\x6c\xbb\x8e\xe2\x46\x82\xa1\xc9\x9f\x92\x46\x88\x75\x1e\xe4\x0d\xfa\xf7\xd3\xf4\xbf\x1f\x32\xb5\xe4\xf5\x83\x6a\xc9\xeb\x0d\xb5\x24\xc8\xd5\x12\xef\x89\x7a\xf4\x3f\xf4\xe1\xe5\xf4\xed\x20\x1f\x55\x28\x38\x87\x2d\xec\xd2\xc3\x37\xe6\xcb\x02\xfc\x73\x09\xfc\xfd\x80\xd6\x69\x9d\xba\x6f\xea\x88\x36\x5e\x6a\x74\xfd\xaa\x81\x29\x45\x87\x58\xb6\xdd\x72\x5a\x76\x7f\xe0\x34\xad\xa3\x66\x9d\xba\x8e\x65\x77\x3a\xf5\x52\x81\x4d\xab\x8d\x1b\x3c\x59\xc3\xf5\x97\xa6\xe9\xd3\x43\x3e\x1f\x62\x8e\xac\x6d\xb7\x3b\x03\x7a\x28\x90\x15\x63\x21\xa2\xa6\xc8\x7e\x28\x90\x03\xc7\x57\x60\xfa\xe5\xdf\xd7\xbd\x7f\xd7\x7b\xcd\xef\x4a\xf7\x1e\x3f\xa6\x7b\xbf\x16\x42\xff\x83\xd0\xbd\x6d\x3e\xd5\x58\x5e\xad\x26\x1f\x2e\xcb\x08\xc5\x5a\x72\x13\x9d\xec\x88\xa2\x8e\x1e\xf3\xc2\x26\x92\x3d\xdd\xc3\xf5\x77\x7b\xa5\xdc\xec\x84\xab\x8c\x2d\xae\x25\xaa\x0e\xf9\x57\xcc\x10\xb5\xbc\x3a\xb5\x3c\x93\x72\xdd\x86\x77\xaa\x32\xfa\x5c\x03\xfe\xfd\x41\x51\xfb\x7d\xa7\x06\x3c\x7e\x58\x03\x0e\xd1\x6b\xf8\xfb\xf1\x19\x54\x0a\xbb\x44\x63\x3a\xfd\x3a\xca\x27\x54\x37\x8b\xa6\xe2\x29\x81\x7e\xfa\x84\xa9\x23\x6d\x7c\x1b\xd2\xca\x39\x32\xa7\xaf\x8b\x0f\x1d\xa7\x9b\xcf\x8c\x12\x13\x1e\x50\x97\xca\xc0\xff\xde\x61\xc7\xb6\x21\xd6\x3f\x5f\x8a\xcf\x0d\xf9\x7c\xd8\xb4\xed\xf2\x84\xf8\x2b\x6a\x59\x4e\xab\xd5\xef\x74\x9d\x3a\x62\xe4\x53\xfd\x33\x62\x18\x37\x1c\xab\xeb\x74\xfb\xdd\x6e\xaf\x8e\x28\xf9\x58\xe7\xfd\x0f\x37\xac\xf6\x91\xdd\x75\xda\x7c\x6d\x44\xbe\xd6\x3f\xa3\x18\x63\x0c\xbf\xa2\x86\x75\xd4\xeb\xf7\xba\xfd\x76\x9d\x99\x8e\x75\xe4\x74\x9d\xb6\xd3\xa9\xf3\x1e\xd1\x6a\xb5\x3b\xed\x7a\xcc\x81\x2c\xbb\xe7\x1c\xb5\x3b\xad\x3a\x6b\x58\xcd\x66\xff\xe8\xc8\x69\xd7\xa9\xe9\x58\x6d\xbb\xd3\x6c\x37\x7b\x1c\xa8\xcc\x09\xa9\x05\xfd\x0e\xbf\x3c\xad\x0d\x7f\x2f\xe9\x20\x63\x78\xb0\x45\x9f\xda\x86\xd5\x48\x77\xb4\xe8\x63\x8a\xfb\x0f\x2a\x30\xad\x58\xbf\xe4\x53\xf8\x3f\x49\xc3\x72\xda\xfd\xae\x03\x3f\x11\xc7\xea\xf5\x9b\xbd\x1e\x7c\x47\x1a\x56\xf3\xa8\xd9\xec\xc1\xcf\xa4\x61\x1d\xf1\x39\x03\x7e\x23\x8e\x75\xd4\x6b\x1e\xb5\xe1\x0f\xf2\x5b\xfd\x67\xf8\x91\xfc\x56\xff\x09\x28\x25\x3f\xd5\xbf\x6b\xfc\x5c\xff\xa7\xe6\xb5\x87\xfe\xfb\xe3\x4d\x5c\x5a\xa9\xc7\x74\xd7\x6a\xff\xc1\x39\x96\x4f\xe2\x0f\xad\xda\x11\xa5\xf5\xd0\xfc\xa3\xce\x1a\x3f\xd6\x63\x7c\x88\x28\x35\xff\x68\xfc\xc8\xa7\xe3\xb0\xe1\x83\x47\xd0\x6f\x7c\x6a\xf3\x71\xe3\xbb\x7a\x84\x0f\x7f\x86\x84\x14\x83\x8b\x57\xf7\xcc\x88\x27\xa3\xdf\xea\x7e\x1d\x39\x0d\x1f\x63\x48\x49\x32\xd0\x86\x2b\x0f\x22\x5c\x7f\xc7\xf5\x37\xf7\xbd\xf7\x7e\xaf\x5c\xa1\xf4\xc4\x1e\xa4\x62\xcc\x4a\x21\x01\xbf\x6a\x60\x8a\xe9\x83\x23\x53\x4c\xff\xd5\xc5\x79\x88\x62\x0a\x8c\xfe\x67\xd4\xfb\x98\xfe\xb7\xeb\xf7\x4f\x2e\xa2\x72\xf0\xd2\xc6\xa2\x39\x57\xdd\xd5\x23\xd7\xbc\x71\xfd\x05\x30\x62\x2a\x1d\xbe\x34\x6c\x69\x5a\x7e\x9d\xf1\x06\x66\x5c\x4d\xca\xd5\x3f\x8a\xb3\x6d\x1f\xae\xfc\x15\x77\xe6\x8a\x9d\x63\xc4\xcc\xb8\x8e\xfe\x59\x0f\xcd\x9f\xea\x5c\x38\x8a\xb4\xef\xea\xa1\xf9\xf3\x46\xda\x6f\xf5\x10\x57\x8d\x40\x0f\xd9\x96\xcd\x1e\xb1\xed\x7a\xf5\x88\x6d\xdb\xf3\x47\x6c\xcb\xfe\x2e\xbe\x57\xda\xe6\xfd\xf2\x88\x6d\x1c\xa3\x8f\x1a\x47\xc5\x56\x8c\x18\xae\xb0\x91\x2a\x64\xe3\x84\x89\x2b\xb7\xa7\x8c\x0f\x75\xa7\x84\x0d\x44\x6f\x5a\xeb\x11\x8c\x37\x0f\x23\xc4\xb2\x56\x0d\x33\xb5\x1a\x62\x84\x02\xad\xbe\xb7\x18\x22\x19\x88\x18\xaf\x31\xdc\x07\x74\xaa\x5d\x71\xcf\x83\xcd\x4e\xa3\x58\x8d\xb6\x22\xf4\x1b\xb1\xb3\xdb\x8d\xd2\xaf\x1a\xcb\x2f\x4d\x87\x27\xfe\xb1\xba\xc5\x48\x42\xd3\x3f\x3d\x3d\x75\xf6\x28\x62\xc3\x68\x04\x31\x3e\xb1\x07\x21\x89\x4c\xc7\xf5\x49\x94\x5d\xec\x0c\xd7\x20\x3a\xdf\x7f\x5b\xa1\xa7\xf6\xc0\x27\x91\x2b\x0a\x2e\x0a\x5d\xaf\x21\x22\x3e\x12\xfb\x94\x91\x25\x28\x80\x84\x44\x16\xaf\x3f\xa4\xc4\x83\x60\xa3\x29\x64\xc9\x22\xf2\x07\x19\x17\xf6\x65\x65\xff\x5a\x0d\x07\x7c\x42\x95\x7b\xba\x3c\x54\x50\x78\x62\x0f\x6c\x37\xc4\xc2\xfb\x16\x8e\x86\xf1\x88\x30\xe4\x0b\x48\xd3\x8c\x47\x79\xbf\x89\xb4\xd3\xa5\xb1\x2e\x00\x43\x0a\x6c\xa4\x22\x63\x6c\x8a\x92\x10\x1b\xf0\x21\x02\xe1\x3c\x30\xbb\x5c\x9f\xe6\xec\x81\x40\x23\x25\xa9\xa7\x92\x76\x75\x37\xb5\x56\x43\x31\x19\xf3\x5e\x1d\x11\xfb\x38\x3c\x49\x8e\x4d\x33\x14\xf7\x2a\x3d\x42\x87\xe1\x08\x7c\x62\x1f\xfb\x27\xe9\xb1\x69\xfa\x60\x9a\x11\x0e\x86\xd1\x88\xc4\xc8\x03\x36\xf4\x0b\xca\x83\x35\xcc\xab\x45\x97\x9d\x50\x2e\xba\xec\x94\xcf\xd2\xec\x94\xd0\x4c\x74\x27\x55\x16\xbe\x92\x2a\x42\x07\xef\xbd\xf7\xae\x49\xd7\xb0\xac\x0a\x72\x25\x96\x8d\x54\x0b\x65\x02\x1e\x69\x38\x90\x10\x1b\x52\x22\x02\xc4\xa9\xc6\xca\x2e\x95\x7a\x5c\x3e\xe4\xb8\x16\x93\x09\xa2\x43\x6f\x84\xf1\x6a\x85\x52\x93\xa0\x90\xf0\x95\x1b\x9f\xe4\x50\x62\x92\xf0\x90\x57\x12\xe3\xbd\xe2\xb2\xe9\x56\x76\x26\x10\x80\x27\x76\xba\x1e\xc6\xe2\x4f\x51\x74\xea\x64\xd3\x78\x7a\x88\x22\x71\x11\x76\x51\x19\xba\x6b\x29\x9d\x29\x66\x06\x8a\x83\x62\xa2\x8d\xb1\x1b\xaf\xe1\x7a\x17\x2f\x20\x2a\xb8\xc1\x39\xa1\x73\xe0\x3e\xaf\x43\x74\x8c\x55\xfa\x01\x41\x31\x11\x4c\xa8\xd5\xe2\x53\x12\x0b\x36\x85\xc4\x27\x71\x06\xb8\x09\x85\xc2\xd3\x58\x74\xc1\x18\x83\x7f\x12\x8b\xee\x17\x63\xbc\x2e\x73\x69\xa3\x04\x9d\x4f\x8f\x16\x54\x06\xde\x51\x9e\xe2\xcd\x30\x04\x7f\xb4\x86\x3b\xe9\xb1\x41\x8b\x0c\x37\x23\x77\x56\x12\xf8\x63\x0a\x97\xe4\xce\x5a\x78\x4b\xb8\xa8\x92\xb2\xed\x51\x9a\xae\xd7\x70\x53\x79\xd3\x75\x0d\xaf\xb6\xed\x56\x85\x8e\xc1\xd5\x8b\x98\x20\x7f\x4b\xa9\xc3\x27\xcd\x81\x1a\x6f\xc5\x61\xa4\x7f\xd2\x1a\x38\xae\x19\x6b\x71\x79\xc4\x38\x61\xaf\x36\xf7\x2a\xc5\x55\x6f\x79\xa5\x22\xc6\xb8\x34\x86\xf8\x58\x5c\x8e\xf6\xf9\xf8\x11\x8e\x08\x35\xc3\x7a\x5c\x8c\x1b\x70\xab\xa9\x65\x1d\x1b\xc3\x99\xf6\xee\xd8\x18\x3e\x68\xef\x4d\x0c\xcf\x1f\x19\x46\xa4\x0c\xc5\x5c\x6f\x42\xbc\xb6\x98\x10\xc4\x2b\x2c\xda\xd1\xc6\xd9\xa8\x24\xee\xa8\xa3\x90\xb0\x13\xe1\x8b\xd4\x17\x75\x66\x7c\x65\x24\xd7\xba\xc8\x23\xea\xf0\x84\x77\x94\x83\xdc\x7e\xdf\xcb\x36\xa0\xe4\x2d\x77\xef\x54\x5e\xff\x56\x47\x79\xf2\x06\xfe\xa1\x87\x81\x91\xd2\x65\x61\x6f\x83\x25\x1a\x38\x6b\x50\xd3\xc1\x9c\x47\x89\xe4\x51\x32\x22\x88\x9a\x09\xae\x7b\x45\x57\x2e\x5f\x1b\xa8\x17\x05\x48\x14\xf5\x07\xf0\xd3\x06\xab\xc0\xdf\x48\xf0\xa1\x97\x6b\x3d\xb5\x5a\x64\xc5\xf4\x9a\xc6\xe2\xb8\x5f\x1f\xcc\xaf\xca\x8e\xb3\x64\x0b\x6b\x8d\x1f\xe7\x8a\x94\xa4\x4d\x3c\x06\xd1\x0c\x85\x0a\xec\xed\x7b\x47\x78\x47\x09\x0f\x0b\xf5\xd3\x06\xbf\xd8\xf9\x3a\x25\xf6\x00\x45\xa7\xe4\x76\xe0\xd8\x6e\x74\x4a\xce\x06\x1d\xfe\xf3\x61\xd0\x74\x1d\x5c\x2f\x67\x72\x1b\xfa\x7b\xc3\xc7\x87\x3b\x73\x56\x1c\x61\xc9\x2a\x48\x0d\xff\x32\x79\xa0\x2a\x0a\xff\xa3\xd5\x92\xf5\xca\x63\x2f\x0b\x52\xfc\x3a\xc9\xa8\xf1\xeb\x44\x12\xc4\x05\xac\x4e\x9a\x18\xc4\x94\xe2\xbb\xfe\x5a\xee\xbe\x56\xf4\xda\xa2\xdd\xf2\x22\x73\xb7\x2e\x59\xc9\x4d\x6c\x3a\x6b\x78\x47\xb6\x54\xe5\x1b\x60\xe4\x1a\x62\xf2\xa2\x68\xbf\x10\x85\xf2\xab\xe8\x1f\x45\x14\xad\x44\x93\x16\x4f\xce\xab\x72\xbe\xf4\xf8\x7c\x89\x93\xa1\x3f\x22\x14\x85\x43\x7f\x24\x36\xaf\x85\x8a\x17\x10\x86\x12\x0c\x63\x12\x70\x35\x61\x4a\x82\xa1\x33\x82\x39\x89\x51\x02\x63\x98\xe2\xbd\xb2\x97\x9a\x39\x9f\x60\xe6\xe4\x1c\x8d\x61\x0a\x73\x0c\x73\xf2\x0a\x15\xb5\x1b\x1f\xce\x71\x7d\x2e\xbe\x14\x1a\xc9\x84\xcc\x33\xb7\x35\xf3\xa1\x3d\x3a\x21\xe3\x63\x3c\xb7\x92\xb9\x3f\x65\x08\x43\xa3\x31\x11\x90\xc7\xf3\xe1\xa4\xe1\x8c\x4e\xa7\xfc\xe3\x32\x5a\xaa\x4f\x1c\xc1\x52\xd9\x6f\x4b\x0a\x26\xa6\xa3\xd7\x8c\x4c\x44\xd5\xd0\x92\x2c\x78\xed\x86\x23\x6c\xdd\xda\xc4\x3f\xb5\x07\xf3\xa1\xdf\x70\x46\xee\x18\x96\xd6\xad\x43\xfc\x93\x09\x4f\x19\xb9\xd3\x2d\xb6\x8c\x4f\x08\x8a\x08\x67\x0e\xae\xd5\xa2\x13\x32\xad\xd5\x16\xc3\x14\xcd\x21\x02\x1b\x26\x78\x24\xbd\x56\x84\xba\x7e\xb1\xc8\x15\x37\xe9\xe7\x98\xe8\x37\x7d\xd4\xa7\xad\xb5\x35\xa2\xc4\xc8\xe0\x34\xd7\x93\x03\xe6\x5e\x20\xbe\x90\xc1\x2e\x5d\x43\x68\x4d\xa2\x85\xe7\x87\x55\x62\xb4\x8d\x91\x55\x61\xa4\x03\xea\x5e\xa0\xa1\x50\xfb\xe8\xd0\x19\x8d\x04\x6e\xc6\x71\xb3\x79\x4c\x93\x79\x14\x4c\x92\xa7\xe1\x8f\x77\xe1\xdf\xf4\x5d\x34\xb8\x40\x45\xc8\x47\xf7\x82\xeb\xef\xa1\x50\x12\xc2\x35\x7c\xda\x1a\xdc\x73\x7d\x40\xea\x7b\x13\xac\xa9\xac\xe2\xab\x1c\xdc\x85\x5d\x43\x78\xd2\x54\x83\xb3\x19\x0b\x97\xa7\x60\x03\x15\x9a\x0c\x3b\x25\x8e\xfe\x29\x6c\x38\x23\x08\x1b\x0e\xff\xac\xa6\x0f\x82\xc2\x86\x83\xeb\x0c\x22\x52\x76\x51\xe2\x11\x91\x25\x1a\x41\x04\xc5\x42\xd1\x33\x91\x4c\x36\x9d\x11\x44\x26\xc7\xd4\xf0\x70\x1d\xf9\x8d\x08\xaf\xd7\xf0\x71\xab\x22\xf9\x5a\xf9\x52\x55\x1e\x26\xd8\x4a\xa2\x98\x71\x45\x5e\x9b\x42\x85\x67\x08\xd4\xac\xa3\x4f\x88\x82\xd5\xeb\xe0\x86\x78\x68\x76\xb0\x36\x18\xe6\x3a\x53\xc3\x39\x6c\x09\x9f\x4d\x5f\x77\x15\xb8\x85\xba\x65\x75\xea\x0b\x44\x1f\xc4\xf6\xf2\x29\xba\x6b\xb5\xb6\x16\x09\x8d\xb3\xa4\xad\x45\x1b\xda\x5a\x9c\x81\x6d\xc3\x84\x4a\x75\x2a\xa9\x67\x5b\x28\x59\xd1\x1e\x8f\x61\xde\x04\xcd\x0a\xd8\x2b\xd6\x70\xef\xab\x2b\x5b\x54\xd5\x27\xa1\xa8\x2e\x78\x95\x2a\x7a\xc4\x97\x46\xba\x8a\x1e\x8d\x30\x1e\x34\x1a\xbe\xeb\x99\x24\xde\x2b\xd7\x24\xdc\x54\xc7\x33\xe2\xb4\x1c\xc2\x61\x79\x26\x67\x87\xfe\x1a\xde\x54\x52\xb8\xd1\x18\xb9\xe7\x9d\x2d\xf2\xfc\x6d\xf2\x56\x2b\xe5\x61\x27\xc6\x7b\xdb\xac\xae\x26\x50\xcf\x93\x5d\x1f\x43\x5e\x2e\xc3\x56\x07\xaf\xe1\x6d\x69\xb0\xc8\x9d\x94\x41\x85\xf0\x70\x6e\x66\x25\x7a\xa6\x10\x01\xf5\x59\x0c\xbb\x71\x69\x82\x3a\x6e\x34\xfc\xdc\x6f\x0e\xe3\x8b\x16\xca\x07\xd9\x6c\xb6\x68\x34\x98\xf8\x1a\x0f\x1b\x0d\x6f\x44\xc2\x92\xab\x33\xf8\xe1\xff\x1b\x69\x2e\x16\x02\xff\x4d\xd2\x5c\x14\xa0\x49\xf3\xdf\x1b\x95\x2d\x56\xfb\xf9\xaa\x3a\xd4\x58\x1b\xe3\xe3\xb8\xd1\x38\xc6\x21\x5f\xda\xd3\x21\x1b\xc6\xa3\x91\x86\xed\xf5\x06\x36\xa1\x5a\x17\xe3\xaf\x12\x44\xb5\x90\xb5\x45\x08\x00\x6f\xa4\xad\xd2\xe5\xa6\x43\x88\x45\x4d\xe2\x63\x8c\x18\x57\xb5\x79\x1d\x12\x7c\x62\xaf\x56\xf6\x01\xe1\x4a\x05\x88\xd3\x6c\x94\x10\x1f\x3c\x12\xe5\xd5\x11\x71\xb9\xc5\xd7\x81\xa7\x62\xa8\xaf\xd7\xf0\x8f\xad\xa1\x2e\x5f\x9d\x08\x52\xb2\x09\x63\x90\xd1\xe9\xc6\xb8\xc1\xa9\x90\x14\x0d\x6c\xd7\x64\xf8\x98\xaf\xf8\xe4\x48\x1f\x7b\xe1\x24\x5a\x20\x5c\x8f\x1a\x8d\x95\xd8\x12\x19\x46\x26\xe3\x13\x22\xff\xe1\x82\x26\xdf\xf8\x0f\xc9\xed\x01\xe8\x1a\x3e\x3f\x3e\x70\x34\x1c\xce\x9b\x8a\x5e\xe9\xf3\x91\x80\x2f\x53\xa8\x54\x26\x50\x64\x92\x8d\xbe\x98\x83\xf0\x56\x17\x7a\x98\x5c\x60\x4a\xc8\x62\x01\xf5\x2b\xd9\xd8\x8a\x3f\x40\x85\x64\x6b\xcb\x95\xc2\x65\x60\xc3\x81\x98\xfc\x80\x28\xfc\x85\x37\x85\xc1\x34\x19\x6f\xa7\x0c\xd6\xcf\xba\x2a\xef\x52\x9b\x6b\x3a\xd9\x75\x87\xd1\x48\xb4\xa8\xd6\xe7\x42\x6d\x01\xf1\x57\xe9\xda\xb4\x24\x4a\xa8\xbf\xbf\x54\x04\xb3\xf8\x15\x15\x0e\x28\xd7\x7b\xd9\xe6\xa4\x9f\xd0\x71\xe5\xed\xcf\x54\xdb\xc1\x14\x40\x9f\xfc\xd9\xbc\x12\xd2\xdb\x84\x7c\x4b\xa7\x95\x80\xda\x85\x64\x2f\x19\xcb\x70\xc8\x55\x70\xe1\x26\xc2\xa8\xf2\x7e\xb2\xaf\xed\xc1\xc6\x51\x52\x79\x07\x56\xbf\xc3\x4c\x1f\x2a\x73\xae\x03\x5e\xfb\x9e\xd0\xb5\x1e\xbe\xd4\x2c\xdc\x7f\x56\x56\xf4\x5a\xbb\xb9\xec\x27\x2c\x9a\xc5\x5e\xe5\x0d\xe0\x77\xda\x0d\xdc\x4c\x25\xfc\x21\xa6\x74\xb2\xf0\xc2\x97\xbe\x37\x8e\x42\xbf\xb2\x56\x1f\x2b\xf2\x9d\x8d\x23\x56\x49\xcc\xd7\x2a\x60\x96\xc6\x33\x5a\x89\x5b\xbb\xd5\xbc\xf0\x6e\xab\x20\x5e\x6a\x10\xd4\xab\xe4\xd2\x7b\x1d\x64\xe2\x57\x03\xbd\xd1\x81\xe2\x59\xe5\x3e\xbb\x76\x87\x79\xe1\x57\x62\xd1\x6e\x31\x2f\x3d\x3f\xae\xac\x53\xa0\xc1\xd0\x78\x91\xb2\xc7\xf6\xf4\xff\x4a\xbd\x90\xf9\x41\x25\x98\x76\xad\x3b\x96\xbe\xcc\x1f\x3c\x5e\x48\xc6\xd5\xb5\x7f\xad\x81\xcc\xd3\xe9\xb4\xba\x30\xed\x0e\x76\x92\x56\xca\xd0\x67\xad\x79\xfd\xf1\x55\x65\xfd\x9f\x97\x61\xde\x84\xe3\x58\x79\xd8\xde\x86\xbd\x2a\xc3\x9e\x31\x5a\x79\x79\xfc\x5c\x03\x13\xb6\xf0\x51\x52\x59\x81\x5f\xb5\x4b\xe2\x5e\xec\x8b\x68\x2e\x15\x60\xcb\x02\xec\x6f\xbf\xb2\xc0\x5f\xbe\xed\xc0\xc4\x98\x33\xb6\x74\x0f\x0f\x6f\x6e\x6e\xac\x9b\x96\x15\xc5\xb3\x43\xe7\xe8\xe8\xe8\xf0\x76\xce\x16\x81\x01\x3e\xb9\x4f\xae\x67\x6e\x05\x54\xd3\xb6\xed\xc3\xe4\x7a\x66\x80\x00\x75\x43\xb8\x0d\xfc\xf0\xaa\x0a\x54\x22\xe4\x5f\x0d\xb8\x5d\x04\x55\x20\xbf\xbd\x7b\xcb\xc1\xfa\x87\xa1\xb7\xa0\xc9\xd2\xe3\xb5\xbf\x5d\x04\x61\xb2\xb3\x68\xf1\xf5\xd0\x58\x43\x54\x15\x50\xc1\x24\x86\x01\x5c\xdd\x10\xae\x5f\x3f\x4c\x91\xe1\x1a\xc5\xde\xf0\x29\xb1\x6b\x35\x43\x60\x30\x0e\xc4\xde\x1c\x95\x1b\x9f\x62\x07\x06\x0b\x53\xf4\x2c\x25\x36\x1d\x8c\xc1\xdf\xbc\xe4\xc0\xf0\xe0\x5e\xd0\xe9\xfa\x43\x36\x82\x20\x1a\x7b\x81\x4b\xd7\x7c\x4d\xec\x55\x10\x14\x15\xe7\x7b\x88\x59\x02\x7a\xf0\xa4\xad\x55\x79\x9c\x77\x13\xd2\xf8\x65\x65\x60\xf7\xf7\x67\x88\x5a\x82\x10\xa0\x12\x2f\x5e\xaf\xab\x0e\x48\x37\x36\x6a\x18\xd9\xc6\x9c\x99\x22\xe6\x6d\xf0\xf9\xd3\x9b\x9c\x67\x44\x1c\x23\x31\x2b\x8b\x2f\xaf\xca\x2f\x01\x73\x98\xc1\x66\xe4\x79\x8a\xdd\x6d\x9a\x63\xa0\x78\xbd\xc6\x88\x61\x6d\x9a\x4e\x32\x4f\x02\xe9\xee\xc3\x0d\x3a\x48\x76\x19\x55\xff\x95\xd2\xf8\xee\x8c\x06\x62\x22\x44\x1c\x7f\x81\x3a\xc8\x61\x87\xf2\x24\x68\xfc\x50\x11\xc1\x93\x8a\x78\x2e\xb6\x0f\xd6\x6b\x98\x3e\x6d\x97\x5c\x60\x10\xb1\xcd\x69\x22\x33\xce\x2b\x89\xc8\x15\x9c\x5c\x7f\xd2\x2a\x32\xd1\xfc\xc0\x97\x1a\x8f\xd0\x8d\xc6\xdc\x6a\x4a\x42\x4b\xaf\xca\xb9\x76\x48\x6f\xa5\x5a\xaa\xde\xe5\x65\x1d\xa2\xce\xc5\x2f\x2e\x26\x1e\xf3\x2e\x2e\x08\x5b\x4f\x34\x17\x13\xf7\x9a\x7f\x09\x77\x02\xde\x72\x49\xc3\xc9\x8b\xb9\x1f\x4c\x76\xfb\xca\x96\x88\x2d\x5f\x44\xe5\x50\xbe\x90\xa9\x46\x84\xf4\xb9\x9d\x7f\x7b\xc8\x79\xf6\x0e\x54\x78\x0d\xa5\x06\x7a\x94\x96\x2d\x89\x81\xcd\x06\xfe\x36\x14\x99\x44\xc8\x7d\x40\x62\x7c\xa7\xf9\x8f\x5e\x64\x96\x16\x7c\x7d\x80\x4b\x21\xcb\xec\xf2\x71\x63\x94\xad\x28\x93\x93\xe0\xd8\x34\x13\x8c\x3c\xc2\x86\xc9\x08\x0f\x90\x57\x34\x48\x34\x4c\x46\x10\x0e\x93\x11\xf1\xb0\x1b\xf3\x5f\x2e\x38\x5c\x3c\xf8\x17\xb9\xe7\x78\x9c\x88\xa3\xc7\x02\x43\xad\x86\x7c\x99\xa5\xd8\x9a\xbe\xd6\x09\x03\x4f\x0e\x0f\xf2\xae\xc7\x98\xdc\x73\xe9\xce\x69\x9b\xe7\xb4\x95\xf6\x38\xa7\xb2\xb4\x84\xd8\xc7\xc9\xc9\x54\x16\x98\xe6\x05\x2e\x78\x81\x01\x59\x9a\x9e\xdc\x74\x4a\x21\xcd\x6b\x01\x09\x30\x0c\xc1\xbe\x1f\xee\x8f\x07\x82\xb2\xd4\x1d\x0f\x83\x11\x49\x75\x94\xf3\x0c\xe5\x78\xa8\xe1\x91\x15\x85\x04\x22\xcc\x59\x23\x58\xa1\xe3\x96\x1c\x12\xd8\x84\xa3\xf8\x5d\x4c\xaa\x26\x7b\x3c\xe4\x74\x8f\x08\x21\x69\xc6\xb4\x54\x63\xda\xdd\x93\x0c\x0c\x38\x27\x67\x95\xe7\x62\xe5\xbe\x5a\xab\x6d\x24\x64\xfe\xa9\x7f\xf1\xe9\xcd\x6a\x45\xf3\x41\xb7\x56\xa3\xe2\xb5\xf8\xaa\x0d\x0d\x97\x65\x9a\xac\x84\xdd\x05\xc2\x49\x54\x36\x69\xc9\xd8\x07\x0c\xaf\x56\x33\x44\x31\xff\xf2\x22\x5a\x2c\x53\x46\x27\x67\x1c\x14\x51\x61\x1f\x80\xab\xb2\x94\xae\xd9\x69\x65\xa8\xab\x9a\xc9\x32\xf0\x19\x3a\xfc\x73\xf5\x25\x31\x0f\x77\xdd\xab\xb3\xc6\x81\x97\x24\x6f\xfd\x84\xad\x56\xc2\xd1\x39\xef\x2b\x39\x28\x7f\x53\x11\x01\xc2\x68\x42\xf3\x01\x48\x0c\x59\xe4\x42\x3a\xd5\x7a\xce\x58\xec\x5f\xa6\x8c\x22\x43\x20\x33\xb0\x0c\xe4\x90\x63\xb9\xdd\xdc\x70\xb8\x11\x7b\xbb\xf2\xc4\x30\x93\xe3\xec\x28\x30\xb6\xbc\xc9\x04\xb1\x61\x38\xc2\xa5\xdb\x71\xdf\x82\x21\xa6\x8b\xe8\x9a\x6e\x22\xf9\x90\x45\x37\x60\xf4\x96\xbd\x88\x42\xbe\x00\x22\x86\xa1\xdf\x65\x53\x00\x7e\x18\xd2\xf8\xf5\xf9\xbb\xb7\xa5\xcf\x57\xd9\x67\x3e\x30\x9e\xf9\x97\x81\x1f\x66\xf7\x5d\xe4\xb8\xf3\x3e\x9a\x50\x4b\x1b\x76\x95\x67\x75\xed\xbc\x49\x21\x58\xc6\xf4\xda\x8f\xd2\x64\x27\x92\xd2\x20\xca\xf2\xc8\x37\x1a\xc4\xd4\x8f\x13\x26\x4a\xd1\x0a\x78\x81\x4a\xb3\x66\xf1\xe1\x5d\xf9\x56\x44\x81\x67\x8f\x72\x31\x97\xfc\xaa\xa4\xf9\xd3\xc6\x54\xf9\x10\x91\xd2\xdd\x3c\xff\x86\x0e\x1c\x65\xf4\xa4\xf1\x4a\xc3\xfa\xf1\x5f\xc4\x6a\x57\x61\x7d\xa5\xcf\x81\xde\xa4\x3c\xdb\x69\xf2\x9a\xab\x9d\x14\x9f\xd8\x79\x38\x18\xf9\x49\x6c\x5f\x66\x06\x97\x42\xd6\xad\xa4\x42\xb2\x75\xf1\xb7\xbe\x46\x7e\x88\x8c\x7d\x43\x6c\x8c\x4b\x16\xba\xdb\x4a\x66\x35\x01\x7b\x4c\xa8\xbb\x25\x1a\x78\x7f\x1d\x53\xc4\xc0\xf9\x37\xe8\x18\x47\x21\xf3\x7c\x3d\x70\xcc\xe6\x1c\xb9\x49\xca\x29\xb1\xd5\xe4\xf8\x95\xcf\x2c\x2f\xc5\xc0\x5c\x0c\x60\xef\xb7\xce\x29\xde\xa8\x14\xd0\x0f\xac\xb2\x9d\xc4\x98\x06\x1e\xa3\x93\x73\x2f\x9e\x51\xb6\x27\xcf\x66\x64\x44\x98\xd5\xaa\x5f\x8b\xb3\x78\x05\xd9\x98\xfa\x31\x4a\x7c\x89\x82\x8b\x1d\xe6\xe3\xa8\x98\x47\xa4\xcc\xe3\x75\x21\x32\x6f\x36\xe8\xc8\x0b\xcf\x8e\x31\xc9\xcb\xbd\x97\x24\x14\xa1\x47\x4b\x48\x74\x8d\x49\x60\xc8\xe3\x7f\xbe\x24\xfe\x5a\x2b\xe1\xed\xa3\x8a\xf9\xc5\x45\x14\x8a\x53\x23\x6d\x28\x82\x90\xd8\xd9\x7e\x5e\x3e\x12\x85\x27\x91\x30\x3a\x8a\x85\x7f\x2e\xa0\x16\x17\xce\x5a\x2d\x16\xbf\x07\x84\xc8\x84\xd5\x2a\x16\xca\x9f\x48\xe0\x0f\x03\x36\x34\x4d\x7f\x44\x62\x69\xa0\x28\x65\x4a\x44\xad\xe2\x03\x34\x0d\x69\x8c\x24\x0a\x88\xad\x40\xa5\x40\x6c\x8d\xbd\x25\x4b\x63\x8a\x8f\x4d\xd3\x1f\x64\x34\x10\xdf\x2d\xc5\xe3\xb8\x88\x42\xbd\xb2\x3f\x94\xcf\xbe\xbf\x6e\xdd\x17\x17\xe5\xe0\xc1\x7b\x37\x5f\x6d\xe4\x3c\x29\xab\x24\x05\x6b\x20\x20\xc2\x25\x3d\x78\xe2\x6c\x2d\xcd\x37\x0b\xc7\xc4\x86\x29\x49\x33\xee\x8c\xc5\xc4\x3e\xc6\xfe\x14\xa1\x84\xa4\xc3\xf1\x08\x8b\xd2\x48\xc6\x98\x5a\x4d\x2a\xc9\x24\x63\x0c\xd6\x25\xb8\x8a\x2d\x89\x64\x4b\x52\xb0\x25\xc9\xd9\xa2\xec\xe2\x27\x93\x47\xb2\x90\xa0\xc8\x44\x62\x0c\xd7\x91\x3f\x41\x89\x3a\x9c\x65\x2a\xaa\xd4\x16\x1a\x49\x31\x04\xbc\x43\x24\xe4\x9e\xbf\xb8\x2a\x8d\x53\xee\xca\x0a\x80\x0c\x74\xc1\x20\x2b\xcc\x0d\x40\x15\xe5\xc6\x6b\x48\x07\xa9\x1c\x82\x12\xec\xe6\xec\x24\xc3\x64\xb4\xae\xbc\x69\x93\xc9\x3b\xb5\x92\x28\x8d\xc7\x92\x17\xe4\x25\xbc\x24\x54\xc8\x7f\xc6\x2d\x15\x4a\x46\xde\xd8\xd6\x85\x3e\x47\xfa\xba\x2c\x06\x33\x69\xff\x1a\x5a\x2f\xd2\x84\x45\x0b\x81\x77\xaf\xe2\xf8\xd6\x1f\xc8\x50\x18\xbe\xf0\x14\xe9\x22\x9e\x65\xb2\xb1\x14\xe6\x79\x91\x21\x7e\x0c\x0c\xf1\x00\xf9\x96\x1f\xfa\x4c\xa6\x33\x88\xad\xcb\xf4\xf2\x32\xa0\x89\x10\xe0\x70\x4c\x03\xef\x32\xe0\xa5\x5b\x13\xca\x3c\x3f\x20\xb1\x7a\xc0\x6e\x39\xe3\x81\x03\x07\x7c\xf5\x4f\xc5\x3d\x60\xbe\x72\x93\x5f\x7c\xbc\x36\xd2\x50\xc6\x1b\x99\x14\x21\x70\x0b\x2d\x0d\x19\x51\xb8\x88\xd2\x84\xd2\x90\xd1\xd8\xf0\xc3\xfc\xdb\xe6\xfa\x79\xb5\x42\x5f\xc9\x7d\x01\xeb\x1a\xe2\x39\xba\xa6\xb1\x01\xe2\x31\xa0\xde\x35\xcd\x92\x53\x66\x64\x56\xf7\xff\x20\x43\x3e\x7c\x8e\x8a\xf1\xf3\xb3\x1e\x23\x6c\x16\x47\xe9\x32\xc9\xd5\x28\x39\xed\x25\x84\xe9\x37\x8d\x4a\x6b\xce\xcf\x68\x38\xdc\x45\xe5\x68\x04\xff\xc0\xeb\xcf\xda\xec\xf7\xeb\xae\xd5\xe0\x67\x48\xc4\x6a\xa8\x34\x2b\x14\xed\x9a\x33\x8b\x8a\x5d\x96\x54\x58\xda\x17\xa7\x02\x3a\xed\xb0\xf3\xb8\x48\x99\x55\xc6\xc2\x1e\x22\xcb\x2c\x4d\xaf\xd8\xd0\x1f\x41\x40\xf2\x28\x49\x63\x12\x0e\x7d\xfd\xd4\x20\xc0\x30\x25\xf6\xf1\x54\xac\xad\xa6\x58\x98\x52\x4c\xc5\x42\xc5\x23\x6a\x30\x8f\x20\x2a\x86\xf1\xa9\x3a\x17\x32\xb2\x14\xde\x9a\x11\x07\xd7\x56\x1a\xf9\x23\x86\xf1\x70\xca\xd7\x57\x7b\x25\xce\x86\xe5\x56\x10\x51\xf8\x38\x93\x36\x57\x98\x3b\xf9\x34\x7e\x32\x9f\x86\x23\xf0\xf9\x9f\x88\xd8\xc7\x91\x60\x51\x84\xf5\xc5\xa6\x30\xeb\x4d\x0b\x06\x05\xc4\x3e\x0e\xc4\x32\x31\xe0\xcb\xc4\x64\x18\x48\x8b\x45\xa5\xa7\x48\x8e\x78\x50\xd4\x16\x02\xce\x11\xf0\x55\xe4\x6c\xbc\x55\x55\x1f\xaf\x41\x46\xe9\x78\x5a\xdd\xa6\xff\x51\x19\x90\x12\x90\x10\xaf\x30\xe5\x0d\xa5\xa9\x8d\xaa\x6a\x22\xab\x1a\x11\x4f\x56\xb5\xaa\xd1\x03\xf0\x70\xad\xa6\x06\xca\xe8\xd1\xc6\xe4\xb9\xdc\xad\x43\xca\xc2\x55\xc4\x52\xa3\x5c\xde\x07\xf0\xff\xa6\x08\x63\x18\xf3\xc9\x5c\xa4\xd0\x52\x08\x3d\x8a\xef\x97\x43\xd3\x1c\x8f\x08\x5d\x63\x58\x66\xd7\x3d\x09\x1b\x5c\xbb\x0b\xbe\x0e\xd1\x09\xe0\xda\x80\xc6\xb2\xbd\x1d\x8c\x8e\xcb\x26\xec\x79\xdf\x8f\xd7\x05\xf3\xbd\x62\x81\x5f\x36\xce\xe2\x5c\xd4\x5f\x83\xf2\xeb\x98\xd8\xc7\x63\x61\x9f\x34\x96\xe3\xfb\x94\xf8\xc3\xf1\x08\xe6\x24\xe2\x3f\x85\x4d\x15\x2c\xb3\x4e\x36\x85\x69\xad\x36\x2d\x58\x3e\x06\x1f\xc3\x1d\x59\x66\x80\x33\x31\x5b\x6b\xc5\xdc\x61\xb8\x24\xc9\x66\xda\x5e\x88\xa6\x30\x87\x19\x5c\x42\x50\xfe\x36\xc1\xb0\x04\x56\xd4\xed\x02\x6e\xe0\x15\xb1\xe1\x96\xd8\xc7\xaf\x4e\xee\x8e\x4d\xf3\x15\x57\x0b\x2e\xc8\x6c\xf8\x6a\x24\xb5\xac\x57\xa7\xe4\xb6\x56\x43\xb7\xe4\x95\xe9\xe0\xe3\x03\x74\x43\x2e\x87\xb7\x5c\x46\x4c\xf3\xf6\xe4\xee\x18\x1f\x5f\xa8\xfd\xb2\x9b\xd5\x4a\xac\x7a\x94\x5d\x15\x92\xcc\xfa\x8c\x12\xf0\x31\xb6\x2e\xc4\x48\x4e\x52\x48\xac\x0b\x7a\xeb\x33\x3e\xdb\xaf\x41\x0e\xef\x15\xa7\x78\x22\xa7\x6c\x41\x01\xb3\x5a\xe9\xcd\x69\x2d\xbc\x25\x9a\xe3\x2d\x99\xe3\x88\x1f\xc3\x76\xeb\xb3\xa7\x21\xe3\x7a\xfd\x8e\x30\xa5\x52\x3a\x39\x5d\x08\x2b\xc9\xcb\x04\x8e\xe3\x47\x45\xe7\xd8\x61\x7c\x85\x42\xec\x86\x6a\xad\x2a\x1d\x3c\x81\xb4\x25\x60\xf2\x1a\x82\x08\x27\x9f\x1d\x97\x47\xd9\x82\x1a\xbb\x31\x8a\x30\x84\xb5\x9a\x3f\x08\x2d\x71\xee\x85\x7c\x6c\x45\xf1\x84\x13\xe2\xfa\x6b\x10\x69\x6e\xa5\xa9\xc7\xe6\x10\x42\xf3\xe7\xb0\x18\x4e\x7c\x12\x17\x96\x17\xb9\xaf\x03\x3e\x7c\x81\xa7\xdf\x3e\xe0\xba\x96\x7d\x9c\x08\x35\x3b\xc9\x47\x9a\x14\x02\xb1\x55\x04\x63\x12\xf3\x9f\x29\x09\x8a\x5d\x32\x2f\xdb\x69\xca\xf6\xc7\x60\x42\xec\xe3\x89\xd0\x45\x27\x18\xa5\x24\x18\x4e\x46\xab\xd5\x78\x38\x11\x63\xed\x7c\x38\xc9\x77\xbc\x8e\x93\x93\x50\x14\x24\x70\xf0\x12\xca\x83\x8f\xb7\xd5\x76\x82\x25\xd5\xe1\x5b\x4b\x6c\x50\x47\xee\xb4\xd8\xc2\x28\x9d\xb2\x0b\x53\x94\x21\xe3\x13\x87\x5f\x5c\xc7\xf0\x88\x3f\x8c\x46\xc7\x8d\x46\x24\x6c\x5b\x50\x28\xde\xc5\x6c\x59\xab\xb5\xff\x0c\x77\x2e\xb2\xf8\xf8\xe9\xed\x5c\x6c\x87\xe0\x09\x2e\xe7\xc2\xc3\x84\x47\x90\x24\x8a\xcb\x7a\x43\xae\xab\x30\x3d\x72\xd1\x3e\xab\xd5\xe2\x01\x45\xac\x18\x3d\xe2\x62\x06\x76\x0f\x58\xe3\x20\x5e\x53\x71\x93\xef\x4e\xbf\x6a\x52\x62\x47\x58\x34\xbf\x5f\x6e\x6e\x39\x73\x86\x62\xe6\x2c\xed\xd3\xc6\x5b\x53\x27\x67\x86\x96\x39\xcd\x46\xc2\x54\x8c\x84\x62\x3a\x1d\x0b\x6e\x89\xb1\xc9\xc3\x7b\x81\x34\x55\x62\x78\x5d\x6a\x55\x7f\xa3\x55\x33\x39\x5f\x03\x1f\x2b\xb7\xef\xa3\x15\x51\x1d\xed\x5c\x3e\xf4\x34\xd9\x4d\xa9\x52\xca\xc5\xee\xfe\x46\x54\xcd\x35\xf0\x15\x7f\x45\xd0\xd7\x1d\x33\x15\x97\x1e\xbd\xb1\x36\x26\x2c\x7c\x4f\x87\xa6\xc9\x64\xc1\x6b\x11\xa2\x8d\xe3\x7f\x92\x58\xda\xba\x54\x32\x31\xa3\xb3\x42\x2c\xa5\x50\xfa\xc4\x86\x28\xb7\x1c\x3e\xf6\x45\x6f\x54\xf1\xde\x3c\x31\xc1\x0b\x4b\xf8\xdc\x62\x6d\xad\xef\x4d\x01\xaf\xc4\x76\x4d\xed\x07\xeb\x63\x9a\x54\xd6\x83\x2e\x96\xe5\x70\xc0\x32\xd7\x81\xdc\x1d\x8a\x26\xc2\x31\x10\xcf\xfd\xb4\xb1\xc8\xd6\xc6\x20\x71\xa3\xc9\x34\xe3\x92\xa9\x0b\x1b\xc6\x23\x65\xc8\x94\x9f\x04\x78\x42\x6b\xf1\x30\xf2\x49\x24\xaf\x94\xa8\x59\xd4\x07\xbf\xe8\x04\x1e\x44\x1b\x1d\xca\x63\x2c\x76\x2b\x0c\x84\xe4\x79\x24\xe7\xd8\x86\x0d\xed\x49\xb3\x34\xee\xcb\xea\xe5\x67\x80\xea\xe0\x32\x2c\x6d\xc5\xbe\x3f\x43\xb1\x3a\x81\x54\x00\x7c\xbc\x2f\x6d\xd6\xc6\xb9\xb8\x17\xac\xce\x8c\x91\x06\xf1\x93\x8e\x43\xb5\xe5\xb8\x5e\xf2\x37\x9f\x7d\x56\xe1\x11\x67\x36\x6e\xa5\xb1\xf3\x36\x71\xda\x16\xfb\x86\x44\x71\x55\xb5\x32\x8c\xed\x5e\x36\xbb\x3d\xb1\x12\xea\xce\x68\x99\xc7\x1b\x40\x10\x97\xeb\xfa\x9f\x26\x4b\x1c\xdb\x6e\x92\x21\xee\x3d\xae\xd7\xee\x53\xb9\xf2\x94\x7a\xb0\xa7\xd4\xa3\x8a\x12\x26\x0e\x90\x63\x60\x22\xae\x20\xbb\x0b\xe8\x96\x06\xb3\xc3\x50\xfc\xd4\x19\x54\xc8\xe1\x13\xe4\x46\x9e\xa8\x48\x4e\x69\xee\x0e\x77\x09\xcf\x0e\x72\x36\xda\x27\x7c\xa4\x7d\xc2\xc1\x43\x65\xbb\xda\xc7\xa4\x38\xb7\x41\x14\xc2\x6d\x11\xa9\x26\x62\x27\x06\xb1\x83\xb9\xc6\xe2\x29\x93\x15\xc3\x70\x63\x8c\xdd\x4b\xa4\x8d\x0f\x40\xf1\x1a\x96\x2a\x5f\x75\x5b\xfe\x27\x9a\x40\xdb\x63\x14\x81\x7e\x1f\x67\xfa\xbf\xde\x25\xca\x65\xb9\xea\x97\xc4\x4f\x94\x55\x11\xd4\x59\xb1\x0e\xab\x36\x92\xbc\x12\x81\xa2\xc5\xce\x3a\x9d\x54\x8e\xcc\x17\x52\x47\xde\x35\x38\x17\xf3\xe2\x8d\xde\x04\x38\xdb\x17\x8e\x0b\xf5\xce\x57\x37\x0a\x0f\xb8\x96\x26\xb7\xea\x51\x3c\xf4\x47\x99\x39\xe6\x41\x36\xa1\x1f\xd8\x15\xc3\xf3\xbf\xc4\x5c\xb4\x83\xaf\x83\x5b\xf7\x4c\x46\xff\x15\x76\x1f\xee\x63\x4d\x7d\xab\xc1\x3e\x0c\x79\x56\x40\xe6\x83\x01\xa3\xb7\xac\x2a\xdb\xd6\x85\x91\xa2\xba\x99\xe5\xc7\x07\xb7\xaa\xe2\xf4\x11\x72\x33\x4f\x11\xd5\x32\xb5\x75\x10\x98\x89\xbb\x61\xb8\xec\x69\x13\x96\x9e\x9b\x0a\xb9\x2a\x4b\x95\x0e\xb0\x06\x61\x8f\xf5\xaf\xd5\xff\xf9\x7f\x57\xfd\x8b\x73\xce\x6f\xaf\x7d\x91\xb7\xb2\xee\xf9\xe7\x35\xc4\x9e\x9f\xec\xf4\xe8\x28\x2a\x7a\x85\xd7\x20\x82\x3d\x3c\x08\x75\x8e\xd7\xca\xa8\xa5\xe2\x98\x6d\xc7\x1d\x23\x4f\x73\xe1\xa0\xe6\xab\x80\x8e\x19\xda\x51\x4e\xe9\xf0\xb6\x9a\x73\x78\x9d\xdb\xc4\x54\x0e\x15\x0f\x10\x02\x61\xce\xe7\x17\xd5\xe3\x24\x73\x53\xc4\xbe\x85\xe0\xd2\x02\x6e\x57\xc0\xfe\xb0\x3a\x5d\x6e\x97\x88\xfa\x6c\x9e\x5e\x56\x70\xff\x1d\x5f\xf7\x04\x51\x48\x77\x9e\x2c\x2a\x4a\xe9\xe0\xa3\xfb\x49\xee\xbf\xa5\x8b\xa7\x4b\x7c\x36\x55\x69\x7b\xba\x40\xcb\x32\x95\x7d\x58\x43\xb4\x63\x63\x44\x98\xf9\x57\x9a\x76\x54\xda\x44\x88\x9d\x97\x0a\x59\x32\xc4\xe2\x27\xb7\x52\xb4\x36\xad\x14\x35\xdb\xc4\xd8\x74\x30\xd0\xb2\xa9\x22\xa8\x53\x20\x79\x00\xc4\xa7\x9c\xb5\xda\x63\x29\xb6\xf2\xf6\x84\x39\x7e\xc5\x64\x22\x67\x93\x84\xb0\xc1\x0f\xee\x5b\xd0\xaf\xb8\x1d\x38\x5c\x82\xec\xe3\x50\xec\xe9\x85\xb8\x68\x9b\x04\x45\xc3\x70\x24\xef\x24\x97\xd6\x1a\x32\x78\x70\x99\x87\xf2\x08\xb3\xbc\x69\x62\xc3\x38\x5f\x41\x1f\x07\x27\x63\xb1\x1b\x2b\xef\x9a\xd8\x7c\x71\x3d\x0c\x46\x79\xb1\xfe\x14\x89\x15\x4f\x58\x9c\xda\xa5\xea\xd4\xce\xcf\x4e\xed\xd2\xd2\xa9\x5d\x2a\xcf\xd0\xa4\x67\x43\x8f\x95\x16\x65\x9b\x66\x64\xff\xc6\x3c\x97\xd9\x26\xab\xc9\x07\x76\x76\xe0\xc7\xd5\x85\x2d\x54\x38\xd7\x1b\xd4\x59\xf9\x5f\xe4\x57\xf8\xa5\x42\xd4\x8c\x44\xb8\x1f\xd5\x3b\xff\xd6\x39\xce\xa6\x85\xdb\x68\x04\xbb\x0f\x79\xa4\xcb\x20\x9e\x9f\xca\x03\x1f\xf8\xbd\x4a\xc2\x7f\x41\x7c\x84\x91\xeb\xcf\x5d\xb8\xf8\x34\xfc\x4f\x62\x17\x67\x53\x3f\x95\xb7\x28\xbf\x2b\x8e\xa1\xbe\xcb\x86\xf9\x0b\x62\xfc\x5f\x86\x89\x4c\xf3\x9f\xb8\xf0\x2d\xdd\xea\xe2\xf5\x77\xda\x59\xd3\x4f\xbb\xce\x9d\xbe\x83\x19\x65\x0f\x2e\xc1\x8f\x0f\x10\xdb\xf7\xc3\x7d\x8a\xa5\x5a\x24\x8c\x7c\x8b\x1d\xaa\x4c\x2d\xca\x2f\xd7\x0c\xd9\x68\x0d\x09\xdd\x1c\x7b\x8b\xcf\x02\x2b\x57\xf4\xaa\x4c\x32\x4a\x86\x10\xa2\xd8\x5a\x4d\x69\x95\x79\xd6\xc7\x1d\x05\x5f\x28\x19\xf8\x99\x54\xed\xa4\x00\x23\x2f\x8f\x29\x61\xfa\xd9\xec\x31\x66\x84\xe6\x3d\x73\x0d\xbf\x55\x3a\xcb\x50\xf6\x66\x67\xbf\xfc\x33\x3f\x87\xa4\xc2\x67\x81\x3a\x52\x3d\xfb\xe5\x9f\x1f\x23\x3f\x64\xd9\x12\x65\x33\x5d\xdb\xf6\xb5\x6e\x09\xb3\xc6\x81\x4f\x43\xf6\x1b\x84\xd6\x5d\xfe\xf6\x3b\x0c\x51\x48\x42\x6b\xe1\xb1\xd8\xbf\x3d\x8f\xbd\x30\x99\x46\xf1\x42\x5a\x72\x9d\x8d\x63\x4a\xc3\x17\xe7\xef\xc4\x04\xae\x6e\xfd\x63\x6c\xdd\x72\x14\xd2\x44\xd7\x27\x02\xf2\x1f\x51\x2a\x6e\xa3\xbc\x10\x48\x3f\xf1\x71\x3f\xf7\x64\x91\x17\xdc\xf0\x85\xeb\x99\x06\x55\x09\x6f\xe9\x94\x41\x4e\x48\xc3\xb7\x58\xb4\xcc\x3f\x9e\x47\xcb\xd1\x1a\xfe\xa8\x30\xd3\xfe\xb9\xa8\x17\xb3\xc6\x73\x2f\x9c\xd1\xc9\x79\x94\x8e\xe7\x34\x11\x43\xf1\x66\xe2\xd0\x1e\x61\xf8\x4d\xd9\x9e\xfe\xf8\x4d\x7d\xb4\xba\x8b\x4a\x0b\xd2\x27\x75\xd2\x4c\x65\x1b\x8e\x5c\x2a\x7b\x2b\xa5\x5b\xb7\xd2\xb6\x46\xfd\x96\x18\xdf\x19\x88\xba\x6e\xd4\x46\x0b\xfb\xa6\x36\xdc\x58\x6e\xe3\xe1\xda\xf9\xa6\x9b\x72\x5a\x21\xee\x3e\xfa\x13\x1a\x32\x7f\xea\xd3\x98\x10\x12\x67\xa3\x30\xe7\x48\xb1\xb7\x2b\xf7\xe0\x18\x7d\xc0\x23\xd0\xcf\x22\xdc\xc3\x06\x11\x6a\xaf\x4c\x23\x61\x63\xa7\x36\xdf\x3e\xf3\x87\xf1\x88\x88\x66\x18\x6a\xfe\x80\xfc\xfc\xf6\x96\x94\xdd\xaa\xdb\x12\xbf\xeb\x77\xa3\xa8\xb7\xe3\x06\x95\x76\x73\x4b\x6c\x5a\x54\xc1\xfc\xa4\xdf\x07\x62\xe3\x39\x7d\x2c\x56\xa4\x38\xd0\xaf\x82\xf9\x43\x8b\x57\x59\xdc\x86\xd8\x86\x8b\x2a\xe0\x2a\xaf\xb5\xe8\x17\xc0\x44\x07\x10\x5d\xb8\x0a\xf2\x37\xed\x1a\x8d\x90\xc8\x47\x7c\x76\xe5\xa7\xd8\x55\x70\x3f\x6e\xc2\xed\xb8\x2a\xf6\xd7\x26\x5c\x75\x23\xa4\xdb\x60\x3b\x0a\x1e\x6b\x90\xec\xae\xfa\xc2\x90\x16\x14\x53\x08\x5e\x15\x0c\xa5\x1b\x40\xd5\xec\x65\x1a\xd8\x8d\x1f\x4e\xa2\x9b\x47\x3c\xad\xd1\xeb\x1d\x77\x8a\xb4\x1b\x63\xe3\xc2\x2a\x66\xc7\x1d\xac\x27\xc5\x8c\x8c\x91\x83\x37\xa2\x3f\x66\xee\xc1\xa4\xbf\x2f\x5a\xa7\x5c\x55\xac\x67\x53\x06\x42\x4e\xa3\x55\xa7\x66\xab\x1e\x35\x3c\x5c\x67\x26\x6a\x37\xba\xf5\xc8\x6c\xd5\x3d\x5c\x8f\x4d\xe4\x98\xd9\x57\x91\x12\x9a\x5e\xdd\xc7\x87\xdd\xb5\xc4\xf6\xf0\x62\x2e\x63\xab\x7e\x31\xc3\xab\xd6\x8b\x34\x23\x40\x33\xae\x33\xcd\x8c\x28\xd1\xa7\x31\xd6\xa0\x85\xc3\x27\x8e\x2a\x3e\x75\xfa\xf6\x6a\x15\x9f\x34\x44\x2c\x80\x46\xab\x6b\xd7\x35\xd7\xe5\xf1\x61\xab\x6b\x63\x37\xc6\x6e\x84\x72\x4f\xec\xcc\xd5\xed\x90\xd3\x87\xf1\x6f\xe7\x94\x5e\x49\xf2\xfc\xb4\x30\x51\xac\xe0\x86\x23\x9c\xc0\x9b\x14\x0f\xd2\x92\xc7\xb6\xe2\x34\xbe\xb1\x73\xdf\x90\x12\xcd\xe1\x6f\x9c\x7b\xdf\xe1\xef\x1c\xac\x41\x21\x26\xce\x61\x5c\x88\x45\xe1\x3c\xb3\xc8\x68\x86\x75\xb9\xad\x27\xfc\xc4\xd1\xa2\x3a\x0c\x0f\x62\x97\x89\x0f\x9b\x12\x93\x59\x81\xc5\x08\x51\x15\x34\x14\x85\xd6\x54\xac\xc4\xad\x18\x10\x2b\x25\x32\x9e\x88\x21\x22\x22\x10\x32\x30\xe9\x94\x3a\x16\x9e\x77\x99\x74\x4c\x9d\xa2\xdc\x55\x25\xb0\xc2\x13\xe7\xa6\x10\xe8\xc6\xec\x31\xf1\x11\xc3\x40\xad\x19\x89\xe4\xc3\x25\xf1\xe4\x43\xe6\x95\x32\x11\xaf\x22\xaa\x42\x36\xf0\x59\x33\x6f\xb1\xf0\x08\x05\x7f\x5d\xea\x08\xe3\x2a\x01\x65\xfa\x5d\x72\x56\x78\x04\x2b\xa6\x9c\x08\x97\xcc\x22\xa2\xb2\x59\x44\x84\x95\xd3\x00\xfb\x38\x16\x53\x65\x8c\xfd\x32\x67\xf8\xec\x04\x1e\x9f\xac\x7c\x2b\x5e\xad\x6c\x48\xe4\xf3\x8c\x3f\xa7\xf2\xf9\x72\xb5\xca\x0f\xa6\x3c\x42\x91\xc7\xcb\xa4\x28\xe1\x65\x51\x94\x62\xf0\xf3\x0a\x3b\x55\x61\xa1\x7d\x2b\x26\x62\x07\xc0\xb7\x66\x44\x3a\x99\xb4\x2e\x85\x9d\x15\xf8\x82\x37\xeb\x71\xc5\x3a\xb4\xf0\xc0\xb7\xd5\x0a\xb9\x25\x40\x7c\x42\xec\x41\x4c\x6c\x57\xc4\x6e\x41\x31\x71\x80\x35\x1c\xec\x6a\xae\x4a\xe2\x3a\xe3\x2d\x2f\x5c\xdf\x09\x0f\x78\xa6\x33\xe2\x2c\x3b\xb5\x07\xd2\xe1\x89\xdb\xe4\xe3\x0a\x67\xdb\x09\x6b\x38\x3c\xd1\x6c\xf2\x44\xaf\x11\xe5\xd3\x36\x42\x71\x23\x3c\x64\xb8\xce\x20\x11\x0e\xb5\x52\xbe\x24\x82\x87\xc8\xde\x4d\xb4\x46\x1c\x42\xf1\x33\xe2\xe0\x13\x7b\x60\x9a\xb1\x1b\xe3\x8c\x56\x14\x9a\xbc\x1e\xcf\x98\xa2\x99\x3f\x24\x32\x5d\xa6\xa6\xf2\xa5\xc9\x5f\xaa\xa8\x14\x96\x67\x92\xca\xbd\x6d\x2f\x83\xc5\x3c\xd1\x20\xc2\xf5\x59\xe5\x20\xc7\xea\xb1\x3e\x2c\xce\x35\xcf\xdd\xf3\xaa\x8d\x9e\xb3\xbb\xc5\x65\x14\xd4\x6a\x46\x22\x1e\x36\x3f\x58\x3e\xa3\x31\x57\x67\xaa\x76\xee\x32\x55\xb4\x72\xf3\x8d\xd6\x6a\x0f\x14\x47\x4b\x91\x85\x09\xc9\xd3\x0f\xb2\xe7\x62\x7d\x36\xc8\x68\x73\xf3\x02\xf9\x90\xb1\x96\x5e\x96\x0e\x87\x0d\x73\x34\x40\x03\xf7\xcb\xc4\xfc\x62\x0d\xbe\x4c\xea\x2b\xf1\x63\xe2\x2c\xc8\x2f\xff\x2e\x62\xfc\x1e\xce\xca\xc1\x73\x27\x6a\xbd\x03\xc6\x4c\x44\xcb\xad\x58\xe0\x28\xbf\x7e\x13\x2b\xf0\x12\xf6\x26\x9c\xd0\x5b\xb2\xd4\x9e\x73\x97\x87\x43\xde\xba\xca\x2f\x81\xbc\x34\xca\xf8\xdf\x63\x14\x6b\xd1\xb8\x84\x83\x0b\x15\x77\x8b\x61\x7c\x8c\x85\x11\xaa\xd8\xb3\xc1\xa7\x91\x72\xa6\x29\x37\x65\x22\xf0\x31\x24\x43\x6f\x34\xe0\x7f\x4c\xe2\xbb\xc9\xd0\x34\xbd\x11\xf1\x31\xa0\x98\xc4\x7c\xc1\x40\x08\xe1\xeb\x22\xfe\x38\xd0\x40\xc3\x0c\x34\x74\x51\xf6\x94\x06\x01\x28\x2b\xb4\x7b\xdf\xf5\xe0\xd6\x9d\x4a\x13\x5b\xe1\xf6\x4b\xab\x51\xee\x8a\xe1\x84\x15\x4e\x4b\x35\xb2\x76\x12\x55\x6c\x07\x0d\xd2\xa1\x3d\x7a\x70\xa3\x57\x1b\x8f\x11\x93\xe1\x6b\x10\xcf\x64\xdd\xe2\x47\xb6\x71\x8b\x99\x1f\x31\x11\x5e\x2c\x33\xd0\x86\xaa\x05\x7b\xac\xf6\x9e\x98\xd8\x04\x4a\x86\x28\x26\xa9\xd8\x03\xf2\x47\x24\xb6\x6e\xb5\x7d\xd6\xec\x46\x82\x81\xd7\xfa\x25\xc9\x6b\xad\xf7\x5c\xff\x6f\xd8\x7b\xee\x84\xbd\xdb\x45\xc9\xe7\xa2\xee\x93\xe7\x5a\xdb\xd9\x55\xcb\xac\xd5\xca\xb8\x8c\xa2\x80\x7a\x9c\x2c\xe2\x0f\x22\xd1\x10\x46\x98\x2e\x2e\x69\x2c\x93\xa6\x6e\xb1\x5a\x25\x3e\x1f\xe0\xf3\xc9\xcb\x13\xd3\xfa\x00\x31\x12\x43\x80\xdd\x85\xcb\x74\xa7\xd9\xa1\xe5\x0d\x82\x72\xd2\x4b\x8f\xd1\x41\xd5\xc6\x03\xef\xc6\xfc\xe3\xde\xae\x41\xb1\x50\x5a\x62\x2b\xa1\xec\xdc\x5f\x50\xc4\x87\xc7\x10\x43\xbc\x5e\x6f\x78\xf2\x62\xb8\xaa\x90\xed\x55\x23\x1d\x68\x06\x5e\xf9\xb5\x5a\xd7\xde\xf0\x11\xb9\x61\xf8\xa5\x4d\xe7\xbe\x98\xce\x85\xef\xd9\x1b\x44\x87\xf1\x48\x2d\x35\x85\xc9\x56\xb6\x0c\x15\x33\x3b\x4f\xdf\x9a\x8e\x94\x70\xeb\xb8\x04\x30\x47\xa8\x89\xb3\x57\x3a\xd4\xcc\xad\x37\x99\xdc\xd4\xfc\x30\xd5\x85\x4b\xfb\x9a\x6d\x22\xe5\xb1\x59\x76\x71\xe5\x7e\x0d\x3e\xb9\x5f\xcb\x7a\xed\xfb\x52\x38\x0e\x08\xe1\x52\x1b\x89\xb6\xe6\x4d\x3f\x17\xd1\x6a\x10\x25\xf7\xeb\xcc\x54\x8f\x2f\xd3\x4b\x10\x8c\x43\x30\x01\xc1\xb0\x40\x45\x07\xe1\x26\x77\x5c\xff\x51\x86\x08\x22\xe4\xfa\x3d\x2c\xf3\xc2\x5f\xaf\xdd\x29\x56\x5b\x2b\xaf\xbe\x79\x46\xd5\xa3\xd7\xf1\xc9\x15\xaf\xd7\x70\x5b\x0a\x2e\x73\x46\xee\x85\x47\x86\xc0\x63\xf4\x37\xd7\x86\xfc\xe5\x77\xd7\x86\x38\x62\x1e\xa3\xae\x0d\xc9\x15\xbd\xe1\x5f\x93\xb1\x17\xd0\xdf\x5c\x47\x3e\xfc\xee\x3a\x6b\xf8\xb0\xb1\xdb\x92\x5d\xed\x55\xe6\x62\x90\x66\x4b\x2a\x4f\xf3\x1e\x4a\xeb\x9c\x1c\x26\x9d\x0c\x1c\x12\x0f\xd8\x21\xf1\x30\xa0\x94\xd0\x7a\x2c\xc4\xbc\x56\x43\x71\x83\xd0\x7a\x0a\x61\x83\xb0\x7a\x8a\x01\xe9\x5e\xe3\xe3\x7a\x6c\x86\xf5\x50\x20\x88\x0f\x49\x02\x21\xff\x93\x1e\x92\x04\x03\xad\x87\x27\xac\x1e\x0b\xab\xea\x06\x05\x46\x1a\x0c\x52\xd2\x48\xf9\x6c\xe7\x61\xd0\xeb\xeb\xeb\xf5\x8d\xb2\xfa\x6a\x9e\xe7\x19\x50\x5c\xbf\x55\xf5\xcf\xd3\x51\x2a\x12\x25\x33\xbc\x8c\x19\x89\xae\xba\x68\x61\xfa\xf4\x65\x84\xa6\xcb\xab\xb3\x18\x2a\x1d\x27\x9a\xc6\xbe\xe1\x1a\xc6\x7a\x53\x44\x8a\x8b\x3f\xf9\x2c\x9d\x4d\x72\x44\xcc\x68\x4a\x3b\xd6\x1a\x21\xf7\xc0\x2a\xa3\x01\x1c\x10\xe2\xaf\x56\xe1\x01\x21\xaa\x55\x52\xa2\xbc\x87\x19\x79\xe5\x91\x01\xf2\xf2\xbb\xfc\x89\xf1\x5e\x92\xcf\xb7\x69\xa3\x2d\x66\x5c\x2a\x4c\xda\x45\x42\x53\x24\x84\x10\xf1\x09\x87\x06\x09\x45\xfe\x6a\x15\x49\x5b\xc7\x4d\xc4\xa6\x6f\x32\x33\x32\x63\xbc\x46\x91\x55\xb0\x1e\xb4\x97\xdf\xc1\xd3\xbf\x78\xfa\x17\xae\x51\x6e\x2c\xf1\xb9\x74\xf1\x5a\xb1\x01\xa2\x0d\xc6\x97\xba\x03\x66\x12\x11\xb4\xa4\x41\xf9\x2b\x6f\x79\x91\x80\x35\xb5\x21\x96\x4f\x3e\x8a\xb1\x69\xc8\x86\xce\x6a\x1d\x62\x55\x23\xd1\xcd\x30\x76\x59\xad\x56\x09\x6e\x32\x33\x14\xf5\x90\x09\xe0\x65\x0f\xc9\x6e\x1a\x77\x50\x20\x24\x6a\x07\x01\x5b\xe5\x2b\xe0\xbc\x78\xf1\x0e\x9e\xfa\xdd\x2e\x3c\x94\xf7\xc5\x54\xeb\xc7\xab\x15\x3b\x20\x24\xcc\xe4\x28\xca\x50\x47\x1c\x35\x97\xdd\x8c\x0e\x03\xb2\x07\x6c\xe0\x3d\x2f\xa7\x3c\xc9\x45\x20\x96\x22\x90\x28\x7a\x99\xd0\xc2\xa4\x53\x35\x87\x88\x73\x33\xfe\x13\xae\x56\x55\x85\x98\xb1\x69\x80\x61\x86\x32\x38\x1a\xaf\x87\xe8\x41\xa0\x1e\xb8\x18\xa8\x14\x2f\x4b\x11\xcd\x1f\x11\x4f\x2a\x81\x95\xe7\x1a\x10\x73\x25\x36\x2c\x6e\xbb\x99\xa6\x70\x91\x9e\x0c\xb9\x86\xc5\x47\x60\xae\x31\xb1\x5d\x1a\xd3\x5a\xe8\x12\x57\xe4\x39\xaa\xd8\xb7\x0e\xa3\x90\xca\x88\xad\x67\x2e\xba\x5b\xad\xd0\x1d\xd9\xbc\x75\xa5\xfc\x7b\x18\x2f\xdf\xfc\x62\x60\x98\x91\x5d\x5b\xd6\x70\xa9\x7d\x2a\x6e\xae\x63\xb8\x53\x56\x47\x2c\x3b\x1a\x10\x37\x14\x2e\xb7\x2f\xa6\xcf\x4a\xa7\xe5\x77\x78\xd7\x3d\x75\x23\xc7\xc4\x09\x2a\xdd\x35\xbe\xd3\x8f\x4e\x7b\xd0\x70\xb2\x03\x5a\x03\x0c\x0c\x1f\x90\x29\x7c\x75\x9a\x74\xe8\x88\xbf\x4d\xf1\xb7\x25\xfe\xb6\xc5\xdf\xce\x08\xe3\x35\x18\xcb\x5b\xd8\x37\xf8\x0f\x36\xc0\x98\xd0\x19\x36\x30\x9c\x57\xb2\x30\xf7\x26\x72\xe6\xa2\x8b\xd5\x0a\x5d\xec\x60\xe0\xfb\x33\xf4\xa0\x7b\x1d\xbe\xc8\xc1\x70\xb1\x71\x39\xb7\xa8\x29\x50\x0c\x88\x92\x8b\x82\x8d\xd6\xa5\x97\xd0\x5f\xbc\x40\x68\x9b\x51\xe0\x4f\x78\x17\xe6\xea\x1b\xe7\x80\x3c\x8d\x81\x0f\xa8\x88\x7b\x36\x06\x6a\x4d\x80\x5a\x14\xa8\x35\xc5\xd8\x3d\xe3\x15\x15\xd5\xc4\x86\xec\x10\xf9\x40\xfe\xa2\x72\x5d\x90\x1d\x8a\xfb\x84\x22\x7d\x37\x68\x22\x77\x83\xe6\xa0\xeb\x92\x13\x8c\x62\x9e\xc8\xa5\x3b\x45\xcc\x4a\x20\xb6\x12\x3e\x9a\xf3\x97\x00\x62\x2b\x90\x5b\x44\xf9\xc6\x10\xc4\xbb\xb7\x88\x34\xb5\xdc\x9a\x13\x5f\xdc\xab\xb6\x12\x61\xde\x0a\xcc\x0a\xe4\x4e\x08\xd3\xb6\x88\xf8\xab\xdc\x06\xc9\xeb\xf4\xee\x9b\xea\x34\xae\xaa\xd3\x78\xa3\x4e\x63\x88\xad\xf1\x7f\xb4\x4e\xe3\x6f\xab\xd3\xa7\x8a\x3a\xed\x33\xae\x1f\x69\x73\x32\xd3\xb6\x81\x4b\x75\xbc\xcc\xeb\xe8\x97\x12\x7d\x59\x47\x4f\xb5\x9b\xcf\xdb\x2d\x51\x75\xf4\x79\x1d\x83\x52\x1d\xfd\xa7\xd6\x31\xca\xda\xcd\xcb\xea\x98\xa0\xd2\x5e\xa7\x5e\xdf\xa0\xa8\x6f\xb6\x50\x20\x66\x0c\xd9\x5e\x1f\x93\x7b\x7d\x6b\x91\xff\xec\xe7\x4f\xe7\x4d\x78\x81\x12\x0c\x2f\x50\x8a\xe1\x1d\x7f\x7a\xc7\x9f\x3e\xa1\x44\x6e\xd6\x7c\x24\x9f\x50\x8a\xf7\x1e\x0a\x92\x72\xf3\x48\x10\x93\xe9\x23\x41\x50\x5e\x3d\x12\x64\x45\xf3\x95\x57\xe9\x73\x4f\x73\x35\x56\x79\x4e\x71\xfe\x48\x90\x96\xe0\x91\x20\x2b\x1f\xff\x9d\x18\x2b\xfe\x14\xa1\x98\x20\x4a\xd8\x80\x5a\x2c\x7a\x75\xbb\x8c\x42\x1a\x32\xdf\x0b\x90\xd8\x1d\xdc\x4c\xc4\xb8\xb0\x76\xa1\x06\xc6\x27\x36\xd6\xc6\xcb\xbd\xc2\x7f\x65\x61\xe5\x92\xc7\x2d\x28\x8c\x47\xc3\xa1\x3d\x32\x43\x05\xd3\xc4\x6e\x08\xa6\x6e\x26\x33\xda\x8c\xed\xa2\x34\x71\x4a\x42\x94\xfb\x5e\x17\x0e\x6f\xf9\x80\x2f\x23\x6a\x44\xe4\xf0\x4f\x34\x70\x91\x85\x07\x68\x78\x72\x4a\xfe\x1c\xf1\x21\x73\x68\x7e\x69\xa0\xfd\x11\x7f\xfa\xee\xbf\xf8\x8f\x8d\x07\x48\xec\x4a\x21\xe0\x4f\x96\x7c\xfe\x1f\x1c\xc0\x6b\xfc\xfd\x6c\x84\x07\xdf\x1d\xfa\xa5\xf3\x8d\x92\xe1\x43\x52\x72\x7a\x92\xe4\xde\x32\x19\x89\xf2\xfd\x26\xcc\xe6\x71\x74\x23\xc0\x5f\xc5\x71\x14\x23\xc3\x0f\xaf\xbd\xc0\x9f\xec\xf3\xd1\xdd\x63\xee\xbe\x61\x2a\xa7\xd1\x4c\x5a\xd7\x4d\xfd\x20\x20\x6c\xe8\x8c\x56\x2b\x63\x5f\xb9\x6c\xf0\x02\x7f\x16\x12\x36\x6c\xf2\xc4\x53\x95\x98\xc8\xb4\x16\x4f\x6b\x64\x69\x62\x9f\x81\xb0\x61\x9b\xa7\xaa\xc4\xbf\x69\x1c\x91\x83\x03\x36\xec\x8c\x64\xc2\x8d\x3f\x61\x73\xc2\x86\xdd\x51\xad\x66\xf2\x1f\x15\x50\x2c\xe2\x9d\x8e\x03\xf6\x54\xca\x32\xa6\x63\x3f\xf1\x23\x5e\x4e\x5f\x02\xf7\x47\xaa\x6d\x32\x77\x13\x2c\xf6\x17\x22\xd3\x91\xca\x24\xec\x39\xd8\xd0\xb1\x05\x09\x6b\x4f\xb3\xf2\x48\xb4\x08\x15\xda\x73\xbe\xea\xad\xb8\xd2\x98\xf3\xc4\x2c\x38\x61\xe6\xf5\x37\xb5\x5a\x9b\x28\xaf\x6d\x1e\xd9\x3c\x33\x47\xce\x6b\x3d\x30\x8c\x22\x58\xaf\x03\xf6\xaa\xf8\x84\xb1\xc2\x20\xf8\x30\x30\x60\x1b\x45\xce\x0f\x8e\xc6\xb0\x4a\x21\x76\x15\xaa\x1c\x24\x47\xc7\x19\x34\x30\xfe\x87\xc4\x96\x73\x48\xda\x82\x08\xcf\x4c\x30\xdd\xf0\x1e\x46\x5d\x5d\x2f\xa4\xc5\xa5\x59\x47\x98\x06\x1f\x87\xe2\x62\x4d\x88\x93\x1b\x9f\x8d\xe7\x88\x0e\xc3\x11\xbe\x1f\x7b\x09\x35\x2c\xc3\xf5\x09\x23\xe1\xde\x65\x4c\xbd\xab\x3d\x91\x66\x1b\xae\x4d\xb2\x48\x41\x21\x86\xe2\xb3\xd2\xe0\x5c\x7f\x8a\xfc\x53\x5b\x4a\xaf\x29\xb0\x89\xef\xfb\x74\xcf\x27\x76\x71\x02\x73\x6a\x0f\x8a\xae\xec\xe3\xbc\x97\x32\xd3\x11\x0e\xe4\x27\x95\xe6\x29\xf2\x45\x18\xae\xe5\x46\x05\xd4\x34\xe4\xa9\xa6\x2f\xb6\x51\x21\x22\xf1\xd0\x29\xd6\x84\x27\xf6\xc0\xb0\x2d\xc3\x2c\x36\x70\x1a\x11\x56\xca\xae\x6d\x60\xd3\x77\xb3\x6b\x6d\xa7\x91\xe9\x0c\xfc\x9c\xa8\xc8\x74\xb0\xc9\xdb\x25\x4b\xe2\x09\xae\xaf\x21\x8a\x1a\x59\x56\xb3\xa9\xa1\x5c\xc3\x92\xdc\x1b\xcf\x8c\x4a\xfb\x20\xe4\xd8\x76\x9d\x62\x8b\x45\x3f\xf8\xb7\x74\x82\x18\x5e\xc3\x65\xd5\x8e\x61\x29\xcc\x7e\x61\xf7\xd4\xc4\x6b\x18\x57\xee\x30\xf2\x99\x0f\x2a\xfd\xac\xed\x40\xe5\xd8\x78\x0d\x3b\xfc\xa9\x6d\x0d\xd9\x7c\x26\xd8\x0d\x5a\xd4\x65\xb6\x1b\xe8\x63\x26\xcd\x02\x30\xfa\x06\x4a\xfb\x9c\xa7\xd5\x88\x27\x92\xa1\x62\x37\x28\x76\x27\x90\x54\x5a\xc4\x3e\x5d\x6e\xc0\x23\x51\x03\xa5\xa4\x55\xcf\xbb\x63\xa3\x5f\x84\xbc\xee\xeb\x81\x37\x22\xe1\x91\x1e\x9b\x0e\x24\xf9\xdd\xc8\xe2\x88\x8e\x90\x64\xe0\xbb\xde\x69\x32\xd0\x65\xc6\x6b\x24\xa6\xa3\x09\x8b\xeb\x9d\xda\x9a\xd0\x79\x65\x91\xf3\xb0\xbb\x21\xbc\x4e\xc3\xd3\xa5\x97\x57\x4c\x1b\x37\x98\xe9\x35\x1c\x8c\x87\xf6\x68\x0d\xbf\x7d\x8b\x28\x74\xf9\xcb\xe7\xe5\x92\xc6\x2f\xbc\x44\xdc\x5c\xbb\xfd\xb6\xec\xeb\x72\xf8\x25\x6d\x6b\x1f\xae\xc9\xd0\xb8\x33\xc0\xf8\xdb\x10\x7a\x14\xd7\x75\x8c\xa5\x01\x46\x68\x80\xf1\xff\xfc\xdf\x06\x18\x0b\x03\x0c\x03\x8c\x2b\x03\x8c\x77\x06\x18\xff\x34\xc0\x38\x37\xc0\xf8\x68\x80\xf1\xca\x00\xe3\x0f\x03\x8c\xdf\x8d\x11\xdc\x6d\x1b\x66\x81\x54\x09\xc4\x25\x3a\xe1\xc5\x8a\x5a\x6c\x1e\xa5\x89\x17\x4e\x12\x11\x2c\x28\xff\x24\xc6\xbe\xfc\x5b\x69\x73\xa8\x58\x39\x97\x9c\xae\x0f\xb3\xdb\x76\x8c\x4b\x47\x4a\xec\x63\xff\xd4\xae\xd5\x12\xfe\x07\xa5\x66\x62\x3a\xc2\x61\xbf\xda\x83\x93\x53\x40\xd8\x48\x31\x86\x28\xf3\x91\x90\xa4\x97\x72\xe7\x1c\xf9\x0d\x92\x80\x6f\x26\x18\xc3\x01\x42\xa9\x49\xb8\x14\x9c\x86\x18\x1f\x63\x5e\x80\x47\x90\x27\x0e\x15\x55\xf1\xc5\xf0\x55\x84\xbe\x91\xad\x1e\xe3\x35\x76\x17\x22\x34\xd5\x38\x8d\x63\x1a\x8e\xef\x44\x7c\xb2\x09\x1d\xfb\x0b\x2f\x80\x80\x50\x2b\x4c\x17\x34\xf6\x82\xe4\x89\x87\x36\xcc\x8a\xe9\x32\xf0\xc6\x14\x1d\x0e\xed\xc6\xd1\xe8\x70\x06\x55\x47\x3b\x43\x93\x8d\xd6\x78\xbd\x46\x45\x01\x9c\x92\x31\xa1\xd6\x92\xc6\x63\x61\x2b\x68\x3c\xd3\x3c\x1b\x4e\x8b\xf3\x58\x44\x85\x0a\x8f\xc5\xe4\x2b\x9a\x42\xcc\xbd\xc2\xcb\x3d\x9f\x7a\x61\xca\x1f\xc4\xcc\x0b\x13\x42\xc5\xbc\x0b\x0b\x42\xe5\x64\x0a\x77\xbc\xb6\x7c\x22\x85\x19\x2f\x2d\x1b\x47\xe0\x92\x48\xab\x6a\xb8\x50\x5e\x7b\xf6\x0c\x71\x8c\x71\x31\x40\x77\xe4\xc0\x86\x0b\xc2\x17\xc9\xee\x72\x78\x31\x5a\xad\xd4\xdc\x3b\xab\xd5\xd0\x8c\x38\x4d\x0c\x97\x05\x08\xa0\xc9\x6a\x65\xd8\x3c\x2f\xab\xd5\x0c\x62\x08\xab\xb5\x5a\x0d\x4d\x38\x0c\x23\x86\x6d\x40\x4c\x0c\x62\x48\xed\xea\x86\x18\xdf\x71\x90\xe9\x20\x1a\xda\x23\xd7\xf8\x2f\xf1\x52\xab\x1d\x0e\x2f\xa3\xdb\xdf\x46\x87\x16\xa3\x09\x43\x17\x98\xab\x0e\xe6\x85\xc5\xa2\xb7\xd1\x4d\xd6\xb3\x5c\xc3\x80\x57\x5a\x7e\x67\xe4\x1e\x0e\x9f\x2d\xb5\x4c\x63\x0e\x72\x4b\x38\xd5\x70\x46\x0e\x87\x13\x3a\x9d\x2d\xe3\xe4\x59\x01\x52\xf0\xf8\x43\xc6\xe3\x08\x3c\x3e\xf9\x93\x1b\x58\x92\x57\x7c\xa0\x33\xc6\x82\x13\x78\x49\x6e\x11\xc5\xe6\x12\x28\x31\x0c\xe1\xc3\x5d\xc0\x7f\x50\xf6\x26\x27\xc2\x01\x3c\x25\xb7\xba\xfe\x0b\x33\x0c\x97\x62\xb7\x78\x2e\x02\x2c\x7f\x10\xa1\x95\x4d\x5a\xab\xa1\x0f\xc2\x06\x7c\x4a\xd0\x87\x81\x81\xe4\x81\x90\xef\x1a\x0d\x83\xff\x23\x62\x5f\x35\x4b\x36\x0c\xd7\xc7\xe6\x14\x96\x04\x19\x89\x6c\x95\xeb\x61\xdf\x4c\x0f\x5b\x23\xa1\xbd\x2c\x4d\xf4\xa1\x56\xcb\xa1\xb1\xd0\x69\xe0\x4c\xd8\x7c\x2b\xc7\xee\xda\x9d\xf4\xe8\xc4\x13\xd6\xb9\xed\xfe\x29\xe2\x22\x37\x9e\x7b\xf1\x8b\x68\x42\x9f\x33\x14\x61\xbc\x5a\x8d\x4f\x3b\x3d\x7c\xbf\x24\xa8\xdd\x25\x84\x8c\x07\x49\xae\x51\x88\x69\x3b\x7f\xc1\x92\x15\x85\xee\x11\x61\xa9\xc0\xac\xd7\x77\xb5\xda\xc1\x44\xd4\x3a\x14\x91\xb3\x6d\xe5\x50\xe7\x39\x99\x66\xd3\x7c\x46\x90\x99\xbb\xa3\xb8\x22\xcf\x4f\x16\x83\x62\x7c\x5e\x34\x9e\xe7\xe3\x3b\xe3\x8d\xbd\xa7\x14\xab\xbb\x5a\x2d\x43\x7e\x65\x52\xb8\xca\x76\xbb\x17\x8d\x0c\x97\xcb\x8b\x84\x2b\xc2\xd9\x10\x2b\x1d\xec\xc4\x70\x29\x99\x9a\xd4\x5c\x9a\x57\xba\x1e\x46\x64\xfa\x15\xff\xa2\xa7\xff\xc9\xd3\xaf\xf2\xca\x3d\x27\x59\x39\xa7\xa7\x0e\x36\x15\x22\xf5\xf9\x39\xde\x50\xdd\x28\xb9\x92\x20\x99\x96\x26\xbc\x96\x66\x76\x6a\xea\xe2\xc8\x6c\xd0\x75\x0f\x87\x5c\x20\x35\x91\xd5\x86\xc0\x7c\xaa\x6c\x3a\x30\xc3\xd8\xdd\x0c\xc6\x26\x3e\xd9\xfc\x13\x7c\x78\x48\x57\x97\xfa\xcc\x07\x55\xfc\xbd\x5a\xe1\x4c\x41\x3e\x7c\x8c\xe9\xd4\xbf\xad\x9c\xeb\xa7\x08\xe5\xc3\x8d\x58\x28\xf0\x09\x87\x4b\x71\xf8\xa4\x49\xdd\x47\x0c\x8b\x79\x3d\xf3\xfe\x90\x05\xf4\x12\x0e\x1f\xb8\x04\x87\x87\xad\xca\x83\xab\x6c\xd7\x01\x45\x75\x8a\xcd\x64\xbd\xd6\x4f\x3f\x66\x1a\x44\x40\xee\x78\x27\x1b\x93\xc0\x92\xb5\x11\x5e\x22\xf4\x8a\x41\xb0\x9e\xa1\x7b\x35\xa6\xf3\xc5\x01\xe4\x53\x97\x6b\x80\x01\xd9\xac\xe6\x0e\x5b\x23\xc8\xe6\x01\x77\x68\x7c\xc7\x67\xd2\x91\x32\x37\xb9\xdc\x19\xc3\x4b\x36\x47\xc3\x2f\xaf\x79\xd7\xa5\xb0\x7e\x9a\x8e\xa5\xe5\xf9\x26\x0e\x6e\x17\xb0\x79\x30\x5d\xb6\x60\x53\x83\x0f\xd3\xc2\xa0\xe1\x46\x49\xbf\xe1\xa8\x1b\x3e\x47\x66\x3a\xb9\x15\xaf\x64\xdc\x4b\x29\xc4\x6f\xa3\xb1\x57\x6d\xd9\xa9\x87\xb4\x15\x39\x1e\x31\x11\xd5\xdb\xe3\x91\xdd\x1d\x09\xba\xbb\xe8\xbb\x4d\xd0\xb3\x25\x1d\x0b\xeb\xe8\x47\xac\x8a\xf3\xa9\x4e\x28\xd8\x8f\xd8\xab\xe6\xc0\xbb\x69\xbe\xa8\x80\xfe\xc4\xd5\xb9\x1d\xdb\x5b\xdf\xb2\xfd\x13\x23\xbb\x6c\x20\x28\xd6\x80\xf6\x09\xa1\xd6\x1d\x57\xcc\xee\x4e\x1c\xdb\xce\x14\x82\xec\xb8\x1f\x35\x1c\xa0\xd6\x42\x6d\x34\xbf\x06\x6a\xbd\x03\x6a\x9d\x01\xb5\xde\x6a\x16\xf7\x09\x65\x3f\xa4\x41\xf0\x3b\xf5\x62\x44\xad\x3b\x0c\x4c\x77\x93\x21\xf0\x50\xeb\x6e\x27\xa2\x62\x5f\x25\x7a\x22\x55\xfc\x8f\xf5\xf9\xfc\xc5\x43\xe4\x95\xe9\xfb\x7c\xfe\xe2\x31\x12\x73\xa4\x0f\xd1\xaa\x11\xab\x6d\x11\xdd\xdf\xb9\x14\x16\xae\x0d\x13\xd7\x81\xd7\xae\x0d\xef\x5c\x1b\xce\x5c\x1b\xde\xba\xf6\x7a\x63\xdb\x28\xb3\x80\x9b\x78\x8c\x9e\xfb\x0b\x2a\xd4\xad\x89\x38\x93\xe3\x5a\x12\x4f\x49\xa5\xce\xe6\x47\x93\x44\x28\x8c\x13\xef\x2e\x11\x8a\x5c\x32\x8f\x62\xf6\x92\xbf\x71\x85\x6c\x11\x85\x6c\x9e\xc0\x3c\xfb\xf0\x4e\xbe\x2f\xc9\x25\x4a\x31\x2c\xc8\x05\xff\xb9\x26\x97\x28\xc0\x70\x47\x2e\xf8\xcf\x8c\x5c\xa2\x31\x86\x5b\x4a\x2e\xf8\xef\x19\x25\x97\x68\x8a\xe1\x03\x7f\x9f\x62\x78\xce\xdf\xe7\x18\xae\xf8\xfb\x1c\xc3\x39\x25\xf7\x5e\xd5\x42\x63\x3c\x14\x77\x3c\x5e\x7a\x77\x08\x8f\xd6\xf0\xbc\x0a\x26\x28\xc3\x54\xae\xa2\xe7\x12\x46\x50\x2e\xa0\xfe\x51\x69\x91\xb4\x09\x35\x76\xc5\xe9\xda\xc4\x7d\x0d\xd4\x7d\x0d\x53\xf7\x17\x78\xed\xfe\x03\xde\xb8\x9f\xe1\xab\xfb\x2b\xbc\x75\xff\x82\x85\xfb\x3b\xbc\x73\xff\x59\x5a\x97\x16\x36\xe9\x43\x53\x5e\x67\x79\x1d\xa5\x71\x82\xf0\x29\x57\x38\x47\x6b\xf8\xd9\xbd\xa1\x90\xb8\xaf\x28\x9c\xb9\x3f\x41\xea\x7e\x07\x9f\xdd\x9f\xe1\x17\xf7\x37\xb8\x71\xff\x80\x5f\xdd\x1f\xe1\x56\x96\xfc\x9b\xfc\xb9\x73\x29\x85\xdf\x5d\x46\xe1\x0f\x37\xa6\x60\x3c\x33\xdc\x0b\xba\x86\x17\x8f\xb0\xed\xf3\xf9\x8b\xa7\x70\x4e\x03\x7b\x88\x79\x9f\xcf\x5f\x3c\x8d\x7f\x25\xc0\x9c\x85\x21\x05\xca\xff\x4c\xdd\x94\xc2\x6b\xd7\xa7\xf0\xc6\x8d\x28\x7c\x75\x3d\x0a\x6f\xdd\x84\xcb\x75\x40\xe1\x9d\x3b\xa6\x8f\xf0\xf2\xf3\xf9\x8b\x07\xd8\x39\xa5\x90\xba\x73\x0a\x9f\xdd\x09\x85\x5f\xdc\x25\x85\x1b\x77\x41\xe1\x57\xf7\x9a\x6e\x31\xf5\x8e\x33\x75\xc6\x99\x7a\x59\x30\xf5\xdd\x06\x53\x4b\x4e\x29\x95\x91\x5f\xb6\x95\xac\x39\xb7\x1b\x20\x6a\xdd\x90\x5b\x3a\x0c\x87\xf6\xa8\xac\xea\x8f\x20\x36\x45\x6a\x66\x57\xd4\x70\xca\x0d\xa2\x17\x71\xfd\x58\x11\x77\x4f\x2d\xe1\x72\x47\x09\xcf\xe9\xc3\x45\x2c\xc8\xd5\x93\x6b\xf1\x8f\x1d\x65\x9c\x3d\x5a\xc6\x87\x27\x97\xa1\x6f\x73\x49\xbb\x11\x85\xe9\x2b\xcd\x4d\x49\xd6\x30\x71\xdf\x01\x75\xdf\xc1\xd4\x7d\x03\xaf\xdd\x8f\xf0\xc6\xfd\x08\x5f\xdd\x4f\xf0\xd6\x7d\x0f\x0b\xf7\x05\xbc\x73\xbf\x6e\xec\x1d\x15\xd4\x2e\x1f\x26\x76\x49\x16\x4f\xa5\xf5\x67\xf7\x07\x48\xdc\xbf\xe1\xcc\x7d\x09\xa9\xfb\x0a\x3e\xbb\xb7\xf0\x8b\x7b\x06\x37\xee\x0d\xfc\xea\x7e\x80\xb2\xaa\xba\x59\x97\x58\x24\x95\xb7\x6c\x4a\x26\xfe\x02\x2a\x91\x8e\x37\xe0\xce\xbd\x82\xdf\xdd\xe7\xf0\x87\x7b\x2e\x84\xf7\xad\xa6\x66\x7e\xa2\x3b\xef\x4d\x5c\x17\xa1\x88\xc9\x70\x24\xa2\x11\x43\x4a\x6c\x31\x01\xe8\xb1\xed\x36\xcd\xf5\x56\x2b\x54\x98\xe7\x21\x33\x56\xe1\x7a\x83\x63\xdc\xea\x09\xef\xb8\xda\x52\x2c\x11\x1e\xc0\xf2\xed\x0f\xc1\xd5\x54\xb8\x85\x54\x61\xe2\x7c\x32\x19\x86\x2a\xcf\x73\x86\x4c\x33\xc1\x23\x3c\xd8\x48\x71\x7d\x62\x08\x23\x83\x70\x20\x6c\x80\x6c\x03\x50\x24\xdc\x18\x4b\x93\xdb\x08\xc5\xe0\x63\x0c\xaa\xa0\x10\x43\x2a\xf6\x53\xf2\xbd\xb7\x2a\x02\x3c\xcd\xc0\x21\x67\xd7\xc7\x87\xd9\xe5\x43\x02\x29\xf1\x90\x73\x64\xdb\x62\xf7\xf0\x2b\xc7\x46\x21\x16\x16\xc1\x36\x3e\xc8\xdd\x6a\x94\xce\xaa\xf8\xea\xfb\x67\xc3\x0f\xf7\x53\xbc\xa9\x03\xa4\xd6\xcf\x02\x91\xb1\x14\xdf\x6b\x35\x94\x5a\xaf\x49\x6a\xbd\x7e\xe6\x34\x4d\xa7\x59\x4f\xad\x25\x06\xe3\x17\x99\x99\x6b\x2a\xa9\xf5\xcb\x89\xb3\x5a\xa5\xd6\x2f\xa7\x9d\x56\xa9\x14\xe3\x46\x40\xad\x56\x28\xb5\x6e\x88\x83\xc1\xf8\x43\x24\x0c\x50\xc2\xf9\x1c\x21\x0f\xa5\xd6\x1d\xc6\x58\x1f\xea\xc1\x27\xc9\x69\x7b\xb5\xb2\xc5\xf6\x64\x68\x2d\x65\xf8\x4d\x1f\xbb\xf9\x79\xee\x12\x23\x5f\x7a\xe0\x0d\xac\x68\x3a\x4d\x28\x43\x3e\xf4\xea\x9c\x92\x86\x83\x31\xa4\xd6\x1d\xf1\x15\xce\x5c\xe5\xe1\xc9\x8b\x3c\x59\xcd\x02\x90\x5a\x93\x3c\x4d\x54\x1f\x9b\x9c\x58\xb3\x8b\x9f\xf5\xb0\x2b\xe9\x64\x25\x3a\x2b\x89\xa4\xdb\x44\xd2\x9c\x48\xef\x61\x22\xab\x28\xdc\x22\x6f\x8b\x36\x69\xc2\x65\xfc\xaa\x38\x6c\x7c\x96\x0d\x52\xab\xa1\x32\xd7\x8d\x54\xb2\x3c\xb5\xd2\x67\x3d\x57\xc1\x0f\x1c\xd7\xe6\x6b\xc5\xac\x3d\xf2\x96\xd0\x1b\xc2\x65\x7a\xaa\xac\x36\x27\xd0\x16\x54\x65\x98\x72\x8a\xcc\x5e\x3d\xb5\x7e\x6d\xa0\xc4\xec\xe0\x67\x3d\x97\x27\xf3\x94\xcf\x3c\x45\x50\xac\x64\x3f\x97\x81\xd4\x7a\x6d\x92\xd4\xfa\xe3\xd0\xb1\xed\x15\x47\xfa\x4e\xbc\x3e\x73\x6c\x1b\x22\x94\x62\x4e\x40\xaa\x77\x05\x6d\x50\xbd\xd7\xdc\x8e\x65\x7b\xa0\x85\xd7\xd4\x58\x77\x3e\x26\x83\xe0\x9e\x92\x4c\xd2\x65\xa4\x4a\x31\x30\x08\x33\x73\x6d\x6c\xf0\x4c\x13\x63\x01\x9f\x7d\x50\x89\x70\x80\x22\xf2\x8e\x0e\xfd\x7d\x3f\xdc\x9f\x0c\x4a\xdf\x5c\x7f\x84\x57\x2b\xd1\xe7\xe5\x1c\x50\x9c\x0b\x37\x1c\x69\x65\xc5\x11\xf2\x8e\xa8\x15\x15\xf2\xa2\x72\xa8\xac\xd3\x64\x0f\xe7\xd4\xba\x25\x9f\x28\x8a\xe1\x9c\x72\x15\xd4\xfa\x8d\xbf\x25\xd9\xdb\x98\xbf\x31\xf1\xf6\x22\x87\x7c\x21\xdf\x14\xa4\x7a\x53\x90\xfc\x2d\xdf\x9f\xd8\xdc\xa1\xe6\x20\xf2\x02\xc1\xb9\xe6\x06\xe4\xc1\x8d\x8f\x35\xb0\x35\x2c\xbd\x38\xa9\xf2\xe5\xff\x31\x43\xe7\x7f\x0b\xb6\x94\x8d\x7f\x78\x94\xc0\x17\xdf\x44\x60\xca\xc6\x1f\x1f\xa0\x51\x77\x39\xf7\x28\x32\x69\x71\x96\x9f\x5f\xc2\x84\xdc\x8b\x2d\x45\x03\x2e\x5c\x63\xdf\x00\x9b\xcf\x01\x6b\x58\x92\xc3\x3f\xbf\x24\xf5\x2f\x13\xf3\x10\x16\xe4\xf0\xcf\x67\x87\x70\x4d\x0e\x87\x5f\xbe\xfc\xf9\x5d\xdd\x1c\xac\x86\x5f\x46\x08\x5b\xf7\xeb\xd1\xe1\xac\x98\x10\xef\xca\x33\x3e\x3d\xb1\x07\x0a\xb5\x4f\x50\x38\x68\x50\x97\x62\xd3\x30\x34\xef\x96\xb9\x0a\x60\xa2\xe8\x24\xd6\xb6\xf6\xe2\x46\xa4\x6d\xed\x99\xbe\xeb\x6b\x8b\xb5\x59\xc9\x92\x35\xdb\x50\xbf\x06\xe3\xcb\x97\xef\x6a\x7a\x24\x92\xcb\x8d\x83\x7f\x75\x77\xc5\xf8\x13\x0d\x5c\xc3\xa4\xc2\x1f\xc8\x2c\x3b\xe2\x59\x19\xd8\x14\xc6\x56\xbe\xb1\x19\x6a\xa5\xf0\x62\x70\xbf\xce\x0c\xfe\xe8\x86\xc1\x1f\x1b\xd2\x61\xbc\xa9\xbe\x90\xb8\xf0\x02\x90\xa3\xbc\x79\x58\x31\x02\x11\xed\x6c\x43\x21\x15\x5a\x50\x85\x32\x94\x23\x7d\xf5\xcd\x48\xd3\xc7\x91\xde\x3e\x8a\xb4\xb9\x81\xf4\xf3\xe3\x48\xcf\xbe\x19\xe9\x2f\x8f\x23\xfd\xf0\xcd\x48\x7f\x7d\x1c\xe9\xf3\x47\x91\xb6\x37\x90\xde\x3d\x8e\xf4\xea\x9b\x29\x55\x48\x4d\x24\x7e\x4e\xbb\xfd\x01\xd7\x91\xdc\x26\x6d\xe1\x87\x0a\x3a\x2f\x17\x74\xf8\x27\xfa\x03\xaf\xd0\xd0\x6c\x8c\xbe\x4c\xbe\x4c\x30\x1a\xb8\xee\x00\x89\x47\x3c\x38\xdc\xa6\xa2\xbb\x41\xc5\x1f\x24\x1c\x3a\xa3\x81\xed\x36\x50\x38\x6c\x8e\x4c\x14\x4a\x0b\x16\xdb\x36\xf0\x83\x74\xbc\xf8\xe6\x0a\x2f\xc4\xc5\xac\x86\xf3\x10\xd6\x77\xdf\x8c\x75\xf2\x78\xdb\x7c\x7a\x14\x69\x6b\x8b\x54\x1b\x9e\x84\xfa\xe3\x37\xd3\xfb\xfa\x71\xa4\x5f\xbf\x19\xe9\xbb\xc7\x91\xbe\xfc\x66\xa4\x67\x8f\x23\x7d\xff\xcd\x9c\x7d\xfb\x38\xd2\x37\x8f\x22\xdd\x14\xe2\xb7\xfa\x5d\x54\x8e\xf7\xd0\x79\xa4\x17\xbd\x2d\x97\xb1\x78\x64\x5c\x2d\x61\x2a\x21\xfa\xe1\x9b\x96\xc3\x3f\x3f\x5e\xfb\xbf\xbf\x11\xa1\x43\x5b\xf5\x47\x91\xbe\x2e\xad\xd1\xee\x10\x2d\x54\x76\x60\xd0\xd4\x26\xc6\x7f\x54\x41\xaa\x3d\xa3\x0d\xd0\xcf\x0f\x80\x3e\x73\x9a\xab\x95\xd3\xdc\xc8\xf1\xeb\x46\x0e\xc7\xe4\x8b\x8f\x71\x94\x86\x0c\xe5\xeb\x92\x2b\x8c\x28\x06\xca\x4b\x6b\x69\x79\xff\xaa\x2a\xed\x9d\x1f\x04\x7e\x42\xc7\x51\x38\x91\xf4\xe9\x39\x7e\x29\xe5\x90\xf9\x4d\xc3\xb6\x6d\x2d\x1a\xd8\xef\x95\x58\xe5\xe2\xc6\x74\x36\xc8\xff\x67\x35\x09\x61\xca\xe8\x36\x77\x7e\xaa\x02\x3e\xd3\x48\xd5\x81\xbf\xd3\x77\x9d\xb3\xc5\x4c\x29\x4c\xfa\xa0\xe7\x6a\xba\xc6\xcf\x1b\xc8\x43\x6b\xfe\x00\x1b\xf5\x92\x7e\x2b\xbb\x2a\xda\x2c\x8b\x92\xf8\x94\xa8\x75\x63\x3c\xc8\x91\xf9\x1c\x99\x1b\x5a\xbe\x5c\x46\x52\x0c\xbc\x4c\x7f\x57\x99\x26\x6a\x13\x42\xca\xc9\x79\x51\x9b\x14\xfd\x51\x52\xfb\x32\xa8\xe2\xfb\x8f\x5b\x75\xa5\x4f\xac\x2b\xa5\x55\x6d\x50\x2c\x67\xc5\x4a\xae\x9c\x85\x3d\x9a\x85\xb6\x81\x41\x5b\xcb\x12\xd3\x8d\xc6\x3b\xf7\x17\xf4\xef\x28\xa4\x1f\xe4\xa2\xba\x08\x4e\x7b\x2a\x15\x67\xc4\xea\x5c\xd7\x34\x4c\x03\x63\xf3\x0e\xb1\xc3\x2e\x5f\x5e\x1a\xb6\x01\x4d\xf1\xfe\xac\x9b\xbd\x15\x85\x84\x95\x74\xe5\x7b\x02\x1b\xb5\xf0\x77\x41\x57\x77\xe4\xe8\x11\xf0\xea\xce\xec\x6d\xe6\xe2\xbd\x39\xd8\x6c\x9a\xeb\xea\xde\x9c\xec\x2a\xf2\xc1\x1e\x9d\x96\x73\x29\x24\x9b\x7d\x3a\xd8\x89\x7b\x47\xbf\x1e\xef\x26\xa6\xba\x6f\x4f\x77\x65\xd8\xd5\xbf\xe7\x9b\x32\x92\xed\x61\x3c\xd0\xc7\x27\x9b\x85\x84\x56\xf2\x00\x77\xf5\xe2\x96\x74\xab\x97\x6f\x16\xb8\xa3\xa3\x33\xd5\xd1\x59\xa9\xa3\xb3\x5d\xe5\x6e\x74\xf4\xeb\xac\xa3\x67\xa5\x6d\x12\xb6\xa0\x9b\x9d\x3d\x83\xd4\x82\xa6\x6e\xd7\x7b\xf9\xc4\x7a\xdf\xed\x6a\x97\x07\xfb\xfc\xec\x29\xb9\xb6\xba\xfd\x25\xcd\x57\xe0\x86\x69\x97\x25\xf0\x42\xfb\xf6\x4c\x4b\xbf\xd1\xaa\x6f\x52\x6d\x95\x47\x37\xcd\x0b\xa4\x2a\x63\x52\xa1\xc8\x68\x2b\x37\x1d\x30\x95\xf7\x53\x02\x92\x66\x36\x10\x63\x92\x5a\x62\xd7\x43\xc4\x69\xcb\x77\x2c\x60\x2e\xdf\xc4\x66\x03\xa4\xeb\x5b\x8a\xee\xb3\xa3\x4d\xd7\x78\x76\x0b\xfb\xcf\x7e\x33\x80\xa7\xb8\xc6\xb3\xc6\xe2\xf0\x59\x63\x72\xf8\xec\x77\x03\x98\xfc\xde\x78\xe3\x3e\x7b\xe7\x3e\x3b\xdb\x7f\xb6\x34\x40\x9d\x79\xba\x43\xe3\xf9\x3b\x03\x8c\x8f\xef\x8c\x11\x4c\xbc\x3b\x9e\x70\x96\x86\x13\xef\xce\x00\xe3\x5d\xa4\x1e\xce\x53\x9a\xc8\xa7\x5f\xe9\x24\xcc\x9e\xcf\xe7\x69\xac\x1e\x7f\x88\x7d\xf9\x70\xe6\xb1\x34\xe6\x8f\x23\xc8\x0f\x50\x25\x4a\x89\x4f\x22\x93\x88\x24\x0a\x99\x5b\x66\x35\x46\x20\x0f\x5a\xdd\xa1\xf1\xa3\x17\xa6\x5e\x2c\x90\xd3\xcb\x58\x3d\xbe\xf3\xe2\xf1\xdc\x00\xe3\xf9\x32\xf6\x03\xf1\xce\x53\x7f\x4c\x43\x2a\x7e\x02\xfe\xf6\x3c\x9d\xa5\x09\xe3\x08\xe9\x92\x51\x71\x77\x1f\x8c\x0f\x63\x16\xc9\xa7\xf7\xd1\x75\x96\xf8\x92\x8e\xe5\xa3\x22\xf6\x9d\x56\xb6\x2c\x57\x16\x29\x0b\xd4\x8b\x93\xa5\xc9\xc2\x64\x49\xb2\x0c\x89\x5f\xa2\xce\x8d\x4f\xce\x28\x11\xe7\xdd\xba\x5d\xfe\x9b\xb3\x0f\x72\x1f\xa8\xca\x30\xb1\x04\x80\xf0\xda\x9d\x22\xe3\xd9\xef\x8d\x67\x8b\xc6\xb3\xc9\xf9\xb3\xd7\xb2\x15\xad\x67\x6f\xff\x30\xc4\x71\xb2\x99\x6f\xa9\x1b\x4d\xdb\xb6\x1b\xb6\xd3\xb0\x9d\x73\xdb\x76\xc5\xff\x96\x6d\xdb\x7f\x18\x78\xb0\xbd\x37\x55\x18\x0c\x14\x37\xca\xb3\xcb\xf1\x61\x1a\x04\x2e\x5b\xbb\xf3\x9d\x25\xef\xe5\x91\xfd\x17\xf4\x87\xa7\x99\x9d\xdc\xea\xce\xc2\xf2\x6c\x8f\x5c\xc7\xe1\x80\x42\xe0\x1f\xb1\x51\xc9\x7b\xc9\x23\x06\x2a\x59\xff\xa9\x02\x9b\x57\xd1\xb7\xbb\x3e\x49\x01\xee\x27\xd1\xee\xd2\xcf\x68\x09\x70\x67\xf1\x1f\xe8\x1a\xaf\x01\xe0\x29\x5e\xcb\xb4\xdc\x85\x9e\x84\x36\xe2\xf2\xda\xc7\xf1\x49\x11\x48\xc3\x34\x73\x6f\xfa\xc3\x78\xb4\x17\x5a\x54\x1a\xaf\x5e\x06\x94\xe8\x2f\xab\xd5\x81\x03\xc2\x21\xfa\xd4\x9f\xa5\xf2\xfb\x81\x0d\x86\xf0\xb0\x60\xf8\xe1\x7e\x28\x82\x9f\xdd\xc4\x3e\x53\xdf\x30\xc8\x11\xdd\x92\xf1\xfe\x74\x0f\xfb\xd6\x15\xbd\x83\x10\xaf\xb7\xee\xae\xb3\xd2\x39\x66\x5c\xab\x51\xc4\xb4\x6b\x2c\xb1\x08\x6c\x44\xc5\x25\x62\x60\xeb\xb5\x38\x0a\x19\x0e\xef\xc7\x51\x10\xc5\xae\x61\xc3\x3e\xff\xdf\x90\x7e\xe2\x5d\xc3\x0b\x13\xbf\x71\x19\x78\xe3\x2b\x63\x0d\x19\x90\xd3\xef\x55\x81\xc5\x74\xa2\x01\xd9\xb0\x2f\xe1\xca\x40\xb3\x98\xd2\x70\x13\x57\x15\xe0\x1d\x0d\x82\xe8\xa6\x8c\x50\xe2\xdc\x24\x2e\xa5\x15\xb4\x6d\xc1\x2d\xbc\x19\x0d\x99\x57\x41\xe1\x16\xe8\xf8\xce\xd3\x49\x6c\x76\x3a\xa0\xfe\x95\xe1\x6e\xe6\x3e\xa3\xc6\x7a\x04\x39\xfb\xfa\x1d\xd8\x97\xff\x36\x88\x8c\xfd\xd9\x9c\x6d\x31\x92\x63\x7d\x08\x7e\x8b\xa3\x22\xc3\x66\xeb\x48\xd8\x4d\xc6\x0a\x50\x55\x40\x65\x86\x2d\x06\x67\xc4\x6f\xd5\x33\xa7\xbe\xc4\xe9\x9c\xf8\x5d\xf0\xdb\x1c\xef\x67\x24\xed\xca\x52\xc1\xf9\x87\x33\x64\x4d\x30\xd2\x3d\x62\x97\xba\x2e\xbe\x3f\x28\x1b\x04\x4a\xff\xbb\xfa\x11\x34\xd3\xaf\xbd\x9d\xdf\x2d\xa9\xba\xfa\xf6\xc2\x0b\xc3\x88\xed\x8f\xbd\x20\xd8\xf7\xf6\x45\xe9\xfb\x5e\xb2\xef\xe5\x9d\xcd\xc0\xeb\x2c\x06\x80\xbc\x4b\x36\x9d\xc9\x8b\x57\x97\xea\x77\x3a\xbb\x60\x71\x4a\x45\x75\xb2\x2f\x5a\x8a\x74\xff\x20\x92\x45\x75\x48\x1e\x0d\x21\x54\x11\xd1\x61\x78\x7f\x45\xef\x5c\x83\x26\x63\x6f\xc9\x07\xce\xd7\x6c\x11\x18\x2a\xce\x6a\xd1\xe7\xf3\xab\x3f\xbc\x06\x14\x5b\x25\x70\xc4\xf0\x7a\x0d\x12\x4f\xe0\x87\x57\xfe\xf4\xee\x71\x0c\x0a\x50\xcf\xcb\xf9\x7e\x1e\x55\x13\x50\x18\x12\x64\x08\x0a\x68\x24\xbd\xfe\x95\xb0\xfc\x98\x70\x9d\xe5\xa9\x58\x38\x74\x15\x96\x73\x7a\xcb\x1e\xaf\x4a\x01\x2b\x6a\x33\xc2\xc0\xb9\xab\x18\x9b\x50\x96\x2e\x3f\x7a\x01\x65\x8c\x6e\xa1\x52\xde\xa1\x3f\x3e\x7f\xfb\xea\xfc\xfc\xd5\xc5\x8b\x0f\x6f\x3f\x7c\x3a\xcb\x7c\x76\xa9\x48\x4e\xc7\xf4\xa4\x79\x6c\x9a\x14\x17\xa7\x25\xf6\x31\x3b\xe9\x8b\x50\x52\x15\xd9\x95\x8b\x86\x21\x1d\x0d\xd9\xc8\x12\x72\xa0\xfb\x9d\x1d\xda\x70\xd4\x01\xa7\xd5\x01\xa7\xd7\x81\xa6\x23\x86\x9d\x11\x94\xaf\xbe\xea\x03\xfc\x90\x8e\x4c\x03\xf6\x0d\x33\x1e\xb2\xfc\x29\x1c\xad\x55\x2c\xb1\x6e\x39\x0a\x27\xb1\x8f\x3d\x91\xe6\xe5\x69\x32\xc4\x5c\x57\x44\x7e\xdb\x49\xaf\xf0\x89\x02\x89\x16\x2c\x33\x25\x7d\x15\xd5\xb2\xd9\x3e\x36\xcd\x00\x52\x93\x38\xf6\x43\x18\x52\x48\x21\xc5\x45\x1b\x3e\x2c\xd3\x55\x67\x5d\x87\xc3\xda\xc9\xe9\xe8\x70\xb6\xa8\xf0\x3e\x68\xd4\x0c\x42\xe8\xc0\xa8\x79\x8b\xe5\xb1\xe1\x1a\x27\xea\x35\x60\xfc\xed\x54\xbd\xcd\xc4\x9b\xb1\x7e\xbc\x47\x54\x96\x8f\xe6\x8c\x2d\x93\x81\xfb\xe5\xf0\xcb\xe1\xf0\xcf\x2f\xc9\xc8\xc4\xd5\xd4\x7c\x7f\xe2\xed\xcf\x63\x3a\x25\xc6\xf7\x26\x35\xbf\x37\x4e\xf9\x8f\x71\x72\xe8\x9d\xea\x65\x3f\xd0\xa3\xb6\x5c\xc6\x2f\xe3\x68\x4c\x13\xe1\x82\x14\x0e\xec\x27\xf5\x27\xfd\x4e\x20\x23\x6c\xb5\xba\x5f\x63\xeb\x6b\x12\x85\xe2\xc6\x89\x35\x0e\xa8\x17\xbf\xf5\x43\x4a\x0e\x1c\x78\x42\x19\x95\xbd\x8d\xee\xa2\xf2\x7e\x0d\x07\x4e\x81\x42\x7d\xa8\xa2\xb1\x1c\xf0\x51\x5e\xd8\x91\x01\x0c\xbe\xd8\xad\xd6\x97\xe1\x21\x16\x47\xa7\xc9\xdc\x9f\x32\x94\xc5\xc9\x91\xce\x9b\x85\x13\x28\xad\x22\x87\x5f\x62\x75\x63\x40\x5d\x52\xf6\x88\xbf\x15\xfe\x20\x1b\x62\x33\x62\x5f\xcc\xd3\x30\x3b\x9e\x5a\x0b\xd3\x19\x56\xab\x31\xc1\xa8\xcc\x7b\x8b\x5e\x37\x01\x2e\x46\x24\xc3\xd0\x7c\x9b\x8c\x55\x8c\x94\x08\x12\x8d\x20\x8d\x38\xf0\xac\x34\x94\x95\x48\x38\xd5\xd2\x45\xc8\x85\x88\xf1\x26\x42\x00\x7b\x96\x0c\x5d\x5b\x41\xec\x01\xb5\xfc\xe4\x15\x87\x44\xc2\x01\x5f\x1e\x64\xae\xc0\x19\x95\xed\x8f\xca\x6c\xcf\x69\x7e\x98\xff\x88\x91\xeb\xc8\x9f\xa8\xdd\x96\xfb\xb5\xcb\xb0\x95\x26\xf4\x42\x06\x0d\x4a\xd4\xc7\x03\x42\x98\x9e\xcc\x99\xa5\xbd\x0a\x0f\xa6\x57\xf4\x8e\x84\x03\x15\xc7\xdf\x35\xc4\x30\x67\x80\x27\xfc\xe6\x73\x36\xb9\x14\xa6\x33\x69\x2b\x79\xa9\x7e\xf5\xb9\x32\xfb\xb2\x99\x92\x33\xd3\xd5\x19\x3b\xa1\xe3\x28\xf6\x78\x75\x24\xd4\x8d\x97\x5c\xa8\x8a\xd3\x89\x7b\xe0\x80\xe2\x5d\x45\x24\x3d\x2f\x6b\xb7\xf5\x5a\xd8\x2e\x0b\xff\xd9\xe8\xf0\x4f\x34\x3c\xf8\x72\xdb\x1a\x37\xbe\xdc\xb6\xa6\xa3\x3a\x46\xc3\x2f\x93\x63\xf9\x7b\xdb\xb4\x1b\x5f\x6e\x9b\xe3\x51\x7d\xf8\xe5\xb6\xcd\x9f\x7b\x74\xc4\x3f\x24\x5f\xce\x46\x75\x7c\xb8\x90\x77\x40\x93\x3c\x1e\xe0\x5e\x5e\x06\x49\x86\xed\x91\xbc\x47\x4d\x92\x61\x73\x94\xb9\x81\x39\x96\x31\x97\x0c\xe3\x80\x90\x44\xde\xa4\x5f\xc8\xe7\xd6\xa8\x40\x53\xba\x59\xea\x89\x71\x58\x88\x65\x51\x7b\xa1\x4f\x1c\x67\x2e\x79\x4e\xed\x63\xd9\xae\x01\x49\xb3\xce\x03\x63\x22\xf6\x3f\xde\x84\x0c\x05\xa2\x50\xb9\x32\x1d\x63\xb9\xd3\x35\xc6\x95\x6a\xcc\x46\x11\x7b\x99\x51\x8c\x53\x64\xd1\x40\x8c\xcb\x28\x98\x18\x39\x50\xb3\x1a\x68\xe2\x2f\x0a\x98\x56\x25\x88\xcf\xbc\xc0\x1f\x17\x50\xed\x4a\xa8\x34\x9c\xd0\x38\xf0\x43\x5a\x00\x76\xaa\xc9\xe2\x43\x7d\x01\xd4\xab\xa6\x4b\x5d\x86\x2c\xe0\xfa\xd5\x70\x73\x7f\x32\xa1\x61\x01\x76\x54\x0d\xc6\x57\x97\x57\x94\xab\x97\xe9\x6c\xae\x55\xf8\x48\x67\x76\x89\xa9\xed\xe2\xd3\xe5\xc6\xa7\xf1\x29\x69\xd9\xb5\xda\xf8\xa4\xd5\xcf\xf3\xfa\x43\x7b\x34\x1c\x3f\x73\xec\xd1\x30\x1a\xe9\x90\x47\x02\xf2\x48\x87\x74\xaa\x21\xdb\x02\xb2\xdd\xcf\x0b\xdd\x89\xd3\xb1\x05\xa8\x63\xeb\xb0\x55\x58\x5b\x82\x6b\xab\x55\x5b\x72\x4f\x05\x66\x96\xa9\x7b\xc2\xe6\x50\x09\x29\x71\xe4\xc7\x79\x21\xa4\xa2\x2f\x74\x84\xb3\xbf\x5a\x6d\x0b\x70\x52\x48\x70\x9e\x43\x64\x99\x88\xa0\x35\x93\x13\xd2\xec\x74\xb0\x3f\x45\x6a\xf0\x5e\x92\xc9\x29\x71\xba\x03\xb9\x6c\x58\x4a\x4d\xaf\x61\x98\x13\xd7\x1f\x4e\x4e\x7b\x03\xc7\xb5\x47\xc3\xc9\xb3\xfe\xc8\x12\x83\xd5\xde\x74\x90\xf1\x6b\xe9\x66\x75\x5c\x4a\x33\xb0\x0a\xdd\x46\xc5\x38\xd6\xb5\x48\x84\xa1\xc0\x51\x91\x65\x38\x19\xb9\xa5\xde\xb5\xf5\x39\x37\x3a\x33\x9a\x5b\x5c\x68\xc9\x5a\x2d\xaa\xb8\x00\xd7\x95\xa9\x77\xbb\x38\xb6\x10\x1c\x5b\x08\x8e\xd5\x6a\xd7\xe2\xed\x5a\xbd\xdd\x89\xb7\x3b\xc9\x4d\x51\xe4\x8c\x2c\xa4\x7a\x79\x2d\x7f\xee\xf6\xc2\xc1\x74\x80\xb2\x9a\x4a\xfe\xe6\xe3\xb5\x01\xdb\x0b\xa0\x19\x76\x51\x56\xf3\x6a\xf0\xcb\x0d\xf0\x82\x91\xb3\x9c\x67\xb3\x35\xff\x4f\x33\x53\x25\x24\x5b\x6c\xd5\x6a\xfa\xfb\xe5\xc6\x7b\xd1\x2d\x07\x9e\x8b\xbc\xbc\x79\xa6\x33\xf0\xf2\xc6\xb8\xe4\x2f\xdb\xcb\x36\x3d\x45\x40\x3f\xb4\xae\x03\x4f\x1f\x02\x36\xca\x06\xcf\x2a\xcd\x4f\x5c\x17\xf3\xaa\x27\xec\xc7\x95\xa5\x3d\xa5\xd6\x29\x27\x03\xd5\x6a\x8a\xcc\x25\xf4\x1a\xa9\xd4\x64\x9b\x92\x62\xfc\x2f\x14\x0b\x95\x6e\x18\x62\xaa\xf1\xcb\x64\xe6\x99\xb2\xc9\x6c\x4f\x7a\x6f\x2a\x4f\xfd\xca\xec\x5b\x38\x4d\xbc\x5f\x43\x50\x11\xe7\x64\x38\x82\x58\x29\x12\x85\x33\x50\x8a\xa9\x35\xf7\x92\x0f\x37\x61\xbe\xc7\x15\x63\xae\x57\x48\xcf\x86\x13\x8f\x79\x0d\xc3\x8c\xcd\xef\xb9\x3e\x1d\x6e\x2c\x6f\xe9\x30\x1e\x61\xf3\x7b\xe3\x7b\xcd\x1c\x30\x9b\x02\x07\xc6\xbe\x61\x32\xa5\x17\xed\x1b\x98\xeb\xfe\xf9\xa6\xac\x90\x18\x14\x0d\x90\xf2\xbb\xc8\x13\x4c\xa3\x31\x9d\xe5\x71\xc2\x89\x5f\x6a\xf9\x5a\x0d\xa5\xc3\x0d\xc9\xe5\xe0\xa3\x0d\x38\x28\xbf\x8a\x41\x1c\x63\x37\x73\xd4\x28\x15\x9a\x78\x76\x89\x0c\x53\x96\x89\x0d\x2c\x9c\xa5\x6f\xd2\x73\xc9\xe9\xb9\x2c\xd1\x73\xf9\x18\x3d\x97\x92\x9e\xcb\x32\x3d\x5b\xfb\x0e\x1a\x3d\x97\xde\xf8\x6a\x26\x5c\x2e\x34\xca\xa4\x5d\x16\xa4\x15\x02\x2c\x48\x54\x14\xca\xb2\x39\x68\xf1\x1d\xbb\x52\x01\x20\x9c\x5a\xbd\xcf\xa9\x2c\xd3\x28\x64\x8d\x1b\xea\xcf\xe6\xcc\x15\x80\xd8\x15\xca\xc0\x2e\x78\xe5\x7c\xcb\xb5\xad\x0e\x07\x55\x4a\xc1\x83\xd8\x65\x48\x56\x05\x89\xdd\x7c\x4e\xdf\x99\x49\xe8\xdd\xae\x08\x06\xc4\x90\x63\xdb\xcf\x30\xcf\xa6\xa6\xf8\x5d\xb9\xae\xfd\xc4\xbf\xf4\x03\x4e\x9b\x82\xc4\xee\xc6\x7c\xbf\x2b\x2b\xa3\xb7\xac\xa1\xa9\xad\x5c\x7d\x69\x64\x99\x8a\x86\xd9\x04\xdb\x60\x34\x86\x68\xf0\xfd\x49\xb2\xf4\x42\xb9\x39\xc5\x3b\x47\x52\xc8\x3a\xef\x12\x66\x80\x52\x6c\x1a\xa7\x3c\xa7\xea\xb8\x7c\x19\xca\xf3\x9c\x1a\xae\xca\x2c\xd8\xc5\x33\x67\x0b\x88\xe3\x27\x64\x16\x1b\x29\x74\x8d\xf0\x1e\xb5\xe8\xed\x32\x8a\x59\x42\xa2\xed\xcb\x9c\x79\x2c\x90\x66\x75\x68\x87\x98\x14\x4b\xd3\x09\x0d\xfc\x85\xcf\x68\xbc\x5a\x19\x96\x01\x3e\x61\xd6\xc2\xbb\x7d\x49\x97\xc2\x59\xc6\xfd\x7a\xf3\x46\xf4\x3e\x45\xd2\xfb\xfd\x7d\x4a\xd2\xd5\xca\xc9\x76\xcb\xaf\xe8\x5d\x82\x3c\x6c\x4d\xa3\xf8\x55\x29\xb4\x76\x20\xcb\x1c\x13\x6f\x18\x8c\x60\x4a\x98\x95\x78\x53\x5a\xab\x95\x3d\x3b\x8f\x31\xcc\xd5\x99\x6d\x85\xcf\x27\x19\x7c\x6c\x8c\x61\x42\x42\xfe\xb3\x24\xc9\x20\x31\x63\x33\x70\xc5\xad\x8c\x83\xa9\xba\xe2\x6f\x0c\xa5\xd3\xe2\x7d\x89\x69\x24\x66\xf2\xd5\x2a\x4f\x16\x65\xc9\x54\x5c\xab\xe9\x94\x8f\x71\xe1\x47\xfd\xa0\x60\xc1\x6a\x95\x9e\xf8\x38\x77\x2d\x83\xc6\xb0\x84\xd4\x74\xf0\x5e\x34\x5c\x8e\xc8\x58\x84\xdf\xc3\x10\xad\x8b\xe6\xf0\xf9\x38\x14\x78\x8c\xd1\x50\x3c\xa7\x61\xf6\xa6\x71\x50\xf3\x36\x88\x62\x12\x57\xb6\x44\x44\x62\x2b\xba\xa6\xf1\x4d\xec\x33\x79\x8c\xe1\xf1\xe6\xe0\x4a\x96\x70\xc7\xbc\x55\xd7\x03\xf2\x18\x03\x59\x5e\x13\x56\xc8\x85\x76\xb9\xf4\xbd\xf0\x0e\x5e\x71\x84\xb6\x5a\x35\x9c\x03\xb2\x11\xb8\x70\xb5\x8a\x2d\x49\xc2\x80\xba\xf9\xb5\x58\x9d\xa9\x0c\xcb\xf0\xf7\x95\x1b\x2c\x79\x08\x8a\x6c\xe2\x58\x57\x08\x8f\x76\x69\x21\x25\xa1\x5a\xbb\xf9\x18\x02\x92\xe8\xda\xd6\x98\xbf\x8a\xe0\x5c\x53\xe2\x1d\xe7\x2b\xe6\xf1\x71\xa6\xe7\x3e\xc2\x98\xe9\x30\x18\x71\xe1\xfa\x06\xf9\x11\x72\x17\x49\xb9\xcb\x0b\x14\x78\x64\xfd\x8e\x91\xf8\xb8\x5a\x71\x20\xa9\x11\x89\xaf\xb5\x9a\x28\x8d\x64\xae\xd8\x73\xbf\xde\x63\x8d\x9f\xf7\x6b\x77\x28\x2a\xc3\x41\xa1\x58\x5c\xd6\x6a\x68\x57\xcd\xf1\x5a\xa0\xa5\x88\x0d\xc3\x91\xd8\x54\x01\x6f\x5d\x1e\x1a\xf0\x7d\x21\xa6\x55\x7b\x33\x62\xb6\xa3\x92\xda\x03\x52\x72\x5e\x5f\xe9\xe6\xbe\x04\x61\xf9\xc9\x3f\xd2\xe9\x94\xc6\x1b\x6e\xef\xf3\x74\x11\x38\x7b\x6b\xa8\xda\x0a\xf2\xa1\xdc\x6a\x57\x7a\xd4\x43\xde\xff\x66\xce\xfd\xa3\x8a\x9b\x13\xdb\xda\xdb\xbd\x76\x11\x30\xe6\x5d\x82\x6b\x95\xc3\x30\xdf\xa6\xe0\xcf\x59\xc3\x66\x4a\xe9\x30\x1c\x91\x7b\xdf\x0d\x21\x70\x0f\x1c\x50\x1f\xdd\xfb\xf5\xba\x08\x77\x18\x8e\xa4\xf0\xfb\x59\x5e\xe0\xe3\x55\xf6\x1c\x73\x05\x24\xe0\x8a\x72\x9e\x96\xfb\xdf\xb4\x16\x84\x42\x6c\x8d\x09\x83\xd8\x9a\x6c\xef\x92\x5b\x91\x10\xb7\xd5\x6a\xd7\x49\x2a\x83\xfb\xe2\x88\xd6\x3d\xb0\x45\x2c\xc7\x50\x84\x8b\xb5\xca\x71\x94\xc4\x4e\x03\xcf\x3d\x29\x7a\x4a\xc6\x69\xc5\xe5\xac\x2b\x9f\x7b\xb3\x7c\x4c\xdf\x2a\x71\x1b\x16\xee\xa5\xa2\x6f\xbc\x8b\x26\x69\x40\x8d\xf5\xee\x83\x5f\xe3\xe2\x82\x26\x0a\x2c\xcb\x76\x60\x4b\x72\xd9\xb6\x7f\x4c\xa7\xc6\x84\x47\x98\x58\x38\xd9\xe9\xd7\x58\x3e\x7f\xf0\x41\xa3\x5d\x2b\x39\xd7\xe7\xe2\x5d\xab\x51\x2e\x4f\x45\x29\x45\x06\x39\x95\x2b\xc2\xa4\x1f\x61\xe1\xf0\x08\xcb\xe8\x8d\x5c\x1c\x76\x90\x1d\x82\xa1\x1c\xc0\x18\x9b\xdc\x96\x35\xa0\x6b\x0c\x4d\x41\x8c\x0a\x03\x91\x33\xb8\x38\x57\xf1\xe5\x42\x21\xb6\x26\x88\x77\xcb\xed\xf3\x1e\x19\x36\xd3\xba\xf4\xc3\x89\xa0\x0b\x7c\xcd\x18\x98\xf3\x27\xac\x58\x8e\x6c\xd4\x76\x50\x71\x7d\x28\xf3\x1c\xbd\xae\x88\x94\x49\x73\x21\x2e\xbc\xb8\x32\x0c\x8c\x17\x17\x55\x7b\x22\xd9\x1a\xff\xcb\x0b\x1f\xd9\x11\x94\xb7\x39\x6b\x29\xc2\xf4\xa2\xd8\x4a\x88\x83\xd7\x68\xf8\x0d\x63\x68\x49\xa9\x19\x94\x55\x1c\x8a\xdd\x8a\x89\xe4\x91\x99\xa9\x72\xd0\x2c\x2c\x30\xb5\xb1\x31\x7c\xda\xd8\xe8\xa1\x8d\x61\x11\x57\x8d\x8b\x5c\x2a\xff\xa7\x8d\x89\xa2\xb0\x3c\xd8\x89\x4f\x62\xd4\x94\xf1\xc4\xfa\x18\x12\xe1\x7f\x04\xd2\x1d\x07\xcd\xba\xba\x6b\x05\xd1\x58\xae\xf6\xfd\x62\x47\x3d\x1c\xd8\x6e\x08\x1e\x89\xad\x89\x2f\xcf\x9e\x21\x29\xbe\x7a\x03\xc7\xb6\x5d\x4f\xdc\x7e\x64\xf3\x98\x26\xf3\x28\x98\x40\x50\x00\xa4\x03\xab\xeb\xa6\x30\x26\x31\x57\x09\x3f\x72\x45\x2e\x0e\xdf\xaa\x50\x36\x05\xd8\x78\xd0\x6a\xba\x63\x98\x93\xd8\x1a\x7b\x09\x3d\xa3\x61\xe2\x33\xff\x9a\xc2\xa4\xd8\xbe\x9f\xd7\x6a\x73\x58\xf2\x82\xa2\x2b\x1a\x9e\xd1\xa5\x27\xd8\x0f\x8b\x02\xcd\x72\x70\xb8\x6f\x1e\xce\xdc\x25\x5c\x93\xd8\x9a\xfa\xe1\xe4\x79\x10\xbc\x13\xd1\x25\x13\xb8\x2b\x50\x5d\xd7\x6a\xd7\x30\xe3\x34\xf9\xa1\xf8\xfc\x62\xee\xc5\x8a\xaa\xcb\x02\xdd\x6c\xe0\xb8\x33\xb8\x20\xb1\xe5\x4f\xe0\xa6\x48\xbf\x90\x16\x51\x17\xf0\x8a\xc4\x42\x51\x83\xdb\xe2\xe3\xab\xc1\x70\xe4\xbe\x82\x33\x12\x5b\xc9\x3c\x4a\x83\xc9\x59\x14\x33\xf8\x50\x00\x9c\xad\x56\x67\xf0\x9c\xc4\xc2\x06\x39\x84\xab\xe2\xcb\xf3\x41\xe4\x3e\x87\x73\x9e\x33\x8a\xf9\xb7\x17\xc5\xb7\xf3\xea\x18\xcb\xd4\x4a\xc6\x51\x4c\x1b\x4c\xfe\xae\xdd\x73\x78\x97\xb1\xc8\xff\x9b\xc2\xa7\xa2\xd2\xef\x6a\xb5\x77\xf0\x51\x34\x04\x1b\xcf\x9f\x07\xc1\x39\x07\x4a\xe0\x6b\x01\xf2\xb1\x56\xfb\x08\x2f\x79\x7d\xc3\x71\x90\x4e\x68\xc6\xba\xf7\x05\xc8\xcb\x5a\xed\x25\xbc\x29\x40\xce\x78\xb1\xf0\xb6\x00\x78\x53\xab\xbd\x81\x1f\x48\x6c\x5d\xd3\xf8\x32\x4a\x28\xfc\x5d\x7c\xfb\xa1\x56\xfb\x61\xef\x7f\xa2\x65\x43\xb4\xe4\xc9\x09\xb9\xcf\x24\xdb\xf5\x21\x13\x63\x37\x81\x5c\x62\xdd\x00\x36\xa5\xd3\x9d\x82\x9f\xbc\xd0\x65\xd1\x9d\x40\x59\xf2\xdc\x05\x94\x45\xcc\xbd\x83\x6d\x81\x72\x2f\xc1\x9f\xb8\x37\xc0\xe5\xc4\xbd\x85\x32\x67\xdd\xf7\xa0\xf3\xd1\x7d\x0b\x85\xcc\xb8\x1f\x40\x48\x88\x7b\x05\x52\x1c\xdc\x17\xa0\x78\xea\xfe\x0d\x59\x0b\xbb\x9f\xa0\xdc\x9e\xee\xd7\x35\x64\xdb\xbb\x2f\xa2\x40\xc5\x11\x45\x4c\x0e\x0e\x2c\xb7\x5b\x27\x85\x2d\x41\x01\xf6\xd8\x49\x69\xe0\x27\x8c\x50\xa0\xf9\xce\x5f\x42\xa5\x11\xe6\x76\x36\x39\x53\x6d\xc6\xd3\x3d\x75\x34\x6d\x3f\xff\x38\x74\x46\x03\xfd\xc5\xbd\x17\x2b\x39\xf7\xc0\x59\x4b\x7f\xcd\x17\x41\x34\x43\xdf\x37\xb2\xff\xbe\x84\x67\xa2\xdc\xfd\xa5\x6c\x32\x77\xdf\xf8\x9e\x8f\x9c\x63\x8f\x21\x0a\xdf\x1b\xdf\x2b\x0f\x75\x6a\x9b\xf3\x62\x19\xf3\x36\xa3\x32\x13\x8d\x13\x19\xf0\x3f\x1f\x49\x54\x2a\xf8\x7c\xd0\x48\x83\x20\x4b\x81\x48\xe5\x97\xb5\xe4\x33\xb8\x8c\x13\x2f\x37\x82\x12\x48\x48\x64\xc5\x34\x49\x03\x96\xe8\xb1\xdd\xad\x8b\xb1\x0c\xc7\x20\x1a\x95\x2f\xf7\xcb\xf2\xa8\x0d\x0c\xb5\x9a\x2a\x81\x2f\xf3\xc4\x09\xab\xa8\x79\xad\x56\x44\x9a\xca\xc3\x16\xa9\x2f\x28\x21\x49\xee\xc8\x4e\xa5\x62\x55\xc0\x85\xb4\x19\x46\x49\xb1\x37\xbb\x55\xf9\x0a\x83\x11\x69\x15\xb2\xd5\x56\x76\x65\x5b\xd9\x7a\x5b\xd9\x23\xd7\x30\x80\x91\xe1\x48\x6c\xd5\xea\x95\xcc\x24\x14\x17\x76\x22\xd9\x19\xf9\x36\x5c\xde\xa9\x44\x1c\x7d\xb1\x76\x57\x96\x8a\xe1\x49\x74\x1c\x9a\xc4\xc1\x6a\x5f\x95\x0f\x0a\x3e\x8a\x45\x50\x7d\x0d\x4d\xae\x35\xdd\x97\x1b\xd5\x65\xa0\x37\xa9\x2b\xb3\xd3\x72\xde\x75\xc1\xad\x1d\x02\xfd\x6f\xf2\x68\x38\x82\xaa\xbe\x50\x16\x7a\x89\x07\x94\xd0\xf2\xae\x96\x85\xa0\x92\xdc\xdd\x8a\x8d\x2d\xa2\xe3\xe5\xeb\xfb\x48\x44\xe9\xcb\xf9\x16\x9d\x78\xc7\x91\xe0\x9b\x10\x0c\x2f\xf4\x82\xbb\xbf\x29\x92\xd5\xcc\xea\x17\x0f\xa3\x11\xc4\x74\x1c\xc5\x13\x37\x02\xb1\x39\xe1\x46\x6b\xb8\x97\x42\xfd\xce\x5b\xba\x21\x28\x01\x77\x7d\xd8\xe0\x2c\x2d\x73\x96\xad\xf3\x26\x50\xfd\x43\x1e\x6c\xe7\xf9\xd7\xeb\xc2\x7a\xe7\x7e\xad\x7c\xac\xe4\xf4\xa6\x27\xc1\x71\xca\xe9\xcd\x80\xc6\x24\x1e\xa6\x23\x98\x12\x1b\xe6\xa4\x24\x31\x7c\x28\xcd\xb2\x4d\x4f\xe6\xc7\x53\xb3\x38\x67\xdb\x02\x1c\x4e\x4b\xcc\xcb\x75\xf4\x89\x98\x7a\x92\xe1\xc4\x0a\xbd\x05\x1d\x11\x45\xb4\xeb\x34\x26\xaa\x7f\xaf\x56\xce\x1a\xb2\x97\x13\x62\xaf\x56\xd9\xcb\xa9\xb3\xed\x72\xfe\x27\x7a\xb7\x2f\xbf\xee\xcf\xbd\x64\x9f\x45\xfb\x97\x74\xff\x74\xdf\xde\xf7\xc2\xc9\xfe\x09\xd9\x77\x0c\xbc\x37\x21\xb2\x34\x79\x56\x96\x0c\x27\x5a\xb1\xd9\x48\x57\x6a\xa8\x89\x6a\xa7\x52\xad\xc4\xac\x80\xc6\x30\xc1\x59\xd3\x8d\x55\xd3\xa5\xff\x7a\xd3\xad\x37\x9a\x2e\xd1\xdb\x2d\xef\x1d\x8a\xb8\x6a\xa3\x9d\xac\x8f\x0b\x23\x5f\x42\x2d\x8f\xeb\xe8\x22\xda\x62\x59\xa1\x6c\x38\x6e\x28\x1c\xf5\x0a\x24\xc2\x9d\xa9\xac\x87\xf0\xbf\x26\x6a\x02\x01\x61\x9b\xa3\xf3\xb8\xc0\x11\x70\x1d\x2b\x10\x7b\xa1\xa5\xf1\x7a\x5e\x80\x4c\x39\xc8\x14\x26\x84\x59\x39\x47\x60\x59\x7c\x9f\x0c\xee\xd7\xee\x04\x16\xf9\xf7\x04\xae\x8b\xaf\x0b\x9e\x7b\x21\xf6\x0a\xc5\x5e\x8e\x8a\x87\x75\x47\x0e\x1c\x98\x91\x86\x03\x97\xc4\xae\xec\x92\x91\xb2\xbe\x13\x13\x96\xf1\x25\xfc\x89\xde\xb9\xfb\x46\x36\x37\x19\xc2\x7f\xae\xb8\x2f\x16\xab\x29\xea\x82\xcc\x2d\x35\xbd\x44\x38\x1f\x43\xe5\x7c\xf7\x43\x1a\x04\xfb\x8c\xde\x32\x7d\x7e\x8b\xe0\x7b\x03\xf6\x85\xb6\xe7\xee\x7f\x8f\xb3\xe4\x0b\xa9\x00\xe2\x8d\x99\x26\x1f\x84\xf3\x61\xe2\x86\x44\x4f\x19\x85\x5f\x91\xe1\x08\x6e\x89\x7d\x7c\x7b\x32\xce\xfa\xda\x6d\xde\xcf\xce\xc8\x78\x78\x3b\xd2\xe7\xe6\x2f\xe1\xc7\xed\xb9\xf8\xcc\x52\x13\xb4\x9a\x93\x33\x1a\x3e\x70\x3e\x3e\x27\xf6\xf1\xf3\x93\x9b\x0c\xf9\xf3\x1c\xf9\x15\xb9\x19\x3e\x1f\xc1\x39\x39\xcb\x38\x73\x85\xe1\x05\xb9\x5f\xef\x9d\x5b\x7e\x22\x34\xa7\x01\x7a\x31\xbc\x1a\x91\x73\x59\x69\x10\x4e\x8d\x3f\xf0\x3f\xaf\xe4\x24\x71\x9e\x71\xc3\x95\x80\x4e\x99\x2b\x65\x8d\x69\xb5\x52\xb9\x9c\x7c\x1a\x15\x55\x12\x5f\xf5\xea\x5c\x55\xb3\x9e\x97\x80\xf1\xfa\x43\xad\x86\x2e\x79\x25\xd6\x33\xf2\x6a\x68\x17\xf6\x96\xef\xc8\xab\xcc\x4b\xcc\x27\xe2\x1c\x7f\x3a\x79\x77\xfc\x89\xc3\xcd\x4c\xf2\x6a\xf8\x69\xb4\x37\x3b\x24\xef\xb4\x72\x0d\x51\xae\x2c\x66\xdf\xbb\xa6\xb1\x37\xa3\xae\x01\x33\xa9\xc0\x7d\x24\xaa\xa5\xf7\x66\xa7\x0d\xa7\x56\x43\x1f\x09\xfa\x68\xce\xf0\x61\x53\xa7\xdd\x38\xdb\xc8\xfd\x51\x4a\xdb\x57\x72\x50\x29\x1e\xab\xd5\xc1\x83\x0c\xba\x3c\x25\x99\x14\x94\x65\xd4\xf8\x12\xbe\x98\xd3\xf1\xd5\x7e\xa6\xd0\x16\xc2\xfe\x15\x63\x40\x77\xab\xd5\x45\xd6\x68\xb8\x56\xfb\x2a\x5b\xf8\x25\x59\x0e\xd3\xd1\xde\xcb\xc1\x4b\x2b\x4a\xd9\x32\x55\x53\xbb\x18\x64\x62\x28\xc6\x0d\xd7\x57\x03\x4d\x04\x92\xeb\x1f\xa5\xb2\x4b\x27\x6f\xc2\x89\x3f\xa6\x89\x7b\x61\x95\x13\xd6\xd8\x45\x1c\x37\xb9\xf7\x19\x5d\xb8\x1e\x48\xfc\xee\xf0\x3f\x81\x7b\xb4\x86\x6b\x49\x29\x2f\x02\xe3\x75\x6e\xf3\x90\xa0\x08\xe7\x13\xd7\x7b\x62\xc3\x1b\x12\x65\x82\xfd\xfe\xe4\xcd\xf1\xfb\x1d\x13\x71\x89\xa0\xf7\x19\x41\xc3\xf7\xf9\xa4\xec\x55\x8e\xec\xcb\x7c\x70\xbe\xde\x1c\xd9\xc7\xe5\x91\x7d\xbe\xd6\x95\x1b\x5d\x2d\xad\x1e\xc3\x4b\x2d\xfb\x25\x94\x61\xc5\xfc\x70\xa6\xa4\xfe\x4b\x68\xe8\x76\xbf\x36\x84\xa4\xb8\x52\x72\x12\x1e\xc7\xa2\x13\x17\x6e\xe3\xd9\x30\x1e\xa9\x26\xd6\x3c\xc9\x80\x47\x1c\x48\x88\x70\xb3\x76\x9c\x9e\x44\x72\xde\x57\x66\x5f\x74\x40\x87\xfe\x30\x1d\xf1\x69\x64\x64\x65\xb3\x23\x8c\x89\x30\xdc\x0a\x06\xe2\x9b\xa4\xa6\x78\x5c\xad\x2c\xdb\x76\x70\x3d\xd8\x73\x0e\x38\x50\xe6\x7c\xde\x0f\x51\x02\x63\xec\x22\x01\x1a\x8a\x8a\x93\x31\x78\x75\x32\xc6\x6b\x41\x9c\xc8\x4e\x1c\xe1\x51\xcb\x13\x6b\xc2\x8c\x01\x22\x24\xa7\xae\x19\x46\x71\xa5\x25\xe9\x06\xcb\xb8\x56\xef\x87\x33\xcb\xb2\x2c\x03\x03\x95\x07\x38\x65\xed\x5f\xac\xe6\x34\x0d\x3d\x73\xbb\xbb\x6b\x11\x55\xa1\x5c\xab\x85\x60\x36\xe9\x0e\xf5\xb1\x58\x90\xf1\x41\xca\x3d\x7f\x34\xe0\xc7\xb3\x0f\xef\x2d\x39\x55\xf9\xd3\x3b\x44\x61\x6b\x09\xae\x05\x2b\xe5\x6b\xc5\xec\x0c\x83\xc8\xaf\xe2\xf0\x2a\xce\x0f\xaf\xf2\x63\xb0\x3d\x15\x7b\x90\xe5\xde\xb0\xd9\x1a\x63\x90\x67\xf5\x6a\x33\x2a\x23\x2d\xa3\xbc\xbc\x00\xae\xd5\x7c\x89\xa2\x5a\x95\x90\xa2\xb3\xc7\x54\x4f\x4c\x74\x33\x76\xbe\x4e\xf0\xf5\x75\x82\x2f\xd7\x09\x2a\x42\x17\x5f\x21\x70\xb6\x71\xc5\x3c\xda\xe8\xc9\x99\x3b\x05\x19\x7a\x94\xdc\xfb\xaa\xc7\x6f\xc2\x65\x1d\x52\x6a\x2a\xeb\xbd\x88\x0b\xa5\xf0\xe4\x77\x45\xef\x88\x78\xc3\x10\x6d\x1a\x81\x18\x45\x9f\x36\x70\xad\x16\x69\x8a\x90\x1c\xb2\x3d\x2d\x85\xe8\x9f\xf9\xfa\x4f\xd5\x54\x72\xc5\xe3\x02\xb8\x31\xa5\xeb\x1b\x06\x3b\xd8\xa7\x76\x83\x88\xda\x1d\x5a\x17\x7d\x56\x2e\x12\xe8\xd6\x22\x41\x99\x0c\xd3\x61\xb4\x2d\x6b\xfe\x84\x2f\x3a\x2d\x3e\xa0\x92\x0a\x45\x54\x7e\xd9\xa0\x71\x82\xc5\x69\xa2\x9f\x73\xba\x38\x85\x94\x23\xb3\xcc\xb5\x86\x80\xd8\x30\xce\x47\x86\xe3\xe0\x64\x7c\x1c\x70\x82\xfc\x61\x30\x42\x09\xa4\x78\x4f\x4d\x0e\xa9\x0a\x1e\xa9\x5e\x65\x7e\x4d\xee\xf2\xde\x14\x44\xb3\x5d\xcb\xb7\xbd\xaa\x3e\x24\x8e\x1a\x64\xe4\x3f\x8a\xad\x20\x12\xc1\x13\x03\xde\x4b\xf2\xd5\x99\xb8\x80\x51\xab\x95\x99\xfc\xbf\xe6\xcd\x3a\xa4\x5d\x2d\x05\xb6\x65\xec\x90\xee\x36\x76\x68\x61\xde\x9d\x50\x5b\x6e\x1d\xf7\x30\x78\xff\xbf\xd9\x33\xde\xd8\xa9\xfb\x5f\x60\xd7\xf8\xff\xbc\x5d\x4e\xb5\xeb\xa8\x14\xfe\xf2\x40\xb1\x51\xc6\x80\xb9\xac\xec\x7c\xad\x94\x37\x8b\xb0\x4f\xa6\xb5\x1a\xd2\x3f\x3c\x0f\x96\x73\xef\x92\x32\x12\x95\x92\xf1\xee\xad\xcd\xff\x97\xbd\x37\xdd\x6e\x1b\x57\x1e\xc4\xbf\xfb\x29\x6c\xfd\xd3\xfa\x03\x62\x51\x22\x95\xa5\x6f\xd3\x46\x74\x9c\xad\x3b\xdd\xd9\x3a\x4b\x6f\x34\xaf\x2f\x2d\x41\x16\x13\x99\x54\x40\xc8\xb1\x62\xf1\xd1\xe6\xcc\x23\xcd\x2b\xcc\xc1\x46\x82\x14\x65\x3b\xbd\xdc\x6d\x7e\xf9\x10\x8b\x24\x50\x28\x00\x85\x42\x55\xa1\x50\xb5\xcd\x38\xb9\xc1\xe2\xea\x08\xca\x6c\xde\xb4\x8e\x62\x1d\x47\x42\x88\x39\x64\xbc\xd4\xe2\x6d\xb0\xe7\x69\x49\xd2\x6b\x4a\x92\x61\xe8\x95\x59\xd4\x5d\x3f\x8a\x94\xeb\x23\xaf\x0d\x12\x30\xe5\x39\x54\xa7\xf7\xac\xd2\x83\xf5\x7c\x94\xec\xb9\x3e\x5a\xf7\x4b\x2f\xfb\xd4\x58\xb7\x8c\xee\x95\x99\x5b\x25\xb5\xe6\x72\x12\x57\x8b\x77\x49\xe2\x6a\xad\xce\x49\x6c\x2d\xcc\xb1\xbc\xe2\x51\x5b\x13\x53\x12\xb7\xac\x81\xd2\xe7\xa5\xd9\x7e\xdb\x14\x42\x45\xac\x79\x45\xac\xcb\x1a\xb1\x36\xc8\x6e\xdc\x46\x76\xd3\xe2\xbf\x87\x37\xc7\x4d\x6f\x13\xd5\x83\x41\x78\xe4\x1e\x85\x47\xd1\xd1\xe0\xe8\xf2\xa8\x38\x42\x47\xf8\xa8\x77\xe4\x1c\x8d\x8e\xfa\x47\x47\x47\x7f\x3f\xba\x75\xb4\x8e\x06\xa7\x3b\x6d\xa7\xaa\x06\x46\xba\x69\x7a\x1c\xb6\x9a\x2d\x87\xb6\xd9\x72\x18\x05\x92\x2f\x42\x42\xac\x78\x8c\x55\x52\x24\x66\x62\x38\x96\x6f\x52\xe8\xac\x3b\x32\x41\x88\xb9\x93\x22\xed\xe5\x7b\x7b\x99\x74\xaf\x15\x94\x5b\xdd\xe0\x53\xe6\xbf\x6c\xc3\xfc\xa7\x9d\xdd\x32\xa1\x20\x6a\x29\x28\xac\xfc\xa6\xc6\x18\xc6\xd5\x42\x2a\xad\x56\x6a\xdd\xc5\xa3\xfe\xdd\xc0\x07\xb3\x1e\xe3\xe6\x32\xcc\x8b\x96\xb3\x60\xb3\xfd\xdd\x55\xdb\xdf\x3d\xbc\x65\x28\x55\xa6\xee\xea\x4e\x62\x56\xad\x9e\xda\xe6\xa6\xb6\xb6\xcc\x5e\x4e\xd6\xce\x26\xb6\x3e\xb1\xb5\x65\xd6\x0a\xab\xed\x69\xfd\x7b\x72\x4f\xcb\x9a\x6b\x6e\x73\x4b\xcb\xda\xf6\xa1\xda\xb6\xe6\xcb\x2d\x2d\x97\x69\xa2\xb4\xe6\x75\x4a\xa6\x32\x3b\x54\x29\xca\xc3\x39\x86\xe3\x2a\x8c\xed\x27\x12\x46\xf0\x98\x78\xfb\x8f\x0f\x56\xfb\x8f\xc5\x7c\x7c\x0a\x1f\x47\xca\xd8\x25\xb5\x80\x13\x35\x62\x17\x42\x4d\x80\x4b\x2a\xf6\xac\x3c\xf0\x74\xae\x15\x19\x1e\x41\x2e\xea\x13\xa0\x17\x0b\x3a\xe6\x74\x52\xbe\x3a\xaf\xd6\xf9\x5c\xdd\x58\x3b\xad\xb4\xb4\x0b\x38\xc5\x20\x1b\x40\x02\xbd\x79\x9c\xf3\xa7\x15\x8a\xce\x31\xc6\xc6\xf0\xf4\x47\xdb\xb5\x1a\x7d\x03\xa7\xb8\x28\x4e\x88\xeb\x5b\x96\xa9\x30\x82\x43\xe2\xc3\x07\x72\xec\xac\xe0\x2d\xf1\x0f\x0e\x8e\x5d\x1f\x1e\x12\x6f\xff\xe1\xc1\xf1\xfe\xc3\x9a\x82\xfb\x9c\x78\xf0\x9a\x7c\xd8\x7f\x7e\xf0\x7a\x1f\xdb\x88\x3d\xdc\x40\xec\xdc\x79\x7d\x1d\x6a\x07\xe4\x74\xf4\x9c\xbc\x0e\x3e\x90\xd7\xf0\xda\x0e\x7e\x87\x3e\xb8\xcf\xf1\x60\xe8\x3c\xc7\x3b\x1f\xc8\x6b\x9d\x85\xd7\x4a\x2d\x74\xee\xbe\x76\x7c\x0c\xef\xc9\x64\xb4\x0a\xca\xde\x89\x16\x57\xd8\x39\x86\x47\x44\xf9\x4f\xbc\x77\x86\x78\xe7\x51\xf8\xde\xf1\x23\x82\xfc\x83\x83\x87\xd8\xea\xf8\x0b\xf2\x7e\xff\xc5\x7d\xf2\x6a\xff\x85\x6b\x16\xe1\x53\xf2\xc2\xf5\xe1\x19\x61\x61\x19\x85\xfc\x29\x96\xab\xf8\x59\xb7\x8b\x3e\x85\x4f\x23\xe2\x63\x78\x14\xbe\x88\x08\x7a\x14\xbe\x70\xfc\xe8\xe0\xc0\x5f\xfb\xb8\xfb\x0c\x04\x99\x3e\xec\x76\xc5\xeb\x68\x4d\xd0\x4b\xf9\x75\xfd\x32\x7c\x11\x61\x59\x66\xad\xde\xa8\xda\xdd\xb7\xdd\x2e\x3a\x24\x57\x8f\xdf\xd3\xeb\x46\x4f\x0c\x9f\xdc\xd8\x4f\xc9\x21\xa0\x13\xf2\x14\x1f\x90\x73\x95\x63\x73\xa7\x36\x5a\xc3\xde\xb9\x7b\x82\x8b\x42\x39\x82\x56\x4d\x3a\xfe\xe6\xa4\x5d\xd7\xe8\xfd\x53\xdd\xc2\x4b\xf2\xa8\x68\x88\x03\x27\xf7\x49\x29\x10\xc8\xc3\xfd\xbe\xe7\xf9\xc1\x61\x93\x29\x25\xe8\x13\x9c\xe1\x26\x67\x6a\x77\x93\xa9\x36\x05\xde\x57\x68\x43\x5a\x2d\x78\x36\xf2\x02\x26\x1d\x90\x1b\xfd\x80\xac\x2a\x94\x8c\xbc\x20\x81\x58\x00\x68\x74\xad\x8d\x8d\xf1\x6b\xd8\x58\x3a\x28\x39\xcb\xb4\xca\x4e\x94\xbb\x55\x90\xe3\xf9\x68\xec\x4c\x07\xf3\x60\x3a\xf2\x83\xf1\x4d\x3a\x59\xad\xae\x3f\xfb\xb4\xed\x46\x27\xcf\x3e\x30\xc1\x02\x52\xe2\xaa\x3c\xb0\x70\x13\x8d\x39\xef\x76\x5d\x5f\x2a\x3e\x29\xc9\x82\x7c\xbd\x56\x4f\xeb\x35\x42\x09\xc9\x5c\x1f\xbb\xa9\xe3\xdf\x27\xbc\xdb\xd5\x06\x93\x30\x85\x24\xc2\xb2\x95\x52\x85\xa5\x61\xe6\xfa\x51\xb7\x9b\xb9\x69\xa3\xa8\x78\x8f\x81\xdd\xd0\x1b\xb5\x11\x00\xd9\xca\x6c\xeb\xc9\xa4\xb6\xea\x30\xb5\x5a\xd3\x29\x16\xfc\xbd\xb2\xd9\x79\xfb\xc9\x01\xdb\x4f\x1a\xa5\x12\x1c\xad\x05\x33\x64\x6e\xe2\xfa\x3b\x96\xd6\xbd\x6d\x3f\xf5\xb6\x6d\xa4\x1b\x8e\x9a\x4a\xa5\x84\x44\xae\x5e\x56\xda\x6f\x6a\xbe\xd2\x42\x9b\x84\x5c\xdd\x15\x95\xdb\x44\x26\x6f\x1f\x33\x2b\x5d\x1d\xe4\xe5\x63\x26\x03\x7d\x2a\x29\x83\x87\x71\x54\x1d\xe4\x2c\x71\x32\x45\xf9\x7a\xbd\x71\x1c\xb8\xac\x8e\xdc\xab\x77\xf2\x46\x1e\x5a\x56\xa6\x5d\x65\xad\x58\x6e\x58\x2b\x28\x5a\x86\xf3\x08\x72\x48\xb0\xba\x4d\x98\x77\xbb\x32\xc1\x42\xf9\x42\xdb\x69\x96\x55\x72\x50\xac\x0d\x1a\x89\xb1\xa1\x95\x02\x74\x21\xc7\x32\x8c\xa4\x68\x5b\x80\xed\xeb\xc8\x71\xd3\xf7\x71\x64\xdd\x64\x40\x38\x40\xa9\x20\xdf\x72\xa9\xa2\xa4\xc5\xab\x0d\x31\x92\xe1\x11\xd3\x76\x0e\x0e\x29\x0e\x18\x16\x3a\x4f\xe5\x84\x8f\x71\x81\xb5\xcf\xbb\x50\x35\x19\xf2\xef\x60\x44\x31\xfe\x22\x87\x68\xda\xff\x44\x4f\x16\xf1\xf8\xc3\xab\x6c\xbe\x9a\x26\xf3\xb9\x6c\x63\x42\x17\x8c\x8e\x63\x4e\xed\x35\x5f\x00\x15\x2a\xc2\x4c\x5e\xc3\x12\x44\x97\xcc\x27\x8c\xa6\xb2\x82\x79\x20\x61\x74\x85\x8b\xe9\x3c\x8b\x27\x74\xb2\xe1\xaa\x79\x4a\x79\x9b\x07\x64\x7f\x5e\x5c\xe5\xaf\x9a\xdc\x1c\x50\x22\x00\x6d\xf4\x54\xec\x8c\xb4\x65\x75\xb4\x04\x6f\x62\xc8\xbf\x87\x5b\xd3\xaf\xef\xa6\xe8\x92\x5e\xc4\x63\x2e\x9d\x65\x4d\x88\x80\x62\x27\xe9\x9f\xdf\x69\x2d\xde\x3f\xbf\xd3\x5a\x03\x92\xfe\xf9\xbd\x2d\x35\xee\x6d\xad\x41\x99\xcc\x4a\xde\x52\x2d\x11\x74\x27\xb0\x10\x7f\xef\x04\xf7\xb4\xeb\x82\x98\xc4\x92\x82\x6e\xd4\xf7\x76\x07\x49\x6a\x6c\x9c\x0f\xb2\x65\x3a\x89\x59\x42\xf3\x51\x07\x8d\x02\x34\x3a\x20\x47\x47\xf9\xfa\xef\x18\x8d\x48\x75\xa8\x1a\xc6\xee\xf4\xd0\x7d\x72\x74\x34\x09\xa2\x0e\x74\xf0\x5a\x94\xeb\xe0\xad\xdf\xd1\x48\x42\xb9\x85\xb1\xba\x5a\x07\x09\x11\xd0\x87\x77\x43\xcf\xbd\x1b\xad\x87\xa1\xe7\xde\x89\x8e\x8e\x26\x6b\xff\xe8\x68\x22\xfe\x86\xbe\xfb\x8d\x7c\x71\xa4\x62\x71\x1f\x1d\xf5\x6f\x5e\x1e\x5f\xde\x2e\x3a\x90\x11\x0b\x8d\xe8\xd2\x87\x3b\x45\x07\x62\xd2\x39\x4a\xd1\x51\x8a\x46\x41\xa7\x3a\xde\xed\x04\xf8\xf2\xeb\x42\xbc\xc3\xd6\xcb\x75\x80\xd7\xbb\xd7\xfc\x1b\x0c\x76\xfd\x60\x18\xdc\x0e\xee\x04\x77\x83\x7b\xc1\xd7\x41\xb0\xdb\x78\xf1\x37\xd5\x18\xae\xb7\x76\xaf\xde\x5a\x22\x5a\xbb\x79\xe3\x8d\x56\x03\xf1\xae\xf6\xe2\x6f\x2d\x2f\x6a\xcf\x7e\x7f\xd8\xbf\xdd\xbf\xd3\x8a\xdb\x5d\x81\x5b\x03\x39\x54\x2f\x85\x2f\x7d\x18\x16\xad\x38\xd6\x70\x0b\xd4\x3b\xeb\xc5\xd7\x0d\xdc\xe4\x63\xbd\xc0\x55\xb8\xdd\x11\xb8\x6d\x20\xe3\x81\x5f\x5c\x8f\xf0\x6d\x85\xb0\x85\x60\x60\x90\x2e\x5f\xdc\x6b\x20\xa8\xd0\x6b\x14\xb8\x0a\xc1\xdb\x5b\x10\x1c\xde\x00\xc1\x3b\x0d\x04\x83\x6a\x54\xf5\x8b\xbb\x0d\x04\x0d\x7a\x8d\x02\x57\x21\x38\xdc\x82\xe0\xed\x1b\x20\x78\xb7\x86\x60\x60\x4f\xbb\x7c\x71\xa7\x81\x60\x85\x5e\xa3\xc0\x55\x08\xfa\x5b\x10\xbc\x73\x03\x04\xef\x59\x08\x06\x75\xba\xf4\x03\x7b\x51\xaa\x17\x7f\xdb\x5a\xc0\x46\x30\x40\xf5\xf5\xa0\xf1\xb9\xbb\x81\xcf\x66\x29\x1f\xbe\x16\x18\xe1\xfa\xfa\x08\xea\x0c\x62\xb7\xed\x45\x0d\xb5\x5d\x6b\xc1\x62\xf4\x55\xe8\xb9\xdf\xc4\xee\xe7\x43\xf7\x37\xc1\xd6\x0a\x3c\xda\xca\x28\x36\xff\x0d\x06\xbb\x5f\x51\x3e\xf3\xec\x77\x5f\xf9\x47\xa9\x65\x53\x1a\x1c\xe5\xbd\xa3\xc1\xd1\xa0\xdf\xbb\x35\x38\x3d\x83\x4e\xed\x53\x3a\x38\x95\x6f\x38\x4b\xce\x90\x10\x00\xb7\xed\x27\x72\x87\x1b\xd9\x69\x45\xd0\x28\xf8\x7b\xc7\x1a\xb0\x5b\x62\xdb\x08\xfe\x5e\x0d\x59\x2c\xde\x75\x30\x0e\x1a\xb5\xca\x4a\xa9\xcc\xa4\x6b\x20\x60\xfb\xb5\xda\x84\xac\xf1\xaf\x95\x8d\x9b\x65\x3b\x18\x3a\xa7\x1d\x5c\xec\xe4\x5b\x36\xf6\x2d\x7d\xa8\x77\xa0\x89\xeb\x4d\x10\xd5\x0d\x43\xbe\x45\x3e\xb8\xb6\xe1\xf8\xc6\x0d\xc7\xad\x0d\x57\x02\x43\xde\x14\x2d\xad\x2b\x5b\xd5\x25\x0d\xf6\x5f\x76\x81\x4d\x89\x41\x9d\xe3\xe3\x79\x36\x89\xf3\xd9\xf1\x4c\xfc\x57\x5e\xd9\x3a\x3e\xee\x40\x42\xbe\xf1\xbc\xaf\xfd\x6f\xbe\x19\xde\xbd\xf3\xf5\x1d\xef\x9b\x6f\x7c\x29\x4c\xe8\x7b\x30\x4f\x34\x76\x91\x94\x26\xcc\xdb\x6f\x69\xaa\x7a\x6c\x7d\xce\xc9\xe0\xef\x47\xa6\x40\xdf\x19\x3d\xac\x70\x3f\x8a\x6e\x0d\x60\x49\x2a\xbd\x02\x59\xb7\xc6\xca\x6e\x9f\xce\xb3\x93\x78\x3e\xb2\x3e\x05\x0c\xa9\x97\x18\x77\xbb\xea\x97\xf9\xdb\x57\xa2\x75\x79\x3f\xc7\xbc\x87\xf9\x75\xcd\xe4\x74\x3e\x6d\x34\x22\x5e\x89\x26\xc4\x5f\xf5\xff\x26\x78\xf1\x56\xa8\x66\xeb\xf5\x7c\xbd\x36\xdd\x46\x1d\xcb\x2b\xbb\x83\x11\xae\x25\xe1\xaf\x54\xd1\x3d\xb4\x47\xd7\xeb\x3d\xa3\x2a\x37\x8e\x13\x84\xec\x9a\x4c\x11\xdf\x23\xe5\x45\xb4\x86\x61\xd8\x4e\x0d\x56\x29\xdc\x19\x71\x7d\x99\xa1\x3d\x91\x19\xda\x39\xa2\x61\x16\x41\x06\xb4\xbc\x45\x9c\x69\x95\xcf\xf5\x85\xca\x37\xc1\x96\x6f\x83\x34\x3f\x58\x79\x8b\x52\x0d\x85\x86\x69\x44\x48\x85\x49\x5a\x03\xc1\xf1\x7d\x3b\x43\xc4\xac\x79\x1a\xa2\xb2\x21\x8d\x0c\xdc\xc0\x83\x44\x1b\x07\x53\x6c\x92\x23\x25\x21\x8b\x08\x97\x01\x2a\x80\x81\x75\x97\xd9\x8a\x62\x6e\xaf\x91\x3d\x62\x05\xbd\x5e\x34\x6e\xa7\xcc\xe2\xdc\x5c\x3d\x38\x83\x73\xd5\x96\x75\x08\xb2\x22\x66\xaa\xac\x97\xa7\x1b\x77\xba\xe0\x84\x8c\xc3\xce\xf1\xb1\xbc\xea\xf2\x3e\x3f\xce\x67\x31\x93\xab\x23\x82\x63\x82\xce\xc8\x20\xfc\x7b\x3f\x72\x6e\xe9\xcc\x38\x27\xdd\xee\x89\x74\xfd\x35\x7f\xfb\x4f\x1f\x1f\xbf\x7a\xfd\xf2\xed\xcb\xf5\xba\xd3\xc1\x78\xd4\x51\xab\x13\xe5\x6c\x8c\x8f\xfd\x7e\xc7\x39\x0b\x3a\x1d\xf8\x44\x56\xa5\x72\x0e\x8f\xc9\x69\xc3\xad\x03\x2e\xc8\x69\xf5\xfd\x0d\xa9\x78\xa1\xf3\x49\x69\xca\x8f\xad\xad\x49\x26\xdf\xea\xf7\x9c\x11\xc2\xe1\x51\x74\x59\xac\x23\xb1\x55\x35\xce\x4b\x06\xf5\x16\xd6\xa5\x17\x07\xee\xf7\x46\x52\x4b\x39\x42\x78\xbd\x3b\xcd\x98\x58\xb0\xea\x45\x84\x05\xa0\x5b\x7e\xbf\x37\xea\x60\x47\x30\x5f\x78\x49\xce\xa5\x47\xe7\x98\xc2\x61\x69\xe8\x84\x0f\xa5\x9d\x1b\xde\x92\x67\x68\x0c\x9d\xe7\xf1\xa2\x83\xe1\x21\x79\xa6\x43\xae\x43\x47\xdd\x87\xec\x58\xcb\xe2\x79\xe5\x75\xe4\xfa\xc0\x6a\xb4\x52\x45\xef\x92\x51\xcc\x90\xa0\x18\x7e\xc0\xf6\xcb\x1c\x62\x21\xd7\xbe\x3e\x39\xe5\x32\x63\x0b\xa4\xa1\x1f\xd9\xc9\xf4\x5e\xff\xb5\xe0\x5f\xfd\xb5\xe0\xdf\xdf\x08\xfc\xf1\xf1\x24\xe6\xf1\xf1\xb1\x3c\x35\x7b\x65\x5a\x91\x9f\xe2\xc9\x04\x89\x76\x70\x23\x83\x8f\xb5\x44\x21\xb5\xd7\x7d\xe2\xba\x72\xd5\x23\x46\x68\x98\x44\xa1\x17\x61\x42\x08\x4a\x09\xc7\xeb\x35\xdb\x23\xac\xdb\x4d\xf7\x88\x15\x1c\xa7\x64\x06\x65\x03\x2f\xec\x7c\xc4\x9b\x5b\x5c\x4b\xd8\xbe\x3d\x6a\xdb\x98\xe4\xbd\x73\x79\xc7\xf6\xaa\x2b\xef\x2d\xa1\x2d\x9b\x17\x58\x84\x2c\x21\xfd\x9f\xe8\x57\x3e\x21\x5e\xb7\x4b\x0f\x48\x52\x20\x8b\xe9\xee\x3d\xd0\x6d\x15\xd2\xae\x15\x84\x51\x23\x7f\x90\x95\xac\x95\xd0\x72\xa0\xcd\xb9\x7f\xe5\x8c\x8d\x12\xc2\xe4\x20\xe1\xf5\xba\xc2\x23\x59\xaf\x2b\x09\x41\x3c\x9c\x64\xd9\x9c\xc6\x62\x67\x4f\x46\x9d\xe3\x63\xc9\x6e\x8e\x8f\x3b\x7b\x84\xa8\x98\x7c\x84\x90\x14\x8f\xb2\x70\xc3\xcb\x9b\x8f\xcc\xab\xa0\x23\x76\xec\x4e\x24\x5d\xc7\x16\x8d\x54\x44\xc6\x58\xdf\x6a\xfd\x54\x0d\xd0\x91\x32\x9d\x04\xf2\x1a\xb0\x2c\xd0\x0c\x18\x62\xcd\x0c\xda\x7b\x87\x28\x5e\xaf\x11\x27\x14\x8e\xbb\xdd\xe3\xdd\x24\xdd\xe5\x62\x6b\x44\x0f\xe4\x87\x4d\xdf\xc1\x3d\xbf\x32\x7e\xd6\xc4\x99\xea\xb2\x72\xc9\xd5\x30\x67\xab\x4b\x4e\xf6\xf6\x10\x75\x3a\x1d\x5c\x8c\xe5\x19\x2e\xc5\x97\x95\x97\x95\x98\x98\x37\x41\xae\x0d\x45\x0d\x97\x0a\xdd\x0a\xbe\x14\x70\x74\x95\x4f\xe5\x35\xdc\x0a\x9a\xf5\x59\x34\x64\x7d\x29\x4c\x34\x27\xd1\x90\xb2\xe0\xf2\x02\x31\x3c\x62\xc6\xc4\xf4\xdc\xba\xe9\x2b\x17\xb2\x6d\x45\xac\xaf\xbf\x87\xa3\x87\xea\xaa\x77\x70\x59\x14\x60\x57\x9c\xd0\x39\xb5\xed\x8f\x8d\x5b\x6e\x62\xd3\x12\x04\xaf\x8a\xed\xd6\xa0\x86\x34\xaa\xc3\x3a\xa5\xbc\xe5\x86\x76\xad\x8e\x98\x81\x87\xe5\xc9\x4d\x48\xa3\xf2\xfa\xb5\x3c\x33\xd0\x14\xc0\xcc\x28\x3f\xd6\x86\x57\xa0\x78\x24\x4a\x97\xd6\xb5\xe7\xf5\xfb\xd7\xd7\x36\xab\xe1\x3d\x1c\x55\x21\x30\x05\x38\x0b\x7e\x1d\x66\x4e\x9b\x97\xf1\x6b\x97\xda\xaa\x11\x20\x0f\xcd\x59\x8a\x8c\xb9\x99\x06\x5c\x3a\x79\x14\xf0\xfa\xe6\xb3\x13\x46\xf5\xe2\x2d\x73\xd2\xd2\x27\x60\xe4\x91\xc4\x7c\xc7\x2c\x09\x76\xe0\xc9\x4c\xcc\xe5\x19\xb6\xeb\x8f\x78\x7f\x91\x2d\x10\x0e\x5e\x9a\x9e\x32\xf0\x31\x78\x18\xd7\x9b\xbc\xc1\xd4\x35\xdb\xdb\x65\x07\x9e\x99\x30\x1e\xb2\x28\xf4\x1b\xdd\x68\xce\x8b\xae\xf6\xa8\xbe\x37\x00\x95\x82\x5a\xad\xe6\xe6\xe8\xdb\x57\x18\x4d\xc5\x94\x3c\x42\xb6\x54\x96\x1e\x78\x23\x73\x52\x44\x81\x47\x38\x60\x61\x2a\xd0\x22\x66\x4e\x5e\xdd\x7c\x4e\x2e\x05\x33\x93\xba\xdc\x73\x38\x8b\x17\xe2\x17\x7a\xbb\x5e\xbf\xc6\xa0\xd8\x9d\xfa\x54\xd4\x61\x6e\x5f\x4c\x4f\x8d\x9f\x9a\x2e\x23\x0d\xcb\xaf\xae\x98\x80\x8d\x7a\xa7\x94\x6f\x54\xda\x32\xc2\x55\x25\xb5\x7c\xeb\x95\xb6\x92\x76\x55\x4d\x6c\xfb\xd2\x2d\x47\x0d\xdb\x7b\xab\x76\x3c\x99\x10\xfb\x59\x0c\xf7\x56\xee\x61\x46\x53\x03\x4c\xdb\x00\x6e\xe9\x43\xbd\xbe\xee\x87\xe4\x82\x4f\xe0\x33\x7c\x47\xd0\x93\x16\x7a\x15\x42\xfe\x8b\x8d\x28\x72\xdd\x2e\x0f\x3d\xa1\x29\xd0\xd0\x8b\x46\x1b\x01\x10\x4a\x3d\x63\x2a\xc4\x8d\x2a\xc3\x9c\xdc\x58\x4b\x2f\xfd\x0c\x72\xad\x1e\x64\x18\x96\xc4\x1f\x78\x30\x27\x61\xb4\x1f\x0b\xb1\x44\x3b\xea\xd0\x30\x8e\x76\x96\xe4\x03\x1a\x97\xa9\x90\x31\xe4\x61\x1c\x91\xe4\x3e\xf1\x87\x5e\xb7\x3b\xae\xa2\x61\x0e\x3d\x69\x47\x78\x8f\xe2\x6e\x77\x8c\x0d\x63\x1b\x4b\x0c\x76\x54\xa4\x21\xd7\x87\x09\xc9\xc5\x33\x0d\x04\x9a\xfb\x8e\x33\x3b\x48\xba\xdd\xb9\x71\x0b\x5c\xee\x9b\x68\x92\xe3\x70\x16\xc1\x39\x91\xf7\xb4\xce\x88\xe0\x6f\x67\xa3\xb3\xc0\x83\x3d\x34\x19\x2d\xd0\x04\xce\x71\x90\xa2\x39\x9c\x03\xc3\x58\xf5\x39\x26\xd9\xbe\xeb\xc6\xfb\xe6\x3a\x57\xae\x0f\x07\xf7\xd0\x6a\xb4\x40\x2b\x55\x43\xf4\x48\x57\x1a\x67\x29\x4f\xd2\x25\xdd\xa5\xc5\xa4\xdb\x9d\xa8\x75\x76\x8e\x61\xae\x7e\x9d\x55\xa9\x2c\xe6\x05\xe2\x58\x48\x2c\xf0\x99\x1c\xa2\x92\x39\x7e\x1e\x3d\x29\xd9\x52\xf0\x19\x3c\x0c\x57\x1f\x74\x83\x16\x2d\x0f\x4b\xb9\xc8\x95\xb5\x52\x3d\x0f\xac\x14\x5b\xd3\x90\x47\x84\x86\x9f\x1d\x21\xb6\xda\x2e\x2c\x46\xa3\xfb\xec\xf8\xaa\xf0\x67\xa1\xd3\xc9\xc2\xbc\xdc\x79\x92\xf0\x73\x44\xd2\x8d\x23\x9a\xfc\x53\x22\xb6\xe2\x32\x7b\xfb\xe5\x38\xce\xa9\xd8\x9b\x8c\x3e\xa7\xc3\x60\xed\xc8\xf7\x7e\xf3\x3d\xc8\x1b\xa9\xea\xe3\xb0\xf5\x23\x30\x21\x53\xab\x12\xb7\xb7\x97\x00\x16\x0e\xa3\xea\x64\xbc\x3c\xa9\x64\xb8\x40\x4f\xe4\x7a\x82\x04\x17\x96\xde\xf2\xa0\x5a\x0f\x42\x44\x1a\x5d\x18\xb1\x23\xe8\x74\xca\xa5\x41\x48\xb6\x5e\x73\x42\xe2\x5a\xba\x43\x53\xcf\x8a\xdb\x25\x45\x60\xeb\x4e\x04\x5f\xaf\x6b\x76\x20\x6c\xc5\x2b\xfb\x6e\xcb\x11\xf8\xff\x3b\x41\x98\x36\x42\x50\x71\x5d\x15\x75\x52\xfa\x89\xb2\x0e\x06\x56\xbe\xc9\xe6\x13\xf1\x66\xc7\x0e\xc1\x22\xd8\xf1\xc6\xe1\x3b\x95\xb1\xd2\x29\x50\xe2\x69\xd7\xdb\x3c\xf9\x4c\x89\x07\xfa\x76\xf4\x59\x22\xbe\x2a\x97\xd6\xf9\x84\xe6\x7a\xe3\x16\x2d\xe6\x26\x22\xb8\xbe\xcd\xf3\x81\xae\xce\xe2\x85\xd4\xc7\x9e\xc7\x0b\xe0\xc6\xad\x38\xce\xf3\xe4\x34\x45\x1c\x03\x3d\xf0\xcd\x4b\x05\xb9\x6c\x10\xdb\x19\xf8\x24\x3b\x57\x7b\xe6\x07\xba\x32\xcd\x4b\xa7\x50\xa2\xfc\x5c\xc5\x3a\xb3\xda\x0e\x99\x79\xb4\x12\xf3\x95\x97\x86\x68\xca\xd9\xca\xb6\x9e\xe4\xdb\x3f\x2d\x37\x3e\xd1\xfe\xb3\xd7\xef\x9e\x8b\x7e\x81\x65\x3d\xe9\x1f\x9f\xc5\xec\xc3\x63\x51\xe6\x30\x7f\x97\xd3\x49\x6d\xc7\x10\xd3\x6a\x0d\x53\xb7\x2b\xd5\x51\x79\x03\x42\x7f\x50\x63\x69\x06\x43\x8f\xac\xd4\x59\x41\xfc\x2f\x3a\x24\x43\x97\x82\xf8\x5f\xd6\x67\x91\x61\x2e\xaa\x88\xe9\x3f\x95\x76\xa4\xaa\x31\xa8\x37\x6c\x3d\xc9\xfa\xd8\xfe\x4e\xc4\xfe\x6d\xf7\x4a\x4d\xd5\xc6\xee\x97\x9a\x10\x0d\x72\xd6\xd6\x6b\x15\x80\xaf\xff\xfc\xf0\x97\xe3\x9f\x0e\x9f\xbd\x7b\xbc\x63\x13\x80\x51\xfc\x77\x2a\x27\x4e\x1a\x36\x96\x57\x24\x8f\x11\xe2\x7e\x4a\x2f\x38\xc2\xfb\x7b\x79\x7f\x92\xa5\x74\xbf\x7a\xa5\xda\x5d\x12\x15\x47\x40\x4f\xbe\x60\x5b\xe6\xa7\x60\x6f\xe5\x15\x49\xdd\xb0\x90\x04\x96\xd2\x0d\x78\x89\x21\x1d\x21\xc9\xbb\x97\xb0\x14\x23\x94\xe2\xc0\x1e\xea\x25\xa4\x64\x09\x1e\x21\x99\xeb\x6e\x5e\x32\xcf\xce\x29\x9b\xce\xb3\x4f\x1d\x5c\xd8\xa3\x95\x5a\x0b\xa4\xde\x70\xf2\x99\xd6\x07\xf2\x2a\x99\x57\x57\x52\x42\x97\xec\x04\xae\x09\x26\x0d\xca\x12\x0b\x87\xeb\xab\x51\xb5\x36\x1a\xc2\x56\x6a\x5c\x7a\xda\x5a\x31\x96\xd0\x11\xca\x6a\x0b\x69\xb3\xb5\x4c\x51\x88\x09\xc7\x6c\x8f\x2d\x85\x8c\x98\xc0\x0e\x29\xae\x51\xd2\xa8\x49\x68\x19\x64\x0d\xc2\xac\x4f\x40\x56\xa3\xc3\x0c\x1c\xa7\x1c\xdb\x6a\x94\xef\x57\x44\xa7\x23\x78\x98\x58\xf5\x12\xc5\xc6\x70\x88\x4f\x64\x23\x94\x84\xd5\xa8\x18\x6b\x5a\x1b\x6b\xf5\x3e\xe4\xd1\x08\x6d\xb0\xb8\xf2\x9b\xcd\xfd\x2a\x4e\x63\x06\x48\x57\xb1\x39\x61\x8d\x39\xea\xd5\x4a\xab\x9a\x35\x76\x59\xca\xec\xea\x96\x9b\xeb\x56\xc3\x10\xaa\x3b\xfe\xfa\x02\x7f\x54\xef\xed\x34\x49\x27\x37\xa4\x30\xd3\xe1\x91\xa6\xa2\x52\xd1\x4d\x6f\x2a\x2a\x6b\x78\x46\xe2\x4f\xaf\xd7\x27\xd3\x6d\xb4\x9e\xe2\x36\xc8\x7a\x10\x52\x35\x08\xa9\x64\x96\x69\xc8\x22\xb1\x86\x15\xe3\x13\xef\xe4\x07\xb9\x98\x05\x6b\x0c\x52\x39\x6f\xe6\x9d\x3d\xb6\x7a\x4e\xc4\x27\x51\xcc\x86\xd3\x32\x4f\x0a\xda\x4d\xb6\x38\x31\x2d\xae\x0b\x69\xdb\x6a\x6c\xd7\xf9\x6e\x00\x90\x34\x08\x42\xb3\xcf\x02\xb2\x0a\xfa\x06\xff\x6c\x09\xc8\xa8\xd4\x1f\xab\x92\x64\xa5\x5b\x16\x84\xdc\xdd\xca\x18\x8b\x9a\xfa\xf5\x96\x27\x46\xfa\x52\xf0\xe3\x60\xcf\xd7\x97\x7a\x9a\xa4\x88\x03\x5d\xc0\x04\xe9\xd3\x24\x55\x40\xfe\x7b\x90\xce\xff\x12\xa4\x25\xce\x57\xa0\xba\xfc\x3d\xa8\x2e\xff\x22\x54\x15\x45\x6d\x47\xd6\x26\xb5\x0f\x74\x95\xb7\x20\x28\x58\x73\x6e\x33\xa5\xc6\x52\x95\x10\xb7\x55\x5c\x5e\x51\x51\xe0\x9d\xb4\xd6\x54\x63\x92\x7e\xd9\x40\x8a\xe6\xb2\x2b\x9a\xd3\xd1\x75\xed\xbd\x8d\xe1\x4b\xa3\x26\xec\x11\x12\xcb\x00\xf0\x48\xd9\x6c\xec\xd3\x3c\x0b\xe6\x7e\xba\x8f\xb5\xc2\xc3\xcc\x82\xd5\x77\x84\x64\x2d\x48\x25\x7b\xa8\xb7\xcc\xb3\xef\xdf\xbc\x7c\xd1\xee\x24\x2d\xb0\x56\x1a\x5f\x25\xb4\x82\xbe\x9b\xdf\x68\x36\x64\x8e\x13\x11\x79\x39\x4e\xb5\xa8\xe6\xb2\x62\x1b\xb2\xe9\x92\x3a\x9a\x38\x28\x2b\x71\x3b\x16\x9d\x8e\x09\x5c\xa4\xdb\x63\xfb\x98\x3a\x44\xfb\xba\xca\x30\x79\xd8\xe9\x04\x1d\x87\xe9\x2e\x23\x46\x98\x60\x83\x42\x86\x74\x48\x67\xf7\x60\xb7\x4a\x4c\x44\x8b\x02\xa3\x8c\xd4\x1d\x5f\x47\x3c\xa8\xbd\x10\x83\x25\x33\x2d\x04\x97\x05\xbe\xce\xe3\x35\x25\x19\x1e\xa5\x95\x39\x90\x03\xc5\x41\xda\x74\x7a\xbd\xc6\x67\xd1\xd6\x59\xbe\x34\x6c\xe4\x7f\x8c\x36\x57\x86\x90\xf4\xd4\x45\xe0\xa1\x2f\x9d\xaf\xd1\xd0\x8e\x85\x9e\xd7\xcd\xc3\x7d\x9a\x8e\xb3\x09\x1d\xf1\xbe\x1a\xaa\x51\x22\x34\x6f\xf5\xf2\xdd\xeb\xa7\x0f\xb3\xb3\x45\x96\xd2\x94\xcb\xb7\x0d\x9d\x46\x47\x34\xad\xbc\xbd\x47\x25\x1d\x48\x2f\x7a\x3e\xea\x74\x02\xaa\x1d\xbb\xb9\xe3\x5b\xfa\xd8\xbc\xfd\x90\x45\xc3\xdc\xd1\xc6\x0c\x1d\x88\x48\x65\x64\x55\x16\x8d\x8e\x6c\xac\x13\x6c\x9e\xe6\xcb\xb3\x7c\x4e\x06\x47\x21\x3a\x9a\xf4\xf0\x51\x64\x0e\x95\x29\x06\x4a\xac\xa4\x6a\x47\xe1\xd1\xa4\x27\x1d\x27\x3a\x1d\x0c\x7c\x54\x99\x7c\xd2\x90\x0a\xc5\x48\xfc\x91\xa9\xbe\x52\x99\x35\x2f\xf4\xa3\x88\x30\xb1\xe9\xd3\x88\xb0\x42\x5a\x40\x3a\x27\x2c\x1e\x7f\xa0\xfc\x2a\x44\xd0\x51\x78\x14\xe1\x2b\xb0\xa8\x50\x28\xad\xfc\xa2\x8d\x91\x6c\x28\x8c\x4a\xa7\x9b\x90\x46\x60\xda\x0f\x59\x54\x22\xa2\xe3\xc4\xb6\xa0\xa0\x6c\x19\x06\x28\x13\x40\x59\x1d\xa8\x78\x04\x8e\x03\xf9\x9a\x17\x45\x81\x38\xc9\xd0\xa5\x35\xde\x41\x27\xcd\x52\xda\x29\x80\x63\x0c\x49\x6b\x1c\x5e\x7d\xe4\xb3\x11\x43\x77\x94\x04\xea\x16\xae\x74\xee\xaa\xfa\xfc\xf7\x70\xf4\xff\x75\x23\xd9\x69\x3c\x42\x26\xa4\x5c\xa7\xdb\x69\x09\x7f\x6e\xd1\x57\x35\x66\xce\xe0\x14\x3a\xbb\x1d\x6c\x6a\x92\x0e\x96\x71\x4c\x8c\x08\x9f\x11\x2b\x15\x87\x49\xc3\x41\x3a\xc6\x5c\xb9\x63\xdd\xa6\xc9\x54\x24\xd0\x58\x28\x27\x0c\xc5\x28\xc5\x90\x49\xcb\x54\x2d\xaa\x7f\xa2\xc3\xb8\x8b\x4e\x4c\x96\x63\xda\x1a\xec\x22\xb1\x38\xef\x03\x75\x30\x29\x77\x93\x5a\x64\x0e\xf1\x62\xaf\x1e\x15\x97\xe1\x91\x94\xe3\xed\xdb\x14\xed\xe1\x74\x25\x0f\xd5\x98\x04\x8d\x80\x1f\x23\x8a\xea\x81\xe7\xaf\x8a\x3c\x5f\x86\xb9\x77\xf5\x2f\x8e\x0b\xbc\x2d\x63\x1d\x0f\xa5\x58\x26\x8f\xf1\xe4\x29\x27\x61\x40\x0b\x68\xa1\x04\x8c\x83\xa4\xe0\x7d\x7a\xc1\x59\x3c\x16\x9a\x30\x57\x79\xcf\xc9\x1c\x78\x15\xbd\xa4\x61\xc6\xdf\x13\x3c\x42\x91\x9d\xe2\x37\xf2\x1a\xb6\xe4\x42\xe2\xd7\x16\x52\x94\x9d\xeb\x76\x91\x1a\x8e\xda\x45\x04\x13\x39\xd2\xee\xca\x97\x73\x92\x7a\x42\x63\x7d\x98\xcc\x46\x61\x2e\x0f\x93\xa0\x13\x76\x20\x85\x4e\xd4\x89\xca\xec\x77\x81\xfd\x2d\x47\xa9\xfc\x19\x11\xf1\x9b\x01\xc5\x55\xc1\xeb\x78\x87\x95\x90\xb4\x6a\x58\xc1\xb6\xda\x68\x87\xbc\x8d\x19\xdc\x08\x66\x1b\x44\xc1\x12\xaa\x6d\x7d\x64\xd3\x18\xd5\x24\xa6\xe6\xa0\x41\x3f\xa9\x49\xef\x40\x75\x18\x97\xea\x02\x5b\x2d\xe3\x8f\x46\xc6\xbc\xdc\x15\x03\xc7\xa5\x3e\x57\x27\xfd\x04\x1b\x23\x44\x58\xd9\xc0\xf5\xa6\xb2\x85\x6f\x18\xc6\x47\xbb\xdd\x4c\x99\xfb\x99\x98\x15\x30\x57\x96\xb1\x58\xe6\x99\xee\x6a\xb7\x53\x5a\xab\x15\x0a\x4e\x87\x74\x9c\x1c\x25\x20\xd7\xc6\xd6\x1c\x89\x65\x16\x87\xfb\x5e\x81\x2b\x58\xf2\x5a\x82\x26\xff\x77\x6c\xde\x7a\x74\x75\xb9\x64\xf3\xa0\x64\x7f\xa3\x0e\x0e\xbd\x68\xbd\xee\x74\xe0\xe3\x92\xb2\x55\x30\x47\x62\x7b\x15\xcd\x5f\x77\x0d\xe5\xea\x3b\x3c\x6d\x9b\xb8\xe5\xe7\xb4\xf7\xff\x23\xdc\x8b\x06\xa7\x6d\xc9\x4d\xbf\xea\x38\xea\xfe\xd8\xc3\x6c\x42\x0f\x39\xf2\x70\x75\xfb\xc9\xbf\x27\x1e\xde\x2d\x16\x26\xbe\x42\xd1\x16\xa8\xbb\xe5\xca\x88\x26\xa1\x53\xca\x2d\xd7\x29\x25\xdc\xe4\xd5\x0e\xb3\x2d\x50\x39\x64\x9b\x25\x16\xfa\xdb\xd3\xfc\x71\x79\xe3\xa7\x6d\x50\x94\x5f\x43\x32\x45\x7b\x1a\x84\x32\x4a\x6a\xd2\xdb\xf3\x77\x2a\x79\x5c\x77\xb2\x13\x9f\x8c\x55\x9a\x44\x1a\xde\x8d\x48\x67\x42\x3b\xa0\x92\xc4\xb5\xf6\xe2\x45\x7c\x46\xc5\xba\x08\xbd\xa8\x02\xda\xb8\xce\xe7\xed\xb3\x03\xdf\x93\x91\x0c\x78\xd8\x39\xee\x38\x3a\xd8\xf9\x94\x65\x67\x0f\xf5\x50\x23\x86\x23\x22\x03\x45\x74\x3c\x7f\x78\xfb\xce\xdd\x7b\x5f\xff\xed\x1b\x2b\xbd\x49\x5b\xab\xcd\x05\xd8\x64\xe0\xe5\x92\xae\x77\x37\xad\x32\xdc\x88\xce\x4e\xe8\xf4\x74\x96\xbc\xff\x30\x3f\x4b\xb3\xc5\x47\x96\xf3\x8e\xa1\xcf\x2d\xbb\xb3\x94\x42\x68\x81\xa1\xbd\x76\x35\x52\x92\x65\xd4\xc6\x1d\x5d\x16\x90\xe2\x0a\xb1\xca\x8d\xc4\x60\x58\x14\x08\x8f\x6a\x75\x1a\xd1\xce\x2a\xaf\xab\xb8\xe1\x3c\x5e\xb2\x16\xda\x1e\xa5\xa5\x06\x75\x77\xac\x62\xb6\x9c\x50\x19\xb6\x85\x4e\x76\x3f\x25\x7c\x26\x19\xe5\x6e\xc6\x76\x2b\x5f\xd6\x92\x13\xaa\xea\xda\xd3\x09\x96\xc4\xdf\x5f\x1e\x34\x2f\xac\xee\x2f\x1d\xa7\x42\x71\xbe\x9b\xa4\xbb\x4c\x8f\x06\xaa\xae\xac\x2e\x23\x8c\x13\xa3\x4e\xce\x85\x36\x95\x87\xf3\x88\xb0\x70\x1e\x69\xb3\xd6\x65\x2c\x05\x87\x9d\x2a\xae\xaa\xb7\x3f\x3e\x88\x4d\x2b\x63\xc7\xc1\x99\x01\x10\x87\xe3\x48\xc1\x10\xbf\x04\x18\xf9\xb7\x3a\xe6\xcc\xaf\x5b\xa4\xff\x0f\xe9\x48\xb6\xcf\xfb\x57\x61\xec\x4e\x3d\xf7\x9b\xe8\x72\x58\x74\xa0\x73\x9a\x74\xb0\xb6\x49\x97\x57\x07\xec\x22\xd8\xd1\x85\x6a\x27\x84\x32\x74\x57\xe5\x1b\x35\xa1\x9b\xac\xb7\x5a\x86\x96\xd7\x94\x4e\x6a\x5a\x7a\xd2\x99\x71\x50\x89\xf6\xfc\x1d\x13\x4d\xad\x0c\x1a\x8d\x65\x7c\x56\xad\x52\x95\x44\xd9\x70\xce\xd5\x42\xbe\x22\x8d\x30\x82\x18\x31\x0c\x42\xc4\xc5\xcd\x03\xab\xab\x51\x36\x98\xa6\xf6\xd5\x64\x2b\x40\x08\x23\x7e\x33\x46\x0b\x27\x88\x0a\x15\x1f\x98\xc5\x77\xca\x1a\x96\x95\xa0\x7d\xeb\x6a\x0b\xf7\xbb\x65\x1d\x3f\xd6\x97\xe0\x77\xff\xa1\x36\xba\xc9\xbb\xd7\x4f\xff\xa1\x83\xf7\x66\x53\x49\x67\xbb\xff\x50\xb0\xfe\x01\xbb\xa7\x19\xdf\xfd\x47\xc7\x11\x8d\x38\x9d\x7f\x74\xf0\x8e\xed\xc9\xd6\xaa\x63\xc0\x55\x23\xb2\x79\x15\xba\x71\x7f\xbb\xf3\xd5\x93\xc7\x5f\x3d\x79\xd2\x09\x3a\xff\xe7\x7f\xff\xaf\xff\xf3\xbf\xff\x57\x07\x3a\x5f\x3d\x79\xf2\xd5\x93\xc7\xd5\x1b\xb1\x27\x64\x46\x39\xdc\x67\xfb\x6a\x3a\x78\xc8\x42\x2f\x8a\x48\x4b\xeb\xf2\x88\xbe\x22\x1e\xc5\xc4\x73\xf5\x7a\x27\x95\x8a\x9e\x27\xf4\x57\x03\x22\xc5\x85\xd5\x42\xc1\xc3\xce\x57\x0f\x87\x42\x30\x15\xad\x5b\x4e\x07\x75\xf5\x01\x54\xd2\xf6\x32\xae\x5b\x6c\x22\xef\x2c\x49\x12\xc6\xd1\x8e\x3d\x5a\xd6\x2a\x59\xca\x6b\x21\xc0\x05\x5b\x2b\x4f\xff\xa5\x47\x68\x51\x00\x5c\xcd\x79\x58\x5f\x28\x22\x7a\x57\x92\xbe\xcf\xaf\x9e\x42\x42\x86\xbd\x14\x32\x92\xb8\x3e\x75\xef\xd9\xab\xcd\xf8\x3e\x5d\x78\xfa\x44\x60\x65\x7e\x5c\xf8\xe6\x8d\x2f\x2f\x9c\x6b\x2b\x38\xe9\x74\x6c\xc2\xaf\x59\x0d\xe3\x22\xae\x16\x0e\xb1\xac\xc6\x32\x77\xb4\xe1\x36\x41\x0c\x67\xd9\x39\x7d\x9b\xb5\x06\xdd\x74\x48\xe7\x79\xc7\x41\x0d\xac\x2e\x7c\xe2\x50\xc9\x2e\xcc\xa7\x12\xcf\x95\x4f\x1c\x8e\x0b\x18\xcf\xb3\x9c\xbe\x8a\xf9\xcc\xbe\x9f\x6c\xe2\x37\x6a\x20\xe6\xc0\xb5\xea\xdc\x85\xb1\xee\xaf\xca\xee\x9a\x37\x0e\xe9\xfc\xd6\xc1\x05\xcc\x93\xf4\x0a\x64\x9f\x55\xc8\x6e\xe2\xa8\x51\xfb\xb8\x8c\x27\x2c\xe6\xc9\xf8\xe1\x92\x6d\x74\x5c\xdb\x38\x0c\xbc\x1f\x3b\xce\xae\x43\x25\x94\x5d\x87\xdb\xd0\x04\x7c\xb6\x01\x3f\xc5\x05\x9c\xd0\xcf\x09\x65\xdb\x80\x43\x02\x99\xd5\xc0\xc3\xcd\x06\x76\x1d\xa6\xff\xa6\xcd\x06\x93\x8d\x06\x33\x5c\x40\xcc\xc6\x9b\x0d\xc9\x66\x28\x71\x28\x70\xe2\x70\x60\xc4\x61\x90\x10\x27\x81\x8c\x38\x99\x1d\x7b\xeb\xf8\xc2\x87\xbc\x9c\x3d\x58\x12\xe6\x52\x98\x93\xc4\xe5\x30\x26\xb1\x4b\x61\x4a\x72\x97\xc3\x8c\x8c\x7b\x63\x67\xda\x9b\x8a\x0d\x3c\x3b\xf0\x36\xcf\x81\x53\x7a\x1a\xf3\xe4\x9c\xee\xb2\x78\x92\x2c\xf3\x60\xb7\xe3\xa8\xe8\xd1\x76\xea\xd8\xe3\x0b\x13\x73\xb6\x4e\x5a\x3e\xd9\x98\x2c\x8e\xcb\x24\xc8\xb3\xfb\x62\xa5\xe0\x64\x8a\xca\x78\x1e\xd3\xde\xd2\x9d\xf7\xc6\x58\x7e\xe9\x76\x33\x13\x6b\x9d\xb9\x31\x2c\x48\xe2\xe6\x70\x46\x96\xbd\xa5\x33\xef\xcd\xe1\x9c\x4c\x7a\x13\x67\xd1\x5b\xc0\x4a\x2d\xc2\xfc\x23\xe3\xe8\x0c\xc3\xa9\xf5\x38\xc3\x70\x42\xb2\x9e\x7c\xc1\xe3\x14\xa1\xd4\x55\x8d\x8d\xb3\x1c\xa1\x33\x67\xe6\x9e\xe3\x01\x1a\xf6\x56\xbd\x53\x8c\x65\x68\xe3\x63\x72\x32\x38\x85\x4f\xe4\x64\xb0\xda\x29\xf1\x3a\x76\x7d\x83\x13\xaa\x91\x25\x75\x8e\x7b\x63\xd3\x47\xe7\xb8\x37\x2d\x03\x3b\x3b\xa4\x73\xd8\x71\x32\xf9\x49\xfc\xef\x81\x27\xa7\x1f\x4d\x7b\x93\xfb\xe3\xde\x02\x37\xc8\x80\x3a\x9f\x7a\xcb\x8d\xd1\x72\x3e\xf5\xe6\xd8\x4a\xaf\xbc\xb1\x1c\x5a\x06\x58\xd2\x4e\x93\x72\x74\x26\xc8\x92\x76\x76\x54\x90\x09\x24\x48\x08\xab\xf1\x11\x43\x12\x63\x18\x13\xa6\x9e\xf3\x24\x15\xcf\x53\x42\x9d\x39\xcc\x08\x77\xc6\x30\x21\xfe\xdf\x97\xb0\x20\xcb\x51\xec\xe6\x41\xee\xca\xb4\xeb\xec\x86\x74\xc3\xf0\x4e\x83\x68\x46\x36\xd1\x4c\x65\x47\x66\x41\x45\x0d\xa6\x98\x3b\x55\x83\xbf\x5e\x37\x3e\xad\x7c\x77\xa6\x3e\xe1\xc6\xc4\x68\x60\x18\x58\xb7\x8b\x16\x07\x9e\xf8\x9f\x2c\xbe\x4a\x9c\x04\xc3\xe2\x7e\x36\xb2\xe7\x48\x2d\x4c\x26\xe7\xc8\x87\x8e\x33\x51\x23\x4a\xdd\xb9\x19\x5b\x57\x4c\xf1\xf6\x92\xe5\x64\x4c\x9b\x93\x31\xc3\xc1\x62\x83\x6e\x1a\x80\x24\x51\x2c\xee\x93\x54\x55\x6e\xc2\xa4\x0e\xab\xa6\x27\xc7\x9b\x14\x62\xcd\x56\x8e\x31\xc6\x05\x30\x3a\xe6\x57\xf1\xbf\xdf\xc3\xfc\x9d\xce\x4c\x33\xb1\x73\xcd\xc4\x66\x1d\xc7\x65\x4e\xe7\xb7\x4e\x01\x46\xd7\x6e\x09\x5b\xa1\x60\x14\x85\xc9\xeb\xdf\x48\x7a\xdc\x94\x4a\xac\xcc\x61\x05\x8c\xcb\x40\x3f\x65\xcc\x1f\x1e\xa7\x43\x98\x11\x33\x20\x30\xa9\xae\x21\x2d\xaa\x6b\x48\x67\xc4\x0c\x09\x9c\x57\xcc\x00\x56\xc4\xa7\xae\x3f\x34\x0c\xe2\xd5\x53\x38\x21\xa7\x83\x21\x1c\x93\x61\xef\xb4\xda\xb1\x3f\xd9\x12\xfe\x7d\xe2\x8f\x4e\x02\x7a\x40\x5c\x7f\xe4\x9e\xa8\x98\x57\xb1\x18\x6b\x6a\x09\xa7\x8f\x6b\x66\x96\x24\x4d\x29\x7b\x2d\xc9\xbe\x2a\x72\x51\x2b\x92\x2d\xf9\x66\x91\x37\xb5\x22\x39\x8f\x19\x3f\x4c\x4f\xe7\xd6\x31\xc6\xcb\x5a\x09\x9a\x4e\x1a\xdf\x0f\x9b\x17\x6a\x17\x71\xb3\xc8\x07\x7b\xcb\x82\xb8\x0c\x2e\xe4\x32\x58\x12\xee\xa6\x30\x27\x28\x1e\x65\x81\x9b\xe1\xc1\x39\xca\x7b\xb9\xb3\xec\x2d\x05\x53\x98\xf7\x96\x30\x25\xee\xbc\x97\xc3\x8c\x50\x67\x0c\x0b\xc2\x9d\x29\x9c\x11\xe6\x8c\x61\x45\x52\x67\x0a\xa7\x04\xcd\x9c\x33\x3c\x18\xc2\x09\x41\x0b\x67\x85\xe5\xd8\x9e\xb9\x33\xf8\x44\x56\xee\x02\x1e\x93\xe3\xde\xb1\xf3\xa9\xf7\x09\x2e\x48\xe2\x66\xf0\x86\xcc\x7a\x2b\xf7\xac\xb7\x80\x97\x04\x7d\x3a\xf0\x46\xae\x1f\xf8\xb8\x77\x8e\x26\xc8\x83\x8b\xde\x45\xef\xb1\xfb\xa6\xf7\x06\x63\x38\x24\xe8\x4d\xef\x93\x7b\xdc\x7b\x89\x07\x8f\xe1\x03\x41\xee\x9b\xde\xb1\xfb\x49\x3d\xbe\x95\x1f\x1d\xfd\xf1\xa1\xfa\xe8\xe8\x8f\xcf\xc9\xa1\x7b\x0a\xaf\xc9\x07\xf7\x04\x5e\x91\xb7\xee\x29\xbc\x27\x0f\xdd\x13\x23\xd8\x3f\xef\x3d\x77\x5e\xf7\x5e\xdf\x7f\xd5\x7b\xe5\xbc\xef\xbd\x97\xd1\xc1\xde\xc2\x07\xf2\x10\xc3\xe5\xf8\x22\x38\x84\xf1\x2a\xf8\x00\x17\x9e\x1f\xb8\x63\x58\x89\x3f\x53\xb8\xf0\xfd\xe0\xb0\x87\x92\xc1\x85\xeb\x63\x58\xf9\x7e\xf0\xc1\x3c\x15\x52\x5f\x7b\xbb\x79\x20\xfe\x18\x38\xb9\x00\x46\xe6\x48\x7a\xd8\xaa\xf4\x7b\xe4\x0d\x64\xe4\x25\xc4\xe4\x50\xc7\x1b\xaa\x48\x70\xa2\x6b\xce\x61\x02\x8f\xe1\x82\x38\xa5\x63\xea\x2c\xc9\xad\x68\xc1\xf0\x86\x38\x7c\xcb\xa7\x97\x24\x69\xff\xe2\x9e\xc0\x21\xc9\xb6\x7e\x7b\x4b\xc6\xe8\xd0\x7d\x89\xe1\x21\x39\xbc\xff\x72\x47\x45\x31\x42\x39\x99\x93\x25\xc2\x18\xde\x1c\x5c\x74\xbb\x68\x42\xde\xc0\x1b\x72\x01\x17\x64\x82\xe1\xcd\xfd\x95\xd8\xc5\xdf\xde\x3f\x76\x57\x38\xef\x2b\xc9\x13\xbd\xe9\xcd\xd0\x4b\x0c\x6f\x7a\x67\xe8\x25\xc6\x90\xf7\x63\x36\x46\x62\x17\x7c\x03\x2f\xe1\x10\xf6\x1e\x62\xb8\xb8\xbf\x92\x01\x9f\x75\x8d\x8b\xde\x0c\x1d\x62\xb8\xe8\x9d\xa1\xc3\x5a\x8d\x0b\x38\x84\x97\xf0\x10\x2b\xd9\x41\x8e\xcc\x73\x78\x0d\xaf\xc8\x4b\x78\x4f\x0e\xe1\x11\x79\x09\x2f\xc8\x21\x3c\x25\x6f\xe1\x19\x79\x0b\x4f\x48\xdc\xde\xbb\xc1\x10\x3e\x93\x27\xb2\xd1\x74\xe4\xa4\xed\x85\x82\x73\x74\xd1\xbb\x70\x14\xe5\x7d\x47\x16\x68\x8c\xde\xb8\x17\xa2\xae\xc3\xda\x6b\x60\x78\x40\xbe\x83\x77\xe4\x3b\x31\x58\x9f\xef\xaf\xd4\xdc\xfd\x4c\x3e\xa1\xcf\x03\xd1\x99\x27\x18\xc3\x47\xf9\xf4\x46\x3d\xed\xa3\xa7\x2e\x19\xf6\x7e\xc6\xf7\x57\x23\xf4\xc8\x21\x3f\xf7\xc8\xc3\x91\x1f\xb8\x3e\xbc\x70\xc9\xcf\x38\x40\x4f\x89\x07\x8f\xc8\x0b\x82\x5e\x3a\x87\x52\x2a\x41\xcf\x44\x85\x8f\xb2\xc2\x2b\x87\x7c\x2c\x2b\xbc\x77\xc9\x47\x1c\xa0\x67\xc4\x83\x57\xe4\x7d\x59\x41\x12\xe2\x4f\x44\xcc\xc1\x2b\x0c\xbf\x12\xd1\xf0\x2b\x0c\xdf\x12\x31\xc6\x2f\x30\xfc\x40\x04\x62\x2f\xa4\x24\xf7\x9d\xc1\xf8\x16\xfc\x28\x6b\xbc\xc7\xf0\x8b\xac\xf1\x1e\xc3\x6f\xb2\xc6\x23\x0c\xdf\xcb\x1a\x8f\x64\x8d\xb7\x07\xa7\xdd\x2e\xba\xd5\x8c\x5a\xa9\x79\x0a\xe4\x46\x01\xfb\xcd\xfd\x09\xe6\xe4\x7b\xf7\x57\x18\x93\x6f\xdd\x1f\x61\x4a\x7e\x70\x7f\x81\x19\x11\x62\xde\xb8\xa7\x12\x42\xa3\x59\x6f\x76\xb0\x32\xc6\xbe\xf0\x27\x07\xcd\x08\x1a\xf7\xd0\xaf\xee\x2f\xd8\x9d\xf6\xd0\x4f\xee\x8f\x18\x0f\x66\xb8\xb7\x84\x5f\x9d\x59\x6f\x1e\x15\xc8\x84\x68\xa4\x94\xfc\xe4\xde\x0a\xbd\x08\x38\x25\xbf\xba\xb7\xa4\x3b\x37\x25\x3f\xaa\x77\x29\x25\xbf\xa8\x77\x09\x25\xfe\xe0\x0c\x21\xf4\x98\x20\x4a\x7b\x8c\x3a\x9c\xf6\x52\x8a\x07\xe8\x5c\x3c\x53\xf9\xcc\xa9\xe0\x3c\x4c\x7e\x4e\xe5\x67\x8c\xef\xfb\x23\x2f\x78\x7c\xe0\xfa\xa3\xd3\xa0\x12\x1b\x1f\x2b\x41\x31\xa3\xe4\x1c\x89\x96\x7a\xe2\x3f\x47\xb4\xd4\xbb\x25\x9d\x32\x1f\x90\x05\xfa\x0e\xd0\x85\x9b\x89\x36\x12\xea\xfa\x18\xc3\x3b\xf5\xf2\x8d\x79\xe9\xf8\x18\x17\xc5\xb3\xfb\xab\xd1\x3b\x31\xa9\xcf\xc9\x07\xf4\x1b\x7c\x0f\x3f\xc1\xaf\xf0\x06\xde\xc1\x43\x2c\xb8\x16\xfa\x11\x7e\x81\x6f\xe1\x07\xf3\xaa\x5c\x2a\xcf\xfb\xe3\x0b\xe7\x79\xff\xc2\xf3\xe1\x79\x7f\xbc\x72\x9e\xf7\x57\x9e\x8f\xe1\xdd\xc1\x77\x23\xb5\x6c\x44\x01\xf9\x09\xde\xc1\x14\xc9\xcf\x20\xcb\x63\x98\xa2\xd7\xf2\xf1\xb5\x7a\xdc\x7b\x88\x03\x74\x83\x4a\xcf\xfb\x2b\x5f\x3e\xfa\xaa\x52\x6d\x45\x8b\xcf\x0a\x0d\x59\x46\x21\xe7\xeb\xc6\xc6\x2b\xe7\xb5\xfc\xf0\x5a\x7c\x78\xdd\x84\x20\xde\x8a\x4f\xaa\x55\x53\xb2\xac\x5d\x47\x15\x4b\x64\xf5\x28\xfc\x04\xbf\xd6\xd1\x78\x05\xef\x65\xa1\xa0\x5e\x44\xf2\x99\xa7\xf7\x57\xa3\x07\x66\xa8\xc5\x98\x8a\xb1\xbd\x00\xf7\x81\x19\x6b\x31\xf4\x62\x0a\xcc\xbb\xbc\xaf\xd4\xd2\x6d\x83\xfd\xa0\x65\xb0\x1f\xfc\x9e\xc1\x6e\xa9\x74\xc5\x60\x5f\xfc\x8e\xc1\x6e\x19\xeb\x07\x37\x1a\x6b\xbb\xd9\x17\xf0\x08\x1e\x8a\x57\x7a\x58\xbe\x85\x1f\xb4\x6a\x52\x8e\xb6\x07\x9e\x64\x10\x79\xbf\x34\x15\x20\x0c\xf3\xf2\xcc\x4c\xed\x7c\x73\xa7\xd3\x59\xaf\x65\xe6\x06\x63\xcd\xeb\x8f\x69\xca\x59\x96\x4c\x9a\x7b\x27\x23\x68\xdb\xe6\x27\x74\xeb\x2d\x0c\x79\x30\x84\x94\x20\x67\xcb\x06\xe8\xec\x3a\x5b\xb6\x3f\x3c\x18\xba\xa7\x83\xa1\x16\x0f\xc2\x19\x4a\x71\x8f\xc1\x99\xfc\x13\x15\x30\xb1\x65\xbb\x0a\xd3\xca\xba\xd6\xb4\xac\x8f\x10\x6d\x33\x48\xf3\x11\x0f\xe6\xc8\xe1\x18\x26\x38\xa0\x02\xae\x25\x10\xb6\xc9\xc7\x9b\x70\x79\x1b\x5c\x3a\xa2\x02\x2e\x95\x70\xb9\x80\x3b\xce\x58\x0b\xc2\x57\x01\x6e\x8d\x7b\x52\x03\xcc\x04\xe0\x45\x3c\xf9\x12\xa8\x4a\xe6\x21\x84\x2a\x37\x86\xeb\x9a\x48\x45\x13\x95\x04\x7c\xb3\x36\xda\xdc\xb1\xea\x60\x13\x01\xd6\x88\xcd\x37\x03\x9a\x5d\x0b\x34\xd3\xc3\xf1\x05\x40\x5b\xef\xe5\xd4\x80\xc6\x6a\xf2\x52\x5e\xf3\xaf\xbc\x0a\x66\x5e\x1f\x61\x2a\xa0\xe4\x05\x4c\xac\x8c\xe4\x0f\xab\x24\x32\x06\x34\x2d\x1e\xda\x26\xc4\x98\xd1\xf8\x8d\x18\xf6\xa0\xe9\xc5\x7b\x2c\x16\x3d\xf1\x0a\x10\x45\x1e\xa7\x93\x2d\x05\x5e\xc4\x2f\x94\x35\x6f\x0b\x94\x45\x96\xa4\x5c\x80\x11\x65\x1a\x60\x50\x05\x67\xbd\xf6\x4a\x93\xa2\x78\xee\x76\xfd\xd2\x6c\x20\x41\x60\x93\xce\x52\x77\xa4\xc6\x6f\x2c\x7c\x7c\xb7\x7a\x28\x40\x56\x6d\x58\x19\x8d\xc7\x45\x69\x54\xb3\x5b\x31\xb7\xd2\x6c\xe4\x7d\x0b\xfe\xa8\x8e\x84\x66\x8c\x02\x6e\x50\xff\xa2\xf9\xa3\xbc\x75\xaf\xe2\xf8\xea\x7b\x6d\x36\xe4\x61\xe9\x15\xb1\x15\x6c\xa1\x35\xe9\xe7\xad\x31\x16\xe9\x27\x39\xc7\xd6\x94\xbf\xb6\x35\xc2\xd0\x8b\x1a\x11\x2c\xca\x2f\x7e\x24\x25\xc6\xf7\x9b\xaa\xcb\x6b\xe0\xe4\x95\x54\x5d\xf6\x6c\xdd\xe5\x39\x64\x0d\x9d\x25\x46\x46\x9b\x84\x39\x8c\x65\xe8\x7e\x7d\x4d\x73\x46\xf4\xe9\xb2\xa2\xd0\xb4\xdb\x45\x19\x49\xd0\x58\x2a\x14\x18\x72\xe2\xed\xe7\x07\x64\xba\xef\x38\x39\xde\x43\xf9\xc1\xb4\xdb\x65\x68\x4e\xe2\x30\x8f\x20\x87\x18\x63\x22\x43\x91\x23\x34\x23\x7b\x33\x3c\xca\xfa\x25\x81\x21\x1c\xa8\xa7\xc7\xe9\x44\x28\x27\x33\xe9\x41\x21\x06\x13\x39\x14\xcd\x65\x6d\x70\xb8\xfe\x25\xb7\xa6\x71\x19\x12\x47\x75\x65\xbc\xb1\x19\xc5\xfd\x8b\x3f\x85\xb7\xc7\x92\xb7\xc7\xfd\xd5\x9f\xc2\xd1\x63\xc9\xd1\x63\x1d\x42\x74\xf2\x87\x99\xf9\xde\x9e\x02\xca\x04\xd0\xf1\x92\x9d\xdf\x98\xcb\x52\x50\x26\x7f\x33\x8f\x29\x96\x80\x12\x09\xe8\x4b\x58\x56\xc9\xb0\x88\x9a\x8b\x40\x42\x23\x0a\xaf\xb4\x80\xb8\x80\x47\xed\x04\xa9\xd2\x7d\x1a\x75\xfa\x15\x24\x9a\x3c\xf5\x9c\xc6\xe4\xf9\x86\x4a\x3d\x46\x73\x7d\x91\x18\xa6\x30\x83\x09\x2c\xe0\x8c\x98\xab\xbe\x70\x4e\xf6\x7c\x58\x59\x1e\xce\xd2\x8e\x6c\x3f\x5a\x04\x9c\xc9\xd4\xb8\x31\x5a\x68\x02\x56\xe7\xdc\xe4\x6c\xdf\x71\xc6\x3a\x01\xcb\xf8\xe0\xac\xdb\x4d\xd0\x84\xcc\xc3\x71\x04\x63\x98\x4b\x22\x3e\x17\x6a\xf2\x39\xd9\x3b\xc7\x53\x32\x96\x12\x99\x66\xb7\xc8\x48\x9b\xfa\x49\xe9\xb9\xa2\xc5\xbc\x22\xef\x7a\x11\x98\x91\xb1\xeb\xef\xcf\xee\x93\xe9\xbe\xeb\xce\x70\xae\xe9\x7e\x15\xce\x22\x38\x0d\x67\x11\xde\xa9\xd7\xd5\x8c\x1b\xe1\xe2\xbc\xdb\x45\xab\x70\x1c\x11\x87\xa2\x89\x44\x0e\x4e\xe5\x23\x33\x8f\x06\x18\x1f\x39\x5c\xbf\x0b\x44\x0d\x10\x6a\xb3\x79\x21\xea\x60\x5c\x24\x53\xb4\x68\x08\x78\x8b\x6a\x4d\x95\xe3\x3f\xad\x6c\x7b\xef\x11\x36\x64\x2c\xa3\xc4\x09\xe2\xd3\x51\xdb\x04\xf1\xa0\xac\x3c\x91\x1b\xdb\x4b\x91\x7d\xe9\x52\x64\x23\x26\x16\x0f\xc3\x86\x62\xc6\x72\x45\x8e\xfb\x17\xde\x9f\xb2\xc0\x4b\x70\xfe\x4d\x57\xf8\xcd\x85\xa0\xb1\x5c\xee\xe3\x9b\x32\x8f\x6b\xa4\xb6\xb4\xec\x3f\x93\x40\xbd\x3f\x05\x6a\x09\xee\x86\xfd\xff\x12\x21\x70\x2c\x39\xc0\x58\x52\xf0\x2f\x1e\x51\x3f\x7e\xf5\x5a\xee\x52\x4c\x11\xee\x5f\x20\x8a\xfb\x2b\xc4\xb0\xa9\xf2\xab\x7f\x75\xc9\xb4\x2c\xf9\xcb\xf6\x92\xbc\x82\xf9\x45\x5c\xf7\x0a\x41\x54\x72\xdd\xb1\x64\x96\xe3\x2f\xe1\xba\x71\xc9\x75\x0d\xf3\xc9\xb0\x04\x14\x4b\x40\xbf\x87\xeb\x66\x44\xad\xd6\x40\x42\x23\x0a\xaf\xac\x80\x71\x01\x2f\xb6\x04\x67\x39\xa0\x23\xd7\x0f\xf8\x7d\x3a\x12\xff\x13\x3a\xf2\x02\x29\xf0\x3d\x6d\xf5\xe7\x2b\xe0\xd9\x26\xf7\x7e\x0a\x9c\xbc\xd0\x79\xfb\x20\x55\x1c\x5c\x70\xef\x63\xc1\xbc\xc5\x53\xab\x40\xb1\x54\x22\x05\xcc\x2a\xa1\x62\x42\x3c\x58\x58\x1c\x7a\x86\xe1\xac\xfe\x78\x4e\xb6\x99\xf8\xcc\x89\xe1\x59\x92\xa2\x63\x28\x33\x36\xb8\xc7\xb0\xcd\x64\x7a\x8e\xcb\x73\x45\x51\xa9\x3c\x87\x5a\xe1\xc1\x0c\xb6\x29\x93\x70\x42\x4e\x7b\x68\x65\x0c\xdb\x72\x07\x51\xc2\xce\x4c\xca\x3a\x68\x4a\xce\xc2\x45\x98\x47\x24\x97\xbc\xb8\x12\x78\xee\x7b\xdd\x2e\x9a\x38\x64\x5a\x6d\x3b\x7b\x84\x8f\x16\x1b\xae\xd2\x15\x4f\xe4\xe8\x2c\xa4\x11\x9c\xc9\x5c\x92\x38\x50\x55\x58\xb7\xbb\x59\xa7\x9a\x50\x86\x62\x51\x27\x96\x81\xc2\xa4\x20\x06\x73\x32\x19\xa1\x95\x3b\xeb\x9d\xe0\xc1\x24\x28\x71\x85\x73\x32\xc6\x4b\x22\x90\x85\x31\x39\x77\x90\xc4\x7d\x19\xe1\xfb\xde\x68\xda\x9b\x07\x1e\x76\x4e\xe0\x4c\xa6\x43\x9d\xc4\x3c\x0e\xe2\x70\x19\xe9\x84\xa2\x26\xb7\xe1\x14\x2a\x85\x2e\x38\x07\xa3\x86\x05\x63\x30\xca\x53\x70\x6a\x3c\xfc\x76\xcf\x2a\x61\x4c\xdd\xd5\xfd\x33\x05\x32\x31\x20\x3f\x35\x6e\x82\x5d\xcd\xb7\xa9\xa1\x58\x23\x85\xd5\x9d\xb9\xaf\xe6\xa1\xd4\x6c\x3f\x46\xda\xfa\x52\xc5\xb6\xd5\xa9\xad\x26\x19\x0a\x61\xe9\x0b\x15\xdb\x6b\xb4\x65\x23\xd0\x7d\x99\x62\x7b\x8d\xb6\x1c\x4b\x06\x13\x17\xf0\x84\x7c\x87\x9e\x5b\x4b\xfd\xb3\xa5\x99\x4a\xa6\x68\x9d\x58\x7d\x27\x5d\x95\xcc\x13\xb7\x08\x40\xac\xf6\xcf\x88\x22\x8e\xab\xec\x8c\x25\x00\xe0\x15\x88\x07\xf6\xf5\x0c\xf9\xbd\xf4\xec\xea\xc7\xb2\x77\xb4\x7f\x01\x3a\x08\x97\xf8\x49\xfb\xea\xd8\x9a\xd0\xfe\xaa\x7a\xbf\x02\xfa\x05\x3c\x9b\x23\x81\x39\x0e\x38\xc2\x1a\xa9\x02\x68\xf1\xf9\x86\xea\xb6\xac\x60\x0b\x88\x57\x68\xde\x55\x59\x25\xdf\x5d\xa5\x80\xab\xb2\x96\x1c\xd9\xaa\x8a\x37\xcb\x6a\xb8\x6d\xfa\xb3\x5d\x54\x0b\x8d\xd5\x81\x34\xc5\xc0\x7b\x6e\x79\x7c\x4d\x31\xd6\xfa\xeb\xbb\x96\x4d\xf7\x01\x12\x82\xa1\x92\x06\x9f\x60\x5c\xc0\xcf\x9b\xdb\xc7\x23\xab\x04\x94\xb3\xa9\x92\x8f\x48\x49\x41\xfa\x1b\xaa\x7d\x5d\x85\x37\x94\x62\x83\x0a\x36\x24\xe5\x82\x6b\x67\xde\x5a\x9d\xb4\x7f\xe1\x59\x1f\x3d\xa8\x0e\x5d\xc5\x37\xdf\xfa\xe6\x5f\x41\x33\xb6\xd1\x90\xf6\x57\x16\xc8\x95\x00\x69\xdb\xfe\x68\x7f\x65\x41\x5d\x09\xa8\xe5\x5c\x35\xd6\xa1\x35\x6e\x0c\x89\xe1\x2a\xab\xe9\x91\x28\xa7\x6e\x7b\xc5\xb4\xa5\xa2\x69\xf3\x69\x9b\xa9\xd3\xaa\x9b\x6c\xd6\xfd\xd5\x34\xfa\xb2\xcd\x9c\x69\xd5\xcd\x5a\xea\xfa\x7f\xc2\xea\x82\x8f\xad\x92\x4b\x88\x38\x71\xb8\xe5\xe6\x42\x5d\xe3\x02\x20\xb3\x99\xdb\x04\x1b\x15\xf0\x53\x33\x7a\xac\x72\x60\xad\xd8\xd5\xaf\xf5\x93\xfa\x6c\xc9\xc6\x16\xc3\xfa\xb6\xf6\x95\xc7\xec\x94\x5a\xbc\xe8\x87\x8a\x17\xfd\x0a\x8c\x7c\x0b\x29\x79\x0d\x09\x79\xd5\x62\x4f\xd1\x59\x83\x21\x27\x3f\x29\xdf\x58\x4b\x82\x99\x93\x9a\xed\x3b\x97\x7e\x3b\xf5\x37\xd2\xa7\x6b\xbd\x46\x19\x89\xd5\xd1\x2d\x45\x19\xd4\x45\x22\x94\x87\x5e\x44\xe6\x20\x84\x95\xba\xb5\x3c\xc7\xad\x45\xc7\xad\x45\x05\x67\xaf\x5b\x55\xe2\x16\xab\x8a\x1a\xa7\x9b\x6f\xb9\x66\xaf\x55\x23\x78\xf3\xdd\xd6\x6c\xb3\x17\x7f\xea\xee\x7a\x43\x45\xec\x86\xdb\xea\x17\x49\xec\x59\xd3\xb4\x6b\xf6\xd1\x92\x56\x6e\x55\x27\xb0\xf8\x92\x1a\x6b\x23\x07\x86\x81\xf6\x6b\xae\x8b\x88\x13\xc4\x9d\x14\x0f\x86\xf2\x6e\x72\x22\xab\x54\x80\x7e\xfc\x02\x40\xc0\x08\x62\x4e\x22\x0f\x5b\x74\x95\x0a\xd0\x2f\x36\x20\x75\x1f\xea\xa3\x82\x13\xab\x1f\xa6\xae\x10\x3b\x3f\xa2\x54\x7c\x59\xca\x1f\x09\xde\x29\x1b\xce\x42\x2f\x82\x2c\xf4\xa3\xcd\xe6\x63\xf1\x29\x0e\xfd\x08\x72\x19\x14\x47\xfc\x5a\x8a\x5f\x4b\x19\x4b\xb7\x44\xe4\xb7\x8a\xef\xfc\x80\x6e\x59\x1f\xbe\xb7\x3f\xfc\x68\x7d\xa0\xb4\xdc\x6e\x7e\x40\xbf\xe0\xdf\x2b\x2a\xa8\x54\xb1\x94\x5c\x4e\x58\xfc\xa9\xb1\x69\xaa\x93\xad\xca\x4d\x91\x0f\x4e\xad\x5e\x33\xf0\x44\x7f\xcd\xc9\x1b\x03\x0f\x8e\x71\x51\x00\xbb\x29\xb0\xbb\x78\x30\xac\xc0\xb9\xb7\x7b\x0c\x5c\x39\x83\xda\x92\xec\xb6\x3c\xdf\xee\xd9\x6f\xda\x5e\xd8\x8f\x1b\x20\xc5\x8b\x7a\xf9\xfa\x53\x1d\x9a\xdb\xf2\xa2\xf6\x58\x82\xb3\xec\xfa\x45\x01\x29\xb5\xfa\xe9\x0f\x6e\x63\x48\x28\x19\xf6\x52\x0a\xd9\x4d\xc7\x26\x91\xe6\x10\xd6\x4b\x69\x35\x42\x5e\xbd\x2f\xa9\x1a\x7f\xfd\xe4\xd5\x31\xd3\x1f\xeb\x78\xc5\xb4\xf4\x38\x43\xa7\x03\xdf\xc3\x83\xf2\xf1\xeb\x9e\x7c\x01\xb9\x55\xe4\x58\xbc\xe9\xc5\x14\x96\x94\x54\xd2\x51\xf9\x76\x7e\xb3\xbe\xf4\xff\xf6\x8d\xf7\x37\xff\xb6\xf7\x8d\x7f\x77\xf8\xcd\xf0\x6f\x77\x87\x3d\x79\xdd\x22\xa7\x3d\x06\x09\x59\xd2\x1e\xbb\xa2\x87\x89\x9d\xa9\xdd\xdf\xcf\x0e\xee\xee\x3b\x4e\x66\xf2\xd4\x1f\xf7\xb2\xc1\x5d\xc8\x89\xed\x17\xba\x24\x96\x57\xe8\x4e\x09\x6a\x29\x28\x21\xaf\x4d\x66\xde\x4b\xdd\x65\x2f\x81\x65\x2f\x75\xf2\x5e\x82\x8b\xe6\x70\x8d\x6f\x38\x59\x32\x6f\x1d\x93\xb4\xcc\xe8\x98\xa3\x54\x32\x1a\x26\xef\xef\xd9\x94\x70\x1b\xc3\xec\x2a\x90\xae\x4d\x00\xe8\x76\x6f\x4a\x31\xb6\xc7\x66\x58\xa7\xc5\x29\x6d\x52\xb7\xf5\xa6\xde\x93\x49\x1d\x8d\xc1\x10\x16\x94\xf8\x03\x8b\x48\x87\x18\xce\x28\xb9\xdd\x43\x0b\x3a\x18\x3a\x3e\x86\xf3\x9b\x52\xea\x99\xa2\xd4\xc1\x10\x12\xc2\x7a\x0b\x19\x7a\x0a\x62\xf9\xd3\x61\x90\x13\x37\x83\x25\x89\xab\x7e\x88\x49\xad\x50\xce\x20\xb6\xa7\x04\x96\x76\x0f\xfb\x77\x7b\xa9\x3b\xa1\xbd\x04\x26\xb4\x97\x3a\xe2\x39\x69\x7c\xcf\xc4\xf7\x58\x7c\xcf\xe4\xf7\xb8\xf1\x3d\x17\xdf\x97\xe2\x7b\x2e\xbf\x6f\xc0\x77\x24\x7c\x09\x5a\x14\x4d\x9b\xf0\x1d\x09\x5f\x82\x16\xdf\xb3\x26\x7c\x47\xc2\x97\xa0\xc5\xf7\x7c\x73\xf0\x57\x94\x84\x9c\x02\x13\xab\x1f\xc6\x62\xdd\xc0\x8c\xc2\x39\x8d\xe0\x94\x6e\xaa\x0e\x73\xc4\x85\x3a\x42\xe6\xe8\xde\x1d\xac\xf5\x79\xfb\x12\x99\xbe\xa1\x22\x3d\x9a\x65\x9c\xdf\x54\x4b\x4d\xed\xd6\x9d\xbe\x98\x43\xc4\x60\xab\x0f\x02\x94\x71\x9e\x8c\xb5\x6b\x43\x26\x4a\xfb\x52\x0f\xfc\xa3\xb6\x0d\xb1\x4e\xa4\x69\x23\x55\xd1\x94\xfe\x8c\xe3\xa6\x54\x0a\x5f\xe9\x97\x09\x2a\xac\x29\xa8\xa4\x52\x14\x4b\x0b\x38\xa9\xe7\xe0\xab\xc6\xfd\x98\x9a\x2b\x36\xb4\x3a\xf0\xac\xef\xf4\x68\xd8\xa3\xfd\xe3\x0b\xcf\xa1\xf2\xa2\xc1\xe0\x36\xa8\x37\x2b\xf9\x66\xa5\xde\xa8\x12\xaa\x64\xf9\x66\xa5\xdf\xd4\xca\xdc\x51\x65\x1c\x8e\x07\xf7\x4c\xa9\x3b\xaa\x94\xc3\xf0\xe0\x9e\x25\x09\x7c\xa2\x6d\x27\xe6\x9f\xe8\x3f\xf5\xc8\xfc\x62\xf3\xb6\x90\xe5\x9a\xfd\x22\x7e\x01\xd7\x1f\xad\xeb\x43\xee\xcd\xa3\xed\xdb\xc1\x31\x55\x94\x5b\x5e\x1b\x31\xa0\xcb\xe8\xaa\xad\x87\xd1\x9b\xc5\x8b\xff\x39\xbf\xb7\x3f\x0d\x6b\x9f\x6e\x43\x6b\x4b\xe8\x6e\xcf\x4c\xb2\x53\xde\xa4\x11\x64\x69\xde\xaf\xcc\x7b\x41\xc2\xf7\x70\xe9\x20\x60\x66\x4d\xfa\x04\x6c\xd0\x09\x54\xb7\x07\x60\x83\x64\xac\xcb\x58\xda\x18\xf3\xb8\x95\x65\xa4\xf4\x93\x5a\x00\xd6\x6a\xbd\x68\x5d\x10\x17\x5b\x16\xc4\x09\x2d\x49\xff\x84\x7e\x19\x89\x5f\x0c\xcd\x8f\xdb\xe6\xc7\x9d\x16\xea\xd7\x3f\x4c\xe1\x95\x29\xbc\xba\xf3\x47\x17\x86\xdf\x4e\x00\x06\x3b\x33\x88\x43\x0c\x5b\xe9\xb8\x8d\x1a\x1a\xe0\x4a\x78\xce\xd0\x10\xc2\x6d\xc9\xaa\x0c\xf8\xf2\xfd\x4a\xbc\x6f\x36\x66\xa8\xc8\x54\xad\xa0\x0c\x6d\x28\xd5\xfb\xd5\xb0\x05\xca\x16\x94\x6f\x2b\x94\xb5\x4d\x6f\x4b\xbf\x6b\x5f\x0d\x91\xaf\x6e\xb7\x7d\xbd\x63\xbe\xde\x11\x7b\xf7\x9f\xba\x94\x2f\x86\x15\xa1\x0f\x09\xbf\x62\x85\x42\x49\x55\x65\x85\xdb\xf5\x0a\xed\xeb\xf6\xe2\x4e\x55\xe1\x0e\xe1\x70\xe5\x6c\x8a\xfd\xc4\xd0\xb3\x43\xe5\x7a\x2e\x57\xb3\xf9\xb2\x52\x1b\x90\x19\xf1\xbf\x64\x5d\xbf\xd9\xba\xae\x2f\x1a\xeb\xfa\x65\xeb\xba\x7e\xf9\x9f\xb7\xd1\x5d\xb9\x07\xdd\xfe\xf7\xd9\x83\x7e\xdf\x26\xa2\xef\xd7\x6f\xa7\xb3\x94\x6c\xa5\xb4\x9d\xeb\x76\x3d\x06\xe9\x96\x5d\x4f\x7c\x69\xe1\x0c\x1a\xab\x3b\x7f\x0d\xf1\x1e\x6e\x25\xde\x97\x0d\xe2\xfd\x40\xed\x93\x88\x93\x38\x4f\x72\x52\x6e\x5e\x1a\xf0\x09\xe5\x31\xe1\xc5\x87\x1a\x45\x5f\x45\x8b\x24\x8c\x0c\x4e\xd5\x4f\x09\xfb\xda\xc3\x13\x2b\x06\xe6\xf1\x05\x98\x80\xb4\x2b\x2b\x43\xba\x2b\x53\xe5\xb0\xfb\x5e\x99\xee\x3b\xd5\xc9\x11\x20\x23\x5c\x1a\xb6\x64\xb4\x5c\x37\x81\x9c\x70\xf1\x43\xa8\x7a\x32\xc7\xdb\xf2\x80\xb0\x7d\x9c\x92\xe5\x80\xd5\x90\xb2\x59\xad\xe8\x6c\x8f\x86\xcb\xc8\x41\x86\x76\xc5\x2b\xdc\x43\x89\x93\x0a\x45\xce\x2a\xc6\xdb\x8a\x65\x4e\xda\xcb\x31\xde\x31\x63\x61\x06\xc2\xba\xa3\x5e\x0d\xc5\xb5\x67\x43\x17\x2a\xa6\x91\x53\x4e\xc6\x4a\xbf\xe0\xe6\x34\xe8\x2d\x6d\x04\x15\x2b\x9f\xac\x8c\x8c\xbb\x2a\x46\x5f\x39\xb3\x32\x45\x88\x9e\x7b\xa3\x50\xb1\xbe\x9c\xe8\x16\x85\x8a\xca\xe6\x80\x15\xa8\xff\xb7\xbb\xd6\xc9\xe3\xc3\xeb\xf5\x0f\xa5\x2e\xd0\xfe\xf1\x87\x9e\xfc\x3d\x74\xa5\x22\x21\x34\x43\xb1\xb8\xca\x0f\x2b\xf9\x61\xa5\x3e\x5c\x0c\xad\x1a\xbe\xcb\x55\x69\xeb\xe5\xca\x57\xf6\x04\xb1\xa9\xca\x4f\x96\xde\xf1\xbc\x46\xd1\x25\x43\x36\x41\x72\x89\x98\x2f\x3c\xb8\x57\x3c\xff\x57\x33\xe8\x52\x4c\x6b\x15\xca\xfe\xa0\x08\x76\xb5\xe6\x61\x89\x22\x75\xde\xf4\x70\xab\x42\xf3\x3f\x1a\xca\xb0\x85\x09\xfb\x57\xca\x3f\x25\x73\x7f\x78\x43\xe6\xde\x98\x1e\x5b\x34\x6b\x65\xf7\x7a\x12\x2d\xf1\x4d\x33\x85\xd7\x37\x62\x0a\x32\xd5\x42\x93\x09\x70\x9a\xd6\x13\xca\xb7\xf1\x01\xdb\xd5\xe8\xd5\x0d\x17\xdc\xab\x7f\xaa\xa6\x73\x71\xf7\xcb\x54\x1e\xfd\xe3\xee\x5f\xab\xfb\x6c\x48\xf9\x5f\xaa\xfb\xd4\xd7\xf1\x17\x83\x6b\xd3\x4b\x6e\xac\x79\xb4\x7c\xbd\x6b\xbe\xde\xfd\xf3\xf5\x92\xed\x6a\x46\xfb\xba\x6c\x1f\xf1\xba\xee\xd1\x3a\xb6\x0d\x6d\xe5\x6e\x55\xe3\x6e\xd9\xee\xbf\x6c\x25\xbf\xbf\xf1\x4a\x7e\xf5\x87\x57\xf2\xa3\x1b\xae\xe4\x47\xff\x0d\x5b\xe7\x7f\xb7\xb6\x73\xed\x2e\xb8\x29\x09\xdc\xd4\x68\x73\x13\x6d\xe6\x9f\xbe\x4c\x5e\xdc\x78\x99\x3c\xfa\xc3\xcb\xe4\x29\xad\xa5\x90\x22\x52\x4a\x95\x0e\x53\x02\x59\x99\xf3\xf4\x62\x28\xb4\x10\x81\xa1\x0c\x2b\xd9\x3f\x9e\x7b\xfe\x71\x6c\xee\x8a\xe7\x44\x5a\xd6\xc5\xbb\x61\xec\xdc\x36\xbf\x63\xf9\xc3\x1f\x1e\xc7\x8e\xfe\x31\x8c\x61\x49\xac\xef\x25\x24\x53\x20\xc6\x3b\x29\x41\x69\x2f\x57\x62\x75\xaf\xac\x27\xed\xfd\x56\x2b\x78\xb0\x84\x84\xa0\x44\x95\x5c\x35\x4a\xae\xea\x25\x0b\x8d\xf3\xf0\x76\x85\xf3\x5c\xe3\x3c\xbc\x5d\xe1\x2c\xbe\xb7\xe1\x3c\x26\xd6\xf7\x12\x92\x85\x73\x46\x50\xd6\x9b\xab\x33\x89\x0a\xaa\xcb\x2b\xac\xf0\x60\x0c\x31\x41\xb1\x2a\xb5\xb2\x4b\xb1\x5a\xa9\x62\xab\xea\x61\x6e\xd4\xb7\xab\x09\xcf\xae\xe4\x75\xf1\x7c\x31\x13\x3a\xef\xb3\xff\x14\x4e\x27\xa9\xc2\xb0\x30\x31\xc8\xe6\xb7\x18\x79\x52\x95\x19\xda\x85\x86\x76\xa9\xf2\xe1\x9f\xa9\x6f\x6c\x4a\x14\x56\xd1\x7f\x91\xca\x21\x88\xbf\x9d\x3d\xdb\x99\x3e\x85\x26\x6b\x72\x37\x08\xed\x95\xef\xd8\x03\x6e\x1d\x45\xdb\x03\x2c\x5f\x2f\xb2\x4f\x88\xf5\x98\x93\xf6\x52\x9b\xda\x30\x2e\xb6\x8e\xee\xbf\xc3\x21\x4c\xc9\xdb\x9f\x6e\xf2\xf6\x0d\xea\x83\x2d\x94\x08\x5b\x29\x11\xb6\x92\x25\xfc\x33\xf6\x8f\x27\x37\xda\x3f\x94\x05\x45\xb3\x8e\xa0\x54\x9f\x3c\x6b\x37\x51\x9c\xe3\x6a\x23\x8a\x6d\x43\xf9\x7c\x23\x3e\xf4\xf9\x3f\x4d\x77\xfa\x57\xf3\xa3\xff\x51\xc3\xfe\x43\x99\xda\xbf\xa7\xda\xf7\x5f\xc9\xf3\xbe\xfb\x02\x9e\xf7\xd9\xe2\x79\xaf\xfe\x28\xcf\x7b\x70\x23\x9e\xf7\xe0\x7f\x64\xaf\x7f\x03\x85\xf5\xdf\x9f\x71\xfc\x47\x2a\xc8\xff\x95\x0c\xe5\xdd\x17\x30\x94\x07\x16\x43\x79\xf4\x47\x19\xca\xcf\xad\x47\xf0\x3f\xff\x51\xa1\xe9\xaa\xd5\x68\x95\xb8\x62\xad\xb5\xaf\xa9\xd6\x05\x75\x85\x24\x8f\xda\x36\xca\x16\xc1\xde\x1c\x09\x7e\xdc\x7a\xfc\xfb\x73\xe3\xf8\xf7\x27\x6a\xdf\xb7\xd1\x97\x6d\x2b\x25\xf9\xd7\x36\x4b\x87\x32\x35\x40\x42\xb8\xab\x2c\x1f\x19\xd1\x67\x72\xea\x04\x6f\x80\xd2\xf5\x3a\x39\xf0\xba\x5d\xd7\xc3\x42\x89\x67\xae\x76\x23\x44\xc9\x7a\x9d\x9a\x0f\x39\x41\x59\x2f\x71\xe2\x5e\x2a\x6a\x38\x65\xc0\x78\xf4\x13\x45\x19\x76\x7e\xa2\x28\xc6\xfa\xd6\x51\xed\xd6\x70\x86\xa1\xfc\x1d\x63\xe8\xdf\xed\x95\x8f\x39\xc6\xeb\xb5\x95\xc3\xf9\x5b\x6a\xbb\x07\x5b\xc8\x9b\x6b\x09\x6c\x84\x6e\xf7\xea\xc8\x33\x97\xe3\xc1\x30\xb0\x2f\x1d\xb5\x0c\x82\xa7\xcd\x3d\x9e\x36\xf7\xf8\xda\xdc\xe3\xcb\x6e\xb9\x29\x1e\xdc\xde\xd9\x6e\x98\x70\x72\x48\x9c\xbc\xc7\x21\x73\x73\x88\xdd\xbc\xc7\x64\x38\x51\xeb\x4a\x4a\x2b\x3d\x57\x17\x4d\x5a\x3e\x8b\xd9\xfd\x85\xd6\x22\xab\xfe\x72\x35\x94\xdf\x68\x83\x38\x6e\xd5\xab\x7f\xdf\xfc\xfe\x63\xfd\xbb\xcc\xc9\xba\x1d\x3c\xe7\xe5\x65\x2d\x60\xea\x66\xa1\x3e\xbf\x87\xc4\xba\x6b\x9e\x9a\x0c\x0c\xe5\x63\x5c\x7b\x94\x9e\xf6\x49\xe8\x45\xc4\x83\x4c\xfc\x19\x42\x2c\xfe\xd0\xd0\x8b\x9c\x61\x8f\x86\x7e\x04\x9c\xf8\xfb\xfc\x20\x95\x67\xfc\x5c\x65\xd1\xf7\x21\x13\x7f\xee\xc8\xfb\xd9\xe4\x4e\x8f\x86\x5c\x15\xe7\x8e\x1f\x69\x98\xa9\xeb\x0b\x70\x99\xfa\xf1\x35\xc4\xea\xc7\xdf\x7a\x54\xfe\x70\x68\x98\x96\xb0\x25\x64\x95\xfe\x6b\x90\x85\xdc\xf5\x23\xd9\x80\x4b\x98\x6c\xc1\x25\xac\x17\xcb\xd7\x36\x6c\x05\x70\xa0\x1a\x00\x4e\x52\x77\xb8\xcf\xef\x13\x6f\xdf\x75\x35\x9a\x48\x56\x4e\x24\x56\x58\x00\x56\xf5\x35\x4a\x48\x60\xe0\x28\x60\x78\x30\x04\x4e\x3c\xab\x9f\xb2\x83\xa6\x4b\x1a\x86\x09\xbe\x96\x40\x16\x15\xb7\xfe\xd5\x02\xd4\xa6\xdc\xc4\xbd\xbf\xf6\x60\xdb\xf6\xc0\xad\xed\xc2\x3f\xd4\x0e\xb6\xb9\x07\xdf\x36\x5e\xe0\x7f\x95\xb9\x49\x31\xa7\x17\xf1\x0b\x99\xca\x5b\x6c\x0a\x52\xe0\xc2\x56\x5a\x80\xf5\x9a\x97\x4f\x2b\xff\x8a\xc1\xf9\x77\xb0\x13\x81\x19\x6a\x33\xc2\x8c\xfc\x6a\x09\x3b\x18\x58\xd3\x6f\x6f\x63\x6e\x1a\x35\x7e\xbf\x3b\x54\x09\x92\xb0\xa2\x28\x00\xfd\x68\xaf\x88\x7a\x6e\x3b\x7b\xb1\x60\xac\xd4\xeb\xc6\x7d\x58\xbb\x88\x2a\xa0\x33\x95\x4a\xe4\x81\xe2\x02\x7e\xa9\x2d\xb9\x2b\xd2\x48\x34\x85\x48\x59\xbb\x35\x45\xc4\x15\xb2\xc5\x7c\x7b\xe6\x87\xe6\xf2\x90\xf0\x6f\x9e\x87\xa1\x7d\xe3\xe2\x40\xe5\x25\x22\x99\x3c\xb1\x00\xca\xff\xb9\xfc\xa5\xee\x56\xf6\x3b\xdd\xc7\xa4\xf3\x18\x2e\x53\xff\x5f\xb1\x36\x64\x6c\xdc\xd0\x8b\xb6\xad\x90\xf2\x3b\x0c\x09\x21\x0c\x6f\x81\x22\x38\xbf\x8c\x6c\x2b\xa3\x7d\x5a\xc9\x86\xc5\xfe\x28\xa4\x28\x79\x57\x2b\x23\x1e\xc4\xc4\xdf\x8f\x0f\xd8\xbe\xe3\x64\xe0\x38\x31\xbe\x6a\x2a\xd2\xd0\x8b\xc2\x2c\x82\x44\xff\x4d\x43\x5f\x3f\xab\xbf\x34\x8c\x45\xbb\x71\x84\xf7\xaf\x65\x6b\xec\xf7\x30\x33\xb3\x04\x6b\xfe\x6d\x7f\xcc\x93\xad\x3d\x2a\x88\x10\x06\xa4\xa8\x61\x89\xad\x29\xbf\xca\x80\xc0\x09\x2f\xd2\x7f\x36\x6d\x9a\x61\xb8\xd9\xf6\xe6\x1d\x68\x54\xcd\xc8\xf3\x03\xbf\xdb\x1d\xd6\xf7\x98\xe6\xac\xd4\xb7\x3a\x33\x8a\x18\xfe\x82\x7d\xeb\x3e\xf1\xca\xac\x0b\xbc\x9c\x77\xbe\x8d\x18\xb6\xe8\x39\xff\x4e\xce\x5b\xe5\x6e\x53\x2e\x7d\x7e\x40\xbc\xf6\x45\x5b\x8e\xf0\x96\x3b\x03\xb2\xa9\x32\x9a\x7a\x69\x03\xe9\x95\xae\xa0\x1c\x3b\x54\x7b\x10\x1b\x4b\xc8\x86\xc3\x70\x39\x7d\xdb\xbe\xe3\xc2\x6c\x7c\xd5\x2e\x57\xaa\xda\xc9\xd6\xb5\x22\xd7\x46\xff\xae\xbd\x5c\x32\xde\x56\xc6\xb3\x64\xf9\xb8\xb5\x84\xaf\x42\xa1\xe7\xcd\x8d\x30\x99\x22\x94\x54\x89\xcc\xee\xfb\xb8\x4a\xd1\x27\xb7\x11\x22\xf5\xa1\x50\x70\xc7\x08\xf2\x32\xee\xd4\x7e\x76\x90\xc8\x9b\xb2\x32\x2e\x13\x89\x75\xa1\x2c\x8a\x74\xca\xc4\x7c\xdf\x71\x18\x8e\x43\x16\x85\x7e\xe4\x10\xf9\xc3\x8b\x48\x92\xbf\x88\x5f\xa0\x54\xbd\xc6\xa3\x54\xbd\x0e\xf4\x8b\x02\x96\xf5\xc1\xb0\xf3\x97\xe9\x80\x57\xcc\xce\xbf\x8e\x85\xfc\x2d\xc4\x70\xcc\x84\x08\xcd\x4b\x6d\xd0\x1a\xb2\x39\xaf\x05\x7b\x12\xea\x83\x1c\x8b\x71\x4b\xc6\xfe\x39\x0a\x23\x0c\x9c\x2c\x39\x30\x92\x73\x48\xc9\x9c\x57\x90\x12\x64\x2e\xf1\xcb\xf4\x85\xdb\x92\x11\x2c\x89\xc9\xc2\x05\x73\x62\x6e\x05\xc2\xd8\xc2\x7b\xae\x74\xa1\x8c\x78\xfb\xd9\xc1\x5c\xdd\x38\x36\x5d\x9d\xc2\x8c\xe4\x82\xef\x4f\xc8\x38\xcc\x22\xab\xd6\x12\xc3\x82\x78\xfb\x8b\x83\xe5\xbe\xe3\x2c\xf0\x24\x5c\x44\x64\x4a\x42\x0f\x9c\x14\x25\xe1\x22\x82\x19\x2c\x20\xc1\x11\x4c\xfb\x93\x98\xc7\x44\xbc\xdb\x99\xf4\x3f\xd0\x15\x99\x15\xba\x3d\x88\x09\x47\x63\x5c\x36\x3b\x0e\x63\x31\x69\x2a\x19\x38\xc9\xca\xf1\x43\x63\x88\x31\x8c\x8d\x1d\x27\x91\x69\xc6\xfe\xf0\x0d\x4d\x1d\xbf\x43\xa6\xa6\x96\x37\x35\x93\x66\x58\xab\x3f\x10\xa1\x22\x91\x11\x2a\x92\x7e\xc6\x26\x94\x7d\x69\x24\xc2\x25\xdf\x1e\x87\x4f\x63\x4d\x15\xd6\x5c\xb6\x31\x9d\xe6\x37\x8f\xc5\x61\x1a\xc9\x79\x40\x05\x08\x56\x40\x52\xc0\xb4\x6d\x2d\xa6\xd6\x5a\xf4\xec\x7c\x99\x6a\x31\x7a\x72\x9d\x79\x51\xb5\x0a\xe3\x8a\x7a\x12\xa2\x96\x5e\x2a\x97\x5e\xe2\x48\xdf\xf9\x30\x13\x0b\x6b\xbd\xf6\x84\xb4\x94\xc8\xe5\x6a\x97\xaa\x8a\x0c\x48\x52\xe4\x5c\x47\xd7\x85\x59\x1b\x72\x79\x0d\xb9\x06\x6e\x2a\xb5\x92\x0c\x9d\xa6\xd9\x45\x99\x56\x53\xd2\xda\x12\x2b\x12\x8c\x89\x57\x63\x11\x28\x21\xa2\xd7\x21\x0f\x59\x14\x85\xcb\x08\x87\x7e\xe4\x0a\x99\x08\xdf\x27\xde\x48\x4a\x47\x24\x93\x42\x11\xc9\x1c\x92\xe0\x20\x39\x90\xaf\x85\x52\x0e\xf2\x6b\x2c\x5f\xab\x82\x05\x4c\xda\x30\x67\x5b\x87\x95\x48\xfb\x8f\xe6\x6f\x59\xb9\x72\xf7\xd3\x83\x6c\xdf\x71\xac\x14\x8a\x02\xef\x5c\xe6\xd8\x13\x62\x5d\x8c\x73\x31\xbe\x71\x14\xa6\xe5\xf8\xaa\x9f\x0e\x91\x3f\xbc\x88\xb8\xf9\x60\x68\x0d\xe9\xe2\x3a\xde\x2b\xf6\xe9\x94\x08\x5c\x15\x3a\xf8\x3a\x4a\x10\x32\x66\x2a\x91\x29\x3f\xe7\xc4\xd3\x93\xe0\xed\xe7\x92\x45\xe7\xd5\xc7\xb1\x84\x9c\x47\x11\x4c\xc9\x58\xe0\x2e\x11\x87\x19\x41\x53\x17\x8d\xc3\xd8\xf5\xf5\x2b\x19\x39\x7e\x42\xbc\xfd\x89\x9c\xa4\x89\xe2\x7a\x0b\x59\x7d\x12\x45\x3b\x33\x87\xa0\x45\x09\x00\xbb\xe2\xa1\xaa\x5c\x2c\x1d\x32\x85\xb9\x43\x66\xbd\x69\xc1\xcc\x17\x87\xe8\x9f\x72\x3e\x97\xdd\x2e\xca\x5c\x32\x1f\x2c\xf1\xb6\x22\xd5\xc8\x9d\xd5\x57\x5a\x95\xd0\x72\x81\xce\xab\x6c\x9a\x4b\x5e\x66\xb8\xb6\xc6\x99\xd5\xd2\xea\xba\x82\xca\x0a\x7b\x43\x3d\xe7\xb5\x7d\x06\x18\x71\x7d\x43\x15\x86\x75\x67\xc4\xf5\x07\x9e\xa0\xd6\x83\x64\x1f\x0b\xcd\x9e\xea\x0d\xec\x7e\x26\x83\xff\x8a\x8d\x82\x95\x88\xa4\x72\x7b\x59\x6d\x47\xfa\xf4\x8f\x22\x7d\xba\x81\xb4\x07\x29\x71\x7d\x0b\x69\x41\xbc\x15\xb6\x92\x32\x71\xb7\x8b\x98\x43\xaa\xc6\x99\x44\xf4\xa4\x95\x8f\xad\x74\xda\xe9\x73\xca\x64\xb2\x68\x38\x6e\xe9\x4f\xcd\x1a\x28\x1b\xd7\xdd\x83\x8c\x9c\x49\xa5\x48\xaf\x1a\x58\x0a\x8d\x6f\x4e\x42\x65\x14\xd3\xd6\x2f\x6d\x89\xcb\x42\x1e\x41\x7c\x90\x8f\x90\x58\xc9\x21\x8b\x60\xa9\xd3\x7f\xcb\x2c\x17\xfa\xdd\xbc\x7c\x67\xd0\x9f\x57\xe8\xe9\xd4\xa9\x68\x89\x0b\xf8\xd4\xda\x9f\x65\xa3\x3f\x3b\xac\x3f\x41\x1c\x3a\x31\x1b\x77\xc0\x92\x03\x74\xf1\xb7\x05\x86\xb2\x04\x8d\xdb\x8a\x3c\xaa\x8a\x08\x49\xaf\xad\xc8\xfb\xaa\xc8\x22\x69\x2d\xf1\xac\xde\xce\xeb\x78\x92\xc4\xf3\xb6\x82\x3f\x57\x05\x99\x2c\x74\xb8\x05\xad\x9f\xeb\x68\x6d\x87\xf8\xae\x09\xf1\xd9\x96\x5e\x58\x05\xa5\x04\xbe\x1d\xe4\xc7\x5a\xdb\x1f\xbe\xcb\x58\xf2\x39\x4b\x79\x7b\xe1\xdf\xea\x85\x7f\xa2\x8c\x27\xe3\xf6\xa2\xdf\xd7\x8b\x6e\x47\x80\xd2\xaa\xa4\xce\x24\xdc\x52\xea\x74\xa3\x54\xde\x56\x6c\xb5\x51\xec\x61\xc2\xc6\xf3\xd6\x31\xe2\x9b\x65\x59\x96\xb7\x82\x65\x1b\x45\x1f\x25\xf1\x59\x96\x4e\xda\x0a\x67\x1b\x85\xdf\x7c\x5c\xc6\xac\x15\x87\xf1\x66\x59\x1e\xb3\xb6\x92\xf3\x8d\x92\x6f\x59\x22\xc3\x3a\xb5\x95\x9e\x6d\x94\xfe\x79\xd5\x5a\xf0\xdc\x2a\x28\x63\xd1\x3d\x88\xf3\x24\x7f\x28\xd4\xd2\xd6\xce\xbd\x69\x2d\xff\x72\x41\xd3\xb6\xd2\x87\xad\xa5\xdb\x4a\x3e\xde\x28\xb9\x4c\x27\xed\x7d\x7b\xdb\x2c\xfa\x30\x66\x93\x24\x8d\xe7\xdb\xb1\x7e\xbf\xad\xca\x36\xc4\x5f\x6c\xab\xd0\x56\xf8\xf5\x66\x61\x7e\xb6\x9c\xcf\x5f\x67\x67\xdb\x51\xfa\x6e\x7b\xa5\x6d\x48\xbd\xdb\x5e\xa5\xad\xf8\x93\x66\x71\xc1\x2c\x62\xb6\x1d\xa5\x8f\xed\x15\xda\x8a\x3e\x6f\x94\x7c\x9e\xa5\x19\xcf\x52\xfa\x4b\x2b\xd7\x68\xc2\x35\xa5\x7f\x6d\x65\x1c\xcd\xd2\x2f\x62\xbe\x64\xed\x23\xcf\x78\xa3\xec\x1b\x4e\x17\x6d\x05\x93\xb6\x82\x87\x53\x4e\x5b\x7b\x17\xb7\x95\x7e\x40\xa7\x59\xfb\x22\xce\xac\xe2\x39\x8f\xc7\x1f\x5a\x57\x7a\xb3\xd0\x4b\xa9\x8f\x3c\xbe\x58\xc4\xed\x6c\x64\xda\x5e\xe1\x51\x72\x4e\xd9\x69\x92\x9e\xb6\x2e\xfb\xf6\x3a\x2f\xb2\xf6\x5d\x22\x6f\x2f\xfe\x26\x99\xcf\xb2\x25\xe5\xbc\xb5\xd2\xa4\xbd\xd2\xcf\xc9\xe9\x16\x5e\xb4\xd8\xa8\x20\xb4\xbd\xc3\xc5\x82\xc6\x2c\x4e\xc7\xad\x75\xce\xda\xeb\xe4\x63\x9a\x4e\xb6\xf4\x7d\xd5\x5a\xe5\x11\xbd\xaa\xce\x49\x6b\x9d\xa7\x69\x9e\x4c\xe8\xcb\x25\x6f\xab\x72\xdc\x5a\x65\xdb\x08\x2f\x5b\x4b\xbf\x56\x22\x4d\x5b\x85\x4f\xbc\xc0\xc5\x17\xe4\xf0\x66\xe8\x36\x86\x84\x5c\xea\x40\xd5\x15\xbc\xc2\xb6\x40\xa1\x4a\xf2\xa4\xc0\xa5\x36\xd7\x54\x7a\x21\x25\x97\xc5\x3e\x97\x9a\x12\xd7\xa9\x20\x68\x55\x2a\xe4\x91\xd3\xe9\xe0\xf5\x9a\xee\x26\xe9\x6e\xba\x99\x35\x37\x99\xcf\xe9\x69\x3c\x97\xd9\xe0\x83\xdd\x8e\x43\xf1\x4e\x1a\xd2\x88\x84\x51\x61\x19\xb6\x62\x94\xda\x76\xaf\xea\x08\xdb\x3e\xbb\xce\x95\xae\xb5\xa1\xf1\x55\x7a\x5e\x22\xf5\x3c\xad\x25\x86\x69\x84\xfb\x69\x7c\x46\x09\x21\xbc\x0c\x5c\xa5\xac\x14\x15\xd0\xa5\x19\xcb\xea\x0c\x40\xc7\xd6\xad\x2b\x8f\xc9\x54\x9e\xfb\x56\x00\x2f\xc5\x23\x49\x80\x12\x1d\x4c\x15\x79\x90\x96\xd2\xab\x79\x97\x3a\x3e\xd6\x06\xd0\xb2\xbf\x26\x8e\x39\x55\x62\xf0\xa5\x00\x19\x70\x1d\x53\x9c\x15\x18\x68\x2d\x23\x7a\xb6\x3d\x23\x7a\x96\xb6\x1d\x5b\x96\x2e\x5f\x90\xb4\x47\xbd\xa7\x7d\xce\x92\x33\x84\xfb\xf9\x62\x9e\x70\x34\xf8\xfb\xfa\x28\x77\x06\x58\x4a\xfc\x4d\xc5\x80\x91\x4e\x47\x6a\x06\xd2\xac\xf4\x72\x8a\x3a\xfd\x8e\xca\x96\xad\xac\xd1\x8c\xd8\x5d\x6d\x8c\x06\x06\xda\xed\xee\xf1\xfe\x2c\xce\x5f\x7e\x4a\x5f\xb1\x6c\x41\x19\x5f\x21\x8a\x37\xe9\x64\x99\x7e\x48\xb3\x4f\xa9\x4d\x27\x0a\xdb\x4b\xf9\x86\x82\x1c\x25\x56\x14\xb8\x40\xd4\x11\x38\x61\xa9\xcc\x41\x5c\x2a\xfa\x2a\xf9\x62\x93\x80\x0f\x86\x58\x92\xad\x8e\x38\xdf\xed\x56\xc6\xa1\xbd\xd2\xa4\xd5\x42\xb7\xe9\x79\x3c\x4f\x26\xbb\xe3\x78\x3e\x3f\x89\xc7\x1f\x04\x4e\x5c\xd9\xfa\xf6\x1d\x27\x3b\x88\xf7\x05\x49\x30\x82\x28\x49\xc2\x2c\xc2\x32\xee\x19\x4e\x43\x16\x91\xa5\x34\x8a\x02\x95\xb4\x02\x56\x7a\x70\x65\x3c\xe2\xca\x72\xa3\xd6\x4b\x4b\x05\x51\xaa\x54\x8c\xc4\x44\x16\x8d\x46\x37\x5a\x95\xd3\x90\xdb\x40\x30\x2e\x09\xbe\x80\x71\xb6\x58\x6d\x1e\xc7\x5d\x16\xe5\x49\x5c\x19\x37\x51\x22\xc5\xa5\x25\x49\x06\x69\xd0\x53\x59\xa9\xc3\x72\xa9\xca\x43\xd1\x78\x3e\xdf\xf4\x49\x44\x9b\xfc\xc3\x1d\x6e\x18\x98\x2c\x3b\x28\x93\x67\x6c\xfb\x99\x3a\x5f\xc3\xa2\x4f\x16\x6f\xc9\x9c\x61\x24\x27\x55\xa1\xf9\x3b\xc9\xc8\x98\x4b\x19\x41\x66\x61\x84\xb4\xb4\xc8\x94\x6d\xa7\x61\x16\x29\xe6\x60\x6c\xc1\x90\xe0\x02\xe4\xef\xa0\xc9\x78\xff\x14\xa4\xf4\x89\xa3\xc1\x08\x12\xc9\x79\x52\x83\x58\x22\x39\x4f\x82\xd3\x30\x69\x22\xc6\xcc\xe1\xdc\x9c\x64\x76\x3e\xa0\x52\x47\x46\xe3\x36\x03\xeb\x1b\x29\xf1\x77\xbb\x46\x9f\x6a\x7c\xe8\x27\x9c\xb2\x98\x67\x6c\xd4\xa2\x74\x1b\x33\x6a\x11\xb4\x7c\xa4\xf6\xaa\xda\x68\x8e\xf6\x2d\xae\x45\x08\x29\xdf\xef\x99\xdf\x15\x87\x1b\x19\xdc\x82\xb2\x41\x2c\x08\x4e\x9b\xd3\x75\x8e\x0c\x0f\xce\x88\x07\xe7\xc4\xa7\xb7\x61\x45\x3c\x38\x25\x1e\x9c\x10\x0f\x8e\x49\x27\x93\xfe\x03\x1d\x42\x88\x18\x77\x9d\xe4\xa4\xc2\x69\x41\xd9\x34\x63\x67\x42\xbe\x18\x59\xdf\x83\x31\xb2\xbe\x60\xdc\xed\x5a\x8f\xfd\x34\xfb\x34\xb2\x9e\x83\x47\x31\xa7\xf0\xe9\xda\xb6\x3e\x25\xe9\x24\xfb\xd4\x68\x46\xbd\x14\x2d\xa8\x5f\x7d\x46\x3f\x2e\x69\xce\x0f\xd3\xe4\x2c\x16\xe3\xf7\x84\xc5\x67\x74\x74\xd5\xc7\xfe\x49\x92\x4e\x0c\xa0\xda\x74\xe4\x94\xbf\x4d\xce\x68\xb6\x94\xe7\x44\x5f\xdb\x76\xa6\xc7\x96\xce\xbc\x5e\xa3\x4f\xe8\x02\xc3\x29\x39\x16\x7d\x43\xd8\x39\xc1\x76\x5e\x6f\x7c\x79\x4a\x3c\x3b\x8b\x77\x79\xa6\x1b\xcf\xe7\xc6\x67\x28\x39\x33\x47\xfa\xa9\xf4\x74\xab\xa5\x46\x7a\x59\x77\xce\x13\x6b\xe1\x4d\xc9\x44\xfa\x8c\xca\x88\xf4\xba\x0c\xa4\x76\xba\x6f\xd1\x36\x5a\x19\xc4\xb0\x73\x02\x13\xb2\x20\xde\x0e\x67\xab\xcb\x3d\x8b\x89\x3d\x46\x18\x1c\x67\xb2\x63\xcb\x2f\xd3\x7d\xbe\x8f\x11\x25\xa7\x2e\x57\x08\x62\xb9\x47\x71\x85\xb8\x32\xfd\xcb\x80\x2f\x32\x6a\x26\x57\x98\xef\xbb\xee\xa4\x40\xb8\x98\x0a\x35\x6e\xbe\xba\x14\x14\x66\xb5\x63\xc1\x07\x46\xa6\x90\x12\x7f\xe0\xed\xb3\x7d\xcc\x14\xd4\x11\x4a\xef\x33\xd5\x9a\xb4\xf9\xea\xdf\x62\x27\x64\xc0\xc4\xa3\x68\x04\x07\x88\x9b\xdf\xc0\xac\x21\x03\x46\xe8\x88\xea\x17\x3c\x98\x12\x8e\x77\x66\x84\xc2\x5b\x21\x10\x21\x31\x45\x5e\x61\xa7\x3a\x37\xdc\x5b\x8f\x0f\x70\x42\xdd\xd5\x0e\xbf\x7f\xde\xed\xa2\x13\x97\x70\x58\x11\xdb\x1b\xf0\xad\xa0\x8a\xc9\x7a\x8d\x16\xdd\x2e\x5a\x90\xf1\x9c\xc6\xcc\x50\xc8\x42\x6c\xcf\xee\xe9\xfd\xe1\x9d\x11\xa2\x07\xfe\xc0\x93\x45\x2c\x12\x3a\x04\xea\xea\x76\xdc\x13\x8c\xe1\xac\xdb\x45\x67\x0a\xc6\xd3\x94\x53\x76\x1e\xcf\xd1\x99\x4c\x5f\x7b\xb6\x5e\x57\x73\x06\x67\x02\x48\x59\xe2\x03\x9c\x63\x0c\x13\xe2\xc3\x27\x74\x88\x31\x2e\xde\xd8\xde\x3e\xdb\x64\x9b\x37\xa0\x89\xa4\x8d\xf5\xb6\xec\xe0\xd4\xe2\xba\x6f\x57\x0b\xaa\x39\xaf\xd9\xbd\x77\x93\x7c\x37\xcd\xf8\x6e\x5c\xe6\xe5\xef\xe0\x1d\xb1\x21\xc8\x1d\x99\x8d\x1e\x23\x1c\x38\x0c\x3b\x66\x8b\x1e\x79\x81\x53\x9e\x33\x8b\xb9\x59\xaf\x67\xfa\xc8\x7e\xbd\x46\xb3\xd1\xcc\xcc\xd8\x2c\xc9\xc5\xa4\xcd\x92\x1c\x66\xf2\x4f\x79\x72\x2c\x96\x4a\xe9\xfb\x20\x16\x0b\x83\xb7\x08\x17\x90\xf3\x6c\xd1\xe2\x49\x14\xcf\xe7\xe5\xd9\xbe\xac\x6b\x45\x26\x92\xd5\xfd\x81\x27\x00\x18\xce\xff\x90\x34\x07\xa6\x65\xa9\x99\x43\x31\xd5\x1f\xa8\x56\x5e\x59\x97\xe1\xcb\xb4\x2f\x50\x42\x18\x28\x62\xd2\x8f\x5b\x2f\x4a\x78\x4e\xe6\xa8\x23\xcb\x77\xa0\x43\x85\x36\xda\x19\x0b\xfe\x37\xef\x40\x27\x11\xd3\xcb\x96\x0b\xde\xc1\xf0\x9a\x84\x11\xbc\x22\x1e\xbc\x27\x3e\x3c\x22\x43\x78\x41\x6e\xc3\x53\x72\x07\x9e\x91\xbb\xf0\x84\xdc\x83\xcf\xad\x69\xb5\x4d\x64\x66\xda\x3f\x3e\xe6\x2c\x4e\xf3\x44\x94\x10\xfb\x7d\x2c\x67\x59\x0a\x23\x26\x0a\xbf\xca\xca\x5b\x2f\x4a\x2e\x8b\x9d\xbd\xd6\x51\x50\x7e\xc0\x36\x54\x4b\xe7\x59\x9a\x44\xf4\x32\xfd\x92\xf4\x3c\xea\xe7\x3c\xe6\x62\x3b\x7a\x5f\xa6\x7d\x43\x6a\x8f\x9e\x0b\x24\x12\x29\x75\xcd\x48\x12\xce\x2b\x95\x82\x29\x41\x4b\x60\x3a\x53\xf5\x09\x21\x2f\x4c\xfd\x87\x28\xc3\x3b\xd5\xfb\xa7\xa3\xb2\xd0\x13\x98\xf5\xc5\x84\x32\x33\xec\xb3\x7e\x96\x2a\xde\x64\x8d\x2a\x50\x10\x3d\x98\xc4\x3c\x3e\x3e\x86\x99\x92\xbe\x61\xd6\x3f\x65\xd9\x72\x81\x4d\x54\x76\x89\x50\xe0\xcc\x0f\x78\xb7\x7b\xa3\x06\xcc\xfc\xdd\x1c\x7a\x91\x4c\xd1\x43\x64\x2b\xa4\x55\x67\x85\xdc\xa9\x9f\x9e\x02\xd3\x8d\x1a\x12\x8b\x85\x7e\x4b\xe7\xf1\x4a\x7f\xc1\x10\xa3\x25\xc6\x52\xef\x55\x75\x1e\x01\xab\x30\xd3\x74\x56\x43\x8c\x69\xc4\x98\x41\xac\x6a\xfb\x91\xe2\xcc\xe6\xc5\x0b\x48\x2d\xa9\x72\x4a\x58\x9f\x7f\xa2\xd4\x88\x52\x18\xe6\xc4\x83\x31\x71\xfd\xfd\xf9\xc1\x74\xdf\x71\xe6\x18\xcd\x4c\x99\x70\x6e\xa4\x2b\x75\x34\x7c\x15\x02\x42\xd2\x4e\x43\xc7\x19\x47\x64\x86\x77\x0c\x78\x32\x76\xfc\xc2\xd6\x5e\x2d\x25\x35\x21\xfc\x80\xf5\x27\x4b\x26\xb7\xef\x11\xeb\xd3\x38\xa7\xd6\x4e\xc4\x07\xd5\x57\x1c\xa0\xe6\x20\xe6\x55\x9f\x9f\x81\x5f\x6a\x3c\x69\x75\x32\x24\x95\x02\x29\xbb\x6a\xf4\x13\xbc\x53\x0d\xd3\x33\x39\x45\xe5\x20\xcb\x45\x7c\xf5\x10\xe7\x82\xc5\x58\x2a\xb7\xa5\x18\x8b\xa5\xc0\x4a\x22\x63\x75\x22\x2b\x69\x86\x47\x90\xe8\x55\xb0\x53\x26\x0f\xb0\xd7\x62\x21\x7d\xac\x99\x01\x40\x5e\xd6\x74\x4e\xd3\xc0\xfb\x0d\x82\xca\x36\x08\x4a\x3f\x1f\x10\xda\xed\x66\x88\xba\xfa\x19\x17\xe0\x99\x32\x05\xa2\xc0\xc0\xa8\xd8\x2a\x7d\x57\x0a\xb2\xaf\x41\x22\xf4\xe7\xe7\x20\xa9\x20\x78\x0d\xa2\x7c\x90\xc9\x6a\x20\xe1\x04\x99\x6e\xcf\x4c\x90\x78\xa1\x7f\x82\x98\xc7\x20\x93\xd3\x29\x6b\x32\x99\x9f\x0c\x24\xf2\xc1\xab\xda\x11\xdf\x77\xb6\x4b\xf1\x3b\xe5\xa7\x54\x71\x9d\xfb\xaf\x36\x15\x06\x9e\x65\xbb\xf3\x98\xd3\xfd\xdd\x78\xce\x68\x3c\x59\xed\xe6\xe3\x19\x9d\x2c\xe7\x74\xd2\xb1\x8e\xfc\xca\x16\x1e\x5c\xdd\xc2\x8b\x9b\xb4\xc0\x96\x69\x9a\xa4\xa7\xad\xf0\xdf\x35\x6e\x6c\x34\xf8\xf5\x1e\x5b\xaf\xf7\x10\x23\x2c\xe4\x51\x8b\xfa\x53\x15\x96\x7b\xf0\x34\x5b\xa6\xb5\x6e\x08\xb0\x3f\x93\x56\x43\x86\x3c\x1f\xaf\x37\x08\x31\xd9\x93\x1e\x10\xc6\x55\x42\xea\xac\xe5\x46\x27\xc3\x74\x73\xa7\xd3\x81\x0c\x23\x46\xb2\x30\xb1\xac\x40\x23\x29\xa0\xa9\x41\x79\xd4\xed\xea\x9f\x07\xcf\x60\x2b\x59\x57\x8b\x27\x1d\x59\xec\x39\x68\xe7\xa4\x1b\xab\x49\x2f\x00\x89\x45\x10\x93\x3d\x7f\x27\xee\x76\xdb\x57\x45\x01\x1f\x09\x43\x77\xac\xfb\x53\x3f\x6d\xdc\x70\x49\x26\x55\xea\x0e\x1a\x8f\x67\x68\x43\xab\x7f\xa0\x5c\x98\x52\xbc\x8f\xa8\x62\x6b\xeb\xb5\xf9\x45\x2e\x0b\x8c\xe5\xda\x6b\xf7\x76\x2a\x30\xb4\xe8\x76\x62\xee\x53\xac\x20\x84\x3c\x2a\xe4\x74\xfd\x4a\x18\xf2\x31\x7c\xdb\x36\x6b\xe6\xc6\x50\x27\x5d\x9e\x9d\x50\x66\x3b\x0e\x7d\xec\x8f\x03\xbe\x9b\xa4\x39\x17\xa3\x97\x4d\x77\x7f\xed\xc7\xa3\x8f\xfd\x49\x80\x98\x76\xfc\x46\xbf\xf6\x63\x8c\x38\xc6\x23\x21\x30\xc3\xc7\xfe\x04\x07\x1f\xfb\x53\xac\xfc\x07\xa4\xe4\xf3\x03\x49\xfb\x39\x9d\x53\xd9\xae\xe5\xfb\x6d\x89\x8f\xd5\x18\xde\xb2\x7a\xd2\x14\xba\x72\xbe\x9a\xd3\x3e\xa3\x67\xd9\x39\xb5\xf4\x77\xd5\xc3\x1f\x89\x57\x41\x29\x53\xbf\x18\x71\x4d\x4e\x6f\x5e\xca\x77\x8b\x98\x89\x11\x2c\x5d\xdb\x25\xbd\x19\x67\xc2\x64\x42\x52\x3b\x79\x4b\x85\x90\xee\xb2\xd5\x1d\x8c\x70\xbf\xa2\x89\xfa\xc5\x9f\x52\x81\x73\x9c\x1f\x25\x8a\x94\xb6\x8f\xc4\xce\x2f\x96\x54\xfd\xdb\x36\x09\xfb\x17\x50\x55\x83\x4d\xd7\x86\xaa\x13\x60\xdc\x28\x93\xc9\x4e\x9b\xd4\xdd\xed\x22\xe3\xb2\x5f\x76\x23\x63\x42\x63\xaf\x4c\x1c\x09\xb1\xc7\xcc\x72\xcc\xa9\xdd\x29\xca\x4c\xd6\xec\x4c\x3a\xba\x98\xca\x32\x4d\x26\x49\xc2\x5c\x3a\xba\x54\xe9\xb7\xe3\x30\xb7\xfd\xe9\xa6\x58\xfb\xb8\x4c\xa5\x8f\x0b\x5a\x92\x71\x38\x91\x5e\x12\x73\xa2\xb7\xdb\x25\x2c\xab\x85\x3a\x81\xb1\xdc\xcc\x3b\xe6\x4d\x27\x49\x77\x97\xa2\x78\x59\x86\x54\xc5\x31\xcc\xc2\x49\x44\xe6\xf0\x19\x89\x1f\x92\x14\x26\x30\x83\x77\x68\x09\x0c\xe3\x9a\x79\xec\x17\x14\xd7\x89\x42\x2e\xe1\x42\x0f\xf6\x61\xcd\x6a\xf6\x67\x8d\xf7\xe1\x7c\x7e\xf3\x21\x0f\x23\xc8\xc5\x7f\x4b\xe2\xed\x2f\xe5\x68\x2f\xcb\xd1\x56\x63\xbd\x6c\x8c\xb5\xb7\x3f\x93\xe3\x3a\x13\x62\xf0\x9c\x8c\xc3\x59\x54\x49\x05\x13\x58\x98\x11\x9e\xc3\xdc\x12\x2a\x61\x2c\x34\xc1\x77\x68\x2e\xb4\x89\x73\xe2\xc1\x8a\x2c\x8c\xd8\x72\x7e\xb0\xda\x77\x9c\x73\x8c\x26\x64\x11\x9e\x8b\x79\xfa\x8c\x26\x72\x58\xcf\x61\x01\x67\x78\x27\x56\xa6\xf1\x85\xcc\xdb\x2c\x7e\xcd\x71\xd1\x18\x64\x33\xb0\xd3\x64\xce\x29\xab\x8d\xea\xf5\x23\x77\x16\xf3\xf1\x8c\x36\x08\x95\xd7\x47\x8d\x11\x5e\xb9\xc3\x6c\x35\x59\x96\x3e\x65\x32\xae\x6d\x26\xc6\x35\xaf\x5c\x46\xa5\x41\x33\x8c\x74\x3e\xed\xa5\x4c\xa7\x8d\x62\x92\x87\x63\xd1\x69\x3d\x6e\x31\xc4\xd5\xb8\x8d\x21\xc7\xdd\xae\xf6\x90\x89\x1b\xa4\x95\x34\x49\xab\x22\x1c\x43\x36\xb8\x80\x33\xca\x4e\x69\x6d\x40\x54\xe4\xa8\x64\x52\x7a\xa1\x27\x93\xe6\x36\xbd\x7d\x14\x68\xf9\x3b\xb5\x47\x84\x55\x2e\x55\xe5\x75\x50\x99\xaf\xa5\x7e\x53\x70\xdb\xaa\x26\x5c\x25\x5e\x65\x6a\x69\xcf\xbf\x60\x69\xcf\xc3\x49\xb4\x5e\x9b\x05\x2e\x97\xe6\x52\x5b\xe6\x73\xe9\x89\x94\x63\x09\x43\xb4\x70\xcd\xd2\x6c\x1d\xbf\x92\xa5\x06\x9b\xe7\x70\x02\xce\x0f\xa8\x36\x42\x35\x90\x42\x7d\x2e\xf9\x77\xd0\x66\x47\xb2\x57\x3b\x2f\xa7\x03\x18\xf9\x1e\xe1\xf2\xe4\x46\x83\x4e\x4a\x49\x5f\xd3\x5c\xb2\x41\x73\xe9\x06\xcd\x79\xfb\x73\x49\x69\x73\xb1\x5c\x05\xad\xcd\x23\x9d\x26\x9e\xbc\x13\x23\x80\x77\x3e\xa3\x18\x84\x58\x3c\x87\x1c\x2e\xa5\xd8\x3b\x96\x52\x8f\x33\x56\x02\xaf\xf8\x6b\xe4\x5c\x25\x09\x7b\x95\x0c\x3c\x6e\xc8\xc0\x63\x29\x03\x17\x8d\xf5\x99\x36\x46\x9a\xca\xb5\x2a\x4f\x0d\xa8\x22\x7b\x48\xb3\x09\xcd\xc5\x93\xfc\x21\x1f\xcd\x13\xe4\xc9\x67\xf9\x20\xfe\x02\x3d\x5b\xf0\x95\x78\x92\x3f\x40\x08\x3e\xf2\x29\x1e\xcf\xb6\x9c\x80\x55\x4c\x74\x8b\x2b\xef\xc1\x70\xf4\x4e\xcd\xa2\x68\x4e\xc8\x79\x58\x08\x7a\x72\xb5\xa8\x1b\x0a\x75\xf1\xaa\x6e\x5c\x80\x8c\x20\x21\x62\xe2\x2d\xe7\x68\xf4\x9c\xb2\xd5\xc6\x49\x1a\x6f\x1e\xa2\x19\x23\x8d\x3a\x48\xb3\x4f\xce\x38\xc6\xb0\x47\xd7\x6b\xad\x15\x13\x42\x68\x81\x47\xdf\x05\x0f\x76\x36\x45\x19\x65\x44\xc9\xf4\xcd\x3c\x2c\x1d\xfb\xb3\x74\x27\xdf\x23\x24\xed\x76\x95\x4b\x6e\x8e\xfb\xe3\x6c\xb1\x42\x58\xf4\x52\xe7\xac\xeb\x67\x29\x49\x8a\x02\x31\x7d\x9d\x0f\x62\xce\x59\xeb\x60\x96\x5c\x53\xd0\x6c\xbe\x88\xc7\x14\xab\x4b\x52\x4a\xb2\x9f\x66\xec\x4c\xa0\xc8\x46\x1f\xfb\xb3\xe0\x5b\xfb\xe4\xaa\x2f\x60\xbe\x15\xfa\x15\xa2\xd0\xea\x4a\x8e\x58\x7f\x9e\x8d\xe3\xf9\x68\xeb\x50\x6f\xeb\xb2\x74\x51\x66\xb2\xdb\xea\x3c\x52\x9e\xef\x2d\xb5\xea\x89\x74\xa0\x85\x53\xca\x0f\x39\x67\xc9\xc9\x92\xd3\x17\x6f\x10\xed\x4b\xfc\x81\xaa\x56\x31\x26\x84\xa0\x9c\x2c\xc5\x64\x2a\xd5\x21\x26\x72\xdc\x72\x42\x48\x32\xca\x02\x94\x10\xb1\x7f\x72\x79\x31\x62\x69\x02\x88\x2b\x99\xf1\x2a\xc0\x45\xb1\x61\xb8\xfc\x0b\x7a\x24\xb6\xaf\x3f\xa5\x07\x52\xec\xc5\x88\x41\x02\x3f\x29\x4a\xea\x88\xa9\xeb\x77\x1c\x49\x1c\x81\xd1\xae\x5a\xa6\x6b\xab\x78\xfd\x85\x83\x74\x53\x38\x06\x55\x69\x2d\xb9\x86\x76\x08\x73\x3a\x9d\xad\x6b\xe6\x26\x04\x52\x32\x10\x42\x48\x66\x8d\xef\x28\x09\x12\x3d\xa6\xec\xca\xc9\xfe\x42\x14\x10\xbd\x69\x93\x6a\xb6\xca\x95\x2b\x57\x59\xeb\xf2\x2d\x67\x52\x9a\x56\x37\x4f\xc7\x35\x79\x69\xa6\x29\xad\x21\x88\x09\xe9\x98\xf5\x8f\xa5\xd6\xb7\x63\x1d\x5d\xdb\x8b\x5b\x17\xd5\x07\xd6\xed\x76\xf9\x8d\x93\x75\x75\x4f\x6a\x0b\x4f\xd9\x69\x03\x8f\x92\x96\x69\x2e\x2d\x04\xf6\x95\x1e\xf5\x32\x21\x5b\xf2\x97\x19\xe8\x89\x66\x8d\xf2\x40\x38\xc1\xdd\x6e\xab\x93\x84\x6d\x22\x57\xea\xe2\x95\x94\x02\x5c\x0c\x5a\x51\x48\x0b\x1c\x06\x56\x5d\xb7\x51\x83\x48\x38\x24\x45\xbb\xb7\xc6\xbf\xa6\x0b\xa2\xe4\x0d\x50\xc6\x48\x13\x99\xd4\x96\x5b\xe9\xbc\xb1\x11\x20\xea\x10\xc1\x8c\x3e\xf6\x4f\xab\xdd\xc0\x30\x90\x4a\xf1\x36\xdb\x42\xdb\x90\x5c\xc1\x24\x2d\xed\x47\x40\xc1\xd6\xbe\x87\xae\xd2\xea\x61\x4b\xbd\xda\x72\xcb\xab\xe5\xc6\x2a\x0e\x2a\x98\x27\x23\x31\x24\x24\x2f\x47\x4b\xec\xa3\x1d\x9a\x4e\x74\x73\x82\x4f\xde\x92\xd9\x9b\xdb\x2f\x4c\x5d\xd9\xeb\x72\x1c\x21\x83\x78\x4b\xbf\xf3\xad\xfd\x2e\xb7\x0c\x98\xcb\x5d\xa0\x3e\xe2\x4b\x73\xa8\xb4\x6d\x58\xe6\x64\xb9\x0d\xb4\x18\x53\x42\xe6\x6a\x4c\xe4\x60\x74\xbb\x73\xc9\x94\xe2\x00\x65\x64\x2e\x2f\xa0\x89\xdd\x65\x69\xa8\xa8\xdc\x3c\xaa\x51\xe1\x18\xe3\x4d\x61\xaa\x66\xe0\x83\x98\x94\x15\x38\xe4\x44\x8e\x6b\xc7\xd9\x36\x14\x4b\x63\xe4\x52\xd8\xf7\xb3\x14\xc6\xda\xfc\xb7\xd4\x66\xaa\x38\x1a\xa9\x34\xd1\xb7\x90\xd8\xbd\xce\xb3\x64\xb2\xeb\xed\xcc\xd5\xb4\x26\x84\x90\xf1\x7a\xad\xee\xe7\xcc\x6b\x92\x91\x90\xb8\xc7\x18\x04\x4c\x92\x16\x26\xf4\x44\x32\x01\x99\x97\xfb\xe6\x93\x78\x15\xd3\xdf\x3a\x93\xa6\xbc\x18\xe9\xd8\x1a\x74\x4d\x81\x62\xa0\x99\x19\x67\xae\x25\xd6\x26\x0d\x4a\x56\xac\xd7\xea\xe6\x8e\x50\xd9\x12\xcb\xf1\xd6\x8b\xf5\xea\xad\x21\xb5\xb7\x86\x54\x6c\x0d\xe9\x8d\xb6\x86\xf4\x0b\xb7\x86\x36\x08\x5b\x36\xd6\xba\x13\xa3\xbc\xc8\x79\x1d\xcf\xcc\xf6\x24\x05\x8b\x79\x4f\x48\xd6\xe0\x99\xd6\x3d\x9d\xf2\x75\x5a\xb3\x13\xe6\x94\x57\xeb\x06\xb8\x50\x6d\xf5\x74\x64\xc0\x30\x86\xd4\xb0\xcf\xac\x62\x9f\x59\x21\x61\x9b\x53\xe6\x4e\x27\x10\x0c\x17\x38\xbd\xe0\x6d\x92\x8f\xd5\xf1\x8e\x28\xd3\x69\x93\x99\xe9\x35\xb2\x97\x56\x35\xb4\x18\xa9\x40\xd2\x0b\xfe\x30\x4b\x39\x4d\x2b\x3b\x79\xa7\x13\xf0\xa2\x40\x66\xc1\xaa\xe6\x04\x99\xdf\x40\x22\xb3\xe1\xd1\xa2\x40\xe6\x52\x64\xa7\x13\x50\x21\x87\xe2\x02\x14\xa3\x69\x51\xa0\x25\x00\x43\xb8\xaa\x54\x07\x10\xad\x14\xe1\x8d\xae\xc8\x2f\x4a\x8f\x7c\x91\x4d\x68\xc3\x59\x4d\x56\xb3\xec\xe8\x42\xe9\x75\xd8\x1e\x21\xd4\x1c\x42\xf1\x6e\x97\xeb\x96\x1e\xce\x92\xf9\x44\x8d\x4c\x81\x95\xab\x2c\x2d\xf4\x01\xd0\x95\x6a\x64\x32\x55\x0b\x05\x5a\x16\xc9\xa5\x9d\xf1\x68\x43\xab\x94\xc0\xf5\x25\xbf\xa4\x79\xd7\x53\x5d\x13\x55\x9e\x7c\xfa\x8c\xc2\xa0\xbd\x9b\x2a\x5e\x66\xb3\xf3\xc2\x1e\x43\xc9\x53\x4b\x7f\x85\x76\xc1\xa2\x9d\x3a\x12\x8b\x81\x66\x24\x51\x28\xca\x13\x95\x3d\x42\x18\xae\xdf\x92\x44\x29\x61\x24\x2b\xbd\xe5\x62\x79\x8b\x30\x16\x98\xa7\x61\x6c\xbb\xc3\xa2\x94\xa4\xc6\x5f\x50\x69\xc4\x63\x8a\x62\x30\x21\x7f\x0a\xdd\x8e\xe0\xab\xdb\xa4\xe5\x2d\x8c\x82\x6d\x63\x14\x8d\x7e\x65\x56\xbf\x62\x92\x55\xfd\x8a\x85\xb4\x84\x2f\xa5\x2a\x1c\xe3\xd2\xa9\xb1\xba\x68\xd9\x74\xc1\xd5\xf7\x2e\x93\xe6\xb5\xd7\x64\x8a\x92\x70\x69\xf7\x5a\x3c\x92\x5c\x77\x71\x29\xb6\xcb\x6e\x37\x51\xc6\xbb\x1c\x17\x1a\x07\xa1\x67\xe3\x4a\xd1\x56\x26\x95\x6d\x66\xe0\xed\x46\x8b\x91\x35\xef\xd7\x30\x86\x36\x21\x10\x5f\x7e\x67\x86\x47\x99\x79\xc8\xb6\x44\xbf\x45\x53\x50\x2d\xdd\x49\x1c\x0e\x57\xc0\xe3\xa2\x9b\x5c\x72\x91\xfa\x3a\xe0\xba\x44\x51\x99\x91\xfe\x05\xdd\x7f\x50\xa1\xab\xb1\xf8\xc3\x23\xd0\x02\xf2\xca\x41\xd0\x85\x0a\x65\x3a\xfb\x43\x63\xb0\xe1\x7c\xfb\x25\x5b\x6c\x6b\x17\x04\x4e\x02\xfd\x6d\xd8\x4b\x3b\x1f\xd0\x96\xd8\x3e\xd2\x37\x4e\x1d\x3c\x12\x26\xb9\x78\x42\x98\x34\xde\xd5\x7d\x87\x5f\xb1\xec\x2c\xc9\x69\x85\x7b\x06\xb1\x91\x8a\xf4\x55\x85\x58\x2c\xbe\xcd\x6b\x0b\x1e\x21\xae\x9b\x74\xbb\x19\xc2\x45\xb1\xc3\x5a\x4f\x3f\x59\x75\xfa\x29\xdb\xcf\xd2\x1d\xa1\x27\xd1\x6e\x17\x21\x2e\x5d\xa6\x2b\x61\xef\xb8\xaf\x0e\x70\xcd\x52\x05\xde\x3f\xee\x97\xe7\xbb\xb5\xb7\x62\xa3\x92\xcf\x4b\xac\xce\x83\x09\x2f\x70\x21\x33\xb6\x1b\x19\x64\x7b\x58\xcd\x32\x9a\xaa\x9d\xdd\x42\x52\x11\xeb\xd3\x8b\x45\x96\xca\x3d\x14\x58\x81\x6e\xe3\x9b\xc0\xf3\xdd\x12\xa2\xef\xfe\x39\x30\x11\xa2\x3d\x32\xc4\x07\xc4\x1f\xd5\xb0\x0d\x86\x55\x5b\x43\xd9\x16\x1e\x0c\xaf\x6b\x4e\xd6\x78\xf5\xf4\x26\x5d\xa1\x3d\xda\x43\x88\x3b\x3e\xee\x51\x77\xa3\x23\xd9\x39\x65\xf9\x2c\xcb\x34\x68\xbf\xff\xb5\xe7\xdf\xfd\xdb\x4d\xfa\xe3\xba\x36\x64\x87\x63\xc7\xff\xd3\x60\x9b\xb1\xf2\x47\x0d\xec\x03\x44\x5d\x32\xc4\x8d\x86\x87\x9b\x23\xb6\xa5\x6d\x29\x8b\x70\x4a\x86\x3d\x33\x82\x8c\x12\x64\x23\x54\x09\xef\x2a\xb2\x66\x9e\xa4\xc8\x1f\x20\xae\x4f\x5f\xe2\x0b\xe4\x4b\x65\xab\x87\xd8\x80\x70\x8a\x6d\xab\x82\x25\x62\xf6\xaa\x39\x05\xdf\xeb\xb9\x2e\xd5\xe1\x3c\x05\x3c\x94\xba\x14\x0f\x18\xae\x2c\x01\xf1\xd9\x62\x9e\xf0\xe5\xa4\x35\xa5\xbb\xc4\xaa\xc7\x29\x2e\x20\xe9\x2f\x28\x4b\xb2\x09\xb1\x6d\x0e\x76\x31\x51\xa6\x40\x3e\xf4\x1b\x34\xf9\xe7\x74\xcb\x77\x6b\x1d\x73\x7d\xaf\xa7\xe2\xf5\xd9\x9d\xa3\x4e\xfa\x9f\xd8\x39\x84\x04\x59\x50\xd7\xc7\x07\xde\xa8\x39\x7f\x6d\xb3\x17\x0c\x37\x47\xa3\x5e\xce\x91\xe5\x2c\xe2\xfc\x8b\xc6\x42\x1d\x2e\x49\xc7\xa8\x8d\x73\xa4\xe1\x5d\x6f\x73\x17\xdc\xe0\x48\x62\x99\xd1\x6a\x71\x51\xb5\xa4\x0a\x6b\xa4\x52\xda\xb8\x16\xb6\xbf\x87\x9a\x4e\x4a\xd8\xf2\x4f\x92\x57\x68\xf6\xe4\x71\x4b\xa5\x54\x54\xd7\x65\xa8\x3c\x09\x23\x8f\x85\xf4\x4e\x2b\x1f\xa5\x76\x97\x93\x72\xc3\x68\x0b\x53\xd0\xb2\x55\xe3\xcb\x9f\xcd\x6e\x5b\xe0\x02\xda\x81\x5a\x0e\xae\x1b\x02\x02\xb0\x1d\x6a\xfb\xcf\xfc\x32\x42\x5c\x39\x06\xc9\x9b\x57\xf2\x54\x51\xfa\x9a\x7f\x8f\x30\x88\x1e\x53\x5c\xf5\x87\x96\xd1\x6b\xa4\x71\x41\xaa\x6a\x1b\x17\x51\xfe\x9c\x93\x47\x73\xee\xd8\xed\xaa\xb3\x46\x2e\xcf\x1a\xd9\x7a\x9d\x52\x79\x04\xd9\x38\xd7\xde\x3c\x2d\x34\xce\x3e\x09\x25\xa1\xc0\x36\x82\x8c\x6e\x73\x11\x6b\xf1\x48\x53\xd1\x71\xd2\x6d\xae\x61\x89\xbe\x46\x95\xc8\x3b\x82\xca\x1f\xec\x7d\xb7\xcb\x36\xae\x0b\x2a\xf4\xc2\x90\x46\x11\x24\xa2\x1b\x4e\x8a\x6b\x1a\x99\x89\x3d\x51\x35\x7f\x4d\x7c\x84\x78\xcc\x93\xf3\xf6\xeb\xc2\xd6\x05\x67\xcb\x11\x78\xb3\xe0\xcf\x5f\x7a\x15\x74\x88\xeb\x26\xe6\xc2\x32\x9e\x58\xda\xae\xe8\xac\xd4\xc1\x6a\x24\x96\xe0\xa6\xaf\x99\x12\x88\xfb\x39\xe5\x2a\x82\x65\x75\xc1\x4d\x9e\xd8\xf7\x93\x5c\x9d\xdc\x53\x6c\x34\x3b\xed\xb6\x6a\x47\x7b\xb4\xef\xc2\x19\x37\x56\x05\x33\x03\x2a\x14\xe2\x2a\x32\x63\xfd\x33\x97\x21\x86\xb2\x08\x32\xa1\xe7\xa5\xb8\x30\x8d\xd3\x92\x3a\x73\x31\xef\x54\x97\xcf\x81\x86\x79\x64\xb9\x1b\x26\x37\xb9\x5b\x99\xc0\x2c\xce\x5b\x58\x53\xe7\x56\xc7\xa1\xc6\xf0\x50\xc0\x29\xdd\x6a\xc8\x09\x65\xd1\xa8\x80\x9c\x36\x23\xf0\x6d\x96\xd2\x9e\x63\x9b\x76\x93\x52\x33\x90\xe5\x4a\x0b\x99\xc1\xa0\x74\x26\x94\xb0\x78\x54\x80\xbc\x9e\xd1\xea\x78\x60\xea\xe0\xce\x2d\x79\xa2\x1c\x7a\x51\xbd\xba\x40\xf6\x03\x5d\xe5\x9b\x77\x05\x75\xac\x17\x89\x49\x03\x0c\x97\x60\xf4\x55\x56\xae\x75\x6b\xbf\x5a\xe0\xb4\x50\x5a\xf5\x1f\x81\xaa\xfa\x66\x83\xa4\x29\x67\xc9\x1f\x81\x79\xf9\x81\xae\x82\x0a\x5d\xad\xf9\x9b\x51\xb4\x9b\x92\xae\x08\x1b\xed\x78\xd7\x34\xe3\x54\x93\x25\xd0\x95\x1e\x0c\x57\x4e\x8a\x50\xe0\xca\x79\xd1\xec\x67\xcf\xd7\x30\xf6\xbc\x42\xb9\x3d\xd8\x74\x71\x4d\x3f\xcd\xb0\x81\xd5\x4b\x65\xf9\x52\x9c\x35\xb6\xaf\x0e\xe6\x82\x2b\x28\xe3\xba\x75\xf5\x78\x27\xb7\x96\x47\x9b\x7d\x4c\x70\x8c\x7c\x83\x63\xe4\x9b\x1c\x43\xf0\x8b\x78\x32\x41\x35\x6e\x41\x8d\x70\x54\x8b\x76\xd4\xc2\x1c\x64\xf4\x23\x0d\x40\x70\xec\x1a\x6b\xb0\x3e\x72\xf9\x19\x52\xa1\xbe\x96\x69\x0b\x8a\x6d\x4b\x3c\x97\x4b\x7c\xd9\x9f\xc5\x39\xc4\x93\xc9\x95\xeb\x58\x9b\xc9\x23\xed\xf1\x59\xae\xd3\xa5\x36\x2c\xea\x65\xb7\xec\xcb\xbf\x86\xe2\x97\x32\xd4\x9e\xa2\xa0\xa5\xed\xcb\xb2\xb4\x5d\x59\x96\x72\xb0\xcc\x7d\x4e\xc5\x42\x4b\x94\x61\x4c\xe6\xfd\xb3\x78\x21\x5d\xa4\xe4\x3c\xc2\x4c\x9b\xab\x3a\x89\x10\xd9\xc6\x09\xef\x58\xbe\xe6\x93\x8a\x63\xc4\x42\x84\x21\x61\x04\x29\x99\xb5\x05\x3e\x24\x89\xd8\x0a\x63\xc2\xfb\xa7\x82\xeb\x4a\x33\xfd\x9e\xba\x7a\x93\xee\x11\x32\x2b\xf7\xc0\x1d\xae\xf9\x72\x4c\x98\x5a\x3d\x49\x35\xbe\x34\x44\xb1\xeb\xe3\xaf\xcc\xf4\x95\xd7\xfa\x2b\x69\x23\x8c\x82\xa9\x89\xbb\x07\x49\x7f\x92\x9d\xc5\x49\x5d\xb6\x91\x2d\x37\x4c\x1d\xd5\x8d\xfd\xf2\x12\xb2\x0c\x35\x2c\xfa\x55\x49\x2d\x90\x41\x2e\xe8\x67\x69\x47\xcb\xca\x0f\x96\xfb\x58\xde\x3a\x47\x99\x8a\x48\x97\x47\x58\x85\x29\x30\x5d\xd1\x1d\x49\x2b\x46\x95\x08\xd9\x96\xc5\xe9\x69\xab\x04\xdc\x16\x1b\x71\x6a\x42\x20\xca\x08\x88\x06\x4d\x01\x46\x5f\xf8\xbd\x69\x2c\x44\x5a\x06\x3c\x1c\x67\x8b\x15\xd9\xdc\xf1\x27\x08\xeb\x61\x43\x0c\x2b\x24\x11\xc5\xa6\x19\x94\x4a\x99\xbb\x9c\xe2\x45\xcd\x2c\x23\xea\x9a\x82\xea\x20\x4c\x59\x47\x14\x3c\xc8\x08\x53\x00\x21\x26\xa1\x07\x7e\x04\x39\xd9\xf3\x4d\xe0\x39\x18\x93\xfe\xdd\x8a\x78\xa6\xa5\xa5\x25\x41\xc6\x24\x0c\x53\x12\x87\x7e\x74\x10\x87\x5e\x24\xbd\xf7\xa6\xae\x17\xc1\x44\xbc\x74\xa7\xd1\x0e\x25\x68\xe2\xce\xf0\xc0\xd2\x78\x98\xbb\x74\x86\xbd\x39\x86\x5c\xba\x3d\xc9\x2f\xd3\x79\x96\x31\x19\x97\x71\xe6\xc8\x1a\x2e\xed\x21\xe6\x2e\x31\xee\x8d\x81\x13\xda\x43\xbe\xbb\x54\x35\x66\xaa\x06\xcb\x96\xe9\x04\xcd\x30\x70\xfb\x99\x6b\xb3\xfe\xa2\x3a\x65\x93\xbd\xc3\x62\xe0\x6a\xf1\x0d\xaa\xb9\x9d\x39\xb4\xc7\x2b\x9e\x9f\xa1\xe9\x68\x51\x85\x17\x0b\x16\x25\xad\xeb\xcd\x92\x99\xf1\x04\xd6\x46\xcc\x5b\x27\x5a\xe8\x74\x30\x45\x18\x07\x89\x20\x13\xd6\xa4\xb6\xab\xea\xc6\x24\x74\x64\x6c\x6b\x87\x86\x7e\x14\x29\x30\x71\x45\x73\x1a\xd8\x6b\x31\x08\xad\x10\x1b\xf5\x73\xb2\xe7\x09\x20\xa2\xe6\x49\x9c\x4e\x3e\x25\x13\x3e\x6b\xa1\x3c\x5e\xc8\xbb\x11\x74\xd1\xf2\x8d\xca\x66\xb7\xb6\xb8\xd1\x87\x9c\xec\xed\x51\x85\xb9\xe0\xa0\xfd\x45\x3c\x99\x24\xe9\xe9\xcd\x2a\x2f\xc9\xbc\xd2\x9a\x3d\x28\x5d\x4e\x7d\x79\x50\x2d\x81\x2e\x2d\xa0\x4f\xd3\xf4\xa6\x91\x43\x97\x5f\x02\xf7\xe5\x92\xdf\x14\xee\xb5\xf8\xce\x05\xdc\x78\x9e\x9c\xde\x90\x7e\xc6\xd7\x01\x1c\x0b\x80\x5b\x58\xc8\xa2\x62\x21\x09\xc2\x86\x89\xc4\x58\xaf\x9b\x1c\xd7\x46\x0e\x2d\x71\xad\xc7\x68\x8e\x15\xa6\x68\x2c\x74\x0f\x64\xdd\x4b\x38\x43\x1b\xb6\x76\x65\x3f\xd3\x47\x68\x12\xa1\x52\x70\x2d\x27\x9d\xd7\xe0\x9b\x8b\x32\xbc\x86\xc5\xc6\x5b\x55\x96\x6f\xeb\x23\x45\x0c\xc9\xf3\xd5\x02\x89\xee\xd6\x3a\xe4\x63\x15\x44\xe0\x5c\x5e\xb2\x81\x55\xdb\x90\xb7\x91\x78\x01\x6d\x04\xea\xd0\x02\x4e\x14\xbf\xac\xb8\xe3\xb1\x2d\xdd\x23\xee\x12\x69\x81\x1a\x6d\x1a\x4a\x10\x73\x29\x1e\xf0\x22\x58\x21\x6e\x8d\xe4\xa7\xea\x96\x89\x3a\xa6\x93\x0b\x36\x23\x32\x5a\x7d\x2c\xe5\x3a\xe9\x64\x5e\x26\x14\xd9\xcd\x0e\x92\x11\x4a\x08\x43\x99\x76\xbc\x46\x39\xc4\x18\x07\xf2\x5d\x02\x99\x7a\x17\x43\x8e\x5b\xaf\xf6\xc4\x92\x25\x61\xeb\xee\xe2\x63\x8d\x42\x29\x23\x94\x64\x56\x86\x86\x34\x2e\xe0\x58\xdd\x44\xac\x5f\xe0\xa8\x3d\x2e\x89\xeb\xcb\x9d\x5a\xa8\x6b\x07\x4a\xdf\xb0\xdc\x5c\xad\x10\x8e\xf2\x36\xfe\xc6\x5b\xbc\xef\x38\xcb\x83\x6c\x1f\xc7\xe1\x32\x22\x02\xcc\x32\x02\x1a\x2e\x1d\x3f\xc2\x90\x8b\x77\x09\xe2\xe2\x1d\x57\xef\x36\x0e\x37\x36\x3d\x58\x4f\x92\x9c\x8e\xb9\xbc\x4d\x04\x3e\x64\xd8\xf5\x4b\xaf\x8b\x90\x45\x28\x16\xff\xf1\xda\x88\x5c\xd4\x55\x36\xb3\x86\xa8\xf9\x51\x2e\x25\xaa\xff\x62\xac\xcc\x42\x8b\x6c\x1e\x73\xf1\xda\x7e\xc2\xb8\x3f\x9e\xc7\x67\x0b\x44\xf5\x5f\xfb\xb2\xe5\x9b\xcd\xab\x6f\x27\x10\x93\x13\xc8\xc9\x79\x3f\x86\x25\xd9\xf3\xad\x50\xd8\x56\xb4\xb3\x6a\x96\xb2\xf2\x9e\x47\x19\x70\x76\x38\x7a\x1c\x7c\x82\x94\x24\xea\x46\xf9\xac\x6a\x6f\x56\xed\x81\x28\x95\x0e\x31\x82\x90\x62\x58\x5e\xe9\x61\x60\xdf\x48\x53\x99\x51\x18\x71\xd8\xe6\xe0\xdb\x19\xac\xe4\x05\x74\x7a\x9f\xb0\x91\x1f\xc8\x5b\x4d\x45\x81\x28\x0e\xa8\x20\x4c\x2c\x73\x0d\x98\xad\xb8\x9f\xa4\xe7\xb4\x35\xe5\x00\x4a\xd6\x6b\x49\xd7\x31\x64\x70\xfc\x57\x20\xe9\x8d\xb8\x40\xd2\x1f\xb1\x12\x49\x8e\x03\x2e\x51\xa4\xb8\x80\xd9\x17\xed\xf6\x19\x19\x9b\x2b\xb9\xa7\x18\xe6\x82\x3f\x67\xd5\x7e\x3d\xfb\xb2\xcd\xbf\x92\x9f\xe7\x8d\x8d\x7f\x76\xed\xc6\x5f\xd5\x15\x74\x44\x05\x04\x51\x4d\xd2\xdf\x4d\x77\x48\xb1\x71\xcf\xf5\x5e\x38\xb3\x29\xfa\xa6\x3b\xbf\xae\x9e\x17\xb2\x79\x31\x33\x2f\x09\x43\x77\x31\x1c\xb6\xc6\x31\x90\xd7\x3e\x05\xbf\x8b\x09\x0d\xab\x1c\x55\x82\xff\x95\x6b\x99\x27\xe3\x0f\x6f\x38\x5d\x60\x49\xb4\xc6\xc8\xe7\x7b\x01\xc7\x3b\x3a\xc7\x41\x75\xad\xf0\x65\x5f\x46\x6f\xe1\x6f\x16\x74\x9c\x4c\x13\xca\x70\x19\xfb\xa1\x03\x53\xe9\x97\xa3\x62\x29\xc9\x04\x08\x9d\xbc\x13\x28\x6d\xb8\xdc\x71\xb7\x64\x3a\xab\x59\x03\xf7\x84\x7e\xc4\xe8\x38\xc9\x93\x2c\x5d\xaf\x55\x80\xfc\xa4\x42\xa1\xfc\xf6\x8a\xd1\x69\x72\x81\x91\x74\x9d\x5b\xaf\x91\x55\x8d\x24\xa5\xab\xa2\xc1\xd9\x94\x66\xb0\xc4\x32\x8b\x42\xa7\x13\xc8\x3f\x54\xff\x3d\xd5\x7f\x17\xfa\x2f\xeb\x04\x5f\x84\x8e\x24\x1e\x81\xcd\xb5\xbd\xdd\xc4\xd6\x45\x1d\x2a\xbd\xff\xd5\xf0\xd9\xc9\x1e\x3a\x53\x8d\xcf\x57\x5f\x88\xcf\x93\xe4\x82\x0a\x7c\x5a\x5a\x1b\xf6\x50\xe7\x2b\xbb\x3d\xc3\x39\x1a\x63\x26\xe4\x7d\x4b\x2d\xfe\x60\x5f\xc2\x50\xab\xb8\xba\x49\x2b\x08\x29\xdf\xb0\xb5\x33\xc2\xab\xc3\xeb\x1a\xd1\xe5\x18\x31\x41\x9b\x2c\x64\x16\x65\x1a\x6d\xd7\xf7\x02\xc1\x2c\x14\xd8\x27\x12\x19\x9b\xc4\xab\xd3\x92\x43\xc4\x11\xd6\x17\x63\x68\x3f\x4d\xc6\xb4\x76\xa6\xa2\xc9\x53\x3a\xf9\xfa\x9e\xd2\x6a\x12\xe9\xc8\x6f\x42\x31\x67\x55\xee\xb6\x25\xc9\xc2\x38\x82\x39\xc9\xac\x3b\x4f\xf3\x83\xa5\xbc\x00\xb2\x84\x25\x99\xc3\x9c\x24\x90\xc8\xec\x0e\x39\xe4\x82\xca\x50\x52\x5f\x4b\x4f\xd3\x31\xa3\x62\xdd\x62\xb4\x84\x39\x30\x8c\xef\x7b\xa5\x74\xac\xf4\xb3\xe5\x20\xc1\xbd\x04\xb4\x64\x3b\xa6\xc9\x1c\xcd\xd5\xab\x6b\x61\x05\x32\xf7\xa0\x01\x27\xab\x2e\x7b\x09\x1e\x94\xd0\x54\x0b\x73\xf5\xee\x5a\x70\x90\x08\xe4\x44\xa7\x5b\xf0\x13\x83\xb0\x89\x22\x47\x59\x89\x46\x55\xd1\xc6\xa4\xaa\x57\x43\x46\x56\x04\x5a\x00\xb5\x03\xeb\x18\x4b\xe0\x1b\x74\x0c\xe7\xfd\x71\x65\x32\xdc\x26\x9d\x0a\x49\x42\x06\x70\x81\x0f\xb5\x8b\xbd\x0f\x2b\xe3\x65\x5d\x9e\xe4\x35\x79\xb3\x94\x40\xf4\x0e\xc9\xc1\x08\x23\x84\x37\x37\x13\x76\xa5\xdd\x42\xef\x4b\x4c\xec\x4b\xbc\x66\xb9\xd8\x2a\x59\x3f\xac\xb4\x07\x2a\x3b\xc0\x15\x13\x7f\xde\x7e\x26\x23\xe3\x32\xda\xa2\x1e\xae\x48\x35\x93\x91\x19\x25\x63\x4f\x4a\x52\x8d\x0f\x32\x49\xe8\xa9\x10\x54\x20\x91\xa1\x93\x32\xc8\x24\xb9\x32\x0c\x32\xd4\x22\xd7\xb3\x92\x89\xe7\x44\x3c\xcb\xb9\x8b\xc5\xd4\x54\x83\xf6\xba\x2e\x84\xab\xe9\x9c\x67\xa7\x88\x0f\x28\x6e\x13\xc6\x77\xcb\x12\x6c\xd0\x26\x95\xbf\xaa\x87\x4e\x3c\xf0\x5a\x60\x54\x8e\x12\xae\xd8\xc2\xaa\xc3\x57\x97\x82\xef\x32\x6c\x79\x13\xb1\x4d\xd7\x90\x7a\x15\x5d\xa3\x42\xe0\xbd\xb5\xb5\x26\xf9\x93\x24\x4d\xe4\x35\x91\x91\x83\x3a\x3e\xed\x38\x42\x8e\x3a\xf0\x84\x7c\x55\x55\x79\x64\x1f\x8d\x7b\x44\xb0\xa5\xf7\x01\x25\x44\x8d\xc6\x63\xe5\xe7\x41\x2f\xac\x38\x44\x7c\x8b\xc7\x4a\x05\xf3\x85\x2d\x2c\x35\x40\xcd\xb3\xd3\x40\xb5\xd3\xed\x9a\x17\xbe\xb7\x5e\x0f\xeb\xaf\x86\xeb\xb5\xb1\xf7\x88\xf1\xa6\x96\x52\xc2\x37\xa7\x83\xe3\x01\x2d\xac\x89\x78\xda\x2a\xe8\x95\x53\x40\x91\x5b\xc3\xf7\x99\xb5\x42\x5f\xc3\xab\x92\x7e\x43\x1f\x7c\x4f\x66\x86\x31\x3b\x01\x08\x06\x0b\x09\x79\x81\x7c\x0f\x43\x46\x1e\x89\xbf\x15\x45\xc5\x56\xb8\x60\xf2\x42\xdd\xff\x7d\x24\xfe\x70\x84\x43\x2f\x92\xfc\x24\x21\x4f\x51\x22\x3e\x3c\xd5\xbc\xa2\x64\x06\x27\x71\x7e\x43\x21\x89\x11\x87\x42\x2c\xa4\x24\x26\x36\x84\x2f\x91\x35\x55\x7c\x7e\x51\x95\xa3\x72\xef\xd9\xdc\xd2\xe4\x1d\x65\x24\x14\xb3\x5c\xec\x5f\x73\x92\x87\x79\xb5\x83\xed\xa3\x98\xcc\x0f\x96\xb8\xdb\x45\x93\x72\xcf\x98\xa8\x8d\x47\x86\x4a\x82\x09\x49\x54\xe6\x9a\x04\xcd\x31\x9c\x11\x6b\xcb\x73\x28\x9c\x93\x50\x45\x6b\x44\xec\x2b\x1f\x77\xbb\x0b\x77\x72\x70\x26\x6d\xbb\x13\xdb\x42\x37\x11\x8a\xe3\xc2\x7e\xb3\xc0\x8e\x0f\x4b\x93\x19\x63\x7f\x72\xb0\x90\x37\x7d\xc5\xc3\x94\xf8\x30\x26\x19\x9a\xe0\xfd\xa9\xbc\x70\x3d\x55\xa7\xf7\x68\x46\xc6\xbd\x29\x3e\x58\xaa\xd8\x9e\xb3\xfb\x73\xac\xe4\x8e\x73\x65\xd7\x9d\xe1\xa2\xa8\x0e\x09\xea\x10\x99\x5b\xc1\xbc\x4f\xfc\x7d\xd7\xfd\x52\xa0\xe7\xa4\x29\x0f\x4c\x60\x51\x59\x64\x16\xee\x04\xce\xb0\x32\x37\x66\xd5\xfd\x92\xd1\xb9\x65\x54\x3c\xdf\x26\x21\x70\xa1\xfe\x97\x47\x20\xa9\xf4\x57\x97\x4b\x8b\x8d\x3a\x7d\x8f\x76\x82\x0e\x74\x30\xb4\xf8\xfa\xa9\xa2\x1b\x62\x50\x8a\x05\xa9\x13\xe2\x0f\xbc\xca\xa0\xaf\x85\xe5\x6e\x17\xf1\x52\xb6\x88\x6d\xa7\x14\xd6\xe3\x03\x4d\x45\xa5\xa1\xb7\x55\x7b\xd2\x32\xd5\x20\x43\xd6\x84\x4a\xab\x42\x75\x99\xab\xc7\x0e\x98\xdb\xbf\x2b\x5a\xeb\x09\x6e\xce\x0f\x48\x3c\x92\x37\x6d\x3b\x9d\x62\x53\xf6\xa9\x94\x6d\xf4\x5c\x8a\x48\x97\x92\xef\xb7\x9d\xcf\xe8\x56\xd5\xbe\xa0\x5a\x2d\x40\xec\x0a\x57\x14\x96\x9b\x86\x2e\x5b\x60\xb9\x5a\xae\xd8\xb0\x9f\x21\x2c\x97\xb0\xbc\x29\x65\x0b\x00\x4f\x36\xb6\x05\xd7\xe6\xfa\x1c\x07\x75\x46\x5a\x56\xfc\x5c\xf2\x25\x1f\x38\x79\x83\xea\x3a\xab\x31\x10\x91\x27\x88\x01\xc5\x2e\xe2\xe4\x89\xf2\xc7\xb4\xf6\xae\xb4\x2c\xf7\x04\xa5\xa2\x14\xc7\x03\x26\xf6\x2d\x66\x3b\x06\xd8\x77\x1a\x5a\xe0\xc1\x26\xb8\xdd\x27\x88\x3b\xac\x97\x82\x3f\x90\x97\x2c\x65\x08\x84\xba\xb4\xcc\x2b\x97\xbf\x1b\x9e\x92\x08\xdd\x5b\xda\xe5\x64\x96\xa8\xad\x12\xc6\x05\xe2\xf0\x19\xe1\x12\xbc\x34\x4c\x29\x41\xa3\x1c\xba\xef\xaa\xe2\xb5\xa2\xfd\xbb\xd8\x8e\x85\x54\x9d\x05\x03\x17\xff\x31\x79\x2a\x6c\x3b\x40\x28\xf3\x9a\x07\x35\x9a\x2f\x0d\x5b\x3b\x2a\xb3\x52\x65\xcb\x8a\x5d\x1f\xef\x3b\x4e\x22\x9d\x10\xc2\xc4\xf5\xa3\x8a\x01\x7c\x5c\xc6\x29\x4f\xe6\x14\x23\x0a\xc9\xa0\x0a\xd8\x90\xd5\x9c\x2c\xd4\x11\x97\xd2\x78\x94\x5f\x9a\x19\xcf\x70\xc3\x36\x25\xe6\x29\xaa\x2e\x93\x28\x71\xef\xf1\x05\xaf\x8d\x79\x5a\x5d\x14\x34\x77\xca\x2b\xcf\x94\xe4\xc0\x1b\x85\x2f\xe2\x17\xf0\x22\x7e\x11\x05\xa1\x10\x95\x15\xda\x81\xd4\xa9\x93\x03\xa3\xb7\x88\xd7\xe2\xa5\xa5\x61\x47\x05\x64\x1b\x7b\x0f\xbf\xfa\x88\xae\x14\xf3\x76\x6a\x07\xf0\x4c\x5f\x7b\xe0\xcd\x6b\x0f\x8a\xfd\x20\x26\x03\x66\x60\xa3\x09\x4a\x0b\xcd\x7a\x4d\x4d\x72\x98\x4a\xa0\x96\x39\x75\xd2\x7e\x6c\x42\xb6\x63\x90\x07\x28\xd9\x97\xd8\x50\xb8\x65\x07\x49\xe4\x4e\x59\x89\xbd\x59\x39\x8b\x79\x0b\x65\x32\xbb\xe0\x16\xea\x7d\x60\xcb\xc7\xda\x10\xc8\x45\x05\x3b\x86\x56\xe9\x3b\x00\x9c\xf8\x42\xe8\x80\x84\x84\xfd\xbb\x11\x64\x4d\xc9\x3f\x36\x41\x3b\x0e\xaa\xfb\x20\xd9\x26\xa5\x24\x40\xc1\x03\x86\xa3\x7a\xc0\x36\x73\xa8\xae\x92\x5e\xd7\x42\x97\xc8\xf3\x72\xb6\x8f\x13\x21\x50\x23\x19\xb2\xbb\xc7\x5d\x94\xba\x0c\xf7\x28\x1e\x20\xe6\xf8\xd5\x86\x65\x68\x30\xde\xa0\x87\xab\xf5\x0b\x47\x6a\xc7\x5c\xfc\xf5\x23\x19\x50\x2e\x08\x29\xf0\xa8\x80\xf8\x4b\x66\x8c\x11\x94\x55\x93\x66\x69\x10\x79\xc3\x96\x16\x5f\xbd\x46\x62\x92\xb5\xac\x91\xb8\xb6\x46\xe2\x03\x7f\x14\x52\x99\xb7\x35\x0a\xe2\xfb\x84\x8d\xc2\x24\x64\x32\x3f\xb8\x58\x40\x32\x95\x15\x24\x61\x1c\xc9\x4e\x6c\x21\x82\x77\x15\x11\xc8\xfe\x1a\x42\xc8\x24\x23\xb3\x33\xc9\xff\x5c\xf1\x28\x31\xff\x5c\x9f\xbc\x32\xe2\x37\x0e\xea\x93\x29\x4a\x0e\x48\x72\x05\xb7\xa0\x90\x68\x1a\x30\x8b\x7f\x63\xb6\xd2\x9b\x9c\x62\xa7\x82\xdb\x6f\xb7\xf6\xbb\xfe\xe6\x29\x77\x63\x2e\xaf\x6a\x86\x7f\x59\x33\xdc\x6e\xa6\x7d\x72\x4b\xfb\x6e\xc5\x00\x4b\x96\x11\xaa\x54\xf1\x52\x6d\x8c\xae\x38\x56\xff\x79\xcb\xaa\x4d\xa4\x6e\xfb\x91\x30\xe4\x61\xf8\x89\x30\x74\x0f\xc3\xaf\x32\xd8\xf4\xb7\xe4\x9e\xd7\xfb\x15\x7e\x10\x7f\xbe\x85\x5b\x64\x78\xa7\xf7\x03\xfc\x48\xbe\xee\xdd\x82\x5f\xc8\x6d\xaf\x77\x0b\x7e\x23\xb7\xef\xdd\xed\xdd\xaa\xe6\xf1\xfb\x46\x0e\xcf\x47\x31\x6f\x64\xec\xb7\x33\xfa\xd7\x1c\x69\x44\xd1\x91\x43\x03\xa7\xac\xe7\xd8\x15\xd5\x1d\x6e\x60\x55\xca\x3e\x98\xab\x51\x99\x96\x56\x09\x98\x91\xa9\x1e\x41\x98\x90\xa9\xd1\x78\x16\x64\x8e\x3a\xfd\xaf\x9e\x75\x84\x18\x3f\x47\x9d\xe0\xab\x37\x1d\x0c\x2b\xf1\xf3\xab\xa7\xc1\x57\xcf\x3b\x18\x4e\xd5\xc3\xee\x57\x8b\x0e\x86\x13\xf9\x10\xef\x7e\x35\xe9\x60\xf8\x24\x1f\x4e\xd4\xc3\x63\xf9\xf0\xa0\x83\xe1\xa5\xfc\xf5\x6b\x07\xc3\x21\x09\xc3\x1c\x7c\xf8\x35\x82\x30\x87\xbb\x70\xb7\xa7\x7e\xf9\x77\xc1\x37\xbf\x6f\x7b\x70\xdb\x93\xbf\x63\xf0\xe1\x5b\xf9\x57\x94\x54\xbf\x54\x49\xf5\x5b\x95\x14\xbf\x33\xf0\xe1\x07\xf9\xf7\x36\xdc\xee\xa9\x5f\xf7\xe0\x9e\xfe\xe5\x0f\xc1\x1f\xca\xdf\x09\xf8\x70\x4b\xfe\x1d\xc2\xb0\x27\x7e\x31\xf0\xe1\xc7\x08\x42\x0e\x3e\xfc\x22\xff\x0a\x08\xe2\x17\x05\x1f\x7e\x8b\x22\xdb\x54\x58\x89\x57\x39\x4a\xf1\x41\x3a\x5a\x04\xb1\xfa\x71\x16\x64\xea\xc7\x2a\x48\xd4\x8f\xd3\x80\xab\x1f\x4c\xfd\x39\x09\x3e\x05\x54\xfd\x7c\x1c\xbc\xc4\xb5\xb4\x16\x6f\x91\x9e\x2c\x4b\xc0\x2f\x65\x70\xd8\x0c\x97\x67\xd8\x57\x69\x80\x4d\x5c\x86\x07\xdc\xb6\x81\x2b\x2e\x90\x31\x8c\xda\x8e\x34\xc2\x61\x54\xe0\x3e\x4b\x4e\x67\x1c\x1d\x42\x8c\x77\x72\x42\xc8\xa1\x75\x42\xd1\x62\x4b\x67\x83\xdf\x20\x19\xfc\x26\xb3\xec\x12\x8a\x83\x5c\x94\x43\x39\x39\x0c\xe3\xc1\x61\x98\xbb\x7e\x14\x0e\xa3\x83\xc3\x30\x17\x7f\x07\xf1\x28\x77\xfd\x20\x97\x99\x1e\x81\x4b\xb5\x12\x07\x28\xab\xc4\xaa\xb6\x16\xd4\xfd\x65\x5f\x26\x67\xc5\x76\x56\x0c\x42\xb2\x11\x0f\xb8\x8e\x9f\x93\x95\xdf\xa6\xdb\x4f\x85\xaa\x25\x35\x53\x12\xe3\xf4\x4b\x14\xe7\x09\x2a\xcf\x68\x28\xc5\x38\x98\x20\xa5\xb5\x7d\x2f\x01\x35\x95\x68\xdb\xc0\x35\x41\x18\x12\x92\xaa\x03\xda\x34\x4c\x2d\x43\x70\x4c\xb2\x83\xa4\xdc\x66\xa4\x59\x2b\x81\x44\x9a\xb3\x98\xe0\x7e\x88\x91\xb7\x92\x6d\x67\xc0\x31\x1e\x69\xcf\x0d\x94\x40\xe6\xf8\x38\x08\xff\x2f\x65\xef\xda\xdc\xd6\x8d\x2c\x6a\x7f\xcf\xbf\x08\xdf\xb7\x54\x64\xbc\xcc\x74\x03\x8d\x46\x43\xd9\x3c\xae\x4c\xf6\x54\xcd\x9c\x9a\xd4\xe4\x4c\x32\xd9\x1f\xbc\x7d\x5c\xb8\x74\xdb\xdc\x91\x28\x9b\xa2\xe2\x78\x12\xfd\xf7\x53\x00\x75\xa1\x64\xda\xc9\x44\xa9\xc7\x22\x56\xe3\xba\xd6\x6a\x74\x53\x40\xe3\xc5\x94\x7b\xda\x9d\xa7\xb8\xbd\x6d\xca\x87\xdf\x25\xdf\x1b\xde\xb7\x7f\xfd\xf8\xe9\xf4\x6c\x68\x30\x7b\xe4\x53\x1d\xac\xd9\x6b\x77\xdf\x6a\xcf\x75\x34\xe4\xc8\x77\xd9\xbd\x5d\x6d\xfe\xed\x30\x45\x17\xa7\xd6\xcb\xfb\xa8\xd9\x6e\xd3\x51\x3d\xd4\x1b\x31\xd4\xe8\xf6\xa8\x6b\xa7\xf3\xb7\xcb\x9f\xa6\xb7\x4b\x9b\xde\x2e\xff\x67\x7a\xbb\xcc\xd3\xdb\x65\x99\xde\x2e\xdb\xf4\x76\xf9\x6a\x7a\xbb\xac\xd3\x8f\x63\xe1\xfa\xbe\xd3\xf7\xf3\xea\xdd\xed\x76\xea\x27\xe8\x0f\xd1\xa3\x14\xb7\x78\xb1\xb8\x9e\x36\x1f\xad\xf4\xe7\xe9\xed\xf2\xed\xf4\x76\x79\x35\xbd\x5d\x9e\x4d\x6f\x97\xe7\xd3\xdb\xe5\xc5\xf4\x76\xb9\x9d\xde\x2e\x37\xd3\x8f\xcb\xab\x5d\x7d\x5c\x67\x2f\x7d\xf9\xcf\x1f\xbe\xb9\xaf\xf3\x51\xca\xbe\xce\xf5\x51\xbb\x46\xf7\xb1\xe6\xe6\x5f\x2e\x7f\xe5\xeb\x2f\x5f\x7d\x78\xc8\xca\x5e\x6e\xf6\xff\xcd\x9e\xe8\x75\xb7\x18\x75\xb5\xd6\xf9\x0c\x2d\xc6\x42\x66\xd1\x40\x5d\xcd\xe0\x6a\x63\x17\x9d\x24\xe2\x58\x9a\xd4\xc0\x54\xd4\xc7\x58\x5d\xb4\xfe\x53\x6a\x69\xce\x61\x2c\x5a\x6d\xb6\x98\xf2\xbe\x14\x9f\x7c\x89\x29\xb8\x40\xd9\x73\x61\xad\x96\x6a\xd2\xa6\xec\x63\xf2\x49\x6a\x76\xc1\x95\x50\x8d\x4b\xd5\x56\x52\x95\xca\xcd\x63\x69\x49\x7d\xd2\x58\x72\x70\x1a\x6b\x49\x24\xe4\xab\x4f\xb9\x51\xa2\xdc\x98\x91\x8b\xc6\xc4\xa9\xc6\x42\x18\x7d\x0e\x01\x13\x55\xe5\x56\x5a\xd3\xa4\x8d\x67\x8b\xe9\xf2\xa6\x05\x28\xae\x34\x2e\x59\x1b\x27\xad\x59\xb1\x72\x2b\x6a\xca\x21\x40\xb3\x26\xcd\x57\x6b\x59\xb9\x58\x6b\x90\x9d\xc7\xec\x03\x45\xaa\x14\x39\x63\x4b\xa9\xd4\xa8\xa9\x42\x0c\x5c\x0a\x26\x4d\xb9\x4a\xef\x6b\xab\x2d\xb7\xac\x85\x7d\xff\x49\xdc\x7f\x4a\xeb\x3f\x2d\xf5\x9f\xd9\x62\xba\x3a\x1c\xc9\xac\x35\xaa\xec\xc7\xd3\xac\x94\x28\xfb\x51\x4d\xd2\x4c\xf2\x7e\x6c\xcd\x92\x24\xde\x8f\x70\x0d\x05\x5a\xd8\x8f\x73\xa5\x54\x13\xed\x47\xdb\x62\xe1\x76\x33\xe6\x35\xf6\x9f\xfd\xc8\xf7\xaa\xa5\xed\xc7\x3f\x69\xcb\x1a\x66\x8b\xe9\x4c\xf7\x61\x52\xeb\x5d\xe4\xc1\x9f\x97\x65\x71\xab\x13\xcf\xb4\x7f\xf0\x00\xd3\x32\x4c\x70\xf7\x57\xbf\x7d\xf2\x53\x47\x23\x1d\xbb\xa3\xfe\x89\xec\x4f\xb1\xe7\x8f\x61\x5a\xfa\xf0\xa8\x08\x81\x09\x97\x61\x5a\xca\x62\x31\xbd\xfe\x44\x11\x8e\xff\x48\x09\xed\xae\x84\xfd\xb5\xc5\xf4\xe6\xe1\xf3\x3e\xd7\xff\x80\xdf\x7e\xd3\xff\x85\x8b\x93\x93\xb9\x3e\x7d\xb4\xac\x6f\xbf\xbf\xed\x7e\x2a\xd3\xa7\xcb\x70\x67\x8b\x37\x5d\xbe\x5e\x79\x86\x2f\x74\x74\xa7\xe9\xf2\x72\x85\xcb\xf0\x14\x97\xe1\x8b\x5d\xff\x78\xb6\x5a\xca\xd3\x65\x1a\x1f\x9e\xcc\x0e\xd7\xbb\x9e\xeb\xe1\x5f\xf6\x6e\x56\x10\x3f\xfe\x9e\xea\x60\x87\xd2\xf3\x63\x4b\xa8\x76\x4f\x71\x3a\x68\xee\xf6\x8b\xdd\x62\xb1\xb8\x89\x74\xfb\xb3\xae\xce\x75\xde\x1f\x24\x22\xc0\x40\x44\xe0\x02\x53\x00\x0a\x91\x02\x84\x90\x88\x21\x86\x4c\x0c\x12\x2a\x31\xe4\xd0\x88\xa1\x04\xa5\x08\x8d\x81\x22\x28\x23\x45\x04\xf6\x14\x11\x99\x28\xa2\xe7\x40\x82\xc4\x91\x04\x99\x85\x04\x23\x27\x12\x14\xce\x24\x98\xb9\x92\x60\xe1\x46\x82\x95\x95\x04\x1b\x1b\x09\x5a\x04\x12\x07\x11\x49\x1c\x46\x4f\xe2\x7c\x24\x12\x47\x31\x90\xb8\x10\x99\xc4\x71\x8c\x24\x4e\xa2\x90\xb8\x14\x13\x45\x97\x63\xa6\xe8\xea\x60\x8b\x85\x62\x7f\xa7\x29\x3a\x8b\x8d\xd8\x43\x54\x62\xef\x06\x7d\x34\x62\x4f\x02\x14\x7c\x10\xa4\xe0\xe3\xa0\x88\x23\xf2\x49\x3c\x91\xcf\x83\x45\x88\xbc\x6f\x83\x2a\x81\x9c\xb7\x4e\x02\x61\x72\x84\xc2\x84\xe4\x24\x12\x12\x49\x24\xa0\x20\x42\x40\x2c\xe2\x8d\xe2\xa0\x48\xf2\x4a\x69\x30\x0f\x56\xc9\xbe\x51\x1b\x54\xc9\xbe\x92\x75\x06\x90\xe2\x4b\xc0\x41\x27\xc5\xe7\xe0\x07\x49\xaa\x4f\x21\x0c\xb2\x54\x2f\x41\x06\x93\x54\x1f\x43\x1e\x2c\xd2\x3c\x87\x3a\xd8\x55\x4d\x08\x3a\x68\xd2\x7c\xbf\x61\x9d\x28\xcd\x7b\x76\x83\x5e\x9a\x77\x4c\xa2\xde\x71\x10\xf5\xfd\xe6\x74\xc6\x41\x11\xf5\xc0\x69\x30\x8b\x3a\xe3\x32\x58\x45\x9d\x72\x1b\xd4\x41\x13\x75\x2d\xc2\x20\x8a\xba\x7a\x43\x37\xe8\x45\x5d\x89\x34\x18\x44\x5d\x8e\x3c\x18\x07\x45\xb4\xdf\xb9\xc1\x3c\xd8\x6b\x91\x58\x07\x7b\x2d\x31\xea\x60\xaf\x25\x4a\xaf\x85\x05\x07\xdd\x1d\x83\xf8\x41\x1a\xec\xb5\x90\xf0\x60\xaf\xc5\x8b\x0c\xa6\xc1\x2c\xcd\x39\x29\x83\x75\xb0\x49\x73\x28\x3a\x68\x9d\x09\x06\x51\xaa\x83\xe4\x0e\xe8\xa5\xa2\x25\x1a\x0c\x52\xd0\x12\x0f\xc6\x41\x19\x4c\x92\xd1\x52\x96\x8c\x9a\xca\x60\x95\x84\x9a\x9a\x24\xb4\xa4\x83\x26\x82\x96\x61\x10\x6f\x18\xd1\xb2\x93\xe8\x20\x7b\x61\x07\x99\x84\x1d\xe6\x20\xc1\x61\x66\x09\xae\x0f\x56\xa7\x08\x39\x9f\x93\x78\x47\x39\x8b\x77\x21\x17\x71\x2e\xe4\x2a\xce\x71\x6e\x82\x2e\x0e\x4a\x56\x01\x97\xb2\x45\x73\xb9\x40\x34\x57\x0b\x46\x75\xad\xb8\xd8\x9c\x16\xdf\xf5\x7b\xa1\x58\x3d\x96\x10\x8b\x77\x85\x63\xf6\x54\x38\x26\x1f\x4a\x8c\xc9\xc7\x22\x51\xbc\x94\x14\xa3\xcf\x25\x47\xf6\xa5\x94\x18\x7c\x2b\x35\x92\xb7\x52\xa3\x27\x28\x2d\x3a\x72\x45\x23\x12\x95\xfe\xce\x72\x85\xfe\xfe\x56\x64\xa5\x5c\x91\x1b\xd5\xea\xb8\x92\x56\xcf\x25\x40\x25\xce\xc1\xd5\xc0\x29\x50\x0d\x2c\x81\x2b\x73\x0c\x52\x23\x87\xde\x09\xa6\x50\xab\xb0\x0f\x5a\x13\x3b\x86\x9a\x19\xd8\xd7\x12\x8c\x43\x2d\x41\x39\xd6\x1a\x2a\xa7\xda\x42\xe1\x5a\x5b\xc8\xac\x55\x83\x44\xa8\x16\x62\xf4\x0d\x02\xc7\xd0\x20\x50\x8c\x0d\x83\x8f\xb9\x61\xc0\x58\x9b\x0b\x10\xad\x79\x52\xc1\xe6\xa9\x09\x35\xa2\x22\xdc\x42\x7f\x2f\x5b\x20\x91\xd2\x98\x58\xb4\x31\x85\x04\x2d\x92\x4f\xbe\x45\xc2\x14\x9a\x10\x24\x69\xe2\x35\x95\x96\x7c\x4d\xad\x25\x5f\x32\xb4\xec\x53\x76\x2d\xfb\x98\x43\x2b\x9e\xb3\xb4\xe2\x29\xe7\x56\xbd\xcb\xad\x55\x0f\x05\x5a\x73\x56\x5c\x6b\xae\x95\xd0\xd4\x95\x22\x4d\x5d\x2a\xb9\xa9\x93\xd2\x9a\x39\xae\xd0\xcc\x85\xea\x9a\x39\x5f\x83\x82\xc3\x2a\x0a\x0e\xba\xf9\x80\x56\x9b\x22\xb6\x06\x8a\x58\x9b\x53\x87\xa5\x05\x75\x98\xfb\xab\x81\xa9\x65\xf5\x98\x5a\x53\x8f\xd2\xac\x53\x9d\x12\x8a\x06\x25\x4c\x1a\x07\xb3\x06\xcc\x7d\x90\xb0\x9b\x22\x01\xab\xa1\x06\x6c\x46\xca\xa8\xc6\xca\x0e\x4c\x94\x1d\x5a\xd1\xe8\xbc\x35\x8d\x2e\xcc\x16\x8b\xe9\xfd\xdd\x6c\x00\xfd\x3f\x02\x04\x80\x00\x08\x08\x3c\x28\xe0\x00\x21\x81\x03\x07\x65\xb0\x81\x07\x0f\xd6\x89\x0e\x08\x08\x09\x02\x10\x32\x30\x04\x94\xc1\x0c\x11\x18\x2b\x08\x44\x54\x48\x10\x1d\x40\x06\x71\xbd\x8c\xe4\x08\x2a\x24\xc7\xd0\xed\xa3\x04\x0a\xc5\x15\x04\x28\xae\x21\x42\x75\x86\x0e\x9a\x47\xf4\xd0\x7c\x2f\x5b\x3d\x63\x00\xf5\x82\x0c\xe6\x0b\x0a\x98\x6f\x98\x10\xbc\x61\x46\x20\x87\x15\x81\x08\x1b\xf6\x59\x49\x11\x29\x39\x40\xa4\xe2\x10\x91\xd4\x39\xc4\x00\x8e\xd0\x05\xef\x02\xba\x10\x5c\x44\x17\xc4\x25\xc4\x90\x5d\x46\x0c\xd5\x55\xc4\x60\xbd\x7e\x46\x67\x88\xec\x3d\x22\x72\xf0\x1e\x81\xa3\x27\x04\x4e\x9e\x11\xb8\x78\x41\xe0\xea\x13\x18\xab\x2f\x60\x11\x7c\x03\x8b\xe8\x0d\x2c\x3a\x02\xb0\x48\xe4\xc0\x62\x20\x02\x8b\x4c\x01\x21\xc6\x3e\x5b\x46\xa1\x34\x98\x11\x62\xa2\x8a\x18\x33\x29\x62\xb7\x8a\xd1\xc5\x12\x10\x5d\xac\xc1\xa1\x8f\x35\x10\xfa\xd8\x42\x9f\x66\x5b\x88\x18\xa2\x86\x34\x98\x91\xa3\x86\x8a\x1c\x2d\x34\x8c\xd1\x82\xa1\x44\x63\x40\x11\x60\x87\x49\x80\x09\xb3\x00\x87\xc1\x88\x45\x80\x05\xab\x20\xe7\xc1\x82\x4d\x90\xdb\xa0\xa2\x0a\x46\x40\x13\x8c\x6e\xd0\x3b\x10\x8c\xc1\x61\x9f\xc0\x07\xc5\x39\xc1\x98\x9c\x13\x17\x8b\xf3\xe2\x62\x1d\xec\x9a\xd7\x09\xf4\x81\x94\x3e\x9c\x28\x7e\x68\x6d\x1a\x64\x17\x05\x45\x06\x93\x13\x41\x29\x2e\x49\xd7\xb6\x69\x68\xf6\x2c\x98\x60\x10\x5d\x11\x4c\xde\x15\x81\x44\xae\x0a\x24\x1e\x14\xd7\x04\x52\x1a\x2c\x4e\xa3\xa5\x3a\xa8\xce\xa2\x65\x18\xc4\x3e\xdb\x67\x3f\x18\x3c\x46\xcd\xec\x31\xb6\xae\x32\x63\xcb\xd9\xfb\xd8\x72\xf1\x3e\xd6\xdc\x3c\xc5\x9a\xd5\x53\x2c\x05\x7c\x88\xa5\xb8\x41\xef\x39\xe6\x12\x06\xa3\x8f\x31\x15\x19\xcc\x5e\xa2\x94\xea\xbb\xda\x6f\x3e\xc5\x58\xcc\xe7\x18\x2b\xf8\x1c\xb9\x3a\x5f\x62\xa8\xe4\x6b\x0c\x35\xf8\x1a\xa9\x46\xdf\xa2\xaf\xe2\x35\xfa\x9a\xbd\x46\x57\xab\xb7\x88\xb5\x11\x44\xac\x46\x10\xa1\xf5\x57\xc4\x9a\x23\xc7\x5d\x47\x79\xd6\x16\x88\xb8\x75\x5d\xc4\xb5\xc9\x60\x22\xee\x56\x7f\xf7\x15\x5a\x25\xe1\xd4\x94\x12\x4b\x33\xca\x2c\x0a\x54\xb9\x0f\x7c\x63\x56\x4f\xca\x41\x89\x8c\x49\x43\x00\x26\x8d\xc1\x71\x37\x5e\x3c\x3b\x4d\x81\xd8\x69\x0e\xcc\xa8\x25\x44\x06\xad\x41\x18\xb4\x85\x1c\x4c\x35\x94\xa0\x6a\xa1\x05\x35\x08\x16\xd4\x90\x21\x74\x45\xe5\x06\x29\x54\xf3\x1c\x42\x35\xe2\x38\x98\x42\xb5\xc0\xc3\xb3\xe2\x3a\xa8\xa1\x5a\x8c\x30\xe8\x42\x35\x89\x34\xc8\xa1\xf6\xc9\x32\x34\x4b\x31\x0d\x96\xd0\x2c\xc7\x5e\x57\x8e\xbd\xae\x2c\x18\xcc\x8a\xf8\xc1\xc0\x60\x45\x22\xa3\x55\x49\x83\x99\x9d\x75\xc7\xcd\x5b\x15\x65\xb2\x9a\x80\x83\xb5\xe4\x98\xad\x0f\x50\xb4\x96\x98\xc5\x5a\x12\x4e\xd6\x52\xe6\x6c\x2d\x15\x2e\xa6\xa9\x71\x35\x4d\xc6\xcd\x34\x23\xab\x69\xf6\x6c\xa6\x39\x44\x34\xcd\x31\x3a\xd3\x9c\xa2\x37\xcd\x39\x92\x69\xae\x91\x4d\xb3\xc6\x68\x5a\x20\x8a\x69\x71\x31\x9b\x16\x8a\xc5\xb4\x70\xac\xa6\x25\x46\x35\x2d\x29\x9a\x69\x29\x82\xa6\xa5\x89\x33\x2d\x26\x64\x5a\x51\x82\x69\x75\x12\x4d\x2b\x89\x98\x56\x96\x6c\x5a\x45\xaa\x69\xcd\x5d\x65\xd7\x2a\x66\x5a\x5b\x02\xeb\xce\x94\x33\x6d\x98\xc8\xb4\xf9\x14\x4c\x5b\x48\xd1\xb4\xc5\x94\x4c\x9b\xa4\x6c\xad\xe5\x54\xad\xb5\x9a\xd4\x5a\xd3\x0c\xd6\x14\x32\x5a\x53\x97\xbb\xe6\xf6\x39\x58\xd3\x90\x63\xd7\xe2\x39\x59\xd3\x94\xb3\x35\x2d\xb9\x5a\xed\x1e\xa9\x55\xd5\x02\x56\x0d\x8a\xb3\x6a\xae\x90\x55\xa3\xc2\xd6\xfd\x62\xb1\x6a\xb1\x24\xab\x96\x4a\xb1\x6a\xa5\x34\xab\xd6\x8a\xf5\xd9\xe0\xd5\x1f\x9b\x0d\xf2\x98\x07\xea\xa0\x82\x07\x87\x5d\x76\x3f\x1b\xf8\x9b\xd9\x20\x02\x03\x61\x82\x08\x01\x0b\x08\x04\x6c\x90\x80\xd1\x20\x43\x1c\xf3\x40\x1c\xf3\x80\x8c\x79\x40\xc6\x3c\x90\xc6\x3c\x90\xc6\x3c\x90\x3d\x60\x37\x94\x1c\x12\x14\x4f\x18\xa0\xf8\x88\x0c\xc5\x27\x14\xa8\xbe\x62\x82\xea\x15\x0b\x54\x42\xac\x50\xc9\xa3\x42\xa5\x80\x06\xb5\xfb\x13\x50\x29\x3b\x0f\x95\x6a\xaf\x87\xac\x1b\x1a\x01\x9d\x40\x09\xde\x25\x28\x21\xb8\x02\x25\x44\xd7\xa0\x84\xe4\x0c\x72\x28\x1e\x21\x87\xea\x1d\xe4\xa0\x9e\x20\x07\xf3\x0c\x89\xd1\x0f\xb5\xe4\x13\x24\xf6\xbe\x40\x62\xf2\x0d\x12\x07\xaf\x90\x98\x09\x20\x73\x24\x07\x99\x85\x68\x30\x40\xe6\x44\x11\x0a\x67\x4a\x83\x19\x2a\x17\xaa\x83\x0d\x1a\x57\xb2\xce\x80\xa0\x5c\x83\x03\xed\x66\x0a\x18\xb7\x10\x06\xbb\x7f\xd5\xb5\x7e\x67\x46\xec\xef\x1b\x3a\xd6\xd0\x06\x0d\x3d\x2b\xe3\xa0\x43\x62\x65\xc2\xc0\xca\x61\x30\x22\xb3\x72\x1a\xcc\x18\x59\xb9\xa2\xb0\x72\x1b\x34\x4c\xac\x11\x07\xbb\xe1\xa9\x91\x06\x03\x16\xd6\x18\xb1\x72\x8b\x32\x98\xb1\x71\x8b\x75\xb0\xa1\x72\x8b\x86\xca\x55\x00\xbb\x8f\xe0\x1c\x70\x15\x72\xc0\xa5\x5b\xb0\x5c\x24\x0e\x0e\x23\x55\xf2\x60\x75\x9e\x93\xb4\x41\x73\xc4\x29\x75\x67\x53\x92\x1b\xf4\x8e\x39\xa6\x30\x18\x5d\x64\x4e\x32\x98\x9d\x70\x48\xc5\x25\xa6\xd4\x06\xcd\x65\xf6\x19\x06\x9d\x2b\xec\xb2\x77\x95\xb1\x9b\x99\x0c\x99\x5d\x63\xc8\xe2\x34\x58\x4e\x4e\x83\xe6\xe2\x2c\x68\x6e\x1e\x42\x37\x9f\x20\xd4\x02\x1e\x43\x29\x38\x8c\x69\x3f\x48\xde\x87\x54\xd8\x53\x90\x12\x7d\x08\xb1\x24\x1f\x02\x97\xdc\x55\x5f\xe9\xde\x16\x95\xe6\x25\xf8\x62\x3e\x05\xd7\x75\x7f\xc0\x8a\x3e\x07\xa8\xde\xf7\x97\x8a\x7c\xb7\x79\xb9\x7b\x79\x35\x76\x8f\xaf\x76\x4f\xb0\xd4\x4c\x40\xb9\x16\x42\x4a\xb5\x92\x23\xa9\x4a\x7d\x02\x32\xea\x0a\x1f\x28\x50\x68\x8e\x98\xa8\x4f\x4b\xe4\x1b\x91\x90\x6b\x81\x32\x61\x8b\x54\xbc\x35\xa1\xea\xb5\x25\x6a\xbe\xb5\x4c\xea\x6b\x2b\x01\x7c\x69\x2d\xa0\xcf\x4d\x83\xf3\xd2\x2c\x78\x1f\x15\x42\xf0\xac\x18\xba\x39\xed\x42\xf4\xa4\x3e\x24\xef\x95\x42\xf6\xa8\x21\x54\x0f\xca\xa1\x39\xd3\x18\xd4\xa9\x0a\x83\x6b\x9a\x18\x5d\xe9\xd3\xa5\xcb\x5a\x98\x5c\xd2\xc2\xec\x44\x2b\x47\xc7\xda\x38\xb9\xa0\xca\xd9\x91\x5a\x9f\xee\xba\x09\xe9\xd0\x80\xcd\x81\x61\x44\x34\xc3\xe8\xb1\x99\x8b\x84\xd5\x7c\x64\x2c\xd6\x9d\xeb\x64\x14\x13\x8a\x85\x58\x30\x5a\xe8\xe6\xb9\x71\x54\x24\x63\x01\xf4\x16\xc5\xa1\xb3\x28\x84\x60\x22\x01\xcc\x44\x22\xa8\x89\x24\xa8\x96\xa4\x40\xb1\x24\x15\xb2\x25\x51\x48\x96\x13\x80\xf4\x9b\x0a\xd1\x72\x22\x88\x56\x12\x03\x5b\x49\x71\x30\x0d\x96\xc1\x06\xd1\x6a\xb2\xce\x8c\x20\x56\xb3\x87\x64\x35\x07\xc8\xd6\x5d\x8c\x6a\x35\x0b\x34\xab\x39\x83\x59\xcd\xb5\x9b\xde\x59\xd1\x59\x2d\x80\x64\xb5\x38\x64\xeb\xb7\x4d\xac\x14\xc6\x6c\x5d\xdd\x37\x2b\x25\xa3\x59\x29\xb5\x5b\xcf\x45\x9d\xb7\x5c\xc1\xb1\xe5\xea\x9c\x58\xae\xe4\xb2\xe5\xca\xae\x59\xaa\xd1\x99\xa5\x9a\xbc\xb3\x54\x8b\x0f\x26\xb5\xf9\x68\x52\xcd\x67\x8b\x0d\x7d\xb3\xd8\xfc\xfe\x35\x27\x6f\xdc\x22\xb1\x85\x96\x28\x59\x68\x85\xaa\x51\x6b\x64\x46\xfd\xde\x1a\xf5\xbb\x6a\x5e\x7d\xc8\xe6\x35\xf4\x99\x59\x99\xd1\x9c\x0a\x07\x73\x9a\x39\x19\x6a\xe5\x66\xa8\x2d\xa2\xa1\x5a\x0c\x86\x86\x31\x99\x33\x17\x9b\x39\x23\x71\xe6\x2d\x08\x9b\xb7\x3e\x2f\x91\x89\xa8\x05\x4b\xc9\x19\x5b\x4e\x6c\x62\x25\x65\x4b\x56\x53\xb3\x6c\x2d\xa3\x55\xb3\x4c\x7d\x36\x28\xf7\xb3\x41\x03\x91\x88\x00\x51\xa4\x1b\x5d\x92\x90\x21\x4a\xc6\x04\x2c\x15\x0b\xb0\x34\x6c\xd0\xfd\x71\x00\x16\xeb\xaa\x21\x81\x23\xe0\x84\x8e\x21\xa4\xae\x77\x43\x72\x2e\x43\x48\xde\x55\x08\x89\x9c\x42\x48\xc1\x19\x84\xc4\x1e\x21\xa4\xe8\xfd\x60\x00\x4a\xe2\x23\x50\x4a\x5e\x80\x52\xf6\x79\xb0\x02\xa5\xe2\x15\x28\x55\x6f\x9d\x84\x40\xa9\x91\x07\x9f\x94\x68\x90\xc1\x27\x23\x19\x4c\xd0\x33\x16\xf0\x19\xa9\x82\xcb\x48\x0a\x2e\xbb\x00\x83\x08\x2e\xfb\xe0\x07\x03\xb8\x4c\x81\x01\x33\x05\x19\x4c\x80\x39\x84\x32\x58\x01\x33\x07\xed\x64\x18\x44\x80\xee\x2a\x0f\xd2\x20\x0f\x46\x80\x2c\x9c\x06\xf3\x60\x1d\xd4\x41\xeb\xec\x83\x98\x25\x3a\xc0\x2c\x91\x06\xc3\x60\x1c\x94\xc1\xae\xe8\x24\x96\xc1\x06\x3e\x4b\xd4\x4e\x01\xa0\x2c\x82\x40\x39\x8a\x87\x90\xa3\xd0\x20\x03\x67\x96\x08\x31\xb3\x08\x48\x66\xc9\x90\x72\x90\x02\x39\x07\x69\x50\x72\x10\x85\x9a\x49\x0c\x5a\xee\x6e\x88\x66\x9f\x1c\x58\xf6\x89\xb0\x3b\x61\x01\x31\x63\x9f\xe8\x32\x26\x41\xca\x90\x12\x86\x64\x29\x23\x27\x4b\x15\x63\xd2\xd4\x50\x52\x4b\x8a\x29\xb5\x0c\x98\x53\xcd\x88\x25\x95\xec\xb0\xa5\xdc\x95\x4d\xca\x39\xa0\xa5\x94\xd9\x41\x92\x1c\x1d\xa6\x98\xc5\xb9\xc4\x39\x3b\x9f\x42\x2e\x8e\x12\xe5\xea\x38\x51\x6e\x2e\x26\x9f\xd5\x49\x72\x05\x5c\x4a\x58\xd0\xe5\x04\xc5\xb9\x22\x56\xbc\xab\xa2\x85\x9c\x4a\x2b\xc1\x99\xd4\xc2\x1e\xa4\x94\xe8\x51\x72\x11\xef\xa4\xdb\xe8\x5e\xa4\x14\xdf\xdd\xfa\xea\x83\xc4\xd2\x7c\x14\x2e\xea\x45\x42\xd7\xd9\x42\x5d\x67\x8b\xaf\xe8\x8b\xb8\xea\x7c\x15\xac\xde\x37\xe9\xc6\x82\x46\xab\x81\x20\x6a\x65\xc2\xd8\x6a\x24\x17\x6b\x15\xf2\xb1\xd4\x44\x14\x73\xcd\x14\x62\xd7\xe2\x1c\xbb\x16\x8f\x51\x6a\xa5\x14\x63\x6d\xd4\x7d\x00\xa5\x32\x4c\xe3\x1a\xa9\x01\xb5\xe8\x1b\x92\x46\xd7\x1c\x59\xc4\xe6\x03\x46\x6c\x14\x5c\x84\xd6\x15\xb4\xb5\x10\xa8\x2b\xd6\x10\xb8\xb5\x18\xb8\x5b\xfc\x21\x72\x69\x29\x08\xe7\x96\x43\x1e\x2c\x9c\x5a\x09\x95\xa5\xd5\xd0\x38\xb6\x16\x94\xb9\x69\x30\x0e\x4d\x19\x99\x9a\x71\xb7\xf2\x81\x3d\x7b\x45\xee\x56\xbe\xe3\xc0\xa8\x8e\x99\xbb\xab\xdc\xcd\xd1\x6e\xaf\xab\x06\xce\xa1\x69\xb7\xda\x9b\x0e\xab\x5d\x23\x6b\x28\x1a\xd9\x42\x56\x89\x10\x92\xa6\x88\x41\x34\x45\x17\xa2\xe6\x48\x21\x6a\x89\x21\xb0\x96\xc8\x21\x68\x8d\x31\x50\x37\x4d\x83\xd7\x16\x73\x70\xaa\xdd\x4f\x55\x8b\x75\x50\x03\x74\x75\x4b\x66\x20\x40\x6a\x28\x48\xcd\x50\x3c\x55\x73\x42\x54\xcc\x4b\x18\x8c\x94\x8d\x44\xa8\xbf\x9c\x89\xc4\x82\x14\x8a\x16\xa4\x12\x1b\x4b\xa3\x60\x2c\x46\x64\x31\xc1\x20\x92\xb7\x98\x3c\x39\x93\x44\x84\x26\xa9\x1b\x47\xa9\x9b\xee\x96\x92\x78\xed\x8f\x99\x57\xcb\xa9\xf8\x66\x39\x55\x5f\x2d\x27\xf5\xc5\x4a\xea\xba\xb6\x64\xf4\xc9\x4a\x76\x7e\xcc\x03\x83\xc1\xf7\x99\x81\x3d\xf7\x79\xc0\x07\xab\x39\x79\xb2\xe1\x21\x5a\xcb\x75\x50\xbd\xb3\x96\xcd\xa3\xb5\x82\x1e\xac\x15\xe7\xcc\x5a\xa1\xc1\xe0\xba\x27\x10\x5d\x33\xed\x0f\x94\x69\xc9\x83\xc5\x75\x6f\xa1\xb9\xee\x39\x68\x67\x05\x97\xac\x55\x37\xe8\x9d\x58\xab\xc1\x45\x6b\x95\x07\x65\x30\x77\x47\xb0\x16\xc7\x56\x6b\x73\xc1\x6a\xd5\xce\x06\x83\xce\x05\x2b\xcd\x3b\xb2\xd2\xc2\x60\x74\x64\xb9\xc9\x60\x76\x64\xa9\xd5\xc1\x9e\x57\x9a\x75\x2a\xba\x60\x51\xdd\x20\xb9\x30\xbe\xf9\x61\x63\x15\xc7\x16\x34\x0d\x16\x17\x8d\xb4\xb9\x68\x5e\xb5\xd3\xc0\xc5\x3e\x63\xb8\x68\x68\xdd\x3d\x45\x0b\x2e\xec\xbf\xd0\x30\xb0\xe4\x70\xb6\x38\x58\x3e\xfe\xf2\xe0\x2f\x14\x30\x56\x7d\x6d\x1e\x6c\xe4\x3c\x08\xc8\x31\x5f\x3f\xdd\x2d\xbe\x9c\x6f\x9f\xee\xee\x17\xbf\xcd\x37\xcf\x8e\xef\xfa\xbe\x58\x2c\x4e\x2f\x16\x1f\x5f\xf5\xf3\xe9\xc5\x70\xfb\x60\x00\xdb\xd5\x08\x07\x30\xad\x17\xa7\xcf\x77\xd3\x76\xbf\x56\xe6\x8f\xef\x0b\xdc\x8c\x7d\x81\xb7\xb1\x2b\xee\x77\x05\x5e\x6c\xff\xe8\xe2\xd0\xdd\x58\x54\xf4\x89\x25\x3a\x63\xf4\xee\xfe\x12\xdb\xdb\x78\xbb\x83\x76\x33\x56\x55\xad\x17\xd7\x37\x21\xb3\x2e\x6b\x3e\xd3\x3f\xe5\x4d\x3b\x16\x32\xeb\xcd\x7d\x68\xad\x21\xf7\xdd\xc5\x7a\x73\x34\xb6\xd6\xf9\x23\xc1\xbf\x36\xdd\xec\xd6\xbb\xf7\xc7\x64\xbf\x79\x24\xfb\xb7\xf5\x46\xf3\xf6\x98\xe4\x0f\x8f\x25\x2f\x5e\x1d\x13\xfb\xdb\x23\xb1\xbf\x6f\xdb\x7a\x93\xcf\x8e\x89\xb6\xc7\xed\xbc\x8d\x05\x73\x44\xf6\xf5\x07\x9d\x7f\x77\x4c\xec\x5f\x8f\xc4\xbe\x7f\xbb\x3d\x5a\xdc\x5f\x1e\xc9\xfd\x9f\x9b\xb5\x93\xc7\x64\xff\x74\x54\xf6\x5f\x47\x65\xff\xf9\x48\xf6\x87\xd7\x5b\xbd\x7c\x7d\x71\x76\xf4\x86\xfe\xd7\x63\xe1\xf5\xf9\xd1\x42\xb7\xfa\x48\xf0\x9f\xbb\x7a\x4c\x6e\xf3\x40\xee\xb5\x9e\xeb\x37\x79\xa7\xaf\x2e\xb6\xef\x11\x7e\x2f\x58\xdb\x43\x79\x07\xe5\x58\x86\xfc\x89\x0c\x47\x5b\x74\xf9\x89\x0c\xc7\xe4\xaf\x1e\x87\x8f\xdb\x6f\xd0\xfd\xe6\xaa\xe8\x6b\x3d\x5b\xff\xf2\x9f\x6a\xf9\xea\xec\xe8\x1d\xad\xc7\xb3\xfe\x23\xaf\x37\xe5\xf8\xb3\xf2\xe6\x78\x8e\xff\xca\xdb\xf3\x63\xe2\xf6\x91\xb6\x5d\x5c\x1c\x7d\xb8\x5f\x1f\x17\xff\x71\xbd\x5d\xb7\xf5\xe5\xb1\x1c\x3f\x1f\xcf\xf1\x6d\x7e\x75\x9e\x8f\xc9\xbf\x3f\x2e\xff\xd7\x8d\xe9\x76\x73\x71\x2c\xc7\xab\xe3\x39\xbe\x3b\xcb\x97\xc7\xab\x28\x8f\x9f\xbc\xef\xf5\xed\x55\x57\x26\xc7\x5f\xe8\x97\xfa\xef\x45\xf5\x7b\x14\x27\xea\x26\x36\xd4\xfa\xe8\x12\x94\xeb\xe9\x62\x85\x53\x5e\xb9\xe9\x72\xe5\xa7\xab\x15\x4d\x67\x2b\xd4\xa7\x7c\x3f\x09\xd5\x83\x95\x28\x23\x94\xe1\x88\x56\x30\xe2\x5e\x2d\xc3\xe2\xc9\x6c\x82\xc5\xec\x7e\x21\x9b\x1d\x95\x86\xe9\x5e\xfe\x50\xfa\xf5\x5d\x27\x3f\xbf\x89\xd6\x9f\x7f\x59\x5f\xde\x5f\x6f\x87\xab\x93\x9e\xbf\x98\xda\x3e\x50\xc1\x9b\xfd\x3f\xe7\x2b\x9e\x7e\x5e\xf1\xf4\x7e\xe5\xa7\x57\x2b\x5d\xad\x56\x17\xbf\xfd\xd6\xff\xb9\x7a\xf6\x14\x4f\x71\x2a\x23\xed\x6a\x9f\x96\x9f\xcd\x7e\x99\x9d\xce\xde\xcf\xa6\x97\x87\xa2\x97\xcf\xea\xa9\xdd\x77\xf6\xdd\xed\xca\xe0\xdb\x63\x43\xda\xb3\xdd\x7e\xb1\xd7\xed\xbf\xb7\x41\xc1\xa7\xed\xe2\xf4\x2e\xe4\xc3\xe2\xb4\x4d\x76\x93\xe3\xcd\x8d\xe4\x7e\xa9\xd0\x83\x0f\x87\x79\xd7\xa7\x6f\xa6\x77\xf7\x8b\xe1\xce\x27\x58\x3c\x79\x3f\xfd\xf9\x76\xc3\xe6\x7c\x31\xfd\xb2\x7a\xf2\xe7\xe7\xf0\xe2\xc9\x32\x4c\xdf\xf7\x5f\xff\x7c\xbf\x0a\xab\xa7\xfd\x7d\x35\xdf\xdd\xc7\xe7\x79\xf6\xe1\xce\x9b\x03\xdb\x40\xef\x05\xe7\x8b\xa7\xb8\xf8\xd2\xdd\xaf\xa0\xdf\xef\xcb\x59\x8c\xc5\x86\x0f\xa3\x25\x4d\x1f\xae\x92\x78\xa2\xf3\xed\xe2\xc9\xee\x77\x4e\xe7\xda\x1d\x88\xef\xc6\x79\x54\xbb\xdb\xe8\xda\xd3\xd7\x87\x07\xd3\x3e\x3b\xf8\x7d\xbe\x38\xdd\x4c\x3f\xad\xbe\x5e\xde\x1d\x87\x3a\x9f\xdd\x8c\xef\x6c\xb1\x6c\x79\x97\xe7\xfb\x70\x9f\x8b\xe9\x87\x47\x52\x7d\x84\x6f\x65\xea\xb4\x5b\x2c\x2f\xb6\x4d\xb7\xf3\xc5\xf4\xcd\xea\x87\xa5\xfe\xb2\xde\xcd\x17\xd3\xb7\xfd\xd7\xfe\x72\xce\x17\xfd\x36\xe8\xa6\xcd\x67\xaf\x66\x8b\x71\x0c\xdd\x7c\x56\xcf\xf2\xe5\xe5\x6c\x9a\xed\x4b\x9a\xfe\xb1\xfa\xe1\xa6\x82\xf9\xec\x6c\xbd\xd1\xd9\x62\xfa\xee\x20\x69\x9c\x88\xb1\xf8\xec\xa7\xd5\x4f\xcb\x71\xa0\xe6\xfc\xa7\xbb\xa2\xd7\x9b\x4b\xdd\xee\xe6\xb3\x37\x79\xf7\x7a\x36\xdd\x35\xed\x61\x2d\x77\xbd\xda\x27\x5f\xee\xb6\x17\x3f\xe9\x6c\x9a\xd5\xab\xed\x56\x37\xbb\x6f\x2e\xce\x2e\xb6\xb3\x45\xef\xe7\x0f\x37\x15\x7c\xdb\xdb\xf4\x8f\xdb\x0f\x77\x1d\xd8\xb7\xed\xd3\xc5\xec\xaf\x96\x27\x33\x37\x9b\x5e\x7d\x71\xbe\xe8\x5d\xf9\xee\x83\x92\xf6\x5d\xba\x29\xc9\xd6\x67\x67\x1f\x2b\x67\x7a\xf5\xc5\xbb\x5b\xb9\xf6\x7e\x36\x8d\x77\xe9\xd9\x0c\xf4\x7c\x76\xba\x7f\xa1\x66\xb0\x8c\xd8\x3f\xce\x60\xe9\x9d\x9e\xf7\x9e\x6c\x3e\x5f\xad\xbe\x3e\x39\x99\xf7\x21\x3b\x38\xc4\x78\xb3\xef\xe3\xc3\x94\xde\xd1\x87\x29\xbd\xc1\x0f\x53\xbe\x59\x7d\xf3\x30\xe5\xa6\x45\x17\x6f\x72\x1d\x26\xd9\xd9\x6d\xca\xfd\xf1\x53\xc7\xc2\xdc\xdc\x6f\x9a\x5d\xfd\x7d\xae\x8b\xc5\xb3\x97\x77\xa7\x3c\x3e\x38\x7a\xed\xa0\x98\xc5\xf5\x62\xfa\xf6\xdf\xad\xee\xe8\x71\x25\x37\xea\xee\xf6\x55\x7c\x39\xdf\x9d\x9c\xdc\x35\x68\xb7\x1a\xfb\x9c\x9e\xed\x4e\x47\xc3\xae\x17\x8b\xe9\x9b\x9b\x88\x82\xf3\xc5\xf4\xd3\xed\x1d\xd8\xdf\x80\xbd\x8e\xcb\xcf\x7e\x7e\x36\xfb\x76\xf6\xe4\xd5\x17\x3f\x3f\x99\x4d\xb3\x27\xbf\x3c\x99\xfd\x05\x96\xe1\xc7\xd9\x93\xef\x9f\xcc\xfe\x32\xd2\x4f\x67\xdf\xc2\x32\xec\xaf\xf5\xf4\xd3\x7d\x8e\x5f\x86\xfc\xc8\xf7\x23\x2c\xc3\x5f\x46\x8e\x1f\x6f\x73\xec\xaf\xdf\xa4\x2f\xa6\x1f\x1e\x77\x1e\xff\xd8\x58\xbf\x9c\xdf\xf4\x64\xfa\xc7\xe3\x67\x72\xfa\xee\xc1\xd3\xd5\x1f\xc6\xb9\x2d\xa6\xaf\x97\xfb\x13\x7c\xe7\xaf\x1f\x3d\x99\x9b\x8b\x83\xe7\xde\x2e\x36\xbb\xa7\x97\xc3\x72\x44\x78\x90\x68\xf9\x7c\x7d\xf6\x7e\x36\xcd\x2e\xf3\xe6\xf2\xe9\xa5\x6e\xd7\x76\x97\xab\xd7\xf1\x34\x6f\xea\xeb\x8b\xed\x7e\x0c\xf3\xb3\x9b\x23\x35\x4f\xf7\x53\xc8\x4c\x37\x6d\x76\x3a\x3b\x5f\xb7\x76\xd6\x15\xc0\xd7\x1f\x04\x6c\x3e\x98\xb2\x56\x7f\xbf\x3f\xe5\xf4\xdd\x72\xcc\xe9\x7f\xd4\xdd\xd2\xe9\xdd\xe2\x74\x77\x3d\xbd\x7b\xbc\xa8\xf8\x60\x87\xde\xcd\x39\xf3\xf7\x87\x50\x4c\xef\x6e\x33\x7c\x7d\x9b\xf6\x47\x77\xce\x1c\x84\x5e\xdc\xdc\x6d\x7b\x7a\xb7\x38\x3d\xd8\xcb\xb4\x2f\xf9\xc7\x11\xa9\xf2\x8f\x15\xdb\x1e\xc6\x8f\x7e\x50\x70\x3b\x39\x69\x8f\xcb\xfe\x60\xc1\xf2\x27\xca\x7e\xb3\x1f\xa2\x37\xb7\x79\xbf\x5f\xff\xeb\x0f\x0e\xee\xf9\xea\xe7\xd5\x93\x91\xf9\xfc\x30\xf3\xbf\x11\x00\xee\xfc\x58\xfe\x7f\x23\xd0\xdb\x6d\xfd\x3f\xdf\xe6\xff\xee\xdf\x09\x6c\xf7\xfe\x26\xf7\xfb\xeb\xe9\xdd\x61\x0c\xc7\xfb\x3c\x6d\x7e\x31\xe9\x83\x88\x6b\x87\xd7\xf2\x83\x6b\x3f\x3f\xb8\x76\xf9\xe0\xda\xfb\x07\xd7\xae\xfa\xb5\xdb\xa0\xd4\xbf\xac\x2f\x7f\xb8\x78\xf3\x3b\x9e\x73\x97\xfa\xc7\xfa\xd5\xeb\xdf\x73\x9c\xbb\xdc\x9f\x2e\x76\xbb\x8b\xa3\xbe\xc0\xcf\x0f\x05\xff\xa6\x76\xb4\xbc\xf7\xd7\x8b\xeb\x17\x2f\xf6\xd6\xee\xcb\x97\x7a\x5e\x74\xfb\x32\x5f\xed\x2e\x5e\xae\xcf\xdf\x5c\x6c\x77\x2f\x5f\x3e\x18\xdd\xfb\x3d\x31\xf3\xdd\xe1\x81\x4c\xfb\x53\xb9\xe1\xc5\x74\x35\xe2\xa6\x8d\x63\xa7\xdd\x8b\xc9\x56\x30\xbd\x5e\x3d\x7f\xf1\x95\xfd\xc7\xed\x8d\xf8\xca\x9e\x3c\x59\xe4\xd5\xe5\x73\xdb\x6f\xf4\x3a\x39\x79\x7d\x13\xeb\xf4\x79\x7e\xf1\x1c\x5e\x2c\x46\xea\x4d\xdc\xdf\x11\x58\xfc\x6a\xb1\x5f\x10\x7b\x60\x84\xbf\xce\x97\x7f\x7f\xb7\xb9\x3d\x26\xec\xf6\xdc\xf9\xcd\x58\x11\xfb\x7c\xf3\x62\x75\x35\xa2\xd7\xf6\x12\xea\xc9\x49\x9d\xef\x16\x5f\xbd\xbe\xad\x7e\xf1\x7a\x79\xf9\x7a\x6d\xbb\xf9\xe2\x3e\xea\xcc\xc5\x68\xc1\x8d\x41\x79\x31\x9d\xfd\xf6\xdb\xf3\x17\x8b\x69\x7b\x18\x7d\x6f\x7b\x18\x4c\x78\xda\xad\xe0\xab\xdd\x7f\xdc\xc6\x85\xf9\x6a\xf7\xe4\xc9\x41\x5c\xfc\xd5\xc5\xf3\xdd\x8b\x69\xb3\xfa\x1c\xa6\xcb\x15\x7e\x75\x79\xb7\x0b\xf4\xab\xcb\x2e\xb7\x8f\x77\xb4\x7d\x7e\xf9\xe2\x33\xf8\x7c\x35\x8e\x81\x1f\x3b\xca\x3f\xc7\xc5\xf5\xe6\xe4\x64\x7e\x71\x7b\xa6\xd3\xee\xe9\xd3\x09\x17\x93\xae\xf2\x3c\x2f\x2f\x57\xdb\x3e\x38\xf7\xe1\x60\xaf\xf7\xee\xc9\xaf\xd7\xd3\x7a\xf5\x2b\x9c\x42\xf7\x3d\x9e\x3f\xd8\xda\xb8\xdf\x4c\xba\x79\xbe\x7b\x71\xb7\x21\xfd\xf9\xee\xc5\xd8\xcd\xbb\xdd\x5d\x7e\x76\x13\x59\xf8\xf9\xee\xc5\xea\xd7\xf5\xe9\x6e\x3a\x3b\xfd\x1c\xa7\x9b\x8b\xa7\xbf\x5e\x5f\xdf\x19\xb5\x3d\xd3\x3e\x90\xc9\x6d\xde\x69\x3b\xdd\xff\x9e\xfb\x63\x76\xd6\x7b\x7b\x97\x76\x9d\x97\xe7\x2b\x9d\xf2\xb2\xae\x36\x53\x5e\xb6\x0f\x42\x4f\xe5\xe5\x3e\x20\xfa\x6f\xbf\xdd\xdc\xda\xa6\xb6\xde\xe8\xe1\xb9\x6f\xd3\xaf\xba\xb9\x3a\xd7\x6d\x2e\x67\x7a\xfa\x39\x8c\x08\xe0\xdb\xeb\xb1\x0b\xf1\xa1\xba\x98\x5d\x6d\xf6\xb9\xdb\xfd\x1e\xfd\xef\xdf\x9f\x97\x8b\xb3\x93\x93\xfd\xbf\xcb\xdd\xc5\xf7\xbb\xed\x7a\xf3\xea\x87\xfc\xea\xe4\xe4\x63\x35\x7e\x28\x3b\xdd\x1c\x8f\x33\xfb\xf6\xa2\x5d\x9d\xe9\xec\xfa\x76\xd9\xf6\x87\x99\x67\x2f\x5f\xea\xe5\x8d\xd8\x6d\xb6\xcf\x61\xdf\xdc\xc7\x5b\x49\xd6\x36\xc7\x93\xdd\x08\xd1\x97\x47\x24\x56\x39\xb9\x8b\x83\x3f\x0e\xfa\xa3\x7e\x75\x76\x31\xaa\x3a\x38\x77\xe9\xe4\xa4\xff\xbf\xbc\xaf\xe9\x3e\xd3\x61\xf4\xbd\x65\xdd\x6a\x77\x13\xef\x8e\x04\xcc\xcb\xed\x7c\xfb\xb1\xa6\x6f\xa7\x59\xbb\xfd\xc2\xe2\xd1\x88\xef\x7b\xd1\xbd\x6b\x37\x1a\x74\x39\xc6\xe5\xe0\xa8\xff\xbb\x38\xf0\x9b\x7d\x1c\xf8\xbc\x6c\xf3\xed\xb4\x39\x16\x6c\xa4\x3f\x44\xd7\xcb\xb2\xde\xb4\xd1\xae\xe9\x20\x1e\xf0\xb6\x8f\xd1\x91\x23\x18\x56\x8f\x7a\xfb\xec\x43\xdd\xa5\xcb\x9b\xb6\x5f\x1f\x39\x00\x4f\xef\x9e\xe0\x7c\xa3\x05\x67\x63\xb3\x55\xaf\xee\xe2\xf8\xee\x9e\x3f\xa4\x67\x46\x94\x81\x29\x2f\xdf\xac\x66\xb3\xcf\xf6\x47\x2a\xbd\x5b\x6f\xda\xc5\xbb\xe5\x3b\x2d\x6f\x72\xfd\xe9\x7f\x5f\x5e\x6c\xde\x1c\xd1\xa4\x7f\x50\xac\x2b\x9f\x71\xdc\xc3\xd0\x49\x63\xc8\x2e\x17\x9f\xed\x3f\xae\x76\xd3\xe5\xea\xf2\x83\x83\xd5\xf6\x27\x42\xdc\x69\xd8\xb3\x27\x4f\x16\xbb\xf9\x38\x17\x62\x1f\x54\x64\x75\xf5\x50\xd3\xcd\x9f\xcb\xe4\x6e\x34\xdc\xfc\xd7\xf8\x28\x6a\xfe\x4d\x33\x5f\x6a\x5e\xbf\xdc\xae\xb6\xfa\xf6\x6a\xbd\xd5\xe9\x30\xb5\xad\xf6\x4f\xd1\xf5\x24\x1f\x1c\x31\xb7\x9d\xc7\xc5\xa4\xb7\x9a\x60\xb5\x9d\xa7\xc5\xf5\x94\x3e\x71\x48\xf7\xb1\xf7\xb7\x5d\xd4\x31\x7b\x9f\x9c\xcc\xb7\xcb\x37\xab\xf9\x66\x75\x9b\xb2\x7c\x7b\xa5\xdb\xf7\xdf\x0f\xdf\xf1\x62\x3b\x3c\xd6\xcb\xba\x5d\xbf\xd9\xcd\x16\x8b\xc3\xdd\x61\xcb\xcb\x6d\x5d\x6e\xf5\xcd\x59\xae\x3a\xff\xf2\xbf\xbf\x7c\xfe\x7f\xff\xfb\xcb\x17\x5f\xfc\xff\x5f\x4e\xb3\x2f\xbb\x0b\x75\xdf\xc0\xf9\x7a\xb5\xef\xd3\x74\xb1\xff\x65\x7b\xdb\xd5\x71\x6b\xbe\xbe\xda\x5d\xfc\x75\xdc\x98\xff\x7c\xbf\xc9\xe7\xeb\x7a\xcc\xd8\xb8\x98\xcf\xf6\x65\xbc\xdf\xbc\x9c\x8d\x10\x86\xeb\xf9\x2c\x77\xe7\x75\x36\x3d\x7f\x71\xec\xdb\xd2\x39\x42\xb7\xdd\xd7\xf3\x59\xf3\x4f\xf3\x76\x9b\xdf\x7f\x54\xd2\x1d\x08\xfe\xb2\xbe\xfc\xb8\x9c\xdc\x0b\xee\x83\x92\x7c\x54\x34\xdc\x4b\x0e\xeb\xfa\xe3\x65\xc6\x03\xc9\xdb\xef\x16\x3e\x2a\xed\x0f\x84\x5f\xe7\x37\x9f\x28\xf6\xa0\x01\xbb\xf5\xb9\xfe\x5e\x7b\xf9\x40\xfc\xe0\xfc\x8f\x8f\x95\x7e\x2b\x6e\x67\x9f\x28\x13\xf1\x56\xea\xea\x52\x97\xff\xf3\xf1\x71\xc5\xdb\x6e\xad\x2f\x9f\xae\xdf\x7c\x5c\xec\xb6\x4f\x67\x17\x2d\x5f\xde\xc4\x6e\xbc\xfc\x9d\x11\xc3\xdb\xf1\x3d\xdb\x5e\xbd\x3c\xcf\x9f\x28\x7d\xdc\xdc\x11\x56\x7c\x3d\x9f\x8d\x77\xe0\xe9\x8d\x3e\xfe\x68\x96\xd4\xfd\xdc\xeb\xeb\xc5\x67\xff\x2f\x00\x00\xff\xff\x81\xab\xd6\x34\x21\xcf\x17\x00")
-func distAssetsVendor1192528ac070501feaf347024c2cae41JsBytes() ([]byte, error) {
+func distAssetsVendor34c674f94f8ed54c9c302f718969513fJsBytes() ([]byte, error) {
return bindataRead(
- _distAssetsVendor1192528ac070501feaf347024c2cae41Js,
- "dist/assets/vendor-1192528ac070501feaf347024c2cae41.js",
+ _distAssetsVendor34c674f94f8ed54c9c302f718969513fJs,
+ "dist/assets/vendor-34c674f94f8ed54c9c302f718969513f.js",
)
}
-func distAssetsVendor1192528ac070501feaf347024c2cae41Js() (*asset, error) {
- bytes, err := distAssetsVendor1192528ac070501feaf347024c2cae41JsBytes()
+func distAssetsVendor34c674f94f8ed54c9c302f718969513fJs() (*asset, error) {
+ bytes, err := distAssetsVendor34c674f94f8ed54c9c302f718969513fJsBytes()
if err != nil {
return nil, err
}
- info := bindataFileInfo{name: "dist/assets/vendor-1192528ac070501feaf347024c2cae41.js", size: 1486778, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
+ info := bindataFileInfo{name: "dist/assets/vendor-34c674f94f8ed54c9c302f718969513f.js", size: 1560353, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -408,7 +408,7 @@ func distImagesIconsWarningSvg() (*asset, error) {
return a, nil
}
-var _distIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\xdf\x72\xa3\x36\x14\x87\xef\xf3\x14\x94\x19\xdf\x95\x00\xc2\x18\x7b\xc6\x78\xc6\x8d\xe9\x4e\x3a\x1d\xc7\xeb\x75\xda\xdd\xab\x8c\xfe\x1c\x81\x1a\x21\x51\x49\x38\xf1\xdb\x77\x30\x36\x25\xdb\x34\xb3\x57\x18\xf4\x9d\x0f\xce\xcf\x47\x5a\xfe\xb4\x79\xb8\x3b\x7c\xdb\x15\x5e\xe5\x6a\xb9\xba\x59\xf6\x17\xcf\x5b\x56\x80\x59\xf7\xc3\xf3\x96\x35\x38\xec\xd1\x0a\x1b\x0b\x2e\xf7\x5b\xc7\x83\xb9\x3f\x5e\xaa\x9c\x6b\x02\xf8\xbb\x15\xc7\xdc\xff\x1a\x3c\xae\x83\x3b\x5d\x37\xd8\x09\x22\xc1\xf7\xa8\x56\x0e\x94\xcb\xfd\xfb\x22\x07\x56\xc2\xb5\xd2\x09\x27\x61\xb5\xd5\x35\x66\xcb\xb0\xbf\x19\x29\x15\xae\x21\xf7\x19\x58\x6a\x44\xe3\x84\x56\x23\x91\xff\x5f\xf0\x28\xe0\xa5\xd1\xc6\x8d\xa8\x17\xc1\x5c\x95\x33\x38\x0a\x0a\xc1\xf9\xe6\x67\x4f\x28\xe1\x04\x96\x81\xa5\x58\x42\x1e\xfb\xab\x9b\xb3\xe9\x66\xac\x52\xdd\x17\x05\xad\x08\xa9\x56\x5c\x94\x21\xa8\xa3\x30\x5a\xd5\xa0\xc6\xf6\x49\xf6\xcb\x04\xa1\x5a\xb3\x56\xc2\xce\x00\x17\xaf\x13\x84\x26\xc9\x7a\x82\xd0\x55\xd0\x3d\x40\x77\x13\x84\x46\x86\x01\x6a\x8c\x66\x2d\xed\x1a\x1b\x30\xa3\xb5\x7b\xdc\xff\x3e\x20\x61\x2b\xc2\x61\x51\x6a\x8a\x3b\xfa\x70\x6a\x60\x20\x70\xeb\xf4\x40\x14\x35\x01\x53\x6c\xff\xb8\xac\x9e\xbf\xef\xd7\x62\x7d\x78\xdc\x17\x5f\xc6\xcf\xa0\xe3\x02\xa3\x5b\x27\x54\x79\xbe\x82\x09\x2c\x98\x2e\xa7\x9e\x73\xa6\x85\x49\xb6\xb9\x68\xbf\x1e\x8a\xed\xe6\x69\xb7\x7f\x38\x3c\x74\x73\xf2\xc6\xb5\xc1\xee\x52\xc3\xb1\xb4\xff\x16\x3d\xfd\xf6\xf9\xb1\xd8\x7f\x7b\xba\xdf\x1e\x8a\x4f\xfb\xf5\xe1\xfe\x61\xfb\x8e\x7a\xbd\xdb\x8d\x65\x44\x6a\xfa\x2c\x54\xf9\xb9\x05\x23\xc0\x8e\x0a\xce\x74\x2d\x0c\x2e\xe1\x0b\x05\x85\x8d\xd0\x43\x06\xb6\xc6\x52\xde\xc9\xd6\x3a\x30\x43\x16\x3d\xfb\xa7\x70\xd5\x16\xd7\x60\x1b\x4c\xff\xcf\xd7\x31\x07\xfd\x0c\xea\x83\xf5\x3d\x94\x42\xbf\x01\xae\x1d\xf4\x59\x52\x29\x82\x9e\x1e\xb7\xd3\x5a\xa1\xca\x9d\xd1\xaf\xa7\xef\xcd\xad\x85\x0d\x70\xdc\x4a\xb7\xc3\xd6\xba\xca\xe8\xb6\xac\xde\xd5\xbf\x76\x33\xbd\x6e\x1a\x29\xfa\x7f\xff\x93\xd4\x04\xcb\xb7\x89\xfb\x5e\x78\x19\xe3\xa5\x14\xea\xd9\x33\x20\x73\xdf\xba\x93\x04\x5b\x01\x38\xdf\xab\x0c\xf0\xdc\xef\xa6\x09\x5b\x0b\xce\x86\x47\x50\x4c\x9b\x20\x9b\x92\x69\x82\xe9\x34\x8a\xa3\x64\xce\xc9\x8c\x25\xd3\x19\xcc\x53\x4c\x58\x42\x48\x9a\xcc\x6e\xa9\xb5\xd7\xad\xf6\x83\xe6\xeb\xe8\x07\xf3\x88\x30\xb4\x88\x78\x12\x43\x16\x67\x1c\x38\xe1\xf3\x18\xcd\x52\x58\x70\x96\xa6\x8b\xf8\x7d\xb7\xa0\xdd\x3e\x77\xa7\x06\x72\x5f\xd4\xb8\x84\xb0\x51\xe5\xf8\x35\x21\xc7\xc7\x0e\x0a\x62\x8a\x52\x94\xe1\x0c\x47\x19\x8b\x93\x08\x28\xc1\x9c\x42\x96\xc2\x74\x16\xa7\x78\xb6\xb8\x3d\x17\x5e\x83\xe9\x8e\xb3\xf0\x7a\x9e\x2d\x89\x66\xa7\xfe\xd5\x97\xd8\xfa\x33\xc6\xb3\x86\xbe\x17\x53\x1c\x2f\x50\x8a\xe6\x98\x46\x59\x94\x46\x31\x07\xcc\x93\x69\x16\xa1\x29\x45\x14\xc3\x34\xbe\xfd\xcb\xfa\xab\x65\xd8\x4b\x56\x1f\x1a\x87\x78\x48\xcc\x16\x38\x9a\xa5\xd1\x34\xc2\x0b\x9e\xa1\x8c\x2f\xa2\x88\x46\x88\x70\x92\x44\x64\x3e\xff\xce\xd9\x4b\x99\x38\x7a\x82\xe5\x7e\x3f\x74\x04\x5b\x41\x03\x66\x74\xc3\xf4\x8b\x0a\x5e\xb4\xa9\x2b\x2d\xa1\x2b\x63\xe2\x78\x6e\x34\xec\x3b\x5d\x86\xfd\x99\xfe\x4f\x00\x00\x00\xff\xff\x92\xbc\xde\xdf\xeb\x05\x00\x00")
+var _distIndexHtml = []byte("\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x94\x51\x6f\xa3\xb8\x13\xc0\xdf\xfb\x29\xf8\x23\xe5\xed\x4f\x01\x43\x20\x91\x20\x52\xae\xa1\xab\x9e\x4e\x69\x36\x4d\xef\x76\x9f\x2a\x63\x8f\xc1\x57\x63\x73\xb6\x49\x9b\x6f\x7f\x22\x24\x2c\xbb\xd7\x5b\xdd\x53\x02\xfe\xcd\xcf\x9e\x61\x3c\xd9\xff\x36\x8f\x77\x87\xaf\xbb\xc2\xa9\x6d\x23\x56\x37\xd9\xf0\xe3\x38\x59\x0d\x98\xf6\x7f\x1c\x27\x6b\xc0\x62\x87\xd4\x58\x1b\xb0\xb9\xdb\x59\xe6\x2d\xdc\xe9\x52\x6d\x6d\xeb\xc1\x5f\x1d\x3f\xe6\xee\x17\xef\x79\xed\xdd\xa9\xa6\xc5\x96\x97\x02\x5c\x87\x28\x69\x41\xda\xdc\x7d\x28\x72\xa0\x15\x5c\x23\x2d\xb7\x02\x56\x5b\xd5\x60\x9a\xf9\xc3\xc3\x44\x29\x71\x03\xb9\x4b\xc1\x10\xcd\x5b\xcb\x95\x9c\x88\xdc\x7f\x82\x47\x0e\x6f\xad\xd2\x76\x42\xbd\x71\x6a\xeb\x9c\xc2\x91\x13\xf0\xce\x0f\xff\x77\xb8\xe4\x96\x63\xe1\x19\x82\x05\xe4\xa1\xbb\xba\x39\x9b\x6e\xa6\x2a\xd9\x9f\xc8\xeb\xb8\x4f\x94\x64\xbc\xf2\x41\x1e\xb9\x56\xb2\x01\x39\xb5\xcf\xd2\x5f\x66\x08\x35\x8a\x76\x02\x76\x1a\x18\x7f\x9f\x21\x34\x8b\xd6\x33\x84\xae\x82\xfe\x05\xba\x9b\x21\x34\x31\x8c\x50\xab\x15\xed\x48\x9f\xd8\x88\x69\xa5\xec\xf3\xfe\xb7\x11\x99\xa1\xfb\x5e\x72\x3f\x02\x42\x11\xdc\x47\x1c\x4e\x2d\x8c\x14\xee\xac\x1a\x89\xa2\x29\x41\x17\xdb\xdf\x2f\xab\xe7\x33\xde\x17\xeb\xc3\xf3\xbe\x78\xfa\xf6\x2e\xdd\x5c\xe8\x2f\x87\x62\xbb\x79\xd9\xed\x1f\x0f\x8f\x7d\x0b\x3c\x4d\xc3\x36\xd8\x5e\x36\x61\x58\x18\x18\x83\x5e\x7e\xfd\xfc\x5c\xec\xbf\xbe\x3c\x6c\x0f\xc5\xa7\xfd\xfa\xf0\xf0\xb8\x1d\x30\xab\xbb\x6f\xd4\x7a\xb7\x9b\xca\x4a\xa1\xc8\x2b\x97\xd5\xe7\x0e\x34\x07\x33\x09\x38\xd3\x0d\xd7\xb8\x82\x27\x02\x12\x6b\xae\xc6\xd4\x4c\x83\x85\xb8\x13\x9d\xb1\xa0\xc7\x14\x07\xf6\x0f\x6e\xeb\x2d\x6e\xc0\xb4\x98\xfc\x9b\xaf\x67\x0e\xea\x15\xe4\x4f\xd6\xf7\x50\x71\xf5\x1d\x70\xcd\x00\xfa\x52\x7a\x44\x70\x6f\xa0\xa7\xe9\x74\x86\xcb\x6a\xa7\xd5\xfb\xe9\x47\x73\x67\x60\x03\x0c\x77\xc2\xee\xb0\x31\xb6\xd6\xaa\xab\xea\x0f\xf5\xef\x7d\xbb\xae\xdb\x56\xf0\xe1\xa3\x7e\x12\xaa\xc4\xe2\xfb\x8a\xbb\x8e\x7f\xe9\xd0\x4c\x70\xf9\xea\x68\x10\xb9\x6b\xec\x49\x80\xa9\x01\xac\xeb\xd4\x1a\x58\xee\xfa\x1d\xf7\xb1\x31\x60\x8d\x7f\x04\x49\x95\xf6\xd2\xb8\x8c\x23\x4c\xe2\x20\x0c\xa2\x05\x2b\x13\x1a\xc5\x09\x2c\xe6\xb8\xa4\x51\x59\xce\xa3\xe4\x96\x18\x73\xbd\x45\xff\xd1\x7c\xed\x6a\x0f\x31\x06\x2c\x4c\x81\x95\x25\x89\xa3\x24\x5c\x06\x88\x26\x84\x84\x34\x46\x04\x50\xb9\xf8\xd8\xcd\x49\x7f\x85\xed\xa9\x85\xdc\xe5\x0d\xae\xc0\x6f\x65\x35\xdd\xc6\x67\xf8\xd8\x43\x5e\x48\xd0\x1c\xa5\x38\xc5\x41\x4a\xc3\x28\x00\x52\x62\x46\x20\x9d\x43\x9c\x84\x73\x9c\x2c\x6f\xcf\x81\xd7\xc2\xf4\x93\xca\xbf\x8e\xaa\xac\x54\xf4\x34\x6c\x7d\x29\xdb\x30\x3e\x1c\xa3\xc9\x47\x65\x8a\x62\x92\xa4\x31\x5b\xc6\x6c\x01\x74\x1e\x93\x25\x89\x02\xc4\xd2\x70\xb1\x4c\x96\xf3\x30\x62\xb7\x7f\x1a\x77\x95\xf9\x83\x64\xf5\x53\xe3\x58\x9e\x88\xcd\x31\xa6\xb0\xc0\xcb\x98\xe0\x65\x9c\xd0\x18\x51\x56\x06\xb8\x4c\x03\xc6\x00\x82\x1f\x9c\x83\x94\xf2\xa3\xc3\x69\xee\x0e\x4d\x57\x62\xc3\x89\x47\xb5\x6a\xa9\x7a\x93\xde\x9b\xd2\x4d\xad\x04\xf4\x61\x94\x1f\xcf\x89\xfa\x43\xa6\x99\x3f\x8c\xeb\xbf\x03\x00\x00\xff\xff\xb4\x7f\x01\xeb\xc6\x05\x00\x00")
func distIndexHtmlBytes() ([]byte, error) {
return bindataRead(
@@ -423,7 +423,7 @@ func distIndexHtml() (*asset, error) {
return nil, err
}
- info := bindataFileInfo{name: "dist/index.html", size: 1515, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
+ info := bindataFileInfo{name: "dist/index.html", size: 1478, mode: os.FileMode(420), modTime: time.Unix(1480000000, 0)}
a := &asset{bytes: bytes, info: info}
return a, nil
}
@@ -501,9 +501,9 @@ func AssetNames() []string {
// _bindata is a table, holding each asset generator, mapped to its name.
var _bindata = map[string]func() (*asset, error){
"dist/assets/auto-import-fastboot-d41d8cd98f00b204e9800998ecf8427e.js": distAssetsAutoImportFastbootD41d8cd98f00b204e9800998ecf8427eJs,
- "dist/assets/nomad-ui-80bd290f31e717fefbf81265e9fd5591.css": distAssetsNomadUi80bd290f31e717fefbf81265e9fd5591Css,
- "dist/assets/nomad-ui-b1d9a065040a9f727f900c02bfb30b88.js": distAssetsNomadUiB1d9a065040a9f727f900c02bfb30b88Js,
- "dist/assets/vendor-1192528ac070501feaf347024c2cae41.js": distAssetsVendor1192528ac070501feaf347024c2cae41Js,
+ "dist/assets/nomad-ui-2ffef17efbbc4361902d6cc1d42ce2b8.css": distAssetsNomadUi2ffef17efbbc4361902d6cc1d42ce2b8Css,
+ "dist/assets/nomad-ui-3f5aade8a94ca946d42dfb0ab70ffee0.js": distAssetsNomadUi3f5aade8a94ca946d42dfb0ab70ffee0Js,
+ "dist/assets/vendor-34c674f94f8ed54c9c302f718969513f.js": distAssetsVendor34c674f94f8ed54c9c302f718969513fJs,
"dist/assets/vendor-74b43ac401038fb6d346e85abd3bb536.css": distAssetsVendor74b43ac401038fb6d346e85abd3bb536Css,
"dist/crossdomain.xml": distCrossdomainXml,
"dist/ember-fetch/fetch-fastboot-5e5d008c8b65b0ac116f7635d0c6c6b9.js": distEmberFetchFetchFastboot5e5d008c8b65b0ac116f7635d0c6c6b9Js,
@@ -563,9 +563,9 @@ var _bintree = &bintree{nil, map[string]*bintree{
"dist": &bintree{nil, map[string]*bintree{
"assets": &bintree{nil, map[string]*bintree{
"auto-import-fastboot-d41d8cd98f00b204e9800998ecf8427e.js": &bintree{distAssetsAutoImportFastbootD41d8cd98f00b204e9800998ecf8427eJs, map[string]*bintree{}},
- "nomad-ui-80bd290f31e717fefbf81265e9fd5591.css": &bintree{distAssetsNomadUi80bd290f31e717fefbf81265e9fd5591Css, map[string]*bintree{}},
- "nomad-ui-b1d9a065040a9f727f900c02bfb30b88.js": &bintree{distAssetsNomadUiB1d9a065040a9f727f900c02bfb30b88Js, map[string]*bintree{}},
- "vendor-1192528ac070501feaf347024c2cae41.js": &bintree{distAssetsVendor1192528ac070501feaf347024c2cae41Js, map[string]*bintree{}},
+ "nomad-ui-2ffef17efbbc4361902d6cc1d42ce2b8.css": &bintree{distAssetsNomadUi2ffef17efbbc4361902d6cc1d42ce2b8Css, map[string]*bintree{}},
+ "nomad-ui-3f5aade8a94ca946d42dfb0ab70ffee0.js": &bintree{distAssetsNomadUi3f5aade8a94ca946d42dfb0ab70ffee0Js, map[string]*bintree{}},
+ "vendor-34c674f94f8ed54c9c302f718969513f.js": &bintree{distAssetsVendor34c674f94f8ed54c9c302f718969513fJs, map[string]*bintree{}},
"vendor-74b43ac401038fb6d346e85abd3bb536.css": &bintree{distAssetsVendor74b43ac401038fb6d346e85abd3bb536Css, map[string]*bintree{}},
}},
"crossdomain.xml": &bintree{distCrossdomainXml, map[string]*bintree{}},
diff --git a/command/agent/command.go b/command/agent/command.go
index 49d63c80b..d90429211 100644
--- a/command/agent/command.go
+++ b/command/agent/command.go
@@ -15,20 +15,21 @@ import (
"syscall"
"time"
- "github.com/armon/go-metrics"
+ metrics "github.com/armon/go-metrics"
"github.com/armon/go-metrics/circonus"
"github.com/armon/go-metrics/datadog"
"github.com/armon/go-metrics/prometheus"
"github.com/hashicorp/consul/lib"
- "github.com/hashicorp/go-checkpoint"
- "github.com/hashicorp/go-discover"
- "github.com/hashicorp/go-hclog"
+ checkpoint "github.com/hashicorp/go-checkpoint"
+ discover "github.com/hashicorp/go-discover"
+ hclog "github.com/hashicorp/go-hclog"
gsyslog "github.com/hashicorp/go-syslog"
"github.com/hashicorp/logutils"
"github.com/hashicorp/nomad/helper"
flaghelper "github.com/hashicorp/nomad/helper/flag-helpers"
gatedwriter "github.com/hashicorp/nomad/helper/gated-writer"
"github.com/hashicorp/nomad/helper/logging"
+ "github.com/hashicorp/nomad/helper/winsvc"
"github.com/hashicorp/nomad/nomad/structs/config"
"github.com/hashicorp/nomad/version"
"github.com/mitchellh/cli"
@@ -278,14 +279,14 @@ func (c *Command) readConfig() *Config {
config.PluginDir = filepath.Join(config.DataDir, "plugins")
}
- if !c.isValidConfig(config) {
+ if !c.isValidConfig(config, cmdConfig) {
return nil
}
return config
}
-func (c *Command) isValidConfig(config *Config) bool {
+func (c *Command) isValidConfig(config, cmdConfig *Config) bool {
// Check that the server is running in at least one mode.
if !(config.Server.Enabled || config.Client.Enabled) {
@@ -361,19 +362,20 @@ func (c *Command) isValidConfig(config *Config) bool {
}
// Check the bootstrap flags
- if config.Server.BootstrapExpect > 0 && !config.Server.Enabled {
+ if !config.Server.Enabled && cmdConfig.Server.BootstrapExpect > 0 {
+ // report an error if BootstrapExpect is set in CLI but server is disabled
c.Ui.Error("Bootstrap requires server mode to be enabled")
return false
}
- if config.Server.BootstrapExpect == 1 {
+ if config.Server.Enabled && config.Server.BootstrapExpect == 1 {
c.Ui.Error("WARNING: Bootstrap mode enabled! Potentially unsafe operation.")
}
return true
}
-// setupLoggers is used to setup the logGate, logWriter, and our logOutput
-func (c *Command) setupLoggers(config *Config) (*gatedwriter.Writer, *logWriter, io.Writer) {
+// setupLoggers is used to setup the logGate, and our logOutput
+func (c *Command) setupLoggers(config *Config) (*gatedwriter.Writer, io.Writer) {
// Setup logging. First create the gated log writer, which will
// store logs until we're ready to show them. Then create the level
// filter, filtering logs of the specified level.
@@ -388,35 +390,64 @@ func (c *Command) setupLoggers(config *Config) (*gatedwriter.Writer, *logWriter,
c.Ui.Error(fmt.Sprintf(
"Invalid log level: %s. Valid log levels are: %v",
c.logFilter.MinLevel, c.logFilter.Levels))
- return nil, nil, nil
+ return nil, nil
}
+ // Create a log writer, and wrap a logOutput around it
+ writers := []io.Writer{c.logFilter}
+
// Check if syslog is enabled
- var syslog io.Writer
if config.EnableSyslog {
l, err := gsyslog.NewLogger(gsyslog.LOG_NOTICE, config.SyslogFacility, "nomad")
if err != nil {
c.Ui.Error(fmt.Sprintf("Syslog setup failed: %v", err))
- return nil, nil, nil
+ return nil, nil
}
- syslog = &SyslogWrapper{l, c.logFilter}
+ writers = append(writers, &SyslogWrapper{l, c.logFilter})
}
- // Create a log writer, and wrap a logOutput around it
- logWriter := NewLogWriter(512)
- var logOutput io.Writer
- if syslog != nil {
- logOutput = io.MultiWriter(c.logFilter, logWriter, syslog)
- } else {
- logOutput = io.MultiWriter(c.logFilter, logWriter)
+ // Check if file logging is enabled
+ if config.LogFile != "" {
+ dir, fileName := filepath.Split(config.LogFile)
+
+ // if a path is provided, but has no filename, then a default is used.
+ if fileName == "" {
+ fileName = "nomad.log"
+ }
+
+ // Try to enter the user specified log rotation duration first
+ var logRotateDuration time.Duration
+ if config.LogRotateDuration != "" {
+ duration, err := time.ParseDuration(config.LogRotateDuration)
+ if err != nil {
+ c.Ui.Error(fmt.Sprintf("Failed to parse log rotation duration: %v", err))
+ return nil, nil
+ }
+ logRotateDuration = duration
+ } else {
+ // Default to 24 hrs if no rotation period is specified
+ logRotateDuration = 24 * time.Hour
+ }
+
+ logFile := &logFile{
+ logFilter: c.logFilter,
+ fileName: fileName,
+ logPath: dir,
+ duration: logRotateDuration,
+ MaxBytes: config.LogRotateBytes,
+ MaxFiles: config.LogRotateMaxFiles,
+ }
+
+ writers = append(writers, logFile)
}
- c.logOutput = logOutput
- log.SetOutput(logOutput)
- return logGate, logWriter, logOutput
+
+ c.logOutput = io.MultiWriter(writers...)
+ log.SetOutput(c.logOutput)
+ return logGate, c.logOutput
}
// setupAgent is used to start the agent and various interfaces
-func (c *Command) setupAgent(config *Config, logger hclog.Logger, logOutput io.Writer, inmem *metrics.InmemSink) error {
+func (c *Command) setupAgent(config *Config, logger hclog.InterceptLogger, logOutput io.Writer, inmem *metrics.InmemSink) error {
c.Ui.Output("Starting Nomad agent...")
agent, err := NewAgent(config, logger, logOutput, inmem)
if err != nil {
@@ -565,13 +596,13 @@ func (c *Command) Run(args []string) int {
}
// Setup the log outputs
- logGate, _, logOutput := c.setupLoggers(config)
+ logGate, logOutput := c.setupLoggers(config)
if logGate == nil {
return 1
}
// Create logger
- logger := hclog.New(&hclog.LoggerOptions{
+ logger := hclog.NewInterceptLogger(&hclog.LoggerOptions{
Name: "agent",
Level: hclog.LevelFromString(config.LogLevel),
Output: logOutput,
@@ -747,6 +778,8 @@ WAIT:
select {
case s := <-signalCh:
sig = s
+ case <-winsvc.ShutdownChannel():
+ sig = os.Interrupt
case <-c.ShutdownCh:
sig = os.Interrupt
case <-c.retryJoinErrCh:
diff --git a/command/agent/config.go b/command/agent/config.go
index 69a14d766..39259abb2 100644
--- a/command/agent/config.go
+++ b/command/agent/config.go
@@ -7,6 +7,7 @@ import (
"io"
"net"
"os"
+ "os/exec"
"os/user"
"path/filepath"
"runtime"
@@ -56,6 +57,18 @@ type Config struct {
// LogJson enables log output in a JSON format
LogJson bool `hcl:"log_json"`
+ // LogFile enables logging to a file
+ LogFile string `hcl:"log_file"`
+
+ // LogRotateDuration is the time period that logs should be rotated in
+ LogRotateDuration string `hcl:"log_rotate_duration"`
+
+ // LogRotateBytes is the max number of bytes that should be written to a file
+ LogRotateBytes int `hcl:"log_rotate_bytes"`
+
+ // LogRotateMaxFiles is the max number of log files to keep
+ LogRotateMaxFiles int `hcl:"log_rotate_max_files"`
+
// BindAddr is the address on which all of nomad's services will
// be bound. If not specified, this defaults to 127.0.0.1.
BindAddr string `hcl:"bind_addr"`
@@ -705,6 +718,10 @@ func newDevModeConfig(devMode, connectMode bool) (*devModeConfig, error) {
return nil, fmt.Errorf(
"-dev-connect uses network namespaces and is only supported for root.")
}
+ // Ensure Consul is on PATH
+ if _, err := exec.LookPath("consul"); err != nil {
+ return nil, fmt.Errorf("-dev-connect requires a 'consul' binary in Nomad's $PATH")
+ }
mode.connectMode = true
}
err := mode.networkConfig()
@@ -893,6 +910,18 @@ func (c *Config) Merge(b *Config) *Config {
if b.LogJson {
result.LogJson = true
}
+ if b.LogFile != "" {
+ result.LogFile = b.LogFile
+ }
+ if b.LogRotateDuration != "" {
+ result.LogRotateDuration = b.LogRotateDuration
+ }
+ if b.LogRotateBytes != 0 {
+ result.LogRotateBytes = b.LogRotateBytes
+ }
+ if b.LogRotateMaxFiles != 0 {
+ result.LogRotateMaxFiles = b.LogRotateMaxFiles
+ }
if b.BindAddr != "" {
result.BindAddr = b.BindAddr
}
diff --git a/command/agent/config_parse_test.go b/command/agent/config_parse_test.go
index 362bddb92..51368fd5d 100644
--- a/command/agent/config_parse_test.go
+++ b/command/agent/config_parse_test.go
@@ -19,6 +19,7 @@ var basicConfig = &Config{
NodeName: "my-web",
DataDir: "/tmp/nomad",
PluginDir: "/tmp/nomad-plugins",
+ LogFile: "/var/log/nomad.log",
LogLevel: "ERR",
LogJson: true,
BindAddr: "192.168.0.1",
@@ -409,14 +410,10 @@ func TestConfig_Parse(t *testing.T) {
t.Run(tc.File, func(t *testing.T) {
require := require.New(t)
path, err := filepath.Abs(filepath.Join("./testdata", tc.File))
- if err != nil {
- t.Fatalf("file: %s\n\n%s", tc.File, err)
- }
+ require.NoError(err)
actual, err := ParseConfigFile(path)
- if (err != nil) != tc.Err {
- t.Fatalf("file: %s\n\n%s", tc.File, err)
- }
+ require.NoError(err)
// ParseConfig used to re-merge defaults for these three objects,
// despite them already being merged in LoadConfig. The test structs
diff --git a/command/agent/consul/check_watcher.go b/command/agent/consul/check_watcher.go
index 99c4a5be4..058c298f5 100644
--- a/command/agent/consul/check_watcher.go
+++ b/command/agent/consul/check_watcher.go
@@ -22,8 +22,8 @@ type ChecksAPI interface {
Checks() (map[string]*api.AgentCheck, error)
}
-// TaskRestarter allows the checkWatcher to restart tasks.
-type TaskRestarter interface {
+// WorkloadRestarter allows the checkWatcher to restart tasks or entire task groups.
+type WorkloadRestarter interface {
Restart(ctx context.Context, event *structs.TaskEvent, failure bool) error
}
@@ -35,7 +35,7 @@ type checkRestart struct {
checkName string
taskKey string // composite of allocID + taskName for uniqueness
- task TaskRestarter
+ task WorkloadRestarter
grace time.Duration
interval time.Duration
timeLimit time.Duration
@@ -114,7 +114,7 @@ func (c *checkRestart) apply(ctx context.Context, now time.Time, status string)
// asyncRestart mimics the pre-0.9 TaskRunner.Restart behavior and is intended
// to be called in a goroutine.
-func asyncRestart(ctx context.Context, logger log.Logger, task TaskRestarter, event *structs.TaskEvent) {
+func asyncRestart(ctx context.Context, logger log.Logger, task WorkloadRestarter, event *structs.TaskEvent) {
// Check watcher restarts are always failures
const failure = true
@@ -292,7 +292,7 @@ func (w *checkWatcher) Run(ctx context.Context) {
}
// Watch a check and restart its task if unhealthy.
-func (w *checkWatcher) Watch(allocID, taskName, checkID string, check *structs.ServiceCheck, restarter TaskRestarter) {
+func (w *checkWatcher) Watch(allocID, taskName, checkID string, check *structs.ServiceCheck, restarter WorkloadRestarter) {
if !check.TriggersRestarts() {
// Not watched, noop
return
diff --git a/command/agent/consul/client.go b/command/agent/consul/client.go
index 7c8ca34d9..e7480a8b7 100644
--- a/command/agent/consul/client.go
+++ b/command/agent/consul/client.go
@@ -105,10 +105,8 @@ func agentServiceUpdateRequired(reg *api.AgentServiceRegistration, svc *api.Agen
// operations are submitted to the main loop via commit() for synchronizing
// with Consul.
type operations struct {
- regServices []*api.AgentServiceRegistration
- regChecks []*api.AgentCheckRegistration
- scripts []*scriptCheck
-
+ regServices []*api.AgentServiceRegistration
+ regChecks []*api.AgentCheckRegistration
deregServices []string
deregChecks []string
}
@@ -117,12 +115,12 @@ type operations struct {
// allocations by task.
type AllocRegistration struct {
// Tasks maps the name of a task to its registered services and checks
- Tasks map[string]*TaskRegistration
+ Tasks map[string]*ServiceRegistrations
}
func (a *AllocRegistration) copy() *AllocRegistration {
c := &AllocRegistration{
- Tasks: make(map[string]*TaskRegistration, len(a.Tasks)),
+ Tasks: make(map[string]*ServiceRegistrations, len(a.Tasks)),
}
for k, v := range a.Tasks {
@@ -166,14 +164,14 @@ func (a *AllocRegistration) NumChecks() int {
return total
}
-// TaskRegistration holds the status of services registered for a particular
-// task.
-type TaskRegistration struct {
+// ServiceRegistrations holds the status of services registered for a particular
+// task or task group.
+type ServiceRegistrations struct {
Services map[string]*ServiceRegistration
}
-func (t *TaskRegistration) copy() *TaskRegistration {
- c := &TaskRegistration{
+func (t *ServiceRegistrations) copy() *ServiceRegistrations {
+ c := &ServiceRegistrations{
Services: make(map[string]*ServiceRegistration, len(t.Services)),
}
@@ -230,10 +228,8 @@ type ServiceClient struct {
opCh chan *operations
- services map[string]*api.AgentServiceRegistration
- checks map[string]*api.AgentCheckRegistration
- scripts map[string]*scriptCheck
- runningScripts map[string]*scriptHandle
+ services map[string]*api.AgentServiceRegistration
+ checks map[string]*api.AgentCheckRegistration
explicitlyDeregisteredServices map[string]bool
explicitlyDeregisteredChecks map[string]bool
@@ -284,8 +280,6 @@ func NewServiceClient(consulClient AgentAPI, logger log.Logger, isNomadClient bo
opCh: make(chan *operations, 8),
services: make(map[string]*api.AgentServiceRegistration),
checks: make(map[string]*api.AgentCheckRegistration),
- scripts: make(map[string]*scriptCheck),
- runningScripts: make(map[string]*scriptHandle),
explicitlyDeregisteredServices: make(map[string]bool),
explicitlyDeregisteredChecks: make(map[string]bool),
allocRegistrations: make(map[string]*AllocRegistration),
@@ -439,25 +433,16 @@ func (c *ServiceClient) merge(ops *operations) {
for _, check := range ops.regChecks {
c.checks[check.ID] = check
}
- for _, s := range ops.scripts {
- c.scripts[s.id] = s
- }
for _, sid := range ops.deregServices {
delete(c.services, sid)
c.explicitlyDeregisteredServices[sid] = true
}
for _, cid := range ops.deregChecks {
- if script, ok := c.runningScripts[cid]; ok {
- script.cancel()
- delete(c.scripts, cid)
- delete(c.runningScripts, cid)
- }
delete(c.checks, cid)
c.explicitlyDeregisteredChecks[cid] = true
}
metrics.SetGauge([]string{"client", "consul", "services"}, float32(len(c.services)))
metrics.SetGauge([]string{"client", "consul", "checks"}, float32(len(c.checks)))
- metrics.SetGauge([]string{"client", "consul", "script_checks"}, float32(len(c.runningScripts)))
}
// sync enqueued operations.
@@ -593,16 +578,6 @@ func (c *ServiceClient) sync() error {
}
creg++
metrics.IncrCounter([]string{"client", "consul", "check_registrations"}, 1)
-
- // Handle starting scripts
- if script, ok := c.scripts[id]; ok {
- // If it's already running, cancel and replace
- if oldScript, running := c.runningScripts[id]; running {
- oldScript.cancel()
- }
- // Start and store the handle
- c.runningScripts[id] = script.run()
- }
}
// Only log if something was actually synced
@@ -649,7 +624,7 @@ func (c *ServiceClient) RegisterAgent(role string, services []*structs.Service)
ops.regServices = append(ops.regServices, serviceReg)
for _, check := range service.Checks {
- checkID := makeCheckID(id, check)
+ checkID := MakeCheckID(id, check)
if check.Type == structs.ServiceCheckScript {
return fmt.Errorf("service %q contains invalid check: agent checks do not support scripts", service.Name)
}
@@ -700,11 +675,11 @@ func (c *ServiceClient) RegisterAgent(role string, services []*structs.Service)
// serviceRegs creates service registrations, check registrations, and script
// checks from a service. It returns a service registration object with the
// service and check IDs populated.
-func (c *ServiceClient) serviceRegs(ops *operations, service *structs.Service, task *TaskServices) (
+func (c *ServiceClient) serviceRegs(ops *operations, service *structs.Service, workload *WorkloadServices) (
*ServiceRegistration, error) {
// Get the services ID
- id := MakeTaskServiceID(task.AllocID, task.Name, service)
+ id := MakeAllocServiceID(workload.AllocID, workload.Name(), service)
sreg := &ServiceRegistration{
serviceID: id,
checkIDs: make(map[string]struct{}, len(service.Checks)),
@@ -717,14 +692,14 @@ func (c *ServiceClient) serviceRegs(ops *operations, service *structs.Service, t
}
// Determine the address to advertise based on the mode
- ip, port, err := getAddress(addrMode, service.PortLabel, task.Networks, task.DriverNetwork)
+ ip, port, err := getAddress(addrMode, service.PortLabel, workload.Networks, workload.DriverNetwork)
if err != nil {
return nil, fmt.Errorf("unable to get address for service %q: %v", service.Name, err)
}
// Determine whether to use tags or canary_tags
var tags []string
- if task.Canary && len(service.CanaryTags) > 0 {
+ if workload.Canary && len(service.CanaryTags) > 0 {
tags = make([]string, len(service.CanaryTags))
copy(tags, service.CanaryTags)
} else {
@@ -733,7 +708,7 @@ func (c *ServiceClient) serviceRegs(ops *operations, service *structs.Service, t
}
// newConnect returns (nil, nil) if there's no Connect-enabled service.
- connect, err := newConnect(service.Name, service.Connect, task.Networks)
+ connect, err := newConnect(service.Name, service.Connect, workload.Networks)
if err != nil {
return nil, fmt.Errorf("invalid Consul Connect configuration for service %q: %v", service.Name, err)
}
@@ -759,7 +734,7 @@ func (c *ServiceClient) serviceRegs(ops *operations, service *structs.Service, t
ops.regServices = append(ops.regServices, serviceReg)
// Build the check registrations
- checkIDs, err := c.checkRegs(ops, id, service, task)
+ checkIDs, err := c.checkRegs(ops, id, service, workload)
if err != nil {
return nil, err
}
@@ -772,7 +747,7 @@ func (c *ServiceClient) serviceRegs(ops *operations, service *structs.Service, t
// checkRegs registers the checks for the given service and returns the
// registered check ids.
func (c *ServiceClient) checkRegs(ops *operations, serviceID string, service *structs.Service,
- task *TaskServices) ([]string, error) {
+ workload *WorkloadServices) ([]string, error) {
// Fast path
numChecks := len(service.Checks)
@@ -782,17 +757,9 @@ func (c *ServiceClient) checkRegs(ops *operations, serviceID string, service *st
checkIDs := make([]string, 0, numChecks)
for _, check := range service.Checks {
- checkID := makeCheckID(serviceID, check)
+ checkID := MakeCheckID(serviceID, check)
checkIDs = append(checkIDs, checkID)
if check.Type == structs.ServiceCheckScript {
- if task.DriverExec == nil {
- return nil, fmt.Errorf("driver doesn't support script checks")
- }
-
- sc := newScriptCheck(task.AllocID, task.Name, checkID, check, task.DriverExec,
- c.client, c.logger, c.shutdownCh)
- ops.scripts = append(ops.scripts, sc)
-
// Skip getAddress for script checks
checkReg, err := createCheckReg(serviceID, checkID, check, "", 0)
if err != nil {
@@ -815,7 +782,7 @@ func (c *ServiceClient) checkRegs(ops *operations, serviceID string, service *st
addrMode = structs.AddressModeHost
}
- ip, port, err := getAddress(addrMode, portLabel, task.Networks, task.DriverNetwork)
+ ip, port, err := getAddress(addrMode, portLabel, workload.Networks, workload.DriverNetwork)
if err != nil {
return nil, fmt.Errorf("error getting address for check %q: %v", check.Name, err)
}
@@ -829,179 +796,67 @@ func (c *ServiceClient) checkRegs(ops *operations, serviceID string, service *st
return checkIDs, nil
}
-//TODO(schmichael) remove
-type noopRestarter struct{}
-
-func (noopRestarter) Restart(context.Context, *structs.TaskEvent, bool) error { return nil }
-
-// makeAllocTaskServices creates a TaskServices struct for a group service.
-//
-//TODO(schmichael) rename TaskServices and refactor this into a New method
-func makeAllocTaskServices(alloc *structs.Allocation, tg *structs.TaskGroup) (*TaskServices, error) {
- if n := len(alloc.AllocatedResources.Shared.Networks); n == 0 {
- return nil, fmt.Errorf("unable to register a group service without a group network")
- }
-
- //TODO(schmichael) only support one network for now
- net := alloc.AllocatedResources.Shared.Networks[0]
-
- ts := &TaskServices{
- AllocID: alloc.ID,
- Name: "group-" + alloc.TaskGroup,
- Services: tg.Services,
- Networks: alloc.AllocatedResources.Shared.Networks,
-
- //TODO(schmichael) there's probably a better way than hacking driver network
- DriverNetwork: &drivers.DriverNetwork{
- AutoAdvertise: true,
- IP: net.IP,
- // Copy PortLabels from group network
- PortMap: net.PortLabels(),
- },
-
- // unsupported for group services
- Restarter: noopRestarter{},
- DriverExec: nil,
- }
-
- if alloc.DeploymentStatus != nil {
- ts.Canary = alloc.DeploymentStatus.Canary
- }
-
- return ts, nil
-}
-
-// RegisterGroup services with Consul. Adds all task group-level service
-// entries and checks to Consul.
-func (c *ServiceClient) RegisterGroup(alloc *structs.Allocation) error {
- tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup)
- if tg == nil {
- return fmt.Errorf("task group %q not in allocation", alloc.TaskGroup)
- }
-
- if len(tg.Services) == 0 {
- // noop
- return nil
- }
-
- ts, err := makeAllocTaskServices(alloc, tg)
- if err != nil {
- return err
- }
-
- return c.RegisterTask(ts)
-}
-
-// UpdateGroup services with Consul. Updates all task group-level service
-// entries and checks to Consul.
-func (c *ServiceClient) UpdateGroup(oldAlloc, newAlloc *structs.Allocation) error {
- oldTG := oldAlloc.Job.LookupTaskGroup(oldAlloc.TaskGroup)
- if oldTG == nil {
- return fmt.Errorf("task group %q not in old allocation", oldAlloc.TaskGroup)
- }
-
- oldServices, err := makeAllocTaskServices(oldAlloc, oldTG)
- if err != nil {
- return err
- }
-
- newTG := newAlloc.Job.LookupTaskGroup(newAlloc.TaskGroup)
- if newTG == nil {
- return fmt.Errorf("task group %q not in new allocation", newAlloc.TaskGroup)
- }
-
- newServices, err := makeAllocTaskServices(newAlloc, newTG)
- if err != nil {
- return err
- }
-
- return c.UpdateTask(oldServices, newServices)
-}
-
-// RemoveGroup services with Consul. Removes all task group-level service
-// entries and checks from Consul.
-func (c *ServiceClient) RemoveGroup(alloc *structs.Allocation) error {
- tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup)
- if tg == nil {
- return fmt.Errorf("task group %q not in allocation", alloc.TaskGroup)
- }
-
- if len(tg.Services) == 0 {
- // noop
- return nil
- }
- ts, err := makeAllocTaskServices(alloc, tg)
- if err != nil {
- return err
- }
-
- c.RemoveTask(ts)
-
- return nil
-}
-
-// RegisterTask with Consul. Adds all service entries and checks to Consul. If
-// exec is nil and a script check exists an error is returned.
+// RegisterWorkload with Consul. Adds all service entries and checks to Consul.
//
// If the service IP is set it used as the address in the service registration.
// Checks will always use the IP from the Task struct (host's IP).
//
// Actual communication with Consul is done asynchronously (see Run).
-func (c *ServiceClient) RegisterTask(task *TaskServices) error {
+func (c *ServiceClient) RegisterWorkload(workload *WorkloadServices) error {
// Fast path
- numServices := len(task.Services)
+ numServices := len(workload.Services)
if numServices == 0 {
return nil
}
- t := new(TaskRegistration)
+ t := new(ServiceRegistrations)
t.Services = make(map[string]*ServiceRegistration, numServices)
ops := &operations{}
- for _, service := range task.Services {
- sreg, err := c.serviceRegs(ops, service, task)
+ for _, service := range workload.Services {
+ sreg, err := c.serviceRegs(ops, service, workload)
if err != nil {
return err
}
t.Services[sreg.serviceID] = sreg
}
- // Add the task to the allocation's registration
- c.addTaskRegistration(task.AllocID, task.Name, t)
+ // Add the workload to the allocation's registration
+ c.addRegistrations(workload.AllocID, workload.Name(), t)
c.commit(ops)
// Start watching checks. Done after service registrations are built
// since an error building them could leak watches.
- for _, service := range task.Services {
- serviceID := MakeTaskServiceID(task.AllocID, task.Name, service)
+ for _, service := range workload.Services {
+ serviceID := MakeAllocServiceID(workload.AllocID, workload.Name(), service)
for _, check := range service.Checks {
if check.TriggersRestarts() {
- checkID := makeCheckID(serviceID, check)
- c.checkWatcher.Watch(task.AllocID, task.Name, checkID, check, task.Restarter)
+ checkID := MakeCheckID(serviceID, check)
+ c.checkWatcher.Watch(workload.AllocID, workload.Name(), checkID, check, workload.Restarter)
}
}
}
return nil
}
-// UpdateTask in Consul. Does not alter the service if only checks have
+// UpdateWorkload in Consul. Does not alter the service if only checks have
// changed.
//
// DriverNetwork must not change between invocations for the same allocation.
-func (c *ServiceClient) UpdateTask(old, newTask *TaskServices) error {
+func (c *ServiceClient) UpdateWorkload(old, newWorkload *WorkloadServices) error {
ops := &operations{}
- taskReg := new(TaskRegistration)
- taskReg.Services = make(map[string]*ServiceRegistration, len(newTask.Services))
+ regs := new(ServiceRegistrations)
+ regs.Services = make(map[string]*ServiceRegistration, len(newWorkload.Services))
existingIDs := make(map[string]*structs.Service, len(old.Services))
for _, s := range old.Services {
- existingIDs[MakeTaskServiceID(old.AllocID, old.Name, s)] = s
+ existingIDs[MakeAllocServiceID(old.AllocID, old.Name(), s)] = s
}
- newIDs := make(map[string]*structs.Service, len(newTask.Services))
- for _, s := range newTask.Services {
- newIDs[MakeTaskServiceID(newTask.AllocID, newTask.Name, s)] = s
+ newIDs := make(map[string]*structs.Service, len(newWorkload.Services))
+ for _, s := range newWorkload.Services {
+ newIDs[MakeAllocServiceID(newWorkload.AllocID, newWorkload.Name(), s)] = s
}
// Loop over existing Service IDs to see if they have been removed
@@ -1012,7 +867,7 @@ func (c *ServiceClient) UpdateTask(old, newTask *TaskServices) error {
// Existing service entry removed
ops.deregServices = append(ops.deregServices, existingID)
for _, check := range existingSvc.Checks {
- cid := makeCheckID(existingID, check)
+ cid := MakeCheckID(existingID, check)
ops.deregChecks = append(ops.deregChecks, cid)
// Unwatch watched checks
@@ -1023,8 +878,8 @@ func (c *ServiceClient) UpdateTask(old, newTask *TaskServices) error {
continue
}
- oldHash := existingSvc.Hash(old.AllocID, old.Name, old.Canary)
- newHash := newSvc.Hash(newTask.AllocID, newTask.Name, newTask.Canary)
+ oldHash := existingSvc.Hash(old.AllocID, old.Name(), old.Canary)
+ newHash := newSvc.Hash(newWorkload.AllocID, newWorkload.Name(), newWorkload.Canary)
if oldHash == newHash {
// Service exists and hasn't changed, don't re-add it later
delete(newIDs, existingID)
@@ -1035,17 +890,17 @@ func (c *ServiceClient) UpdateTask(old, newTask *TaskServices) error {
serviceID: existingID,
checkIDs: make(map[string]struct{}, len(newSvc.Checks)),
}
- taskReg.Services[existingID] = sreg
+ regs.Services[existingID] = sreg
// See if any checks were updated
existingChecks := make(map[string]*structs.ServiceCheck, len(existingSvc.Checks))
for _, check := range existingSvc.Checks {
- existingChecks[makeCheckID(existingID, check)] = check
+ existingChecks[MakeCheckID(existingID, check)] = check
}
// Register new checks
for _, check := range newSvc.Checks {
- checkID := makeCheckID(existingID, check)
+ checkID := MakeCheckID(existingID, check)
if _, exists := existingChecks[checkID]; exists {
// Check is still required. Remove it from the map so it doesn't get
// deleted later.
@@ -1054,7 +909,7 @@ func (c *ServiceClient) UpdateTask(old, newTask *TaskServices) error {
}
// New check on an unchanged service; add them now
- newCheckIDs, err := c.checkRegs(ops, existingID, newSvc, newTask)
+ newCheckIDs, err := c.checkRegs(ops, existingID, newSvc, newWorkload)
if err != nil {
return err
}
@@ -1065,7 +920,7 @@ func (c *ServiceClient) UpdateTask(old, newTask *TaskServices) error {
// Update all watched checks as CheckRestart fields aren't part of ID
if check.TriggersRestarts() {
- c.checkWatcher.Watch(newTask.AllocID, newTask.Name, checkID, check, newTask.Restarter)
+ c.checkWatcher.Watch(newWorkload.AllocID, newWorkload.Name(), checkID, check, newWorkload.Restarter)
}
}
@@ -1082,45 +937,45 @@ func (c *ServiceClient) UpdateTask(old, newTask *TaskServices) error {
// Any remaining services should just be enqueued directly
for _, newSvc := range newIDs {
- sreg, err := c.serviceRegs(ops, newSvc, newTask)
+ sreg, err := c.serviceRegs(ops, newSvc, newWorkload)
if err != nil {
return err
}
- taskReg.Services[sreg.serviceID] = sreg
+ regs.Services[sreg.serviceID] = sreg
}
// Add the task to the allocation's registration
- c.addTaskRegistration(newTask.AllocID, newTask.Name, taskReg)
+ c.addRegistrations(newWorkload.AllocID, newWorkload.Name(), regs)
c.commit(ops)
// Start watching checks. Done after service registrations are built
// since an error building them could leak watches.
for _, service := range newIDs {
- serviceID := MakeTaskServiceID(newTask.AllocID, newTask.Name, service)
+ serviceID := MakeAllocServiceID(newWorkload.AllocID, newWorkload.Name(), service)
for _, check := range service.Checks {
if check.TriggersRestarts() {
- checkID := makeCheckID(serviceID, check)
- c.checkWatcher.Watch(newTask.AllocID, newTask.Name, checkID, check, newTask.Restarter)
+ checkID := MakeCheckID(serviceID, check)
+ c.checkWatcher.Watch(newWorkload.AllocID, newWorkload.Name(), checkID, check, newWorkload.Restarter)
}
}
}
return nil
}
-// RemoveTask from Consul. Removes all service entries and checks.
+// RemoveWorkload from Consul. Removes all service entries and checks.
//
// Actual communication with Consul is done asynchronously (see Run).
-func (c *ServiceClient) RemoveTask(task *TaskServices) {
+func (c *ServiceClient) RemoveWorkload(workload *WorkloadServices) {
ops := operations{}
- for _, service := range task.Services {
- id := MakeTaskServiceID(task.AllocID, task.Name, service)
+ for _, service := range workload.Services {
+ id := MakeAllocServiceID(workload.AllocID, workload.Name(), service)
ops.deregServices = append(ops.deregServices, id)
for _, check := range service.Checks {
- cid := makeCheckID(id, check)
+ cid := MakeCheckID(id, check)
ops.deregChecks = append(ops.deregChecks, cid)
if check.TriggersRestarts() {
@@ -1129,8 +984,8 @@ func (c *ServiceClient) RemoveTask(task *TaskServices) {
}
}
- // Remove the task from the alloc's registrations
- c.removeTaskRegistration(task.AllocID, task.Name)
+ // Remove the workload from the alloc's registrations
+ c.removeRegistration(workload.AllocID, workload.Name())
// Now add them to the deregistration fields; main Run loop will update
c.commit(&ops)
@@ -1177,6 +1032,12 @@ func (c *ServiceClient) AllocRegistrations(allocID string) (*AllocRegistration,
return reg, nil
}
+// UpdateTTL is used to update the TTL of a check. Typically this will only be
+// called to heartbeat script checks.
+func (c *ServiceClient) UpdateTTL(id, output, status string) error {
+ return c.client.UpdateTTL(id, output, status)
+}
+
// Shutdown the Consul client. Update running task registrations and deregister
// agent from Consul. On first call blocks up to shutdownWait before giving up
// on syncing operations.
@@ -1220,34 +1081,26 @@ func (c *ServiceClient) Shutdown() error {
}
}
- // Give script checks time to exit (no need to lock as Run() has exited)
- for _, h := range c.runningScripts {
- select {
- case <-h.wait():
- case <-deadline:
- return fmt.Errorf("timed out waiting for script checks to run")
- }
- }
return nil
}
-// addTaskRegistration adds the task registration for the given allocation.
-func (c *ServiceClient) addTaskRegistration(allocID, taskName string, reg *TaskRegistration) {
+// addRegistration adds the service registrations for the given allocation.
+func (c *ServiceClient) addRegistrations(allocID, taskName string, reg *ServiceRegistrations) {
c.allocRegistrationsLock.Lock()
defer c.allocRegistrationsLock.Unlock()
alloc, ok := c.allocRegistrations[allocID]
if !ok {
alloc = &AllocRegistration{
- Tasks: make(map[string]*TaskRegistration),
+ Tasks: make(map[string]*ServiceRegistrations),
}
c.allocRegistrations[allocID] = alloc
}
alloc.Tasks[taskName] = reg
}
-// removeTaskRegistration removes the task registration for the given allocation.
-func (c *ServiceClient) removeTaskRegistration(allocID, taskName string) {
+// removeRegistrations removes the registration for the given allocation.
+func (c *ServiceClient) removeRegistration(allocID, taskName string) {
c.allocRegistrationsLock.Lock()
defer c.allocRegistrationsLock.Unlock()
@@ -1277,18 +1130,18 @@ func makeAgentServiceID(role string, service *structs.Service) string {
return fmt.Sprintf("%s-%s-%s", nomadServicePrefix, role, service.Hash(role, "", false))
}
-// MakeTaskServiceID creates a unique ID for identifying a task service in
+// MakeAllocServiceID creates a unique ID for identifying an alloc service in
// Consul.
//
// Example Service ID: _nomad-task-b4e61df9-b095-d64e-f241-23860da1375f-redis-http-http
-func MakeTaskServiceID(allocID, taskName string, service *structs.Service) string {
+func MakeAllocServiceID(allocID, taskName string, service *structs.Service) string {
return fmt.Sprintf("%s%s-%s-%s-%s", nomadTaskPrefix, allocID, taskName, service.Name, service.PortLabel)
}
-// makeCheckID creates a unique ID for a check.
+// MakeCheckID creates a unique ID for a check.
//
// Example Check ID: _nomad-check-434ae42f9a57c5705344974ac38de2aee0ee089d
-func makeCheckID(serviceID string, check *structs.ServiceCheck) string {
+func MakeCheckID(serviceID string, check *structs.ServiceCheck) string {
return fmt.Sprintf("%s%s", nomadCheckPrefix, check.Hash(serviceID))
}
@@ -1494,21 +1347,30 @@ func newConnect(serviceName string, nc *structs.ConsulConnect, networks structs.
// Bind to netns IP(s):port
proxyConfig := map[string]interface{}{}
- if nc.SidecarService.Proxy != nil && nc.SidecarService.Proxy.Config != nil {
- proxyConfig = nc.SidecarService.Proxy.Config
+ localServiceAddress := ""
+ localServicePort := 0
+ if nc.SidecarService.Proxy != nil {
+ localServiceAddress = nc.SidecarService.Proxy.LocalServiceAddress
+ localServicePort = nc.SidecarService.Proxy.LocalServicePort
+ if nc.SidecarService.Proxy.Config != nil {
+ proxyConfig = nc.SidecarService.Proxy.Config
+ }
}
proxyConfig["bind_address"] = "0.0.0.0"
proxyConfig["bind_port"] = port.To
// Advertise host IP:port
cc.SidecarService = &api.AgentServiceRegistration{
+ Tags: helper.CopySliceString(nc.SidecarService.Tags),
Address: net.IP,
Port: port.Value,
// Automatically configure the proxy to bind to all addresses
// within the netns.
Proxy: &api.AgentServiceConnectProxyConfig{
- Config: proxyConfig,
+ LocalServiceAddress: localServiceAddress,
+ LocalServicePort: localServicePort,
+ Config: proxyConfig,
},
}
diff --git a/command/agent/consul/group_test.go b/command/agent/consul/group_test.go
index a6f8e3c6a..8adcda076 100644
--- a/command/agent/consul/group_test.go
+++ b/command/agent/consul/group_test.go
@@ -64,18 +64,25 @@ func TestConsul_Connect(t *testing.T) {
{
Name: "testconnect",
PortLabel: "9999",
+ Meta: map[string]string{
+ "alloc_id": "${NOMAD_ALLOC_ID}",
+ },
Connect: &structs.ConsulConnect{
- SidecarService: &structs.ConsulSidecarService{},
+ SidecarService: &structs.ConsulSidecarService{
+ Proxy: &structs.ConsulProxy{
+ LocalServicePort: 9000,
+ },
+ },
},
},
}
// required by isNomadSidecar assertion below
serviceRegMap := map[string]*api.AgentServiceRegistration{
- MakeTaskServiceID(alloc.ID, "group-"+alloc.TaskGroup, tg.Services[0]): nil,
+ MakeAllocServiceID(alloc.ID, "group-"+alloc.TaskGroup, tg.Services[0]): nil,
}
- require.NoError(t, serviceClient.RegisterGroup(alloc))
+ require.NoError(t, serviceClient.RegisterWorkload(BuildAllocServices(mock.Node(), alloc, NoopRestarter())))
require.Eventually(t, func() bool {
services, err := consulClient.Agent().Services()
@@ -90,7 +97,7 @@ func TestConsul_Connect(t *testing.T) {
require.NoError(t, err)
require.Len(t, services, 2)
- serviceID := MakeTaskServiceID(alloc.ID, "group-"+alloc.TaskGroup, tg.Services[0])
+ serviceID := MakeAllocServiceID(alloc.ID, "group-"+alloc.TaskGroup, tg.Services[0])
connectID := serviceID + "-sidecar-proxy"
require.Contains(t, services, serviceID)
@@ -114,11 +121,12 @@ func TestConsul_Connect(t *testing.T) {
require.Equal(t, connectService.Proxy.DestinationServiceName, "testconnect")
require.Equal(t, connectService.Proxy.DestinationServiceID, serviceID)
require.Equal(t, connectService.Proxy.LocalServiceAddress, "127.0.0.1")
- require.Equal(t, connectService.Proxy.LocalServicePort, 9999)
+ require.Equal(t, connectService.Proxy.LocalServicePort, 9000)
require.Equal(t, connectService.Proxy.Config, map[string]interface{}{
"bind_address": "0.0.0.0",
"bind_port": float64(9998),
})
+ require.Equal(t, alloc.ID, agentService.Meta["alloc_id"])
time.Sleep(interval >> 2)
}
diff --git a/command/agent/consul/script.go b/command/agent/consul/script.go
deleted file mode 100644
index b4a99c847..000000000
--- a/command/agent/consul/script.go
+++ /dev/null
@@ -1,215 +0,0 @@
-package consul
-
-import (
- "context"
- "time"
-
- metrics "github.com/armon/go-metrics"
- log "github.com/hashicorp/go-hclog"
-
- "github.com/hashicorp/consul/api"
- "github.com/hashicorp/nomad/client/allocrunner/taskrunner/interfaces"
- "github.com/hashicorp/nomad/nomad/structs"
-)
-
-// heartbeater is the subset of consul agent functionality needed by script
-// checks to heartbeat
-type heartbeater interface {
- UpdateTTL(id, output, status string) error
-}
-
-// contextExec allows canceling a ScriptExecutor with a context.
-type contextExec struct {
- // pctx is the parent context. A subcontext will be created with Exec's
- // timeout.
- pctx context.Context
-
- // exec to be wrapped in a context
- exec interfaces.ScriptExecutor
-}
-
-func newContextExec(ctx context.Context, exec interfaces.ScriptExecutor) *contextExec {
- return &contextExec{
- pctx: ctx,
- exec: exec,
- }
-}
-
-type execResult struct {
- buf []byte
- code int
- err error
-}
-
-// Exec a command until the timeout expires, the context is canceled, or the
-// underlying Exec returns.
-func (c *contextExec) Exec(timeout time.Duration, cmd string, args []string) ([]byte, int, error) {
- resCh := make(chan execResult, 1)
-
- // Don't trust the underlying implementation to obey timeout
- ctx, cancel := context.WithTimeout(c.pctx, timeout)
- defer cancel()
-
- go func() {
- output, code, err := c.exec.Exec(timeout, cmd, args)
- select {
- case resCh <- execResult{output, code, err}:
- case <-ctx.Done():
- }
- }()
-
- select {
- case res := <-resCh:
- return res.buf, res.code, res.err
- case <-ctx.Done():
- return nil, 0, ctx.Err()
- }
-}
-
-// scriptHandle is returned by scriptCheck.run by cancelling a scriptCheck and
-// waiting for it to shutdown.
-type scriptHandle struct {
- // cancel the script
- cancel func()
- exitCh chan struct{}
-}
-
-// wait returns a chan that's closed when the script exits
-func (s *scriptHandle) wait() <-chan struct{} {
- return s.exitCh
-}
-
-// scriptCheck runs script checks via a ScriptExecutor and updates the
-// appropriate check's TTL when the script succeeds.
-type scriptCheck struct {
- allocID string
- taskName string
-
- id string
- check *structs.ServiceCheck
- exec interfaces.ScriptExecutor
- agent heartbeater
-
- // lastCheckOk is true if the last check was ok; otherwise false
- lastCheckOk bool
-
- logger log.Logger
- shutdownCh <-chan struct{}
-}
-
-// newScriptCheck creates a new scriptCheck. run() should be called once the
-// initial check is registered with Consul.
-func newScriptCheck(allocID, taskName, checkID string, check *structs.ServiceCheck,
- exec interfaces.ScriptExecutor, agent heartbeater, logger log.Logger,
- shutdownCh <-chan struct{}) *scriptCheck {
-
- logger = logger.ResetNamed("consul.checks").With("task", taskName, "alloc_id", allocID, "check", check.Name)
- return &scriptCheck{
- allocID: allocID,
- taskName: taskName,
- id: checkID,
- check: check,
- exec: exec,
- agent: agent,
- lastCheckOk: true, // start logging on first failure
- logger: logger,
- shutdownCh: shutdownCh,
- }
-}
-
-// run this script check and return its cancel func. If the shutdownCh is
-// closed the check will be run once more before exiting.
-func (s *scriptCheck) run() *scriptHandle {
- ctx, cancel := context.WithCancel(context.Background())
- exitCh := make(chan struct{})
-
- // Wrap the original ScriptExecutor in one that obeys context
- // cancelation.
- ctxExec := newContextExec(ctx, s.exec)
-
- go func() {
- defer close(exitCh)
- timer := time.NewTimer(0)
- defer timer.Stop()
- for {
- // Block until check is removed, Nomad is shutting
- // down, or the check interval is up
- select {
- case <-ctx.Done():
- // check has been removed
- return
- case <-s.shutdownCh:
- // unblock but don't exit until after we heartbeat once more
- case <-timer.C:
- timer.Reset(s.check.Interval)
- }
- metrics.IncrCounter([]string{"client", "consul", "script_runs"}, 1)
-
- // Execute check script with timeout
- output, code, err := ctxExec.Exec(s.check.Timeout, s.check.Command, s.check.Args)
- switch err {
- case context.Canceled:
- // check removed during execution; exit
- return
- case context.DeadlineExceeded:
- metrics.IncrCounter([]string{"client", "consul", "script_timeouts"}, 1)
- // If no error was returned, set one to make sure the task goes critical
- if err == nil {
- err = context.DeadlineExceeded
- }
-
- // Log deadline exceeded every time as it's a
- // distinct issue from checks returning
- // failures
- s.logger.Warn("check timed out", "timeout", s.check.Timeout)
- }
-
- state := api.HealthCritical
- switch code {
- case 0:
- state = api.HealthPassing
- case 1:
- state = api.HealthWarning
- }
-
- var outputMsg string
- if err != nil {
- state = api.HealthCritical
- outputMsg = err.Error()
- } else {
- outputMsg = string(output)
- }
-
- // Actually heartbeat the check
- err = s.agent.UpdateTTL(s.id, outputMsg, state)
- select {
- case <-ctx.Done():
- // check has been removed; don't report errors
- return
- default:
- }
-
- if err != nil {
- if s.lastCheckOk {
- s.lastCheckOk = false
- s.logger.Warn("updating check failed", "error", err)
- } else {
- s.logger.Debug("updating check still failing", "error", err)
- }
-
- } else if !s.lastCheckOk {
- // Succeeded for the first time or after failing; log
- s.lastCheckOk = true
- s.logger.Info("updating check succeeded")
- }
-
- select {
- case <-s.shutdownCh:
- // We've been told to exit and just heartbeated so exit
- return
- default:
- }
- }
- }()
- return &scriptHandle{cancel: cancel, exitCh: exitCh}
-}
diff --git a/command/agent/consul/script_test.go b/command/agent/consul/script_test.go
deleted file mode 100644
index 25b6329b3..000000000
--- a/command/agent/consul/script_test.go
+++ /dev/null
@@ -1,309 +0,0 @@
-package consul
-
-import (
- "context"
- "fmt"
- "os"
- "os/exec"
- "sync/atomic"
- "testing"
- "time"
-
- "github.com/hashicorp/consul/api"
- "github.com/hashicorp/nomad/helper/testlog"
- "github.com/hashicorp/nomad/helper/testtask"
- "github.com/hashicorp/nomad/nomad/structs"
-)
-
-func TestMain(m *testing.M) {
- if !testtask.Run() {
- os.Exit(m.Run())
- }
-}
-
-// blockingScriptExec implements ScriptExec by running a subcommand that never
-// exits.
-type blockingScriptExec struct {
- // pctx is canceled *only* for test cleanup. Just like real
- // ScriptExecutors its Exec method cannot be canceled directly -- only
- // with a timeout.
- pctx context.Context
-
- // running is ticked before blocking to allow synchronizing operations
- running chan struct{}
-
- // set to 1 with atomics if Exec is called and has exited
- exited int32
-}
-
-// newBlockingScriptExec returns a ScriptExecutor that blocks Exec() until the
-// caller recvs on the b.running chan. It also returns a CancelFunc for test
-// cleanup only. The runtime cannot cancel ScriptExecutors before their timeout
-// expires.
-func newBlockingScriptExec() (*blockingScriptExec, context.CancelFunc) {
- ctx, cancel := context.WithCancel(context.Background())
- exec := &blockingScriptExec{
- pctx: ctx,
- running: make(chan struct{}),
- }
- return exec, cancel
-}
-
-func (b *blockingScriptExec) Exec(dur time.Duration, _ string, _ []string) ([]byte, int, error) {
- b.running <- struct{}{}
- ctx, cancel := context.WithTimeout(b.pctx, dur)
- defer cancel()
- cmd := exec.CommandContext(ctx, testtask.Path(), "sleep", "9000h")
- testtask.SetCmdEnv(cmd)
- err := cmd.Run()
- code := 0
- if exitErr, ok := err.(*exec.ExitError); ok {
- if !exitErr.Success() {
- code = 1
- }
- }
- atomic.StoreInt32(&b.exited, 1)
- return []byte{}, code, err
-}
-
-// TestConsulScript_Exec_Cancel asserts cancelling a script check shortcircuits
-// any running scripts.
-func TestConsulScript_Exec_Cancel(t *testing.T) {
- serviceCheck := structs.ServiceCheck{
- Name: "sleeper",
- Interval: time.Hour,
- Timeout: time.Hour,
- }
- exec, cancel := newBlockingScriptExec()
- defer cancel()
-
- // pass nil for heartbeater as it shouldn't be called
- check := newScriptCheck("allocid", "testtask", "checkid", &serviceCheck, exec, nil, testlog.HCLogger(t), nil)
- handle := check.run()
-
- // wait until Exec is called
- <-exec.running
-
- // cancel now that we're blocked in exec
- handle.cancel()
-
- select {
- case <-handle.wait():
- case <-time.After(3 * time.Second):
- t.Fatalf("timed out waiting for script check to exit")
- }
-
- // The underlying ScriptExecutor (newBlockScriptExec) *cannot* be
- // canceled. Only a wrapper around it obeys the context cancelation.
- if atomic.LoadInt32(&exec.exited) == 1 {
- t.Errorf("expected script executor to still be running after timeout")
- }
-}
-
-type execStatus struct {
- checkID string
- output string
- status string
-}
-
-// fakeHeartbeater implements the heartbeater interface to allow mocking out
-// Consul in script executor tests.
-type fakeHeartbeater struct {
- updates chan execStatus
-}
-
-func (f *fakeHeartbeater) UpdateTTL(checkID, output, status string) error {
- f.updates <- execStatus{checkID: checkID, output: output, status: status}
- return nil
-}
-
-func newFakeHeartbeater() *fakeHeartbeater {
- return &fakeHeartbeater{updates: make(chan execStatus)}
-}
-
-// TestConsulScript_Exec_TimeoutBasic asserts a script will be killed when the
-// timeout is reached.
-func TestConsulScript_Exec_TimeoutBasic(t *testing.T) {
- t.Parallel()
-
- serviceCheck := structs.ServiceCheck{
- Name: "sleeper",
- Interval: time.Hour,
- Timeout: time.Second,
- }
-
- exec, cancel := newBlockingScriptExec()
- defer cancel()
-
- hb := newFakeHeartbeater()
- check := newScriptCheck("allocid", "testtask", "checkid", &serviceCheck, exec, hb, testlog.HCLogger(t), nil)
- handle := check.run()
- defer handle.cancel() // just-in-case cleanup
- <-exec.running
-
- // Check for UpdateTTL call
- select {
- case update := <-hb.updates:
- if update.status != api.HealthCritical {
- t.Errorf("expected %q due to timeout but received %q", api.HealthCritical, update)
- }
- case <-time.After(3 * time.Second):
- t.Fatalf("timed out waiting for script check to exit")
- }
-
- // The underlying ScriptExecutor (newBlockScriptExec) *cannot* be
- // canceled. Only a wrapper around it obeys the context cancelation.
- if atomic.LoadInt32(&exec.exited) == 1 {
- t.Errorf("expected script executor to still be running after timeout")
- }
-
- // Cancel and watch for exit
- handle.cancel()
- select {
- case <-handle.wait():
- // ok!
- case update := <-hb.updates:
- t.Errorf("unexpected UpdateTTL call on exit with status=%q", update)
- case <-time.After(3 * time.Second):
- t.Fatalf("timed out waiting for script check to exit")
- }
-}
-
-// sleeperExec sleeps for 100ms but returns successfully to allow testing timeout conditions
-type sleeperExec struct{}
-
-func (sleeperExec) Exec(time.Duration, string, []string) ([]byte, int, error) {
- time.Sleep(100 * time.Millisecond)
- return []byte{}, 0, nil
-}
-
-// TestConsulScript_Exec_TimeoutCritical asserts a script will be killed when
-// the timeout is reached and always set a critical status regardless of what
-// Exec returns.
-func TestConsulScript_Exec_TimeoutCritical(t *testing.T) {
- t.Parallel()
-
- serviceCheck := structs.ServiceCheck{
- Name: "sleeper",
- Interval: time.Hour,
- Timeout: time.Nanosecond,
- }
- hb := newFakeHeartbeater()
- check := newScriptCheck("allocid", "testtask", "checkid", &serviceCheck, sleeperExec{}, hb, testlog.HCLogger(t), nil)
- handle := check.run()
- defer handle.cancel() // just-in-case cleanup
-
- // Check for UpdateTTL call
- select {
- case update := <-hb.updates:
- if update.status != api.HealthCritical {
- t.Errorf("expected %q due to timeout but received %q", api.HealthCritical, update)
- }
- if update.output != context.DeadlineExceeded.Error() {
- t.Errorf("expected output=%q but found: %q", context.DeadlineExceeded.Error(), update.output)
- }
- case <-time.After(3 * time.Second):
- t.Fatalf("timed out waiting for script check to timeout")
- }
-}
-
-// simpleExec is a fake ScriptExecutor that returns whatever is specified.
-type simpleExec struct {
- code int
- err error
-}
-
-func (s simpleExec) Exec(time.Duration, string, []string) ([]byte, int, error) {
- return []byte(fmt.Sprintf("code=%d err=%v", s.code, s.err)), s.code, s.err
-}
-
-// newSimpleExec creates a new ScriptExecutor that returns the given code and err.
-func newSimpleExec(code int, err error) simpleExec {
- return simpleExec{code: code, err: err}
-}
-
-// TestConsulScript_Exec_Shutdown asserts a script will be executed once more
-// when told to shutdown.
-func TestConsulScript_Exec_Shutdown(t *testing.T) {
- serviceCheck := structs.ServiceCheck{
- Name: "sleeper",
- Interval: time.Hour,
- Timeout: 3 * time.Second,
- }
-
- hb := newFakeHeartbeater()
- shutdown := make(chan struct{})
- exec := newSimpleExec(0, nil)
- check := newScriptCheck("allocid", "testtask", "checkid", &serviceCheck, exec, hb, testlog.HCLogger(t), shutdown)
- handle := check.run()
- defer handle.cancel() // just-in-case cleanup
-
- // Tell scriptCheck to exit
- close(shutdown)
-
- select {
- case update := <-hb.updates:
- if update.status != api.HealthPassing {
- t.Errorf("expected %q due to timeout but received %q", api.HealthCritical, update)
- }
- case <-time.After(3 * time.Second):
- t.Fatalf("timed out waiting for script check to exit")
- }
-
- select {
- case <-handle.wait():
- // ok!
- case <-time.After(3 * time.Second):
- t.Fatalf("timed out waiting for script check to exit")
- }
-}
-
-func TestConsulScript_Exec_Codes(t *testing.T) {
- run := func(code int, err error, expected string) func(t *testing.T) {
- return func(t *testing.T) {
- t.Parallel()
- serviceCheck := structs.ServiceCheck{
- Name: "test",
- Interval: time.Hour,
- Timeout: 3 * time.Second,
- }
-
- hb := newFakeHeartbeater()
- shutdown := make(chan struct{})
- exec := newSimpleExec(code, err)
- check := newScriptCheck("allocid", "testtask", "checkid", &serviceCheck, exec, hb, testlog.HCLogger(t), shutdown)
- handle := check.run()
- defer handle.cancel()
-
- select {
- case update := <-hb.updates:
- if update.status != expected {
- t.Errorf("expected %q but received %q", expected, update)
- }
- // assert output is being reported
- expectedOutput := fmt.Sprintf("code=%d err=%v", code, err)
- if err != nil {
- expectedOutput = err.Error()
- }
- if update.output != expectedOutput {
- t.Errorf("expected output=%q but found: %q", expectedOutput, update.output)
- }
- case <-time.After(3 * time.Second):
- t.Fatalf("timed out waiting for script check to exec")
- }
- }
- }
-
- // Test exit codes with errors
- t.Run("Passing", run(0, nil, api.HealthPassing))
- t.Run("Warning", run(1, nil, api.HealthWarning))
- t.Run("Critical-2", run(2, nil, api.HealthCritical))
- t.Run("Critical-9000", run(9000, nil, api.HealthCritical))
-
- // Errors should always cause Critical status
- err := fmt.Errorf("test error")
- t.Run("Error-0", run(0, err, api.HealthCritical))
- t.Run("Error-1", run(1, err, api.HealthCritical))
- t.Run("Error-2", run(2, err, api.HealthCritical))
- t.Run("Error-9000", run(9000, err, api.HealthCritical))
-}
diff --git a/command/agent/consul/structs.go b/command/agent/consul/structs.go
index f58fa2efc..0aa21f3cc 100644
--- a/command/agent/consul/structs.go
+++ b/command/agent/consul/structs.go
@@ -2,22 +2,28 @@ package consul
import (
"github.com/hashicorp/nomad/client/allocrunner/taskrunner/interfaces"
+ "github.com/hashicorp/nomad/client/taskenv"
+ "github.com/hashicorp/nomad/nomad/mock"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/nomad/plugins/drivers"
)
-type TaskServices struct {
+// WorkloadServices describes services defined in either a Task or TaskGroup
+// that need to be syncronized with Consul
+type WorkloadServices struct {
AllocID string
- // Name of the task
- Name string
+ // Name of the task and task group the services are defined for. For
+ // group based services, Task will be empty
+ Task string
+ Group string
// Canary indicates whether or not the allocation is a canary
Canary bool
- // Restarter allows restarting the task depending on the task's
+ // Restarter allows restarting the task or task group depending on the
// check_restart stanzas.
- Restarter TaskRestarter
+ Restarter WorkloadRestarter
// Services and checks to register for the task.
Services []*structs.Service
@@ -26,41 +32,49 @@ type TaskServices struct {
Networks structs.Networks
// DriverExec is the script executor for the task's driver.
+ // For group services this is nil and script execution is managed by
+ // a tasklet in the taskrunner script_check_hook
DriverExec interfaces.ScriptExecutor
// DriverNetwork is the network specified by the driver and may be nil.
DriverNetwork *drivers.DriverNetwork
}
-func NewTaskServices(alloc *structs.Allocation, task *structs.Task, restarter TaskRestarter, exec interfaces.ScriptExecutor, net *drivers.DriverNetwork) *TaskServices {
- ts := TaskServices{
- AllocID: alloc.ID,
- Name: task.Name,
- Restarter: restarter,
- Services: task.Services,
- DriverExec: exec,
- DriverNetwork: net,
+func BuildAllocServices(node *structs.Node, alloc *structs.Allocation, restarter WorkloadRestarter) *WorkloadServices {
+
+ //TODO(schmichael) only support one network for now
+ net := alloc.AllocatedResources.Shared.Networks[0]
+
+ tg := alloc.Job.LookupTaskGroup(alloc.TaskGroup)
+
+ ws := &WorkloadServices{
+ AllocID: alloc.ID,
+ Group: alloc.TaskGroup,
+ Services: taskenv.InterpolateServices(taskenv.NewBuilder(mock.Node(), alloc, nil, alloc.Job.Region).Build(), tg.Services),
+ Networks: alloc.AllocatedResources.Shared.Networks,
+
+ //TODO(schmichael) there's probably a better way than hacking driver network
+ DriverNetwork: &drivers.DriverNetwork{
+ AutoAdvertise: true,
+ IP: net.IP,
+ // Copy PortLabels from group network
+ PortMap: net.PortLabels(),
+ },
+
+ Restarter: restarter,
+ DriverExec: nil,
}
- if alloc.AllocatedResources != nil {
- if tr, ok := alloc.AllocatedResources.Tasks[task.Name]; ok {
- ts.Networks = tr.Networks
- }
- } else if task.Resources != nil {
- // COMPAT(0.11): Remove in 0.11
- ts.Networks = task.Resources.Networks
+ if alloc.DeploymentStatus != nil {
+ ws.Canary = alloc.DeploymentStatus.Canary
}
- if alloc.DeploymentStatus != nil && alloc.DeploymentStatus.Canary {
- ts.Canary = true
- }
-
- return &ts
+ return ws
}
// Copy method for easing tests
-func (t *TaskServices) Copy() *TaskServices {
- newTS := new(TaskServices)
+func (t *WorkloadServices) Copy() *WorkloadServices {
+ newTS := new(WorkloadServices)
*newTS = *t
// Deep copy Services
@@ -70,3 +84,11 @@ func (t *TaskServices) Copy() *TaskServices {
}
return newTS
}
+
+func (w *WorkloadServices) Name() string {
+ if w.Task != "" {
+ return w.Task
+ }
+
+ return "group-" + w.Group
+}
diff --git a/command/agent/consul/testing.go b/command/agent/consul/testing.go
new file mode 100644
index 000000000..e034f12bb
--- /dev/null
+++ b/command/agent/consul/testing.go
@@ -0,0 +1,17 @@
+package consul
+
+import (
+ "context"
+
+ "github.com/hashicorp/nomad/nomad/structs"
+)
+
+func NoopRestarter() WorkloadRestarter {
+ return noopRestarter{}
+}
+
+type noopRestarter struct{}
+
+func (noopRestarter) Restart(ctx context.Context, event *structs.TaskEvent, failure bool) error {
+ return nil
+}
diff --git a/command/agent/consul/unit_test.go b/command/agent/consul/unit_test.go
index d61dc30e8..3cc702f00 100644
--- a/command/agent/consul/unit_test.go
+++ b/command/agent/consul/unit_test.go
@@ -14,22 +14,21 @@ import (
"github.com/hashicorp/nomad/helper/uuid"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/nomad/plugins/drivers"
- "github.com/hashicorp/nomad/testutil"
"github.com/kr/pretty"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
const (
- // Ports used in testTask
+ // Ports used in testWorkload
xPort = 1234
yPort = 1235
)
-func testTask() *TaskServices {
- return &TaskServices{
+func testWorkload() *WorkloadServices {
+ return &WorkloadServices{
AllocID: uuid.Generate(),
- Name: "taskname",
+ Task: "taskname",
Restarter: &restartRecorder{},
Services: []*structs.Service{
{
@@ -46,41 +45,10 @@ func testTask() *TaskServices {
},
},
},
- DriverExec: newMockExec(),
}
}
-// mockExec implements the ScriptExecutor interface and will use an alternate
-// implementation t.ExecFunc if non-nil.
-type mockExec struct {
- // Ticked whenever a script is called
- execs chan int
-
- // If non-nil will be called by script checks
- ExecFunc func(ctx context.Context, cmd string, args []string) ([]byte, int, error)
-}
-
-func newMockExec() *mockExec {
- return &mockExec{
- execs: make(chan int, 100),
- }
-}
-
-func (m *mockExec) Exec(dur time.Duration, cmd string, args []string) ([]byte, int, error) {
- select {
- case m.execs <- 1:
- default:
- }
- if m.ExecFunc == nil {
- // Default impl is just "ok"
- return []byte("ok"), 0, nil
- }
- ctx, cancel := context.WithTimeout(context.Background(), dur)
- defer cancel()
- return m.ExecFunc(ctx, cmd, args)
-}
-
-// restartRecorder is a minimal TaskRestarter implementation that simply
+// restartRecorder is a minimal WorkloadRestarter implementation that simply
// counts how many restarts were triggered.
type restartRecorder struct {
restarts int64
@@ -95,8 +63,7 @@ func (r *restartRecorder) Restart(ctx context.Context, event *structs.TaskEvent,
type testFakeCtx struct {
ServiceClient *ServiceClient
FakeConsul *MockAgent
- Task *TaskServices
- MockExec *mockExec
+ Workload *WorkloadServices
}
var errNoOps = fmt.Errorf("testing error: no pending operations")
@@ -118,10 +85,10 @@ func (t *testFakeCtx) syncOnce() error {
}
// setupFake creates a testFakeCtx with a ServiceClient backed by a fakeConsul.
-// A test Task is also provided.
+// A test Workload is also provided.
func setupFake(t *testing.T) *testFakeCtx {
fc := NewMockAgent()
- tt := testTask()
+ tw := testWorkload()
// by default start fake client being out of probation
sc := NewServiceClient(fc, testlog.HCLogger(t), true)
@@ -130,8 +97,7 @@ func setupFake(t *testing.T) *testFakeCtx {
return &testFakeCtx{
ServiceClient: sc,
FakeConsul: fc,
- Task: tt,
- MockExec: tt.DriverExec.(*mockExec),
+ Workload: tw,
}
}
@@ -139,35 +105,35 @@ func TestConsul_ChangeTags(t *testing.T) {
ctx := setupFake(t)
require := require.New(t)
- require.NoError(ctx.ServiceClient.RegisterTask(ctx.Task))
+ require.NoError(ctx.ServiceClient.RegisterWorkload(ctx.Workload))
require.NoError(ctx.syncOnce())
require.Equal(1, len(ctx.FakeConsul.services), "Expected 1 service to be registered with Consul")
// Validate the alloc registration
- reg1, err := ctx.ServiceClient.AllocRegistrations(ctx.Task.AllocID)
+ reg1, err := ctx.ServiceClient.AllocRegistrations(ctx.Workload.AllocID)
require.NoError(err)
require.NotNil(reg1, "Unexpected nil alloc registration")
require.Equal(1, reg1.NumServices())
require.Equal(0, reg1.NumChecks())
for _, v := range ctx.FakeConsul.services {
- require.Equal(v.Name, ctx.Task.Services[0].Name)
- require.Equal(v.Tags, ctx.Task.Services[0].Tags)
+ require.Equal(v.Name, ctx.Workload.Services[0].Name)
+ require.Equal(v.Tags, ctx.Workload.Services[0].Tags)
}
// Update the task definition
- origTask := ctx.Task.Copy()
- ctx.Task.Services[0].Tags[0] = "newtag"
+ origWorkload := ctx.Workload.Copy()
+ ctx.Workload.Services[0].Tags[0] = "newtag"
// Register and sync the update
- require.NoError(ctx.ServiceClient.UpdateTask(origTask, ctx.Task))
+ require.NoError(ctx.ServiceClient.UpdateWorkload(origWorkload, ctx.Workload))
require.NoError(ctx.syncOnce())
require.Equal(1, len(ctx.FakeConsul.services), "Expected 1 service to be registered with Consul")
// Validate the metadata changed
for _, v := range ctx.FakeConsul.services {
- require.Equal(v.Name, ctx.Task.Services[0].Name)
- require.Equal(v.Tags, ctx.Task.Services[0].Tags)
+ require.Equal(v.Name, ctx.Workload.Services[0].Name)
+ require.Equal(v.Tags, ctx.Workload.Services[0].Tags)
require.Equal("newtag", v.Tags[0])
}
}
@@ -179,7 +145,7 @@ func TestConsul_ChangePorts(t *testing.T) {
ctx := setupFake(t)
require := require.New(t)
- ctx.Task.Services[0].Checks = []*structs.ServiceCheck{
+ ctx.Workload.Services[0].Checks = []*structs.ServiceCheck{
{
Name: "c1",
Type: "tcp",
@@ -204,13 +170,13 @@ func TestConsul_ChangePorts(t *testing.T) {
},
}
- require.NoError(ctx.ServiceClient.RegisterTask(ctx.Task))
+ require.NoError(ctx.ServiceClient.RegisterWorkload(ctx.Workload))
require.NoError(ctx.syncOnce())
require.Equal(1, len(ctx.FakeConsul.services), "Expected 1 service to be registered with Consul")
for _, v := range ctx.FakeConsul.services {
- require.Equal(ctx.Task.Services[0].Name, v.Name)
- require.Equal(ctx.Task.Services[0].Tags, v.Tags)
+ require.Equal(ctx.Workload.Services[0].Name, v.Name)
+ require.Equal(ctx.Workload.Services[0].Tags, v.Tags)
require.Equal(xPort, v.Port)
}
@@ -226,13 +192,6 @@ func TestConsul_ChangePorts(t *testing.T) {
require.Equal(fmt.Sprintf(":%d", xPort), v.TCP)
case "c2":
origScriptKey = k
- select {
- case <-ctx.MockExec.execs:
- // Here we validate there is nothing left on the channel
- require.Equal(0, len(ctx.MockExec.execs))
- case <-time.After(3 * time.Second):
- t.Fatalf("script not called in time")
- }
case "c3":
origHTTPKey = k
require.Equal(fmt.Sprintf("http://:%d/", yPort), v.HTTP)
@@ -246,9 +205,9 @@ func TestConsul_ChangePorts(t *testing.T) {
require.NotEmpty(origHTTPKey)
// Now update the PortLabel on the Service and Check c3
- origTask := ctx.Task.Copy()
- ctx.Task.Services[0].PortLabel = "y"
- ctx.Task.Services[0].Checks = []*structs.ServiceCheck{
+ origWorkload := ctx.Workload.Copy()
+ ctx.Workload.Services[0].PortLabel = "y"
+ ctx.Workload.Services[0].Checks = []*structs.ServiceCheck{
{
Name: "c1",
Type: "tcp",
@@ -273,13 +232,13 @@ func TestConsul_ChangePorts(t *testing.T) {
},
}
- require.NoError(ctx.ServiceClient.UpdateTask(origTask, ctx.Task))
+ require.NoError(ctx.ServiceClient.UpdateWorkload(origWorkload, ctx.Workload))
require.NoError(ctx.syncOnce())
require.Equal(1, len(ctx.FakeConsul.services), "Expected 1 service to be registered with Consul")
for _, v := range ctx.FakeConsul.services {
- require.Equal(ctx.Task.Services[0].Name, v.Name)
- require.Equal(ctx.Task.Services[0].Tags, v.Tags)
+ require.Equal(ctx.Workload.Services[0].Name, v.Name)
+ require.Equal(ctx.Workload.Services[0].Tags, v.Tags)
require.Equal(yPort, v.Port)
}
@@ -307,7 +266,7 @@ func TestConsul_ChangePorts(t *testing.T) {
// properly syncs with Consul.
func TestConsul_ChangeChecks(t *testing.T) {
ctx := setupFake(t)
- ctx.Task.Services[0].Checks = []*structs.ServiceCheck{
+ ctx.Workload.Services[0].Checks = []*structs.ServiceCheck{
{
Name: "c1",
Type: "tcp",
@@ -320,7 +279,7 @@ func TestConsul_ChangeChecks(t *testing.T) {
},
}
- if err := ctx.ServiceClient.RegisterTask(ctx.Task); err != nil {
+ if err := ctx.ServiceClient.RegisterWorkload(ctx.Workload); err != nil {
t.Fatalf("unexpected error registering task: %v", err)
}
@@ -341,7 +300,7 @@ func TestConsul_ChangeChecks(t *testing.T) {
// Query the allocs registrations and then again when we update. The IDs
// should change
- reg1, err := ctx.ServiceClient.AllocRegistrations(ctx.Task.AllocID)
+ reg1, err := ctx.ServiceClient.AllocRegistrations(ctx.Workload.AllocID)
if err != nil {
t.Fatalf("Looking up alloc registration failed: %v", err)
}
@@ -358,8 +317,8 @@ func TestConsul_ChangeChecks(t *testing.T) {
origServiceKey := ""
for k, v := range ctx.FakeConsul.services {
origServiceKey = k
- if v.Name != ctx.Task.Services[0].Name {
- t.Errorf("expected Name=%q != %q", ctx.Task.Services[0].Name, v.Name)
+ if v.Name != ctx.Workload.Services[0].Name {
+ t.Errorf("expected Name=%q != %q", ctx.Workload.Services[0].Name, v.Name)
}
if v.Port != xPort {
t.Errorf("expected Port x=%v but found: %v", xPort, v.Port)
@@ -376,8 +335,8 @@ func TestConsul_ChangeChecks(t *testing.T) {
}
// Now add a check and modify the original
- origTask := ctx.Task.Copy()
- ctx.Task.Services[0].Checks = []*structs.ServiceCheck{
+ origWorkload := ctx.Workload.Copy()
+ ctx.Workload.Services[0].Checks = []*structs.ServiceCheck{
{
Name: "c1",
Type: "tcp",
@@ -397,7 +356,7 @@ func TestConsul_ChangeChecks(t *testing.T) {
PortLabel: "x",
},
}
- if err := ctx.ServiceClient.UpdateTask(origTask, ctx.Task); err != nil {
+ if err := ctx.ServiceClient.UpdateWorkload(origWorkload, ctx.Workload); err != nil {
t.Fatalf("unexpected error registering task: %v", err)
}
@@ -455,7 +414,7 @@ func TestConsul_ChangeChecks(t *testing.T) {
}
// Check again and ensure the IDs changed
- reg2, err := ctx.ServiceClient.AllocRegistrations(ctx.Task.AllocID)
+ reg2, err := ctx.ServiceClient.AllocRegistrations(ctx.Workload.AllocID)
if err != nil {
t.Fatalf("Looking up alloc registration failed: %v", err)
}
@@ -490,8 +449,8 @@ func TestConsul_ChangeChecks(t *testing.T) {
}
// Alter a CheckRestart and make sure the watcher is updated but nothing else
- origTask = ctx.Task.Copy()
- ctx.Task.Services[0].Checks = []*structs.ServiceCheck{
+ origWorkload = ctx.Workload.Copy()
+ ctx.Workload.Services[0].Checks = []*structs.ServiceCheck{
{
Name: "c1",
Type: "tcp",
@@ -511,7 +470,7 @@ func TestConsul_ChangeChecks(t *testing.T) {
PortLabel: "x",
},
}
- if err := ctx.ServiceClient.UpdateTask(origTask, ctx.Task); err != nil {
+ if err := ctx.ServiceClient.UpdateWorkload(origWorkload, ctx.Workload); err != nil {
t.Fatalf("unexpected error registering task: %v", err)
}
if err := ctx.syncOnce(); err != nil {
@@ -543,7 +502,7 @@ func TestConsul_RegServices(t *testing.T) {
ctx := setupFake(t)
// Add a check w/restarting
- ctx.Task.Services[0].Checks = []*structs.ServiceCheck{
+ ctx.Workload.Services[0].Checks = []*structs.ServiceCheck{
{
Name: "testcheck",
Type: "tcp",
@@ -554,7 +513,7 @@ func TestConsul_RegServices(t *testing.T) {
},
}
- if err := ctx.ServiceClient.RegisterTask(ctx.Task); err != nil {
+ if err := ctx.ServiceClient.RegisterWorkload(ctx.Workload); err != nil {
t.Fatalf("unexpected error registering task: %v", err)
}
@@ -567,11 +526,11 @@ func TestConsul_RegServices(t *testing.T) {
}
for _, v := range ctx.FakeConsul.services {
- if v.Name != ctx.Task.Services[0].Name {
- t.Errorf("expected Name=%q != %q", ctx.Task.Services[0].Name, v.Name)
+ if v.Name != ctx.Workload.Services[0].Name {
+ t.Errorf("expected Name=%q != %q", ctx.Workload.Services[0].Name, v.Name)
}
- if !reflect.DeepEqual(v.Tags, ctx.Task.Services[0].Tags) {
- t.Errorf("expected Tags=%v != %v", ctx.Task.Services[0].Tags, v.Tags)
+ if !reflect.DeepEqual(v.Tags, ctx.Workload.Services[0].Tags) {
+ t.Errorf("expected Tags=%v != %v", ctx.Workload.Services[0].Tags, v.Tags)
}
if v.Port != xPort {
t.Errorf("expected Port=%d != %d", xPort, v.Port)
@@ -585,7 +544,7 @@ func TestConsul_RegServices(t *testing.T) {
// Assert the check update is properly formed
checkUpd := <-ctx.ServiceClient.checkWatcher.checkUpdateCh
- if checkUpd.checkRestart.allocID != ctx.Task.AllocID {
+ if checkUpd.checkRestart.allocID != ctx.Workload.AllocID {
t.Fatalf("expected check's allocid to be %q but found %q", "allocid", checkUpd.checkRestart.allocID)
}
if expected := 200 * time.Millisecond; checkUpd.checkRestart.timeLimit != expected {
@@ -593,9 +552,9 @@ func TestConsul_RegServices(t *testing.T) {
}
// Make a change which will register a new service
- ctx.Task.Services[0].Name = "taskname-service2"
- ctx.Task.Services[0].Tags[0] = "tag3"
- if err := ctx.ServiceClient.RegisterTask(ctx.Task); err != nil {
+ ctx.Workload.Services[0].Name = "taskname-service2"
+ ctx.Workload.Services[0].Tags[0] = "tag3"
+ if err := ctx.ServiceClient.RegisterWorkload(ctx.Workload); err != nil {
t.Fatalf("unexpected error registering task: %v", err)
}
@@ -616,7 +575,7 @@ func TestConsul_RegServices(t *testing.T) {
t.Fatalf("expected 1 service but found %d:\n%#v", n, ctx.FakeConsul.services)
}
for _, v := range ctx.FakeConsul.services {
- if reflect.DeepEqual(v.Tags, ctx.Task.Services[0].Tags) {
+ if reflect.DeepEqual(v.Tags, ctx.Workload.Services[0].Tags) {
t.Errorf("expected Tags to differ, changes applied before sync()")
}
}
@@ -630,22 +589,22 @@ func TestConsul_RegServices(t *testing.T) {
}
found := false
for _, v := range ctx.FakeConsul.services {
- if v.Name == ctx.Task.Services[0].Name {
+ if v.Name == ctx.Workload.Services[0].Name {
if found {
t.Fatalf("found new service name %q twice", v.Name)
}
found = true
- if !reflect.DeepEqual(v.Tags, ctx.Task.Services[0].Tags) {
- t.Errorf("expected Tags=%v != %v", ctx.Task.Services[0].Tags, v.Tags)
+ if !reflect.DeepEqual(v.Tags, ctx.Workload.Services[0].Tags) {
+ t.Errorf("expected Tags=%v != %v", ctx.Workload.Services[0].Tags, v.Tags)
}
}
}
if !found {
- t.Fatalf("did not find new service %q", ctx.Task.Services[0].Name)
+ t.Fatalf("did not find new service %q", ctx.Workload.Services[0].Name)
}
// Remove the new task
- ctx.ServiceClient.RemoveTask(ctx.Task)
+ ctx.ServiceClient.RemoveWorkload(ctx.Workload)
if err := ctx.syncOnce(); err != nil {
t.Fatalf("unexpected error syncing task: %v", err)
}
@@ -678,291 +637,104 @@ func TestConsul_RegServices(t *testing.T) {
func TestConsul_ShutdownOK(t *testing.T) {
require := require.New(t)
ctx := setupFake(t)
-
- // Add a script check to make sure its TTL gets updated
- ctx.Task.Services[0].Checks = []*structs.ServiceCheck{
- {
- Name: "scriptcheck",
- Type: "script",
- Command: "true",
- // Make check block until shutdown
- Interval: 9000 * time.Hour,
- Timeout: 10 * time.Second,
- InitialStatus: "warning",
- },
- }
-
go ctx.ServiceClient.Run()
- // Register a task and agent
- if err := ctx.ServiceClient.RegisterTask(ctx.Task); err != nil {
- t.Fatalf("unexpected error registering task: %v", err)
- }
-
+ // register the Nomad agent service and check
agentServices := []*structs.Service{
{
Name: "http",
Tags: []string{"nomad"},
PortLabel: "localhost:2345",
+ Checks: []*structs.ServiceCheck{
+ {
+ Name: "nomad-tcp",
+ Type: "tcp",
+ Interval: 9000 * time.Hour, // make check block
+ Timeout: 10 * time.Second,
+ InitialStatus: "warning",
+ },
+ },
},
}
- if err := ctx.ServiceClient.RegisterAgent("client", agentServices); err != nil {
- t.Fatalf("unexpected error registering agent: %v", err)
- }
+ require.NoError(ctx.ServiceClient.RegisterAgent("client", agentServices))
+ require.Eventually(ctx.ServiceClient.hasSeen, time.Second, 10*time.Millisecond)
- testutil.WaitForResult(func() (bool, error) {
- return ctx.ServiceClient.hasSeen(), fmt.Errorf("error contacting Consul")
- }, func(err error) {
- t.Fatalf("err: %v", err)
- })
+ // assert successful registration
+ require.Len(ctx.FakeConsul.services, 1, "expected agent service to be registered")
+ require.Len(ctx.FakeConsul.checks, 1, "expected agent check to be registered")
+ require.Contains(ctx.FakeConsul.services,
+ makeAgentServiceID("client", agentServices[0]))
- // Shutdown should block until scripts finish
- if err := ctx.ServiceClient.Shutdown(); err != nil {
- t.Errorf("unexpected error shutting down client: %v", err)
- }
-
- // UpdateTTL should have been called once for the script check and once
- // for shutdown
- if n := len(ctx.FakeConsul.checkTTLs); n != 1 {
- t.Fatalf("expected 1 checkTTL entry but found: %d", n)
- }
- for _, v := range ctx.FakeConsul.checkTTLs {
- require.Equalf(2, v, "expected 2 updates but found %d", v)
- }
- for _, v := range ctx.FakeConsul.checks {
- if v.Status != "passing" {
- t.Fatalf("expected check to be passing but found %q", v.Status)
- }
- }
-}
-
-// TestConsul_ShutdownSlow tests the slow but ok path for the shutdown logic in
-// ServiceClient.
-func TestConsul_ShutdownSlow(t *testing.T) {
- t.Parallel()
- ctx := setupFake(t)
-
- // Add a script check to make sure its TTL gets updated
- ctx.Task.Services[0].Checks = []*structs.ServiceCheck{
- {
- Name: "scriptcheck",
- Type: "script",
- Command: "true",
- // Make check block until shutdown
- Interval: 9000 * time.Hour,
- Timeout: 5 * time.Second,
- InitialStatus: "warning",
- },
- }
-
- // Make Exec slow, but not too slow
- waiter := make(chan struct{})
- ctx.MockExec.ExecFunc = func(ctx context.Context, cmd string, args []string) ([]byte, int, error) {
- select {
- case <-waiter:
- default:
- close(waiter)
- }
- time.Sleep(time.Second)
- return []byte{}, 0, nil
- }
-
- // Make shutdown wait time just a bit longer than ctx.Exec takes
- ctx.ServiceClient.shutdownWait = 3 * time.Second
-
- go ctx.ServiceClient.Run()
-
- // Register a task and agent
- if err := ctx.ServiceClient.RegisterTask(ctx.Task); err != nil {
- t.Fatalf("unexpected error registering task: %v", err)
- }
-
- // wait for Exec to get called before shutting down
- <-waiter
-
- // Shutdown should block until all enqueued operations finish.
- preShutdown := time.Now()
- if err := ctx.ServiceClient.Shutdown(); err != nil {
- t.Errorf("unexpected error shutting down client: %v", err)
- }
-
- // Shutdown time should have taken: ~1s <= shutdown <= 3s
- // actual timing might be less than 1s, to account for shutdown invocation overhead
- shutdownTime := time.Now().Sub(preShutdown)
- if shutdownTime < 900*time.Millisecond || shutdownTime > ctx.ServiceClient.shutdownWait {
- t.Errorf("expected shutdown to take >1s and <%s but took: %s", ctx.ServiceClient.shutdownWait, shutdownTime)
- }
-
- // UpdateTTL should have been called once for the script check
- if n := len(ctx.FakeConsul.checkTTLs); n != 1 {
- t.Fatalf("expected 1 checkTTL entry but found: %d", n)
- }
- for _, v := range ctx.FakeConsul.checkTTLs {
- if v != 1 {
- t.Fatalf("expected script check to be updated once but found %d", v)
- }
- }
- for _, v := range ctx.FakeConsul.checks {
- if v.Status != "passing" {
- t.Fatalf("expected check to be passing but found %q", v.Status)
- }
- }
+ // Shutdown() should block until Nomad agent service/check is deregistered
+ require.NoError(ctx.ServiceClient.Shutdown())
+ require.Len(ctx.FakeConsul.services, 0, "expected agent service to be deregistered")
+ require.Len(ctx.FakeConsul.checks, 0, "expected agent check to be deregistered")
}
// TestConsul_ShutdownBlocked tests the blocked past deadline path for the
// shutdown logic in ServiceClient.
func TestConsul_ShutdownBlocked(t *testing.T) {
+ require := require.New(t)
t.Parallel()
ctx := setupFake(t)
-
- // Add a script check to make sure its TTL gets updated
- ctx.Task.Services[0].Checks = []*structs.ServiceCheck{
- {
- Name: "scriptcheck",
- Type: "script",
- Command: "true",
- // Make check block until shutdown
- Interval: 9000 * time.Hour,
- Timeout: 9000 * time.Hour,
- InitialStatus: "warning",
- },
- }
-
- block := make(chan struct{})
- defer close(block) // cleanup after test
-
- // Make Exec block forever
- waiter := make(chan struct{})
- ctx.MockExec.ExecFunc = func(ctx context.Context, cmd string, args []string) ([]byte, int, error) {
- close(waiter)
- <-block
- return []byte{}, 0, nil
- }
-
- // Use a short shutdown deadline since we're intentionally blocking forever
+ // can be short because we're intentionally blocking, but needs to
+ // be longer than the time we'll block Consul so we can be sure
+ // we're not delayed either.
ctx.ServiceClient.shutdownWait = time.Second
-
go ctx.ServiceClient.Run()
- // Register a task and agent
- if err := ctx.ServiceClient.RegisterTask(ctx.Task); err != nil {
- t.Fatalf("unexpected error registering task: %v", err)
+ // register the Nomad agent service and check
+ agentServices := []*structs.Service{
+ {
+ Name: "http",
+ Tags: []string{"nomad"},
+ PortLabel: "localhost:2345",
+ Checks: []*structs.ServiceCheck{
+ {
+ Name: "nomad-tcp",
+ Type: "tcp",
+ Interval: 9000 * time.Hour, // make check block
+ Timeout: 10 * time.Second,
+ InitialStatus: "warning",
+ },
+ },
+ },
}
+ require.NoError(ctx.ServiceClient.RegisterAgent("client", agentServices))
+ require.Eventually(ctx.ServiceClient.hasSeen, time.Second, 10*time.Millisecond)
+ require.Len(ctx.FakeConsul.services, 1, "expected agent service to be registered")
+ require.Len(ctx.FakeConsul.checks, 1, "expected agent check to be registered")
- // Wait for exec to be called
- <-waiter
+ // prevent normal shutdown by blocking Consul. the shutdown should wait
+ // until agent deregistration has finished
+ waiter := make(chan struct{})
+ result := make(chan error)
+ go func() {
+ ctx.FakeConsul.mu.Lock()
+ close(waiter)
+ result <- ctx.ServiceClient.Shutdown()
+ }()
+
+ <-waiter // wait for lock to be hit
// Shutdown should block until all enqueued operations finish.
preShutdown := time.Now()
- err := ctx.ServiceClient.Shutdown()
- if err == nil {
- t.Errorf("expected a timed out error from shutdown")
- }
-
- // Shutdown time should have taken shutdownWait; to avoid timing
- // related errors simply test for wait <= shutdown <= wait+3s
- shutdownTime := time.Now().Sub(preShutdown)
- maxWait := ctx.ServiceClient.shutdownWait + (3 * time.Second)
- if shutdownTime < ctx.ServiceClient.shutdownWait || shutdownTime > maxWait {
- t.Errorf("expected shutdown to take >%s and <%s but took: %s", ctx.ServiceClient.shutdownWait, maxWait, shutdownTime)
- }
-
- // UpdateTTL should not have been called for the script check
- if n := len(ctx.FakeConsul.checkTTLs); n != 0 {
- t.Fatalf("expected 0 checkTTL entry but found: %d", n)
- }
- for _, v := range ctx.FakeConsul.checks {
- if expected := "warning"; v.Status != expected {
- t.Fatalf("expected check to be %q but found %q", expected, v.Status)
- }
- }
-}
-
-// TestConsul_RemoveScript assert removing a script check removes all objects
-// related to that check.
-func TestConsul_CancelScript(t *testing.T) {
- ctx := setupFake(t)
- ctx.Task.Services[0].Checks = []*structs.ServiceCheck{
- {
- Name: "scriptcheckDel",
- Type: "script",
- Interval: 9000 * time.Hour,
- Timeout: 9000 * time.Hour,
- },
- {
- Name: "scriptcheckKeep",
- Type: "script",
- Interval: 9000 * time.Hour,
- Timeout: 9000 * time.Hour,
- },
- }
-
- if err := ctx.ServiceClient.RegisterTask(ctx.Task); err != nil {
- t.Fatalf("unexpected error registering task: %v", err)
- }
-
- if err := ctx.syncOnce(); err != nil {
- t.Fatalf("unexpected error syncing task: %v", err)
- }
-
- if len(ctx.FakeConsul.checks) != 2 {
- t.Errorf("expected 2 checks but found %d", len(ctx.FakeConsul.checks))
- }
-
- if len(ctx.ServiceClient.scripts) != 2 && len(ctx.ServiceClient.runningScripts) != 2 {
- t.Errorf("expected 2 running script but found scripts=%d runningScripts=%d",
- len(ctx.ServiceClient.scripts), len(ctx.ServiceClient.runningScripts))
- }
-
- for i := 0; i < 2; i++ {
- select {
- case <-ctx.MockExec.execs:
- // Script ran as expected!
- case <-time.After(3 * time.Second):
- t.Fatalf("timed out waiting for script check to run")
- }
- }
-
- // Remove a check and update the task
- origTask := ctx.Task.Copy()
- ctx.Task.Services[0].Checks = []*structs.ServiceCheck{
- {
- Name: "scriptcheckKeep",
- Type: "script",
- Interval: 9000 * time.Hour,
- Timeout: 9000 * time.Hour,
- },
- }
-
- if err := ctx.ServiceClient.UpdateTask(origTask, ctx.Task); err != nil {
- t.Fatalf("unexpected error registering task: %v", err)
- }
-
- if err := ctx.syncOnce(); err != nil {
- t.Fatalf("unexpected error syncing task: %v", err)
- }
-
- if len(ctx.FakeConsul.checks) != 1 {
- t.Errorf("expected 1 check but found %d", len(ctx.FakeConsul.checks))
- }
-
- if len(ctx.ServiceClient.scripts) != 1 && len(ctx.ServiceClient.runningScripts) != 1 {
- t.Errorf("expected 1 running script but found scripts=%d runningScripts=%d",
- len(ctx.ServiceClient.scripts), len(ctx.ServiceClient.runningScripts))
- }
-
- // Make sure exec wasn't called again
select {
- case <-ctx.MockExec.execs:
- t.Errorf("unexpected execution of script; was goroutine not cancelled?")
- case <-time.After(100 * time.Millisecond):
- // No unexpected script execs
- }
-
- // Don't leak goroutines
- for _, scriptHandle := range ctx.ServiceClient.runningScripts {
- scriptHandle.cancel()
+ case <-time.After(200 * time.Millisecond):
+ ctx.FakeConsul.mu.Unlock()
+ require.NoError(<-result)
+ case <-result:
+ t.Fatal("should not have received result until Consul unblocked")
}
+ shutdownTime := time.Now().Sub(preShutdown).Seconds()
+ require.Less(shutdownTime, time.Second.Seconds(),
+ "expected shutdown to take >200ms and <1s")
+ require.Greater(shutdownTime, 200*time.Millisecond.Seconds(),
+ "expected shutdown to take >200ms and <1s")
+ require.Len(ctx.FakeConsul.services, 0,
+ "expected agent service to be deregistered")
+ require.Len(ctx.FakeConsul.checks, 0,
+ "expected agent check to be deregistered")
}
// TestConsul_DriverNetwork_AutoUse asserts that if a driver network has
@@ -972,7 +744,7 @@ func TestConsul_DriverNetwork_AutoUse(t *testing.T) {
t.Parallel()
ctx := setupFake(t)
- ctx.Task.Services = []*structs.Service{
+ ctx.Workload.Services = []*structs.Service{
{
Name: "auto-advertise-x",
PortLabel: "x",
@@ -1013,7 +785,7 @@ func TestConsul_DriverNetwork_AutoUse(t *testing.T) {
},
}
- ctx.Task.DriverNetwork = &drivers.DriverNetwork{
+ ctx.Workload.DriverNetwork = &drivers.DriverNetwork{
PortMap: map[string]int{
"x": 8888,
"y": 9999,
@@ -1022,7 +794,7 @@ func TestConsul_DriverNetwork_AutoUse(t *testing.T) {
AutoAdvertise: true,
}
- if err := ctx.ServiceClient.RegisterTask(ctx.Task); err != nil {
+ if err := ctx.ServiceClient.RegisterWorkload(ctx.Workload); err != nil {
t.Fatalf("unexpected error registering task: %v", err)
}
@@ -1036,14 +808,14 @@ func TestConsul_DriverNetwork_AutoUse(t *testing.T) {
for _, v := range ctx.FakeConsul.services {
switch v.Name {
- case ctx.Task.Services[0].Name: // x
+ case ctx.Workload.Services[0].Name: // x
// Since DriverNetwork.AutoAdvertise=true, driver ports should be used
- if v.Port != ctx.Task.DriverNetwork.PortMap["x"] {
+ if v.Port != ctx.Workload.DriverNetwork.PortMap["x"] {
t.Errorf("expected service %s's port to be %d but found %d",
- v.Name, ctx.Task.DriverNetwork.PortMap["x"], v.Port)
+ v.Name, ctx.Workload.DriverNetwork.PortMap["x"], v.Port)
}
// The order of checks in Consul is not guaranteed to
- // be the same as their order in the Task definition,
+ // be the same as their order in the Workload definition,
// so check in a loop
if expected := 2; len(v.Checks) != expected {
t.Errorf("expected %d checks but found %d", expected, len(v.Checks))
@@ -1066,22 +838,22 @@ func TestConsul_DriverNetwork_AutoUse(t *testing.T) {
t.Errorf("unexpected check %#v on service %q", c, v.Name)
}
}
- case ctx.Task.Services[1].Name: // y
+ case ctx.Workload.Services[1].Name: // y
// Service should be container ip:port
- if v.Address != ctx.Task.DriverNetwork.IP {
+ if v.Address != ctx.Workload.DriverNetwork.IP {
t.Errorf("expected service %s's address to be %s but found %s",
- v.Name, ctx.Task.DriverNetwork.IP, v.Address)
+ v.Name, ctx.Workload.DriverNetwork.IP, v.Address)
}
- if v.Port != ctx.Task.DriverNetwork.PortMap["y"] {
+ if v.Port != ctx.Workload.DriverNetwork.PortMap["y"] {
t.Errorf("expected service %s's port to be %d but found %d",
- v.Name, ctx.Task.DriverNetwork.PortMap["x"], v.Port)
+ v.Name, ctx.Workload.DriverNetwork.PortMap["x"], v.Port)
}
// Check should be host ip:port
if v.Checks[0].TCP != ":1235" { // yPort
t.Errorf("expected service %s check's port to be %d but found %s",
v.Name, yPort, v.Checks[0].TCP)
}
- case ctx.Task.Services[2].Name: // y + host mode
+ case ctx.Workload.Services[2].Name: // y + host mode
if v.Port != yPort {
t.Errorf("expected service %s's port to be %d but found %d",
v.Name, yPort, v.Port)
@@ -1099,7 +871,7 @@ func TestConsul_DriverNetwork_NoAutoUse(t *testing.T) {
t.Parallel()
ctx := setupFake(t)
- ctx.Task.Services = []*structs.Service{
+ ctx.Workload.Services = []*structs.Service{
{
Name: "auto-advertise-x",
PortLabel: "x",
@@ -1117,7 +889,7 @@ func TestConsul_DriverNetwork_NoAutoUse(t *testing.T) {
},
}
- ctx.Task.DriverNetwork = &drivers.DriverNetwork{
+ ctx.Workload.DriverNetwork = &drivers.DriverNetwork{
PortMap: map[string]int{
"x": 8888,
"y": 9999,
@@ -1126,7 +898,7 @@ func TestConsul_DriverNetwork_NoAutoUse(t *testing.T) {
AutoAdvertise: false,
}
- if err := ctx.ServiceClient.RegisterTask(ctx.Task); err != nil {
+ if err := ctx.ServiceClient.RegisterWorkload(ctx.Workload); err != nil {
t.Fatalf("unexpected error registering task: %v", err)
}
@@ -1140,23 +912,23 @@ func TestConsul_DriverNetwork_NoAutoUse(t *testing.T) {
for _, v := range ctx.FakeConsul.services {
switch v.Name {
- case ctx.Task.Services[0].Name: // x + auto
+ case ctx.Workload.Services[0].Name: // x + auto
// Since DriverNetwork.AutoAdvertise=false, host ports should be used
if v.Port != xPort {
t.Errorf("expected service %s's port to be %d but found %d",
v.Name, xPort, v.Port)
}
- case ctx.Task.Services[1].Name: // y + driver mode
+ case ctx.Workload.Services[1].Name: // y + driver mode
// Service should be container ip:port
- if v.Address != ctx.Task.DriverNetwork.IP {
+ if v.Address != ctx.Workload.DriverNetwork.IP {
t.Errorf("expected service %s's address to be %s but found %s",
- v.Name, ctx.Task.DriverNetwork.IP, v.Address)
+ v.Name, ctx.Workload.DriverNetwork.IP, v.Address)
}
- if v.Port != ctx.Task.DriverNetwork.PortMap["y"] {
+ if v.Port != ctx.Workload.DriverNetwork.PortMap["y"] {
t.Errorf("expected service %s's port to be %d but found %d",
- v.Name, ctx.Task.DriverNetwork.PortMap["x"], v.Port)
+ v.Name, ctx.Workload.DriverNetwork.PortMap["x"], v.Port)
}
- case ctx.Task.Services[2].Name: // y + host mode
+ case ctx.Workload.Services[2].Name: // y + host mode
if v.Port != yPort {
t.Errorf("expected service %s's port to be %d but found %d",
v.Name, yPort, v.Port)
@@ -1173,7 +945,7 @@ func TestConsul_DriverNetwork_Change(t *testing.T) {
t.Parallel()
ctx := setupFake(t)
- ctx.Task.Services = []*structs.Service{
+ ctx.Workload.Services = []*structs.Service{
{
Name: "service-foo",
PortLabel: "x",
@@ -1181,7 +953,7 @@ func TestConsul_DriverNetwork_Change(t *testing.T) {
},
}
- ctx.Task.DriverNetwork = &drivers.DriverNetwork{
+ ctx.Workload.DriverNetwork = &drivers.DriverNetwork{
PortMap: map[string]int{
"x": 8888,
"y": 9999,
@@ -1201,7 +973,7 @@ func TestConsul_DriverNetwork_Change(t *testing.T) {
for _, v := range ctx.FakeConsul.services {
switch v.Name {
- case ctx.Task.Services[0].Name:
+ case ctx.Workload.Services[0].Name:
if v.Port != port {
t.Errorf("expected service %s's port to be %d but found %d",
v.Name, port, v.Port)
@@ -1213,31 +985,31 @@ func TestConsul_DriverNetwork_Change(t *testing.T) {
}
// Initial service should advertise host port x
- if err := ctx.ServiceClient.RegisterTask(ctx.Task); err != nil {
+ if err := ctx.ServiceClient.RegisterWorkload(ctx.Workload); err != nil {
t.Fatalf("unexpected error registering task: %v", err)
}
syncAndAssertPort(xPort)
- // UpdateTask to use Host (shouldn't change anything)
- origTask := ctx.Task.Copy()
- ctx.Task.Services[0].AddressMode = structs.AddressModeHost
+ // UpdateWorkload to use Host (shouldn't change anything)
+ origWorkload := ctx.Workload.Copy()
+ ctx.Workload.Services[0].AddressMode = structs.AddressModeHost
- if err := ctx.ServiceClient.UpdateTask(origTask, ctx.Task); err != nil {
+ if err := ctx.ServiceClient.UpdateWorkload(origWorkload, ctx.Workload); err != nil {
t.Fatalf("unexpected error updating task: %v", err)
}
syncAndAssertPort(xPort)
- // UpdateTask to use Driver (*should* change IP and port)
- origTask = ctx.Task.Copy()
- ctx.Task.Services[0].AddressMode = structs.AddressModeDriver
+ // UpdateWorkload to use Driver (*should* change IP and port)
+ origWorkload = ctx.Workload.Copy()
+ ctx.Workload.Services[0].AddressMode = structs.AddressModeDriver
- if err := ctx.ServiceClient.UpdateTask(origTask, ctx.Task); err != nil {
+ if err := ctx.ServiceClient.UpdateWorkload(origWorkload, ctx.Workload); err != nil {
t.Fatalf("unexpected error updating task: %v", err)
}
- syncAndAssertPort(ctx.Task.DriverNetwork.PortMap["x"])
+ syncAndAssertPort(ctx.Workload.DriverNetwork.PortMap["x"])
}
// TestConsul_CanaryTags asserts CanaryTags are used when Canary=true
@@ -1247,10 +1019,10 @@ func TestConsul_CanaryTags(t *testing.T) {
ctx := setupFake(t)
canaryTags := []string{"tag1", "canary"}
- ctx.Task.Canary = true
- ctx.Task.Services[0].CanaryTags = canaryTags
+ ctx.Workload.Canary = true
+ ctx.Workload.Services[0].CanaryTags = canaryTags
- require.NoError(ctx.ServiceClient.RegisterTask(ctx.Task))
+ require.NoError(ctx.ServiceClient.RegisterWorkload(ctx.Workload))
require.NoError(ctx.syncOnce())
require.Len(ctx.FakeConsul.services, 1)
for _, service := range ctx.FakeConsul.services {
@@ -1258,16 +1030,16 @@ func TestConsul_CanaryTags(t *testing.T) {
}
// Disable canary and assert tags are not the canary tags
- origTask := ctx.Task.Copy()
- ctx.Task.Canary = false
- require.NoError(ctx.ServiceClient.UpdateTask(origTask, ctx.Task))
+ origWorkload := ctx.Workload.Copy()
+ ctx.Workload.Canary = false
+ require.NoError(ctx.ServiceClient.UpdateWorkload(origWorkload, ctx.Workload))
require.NoError(ctx.syncOnce())
require.Len(ctx.FakeConsul.services, 1)
for _, service := range ctx.FakeConsul.services {
require.NotEqual(canaryTags, service.Tags)
}
- ctx.ServiceClient.RemoveTask(ctx.Task)
+ ctx.ServiceClient.RemoveWorkload(ctx.Workload)
require.NoError(ctx.syncOnce())
require.Len(ctx.FakeConsul.services, 0)
}
@@ -1280,10 +1052,10 @@ func TestConsul_CanaryTags_NoTags(t *testing.T) {
ctx := setupFake(t)
tags := []string{"tag1", "foo"}
- ctx.Task.Canary = true
- ctx.Task.Services[0].Tags = tags
+ ctx.Workload.Canary = true
+ ctx.Workload.Services[0].Tags = tags
- require.NoError(ctx.ServiceClient.RegisterTask(ctx.Task))
+ require.NoError(ctx.ServiceClient.RegisterWorkload(ctx.Workload))
require.NoError(ctx.syncOnce())
require.Len(ctx.FakeConsul.services, 1)
for _, service := range ctx.FakeConsul.services {
@@ -1291,16 +1063,16 @@ func TestConsul_CanaryTags_NoTags(t *testing.T) {
}
// Disable canary and assert tags dont change
- origTask := ctx.Task.Copy()
- ctx.Task.Canary = false
- require.NoError(ctx.ServiceClient.UpdateTask(origTask, ctx.Task))
+ origWorkload := ctx.Workload.Copy()
+ ctx.Workload.Canary = false
+ require.NoError(ctx.ServiceClient.UpdateWorkload(origWorkload, ctx.Workload))
require.NoError(ctx.syncOnce())
require.Len(ctx.FakeConsul.services, 1)
for _, service := range ctx.FakeConsul.services {
require.Equal(tags, service.Tags)
}
- ctx.ServiceClient.RemoveTask(ctx.Task)
+ ctx.ServiceClient.RemoveWorkload(ctx.Workload)
require.NoError(ctx.syncOnce())
require.Len(ctx.FakeConsul.services, 0)
}
@@ -1630,7 +1402,7 @@ func TestConsul_ServiceName_Duplicates(t *testing.T) {
ctx := setupFake(t)
require := require.New(t)
- ctx.Task.Services = []*structs.Service{
+ ctx.Workload.Services = []*structs.Service{
{
Name: "best-service",
PortLabel: "x",
@@ -1667,20 +1439,20 @@ func TestConsul_ServiceName_Duplicates(t *testing.T) {
},
}
- require.NoError(ctx.ServiceClient.RegisterTask(ctx.Task))
+ require.NoError(ctx.ServiceClient.RegisterWorkload(ctx.Workload))
require.NoError(ctx.syncOnce())
require.Len(ctx.FakeConsul.services, 3)
for _, v := range ctx.FakeConsul.services {
- if v.Name == ctx.Task.Services[0].Name && v.Port == xPort {
- require.ElementsMatch(v.Tags, ctx.Task.Services[0].Tags)
+ if v.Name == ctx.Workload.Services[0].Name && v.Port == xPort {
+ require.ElementsMatch(v.Tags, ctx.Workload.Services[0].Tags)
require.Len(v.Checks, 1)
- } else if v.Name == ctx.Task.Services[1].Name && v.Port == yPort {
- require.ElementsMatch(v.Tags, ctx.Task.Services[1].Tags)
+ } else if v.Name == ctx.Workload.Services[1].Name && v.Port == yPort {
+ require.ElementsMatch(v.Tags, ctx.Workload.Services[1].Tags)
require.Len(v.Checks, 1)
- } else if v.Name == ctx.Task.Services[2].Name {
+ } else if v.Name == ctx.Workload.Services[2].Name {
require.Len(v.Checks, 0)
}
}
@@ -1695,8 +1467,8 @@ func TestConsul_ServiceDeregistration_OutProbation(t *testing.T) {
ctx.ServiceClient.deregisterProbationExpiry = time.Now().Add(-1 * time.Hour)
- remainingTask := testTask()
- remainingTask.Services = []*structs.Service{
+ remainingWorkload := testWorkload()
+ remainingWorkload.Services = []*structs.Service{
{
Name: "remaining-service",
PortLabel: "x",
@@ -1710,16 +1482,16 @@ func TestConsul_ServiceDeregistration_OutProbation(t *testing.T) {
},
},
}
- remainingTaskServiceID := MakeTaskServiceID(remainingTask.AllocID,
- remainingTask.Name, remainingTask.Services[0])
+ remainingWorkloadServiceID := MakeAllocServiceID(remainingWorkload.AllocID,
+ remainingWorkload.Name(), remainingWorkload.Services[0])
- require.NoError(ctx.ServiceClient.RegisterTask(remainingTask))
+ require.NoError(ctx.ServiceClient.RegisterWorkload(remainingWorkload))
require.NoError(ctx.syncOnce())
require.Len(ctx.FakeConsul.services, 1)
require.Len(ctx.FakeConsul.checks, 1)
- explicitlyRemovedTask := testTask()
- explicitlyRemovedTask.Services = []*structs.Service{
+ explicitlyRemovedWorkload := testWorkload()
+ explicitlyRemovedWorkload.Services = []*structs.Service{
{
Name: "explicitly-removed-service",
PortLabel: "y",
@@ -1733,18 +1505,18 @@ func TestConsul_ServiceDeregistration_OutProbation(t *testing.T) {
},
},
}
- explicitlyRemovedTaskServiceID := MakeTaskServiceID(explicitlyRemovedTask.AllocID,
- explicitlyRemovedTask.Name, explicitlyRemovedTask.Services[0])
+ explicitlyRemovedWorkloadServiceID := MakeAllocServiceID(explicitlyRemovedWorkload.AllocID,
+ explicitlyRemovedWorkload.Name(), explicitlyRemovedWorkload.Services[0])
- require.NoError(ctx.ServiceClient.RegisterTask(explicitlyRemovedTask))
+ require.NoError(ctx.ServiceClient.RegisterWorkload(explicitlyRemovedWorkload))
require.NoError(ctx.syncOnce())
require.Len(ctx.FakeConsul.services, 2)
require.Len(ctx.FakeConsul.checks, 2)
// we register a task through nomad API then remove it out of band
- outofbandTask := testTask()
- outofbandTask.Services = []*structs.Service{
+ outofbandWorkload := testWorkload()
+ outofbandWorkload.Services = []*structs.Service{
{
Name: "unknown-service",
PortLabel: "x",
@@ -1758,39 +1530,39 @@ func TestConsul_ServiceDeregistration_OutProbation(t *testing.T) {
},
},
}
- outofbandTaskServiceID := MakeTaskServiceID(outofbandTask.AllocID,
- outofbandTask.Name, outofbandTask.Services[0])
+ outofbandWorkloadServiceID := MakeAllocServiceID(outofbandWorkload.AllocID,
+ outofbandWorkload.Name(), outofbandWorkload.Services[0])
- require.NoError(ctx.ServiceClient.RegisterTask(outofbandTask))
+ require.NoError(ctx.ServiceClient.RegisterWorkload(outofbandWorkload))
require.NoError(ctx.syncOnce())
require.Len(ctx.FakeConsul.services, 3)
- // remove outofbandTask from local services so it appears unknown to client
+ // remove outofbandWorkload from local services so it appears unknown to client
require.Len(ctx.ServiceClient.services, 3)
require.Len(ctx.ServiceClient.checks, 3)
- delete(ctx.ServiceClient.services, outofbandTaskServiceID)
- delete(ctx.ServiceClient.checks, makeCheckID(outofbandTaskServiceID, outofbandTask.Services[0].Checks[0]))
+ delete(ctx.ServiceClient.services, outofbandWorkloadServiceID)
+ delete(ctx.ServiceClient.checks, MakeCheckID(outofbandWorkloadServiceID, outofbandWorkload.Services[0].Checks[0]))
require.Len(ctx.ServiceClient.services, 2)
require.Len(ctx.ServiceClient.checks, 2)
- // Sync and ensure that explicitly removed service as well as outofbandTask were removed
+ // Sync and ensure that explicitly removed service as well as outofbandWorkload were removed
- ctx.ServiceClient.RemoveTask(explicitlyRemovedTask)
+ ctx.ServiceClient.RemoveWorkload(explicitlyRemovedWorkload)
require.NoError(ctx.syncOnce())
require.NoError(ctx.ServiceClient.sync())
require.Len(ctx.FakeConsul.services, 1)
require.Len(ctx.FakeConsul.checks, 1)
- require.Contains(ctx.FakeConsul.services, remainingTaskServiceID)
- require.NotContains(ctx.FakeConsul.services, outofbandTaskServiceID)
- require.NotContains(ctx.FakeConsul.services, explicitlyRemovedTaskServiceID)
+ require.Contains(ctx.FakeConsul.services, remainingWorkloadServiceID)
+ require.NotContains(ctx.FakeConsul.services, outofbandWorkloadServiceID)
+ require.NotContains(ctx.FakeConsul.services, explicitlyRemovedWorkloadServiceID)
- require.Contains(ctx.FakeConsul.checks, makeCheckID(remainingTaskServiceID, remainingTask.Services[0].Checks[0]))
- require.NotContains(ctx.FakeConsul.checks, makeCheckID(outofbandTaskServiceID, outofbandTask.Services[0].Checks[0]))
- require.NotContains(ctx.FakeConsul.checks, makeCheckID(explicitlyRemovedTaskServiceID, explicitlyRemovedTask.Services[0].Checks[0]))
+ require.Contains(ctx.FakeConsul.checks, MakeCheckID(remainingWorkloadServiceID, remainingWorkload.Services[0].Checks[0]))
+ require.NotContains(ctx.FakeConsul.checks, MakeCheckID(outofbandWorkloadServiceID, outofbandWorkload.Services[0].Checks[0]))
+ require.NotContains(ctx.FakeConsul.checks, MakeCheckID(explicitlyRemovedWorkloadServiceID, explicitlyRemovedWorkload.Services[0].Checks[0]))
}
// TestConsul_ServiceDeregistration_InProbation asserts that during initialization
@@ -1804,8 +1576,8 @@ func TestConsul_ServiceDeregistration_InProbation(t *testing.T) {
ctx.ServiceClient.deregisterProbationExpiry = time.Now().Add(1 * time.Hour)
- remainingTask := testTask()
- remainingTask.Services = []*structs.Service{
+ remainingWorkload := testWorkload()
+ remainingWorkload.Services = []*structs.Service{
{
Name: "remaining-service",
PortLabel: "x",
@@ -1819,16 +1591,16 @@ func TestConsul_ServiceDeregistration_InProbation(t *testing.T) {
},
},
}
- remainingTaskServiceID := MakeTaskServiceID(remainingTask.AllocID,
- remainingTask.Name, remainingTask.Services[0])
+ remainingWorkloadServiceID := MakeAllocServiceID(remainingWorkload.AllocID,
+ remainingWorkload.Name(), remainingWorkload.Services[0])
- require.NoError(ctx.ServiceClient.RegisterTask(remainingTask))
+ require.NoError(ctx.ServiceClient.RegisterWorkload(remainingWorkload))
require.NoError(ctx.syncOnce())
require.Len(ctx.FakeConsul.services, 1)
require.Len(ctx.FakeConsul.checks, 1)
- explicitlyRemovedTask := testTask()
- explicitlyRemovedTask.Services = []*structs.Service{
+ explicitlyRemovedWorkload := testWorkload()
+ explicitlyRemovedWorkload.Services = []*structs.Service{
{
Name: "explicitly-removed-service",
PortLabel: "y",
@@ -1842,18 +1614,18 @@ func TestConsul_ServiceDeregistration_InProbation(t *testing.T) {
},
},
}
- explicitlyRemovedTaskServiceID := MakeTaskServiceID(explicitlyRemovedTask.AllocID,
- explicitlyRemovedTask.Name, explicitlyRemovedTask.Services[0])
+ explicitlyRemovedWorkloadServiceID := MakeAllocServiceID(explicitlyRemovedWorkload.AllocID,
+ explicitlyRemovedWorkload.Name(), explicitlyRemovedWorkload.Services[0])
- require.NoError(ctx.ServiceClient.RegisterTask(explicitlyRemovedTask))
+ require.NoError(ctx.ServiceClient.RegisterWorkload(explicitlyRemovedWorkload))
require.NoError(ctx.syncOnce())
require.Len(ctx.FakeConsul.services, 2)
require.Len(ctx.FakeConsul.checks, 2)
// we register a task through nomad API then remove it out of band
- outofbandTask := testTask()
- outofbandTask.Services = []*structs.Service{
+ outofbandWorkload := testWorkload()
+ outofbandWorkload.Services = []*structs.Service{
{
Name: "unknown-service",
PortLabel: "x",
@@ -1867,39 +1639,39 @@ func TestConsul_ServiceDeregistration_InProbation(t *testing.T) {
},
},
}
- outofbandTaskServiceID := MakeTaskServiceID(outofbandTask.AllocID,
- outofbandTask.Name, outofbandTask.Services[0])
+ outofbandWorkloadServiceID := MakeAllocServiceID(outofbandWorkload.AllocID,
+ outofbandWorkload.Name(), outofbandWorkload.Services[0])
- require.NoError(ctx.ServiceClient.RegisterTask(outofbandTask))
+ require.NoError(ctx.ServiceClient.RegisterWorkload(outofbandWorkload))
require.NoError(ctx.syncOnce())
require.Len(ctx.FakeConsul.services, 3)
- // remove outofbandTask from local services so it appears unknown to client
+ // remove outofbandWorkload from local services so it appears unknown to client
require.Len(ctx.ServiceClient.services, 3)
require.Len(ctx.ServiceClient.checks, 3)
- delete(ctx.ServiceClient.services, outofbandTaskServiceID)
- delete(ctx.ServiceClient.checks, makeCheckID(outofbandTaskServiceID, outofbandTask.Services[0].Checks[0]))
+ delete(ctx.ServiceClient.services, outofbandWorkloadServiceID)
+ delete(ctx.ServiceClient.checks, MakeCheckID(outofbandWorkloadServiceID, outofbandWorkload.Services[0].Checks[0]))
require.Len(ctx.ServiceClient.services, 2)
require.Len(ctx.ServiceClient.checks, 2)
- // Sync and ensure that explicitly removed service was removed, but outofbandTask remains
+ // Sync and ensure that explicitly removed service was removed, but outofbandWorkload remains
- ctx.ServiceClient.RemoveTask(explicitlyRemovedTask)
+ ctx.ServiceClient.RemoveWorkload(explicitlyRemovedWorkload)
require.NoError(ctx.syncOnce())
require.NoError(ctx.ServiceClient.sync())
require.Len(ctx.FakeConsul.services, 2)
require.Len(ctx.FakeConsul.checks, 2)
- require.Contains(ctx.FakeConsul.services, remainingTaskServiceID)
- require.Contains(ctx.FakeConsul.services, outofbandTaskServiceID)
- require.NotContains(ctx.FakeConsul.services, explicitlyRemovedTaskServiceID)
+ require.Contains(ctx.FakeConsul.services, remainingWorkloadServiceID)
+ require.Contains(ctx.FakeConsul.services, outofbandWorkloadServiceID)
+ require.NotContains(ctx.FakeConsul.services, explicitlyRemovedWorkloadServiceID)
- require.Contains(ctx.FakeConsul.checks, makeCheckID(remainingTaskServiceID, remainingTask.Services[0].Checks[0]))
- require.Contains(ctx.FakeConsul.checks, makeCheckID(outofbandTaskServiceID, outofbandTask.Services[0].Checks[0]))
- require.NotContains(ctx.FakeConsul.checks, makeCheckID(explicitlyRemovedTaskServiceID, explicitlyRemovedTask.Services[0].Checks[0]))
+ require.Contains(ctx.FakeConsul.checks, MakeCheckID(remainingWorkloadServiceID, remainingWorkload.Services[0].Checks[0]))
+ require.Contains(ctx.FakeConsul.checks, MakeCheckID(outofbandWorkloadServiceID, outofbandWorkload.Services[0].Checks[0]))
+ require.NotContains(ctx.FakeConsul.checks, MakeCheckID(explicitlyRemovedWorkloadServiceID, explicitlyRemovedWorkload.Services[0].Checks[0]))
// after probation, outofband services and checks are removed
ctx.ServiceClient.deregisterProbationExpiry = time.Now().Add(-1 * time.Hour)
@@ -1908,12 +1680,12 @@ func TestConsul_ServiceDeregistration_InProbation(t *testing.T) {
require.Len(ctx.FakeConsul.services, 1)
require.Len(ctx.FakeConsul.checks, 1)
- require.Contains(ctx.FakeConsul.services, remainingTaskServiceID)
- require.NotContains(ctx.FakeConsul.services, outofbandTaskServiceID)
- require.NotContains(ctx.FakeConsul.services, explicitlyRemovedTaskServiceID)
+ require.Contains(ctx.FakeConsul.services, remainingWorkloadServiceID)
+ require.NotContains(ctx.FakeConsul.services, outofbandWorkloadServiceID)
+ require.NotContains(ctx.FakeConsul.services, explicitlyRemovedWorkloadServiceID)
- require.Contains(ctx.FakeConsul.checks, makeCheckID(remainingTaskServiceID, remainingTask.Services[0].Checks[0]))
- require.NotContains(ctx.FakeConsul.checks, makeCheckID(outofbandTaskServiceID, outofbandTask.Services[0].Checks[0]))
- require.NotContains(ctx.FakeConsul.checks, makeCheckID(explicitlyRemovedTaskServiceID, explicitlyRemovedTask.Services[0].Checks[0]))
+ require.Contains(ctx.FakeConsul.checks, MakeCheckID(remainingWorkloadServiceID, remainingWorkload.Services[0].Checks[0]))
+ require.NotContains(ctx.FakeConsul.checks, MakeCheckID(outofbandWorkloadServiceID, outofbandWorkload.Services[0].Checks[0]))
+ require.NotContains(ctx.FakeConsul.checks, MakeCheckID(explicitlyRemovedWorkloadServiceID, explicitlyRemovedWorkload.Services[0].Checks[0]))
}
diff --git a/command/agent/fs_endpoint.go b/command/agent/fs_endpoint.go
index f36f3be8e..4a99a2531 100644
--- a/command/agent/fs_endpoint.go
+++ b/command/agent/fs_endpoint.go
@@ -17,12 +17,12 @@ import (
)
var (
- allocIDNotPresentErr = fmt.Errorf("must provide a valid alloc id")
- fileNameNotPresentErr = fmt.Errorf("must provide a file name")
- taskNotPresentErr = fmt.Errorf("must provide task name")
- logTypeNotPresentErr = fmt.Errorf("must provide log type (stdout/stderr)")
- clientNotRunning = fmt.Errorf("node is not running a Nomad Client")
- invalidOrigin = fmt.Errorf("origin must be start or end")
+ allocIDNotPresentErr = CodedError(400, "must provide a valid alloc id")
+ fileNameNotPresentErr = CodedError(400, "must provide a file name")
+ taskNotPresentErr = CodedError(400, "must provide task name")
+ logTypeNotPresentErr = CodedError(400, "must provide log type (stdout/stderr)")
+ clientNotRunning = CodedError(400, "node is not running a Nomad Client")
+ invalidOrigin = CodedError(400, "origin must be start or end")
)
func (s *HTTPServer) FsRequest(resp http.ResponseWriter, req *http.Request) (interface{}, error) {
@@ -273,13 +273,13 @@ func (s *HTTPServer) Logs(resp http.ResponseWriter, req *http.Request) (interfac
if followStr := q.Get("follow"); followStr != "" {
if follow, err = strconv.ParseBool(followStr); err != nil {
- return nil, fmt.Errorf("failed to parse follow field to boolean: %v", err)
+ return nil, CodedError(400, fmt.Sprintf("failed to parse follow field to boolean: %v", err))
}
}
if plainStr := q.Get("plain"); plainStr != "" {
if plain, err = strconv.ParseBool(plainStr); err != nil {
- return nil, fmt.Errorf("failed to parse plain field to boolean: %v", err)
+ return nil, CodedError(400, fmt.Sprintf("failed to parse plain field to boolean: %v", err))
}
}
@@ -295,7 +295,7 @@ func (s *HTTPServer) Logs(resp http.ResponseWriter, req *http.Request) (interfac
if offsetString != "" {
var err error
if offset, err = strconv.ParseInt(offsetString, 10, 64); err != nil {
- return nil, fmt.Errorf("error parsing offset: %v", err)
+ return nil, CodedError(400, fmt.Sprintf("error parsing offset: %v", err))
}
}
@@ -388,10 +388,13 @@ func (s *HTTPServer) fsStreamImpl(resp http.ResponseWriter,
decoder.Reset(httpPipe)
if err := res.Error; err != nil {
+ code := 500
if err.Code != nil {
- errCh <- CodedError(int(*err.Code), err.Error())
- return
+ code = int(*err.Code)
}
+
+ errCh <- CodedError(code, err.Error())
+ return
}
if _, err := io.Copy(output, bytes.NewReader(res.Payload)); err != nil {
diff --git a/command/agent/fs_endpoint_test.go b/command/agent/fs_endpoint_test.go
index e131c990a..67cda129f 100644
--- a/command/agent/fs_endpoint_test.go
+++ b/command/agent/fs_endpoint_test.go
@@ -3,7 +3,6 @@ package agent
import (
"encoding/base64"
"fmt"
- "io"
"io/ioutil"
"net/http"
"net/http/httptest"
@@ -12,6 +11,7 @@ import (
"time"
cstructs "github.com/hashicorp/nomad/client/structs"
+ "github.com/hashicorp/nomad/helper/uuid"
"github.com/hashicorp/nomad/nomad/mock"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/nomad/testutil"
@@ -189,25 +189,26 @@ func TestHTTP_FS_Stream_MissingParams(t *testing.T) {
require := require.New(t)
httpTest(t, nil, func(s *TestAgent) {
req, err := http.NewRequest("GET", "/v1/client/fs/stream/", nil)
- require.Nil(err)
+ require.NoError(err)
respW := httptest.NewRecorder()
_, err = s.Server.Stream(respW, req)
require.EqualError(err, allocIDNotPresentErr.Error())
req, err = http.NewRequest("GET", "/v1/client/fs/stream/foo", nil)
- require.Nil(err)
+ require.NoError(err)
respW = httptest.NewRecorder()
_, err = s.Server.Stream(respW, req)
require.EqualError(err, fileNameNotPresentErr.Error())
req, err = http.NewRequest("GET", "/v1/client/fs/stream/foo?path=/path/to/file", nil)
- require.Nil(err)
+ require.NoError(err)
respW = httptest.NewRecorder()
_, err = s.Server.Stream(respW, req)
- require.Nil(err)
+ require.Error(err)
+ require.Contains(err.Error(), "alloc lookup failed")
})
}
@@ -219,38 +220,39 @@ func TestHTTP_FS_Logs_MissingParams(t *testing.T) {
httpTest(t, nil, func(s *TestAgent) {
// AllocID Not Present
req, err := http.NewRequest("GET", "/v1/client/fs/logs/", nil)
- require.Nil(err)
+ require.NoError(err)
respW := httptest.NewRecorder()
s.Server.mux.ServeHTTP(respW, req)
require.Equal(respW.Body.String(), allocIDNotPresentErr.Error())
- require.Equal(500, respW.Code) // 500 for backward compat
+ require.Equal(400, respW.Code)
// Task Not Present
req, err = http.NewRequest("GET", "/v1/client/fs/logs/foo", nil)
- require.Nil(err)
+ require.NoError(err)
respW = httptest.NewRecorder()
s.Server.mux.ServeHTTP(respW, req)
require.Equal(respW.Body.String(), taskNotPresentErr.Error())
- require.Equal(500, respW.Code) // 500 for backward compat
+ require.Equal(400, respW.Code)
// Log Type Not Present
req, err = http.NewRequest("GET", "/v1/client/fs/logs/foo?task=foo", nil)
- require.Nil(err)
+ require.NoError(err)
respW = httptest.NewRecorder()
s.Server.mux.ServeHTTP(respW, req)
require.Equal(respW.Body.String(), logTypeNotPresentErr.Error())
- require.Equal(500, respW.Code) // 500 for backward compat
+ require.Equal(400, respW.Code)
- // Ok
+ // case where all parameters are set but alloc isn't found
req, err = http.NewRequest("GET", "/v1/client/fs/logs/foo?task=foo&type=stdout", nil)
- require.Nil(err)
+ require.NoError(err)
respW = httptest.NewRecorder()
s.Server.mux.ServeHTTP(respW, req)
- require.Equal(200, respW.Code)
+ require.Equal(500, respW.Code)
+ require.Contains(respW.Body.String(), "alloc lookup failed")
})
}
@@ -354,8 +356,7 @@ func TestHTTP_FS_Stream_NoFollow(t *testing.T) {
path := fmt.Sprintf("/v1/client/fs/stream/%s?path=alloc/logs/web.stdout.0&offset=%d&origin=end&follow=false",
a.ID, offset)
- p, _ := io.Pipe()
- req, err := http.NewRequest("GET", path, p)
+ req, err := http.NewRequest("GET", path, nil)
require.Nil(err)
respW := testutil.NewResponseRecorder()
doneCh := make(chan struct{})
@@ -383,8 +384,6 @@ func TestHTTP_FS_Stream_NoFollow(t *testing.T) {
case <-time.After(1 * time.Second):
t.Fatal("should close but did not")
}
-
- p.Close()
})
}
@@ -401,9 +400,7 @@ func TestHTTP_FS_Stream_Follow(t *testing.T) {
path := fmt.Sprintf("/v1/client/fs/stream/%s?path=alloc/logs/web.stdout.0&offset=%d&origin=end",
a.ID, offset)
- p, _ := io.Pipe()
-
- req, err := http.NewRequest("GET", path, p)
+ req, err := http.NewRequest("GET", path, nil)
require.Nil(err)
respW := httptest.NewRecorder()
doneCh := make(chan struct{})
@@ -431,8 +428,6 @@ func TestHTTP_FS_Stream_Follow(t *testing.T) {
t.Fatal("shouldn't close")
case <-time.After(1 * time.Second):
}
-
- p.Close()
})
}
@@ -448,8 +443,7 @@ func TestHTTP_FS_Logs(t *testing.T) {
path := fmt.Sprintf("/v1/client/fs/logs/%s?type=stdout&task=web&offset=%d&origin=end&plain=true",
a.ID, offset)
- p, _ := io.Pipe()
- req, err := http.NewRequest("GET", path, p)
+ req, err := http.NewRequest("GET", path, nil)
require.Nil(err)
respW := testutil.NewResponseRecorder()
go func() {
@@ -469,8 +463,6 @@ func TestHTTP_FS_Logs(t *testing.T) {
}, func(err error) {
t.Fatal(err)
})
-
- p.Close()
})
}
@@ -486,8 +478,7 @@ func TestHTTP_FS_Logs_Follow(t *testing.T) {
path := fmt.Sprintf("/v1/client/fs/logs/%s?type=stdout&task=web&offset=%d&origin=end&plain=true&follow=true",
a.ID, offset)
- p, _ := io.Pipe()
- req, err := http.NewRequest("GET", path, p)
+ req, err := http.NewRequest("GET", path, nil)
require.Nil(err)
respW := testutil.NewResponseRecorder()
errCh := make(chan error)
@@ -514,7 +505,23 @@ func TestHTTP_FS_Logs_Follow(t *testing.T) {
t.Fatalf("shouldn't exit: %v", err)
case <-time.After(1 * time.Second):
}
-
- p.Close()
+ })
+}
+
+func TestHTTP_FS_Logs_PropagatesErrors(t *testing.T) {
+ t.Parallel()
+ httpTest(t, nil, func(s *TestAgent) {
+ path := fmt.Sprintf("/v1/client/fs/logs/%s?type=stdout&task=web&offset=0&origin=end&plain=true",
+ uuid.Generate())
+
+ req, err := http.NewRequest("GET", path, nil)
+ require.NoError(t, err)
+ respW := testutil.NewResponseRecorder()
+
+ _, err = s.Server.Logs(respW, req)
+ require.Error(t, err)
+
+ _, ok := err.(HTTPCodedError)
+ require.Truef(t, ok, "expected a coded error but found: %#+v", err)
})
}
diff --git a/command/agent/http.go b/command/agent/http.go
index 1bb673a2a..01caac0cd 100644
--- a/command/agent/http.go
+++ b/command/agent/http.go
@@ -183,6 +183,7 @@ func (s *HTTPServer) registerHandlers(enableDebug bool) {
s.mux.HandleFunc("/v1/agent/servers", s.wrap(s.AgentServersRequest))
s.mux.HandleFunc("/v1/agent/keyring/", s.wrap(s.KeyringOperationRequest))
s.mux.HandleFunc("/v1/agent/health", s.wrap(s.HealthRequest))
+ s.mux.HandleFunc("/v1/agent/monitor", s.wrap(s.AgentMonitor))
s.mux.HandleFunc("/v1/metrics", s.wrap(s.MetricsRequest))
@@ -212,7 +213,7 @@ func (s *HTTPServer) registerHandlers(enableDebug bool) {
w.Write([]byte(stubHTML))
})
}
- s.mux.Handle("/", handleRootRedirect())
+ s.mux.Handle("/", handleRootFallthrough())
if enableDebug {
s.mux.HandleFunc("/debug/pprof/", pprof.Index)
@@ -274,10 +275,13 @@ func handleUI(h http.Handler) http.Handler {
})
}
-func handleRootRedirect() http.Handler {
+func handleRootFallthrough() http.Handler {
return http.HandlerFunc(func(w http.ResponseWriter, req *http.Request) {
- http.Redirect(w, req, "/ui/", 307)
- return
+ if req.URL.Path == "/" {
+ http.Redirect(w, req, "/ui/", 307)
+ } else {
+ w.WriteHeader(http.StatusNotFound)
+ }
})
}
@@ -300,6 +304,9 @@ func (s *HTTPServer) wrap(handler func(resp http.ResponseWriter, req *http.Reque
errMsg := err.Error()
if http, ok := err.(HTTPCodedError); ok {
code = http.Code()
+ } else if ecode, emsg, ok := structs.CodeFromRPCCodedErr(err); ok {
+ code = ecode
+ errMsg = emsg
} else {
// RPC errors get wrapped, so manually unwrap by only looking at their suffix
if strings.HasSuffix(errMsg, structs.ErrPermissionDenied.Error()) {
diff --git a/command/agent/http_test.go b/command/agent/http_test.go
index 6c4e637eb..fa1feaf31 100644
--- a/command/agent/http_test.go
+++ b/command/agent/http_test.go
@@ -12,7 +12,6 @@ import (
"net/http"
"net/http/httptest"
"net/url"
- "strconv"
"testing"
"time"
@@ -21,6 +20,7 @@ import (
"github.com/hashicorp/nomad/nomad/structs/config"
"github.com/hashicorp/nomad/testutil"
"github.com/stretchr/testify/assert"
+ "github.com/stretchr/testify/require"
"github.com/ugorji/go/codec"
)
@@ -61,6 +61,58 @@ func BenchmarkHTTPRequests(b *testing.B) {
})
}
+// TestRootFallthrough tests rootFallthrough handler to
+// verify redirect and 404 behavior
+func TestRootFallthrough(t *testing.T) {
+ t.Parallel()
+
+ cases := []struct {
+ desc string
+ path string
+ expectedPath string
+ expectedCode int
+ }{
+ {
+ desc: "unknown endpoint 404s",
+ path: "/v1/unknown/endpoint",
+ expectedCode: 404,
+ },
+ {
+ desc: "root path redirects to ui",
+ path: "/",
+ expectedPath: "/ui/",
+ expectedCode: 307,
+ },
+ }
+
+ s := makeHTTPServer(t, nil)
+ defer s.Shutdown()
+
+ // setup a client that doesn't follow redirects
+ client := &http.Client{
+ CheckRedirect: func(_ *http.Request, _ []*http.Request) error {
+ return http.ErrUseLastResponse
+ },
+ }
+
+ for _, tc := range cases {
+ t.Run(tc.desc, func(t *testing.T) {
+
+ reqURL := fmt.Sprintf("http://%s%s", s.Agent.config.AdvertiseAddrs.HTTP, tc.path)
+
+ resp, err := client.Get(reqURL)
+ require.NoError(t, err)
+ require.Equal(t, tc.expectedCode, resp.StatusCode)
+
+ if tc.expectedPath != "" {
+ loc, err := resp.Location()
+ require.NoError(t, err)
+ require.Equal(t, tc.expectedPath, loc.Path)
+ }
+ })
+ }
+}
+
func TestSetIndex(t *testing.T) {
t.Parallel()
resp := httptest.NewRecorder()
@@ -525,23 +577,6 @@ func TestHTTP_VerifyHTTPSClient(t *testing.T) {
}
}
-// assertIndex tests that X-Nomad-Index is set and non-zero
-func assertIndex(t *testing.T, resp *httptest.ResponseRecorder) {
- header := resp.Header().Get("X-Nomad-Index")
- if header == "" || header == "0" {
- t.Fatalf("Bad: %v", header)
- }
-}
-
-// checkIndex is like assertIndex but returns an error
-func checkIndex(resp *httptest.ResponseRecorder) error {
- header := resp.Header().Get("X-Nomad-Index")
- if header == "" || header == "0" {
- return fmt.Errorf("Bad: %v", header)
- }
- return nil
-}
-
func TestHTTP_VerifyHTTPSClient_AfterConfigReload(t *testing.T) {
t.Parallel()
assert := assert.New(t)
@@ -644,19 +679,6 @@ func TestHTTP_VerifyHTTPSClient_AfterConfigReload(t *testing.T) {
}
}
-// getIndex parses X-Nomad-Index
-func getIndex(t *testing.T, resp *httptest.ResponseRecorder) uint64 {
- header := resp.Header().Get("X-Nomad-Index")
- if header == "" {
- t.Fatalf("Bad: %v", header)
- }
- val, err := strconv.Atoi(header)
- if err != nil {
- t.Fatalf("Bad: %v", header)
- }
- return uint64(val)
-}
-
func httpTest(t testing.TB, cb func(c *Config), f func(srv *TestAgent)) {
s := makeHTTPServer(t, cb)
defer s.Shutdown()
diff --git a/command/agent/job_endpoint.go b/command/agent/job_endpoint.go
index 0ccc35a3e..710c94ec3 100644
--- a/command/agent/job_endpoint.go
+++ b/command/agent/job_endpoint.go
@@ -753,7 +753,7 @@ func ApiTgToStructsTG(taskGroup *api.TaskGroup, tg *structs.TaskGroup) {
Name: v.Name,
Type: v.Type,
ReadOnly: v.ReadOnly,
- Config: v.Config,
+ Source: v.Source,
}
tg.Volumes[k] = vol
@@ -812,9 +812,10 @@ func ApiTaskToStructsTask(apiTask *api.Task, structsTask *structs.Task) {
structsTask.VolumeMounts = make([]*structs.VolumeMount, l)
for i, mount := range apiTask.VolumeMounts {
structsTask.VolumeMounts[i] = &structs.VolumeMount{
- Volume: mount.Volume,
- Destination: mount.Destination,
- ReadOnly: mount.ReadOnly,
+ Volume: *mount.Volume,
+ Destination: *mount.Destination,
+ ReadOnly: *mount.ReadOnly,
+ PropagationMode: *mount.PropagationMode,
}
}
}
@@ -1062,13 +1063,16 @@ func ApiConsulConnectToStructs(in *api.ConsulConnect) *structs.ConsulConnect {
if in.SidecarService != nil {
out.SidecarService = &structs.ConsulSidecarService{
+ Tags: helper.CopySliceString(in.SidecarService.Tags),
Port: in.SidecarService.Port,
}
if in.SidecarService.Proxy != nil {
out.SidecarService.Proxy = &structs.ConsulProxy{
- Config: in.SidecarService.Proxy.Config,
+ LocalServiceAddress: in.SidecarService.Proxy.LocalServiceAddress,
+ LocalServicePort: in.SidecarService.Proxy.LocalServicePort,
+ Config: in.SidecarService.Proxy.Config,
}
upstreams := make([]structs.ConsulUpstream, len(in.SidecarService.Proxy.Upstreams))
diff --git a/command/agent/job_endpoint_test.go b/command/agent/job_endpoint_test.go
index e1934e29e..88deda125 100644
--- a/command/agent/job_endpoint_test.go
+++ b/command/agent/job_endpoint_test.go
@@ -1537,6 +1537,13 @@ func TestJobs_ApiJobToStructsJob(t *testing.T) {
TaskName: "task1",
},
},
+ Connect: &api.ConsulConnect{
+ Native: false,
+ SidecarService: &api.ConsulSidecarService{
+ Tags: []string{"f", "g"},
+ Port: "9000",
+ },
+ },
},
},
Tasks: []*api.Task{
@@ -1877,6 +1884,13 @@ func TestJobs_ApiJobToStructsJob(t *testing.T) {
TaskName: "task1",
},
},
+ Connect: &structs.ConsulConnect{
+ Native: false,
+ SidecarService: &structs.ConsulSidecarService{
+ Tags: []string{"f", "g"},
+ Port: "9000",
+ },
+ },
},
},
Tasks: []*structs.Task{
diff --git a/command/agent/log_file.go b/command/agent/log_file.go
new file mode 100644
index 000000000..bad3c6c17
--- /dev/null
+++ b/command/agent/log_file.go
@@ -0,0 +1,146 @@
+package agent
+
+import (
+ "fmt"
+ "os"
+ "path/filepath"
+ "sort"
+ "strconv"
+ "strings"
+ "sync"
+ "time"
+
+ "github.com/hashicorp/logutils"
+)
+
+var (
+ now = time.Now
+)
+
+// logFile is used to setup a file based logger that also performs log rotation
+type logFile struct {
+ // Log level Filter to filter out logs that do not matcch LogLevel criteria
+ logFilter *logutils.LevelFilter
+
+ //Name of the log file
+ fileName string
+
+ //Path to the log file
+ logPath string
+
+ //Duration between each file rotation operation
+ duration time.Duration
+
+ //LastCreated represents the creation time of the latest log
+ LastCreated time.Time
+
+ //FileInfo is the pointer to the current file being written to
+ FileInfo *os.File
+
+ //MaxBytes is the maximum number of desired bytes for a log file
+ MaxBytes int
+
+ //BytesWritten is the number of bytes written in the current log file
+ BytesWritten int64
+
+ // Max rotated files to keep before removing them.
+ MaxFiles int
+
+ //acquire is the mutex utilized to ensure we have no concurrency issues
+ acquire sync.Mutex
+}
+
+func (l *logFile) fileNamePattern() string {
+ // Extract the file extension
+ fileExt := filepath.Ext(l.fileName)
+ // If we have no file extension we append .log
+ if fileExt == "" {
+ fileExt = ".log"
+ }
+ // Remove the file extension from the filename
+ return strings.TrimSuffix(l.fileName, fileExt) + "-%s" + fileExt
+}
+
+func (l *logFile) openNew() error {
+ fileNamePattern := l.fileNamePattern()
+ // New file name has the format : filename-timestamp.extension
+ createTime := now()
+ newfileName := fmt.Sprintf(fileNamePattern, strconv.FormatInt(createTime.UnixNano(), 10))
+ newfilePath := filepath.Join(l.logPath, newfileName)
+ // Try creating a file. We truncate the file because we are the only authority to write the logs
+ filePointer, err := os.OpenFile(newfilePath, os.O_CREATE|os.O_TRUNC|os.O_WRONLY, 0640)
+ if err != nil {
+ return err
+ }
+
+ l.FileInfo = filePointer
+ // New file, new bytes tracker, new creation time :)
+ l.LastCreated = createTime
+ l.BytesWritten = 0
+ return nil
+}
+
+func (l *logFile) rotate() error {
+ // Get the time from the last point of contact
+ timeElapsed := time.Since(l.LastCreated)
+ // Rotate if we hit the byte file limit or the time limit
+ if (l.BytesWritten >= int64(l.MaxBytes) && (l.MaxBytes > 0)) || timeElapsed >= l.duration {
+ l.FileInfo.Close()
+ if err := l.pruneFiles(); err != nil {
+ return err
+ }
+ return l.openNew()
+ }
+ return nil
+}
+
+func (l *logFile) pruneFiles() error {
+ if l.MaxFiles == 0 {
+ return nil
+ }
+ pattern := l.fileNamePattern()
+ //get all the files that match the log file pattern
+ globExpression := filepath.Join(l.logPath, fmt.Sprintf(pattern, "*"))
+ matches, err := filepath.Glob(globExpression)
+ if err != nil {
+ return err
+ }
+
+ // Stort the strings as filepath.Glob does not publicly guarantee that files
+ // are sorted, so here we add an extra defensive sort.
+ sort.Strings(matches)
+
+ // Prune if there are more files stored than the configured max
+ stale := len(matches) - l.MaxFiles
+ for i := 0; i < stale; i++ {
+ if err := os.Remove(matches[i]); err != nil {
+ return err
+ }
+ }
+ return nil
+}
+
+// Write is used to implement io.Writer
+func (l *logFile) Write(b []byte) (int, error) {
+ // Filter out log entries that do not match log level criteria
+ if !l.logFilter.Check(b) {
+ return 0, nil
+ }
+
+ l.acquire.Lock()
+ defer l.acquire.Unlock()
+ //Create a new file if we have no file to write to
+ if l.FileInfo == nil {
+ if err := l.openNew(); err != nil {
+ return 0, err
+ }
+ }
+ // Check for the last contact and rotate if necessary
+ if err := l.rotate(); err != nil {
+ return 0, err
+ }
+
+ n, err := l.FileInfo.Write(b)
+ l.BytesWritten += int64(n)
+ return n, err
+}
diff --git a/command/agent/log_file_test.go b/command/agent/log_file_test.go
new file mode 100644
index 000000000..12777784d
--- /dev/null
+++ b/command/agent/log_file_test.go
@@ -0,0 +1,171 @@
+package agent
+
+import (
+ "io/ioutil"
+ "os"
+ "path/filepath"
+ "testing"
+ "time"
+
+ "github.com/hashicorp/logutils"
+ "github.com/stretchr/testify/require"
+)
+
+const (
+ testFileName = "Nomad.log"
+ testDuration = 2 * time.Second
+ testBytes = 10
+)
+
+func TestLogFile_timeRotation(t *testing.T) {
+ t.Parallel()
+ require := require.New(t)
+
+ tempDir, err := ioutil.TempDir("", "LogWriterTimeTest")
+ require.NoError(err)
+
+ defer os.Remove(tempDir)
+
+ filt := LevelFilter()
+ logFile := logFile{
+ logFilter: filt,
+ fileName: testFileName,
+ logPath: tempDir,
+ duration: testDuration,
+ }
+ logFile.Write([]byte("Hello World"))
+ time.Sleep(2 * time.Second)
+ logFile.Write([]byte("Second File"))
+ want := 2
+ if got, _ := ioutil.ReadDir(tempDir); len(got) != want {
+ t.Errorf("Expected %d files, got %v file(s)", want, len(got))
+ }
+}
+
+func TestLogFile_openNew(t *testing.T) {
+ t.Parallel()
+ require := require.New(t)
+
+ tempDir, err := ioutil.TempDir("", "LogWriterOpenTest")
+ require.NoError(err)
+ defer os.Remove(tempDir)
+
+ logFile := logFile{fileName: testFileName, logPath: tempDir, duration: testDuration}
+ require.NoError(logFile.openNew())
+
+ _, err = ioutil.ReadFile(logFile.FileInfo.Name())
+ require.NoError(err)
+}
+
+func TestLogFile_byteRotation(t *testing.T) {
+ t.Parallel()
+ require := require.New(t)
+
+ tempDir, err := ioutil.TempDir("", "LogWriterByteTest")
+ require.NoError(err)
+ defer os.Remove(tempDir)
+
+ filt := LevelFilter()
+ filt.MinLevel = logutils.LogLevel("INFO")
+ logFile := logFile{
+ logFilter: filt,
+ fileName: testFileName,
+ logPath: tempDir,
+ MaxBytes: testBytes,
+ duration: 24 * time.Hour,
+ }
+ logFile.Write([]byte("Hello World"))
+ logFile.Write([]byte("Second File"))
+ want := 2
+ tempFiles, _ := ioutil.ReadDir(tempDir)
+ require.Equal(want, len(tempFiles))
+}
+
+func TestLogFile_logLevelFiltering(t *testing.T) {
+ t.Parallel()
+ require := require.New(t)
+
+ tempDir, err := ioutil.TempDir("", "LogWriterFilterTest")
+ require.NoError(err)
+ defer os.Remove(tempDir)
+ filt := LevelFilter()
+ logFile := logFile{
+ logFilter: filt,
+ fileName: testFileName,
+ logPath: tempDir,
+ MaxBytes: testBytes,
+ duration: testDuration,
+ }
+ logFile.Write([]byte("[INFO] This is an info message"))
+ logFile.Write([]byte("[DEBUG] This is a debug message"))
+ logFile.Write([]byte("[ERR] This is an error message"))
+ want := 2
+ tempFiles, _ := ioutil.ReadDir(tempDir)
+ require.Equal(want, len(tempFiles))
+}
+
+func TestLogFile_deleteArchives(t *testing.T) {
+ t.Parallel()
+ require := require.New(t)
+
+ tempDir, err := ioutil.TempDir("", "LogWriterDeleteArchivesTest")
+ require.NoError(err)
+ defer os.Remove(tempDir)
+
+ filt := LevelFilter()
+ filt.MinLevel = logutils.LogLevel("INFO")
+ logFile := logFile{
+ logFilter: filt,
+ fileName: testFileName,
+ logPath: tempDir,
+ MaxBytes: testBytes,
+ duration: 24 * time.Hour,
+ MaxFiles: 1,
+ }
+ logFile.Write([]byte("[INFO] Hello World"))
+ logFile.Write([]byte("[INFO] Second File"))
+ logFile.Write([]byte("[INFO] Third File"))
+ want := 2
+ tempFiles, _ := ioutil.ReadDir(tempDir)
+
+ require.Equal(want, len(tempFiles))
+
+ for _, tempFile := range tempFiles {
+ var bytes []byte
+ var err error
+ path := filepath.Join(tempDir, tempFile.Name())
+ if bytes, err = ioutil.ReadFile(path); err != nil {
+ t.Errorf(err.Error())
+ return
+ }
+ contents := string(bytes)
+
+ require.NotEqual("[INFO] Hello World", contents, "oldest log should have been deleted")
+ }
+}
+
+func TestLogFile_deleteArchivesDisabled(t *testing.T) {
+ t.Parallel()
+
+ require := require.New(t)
+ tempDir, err := ioutil.TempDir("", "LogWriterDeleteArchivesDisabledTest")
+ require.NoError(err)
+ defer os.Remove(tempDir)
+
+ filt := LevelFilter()
+ filt.MinLevel = logutils.LogLevel("INFO")
+ logFile := logFile{
+ logFilter: filt,
+ fileName: testFileName,
+ logPath: tempDir,
+ MaxBytes: testBytes,
+ duration: 24 * time.Hour,
+ MaxFiles: 0,
+ }
+ logFile.Write([]byte("[INFO] Hello World"))
+ logFile.Write([]byte("[INFO] Second File"))
+ logFile.Write([]byte("[INFO] Third File"))
+ want := 3
+ tempFiles, _ := ioutil.ReadDir(tempDir)
+ require.Equal(want, len(tempFiles))
+}
diff --git a/command/agent/log_writer.go b/command/agent/log_writer.go
deleted file mode 100644
index ebb96878b..000000000
--- a/command/agent/log_writer.go
+++ /dev/null
@@ -1,83 +0,0 @@
-package agent
-
-import (
- "sync"
-)
-
-// LogHandler interface is used for clients that want to subscribe
-// to logs, for example to stream them over an IPC mechanism
-type LogHandler interface {
- HandleLog(string)
-}
-
-// logWriter implements io.Writer so it can be used as a log sink.
-// It maintains a circular buffer of logs, and a set of handlers to
-// which it can stream the logs to.
-type logWriter struct {
- sync.Mutex
- logs []string
- index int
- handlers map[LogHandler]struct{}
-}
-
-// NewLogWriter creates a logWriter with the given buffer capacity
-func NewLogWriter(buf int) *logWriter {
- return &logWriter{
- logs: make([]string, buf),
- index: 0,
- handlers: make(map[LogHandler]struct{}),
- }
-}
-
-// RegisterHandler adds a log handler to receive logs, and sends
-// the last buffered logs to the handler
-func (l *logWriter) RegisterHandler(lh LogHandler) {
- l.Lock()
- defer l.Unlock()
-
- // Do nothing if already registered
- if _, ok := l.handlers[lh]; ok {
- return
- }
-
- // Register
- l.handlers[lh] = struct{}{}
-
- // Send the old logs
- if l.logs[l.index] != "" {
- for i := l.index; i < len(l.logs); i++ {
- lh.HandleLog(l.logs[i])
- }
- }
- for i := 0; i < l.index; i++ {
- lh.HandleLog(l.logs[i])
- }
-}
-
-// DeregisterHandler removes a LogHandler and prevents more invocations
-func (l *logWriter) DeregisterHandler(lh LogHandler) {
- l.Lock()
- defer l.Unlock()
- delete(l.handlers, lh)
-}
-
-// Write is used to accumulate new logs
-func (l *logWriter) Write(p []byte) (n int, err error) {
- l.Lock()
- defer l.Unlock()
-
- // Strip off newlines at the end if there are any since we store
- // individual log lines in the agent.
- n = len(p)
- if p[n-1] == '\n' {
- p = p[:n-1]
- }
-
- l.logs[l.index] = string(p)
- l.index = (l.index + 1) % len(l.logs)
-
- for lh := range l.handlers {
- lh.HandleLog(string(p))
- }
- return
-}
diff --git a/command/agent/log_writer_test.go b/command/agent/log_writer_test.go
deleted file mode 100644
index 19c23c573..000000000
--- a/command/agent/log_writer_test.go
+++ /dev/null
@@ -1,52 +0,0 @@
-package agent
-
-import (
- "testing"
-)
-
-type MockLogHandler struct {
- logs []string
-}
-
-func (m *MockLogHandler) HandleLog(l string) {
- m.logs = append(m.logs, l)
-}
-
-func TestLogWriter(t *testing.T) {
- t.Parallel()
- h := &MockLogHandler{}
- w := NewLogWriter(4)
-
- // Write some logs
- w.Write([]byte("one")) // Gets dropped!
- w.Write([]byte("two"))
- w.Write([]byte("three"))
- w.Write([]byte("four"))
- w.Write([]byte("five"))
-
- // Register a handler, sends old!
- w.RegisterHandler(h)
-
- w.Write([]byte("six"))
- w.Write([]byte("seven"))
-
- // Deregister
- w.DeregisterHandler(h)
-
- w.Write([]byte("eight"))
- w.Write([]byte("nine"))
-
- out := []string{
- "two",
- "three",
- "four",
- "five",
- "six",
- "seven",
- }
- for idx := range out {
- if out[idx] != h.logs[idx] {
- t.Fatalf("mismatch %v", h.logs)
- }
- }
-}
diff --git a/command/agent/metrics_endpoint_test.go b/command/agent/metrics_endpoint_test.go
index d1c65d0cd..d97fe2e69 100644
--- a/command/agent/metrics_endpoint_test.go
+++ b/command/agent/metrics_endpoint_test.go
@@ -121,7 +121,7 @@ func TestHTTP_FreshClientAllocMetrics(t *testing.T) {
terminal == float32(numTasks), nil
}, func(err error) {
require.Fail("timed out waiting for metrics to converge",
- "pending: %v, running: %v, terminal: %v", pending, running, terminal)
+ "expected: (pending: 0, running: 0, terminal: %v), got: (pending: %v, running: %v, terminal: %v)", numTasks, pending, running, terminal)
})
})
}
diff --git a/command/agent/monitor/monitor.go b/command/agent/monitor/monitor.go
new file mode 100644
index 000000000..d788110c1
--- /dev/null
+++ b/command/agent/monitor/monitor.go
@@ -0,0 +1,172 @@
+package monitor
+
+import (
+ "fmt"
+ "sync"
+ "time"
+
+ log "github.com/hashicorp/go-hclog"
+)
+
+// Monitor provides a mechanism to stream logs using go-hclog
+// InterceptLogger and SinkAdapter. It allows streaming of logs
+// at a different log level than what is set on the logger.
+type Monitor interface {
+ // Start returns a channel of log messages which are sent
+ // ever time a log message occurs
+ Start() <-chan []byte
+
+ // Stop de-registers the sink from the InterceptLogger
+ // and closes the log channels
+ Stop()
+}
+
+// monitor implements the Monitor interface
+type monitor struct {
+ // protects droppedCount and logCh
+ sync.Mutex
+
+ sink log.SinkAdapter
+
+ // logger is the logger we will be monitoring
+ logger log.InterceptLogger
+
+ // logCh is a buffered chan where we send logs when streaming
+ logCh chan []byte
+
+ // doneCh coordinates the shutdown of logCh
+ doneCh chan struct{}
+
+ // droppedCount is the current count of messages
+ // that were dropped from the logCh buffer.
+ // only access under lock
+ droppedCount int
+ bufSize int
+ // droppedDuration is the amount of time we should
+ // wait to check for dropped messages. Defaults
+ // to 3 seconds
+ droppedDuration time.Duration
+}
+
+// New creates a new Monitor. Start must be called in order to actually start
+// streaming logs
+func New(buf int, logger log.InterceptLogger, opts *log.LoggerOptions) Monitor {
+ return new(buf, logger, opts)
+}
+
+func new(buf int, logger log.InterceptLogger, opts *log.LoggerOptions) *monitor {
+ sw := &monitor{
+ logger: logger,
+ logCh: make(chan []byte, buf),
+ doneCh: make(chan struct{}, 1),
+ bufSize: buf,
+ droppedDuration: 3 * time.Second,
+ }
+
+ opts.Output = sw
+ sink := log.NewSinkAdapter(opts)
+ sw.sink = sink
+
+ return sw
+}
+
+// Stop deregisters the sink and stops the monitoring process
+func (d *monitor) Stop() {
+ d.logger.DeregisterSink(d.sink)
+ close(d.doneCh)
+}
+
+// Start registers a sink on the monitor's logger and starts sending
+// received log messages over the returned channel.
+func (d *monitor) Start() <-chan []byte {
+ // register our sink with the logger
+ d.logger.RegisterSink(d.sink)
+
+ streamCh := make(chan []byte, d.bufSize)
+
+ // run a go routine that listens for streamed
+ // log messages and sends them to streamCh
+ go func() {
+ defer close(streamCh)
+
+ for {
+ select {
+ case log := <-d.logCh:
+ select {
+ case <-d.doneCh:
+ return
+ case streamCh <- log:
+ }
+ case <-d.doneCh:
+ return
+ }
+ }
+ }()
+
+ // run a go routine that periodically checks for
+ // dropped messages and makes room on the logCh
+ // to add a dropped message count warning
+ go func() {
+ // loop and check for dropped messages
+ for {
+ select {
+ case <-d.doneCh:
+ return
+ case <-time.After(d.droppedDuration):
+ d.Lock()
+
+ // Check if there have been any dropped messages.
+ if d.droppedCount > 0 {
+ dropped := fmt.Sprintf("[WARN] Monitor dropped %d logs during monitor request\n", d.droppedCount)
+ select {
+ case <-d.doneCh:
+ d.Unlock()
+ return
+ // Try sending dropped message count to logCh in case
+ // there is room in the buffer now.
+ case d.logCh <- []byte(dropped):
+ default:
+ // Drop a log message to make room for "Monitor dropped.." message
+ select {
+ case <-d.logCh:
+ d.droppedCount++
+ dropped = fmt.Sprintf("[WARN] Monitor dropped %d logs during monitor request\n", d.droppedCount)
+ default:
+ }
+ d.logCh <- []byte(dropped)
+ }
+ d.droppedCount = 0
+ }
+ // unlock after handling dropped message
+ d.Unlock()
+ }
+ }
+ }()
+
+ return streamCh
+}
+
+// Write attempts to send latest log to logCh
+// it drops the log if channel is unavailable to receive
+func (d *monitor) Write(p []byte) (n int, err error) {
+ d.Lock()
+ defer d.Unlock()
+
+ // ensure logCh is still open
+ select {
+ case <-d.doneCh:
+ return
+ default:
+ }
+
+ bytes := make([]byte, len(p))
+ copy(bytes, p)
+
+ select {
+ case d.logCh <- bytes:
+ default:
+ d.droppedCount++
+ }
+
+ return len(p), nil
+}
diff --git a/command/agent/monitor/monitor_test.go b/command/agent/monitor/monitor_test.go
new file mode 100644
index 000000000..697b5bdc5
--- /dev/null
+++ b/command/agent/monitor/monitor_test.go
@@ -0,0 +1,88 @@
+package monitor
+
+import (
+ "fmt"
+ "strings"
+ "testing"
+ "time"
+
+ log "github.com/hashicorp/go-hclog"
+ "github.com/stretchr/testify/require"
+)
+
+func TestMonitor_Start(t *testing.T) {
+ t.Parallel()
+
+ logger := log.NewInterceptLogger(&log.LoggerOptions{
+ Level: log.Error,
+ })
+
+ m := New(512, logger, &log.LoggerOptions{
+ Level: log.Debug,
+ })
+
+ logCh := m.Start()
+ defer m.Stop()
+
+ go func() {
+ logger.Debug("test log")
+ time.Sleep(10 * time.Millisecond)
+ }()
+
+ for {
+ select {
+ case log := <-logCh:
+ require.Contains(t, string(log), "[DEBUG] test log")
+ return
+ case <-time.After(3 * time.Second):
+ t.Fatal("Expected to receive from log channel")
+ }
+ }
+}
+
+// Ensure number of dropped messages are logged
+func TestMonitor_DroppedMessages(t *testing.T) {
+ t.Parallel()
+
+ logger := log.NewInterceptLogger(&log.LoggerOptions{
+ Level: log.Warn,
+ })
+
+ m := new(5, logger, &log.LoggerOptions{
+ Level: log.Debug,
+ })
+ m.droppedDuration = 5 * time.Millisecond
+
+ doneCh := make(chan struct{})
+ defer close(doneCh)
+
+ logCh := m.Start()
+
+ for i := 0; i <= 100; i++ {
+ logger.Debug(fmt.Sprintf("test message %d", i))
+ }
+
+ received := ""
+ passed := make(chan struct{})
+ go func() {
+ for {
+ select {
+ case recv := <-logCh:
+ received += string(recv)
+ if strings.Contains(received, "[WARN] Monitor dropped") {
+ close(passed)
+ }
+ }
+ }
+ }()
+
+TEST:
+ for {
+ select {
+ case <-passed:
+ break TEST
+ case <-time.After(2 * time.Second):
+ require.Fail(t, "expected to see warn dropped messages")
+ }
+ }
+}
diff --git a/command/agent/testagent.go b/command/agent/testagent.go
index 59d8eaeb8..a36a46116 100644
--- a/command/agent/testagent.go
+++ b/command/agent/testagent.go
@@ -216,7 +216,7 @@ func (a *TestAgent) start() (*Agent, error) {
return nil, fmt.Errorf("unable to set up in memory metrics needed for agent initialization")
}
- logger := hclog.New(&hclog.LoggerOptions{
+ logger := hclog.NewInterceptLogger(&hclog.LoggerOptions{
Name: "agent",
Level: hclog.LevelFromString(a.Config.LogLevel),
Output: a.LogOutput,
diff --git a/command/agent/testdata/basic.hcl b/command/agent/testdata/basic.hcl
index 03ce1c749..0f569b487 100644
--- a/command/agent/testdata/basic.hcl
+++ b/command/agent/testdata/basic.hcl
@@ -13,6 +13,8 @@ log_level = "ERR"
log_json = true
+log_file = "/var/log/nomad.log"
+
bind_addr = "192.168.0.1"
enable_debug = true
diff --git a/command/agent/testdata/basic.json b/command/agent/testdata/basic.json
index 6eedcb85f..22bb3a36c 100644
--- a/command/agent/testdata/basic.json
+++ b/command/agent/testdata/basic.json
@@ -143,6 +143,7 @@
],
"leave_on_interrupt": true,
"leave_on_terminate": true,
+ "log_file": "/var/log/nomad.log",
"log_json": true,
"log_level": "ERR",
"name": "my-web",
diff --git a/command/agent/testingutils_test.go b/command/agent/testingutils_test.go
index 3d821cd59..8a78f1e36 100644
--- a/command/agent/testingutils_test.go
+++ b/command/agent/testingutils_test.go
@@ -99,17 +99,6 @@ func MockJob() *api.Job {
return job
}
-func MockPeriodicJob() *api.Job {
- j := MockJob()
- j.Type = helper.StringToPtr("batch")
- j.Periodic = &api.PeriodicConfig{
- Enabled: helper.BoolToPtr(true),
- SpecType: helper.StringToPtr("cron"),
- Spec: helper.StringToPtr("*/30 * * * *"),
- }
- return j
-}
-
func MockRegionalJob() *api.Job {
j := MockJob()
j.Region = helper.StringToPtr("north-america")
diff --git a/command/agent_monitor.go b/command/agent_monitor.go
new file mode 100644
index 000000000..4d50faf6a
--- /dev/null
+++ b/command/agent_monitor.go
@@ -0,0 +1,137 @@
+package command
+
+import (
+ "fmt"
+ "io"
+ "os"
+ "os/signal"
+ "strconv"
+ "strings"
+ "syscall"
+ "time"
+
+ "github.com/hashicorp/nomad/api"
+ "github.com/mitchellh/cli"
+)
+
+type MonitorCommand struct {
+ Meta
+}
+
+func (c *MonitorCommand) Help() string {
+ helpText := `
+Usage: nomad monitor [options]
+
+ Stream log messages of a nomad agent. The monitor command lets you
+ listen for log levels that may be filtered out of the Nomad agent. For
+ example your agent may only be logging at INFO level, but with the monitor
+ command you can set -log-level DEBUG
+
+General Options:
+
+ ` + generalOptionsUsage() + `
+
+Monitor Specific Options:
+
+ -log-level
+ Sets the log level to monitor (default: INFO)
+
+ -node-id
+ Sets the specific node to monitor
+
+ -json
+ Sets log output to JSON format
+ `
+ return strings.TrimSpace(helpText)
+}
+
+func (c *MonitorCommand) Synopsis() string {
+ return "stream logs from a Nomad agent"
+}
+
+func (c *MonitorCommand) Name() string { return "monitor" }
+
+func (c *MonitorCommand) Run(args []string) int {
+ c.Ui = &cli.PrefixedUi{
+ OutputPrefix: " ",
+ InfoPrefix: " ",
+ ErrorPrefix: "==> ",
+ Ui: c.Ui,
+ }
+
+ var logLevel string
+ var nodeID string
+ var serverID string
+ var logJSON bool
+
+ flags := c.Meta.FlagSet(c.Name(), FlagSetClient)
+ flags.Usage = func() { c.Ui.Output(c.Help()) }
+ flags.StringVar(&logLevel, "log-level", "", "")
+ flags.StringVar(&nodeID, "node-id", "", "")
+ flags.StringVar(&serverID, "server-id", "", "")
+ flags.BoolVar(&logJSON, "json", false, "")
+
+ if err := flags.Parse(args); err != nil {
+ return 1
+ }
+
+ args = flags.Args()
+ if l := len(args); l != 0 {
+ c.Ui.Error("This command takes no arguments")
+ c.Ui.Error(commandErrorText(c))
+ return 1
+ }
+
+ client, err := c.Meta.Client()
+ if err != nil {
+ c.Ui.Error(fmt.Sprintf("Error initializing client: %s", err))
+ c.Ui.Error(commandErrorText(c))
+ return 1
+ }
+
+ params := map[string]string{
+ "log_level": logLevel,
+ "node_id": nodeID,
+ "server_id": serverID,
+ "log_json": strconv.FormatBool(logJSON),
+ }
+
+ query := &api.QueryOptions{
+ Params: params,
+ }
+
+ eventDoneCh := make(chan struct{})
+ frames, errCh := client.Agent().Monitor(eventDoneCh, query)
+ select {
+ case err := <-errCh:
+ c.Ui.Error(fmt.Sprintf("Error starting monitor: %s", err))
+ c.Ui.Error(commandErrorText(c))
+ return 1
+ default:
+ }
+
+ // Create a reader
+ var r io.ReadCloser
+ frameReader := api.NewFrameReader(frames, errCh, eventDoneCh)
+ frameReader.SetUnblockTime(500 * time.Millisecond)
+ r = frameReader
+
+ defer r.Close()
+
+ signalCh := make(chan os.Signal, 1)
+ signal.Notify(signalCh, os.Interrupt, syscall.SIGTERM)
+
+ go func() {
+ <-signalCh
+ // End the streaming
+ r.Close()
+ }()
+
+ _, err = io.Copy(os.Stdout, r)
+ if err != nil {
+ c.Ui.Error(fmt.Sprintf("error monitoring logs: %s", err))
+ return 1
+ }
+
+ return 0
+}
diff --git a/command/agent_monitor_test.go b/command/agent_monitor_test.go
new file mode 100644
index 000000000..24109b280
--- /dev/null
+++ b/command/agent_monitor_test.go
@@ -0,0 +1,36 @@
+package command
+
+import (
+ "strings"
+ "testing"
+
+ "github.com/mitchellh/cli"
+)
+
+func TestMonitorCommand_Implements(t *testing.T) {
+ t.Parallel()
+ var _ cli.Command = &MonitorCommand{}
+}
+
+func TestMonitorCommand_Fails(t *testing.T) {
+ t.Parallel()
+ srv, _, _ := testServer(t, false, nil)
+ defer srv.Shutdown()
+
+ ui := new(cli.MockUi)
+ cmd := &MonitorCommand{Meta: Meta{Ui: ui}}
+
+ // Fails on misuse
+ if code := cmd.Run([]string{"some", "bad", "args"}); code != 1 {
+ t.Fatalf("exepected exit code 1, got: %d", code)
+ }
+ if out := ui.ErrorWriter.String(); !strings.Contains(out, commandErrorText(cmd)) {
+ t.Fatalf("expected help output, got: %s", out)
+ }
+
+ ui.ErrorWriter.Reset()
+
+ if code := cmd.Run([]string{"-address=nope"}); code != 1 {
+ t.Fatalf("exepected exit code 1, got: %d", code)
+ }
+}
diff --git a/command/alloc_exec.go b/command/alloc_exec.go
index 6dd845edb..c19bca29a 100644
--- a/command/alloc_exec.go
+++ b/command/alloc_exec.go
@@ -105,8 +105,8 @@ func (l *AllocExecCommand) Run(args []string) int {
flags.BoolVar(&stdinOpt, "i", true, "")
- stdinTty := isStdinTty()
- flags.BoolVar(&ttyOpt, "t", stdinTty, "")
+ inferredTty := isTty()
+ flags.BoolVar(&ttyOpt, "t", inferredTty, "")
if err := flags.Parse(args); err != nil {
return 1
@@ -194,7 +194,6 @@ func (l *AllocExecCommand) Run(args []string) int {
if err != nil {
l.Ui.Error(err.Error())
- l.Ui.Error("\nPlease specify the task.")
return 1
}
}
@@ -292,9 +291,11 @@ func (l *AllocExecCommand) execImpl(client *api.Client, alloc *api.Allocation, t
alloc, task, tty, command, stdin, stdout, stderr, sizeCh, nil)
}
-func isStdinTty() bool {
- _, isTerminal := term.GetFdInfo(os.Stdin)
- return isTerminal
+// isTty returns true if both stdin and stdout are a TTY
+func isTty() bool {
+ _, isStdinTerminal := term.GetFdInfo(os.Stdin)
+ _, isStdoutTerminal := term.GetFdInfo(os.Stdout)
+ return isStdinTerminal && isStdoutTerminal
}
// setRawTerminal sets the stream terminal in raw mode, so process captures
diff --git a/command/alloc_logs.go b/command/alloc_logs.go
index 2717a01ab..5865f955b 100644
--- a/command/alloc_logs.go
+++ b/command/alloc_logs.go
@@ -190,7 +190,6 @@ func (l *AllocLogsCommand) Run(args []string) int {
if err != nil {
l.Ui.Error(err.Error())
- l.Ui.Error("\nPlease specify the task.")
return 1
}
}
diff --git a/command/alloc_status.go b/command/alloc_status.go
index 350894ea7..1184534c6 100644
--- a/command/alloc_status.go
+++ b/command/alloc_status.go
@@ -234,13 +234,13 @@ func formatAllocBasicInfo(alloc *api.Allocation, client *api.Client, uuidLength
}
basic := []string{
- fmt.Sprintf("ID|%s", limit(alloc.ID, uuidLength)),
+ fmt.Sprintf("ID|%s", alloc.ID),
fmt.Sprintf("Eval ID|%s", limit(alloc.EvalID, uuidLength)),
fmt.Sprintf("Name|%s", alloc.Name),
fmt.Sprintf("Node ID|%s", limit(alloc.NodeID, uuidLength)),
fmt.Sprintf("Node Name|%s", alloc.NodeName),
fmt.Sprintf("Job ID|%s", alloc.JobID),
- fmt.Sprintf("Job Version|%d", alloc.Job.Version),
+ fmt.Sprintf("Job Version|%d", *alloc.Job.Version),
fmt.Sprintf("Client Status|%s", alloc.ClientStatus),
fmt.Sprintf("Client Description|%s", alloc.ClientDescription),
fmt.Sprintf("Desired Status|%s", alloc.DesiredStatus),
diff --git a/command/alloc_status_test.go b/command/alloc_status_test.go
index b3c7fef20..0c0bf38e9 100644
--- a/command/alloc_status_test.go
+++ b/command/alloc_status_test.go
@@ -286,6 +286,9 @@ func TestAllocStatusCommand_ScoreMetrics(t *testing.T) {
require.Contains(out, "Placement Metrics")
require.Contains(out, mockNode1.ID)
require.Contains(out, mockNode2.ID)
+
+ // assert we sort headers alphabetically
+ require.Contains(out, "binpack node-affinity")
require.Contains(out, "final score")
}
diff --git a/command/commands.go b/command/commands.go
index 0eeade107..2c2d3052a 100644
--- a/command/commands.go
+++ b/command/commands.go
@@ -366,6 +366,11 @@ func Commands(metaPtr *Meta, agentUi cli.Ui) map[string]cli.CommandFactory {
Meta: meta,
}, nil
},
+ "monitor": func() (cli.Command, error) {
+ return &MonitorCommand{
+ Meta: meta,
+ }, nil
+ },
"namespace": func() (cli.Command, error) {
return &NamespaceCommand{
Meta: meta,
diff --git a/command/helpers.go b/command/helpers.go
index 364c73929..38b986870 100644
--- a/command/helpers.go
+++ b/command/helpers.go
@@ -421,10 +421,10 @@ func (j *JobGetter) ApiJob(jpath string) (*api.Job, error) {
return nil, fmt.Errorf("Error getting jobfile from %q: %v", jpath, err)
} else {
file, err := os.Open(job.Name())
- defer file.Close()
if err != nil {
return nil, fmt.Errorf("Error opening file %q: %v", jpath, err)
}
+ defer file.Close()
jobfile = file
}
}
diff --git a/command/helpers_test.go b/command/helpers_test.go
index 64975aad2..d11b252a2 100644
--- a/command/helpers_test.go
+++ b/command/helpers_test.go
@@ -174,17 +174,17 @@ func TestHelpers_LineLimitReader_TimeLimit(t *testing.T) {
expected := []byte("hello world")
- resultCh := make(chan struct{})
+ errCh := make(chan error)
+ resultCh := make(chan []byte)
go func() {
+ defer close(resultCh)
+ defer close(errCh)
outBytes, err := ioutil.ReadAll(limit)
if err != nil {
- t.Fatalf("ReadAll failed: %v", err)
- }
-
- if reflect.DeepEqual(outBytes, expected) {
- close(resultCh)
+ errCh <- fmt.Errorf("ReadAll failed: %v", err)
return
}
+ resultCh <- outBytes
}()
// Send the data
@@ -192,7 +192,14 @@ func TestHelpers_LineLimitReader_TimeLimit(t *testing.T) {
in.Close()
select {
- case <-resultCh:
+ case err := <-errCh:
+ if err != nil {
+ t.Fatalf("ReadAll: %v", err)
+ }
+ case outBytes := <-resultCh:
+ if !reflect.DeepEqual(outBytes, expected) {
+ t.Fatalf("got:%s, expected,%s", string(outBytes), string(expected))
+ }
case <-time.After(1 * time.Second):
t.Fatalf("did not exit by time limit")
}
diff --git a/command/job_deployments.go b/command/job_deployments.go
index 291bab23a..66ca76ca8 100644
--- a/command/job_deployments.go
+++ b/command/job_deployments.go
@@ -36,7 +36,7 @@ Deployments Options:
-verbose
Display full information.
- -all-allocs
+ -all
Display all deployments matching the job ID, including those
from an older instance of the job.
`
diff --git a/command/job_status.go b/command/job_status.go
index 858355d11..1ef6dbcd9 100644
--- a/command/job_status.go
+++ b/command/job_status.go
@@ -462,7 +462,7 @@ func formatAllocList(allocations []*api.Allocation, verbose bool, uuidLength int
limit(alloc.EvalID, uuidLength),
limit(alloc.NodeID, uuidLength),
alloc.TaskGroup,
- alloc.Job.Version,
+ *alloc.Job.Version,
alloc.DesiredStatus,
alloc.ClientStatus,
formatUnixNanoTime(alloc.CreateTime),
@@ -478,7 +478,7 @@ func formatAllocList(allocations []*api.Allocation, verbose bool, uuidLength int
limit(alloc.ID, uuidLength),
limit(alloc.NodeID, uuidLength),
alloc.TaskGroup,
- alloc.Job.Version,
+ *alloc.Job.Version,
alloc.DesiredStatus,
alloc.ClientStatus,
createTimePretty,
diff --git a/command/meta.go b/command/meta.go
index 8dc96e933..6e6f0e1e8 100644
--- a/command/meta.go
+++ b/command/meta.go
@@ -50,11 +50,12 @@ type Meta struct {
// token is used for ACLs to access privileged information
token string
- caCert string
- caPath string
- clientCert string
- clientKey string
- insecure bool
+ caCert string
+ caPath string
+ clientCert string
+ clientKey string
+ tlsServerName string
+ insecure bool
}
// FlagSet returns a FlagSet with the common flags that every
@@ -76,6 +77,7 @@ func (m *Meta) FlagSet(n string, fs FlagSetFlags) *flag.FlagSet {
f.StringVar(&m.clientCert, "client-cert", "", "")
f.StringVar(&m.clientKey, "client-key", "", "")
f.BoolVar(&m.insecure, "insecure", false, "")
+ f.StringVar(&m.tlsServerName, "tls-server-name", "", "")
f.BoolVar(&m.insecure, "tls-skip-verify", false, "")
f.StringVar(&m.token, "token", "", "")
@@ -113,6 +115,7 @@ func (m *Meta) AutocompleteFlags(fs FlagSetFlags) complete.Flags {
"-client-cert": complete.PredictFiles("*"),
"-client-key": complete.PredictFiles("*"),
"-insecure": complete.PredictNothing,
+ "-tls-server-name": complete.PredictNothing,
"-tls-skip-verify": complete.PredictNothing,
"-token": complete.PredictAnything,
}
@@ -136,13 +139,14 @@ func (m *Meta) Client() (*api.Client, error) {
}
// If we need custom TLS configuration, then set it
- if m.caCert != "" || m.caPath != "" || m.clientCert != "" || m.clientKey != "" || m.insecure {
+ if m.caCert != "" || m.caPath != "" || m.clientCert != "" || m.clientKey != "" || m.tlsServerName != "" || m.insecure {
t := &api.TLSConfig{
- CACert: m.caCert,
- CAPath: m.caPath,
- ClientCert: m.clientCert,
- ClientKey: m.clientKey,
- Insecure: m.insecure,
+ CACert: m.caCert,
+ CAPath: m.caPath,
+ ClientCert: m.clientCert,
+ ClientKey: m.clientKey,
+ TLSServerName: m.tlsServerName,
+ Insecure: m.insecure,
}
config.TLSConfig = t
}
@@ -204,6 +208,10 @@ func generalOptionsUsage() string {
Path to an unencrypted PEM encoded private key matching the
client certificate from -client-cert. Overrides the
NOMAD_CLIENT_KEY environment variable if set.
+
+ -tls-server-name=
+ The server name to use as the SNI host when connecting via
+ TLS. Overrides the NOMAD_TLS_SERVER_NAME environment variable if set.
-tls-skip-verify
Do not verify TLS certificate. This is highly not recommended. Verification
diff --git a/command/meta_test.go b/command/meta_test.go
index da20d37aa..c44a21be5 100644
--- a/command/meta_test.go
+++ b/command/meta_test.go
@@ -29,6 +29,7 @@ func TestMeta_FlagSet(t *testing.T) {
"client-cert",
"client-key",
"insecure",
+ "tls-server-name",
"tls-skip-verify",
"token",
},
diff --git a/command/monitor.go b/command/monitor.go
index 52cee4b80..c7f0f9d55 100644
--- a/command/monitor.go
+++ b/command/monitor.go
@@ -2,6 +2,7 @@ package command
import (
"fmt"
+ "sort"
"strings"
"sync"
"time"
@@ -380,7 +381,16 @@ func formatAllocMetrics(metrics *api.AllocationMetric, scores bool, prefix strin
// Add header as first row
if i == 0 {
scoreOutput[0] = "Node|"
- for scorerName := range scoreMeta.Scores {
+
+ // sort scores alphabetically
+ scores := make([]string, 0, len(scoreMeta.Scores))
+ for score := range scoreMeta.Scores {
+ scores = append(scores, score)
+ }
+ sort.Strings(scores)
+
+ // build score header output
+ for _, scorerName := range scores {
scoreOutput[0] += fmt.Sprintf("%v|", scorerName)
scorerNames = append(scorerNames, scorerName)
}
diff --git a/command/namespace.go b/command/namespace.go
index 813829d7c..8557e76ea 100644
--- a/command/namespace.go
+++ b/command/namespace.go
@@ -23,7 +23,7 @@ Usage: nomad namespace [options] [args]
Create or update a namespace:
- $ nomad namespace apply -description "My new namespace"
+ $ nomad namespace apply -description "My new namespace"
List namespaces:
diff --git a/command/node_drain_test.go b/command/node_drain_test.go
index acdf9775d..09c2d04a8 100644
--- a/command/node_drain_test.go
+++ b/command/node_drain_test.go
@@ -238,7 +238,7 @@ func TestNodeDrainCommand_Monitor(t *testing.T) {
require.Contains(out, fmt.Sprintf("Alloc %q draining", a.ID))
}
- expected := fmt.Sprintf("All allocations on node %q have stopped.\n", nodeID)
+ expected := fmt.Sprintf("All allocations on node %q have stopped\n", nodeID)
if !strings.HasSuffix(out, expected) {
t.Fatalf("expected output to end with:\n%s", expected)
}
diff --git a/command/node_status.go b/command/node_status.go
index 2084af2a6..4bbf443b9 100644
--- a/command/node_status.go
+++ b/command/node_status.go
@@ -333,7 +333,7 @@ func formatDrain(n *api.Node) string {
func (c *NodeStatusCommand) formatNode(client *api.Client, node *api.Node) int {
// Format the header output
basic := []string{
- fmt.Sprintf("ID|%s", limit(node.ID, c.length)),
+ fmt.Sprintf("ID|%s", node.ID),
fmt.Sprintf("Name|%s", node.Name),
fmt.Sprintf("Class|%s", node.NodeClass),
fmt.Sprintf("DC|%s", node.Datacenter),
diff --git a/command/node_status_test.go b/command/node_status_test.go
index 500c18a3a..4aa7f550c 100644
--- a/command/node_status_test.go
+++ b/command/node_status_test.go
@@ -137,11 +137,8 @@ func TestNodeStatusCommand_Run(t *testing.T) {
if !strings.Contains(out, "mynode") {
t.Fatalf("expect to find mynode, got: %s", out)
}
- if strings.Contains(out, nodeID) {
- t.Fatalf("expected truncated node id, got: %s", out)
- }
- if !strings.Contains(out, nodeID[:8]) {
- t.Fatalf("expected node id %q, got: %s", nodeID[:8], out)
+ if !strings.Contains(out, nodeID) {
+ t.Fatalf("expected node id %q, got: %s", nodeID, out)
}
ui.OutputWriter.Reset()
diff --git a/command/quota_apply.go b/command/quota_apply.go
index 0dee1519d..80b05c6a4 100644
--- a/command/quota_apply.go
+++ b/command/quota_apply.go
@@ -13,6 +13,7 @@ import (
"github.com/hashicorp/hcl/hcl/ast"
"github.com/hashicorp/nomad/api"
"github.com/hashicorp/nomad/helper"
+ "github.com/hashicorp/nomad/jobspec"
"github.com/mitchellh/mapstructure"
"github.com/posener/complete"
)
@@ -261,6 +262,7 @@ func parseQuotaResource(result *api.Resources, list *ast.ObjectList) error {
valid := []string{
"cpu",
"memory",
+ "network",
}
if err := helper.CheckHCLKeys(listVal, valid); err != nil {
return multierror.Prefix(err, "resources ->")
@@ -275,5 +277,20 @@ func parseQuotaResource(result *api.Resources, list *ast.ObjectList) error {
return err
}
+ // Find the network ObjectList, parse it
+ nw := listVal.Filter("network")
+ if len(nw.Items) > 0 {
+ rl, err := jobspec.ParseNetwork(nw)
+ if err != nil {
+ return multierror.Prefix(err, "resources ->")
+ }
+ if rl != nil {
+ if rl.Mode != "" || rl.HasPorts() {
+ return fmt.Errorf("resources -> network only allows mbits")
+ }
+ result.Networks = []*api.NetworkResource{rl}
+ }
+ }
+
return nil
}
diff --git a/command/quota_apply_test.go b/command/quota_apply_test.go
index d2211f0bf..6c689a9fd 100644
--- a/command/quota_apply_test.go
+++ b/command/quota_apply_test.go
@@ -8,8 +8,10 @@ import (
"strings"
"testing"
+ "github.com/hashicorp/nomad/api"
"github.com/mitchellh/cli"
"github.com/stretchr/testify/assert"
+ "github.com/stretchr/testify/require"
)
func TestQuotaApplyCommand_Implements(t *testing.T) {
@@ -97,3 +99,42 @@ func TestQuotaApplyCommand_Good_JSON(t *testing.T) {
assert.Nil(t, err)
assert.Len(t, quotas, 1)
}
+
+func TestQuotaApplyNetwork(t *testing.T) {
+ t.Parallel()
+
+ mbits := 20
+
+ cases := []struct {
+ hcl string
+ q *api.QuotaSpec
+ err string
+ }{{
+ hcl: `limit {region = "global", region_limit {network {mbits = 20}}}`,
+ q: &api.QuotaSpec{
+ Limits: []*api.QuotaLimit{{
+ Region: "global",
+ RegionLimit: &api.Resources{
+ Networks: []*api.NetworkResource{{
+ MBits: &mbits,
+ }},
+ },
+ }},
+ },
+ err: "",
+ }, {
+ hcl: `limit {region = "global", region_limit {network { mbits = 20, device = "eth0"}}}`,
+ q: nil,
+ err: "1 error(s) occurred:\n\n* limit -> region_limit -> resources -> network -> invalid key: device",
+ }}
+
+ for _, c := range cases {
+ t.Run(c.hcl, func(t *testing.T) {
+ q, err := parseQuotaSpec([]byte(c.hcl))
+ require.Equal(t, c.q, q)
+ if c.err != "" {
+ require.EqualError(t, err, c.err)
+ }
+ })
+ }
+}
diff --git a/contributing/README.md b/contributing/README.md
index 555861b85..cf0c1c7b4 100644
--- a/contributing/README.md
+++ b/contributing/README.md
@@ -3,8 +3,8 @@
This directory contains some documentation about the Nomad codebase,
aimed at readers who are interested in making code contributions.
-If you're looking for information on _using_ using, please instead refer
-to [the main Nomad website](https://nomadproject.io).
+If you're looking for information on _using_ Nomad, please instead refer
+to the [Nomad website](https://nomadproject.io).
## Architecture
@@ -38,3 +38,4 @@ developers and reviewers confidence that the proper changes have been made:
* [New `jobspec` entry](checklist-jobspec.md)
* [New CLI command](checklist-command.md)
+* [New RPC endpoint](checklist-rpc-endpoint.md)
diff --git a/contributing/checklist-jobspec.md b/contributing/checklist-jobspec.md
index 195cb0cb6..19e33521c 100644
--- a/contributing/checklist-jobspec.md
+++ b/contributing/checklist-jobspec.md
@@ -20,6 +20,7 @@
* [ ] Changelog
* [ ] Jobspec entry https://www.nomadproject.io/docs/job-specification/index.html
+* [ ] Jobspec sidebar entry https://github.com/hashicorp/nomad/blob/master/website/source/layouts/docs.erb
* [ ] Job JSON API entry https://www.nomadproject.io/api/json-jobs.html
* [ ] Sample Response output in API https://www.nomadproject.io/api/jobs.html
* [ ] Consider if it needs a guide https://www.nomadproject.io/guides/index.html
diff --git a/demo/tls/GNUmakefile b/demo/tls/GNUmakefile
index a33ae4a6e..d865bd5eb 100644
--- a/demo/tls/GNUmakefile
+++ b/demo/tls/GNUmakefile
@@ -24,7 +24,7 @@ clean: ## Remove generated files
# Generate Nomad certificate authority
ca.pem ca-key.pem ca.csr:
- @echo "==> Removing generated files..."
+ @echo "==> Generating Nomad certificate authority..."
cfssl gencert -initca ca-csr.json | cfssljson -bare ca
# Generate Nomad server certificate
diff --git a/demo/vagrant/Vagrantfile b/demo/vagrant/Vagrantfile
index 3953a4e59..17289a4eb 100644
--- a/demo/vagrant/Vagrantfile
+++ b/demo/vagrant/Vagrantfile
@@ -24,7 +24,7 @@ sudo docker --version
sudo apt-get install unzip curl vim -y
echo "Installing Nomad..."
-NOMAD_VERSION=0.8.6
+NOMAD_VERSION=0.10.1
cd /tmp/
curl -sSL https://releases.hashicorp.com/nomad/${NOMAD_VERSION}/nomad_${NOMAD_VERSION}_linux_amd64.zip -o nomad.zip
unzip nomad.zip
@@ -34,7 +34,7 @@ sudo chmod a+w /etc/nomad.d
echo "Installing Consul..."
-CONSUL_VERSION=1.4.0
+CONSUL_VERSION=1.6.1
curl -sSL https://releases.hashicorp.com/consul/${CONSUL_VERSION}/consul_${CONSUL_VERSION}_linux_amd64.zip > consul.zip
unzip /tmp/consul.zip
sudo install consul /usr/bin/consul
@@ -68,7 +68,7 @@ nomad -autocomplete-install
SCRIPT
Vagrant.configure(2) do |config|
- config.vm.box = "bento/ubuntu-16.04" # 16.04 LTS
+ config.vm.box = "bento/ubuntu-18.04" # 18.04 LTS
config.vm.hostname = "nomad"
config.vm.provision "shell", inline: $script, privileged: false
diff --git a/dist/systemd/nomad.service b/dist/systemd/nomad.service
index 035c2aa9f..927b55d09 100644
--- a/dist/systemd/nomad.service
+++ b/dist/systemd/nomad.service
@@ -22,6 +22,7 @@ RestartSec=2
StartLimitBurst=3
StartLimitIntervalSec=10
TasksMax=infinity
+OOMScoreAdjust=-1000
[Install]
WantedBy=multi-user.target
diff --git a/drivers/docker/config.go b/drivers/docker/config.go
index b18f00cbf..3b31f0da6 100644
--- a/drivers/docker/config.go
+++ b/drivers/docker/config.go
@@ -134,6 +134,25 @@ var (
Name: pluginName,
}
+ danglingContainersBlock = hclspec.NewObject(map[string]*hclspec.Spec{
+ "enabled": hclspec.NewDefault(
+ hclspec.NewAttr("enabled", "bool", false),
+ hclspec.NewLiteral(`true`),
+ ),
+ "period": hclspec.NewDefault(
+ hclspec.NewAttr("period", "string", false),
+ hclspec.NewLiteral(`"5m"`),
+ ),
+ "creation_grace": hclspec.NewDefault(
+ hclspec.NewAttr("creation_grace", "string", false),
+ hclspec.NewLiteral(`"5m"`),
+ ),
+ "dry_run": hclspec.NewDefault(
+ hclspec.NewAttr("dry_run", "bool", false),
+ hclspec.NewLiteral(`false`),
+ ),
+ })
+
// configSpec is the hcl specification returned by the ConfigSchema RPC
// and is used to parse the contents of the 'plugin "docker" {...}' block.
// Example:
@@ -195,9 +214,22 @@ var (
hclspec.NewAttr("container", "bool", false),
hclspec.NewLiteral("true"),
),
+ "dangling_containers": hclspec.NewDefault(
+ hclspec.NewBlock("dangling_containers", false, danglingContainersBlock),
+ hclspec.NewLiteral(`{
+ enabled = true
+ period = "5m"
+ creation_grace = "5m"
+ }`),
+ ),
})), hclspec.NewLiteral(`{
image = true
container = true
+ dangling_containers = {
+ enabled = true
+ period = "5m"
+ creation_grace = "5m"
+ }
}`)),
// docker volume options
@@ -244,7 +276,10 @@ var (
"cap_drop": hclspec.NewAttr("cap_drop", "list(string)", false),
"command": hclspec.NewAttr("command", "string", false),
"cpu_hard_limit": hclspec.NewAttr("cpu_hard_limit", "bool", false),
- "cpu_cfs_period": hclspec.NewAttr("cpu_cfs_period", "number", false),
+ "cpu_cfs_period": hclspec.NewDefault(
+ hclspec.NewAttr("cpu_cfs_period", "number", false),
+ hclspec.NewLiteral(`100000`),
+ ),
"devices": hclspec.NewBlockList("devices", hclspec.NewObject(map[string]*hclspec.Spec{
"host_path": hclspec.NewAttr("host_path", "string", false),
"container_path": hclspec.NewAttr("container_path", "string", false),
@@ -491,6 +526,28 @@ type DockerVolumeDriverConfig struct {
Options hclutils.MapStrStr `codec:"options"`
}
+// ContainerGCConfig controls the behavior of the GC reconciler to detects
+// dangling nomad containers that aren't tracked due to docker/nomad bugs
+type ContainerGCConfig struct {
+ // Enabled controls whether container reconciler is enabled
+ Enabled bool `codec:"enabled"`
+
+ // DryRun indicates that reconciler should log unexpectedly running containers
+ // if found without actually killing them
+ DryRun bool `codec:"dry_run"`
+
+ // PeriodStr controls the frequency of scanning containers
+ PeriodStr string `codec:"period"`
+ period time.Duration `codec:"-"`
+
+ // CreationGraceStr is the duration allowed for a newly created container
+ // to live without being registered as a running task in nomad.
+ // A container is treated as leaked if it lived more than grace duration
+ // and haven't been registered in tasks.
+ CreationGraceStr string `codec:"creation_grace"`
+ CreationGrace time.Duration `codec:"-"`
+}
+
type DriverConfig struct {
Endpoint string `codec:"endpoint"`
Auth AuthConfig `codec:"auth"`
@@ -519,6 +576,8 @@ type GCConfig struct {
ImageDelay string `codec:"image_delay"`
imageDelayDuration time.Duration `codec:"-"`
Container bool `codec:"container"`
+
+ DanglingContainers ContainerGCConfig `codec:"dangling_containers"`
}
type VolumeConfig struct {
@@ -534,6 +593,8 @@ func (d *Driver) ConfigSchema() (*hclspec.Spec, error) {
return configSpec, nil
}
+const danglingContainersCreationGraceMinimum = 1 * time.Minute
+
func (d *Driver) SetConfig(c *base.Config) error {
var config DriverConfig
if len(c.PluginConfig) != 0 {
@@ -551,6 +612,25 @@ func (d *Driver) SetConfig(c *base.Config) error {
d.config.GC.imageDelayDuration = dur
}
+ if len(d.config.GC.DanglingContainers.PeriodStr) > 0 {
+ dur, err := time.ParseDuration(d.config.GC.DanglingContainers.PeriodStr)
+ if err != nil {
+ return fmt.Errorf("failed to parse 'period' duration: %v", err)
+ }
+ d.config.GC.DanglingContainers.period = dur
+ }
+
+ if len(d.config.GC.DanglingContainers.CreationGraceStr) > 0 {
+ dur, err := time.ParseDuration(d.config.GC.DanglingContainers.CreationGraceStr)
+ if err != nil {
+ return fmt.Errorf("failed to parse 'creation_grace' duration: %v", err)
+ }
+ if dur < danglingContainersCreationGraceMinimum {
+ return fmt.Errorf("creation_grace is less than minimum, %v", danglingContainersCreationGraceMinimum)
+ }
+ d.config.GC.DanglingContainers.CreationGrace = dur
+ }
+
if c.AgentConfig != nil {
d.clientConfig = c.AgentConfig.Driver
}
@@ -568,6 +648,8 @@ func (d *Driver) SetConfig(c *base.Config) error {
d.coordinator = newDockerCoordinator(coordinatorConfig)
+ d.reconciler = newReconciler(d)
+
return nil
}
diff --git a/drivers/docker/config_test.go b/drivers/docker/config_test.go
index 35506b672..57f6725d8 100644
--- a/drivers/docker/config_test.go
+++ b/drivers/docker/config_test.go
@@ -20,9 +20,10 @@ func TestConfig_ParseHCL(t *testing.T) {
image = "redis:3.2"
}`,
&TaskConfig{
- Image: "redis:3.2",
- Devices: []DockerDevice{},
- Mounts: []DockerMount{},
+ Image: "redis:3.2",
+ Devices: []DockerDevice{},
+ Mounts: []DockerMount{},
+ CPUCFSPeriod: 100000,
},
},
}
@@ -51,36 +52,40 @@ func TestConfig_ParseJSON(t *testing.T) {
name: "nil values for blocks are safe",
input: `{"Config": {"image": "bash:3", "mounts": null}}`,
expected: TaskConfig{
- Image: "bash:3",
- Mounts: []DockerMount{},
- Devices: []DockerDevice{},
+ Image: "bash:3",
+ Mounts: []DockerMount{},
+ Devices: []DockerDevice{},
+ CPUCFSPeriod: 100000,
},
},
{
name: "nil values for 'volumes' field are safe",
input: `{"Config": {"image": "bash:3", "volumes": null}}`,
expected: TaskConfig{
- Image: "bash:3",
- Mounts: []DockerMount{},
- Devices: []DockerDevice{},
+ Image: "bash:3",
+ Mounts: []DockerMount{},
+ Devices: []DockerDevice{},
+ CPUCFSPeriod: 100000,
},
},
{
name: "nil values for 'args' field are safe",
input: `{"Config": {"image": "bash:3", "args": null}}`,
expected: TaskConfig{
- Image: "bash:3",
- Mounts: []DockerMount{},
- Devices: []DockerDevice{},
+ Image: "bash:3",
+ Mounts: []DockerMount{},
+ Devices: []DockerDevice{},
+ CPUCFSPeriod: 100000,
},
},
{
name: "nil values for string fields are safe",
input: `{"Config": {"image": "bash:3", "command": null}}`,
expected: TaskConfig{
- Image: "bash:3",
- Mounts: []DockerMount{},
- Devices: []DockerDevice{},
+ Image: "bash:3",
+ Mounts: []DockerMount{},
+ Devices: []DockerDevice{},
+ CPUCFSPeriod: 100000,
},
},
}
@@ -423,3 +428,63 @@ config {
require.EqualValues(t, expected, tc)
}
+
+// TestConfig_DriverConfig_DanglingContainers asserts that dangling_containers is parsed
+// and populated with defaults as expected
+func TestConfig_DriverConfig_DanglingContainers(t *testing.T) {
+ cases := []struct {
+ name string
+ config string
+ expected ContainerGCConfig
+ }{
+ {
+ name: "pure default",
+ config: `{}`,
+ expected: ContainerGCConfig{Enabled: true, PeriodStr: "5m", CreationGraceStr: "5m"},
+ },
+ {
+ name: "partial gc",
+ config: `{ gc { } }`,
+ expected: ContainerGCConfig{Enabled: true, PeriodStr: "5m", CreationGraceStr: "5m"},
+ },
+ {
+ name: "partial gc",
+ config: `{ gc { dangling_containers { } } }`,
+ expected: ContainerGCConfig{Enabled: true, PeriodStr: "5m", CreationGraceStr: "5m"},
+ },
+ {
+ name: "partial dangling_containers",
+ config: `{ gc { dangling_containers { enabled = false } } }`,
+ expected: ContainerGCConfig{Enabled: false, PeriodStr: "5m", CreationGraceStr: "5m"},
+ },
+ {
+ name: "incomplete dangling_containers 2",
+ config: `{ gc { dangling_containers { period = "10m" } } }`,
+ expected: ContainerGCConfig{Enabled: true, PeriodStr: "10m", CreationGraceStr: "5m"},
+ },
+ {
+ name: "full default",
+ config: `{ gc { dangling_containers {
+ enabled = false
+ dry_run = true
+ period = "10m"
+ creation_grace = "20m"
+ }}}`,
+ expected: ContainerGCConfig{
+ Enabled: false,
+ DryRun: true,
+ PeriodStr: "10m",
+ CreationGraceStr: "20m",
+ },
+ },
+ }
+
+ for _, c := range cases {
+ t.Run(c.name, func(t *testing.T) {
+ var tc DriverConfig
+ hclutils.NewConfigParser(configSpec).ParseHCL(t, "config "+c.config, &tc)
+ require.EqualValues(t, c.expected, tc.GC.DanglingContainers)
+
+ })
+ }
+}
diff --git a/drivers/docker/driver.go b/drivers/docker/driver.go
index 20b27626b..c6d448619 100644
--- a/drivers/docker/driver.go
+++ b/drivers/docker/driver.go
@@ -41,6 +41,12 @@ var (
// running operations such as waiting on containers and collect stats
waitClient *docker.Client
+ dockerTransientErrs = []string{
+ "Client.Timeout exceeded while awaiting headers",
+ "EOF",
+ "API error (500)",
+ }
+
// recoverableErrTimeouts returns a recoverable error if the error was due
// to timeouts
recoverableErrTimeouts = func(err error) error {
@@ -60,6 +66,10 @@ var (
nvidiaVisibleDevices = "NVIDIA_VISIBLE_DEVICES"
)
+const (
+ dockerLabelAllocID = "com.hashicorp.nomad.alloc_id"
+)
+
type Driver struct {
// eventer is used to handle multiplexing of TaskEvents calls such that an
// event can be broadcast to all callers
@@ -102,6 +112,8 @@ type Driver struct {
// for use during fingerprinting.
detected bool
detectedLock sync.RWMutex
+
+ reconciler *containerReconciler
}
// NewDockerDriver returns a docker implementation of a driver plugin
@@ -269,6 +281,10 @@ CREATE:
container, err := d.createContainer(client, containerCfg, driverConfig.Image)
if err != nil {
d.logger.Error("failed to create container", "error", err)
+ client.RemoveContainer(docker.RemoveContainerOptions{
+ ID: containerCfg.Name,
+ Force: true,
+ })
return nil, nil, nstructs.WrapRecoverable(fmt.Sprintf("failed to create container: %v", err), err)
}
@@ -299,8 +315,16 @@ CREATE:
// the container is started
runningContainer, err := client.InspectContainer(container.ID)
if err != nil {
+ client.RemoveContainer(docker.RemoveContainerOptions{
+ ID: container.ID,
+ Force: true,
+ })
msg := "failed to inspect started container"
d.logger.Error(msg, "error", err)
+ client.RemoveContainer(docker.RemoveContainerOptions{
+ ID: container.ID,
+ Force: true,
+ })
return nil, nil, nstructs.NewRecoverableError(fmt.Errorf("%s %s: %s", msg, container.ID, err), true)
}
container = runningContainer
@@ -391,71 +415,41 @@ CREATE:
// If the container already exists determine whether it's already
// running or if it's dead and needs to be recreated.
if strings.Contains(strings.ToLower(createErr.Error()), "container already exists") {
- containers, err := client.ListContainers(docker.ListContainersOptions{
- All: true,
- })
+
+ container, err := d.containerByName(config.Name)
if err != nil {
- d.logger.Error("failed to query list of containers matching name", "container_name", config.Name)
- return nil, recoverableErrTimeouts(fmt.Errorf("Failed to query list of containers: %s", err))
+ return nil, err
+ }
+
+ if container != nil && container.State.Running {
+ return container, nil
}
// Delete matching containers
- // Adding a / infront of the container name since Docker returns the
- // container names with a / pre-pended to the Nomad generated container names
- containerName := "/" + config.Name
- d.logger.Debug("searching for container to purge", "container_name", containerName)
- for _, shimContainer := range containers {
- d.logger.Debug("listed container", "names", hclog.Fmt("%+v", shimContainer.Names))
- found := false
- for _, name := range shimContainer.Names {
- if name == containerName {
- d.logger.Debug("Found container", "containter_name", containerName, "container_id", shimContainer.ID)
- found = true
- break
- }
- }
-
- if !found {
- continue
- }
-
- // Inspect the container and if the container isn't dead then return
- // the container
- container, err := client.InspectContainer(shimContainer.ID)
- if err != nil {
- err = fmt.Errorf("Failed to inspect container %s: %s", shimContainer.ID, err)
-
- // This error is always recoverable as it could
- // be caused by races between listing
- // containers and this container being removed.
- // See #2802
- return nil, nstructs.NewRecoverableError(err, true)
- }
- if container != nil && container.State.Running {
- return container, nil
- }
-
- err = client.RemoveContainer(docker.RemoveContainerOptions{
- ID: container.ID,
- Force: true,
- })
- if err != nil {
- d.logger.Error("failed to purge container", "container_id", container.ID)
- return nil, recoverableErrTimeouts(fmt.Errorf("Failed to purge container %s: %s", container.ID, err))
- } else if err == nil {
- d.logger.Info("purged container", "container_id", container.ID)
- }
+ err = client.RemoveContainer(docker.RemoveContainerOptions{
+ ID: container.ID,
+ Force: true,
+ })
+ if err != nil {
+ d.logger.Error("failed to purge container", "container_id", container.ID)
+ return nil, recoverableErrTimeouts(fmt.Errorf("Failed to purge container %s: %s", container.ID, err))
+ } else {
+ d.logger.Info("purged container", "container_id", container.ID)
}
if attempted < 5 {
attempted++
- time.Sleep(1 * time.Second)
+ time.Sleep(nextBackoff(attempted))
goto CREATE
}
} else if strings.Contains(strings.ToLower(createErr.Error()), "no such image") {
// There is still a very small chance this is possible even with the
// coordinator so retry.
return nil, nstructs.NewRecoverableError(createErr, true)
+ } else if isDockerTransientError(createErr) && attempted < 5 {
+ attempted++
+ time.Sleep(nextBackoff(attempted))
+ goto CREATE
}
return nil, recoverableErrTimeouts(createErr)
@@ -468,17 +462,16 @@ func (d *Driver) startContainer(c *docker.Container) error {
attempted := 0
START:
startErr := client.StartContainer(c.ID, c.HostConfig)
- if startErr == nil {
+ if startErr == nil || strings.Contains(startErr.Error(), "Container already running") {
return nil
}
d.logger.Debug("failed to start container", "container_id", c.ID, "attempt", attempted+1, "error", startErr)
- // If it is a 500 error it is likely we can retry and be successful
- if strings.Contains(startErr.Error(), "API error (500)") {
+ if isDockerTransientError(startErr) {
if attempted < 5 {
attempted++
- time.Sleep(1 * time.Second)
+ time.Sleep(nextBackoff(attempted))
goto START
}
return nstructs.NewRecoverableError(startErr, true)
@@ -487,6 +480,13 @@ START:
return recoverableErrTimeouts(startErr)
}
+// nextBackoff returns appropriate docker backoff durations after attempted attempts.
+func nextBackoff(attempted int) time.Duration {
+ // attempts in 200ms, 800ms, 3.2s, 12.8s, 51.2s
+ // TODO: add randomization factor and extract to a helper
+ return 1 << (2 * uint64(attempted)) * 50 * time.Millisecond
+}
+
// createImage creates a docker image either by pulling it from a registry or by
// loading it from the file system
func (d *Driver) createImage(task *drivers.TaskConfig, driverConfig *TaskConfig, client *docker.Client) (string, error) {
@@ -652,9 +652,21 @@ func (d *Driver) containerBinds(task *drivers.TaskConfig, driverConfig *TaskConf
return binds, nil
}
+var userMountToUnixMount = map[string]string{
+ // Empty string maps to `rprivate` for backwards compatibility in restored
+ // older tasks, where mount propagation will not be present.
+ "": "rprivate",
+ nstructs.VolumeMountPropagationPrivate: "rprivate",
+ nstructs.VolumeMountPropagationHostToTask: "rslave",
+ nstructs.VolumeMountPropagationBidirectional: "rshared",
+}
+
func (d *Driver) createContainerConfig(task *drivers.TaskConfig, driverConfig *TaskConfig,
imageID string) (docker.CreateContainerOptions, error) {
+ // ensure that PortMap variables are populated early on
+ task.Env = taskenv.SetPortMapEnvs(task.Env, driverConfig.PortMap)
+
logger := d.logger.With("task_name", task.Name)
var c docker.CreateContainerOptions
if task.Resources == nil {
@@ -840,13 +852,24 @@ func (d *Driver) createContainerConfig(task *drivers.TaskConfig, driverConfig *T
hostConfig.Mounts = append(hostConfig.Mounts, hm)
}
+
for _, m := range task.Mounts {
- hostConfig.Mounts = append(hostConfig.Mounts, docker.HostMount{
+ hm := docker.HostMount{
Type: "bind",
Target: m.TaskPath,
Source: m.HostPath,
ReadOnly: m.Readonly,
- })
+ }
+
+ // MountPropagation is only supported by Docker on Linux:
+ // https://docs.docker.com/storage/bind-mounts/#configure-bind-propagation
+ if runtime.GOOS == "linux" {
+ hm.BindOptions = &docker.BindOptions{
+ Propagation: userMountToUnixMount[m.PropagationMode],
+ }
+ }
+
+ hostConfig.Mounts = append(hostConfig.Mounts, hm)
}
// set DNS search domains and extra hosts
@@ -889,7 +912,6 @@ func (d *Driver) createContainerConfig(task *drivers.TaskConfig, driverConfig *T
// Setup port mapping and exposed ports
if len(task.Resources.NomadResources.Networks) == 0 {
- logger.Debug("no network interfaces are available")
if len(driverConfig.PortMap) > 0 {
return c, fmt.Errorf("Trying to map ports but no network interface is available")
}
@@ -964,9 +986,16 @@ func (d *Driver) createContainerConfig(task *drivers.TaskConfig, driverConfig *T
if len(driverConfig.Labels) > 0 {
config.Labels = driverConfig.Labels
- logger.Debug("applied labels on the container", "labels", config.Labels)
}
+ labels := make(map[string]string, len(driverConfig.Labels)+1)
+ for k, v := range driverConfig.Labels {
+ labels[k] = v
+ }
+ labels[dockerLabelAllocID] = task.AllocID
+ config.Labels = labels
+ logger.Debug("applied labels on the container", "labels", config.Labels)
+
config.Env = task.EnvList()
containerName := fmt.Sprintf("%s-%s", strings.Replace(task.Name, "/", "_", -1), task.AllocID)
@@ -1055,6 +1084,59 @@ func (d *Driver) detectIP(c *docker.Container, driverConfig *TaskConfig) (string
return ip, auto
}
+// containerByName finds a running container by name, and returns an error
+// if the container is dead or can't be found.
+func (d *Driver) containerByName(name string) (*docker.Container, error) {
+
+ client, _, err := d.dockerClients()
+ if err != nil {
+ return nil, err
+ }
+ containers, err := client.ListContainers(docker.ListContainersOptions{
+ All: true,
+ })
+ if err != nil {
+ d.logger.Error("failed to query list of containers matching name",
+ "container_name", name)
+ return nil, recoverableErrTimeouts(
+ fmt.Errorf("Failed to query list of containers: %s", err))
+ }
+
+ // container names with a / pre-pended to the Nomad generated container names
+ containerName := "/" + name
+ var (
+ shimContainer docker.APIContainers
+ found bool
+ )
+OUTER:
+ for _, shimContainer = range containers {
+ d.logger.Trace("listed container", "names", hclog.Fmt("%+v", shimContainer.Names))
+ for _, name := range shimContainer.Names {
+ if name == containerName {
+ d.logger.Trace("Found container",
+ "container_name", containerName, "container_id", shimContainer.ID)
+ found = true
+ break OUTER
+ }
+ }
+ }
+ if !found {
+ return nil, nil
+ }
+
+ container, err := client.InspectContainer(shimContainer.ID)
+ if err != nil {
+ err = fmt.Errorf("Failed to inspect container %s: %s", shimContainer.ID, err)
+
+ // This error is always recoverable as it could
+ // be caused by races between listing
+ // containers and this container being removed.
+ // See #2802
+ return nil, nstructs.NewRecoverableError(err, true)
+ }
+ return container, nil
+}
+
// validateCommand validates that the command only has a single value and
// returns a user friendly error message telling them to use the passed
// argField.
@@ -1455,3 +1537,18 @@ func sliceMergeUlimit(ulimitsRaw map[string]string) ([]docker.ULimit, error) {
func (d *Driver) Shutdown() {
d.signalShutdown()
}
+
+func isDockerTransientError(err error) bool {
+ if err == nil {
+ return false
+ }
+
+ errMsg := err.Error()
+ for _, te := range dockerTransientErrs {
+ if strings.Contains(errMsg, te) {
+ return true
+ }
+ }
+
+ return false
+}
diff --git a/drivers/docker/driver_test.go b/drivers/docker/driver_test.go
index 50e6d9778..0aa8ccb2b 100644
--- a/drivers/docker/driver_test.go
+++ b/drivers/docker/driver_test.go
@@ -19,6 +19,8 @@ import (
"github.com/hashicorp/nomad/client/taskenv"
"github.com/hashicorp/nomad/client/testutil"
"github.com/hashicorp/nomad/devices/gpu/nvidia"
+ "github.com/hashicorp/nomad/helper/pluginutils/hclspecutils"
+ "github.com/hashicorp/nomad/helper/pluginutils/hclutils"
"github.com/hashicorp/nomad/helper/pluginutils/loader"
"github.com/hashicorp/nomad/helper/testlog"
"github.com/hashicorp/nomad/helper/uuid"
@@ -103,6 +105,7 @@ func dockerTask(t *testing.T) (*drivers.TaskConfig, *TaskConfig, []int) {
LinuxResources: &drivers.LinuxResources{
CPUShares: 512,
MemoryLimitBytes: 256 * 1024 * 1024,
+ PercentTicks: float64(512) / float64(4096),
},
},
}
@@ -905,7 +908,8 @@ func TestDockerDriver_Labels(t *testing.T) {
t.Fatalf("err: %v", err)
}
- require.Equal(t, 2, len(container.Config.Labels))
+ // expect to see 1 additional standard labels
+ require.Equal(t, len(cfg.Labels)+1, len(container.Config.Labels))
for k, v := range cfg.Labels {
require.Equal(t, v, container.Config.Labels[k])
}
@@ -1008,6 +1012,56 @@ func TestDockerDriver_CreateContainerConfig(t *testing.T) {
require.Equal(t, containerName, c.Name)
}
+func TestDockerDriver_CreateContainerConfig_User(t *testing.T) {
+ t.Parallel()
+
+ task, cfg, _ := dockerTask(t)
+ task.User = "random-user-1"
+
+ require.NoError(t, task.EncodeConcreteDriverConfig(cfg))
+
+ dh := dockerDriverHarness(t, nil)
+ driver := dh.Impl().(*Driver)
+
+ c, err := driver.createContainerConfig(task, cfg, "org/repo:0.1")
+ require.NoError(t, err)
+
+ require.Equal(t, task.User, c.Config.User)
+}
+
+func TestDockerDriver_CreateContainerConfig_Labels(t *testing.T) {
+ t.Parallel()
+
+ task, cfg, _ := dockerTask(t)
+ task.AllocID = uuid.Generate()
+ task.JobName = "redis-demo-job"
+
+ cfg.Labels = map[string]string{
+ "user_label": "user_value",
+
+ // com.hashicorp.nomad. labels are reserved and
+ // cannot be overridden
+ "com.hashicorp.nomad.alloc_id": "bad_value",
+ }
+
+ require.NoError(t, task.EncodeConcreteDriverConfig(cfg))
+
+ dh := dockerDriverHarness(t, nil)
+ driver := dh.Impl().(*Driver)
+
+ c, err := driver.createContainerConfig(task, cfg, "org/repo:0.1")
+ require.NoError(t, err)
+
+ expectedLabels := map[string]string{
+ // user provided labels
+ "user_label": "user_value",
+ // default labels
+ "com.hashicorp.nomad.alloc_id": task.AllocID,
+ }
+
+ require.Equal(t, expectedLabels, c.Config.Labels)
+}
+
func TestDockerDriver_CreateContainerConfig_Logging(t *testing.T) {
t.Parallel()
@@ -1412,6 +1466,10 @@ func TestDockerDriver_PortsMapping(t *testing.T) {
container, err := client.InspectContainer(handle.containerID)
require.NoError(t, err)
+ // Verify that the port environment variables are set
+ require.Contains(t, container.Config.Env, "NOMAD_PORT_main=8080")
+ require.Contains(t, container.Config.Env, "NOMAD_PORT_REDIS=6379")
+
// Verify that the correct ports are EXPOSED
expectedExposedPorts := map[docker.Port]struct{}{
docker.Port("8080/tcp"): {},
@@ -1437,6 +1495,41 @@ func TestDockerDriver_PortsMapping(t *testing.T) {
require.Exactly(t, expectedPortBindings, container.HostConfig.PortBindings)
}
+func TestDockerDriver_CreateContainerConfig_PortsMapping(t *testing.T) {
+ t.Parallel()
+
+ task, cfg, port := dockerTask(t)
+ res := port[0]
+ dyn := port[1]
+ cfg.PortMap = map[string]int{
+ "main": 8080,
+ "REDIS": 6379,
+ }
+ dh := dockerDriverHarness(t, nil)
+ driver := dh.Impl().(*Driver)
+
+ c, err := driver.createContainerConfig(task, cfg, "org/repo:0.1")
+ require.NoError(t, err)
+
+ require.Equal(t, "org/repo:0.1", c.Config.Image)
+ require.Contains(t, c.Config.Env, "NOMAD_PORT_main=8080")
+ require.Contains(t, c.Config.Env, "NOMAD_PORT_REDIS=6379")
+
+ // Verify that the correct ports are FORWARDED
+ hostIP := "127.0.0.1"
+ if runtime.GOOS == "windows" {
+ hostIP = ""
+ }
+ expectedPortBindings := map[docker.Port][]docker.PortBinding{
+ docker.Port("8080/tcp"): {{HostIP: hostIP, HostPort: fmt.Sprintf("%d", res)}},
+ docker.Port("8080/udp"): {{HostIP: hostIP, HostPort: fmt.Sprintf("%d", res)}},
+ docker.Port("6379/tcp"): {{HostIP: hostIP, HostPort: fmt.Sprintf("%d", dyn)}},
+ docker.Port("6379/udp"): {{HostIP: hostIP, HostPort: fmt.Sprintf("%d", dyn)}},
+ }
+ require.Exactly(t, expectedPortBindings, c.HostConfig.PortBindings)
+
+}
+
func TestDockerDriver_CleanupContainer(t *testing.T) {
if !tu.IsCI() {
t.Parallel()
@@ -2337,3 +2430,101 @@ func waitForExist(t *testing.T, client *docker.Client, containerID string) {
require.NoError(t, err)
})
}
+
+// TestDockerDriver_CreationIdempotent asserts that createContainer and
+// and startContainers functions are idempotent, as we have some retry
+// logic there without ensureing we delete/destroy containers
+func TestDockerDriver_CreationIdempotent(t *testing.T) {
+ if !tu.IsCI() {
+ t.Parallel()
+ }
+ testutil.DockerCompatible(t)
+
+ task, cfg, _ := dockerTask(t)
+ require.NoError(t, task.EncodeConcreteDriverConfig(cfg))
+
+ client := newTestDockerClient(t)
+ driver := dockerDriverHarness(t, nil)
+ cleanup := driver.MkAllocDir(task, true)
+ defer cleanup()
+
+ copyImage(t, task.TaskDir(), "busybox.tar")
+
+ d, ok := driver.Impl().(*Driver)
+ require.True(t, ok)
+
+ _, err := d.createImage(task, cfg, client)
+ require.NoError(t, err)
+
+ containerCfg, err := d.createContainerConfig(task, cfg, cfg.Image)
+ require.NoError(t, err)
+
+ c, err := d.createContainer(client, containerCfg, cfg.Image)
+ require.NoError(t, err)
+ defer client.RemoveContainer(docker.RemoveContainerOptions{
+ ID: c.ID,
+ Force: true,
+ })
+
+ // calling createContainer again creates a new one and remove old one
+ c2, err := d.createContainer(client, containerCfg, cfg.Image)
+ require.NoError(t, err)
+ defer client.RemoveContainer(docker.RemoveContainerOptions{
+ ID: c2.ID,
+ Force: true,
+ })
+
+ require.NotEqual(t, c.ID, c2.ID)
+ // old container was destroyed
+ {
+ _, err := client.InspectContainer(c.ID)
+ require.Error(t, err)
+ require.Contains(t, err.Error(), NoSuchContainerError)
+ }
+
+ // now start container twice
+ require.NoError(t, d.startContainer(c2))
+ require.NoError(t, d.startContainer(c2))
+
+ tu.WaitForResult(func() (bool, error) {
+ c, err := client.InspectContainer(c2.ID)
+ if err != nil {
+ return false, fmt.Errorf("failed to get container status: %v", err)
+ }
+
+ if !c.State.Running {
+ return false, fmt.Errorf("container is not running but %v", c.State)
+ }
+
+ return true, nil
+ }, func(err error) {
+ require.NoError(t, err)
+ })
+}
+
+// TestDockerDriver_CreateContainerConfig_CPUHardLimit asserts that a default
+// CPU quota and period are set when cpu_hard_limit = true.
+func TestDockerDriver_CreateContainerConfig_CPUHardLimit(t *testing.T) {
+ t.Parallel()
+
+ task, _, _ := dockerTask(t)
+
+ dh := dockerDriverHarness(t, nil)
+ driver := dh.Impl().(*Driver)
+ schema, _ := driver.TaskConfigSchema()
+ spec, _ := hclspecutils.Convert(schema)
+
+ val, _, _ := hclutils.ParseHclInterface(map[string]interface{}{
+ "image": "foo/bar",
+ "cpu_hard_limit": true,
+ }, spec, nil)
+
+ require.NoError(t, task.EncodeDriverConfig(val))
+ cfg := &TaskConfig{}
+ require.NoError(t, task.DecodeDriverConfig(cfg))
+ c, err := driver.createContainerConfig(task, cfg, "org/repo:0.1")
+ require.NoError(t, err)
+
+ require.NotZero(t, c.HostConfig.CPUQuota)
+ require.NotZero(t, c.HostConfig.CPUPeriod)
+}
diff --git a/drivers/docker/driver_unix_test.go b/drivers/docker/driver_unix_test.go
index 9faa95326..6f312a1ec 100644
--- a/drivers/docker/driver_unix_test.go
+++ b/drivers/docker/driver_unix_test.go
@@ -7,6 +7,7 @@ import (
"io"
"os"
"path/filepath"
+ "runtime"
"sort"
"strconv"
"strings"
@@ -598,22 +599,32 @@ func TestDockerDriver_CreateContainerConfig_MountsCombined(t *testing.T) {
c, err := driver.createContainerConfig(task, cfg, "org/repo:0.1")
require.NoError(t, err)
-
expectedMounts := []docker.HostMount{
{
- Type: "bind",
- Source: "/tmp/cfg-mount",
- Target: "/container/tmp/cfg-mount",
- ReadOnly: false,
- BindOptions: &docker.BindOptions{},
+ Type: "bind",
+ Source: "/tmp/cfg-mount",
+ Target: "/container/tmp/cfg-mount",
+ ReadOnly: false,
+ BindOptions: &docker.BindOptions{
+ Propagation: "",
+ },
},
{
Type: "bind",
Source: "/tmp/task-mount",
Target: "/container/tmp/task-mount",
ReadOnly: true,
+ BindOptions: &docker.BindOptions{
+ Propagation: "rprivate",
+ },
},
}
+
+ if runtime.GOOS != "linux" {
+ expectedMounts[0].BindOptions = &docker.BindOptions{}
+ expectedMounts[1].BindOptions = &docker.BindOptions{}
+ }
+
foundMounts := c.HostConfig.Mounts
sort.Slice(foundMounts, func(i, j int) bool {
return foundMounts[i].Target < foundMounts[j].Target
diff --git a/drivers/docker/fingerprint.go b/drivers/docker/fingerprint.go
index 694a8ce33..e6ffabc5c 100644
--- a/drivers/docker/fingerprint.go
+++ b/drivers/docker/fingerprint.go
@@ -13,6 +13,10 @@ import (
)
func (d *Driver) Fingerprint(ctx context.Context) (<-chan *drivers.Fingerprint, error) {
+ // start reconciler when we start fingerprinting
+ // this is the only method called when driver is launched properly
+ d.reconciler.Start()
+
ch := make(chan *drivers.Fingerprint)
go d.handleFingerprint(ctx, ch)
return ch, nil
diff --git a/drivers/docker/network.go b/drivers/docker/network.go
index bbe69a513..400fc062c 100644
--- a/drivers/docker/network.go
+++ b/drivers/docker/network.go
@@ -12,11 +12,11 @@ import (
// the parent container so tasks can configure their network mode accordingly
const dockerNetSpecLabelKey = "docker_sandbox_container_id"
-func (d *Driver) CreateNetwork(allocID string) (*drivers.NetworkIsolationSpec, error) {
+func (d *Driver) CreateNetwork(allocID string) (*drivers.NetworkIsolationSpec, bool, error) {
// Initialize docker API clients
client, _, err := d.dockerClients()
if err != nil {
- return nil, fmt.Errorf("failed to connect to docker daemon: %s", err)
+ return nil, false, fmt.Errorf("failed to connect to docker daemon: %s", err)
}
repo, _ := parseDockerImage(d.config.InfraImage)
@@ -29,35 +29,52 @@ func (d *Driver) CreateNetwork(allocID string) (*drivers.NetworkIsolationSpec, e
}
_, err = d.coordinator.PullImage(d.config.InfraImage, authOptions, allocID, noopLogEventFn)
if err != nil {
- return nil, err
+ return nil, false, err
}
config, err := d.createSandboxContainerConfig(allocID)
if err != nil {
- return nil, err
+ return nil, false, err
}
- container, err := d.createContainer(client, *config, d.config.InfraImage)
+ specFromContainer := func(c *docker.Container) *drivers.NetworkIsolationSpec {
+ return &drivers.NetworkIsolationSpec{
+ Mode: drivers.NetIsolationModeGroup,
+ Path: c.NetworkSettings.SandboxKey,
+ Labels: map[string]string{
+ dockerNetSpecLabelKey: c.ID,
+ },
+ }
+ }
+
+ // We want to return a flag that tells us if the container already
+ // existed so that callers can decide whether or not to recreate
+ // the task's network namespace associations.
+ container, err := d.containerByName(config.Name)
if err != nil {
- return nil, err
+ return nil, false, err
+ }
+ if container != nil && container.State.Running {
+ return specFromContainer(container), false, nil
}
- if err := d.startContainer(container); err != nil {
- return nil, err
- }
-
- c, err := client.InspectContainer(container.ID)
+ container, err = d.createContainer(client, *config, d.config.InfraImage)
if err != nil {
- return nil, err
+ return nil, false, err
}
- return &drivers.NetworkIsolationSpec{
- Mode: drivers.NetIsolationModeGroup,
- Path: c.NetworkSettings.SandboxKey,
- Labels: map[string]string{
- dockerNetSpecLabelKey: c.ID,
- },
- }, nil
+ if err = d.startContainer(container); err != nil {
+ return nil, false, err
+ }
+
+ // until the container is started, InspectContainer
+ // returns a mostly-empty struct
+ container, err = client.InspectContainer(container.ID)
+ if err != nil {
+ return nil, false, err
+ }
+
+ return specFromContainer(container), true, nil
}
func (d *Driver) DestroyNetwork(allocID string, spec *drivers.NetworkIsolationSpec) error {
diff --git a/drivers/docker/reconciler.go b/drivers/docker/reconciler.go
new file mode 100644
index 000000000..16750fde6
--- /dev/null
+++ b/drivers/docker/reconciler.go
@@ -0,0 +1,228 @@
+package docker
+
+import (
+ "context"
+ "fmt"
+ "regexp"
+ "sync"
+ "time"
+
+ docker "github.com/fsouza/go-dockerclient"
+ hclog "github.com/hashicorp/go-hclog"
+)
+
+// containerReconciler detects and kills unexpectedly running containers.
+//
+// Due to Docker architecture and network based communication, it is
+// possible for Docker to start a container successfully, but have the
+// creation API call fail with a network error. containerReconciler
+// scans for these untracked containers and kill them.
+type containerReconciler struct {
+ ctx context.Context
+ config *ContainerGCConfig
+ client *docker.Client
+ logger hclog.Logger
+
+ isDriverHealthy func() bool
+ trackedContainers func() map[string]bool
+ isNomadContainer func(c docker.APIContainers) bool
+
+ once sync.Once
+}
+
+func newReconciler(d *Driver) *containerReconciler {
+ return &containerReconciler{
+ ctx: d.ctx,
+ config: &d.config.GC.DanglingContainers,
+ client: client,
+ logger: d.logger,
+
+ isDriverHealthy: func() bool { return d.previouslyDetected() && d.fingerprintSuccessful() },
+ trackedContainers: d.trackedContainers,
+ isNomadContainer: isNomadContainer,
+ }
+}
+
+func (r *containerReconciler) Start() {
+ if !r.config.Enabled {
+ r.logger.Debug("skipping dangling containers handling; is disabled")
+ return
+ }
+
+ r.once.Do(func() {
+ go r.removeDanglingContainersGoroutine()
+ })
+}
+
+func (r *containerReconciler) removeDanglingContainersGoroutine() {
+ period := r.config.period
+
+ lastIterSucceeded := true
+
+ // ensure that we wait for at least a period or creation timeout
+ // for first container GC iteration
+ // The initial period is a grace period for restore allocation
+ // before a driver may kill containers launched by an earlier nomad
+ // process.
+ initialDelay := period
+ if r.config.CreationGrace > initialDelay {
+ initialDelay = r.config.CreationGrace
+ }
+
+ timer := time.NewTimer(initialDelay)
+ for {
+ select {
+ case <-timer.C:
+ if r.isDriverHealthy() {
+ err := r.removeDanglingContainersIteration()
+ if err != nil && lastIterSucceeded {
+ r.logger.Warn("failed to remove dangling containers", "error", err)
+ }
+ lastIterSucceeded = (err == nil)
+ }
+
+ timer.Reset(period)
+ case <-r.ctx.Done():
+ return
+ }
+ }
+}
+
+func (r *containerReconciler) removeDanglingContainersIteration() error {
+ cutoff := time.Now().Add(-r.config.CreationGrace)
+ tracked := r.trackedContainers()
+ untracked, err := r.untrackedContainers(tracked, cutoff)
+ if err != nil {
+ return fmt.Errorf("failed to find untracked containers: %v", err)
+ }
+
+ if len(untracked) == 0 {
+ return nil
+ }
+
+ if r.config.DryRun {
+ r.logger.Info("detected untracked containers", "container_ids", untracked)
+ return nil
+ }
+
+ for _, id := range untracked {
+ ctx, cancel := r.dockerAPIQueryContext()
+ err := client.RemoveContainer(docker.RemoveContainerOptions{
+ Context: ctx,
+ ID: id,
+ Force: true,
+ })
+ cancel()
+ if err != nil {
+ r.logger.Warn("failed to remove untracked container", "container_id", id, "error", err)
+ } else {
+ r.logger.Info("removed untracked container", "container_id", id)
+ }
+ }
+
+ return nil
+}
+
+// untrackedContainers returns the ids of containers that suspected
+// to have been started by Nomad but aren't tracked by this driver
+func (r *containerReconciler) untrackedContainers(tracked map[string]bool, cutoffTime time.Time) ([]string, error) {
+ result := []string{}
+
+ ctx, cancel := r.dockerAPIQueryContext()
+ defer cancel()
+
+ cc, err := client.ListContainers(docker.ListContainersOptions{
+ Context: ctx,
+ All: false, // only reconcile running containers
+ })
+ if err != nil {
+ return nil, fmt.Errorf("failed to list containers: %v", err)
+ }
+
+ cutoff := cutoffTime.Unix()
+
+ for _, c := range cc {
+ if tracked[c.ID] {
+ continue
+ }
+
+ if c.Created > cutoff {
+ continue
+ }
+
+ if !r.isNomadContainer(c) {
+ continue
+ }
+
+ result = append(result, c.ID)
+ }
+
+ return result, nil
+}
+
+// dockerAPIQueryTimeout returns a context for docker API response with an appropriate timeout
+// to protect against wedged locked-up API call.
+//
+// We'll try hitting Docker API on subsequent iteration.
+func (r *containerReconciler) dockerAPIQueryContext() (context.Context, context.CancelFunc) {
+ // use a reasoanble floor to avoid very small limit
+ timeout := 30 * time.Second
+
+ if timeout < r.config.period {
+ timeout = r.config.period
+ }
+
+ return context.WithTimeout(context.Background(), timeout)
+}
+
+func isNomadContainer(c docker.APIContainers) bool {
+ if _, ok := c.Labels[dockerLabelAllocID]; ok {
+ return true
+ }
+
+ // pre-0.10 containers aren't tagged or labeled in any way,
+ // so use cheap heuristic based on mount paths
+ // before inspecting container details
+ if !hasMount(c, "/alloc") ||
+ !hasMount(c, "/local") ||
+ !hasMount(c, "/secrets") ||
+ !hasNomadName(c) {
+ return false
+ }
+
+ return true
+}
+
+func hasMount(c docker.APIContainers, p string) bool {
+ for _, m := range c.Mounts {
+ if m.Destination == p {
+ return true
+ }
+ }
+
+ return false
+}
+
+var nomadContainerNamePattern = regexp.MustCompile(`\/.*-[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}`)
+
+func hasNomadName(c docker.APIContainers) bool {
+ for _, n := range c.Names {
+ if nomadContainerNamePattern.MatchString(n) {
+ return true
+ }
+ }
+
+ return false
+}
+
+func (d *Driver) trackedContainers() map[string]bool {
+ d.tasks.lock.RLock()
+ defer d.tasks.lock.RUnlock()
+
+ r := make(map[string]bool, len(d.tasks.store))
+ for _, h := range d.tasks.store {
+ r[h.containerID] = true
+ }
+
+ return r
+}
diff --git a/drivers/docker/reconciler_test.go b/drivers/docker/reconciler_test.go
new file mode 100644
index 000000000..71221464a
--- /dev/null
+++ b/drivers/docker/reconciler_test.go
@@ -0,0 +1,202 @@
+package docker
+
+import (
+ "encoding/json"
+ "os"
+ "testing"
+ "time"
+
+ docker "github.com/fsouza/go-dockerclient"
+ "github.com/hashicorp/nomad/client/testutil"
+ "github.com/hashicorp/nomad/helper/uuid"
+ "github.com/stretchr/testify/require"
+)
+
+func fakeContainerList(t *testing.T) (nomadContainer, nonNomadContainer docker.APIContainers) {
+ path := "./test-resources/docker/reconciler_containers_list.json"
+
+ f, err := os.Open(path)
+ if err != nil {
+ t.Fatalf("failed to open file: %v", err)
+ }
+
+ var sampleContainerList []docker.APIContainers
+ err = json.NewDecoder(f).Decode(&sampleContainerList)
+ if err != nil {
+ t.Fatalf("failed to decode container list: %v", err)
+ }
+
+ return sampleContainerList[0], sampleContainerList[1]
+}
+
+func Test_HasMount(t *testing.T) {
+ nomadContainer, nonNomadContainer := fakeContainerList(t)
+
+ require.True(t, hasMount(nomadContainer, "/alloc"))
+ require.True(t, hasMount(nomadContainer, "/data"))
+ require.True(t, hasMount(nomadContainer, "/secrets"))
+ require.False(t, hasMount(nomadContainer, "/random"))
+
+ require.False(t, hasMount(nonNomadContainer, "/alloc"))
+ require.False(t, hasMount(nonNomadContainer, "/data"))
+ require.False(t, hasMount(nonNomadContainer, "/secrets"))
+ require.False(t, hasMount(nonNomadContainer, "/random"))
+}
+
+func Test_HasNomadName(t *testing.T) {
+ nomadContainer, nonNomadContainer := fakeContainerList(t)
+
+ require.True(t, hasNomadName(nomadContainer))
+ require.False(t, hasNomadName(nonNomadContainer))
+}
+
+// TestDanglingContainerRemoval asserts containers without corresponding tasks
+// are removed after the creation grace period.
+func TestDanglingContainerRemoval(t *testing.T) {
+ testutil.DockerCompatible(t)
+
+ // start two containers: one tracked nomad container, and one unrelated container
+ task, cfg, _ := dockerTask(t)
+ require.NoError(t, task.EncodeConcreteDriverConfig(cfg))
+
+ client, d, handle, cleanup := dockerSetup(t, task)
+ defer cleanup()
+ require.NoError(t, d.WaitUntilStarted(task.ID, 5*time.Second))
+
+ nonNomadContainer, err := client.CreateContainer(docker.CreateContainerOptions{
+ Name: "mytest-image-" + uuid.Generate(),
+ Config: &docker.Config{
+ Image: cfg.Image,
+ Cmd: append([]string{cfg.Command}, cfg.Args...),
+ },
+ })
+ require.NoError(t, err)
+ defer client.RemoveContainer(docker.RemoveContainerOptions{
+ ID: nonNomadContainer.ID,
+ Force: true,
+ })
+
+ err = client.StartContainer(nonNomadContainer.ID, nil)
+ require.NoError(t, err)
+
+ untrackedNomadContainer, err := client.CreateContainer(docker.CreateContainerOptions{
+ Name: "mytest-image-" + uuid.Generate(),
+ Config: &docker.Config{
+ Image: cfg.Image,
+ Cmd: append([]string{cfg.Command}, cfg.Args...),
+ Labels: map[string]string{
+ dockerLabelAllocID: uuid.Generate(),
+ },
+ },
+ })
+ require.NoError(t, err)
+ defer client.RemoveContainer(docker.RemoveContainerOptions{
+ ID: untrackedNomadContainer.ID,
+ Force: true,
+ })
+
+ err = client.StartContainer(untrackedNomadContainer.ID, nil)
+ require.NoError(t, err)
+
+ dd := d.Impl().(*Driver)
+
+ reconciler := newReconciler(dd)
+ trackedContainers := map[string]bool{handle.containerID: true}
+
+ tf := reconciler.trackedContainers()
+ require.Contains(t, tf, handle.containerID)
+ require.NotContains(t, tf, untrackedNomadContainer)
+ require.NotContains(t, tf, nonNomadContainer.ID)
+
+ // assert tracked containers should never be untracked
+ untracked, err := reconciler.untrackedContainers(trackedContainers, time.Now())
+ require.NoError(t, err)
+ require.NotContains(t, untracked, handle.containerID)
+ require.NotContains(t, untracked, nonNomadContainer.ID)
+ require.Contains(t, untracked, untrackedNomadContainer.ID)
+
+ // assert we recognize nomad containers with appropriate cutoff
+ untracked, err = reconciler.untrackedContainers(map[string]bool{}, time.Now())
+ require.NoError(t, err)
+ require.Contains(t, untracked, handle.containerID)
+ require.Contains(t, untracked, untrackedNomadContainer.ID)
+ require.NotContains(t, untracked, nonNomadContainer.ID)
+
+ // but ignore if creation happened before cutoff
+ untracked, err = reconciler.untrackedContainers(map[string]bool{}, time.Now().Add(-1*time.Minute))
+ require.NoError(t, err)
+ require.NotContains(t, untracked, handle.containerID)
+ require.NotContains(t, untracked, untrackedNomadContainer.ID)
+ require.NotContains(t, untracked, nonNomadContainer.ID)
+
+ // a full integration tests to assert that containers are removed
+ prestineDriver := dockerDriverHarness(t, nil).Impl().(*Driver)
+ prestineDriver.config.GC.DanglingContainers = ContainerGCConfig{
+ Enabled: true,
+ period: 1 * time.Second,
+ CreationGrace: 0 * time.Second,
+ }
+ nReconciler := newReconciler(prestineDriver)
+
+ require.NoError(t, nReconciler.removeDanglingContainersIteration())
+
+ _, err = client.InspectContainer(nonNomadContainer.ID)
+ require.NoError(t, err)
+
+ _, err = client.InspectContainer(handle.containerID)
+ require.Error(t, err)
+ require.Contains(t, err.Error(), NoSuchContainerError)
+
+ _, err = client.InspectContainer(untrackedNomadContainer.ID)
+ require.Error(t, err)
+ require.Contains(t, err.Error(), NoSuchContainerError)
+}
+
+// TestDanglingContainerRemoval_Stopped asserts stopped containers without
+// corresponding tasks are not removed even if after creation grace period.
+func TestDanglingContainerRemoval_Stopped(t *testing.T) {
+ testutil.DockerCompatible(t)
+
+ _, cfg, _ := dockerTask(t)
+
+ client := newTestDockerClient(t)
+ container, err := client.CreateContainer(docker.CreateContainerOptions{
+ Name: "mytest-image-" + uuid.Generate(),
+ Config: &docker.Config{
+ Image: cfg.Image,
+ Cmd: append([]string{cfg.Command}, cfg.Args...),
+ Labels: map[string]string{
+ dockerLabelAllocID: uuid.Generate(),
+ },
+ },
+ })
+ require.NoError(t, err)
+ defer client.RemoveContainer(docker.RemoveContainerOptions{
+ ID: container.ID,
+ Force: true,
+ })
+
+ err = client.StartContainer(container.ID, nil)
+ require.NoError(t, err)
+
+ err = client.StopContainer(container.ID, 60)
+ require.NoError(t, err)
+
+ dd := dockerDriverHarness(t, nil).Impl().(*Driver)
+ reconciler := newReconciler(dd)
+
+ // assert nomad container is tracked, and we ignore stopped one
+ tf := reconciler.trackedContainers()
+ require.NotContains(t, tf, container.ID)
+
+ untracked, err := reconciler.untrackedContainers(map[string]bool{}, time.Now())
+ require.NoError(t, err)
+ require.NotContains(t, untracked, container.ID)
+
+ // if we start container again, it'll be marked as untracked
+ require.NoError(t, client.StartContainer(container.ID, nil))
+
+ untracked, err = reconciler.untrackedContainers(map[string]bool{}, time.Now())
+ require.NoError(t, err)
+ require.Contains(t, untracked, container.ID)
+}
diff --git a/drivers/docker/test-resources/docker/reconciler_containers_list.json b/drivers/docker/test-resources/docker/reconciler_containers_list.json
new file mode 100644
index 000000000..50e3086b7
--- /dev/null
+++ b/drivers/docker/test-resources/docker/reconciler_containers_list.json
@@ -0,0 +1,116 @@
+[
+ {
+ "Id": "eb23be71498c2dc0254c029f32b360a000caf33157d1c93e226f4c1a4c9d2218",
+ "Names": [
+ "/redis-72bfa388-024e-a903-45b8-2bc28b74ed69"
+ ],
+ "Image": "redis:3.2",
+ "ImageID": "sha256:87856cc39862cec77541d68382e4867d7ccb29a85a17221446c857ddaebca916",
+ "Command": "docker-entrypoint.sh redis-server",
+ "Created": 1568383081,
+ "Ports": [
+ {
+ "PrivatePort": 6379,
+ "Type": "tcp"
+ }
+ ],
+ "Labels": {},
+ "State": "running",
+ "Status": "Up 9 seconds",
+ "HostConfig": {
+ "NetworkMode": "default"
+ },
+ "NetworkSettings": {
+ "Networks": {
+ "bridge": {
+ "IPAMConfig": null,
+ "Links": null,
+ "Aliases": null,
+ "NetworkID": "6715ed501c1cef14545cd6680f54b4971373ee4441aec2300fff1031c8dbf3a4",
+ "EndpointID": "ed830b4f2f33ab4134aea941611b00b9e576b35a4325d52bacfedd1e2e1ba213",
+ "Gateway": "172.17.0.1",
+ "IPAddress": "172.17.0.3",
+ "IPPrefixLen": 16,
+ "IPv6Gateway": "",
+ "GlobalIPv6Address": "",
+ "GlobalIPv6PrefixLen": 0,
+ "MacAddress": "02:42:ac:11:00:03",
+ "DriverOpts": null
+ }
+ }
+ },
+ "Mounts": [
+ {
+ "Type": "bind",
+ "Source": "/private/var/folders/r6/346cfqyn76b_lx1nrcl5278c0000gp/T/NomadClient831122597/72bfa388-024e-a903-45b8-2bc28b74ed69/alloc",
+ "Destination": "/alloc",
+ "Mode": "",
+ "RW": true,
+ "Propagation": "rprivate"
+ },
+ {
+ "Type": "volume",
+ "Name": "d5d7f0f9a3326414257c57cfca01db96c53a424b43e251516511694554309681",
+ "Source": "",
+ "Destination": "/data",
+ "Driver": "local",
+ "Mode": "",
+ "RW": true,
+ "Propagation": ""
+ },
+ {
+ "Type": "bind",
+ "Source": "/private/var/folders/r6/346cfqyn76b_lx1nrcl5278c0000gp/T/NomadClient831122597/72bfa388-024e-a903-45b8-2bc28b74ed69/redis/local",
+ "Destination": "/local",
+ "Mode": "",
+ "RW": true,
+ "Propagation": "rprivate"
+ },
+ {
+ "Type": "bind",
+ "Source": "/private/var/folders/r6/346cfqyn76b_lx1nrcl5278c0000gp/T/NomadClient831122597/72bfa388-024e-a903-45b8-2bc28b74ed69/redis/secrets",
+ "Destination": "/secrets",
+ "Mode": "",
+ "RW": true,
+ "Propagation": "rprivate"
+ }
+ ]
+ },
+ {
+ "Id": "99c49fbe999f6df7b7d6a891d69fe57d7b771a30d5d2899a922b44698084e5c9",
+ "Names": [
+ "/serene_keller"
+ ],
+ "Image": "ubuntu:16.04",
+ "ImageID": "sha256:9361ce633ff193349d54bed380a5afe86043b09fd6ea8da7549dbbedfc2a7077",
+ "Command": "/bin/bash",
+ "Created": 1567795217,
+ "Ports": [],
+ "Labels": {},
+ "State": "running",
+ "Status": "Up 6 days",
+ "HostConfig": {
+ "NetworkMode": "default"
+ },
+ "NetworkSettings": {
+ "Networks": {
+ "bridge": {
+ "IPAMConfig": null,
+ "Links": null,
+ "Aliases": null,
+ "NetworkID": "6715ed501c1cef14545cd6680f54b4971373ee4441aec2300fff1031c8dbf3a4",
+ "EndpointID": "fab83a0d4089ca9944ca53c882bdf40ad310c6fda30dda0092731feb9bc9fab6",
+ "Gateway": "172.17.0.1",
+ "IPAddress": "172.17.0.2",
+ "IPPrefixLen": 16,
+ "IPv6Gateway": "",
+ "GlobalIPv6Address": "",
+ "GlobalIPv6PrefixLen": 0,
+ "MacAddress": "02:42:ac:11:00:02",
+ "DriverOpts": null
+ }
+ }
+ },
+ "Mounts": []
+ }
+]
diff --git a/drivers/docker/utils.go b/drivers/docker/utils.go
index 20e03608b..81e9e06cb 100644
--- a/drivers/docker/utils.go
+++ b/drivers/docker/utils.go
@@ -159,7 +159,7 @@ func authFromHelper(helperName string) authBackend {
default:
return nil, err
case *exec.ExitError:
- return nil, fmt.Errorf("%s with input %q failed with stderr: %s", helper, repo, output)
+ return nil, fmt.Errorf("%s with input %q failed with stderr: %s", helper, repo, err.Error())
}
}
@@ -237,7 +237,10 @@ func parseVolumeSpecWindows(volBind string) (hostPath string, containerPath stri
return "", "", "", fmt.Errorf("not : format")
}
- hostPath = parts[0]
+ // Convert host mount path separators to match the host OS's separator
+ // so that relative paths are supported cross-platform regardless of
+ // what slash is used in the jobspec.
+ hostPath = filepath.FromSlash(parts[0])
containerPath = parts[1]
if len(parts) > 2 {
diff --git a/drivers/exec/driver.go b/drivers/exec/driver.go
index 7ce971769..6611ec472 100644
--- a/drivers/exec/driver.go
+++ b/drivers/exec/driver.go
@@ -74,6 +74,10 @@ var (
SendSignals: true,
Exec: true,
FSIsolation: drivers.FSIsolationChroot,
+ NetIsolationModes: []drivers.NetIsolationMode{
+ drivers.NetIsolationModeHost,
+ drivers.NetIsolationModeGroup,
+ },
}
)
@@ -454,10 +458,8 @@ func (d *Driver) DestroyTask(taskID string, force bool) error {
}
if !handle.pluginClient.Exited() {
- if handle.IsRunning() {
- if err := handle.exec.Shutdown("", 0); err != nil {
- handle.logger.Error("destroying executor failed", "err", err)
- }
+ if err := handle.exec.Shutdown("", 0); err != nil {
+ handle.logger.Error("destroying executor failed", "err", err)
}
handle.pluginClient.Kill()
diff --git a/drivers/exec/driver_test.go b/drivers/exec/driver_test.go
index e0680eb49..747fac647 100644
--- a/drivers/exec/driver_test.go
+++ b/drivers/exec/driver_test.go
@@ -7,9 +7,12 @@ import (
"io/ioutil"
"os"
"path/filepath"
+ "regexp"
"runtime"
+ "strconv"
"strings"
"sync"
+ "syscall"
"testing"
"time"
@@ -251,6 +254,106 @@ func TestExecDriver_StartWaitRecover(t *testing.T) {
require.NoError(harness.DestroyTask(task.ID, true))
}
+// TestExecDriver_DestroyKillsAll asserts that when TaskDestroy is called all
+// task processes are cleaned up.
+func TestExecDriver_DestroyKillsAll(t *testing.T) {
+ t.Parallel()
+ require := require.New(t)
+ ctestutils.ExecCompatible(t)
+
+ d := NewExecDriver(testlog.HCLogger(t))
+ harness := dtestutil.NewDriverHarness(t, d)
+ defer harness.Kill()
+
+ task := &drivers.TaskConfig{
+ ID: uuid.Generate(),
+ Name: "test",
+ }
+
+ cleanup := harness.MkAllocDir(task, true)
+ defer cleanup()
+
+ taskConfig := map[string]interface{}{}
+ taskConfig["command"] = "/bin/sh"
+ taskConfig["args"] = []string{"-c", fmt.Sprintf(`sleep 3600 & echo "SLEEP_PID=$!"`)}
+
+ require.NoError(task.EncodeConcreteDriverConfig(&taskConfig))
+
+ handle, _, err := harness.StartTask(task)
+ require.NoError(err)
+ defer harness.DestroyTask(task.ID, true)
+
+ ch, err := harness.WaitTask(context.Background(), handle.Config.ID)
+ require.NoError(err)
+
+ select {
+ case result := <-ch:
+ require.True(result.Successful(), "command failed: %#v", result)
+ case <-time.After(10 * time.Second):
+ require.Fail("timeout waiting for task to shutdown")
+ }
+
+ sleepPid := 0
+
+ // Ensure that the task is marked as dead, but account
+ // for WaitTask() closing channel before internal state is updated
+ testutil.WaitForResult(func() (bool, error) {
+ stdout, err := ioutil.ReadFile(filepath.Join(task.TaskDir().LogDir, "test.stdout.0"))
+ if err != nil {
+ return false, fmt.Errorf("failed to output pid file: %v", err)
+ }
+
+ pidMatch := regexp.MustCompile(`SLEEP_PID=(\d+)`).FindStringSubmatch(string(stdout))
+ if len(pidMatch) != 2 {
+ return false, fmt.Errorf("failed to find pid in %s", string(stdout))
+ }
+
+ pid, err := strconv.Atoi(pidMatch[1])
+ if err != nil {
+ return false, fmt.Errorf("pid parts aren't int: %s", pidMatch[1])
+ }
+
+ sleepPid = pid
+ return true, nil
+ }, func(err error) {
+ require.NoError(err)
+ })
+
+ // isProcessRunning returns an error if process is not running
+ isProcessRunning := func(pid int) error {
+ process, err := os.FindProcess(pid)
+ if err != nil {
+ return fmt.Errorf("failed to find process: %s", err)
+ }
+
+ err = process.Signal(syscall.Signal(0))
+ if err != nil {
+ return fmt.Errorf("failed to signal process: %s", err)
+ }
+
+ return nil
+ }
+
+ require.NoError(isProcessRunning(sleepPid))
+
+ require.NoError(harness.DestroyTask(task.ID, true))
+
+ testutil.WaitForResult(func() (bool, error) {
+ err := isProcessRunning(sleepPid)
+ if err == nil {
+ return false, fmt.Errorf("child process is still running")
+ }
+
+ if !strings.Contains(err.Error(), "failed to signal process") {
+ return false, fmt.Errorf("unexpected error: %v", err)
+ }
+
+ return true, nil
+ }, func(err error) {
+ require.NoError(err)
+ })
+}
+
func TestExecDriver_Stats(t *testing.T) {
t.Parallel()
require := require.New(t)
diff --git a/drivers/java/driver.go b/drivers/java/driver.go
index 199736311..ac35aa82d 100644
--- a/drivers/java/driver.go
+++ b/drivers/java/driver.go
@@ -83,6 +83,10 @@ var (
SendSignals: false,
Exec: false,
FSIsolation: drivers.FSIsolationNone,
+ NetIsolationModes: []drivers.NetIsolationMode{
+ drivers.NetIsolationModeHost,
+ drivers.NetIsolationModeGroup,
+ },
}
_ drivers.DriverPlugin = (*Driver)(nil)
@@ -340,17 +344,18 @@ func (d *Driver) StartTask(cfg *drivers.TaskConfig) (*drivers.TaskHandle, *drive
}
execCmd := &executor.ExecCommand{
- Cmd: absPath,
- Args: args,
- Env: cfg.EnvList(),
- User: user,
- ResourceLimits: true,
- Resources: cfg.Resources,
- TaskDir: cfg.TaskDir().Dir,
- StdoutPath: cfg.StdoutPath,
- StderrPath: cfg.StderrPath,
- Mounts: cfg.Mounts,
- Devices: cfg.Devices,
+ Cmd: absPath,
+ Args: args,
+ Env: cfg.EnvList(),
+ User: user,
+ ResourceLimits: true,
+ Resources: cfg.Resources,
+ TaskDir: cfg.TaskDir().Dir,
+ StdoutPath: cfg.StdoutPath,
+ StderrPath: cfg.StderrPath,
+ Mounts: cfg.Mounts,
+ Devices: cfg.Devices,
+ NetworkIsolation: cfg.NetworkIsolation,
}
ps, err := exec.Launch(execCmd)
@@ -481,10 +486,8 @@ func (d *Driver) DestroyTask(taskID string, force bool) error {
}
if !handle.pluginClient.Exited() {
- if handle.IsRunning() {
- if err := handle.exec.Shutdown("", 0); err != nil {
- handle.logger.Error("destroying executor failed", "err", err)
- }
+ if err := handle.exec.Shutdown("", 0); err != nil {
+ handle.logger.Error("destroying executor failed", "err", err)
}
handle.pluginClient.Kill()
diff --git a/drivers/qemu/driver.go b/drivers/qemu/driver.go
index a4fef4b39..156dd1104 100644
--- a/drivers/qemu/driver.go
+++ b/drivers/qemu/driver.go
@@ -14,6 +14,7 @@ import (
"github.com/coreos/go-semver/semver"
hclog "github.com/hashicorp/go-hclog"
+ "github.com/hashicorp/nomad/client/taskenv"
"github.com/hashicorp/nomad/drivers/shared/eventer"
"github.com/hashicorp/nomad/drivers/shared/executor"
"github.com/hashicorp/nomad/helper/pluginutils/hclutils"
@@ -304,6 +305,9 @@ func (d *Driver) StartTask(cfg *drivers.TaskConfig) (*drivers.TaskHandle, *drive
return nil, nil, fmt.Errorf("failed to decode driver config: %v", err)
}
+ // ensure that PortMap variables are populated early on
+ cfg.Env = taskenv.SetPortMapEnvs(cfg.Env, driverConfig.PortMap)
+
handle := drivers.NewTaskHandle(taskHandleVersion)
handle.Config = cfg
@@ -530,10 +534,8 @@ func (d *Driver) DestroyTask(taskID string, force bool) error {
}
if !handle.pluginClient.Exited() {
- if handle.IsRunning() {
- if err := handle.exec.Shutdown("", 0); err != nil {
- handle.logger.Error("destroying executor failed", "err", err)
- }
+ if err := handle.exec.Shutdown("", 0); err != nil {
+ handle.logger.Error("destroying executor failed", "err", err)
}
handle.pluginClient.Kill()
diff --git a/drivers/rawexec/driver.go b/drivers/rawexec/driver.go
index a69932bb5..9e754c5b3 100644
--- a/drivers/rawexec/driver.go
+++ b/drivers/rawexec/driver.go
@@ -460,10 +460,8 @@ func (d *Driver) DestroyTask(taskID string, force bool) error {
}
if !handle.pluginClient.Exited() {
- if handle.IsRunning() {
- if err := handle.exec.Shutdown("", 0); err != nil {
- handle.logger.Error("destroying executor failed", "err", err)
- }
+ if err := handle.exec.Shutdown("", 0); err != nil {
+ handle.logger.Error("destroying executor failed", "err", err)
}
handle.pluginClient.Kill()
diff --git a/drivers/rawexec/driver_unix_test.go b/drivers/rawexec/driver_unix_test.go
index 8845d75d8..77bb7c4ac 100644
--- a/drivers/rawexec/driver_unix_test.go
+++ b/drivers/rawexec/driver_unix_test.go
@@ -4,7 +4,11 @@ package rawexec
import (
"context"
+ "os"
+ "regexp"
"runtime"
+ "strconv"
+ "syscall"
"testing"
"fmt"
@@ -196,6 +200,111 @@ func TestRawExecDriver_StartWaitStop(t *testing.T) {
require.NoError(harness.DestroyTask(task.ID, true))
}
+// TestRawExecDriver_DestroyKillsAll asserts that when TaskDestroy is called all
+// task processes are cleaned up.
+func TestRawExecDriver_DestroyKillsAll(t *testing.T) {
+ t.Parallel()
+
+ // This only works reliably with cgroup PID tracking, happens in linux only
+ if runtime.GOOS != "linux" {
+ t.Skip("Linux only test")
+ }
+
+ require := require.New(t)
+
+ d := newEnabledRawExecDriver(t)
+ harness := dtestutil.NewDriverHarness(t, d)
+ defer harness.Kill()
+
+ task := &drivers.TaskConfig{
+ ID: uuid.Generate(),
+ Name: "test",
+ }
+
+ cleanup := harness.MkAllocDir(task, true)
+ defer cleanup()
+
+ taskConfig := map[string]interface{}{}
+ taskConfig["command"] = "/bin/sh"
+ taskConfig["args"] = []string{"-c", fmt.Sprintf(`sleep 3600 & echo "SLEEP_PID=$!"`)}
+
+ require.NoError(task.EncodeConcreteDriverConfig(&taskConfig))
+
+ handle, _, err := harness.StartTask(task)
+ require.NoError(err)
+ defer harness.DestroyTask(task.ID, true)
+
+ ch, err := harness.WaitTask(context.Background(), handle.Config.ID)
+ require.NoError(err)
+
+ select {
+ case result := <-ch:
+ require.True(result.Successful(), "command failed: %#v", result)
+ case <-time.After(10 * time.Second):
+ require.Fail("timeout waiting for task to shutdown")
+ }
+
+ sleepPid := 0
+
+ // Ensure that the task is marked as dead, but account
+ // for WaitTask() closing channel before internal state is updated
+ testutil.WaitForResult(func() (bool, error) {
+ stdout, err := ioutil.ReadFile(filepath.Join(task.TaskDir().LogDir, "test.stdout.0"))
+ if err != nil {
+ return false, fmt.Errorf("failed to output pid file: %v", err)
+ }
+
+ pidMatch := regexp.MustCompile(`SLEEP_PID=(\d+)`).FindStringSubmatch(string(stdout))
+ if len(pidMatch) != 2 {
+ return false, fmt.Errorf("failed to find pid in %s", string(stdout))
+ }
+
+ pid, err := strconv.Atoi(pidMatch[1])
+ if err != nil {
+ return false, fmt.Errorf("pid parts aren't int: %s", pidMatch[1])
+ }
+
+ sleepPid = pid
+ return true, nil
+ }, func(err error) {
+ require.NoError(err)
+ })
+
+ // isProcessRunning returns an error if process is not running
+ isProcessRunning := func(pid int) error {
+ process, err := os.FindProcess(pid)
+ if err != nil {
+ return fmt.Errorf("failed to find process: %s", err)
+ }
+
+ err = process.Signal(syscall.Signal(0))
+ if err != nil {
+ return fmt.Errorf("failed to signal process: %s", err)
+ }
+
+ return nil
+ }
+
+ require.NoError(isProcessRunning(sleepPid))
+
+ require.NoError(harness.DestroyTask(task.ID, true))
+
+ testutil.WaitForResult(func() (bool, error) {
+ err := isProcessRunning(sleepPid)
+ if err == nil {
+ return false, fmt.Errorf("child process is still running")
+ }
+
+ if !strings.Contains(err.Error(), "failed to signal process") {
+ return false, fmt.Errorf("unexpected error: %v", err)
+ }
+
+ return true, nil
+ }, func(err error) {
+ require.NoError(err)
+ })
+}
+
func TestRawExec_ExecTaskStreaming(t *testing.T) {
t.Parallel()
if runtime.GOOS == "darwin" {
diff --git a/drivers/rkt/driver.go b/drivers/rkt/driver.go
index b41455238..238dcfc77 100644
--- a/drivers/rkt/driver.go
+++ b/drivers/rkt/driver.go
@@ -810,10 +810,8 @@ func (d *Driver) DestroyTask(taskID string, force bool) error {
}
if !handle.pluginClient.Exited() {
- if handle.IsRunning() {
- if err := handle.exec.Shutdown("", 0); err != nil {
- handle.logger.Error("destroying executor failed", "err", err)
- }
+ if err := handle.exec.Shutdown("", 0); err != nil {
+ handle.logger.Error("destroying executor failed", "err", err)
}
handle.pluginClient.Kill()
diff --git a/drivers/shared/executor/executor.go b/drivers/shared/executor/executor.go
index f2362fc88..84c6f8225 100644
--- a/drivers/shared/executor/executor.go
+++ b/drivers/shared/executor/executor.go
@@ -309,7 +309,7 @@ func (e *UniversalExecutor) Launch(command *ExecCommand) (*ProcessState, error)
e.childCmd.Env = e.commandCfg.Env
// Start the process
- if err = e.start(command); err != nil {
+ if err = withNetworkIsolation(e.childCmd.Start, command.NetworkIsolation); err != nil {
return nil, fmt.Errorf("failed to start command path=%q --- args=%q: %v", path, e.childCmd.Args, err)
}
@@ -322,13 +322,14 @@ func (e *UniversalExecutor) Launch(command *ExecCommand) (*ProcessState, error)
func (e *UniversalExecutor) Exec(deadline time.Time, name string, args []string) ([]byte, int, error) {
ctx, cancel := context.WithDeadline(context.Background(), deadline)
defer cancel()
- return ExecScript(ctx, e.childCmd.Dir, e.commandCfg.Env, e.childCmd.SysProcAttr, name, args)
+ return ExecScript(ctx, e.childCmd.Dir, e.commandCfg.Env, e.childCmd.SysProcAttr, e.commandCfg.NetworkIsolation, name, args)
}
// ExecScript executes cmd with args and returns the output, exit code, and
// error. Output is truncated to drivers/shared/structs.CheckBufSize
func ExecScript(ctx context.Context, dir string, env []string, attrs *syscall.SysProcAttr,
- name string, args []string) ([]byte, int, error) {
+ netSpec *drivers.NetworkIsolationSpec, name string, args []string) ([]byte, int, error) {
+
cmd := exec.CommandContext(ctx, name, args...)
// Copy runtime environment from the main command
@@ -341,7 +342,7 @@ func ExecScript(ctx context.Context, dir string, env []string, attrs *syscall.Sy
cmd.Stdout = buf
cmd.Stderr = buf
- if err := cmd.Run(); err != nil {
+ if err := withNetworkIsolation(cmd.Run, netSpec); err != nil {
exitErr, ok := err.(*exec.ExitError)
if !ok {
// Non-exit error, return it and let the caller treat
@@ -399,7 +400,9 @@ func (e *UniversalExecutor) ExecStreaming(ctx context.Context, command []string,
cmd.Stderr = stderr
return nil
},
- processStart: cmd.Start,
+ processStart: func() error {
+ return withNetworkIsolation(cmd.Start, e.commandCfg.NetworkIsolation)
+ },
processWait: func() (*os.ProcessState, error) {
err := cmd.Wait()
return cmd.ProcessState, err
diff --git a/drivers/shared/executor/executor_basic.go b/drivers/shared/executor/executor_basic.go
index 37726cb3a..b1e6f9b13 100644
--- a/drivers/shared/executor/executor_basic.go
+++ b/drivers/shared/executor/executor_basic.go
@@ -4,6 +4,7 @@ package executor
import (
hclog "github.com/hashicorp/go-hclog"
+ "github.com/hashicorp/nomad/plugins/drivers"
)
func NewExecutorWithIsolation(logger hclog.Logger) Executor {
@@ -23,3 +24,7 @@ func (e *UniversalExecutor) getAllPids() (map[int]*nomadPid, error) {
func (e *UniversalExecutor) start(command *ExecCommand) error {
return e.childCmd.Start()
}
+
+func withNetworkIsolation(f func() error, _ *drivers.NetworkIsolationSpec) error {
+ return f()
+}
diff --git a/drivers/shared/executor/executor_linux.go b/drivers/shared/executor/executor_linux.go
index dfe00b0e8..f81090a56 100644
--- a/drivers/shared/executor/executor_linux.go
+++ b/drivers/shared/executor/executor_linux.go
@@ -15,7 +15,6 @@ import (
"time"
"github.com/armon/circbuf"
- "github.com/containernetworking/plugins/pkg/ns"
"github.com/hashicorp/consul-template/signals"
hclog "github.com/hashicorp/go-hclog"
multierror "github.com/hashicorp/go-multierror"
@@ -184,23 +183,9 @@ func (l *LibcontainerExecutor) Launch(command *ExecCommand) (*ProcessState, erro
l.systemCpuStats = stats.NewCpuStats()
// Starts the task
- if command.NetworkIsolation != nil && command.NetworkIsolation.Path != "" {
- netns, err := ns.GetNS(command.NetworkIsolation.Path)
- if err != nil {
- return nil, fmt.Errorf("failed to get ns %s: %v", command.NetworkIsolation.Path, err)
- }
-
- // Start the container in the network namespace
- err = netns.Do(func(ns.NetNS) error { return container.Run(process) })
- if err != nil {
- container.Destroy()
- return nil, err
- }
- } else {
- if err := container.Run(process); err != nil {
- container.Destroy()
- return nil, err
- }
+ if err := container.Run(process); err != nil {
+ container.Destroy()
+ return nil, err
}
pid, err := process.Pid()
@@ -622,6 +607,13 @@ func configureIsolation(cfg *lconfigs.Config, command *ExecCommand) error {
{Type: lconfigs.NEWNS},
}
+ if command.NetworkIsolation != nil {
+ cfg.Namespaces = append(cfg.Namespaces, lconfigs.Namespace{
+ Type: lconfigs.NEWNET,
+ Path: command.NetworkIsolation.Path,
+ })
+ }
+
// paths to mask using a bind mount to /dev/null to prevent reading
cfg.MaskPaths = []string{
"/proc/kcore",
@@ -821,6 +813,15 @@ func cmdDevices(devices []*drivers.DeviceConfig) ([]*lconfigs.Device, error) {
return r, nil
}
+var userMountToUnixMount = map[string]int{
+ // Empty string maps to `rprivate` for backwards compatibility in restored
+ // older tasks, where mount propagation will not be present.
+ "": unix.MS_PRIVATE | unix.MS_REC, // rprivate
+ structs.VolumeMountPropagationPrivate: unix.MS_PRIVATE | unix.MS_REC, // rprivate
+ structs.VolumeMountPropagationHostToTask: unix.MS_SLAVE | unix.MS_REC, // rslave
+ structs.VolumeMountPropagationBidirectional: unix.MS_SHARED | unix.MS_REC, // rshared
+}
+
// cmdMounts converts a list of driver.MountConfigs into excutor.Mounts.
func cmdMounts(mounts []*drivers.MountConfig) []*lconfigs.Mount {
if len(mounts) == 0 {
@@ -834,11 +835,13 @@ func cmdMounts(mounts []*drivers.MountConfig) []*lconfigs.Mount {
if m.Readonly {
flags |= unix.MS_RDONLY
}
+
r[i] = &lconfigs.Mount{
- Source: m.HostPath,
- Destination: m.TaskPath,
- Device: "bind",
- Flags: flags,
+ Source: m.HostPath,
+ Destination: m.TaskPath,
+ Device: "bind",
+ Flags: flags,
+ PropagationFlags: []int{userMountToUnixMount[m.PropagationMode]},
}
}
diff --git a/drivers/shared/executor/executor_linux_test.go b/drivers/shared/executor/executor_linux_test.go
index c8e07370b..1861ea5ae 100644
--- a/drivers/shared/executor/executor_linux_test.go
+++ b/drivers/shared/executor/executor_linux_test.go
@@ -467,16 +467,18 @@ func TestExecutor_cmdMounts(t *testing.T) {
expected := []*lconfigs.Mount{
{
- Source: "/host/path-ro",
- Destination: "/task/path-ro",
- Flags: unix.MS_BIND | unix.MS_RDONLY,
- Device: "bind",
+ Source: "/host/path-ro",
+ Destination: "/task/path-ro",
+ Flags: unix.MS_BIND | unix.MS_RDONLY,
+ Device: "bind",
+ PropagationFlags: []int{unix.MS_PRIVATE | unix.MS_REC},
},
{
- Source: "/host/path-rw",
- Destination: "/task/path-rw",
- Flags: unix.MS_BIND,
- Device: "bind",
+ Source: "/host/path-rw",
+ Destination: "/task/path-rw",
+ Flags: unix.MS_BIND,
+ Device: "bind",
+ PropagationFlags: []int{unix.MS_PRIVATE | unix.MS_REC},
},
}
diff --git a/drivers/shared/executor/executor_universal_linux.go b/drivers/shared/executor/executor_universal_linux.go
index 3db3b0a87..0118b32ce 100644
--- a/drivers/shared/executor/executor_universal_linux.go
+++ b/drivers/shared/executor/executor_universal_linux.go
@@ -10,6 +10,7 @@ import (
"github.com/containernetworking/plugins/pkg/ns"
multierror "github.com/hashicorp/go-multierror"
"github.com/hashicorp/nomad/helper"
+ "github.com/hashicorp/nomad/plugins/drivers"
"github.com/opencontainers/runc/libcontainer/cgroups"
cgroupFs "github.com/opencontainers/runc/libcontainer/cgroups/fs"
lconfigs "github.com/opencontainers/runc/libcontainer/configs"
@@ -173,19 +174,20 @@ func DestroyCgroup(groups *lconfigs.Cgroup, executorPid int) error {
return mErrs.ErrorOrNil()
}
-func (e *UniversalExecutor) start(command *ExecCommand) error {
- if command.NetworkIsolation != nil && command.NetworkIsolation.Path != "" {
+// withNetworkIsolation calls the passed function the network namespace `spec`
+func withNetworkIsolation(f func() error, spec *drivers.NetworkIsolationSpec) error {
+ if spec != nil && spec.Path != "" {
// Get a handle to the target network namespace
- netns, err := ns.GetNS(command.NetworkIsolation.Path)
+ netns, err := ns.GetNS(spec.Path)
if err != nil {
return err
}
// Start the container in the network namespace
return netns.Do(func(ns.NetNS) error {
- return e.childCmd.Start()
+ return f()
})
}
- return e.childCmd.Start()
+ return f()
}
diff --git a/e2e/affinities/input/anti_affinities.nomad b/e2e/affinities/input/anti_affinities.nomad
index 6a005f871..97f327d8c 100644
--- a/e2e/affinities/input/anti_affinities.nomad
+++ b/e2e/affinities/input/anti_affinities.nomad
@@ -1,20 +1,24 @@
job "test1" {
datacenters = ["dc1", "dc2"]
- type = "service"
+ type = "service"
+
affinity {
- attribute ="${meta.rack}"
- operator = "="
- value = "r1"
- weight = -50
+ attribute = "${meta.rack}"
+ operator = "="
+ value = "r1"
+ weight = -50
}
+
group "test1" {
count = 4
+
affinity {
- attribute ="${node.datacenter}"
- operator = "="
- value = "dc1"
- weight = -50
+ attribute = "${node.datacenter}"
+ operator = "="
+ value = "dc1"
+ weight = -50
}
+
task "test" {
driver = "raw_exec"
@@ -24,4 +28,4 @@ job "test1" {
}
}
}
-}
\ No newline at end of file
+}
diff --git a/e2e/affinities/input/multiple_affinities.nomad b/e2e/affinities/input/multiple_affinities.nomad
index fbc04334a..94a913a2a 100644
--- a/e2e/affinities/input/multiple_affinities.nomad
+++ b/e2e/affinities/input/multiple_affinities.nomad
@@ -1,20 +1,24 @@
job "test1" {
datacenters = ["dc1", "dc2"]
- type = "service"
+ type = "service"
+
affinity {
- attribute ="${meta.rack}"
- operator = "="
- value = "r1"
- weight = 100
+ attribute = "${meta.rack}"
+ operator = "="
+ value = "r1"
+ weight = 100
}
+
group "test1" {
count = 4
+
affinity {
- attribute ="${node.datacenter}"
- operator = "="
- value = "dc1"
- weight = 100
+ attribute = "${node.datacenter}"
+ operator = "="
+ value = "dc1"
+ weight = 100
}
+
task "test" {
driver = "raw_exec"
@@ -24,4 +28,4 @@ job "test1" {
}
}
}
-}
\ No newline at end of file
+}
diff --git a/e2e/affinities/input/single_affinity.nomad b/e2e/affinities/input/single_affinity.nomad
index 758f0dbb2..58e373660 100644
--- a/e2e/affinities/input/single_affinity.nomad
+++ b/e2e/affinities/input/single_affinity.nomad
@@ -1,15 +1,17 @@
job "test1" {
datacenters = ["dc1", "dc2"]
- type = "service"
+ type = "service"
group "test1" {
count = 5
+
affinity {
- attribute ="${node.datacenter}"
- operator = "="
- value = "dc1"
- weight = 100
+ attribute = "${node.datacenter}"
+ operator = "="
+ value = "dc1"
+ weight = 100
}
+
task "test" {
driver = "raw_exec"
@@ -19,4 +21,4 @@ job "test1" {
}
}
}
-}
\ No newline at end of file
+}
diff --git a/e2e/allocstats/input/raw_exec.nomad b/e2e/allocstats/input/raw_exec.nomad
index 7c158c4d0..c88959f8b 100644
--- a/e2e/allocstats/input/raw_exec.nomad
+++ b/e2e/allocstats/input/raw_exec.nomad
@@ -3,15 +3,15 @@ job "test_raw" {
type = "service"
group "test" {
- count = 1
+ count = 1
task "test1" {
driver = "raw_exec"
config {
command = "bash"
- args = ["-c", "var=10000;while true; do a=$(awk -v x=$var 'BEGIN{print sqrt(x)}'); ((var++)); done" ]
- }
+ args = ["-c", "var=10000;while true; do a=$(awk -v x=$var 'BEGIN{print sqrt(x)}'); ((var++)); done"]
+ }
}
-}
+ }
}
diff --git a/e2e/clientstate/restarter.nomad b/e2e/clientstate/restarter.nomad
index bf139707a..02e2fcc63 100644
--- a/e2e/clientstate/restarter.nomad
+++ b/e2e/clientstate/restarter.nomad
@@ -4,13 +4,16 @@
job "restarter" {
datacenters = ["dc1"]
+
group "restarter" {
restart {
attempts = 100
delay = "3s"
}
+
task "restarter" {
driver = "raw_exec"
+
config {
command = "/bin/bash"
args = ["-c", "echo $$ >> pid && sleep 1 && exit 99"]
diff --git a/e2e/clientstate/sleeper.nomad b/e2e/clientstate/sleeper.nomad
index 9ae04f0f7..c45e12356 100644
--- a/e2e/clientstate/sleeper.nomad
+++ b/e2e/clientstate/sleeper.nomad
@@ -3,8 +3,10 @@
job "sleeper" {
datacenters = ["dc1"]
+
task "sleeper" {
driver = "raw_exec"
+
config {
command = "/bin/bash"
args = ["-c", "echo $$ >> pid && sleep 999999"]
diff --git a/e2e/connect/client.go b/e2e/connect/client.go
new file mode 100644
index 000000000..8cea468e5
--- /dev/null
+++ b/e2e/connect/client.go
@@ -0,0 +1,61 @@
+package connect
+
+import (
+ "os"
+
+ capi "github.com/hashicorp/consul/api"
+ "github.com/hashicorp/nomad/e2e/e2eutil"
+ "github.com/hashicorp/nomad/e2e/framework"
+ "github.com/hashicorp/nomad/helper/uuid"
+ "github.com/stretchr/testify/require"
+)
+
+type ConnectClientStateE2ETest struct {
+ framework.TC
+ jobIds []string
+}
+
+func (tc *ConnectClientStateE2ETest) BeforeAll(f *framework.F) {
+ e2eutil.WaitForLeader(f.T(), tc.Nomad())
+ e2eutil.WaitForNodesReady(f.T(), tc.Nomad(), 1)
+}
+
+func (tc *ConnectClientStateE2ETest) AfterEach(f *framework.F) {
+ if os.Getenv("NOMAD_TEST_SKIPCLEANUP") == "1" {
+ return
+ }
+
+ for _, id := range tc.jobIds {
+ tc.Nomad().Jobs().Deregister(id, true, nil)
+ }
+ tc.jobIds = []string{}
+ tc.Nomad().System().GarbageCollect()
+}
+
+func (tc *ConnectClientStateE2ETest) TestClientRestart(f *framework.F) {
+ t := f.T()
+ require := require.New(t)
+ jobID := "connect" + uuid.Generate()[0:8]
+ tc.jobIds = append(tc.jobIds, jobID)
+ client := tc.Nomad()
+ consulClient := tc.Consul()
+
+ allocs := e2eutil.RegisterAndWaitForAllocs(t, client,
+ "connect/input/demo.nomad", jobID)
+ require.Equal(2, len(allocs))
+
+ e2eutil.RequireConsulStatus(require, consulClient,
+ "count-api-sidecar-proxy", capi.HealthPassing)
+ nodeID := allocs[0].NodeID
+
+ restartID, err := e2eutil.AgentRestart(client, nodeID)
+ if restartID != "" {
+ tc.jobIds = append(tc.jobIds, restartID)
+ }
+ if err != nil {
+ t.Skip("node cannot be restarted", err)
+ }
+
+ e2eutil.RequireConsulStatus(require, consulClient,
+ "count-api-sidecar-proxy", capi.HealthPassing)
+}
diff --git a/e2e/connect/connect.go b/e2e/connect/connect.go
new file mode 100644
index 000000000..59f5c2b5f
--- /dev/null
+++ b/e2e/connect/connect.go
@@ -0,0 +1,175 @@
+package connect
+
+import (
+ "os"
+ "strings"
+ "time"
+
+ consulapi "github.com/hashicorp/consul/api"
+ "github.com/hashicorp/nomad/api"
+ "github.com/hashicorp/nomad/e2e/e2eutil"
+ "github.com/hashicorp/nomad/e2e/framework"
+ "github.com/hashicorp/nomad/helper/uuid"
+ "github.com/hashicorp/nomad/jobspec"
+ "github.com/kr/pretty"
+ "github.com/stretchr/testify/require"
+)
+
+type ConnectE2ETest struct {
+ framework.TC
+ jobIds []string
+}
+
+func init() {
+ framework.AddSuites(&framework.TestSuite{
+ Component: "Connect",
+ CanRunLocal: true,
+ Consul: true,
+ Cases: []framework.TestCase{
+ new(ConnectE2ETest),
+ new(ConnectClientStateE2ETest),
+ },
+ })
+}
+
+func (tc *ConnectE2ETest) BeforeAll(f *framework.F) {
+ e2eutil.WaitForLeader(f.T(), tc.Nomad())
+ e2eutil.WaitForNodesReady(f.T(), tc.Nomad(), 2)
+}
+
+func (tc *ConnectE2ETest) AfterEach(f *framework.F) {
+ if os.Getenv("NOMAD_TEST_SKIPCLEANUP") == "1" {
+ return
+ }
+
+ for _, id := range tc.jobIds {
+ tc.Nomad().Jobs().Deregister(id, true, nil)
+ }
+ tc.jobIds = []string{}
+ tc.Nomad().System().GarbageCollect()
+}
+
+// TestConnectDemo tests the demo job file from the Consul Connect Technology
+// Preview.
+//
+// https://github.com/hashicorp/nomad/blob/v0.9.5/website/source/guides/integrations/consul-connect/index.html.md#run-the-connect-enabled-services
+//
+func (tc *ConnectE2ETest) TestConnectDemo(f *framework.F) {
+ t := f.T()
+ uuid := uuid.Generate()
+ jobID := "connect" + uuid[0:8]
+ tc.jobIds = append(tc.jobIds, jobID)
+ jobapi := tc.Nomad().Jobs()
+
+ job, err := jobspec.ParseFile("connect/input/demo.nomad")
+ require.NoError(t, err)
+ job.ID = &jobID
+
+ resp, _, err := jobapi.Register(job, nil)
+ require.NoError(t, err)
+ require.NotNil(t, resp)
+ require.Zero(t, resp.Warnings)
+
+EVAL:
+ qopts := &api.QueryOptions{
+ WaitIndex: resp.EvalCreateIndex,
+ }
+ evalapi := tc.Nomad().Evaluations()
+ eval, qmeta, err := evalapi.Info(resp.EvalID, qopts)
+ require.NoError(t, err)
+ qopts.WaitIndex = qmeta.LastIndex
+
+ switch eval.Status {
+ case "pending":
+ goto EVAL
+ case "complete":
+ // Ok!
+ case "failed", "canceled", "blocked":
+ t.Fatalf("eval %s\n%s\n", eval.Status, pretty.Sprint(eval))
+ default:
+ t.Fatalf("unknown eval status: %s\n%s\n", eval.Status, pretty.Sprint(eval))
+ }
+
+ // Assert there were 0 placement failures
+ require.Zero(t, eval.FailedTGAllocs, pretty.Sprint(eval.FailedTGAllocs))
+ require.Len(t, eval.QueuedAllocations, 2, pretty.Sprint(eval.QueuedAllocations))
+
+ // Assert allocs are running
+ for i := 0; i < 20; i++ {
+ allocs, qmeta, err := evalapi.Allocations(eval.ID, qopts)
+ require.NoError(t, err)
+ require.Len(t, allocs, 2)
+ qopts.WaitIndex = qmeta.LastIndex
+
+ running := 0
+ for _, alloc := range allocs {
+ switch alloc.ClientStatus {
+ case "running":
+ running++
+ case "pending":
+ // keep trying
+ default:
+ t.Fatalf("alloc failed: %s", pretty.Sprint(alloc))
+ }
+ }
+
+ if running == len(allocs) {
+ break
+ }
+
+ time.Sleep(500 * time.Millisecond)
+ }
+
+ allocs, _, err := evalapi.Allocations(eval.ID, qopts)
+ require.NoError(t, err)
+ allocIDs := make(map[string]bool, 2)
+ for _, a := range allocs {
+ if a.ClientStatus != "running" || a.DesiredStatus != "run" {
+ t.Fatalf("alloc %s (%s) terminal; client=%s desired=%s", a.TaskGroup, a.ID, a.ClientStatus, a.DesiredStatus)
+ }
+ allocIDs[a.ID] = true
+ }
+
+ // Check Consul service health
+ agentapi := tc.Consul().Agent()
+
+ failing := map[string]*consulapi.AgentCheck{}
+ for i := 0; i < 60; i++ {
+ checks, err := agentapi.Checks()
+ require.NoError(t, err)
+
+ // Filter out checks for other services
+ for cid, check := range checks {
+ found := false
+ for allocID := range allocIDs {
+ if strings.Contains(check.ServiceID, allocID) {
+ found = true
+ break
+ }
+ }
+
+ if !found {
+ delete(checks, cid)
+ }
+ }
+
+ // Ensure checks are all passing
+ failing = map[string]*consulapi.AgentCheck{}
+ for _, check := range checks {
+ if check.Status != "passing" {
+ failing[check.CheckID] = check
+ break
+ }
+ }
+
+ if len(failing) == 0 {
+ break
+ }
+
+ t.Logf("still %d checks not passing", len(failing))
+
+ time.Sleep(time.Second)
+ }
+
+ require.Len(t, failing, 0, pretty.Sprint(failing))
+}
diff --git a/e2e/connect/input/demo.nomad b/e2e/connect/input/demo.nomad
new file mode 100644
index 000000000..65e507a9c
--- /dev/null
+++ b/e2e/connect/input/demo.nomad
@@ -0,0 +1,65 @@
+job "countdash" {
+ datacenters = ["dc1"]
+
+ group "api" {
+ network {
+ mode = "bridge"
+ }
+
+ service {
+ name = "count-api"
+ port = "9001"
+
+ connect {
+ sidecar_service {}
+ }
+ }
+
+ task "web" {
+ driver = "docker"
+
+ config {
+ image = "hashicorpnomad/counter-api:v1"
+ }
+ }
+ }
+
+ group "dashboard" {
+ network {
+ mode = "bridge"
+
+ port "http" {
+ static = 9002
+ to = 9002
+ }
+ }
+
+ service {
+ name = "count-dashboard"
+ port = "9002"
+
+ connect {
+ sidecar_service {
+ proxy {
+ upstreams {
+ destination_name = "count-api"
+ local_bind_port = 8080
+ }
+ }
+ }
+ }
+ }
+
+ task "dashboard" {
+ driver = "docker"
+
+ env {
+ COUNTING_SERVICE_URL = "http://${NOMAD_UPSTREAM_ADDR_count_api}"
+ }
+
+ config {
+ image = "hashicorpnomad/counter-dashboard:v1"
+ }
+ }
+ }
+}
diff --git a/e2e/consul/consul.go b/e2e/consul/consul.go
index 5809e2517..e0b85c0e9 100644
--- a/e2e/consul/consul.go
+++ b/e2e/consul/consul.go
@@ -23,6 +23,7 @@ func init() {
Consul: true,
Cases: []framework.TestCase{
new(ConsulE2ETest),
+ new(ScriptChecksE2ETest),
},
})
}
diff --git a/e2e/consul/input/canary_tags.nomad b/e2e/consul/input/canary_tags.nomad
index da98db490..eb48e1d7a 100644
--- a/e2e/consul/input/canary_tags.nomad
+++ b/e2e/consul/input/canary_tags.nomad
@@ -13,8 +13,8 @@ job "consul_canary_test" {
}
service {
- name = "canarytest"
- tags = ["foo", "bar"]
+ name = "canarytest"
+ tags = ["foo", "bar"]
canary_tags = ["foo", "canary"]
}
}
diff --git a/e2e/consul/input/checks_group.nomad b/e2e/consul/input/checks_group.nomad
new file mode 100644
index 000000000..aafbf2bbd
--- /dev/null
+++ b/e2e/consul/input/checks_group.nomad
@@ -0,0 +1,81 @@
+job "group_check" {
+ datacenters = ["dc1"]
+ type = "service"
+
+ group "group_check" {
+ network {
+ mode = "bridge"
+ }
+
+ service {
+ name = "group-service-1"
+ port = "9001"
+
+ check {
+ name = "alive-1"
+ type = "script"
+ task = "test"
+ interval = "2s"
+ timeout = "2s"
+ command = "echo"
+ args = ["alive-1"]
+ }
+ }
+
+ service {
+ name = "group-service-2"
+ port = "9002"
+
+ check {
+ name = "alive-2a"
+ type = "script"
+ task = "test"
+ interval = "2s"
+ timeout = "2s"
+ command = "echo"
+ args = ["alive-2a"]
+ }
+
+ # the file expected by this check will not exist when started,
+ # so the check will error-out and be in a warning state until
+ # it's been created
+ check {
+ name = "alive-2b"
+ type = "script"
+ task = "test"
+ interval = "2s"
+ timeout = "2s"
+ command = "cat"
+ args = ["${NOMAD_TASK_DIR}/alive-2b"]
+ }
+ }
+
+ service {
+ name = "group-service-3"
+ port = "9003"
+
+ # this check should always time out and so the service
+ # should not be marked healthy
+ check {
+ name = "always-dead"
+ type = "script"
+ task = "test"
+ interval = "2s"
+ timeout = "1s"
+ command = "sleep"
+ args = ["10"]
+ }
+ }
+
+ count = 1
+
+ task "test" {
+ driver = "raw_exec"
+
+ config {
+ command = "bash"
+ args = ["-c", "sleep 15000"]
+ }
+ }
+ }
+}
diff --git a/e2e/consul/input/checks_group_update.nomad b/e2e/consul/input/checks_group_update.nomad
new file mode 100644
index 000000000..f25cba793
--- /dev/null
+++ b/e2e/consul/input/checks_group_update.nomad
@@ -0,0 +1,80 @@
+job "group_check" {
+ datacenters = ["dc1"]
+ type = "service"
+
+ group "group_check" {
+ network {
+ mode = "bridge"
+ }
+
+ service {
+ name = "group-service-1"
+ port = "9001"
+
+ # after update, check name has changed
+ check {
+ name = "alive-1a"
+ type = "script"
+ task = "test"
+ interval = "2s"
+ timeout = "2s"
+ command = "echo"
+ args = ["alive-1a"]
+ }
+ }
+
+ service {
+ name = "group-service-2"
+ port = "9002"
+
+ check {
+ name = "alive-2a"
+ type = "script"
+ task = "test"
+ interval = "2s"
+ timeout = "2s"
+ command = "echo"
+ args = ["alive-2a"]
+ }
+
+ # after updating, this check will always pass
+ check {
+ name = "alive-2b"
+ type = "script"
+ task = "test"
+ interval = "2s"
+ timeout = "2s"
+ command = "echo"
+ args = ["alive-2b"]
+ }
+ }
+
+ service {
+ name = "group-service-3"
+ port = "9003"
+
+ # this check should always time out and so the service
+ # should not be marked healthy
+ check {
+ name = "always-dead"
+ type = "script"
+ task = "test"
+ interval = "2s"
+ timeout = "1s"
+ command = "sleep"
+ args = ["10"]
+ }
+ }
+
+ count = 1
+
+ task "test" {
+ driver = "raw_exec"
+
+ config {
+ command = "bash"
+ args = ["-c", "sleep 15000"]
+ }
+ }
+ }
+}
diff --git a/e2e/consul/input/checks_task.nomad b/e2e/consul/input/checks_task.nomad
new file mode 100644
index 000000000..3ec288822
--- /dev/null
+++ b/e2e/consul/input/checks_task.nomad
@@ -0,0 +1,70 @@
+job "task_check" {
+ datacenters = ["dc1"]
+ type = "service"
+
+ group "task_check" {
+ count = 1
+
+ task "test" {
+ service {
+ name = "task-service-1"
+
+ check {
+ name = "alive-1"
+ type = "script"
+ interval = "2s"
+ timeout = "2s"
+ command = "echo"
+ args = ["alive-1"]
+ }
+ }
+
+ service {
+ name = "task-service-2"
+
+ check {
+ name = "alive-2a"
+ type = "script"
+ interval = "2s"
+ timeout = "2s"
+ command = "echo"
+ args = ["alive-2a"]
+ }
+
+ # the file expected by this check will not exist when started,
+ # so the check will error-out and be in a warning state until
+ # it's been created
+ check {
+ name = "alive-2b"
+ type = "script"
+ interval = "2s"
+ timeout = "2s"
+ command = "cat"
+ args = ["${NOMAD_TASK_DIR}/alive-2b"]
+ }
+ }
+
+ service {
+ name = "task-service-3"
+
+ # this check should always time out and so the service
+ # should not be marked healthy
+ check {
+ name = "always-dead"
+ type = "script"
+ interval = "2s"
+ timeout = "1s"
+ command = "sleep"
+ args = ["10"]
+ }
+ }
+
+ driver = "raw_exec"
+
+ config {
+ command = "bash"
+ args = ["-c", "sleep 15000"]
+ }
+ }
+ }
+}
diff --git a/e2e/consul/input/checks_task_update.nomad b/e2e/consul/input/checks_task_update.nomad
new file mode 100644
index 000000000..506db8848
--- /dev/null
+++ b/e2e/consul/input/checks_task_update.nomad
@@ -0,0 +1,73 @@
+job "task_check" {
+ datacenters = ["dc1"]
+ type = "service"
+
+ group "task_check" {
+ count = 1
+
+ task "test" {
+ service {
+ name = "task-service-1"
+
+ # after update, check name has changed
+ check {
+ name = "alive-1a"
+ type = "script"
+ task = "test"
+ interval = "2s"
+ timeout = "2s"
+ command = "echo"
+ args = ["alive-1a"]
+ }
+ }
+
+ service {
+ name = "task-service-2"
+
+ check {
+ name = "alive-2a"
+ type = "script"
+ task = "test"
+ interval = "2s"
+ timeout = "2s"
+ command = "echo"
+ args = ["alive-2a"]
+ }
+
+ # after updating, this check will always pass
+ check {
+ name = "alive-2b"
+ type = "script"
+ task = "test"
+ interval = "2s"
+ timeout = "2s"
+ command = "echo"
+ args = ["alive-2b"]
+ }
+ }
+
+ service {
+ name = "task-service-3"
+
+ # this check should always time out and so the service
+ # should not be marked healthy
+ check {
+ name = "always-dead"
+ type = "script"
+ task = "test"
+ interval = "2s"
+ timeout = "1s"
+ command = "sleep"
+ args = ["10"]
+ }
+ }
+
+ driver = "raw_exec"
+
+ config {
+ command = "bash"
+ args = ["-c", "sleep 15000"]
+ }
+ }
+ }
+}
diff --git a/e2e/consul/input/consul_example.nomad b/e2e/consul/input/consul_example.nomad
index 243abc1c9..18b02be7c 100644
--- a/e2e/consul/input/consul_example.nomad
+++ b/e2e/consul/input/consul_example.nomad
@@ -1,30 +1,31 @@
job "consul-example" {
datacenters = ["dc1"]
- type = "service"
+ type = "service"
update {
- max_parallel = 1
- min_healthy_time = "10s"
- healthy_deadline = "3m"
+ max_parallel = 1
+ min_healthy_time = "10s"
+ healthy_deadline = "3m"
progress_deadline = "10m"
- auto_revert = false
- canary = 0
+ auto_revert = false
+ canary = 0
}
migrate {
- max_parallel = 1
- health_check = "checks"
+ max_parallel = 1
+ health_check = "checks"
min_healthy_time = "10s"
healthy_deadline = "5m"
}
+
group "cache" {
count = 3
restart {
attempts = 2
interval = "30m"
- delay = "15s"
- mode = "fail"
+ delay = "15s"
+ mode = "fail"
}
ephemeral_disk {
@@ -33,18 +34,22 @@ job "consul-example" {
task "redis" {
driver = "docker"
+
config {
image = "redis:3.2"
+
port_map {
db = 6379
}
}
+
resources {
cpu = 500 # 500 MHz
memory = 256 # 256MB
+
network {
mbits = 10
- port "db" {}
+ port "db" {}
}
}
@@ -52,6 +57,7 @@ job "consul-example" {
name = "redis-cache"
tags = ["global", "cache"]
port = "db"
+
check {
name = "alive"
type = "tcp"
@@ -61,4 +67,4 @@ job "consul-example" {
}
}
}
-}
\ No newline at end of file
+}
diff --git a/e2e/consul/script_checks.go b/e2e/consul/script_checks.go
new file mode 100644
index 000000000..11cceb841
--- /dev/null
+++ b/e2e/consul/script_checks.go
@@ -0,0 +1,203 @@
+package consul
+
+import (
+ "bytes"
+ "context"
+ "fmt"
+ "os"
+ "strings"
+ "time"
+
+ capi "github.com/hashicorp/consul/api"
+ "github.com/hashicorp/nomad/api"
+ "github.com/hashicorp/nomad/e2e/e2eutil"
+ "github.com/hashicorp/nomad/e2e/framework"
+ "github.com/hashicorp/nomad/helper/uuid"
+ "github.com/stretchr/testify/require"
+)
+
+type ScriptChecksE2ETest struct {
+ framework.TC
+ jobIds []string
+}
+
+func (tc *ScriptChecksE2ETest) BeforeAll(f *framework.F) {
+ // Ensure cluster has leader before running tests
+ e2eutil.WaitForLeader(f.T(), tc.Nomad())
+ // Ensure that we have at least 1 client node in ready state
+ e2eutil.WaitForNodesReady(f.T(), tc.Nomad(), 1)
+}
+
+// TestGroupScriptCheck runs a job with a single task group with several services
+// and associated script checks. It updates, stops, etc. the job to verify
+// that script checks are re-registered as expected.
+func (tc *ScriptChecksE2ETest) TestGroupScriptCheck(f *framework.F) {
+ nomadClient := tc.Nomad()
+ uuid := uuid.Generate()
+ require := require.New(f.T())
+ consulClient := tc.Consul()
+
+ jobId := "checks_group" + uuid[0:8]
+ tc.jobIds = append(tc.jobIds, jobId)
+
+ // Job run: verify that checks were registered in Consul
+ allocs := e2eutil.RegisterAndWaitForAllocs(f.T(),
+ nomadClient, "consul/input/checks_group.nomad", jobId)
+ require.Equal(1, len(allocs))
+ e2eutil.RequireConsulStatus(require, consulClient, "group-service-1", capi.HealthPassing)
+ e2eutil.RequireConsulStatus(require, consulClient, "group-service-2", capi.HealthWarning)
+ e2eutil.RequireConsulStatus(require, consulClient, "group-service-3", capi.HealthCritical)
+
+ // Check in warning state becomes healthy after check passes
+ _, _, err := exec(nomadClient, allocs,
+ []string{"/bin/sh", "-c", "touch ${NOMAD_TASK_DIR}/alive-2b"})
+ require.NoError(err)
+ e2eutil.RequireConsulStatus(require, consulClient, "group-service-2", capi.HealthPassing)
+
+ // Job update: verify checks are re-registered in Consul
+ allocs = e2eutil.RegisterAndWaitForAllocs(f.T(),
+ nomadClient, "consul/input/checks_group_update.nomad", jobId)
+ require.Equal(1, len(allocs))
+ e2eutil.RequireConsulStatus(require, consulClient, "group-service-1", capi.HealthPassing)
+ e2eutil.RequireConsulStatus(require, consulClient, "group-service-2", capi.HealthPassing)
+ e2eutil.RequireConsulStatus(require, consulClient, "group-service-3", capi.HealthCritical)
+
+ // Verify we don't have any linger script checks running on the client
+ out, _, err := exec(nomadClient, allocs, []string{"pgrep", "sleep"})
+ require.NoError(err)
+ running := strings.Split(strings.TrimSpace(out.String()), "\n")
+ require.LessOrEqual(len(running), 2) // task itself + 1 check == 2
+
+ // Clean job stop: verify that checks were deregistered in Consul
+ nomadClient.Jobs().Deregister(jobId, false, nil) // nomad job stop
+ e2eutil.RequireConsulDeregistered(require, consulClient, "group-service-1")
+ e2eutil.RequireConsulDeregistered(require, consulClient, "group-service-2")
+ e2eutil.RequireConsulDeregistered(require, consulClient, "group-service-3")
+
+ // Restore for next test
+ allocs = e2eutil.RegisterAndWaitForAllocs(f.T(),
+ nomadClient, "consul/input/checks_group.nomad", jobId)
+ require.Equal(2, len(allocs))
+ e2eutil.RequireConsulStatus(require, consulClient, "group-service-1", capi.HealthPassing)
+ e2eutil.RequireConsulStatus(require, consulClient, "group-service-2", capi.HealthWarning)
+ e2eutil.RequireConsulStatus(require, consulClient, "group-service-3", capi.HealthCritical)
+
+ // Crash a task: verify that checks become healthy again
+ _, _, err = exec(nomadClient, allocs, []string{"pkill", "sleep"})
+ if err != nil && err.Error() != "plugin is shut down" {
+ require.FailNow("unexpected error: %v", err)
+ }
+ e2eutil.RequireConsulStatus(require, consulClient, "group-service-1", capi.HealthPassing)
+ e2eutil.RequireConsulStatus(require, consulClient, "group-service-2", capi.HealthWarning)
+ e2eutil.RequireConsulStatus(require, consulClient, "group-service-3", capi.HealthCritical)
+
+ // TODO(tgross) ...
+ // Restart client: verify that checks are re-registered
+}
+
+// TestTaskScriptCheck runs a job with a single task with several services
+// and associated script checks. It updates, stops, etc. the job to verify
+// that script checks are re-registered as expected.
+func (tc *ScriptChecksE2ETest) TestTaskScriptCheck(f *framework.F) {
+ nomadClient := tc.Nomad()
+ uuid := uuid.Generate()
+ require := require.New(f.T())
+ consulClient := tc.Consul()
+
+ jobId := "checks_task" + uuid[0:8]
+ tc.jobIds = append(tc.jobIds, jobId)
+
+ // Job run: verify that checks were registered in Consul
+ allocs := e2eutil.RegisterAndWaitForAllocs(f.T(),
+ nomadClient, "consul/input/checks_task.nomad", jobId)
+ require.Equal(1, len(allocs))
+ e2eutil.RequireConsulStatus(require, consulClient, "task-service-1", capi.HealthPassing)
+ e2eutil.RequireConsulStatus(require, consulClient, "task-service-2", capi.HealthWarning)
+ e2eutil.RequireConsulStatus(require, consulClient, "task-service-3", capi.HealthCritical)
+
+ // Check in warning state becomes healthy after check passes
+ _, _, err := exec(nomadClient, allocs,
+ []string{"/bin/sh", "-c", "touch ${NOMAD_TASK_DIR}/alive-2b"})
+ require.NoError(err)
+ e2eutil.RequireConsulStatus(require, consulClient, "task-service-2", capi.HealthPassing)
+
+ // Job update: verify checks are re-registered in Consul
+ allocs = e2eutil.RegisterAndWaitForAllocs(f.T(),
+ nomadClient, "consul/input/checks_task_update.nomad", jobId)
+ require.Equal(1, len(allocs))
+ e2eutil.RequireConsulStatus(require, consulClient, "task-service-1", capi.HealthPassing)
+ e2eutil.RequireConsulStatus(require, consulClient, "task-service-2", capi.HealthPassing)
+ e2eutil.RequireConsulStatus(require, consulClient, "task-service-3", capi.HealthCritical)
+
+ // Verify we don't have any linger script checks running on the client
+ out, _, err := exec(nomadClient, allocs, []string{"pgrep", "sleep"})
+ require.NoError(err)
+ running := strings.Split(strings.TrimSpace(out.String()), "\n")
+ require.LessOrEqual(len(running), 2) // task itself + 1 check == 2
+
+ // Clean job stop: verify that checks were deregistered in Consul
+ nomadClient.Jobs().Deregister(jobId, false, nil) // nomad job stop
+ e2eutil.RequireConsulDeregistered(require, consulClient, "task-service-1")
+ e2eutil.RequireConsulDeregistered(require, consulClient, "task-service-2")
+ e2eutil.RequireConsulDeregistered(require, consulClient, "task-service-3")
+
+ // Restore for next test
+ allocs = e2eutil.RegisterAndWaitForAllocs(f.T(),
+ nomadClient, "consul/input/checks_task.nomad", jobId)
+ require.Equal(2, len(allocs))
+ e2eutil.RequireConsulStatus(require, consulClient, "task-service-1", capi.HealthPassing)
+ e2eutil.RequireConsulStatus(require, consulClient, "task-service-2", capi.HealthWarning)
+ e2eutil.RequireConsulStatus(require, consulClient, "task-service-3", capi.HealthCritical)
+
+ // Crash a task: verify that checks become healthy again
+ _, _, err = exec(nomadClient, allocs, []string{"pkill", "sleep"})
+ if err != nil && err.Error() != "plugin is shut down" {
+ require.FailNow("unexpected error: %v", err)
+ }
+ e2eutil.RequireConsulStatus(require, consulClient, "task-service-1", capi.HealthPassing)
+ e2eutil.RequireConsulStatus(require, consulClient, "task-service-2", capi.HealthWarning)
+ e2eutil.RequireConsulStatus(require, consulClient, "task-service-3", capi.HealthCritical)
+
+ // TODO(tgross) ...
+ // Restart client: verify that checks are re-registered
+}
+
+func (tc *ScriptChecksE2ETest) AfterEach(f *framework.F) {
+ nomadClient := tc.Nomad()
+ jobs := nomadClient.Jobs()
+ // Stop all jobs in test
+ for _, id := range tc.jobIds {
+ jobs.Deregister(id, true, nil)
+ }
+ // Garbage collect
+ nomadClient.System().GarbageCollect()
+}
+
+func exec(client *api.Client, allocs []*api.AllocationListStub, command []string) (bytes.Buffer, bytes.Buffer, error) {
+ ctx, cancelFn := context.WithTimeout(context.Background(), 5*time.Second)
+ defer cancelFn()
+
+ // we're getting a list of from the registration call here but
+ // one of them might be stopped or stopping, which will return
+ // an error if we try to exec into it.
+ var alloc *api.Allocation
+ for _, stub := range allocs {
+ if stub.DesiredStatus == "run" {
+ alloc = &api.Allocation{
+ ID: stub.ID,
+ Namespace: stub.Namespace,
+ NodeID: stub.NodeID,
+ }
+ }
+ }
+ var stdout, stderr bytes.Buffer
+ if alloc == nil {
+ return stdout, stderr, fmt.Errorf("no allocation ready for exec")
+ }
+ _, err := client.Allocations().Exec(ctx,
+ alloc, "test", false,
+ command,
+ os.Stdin, &stdout, &stderr,
+ make(chan api.TerminalSize), nil)
+ return stdout, stderr, err
+}
diff --git a/e2e/deployment/input/deployment_auto0.nomad b/e2e/deployment/input/deployment_auto0.nomad
index 454a818b9..403d500d0 100644
--- a/e2e/deployment/input/deployment_auto0.nomad
+++ b/e2e/deployment/input/deployment_auto0.nomad
@@ -7,21 +7,22 @@ job "deployment_auto.nomad" {
update {
max_parallel = 3
auto_promote = true
- canary = 2
+ canary = 2
}
task "one" {
driver = "raw_exec"
config {
- command = "/bin/sleep"
- # change args to update the job, the only changes
- args = ["1000000"]
+ command = "/bin/sleep"
+
+ # change args to update the job, the only changes
+ args = ["1000000"]
}
resources {
- cpu = 20
- memory = 20
+ cpu = 20
+ memory = 20
}
}
}
@@ -30,9 +31,9 @@ job "deployment_auto.nomad" {
count = 3
update {
- max_parallel = 2
- auto_promote = true
- canary = 2
+ max_parallel = 2
+ auto_promote = true
+ canary = 2
min_healthy_time = "2s"
}
@@ -40,14 +41,15 @@ job "deployment_auto.nomad" {
driver = "raw_exec"
config {
- command = "/bin/sleep"
- # change args to update the job, the only changes
- args = ["2000000"]
+ command = "/bin/sleep"
+
+ # change args to update the job, the only changes
+ args = ["2000000"]
}
resources {
- cpu = 20
- memory = 20
+ cpu = 20
+ memory = 20
}
}
}
diff --git a/e2e/deployment/input/deployment_auto1.nomad b/e2e/deployment/input/deployment_auto1.nomad
index 415e26e32..597c32b79 100644
--- a/e2e/deployment/input/deployment_auto1.nomad
+++ b/e2e/deployment/input/deployment_auto1.nomad
@@ -7,21 +7,22 @@ job "deployment_auto.nomad" {
update {
max_parallel = 3
auto_promote = true
- canary = 2
+ canary = 2
}
task "one" {
driver = "raw_exec"
config {
- command = "/bin/sleep"
- # change args to update the job, the only changes
- args = ["1000001"]
+ command = "/bin/sleep"
+
+ # change args to update the job, the only changes
+ args = ["1000001"]
}
resources {
- cpu = 20
- memory = 20
+ cpu = 20
+ memory = 20
}
}
}
@@ -30,9 +31,9 @@ job "deployment_auto.nomad" {
count = 3
update {
- max_parallel = 2
- auto_promote = true
- canary = 2
+ max_parallel = 2
+ auto_promote = true
+ canary = 2
min_healthy_time = "2s"
}
@@ -40,14 +41,15 @@ job "deployment_auto.nomad" {
driver = "raw_exec"
config {
- command = "/bin/sleep"
- # change args to update the job, the only changes
- args = ["2000001"]
+ command = "/bin/sleep"
+
+ # change args to update the job, the only changes
+ args = ["2000001"]
}
resources {
- cpu = 20
- memory = 20
+ cpu = 20
+ memory = 20
}
}
}
diff --git a/e2e/e2e_test.go b/e2e/e2e_test.go
index 10fde5f5a..38ca0353d 100644
--- a/e2e/e2e_test.go
+++ b/e2e/e2e_test.go
@@ -6,10 +6,12 @@ import (
_ "github.com/hashicorp/nomad/e2e/affinities"
_ "github.com/hashicorp/nomad/e2e/allocstats"
_ "github.com/hashicorp/nomad/e2e/clientstate"
+ _ "github.com/hashicorp/nomad/e2e/connect"
_ "github.com/hashicorp/nomad/e2e/consul"
_ "github.com/hashicorp/nomad/e2e/consultemplate"
_ "github.com/hashicorp/nomad/e2e/deployment"
_ "github.com/hashicorp/nomad/e2e/example"
+ _ "github.com/hashicorp/nomad/e2e/hostvolumes"
_ "github.com/hashicorp/nomad/e2e/nomad09upgrade"
_ "github.com/hashicorp/nomad/e2e/nomadexec"
_ "github.com/hashicorp/nomad/e2e/spread"
diff --git a/e2e/e2eutil/consul.go b/e2e/e2eutil/consul.go
new file mode 100644
index 000000000..c7c4e8940
--- /dev/null
+++ b/e2e/e2eutil/consul.go
@@ -0,0 +1,43 @@
+package e2eutil
+
+import (
+ "time"
+
+ capi "github.com/hashicorp/consul/api"
+ "github.com/stretchr/testify/require"
+)
+
+// RequireConsulStatus asserts the aggregate health of the service converges to
+// the expected status
+func RequireConsulStatus(require *require.Assertions,
+ client *capi.Client, serviceName, expectedStatus string) {
+ require.Eventually(func() bool {
+ _, status := serviceStatus(require, client, serviceName)
+ return status == expectedStatus
+ }, 30*time.Second, time.Second, // needs a long time for killing tasks/clients
+ "timed out expecting %q to become %q",
+ serviceName, expectedStatus,
+ )
+}
+
+// serviceStatus gets the aggregate health of the service and returns
+// the []ServiceEntry for further checking
+func serviceStatus(require *require.Assertions,
+ client *capi.Client, serviceName string) ([]*capi.ServiceEntry, string) {
+ services, _, err := client.Health().Service(serviceName, "", false, nil)
+ require.NoError(err, "expected no error for %q, got %v", serviceName, err)
+ if len(services) > 0 {
+ return services, services[0].Checks.AggregatedStatus()
+ }
+ return nil, "(unknown status)"
+}
+
+// RequireConsulDeregistered asserts that the service eventually is deregistered from Consul
+func RequireConsulDeregistered(require *require.Assertions,
+ client *capi.Client, serviceName string) {
+ require.Eventually(func() bool {
+ services, _, err := client.Health().Service(serviceName, "", false, nil)
+ require.NoError(err, "expected no error for %q, got %v", serviceName, err)
+ return len(services) == 0
+ }, 5*time.Second, time.Second)
+}
diff --git a/e2e/e2eutil/node.go b/e2e/e2eutil/node.go
new file mode 100644
index 000000000..9ddabe2dd
--- /dev/null
+++ b/e2e/e2eutil/node.go
@@ -0,0 +1,114 @@
+package e2eutil
+
+import (
+ "fmt"
+ "time"
+
+ "github.com/hashicorp/nomad/api"
+ "github.com/hashicorp/nomad/helper/uuid"
+)
+
+// AgentRestart is a test helper function that restarts a client node
+// running under systemd using a raw_exec job. Returns the job ID of
+// the restart job so that callers can clean it up.
+func AgentRestart(client *api.Client, nodeID string) (string, error) {
+ ok, err := isUbuntu(client, nodeID)
+ if !ok {
+ // TODO(tgross): we're checking this because we want to use
+ // systemctl to restart the node, but we should also figure
+ // out a way to detect dev mode targets.
+ return "", fmt.Errorf("AgentRestart only works against ubuntu targets")
+ }
+ if err != nil {
+ return "", err
+ }
+
+ job := newRestartJob(nodeID)
+ jobID := *job.ID
+ _, _, err = client.Jobs().Register(job, nil)
+ if err != nil {
+ return jobID, err
+ }
+
+ reasonErr := fmt.Errorf("timed out")
+ retries := 30
+ for retries > 0 {
+ time.Sleep(1 * time.Second)
+ retries--
+
+ allocStubs, _, err := client.Jobs().Allocations(jobID, true, nil)
+ if err != nil {
+ reasonErr = err
+ continue
+ }
+
+ if len(allocStubs) > 0 {
+ INNER:
+ for _, state := range allocStubs[0].TaskStates {
+ if state.State == "dead" {
+ node, _, err := client.Nodes().Info(nodeID, nil)
+ if err != nil {
+ reasonErr = err
+ break INNER
+ }
+ if node != nil && node.Status == "ready" {
+ return jobID, nil
+ }
+ reasonErr = fmt.Errorf("node status not ready")
+ }
+ }
+ }
+ }
+ return jobID, fmt.Errorf("node did not become ready: %v", reasonErr)
+}
+
+func isUbuntu(client *api.Client, nodeID string) (bool, error) {
+ node, _, err := client.Nodes().Info(nodeID, nil)
+ if err != nil || node == nil {
+ return false, err
+ }
+ if name, ok := node.Attributes["os.name"]; ok {
+ return name == "ubuntu", nil
+ }
+ return false, nil
+}
+
+func newRestartJob(nodeID string) *api.Job {
+ jobType := "batch"
+ name := "restart"
+ jobID := "restart-" + uuid.Generate()[0:8]
+ attempts := 0
+ job := &api.Job{
+ Name: &name,
+ ID: &jobID,
+ Datacenters: []string{"dc1"},
+ Type: &jobType,
+ TaskGroups: []*api.TaskGroup{
+ {
+ Name: &name,
+ Constraints: []*api.Constraint{
+ {
+ LTarget: "${node.unique.id}",
+ RTarget: nodeID,
+ Operand: "=",
+ },
+ },
+ RestartPolicy: &api.RestartPolicy{
+ Attempts: &attempts,
+ },
+ Tasks: []*api.Task{
+ {
+ Name: name,
+ Driver: "raw_exec",
+ Config: map[string]interface{}{
+ "command": "systemctl",
+ "args": []string{"restart", "nomad"},
+ },
+ },
+ },
+ },
+ },
+ }
+ job.Canonicalize()
+ return job
+}
diff --git a/e2e/e2eutil/utils.go b/e2e/e2eutil/utils.go
index 5bd41875c..676f71a5d 100644
--- a/e2e/e2eutil/utils.go
+++ b/e2e/e2eutil/utils.go
@@ -62,18 +62,20 @@ func RegisterAllocs(t *testing.T, nomadClient *api.Client, jobFile string, jobID
job.ID = helper.StringToPtr(jobID)
// Register job
+ var idx uint64
jobs := nomadClient.Jobs()
testutil.WaitForResult(func() (bool, error) {
- resp, _, err := jobs.Register(job, nil)
+ resp, meta, err := jobs.Register(job, nil)
if err != nil {
return false, err
}
+ idx = meta.LastIndex
return resp.EvalID != "", fmt.Errorf("expected EvalID:%s", pretty.Sprint(resp))
}, func(err error) {
require.NoError(err)
})
- allocs, _, _ := jobs.Allocations(jobID, false, nil)
+ allocs, _, _ := jobs.Allocations(jobID, false, &api.QueryOptions{WaitIndex: idx})
return allocs
}
diff --git a/e2e/fabio/fabio.nomad b/e2e/fabio/fabio.nomad
index 238ac5546..c9e7cf283 100644
--- a/e2e/fabio/fabio.nomad
+++ b/e2e/fabio/fabio.nomad
@@ -1,23 +1,27 @@
job "fabio" {
datacenters = ["dc1", "dc2"]
- type = "system"
+ type = "system"
group "fabio" {
task "fabio" {
driver = "docker"
+
config {
- image = "fabiolb/fabio"
+ image = "fabiolb/fabio"
network_mode = "host"
}
resources {
cpu = 100
memory = 64
+
network {
mbits = 20
+
port "lb" {
static = 9999
}
+
port "ui" {
static = 9998
}
diff --git a/e2e/hostvolumes/host_volumes.go b/e2e/hostvolumes/host_volumes.go
new file mode 100644
index 000000000..17188af5a
--- /dev/null
+++ b/e2e/hostvolumes/host_volumes.go
@@ -0,0 +1,132 @@
+package hostvolumes
+
+import (
+ "time"
+
+ "github.com/hashicorp/nomad/e2e/e2eutil"
+ "github.com/hashicorp/nomad/e2e/framework"
+ "github.com/hashicorp/nomad/helper/uuid"
+ "github.com/hashicorp/nomad/nomad/structs"
+ "github.com/stretchr/testify/require"
+)
+
+type BasicHostVolumeTest struct {
+ framework.TC
+ jobIds []string
+}
+
+func init() {
+ framework.AddSuites(&framework.TestSuite{
+ Component: "Host Volumes",
+ CanRunLocal: true,
+ Cases: []framework.TestCase{
+ new(BasicHostVolumeTest),
+ },
+ })
+}
+
+func (tc *BasicHostVolumeTest) BeforeAll(f *framework.F) {
+ // Ensure cluster has leader before running tests
+ e2eutil.WaitForLeader(f.T(), tc.Nomad())
+ // Ensure that we have at least 1 client nodes in ready state
+ e2eutil.WaitForNodesReady(f.T(), tc.Nomad(), 1)
+}
+
+func (tc *BasicHostVolumeTest) TestSingleHostVolume(f *framework.F) {
+ require := require.New(f.T())
+
+ nomadClient := tc.Nomad()
+ uuid := uuid.Generate()
+ jobID := "hostvol" + uuid[0:8]
+ tc.jobIds = append(tc.jobIds, jobID)
+ allocs := e2eutil.RegisterAndWaitForAllocs(f.T(), nomadClient, "hostvolumes/input/single_mount.nomad", jobID)
+
+ waitForTaskState := func(desiredState string) {
+ require.Eventually(func() bool {
+ allocs, _, _ := nomadClient.Jobs().Allocations(jobID, false, nil)
+ if len(allocs) != 1 {
+ return false
+ }
+ first := allocs[0]
+ taskState := first.TaskStates["test"]
+ if taskState == nil {
+ return false
+ }
+ return taskState.State == desiredState
+ }, 30*time.Second, 1*time.Second)
+ }
+
+ waitForClientAllocStatus := func(desiredStatus string) {
+ require.Eventually(func() bool {
+ allocSummaries, _, _ := nomadClient.Jobs().Allocations(jobID, false, nil)
+ if len(allocSummaries) != 1 {
+ return false
+ }
+
+ alloc, _, _ := nomadClient.Allocations().Info(allocSummaries[0].ID, nil)
+ if alloc == nil {
+ return false
+ }
+
+ return alloc.ClientStatus == desiredStatus
+ }, 30*time.Second, 1*time.Second)
+ }
+
+ waitForRestartCount := func(desiredCount uint64) {
+ require.Eventually(func() bool {
+ allocs, _, _ := nomadClient.Jobs().Allocations(jobID, false, nil)
+ if len(allocs) != 1 {
+ return false
+ }
+ first := allocs[0]
+ return first.TaskStates["test"].Restarts == desiredCount
+ }, 30*time.Second, 1*time.Second)
+ }
+
+ // Verify scheduling
+ for _, allocStub := range allocs {
+ node, _, err := nomadClient.Nodes().Info(allocStub.NodeID, nil)
+ require.Nil(err)
+
+ _, ok := node.HostVolumes["shared_data"]
+ require.True(ok, "Node does not have the requested volume")
+ }
+
+ // Wrap in retry to wait until running
+ waitForTaskState(structs.TaskStateRunning)
+
+ // Client should be running
+ waitForClientAllocStatus(structs.AllocClientStatusRunning)
+
+ // Should not be restarted
+ waitForRestartCount(0)
+
+ // Ensure allocs can be restarted
+ for _, allocStub := range allocs {
+ alloc, _, err := nomadClient.Allocations().Info(allocStub.ID, nil)
+ require.Nil(err)
+
+ err = nomadClient.Allocations().Restart(alloc, "", nil)
+ require.Nil(err)
+ }
+
+ // Should be restarted once
+ waitForRestartCount(1)
+
+ // Wrap in retry to wait until running again
+ waitForTaskState(structs.TaskStateRunning)
+
+ // Client should be running again
+ waitForClientAllocStatus(structs.AllocClientStatusRunning)
+}
+
+func (tc *BasicHostVolumeTest) AfterEach(f *framework.F) {
+ nomadClient := tc.Nomad()
+ jobs := nomadClient.Jobs()
+ // Stop all jobs in test
+ for _, id := range tc.jobIds {
+ jobs.Deregister(id, true, nil)
+ }
+ // Garbage collect
+ nomadClient.System().GarbageCollect()
+}
diff --git a/e2e/hostvolumes/input/single_mount.nomad b/e2e/hostvolumes/input/single_mount.nomad
new file mode 100644
index 000000000..ebf1514e9
--- /dev/null
+++ b/e2e/hostvolumes/input/single_mount.nomad
@@ -0,0 +1,29 @@
+job "test1" {
+ datacenters = ["dc1", "dc2"]
+ type = "service"
+
+ group "test1" {
+ count = 1
+
+ volume "data" {
+ type = "host"
+ source = "shared_data"
+ }
+
+ task "test" {
+ driver = "docker"
+
+ volume_mount {
+ volume = "data"
+ destination = "/tmp/foo"
+ }
+
+ config {
+ image = "bash:latest"
+
+ command = "bash"
+ args = ["-c", "sleep 15000"]
+ }
+ }
+ }
+}
diff --git a/e2e/metrics/input/cpustress.nomad b/e2e/metrics/input/cpustress.nomad
index 1c0eef793..b4ea68c18 100644
--- a/e2e/metrics/input/cpustress.nomad
+++ b/e2e/metrics/input/cpustress.nomad
@@ -1,27 +1,33 @@
job "cpustress" {
datacenters = ["dc1", "dc2"]
- type = "batch"
+ type = "batch"
+
group "cpustress" {
count = 1
+
restart {
- mode = "fail"
+ mode = "fail"
attempts = 0
}
+
reschedule {
- attempts = 3
- interval = "10m"
+ attempts = 3
+ interval = "10m"
unlimited = false
}
+
task "cpustress" {
driver = "docker"
config {
image = "progrium/stress"
- args = [
- "-c", "4",
- "-t", "600"
- ]
+ args = [
+ "-c",
+ "4",
+ "-t",
+ "600",
+ ]
}
resources {
@@ -30,4 +36,4 @@ job "cpustress" {
}
}
}
-}
\ No newline at end of file
+}
diff --git a/e2e/metrics/input/diskstress.nomad b/e2e/metrics/input/diskstress.nomad
index b937efb7e..b3c3af048 100644
--- a/e2e/metrics/input/diskstress.nomad
+++ b/e2e/metrics/input/diskstress.nomad
@@ -1,32 +1,39 @@
job "diskstress" {
datacenters = ["dc1", "dc2"]
- type = "batch"
+ type = "batch"
+
group "diskstress" {
count = 1
+
restart {
- mode = "fail"
+ mode = "fail"
attempts = 0
}
+
reschedule {
- attempts = 3
- interval = "10m"
+ attempts = 3
+ interval = "10m"
unlimited = false
}
+
task "diskstress" {
driver = "docker"
config {
image = "progrium/stress"
- args = [
- "-d", "2",
- "-t", "30"
- ]
+ args = [
+ "-d",
+ "2",
+ "-t",
+ "30",
+ ]
}
+
resources {
cpu = 4096
memory = 256
}
}
}
-}
\ No newline at end of file
+}
diff --git a/e2e/metrics/input/helloworld.nomad b/e2e/metrics/input/helloworld.nomad
index 8b7630fd1..bd8cfb443 100644
--- a/e2e/metrics/input/helloworld.nomad
+++ b/e2e/metrics/input/helloworld.nomad
@@ -2,13 +2,12 @@ job "hello" {
datacenters = ["dc1"]
update {
- max_parallel = 1
+ max_parallel = 1
min_healthy_time = "15s"
- auto_revert = true
+ auto_revert = true
}
group "hello" {
-
count = 3
task "hello" {
@@ -19,17 +18,18 @@ job "hello" {
}
artifact {
- source = "https://nomad-community-demo.s3.amazonaws.com/hellov1"
+ source = "https://nomad-community-demo.s3.amazonaws.com/hellov1"
destination = "local/hello"
- mode = "file"
+ mode = "file"
}
resources {
cpu = 500
memory = 256
+
network {
mbits = 10
- port "web" {}
+ port "web" {}
}
}
@@ -37,6 +37,7 @@ job "hello" {
name = "hello"
tags = ["urlprefix-hello/"]
port = "web"
+
check {
name = "alive"
type = "http"
diff --git a/e2e/metrics/input/memstress.nomad b/e2e/metrics/input/memstress.nomad
index 6a051a869..f276bdf72 100644
--- a/e2e/metrics/input/memstress.nomad
+++ b/e2e/metrics/input/memstress.nomad
@@ -1,32 +1,39 @@
job "memstress" {
datacenters = ["dc1", "dc2"]
- type = "batch"
+ type = "batch"
+
group "memstress" {
count = 1
+
restart {
- mode = "fail"
+ mode = "fail"
attempts = 0
}
+
reschedule {
- attempts = 3
- interval = "10m"
+ attempts = 3
+ interval = "10m"
unlimited = false
}
+
task "memstress" {
driver = "docker"
config {
image = "progrium/stress"
- args = [
- "-m", "2",
- "-t", "120"
- ]
+ args = [
+ "-m",
+ "2",
+ "-t",
+ "120",
+ ]
}
+
resources {
cpu = 4096
memory = 1024
}
}
}
-}
\ No newline at end of file
+}
diff --git a/e2e/metrics/input/redis.nomad b/e2e/metrics/input/redis.nomad
index 3587e8f34..27d8a5d84 100644
--- a/e2e/metrics/input/redis.nomad
+++ b/e2e/metrics/input/redis.nomad
@@ -3,26 +3,31 @@ job "redis" {
group "cache" {
count = 4
+
update {
- max_parallel = 1
- min_healthy_time = "5s"
- healthy_deadline = "30s"
+ max_parallel = 1
+ min_healthy_time = "5s"
+ healthy_deadline = "30s"
progress_deadline = "1m"
}
+
restart {
- mode = "fail"
+ mode = "fail"
attempts = 0
}
+
reschedule {
- attempts = 3
- interval = "10m"
+ attempts = 3
+ interval = "10m"
unlimited = false
}
+
task "redis" {
driver = "docker"
config {
image = "redis:4.0"
+
port_map {
db = 6379
}
@@ -31,9 +36,10 @@ job "redis" {
resources {
cpu = 500
memory = 256
+
network {
mbits = 10
- port "db" {}
+ port "db" {}
}
}
@@ -41,6 +47,7 @@ job "redis" {
name = "redis-cache"
tags = ["global", "cache"]
port = "db"
+
check {
name = "alive"
type = "tcp"
@@ -50,4 +57,4 @@ job "redis" {
}
}
}
-}
\ No newline at end of file
+}
diff --git a/e2e/metrics/input/simpleweb.nomad b/e2e/metrics/input/simpleweb.nomad
index c1ffcbd71..352f89bb0 100644
--- a/e2e/metrics/input/simpleweb.nomad
+++ b/e2e/metrics/input/simpleweb.nomad
@@ -1,9 +1,8 @@
job "nginx" {
datacenters = ["dc1"]
- type = "system"
+ type = "system"
group "simpleweb" {
-
update {
stagger = "5s"
max_parallel = 1
@@ -29,8 +28,7 @@ job "nginx" {
network {
mbits = 1
- port "http" {
- }
+ port "http"{}
}
}
@@ -49,4 +47,3 @@ job "nginx" {
}
}
}
-
diff --git a/e2e/nomad09upgrade/docker.nomad b/e2e/nomad09upgrade/docker.nomad
index 00c15291f..5d63c7923 100644
--- a/e2e/nomad09upgrade/docker.nomad
+++ b/e2e/nomad09upgrade/docker.nomad
@@ -16,4 +16,3 @@ job "sleep" {
}
}
}
-
diff --git a/e2e/nomad09upgrade/exec.nomad b/e2e/nomad09upgrade/exec.nomad
index 046e3a9fa..73e09d9e5 100644
--- a/e2e/nomad09upgrade/exec.nomad
+++ b/e2e/nomad09upgrade/exec.nomad
@@ -7,7 +7,7 @@ job "sleep" {
config {
command = "sleep"
- args = ["10000"]
+ args = ["10000"]
}
resources {
@@ -17,4 +17,3 @@ job "sleep" {
}
}
}
-
diff --git a/e2e/nomad09upgrade/rawexec.nomad b/e2e/nomad09upgrade/rawexec.nomad
index 75fd5aefa..0d8e89657 100644
--- a/e2e/nomad09upgrade/rawexec.nomad
+++ b/e2e/nomad09upgrade/rawexec.nomad
@@ -7,7 +7,7 @@ job "sleep" {
config {
command = "sleep"
- args = ["10000"]
+ args = ["10000"]
}
resources {
@@ -17,4 +17,3 @@ job "sleep" {
}
}
}
-
diff --git a/e2e/nomadexec/testdata/docker.nomad b/e2e/nomadexec/testdata/docker.nomad
index acf3dc9c9..f25273151 100644
--- a/e2e/nomadexec/testdata/docker.nomad
+++ b/e2e/nomadexec/testdata/docker.nomad
@@ -6,9 +6,9 @@ job "nomadexec-docker" {
driver = "docker"
config {
- image = "busybox:1.29.2"
+ image = "busybox:1.29.2"
command = "/bin/sleep"
- args = ["1000"]
+ args = ["1000"]
}
resources {
@@ -17,4 +17,4 @@ job "nomadexec-docker" {
}
}
}
-}
\ No newline at end of file
+}
diff --git a/e2e/prometheus/prometheus.nomad b/e2e/prometheus/prometheus.nomad
index b9878a344..c32d45d33 100644
--- a/e2e/prometheus/prometheus.nomad
+++ b/e2e/prometheus/prometheus.nomad
@@ -1,15 +1,17 @@
job "prometheus" {
datacenters = ["dc1", "dc2"]
- type = "service"
+ type = "service"
group "monitoring" {
count = 1
+
restart {
attempts = 2
interval = "30m"
- delay = "15s"
- mode = "fail"
+ delay = "15s"
+ mode = "fail"
}
+
ephemeral_disk {
size = 300
}
@@ -18,6 +20,7 @@ job "prometheus" {
template {
change_mode = "noop"
destination = "local/prometheus.yml"
+
data = < amazon-ebs: Pausing after run of step 'StepRunSourceInstance'. Press enter to continue.
+==> amazon-ebs: Waiting for auto-generated password for instance...
+ amazon-ebs: Password (since debug is enabled):
+```
+
+Alternately, you can follow the steps in the [AWS documentation](https://aws.amazon.com/premiumsupport/knowledge-center/retrieve-windows-admin-password/). Note that you'll need the `ec2_amazon-ebs.pem` file that Packer drops in this directory.
+
+
+Then in powershell (note the leading `$` here indicate variable declarations, not shell prompts!):
+
+```
+$username = "Administrator"
+$password = ""
+$securePassword = ConvertTo-SecureString -AsPlainText -Force $password
+$remoteHostname = "54.x.y.z"
+$port = 5986
+$cred = New-Object System.Management.Automation.PSCredential ($username, $securePassword)
+$so = New-PSSessionOption -SkipCACheck -SkipCNCheck
+
+Enter-PsSession `
+ -ComputerName $remoteHostname `
+ -Port $port `
+ -Credential $cred `
+ -UseSSL `
+ -SessionOption $so `
+ -Authentication Basic
+```
+
+Packer doesn't have a cleanup command if you've run `-on-error=abort`. So when you're done, clean up the machine by looking for "Packer" in the AWS console:
+* [EC2 instances](https://console.aws.amazon.com/ec2/home?region=us-east-1#Instances:search=Packer;sort=tag:Name)
+* [Key pairs](https://console.aws.amazon.com/ec2/v2/home?region=us-east-1#KeyPairs:search=packer;sort=keyName)
+* [Security groups](https://console.aws.amazon.com/ec2/v2/home?region=us-east-1#SecurityGroups:search=packer;sort=groupName)
diff --git a/e2e/terraform/shared/scripts/setup.sh b/e2e/terraform/packer/linux/setup.sh
old mode 100644
new mode 100755
similarity index 85%
rename from e2e/terraform/shared/scripts/setup.sh
rename to e2e/terraform/packer/linux/setup.sh
index c83cdc001..f22bc5092
--- a/e2e/terraform/shared/scripts/setup.sh
+++ b/e2e/terraform/packer/linux/setup.sh
@@ -5,11 +5,12 @@ set -e
# Disable interactive apt prompts
export DEBIAN_FRONTEND=noninteractive
+sudo mkdir -p /ops/shared
+sudo chown -R ubuntu:ubuntu /ops/shared
+
cd /ops
-CONFIGDIR=/ops/shared/config
-
-CONSULVERSION=1.4.4
+CONSULVERSION=1.6.1
CONSULDOWNLOAD=https://releases.hashicorp.com/consul/${CONSULVERSION}/consul_${CONSULVERSION}_linux_amd64.zip
CONSULCONFIGDIR=/etc/consul.d
CONSULDIR=/opt/consul
@@ -25,7 +26,7 @@ NOMADDOWNLOAD=https://releases.hashicorp.com/nomad/${NOMADVERSION}/nomad_${NOMAD
NOMADCONFIGDIR=/etc/nomad.d
NOMADDIR=/opt/nomad
-HADOOP_VERSION=2.7.6
+HADOOP_VERSION=2.7.7
# Dependencies
sudo apt-get install -y software-properties-common
@@ -37,13 +38,18 @@ sudo apt-get install -y python-setuptools
sudo easy_install pip
sudo pip install numpy
-# Disable the firewall
+# Install sockaddr
+aws s3 cp "s3://nomad-team-test-binary/tools/sockaddr_linux_amd64" /tmp/sockaddr
+sudo mv /tmp/sockaddr /usr/local/bin
+sudo chmod +x /usr/local/bin/sockaddr
+sudo chown root:root /usr/local/bin/sockaddr
+# Disable the firewall
sudo ufw disable || echo "ufw not installed"
echo "Install Consul"
-curl -L $CONSULDOWNLOAD > consul.zip
-sudo unzip consul.zip -d /usr/local/bin
+curl -L -o /tmp/consul.zip $CONSULDOWNLOAD
+sudo unzip /tmp/consul.zip -d /usr/local/bin
sudo chmod 0755 /usr/local/bin/consul
sudo chown root:root /usr/local/bin/consul
@@ -54,8 +60,8 @@ sudo mkdir -p $CONSULDIR
sudo chmod 755 $CONSULDIR
echo "Install Vault"
-curl -L $VAULTDOWNLOAD > vault.zip
-sudo unzip vault.zip -d /usr/local/bin
+curl -L -o /tmp/vault.zip $VAULTDOWNLOAD
+sudo unzip /tmp/vault.zip -d /usr/local/bin
sudo chmod 0755 /usr/local/bin/vault
sudo chown root:root /usr/local/bin/vault
@@ -66,8 +72,8 @@ sudo mkdir -p $VAULTDIR
sudo chmod 755 $VAULTDIR
echo "Install Nomad"
-curl -L $NOMADDOWNLOAD > nomad.zip
-sudo unzip nomad.zip -d /usr/local/bin
+curl -L -o /tmp/nomad.zip $NOMADDOWNLOAD
+sudo unzip /tmp/nomad.zip -d /usr/local/bin
sudo chmod 0755 /usr/local/bin/nomad
sudo chown root:root /usr/local/bin/nomad
diff --git a/e2e/terraform/packer/packer-windows.json b/e2e/terraform/packer/packer-windows.json
new file mode 100644
index 000000000..52f2575e6
--- /dev/null
+++ b/e2e/terraform/packer/packer-windows.json
@@ -0,0 +1,69 @@
+{
+ "builders": [
+ {
+ "type": "amazon-ebs",
+ "region": "us-east-1",
+ "source_ami_filter": {
+ "filters": {
+ "virtualization-type": "hvm",
+ "name": "Windows_Server-2016-English-Full-Base-*",
+ "root-device-type": "ebs"
+ },
+ "owners": [
+ "amazon"
+ ],
+ "most_recent": true
+ },
+ "instance_type": "t2.medium",
+ "ami_name": "nomad-e2e-windows-2016-{{timestamp}}",
+ "ami_groups": [
+ "all"
+ ],
+ "communicator": "winrm",
+ "user_data_file": "windows/setupwinrm.ps1",
+ "winrm_username": "Administrator",
+ "winrm_insecure": true,
+ "winrm_use_ssl": true,
+ "tags": {
+ "OS": "Windows2016"
+ }
+ }
+ ],
+ "provisioners": [
+ {
+ "type": "powershell",
+ "elevated_user": "Administrator",
+ "elevated_password": "{{.WinRMPassword}}",
+ "scripts": [
+ "windows/disable-windows-updates.ps1",
+ "windows/fix-tls.ps1",
+ "windows/install-nuget.ps1",
+ "windows/install-tools.ps1",
+ "windows/install-docker.ps1",
+ "windows/setup-directories.ps1",
+ "windows/install-openssh.ps1"
+ ]
+ },
+ {
+ "type": "windows-restart"
+ },
+ {
+ "type": "powershell",
+ "elevated_user": "Administrator",
+ "elevated_password": "{{.WinRMPassword}}",
+ "scripts": [
+ "windows/install-consul.ps1",
+ "windows/install-vault.ps1",
+ "windows/install-nomad.ps1"
+ ]
+ },
+ {
+ "type": "powershell",
+ "inline": [
+ "C:\\ProgramData\\Amazon\\EC2-Windows\\Launch\\Scripts\\SendWindowsIsReady.ps1 -Schedule",
+ "C:\\ProgramData\\Amazon\\EC2-Windows\\Launch\\Scripts\\InitializeInstance.ps1 -Schedule",
+ "C:\\ProgramData\\Amazon\\EC2-Windows\\Launch\\Scripts\\SysprepInstance.ps1 -NoShutdown"
+ ]
+ }
+ ]
+}
diff --git a/e2e/terraform/packer/packer.json b/e2e/terraform/packer/packer.json
new file mode 100644
index 000000000..da828c17d
--- /dev/null
+++ b/e2e/terraform/packer/packer.json
@@ -0,0 +1,25 @@
+{
+ "builders": [
+ {
+ "type": "amazon-ebs",
+ "region": "us-east-1",
+ "source_ami": "ami-80861296",
+ "instance_type": "t2.medium",
+ "ssh_username": "ubuntu",
+ "iam_instance_profile": "packer-builder",
+ "ami_name": "nomad-e2e-{{timestamp}}",
+ "ami_groups": [
+ "all"
+ ],
+ "tags": {
+ "OS": "Ubuntu"
+ }
+ }
+ ],
+ "provisioners": [
+ {
+ "type": "shell",
+ "script": "./linux/setup.sh"
+ }
+ ]
+}
diff --git a/e2e/terraform/packer/windows/README.md b/e2e/terraform/packer/windows/README.md
new file mode 100644
index 000000000..071f41227
--- /dev/null
+++ b/e2e/terraform/packer/windows/README.md
@@ -0,0 +1,20 @@
+# Windows Packer Build
+
+There are a few boilerplate items in the Powershell scripts, explained below.
+
+The default TLS protocol in the version of .NET that our Powershell cmdlets are built in it 1.0, which means plenty of properly configured HTTP servers will reject requests. The boilerplate snippet below sets this for the current script:
+
+```
+# Force TLS1.2
+[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
+```
+
+We need to run some of the scripts as an administrator role. The following is a safety check that we're doing so:
+
+```
+$RunningAsAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")
+if (!$RunningAsAdmin) {
+ Write-Error "Must be executed in Administrator level shell."
+ exit 1
+}
+```
diff --git a/e2e/terraform/packer/windows/disable-windows-updates.ps1 b/e2e/terraform/packer/windows/disable-windows-updates.ps1
new file mode 100755
index 000000000..1b9f80660
--- /dev/null
+++ b/e2e/terraform/packer/windows/disable-windows-updates.ps1
@@ -0,0 +1,30 @@
+$RunningAsAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")
+if (!$RunningAsAdmin) {
+ Write-Error "Must be executed in Administrator level shell."
+ exit 1
+}
+
+$service = Get-WmiObject Win32_Service -Filter 'Name="wuauserv"'
+
+if (!$service) {
+ Write-Error "Failed to retrieve the wauserv service"
+ exit 1
+}
+
+if ($service.StartMode -ne "Disabled") {
+ $result = $service.ChangeStartMode("Disabled").ReturnValue
+ if($result) {
+ Write-Error "Failed to disable the 'wuauserv' service. The return value was $result."
+ exit 1
+ }
+}
+
+if ($service.State -eq "Running") {
+ $result = $service.StopService().ReturnValue
+ if ($result) {
+ Write-Error "Failed to stop the 'wuauserv' service. The return value was $result."
+ exit 1
+ }
+}
+
+Write-Output "Automatic Windows Updates disabled."
diff --git a/e2e/terraform/packer/windows/fix-tls.ps1 b/e2e/terraform/packer/windows/fix-tls.ps1
new file mode 100755
index 000000000..f17a6aea5
--- /dev/null
+++ b/e2e/terraform/packer/windows/fix-tls.ps1
@@ -0,0 +1,151 @@
+# This script hardens TLS configuration by disabling weak and broken protocols
+# and enabling useful protocols like TLS 1.1 and 1.2.
+
+$RunningAsAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")
+if (!$RunningAsAdmin) {
+ Write-Error "Must be executed in Administrator level shell."
+ exit 1
+}
+
+$weakProtocols = @(
+ 'Multi-Protocol Unified Hello',
+ 'PCT 1.0',
+ 'SSL 2.0',
+ 'SSL 3.0'
+)
+
+$strongProtocols = @(
+ 'TLS 1.0',
+ 'TLS 1.1',
+ 'TLS 1.2'
+)
+
+$weakCiphers = @(
+ 'DES 56/56',
+ 'NULL',
+ 'RC2 128/128',
+ 'RC2 40/128',
+ 'RC2 56/128',
+ 'RC4 40/128',
+ 'RC4 56/128',
+ 'RC4 64/128',
+ 'RC4 128/128'
+)
+
+$strongCiphers = @(
+ 'AES 128/128',
+ 'AES 256/256',
+ 'Triple DES 168/168'
+)
+
+$weakHashes = @(
+ 'MD5',
+ 'SHA'
+)
+
+$strongHashes = @(
+ 'SHA 256',
+ 'SHA 384',
+ 'SHA 512'
+)
+
+$strongKeyExchanges = @(
+ 'Diffie-Hellman',
+ 'ECDH',
+ 'PKCS'
+)
+
+$cipherOrder = @(
+ 'TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P521',
+ 'TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P384',
+ 'TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA384_P256',
+ 'TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA_P521',
+ 'TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA_P384',
+ 'TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA_P256',
+ 'TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P521',
+ 'TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P384',
+ 'TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256',
+ 'TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA_P521',
+ 'TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA_P384',
+ 'TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA_P256',
+ 'TLS_RSA_WITH_AES_256_GCM_SHA384',
+ 'TLS_RSA_WITH_AES_128_GCM_SHA256',
+ 'TLS_RSA_WITH_AES_256_CBC_SHA256',
+ 'TLS_RSA_WITH_AES_256_CBC_SHA',
+ 'TLS_RSA_WITH_AES_128_CBC_SHA256',
+ 'TLS_RSA_WITH_AES_128_CBC_SHA',
+ 'TLS_RSA_WITH_3DES_EDE_CBC_SHA'
+)
+
+# Reset the protocols key
+New-Item 'HKLM:SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols' -Force | Out-Null
+
+# Disable weak protocols
+Foreach ($protocol in $weakProtocols) {
+ New-Item HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Server -Force | Out-Null
+ New-Item HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Client -Force | Out-Null
+ New-ItemProperty -path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Server -name Enabled -value 0 -PropertyType 'DWord' -Force | Out-Null
+ New-ItemProperty -path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Server -name DisabledByDefault -value '0xffffffff' -PropertyType 'DWord' -Force | Out-Null
+ New-ItemProperty -path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Client -name Enabled -value 0 -PropertyType 'DWord' -Force | Out-Null
+ New-ItemProperty -path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Client -name DisabledByDefault -value '0xffffffff' -PropertyType 'DWord' -Force | Out-Null
+}
+
+# Enable strong protocols
+Foreach ($protocol in $strongProtocols) {
+ New-Item HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Server -Force | Out-Null
+ New-Item HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Client -Force | Out-Null
+ New-ItemProperty -path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Server -name 'Enabled' -value '0xffffffff' -PropertyType 'DWord' -Force | Out-Null
+ New-ItemProperty -path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Server -name 'DisabledByDefault' -value 0 -PropertyType 'DWord' -Force | Out-Null
+ New-ItemProperty -path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Client -name 'Enabled' -value '0xffffffff' -PropertyType 'DWord' -Force | Out-Null
+ New-ItemProperty -path HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Protocols\$protocol\Client -name 'DisabledByDefault' -value 0 -PropertyType 'DWord' -Force | Out-Null
+}
+
+# Reset the ciphers key
+New-Item 'HKLM:SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers' -Force | Out-Null
+
+# Disable Weak Ciphers
+Foreach ($cipher in $weakCiphers) {
+ $key = (get-item HKLM:\).OpenSubKey("SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers", $true).CreateSubKey($cipher)
+ $key.SetValue('Enabled', 0, 'DWord')
+ $key.Close()
+}
+
+# Enable Strong Ciphers
+Foreach ($cipher in $strongCiphers) {
+ $key = (get-item HKLM:\).OpenSubKey("SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers", $true).CreateSubKey($cipher)
+ New-ItemProperty -path "HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Ciphers\$cipher" -name 'Enabled' -value '0xffffffff' -PropertyType 'DWord' -Force | Out-Null
+ $key.Close()
+}
+
+# Reset the hashes key
+New-Item 'HKLM:SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Hashes' -Force | Out-Null
+
+# Disable weak hashes
+Foreach ($hash in $weakHashes) {
+ $key = (get-item HKLM:\).OpenSubKey("SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Hashes", $true).CreateSubKey($hash)
+ New-ItemProperty -path "HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Hashes\$hash" -name 'Enabled' -value '0' -PropertyType 'DWord' -Force | Out-Null
+ $key.Close()
+}
+
+# Enable Hashes
+Foreach ($hash in $strongHashes) {
+ $key = (get-item HKLM:\).OpenSubKey("SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Hashes", $true).CreateSubKey($hash)
+ New-ItemProperty -path "HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\Hashes\$hash" -name 'Enabled' -value '0xffffffff' -PropertyType 'DWord' -Force | Out-Null
+ $key.Close()
+}
+
+# Reset the KeyExchangeAlgorithms key
+New-Item 'HKLM:SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\KeyExchangeAlgorithms' -Force | Out-Null
+
+# Enable KeyExchangeAlgorithms
+Foreach ($keyExchange in $strongKeyExchanges) {
+ $key = (get-item HKLM:\).OpenSubKey("SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\KeyExchangeAlgorithms", $true).CreateSubKey($keyExchange)
+ New-ItemProperty -path "HKLM:\SYSTEM\CurrentControlSet\Control\SecurityProviders\SCHANNEL\KeyExchangeAlgorithms\$keyExchange" -name 'Enabled' -value '0xffffffff' -PropertyType 'DWord' -Force | Out-Null
+ $key.Close()
+}
+
+# Set cipher order
+$cipherOrderString = [string]::join(',', $cipherOrder)
+New-ItemProperty -path 'HKLM:\SOFTWARE\Policies\Microsoft\Cryptography\Configuration\SSL\00010002' -name 'Functions' -value $cipherOrderString -PropertyType 'String' -Force | Out-Null
+
+Write-Output "TLS hardened."
diff --git a/e2e/terraform/packer/windows/install-consul.ps1 b/e2e/terraform/packer/windows/install-consul.ps1
new file mode 100755
index 000000000..d2359a9c3
--- /dev/null
+++ b/e2e/terraform/packer/windows/install-consul.ps1
@@ -0,0 +1,32 @@
+Set-StrictMode -Version latest
+$ErrorActionPreference = "Stop"
+
+# Force TLS1.2
+[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
+
+Set-Location C:\opt
+
+Try {
+ $releases = "https://releases.hashicorp.com"
+ $version = "1.6.1"
+ $url = "${releases}/consul/${version}/consul_${version}_windows_amd64.zip"
+
+ $configDir = "C:\opt\consul.d"
+ md $configDir
+ md C:\opt\consul
+
+ # TODO: check sha!
+ Write-Output "Downloading Consul from: $url"
+ Invoke-WebRequest -Uri $url -Outfile consul.zip
+ Expand-Archive .\consul.zip .\
+ mv consul.exe C:\opt\consul.exe
+ C:\opt\consul.exe version
+ rm consul.zip
+
+} Catch {
+ Write-Error "Failed to install Consul."
+ $host.SetShouldExit(-1)
+ throw
+}
+
+Write-Output "Installed Consul."
diff --git a/e2e/terraform/packer/windows/install-docker.ps1 b/e2e/terraform/packer/windows/install-docker.ps1
new file mode 100755
index 000000000..6dbe21f99
--- /dev/null
+++ b/e2e/terraform/packer/windows/install-docker.ps1
@@ -0,0 +1,35 @@
+Set-StrictMode -Version latest
+$ErrorActionPreference = "Stop"
+
+$RunningAsAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")
+if (!$RunningAsAdmin) {
+ Write-Error "Must be executed in Administrator level shell."
+ exit 1
+}
+
+# Force TLS1.2
+[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
+
+Try {
+ Write-Output "Installing containers feature."
+ Install-WindowsFeature -Name Containers
+
+ Write-Output "Creating user for Docker."
+ net localgroup docker /add
+ net localgroup docker $env:USERNAME /add
+
+ Write-Output "Installing Docker."
+ Set-PSRepository -InstallationPolicy Trusted -Name PSGallery
+ Install-Module -Name DockerMsftProvider -Repository PSGallery -Force
+ Install-Package -Name docker -ProviderName DockerMsftProvider -Force
+
+} Catch {
+ Write-Error "Failed to install Docker."
+ $host.SetShouldExit(-1)
+ throw
+} Finally {
+ # clean up by re-securing this package repo
+ Set-PSRepository -InstallationPolicy Untrusted -Name PSGallery
+}
+
+Write-Output "Installed Docker."
diff --git a/e2e/terraform/packer/windows/install-nomad.ps1 b/e2e/terraform/packer/windows/install-nomad.ps1
new file mode 100755
index 000000000..300197319
--- /dev/null
+++ b/e2e/terraform/packer/windows/install-nomad.ps1
@@ -0,0 +1,34 @@
+Set-StrictMode -Version latest
+$ErrorActionPreference = "Stop"
+
+# Force TLS1.2
+[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
+
+Set-Location C:\opt
+
+Try {
+ # we install the most recent stable/GA release; this will be replaced
+ # with the current master when we run e2e tests
+ $releases = "https://releases.hashicorp.com"
+ $version = "0.9.6"
+ $url = "${releases}/nomad/${version}/nomad_${version}_windows_amd64.zip"
+
+ $configDir = "C:\opt\nomad.d"
+ md $configDir
+ md C:\opt\nomad
+
+ # TODO: check sha!
+ Write-Output "Downloading Nomad from: $url"
+ Invoke-WebRequest -Uri $url -Outfile nomad.zip
+ Expand-Archive .\nomad.zip .\
+ mv nomad.exe C:\opt\nomad.exe
+ C:\opt\nomad.exe version
+ rm nomad.zip
+
+} Catch {
+ Write-Error "Failed to install Nomad."
+ $host.SetShouldExit(-1)
+ throw
+}
+
+Write-Output "Installed Nomad."
diff --git a/e2e/terraform/packer/windows/install-nuget.ps1 b/e2e/terraform/packer/windows/install-nuget.ps1
new file mode 100755
index 000000000..e1f38da6d
--- /dev/null
+++ b/e2e/terraform/packer/windows/install-nuget.ps1
@@ -0,0 +1,21 @@
+Set-StrictMode -Version latest
+$ErrorActionPreference = "Stop"
+
+$RunningAsAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")
+if (!$RunningAsAdmin) {
+ Write-Error "Must be executed in Administrator level shell."
+ exit 1
+}
+
+# Force TLS1.2
+[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
+
+Try {
+ Install-PackageProvider -Name NuGet -MinimumVersion 2.8.5.201 -Force
+} Catch {
+ Write-Error "Failed to install NuGet package manager."
+ $host.SetShouldExit(-1)
+ throw
+}
+
+Write-Output "Installed NuGet."
diff --git a/e2e/terraform/packer/windows/install-openssh.ps1 b/e2e/terraform/packer/windows/install-openssh.ps1
new file mode 100755
index 000000000..767b570ef
--- /dev/null
+++ b/e2e/terraform/packer/windows/install-openssh.ps1
@@ -0,0 +1,53 @@
+Set-StrictMode -Version latest
+$ErrorActionPreference = "Stop"
+
+$RunningAsAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")
+if (!$RunningAsAdmin) {
+ Write-Error "Must be executed in Administrator level shell."
+ exit 1
+}
+
+# Force TLS1.2
+[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
+
+Try {
+
+ # install portable SSH instead of the Windows feature because we
+ # need to target 2016
+ $repo = "https://github.com/PowerShell/Win32-OpenSSH"
+ $version = "v8.0.0.0p1-Beta"
+ $url = "${repo}/releases/download/${version}/OpenSSH-Win64.zip"
+
+ # TODO: check sha!
+ Write-Output "Downloading OpenSSH from: $url"
+ Invoke-WebRequest -Uri $url -Outfile "OpenSSH-Win64.zip"
+ Expand-Archive ".\OpenSSH-Win64.zip" "C:\Program Files"
+ Rename-Item -Path "C:\Program Files\OpenSSH-Win64" -NewName "OpenSSH"
+
+ & "C:\Program Files\OpenSSH\install-sshd.ps1"
+
+ # Start the service
+ Start-Service sshd
+ Set-Service -Name sshd -StartupType 'Automatic'
+
+ Start-Service ssh-agent
+ Set-Service -Name ssh-agent -StartupType 'Automatic'
+
+ # Enable host firewall rule if it doesn't exist
+ New-NetFirewallRule -Name sshd -DisplayName 'OpenSSH Server (sshd)' `
+ -Enabled True -Direction Inbound -Protocol TCP -Action Allow -LocalPort 22
+
+ # Set powershell as the OpenSSH login shell
+ New-ItemProperty -Path "HKLM:\SOFTWARE\OpenSSH" `
+ -Name DefaultShell `
+ -Value "C:\Windows\System32\WindowsPowerShell\v1.0\powershell.exe" `
+ -PropertyType String -Force
+
+
+} Catch {
+ Write-Error "Failed to install OpenSSH."
+ $host.SetShouldExit(-1)
+ throw
+}
+
+Write-Output "Installed OpenSSH."
diff --git a/e2e/terraform/packer/windows/install-tools.ps1 b/e2e/terraform/packer/windows/install-tools.ps1
new file mode 100755
index 000000000..b4535d1d0
--- /dev/null
+++ b/e2e/terraform/packer/windows/install-tools.ps1
@@ -0,0 +1,37 @@
+Set-StrictMode -Version latest
+$ErrorActionPreference = "Stop"
+
+$RunningAsAdmin = ([Security.Principal.WindowsPrincipal] [Security.Principal.WindowsIdentity]::GetCurrent()).IsInRole([Security.Principal.WindowsBuiltInRole] "Administrator")
+if (!$RunningAsAdmin) {
+ Write-Error "Must be executed in Administrator level shell."
+ exit 1
+}
+
+# Force TLS1.2
+[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
+
+# TODO (tgross: some stuff installed on Linux but not here yet
+# - Possible issues: no redis-tools for windows
+# - Possible non-issues: probably don't need tree, curl,tmux
+
+Try {
+ Set-PSRepository -InstallationPolicy Trusted -Name PSGallery
+
+ Write-Output "Installing 7Zip"
+ Install-Package -Force 7Zip4PowerShell
+
+ Write-Output "Installing JQ"
+ Invoke-WebRequest `
+ -Uri https://github.com/stedolan/jq/releases/download/jq-1.6/jq-win64.exe `
+ -Outfile jq-win64.exe
+
+} Catch {
+ Write-Error "Failed to install dependencies."
+ $host.SetShouldExit(-1)
+ throw
+} Finally {
+ # clean up by re-securing this package repo
+ Set-PSRepository -InstallationPolicy Untrusted -Name PSGallery
+}
+
+Write-Output "Installed dependencies"
diff --git a/e2e/terraform/packer/windows/install-vault.ps1 b/e2e/terraform/packer/windows/install-vault.ps1
new file mode 100755
index 000000000..82498ea08
--- /dev/null
+++ b/e2e/terraform/packer/windows/install-vault.ps1
@@ -0,0 +1,31 @@
+Set-StrictMode -Version latest
+$ErrorActionPreference = "Stop"
+
+# Force TLS1.2
+[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
+
+Set-Location C:\opt
+
+Try {
+ $releases = "https://releases.hashicorp.com"
+ $version = "1.2.3"
+ $url = "${releases}/vault/${version}/vault_${version}_windows_amd64.zip"
+
+ $configDir = "C:\opt\vault.d"
+ md $configDir
+
+ # TODO: check sha!
+ Write-Output "Downloading Vault from: $url"
+ Invoke-WebRequest -Uri $url -Outfile vault.zip
+ Expand-Archive .\vault.zip .\
+ mv vault.exe C:\opt\vault.exe
+ C:\opt\vault.exe version
+ rm vault.zip
+
+} Catch {
+ Write-Error "Failed to install Vault."
+ $host.SetShouldExit(-1)
+ throw
+}
+
+Write-Output "Installed Vault."
diff --git a/e2e/terraform/packer/windows/setup-directories.ps1 b/e2e/terraform/packer/windows/setup-directories.ps1
new file mode 100755
index 000000000..3cb3ad806
--- /dev/null
+++ b/e2e/terraform/packer/windows/setup-directories.ps1
@@ -0,0 +1,2 @@
+md C:\ops
+md C:\opt
diff --git a/e2e/terraform/packer/windows/setupwinrm.ps1 b/e2e/terraform/packer/windows/setupwinrm.ps1
new file mode 100755
index 000000000..030eb6f1c
--- /dev/null
+++ b/e2e/terraform/packer/windows/setupwinrm.ps1
@@ -0,0 +1,44 @@
+
+
+Write-Output "Running User Data Script"
+Write-Host "(host) Running User Data Script"
+
+Set-ExecutionPolicy Unrestricted -Scope LocalMachine -Force -ErrorAction Ignore
+
+# Don't set this before Set-ExecutionPolicy as it throws an error
+$ErrorActionPreference = "stop"
+
+# Remove HTTP listener
+Remove-Item -Path WSMan:\Localhost\listener\listener* -Recurse
+
+$Cert = New-SelfSignedCertificate `
+ -CertstoreLocation Cert:\LocalMachine\My `
+ -DnsName "packer"
+
+New-Item `
+ -Path WSMan:\LocalHost\Listener `
+ -Transport HTTPS `
+ -Address * `
+ -CertificateThumbPrint $Cert.Thumbprint `
+ -Force
+
+# WinRM
+write-output "Setting up WinRM"
+write-host "(host) setting up WinRM"
+
+cmd.exe /c winrm quickconfig -q
+cmd.exe /c winrm set "winrm/config" '@{MaxTimeoutms="1800000"}'
+cmd.exe /c winrm set "winrm/config/winrs" '@{MaxMemoryPerShellMB="1024"}'
+cmd.exe /c winrm set "winrm/config/service" '@{AllowUnencrypted="true"}'
+cmd.exe /c winrm set "winrm/config/client" '@{AllowUnencrypted="true"}'
+cmd.exe /c winrm set "winrm/config/service/auth" '@{Basic="true"}'
+cmd.exe /c winrm set "winrm/config/client/auth" '@{Basic="true"}'
+cmd.exe /c winrm set "winrm/config/service/auth" '@{CredSSP="true"}'
+cmd.exe /c winrm set "winrm/config/listener?Address=*+Transport=HTTPS" "@{Port=`"5986`";Hostname=`"packer`";CertificateThumbprint=`"$($Cert.Thumbprint)`"}"
+cmd.exe /c netsh advfirewall firewall set rule group="remote administration" new enable=yes
+cmd.exe /c netsh firewall add portopening TCP 5986 "Port 5986"
+cmd.exe /c net stop winrm
+cmd.exe /c sc config winrm start= auto
+cmd.exe /c net start winrm
+
+
diff --git a/e2e/terraform/shared/README.md b/e2e/terraform/shared/README.md
new file mode 100644
index 000000000..899aaba3a
--- /dev/null
+++ b/e2e/terraform/shared/README.md
@@ -0,0 +1,10 @@
+# Terraform Provisioning
+
+These scripts are copied up to instances via Terraform provisioning and executed after launch. This allows us to update the Nomad configurations for features that land on master without having to re-bake AMIs.
+
+## What goes here?
+
+* steps that are specific to a given Nomad build: ex. all Nomad configuration files.
+* steps that are specific to a given EC2 instance: configuring IP addresses.
+
+These scripts *should* be idempotent: copy configurations from `/ops/shared` to their destinations where the services expect them to be, rather than moving them.
diff --git a/e2e/terraform/shared/config/consul_client.json b/e2e/terraform/shared/config/consul_client.json
deleted file mode 100644
index 94026fa1e..000000000
--- a/e2e/terraform/shared/config/consul_client.json
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- "ui": true,
- "log_level": "INFO",
- "data_dir": "/opt/consul/data",
- "bind_addr": "0.0.0.0",
- "client_addr": "0.0.0.0",
- "advertise_addr": "IP_ADDRESS",
- "retry_join": ["RETRY_JOIN"]
-}
diff --git a/e2e/terraform/shared/config/provision-client.sh b/e2e/terraform/shared/config/provision-client.sh
new file mode 100755
index 000000000..ad5a645b0
--- /dev/null
+++ b/e2e/terraform/shared/config/provision-client.sh
@@ -0,0 +1,83 @@
+#!/bin/bash
+# installs and configures the desired build of Nomad as a server
+set -o errexit
+set -o nounset
+
+CONFIGDIR=/ops/shared/config
+
+HADOOP_VERSION=hadoop-2.7.7
+HADOOPCONFIGDIR=/usr/local/$HADOOP_VERSION/etc/hadoop
+HOME_DIR=ubuntu
+
+IP_ADDRESS=$(/usr/local/bin/sockaddr eval 'GetPrivateIP')
+DOCKER_BRIDGE_IP_ADDRESS=$(/usr/local/bin/sockaddr eval 'GetInterfaceIP "docker0"')
+
+CLOUD="$1"
+NOMAD_SHA="$2"
+NOMAD_CONFIG="$3"
+
+# Consul
+CONSUL_SRC=/ops/shared/consul
+CONSUL_DEST=/etc/consul.d
+
+sudo cp "$CONSUL_SRC/base.json" "$CONSUL_DEST/"
+sudo cp "$CONSUL_SRC/retry_$CLOUD.json" "$CONSUL_DEST/"
+sudo cp "$CONSUL_SRC/consul_$CLOUD.service" /etc/systemd/system/consul.service
+
+sudo systemctl enable consul.service
+sudo systemctl start consul.service
+sleep 10
+
+# Add hostname to /etc/hosts
+echo "127.0.0.1 $(hostname)" | sudo tee --append /etc/hosts
+
+# Add Docker bridge network IP to /etc/resolv.conf (at the top)
+echo "nameserver $DOCKER_BRIDGE_IP_ADDRESS" | sudo tee /etc/resolv.conf.new
+cat /etc/resolv.conf | sudo tee --append /etc/resolv.conf.new
+sudo mv /etc/resolv.conf.new /etc/resolv.conf
+
+# Hadoop config file to enable HDFS CLI
+sudo cp $CONFIGDIR/core-site.xml $HADOOPCONFIGDIR
+
+# Move examples directory to $HOME
+sudo mv /ops/examples /home/$HOME_DIR
+sudo chown -R $HOME_DIR:$HOME_DIR /home/$HOME_DIR/examples
+sudo chmod -R 775 /home/$HOME_DIR/examples
+
+# Set env vars for tool CLIs
+echo "export NOMAD_ADDR=http://$IP_ADDRESS:4646" | sudo tee --append /home/$HOME_DIR/.bashrc
+echo "export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/jre" | sudo tee --append /home/$HOME_DIR/.bashrc
+
+# Update PATH
+echo "export PATH=$PATH:/usr/local/bin/spark/bin:/usr/local/$HADOOP_VERSION/bin" | sudo tee --append /home/$HOME_DIR/.bashrc
+
+# Nomad
+
+NOMAD_SRC=/ops/shared/nomad
+NOMAD_DEST=/etc/nomad.d
+NOMAD_CONFIG_FILENAME=$(basename "$NOMAD_CONFIG")
+
+# download
+aws s3 cp "s3://nomad-team-test-binary/builds-oss/nomad_linux_amd64_${NOMAD_SHA}.tar.gz" nomad.tar.gz
+
+# unpack and install
+sudo tar -zxvf nomad.tar.gz -C /usr/local/bin/
+sudo chmod 0755 /usr/local/bin/nomad
+sudo chown root:root /usr/local/bin/nomad
+
+sudo cp "$NOMAD_SRC/base.hcl" "$NOMAD_DEST/"
+sudo cp "$NOMAD_SRC/$NOMAD_CONFIG" "$NOMAD_DEST/$NOMAD_CONFIG_FILENAME"
+
+# Setup Host Volumes
+sudo mkdir /tmp/data
+
+# Install CNI plugins
+sudo mkdir -p /opt/cni/bin
+wget -q -O - \
+ https://github.com/containernetworking/plugins/releases/download/v0.8.2/cni-plugins-linux-amd64-v0.8.2.tgz \
+ | sudo tar -C /opt/cni/bin -xz
+
+# enable as a systemd service
+sudo cp "$NOMAD_SRC/nomad.service" /etc/systemd/system/nomad.service
+sudo systemctl enable nomad.service
+sudo systemctl start nomad.service
diff --git a/e2e/terraform/shared/config/provision-server.sh b/e2e/terraform/shared/config/provision-server.sh
new file mode 100755
index 000000000..56eb33b20
--- /dev/null
+++ b/e2e/terraform/shared/config/provision-server.sh
@@ -0,0 +1,96 @@
+#!/bin/bash
+# installs and configures the desired build of Nomad as a server
+set -o errexit
+set -o nounset
+
+CONFIGDIR=/ops/shared/config
+
+HADOOP_VERSION=hadoop-2.7.7
+HADOOPCONFIGDIR=/usr/local/$HADOOP_VERSION/etc/hadoop
+HOME_DIR=ubuntu
+
+IP_ADDRESS=$(/usr/local/bin/sockaddr eval 'GetPrivateIP')
+DOCKER_BRIDGE_IP_ADDRESS=$(/usr/local/bin/sockaddr eval 'GetInterfaceIP "docker0"')
+
+CLOUD="$1"
+SERVER_COUNT="$2"
+NOMAD_SHA="$3"
+NOMAD_CONFIG="$4"
+
+# Consul
+CONSUL_SRC=/ops/shared/consul
+CONSUL_DEST=/etc/consul.d
+
+sed "s/SERVER_COUNT/$SERVER_COUNT/g" "$CONSUL_SRC/server.json" > /tmp/server.json
+sudo mv /tmp/server.json "$CONSUL_DEST/server.json"
+sudo cp "$CONSUL_SRC/base.json" "$CONSUL_DEST/"
+sudo cp "$CONSUL_SRC/retry_$CLOUD.json" "$CONSUL_DEST/"
+sudo cp "$CONSUL_SRC/consul_$CLOUD.service" /etc/systemd/system/consul.service
+
+sudo systemctl enable consul.service
+sudo systemctl start consul.service
+sleep 10
+export CONSUL_HTTP_ADDR=$IP_ADDRESS:8500
+export CONSUL_RPC_ADDR=$IP_ADDRESS:8400
+
+# Vault
+VAULT_SRC=/ops/shared/vault
+VAULT_DEST=/etc/vault.d
+
+sudo cp "$VAULT_SRC/vault.hcl" "$VAULT_DEST"
+sudo cp "$VAULT_SRC/vault.service" /etc/systemd/system/vault.service
+
+sudo systemctl enable vault.service
+sudo systemctl start vault.service
+
+# Add hostname to /etc/hosts
+echo "127.0.0.1 $(hostname)" | sudo tee --append /etc/hosts
+
+# Add Docker bridge network IP to /etc/resolv.conf (at the top)
+
+echo "nameserver $DOCKER_BRIDGE_IP_ADDRESS" | sudo tee /etc/resolv.conf.new
+cat /etc/resolv.conf | sudo tee --append /etc/resolv.conf.new
+sudo mv /etc/resolv.conf.new /etc/resolv.conf
+
+# Hadoop
+sudo cp $CONFIGDIR/core-site.xml $HADOOPCONFIGDIR
+
+# Move examples directory to $HOME
+sudo mv /ops/examples /home/$HOME_DIR
+sudo chown -R $HOME_DIR:$HOME_DIR /home/$HOME_DIR/examples
+sudo chmod -R 775 /home/$HOME_DIR/examples
+
+# Set env vars for tool CLIs
+echo "export CONSUL_RPC_ADDR=$IP_ADDRESS:8400" | sudo tee --append /home/$HOME_DIR/.bashrc
+echo "export CONSUL_HTTP_ADDR=$IP_ADDRESS:8500" | sudo tee --append /home/$HOME_DIR/.bashrc
+echo "export VAULT_ADDR=http://$IP_ADDRESS:8200" | sudo tee --append /home/$HOME_DIR/.bashrc
+echo "export NOMAD_ADDR=http://$IP_ADDRESS:4646" | sudo tee --append /home/$HOME_DIR/.bashrc
+echo "export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/jre" | sudo tee --append /home/$HOME_DIR/.bashrc
+
+# Update PATH
+echo "export PATH=$PATH:/usr/local/bin/spark/bin:/usr/local/$HADOOP_VERSION/bin" | sudo tee --append /home/$HOME_DIR/.bashrc
+
+# Nomad
+
+NOMAD_SRC=/ops/shared/nomad
+NOMAD_DEST=/etc/nomad.d
+NOMAD_CONFIG_FILENAME=$(basename "$NOMAD_CONFIG")
+
+# download
+aws s3 cp "s3://nomad-team-test-binary/builds-oss/nomad_linux_amd64_${NOMAD_SHA}.tar.gz" nomad.tar.gz
+
+# unpack and install
+sudo tar -zxvf nomad.tar.gz -C /usr/local/bin/
+sudo chmod 0755 /usr/local/bin/nomad
+sudo chown root:root /usr/local/bin/nomad
+
+sudo cp "$NOMAD_SRC/base.hcl" "$NOMAD_DEST/"
+
+sed "s/3 # SERVER_COUNT/$SERVER_COUNT/g" "$NOMAD_SRC/$NOMAD_CONFIG" \
+ > "/tmp/$NOMAD_CONFIG_FILENAME"
+sudo mv "/tmp/$NOMAD_CONFIG_FILENAME" "$NOMAD_DEST/$NOMAD_CONFIG_FILENAME"
+
+# enable as a systemd service
+sudo cp "$NOMAD_SRC/nomad.service" /etc/systemd/system/nomad.service
+sudo systemctl enable nomad.service
+sudo systemctl start nomad.service
diff --git a/e2e/terraform/shared/config/provision-windows-client.ps1 b/e2e/terraform/shared/config/provision-windows-client.ps1
new file mode 100755
index 000000000..7eaf29b28
--- /dev/null
+++ b/e2e/terraform/shared/config/provision-windows-client.ps1
@@ -0,0 +1,49 @@
+param(
+ [string]$Cloud = "aws",
+ [string]$NomadSha = "",
+ [string]$Index=0
+)
+
+# Force TLS1.2
+[Net.ServicePointManager]::SecurityProtocol = [Net.SecurityProtocolType]::Tls12
+
+# Consul
+cp "C:\ops\shared\consul\base.json" "C:\opt\consul.d\base.json"
+cp "C:\ops\shared\consul\retry_$Cloud.json" "C:\opt\consul.d\retry_$Cloud.json"
+sc.exe create "Consul" binPath= "C:\opt\consul.exe agent -config-dir C:\opt\consul.d -log-file C:\opt\consul\consul.log" start= auto
+sc.exe start "Consul"
+
+# Vault
+# TODO(tgross): we don't need Vault for clients
+# cp "C:\ops\shared\vault\vault.hcl" C:\opt\vault.d\vault.hcl
+# sc.exe create "Vault" binPath= "C:\opt\vault.exe" agent -config-dir "C:\opt\vault.d" start= auto
+
+# Nomad
+
+md C:\opt\nomad
+
+Read-S3Object `
+ -BucketName nomad-team-test-binary `
+ -Key "builds-oss/nomad_windows_amd64_$NomadSha.zip" `
+ -File .\nomad.zip
+
+Expand-Archive .\nomad.zip .\
+rm C:\opt\nomad.exe
+mv nomad.exe C:\opt\nomad.exe
+
+# install config file
+cp "C:\ops\shared\nomad\client-windows.hcl" "C:\opt\nomad.d\nomad.hcl"
+
+# Setup Host Volumes
+md C:\tmp\data
+
+# TODO(tgross): not sure we even support this for Windows?
+# Write-Output "Install CNI"
+# md C:\opt\cni\bin
+# $cni_url = "https://github.com/containernetworking/plugins/releases/download/v0.8.2/cni-plugins-windows-amd64-v0.8.2.tgz"
+# Invoke-WebRequest -Uri "$cni_url" -Outfile cni.tgz
+# Expand-7Zip -ArchiveFileName .\cni.tgz -TargetPath C:\opt\cni\bin\
+
+# enable as a service
+sc.exe create "Nomad" binPath= "C:\opt\nomad.exe agent -config C:\opt\nomad.d" start= auto
+sc.exe start "Nomad"
diff --git a/e2e/terraform/shared/config/userdata-windows.ps1 b/e2e/terraform/shared/config/userdata-windows.ps1
new file mode 100755
index 000000000..c92039bd2
--- /dev/null
+++ b/e2e/terraform/shared/config/userdata-windows.ps1
@@ -0,0 +1,30 @@
+
+
+# Bring ebs volume online with read-write access
+Get-Disk | Where-Object IsOffline -Eq $True | Set-Disk -IsOffline $False
+Get-Disk | Where-Object isReadOnly -Eq $True | Set-Disk -IsReadOnly $False
+
+md "C:\Users\Administrator\.ssh\"
+
+$myKey = "C:\Users\Administrator\.ssh\authorized_keys"
+$adminKey = "C:\ProgramData\ssh\administrators_authorized_keys"
+
+Invoke-RestMethod `
+ -Uri "http://169.254.169.254/latest/meta-data/public-keys/0/openssh-key" `
+ -Outfile $myKey
+
+cp $myKey $adminKey
+
+icacls $adminKey /reset
+icacls $adminKey /inheritance:r
+icacls $adminKey /grant BUILTIN\Administrators:`(F`)
+icacls $adminKey /grant SYSTEM:`(F`)
+
+$archiveFile = "C:\ops\windows_configs.zip"
+while (!(Test-Path $archiveFile)) { Start-Sleep 10 }
+
+Expand-Archive $archiveFile "C:\ops\shared"
+
+& C:\ops\shared\config\provision-windows-client.ps1 -Cloud aws -NomadSha ${nomad_sha} -Index 1
+
+
diff --git a/e2e/terraform/shared/config/vault.hcl b/e2e/terraform/shared/config/vault.hcl
deleted file mode 100644
index eaaa4dfcb..000000000
--- a/e2e/terraform/shared/config/vault.hcl
+++ /dev/null
@@ -1,12 +0,0 @@
-backend "consul" {
- path = "vault/"
- address = "IP_ADDRESS:8500"
- cluster_addr = "https://IP_ADDRESS:8201"
- redirect_addr = "http://IP_ADDRESS:8200"
-}
-
-listener "tcp" {
- address = "IP_ADDRESS:8200"
- cluster_address = "IP_ADDRESS:8201"
- tls_disable = 1
-}
diff --git a/e2e/terraform/shared/consul/base.json b/e2e/terraform/shared/consul/base.json
new file mode 100644
index 000000000..763eb06ad
--- /dev/null
+++ b/e2e/terraform/shared/consul/base.json
@@ -0,0 +1,13 @@
+{
+ "log_level": "INFO",
+ "data_dir": "/opt/consul/data",
+ "bind_addr": "0.0.0.0",
+ "client_addr": "0.0.0.0",
+ "advertise_addr": "{{ GetPrivateIP }}",
+ "connect": {
+ "enabled": true
+ },
+ "ports": {
+ "grpc": 8502
+ }
+}
diff --git a/e2e/terraform/shared/config/consul.json b/e2e/terraform/shared/consul/consul.json
similarity index 60%
rename from e2e/terraform/shared/config/consul.json
rename to e2e/terraform/shared/consul/consul.json
index 5d6cd3ea8..dd432350f 100644
--- a/e2e/terraform/shared/config/consul.json
+++ b/e2e/terraform/shared/consul/consul.json
@@ -5,10 +5,16 @@
"data_dir": "/opt/consul/data",
"bind_addr": "0.0.0.0",
"client_addr": "0.0.0.0",
- "advertise_addr": "IP_ADDRESS",
+ "advertise_addr": "{{ GetPrivateIP }}",
"bootstrap_expect": SERVER_COUNT,
"service": {
"name": "consul"
},
- "retry_join": ["RETRY_JOIN"]
+ "retry_join": ["RETRY_JOIN"],
+ "connect": {
+ "enabled": true
+ },
+ "ports": {
+ "grpc": 8502
+ }
}
diff --git a/e2e/terraform/shared/config/consul_aws.service b/e2e/terraform/shared/consul/consul_aws.service
similarity index 100%
rename from e2e/terraform/shared/config/consul_aws.service
rename to e2e/terraform/shared/consul/consul_aws.service
diff --git a/e2e/terraform/shared/config/consul_azure.service b/e2e/terraform/shared/consul/consul_azure.service
similarity index 100%
rename from e2e/terraform/shared/config/consul_azure.service
rename to e2e/terraform/shared/consul/consul_azure.service
diff --git a/e2e/terraform/shared/consul/consul_client.json b/e2e/terraform/shared/consul/consul_client.json
new file mode 100644
index 000000000..8deed32f0
--- /dev/null
+++ b/e2e/terraform/shared/consul/consul_client.json
@@ -0,0 +1,15 @@
+{
+ "ui": true,
+ "log_level": "INFO",
+ "data_dir": "/opt/consul/data",
+ "bind_addr": "0.0.0.0",
+ "client_addr": "0.0.0.0",
+ "advertise_addr": "{{ GetPrivateIP }}",
+ "retry_join": ["RETRY_JOIN"],
+ "connect": {
+ "enabled": true
+ },
+ "ports": {
+ "grpc": 8502
+ }
+}
diff --git a/e2e/terraform/shared/consul/retry_aws.json b/e2e/terraform/shared/consul/retry_aws.json
new file mode 100644
index 000000000..a080caf7a
--- /dev/null
+++ b/e2e/terraform/shared/consul/retry_aws.json
@@ -0,0 +1,3 @@
+{
+ "retry_join": ["provider=aws tag_key=ConsulAutoJoin tag_value=auto-join"]
+}
diff --git a/e2e/terraform/shared/consul/retry_azure.json b/e2e/terraform/shared/consul/retry_azure.json
new file mode 100644
index 000000000..9b1a3ea04
--- /dev/null
+++ b/e2e/terraform/shared/consul/retry_azure.json
@@ -0,0 +1,3 @@
+{
+ "retry_join": ["provider=azure tag_key=ConsulAutoJoin tag_value=auto-join"]
+}
diff --git a/e2e/terraform/shared/consul/server.json b/e2e/terraform/shared/consul/server.json
new file mode 100644
index 000000000..670a5c5e5
--- /dev/null
+++ b/e2e/terraform/shared/consul/server.json
@@ -0,0 +1,8 @@
+{
+ "server": true,
+ "ui": true,
+ "bootstrap_expect": SERVER_COUNT,
+ "service": {
+ "name": "consul"
+ }
+}
diff --git a/e2e/terraform/configs/indexed/client-1.hcl b/e2e/terraform/shared/nomad/base.hcl
similarity index 56%
rename from e2e/terraform/configs/indexed/client-1.hcl
rename to e2e/terraform/shared/nomad/base.hcl
index fcd1a1ffa..00eee928c 100644
--- a/e2e/terraform/configs/indexed/client-1.hcl
+++ b/e2e/terraform/shared/nomad/base.hcl
@@ -6,29 +6,10 @@ data_dir = "/opt/nomad/data"
bind_addr = "0.0.0.0"
-# Enable the client
-client {
- enabled = true
-
- options {
- "driver.raw_exec.enable" = "1"
- "docker.privileged.enabled" = "true"
- }
-
- meta {
- "rack" = "r2"
- }
-}
-
consul {
address = "127.0.0.1:8500"
}
-vault {
- enabled = true
- address = "http://active.vault.service.consul:8200"
-}
-
telemetry {
collection_interval = "1s"
disable_hostname = true
diff --git a/e2e/terraform/configs/indexed/client-0.hcl b/e2e/terraform/shared/nomad/client-windows.hcl
similarity index 76%
rename from e2e/terraform/configs/indexed/client-0.hcl
rename to e2e/terraform/shared/nomad/client-windows.hcl
index a92ab487d..189a340ba 100644
--- a/e2e/terraform/configs/indexed/client-0.hcl
+++ b/e2e/terraform/shared/nomad/client-windows.hcl
@@ -1,8 +1,9 @@
enable_debug = true
log_level = "debug"
+log_file = true
-data_dir = "/opt/nomad/data"
+data_dir = "C:\\opt\\nomad\\data"
bind_addr = "0.0.0.0"
@@ -11,12 +12,8 @@ client {
enabled = true
options {
- "driver.raw_exec.enable" = "1"
- "docker.privileged.enabled" = "true"
- }
-
- meta {
- "rack" = "r1"
+ # Allow rawexec jobs
+ "driver.raw_exec.enable" = "1"
}
}
diff --git a/e2e/terraform/shared/nomad/client.hcl b/e2e/terraform/shared/nomad/client.hcl
new file mode 100644
index 000000000..9b20cffb4
--- /dev/null
+++ b/e2e/terraform/shared/nomad/client.hcl
@@ -0,0 +1,23 @@
+client {
+ enabled = true
+
+ options {
+ # Allow jobs to run as root
+ "user.blacklist" = ""
+
+ # Allow rawexec jobs
+ "driver.raw_exec.enable" = "1"
+
+ # Allow privileged docker jobs
+ "docker.privileged.enabled" = "true"
+ }
+
+ host_volume "shared_data" {
+ path = "/tmp/data"
+ }
+}
+
+vault {
+ enabled = true
+ address = "http://active.vault.service.consul:8200"
+}
diff --git a/e2e/terraform/shared/nomad/indexed/client-0.hcl b/e2e/terraform/shared/nomad/indexed/client-0.hcl
new file mode 100644
index 000000000..127272508
--- /dev/null
+++ b/e2e/terraform/shared/nomad/indexed/client-0.hcl
@@ -0,0 +1,22 @@
+# Enable the client
+client {
+ enabled = true
+
+ options {
+ "driver.raw_exec.enable" = "1"
+ "docker.privileged.enabled" = "true"
+ }
+
+ meta {
+ "rack" = "r1"
+ }
+
+ host_volume "shared_data" {
+ path = "/tmp/data"
+ }
+}
+
+vault {
+ enabled = true
+ address = "http://active.vault.service.consul:8200"
+}
diff --git a/e2e/terraform/shared/nomad/indexed/client-1.hcl b/e2e/terraform/shared/nomad/indexed/client-1.hcl
new file mode 100644
index 000000000..ddc9e0bbd
--- /dev/null
+++ b/e2e/terraform/shared/nomad/indexed/client-1.hcl
@@ -0,0 +1,17 @@
+client {
+ enabled = true
+
+ options {
+ "driver.raw_exec.enable" = "1"
+ "docker.privileged.enabled" = "true"
+ }
+
+ meta {
+ "rack" = "r2"
+ }
+}
+
+vault {
+ enabled = true
+ address = "http://active.vault.service.consul:8200"
+}
diff --git a/e2e/terraform/shared/nomad/indexed/client-2.hcl b/e2e/terraform/shared/nomad/indexed/client-2.hcl
new file mode 100644
index 000000000..3501dc79a
--- /dev/null
+++ b/e2e/terraform/shared/nomad/indexed/client-2.hcl
@@ -0,0 +1,19 @@
+datacenter = "dc2"
+
+client {
+ enabled = true
+
+ options {
+ "driver.raw_exec.enable" = "1"
+ "docker.privileged.enabled" = "true"
+ }
+
+ meta {
+ "rack" = "r1"
+ }
+}
+
+vault {
+ enabled = true
+ address = "http://active.vault.service.consul:8200"
+}
diff --git a/e2e/terraform/shared/nomad/indexed/client-3.hcl b/e2e/terraform/shared/nomad/indexed/client-3.hcl
new file mode 100644
index 000000000..627265b39
--- /dev/null
+++ b/e2e/terraform/shared/nomad/indexed/client-3.hcl
@@ -0,0 +1,19 @@
+datacenter = "dc2"
+
+client {
+ enabled = true
+
+ options {
+ "driver.raw_exec.enable" = "1"
+ "docker.privileged.enabled" = "true"
+ }
+
+ meta {
+ "rack" = "r2"
+ }
+}
+
+vault {
+ enabled = true
+ address = "http://active.vault.service.consul:8200"
+}
diff --git a/e2e/terraform/shared/nomad/indexed/server-0.hcl b/e2e/terraform/shared/nomad/indexed/server-0.hcl
new file mode 100644
index 000000000..a3cf54410
--- /dev/null
+++ b/e2e/terraform/shared/nomad/indexed/server-0.hcl
@@ -0,0 +1,14 @@
+server {
+ enabled = true
+
+ # this value will be overwritten during provisioning
+ bootstrap_expect = 3 # SERVER_COUNT
+}
+
+vault {
+ enabled = false
+ address = "http://active.vault.service.consul:8200"
+ task_token_ttl = "1h"
+ create_from_role = "nomad-cluster"
+ token = ""
+}
diff --git a/e2e/terraform/shared/nomad/indexed/server-1.hcl b/e2e/terraform/shared/nomad/indexed/server-1.hcl
new file mode 100644
index 000000000..a3cf54410
--- /dev/null
+++ b/e2e/terraform/shared/nomad/indexed/server-1.hcl
@@ -0,0 +1,14 @@
+server {
+ enabled = true
+
+ # this value will be overwritten during provisioning
+ bootstrap_expect = 3 # SERVER_COUNT
+}
+
+vault {
+ enabled = false
+ address = "http://active.vault.service.consul:8200"
+ task_token_ttl = "1h"
+ create_from_role = "nomad-cluster"
+ token = ""
+}
diff --git a/e2e/terraform/shared/nomad/indexed/server-2.hcl b/e2e/terraform/shared/nomad/indexed/server-2.hcl
new file mode 100644
index 000000000..a3cf54410
--- /dev/null
+++ b/e2e/terraform/shared/nomad/indexed/server-2.hcl
@@ -0,0 +1,14 @@
+server {
+ enabled = true
+
+ # this value will be overwritten during provisioning
+ bootstrap_expect = 3 # SERVER_COUNT
+}
+
+vault {
+ enabled = false
+ address = "http://active.vault.service.consul:8200"
+ task_token_ttl = "1h"
+ create_from_role = "nomad-cluster"
+ token = ""
+}
diff --git a/e2e/terraform/shared/config/nomad.service b/e2e/terraform/shared/nomad/nomad.service
similarity index 100%
rename from e2e/terraform/shared/config/nomad.service
rename to e2e/terraform/shared/nomad/nomad.service
diff --git a/e2e/terraform/shared/nomad/server.hcl b/e2e/terraform/shared/nomad/server.hcl
new file mode 100644
index 000000000..b739d08a7
--- /dev/null
+++ b/e2e/terraform/shared/nomad/server.hcl
@@ -0,0 +1,12 @@
+server {
+ enabled = true
+ bootstrap_expect = 3
+}
+
+vault {
+ enabled = false
+ address = "http://active.vault.service.consul:8200"
+ task_token_ttl = "1h"
+ create_from_role = "nomad-cluster"
+ token = ""
+}
diff --git a/e2e/terraform/shared/scripts/README.md b/e2e/terraform/shared/scripts/README.md
deleted file mode 100644
index b0ab5c528..000000000
--- a/e2e/terraform/shared/scripts/README.md
+++ /dev/null
@@ -1 +0,0 @@
-Scripts used by Packer to create base images
diff --git a/e2e/terraform/shared/scripts/client.sh b/e2e/terraform/shared/scripts/client.sh
deleted file mode 100644
index ebb53e004..000000000
--- a/e2e/terraform/shared/scripts/client.sh
+++ /dev/null
@@ -1,56 +0,0 @@
-#!/bin/bash
-
-set -e
-
-CONFIGDIR=/ops/shared/config
-
-CONSULCONFIGDIR=/etc/consul.d
-NOMADCONFIGDIR=/etc/nomad.d
-HADOOP_VERSION=hadoop-2.7.6
-HADOOPCONFIGDIR=/usr/local/$HADOOP_VERSION/etc/hadoop
-HOME_DIR=ubuntu
-
-# Wait for network
-sleep 15
-
-# IP_ADDRESS=$(curl http://instance-data/latest/meta-data/local-ipv4)
-IP_ADDRESS="$(/sbin/ifconfig eth0 | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1}')"
-DOCKER_BRIDGE_IP_ADDRESS=(`ifconfig docker0 2>/dev/null|awk '/inet addr:/ {print $2}'|sed 's/addr://'`)
-CLOUD=$1
-RETRY_JOIN=$2
-
-# Consul
-sed -i "s/IP_ADDRESS/$IP_ADDRESS/g" $CONFIGDIR/consul_client.json
-sed -i "s/RETRY_JOIN/$RETRY_JOIN/g" $CONFIGDIR/consul_client.json
-sudo cp $CONFIGDIR/consul_client.json $CONSULCONFIGDIR/consul.json
-sudo cp $CONFIGDIR/consul_$CLOUD.service /etc/systemd/system/consul.service
-
-sudo systemctl enable consul.service
-sudo systemctl start consul.service
-sleep 10
-
-export NOMAD_ADDR=http://$IP_ADDRESS:4646
-
-# Add hostname to /etc/hosts
-echo "127.0.0.1 $(hostname)" | sudo tee --append /etc/hosts
-
-# Add Docker bridge network IP to /etc/resolv.conf (at the top)
-echo "nameserver $DOCKER_BRIDGE_IP_ADDRESS" | sudo tee /etc/resolv.conf.new
-cat /etc/resolv.conf | sudo tee --append /etc/resolv.conf.new
-sudo mv /etc/resolv.conf.new /etc/resolv.conf
-
-# Hadoop config file to enable HDFS CLI
-sudo cp $CONFIGDIR/core-site.xml $HADOOPCONFIGDIR
-
-# Move examples directory to $HOME
-sudo mv /ops/examples /home/$HOME_DIR
-sudo chown -R $HOME_DIR:$HOME_DIR /home/$HOME_DIR/examples
-sudo chmod -R 775 /home/$HOME_DIR/examples
-
-# Set env vars for tool CLIs
-echo "export VAULT_ADDR=http://$IP_ADDRESS:8200" | sudo tee --append /home/$HOME_DIR/.bashrc
-echo "export NOMAD_ADDR=http://$IP_ADDRESS:4646" | sudo tee --append /home/$HOME_DIR/.bashrc
-echo "export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/jre" | sudo tee --append /home/$HOME_DIR/.bashrc
-
-# Update PATH
-echo "export PATH=$PATH:/usr/local/bin/spark/bin:/usr/local/$HADOOP_VERSION/bin" | sudo tee --append /home/$HOME_DIR/.bashrc
diff --git a/e2e/terraform/shared/scripts/server.sh b/e2e/terraform/shared/scripts/server.sh
deleted file mode 100644
index 172052967..000000000
--- a/e2e/terraform/shared/scripts/server.sh
+++ /dev/null
@@ -1,72 +0,0 @@
-#!/bin/bash
-
-set -e
-
-CONFIGDIR=/ops/shared/config
-
-CONSULCONFIGDIR=/etc/consul.d
-VAULTCONFIGDIR=/etc/vault.d
-NOMADCONFIGDIR=/etc/nomad.d
-HADOOP_VERSION=hadoop-2.7.6
-HADOOPCONFIGDIR=/usr/local/$HADOOP_VERSION/etc/hadoop
-HOME_DIR=ubuntu
-
-# Wait for network
-sleep 15
-
-# IP_ADDRESS=$(curl http://instance-data/latest/meta-data/local-ipv4)
-IP_ADDRESS="$(/sbin/ifconfig eth0 | grep 'inet addr:' | cut -d: -f2 | awk '{ print $1}')"
-DOCKER_BRIDGE_IP_ADDRESS=(`ifconfig docker0 2>/dev/null|awk '/inet addr:/ {print $2}'|sed 's/addr://'`)
-CLOUD=$1
-SERVER_COUNT=$2
-RETRY_JOIN=$3
-
-# Consul
-sed -i "s/IP_ADDRESS/$IP_ADDRESS/g" $CONFIGDIR/consul.json
-sed -i "s/SERVER_COUNT/$SERVER_COUNT/g" $CONFIGDIR/consul.json
-sed -i "s/RETRY_JOIN/$RETRY_JOIN/g" $CONFIGDIR/consul.json
-sudo cp $CONFIGDIR/consul.json $CONSULCONFIGDIR
-sudo cp $CONFIGDIR/consul_$CLOUD.service /etc/systemd/system/consul.service
-
-sudo systemctl enable consul.service
-sudo systemctl start consul.service
-sleep 10
-export CONSUL_HTTP_ADDR=$IP_ADDRESS:8500
-export CONSUL_RPC_ADDR=$IP_ADDRESS:8400
-
-# Vault
-sed -i "s/IP_ADDRESS/$IP_ADDRESS/g" $CONFIGDIR/vault.hcl
-sudo cp $CONFIGDIR/vault.hcl $VAULTCONFIGDIR
-sudo cp $CONFIGDIR/vault.service /etc/systemd/system/vault.service
-
-sudo systemctl enable vault.service
-sudo systemctl start vault.service
-
-export NOMAD_ADDR=http://$IP_ADDRESS:4646
-
-# Add hostname to /etc/hosts
-echo "127.0.0.1 $(hostname)" | sudo tee --append /etc/hosts
-
-# Add Docker bridge network IP to /etc/resolv.conf (at the top)
-
-echo "nameserver $DOCKER_BRIDGE_IP_ADDRESS" | sudo tee /etc/resolv.conf.new
-cat /etc/resolv.conf | sudo tee --append /etc/resolv.conf.new
-sudo mv /etc/resolv.conf.new /etc/resolv.conf
-
-# Hadoop
-sudo cp $CONFIGDIR/core-site.xml $HADOOPCONFIGDIR
-
-# Move examples directory to $HOME
-sudo mv /ops/examples /home/$HOME_DIR
-sudo chown -R $HOME_DIR:$HOME_DIR /home/$HOME_DIR/examples
-sudo chmod -R 775 /home/$HOME_DIR/examples
-
-# Set env vars for tool CLIs
-echo "export CONSUL_RPC_ADDR=$IP_ADDRESS:8400" | sudo tee --append /home/$HOME_DIR/.bashrc
-echo "export CONSUL_HTTP_ADDR=$IP_ADDRESS:8500" | sudo tee --append /home/$HOME_DIR/.bashrc
-echo "export VAULT_ADDR=http://$IP_ADDRESS:8200" | sudo tee --append /home/$HOME_DIR/.bashrc
-echo "export NOMAD_ADDR=http://$IP_ADDRESS:4646" | sudo tee --append /home/$HOME_DIR/.bashrc
-echo "export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/jre" | sudo tee --append /home/$HOME_DIR/.bashrc
-
-# Update PATH
-echo "export PATH=$PATH:/usr/local/bin/spark/bin:/usr/local/$HADOOP_VERSION/bin" | sudo tee --append /home/$HOME_DIR/.bashrc
diff --git a/e2e/terraform/shared/vault/vault.hcl b/e2e/terraform/shared/vault/vault.hcl
new file mode 100644
index 000000000..b831da022
--- /dev/null
+++ b/e2e/terraform/shared/vault/vault.hcl
@@ -0,0 +1,12 @@
+backend "consul" {
+ path = "vault/"
+ address = "{{ GetPrivateIP }}:8500"
+ cluster_addr = "https://{{ GetPrivateIP }}:8201"
+ redirect_addr = "http://{{ GetPrivateIP }}:8200"
+}
+
+listener "tcp" {
+ address = "{{ GetPrivateIP }}:8200"
+ cluster_address = "{{ GetPrivateIP }}:8201"
+ tls_disable = 1
+}
diff --git a/e2e/terraform/shared/config/vault.service b/e2e/terraform/shared/vault/vault.service
similarity index 100%
rename from e2e/terraform/shared/config/vault.service
rename to e2e/terraform/shared/vault/vault.service
diff --git a/e2e/terraform/terraform.tfvars b/e2e/terraform/terraform.tfvars
index b38ab8855..1160e9d7a 100644
--- a/e2e/terraform/terraform.tfvars
+++ b/e2e/terraform/terraform.tfvars
@@ -1,4 +1,7 @@
-region = "us-east-1"
-instance_type = "t2.medium"
-server_count = "3"
-client_count = "4"
+region = "us-east-1"
+instance_type = "t2.medium"
+server_count = "3"
+client_count = "4"
+
+# TODO(tgross): add only once Windows client is working
+windows_client_count = "0"
diff --git a/e2e/terraform/user-data-client.sh b/e2e/terraform/user-data-client.sh
deleted file mode 100644
index 74933f00d..000000000
--- a/e2e/terraform/user-data-client.sh
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/bash
-
-set -e
-
-exec > >(sudo tee /var/log/user-data.log|logger -t user-data -s 2>/dev/console) 2>&1
-sudo bash /ops/shared/scripts/client.sh "aws" "${retry_join}"
diff --git a/e2e/terraform/user-data-server.sh b/e2e/terraform/user-data-server.sh
deleted file mode 100644
index 0199b405b..000000000
--- a/e2e/terraform/user-data-server.sh
+++ /dev/null
@@ -1,6 +0,0 @@
-#!/bin/bash
-
-set -e
-
-exec > >(sudo tee /var/log/user-data.log|logger -t user-data -s 2>/dev/console) 2>&1
-sudo bash /ops/shared/scripts/server.sh "aws" "${server_count}" "${retry_join}"
diff --git a/e2e/terraform/versions.tf b/e2e/terraform/versions.tf
new file mode 100644
index 000000000..ac97c6ac8
--- /dev/null
+++ b/e2e/terraform/versions.tf
@@ -0,0 +1,4 @@
+
+terraform {
+ required_version = ">= 0.12"
+}
diff --git a/e2e/upgrades/run_cluster.sh b/e2e/upgrades/run_cluster.sh
index 11704a6be..78cfe39f5 100755
--- a/e2e/upgrades/run_cluster.sh
+++ b/e2e/upgrades/run_cluster.sh
@@ -5,6 +5,10 @@ if [ "$#" -ne 1 ]; then
exit 255
fi
NOMAD_BINARY=$1
+
+# make sure the directories exist so tee can create logs in them
+mkdir -p /tmp/server{1,2,3} /tmp/client{1,2}
+
# launch server
( ${NOMAD_BINARY} agent -config=server1.hcl 2>&1 | tee "/tmp/server1/log" ; echo "Exit code: $?" >> "/tmp/server1/log" ) &
diff --git a/e2e/upgrades/run_node.sh b/e2e/upgrades/run_node.sh
index 7d6d7f012..9a68cf857 100755
--- a/e2e/upgrades/run_node.sh
+++ b/e2e/upgrades/run_node.sh
@@ -9,4 +9,4 @@ if [ "$#" -ne 2 ]; then
fi
NOMAD_BINARY=$1
NODE=$2
-( $NOMAD_BINARY agent -config=${NODE}.hcl 2>&1 | tee "/tmp/$NODE/log" ; echo "Exit code: $?" >> "/tmp/$NODE/log" ) &
+( $NOMAD_BINARY agent -config=${NODE}.hcl 2>&1 | tee -a "/tmp/$NODE/log" ; echo "Exit code: $?" >> "/tmp/$NODE/log" ) &
diff --git a/e2e/upgrades/run_upgrade_safe.sh b/e2e/upgrades/run_upgrade_safe.sh
new file mode 100644
index 000000000..69fc98088
--- /dev/null
+++ b/e2e/upgrades/run_upgrade_safe.sh
@@ -0,0 +1,36 @@
+#!/bin/sh
+if [ $# -lt 2 ]; then
+ echo "usage: $0 path-nomad-v1 path-nomad-v2" 1>&2
+ exit 1
+fi
+
+v1="$1"; shift
+v2="$1"; shift
+
+sh run_cluster.sh "$v1" &
+
+function peers () {
+ $v1 operator raft list-peers | tail -n+2 | awk '{print $1 " " $2}'
+}
+
+while true; do
+ n=`peers | grep -c '\bserver[1-3]\b'`
+ [ "$n" = 3 ] && break
+done
+
+function wait_serf () {
+ echo "wait $1 \c"; date
+ while true; do
+ peers \
+ | egrep "$1.global [0-9a-f-][0-9a-f-]{35}$" \
+ && break
+ sleep 1
+ done
+ echo "done $1 \c"; date
+}
+
+for i in {3,2,1}; do
+ sh kill_node.sh server$i
+ sh run_node.sh "$v2" server$i &
+ wait_serf server$i
+done
diff --git a/e2e/upgrades/run_upgrade_unsafe.sh b/e2e/upgrades/run_upgrade_unsafe.sh
new file mode 100644
index 000000000..50b6c985c
--- /dev/null
+++ b/e2e/upgrades/run_upgrade_unsafe.sh
@@ -0,0 +1,21 @@
+#!/bin/sh
+if [ $# -lt 2 ]; then
+ echo "usage: $0 path-nomad-v1 path-nomad-v2" 1>&2
+ exit 1
+fi
+
+v1="$1"; shift
+v2="$1"; shift
+
+# sh run_cluster.sh "$v1" >/dev/null &
+sh run_cluster.sh "$v1" &
+
+while true; do
+ n=`"$v1" operator raft list-peers | grep -c '\bserver[1-3]\b'`
+ [ "$n" = 3 ] && break
+done
+
+for i in {1,2,3}; do
+ sh kill_node.sh server$i
+ sh run_node.sh "$v2" server$i &
+done
diff --git a/helper/constraints/semver/constraints.go b/helper/constraints/semver/constraints.go
new file mode 100644
index 000000000..0a100623d
--- /dev/null
+++ b/helper/constraints/semver/constraints.go
@@ -0,0 +1,147 @@
+// semver is a Semver Constraints package copied from
+// github.com/hashicorp/go-version @ 2046c9d0f0b03c779670f5186a2a4b2c85493a71
+//
+// Unlike Constraints in go-version, Semver constraints use Semver 2.0 ordering
+// rules and only accept properly formatted Semver versions.
+package semver
+
+import (
+ "fmt"
+ "regexp"
+ "strings"
+
+ "github.com/hashicorp/go-version"
+)
+
+// Constraint represents a single constraint for a version, such as ">=
+// 1.0".
+type Constraint struct {
+ f constraintFunc
+ check *version.Version
+ original string
+}
+
+// Constraints is a slice of constraints. We make a custom type so that
+// we can add methods to it.
+type Constraints []*Constraint
+
+type constraintFunc func(v, c *version.Version) bool
+
+var constraintOperators map[string]constraintFunc
+
+var constraintRegexp *regexp.Regexp
+
+func init() {
+ constraintOperators = map[string]constraintFunc{
+ "": constraintEqual,
+ "=": constraintEqual,
+ "!=": constraintNotEqual,
+ ">": constraintGreaterThan,
+ "<": constraintLessThan,
+ ">=": constraintGreaterThanEqual,
+ "<=": constraintLessThanEqual,
+ }
+
+ ops := make([]string, 0, len(constraintOperators))
+ for k := range constraintOperators {
+ ops = append(ops, regexp.QuoteMeta(k))
+ }
+
+ constraintRegexp = regexp.MustCompile(fmt.Sprintf(
+ `^\s*(%s)\s*(%s)\s*$`,
+ strings.Join(ops, "|"),
+ version.SemverRegexpRaw))
+}
+
+// NewConstraint will parse one or more constraints from the given
+// constraint string. The string must be a comma-separated list of constraints.
+func NewConstraint(v string) (Constraints, error) {
+ vs := strings.Split(v, ",")
+ result := make([]*Constraint, len(vs))
+ for i, single := range vs {
+ c, err := parseSingle(single)
+ if err != nil {
+ return nil, err
+ }
+
+ result[i] = c
+ }
+
+ return Constraints(result), nil
+}
+
+// Check tests if a version satisfies all the constraints.
+func (cs Constraints) Check(v *version.Version) bool {
+ for _, c := range cs {
+ if !c.Check(v) {
+ return false
+ }
+ }
+
+ return true
+}
+
+// Returns the string format of the constraints
+func (cs Constraints) String() string {
+ csStr := make([]string, len(cs))
+ for i, c := range cs {
+ csStr[i] = c.String()
+ }
+
+ return strings.Join(csStr, ",")
+}
+
+// Check tests if a constraint is validated by the given version.
+func (c *Constraint) Check(v *version.Version) bool {
+ return c.f(v, c.check)
+}
+
+func (c *Constraint) String() string {
+ return c.original
+}
+
+func parseSingle(v string) (*Constraint, error) {
+ matches := constraintRegexp.FindStringSubmatch(v)
+ if matches == nil {
+ return nil, fmt.Errorf("Malformed constraint: %s", v)
+ }
+
+ check, err := version.NewSemver(matches[2])
+ if err != nil {
+ return nil, err
+ }
+
+ return &Constraint{
+ f: constraintOperators[matches[1]],
+ check: check,
+ original: v,
+ }, nil
+}
+
+//-------------------------------------------------------------------
+// Constraint functions
+//-------------------------------------------------------------------
+
+func constraintEqual(v, c *version.Version) bool {
+ return v.Equal(c)
+}
+
+func constraintNotEqual(v, c *version.Version) bool {
+ return !v.Equal(c)
+}
+
+func constraintGreaterThan(v, c *version.Version) bool {
+ return v.Compare(c) == 1
+}
+
+func constraintLessThan(v, c *version.Version) bool {
+ return v.Compare(c) == -1
+}
+
+func constraintGreaterThanEqual(v, c *version.Version) bool {
+ return v.Compare(c) >= 0
+}
+
+func constraintLessThanEqual(v, c *version.Version) bool {
+ return v.Compare(c) <= 0
+}
diff --git a/helper/constraints/semver/constraints_test.go b/helper/constraints/semver/constraints_test.go
new file mode 100644
index 000000000..5c50d49d6
--- /dev/null
+++ b/helper/constraints/semver/constraints_test.go
@@ -0,0 +1,128 @@
+package semver
+
+import (
+ "testing"
+
+ "github.com/hashicorp/go-version"
+)
+
+// This file is a copy of github.com/hashicorp/go-version/constraint_test.go
+// with minimal changes to demonstrate differences. Diffing the files should
+// illustrate behavior differences in Constraint and version.Constraint.
+
+func TestNewConstraint(t *testing.T) {
+ cases := []struct {
+ input string
+ count int
+ err bool
+ }{
+ {">= 1.2", 1, false},
+ {"1.0", 1, false},
+ {">= 1.x", 0, true},
+ {">= 1.2, < 1.0", 2, false},
+
+ // Out of bounds
+ {"11387778780781445675529500000000000000000", 0, true},
+
+ // Semver only
+ {">= 1.0beta1", 0, true},
+
+ // No pessimistic operator
+ {"~> 1.0", 0, true},
+ }
+
+ for _, tc := range cases {
+ v, err := NewConstraint(tc.input)
+ if tc.err && err == nil {
+ t.Fatalf("expected error for input: %s", tc.input)
+ } else if !tc.err && err != nil {
+ t.Fatalf("error for input %s: %s", tc.input, err)
+ }
+
+ if len(v) != tc.count {
+ t.Fatalf("input: %s\nexpected len: %d\nactual: %d",
+ tc.input, tc.count, len(v))
+ }
+ }
+}
+
+func TestConstraintCheck(t *testing.T) {
+ cases := []struct {
+ constraint string
+ version string
+ check bool
+ }{
+ {">= 1.0, < 1.2", "1.1.5", true},
+ {"< 1.0, < 1.2", "1.1.5", false},
+ {"= 1.0", "1.1.5", false},
+ {"= 1.0", "1.0.0", true},
+ {"1.0", "1.0.0", true},
+
+ // Assert numbers are *not* compared lexically as in #4729
+ {"> 10", "8", false},
+
+ // Pre-releases are ordered according to Semver v2
+ {"> 2.0", "2.1.0-beta", true},
+ {"> 2.1.0-a", "2.1.0-beta", true},
+ {"> 2.1.0-a", "2.1.1-beta", true},
+ {"> 2.0.0", "2.1.0-beta", true},
+ {"> 2.1.0-a", "2.1.1", true},
+ {"> 2.1.0-a", "2.1.1-beta", true},
+ {"> 2.1.0-a", "2.1.0", true},
+ {"<= 2.1.0-a", "2.0.0", true},
+ {">= 0.6.1", "1.3.0-beta1", true},
+ {"> 1.0-beta1", "1.0-rc1", true},
+
+ // Meta components are ignored according to Semver v2
+ {">= 0.6.1", "1.3.0-beta1+ent", true},
+ {">= 1.3.0-beta1", "1.3.0-beta1+ent", true},
+ {"> 1.3.0-beta1+cgo", "1.3.0-beta1+ent", false},
+ {"= 1.3.0-beta1+cgo", "1.3.0-beta1+ent", true},
+ }
+
+ for _, tc := range cases {
+ c, err := NewConstraint(tc.constraint)
+ if err != nil {
+ t.Fatalf("err: %s", err)
+ }
+
+ v, err := version.NewSemver(tc.version)
+ if err != nil {
+ t.Fatalf("err: %s", err)
+ }
+
+ actual := c.Check(v)
+ expected := tc.check
+ if actual != expected {
+ t.Fatalf("Version: %s\nConstraint: %s\nExpected: %#v",
+ tc.version, tc.constraint, expected)
+ }
+ }
+}
+
+func TestConstraintsString(t *testing.T) {
+ cases := []struct {
+ constraint string
+ result string
+ }{
+ {">= 1.0, < 1.2", ""},
+ }
+
+ for _, tc := range cases {
+ c, err := NewConstraint(tc.constraint)
+ if err != nil {
+ t.Fatalf("err: %s", err)
+ }
+
+ actual := c.String()
+ expected := tc.result
+ if expected == "" {
+ expected = tc.constraint
+ }
+
+ if actual != expected {
+ t.Fatalf("Constraint: %s\nExpected: %#v\nActual: %s",
+ tc.constraint, expected, actual)
+ }
+ }
+}
diff --git a/helper/pluginutils/hclutils/util_test.go b/helper/pluginutils/hclutils/util_test.go
index 4faae2738..42a2a3f5d 100644
--- a/helper/pluginutils/hclutils/util_test.go
+++ b/helper/pluginutils/hclutils/util_test.go
@@ -42,9 +42,10 @@ func TestParseHclInterface_Hcl(t *testing.T) {
}`),
spec: dockerDecSpec,
expected: &docker.TaskConfig{
- Image: "redis:3.2",
- Devices: []docker.DockerDevice{},
- Mounts: []docker.DockerMount{},
+ Image: "redis:3.2",
+ Devices: []docker.DockerDevice{},
+ Mounts: []docker.DockerMount{},
+ CPUCFSPeriod: 100000,
},
expectedType: &docker.TaskConfig{},
},
@@ -58,9 +59,10 @@ func TestParseHclInterface_Hcl(t *testing.T) {
}`),
spec: dockerDecSpec,
expected: &docker.TaskConfig{
- Image: "redis:3.2",
- Devices: []docker.DockerDevice{},
- Mounts: []docker.DockerMount{},
+ Image: "redis:3.2",
+ Devices: []docker.DockerDevice{},
+ Mounts: []docker.DockerMount{},
+ CPUCFSPeriod: 100000,
},
expectedType: &docker.TaskConfig{},
},
@@ -73,10 +75,11 @@ func TestParseHclInterface_Hcl(t *testing.T) {
}`),
spec: dockerDecSpec,
expected: &docker.TaskConfig{
- Image: "redis:3.2",
- PidsLimit: 2,
- Devices: []docker.DockerDevice{},
- Mounts: []docker.DockerMount{},
+ Image: "redis:3.2",
+ PidsLimit: 2,
+ Devices: []docker.DockerDevice{},
+ Mounts: []docker.DockerMount{},
+ CPUCFSPeriod: 100000,
},
expectedType: &docker.TaskConfig{},
},
@@ -91,10 +94,11 @@ func TestParseHclInterface_Hcl(t *testing.T) {
}`),
spec: dockerDecSpec,
expected: &docker.TaskConfig{
- Image: "redis:3.2",
- PidsLimit: 2,
- Devices: []docker.DockerDevice{},
- Mounts: []docker.DockerMount{},
+ Image: "redis:3.2",
+ PidsLimit: 2,
+ Devices: []docker.DockerDevice{},
+ Mounts: []docker.DockerMount{},
+ CPUCFSPeriod: 100000,
},
expectedType: &docker.TaskConfig{},
},
@@ -107,10 +111,11 @@ func TestParseHclInterface_Hcl(t *testing.T) {
}`),
spec: dockerDecSpec,
expected: &docker.TaskConfig{
- Image: "redis:3.2",
- PidsLimit: 4,
- Devices: []docker.DockerDevice{},
- Mounts: []docker.DockerMount{},
+ Image: "redis:3.2",
+ PidsLimit: 4,
+ Devices: []docker.DockerDevice{},
+ Mounts: []docker.DockerMount{},
+ CPUCFSPeriod: 100000,
},
expectedType: &docker.TaskConfig{},
},
@@ -125,10 +130,11 @@ func TestParseHclInterface_Hcl(t *testing.T) {
}`),
spec: dockerDecSpec,
expected: &docker.TaskConfig{
- Image: "redis:3.2",
- PidsLimit: 4,
- Devices: []docker.DockerDevice{},
- Mounts: []docker.DockerMount{},
+ Image: "redis:3.2",
+ PidsLimit: 4,
+ Devices: []docker.DockerDevice{},
+ Mounts: []docker.DockerMount{},
+ CPUCFSPeriod: 100000,
},
expectedType: &docker.TaskConfig{},
},
@@ -141,10 +147,11 @@ func TestParseHclInterface_Hcl(t *testing.T) {
}`),
spec: dockerDecSpec,
expected: &docker.TaskConfig{
- Image: "redis:3.2",
- Args: []string{"foo", "bar"},
- Devices: []docker.DockerDevice{},
- Mounts: []docker.DockerMount{},
+ Image: "redis:3.2",
+ Args: []string{"foo", "bar"},
+ Devices: []docker.DockerDevice{},
+ Mounts: []docker.DockerMount{},
+ CPUCFSPeriod: 100000,
},
expectedType: &docker.TaskConfig{},
},
@@ -159,10 +166,11 @@ func TestParseHclInterface_Hcl(t *testing.T) {
}`),
spec: dockerDecSpec,
expected: &docker.TaskConfig{
- Image: "redis:3.2",
- Args: []string{"foo", "bar"},
- Devices: []docker.DockerDevice{},
- Mounts: []docker.DockerMount{},
+ Image: "redis:3.2",
+ Args: []string{"foo", "bar"},
+ Devices: []docker.DockerDevice{},
+ Mounts: []docker.DockerMount{},
+ CPUCFSPeriod: 100000,
},
expectedType: &docker.TaskConfig{},
},
@@ -177,11 +185,12 @@ func TestParseHclInterface_Hcl(t *testing.T) {
spec: dockerDecSpec,
vars: vars,
expected: &docker.TaskConfig{
- Image: "redis:3.2",
- Args: []string{"world", "2"},
- PidsLimit: 4,
- Devices: []docker.DockerDevice{},
- Mounts: []docker.DockerMount{},
+ Image: "redis:3.2",
+ Args: []string{"world", "2"},
+ PidsLimit: 4,
+ Devices: []docker.DockerDevice{},
+ Mounts: []docker.DockerMount{},
+ CPUCFSPeriod: 100000,
},
expectedType: &docker.TaskConfig{},
},
@@ -196,10 +205,11 @@ func TestParseHclInterface_Hcl(t *testing.T) {
}`),
spec: dockerDecSpec,
expected: &docker.TaskConfig{
- Image: "redis:3.2",
- Args: []string{"foo", "bar"},
- Devices: []docker.DockerDevice{},
- Mounts: []docker.DockerMount{},
+ Image: "redis:3.2",
+ Args: []string{"foo", "bar"},
+ Devices: []docker.DockerDevice{},
+ Mounts: []docker.DockerMount{},
+ CPUCFSPeriod: 100000,
},
expectedType: &docker.TaskConfig{},
},
@@ -220,8 +230,9 @@ func TestParseHclInterface_Hcl(t *testing.T) {
"foo": 1234,
"bar": 5678,
},
- Devices: []docker.DockerDevice{},
- Mounts: []docker.DockerMount{},
+ Devices: []docker.DockerDevice{},
+ Mounts: []docker.DockerMount{},
+ CPUCFSPeriod: 100000,
},
expectedType: &docker.TaskConfig{},
},
@@ -244,8 +255,9 @@ func TestParseHclInterface_Hcl(t *testing.T) {
"foo": 1234,
"bar": 5678,
},
- Devices: []docker.DockerDevice{},
- Mounts: []docker.DockerMount{},
+ Devices: []docker.DockerDevice{},
+ Mounts: []docker.DockerMount{},
+ CPUCFSPeriod: 100000,
},
expectedType: &docker.TaskConfig{},
},
@@ -280,7 +292,8 @@ func TestParseHclInterface_Hcl(t *testing.T) {
ContainerPath: "/dev/xvdd",
},
},
- Mounts: []docker.DockerMount{},
+ Mounts: []docker.DockerMount{},
+ CPUCFSPeriod: 100000,
},
expectedType: &docker.TaskConfig{},
},
@@ -309,8 +322,9 @@ func TestParseHclInterface_Hcl(t *testing.T) {
"tag": "driver-test",
},
},
- Devices: []docker.DockerDevice{},
- Mounts: []docker.DockerMount{},
+ Devices: []docker.DockerDevice{},
+ Mounts: []docker.DockerMount{},
+ CPUCFSPeriod: 100000,
},
expectedType: &docker.TaskConfig{},
},
@@ -347,7 +361,8 @@ func TestParseHclInterface_Hcl(t *testing.T) {
ContainerPath: "/dev/xvdd",
},
},
- Mounts: []docker.DockerMount{},
+ Mounts: []docker.DockerMount{},
+ CPUCFSPeriod: 100000,
},
expectedType: &docker.TaskConfig{},
},
diff --git a/helper/testlog/testlog.go b/helper/testlog/testlog.go
index d8502dd0a..7a343b50c 100644
--- a/helper/testlog/testlog.go
+++ b/helper/testlog/testlog.go
@@ -72,7 +72,7 @@ func Logger(t LogPrinter) *log.Logger {
}
//HCLogger returns a new test hc-logger.
-func HCLogger(t LogPrinter) hclog.Logger {
+func HCLogger(t LogPrinter) hclog.InterceptLogger {
level := hclog.Trace
envLogLevel := os.Getenv("NOMAD_TEST_LOG_LEVEL")
if envLogLevel != "" {
@@ -83,7 +83,7 @@ func HCLogger(t LogPrinter) hclog.Logger {
Output: NewWriter(t),
IncludeLocation: true,
}
- return hclog.New(opts)
+ return hclog.NewInterceptLogger(opts)
}
type prefixStdout struct {
diff --git a/helper/winsvc/service.go b/helper/winsvc/service.go
new file mode 100644
index 000000000..c8d21f5c7
--- /dev/null
+++ b/helper/winsvc/service.go
@@ -0,0 +1,9 @@
+package winsvc
+
+var chanGraceExit = make(chan int)
+
+// ShutdownChannel returns a channel that sends a message that a shutdown
+// signal has been received for the service.
+func ShutdownChannel() <-chan int {
+ return chanGraceExit
+}
diff --git a/helper/winsvc/service_windows.go b/helper/winsvc/service_windows.go
new file mode 100644
index 000000000..eeecf1b82
--- /dev/null
+++ b/helper/winsvc/service_windows.go
@@ -0,0 +1,42 @@
+//+build windows
+
+package winsvc
+
+import (
+ wsvc "golang.org/x/sys/windows/svc"
+)
+
+type serviceWindows struct{}
+
+func init() {
+ interactive, err := wsvc.IsAnInteractiveSession()
+ if err != nil {
+ panic(err)
+ }
+ // Cannot run as a service when running interactively
+ if interactive {
+ return
+ }
+ go wsvc.Run("", serviceWindows{})
+}
+
+// Execute implements the Windows service Handler type. It will be
+// called at the start of the service, and the service will exit
+// once Execute completes.
+func (serviceWindows) Execute(args []string, r <-chan wsvc.ChangeRequest, s chan<- wsvc.Status) (svcSpecificEC bool, exitCode uint32) {
+ const accCommands = wsvc.AcceptStop | wsvc.AcceptShutdown
+ s <- wsvc.Status{State: wsvc.Running, Accepts: accCommands}
+ for {
+ c := <-r
+ switch c.Cmd {
+ case wsvc.Interrogate:
+ s <- c.CurrentStatus
+ case wsvc.Stop, wsvc.Shutdown:
+ s <- wsvc.Status{State: wsvc.StopPending}
+ chanGraceExit <- 1
+ return false, 0
+ }
+ }
+
+ return false, 0
+}
diff --git a/jobspec/parse.go b/jobspec/parse.go
index 3cff938e5..7d386abd8 100644
--- a/jobspec/parse.go
+++ b/jobspec/parse.go
@@ -138,6 +138,7 @@ func parseConstraints(result *[]*api.Constraint, list *ast.ObjectList) error {
"set_contains",
"value",
"version",
+ "semver",
}
if err := helper.CheckHCLKeys(o.Val, valid); err != nil {
return err
@@ -159,6 +160,13 @@ func parseConstraints(result *[]*api.Constraint, list *ast.ObjectList) error {
m["RTarget"] = constraint
}
+ // If "semver" is provided, set the operand
+ // to "semver" and the value to the "RTarget"
+ if constraint, ok := m[api.ConstraintSemver]; ok {
+ m["Operand"] = api.ConstraintSemver
+ m["RTarget"] = constraint
+ }
+
// If "regexp" is provided, set the operand
// to "regexp" and the value to the "RTarget"
if constraint, ok := m[api.ConstraintRegex]; ok {
@@ -219,6 +227,7 @@ func parseAffinities(result *[]*api.Affinity, list *ast.ObjectList) error {
"set_contains_all",
"value",
"version",
+ "semver",
"weight",
}
if err := helper.CheckHCLKeys(o.Val, valid); err != nil {
@@ -241,6 +250,13 @@ func parseAffinities(result *[]*api.Affinity, list *ast.ObjectList) error {
m["RTarget"] = affinity
}
+ // If "semver" is provided, set the operand
+ // to "semver" and the value to the "RTarget"
+ if affinity, ok := m[api.ConstraintSemver]; ok {
+ m["Operand"] = api.ConstraintSemver
+ m["RTarget"] = affinity
+ }
+
// If "regexp" is provided, set the operand
// to "regexp" and the value to the "RTarget"
if affinity, ok := m[api.ConstraintRegex]; ok {
diff --git a/jobspec/parse_group.go b/jobspec/parse_group.go
index a835732de..39ebb292c 100644
--- a/jobspec/parse_group.go
+++ b/jobspec/parse_group.go
@@ -114,7 +114,7 @@ func parseGroups(result *api.Job, list *ast.ObjectList) error {
// Parse network
if o := listVal.Filter("network"); len(o.Items) > 0 {
- networks, err := parseNetwork(o)
+ networks, err := ParseNetwork(o)
if err != nil {
return err
}
@@ -293,7 +293,7 @@ func parseVolumes(out *map[string]*api.VolumeRequest, list *ast.ObjectList) erro
"type",
"read_only",
"hidden",
- "config",
+ "source",
}
if err := helper.CheckHCLKeys(item.Val, valid); err != nil {
return err
@@ -304,22 +304,6 @@ func parseVolumes(out *map[string]*api.VolumeRequest, list *ast.ObjectList) erro
return err
}
- // TODO(dani): this is gross but we don't have ObjectList.Filter here
- var cfg map[string]interface{}
- if cfgI, ok := m["config"]; ok {
- cfgL, ok := cfgI.([]map[string]interface{})
- if !ok {
- return fmt.Errorf("Incorrect `config` type, expected map")
- }
-
- if len(cfgL) != 1 {
- return fmt.Errorf("Expected single `config`, found %d", len(cfgL))
- }
-
- cfg = cfgL[0]
- }
- delete(m, "config")
-
var result api.VolumeRequest
dec, err := mapstructure.NewDecoder(&mapstructure.DecoderConfig{
WeaklyTypedInput: true,
@@ -333,8 +317,6 @@ func parseVolumes(out *map[string]*api.VolumeRequest, list *ast.ObjectList) erro
}
result.Name = n
- result.Config = cfg
-
volumes[n] = &result
}
diff --git a/jobspec/parse_network.go b/jobspec/parse_network.go
index b47844540..6cd2ca6cb 100644
--- a/jobspec/parse_network.go
+++ b/jobspec/parse_network.go
@@ -12,7 +12,8 @@ import (
"github.com/mitchellh/mapstructure"
)
-func parseNetwork(o *ast.ObjectList) (*api.NetworkResource, error) {
+// ParseNetwork parses a collection containing exactly one NetworkResource
+func ParseNetwork(o *ast.ObjectList) (*api.NetworkResource, error) {
if len(o.Items) > 1 {
return nil, fmt.Errorf("only one 'network' resource allowed")
}
diff --git a/jobspec/parse_service.go b/jobspec/parse_service.go
index 1ab1d0438..783b006bc 100644
--- a/jobspec/parse_service.go
+++ b/jobspec/parse_service.go
@@ -193,6 +193,7 @@ func parseSidecarService(o *ast.ObjectItem) (*api.ConsulSidecarService, error) {
valid := []string{
"port",
"proxy",
+ "tags",
}
if err := helper.CheckHCLKeys(o.Val, valid); err != nil {
@@ -216,7 +217,7 @@ func parseSidecarService(o *ast.ObjectItem) (*api.ConsulSidecarService, error) {
return nil, err
}
if err := dec.Decode(m); err != nil {
- return nil, fmt.Errorf("foo: %v", err)
+ return nil, fmt.Errorf("sidecar_service: %v", err)
}
var proxyList *ast.ObjectList
@@ -315,6 +316,8 @@ func parseSidecarTask(item *ast.ObjectItem) (*api.SidecarTask, error) {
func parseProxy(o *ast.ObjectItem) (*api.ConsulProxy, error) {
valid := []string{
+ "local_service_address",
+ "local_service_port",
"upstreams",
"config",
}
diff --git a/jobspec/parse_task.go b/jobspec/parse_task.go
index 7edccb430..a8fd6687c 100644
--- a/jobspec/parse_task.go
+++ b/jobspec/parse_task.go
@@ -440,7 +440,7 @@ func parseResources(result *api.Resources, list *ast.ObjectList) error {
// Parse the network resources
if o := listVal.Filter("network"); len(o.Items) > 0 {
- r, err := parseNetwork(o)
+ r, err := ParseNetwork(o)
if err != nil {
return fmt.Errorf("resource, %v", err)
}
@@ -522,6 +522,7 @@ func parseVolumeMounts(out *[]*api.VolumeMount, list *ast.ObjectList) error {
"volume",
"read_only",
"destination",
+ "propagation_mode",
}
if err := helper.CheckHCLKeys(item.Val, valid); err != nil {
return err
diff --git a/jobspec/parse_test.go b/jobspec/parse_test.go
index cd3857388..407666bfd 100644
--- a/jobspec/parse_test.go
+++ b/jobspec/parse_test.go
@@ -43,6 +43,11 @@ func TestParse(t *testing.T) {
RTarget: "windows",
Operand: "=",
},
+ {
+ LTarget: "${attr.vault.version}",
+ RTarget: ">= 0.6.1",
+ Operand: "semver",
+ },
},
Affinities: []*api.Affinity{
@@ -197,8 +202,8 @@ func TestParse(t *testing.T) {
},
VolumeMounts: []*api.VolumeMount{
{
- Volume: "foo",
- Destination: "/mnt/foo",
+ Volume: helper.StringToPtr("foo"),
+ Destination: helper.StringToPtr("/mnt/foo"),
},
},
Affinities: []*api.Affinity{
@@ -943,6 +948,7 @@ func TestParse(t *testing.T) {
PortLabel: "1234",
Connect: &api.ConsulConnect{
SidecarService: &api.ConsulSidecarService{
+ Tags: []string{"side1", "side2"},
Proxy: &api.ConsulProxy{
Upstreams: []*api.ConsulUpstream{
{
diff --git a/jobspec/test-fixtures/basic.hcl b/jobspec/test-fixtures/basic.hcl
index 2d32878ef..19b8a5964 100644
--- a/jobspec/test-fixtures/basic.hcl
+++ b/jobspec/test-fixtures/basic.hcl
@@ -16,6 +16,12 @@ job "binstore-storagelocker" {
value = "windows"
}
+ constraint {
+ attribute = "${attr.vault.version}"
+ value = ">= 0.6.1"
+ operator = "semver"
+ }
+
affinity {
attribute = "${meta.team}"
value = "mobile"
@@ -130,7 +136,7 @@ job "binstore-storagelocker" {
driver = "docker"
user = "bob"
leader = true
- kind = "connect-proxy:test"
+ kind = "connect-proxy:test"
affinity {
attribute = "${meta.foo}"
diff --git a/jobspec/test-fixtures/multi-vault.hcl b/jobspec/test-fixtures/multi-vault.hcl
index c5266548c..2745fdbab 100644
--- a/jobspec/test-fixtures/multi-vault.hcl
+++ b/jobspec/test-fixtures/multi-vault.hcl
@@ -18,8 +18,10 @@ job "binstore-storagelocker" {
vault {
policies = ["foo", "bar"]
}
+
vault {
policies = ["1", "2"]
}
}
+ }
}
diff --git a/jobspec/test-fixtures/overlapping-ports.hcl b/jobspec/test-fixtures/overlapping-ports.hcl
index a07ef2262..29f43d63d 100644
--- a/jobspec/test-fixtures/overlapping-ports.hcl
+++ b/jobspec/test-fixtures/overlapping-ports.hcl
@@ -61,12 +61,11 @@ job "binstore-storagelocker" {
static = 3
}
- port "Http"{
- }
- port "http"{
- }
- port "HTTP"{
- }
+ port "Http" {}
+
+ port "http" {}
+
+ port "HTTP" {}
}
}
}
diff --git a/jobspec/test-fixtures/parameterized_job.hcl b/jobspec/test-fixtures/parameterized_job.hcl
index 70c3ddae4..87eeb3d4f 100644
--- a/jobspec/test-fixtures/parameterized_job.hcl
+++ b/jobspec/test-fixtures/parameterized_job.hcl
@@ -1,15 +1,17 @@
job "parameterized_job" {
- parameterized {
- payload = "required"
- meta_required = ["foo", "bar"]
- meta_optional = ["baz", "bam"]
- }
- group "foo" {
- task "bar" {
- driver = "docker"
- dispatch_payload {
- file = "foo/bar"
- }
- }
+ parameterized {
+ payload = "required"
+ meta_required = ["foo", "bar"]
+ meta_optional = ["baz", "bam"]
+ }
+
+ group "foo" {
+ task "bar" {
+ driver = "docker"
+
+ dispatch_payload {
+ file = "foo/bar"
+ }
}
+ }
}
diff --git a/jobspec/test-fixtures/periodic-cron.hcl b/jobspec/test-fixtures/periodic-cron.hcl
index e97711546..dc6eddf55 100644
--- a/jobspec/test-fixtures/periodic-cron.hcl
+++ b/jobspec/test-fixtures/periodic-cron.hcl
@@ -1,7 +1,7 @@
job "foo" {
- periodic {
- cron = "*/5 * * *"
- prohibit_overlap = true
- time_zone = "Europe/Minsk"
- }
+ periodic {
+ cron = "*/5 * * *"
+ prohibit_overlap = true
+ time_zone = "Europe/Minsk"
+ }
}
diff --git a/jobspec/test-fixtures/regexp-constraint.hcl b/jobspec/test-fixtures/regexp-constraint.hcl
index dfdb4ce20..057311aa4 100644
--- a/jobspec/test-fixtures/regexp-constraint.hcl
+++ b/jobspec/test-fixtures/regexp-constraint.hcl
@@ -1,6 +1,6 @@
job "foo" {
- constraint {
- attribute = "$attr.kernel.version"
- regexp = "[0-9.]+"
- }
+ constraint {
+ attribute = "$attr.kernel.version"
+ regexp = "[0-9.]+"
+ }
}
diff --git a/jobspec/test-fixtures/reschedule-job-unlimited.hcl b/jobspec/test-fixtures/reschedule-job-unlimited.hcl
index c51be506a..038cccb49 100644
--- a/jobspec/test-fixtures/reschedule-job-unlimited.hcl
+++ b/jobspec/test-fixtures/reschedule-job-unlimited.hcl
@@ -1,19 +1,23 @@
job "foo" {
datacenters = ["dc1"]
- type = "batch"
+ type = "batch"
+
reschedule {
- delay = "10s",
+ delay = "10s"
delay_function = "exponential"
- max_delay="120s"
- unlimited = true
+ max_delay = "120s"
+ unlimited = true
}
+
group "bar" {
count = 3
+
task "bar" {
driver = "raw_exec"
+
config {
- command = "bash"
- args = ["-c", "echo hi"]
+ command = "bash"
+ args = ["-c", "echo hi"]
}
}
}
diff --git a/jobspec/test-fixtures/reschedule-job.hcl b/jobspec/test-fixtures/reschedule-job.hcl
index b29d36c23..3182851d4 100644
--- a/jobspec/test-fixtures/reschedule-job.hcl
+++ b/jobspec/test-fixtures/reschedule-job.hcl
@@ -1,19 +1,23 @@
job "foo" {
datacenters = ["dc1"]
- type = "batch"
+ type = "batch"
+
reschedule {
- attempts = 15
- interval = "30m"
- delay = "10s",
- delay_function = "constant"
+ attempts = 15
+ interval = "30m"
+ delay = "10s"
+ delay_function = "constant"
}
+
group "bar" {
count = 3
+
task "bar" {
driver = "raw_exec"
+
config {
- command = "bash"
- args = ["-c", "echo hi"]
+ command = "bash"
+ args = ["-c", "echo hi"]
}
}
}
diff --git a/jobspec/test-fixtures/service-check-bad-header-2.hcl b/jobspec/test-fixtures/service-check-bad-header-2.hcl
index c566925b3..ba7c75e8a 100644
--- a/jobspec/test-fixtures/service-check-bad-header-2.hcl
+++ b/jobspec/test-fixtures/service-check-bad-header-2.hcl
@@ -1,28 +1,28 @@
job "check_bad_header" {
- type = "service"
- group "group" {
- count = 1
+ type = "service"
- task "task" {
- service {
- tags = ["bar"]
- port = "http"
+ group "group" {
+ count = 1
- check {
- name = "check-name"
- type = "http"
- path = "/"
- method = "POST"
- interval = "10s"
- timeout = "2s"
- initial_status = "passing"
+ task "task" {
+ service {
+ tags = ["bar"]
+ port = "http"
- header {
- Authorization = ["ok", 840]
- }
- }
+ check {
+ name = "check-name"
+ type = "http"
+ path = "/"
+ method = "POST"
+ interval = "10s"
+ timeout = "2s"
+ initial_status = "passing"
+
+ header {
+ Authorization = ["ok", 840]
}
}
+ }
}
+ }
}
-
diff --git a/jobspec/test-fixtures/service-check-bad-header.hcl b/jobspec/test-fixtures/service-check-bad-header.hcl
index 6ad3f13ce..2bdd01446 100644
--- a/jobspec/test-fixtures/service-check-bad-header.hcl
+++ b/jobspec/test-fixtures/service-check-bad-header.hcl
@@ -1,28 +1,28 @@
job "check_bad_header" {
- type = "service"
- group "group" {
- count = 1
+ type = "service"
- task "task" {
- service {
- tags = ["bar"]
- port = "http"
+ group "group" {
+ count = 1
- check {
- name = "check-name"
- type = "http"
- path = "/"
- method = "POST"
- interval = "10s"
- timeout = "2s"
- initial_status = "passing"
+ task "task" {
+ service {
+ tags = ["bar"]
+ port = "http"
- header {
- Authorization = "Should be a []string!"
- }
- }
+ check {
+ name = "check-name"
+ type = "http"
+ path = "/"
+ method = "POST"
+ interval = "10s"
+ timeout = "2s"
+ initial_status = "passing"
+
+ header {
+ Authorization = "Should be a []string!"
}
}
+ }
}
+ }
}
-
diff --git a/jobspec/test-fixtures/service-check-driver-address.hcl b/jobspec/test-fixtures/service-check-driver-address.hcl
index a9fa88d42..8a3d20f43 100644
--- a/jobspec/test-fixtures/service-check-driver-address.hcl
+++ b/jobspec/test-fixtures/service-check-driver-address.hcl
@@ -1,38 +1,38 @@
job "address_mode_driver" {
- type = "service"
- group "group" {
- task "task" {
- service {
- name = "http-service"
- port = "http"
+ type = "service"
- address_mode = "auto"
+ group "group" {
+ task "task" {
+ service {
+ name = "http-service"
+ port = "http"
- check {
- name = "http-check"
- type = "http"
- path = "/"
- port = "http"
+ address_mode = "auto"
- address_mode = "driver"
- }
- }
+ check {
+ name = "http-check"
+ type = "http"
+ path = "/"
+ port = "http"
- service {
- name = "random-service"
- port = "9000"
-
- address_mode = "driver"
-
- check {
- name = "random-check"
- type = "tcp"
- port = "9001"
-
- address_mode = "driver"
- }
- }
+ address_mode = "driver"
}
- }
-}
+ }
+ service {
+ name = "random-service"
+ port = "9000"
+
+ address_mode = "driver"
+
+ check {
+ name = "random-check"
+ type = "tcp"
+ port = "9001"
+
+ address_mode = "driver"
+ }
+ }
+ }
+ }
+}
diff --git a/jobspec/test-fixtures/service-check-initial-status.hcl b/jobspec/test-fixtures/service-check-initial-status.hcl
index e275001be..84a7eb0d1 100644
--- a/jobspec/test-fixtures/service-check-initial-status.hcl
+++ b/jobspec/test-fixtures/service-check-initial-status.hcl
@@ -1,28 +1,28 @@
job "check_initial_status" {
- type = "service"
- group "group" {
- count = 1
+ type = "service"
- task "task" {
- service {
- tags = ["foo", "bar"]
- port = "http"
+ group "group" {
+ count = 1
- check {
- name = "check-name"
- type = "http"
- path = "/"
- method = "POST"
- interval = "10s"
- timeout = "2s"
- initial_status = "passing"
+ task "task" {
+ service {
+ tags = ["foo", "bar"]
+ port = "http"
- header {
- Authorization = ["Basic ZWxhc3RpYzpjaGFuZ2VtZQ=="]
- }
- }
+ check {
+ name = "check-name"
+ type = "http"
+ path = "/"
+ method = "POST"
+ interval = "10s"
+ timeout = "2s"
+ initial_status = "passing"
+
+ header {
+ Authorization = ["Basic ZWxhc3RpYzpjaGFuZ2VtZQ=="]
}
}
+ }
}
+ }
}
-
diff --git a/jobspec/test-fixtures/service-check-restart.hcl b/jobspec/test-fixtures/service-check-restart.hcl
index d34f70003..985726d34 100644
--- a/jobspec/test-fixtures/service-check-restart.hcl
+++ b/jobspec/test-fixtures/service-check-restart.hcl
@@ -1,21 +1,23 @@
job "service_check_restart" {
- type = "service"
- group "group" {
- task "task" {
- service {
- name = "http-service"
- check_restart {
- limit = 3
- grace = "10s"
- ignore_warnings = true
- }
- check {
- name = "random-check"
- type = "tcp"
- port = "9001"
- }
- }
- }
- }
-}
+ type = "service"
+ group "group" {
+ task "task" {
+ service {
+ name = "http-service"
+
+ check_restart {
+ limit = 3
+ grace = "10s"
+ ignore_warnings = true
+ }
+
+ check {
+ name = "random-check"
+ type = "tcp"
+ port = "9001"
+ }
+ }
+ }
+ }
+}
diff --git a/jobspec/test-fixtures/service-meta.hcl b/jobspec/test-fixtures/service-meta.hcl
index abf87e2a4..8595ad76f 100644
--- a/jobspec/test-fixtures/service-meta.hcl
+++ b/jobspec/test-fixtures/service-meta.hcl
@@ -1,14 +1,15 @@
job "service_meta" {
- type = "service"
- group "group" {
- task "task" {
- service {
- name = "http-service"
- meta {
- foo = "bar"
- }
- }
- }
- }
-}
+ type = "service"
+ group "group" {
+ task "task" {
+ service {
+ name = "http-service"
+
+ meta {
+ foo = "bar"
+ }
+ }
+ }
+ }
+}
diff --git a/jobspec/test-fixtures/set-contains-constraint.hcl b/jobspec/test-fixtures/set-contains-constraint.hcl
index 170f72118..cbb8e3dcc 100644
--- a/jobspec/test-fixtures/set-contains-constraint.hcl
+++ b/jobspec/test-fixtures/set-contains-constraint.hcl
@@ -1,6 +1,6 @@
job "foo" {
- constraint {
- attribute = "$meta.data"
- set_contains = "foo,bar,baz"
- }
+ constraint {
+ attribute = "$meta.data"
+ set_contains = "foo,bar,baz"
+ }
}
diff --git a/jobspec/test-fixtures/specify-job.hcl b/jobspec/test-fixtures/specify-job.hcl
index 24d70b60f..2b4620693 100644
--- a/jobspec/test-fixtures/specify-job.hcl
+++ b/jobspec/test-fixtures/specify-job.hcl
@@ -1,4 +1,4 @@
job "default" {
- id = "job1"
- name = "My Job"
+ id = "job1"
+ name = "My Job"
}
diff --git a/jobspec/test-fixtures/tg-network.hcl b/jobspec/test-fixtures/tg-network.hcl
index 826b89b04..dadf7eccc 100644
--- a/jobspec/test-fixtures/tg-network.hcl
+++ b/jobspec/test-fixtures/tg-network.hcl
@@ -1,12 +1,15 @@
job "foo" {
datacenters = ["dc1"]
+
group "bar" {
count = 3
+
network {
mode = "bridge"
+
port "http" {
static = 80
- to = 8080
+ to = 8080
}
}
@@ -18,16 +21,21 @@ job "foo" {
connect {
sidecar_service {
+ tags = ["side1", "side2"]
+
proxy {
+ local_service_port = 8080
+
upstreams {
destination_name = "other-service"
local_bind_port = 4567
}
}
}
+
sidecar_task {
resources {
- cpu = 500
+ cpu = 500
memory = 1024
}
@@ -42,13 +50,15 @@ job "foo" {
task "bar" {
driver = "raw_exec"
+
config {
- command = "bash"
- args = ["-c", "echo hi"]
+ command = "bash"
+ args = ["-c", "echo hi"]
}
+
resources {
network {
- mbits = 10
+ mbits = 10
}
}
}
diff --git a/jobspec/test-fixtures/tg-service-check.hcl b/jobspec/test-fixtures/tg-service-check.hcl
index 78a47851a..c0d97b91b 100644
--- a/jobspec/test-fixtures/tg-service-check.hcl
+++ b/jobspec/test-fixtures/tg-service-check.hcl
@@ -1,5 +1,4 @@
job "group_service_check_script" {
-
group "group" {
count = 1
@@ -7,8 +6,8 @@ job "group_service_check_script" {
mode = "bridge"
port "http" {
- static = 80
- to = 8080
+ static = 80
+ to = 8080
}
}
diff --git a/jobspec/test-fixtures/vault_inheritance.hcl b/jobspec/test-fixtures/vault_inheritance.hcl
index b45e2d38e..18d83d9f5 100644
--- a/jobspec/test-fixtures/vault_inheritance.hcl
+++ b/jobspec/test-fixtures/vault_inheritance.hcl
@@ -1,22 +1,24 @@
job "example" {
+ vault {
+ policies = ["job"]
+ }
+
+ group "cache" {
vault {
- policies = ["job"]
+ policies = ["group"]
}
- group "cache" {
- vault {
- policies = ["group"]
- }
- task "redis" { }
+ task "redis" {}
- task "redis2" {
- vault {
- policies = ["task"]
- env = false
- }
- }
- }
- group "cache2" {
- task "redis" { }
- }
+ task "redis2" {
+ vault {
+ policies = ["task"]
+ env = false
+ }
+ }
+ }
+
+ group "cache2" {
+ task "redis" {}
+ }
}
diff --git a/jobspec/test-fixtures/version-constraint.hcl b/jobspec/test-fixtures/version-constraint.hcl
index 3ba755272..71cc75755 100644
--- a/jobspec/test-fixtures/version-constraint.hcl
+++ b/jobspec/test-fixtures/version-constraint.hcl
@@ -1,6 +1,6 @@
job "foo" {
- constraint {
- attribute = "$attr.kernel.version"
- version = "~> 3.2"
- }
+ constraint {
+ attribute = "$attr.kernel.version"
+ version = "~> 3.2"
+ }
}
diff --git a/main.go b/main.go
index 9637c7742..a7cf7fb89 100644
--- a/main.go
+++ b/main.go
@@ -9,10 +9,17 @@ import (
"strings"
"text/tabwriter"
+ // These packages have init() funcs which check os.Args and drop directly
+ // into their command logic. This is because they are run as separate
+ // processes along side of a task. By early importing them we can avoid
+ // additional code being imported and thus reserving memory
+ _ "github.com/hashicorp/nomad/client/logmon"
+ _ "github.com/hashicorp/nomad/drivers/docker/docklog"
+ _ "github.com/hashicorp/nomad/drivers/shared/executor"
+
"github.com/hashicorp/nomad/command"
- "github.com/hashicorp/nomad/drivers/docker/docklog"
"github.com/hashicorp/nomad/version"
- "github.com/mattn/go-colorable"
+ colorable "github.com/mattn/go-colorable"
"github.com/mitchellh/cli"
"github.com/sean-/seed"
"golang.org/x/crypto/ssh/terminal"
@@ -38,7 +45,7 @@ var (
"server-join",
"server-members",
"syslog",
- docklog.PluginName,
+ "docker_logger",
}
// aliases is the list of aliases we want users to be aware of. We hide
diff --git a/nomad/acl_endpoint.go b/nomad/acl_endpoint.go
index e51c8356a..78189cdac 100644
--- a/nomad/acl_endpoint.go
+++ b/nomad/acl_endpoint.go
@@ -19,7 +19,7 @@ import (
var (
// aclDisabled is returned when an ACL endpoint is hit but ACLs are not enabled
- aclDisabled = fmt.Errorf("ACL support disabled")
+ aclDisabled = structs.NewErrRPCCoded(400, "ACL support disabled")
)
const (
@@ -56,13 +56,13 @@ func (a *ACL) UpsertPolicies(args *structs.ACLPolicyUpsertRequest, reply *struct
// Validate non-zero set of policies
if len(args.Policies) == 0 {
- return fmt.Errorf("must specify as least one policy")
+ return structs.NewErrRPCCoded(400, "must specify as least one policy")
}
// Validate each policy, compute hash
for idx, policy := range args.Policies {
if err := policy.Validate(); err != nil {
- return fmt.Errorf("policy %d invalid: %v", idx, err)
+ return structs.NewErrRPCCodedf(404, "policy %d invalid: %v", idx, err)
}
policy.SetHash()
}
@@ -100,7 +100,7 @@ func (a *ACL) DeletePolicies(args *structs.ACLPolicyDeleteRequest, reply *struct
// Validate non-zero set of policies
if len(args.Names) == 0 {
- return fmt.Errorf("must specify as least one policy")
+ return structs.NewErrRPCCoded(400, "must specify as least one policy")
}
// Update via Raft
@@ -379,9 +379,9 @@ func (a *ACL) Bootstrap(args *structs.ACLTokenBootstrapRequest, reply *structs.A
// Check if there is a reset index specified
specifiedIndex := a.fileBootstrapResetIndex()
if specifiedIndex == 0 {
- return fmt.Errorf("ACL bootstrap already done (reset index: %d)", resetIdx)
+ return structs.NewErrRPCCodedf(400, "ACL bootstrap already done (reset index: %d)", resetIdx)
} else if specifiedIndex != resetIdx {
- return fmt.Errorf("Invalid bootstrap reset index (specified %d, reset index: %d)", specifiedIndex, resetIdx)
+ return structs.NewErrRPCCodedf(400, "Invalid bootstrap reset index (specified %d, reset index: %d)", specifiedIndex, resetIdx)
}
// Setup the reset index to allow bootstrapping again
@@ -413,7 +413,7 @@ func (a *ACL) Bootstrap(args *structs.ACLTokenBootstrapRequest, reply *structs.A
}
out, err := state.ACLTokenByAccessorID(nil, args.Token.AccessorID)
if err != nil {
- return fmt.Errorf("token lookup failed: %v", err)
+ return structs.NewErrRPCCodedf(400, "token lookup failed: %v", err)
}
reply.Tokens = append(reply.Tokens, out)
@@ -457,7 +457,7 @@ func (a *ACL) UpsertTokens(args *structs.ACLTokenUpsertRequest, reply *structs.A
// Validate non-zero set of tokens
if len(args.Tokens) == 0 {
- return fmt.Errorf("must specify as least one token")
+ return structs.NewErrRPCCoded(400, "must specify as least one token")
}
// Force the request to the authoritative region if we are creating global tokens
@@ -475,7 +475,7 @@ func (a *ACL) UpsertTokens(args *structs.ACLTokenUpsertRequest, reply *structs.A
// the entire request as a single batch.
if hasGlobal {
if !allGlobal {
- return fmt.Errorf("cannot upsert mixed global and non-global tokens")
+ return structs.NewErrRPCCoded(400, "cannot upsert mixed global and non-global tokens")
}
// Force the request to the authoritative region if it has global
@@ -503,7 +503,7 @@ func (a *ACL) UpsertTokens(args *structs.ACLTokenUpsertRequest, reply *structs.A
// Validate each token
for idx, token := range args.Tokens {
if err := token.Validate(); err != nil {
- return fmt.Errorf("token %d invalid: %v", idx, err)
+ return structs.NewErrRPCCodedf(400, "token %d invalid: %v", idx, err)
}
// Generate an accessor and secret ID if new
@@ -516,15 +516,15 @@ func (a *ACL) UpsertTokens(args *structs.ACLTokenUpsertRequest, reply *structs.A
// Verify the token exists
out, err := state.ACLTokenByAccessorID(nil, token.AccessorID)
if err != nil {
- return fmt.Errorf("token lookup failed: %v", err)
+ return structs.NewErrRPCCodedf(400, "token lookup failed: %v", err)
}
if out == nil {
- return fmt.Errorf("cannot find token %s", token.AccessorID)
+ return structs.NewErrRPCCodedf(404, "cannot find token %s", token.AccessorID)
}
// Cannot toggle the "Global" mode
if token.Global != out.Global {
- return fmt.Errorf("cannot toggle global mode of %s", token.AccessorID)
+ return structs.NewErrRPCCodedf(400, "cannot toggle global mode of %s", token.AccessorID)
}
}
@@ -547,7 +547,7 @@ func (a *ACL) UpsertTokens(args *structs.ACLTokenUpsertRequest, reply *structs.A
for _, token := range args.Tokens {
out, err := state.ACLTokenByAccessorID(nil, token.AccessorID)
if err != nil {
- return fmt.Errorf("token lookup failed: %v", err)
+ return structs.NewErrRPCCodedf(400, "token lookup failed: %v", err)
}
reply.Tokens = append(reply.Tokens, out)
}
@@ -566,7 +566,7 @@ func (a *ACL) DeleteTokens(args *structs.ACLTokenDeleteRequest, reply *structs.G
// Validate non-zero set of tokens
if len(args.AccessorIDs) == 0 {
- return fmt.Errorf("must specify as least one token")
+ return structs.NewErrRPCCoded(400, "must specify as least one token")
}
if done, err := a.srv.forward("ACL.DeleteTokens", args, args, reply); done {
@@ -594,7 +594,7 @@ func (a *ACL) DeleteTokens(args *structs.ACLTokenDeleteRequest, reply *structs.G
for _, accessor := range args.AccessorIDs {
token, err := state.ACLTokenByAccessorID(nil, accessor)
if err != nil {
- return fmt.Errorf("token lookup failed: %v", err)
+ return structs.NewErrRPCCodedf(400, "token lookup failed: %v", err)
}
if token == nil {
nonexistentTokens = append(nonexistentTokens, accessor)
@@ -608,14 +608,14 @@ func (a *ACL) DeleteTokens(args *structs.ACLTokenDeleteRequest, reply *structs.G
}
if len(nonexistentTokens) != 0 {
- return fmt.Errorf("Cannot delete nonexistent tokens: %v", strings.Join(nonexistentTokens, ", "))
+ return structs.NewErrRPCCodedf(400, "Cannot delete nonexistent tokens: %v", strings.Join(nonexistentTokens, ", "))
}
// Disallow mixed requests with global and non-global tokens since we forward
// the entire request as a single batch.
if hasGlobal {
if !allGlobal {
- return fmt.Errorf("cannot delete mixed global and non-global tokens")
+ return structs.NewErrRPCCoded(400, "cannot delete mixed global and non-global tokens")
}
// Force the request to the authoritative region if it has global
diff --git a/nomad/acl_endpoint_test.go b/nomad/acl_endpoint_test.go
index 4f55a7e1d..58601e12a 100644
--- a/nomad/acl_endpoint_test.go
+++ b/nomad/acl_endpoint_test.go
@@ -931,7 +931,7 @@ func TestACLEndpoint_DeleteTokens_WithNonexistentToken(t *testing.T) {
assert.NotNil(err)
expectedError := fmt.Sprintf("Cannot delete nonexistent tokens: %s", nonexistentToken.AccessorID)
- assert.Contains(expectedError, err.Error())
+ assert.Contains(err.Error(), expectedError)
}
func TestACLEndpoint_Bootstrap(t *testing.T) {
diff --git a/nomad/alloc_endpoint.go b/nomad/alloc_endpoint.go
index d78642b86..fb55c614c 100644
--- a/nomad/alloc_endpoint.go
+++ b/nomad/alloc_endpoint.go
@@ -86,8 +86,10 @@ func (a *Alloc) GetAlloc(args *structs.AllocSpecificRequest,
}
defer metrics.MeasureSince([]string{"nomad", "alloc", "get_alloc"}, time.Now())
- // Check namespace read-job permissions
- if aclObj, err := a.srv.ResolveToken(args.AuthToken); err != nil {
+ // Check namespace read-job permissions before performing blocking query.
+ allowNsOp := acl.NamespaceValidator(acl.NamespaceCapabilityReadJob)
+ aclObj, err := a.srv.ResolveToken(args.AuthToken)
+ if err != nil {
// If ResolveToken had an unexpected error return that
if err != structs.ErrTokenNotFound {
return err
@@ -107,8 +109,6 @@ func (a *Alloc) GetAlloc(args *structs.AllocSpecificRequest,
if node == nil {
return structs.ErrTokenNotFound
}
- } else if aclObj != nil && !aclObj.AllowNsOp(args.RequestNamespace(), acl.NamespaceCapabilityReadJob) {
- return structs.ErrPermissionDenied
}
// Setup the blocking query
@@ -125,6 +125,11 @@ func (a *Alloc) GetAlloc(args *structs.AllocSpecificRequest,
// Setup the output
reply.Alloc = out
if out != nil {
+ // Re-check namespace in case it differs from request.
+ if !allowNsOp(aclObj, out.Namespace) {
+ return structs.NewErrUnknownAllocation(args.AllocID)
+ }
+
reply.Index = out.ModifyIndex
} else {
// Use the last index that affected the allocs table
@@ -214,25 +219,18 @@ func (a *Alloc) Stop(args *structs.AllocStopRequest, reply *structs.AllocStopRes
}
defer metrics.MeasureSince([]string{"nomad", "alloc", "stop"}, time.Now())
- // Check that it is a management token.
- if aclObj, err := a.srv.ResolveToken(args.AuthToken); err != nil {
- return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.Namespace, acl.NamespaceCapabilityAllocLifecycle) {
- return structs.ErrPermissionDenied
- }
-
- if args.AllocID == "" {
- return fmt.Errorf("must provide an alloc id")
- }
-
- ws := memdb.NewWatchSet()
- alloc, err := a.srv.State().AllocByID(ws, args.AllocID)
+ alloc, err := getAlloc(a.srv.State(), args.AllocID)
if err != nil {
return err
}
- if alloc == nil {
- return fmt.Errorf(structs.ErrUnknownAllocationPrefix)
+ // Check for namespace alloc-lifecycle permissions.
+ allowNsOp := acl.NamespaceValidator(acl.NamespaceCapabilityAllocLifecycle)
+ aclObj, err := a.srv.ResolveToken(args.AuthToken)
+ if err != nil {
+ return err
+ } else if !allowNsOp(aclObj, alloc.Namespace) {
+ return structs.ErrPermissionDenied
}
now := time.Now().UTC().UnixNano()
diff --git a/nomad/alloc_endpoint_test.go b/nomad/alloc_endpoint_test.go
index f26c6a203..73c4cec2f 100644
--- a/nomad/alloc_endpoint_test.go
+++ b/nomad/alloc_endpoint_test.go
@@ -276,54 +276,90 @@ func TestAllocEndpoint_GetAlloc_ACL(t *testing.T) {
invalidToken := mock.CreatePolicyAndToken(t, state, 1003, "test-invalid",
mock.NamespacePolicy(structs.DefaultNamespace, "", []string{acl.NamespaceCapabilityListJobs}))
- get := &structs.AllocSpecificRequest{
- AllocID: alloc.ID,
- QueryOptions: structs.QueryOptions{Region: "global"},
+ getReq := func() *structs.AllocSpecificRequest {
+ return &structs.AllocSpecificRequest{
+ AllocID: alloc.ID,
+ QueryOptions: structs.QueryOptions{
+ Region: "global",
+ },
+ }
}
- // Lookup the alloc without a token and expect failure
- {
- var resp structs.SingleAllocResponse
- err := msgpackrpc.CallWithCodec(codec, "Alloc.GetAlloc", get, &resp)
- assert.Equal(structs.ErrPermissionDenied.Error(), err.Error())
+ cases := []struct {
+ Name string
+ F func(t *testing.T)
+ }{
+ // Lookup the alloc without a token and expect failure
+ {
+ Name: "no-token",
+ F: func(t *testing.T) {
+ var resp structs.SingleAllocResponse
+ err := msgpackrpc.CallWithCodec(codec, "Alloc.GetAlloc", getReq(), &resp)
+ require.True(t, structs.IsErrUnknownAllocation(err), "expected unknown alloc but found: %v", err)
+ },
+ },
+
+ // Try with a valid ACL token
+ {
+ Name: "valid-token",
+ F: func(t *testing.T) {
+ get := getReq()
+ get.AuthToken = validToken.SecretID
+ get.AllocID = alloc.ID
+ var resp structs.SingleAllocResponse
+ require.NoError(t, msgpackrpc.CallWithCodec(codec, "Alloc.GetAlloc", get, &resp), "RPC")
+ require.EqualValues(t, resp.Index, 1000, "resp.Index")
+ require.Equal(t, alloc, resp.Alloc, "Returned alloc not equal")
+ },
+ },
+
+ // Try with a valid Node.SecretID
+ {
+ Name: "valid-node-secret",
+ F: func(t *testing.T) {
+ node := mock.Node()
+ assert.Nil(state.UpsertNode(1005, node))
+ get := getReq()
+ get.AuthToken = node.SecretID
+ get.AllocID = alloc.ID
+ var resp structs.SingleAllocResponse
+ require.NoError(t, msgpackrpc.CallWithCodec(codec, "Alloc.GetAlloc", get, &resp), "RPC")
+ require.EqualValues(t, resp.Index, 1000, "resp.Index")
+ require.Equal(t, alloc, resp.Alloc, "Returned alloc not equal")
+ },
+ },
+
+ // Try with a invalid token
+ {
+ Name: "invalid-token",
+ F: func(t *testing.T) {
+ get := getReq()
+ get.AuthToken = invalidToken.SecretID
+ get.AllocID = alloc.ID
+ var resp structs.SingleAllocResponse
+ err := msgpackrpc.CallWithCodec(codec, "Alloc.GetAlloc", get, &resp)
+ require.NotNil(t, err, "RPC")
+ require.True(t, structs.IsErrUnknownAllocation(err), "expected unknown alloc but found: %v", err)
+ },
+ },
+
+ // Try with a root token
+ {
+ Name: "root-token",
+ F: func(t *testing.T) {
+ get := getReq()
+ get.AuthToken = root.SecretID
+ get.AllocID = alloc.ID
+ var resp structs.SingleAllocResponse
+ require.NoError(t, msgpackrpc.CallWithCodec(codec, "Alloc.GetAlloc", get, &resp), "RPC")
+ require.EqualValues(t, resp.Index, 1000, "resp.Index")
+ require.Equal(t, alloc, resp.Alloc, "Returned alloc not equal")
+ },
+ },
}
- // Try with a valid ACL token
- {
- get.AuthToken = validToken.SecretID
- var resp structs.SingleAllocResponse
- assert.Nil(msgpackrpc.CallWithCodec(codec, "Alloc.GetAlloc", get, &resp), "RPC")
- assert.EqualValues(resp.Index, 1000, "resp.Index")
- assert.Equal(alloc, resp.Alloc, "Returned alloc not equal")
- }
-
- // Try with a valid Node.SecretID
- {
- node := mock.Node()
- assert.Nil(state.UpsertNode(1005, node))
- get.AuthToken = node.SecretID
- var resp structs.SingleAllocResponse
- assert.Nil(msgpackrpc.CallWithCodec(codec, "Alloc.GetAlloc", get, &resp), "RPC")
- assert.EqualValues(resp.Index, 1000, "resp.Index")
- assert.Equal(alloc, resp.Alloc, "Returned alloc not equal")
- }
-
- // Try with a invalid token
- {
- get.AuthToken = invalidToken.SecretID
- var resp structs.SingleAllocResponse
- err := msgpackrpc.CallWithCodec(codec, "Alloc.GetAlloc", get, &resp)
- assert.NotNil(err, "RPC")
- assert.Equal(err.Error(), structs.ErrPermissionDenied.Error())
- }
-
- // Try with a root token
- {
- get.AuthToken = root.SecretID
- var resp structs.SingleAllocResponse
- assert.Nil(msgpackrpc.CallWithCodec(codec, "Alloc.GetAlloc", get, &resp), "RPC")
- assert.EqualValues(resp.Index, 1000, "resp.Index")
- assert.Equal(alloc, resp.Alloc, "Returned alloc not equal")
+ for _, tc := range cases {
+ t.Run(tc.Name, tc.F)
}
}
diff --git a/nomad/autopilot_test.go b/nomad/autopilot_test.go
index a4e2f5d90..269963b83 100644
--- a/nomad/autopilot_test.go
+++ b/nomad/autopilot_test.go
@@ -242,6 +242,8 @@ func TestAutopilot_RollingUpdate(t *testing.T) {
}
func TestAutopilot_CleanupStaleRaftServer(t *testing.T) {
+ t.Skip("TestAutopilot_CleanupDeadServer is very flaky, removing it for now")
+
t.Parallel()
s1 := TestServer(t, nil)
defer s1.Shutdown()
@@ -263,15 +265,11 @@ func TestAutopilot_CleanupStaleRaftServer(t *testing.T) {
// Join the servers to s1
TestJoin(t, s1, s2, s3)
- for _, s := range servers {
- retry.Run(t, func(r *retry.R) { r.Check(wantPeers(s, 3)) })
- }
-
- testutil.WaitForLeader(t, s1.RPC)
+ leader := waitForStableLeadership(t, servers)
// Add s4 to peers directly
addr := fmt.Sprintf("127.0.0.1:%d", s4.config.RPCAddr.Port)
- future := s1.raft.AddVoter(raft.ServerID(s4.config.NodeID), raft.ServerAddress(addr), 0, 0)
+ future := leader.raft.AddVoter(raft.ServerID(s4.config.NodeID), raft.ServerAddress(addr), 0, 0)
if err := future.Error(); err != nil {
t.Fatal(err)
}
diff --git a/nomad/client_agent_endpoint.go b/nomad/client_agent_endpoint.go
new file mode 100644
index 000000000..60d8c7b44
--- /dev/null
+++ b/nomad/client_agent_endpoint.go
@@ -0,0 +1,308 @@
+package nomad
+
+import (
+ "bytes"
+ "context"
+ "errors"
+ "fmt"
+ "io"
+ "net"
+ "time"
+
+ log "github.com/hashicorp/go-hclog"
+ sframer "github.com/hashicorp/nomad/client/lib/streamframer"
+ cstructs "github.com/hashicorp/nomad/client/structs"
+ "github.com/hashicorp/nomad/command/agent/monitor"
+ "github.com/hashicorp/nomad/helper"
+ "github.com/hashicorp/nomad/nomad/structs"
+
+ "github.com/ugorji/go/codec"
+)
+
+type Agent struct {
+ srv *Server
+}
+
+func (m *Agent) register() {
+ m.srv.streamingRpcs.Register("Agent.Monitor", m.monitor)
+}
+
+func (m *Agent) monitor(conn io.ReadWriteCloser) {
+ defer conn.Close()
+
+ // Decode args
+ var args cstructs.MonitorRequest
+ decoder := codec.NewDecoder(conn, structs.MsgpackHandle)
+ encoder := codec.NewEncoder(conn, structs.MsgpackHandle)
+
+ if err := decoder.Decode(&args); err != nil {
+ handleStreamResultError(err, helper.Int64ToPtr(500), encoder)
+ return
+ }
+
+ // Check agent read permissions
+ if aclObj, err := m.srv.ResolveToken(args.AuthToken); err != nil {
+ handleStreamResultError(err, nil, encoder)
+ return
+ } else if aclObj != nil && !aclObj.AllowAgentRead() {
+ handleStreamResultError(structs.ErrPermissionDenied, helper.Int64ToPtr(403), encoder)
+ return
+ }
+
+ logLevel := log.LevelFromString(args.LogLevel)
+ if args.LogLevel == "" {
+ logLevel = log.LevelFromString("INFO")
+ }
+
+ if logLevel == log.NoLevel {
+ handleStreamResultError(errors.New("Unknown log level"), helper.Int64ToPtr(400), encoder)
+ return
+ }
+
+ // Targeting a node, forward request to node
+ if args.NodeID != "" {
+ m.forwardMonitorClient(conn, args, encoder, decoder)
+ // forwarded request has ended, return
+ return
+ }
+
+ currentServer := m.srv.serf.LocalMember().Name
+ var forwardServer bool
+ // Targeting a remote server which is not the leader and not this server
+ if args.ServerID != "" && args.ServerID != "leader" && args.ServerID != currentServer {
+ forwardServer = true
+ }
+
+ // Targeting leader and this server is not current leader
+ if args.ServerID == "leader" && !m.srv.IsLeader() {
+ forwardServer = true
+ }
+
+ if forwardServer {
+ m.forwardMonitorServer(conn, args, encoder, decoder)
+ return
+ }
+
+ // NodeID was empty, so monitor this current server
+ ctx, cancel := context.WithCancel(context.Background())
+ defer cancel()
+
+ monitor := monitor.New(512, m.srv.logger, &log.LoggerOptions{
+ Level: logLevel,
+ JSONFormat: args.LogJSON,
+ })
+
+ frames := make(chan *sframer.StreamFrame, 32)
+ errCh := make(chan error)
+ var buf bytes.Buffer
+ frameCodec := codec.NewEncoder(&buf, structs.JsonHandle)
+
+ framer := sframer.NewStreamFramer(frames, 1*time.Second, 200*time.Millisecond, 1024)
+ framer.Run()
+ defer framer.Destroy()
+
+ // goroutine to detect remote side closing
+ go func() {
+ if _, err := conn.Read(nil); err != nil {
+ // One end of the pipe explicitly closed, exit
+ cancel()
+ return
+ }
+ select {
+ case <-ctx.Done():
+ return
+ }
+ }()
+
+ logCh := monitor.Start()
+ defer monitor.Stop()
+ initialOffset := int64(0)
+
+ // receive logs and build frames
+ go func() {
+ defer framer.Destroy()
+ LOOP:
+ for {
+ select {
+ case log := <-logCh:
+ if err := framer.Send("", "log", log, initialOffset); err != nil {
+ select {
+ case errCh <- err:
+ case <-ctx.Done():
+ }
+ break LOOP
+ }
+ case <-ctx.Done():
+ break LOOP
+ }
+ }
+ }()
+
+ var streamErr error
+OUTER:
+ for {
+ select {
+ case frame, ok := <-frames:
+ if !ok {
+ // frame may have been closed when an error
+ // occurred. Check once more for an error.
+ select {
+ case streamErr = <-errCh:
+ // There was a pending error!
+ default:
+ // No error, continue on
+ }
+
+ break OUTER
+ }
+
+ var resp cstructs.StreamErrWrapper
+ if args.PlainText {
+ resp.Payload = frame.Data
+ } else {
+ if err := frameCodec.Encode(frame); err != nil {
+ streamErr = err
+ break OUTER
+ }
+
+ resp.Payload = buf.Bytes()
+ buf.Reset()
+ }
+
+ if err := encoder.Encode(resp); err != nil {
+ streamErr = err
+ break OUTER
+ }
+ encoder.Reset(conn)
+ case <-ctx.Done():
+ break OUTER
+ }
+ }
+
+ if streamErr != nil {
+ handleStreamResultError(streamErr, helper.Int64ToPtr(500), encoder)
+ return
+ }
+}
+
+func (m *Agent) forwardMonitorClient(conn io.ReadWriteCloser, args cstructs.MonitorRequest, encoder *codec.Encoder, decoder *codec.Decoder) {
+ nodeID := args.NodeID
+
+ snap, err := m.srv.State().Snapshot()
+ if err != nil {
+ handleStreamResultError(err, nil, encoder)
+ return
+ }
+
+ node, err := snap.NodeByID(nil, nodeID)
+ if err != nil {
+ handleStreamResultError(err, helper.Int64ToPtr(500), encoder)
+ return
+ }
+
+ if node == nil {
+ err := fmt.Errorf("Unknown node %q", nodeID)
+ handleStreamResultError(err, helper.Int64ToPtr(400), encoder)
+ return
+ }
+
+ if err := nodeSupportsRpc(node); err != nil {
+ handleStreamResultError(err, helper.Int64ToPtr(400), encoder)
+ return
+ }
+
+ // Get the Connection to the client either by fowarding to another server
+ // or creating direct stream
+ var clientConn net.Conn
+ state, ok := m.srv.getNodeConn(nodeID)
+ if !ok {
+ // Determine the server that has a connection to the node
+ srv, err := m.srv.serverWithNodeConn(nodeID, m.srv.Region())
+ if err != nil {
+ var code *int64
+ if structs.IsErrNoNodeConn(err) {
+ code = helper.Int64ToPtr(404)
+ }
+ handleStreamResultError(err, code, encoder)
+ return
+ }
+ conn, err := m.srv.streamingRpc(srv, "Agent.Monitor")
+ if err != nil {
+ handleStreamResultError(err, nil, encoder)
+ return
+ }
+
+ clientConn = conn
+ } else {
+ stream, err := NodeStreamingRpc(state.Session, "Agent.Monitor")
+ if err != nil {
+ handleStreamResultError(err, nil, encoder)
+ return
+ }
+ clientConn = stream
+ }
+ defer clientConn.Close()
+
+ // Send the Request
+ outEncoder := codec.NewEncoder(clientConn, structs.MsgpackHandle)
+ if err := outEncoder.Encode(args); err != nil {
+ handleStreamResultError(err, nil, encoder)
+ return
+ }
+
+ structs.Bridge(conn, clientConn)
+ return
+}
+
+func (m *Agent) forwardMonitorServer(conn io.ReadWriteCloser, args cstructs.MonitorRequest, encoder *codec.Encoder, decoder *codec.Decoder) {
+ var target *serverParts
+ serverID := args.ServerID
+
+ // empty ServerID to prevent forwarding loop
+ args.ServerID = ""
+
+ if serverID == "leader" {
+ isLeader, remoteServer := m.srv.getLeader()
+ if !isLeader && remoteServer != nil {
+ target = remoteServer
+ }
+ if !isLeader && remoteServer == nil {
+ handleStreamResultError(structs.ErrNoLeader, helper.Int64ToPtr(400), encoder)
+ return
+ }
+ } else {
+ // See if the server ID is a known member
+ serfMembers := m.srv.Members()
+ for _, mem := range serfMembers {
+ if mem.Name == serverID {
+ if ok, srv := isNomadServer(mem); ok {
+ target = srv
+ }
+ }
+ }
+ }
+
+ // Unable to find a server
+ if target == nil {
+ err := fmt.Errorf("unknown nomad server %s", serverID)
+ handleStreamResultError(err, helper.Int64ToPtr(400), encoder)
+ return
+ }
+
+ serverConn, err := m.srv.streamingRpc(target, "Agent.Monitor")
+ if err != nil {
+ handleStreamResultError(err, helper.Int64ToPtr(500), encoder)
+ return
+ }
+ defer serverConn.Close()
+
+ // Send the Request
+ outEncoder := codec.NewEncoder(serverConn, structs.MsgpackHandle)
+ if err := outEncoder.Encode(args); err != nil {
+ handleStreamResultError(err, helper.Int64ToPtr(500), encoder)
+ return
+ }
+
+ structs.Bridge(conn, serverConn)
+ return
+}
diff --git a/nomad/client_agent_endpoint_test.go b/nomad/client_agent_endpoint_test.go
new file mode 100644
index 000000000..b80f75c56
--- /dev/null
+++ b/nomad/client_agent_endpoint_test.go
@@ -0,0 +1,458 @@
+package nomad
+
+import (
+ "encoding/json"
+ "fmt"
+ "io"
+ "net"
+ "strings"
+ "testing"
+ "time"
+
+ "github.com/hashicorp/go-hclog"
+ "github.com/hashicorp/nomad/acl"
+ "github.com/hashicorp/nomad/client"
+ "github.com/hashicorp/nomad/client/config"
+ sframer "github.com/hashicorp/nomad/client/lib/streamframer"
+ cstructs "github.com/hashicorp/nomad/client/structs"
+ "github.com/hashicorp/nomad/nomad/mock"
+ "github.com/hashicorp/nomad/nomad/structs"
+ "github.com/hashicorp/nomad/testutil"
+ "github.com/stretchr/testify/assert"
+ "github.com/stretchr/testify/require"
+ "github.com/ugorji/go/codec"
+)
+
+func TestMonitor_Monitor_Remote_Client(t *testing.T) {
+ t.Parallel()
+ require := require.New(t)
+
+ // start server and client
+ s1 := TestServer(t, nil)
+ defer s1.Shutdown()
+ s2 := TestServer(t, func(c *Config) {
+ c.DevDisableBootstrap = true
+ })
+ defer s2.Shutdown()
+ TestJoin(t, s1, s2)
+ testutil.WaitForLeader(t, s1.RPC)
+ testutil.WaitForLeader(t, s2.RPC)
+
+ c, cleanup := client.TestClient(t, func(c *config.Config) {
+ c.Servers = []string{s2.GetConfig().RPCAddr.String()}
+ })
+ defer cleanup()
+
+ testutil.WaitForResult(func() (bool, error) {
+ nodes := s2.connectedNodes()
+ return len(nodes) == 1, nil
+ }, func(err error) {
+ t.Fatalf("should have a clients")
+ })
+
+ // No node ID to monitor the remote server
+ req := cstructs.MonitorRequest{
+ LogLevel: "debug",
+ NodeID: c.NodeID(),
+ }
+
+ handler, err := s1.StreamingRpcHandler("Agent.Monitor")
+ require.Nil(err)
+
+ // create pipe
+ p1, p2 := net.Pipe()
+ defer p1.Close()
+ defer p2.Close()
+
+ errCh := make(chan error)
+ streamMsg := make(chan *cstructs.StreamErrWrapper)
+
+ go handler(p2)
+
+ // Start decoder
+ go func() {
+ decoder := codec.NewDecoder(p1, structs.MsgpackHandle)
+ for {
+ var msg cstructs.StreamErrWrapper
+ if err := decoder.Decode(&msg); err != nil {
+ if err == io.EOF || strings.Contains(err.Error(), "closed") {
+ return
+ }
+ errCh <- fmt.Errorf("error decoding: %v", err)
+ }
+
+ streamMsg <- &msg
+ }
+ }()
+
+ // send request
+ encoder := codec.NewEncoder(p1, structs.MsgpackHandle)
+ require.Nil(encoder.Encode(req))
+
+ timeout := time.After(3 * time.Second)
+ expected := "[DEBUG]"
+ received := ""
+
+OUTER:
+ for {
+ select {
+ case <-timeout:
+ t.Fatal("timeout waiting for logs")
+ case err := <-errCh:
+ t.Fatal(err)
+ case msg := <-streamMsg:
+ if msg.Error != nil {
+ t.Fatalf("Got error: %v", msg.Error.Error())
+ }
+
+ var frame sframer.StreamFrame
+ err := json.Unmarshal(msg.Payload, &frame)
+ assert.NoError(t, err)
+
+ received += string(frame.Data)
+ if strings.Contains(received, expected) {
+ require.Nil(p2.Close())
+ break OUTER
+ }
+ }
+ }
+}
+
+func TestMonitor_Monitor_RemoteServer(t *testing.T) {
+ t.Parallel()
+
+ // start servers
+ s1 := TestServer(t, nil)
+ defer s1.Shutdown()
+ s2 := TestServer(t, func(c *Config) {
+ c.DevDisableBootstrap = true
+ })
+ defer s2.Shutdown()
+ TestJoin(t, s1, s2)
+ testutil.WaitForLeader(t, s1.RPC)
+ testutil.WaitForLeader(t, s2.RPC)
+
+ // determine leader and nonleader
+ servers := []*Server{s1, s2}
+ var nonLeader *Server
+ var leader *Server
+ for _, s := range servers {
+ if !s.IsLeader() {
+ nonLeader = s
+ } else {
+ leader = s
+ }
+ }
+
+ cases := []struct {
+ desc string
+ serverID string
+ expectedLog string
+ logger hclog.InterceptLogger
+ origin *Server
+ }{
+ {
+ desc: "remote leader",
+ serverID: "leader",
+ expectedLog: "leader log",
+ logger: leader.logger,
+ origin: nonLeader,
+ },
+ {
+ desc: "remote server",
+ serverID: nonLeader.serf.LocalMember().Name,
+ expectedLog: "nonleader log",
+ logger: nonLeader.logger,
+ origin: leader,
+ },
+ {
+ desc: "serverID is current leader",
+ serverID: "leader",
+ expectedLog: "leader log",
+ logger: leader.logger,
+ origin: leader,
+ },
+ {
+ desc: "serverID is current server",
+ serverID: nonLeader.serf.LocalMember().Name,
+ expectedLog: "non leader log",
+ logger: nonLeader.logger,
+ origin: nonLeader,
+ },
+ }
+
+ for _, tc := range cases {
+ t.Run(tc.desc, func(t *testing.T) {
+ require := require.New(t)
+
+ // send some specific logs
+ doneCh := make(chan struct{})
+ go func() {
+ for {
+ select {
+ case <-doneCh:
+ return
+ default:
+ tc.logger.Warn(tc.expectedLog)
+ time.Sleep(10 * time.Millisecond)
+ }
+ }
+ }()
+
+ req := cstructs.MonitorRequest{
+ LogLevel: "warn",
+ ServerID: tc.serverID,
+ }
+
+ handler, err := tc.origin.StreamingRpcHandler("Agent.Monitor")
+ require.Nil(err)
+
+ // create pipe
+ p1, p2 := net.Pipe()
+ defer p1.Close()
+ defer p2.Close()
+
+ errCh := make(chan error)
+ streamMsg := make(chan *cstructs.StreamErrWrapper)
+
+ go handler(p2)
+
+ // Start decoder
+ go func() {
+ decoder := codec.NewDecoder(p1, structs.MsgpackHandle)
+ for {
+ var msg cstructs.StreamErrWrapper
+ if err := decoder.Decode(&msg); err != nil {
+ if err == io.EOF || strings.Contains(err.Error(), "closed") {
+ return
+ }
+ errCh <- fmt.Errorf("error decoding: %v", err)
+ }
+
+ streamMsg <- &msg
+ }
+ }()
+
+ // send request
+ encoder := codec.NewEncoder(p1, structs.MsgpackHandle)
+ require.Nil(encoder.Encode(req))
+
+ timeout := time.After(2 * time.Second)
+ received := ""
+
+ OUTER:
+ for {
+ select {
+ case <-timeout:
+ t.Fatal("timeout waiting for logs")
+ case err := <-errCh:
+ t.Fatal(err)
+ case msg := <-streamMsg:
+ if msg.Error != nil {
+ t.Fatalf("Got error: %v", msg.Error.Error())
+ }
+
+ var frame sframer.StreamFrame
+ err := json.Unmarshal(msg.Payload, &frame)
+ assert.NoError(t, err)
+
+ received += string(frame.Data)
+ if strings.Contains(received, tc.expectedLog) {
+ close(doneCh)
+ require.Nil(p2.Close())
+ break OUTER
+ }
+ }
+ }
+ })
+ }
+}
+
+func TestMonitor_MonitorServer(t *testing.T) {
+ t.Parallel()
+ require := require.New(t)
+
+ // start server
+ s := TestServer(t, nil)
+ defer s.Shutdown()
+ testutil.WaitForLeader(t, s.RPC)
+
+ // No node ID to monitor the remote server
+ req := cstructs.MonitorRequest{
+ LogLevel: "debug",
+ }
+
+ handler, err := s.StreamingRpcHandler("Agent.Monitor")
+ require.Nil(err)
+
+ // create pipe
+ p1, p2 := net.Pipe()
+ defer p1.Close()
+ defer p2.Close()
+
+ errCh := make(chan error)
+ streamMsg := make(chan *cstructs.StreamErrWrapper)
+
+ go handler(p2)
+
+ // Start decoder
+ go func() {
+ decoder := codec.NewDecoder(p1, structs.MsgpackHandle)
+ for {
+ var msg cstructs.StreamErrWrapper
+ if err := decoder.Decode(&msg); err != nil {
+ if err == io.EOF || strings.Contains(err.Error(), "closed") {
+ return
+ }
+ errCh <- fmt.Errorf("error decoding: %v", err)
+ }
+
+ streamMsg <- &msg
+ }
+ }()
+
+ // send request
+ encoder := codec.NewEncoder(p1, structs.MsgpackHandle)
+ require.Nil(encoder.Encode(req))
+
+ timeout := time.After(1 * time.Second)
+ expected := "[DEBUG]"
+ received := ""
+
+ // send logs
+ go func() {
+ for {
+ s.logger.Debug("test log")
+ time.Sleep(100 * time.Millisecond)
+ }
+ }()
+
+OUTER:
+ for {
+ select {
+ case <-timeout:
+ t.Fatal("timeout waiting for logs")
+ case err := <-errCh:
+ t.Fatal(err)
+ case msg := <-streamMsg:
+ if msg.Error != nil {
+ t.Fatalf("Got error: %v", msg.Error.Error())
+ }
+
+ var frame sframer.StreamFrame
+ err := json.Unmarshal(msg.Payload, &frame)
+ assert.NoError(t, err)
+
+ received += string(frame.Data)
+ if strings.Contains(received, expected) {
+ require.Nil(p2.Close())
+ break OUTER
+ }
+ }
+ }
+}
+
+func TestMonitor_Monitor_ACL(t *testing.T) {
+ t.Parallel()
+ require := require.New(t)
+
+ // start server
+ s, root := TestACLServer(t, nil)
+ defer s.Shutdown()
+ testutil.WaitForLeader(t, s.RPC)
+
+ policyBad := mock.NamespacePolicy("other", "", []string{acl.NamespaceCapabilityReadFS})
+ tokenBad := mock.CreatePolicyAndToken(t, s.State(), 1005, "invalid", policyBad)
+
+ policyGood := mock.AgentPolicy(acl.PolicyRead)
+ tokenGood := mock.CreatePolicyAndToken(t, s.State(), 1009, "valid", policyGood)
+
+ cases := []struct {
+ Name string
+ Token string
+ ExpectedErr string
+ }{
+ {
+ Name: "bad token",
+ Token: tokenBad.SecretID,
+ ExpectedErr: structs.ErrPermissionDenied.Error(),
+ },
+ {
+ Name: "good token",
+ Token: tokenGood.SecretID,
+ ExpectedErr: "Unknown log level",
+ },
+ {
+ Name: "root token",
+ Token: root.SecretID,
+ ExpectedErr: "Unknown log level",
+ },
+ }
+
+ for _, tc := range cases {
+ t.Run(tc.Name, func(t *testing.T) {
+ req := &cstructs.MonitorRequest{
+ LogLevel: "unknown",
+ QueryOptions: structs.QueryOptions{
+ Namespace: structs.DefaultNamespace,
+ Region: "global",
+ AuthToken: tc.Token,
+ },
+ }
+
+ handler, err := s.StreamingRpcHandler("Agent.Monitor")
+ require.Nil(err)
+
+ // create pipe
+ p1, p2 := net.Pipe()
+ defer p1.Close()
+ defer p2.Close()
+
+ errCh := make(chan error)
+ streamMsg := make(chan *cstructs.StreamErrWrapper)
+
+ go handler(p2)
+
+ // Start decoder
+ go func() {
+ decoder := codec.NewDecoder(p1, structs.MsgpackHandle)
+ for {
+ var msg cstructs.StreamErrWrapper
+ if err := decoder.Decode(&msg); err != nil {
+ if err == io.EOF || strings.Contains(err.Error(), "closed") {
+ return
+ }
+ errCh <- fmt.Errorf("error decoding: %v", err)
+ }
+
+ streamMsg <- &msg
+ }
+ }()
+
+ // send request
+ encoder := codec.NewEncoder(p1, structs.MsgpackHandle)
+ require.Nil(encoder.Encode(req))
+
+ timeout := time.After(5 * time.Second)
+ OUTER:
+ for {
+ select {
+ case <-timeout:
+ t.Fatal("timeout")
+ case err := <-errCh:
+ t.Fatal(err)
+ case msg := <-streamMsg:
+ if msg.Error == nil {
+ continue
+ }
+
+ if strings.Contains(msg.Error.Error(), tc.ExpectedErr) {
+ break OUTER
+ } else {
+ t.Fatalf("Bad error: %v", msg.Error)
+ }
+ }
+ }
+ })
+ }
+}
diff --git a/nomad/client_alloc_endpoint.go b/nomad/client_alloc_endpoint.go
index 3764463ff..968e101cd 100644
--- a/nomad/client_alloc_endpoint.go
+++ b/nomad/client_alloc_endpoint.go
@@ -87,13 +87,6 @@ func (a *ClientAllocations) Signal(args *structs.AllocSignalRequest, reply *stru
}
defer metrics.MeasureSince([]string{"nomad", "client_allocations", "signal"}, time.Now())
- // Check node read permissions
- if aclObj, err := a.srv.ResolveToken(args.AuthToken); err != nil {
- return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.Namespace, acl.NamespaceCapabilityAllocLifecycle) {
- return structs.ErrPermissionDenied
- }
-
// Verify the arguments.
if args.AllocID == "" {
return errors.New("missing AllocID")
@@ -105,13 +98,16 @@ func (a *ClientAllocations) Signal(args *structs.AllocSignalRequest, reply *stru
return err
}
- alloc, err := snap.AllocByID(nil, args.AllocID)
+ alloc, err := getAlloc(snap, args.AllocID)
if err != nil {
return err
}
- if alloc == nil {
- return structs.NewErrUnknownAllocation(args.AllocID)
+ // Check namespace alloc-lifecycle permission.
+ if aclObj, err := a.srv.ResolveToken(args.AuthToken); err != nil {
+ return err
+ } else if aclObj != nil && !aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilityAllocLifecycle) {
+ return structs.ErrPermissionDenied
}
// Make sure Node is valid and new enough to support RPC
@@ -143,13 +139,6 @@ func (a *ClientAllocations) GarbageCollect(args *structs.AllocSpecificRequest, r
}
defer metrics.MeasureSince([]string{"nomad", "client_allocations", "garbage_collect"}, time.Now())
- // Check node read permissions
- if aclObj, err := a.srv.ResolveToken(args.AuthToken); err != nil {
- return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.Namespace, acl.NamespaceCapabilitySubmitJob) {
- return structs.ErrPermissionDenied
- }
-
// Verify the arguments.
if args.AllocID == "" {
return errors.New("missing AllocID")
@@ -161,13 +150,16 @@ func (a *ClientAllocations) GarbageCollect(args *structs.AllocSpecificRequest, r
return err
}
- alloc, err := snap.AllocByID(nil, args.AllocID)
+ alloc, err := getAlloc(snap, args.AllocID)
if err != nil {
return err
}
- if alloc == nil {
- return structs.NewErrUnknownAllocation(args.AllocID)
+ // Check namespace submit-job permission.
+ if aclObj, err := a.srv.ResolveToken(args.AuthToken); err != nil {
+ return err
+ } else if aclObj != nil && !aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilitySubmitJob) {
+ return structs.ErrPermissionDenied
}
// Make sure Node is valid and new enough to support RPC
@@ -199,30 +191,22 @@ func (a *ClientAllocations) Restart(args *structs.AllocRestartRequest, reply *st
}
defer metrics.MeasureSince([]string{"nomad", "client_allocations", "restart"}, time.Now())
- if aclObj, err := a.srv.ResolveToken(args.AuthToken); err != nil {
- return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.Namespace, acl.NamespaceCapabilityAllocLifecycle) {
- return structs.ErrPermissionDenied
- }
-
- // Verify the arguments.
- if args.AllocID == "" {
- return errors.New("missing AllocID")
- }
-
// Find the allocation
snap, err := a.srv.State().Snapshot()
if err != nil {
return err
}
- alloc, err := snap.AllocByID(nil, args.AllocID)
+ alloc, err := getAlloc(snap, args.AllocID)
if err != nil {
return err
}
- if alloc == nil {
- return structs.NewErrUnknownAllocation(args.AllocID)
+ // Check for namespace alloc-lifecycle permissions.
+ if aclObj, err := a.srv.ResolveToken(args.AuthToken); err != nil {
+ return err
+ } else if aclObj != nil && !aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilityAllocLifecycle) {
+ return structs.ErrPermissionDenied
}
// Make sure Node is valid and new enough to support RPC
@@ -254,31 +238,22 @@ func (a *ClientAllocations) Stats(args *cstructs.AllocStatsRequest, reply *cstru
}
defer metrics.MeasureSince([]string{"nomad", "client_allocations", "stats"}, time.Now())
- // Check node read permissions
- if aclObj, err := a.srv.ResolveToken(args.AuthToken); err != nil {
- return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.Namespace, acl.NamespaceCapabilityReadJob) {
- return structs.ErrPermissionDenied
- }
-
- // Verify the arguments.
- if args.AllocID == "" {
- return errors.New("missing AllocID")
- }
-
// Find the allocation
snap, err := a.srv.State().Snapshot()
if err != nil {
return err
}
- alloc, err := snap.AllocByID(nil, args.AllocID)
+ alloc, err := getAlloc(snap, args.AllocID)
if err != nil {
return err
}
- if alloc == nil {
- return structs.NewErrUnknownAllocation(args.AllocID)
+ // Check for namespace read-job permissions.
+ if aclObj, err := a.srv.ResolveToken(args.AuthToken); err != nil {
+ return err
+ } else if aclObj != nil && !aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilityReadJob) {
+ return structs.ErrPermissionDenied
}
// Make sure Node is valid and new enough to support RPC
@@ -319,19 +294,6 @@ func (a *ClientAllocations) exec(conn io.ReadWriteCloser) {
return
}
- // Check node read permissions
- if aclObj, err := a.srv.ResolveToken(args.AuthToken); err != nil {
- handleStreamResultError(err, nil, encoder)
- return
- } else if aclObj != nil {
- // client ultimately checks if AllocNodeExec is required
- exec := aclObj.AllowNsOp(args.QueryOptions.Namespace, acl.NamespaceCapabilityAllocExec)
- if !exec {
- handleStreamResultError(structs.ErrPermissionDenied, nil, encoder)
- return
- }
- }
-
// Verify the arguments.
if args.AllocID == "" {
handleStreamResultError(errors.New("missing AllocID"), helper.Int64ToPtr(400), encoder)
@@ -345,15 +307,26 @@ func (a *ClientAllocations) exec(conn io.ReadWriteCloser) {
return
}
- alloc, err := snap.AllocByID(nil, args.AllocID)
+ alloc, err := getAlloc(snap, args.AllocID)
+ if structs.IsErrUnknownAllocation(err) {
+ handleStreamResultError(err, helper.Int64ToPtr(404), encoder)
+ return
+ }
if err != nil {
handleStreamResultError(err, nil, encoder)
return
}
- if alloc == nil {
- handleStreamResultError(structs.NewErrUnknownAllocation(args.AllocID), helper.Int64ToPtr(404), encoder)
+
+ // Check node read permissions
+ if aclObj, err := a.srv.ResolveToken(args.AuthToken); err != nil {
+ handleStreamResultError(err, nil, encoder)
+ return
+ } else if aclObj != nil && !aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilityAllocExec) {
+ // client ultimately checks if AllocNodeExec is required
+ handleStreamResultError(structs.ErrPermissionDenied, nil, encoder)
return
}
+
nodeID := alloc.NodeID
// Make sure Node is valid and new enough to support RPC
diff --git a/nomad/client_alloc_endpoint_test.go b/nomad/client_alloc_endpoint_test.go
index 50606d7b7..6123e9ec9 100644
--- a/nomad/client_alloc_endpoint_test.go
+++ b/nomad/client_alloc_endpoint_test.go
@@ -363,7 +363,6 @@ func TestClientAllocations_GarbageCollect_Local(t *testing.T) {
func TestClientAllocations_GarbageCollect_Local_ACL(t *testing.T) {
t.Parallel()
- require := require.New(t)
// Start a server
s, root := TestACLServer(t, nil)
@@ -378,6 +377,12 @@ func TestClientAllocations_GarbageCollect_Local_ACL(t *testing.T) {
policyGood := mock.NamespacePolicy(structs.DefaultNamespace, "", []string{acl.NamespaceCapabilitySubmitJob})
tokenGood := mock.CreatePolicyAndToken(t, s.State(), 1009, "valid2", policyGood)
+ // Upsert the allocation
+ state := s.State()
+ alloc := mock.Alloc()
+ require.NoError(t, state.UpsertJob(1010, alloc.Job))
+ require.NoError(t, state.UpsertAllocs(1011, []*structs.Allocation{alloc}))
+
cases := []struct {
Name string
Token string
@@ -391,12 +396,12 @@ func TestClientAllocations_GarbageCollect_Local_ACL(t *testing.T) {
{
Name: "good token",
Token: tokenGood.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ ExpectedError: structs.ErrUnknownNodePrefix,
},
{
Name: "root token",
Token: root.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ ExpectedError: structs.ErrUnknownNodePrefix,
},
}
@@ -405,7 +410,7 @@ func TestClientAllocations_GarbageCollect_Local_ACL(t *testing.T) {
// Make the request without having a node-id
req := &structs.AllocSpecificRequest{
- AllocID: uuid.Generate(),
+ AllocID: alloc.ID,
QueryOptions: structs.QueryOptions{
AuthToken: c.Token,
Region: "global",
@@ -416,8 +421,8 @@ func TestClientAllocations_GarbageCollect_Local_ACL(t *testing.T) {
// Fetch the response
var resp structs.GenericResponse
err := msgpackrpc.CallWithCodec(codec, "ClientAllocations.GarbageCollect", req, &resp)
- require.NotNil(err)
- require.Contains(err.Error(), c.ExpectedError)
+ require.NotNil(t, err)
+ require.Contains(t, err.Error(), c.ExpectedError)
})
}
}
@@ -634,7 +639,7 @@ func TestClientAllocations_Stats_Local(t *testing.T) {
var resp cstructs.AllocStatsResponse
err := msgpackrpc.CallWithCodec(codec, "ClientAllocations.Stats", req, &resp)
require.NotNil(err)
- require.Contains(err.Error(), "missing")
+ require.EqualError(err, structs.ErrMissingAllocID.Error(), "(%T) %v")
// Fetch the response setting the node id
req.AllocID = a.ID
@@ -646,7 +651,6 @@ func TestClientAllocations_Stats_Local(t *testing.T) {
func TestClientAllocations_Stats_Local_ACL(t *testing.T) {
t.Parallel()
- require := require.New(t)
// Start a server
s, root := TestACLServer(t, nil)
@@ -661,6 +665,12 @@ func TestClientAllocations_Stats_Local_ACL(t *testing.T) {
policyGood := mock.NamespacePolicy(structs.DefaultNamespace, "", []string{acl.NamespaceCapabilityReadJob})
tokenGood := mock.CreatePolicyAndToken(t, s.State(), 1009, "valid2", policyGood)
+ // Upsert the allocation
+ state := s.State()
+ alloc := mock.Alloc()
+ require.NoError(t, state.UpsertJob(1010, alloc.Job))
+ require.NoError(t, state.UpsertAllocs(1011, []*structs.Allocation{alloc}))
+
cases := []struct {
Name string
Token string
@@ -674,12 +684,12 @@ func TestClientAllocations_Stats_Local_ACL(t *testing.T) {
{
Name: "good token",
Token: tokenGood.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ ExpectedError: structs.ErrUnknownNodePrefix,
},
{
Name: "root token",
Token: root.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ ExpectedError: structs.ErrUnknownNodePrefix,
},
}
@@ -688,7 +698,7 @@ func TestClientAllocations_Stats_Local_ACL(t *testing.T) {
// Make the request without having a node-id
req := &structs.AllocSpecificRequest{
- AllocID: uuid.Generate(),
+ AllocID: alloc.ID,
QueryOptions: structs.QueryOptions{
AuthToken: c.Token,
Region: "global",
@@ -699,8 +709,8 @@ func TestClientAllocations_Stats_Local_ACL(t *testing.T) {
// Fetch the response
var resp cstructs.AllocStatsResponse
err := msgpackrpc.CallWithCodec(codec, "ClientAllocations.Stats", req, &resp)
- require.NotNil(err)
- require.Contains(err.Error(), c.ExpectedError)
+ require.NotNil(t, err)
+ require.Contains(t, err.Error(), c.ExpectedError)
})
}
}
@@ -867,7 +877,7 @@ func TestClientAllocations_Restart_Local(t *testing.T) {
var resp structs.GenericResponse
err := msgpackrpc.CallWithCodec(codec, "ClientAllocations.Restart", req, &resp)
require.NotNil(err)
- require.Contains(err.Error(), "missing")
+ require.EqualError(err, structs.ErrMissingAllocID.Error(), "(%T) %v")
// Fetch the response setting the alloc id - This should not error because the
// alloc is running.
@@ -981,14 +991,14 @@ func TestClientAllocations_Restart_Remote(t *testing.T) {
var resp structs.GenericResponse
err := msgpackrpc.CallWithCodec(codec, "ClientAllocations.Restart", req, &resp)
require.NotNil(err)
- require.Contains(err.Error(), "missing")
+ require.EqualError(err, structs.ErrMissingAllocID.Error(), "(%T) %v")
// Fetch the response setting the alloc id - This should succeed because the
// alloc is running
req.AllocID = a.ID
var resp2 structs.GenericResponse
err = msgpackrpc.CallWithCodec(codec, "ClientAllocations.Restart", req, &resp2)
- require.Nil(err)
+ require.NoError(err)
}
func TestClientAllocations_Restart_ACL(t *testing.T) {
@@ -1005,6 +1015,12 @@ func TestClientAllocations_Restart_ACL(t *testing.T) {
policyGood := mock.NamespacePolicy(structs.DefaultNamespace, acl.PolicyWrite, nil)
tokenGood := mock.CreatePolicyAndToken(t, s.State(), 1009, "valid2", policyGood)
+ // Upsert the allocation
+ state := s.State()
+ alloc := mock.Alloc()
+ require.NoError(t, state.UpsertJob(1010, alloc.Job))
+ require.NoError(t, state.UpsertAllocs(1011, []*structs.Allocation{alloc}))
+
cases := []struct {
Name string
Token string
@@ -1018,12 +1034,12 @@ func TestClientAllocations_Restart_ACL(t *testing.T) {
{
Name: "good token",
Token: tokenGood.SecretID,
- ExpectedError: "Unknown alloc",
+ ExpectedError: "Unknown node",
},
{
Name: "root token",
Token: root.SecretID,
- ExpectedError: "Unknown alloc",
+ ExpectedError: "Unknown node",
},
}
@@ -1032,7 +1048,7 @@ func TestClientAllocations_Restart_ACL(t *testing.T) {
// Make the request without having a node-id
req := &structs.AllocRestartRequest{
- AllocID: uuid.Generate(),
+ AllocID: alloc.ID,
QueryOptions: structs.QueryOptions{
Namespace: structs.DefaultNamespace,
AuthToken: c.Token,
diff --git a/nomad/client_fs_endpoint.go b/nomad/client_fs_endpoint.go
index ef152e44a..520d3818a 100644
--- a/nomad/client_fs_endpoint.go
+++ b/nomad/client_fs_endpoint.go
@@ -108,13 +108,6 @@ func (f *FileSystem) List(args *cstructs.FsListRequest, reply *cstructs.FsListRe
}
defer metrics.MeasureSince([]string{"nomad", "file_system", "list"}, time.Now())
- // Check filesystem read permissions
- if aclObj, err := f.srv.ResolveToken(args.AuthToken); err != nil {
- return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.Namespace, acl.NamespaceCapabilityReadFS) {
- return structs.ErrPermissionDenied
- }
-
// Verify the arguments.
if args.AllocID == "" {
return errors.New("missing allocation ID")
@@ -126,12 +119,18 @@ func (f *FileSystem) List(args *cstructs.FsListRequest, reply *cstructs.FsListRe
return err
}
- alloc, err := snap.AllocByID(nil, args.AllocID)
+ alloc, err := getAlloc(snap, args.AllocID)
if err != nil {
return err
}
- if alloc == nil {
- return structs.NewErrUnknownAllocation(args.AllocID)
+
+ // Check namespace filesystem read permissions
+ allowNsOp := acl.NamespaceValidator(acl.NamespaceCapabilityReadFS)
+ aclObj, err := f.srv.ResolveToken(args.AuthToken)
+ if err != nil {
+ return err
+ } else if !allowNsOp(aclObj, alloc.Namespace) {
+ return structs.ErrPermissionDenied
}
// Make sure Node is valid and new enough to support RPC
@@ -163,13 +162,6 @@ func (f *FileSystem) Stat(args *cstructs.FsStatRequest, reply *cstructs.FsStatRe
}
defer metrics.MeasureSince([]string{"nomad", "file_system", "stat"}, time.Now())
- // Check filesystem read permissions
- if aclObj, err := f.srv.ResolveToken(args.AuthToken); err != nil {
- return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.Namespace, acl.NamespaceCapabilityReadFS) {
- return structs.ErrPermissionDenied
- }
-
// Verify the arguments.
if args.AllocID == "" {
return errors.New("missing allocation ID")
@@ -181,12 +173,16 @@ func (f *FileSystem) Stat(args *cstructs.FsStatRequest, reply *cstructs.FsStatRe
return err
}
- alloc, err := snap.AllocByID(nil, args.AllocID)
+ alloc, err := getAlloc(snap, args.AllocID)
if err != nil {
return err
}
- if alloc == nil {
- return structs.NewErrUnknownAllocation(args.AllocID)
+
+ // Check filesystem read permissions
+ if aclObj, err := f.srv.ResolveToken(args.AuthToken); err != nil {
+ return err
+ } else if aclObj != nil && !aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilityReadFS) {
+ return structs.ErrPermissionDenied
}
// Make sure Node is valid and new enough to support RPC
@@ -228,15 +224,6 @@ func (f *FileSystem) stream(conn io.ReadWriteCloser) {
return
}
- // Check node read permissions
- if aclObj, err := f.srv.ResolveToken(args.AuthToken); err != nil {
- handleStreamResultError(err, nil, encoder)
- return
- } else if aclObj != nil && !aclObj.AllowNsOp(args.Namespace, acl.NamespaceCapabilityReadFS) {
- handleStreamResultError(structs.ErrPermissionDenied, nil, encoder)
- return
- }
-
// Verify the arguments.
if args.AllocID == "" {
handleStreamResultError(errors.New("missing AllocID"), helper.Int64ToPtr(400), encoder)
@@ -250,15 +237,25 @@ func (f *FileSystem) stream(conn io.ReadWriteCloser) {
return
}
- alloc, err := snap.AllocByID(nil, args.AllocID)
+ alloc, err := getAlloc(snap, args.AllocID)
+ if structs.IsErrUnknownAllocation(err) {
+ handleStreamResultError(structs.NewErrUnknownAllocation(args.AllocID), helper.Int64ToPtr(404), encoder)
+ return
+ }
if err != nil {
handleStreamResultError(err, nil, encoder)
return
}
- if alloc == nil {
- handleStreamResultError(structs.NewErrUnknownAllocation(args.AllocID), helper.Int64ToPtr(404), encoder)
+
+ // Check namespace read-fs permissions.
+ if aclObj, err := f.srv.ResolveToken(args.AuthToken); err != nil {
+ handleStreamResultError(err, nil, encoder)
+ return
+ } else if aclObj != nil && !aclObj.AllowNsOp(alloc.Namespace, acl.NamespaceCapabilityReadFS) {
+ handleStreamResultError(structs.ErrPermissionDenied, nil, encoder)
return
}
+
nodeID := alloc.NodeID
// Make sure Node is valid and new enough to support RPC
@@ -346,22 +343,9 @@ func (f *FileSystem) logs(conn io.ReadWriteCloser) {
return
}
- // Check node read permissions
- if aclObj, err := f.srv.ResolveToken(args.AuthToken); err != nil {
- handleStreamResultError(err, nil, encoder)
- return
- } else if aclObj != nil {
- readfs := aclObj.AllowNsOp(args.QueryOptions.Namespace, acl.NamespaceCapabilityReadFS)
- logs := aclObj.AllowNsOp(args.QueryOptions.Namespace, acl.NamespaceCapabilityReadLogs)
- if !readfs && !logs {
- handleStreamResultError(structs.ErrPermissionDenied, nil, encoder)
- return
- }
- }
-
// Verify the arguments.
if args.AllocID == "" {
- handleStreamResultError(errors.New("missing AllocID"), helper.Int64ToPtr(400), encoder)
+ handleStreamResultError(structs.ErrMissingAllocID, helper.Int64ToPtr(400), encoder)
return
}
@@ -372,15 +356,28 @@ func (f *FileSystem) logs(conn io.ReadWriteCloser) {
return
}
- alloc, err := snap.AllocByID(nil, args.AllocID)
+ alloc, err := getAlloc(snap, args.AllocID)
+ if structs.IsErrUnknownAllocation(err) {
+ handleStreamResultError(structs.NewErrUnknownAllocation(args.AllocID), helper.Int64ToPtr(404), encoder)
+ return
+ }
if err != nil {
handleStreamResultError(err, nil, encoder)
return
}
- if alloc == nil {
- handleStreamResultError(structs.NewErrUnknownAllocation(args.AllocID), helper.Int64ToPtr(404), encoder)
+
+ // Check namespace read-logs *or* read-fs permissions.
+ allowNsOp := acl.NamespaceValidator(
+ acl.NamespaceCapabilityReadFS, acl.NamespaceCapabilityReadLogs)
+ aclObj, err := f.srv.ResolveToken(args.AuthToken)
+ if err != nil {
+ handleStreamResultError(err, nil, encoder)
+ return
+ } else if !allowNsOp(aclObj, alloc.Namespace) {
+ handleStreamResultError(structs.ErrPermissionDenied, nil, encoder)
return
}
+
nodeID := alloc.NodeID
// Make sure Node is valid and new enough to support RPC
diff --git a/nomad/client_fs_endpoint_test.go b/nomad/client_fs_endpoint_test.go
index 84f4cf281..2cf999aa7 100644
--- a/nomad/client_fs_endpoint_test.go
+++ b/nomad/client_fs_endpoint_test.go
@@ -107,7 +107,6 @@ func TestClientFS_List_Local(t *testing.T) {
func TestClientFS_List_ACL(t *testing.T) {
t.Parallel()
- require := require.New(t)
// Start a server
s, root := TestACLServer(t, nil)
@@ -122,6 +121,12 @@ func TestClientFS_List_ACL(t *testing.T) {
policyGood := mock.NamespacePolicy(structs.DefaultNamespace, "", []string{acl.NamespaceCapabilityReadFS})
tokenGood := mock.CreatePolicyAndToken(t, s.State(), 1009, "valid2", policyGood)
+ // Upsert the allocation
+ state := s.State()
+ alloc := mock.Alloc()
+ require.NoError(t, state.UpsertJob(1010, alloc.Job))
+ require.NoError(t, state.UpsertAllocs(1011, []*structs.Allocation{alloc}))
+
cases := []struct {
Name string
Token string
@@ -135,12 +140,12 @@ func TestClientFS_List_ACL(t *testing.T) {
{
Name: "good token",
Token: tokenGood.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ ExpectedError: structs.ErrUnknownNodePrefix,
},
{
Name: "root token",
Token: root.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ ExpectedError: structs.ErrUnknownNodePrefix,
},
}
@@ -149,7 +154,7 @@ func TestClientFS_List_ACL(t *testing.T) {
// Make the request
req := &cstructs.FsListRequest{
- AllocID: uuid.Generate(),
+ AllocID: alloc.ID,
Path: "/",
QueryOptions: structs.QueryOptions{
Region: "global",
@@ -161,8 +166,8 @@ func TestClientFS_List_ACL(t *testing.T) {
// Fetch the response
var resp cstructs.FsListResponse
err := msgpackrpc.CallWithCodec(codec, "FileSystem.List", req, &resp)
- require.NotNil(err)
- require.Contains(err.Error(), c.ExpectedError)
+ require.NotNil(t, err)
+ require.Contains(t, err.Error(), c.ExpectedError)
})
}
}
@@ -376,7 +381,6 @@ func TestClientFS_Stat_Local(t *testing.T) {
func TestClientFS_Stat_ACL(t *testing.T) {
t.Parallel()
- require := require.New(t)
// Start a server
s, root := TestACLServer(t, nil)
@@ -391,6 +395,12 @@ func TestClientFS_Stat_ACL(t *testing.T) {
policyGood := mock.NamespacePolicy(structs.DefaultNamespace, "", []string{acl.NamespaceCapabilityReadFS})
tokenGood := mock.CreatePolicyAndToken(t, s.State(), 1009, "valid2", policyGood)
+ // Upsert the allocation
+ state := s.State()
+ alloc := mock.Alloc()
+ require.NoError(t, state.UpsertJob(1010, alloc.Job))
+ require.NoError(t, state.UpsertAllocs(1011, []*structs.Allocation{alloc}))
+
cases := []struct {
Name string
Token string
@@ -404,12 +414,12 @@ func TestClientFS_Stat_ACL(t *testing.T) {
{
Name: "good token",
Token: tokenGood.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ ExpectedError: structs.ErrUnknownNodePrefix,
},
{
Name: "root token",
Token: root.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ ExpectedError: structs.ErrUnknownNodePrefix,
},
}
@@ -418,7 +428,7 @@ func TestClientFS_Stat_ACL(t *testing.T) {
// Make the request
req := &cstructs.FsStatRequest{
- AllocID: uuid.Generate(),
+ AllocID: alloc.ID,
Path: "/",
QueryOptions: structs.QueryOptions{
Region: "global",
@@ -430,8 +440,8 @@ func TestClientFS_Stat_ACL(t *testing.T) {
// Fetch the response
var resp cstructs.FsStatResponse
err := msgpackrpc.CallWithCodec(codec, "FileSystem.Stat", req, &resp)
- require.NotNil(err)
- require.Contains(err.Error(), c.ExpectedError)
+ require.NotNil(t, err)
+ require.Contains(t, err.Error(), c.ExpectedError)
})
}
}
@@ -601,7 +611,6 @@ OUTER:
func TestClientFS_Streaming_ACL(t *testing.T) {
t.Parallel()
- require := require.New(t)
// Start a server
s, root := TestACLServer(t, nil)
@@ -616,6 +625,12 @@ func TestClientFS_Streaming_ACL(t *testing.T) {
[]string{acl.NamespaceCapabilityReadLogs, acl.NamespaceCapabilityReadFS})
tokenGood := mock.CreatePolicyAndToken(t, s.State(), 1009, "valid2", policyGood)
+ // Upsert the allocation
+ state := s.State()
+ alloc := mock.Alloc()
+ require.NoError(t, state.UpsertJob(1010, alloc.Job))
+ require.NoError(t, state.UpsertAllocs(1011, []*structs.Allocation{alloc}))
+
cases := []struct {
Name string
Token string
@@ -629,12 +644,12 @@ func TestClientFS_Streaming_ACL(t *testing.T) {
{
Name: "good token",
Token: tokenGood.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ ExpectedError: structs.ErrUnknownNodePrefix,
},
{
Name: "root token",
Token: root.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ ExpectedError: structs.ErrUnknownNodePrefix,
},
}
@@ -642,7 +657,7 @@ func TestClientFS_Streaming_ACL(t *testing.T) {
t.Run(c.Name, func(t *testing.T) {
// Make the request with bad allocation id
req := &cstructs.FsStreamRequest{
- AllocID: uuid.Generate(),
+ AllocID: alloc.ID,
QueryOptions: structs.QueryOptions{
Namespace: structs.DefaultNamespace,
Region: "global",
@@ -652,7 +667,7 @@ func TestClientFS_Streaming_ACL(t *testing.T) {
// Get the handler
handler, err := s.StreamingRpcHandler("FileSystem.Stream")
- require.Nil(err)
+ require.NoError(t, err)
// Create a pipe
p1, p2 := net.Pipe()
@@ -683,7 +698,7 @@ func TestClientFS_Streaming_ACL(t *testing.T) {
// Send the request
encoder := codec.NewEncoder(p1, structs.MsgpackHandle)
- require.Nil(encoder.Encode(req))
+ require.NoError(t, encoder.Encode(req))
timeout := time.After(5 * time.Second)
@@ -1423,7 +1438,6 @@ OUTER:
func TestClientFS_Logs_ACL(t *testing.T) {
t.Parallel()
- require := require.New(t)
// Start a server
s, root := TestACLServer(t, nil)
@@ -1438,6 +1452,12 @@ func TestClientFS_Logs_ACL(t *testing.T) {
[]string{acl.NamespaceCapabilityReadLogs, acl.NamespaceCapabilityReadFS})
tokenGood := mock.CreatePolicyAndToken(t, s.State(), 1009, "valid2", policyGood)
+ // Upsert the allocation
+ state := s.State()
+ alloc := mock.Alloc()
+ require.NoError(t, state.UpsertJob(1010, alloc.Job))
+ require.NoError(t, state.UpsertAllocs(1011, []*structs.Allocation{alloc}))
+
cases := []struct {
Name string
Token string
@@ -1451,12 +1471,12 @@ func TestClientFS_Logs_ACL(t *testing.T) {
{
Name: "good token",
Token: tokenGood.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ ExpectedError: structs.ErrUnknownNodePrefix,
},
{
Name: "root token",
Token: root.SecretID,
- ExpectedError: structs.ErrUnknownAllocationPrefix,
+ ExpectedError: structs.ErrUnknownNodePrefix,
},
}
@@ -1464,7 +1484,7 @@ func TestClientFS_Logs_ACL(t *testing.T) {
t.Run(c.Name, func(t *testing.T) {
// Make the request with bad allocation id
req := &cstructs.FsLogsRequest{
- AllocID: uuid.Generate(),
+ AllocID: alloc.ID,
QueryOptions: structs.QueryOptions{
Namespace: structs.DefaultNamespace,
Region: "global",
@@ -1474,7 +1494,7 @@ func TestClientFS_Logs_ACL(t *testing.T) {
// Get the handler
handler, err := s.StreamingRpcHandler("FileSystem.Logs")
- require.Nil(err)
+ require.NoError(t, err)
// Create a pipe
p1, p2 := net.Pipe()
@@ -1505,7 +1525,7 @@ func TestClientFS_Logs_ACL(t *testing.T) {
// Send the request
encoder := codec.NewEncoder(p1, structs.MsgpackHandle)
- require.Nil(encoder.Encode(req))
+ require.NoError(t, encoder.Encode(req))
timeout := time.After(5 * time.Second)
diff --git a/nomad/client_rpc_test.go b/nomad/client_rpc_test.go
index 33ca87baa..ace088b1f 100644
--- a/nomad/client_rpc_test.go
+++ b/nomad/client_rpc_test.go
@@ -2,6 +2,7 @@ package nomad
import (
"net"
+ "strings"
"testing"
"github.com/hashicorp/nomad/client"
@@ -254,7 +255,11 @@ func TestServerWithNodeConn_NoPathAndErr(t *testing.T) {
srv, err := s1.serverWithNodeConn(uuid.Generate(), s1.Region())
require.Nil(srv)
require.NotNil(err)
- require.Contains(err.Error(), "failed querying")
+
+ // the exact error seems to be dependent on timing and raft protocol version
+ if !strings.Contains(err.Error(), "failed querying") && !strings.Contains(err.Error(), "No path to node") {
+ require.Contains(err.Error(), "failed querying")
+ }
}
func TestNodeStreamingRpc_badEndpoint(t *testing.T) {
diff --git a/nomad/config.go b/nomad/config.go
index eab6267ff..053408eca 100644
--- a/nomad/config.go
+++ b/nomad/config.go
@@ -76,7 +76,7 @@ type Config struct {
LogOutput io.Writer
// Logger is the logger used by the server.
- Logger log.Logger
+ Logger log.InterceptLogger
// ProtocolVersion is the protocol version to speak. This must be between
// ProtocolVersionMin and ProtocolVersionMax.
@@ -398,8 +398,7 @@ func DefaultConfig() *Config {
// Disable shutdown on removal
c.RaftConfig.ShutdownOnRemove = false
- // Enable interoperability with new raft APIs, requires all servers
- // to be on raft v1 or higher.
+ // Default to Raft v2, update to v3 to enable new Raft and autopilot features.
c.RaftConfig.ProtocolVersion = 2
return c
diff --git a/nomad/deployment_endpoint.go b/nomad/deployment_endpoint.go
index 27bc10591..105290e88 100644
--- a/nomad/deployment_endpoint.go
+++ b/nomad/deployment_endpoint.go
@@ -28,9 +28,11 @@ func (d *Deployment) GetDeployment(args *structs.DeploymentSpecificRequest,
defer metrics.MeasureSince([]string{"nomad", "deployment", "get_deployment"}, time.Now())
// Check namespace read-job permissions
- if aclObj, err := d.srv.ResolveToken(args.AuthToken); err != nil {
+ allowNsOp := acl.NamespaceValidator(acl.NamespaceCapabilityReadJob)
+ aclObj, err := d.srv.ResolveToken(args.AuthToken)
+ if err != nil {
return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.RequestNamespace(), acl.NamespaceCapabilityReadJob) {
+ } else if !allowNsOp(aclObj, args.RequestNamespace()) {
return structs.ErrPermissionDenied
}
@@ -53,6 +55,11 @@ func (d *Deployment) GetDeployment(args *structs.DeploymentSpecificRequest,
// Setup the output
reply.Deployment = out
if out != nil {
+ // Re-check namespace in case it differs from request.
+ if !allowNsOp(aclObj, out.Namespace) {
+ return structs.NewErrUnknownAllocation(args.DeploymentID)
+ }
+
reply.Index = out.ModifyIndex
} else {
// Use the last index that affected the deployments table
@@ -77,13 +84,6 @@ func (d *Deployment) Fail(args *structs.DeploymentFailRequest, reply *structs.De
}
defer metrics.MeasureSince([]string{"nomad", "deployment", "fail"}, time.Now())
- // Check namespace submit-job permissions
- if aclObj, err := d.srv.ResolveToken(args.AuthToken); err != nil {
- return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.RequestNamespace(), acl.NamespaceCapabilitySubmitJob) {
- return structs.ErrPermissionDenied
- }
-
// Validate the arguments
if args.DeploymentID == "" {
return fmt.Errorf("missing deployment ID")
@@ -104,6 +104,13 @@ func (d *Deployment) Fail(args *structs.DeploymentFailRequest, reply *structs.De
return fmt.Errorf("deployment not found")
}
+ // Check namespace submit-job permissions
+ if aclObj, err := d.srv.ResolveToken(args.AuthToken); err != nil {
+ return err
+ } else if aclObj != nil && !aclObj.AllowNsOp(deploy.Namespace, acl.NamespaceCapabilitySubmitJob) {
+ return structs.ErrPermissionDenied
+ }
+
if !deploy.Active() {
return fmt.Errorf("can't fail terminal deployment")
}
@@ -119,13 +126,6 @@ func (d *Deployment) Pause(args *structs.DeploymentPauseRequest, reply *structs.
}
defer metrics.MeasureSince([]string{"nomad", "deployment", "pause"}, time.Now())
- // Check namespace submit-job permissions
- if aclObj, err := d.srv.ResolveToken(args.AuthToken); err != nil {
- return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.RequestNamespace(), acl.NamespaceCapabilitySubmitJob) {
- return structs.ErrPermissionDenied
- }
-
// Validate the arguments
if args.DeploymentID == "" {
return fmt.Errorf("missing deployment ID")
@@ -146,6 +146,13 @@ func (d *Deployment) Pause(args *structs.DeploymentPauseRequest, reply *structs.
return fmt.Errorf("deployment not found")
}
+ // Check namespace submit-job permissions
+ if aclObj, err := d.srv.ResolveToken(args.AuthToken); err != nil {
+ return err
+ } else if aclObj != nil && !aclObj.AllowNsOp(deploy.Namespace, acl.NamespaceCapabilitySubmitJob) {
+ return structs.ErrPermissionDenied
+ }
+
if !deploy.Active() {
if args.Pause {
return fmt.Errorf("can't pause terminal deployment")
@@ -165,13 +172,6 @@ func (d *Deployment) Promote(args *structs.DeploymentPromoteRequest, reply *stru
}
defer metrics.MeasureSince([]string{"nomad", "deployment", "promote"}, time.Now())
- // Check namespace submit-job permissions
- if aclObj, err := d.srv.ResolveToken(args.AuthToken); err != nil {
- return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.RequestNamespace(), acl.NamespaceCapabilitySubmitJob) {
- return structs.ErrPermissionDenied
- }
-
// Validate the arguments
if args.DeploymentID == "" {
return fmt.Errorf("missing deployment ID")
@@ -192,6 +192,13 @@ func (d *Deployment) Promote(args *structs.DeploymentPromoteRequest, reply *stru
return fmt.Errorf("deployment not found")
}
+ // Check namespace submit-job permissions
+ if aclObj, err := d.srv.ResolveToken(args.AuthToken); err != nil {
+ return err
+ } else if aclObj != nil && !aclObj.AllowNsOp(deploy.Namespace, acl.NamespaceCapabilitySubmitJob) {
+ return structs.ErrPermissionDenied
+ }
+
if !deploy.Active() {
return fmt.Errorf("can't promote terminal deployment")
}
@@ -208,13 +215,6 @@ func (d *Deployment) SetAllocHealth(args *structs.DeploymentAllocHealthRequest,
}
defer metrics.MeasureSince([]string{"nomad", "deployment", "set_alloc_health"}, time.Now())
- // Check namespace submit-job permissions
- if aclObj, err := d.srv.ResolveToken(args.AuthToken); err != nil {
- return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.RequestNamespace(), acl.NamespaceCapabilitySubmitJob) {
- return structs.ErrPermissionDenied
- }
-
// Validate the arguments
if args.DeploymentID == "" {
return fmt.Errorf("missing deployment ID")
@@ -239,6 +239,13 @@ func (d *Deployment) SetAllocHealth(args *structs.DeploymentAllocHealthRequest,
return fmt.Errorf("deployment not found")
}
+ // Check namespace submit-job permissions
+ if aclObj, err := d.srv.ResolveToken(args.AuthToken); err != nil {
+ return err
+ } else if aclObj != nil && !aclObj.AllowNsOp(deploy.Namespace, acl.NamespaceCapabilitySubmitJob) {
+ return structs.ErrPermissionDenied
+ }
+
if !deploy.Active() {
return fmt.Errorf("can't set health of allocations for a terminal deployment")
}
@@ -254,7 +261,8 @@ func (d *Deployment) List(args *structs.DeploymentListRequest, reply *structs.De
}
defer metrics.MeasureSince([]string{"nomad", "deployment", "list"}, time.Now())
- // Check namespace read-job permissions
+ // Check namespace read-job permissions against request namespace since
+ // results are filtered by request namespace.
if aclObj, err := d.srv.ResolveToken(args.AuthToken); err != nil {
return err
} else if aclObj != nil && !aclObj.AllowNsOp(args.RequestNamespace(), acl.NamespaceCapabilityReadJob) {
@@ -310,10 +318,14 @@ func (d *Deployment) Allocations(args *structs.DeploymentSpecificRequest, reply
}
defer metrics.MeasureSince([]string{"nomad", "deployment", "allocations"}, time.Now())
- // Check namespace read-job permissions
- if aclObj, err := d.srv.ResolveToken(args.AuthToken); err != nil {
+ // Check namespace read-job permissions against the request namespace.
+ // Must re-check against the alloc namespace when they return to ensure
+ // there's no namespace mismatch.
+ allowNsOp := acl.NamespaceValidator(acl.NamespaceCapabilityReadJob)
+ aclObj, err := d.srv.ResolveToken(args.AuthToken)
+ if err != nil {
return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.RequestNamespace(), acl.NamespaceCapabilityReadJob) {
+ } else if !allowNsOp(aclObj, args.RequestNamespace()) {
return structs.ErrPermissionDenied
}
@@ -328,6 +340,15 @@ func (d *Deployment) Allocations(args *structs.DeploymentSpecificRequest, reply
return err
}
+ // Deployments do not span namespaces so just check the
+ // first allocs namespace.
+ if len(allocs) > 0 {
+ ns := allocs[0].Namespace
+ if ns != args.RequestNamespace() && !allowNsOp(aclObj, ns) {
+ return structs.ErrPermissionDenied
+ }
+ }
+
stubs := make([]*structs.AllocListStub, 0, len(allocs))
for _, alloc := range allocs {
stubs = append(stubs, alloc.Stub())
diff --git a/nomad/eval_broker_test.go b/nomad/eval_broker_test.go
index 9777e5abd..eb2408231 100644
--- a/nomad/eval_broker_test.go
+++ b/nomad/eval_broker_test.go
@@ -1,6 +1,8 @@
package nomad
import (
+ "encoding/json"
+ "errors"
"fmt"
"testing"
"time"
@@ -730,24 +732,29 @@ func TestEvalBroker_Dequeue_Empty_Timeout(t *testing.T) {
t.Parallel()
b := testBroker(t, 0)
b.SetEnabled(true)
- doneCh := make(chan struct{}, 1)
+ errCh := make(chan error)
go func() {
+ defer close(errCh)
out, _, err := b.Dequeue(defaultSched, 0)
if err != nil {
- t.Fatalf("err: %v", err)
+ errCh <- err
+ return
}
if out == nil {
- t.Fatal("Expect an eval")
+ errCh <- errors.New("expected a non-nil value")
+ return
}
- doneCh <- struct{}{}
}()
// Sleep for a little bit
select {
case <-time.After(5 * time.Millisecond):
- case <-doneCh:
- t.Fatalf("Dequeue(0) should block")
+ case err := <-errCh:
+ if err != nil {
+ t.Fatalf("error from dequeue goroutine: %s", err)
+ }
+ t.Fatalf("Dequeue(0) should block, not finish")
}
// Enqueue to unblock the dequeue.
@@ -755,8 +762,10 @@ func TestEvalBroker_Dequeue_Empty_Timeout(t *testing.T) {
b.Enqueue(eval)
select {
- case <-doneCh:
- return
+ case err := <-errCh:
+ if err != nil {
+ t.Fatalf("error from dequeue goroutine: %s", err)
+ }
case <-time.After(5 * time.Millisecond):
t.Fatal("timeout: Dequeue(0) should return after enqueue")
}
@@ -867,22 +876,35 @@ func TestEvalBroker_Dequeue_Blocked(t *testing.T) {
b.SetEnabled(true)
// Start with a blocked dequeue
- outCh := make(chan *structs.Evaluation, 1)
+ outCh := make(chan *structs.Evaluation)
+ errCh := make(chan error)
go func() {
+ defer close(errCh)
+ defer close(outCh)
start := time.Now()
out, _, err := b.Dequeue(defaultSched, time.Second)
- end := time.Now()
- outCh <- out
if err != nil {
- t.Fatalf("err: %v", err)
+ errCh <- err
+ return
}
+ end := time.Now()
if d := end.Sub(start); d < 5*time.Millisecond {
- t.Fatalf("bad: %v", d)
+ errCh <- fmt.Errorf("test broker dequeue duration too fast: %v", d)
+ return
}
+ outCh <- out
}()
- // Wait for a bit
- time.Sleep(5 * time.Millisecond)
+ // Wait for a bit, or t.Fatal if an error has already happened in
+ // the goroutine
+ select {
+ case <-time.After(5 * time.Millisecond):
+ // no errors yet, soldier on
+ case err := <-errCh:
+ if err != nil {
+ t.Fatalf("error from anonymous goroutine before enqueue: %v", err)
+ }
+ }
// Enqueue
eval := mock.Eval()
@@ -892,10 +914,15 @@ func TestEvalBroker_Dequeue_Blocked(t *testing.T) {
select {
case out := <-outCh:
if out != eval {
- t.Fatalf("bad: %v", out)
+ prettyExp, _ := json.MarshalIndent(eval, "", "\t")
+ prettyGot, _ := json.MarshalIndent(out, "", "\t")
+ t.Fatalf("dequeue result expected:\n%s\ngot:\n%s",
+ string(prettyExp), string(prettyGot))
}
+ case err := <-errCh:
+ t.Fatalf("error from anonymous goroutine after enqueue: %v", err)
case <-time.After(time.Second):
- t.Fatalf("timeout")
+ t.Fatalf("timeout waiting for dequeue result")
}
}
@@ -999,13 +1026,16 @@ func TestEvalBroker_PauseResumeNackTimeout(t *testing.T) {
// Pause in 20 milliseconds
time.Sleep(20 * time.Millisecond)
if err := b.PauseNackTimeout(out.ID, token); err != nil {
- t.Fatalf("err: %v", err)
+ t.Fatalf("pause nack timeout error: %v", err)
}
+ errCh := make(chan error)
go func() {
+ defer close(errCh)
time.Sleep(20 * time.Millisecond)
if err := b.ResumeNackTimeout(out.ID, token); err != nil {
- t.Fatalf("err: %v", err)
+ errCh <- err
+ return
}
}()
@@ -1013,15 +1043,24 @@ func TestEvalBroker_PauseResumeNackTimeout(t *testing.T) {
out, _, err = b.Dequeue(defaultSched, time.Second)
end := time.Now()
if err != nil {
- t.Fatalf("err: %v", err)
+ t.Fatalf("dequeue error: %v", err)
}
if out != eval {
- t.Fatalf("bad: %v", out)
+ prettyExp, _ := json.MarshalIndent(eval, "", "\t")
+ prettyGot, _ := json.MarshalIndent(out, "", "\t")
+ t.Fatalf("dequeue result expected:\n%s\ngot:\n%s",
+ string(prettyExp), string(prettyGot))
}
// Check the nack timer
if diff := end.Sub(start); diff < 95*time.Millisecond {
- t.Fatalf("bad: %#v", diff)
+ t.Fatalf("deqeue happened too fast: %#v", diff)
+ }
+
+ // check the result of ResumeNackTimeout
+ err = <-errCh
+ if err != nil {
+ t.Fatalf("resume nack timeout error:%s", err)
}
}
@@ -1252,22 +1291,35 @@ func TestEvalBroker_EnqueueAll_Dequeue_Fair(t *testing.T) {
b.SetEnabled(true)
// Start with a blocked dequeue
- outCh := make(chan *structs.Evaluation, 1)
+ outCh := make(chan *structs.Evaluation)
+ errCh := make(chan error)
go func() {
+ defer close(errCh)
+ defer close(outCh)
start := time.Now()
out, _, err := b.Dequeue(defaultSched, time.Second)
- end := time.Now()
- outCh <- out
if err != nil {
- t.Fatalf("err: %v", err)
+ errCh <- err
+ return
}
+ end := time.Now()
if d := end.Sub(start); d < 5*time.Millisecond {
- t.Fatalf("bad: %v", d)
+ errCh <- fmt.Errorf("test broker dequeue duration too fast: %v", d)
+ return
}
+ outCh <- out
}()
- // Wait for a bit
- time.Sleep(5 * time.Millisecond)
+ // Wait for a bit, or t.Fatal if an error has already happened in
+ // the goroutine
+ select {
+ case <-time.After(5 * time.Millisecond):
+ // no errors yet, soldier on
+ case err := <-errCh:
+ if err != nil {
+ t.Fatalf("error from anonymous goroutine before enqueue: %v", err)
+ }
+ }
// Enqueue
evals := make(map[*structs.Evaluation]string, 8)
@@ -1284,10 +1336,14 @@ func TestEvalBroker_EnqueueAll_Dequeue_Fair(t *testing.T) {
select {
case out := <-outCh:
if out.Priority != expectedPriority {
- t.Fatalf("bad: %v", out)
+ pretty, _ := json.MarshalIndent(out, "", "\t")
+ t.Logf("bad priority on *structs.Evaluation: %s", string(pretty))
+ t.Fatalf("priority wanted:%d, priority got:%d", expectedPriority, out.Priority)
}
+ case err := <-errCh:
+ t.Fatalf("error from anonymous goroutine after enqueue: %v", err)
case <-time.After(time.Second):
- t.Fatalf("timeout")
+ t.Fatalf("timeout waiting for dequeue result")
}
}
diff --git a/nomad/eval_endpoint.go b/nomad/eval_endpoint.go
index fa7b23dcd..b5f649bb0 100644
--- a/nomad/eval_endpoint.go
+++ b/nomad/eval_endpoint.go
@@ -34,10 +34,12 @@ func (e *Eval) GetEval(args *structs.EvalSpecificRequest,
}
defer metrics.MeasureSince([]string{"nomad", "eval", "get_eval"}, time.Now())
- // Check for read-job permissions
- if aclObj, err := e.srv.ResolveToken(args.AuthToken); err != nil {
+ // Check for read-job permissions before performing blocking query.
+ allowNsOp := acl.NamespaceValidator(acl.NamespaceCapabilityReadJob)
+ aclObj, err := e.srv.ResolveToken(args.AuthToken)
+ if err != nil {
return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.RequestNamespace(), acl.NamespaceCapabilityReadJob) {
+ } else if !allowNsOp(aclObj, args.RequestNamespace()) {
return structs.ErrPermissionDenied
}
@@ -55,6 +57,11 @@ func (e *Eval) GetEval(args *structs.EvalSpecificRequest,
// Setup the output
reply.Eval = out
if out != nil {
+ // Re-check namespace in case it differs from request.
+ if !allowNsOp(aclObj, out.Namespace) {
+ return structs.ErrPermissionDenied
+ }
+
reply.Index = out.ModifyIndex
} else {
// Use the last index that affected the nodes table
@@ -389,9 +396,11 @@ func (e *Eval) Allocations(args *structs.EvalSpecificRequest,
defer metrics.MeasureSince([]string{"nomad", "eval", "allocations"}, time.Now())
// Check for read-job permissions
- if aclObj, err := e.srv.ResolveToken(args.AuthToken); err != nil {
+ allowNsOp := acl.NamespaceValidator(acl.NamespaceCapabilityReadJob)
+ aclObj, err := e.srv.ResolveToken(args.AuthToken)
+ if err != nil {
return err
- } else if aclObj != nil && !aclObj.AllowNsOp(args.RequestNamespace(), acl.NamespaceCapabilityReadJob) {
+ } else if !allowNsOp(aclObj, args.RequestNamespace()) {
return structs.ErrPermissionDenied
}
@@ -408,6 +417,13 @@ func (e *Eval) Allocations(args *structs.EvalSpecificRequest,
// Convert to a stub
if len(allocs) > 0 {
+ // Evaluations do not span namespaces so just check the
+ // first allocs namespace.
+ ns := allocs[0].Namespace
+ if ns != args.RequestNamespace() && !allowNsOp(aclObj, ns) {
+ return structs.ErrPermissionDenied
+ }
+
reply.Allocations = make([]*structs.AllocListStub, 0, len(allocs))
for _, alloc := range allocs {
reply.Allocations = append(reply.Allocations, alloc.Stub())
diff --git a/nomad/heartbeat_test.go b/nomad/heartbeat_test.go
index 0e9e56ffb..c27a377d8 100644
--- a/nomad/heartbeat_test.go
+++ b/nomad/heartbeat_test.go
@@ -221,28 +221,7 @@ func TestHeartbeat_Server_HeartbeatTTL_Failover(t *testing.T) {
servers := []*Server{s1, s2, s3}
TestJoin(t, s1, s2, s3)
- testutil.WaitForResult(func() (bool, error) {
- peers, _ := s1.numPeers()
- return peers == 3, nil
- }, func(err error) {
- t.Fatalf("should have 3 peers")
- })
-
- // Find the leader
- var leader *Server
- for _, s := range servers {
- // Check that s.heartbeatTimers is empty
- if len(s.heartbeatTimers) != 0 {
- t.Fatalf("should have no heartbeatTimers")
- }
- // Find the leader too
- if s.IsLeader() {
- leader = s
- }
- }
- if leader == nil {
- t.Fatalf("Should have a leader")
- }
+ leader := waitForStableLeadership(t, servers)
codec := rpcClient(t, leader)
// Create the register request
diff --git a/nomad/job_endpoint.go b/nomad/job_endpoint.go
index 573bbb453..4e368386a 100644
--- a/nomad/job_endpoint.go
+++ b/nomad/job_endpoint.go
@@ -33,13 +33,6 @@ const (
)
var (
- // vaultConstraint is the implicit constraint added to jobs requesting a
- // Vault token
- vaultConstraint = &structs.Constraint{
- LTarget: "${attr.vault.version}",
- RTarget: ">= 0.6.1",
- Operand: structs.ConstraintVersion,
- }
// allowRescheduleTransition is the transition that allows failed
// allocations to be force rescheduled. We create a one off
@@ -88,6 +81,11 @@ func (j *Job) Register(args *structs.JobRegisterRequest, reply *structs.JobRegis
return fmt.Errorf("missing job for registration")
}
+ // defensive check; http layer and RPC requester should ensure namespaces are set consistently
+ if args.RequestNamespace() != args.Job.Namespace {
+ return fmt.Errorf("mismatched request namespace in request: %q, %q", args.RequestNamespace(), args.Job.Namespace)
+ }
+
// Run admission controllers
job, warnings, err := j.admissionControllers(args.Job)
if err != nil {
@@ -105,6 +103,7 @@ func (j *Job) Register(args *structs.JobRegisterRequest, reply *structs.JobRegis
if !aclObj.AllowNsOp(args.RequestNamespace(), acl.NamespaceCapabilitySubmitJob) {
return structs.ErrPermissionDenied
}
+
// Validate Volume Permsissions
for _, tg := range args.Job.TaskGroups {
for _, vol := range tg.Volumes {
@@ -112,21 +111,26 @@ func (j *Job) Register(args *structs.JobRegisterRequest, reply *structs.JobRegis
return structs.ErrPermissionDenied
}
- cfg, err := structs.ParseHostVolumeConfig(vol.Config)
- if err != nil {
- return structs.ErrPermissionDenied
- }
-
// If a volume is readonly, then we allow access if the user has ReadOnly
// or ReadWrite access to the volume. Otherwise we only allow access if
// they have ReadWrite access.
if vol.ReadOnly {
- if !aclObj.AllowHostVolumeOperation(cfg.Source, acl.HostVolumeCapabilityMountReadOnly) &&
- !aclObj.AllowHostVolumeOperation(cfg.Source, acl.HostVolumeCapabilityMountReadWrite) {
+ if !aclObj.AllowHostVolumeOperation(vol.Source, acl.HostVolumeCapabilityMountReadOnly) &&
+ !aclObj.AllowHostVolumeOperation(vol.Source, acl.HostVolumeCapabilityMountReadWrite) {
return structs.ErrPermissionDenied
}
} else {
- if !aclObj.AllowHostVolumeOperation(cfg.Source, acl.HostVolumeCapabilityMountReadWrite) {
+ if !aclObj.AllowHostVolumeOperation(vol.Source, acl.HostVolumeCapabilityMountReadWrite) {
+ return structs.ErrPermissionDenied
+ }
+ }
+ }
+
+ for _, t := range tg.Tasks {
+ for _, vm := range t.VolumeMounts {
+ vol := tg.Volumes[vm.Volume]
+ if vm.PropagationMode == structs.VolumeMountPropagationBidirectional &&
+ !aclObj.AllowHostVolumeOperation(vol.Source, acl.HostVolumeCapabilityMountReadWrite) {
return structs.ErrPermissionDenied
}
}
@@ -348,6 +352,11 @@ func (j *Job) Summary(args *structs.JobSummaryRequest,
func (j *Job) Validate(args *structs.JobValidateRequest, reply *structs.JobValidateResponse) error {
defer metrics.MeasureSince([]string{"nomad", "job", "validate"}, time.Now())
+ // defensive check; http layer and RPC requester should ensure namespaces are set consistently
+ if args.RequestNamespace() != args.Job.Namespace {
+ return fmt.Errorf("mismatched request namespace in request: %q, %q", args.RequestNamespace(), args.Job.Namespace)
+ }
+
job, mutateWarnings, err := j.admissionMutators(args.Job)
if err != nil {
return err
@@ -942,6 +951,12 @@ func (j *Job) Allocations(args *structs.JobSpecificRequest,
return structs.ErrPermissionDenied
}
+ // Ensure JobID is set otherwise everything works and never returns
+ // allocations which can hide bugs in request code.
+ if args.JobID == "" {
+ return fmt.Errorf("missing job ID")
+ }
+
// Setup the blocking query
opts := blockingOptions{
queryOpts: &args.QueryOptions,
diff --git a/nomad/job_endpoint_hook_connect.go b/nomad/job_endpoint_hook_connect.go
index 2ee10a1ab..9a670c5d8 100644
--- a/nomad/job_endpoint_hook_connect.go
+++ b/nomad/job_endpoint_hook_connect.go
@@ -23,7 +23,7 @@ var (
connectDriverConfig = map[string]interface{}{
"image": "${meta.connect.sidecar_image}",
"args": []interface{}{
- "-c", "${NOMAD_TASK_DIR}/bootstrap.json",
+ "-c", structs.EnvoyBootstrapPath,
"-l", "${meta.connect.log_level}",
},
}
@@ -35,8 +35,8 @@ var (
connectVersionConstraint = func() *structs.Constraint {
return &structs.Constraint{
LTarget: "${attr.consul.version}",
- RTarget: ">= 1.6.0beta1",
- Operand: "version",
+ RTarget: ">= 1.6.0-beta1",
+ Operand: structs.ConstraintSemver,
}
}
)
@@ -50,6 +50,15 @@ func (jobConnectHook) Name() string {
func (jobConnectHook) Mutate(job *structs.Job) (_ *structs.Job, warnings []error, err error) {
for _, g := range job.TaskGroups {
+ // TG isn't validated yet, but validation
+ // may depend on mutation results.
+ // Do basic validation here and skip mutation,
+ // so Validate can return a meaningful error
+ // messages
+ if len(g.Networks) == 0 {
+ continue
+ }
+
if err := groupConnectHook(g); err != nil {
return nil, nil, err
}
@@ -133,7 +142,6 @@ func groupConnectHook(g *structs.TaskGroup) error {
if !found {
g.Networks[0].DynamicPorts = append(g.Networks[0].DynamicPorts, port)
}
- return nil
}
}
return nil
diff --git a/nomad/job_endpoint_hook_connect_test.go b/nomad/job_endpoint_hook_connect_test.go
index 37171e6cd..c8a3cb2c1 100644
--- a/nomad/job_endpoint_hook_connect_test.go
+++ b/nomad/job_endpoint_hook_connect_test.go
@@ -63,18 +63,30 @@ func Test_groupConnectHook(t *testing.T) {
SidecarService: &structs.ConsulSidecarService{},
},
},
+ {
+ Name: "admin",
+ PortLabel: "9090",
+ Connect: &structs.ConsulConnect{
+ SidecarService: &structs.ConsulSidecarService{},
+ },
+ },
},
}
tgOut := tgIn.Copy()
tgOut.Tasks = []*structs.Task{
newConnectTask(tgOut.Services[0]),
+ newConnectTask(tgOut.Services[1]),
}
tgOut.Networks[0].DynamicPorts = []structs.Port{
{
Label: fmt.Sprintf("%s-%s", structs.ConnectProxyPrefix, "backend"),
To: -1,
},
+ {
+ Label: fmt.Sprintf("%s-%s", structs.ConnectProxyPrefix, "admin"),
+ To: -1,
+ },
}
require.NoError(t, groupConnectHook(tgIn))
diff --git a/nomad/job_endpoint_hooks.go b/nomad/job_endpoint_hooks.go
index 5153e1b27..443dee429 100644
--- a/nomad/job_endpoint_hooks.go
+++ b/nomad/job_endpoint_hooks.go
@@ -8,6 +8,23 @@ import (
"github.com/hashicorp/nomad/nomad/structs"
)
+const (
+ // vaultConstraintLTarget is the lefthand side of the Vault constraint
+ // injected when Vault policies are used. If an existing constraint
+ // with this target exists it overrides the injected constraint.
+ vaultConstraintLTarget = "${attr.vault.version}"
+)
+
+var (
+ // vaultConstraint is the implicit constraint added to jobs requesting a
+ // Vault token
+ vaultConstraint = &structs.Constraint{
+ LTarget: vaultConstraintLTarget,
+ RTarget: ">= 0.6.1",
+ Operand: structs.ConstraintSemver,
+ }
+)
+
type admissionController interface {
Name() string
}
@@ -53,21 +70,23 @@ func (j *Job) admissionMutators(job *structs.Job) (_ *structs.Job, warnings []er
// admissionValidators returns a slice of validation warnings and a multierror
// of validation failures.
-func (j *Job) admissionValidators(origJob *structs.Job) (warnings []error, err error) {
+func (j *Job) admissionValidators(origJob *structs.Job) ([]error, error) {
// ensure job is not mutated
job := origJob.Copy()
- var w []error
- errs := new(multierror.Error)
+ var warnings []error
+ var errs error
+
for _, validator := range j.validators {
- w, err = validator.Validate(job)
+ w, err := validator.Validate(job)
j.logger.Trace("job validate results", "validator", validator.Name(), "warnings", w, "error", err)
if err != nil {
- multierror.Append(errs, err)
+ errs = multierror.Append(errs, err)
}
warnings = append(warnings, w...)
}
- return warnings, err
+
+ return warnings, errs
}
@@ -110,7 +129,7 @@ func (jobImpliedConstraints) Mutate(j *structs.Job) (*structs.Job, []error, erro
return j, nil, nil
}
- // Add Vault constraints
+ // Add Vault constraints if no Vault constraint exists
for _, tg := range j.TaskGroups {
_, ok := policies[tg.Name]
if !ok {
@@ -120,7 +139,7 @@ func (jobImpliedConstraints) Mutate(j *structs.Job) (*structs.Job, []error, erro
found := false
for _, c := range tg.Constraints {
- if c.Equals(vaultConstraint) {
+ if c.LTarget == vaultConstraintLTarget {
found = true
break
}
diff --git a/nomad/job_endpoint_test.go b/nomad/job_endpoint_test.go
index 60afb6d1f..b8370a56c 100644
--- a/nomad/job_endpoint_test.go
+++ b/nomad/job_endpoint_test.go
@@ -1,6 +1,7 @@
package nomad
import (
+ "errors"
"fmt"
"reflect"
"strings"
@@ -285,10 +286,8 @@ func TestJobEndpoint_Register_ACL(t *testing.T) {
tg := j.TaskGroups[0]
tg.Volumes = map[string]*structs.VolumeRequest{
"ca-certs": {
- Type: structs.VolumeTypeHost,
- Config: map[string]interface{}{
- "source": "prod-ca-certs",
- },
+ Type: structs.VolumeTypeHost,
+ Source: "prod-ca-certs",
ReadOnly: readonlyVolume,
},
}
@@ -365,8 +364,11 @@ func TestJobEndpoint_Register_ACL(t *testing.T) {
t.Run(tt.Name, func(t *testing.T) {
codec := rpcClient(t, s1)
req := &structs.JobRegisterRequest{
- Job: tt.Job,
- WriteRequest: structs.WriteRequest{Region: "global"},
+ Job: tt.Job,
+ WriteRequest: structs.WriteRequest{
+ Region: "global",
+ Namespace: tt.Job.Namespace,
+ },
}
req.AuthToken = tt.Token
@@ -409,8 +411,11 @@ func TestJobEndpoint_Register_InvalidNamespace(t *testing.T) {
job := mock.Job()
job.Namespace = "foo"
req := &structs.JobRegisterRequest{
- Job: job,
- WriteRequest: structs.WriteRequest{Region: "global"},
+ Job: job,
+ WriteRequest: structs.WriteRequest{
+ Region: "global",
+ Namespace: job.Namespace,
+ },
}
// Try without a token, expect failure
@@ -713,6 +718,7 @@ func TestJobEndpoint_Register_Dispatched(t *testing.T) {
require.Error(err)
require.Contains(err.Error(), "job can't be submitted with 'Dispatched'")
}
+
func TestJobEndpoint_Register_EnforceIndex(t *testing.T) {
t.Parallel()
s1 := TestServer(t, func(c *Config) {
@@ -842,6 +848,8 @@ func TestJobEndpoint_Register_EnforceIndex(t *testing.T) {
}
}
+// TestJobEndpoint_Register_Vault_Disabled asserts that submitting a job that
+// uses Vault when Vault is *disabled* results in an error.
func TestJobEndpoint_Register_Vault_Disabled(t *testing.T) {
t.Parallel()
s1 := TestServer(t, func(c *Config) {
@@ -875,6 +883,9 @@ func TestJobEndpoint_Register_Vault_Disabled(t *testing.T) {
}
}
+// TestJobEndpoint_Register_Vault_AllowUnauthenticated asserts submitting a job
+// with a Vault policy but without a Vault token is *succeeds* if
+// allow_unauthenticated=true.
func TestJobEndpoint_Register_Vault_AllowUnauthenticated(t *testing.T) {
t.Parallel()
s1 := TestServer(t, func(c *Config) {
@@ -928,6 +939,65 @@ func TestJobEndpoint_Register_Vault_AllowUnauthenticated(t *testing.T) {
}
}
+// TestJobEndpoint_Register_Vault_OverrideConstraint asserts that job
+// submitters can specify their own Vault constraint to override the
+// automatically injected one.
+func TestJobEndpoint_Register_Vault_OverrideConstraint(t *testing.T) {
+ t.Parallel()
+ s1 := TestServer(t, func(c *Config) {
+ c.NumSchedulers = 0 // Prevent automatic dequeue
+ })
+ defer s1.Shutdown()
+ codec := rpcClient(t, s1)
+ testutil.WaitForLeader(t, s1.RPC)
+
+ // Enable vault and allow authenticated
+ tr := true
+ s1.config.VaultConfig.Enabled = &tr
+ s1.config.VaultConfig.AllowUnauthenticated = &tr
+
+ // Replace the Vault Client on the server
+ s1.vault = &TestVaultClient{}
+
+ // Create the register request with a job asking for a vault policy
+ job := mock.Job()
+ job.TaskGroups[0].Tasks[0].Vault = &structs.Vault{
+ Policies: []string{"foo"},
+ ChangeMode: structs.VaultChangeModeRestart,
+ }
+ job.TaskGroups[0].Tasks[0].Constraints = []*structs.Constraint{
+ {
+ LTarget: "${attr.vault.version}",
+ Operand: "is_set",
+ },
+ }
+ req := &structs.JobRegisterRequest{
+ Job: job,
+ WriteRequest: structs.WriteRequest{
+ Region: "global",
+ Namespace: job.Namespace,
+ },
+ }
+
+ // Fetch the response
+ var resp structs.JobRegisterResponse
+ err := msgpackrpc.CallWithCodec(codec, "Job.Register", req, &resp)
+ require.NoError(t, err)
+
+ // Check for the job in the FSM
+ state := s1.fsm.State()
+ ws := memdb.NewWatchSet()
+ out, err := state.JobByID(ws, job.Namespace, job.ID)
+ require.NoError(t, err)
+ require.NotNil(t, out)
+ require.Equal(t, resp.JobModifyIndex, out.CreateIndex)
+
+ // Assert constraint was not overridden by the server
+ outConstraints := out.TaskGroups[0].Tasks[0].Constraints
+ require.Len(t, outConstraints, 1)
+ require.True(t, job.TaskGroups[0].Tasks[0].Constraints[0].Equals(outConstraints[0]))
+}
+
func TestJobEndpoint_Register_Vault_NoToken(t *testing.T) {
t.Parallel()
s1 := TestServer(t, func(c *Config) {
@@ -1109,6 +1179,87 @@ func TestJobEndpoint_Register_Vault_Policies(t *testing.T) {
}
}
+// TestJobEndpoint_Register_SemverConstraint asserts that semver ordering is
+// used when evaluating semver constraints.
+func TestJobEndpoint_Register_SemverConstraint(t *testing.T) {
+ t.Parallel()
+ s1 := TestServer(t, nil)
+ defer s1.Shutdown()
+ codec := rpcClient(t, s1)
+ testutil.WaitForLeader(t, s1.RPC)
+ state := s1.State()
+
+ // Create a job with a semver constraint
+ job := mock.Job()
+ job.Constraints = []*structs.Constraint{
+ {
+ LTarget: "${attr.vault.version}",
+ RTarget: ">= 0.6.1",
+ Operand: structs.ConstraintSemver,
+ },
+ }
+ job.TaskGroups[0].Count = 1
+
+ // Insert 2 Nodes, 1 matching the constraint, 1 not
+ node1 := mock.Node()
+ node1.Attributes["vault.version"] = "1.3.0-beta1+ent"
+ node1.ComputeClass()
+ require.NoError(t, state.UpsertNode(1, node1))
+
+ node2 := mock.Node()
+ delete(node2.Attributes, "vault.version")
+ node2.ComputeClass()
+ require.NoError(t, state.UpsertNode(2, node2))
+
+ // Create the register request
+ req := &structs.JobRegisterRequest{
+ Job: job,
+ WriteRequest: structs.WriteRequest{
+ Region: "global",
+ Namespace: job.Namespace,
+ },
+ }
+
+ // Fetch the response
+ var resp structs.JobRegisterResponse
+ require.NoError(t, msgpackrpc.CallWithCodec(codec, "Job.Register", req, &resp))
+ require.NotZero(t, resp.Index)
+
+ // Wait for placements
+ allocReq := &structs.JobSpecificRequest{
+ JobID: job.ID,
+ QueryOptions: structs.QueryOptions{
+ Region: "global",
+ Namespace: structs.DefaultNamespace,
+ },
+ }
+
+ testutil.WaitForResult(func() (bool, error) {
+ resp := structs.JobAllocationsResponse{}
+ err := msgpackrpc.CallWithCodec(codec, "Job.Allocations", allocReq, &resp)
+ if err != nil {
+ return false, err
+ }
+ if n := len(resp.Allocations); n != 1 {
+ return false, fmt.Errorf("expected 1 alloc, found %d", n)
+ }
+ alloc := resp.Allocations[0]
+ if alloc.NodeID != node1.ID {
+ return false, fmt.Errorf("expected alloc to be one node=%q but found node=%q",
+ node1.ID, alloc.NodeID)
+ }
+ return true, nil
+ }, func(waitErr error) {
+ evals, err := state.EvalsByJob(nil, structs.DefaultNamespace, job.ID)
+ require.NoError(t, err)
+ for i, e := range evals {
+ t.Logf("%d Eval: %s", i, pretty.Sprint(e))
+ }
+
+ require.NoError(t, waitErr)
+ })
+}
+
func TestJobEndpoint_Revert(t *testing.T) {
t.Parallel()
s1 := TestServer(t, func(c *Config) {
@@ -2112,6 +2263,7 @@ func TestJobEndpoint_Deregister_ACL(t *testing.T) {
// Create and register a job
job := mock.Job()
err := state.UpsertJob(100, job)
+ require.Nil(err)
// Deregister and purge
req := &structs.JobDeregisterRequest{
@@ -3642,6 +3794,29 @@ func TestJobEndpoint_Allocations_Blocking(t *testing.T) {
}
}
+// TestJobEndpoint_Allocations_NoJobID asserts not setting a JobID in the
+// request returns an error.
+func TestJobEndpoint_Allocations_NoJobID(t *testing.T) {
+ t.Parallel()
+ s1 := TestServer(t, nil)
+ defer s1.Shutdown()
+ codec := rpcClient(t, s1)
+ testutil.WaitForLeader(t, s1.RPC)
+
+ get := &structs.JobSpecificRequest{
+ JobID: "",
+ QueryOptions: structs.QueryOptions{
+ Region: "global",
+ Namespace: structs.DefaultNamespace,
+ },
+ }
+
+ var resp structs.JobAllocationsResponse
+ err := msgpackrpc.CallWithCodec(codec, "Job.Allocations", get, &resp)
+ require.Error(t, err)
+ require.Contains(t, err.Error(), "missing job ID")
+}
+
func TestJobEndpoint_Evaluations(t *testing.T) {
t.Parallel()
s1 := TestServer(t, nil)
@@ -4317,6 +4492,98 @@ func TestJobEndpoint_ImplicitConstraints_Vault(t *testing.T) {
}
}
+func TestJobEndpoint_ValidateJob_ConsulConnect(t *testing.T) {
+ t.Parallel()
+
+ s1 := TestServer(t, nil)
+ defer s1.Shutdown()
+ codec := rpcClient(t, s1)
+ testutil.WaitForLeader(t, s1.RPC)
+
+ validateJob := func(j *structs.Job) error {
+ req := &structs.JobRegisterRequest{
+ Job: j,
+ WriteRequest: structs.WriteRequest{
+ Region: "global",
+ Namespace: j.Namespace,
+ },
+ }
+ var resp structs.JobValidateResponse
+ if err := msgpackrpc.CallWithCodec(codec, "Job.Validate", req, &resp); err != nil {
+ return err
+ }
+
+ if resp.Error != "" {
+ return errors.New(resp.Error)
+ }
+
+ if len(resp.ValidationErrors) != 0 {
+ return errors.New(strings.Join(resp.ValidationErrors, ","))
+ }
+
+ if resp.Warnings != "" {
+ return errors.New(resp.Warnings)
+ }
+
+ return nil
+ }
+
+ tgServices := []*structs.Service{
+ {
+ Name: "count-api",
+ PortLabel: "9001",
+ Connect: &structs.ConsulConnect{
+ SidecarService: &structs.ConsulSidecarService{},
+ },
+ },
+ }
+
+ t.Run("plain job", func(t *testing.T) {
+ j := mock.Job()
+ require.NoError(t, validateJob(j))
+ })
+ t.Run("valid consul connect", func(t *testing.T) {
+ j := mock.Job()
+
+ tg := j.TaskGroups[0]
+ tg.Services = tgServices
+ tg.Networks = structs.Networks{
+ {Mode: "bridge"},
+ }
+
+ err := validateJob(j)
+ require.NoError(t, err)
+ })
+
+ t.Run("consul connect but missing network", func(t *testing.T) {
+ j := mock.Job()
+
+ tg := j.TaskGroups[0]
+ tg.Services = tgServices
+ tg.Networks = nil
+
+ err := validateJob(j)
+ require.Error(t, err)
+ require.Contains(t, err.Error(), `Consul Connect sidecars require exactly 1 network`)
+ })
+
+ t.Run("consul connect but non bridge network", func(t *testing.T) {
+ j := mock.Job()
+
+ tg := j.TaskGroups[0]
+ tg.Services = tgServices
+
+ tg.Networks = structs.Networks{
+ {Mode: "host"},
+ }
+
+ err := validateJob(j)
+ require.Error(t, err)
+ require.Contains(t, err.Error(), `Consul Connect sidecar requires bridge network, found "host" in group "web"`)
+ })
+
+}
+
func TestJobEndpoint_ImplicitConstraints_Signals(t *testing.T) {
t.Parallel()
s1 := TestServer(t, func(c *Config) {
diff --git a/nomad/leader_test.go b/nomad/leader_test.go
index 19ad39df8..2ffceb053 100644
--- a/nomad/leader_test.go
+++ b/nomad/leader_test.go
@@ -174,25 +174,7 @@ func TestLeader_PlanQueue_Reset(t *testing.T) {
servers := []*Server{s1, s2, s3}
TestJoin(t, s1, s2, s3)
- for _, s := range servers {
- testutil.WaitForResult(func() (bool, error) {
- peers, _ := s.numPeers()
- return peers == 3, nil
- }, func(err error) {
- t.Fatalf("should have 3 peers")
- })
- }
-
- var leader *Server
- for _, s := range servers {
- if s.IsLeader() {
- leader = s
- break
- }
- }
- if leader == nil {
- t.Fatalf("Should have a leader")
- }
+ leader := waitForStableLeadership(t, servers)
if !leader.planQueue.Enabled() {
t.Fatalf("should enable plan queue")
@@ -249,27 +231,8 @@ func TestLeader_EvalBroker_Reset(t *testing.T) {
defer s3.Shutdown()
servers := []*Server{s1, s2, s3}
TestJoin(t, s1, s2, s3)
- testutil.WaitForLeader(t, s1.RPC)
- for _, s := range servers {
- testutil.WaitForResult(func() (bool, error) {
- peers, _ := s.numPeers()
- return peers == 3, nil
- }, func(err error) {
- t.Fatalf("should have 3 peers")
- })
- }
-
- var leader *Server
- for _, s := range servers {
- if s.IsLeader() {
- leader = s
- break
- }
- }
- if leader == nil {
- t.Fatalf("Should have a leader")
- }
+ leader := waitForStableLeadership(t, servers)
// Inject a pending eval
req := structs.EvalUpdateRequest{
@@ -326,27 +289,8 @@ func TestLeader_PeriodicDispatcher_Restore_Adds(t *testing.T) {
defer s3.Shutdown()
servers := []*Server{s1, s2, s3}
TestJoin(t, s1, s2, s3)
- testutil.WaitForLeader(t, s1.RPC)
- for _, s := range servers {
- testutil.WaitForResult(func() (bool, error) {
- peers, _ := s.numPeers()
- return peers == 3, nil
- }, func(err error) {
- t.Fatalf("should have 3 peers")
- })
- }
-
- var leader *Server
- for _, s := range servers {
- if s.IsLeader() {
- leader = s
- break
- }
- }
- if leader == nil {
- t.Fatalf("Should have a leader")
- }
+ leader := waitForStableLeadership(t, servers)
// Inject a periodic job, a parameterized periodic job and a non-periodic job
periodic := mock.PeriodicJob()
@@ -1229,3 +1173,58 @@ func TestServer_ReconcileMember(t *testing.T) {
t.Fatalf("got %d server ids want %d", got, want)
}
}
+
+// waitForStableLeadership waits until a leader is elected and all servers
+// get promoted as voting members, returns the leader
+func waitForStableLeadership(t *testing.T, servers []*Server) *Server {
+ nPeers := len(servers)
+
+ // wait for all servers to discover each other
+ for _, s := range servers {
+ testutil.WaitForResult(func() (bool, error) {
+ peers, _ := s.numPeers()
+ return peers == 3, fmt.Errorf("should find %d peers but found %d", nPeers, peers)
+ }, func(err error) {
+ require.NoError(t, err)
+ })
+ }
+
+ // wait for leader
+ var leader *Server
+ testutil.WaitForResult(func() (bool, error) {
+ for _, s := range servers {
+ if s.IsLeader() {
+ leader = s
+ return true, nil
+ }
+ }
+
+ return false, fmt.Errorf("no leader found")
+ }, func(err error) {
+ require.NoError(t, err)
+ })
+
+ // wait for all servers get marked as voters
+ testutil.WaitForResult(func() (bool, error) {
+ future := leader.raft.GetConfiguration()
+ if err := future.Error(); err != nil {
+ return false, fmt.Errorf("failed to get raft config: %v", future.Error())
+ }
+ ss := future.Configuration().Servers
+ if len(ss) != len(servers) {
+ return false, fmt.Errorf("raft doesn't contain all servers. Expected %d but found %d", len(servers), len(ss))
+ }
+
+ for _, s := range ss {
+ if s.Suffrage != raft.Voter {
+ return false, fmt.Errorf("configuration has non voting server: %v", s)
+ }
+ }
+
+ return true, nil
+ }, func(err error) {
+ require.NoError(t, err)
+ })
+
+ return leader
+}
diff --git a/nomad/mock/mock.go b/nomad/mock/mock.go
index 113daf176..63eeb5b6a 100644
--- a/nomad/mock/mock.go
+++ b/nomad/mock/mock.go
@@ -381,6 +381,22 @@ func MaxParallelJob() *structs.Job {
return job
}
+// ConnectJob adds a Connect proxy sidecar group service to mock.Job.
+func ConnectJob() *structs.Job {
+ job := Job()
+ tg := job.TaskGroups[0]
+ tg.Services = []*structs.Service{
+ {
+ Name: "testconnect",
+ PortLabel: "9999",
+ Connect: &structs.ConsulConnect{
+ SidecarService: &structs.ConsulSidecarService{},
+ },
+ },
+ }
+ return job
+}
+
func BatchJob() *structs.Job {
job := &structs.Job{
Region: "global",
@@ -625,6 +641,26 @@ func Alloc() *structs.Allocation {
return alloc
}
+// ConnectJob adds a Connect proxy sidecar group service to mock.Alloc.
+func ConnectAlloc() *structs.Allocation {
+ alloc := Alloc()
+ alloc.Job = ConnectJob()
+ alloc.AllocatedResources.Shared.Networks = []*structs.NetworkResource{
+ {
+ Mode: "bridge",
+ IP: "10.0.0.1",
+ DynamicPorts: []structs.Port{
+ {
+ Label: "connect-proxy-testconnect",
+ Value: 9999,
+ To: 9999,
+ },
+ },
+ },
+ }
+ return alloc
+}
+
func BatchAlloc() *structs.Allocation {
alloc := &structs.Allocation{
ID: uuid.Generate(),
diff --git a/nomad/node_endpoint.go b/nomad/node_endpoint.go
index 80f97eb3e..c5913c273 100644
--- a/nomad/node_endpoint.go
+++ b/nomad/node_endpoint.go
@@ -523,8 +523,10 @@ func (n *Node) UpdateDrain(args *structs.NodeUpdateDrainRequest,
return fmt.Errorf("node not found")
}
+ now := time.Now().UTC()
+
// Update the timestamp of when the node status was updated
- args.UpdatedAt = time.Now().Unix()
+ args.UpdatedAt = now.Unix()
// COMPAT: Remove in 0.9. Attempt to upgrade the request if it is of the old
// format.
@@ -536,9 +538,19 @@ func (n *Node) UpdateDrain(args *structs.NodeUpdateDrainRequest,
}
}
- // Mark the deadline time
- if args.DrainStrategy != nil && args.DrainStrategy.Deadline.Nanoseconds() > 0 {
- args.DrainStrategy.ForceDeadline = time.Now().Add(args.DrainStrategy.Deadline)
+ // Setup drain strategy
+ if args.DrainStrategy != nil {
+ // Mark start time for the drain
+ if node.DrainStrategy == nil {
+ args.DrainStrategy.StartedAt = now
+ } else {
+ args.DrainStrategy.StartedAt = node.DrainStrategy.StartedAt
+ }
+
+ // Mark the deadline time
+ if args.DrainStrategy.Deadline.Nanoseconds() > 0 {
+ args.DrainStrategy.ForceDeadline = now.Add(args.DrainStrategy.Deadline)
+ }
}
// Construct the node event
diff --git a/nomad/node_endpoint_test.go b/nomad/node_endpoint_test.go
index 481570449..7ebf36bf8 100644
--- a/nomad/node_endpoint_test.go
+++ b/nomad/node_endpoint_test.go
@@ -906,6 +906,17 @@ func TestClientEndpoint_UpdateDrain(t *testing.T) {
// now+deadline should be after the forced deadline
require.True(time.Now().Add(strategy.Deadline).After(out.DrainStrategy.ForceDeadline))
+ drainStartedAt := out.DrainStrategy.StartedAt
+ // StartedAt should be close to the time the drain started
+ require.WithinDuration(beforeUpdate, drainStartedAt, 1*time.Second)
+
+ // StartedAt shouldn't change if a new request comes while still draining
+ require.Nil(msgpackrpc.CallWithCodec(codec, "Node.UpdateDrain", dereg, &resp2))
+ ws = memdb.NewWatchSet()
+ out, err = state.NodeByID(ws, node.ID)
+ require.NoError(err)
+ require.True(out.DrainStrategy.StartedAt.Equal(drainStartedAt))
+
// Register a system job
job := mock.SystemJob()
require.Nil(s1.State().UpsertJob(10, job))
@@ -923,8 +934,8 @@ func TestClientEndpoint_UpdateDrain(t *testing.T) {
ws = memdb.NewWatchSet()
out, err = state.NodeByID(ws, node.ID)
require.NoError(err)
- require.Len(out.Events, 3)
- require.Equal(NodeDrainEventDrainDisabled, out.Events[2].Message)
+ require.Len(out.Events, 4)
+ require.Equal(NodeDrainEventDrainDisabled, out.Events[3].Message)
// Check that calling UpdateDrain with the same DrainStrategy does not emit
// a node event.
@@ -932,7 +943,7 @@ func TestClientEndpoint_UpdateDrain(t *testing.T) {
ws = memdb.NewWatchSet()
out, err = state.NodeByID(ws, node.ID)
require.NoError(err)
- require.Len(out.Events, 3)
+ require.Len(out.Events, 4)
}
func TestClientEndpoint_UpdateDrain_ACL(t *testing.T) {
diff --git a/nomad/operator_endpoint_test.go b/nomad/operator_endpoint_test.go
index 2fa13e4d6..7adb1b311 100644
--- a/nomad/operator_endpoint_test.go
+++ b/nomad/operator_endpoint_test.go
@@ -125,7 +125,9 @@ func TestOperator_RaftGetConfiguration_ACL(t *testing.T) {
func TestOperator_RaftRemovePeerByAddress(t *testing.T) {
t.Parallel()
- s1 := TestServer(t, nil)
+ s1 := TestServer(t, func(c *Config) {
+ c.RaftConfig.ProtocolVersion = raft.ProtocolVersion(2)
+ })
defer s1.Shutdown()
codec := rpcClient(t, s1)
testutil.WaitForLeader(t, s1.RPC)
@@ -181,7 +183,10 @@ func TestOperator_RaftRemovePeerByAddress(t *testing.T) {
func TestOperator_RaftRemovePeerByAddress_ACL(t *testing.T) {
t.Parallel()
- s1, root := TestACLServer(t, nil)
+ s1, root := TestACLServer(t, func(c *Config) {
+ c.RaftConfig.ProtocolVersion = raft.ProtocolVersion(2)
+ })
+
defer s1.Shutdown()
codec := rpcClient(t, s1)
testutil.WaitForLeader(t, s1.RPC)
diff --git a/nomad/plan_apply_test.go b/nomad/plan_apply_test.go
index e62350984..8135a5aca 100644
--- a/nomad/plan_apply_test.go
+++ b/nomad/plan_apply_test.go
@@ -5,7 +5,7 @@ import (
"testing"
"time"
- "github.com/hashicorp/go-memdb"
+ memdb "github.com/hashicorp/go-memdb"
"github.com/hashicorp/nomad/helper/testlog"
"github.com/hashicorp/nomad/helper/uuid"
"github.com/hashicorp/nomad/nomad/mock"
@@ -203,7 +203,9 @@ func TestPlanApply_applyPlan(t *testing.T) {
// Check that our optimistic view is updated
out, _ := snap.AllocByID(ws, allocEvict.ID)
- assert.Equal(structs.AllocDesiredStatusEvict, out.DesiredStatus)
+ if out.DesiredStatus != structs.AllocDesiredStatusEvict && out.DesiredStatus != structs.AllocDesiredStatusStop {
+ assert.Equal(structs.AllocDesiredStatusEvict, out.DesiredStatus)
+ }
// Verify plan applies cleanly
index, err = planWaitFuture(future)
@@ -213,7 +215,10 @@ func TestPlanApply_applyPlan(t *testing.T) {
// Lookup the allocation
allocOut, err = s1.fsm.State().AllocByID(ws, alloc.ID)
assert.Nil(err)
- assert.Equal(structs.AllocDesiredStatusEvict, allocOut.DesiredStatus)
+ if allocOut.DesiredStatus != structs.AllocDesiredStatusEvict && allocOut.DesiredStatus != structs.AllocDesiredStatusStop {
+ assert.Equal(structs.AllocDesiredStatusEvict, allocOut.DesiredStatus)
+ }
+
assert.NotNil(allocOut.Job)
assert.True(allocOut.ModifyTime > 0)
diff --git a/nomad/plan_queue_test.go b/nomad/plan_queue_test.go
index beead5dd4..933bd1f39 100644
--- a/nomad/plan_queue_test.go
+++ b/nomad/plan_queue_test.go
@@ -39,10 +39,15 @@ func TestPlanQueue_Enqueue_Dequeue(t *testing.T) {
}
resCh := make(chan *structs.PlanResult, 1)
+ errCh := make(chan error)
go func() {
+ defer close(errCh)
+ defer close(resCh)
+
res, err := future.Wait()
if err != nil {
- t.Fatalf("err: %v", err)
+ errCh <- err
+ return
}
resCh <- res
}()
@@ -65,6 +70,10 @@ func TestPlanQueue_Enqueue_Dequeue(t *testing.T) {
pending.respond(result, nil)
select {
+ case err := <-errCh:
+ if err != nil {
+ t.Fatalf("error in anonymous goroutine: %s", err)
+ }
case r := <-resCh:
if r != result {
t.Fatalf("Bad: %#v", r)
diff --git a/nomad/rpc.go b/nomad/rpc.go
index 29dfe78c8..41d47fe73 100644
--- a/nomad/rpc.go
+++ b/nomad/rpc.go
@@ -54,11 +54,11 @@ type rpcHandler struct {
}
func newRpcHandler(s *Server) *rpcHandler {
- logger := s.logger.Named("rpc")
+ logger := s.logger.NamedIntercept("rpc")
return &rpcHandler{
Server: s,
logger: logger,
- gologger: logger.StandardLogger(&log.StandardLoggerOptions{InferLevels: true}),
+ gologger: logger.StandardLoggerIntercept(&log.StandardLoggerOptions{InferLevels: true}),
}
}
diff --git a/nomad/server.go b/nomad/server.go
index f09594629..e6c00c0e7 100644
--- a/nomad/server.go
+++ b/nomad/server.go
@@ -91,7 +91,7 @@ const (
type Server struct {
config *Config
- logger log.Logger
+ logger log.InterceptLogger
// Connection pool to other Nomad servers
connPool *pool.ConnPool
@@ -252,6 +252,7 @@ type endpoints struct {
// Client endpoints
ClientStats *ClientStats
FileSystem *FileSystem
+ Agent *Agent
ClientAllocations *ClientAllocations
}
@@ -290,7 +291,7 @@ func NewServer(config *Config, consulCatalog consul.CatalogAPI) (*Server, error)
}
// Create the logger
- logger := config.Logger.ResetNamed("nomad")
+ logger := config.Logger.ResetNamedIntercept("nomad")
// Create the server
s := &Server{
@@ -1044,6 +1045,9 @@ func (s *Server) setupRpcServer(server *rpc.Server, ctx *RPCContext) {
// Streaming endpoints
s.staticEndpoints.FileSystem = &FileSystem{srv: s, logger: s.logger.Named("client_fs")}
s.staticEndpoints.FileSystem.register()
+
+ s.staticEndpoints.Agent = &Agent{srv: s}
+ s.staticEndpoints.Agent.register()
}
// Register the static handlers
@@ -1102,12 +1106,12 @@ func (s *Server) setupRaft() error {
s.raftTransport = trans
// Make sure we set the Logger.
- logger := s.logger.StandardLogger(&log.StandardLoggerOptions{InferLevels: true})
+ logger := s.logger.StandardLoggerIntercept(&log.StandardLoggerOptions{InferLevels: true})
s.config.RaftConfig.Logger = logger
s.config.RaftConfig.LogOutput = nil
- // Our version of Raft protocol requires the LocalID to match the network
- // address of the transport.
+ // Our version of Raft protocol 2 requires the LocalID to match the network
+ // address of the transport. Raft protocol 3 uses permanent ids.
s.config.RaftConfig.LocalID = raft.ServerID(trans.LocalAddr())
if s.config.RaftConfig.ProtocolVersion >= 3 {
s.config.RaftConfig.LocalID = raft.ServerID(s.config.NodeID)
@@ -1272,7 +1276,7 @@ func (s *Server) setupSerf(conf *serf.Config, ch chan serf.Event, path string) (
if s.config.UpgradeVersion != "" {
conf.Tags[AutopilotVersionTag] = s.config.UpgradeVersion
}
- logger := s.logger.StandardLogger(&log.StandardLoggerOptions{InferLevels: true})
+ logger := s.logger.StandardLoggerIntercept(&log.StandardLoggerOptions{InferLevels: true})
conf.MemberlistConfig.Logger = logger
conf.Logger = logger
conf.MemberlistConfig.LogOutput = nil
diff --git a/nomad/server_setup_oss.go b/nomad/server_setup_oss.go
index b73d1fa45..7436d9eb6 100644
--- a/nomad/server_setup_oss.go
+++ b/nomad/server_setup_oss.go
@@ -12,7 +12,7 @@ type EnterpriseState struct{}
func (s *Server) setupEnterprise(config *Config) error {
// Set up the OSS version of autopilot
apDelegate := &AutopilotDelegate{s}
- s.autopilot = autopilot.NewAutopilot(s.logger.StandardLogger(&log.StandardLoggerOptions{InferLevels: true}), apDelegate, config.AutopilotInterval, config.ServerHealthInterval)
+ s.autopilot = autopilot.NewAutopilot(s.logger.StandardLoggerIntercept(&log.StandardLoggerOptions{InferLevels: true}), apDelegate, config.AutopilotInterval, config.ServerHealthInterval)
return nil
}
diff --git a/nomad/structs/config/consul.go b/nomad/structs/config/consul.go
index 9da4f08ad..97fa6afc2 100644
--- a/nomad/structs/config/consul.go
+++ b/nomad/structs/config/consul.go
@@ -61,6 +61,9 @@ type ConsulConfig struct {
// Uses Consul's default and env var.
Addr string `hcl:"address"`
+ // GRPCAddr is the gRPC endpoint address of the local Consul agent
+ GRPCAddr string `hcl:"grpc_address"`
+
// Timeout is used by Consul HTTP Client
Timeout time.Duration
TimeoutHCL string `hcl:"timeout" json:"-"`
@@ -161,6 +164,9 @@ func (a *ConsulConfig) Merge(b *ConsulConfig) *ConsulConfig {
if b.Addr != "" {
result.Addr = b.Addr
}
+ if b.GRPCAddr != "" {
+ result.GRPCAddr = b.GRPCAddr
+ }
if b.Timeout != 0 {
result.Timeout = b.Timeout
}
diff --git a/nomad/structs/diff_test.go b/nomad/structs/diff_test.go
index 483b9d20a..0e80a5946 100644
--- a/nomad/structs/diff_test.go
+++ b/nomad/structs/diff_test.go
@@ -2491,6 +2491,8 @@ func TestTaskGroupDiff(t *testing.T) {
SidecarService: &ConsulSidecarService{
Port: "http",
Proxy: &ConsulProxy{
+ LocalServiceAddress: "127.0.0.1",
+ LocalServicePort: 8080,
Upstreams: []ConsulUpstream{
{
DestinationName: "foo",
@@ -2674,6 +2676,19 @@ func TestTaskGroupDiff(t *testing.T) {
{
Type: DiffTypeAdded,
Name: "ConsulProxy",
+ Fields: []*FieldDiff{
+ {
+ Type: DiffTypeAdded,
+ Name: "LocalServiceAddress",
+ Old: "",
+ New: "127.0.0.1",
+ }, {
+ Type: DiffTypeAdded,
+ Name: "LocalServicePort",
+ Old: "",
+ New: "8080",
+ },
+ },
Objects: []*ObjectDiff{
{
Type: DiffTypeAdded,
diff --git a/nomad/structs/errors.go b/nomad/structs/errors.go
index 5b9166d3f..6bb0ce0cb 100644
--- a/nomad/structs/errors.go
+++ b/nomad/structs/errors.go
@@ -3,6 +3,7 @@ package structs
import (
"errors"
"fmt"
+ "strconv"
"strings"
)
@@ -16,6 +17,7 @@ const (
errUnknownMethod = "Unknown rpc method"
errUnknownNomadVersion = "Unable to determine Nomad version"
errNodeLacksRpc = "Node does not support RPC; requires 0.8 or later"
+ errMissingAllocID = "Missing allocation ID"
// Prefix based errors that are used to check if the error is of a given
// type. These errors should be created with the associated constructor.
@@ -24,6 +26,8 @@ const (
ErrUnknownJobPrefix = "Unknown job"
ErrUnknownEvaluationPrefix = "Unknown evaluation"
ErrUnknownDeploymentPrefix = "Unknown deployment"
+
+ errRPCCodedErrorPrefix = "RPC Error:: "
)
var (
@@ -36,6 +40,7 @@ var (
ErrUnknownMethod = errors.New(errUnknownMethod)
ErrUnknownNomadVersion = errors.New(errUnknownNomadVersion)
ErrNodeLacksRpc = errors.New(errNodeLacksRpc)
+ ErrMissingAllocID = errors.New(errMissingAllocID)
)
// IsErrNoLeader returns whether the error is due to there being no leader.
@@ -142,3 +147,38 @@ func IsErrUnknownNomadVersion(err error) bool {
func IsErrNodeLacksRpc(err error) bool {
return err != nil && strings.Contains(err.Error(), errNodeLacksRpc)
}
+
+// NewErrRPCCoded wraps an RPC error with a code to be converted to HTTP status
+// code
+func NewErrRPCCoded(code int, msg string) error {
+ return fmt.Errorf("%s%d,%s", errRPCCodedErrorPrefix, code, msg)
+}
+
+// NewErrRPCCoded wraps an RPC error with a code to be converted to HTTP status
+// code
+func NewErrRPCCodedf(code int, format string, args ...interface{}) error {
+ msg := fmt.Sprintf(format, args...)
+ return fmt.Errorf("%s%d,%s", errRPCCodedErrorPrefix, code, msg)
+}
+
+// CodeFromRPCCodedErr returns the code and message of error if it's an RPC error
+// created through NewErrRPCCoded function. Returns `ok` false if error is not
+// an rpc error
+func CodeFromRPCCodedErr(err error) (code int, msg string, ok bool) {
+ if err == nil || !strings.HasPrefix(err.Error(), errRPCCodedErrorPrefix) {
+ return 0, "", false
+ }
+
+ headerLen := len(errRPCCodedErrorPrefix)
+ parts := strings.SplitN(err.Error()[headerLen:], ",", 2)
+ if len(parts) != 2 {
+ return 0, "", false
+ }
+
+ code, err = strconv.Atoi(parts[0])
+ if err != nil {
+ return 0, "", false
+ }
+
+ return code, parts[1], true
+}
diff --git a/nomad/structs/errors_test.go b/nomad/structs/errors_test.go
new file mode 100644
index 000000000..08e5fb716
--- /dev/null
+++ b/nomad/structs/errors_test.go
@@ -0,0 +1,49 @@
+package structs
+
+import (
+ "errors"
+ "testing"
+
+ "github.com/stretchr/testify/assert"
+)
+
+func TestRPCCodedErrors(t *testing.T) {
+ cases := []struct {
+ err error
+ code int
+ message string
+ }{
+ {
+ NewErrRPCCoded(400, "a test message,here"),
+ 400,
+ "a test message,here",
+ },
+ {
+ NewErrRPCCodedf(500, "a test message,here %s %s", "and,here%s", "second"),
+ 500,
+ "a test message,here and,here%s second",
+ },
+ }
+
+ for _, c := range cases {
+ t.Run(c.err.Error(), func(t *testing.T) {
+ code, msg, ok := CodeFromRPCCodedErr(c.err)
+ assert.True(t, ok)
+ assert.Equal(t, c.code, code)
+ assert.Equal(t, c.message, msg)
+ })
+ }
+
+ negativeCases := []string{
+ "random error",
+ errRPCCodedErrorPrefix,
+ errRPCCodedErrorPrefix + "123",
+ errRPCCodedErrorPrefix + "qwer,asdf",
+ }
+ for _, c := range negativeCases {
+ t.Run(c, func(t *testing.T) {
+ _, _, ok := CodeFromRPCCodedErr(errors.New(c))
+ assert.False(t, ok)
+ })
+ }
+}
diff --git a/nomad/structs/generate.sh b/nomad/structs/generate.sh
index 04141c34a..c0409e707 100755
--- a/nomad/structs/generate.sh
+++ b/nomad/structs/generate.sh
@@ -2,4 +2,4 @@
set -e
FILES="$(ls ./*.go | grep -v -e _test.go -e .generated.go | tr '\n' ' ')"
-codecgen -d 100 -o structs.generated.go ${FILES}
+codecgen -d 100 -t codec_generated -o structs.generated.go ${FILES}
diff --git a/nomad/structs/services.go b/nomad/structs/services.go
index 745e9110a..abc79256e 100644
--- a/nomad/structs/services.go
+++ b/nomad/structs/services.go
@@ -19,6 +19,8 @@ import (
)
const (
+ EnvoyBootstrapPath = "${NOMAD_SECRETS_DIR}/envoy_bootstrap.json"
+
ServiceCheckHTTP = "http"
ServiceCheckTCP = "tcp"
ServiceCheckScript = "script"
@@ -595,6 +597,10 @@ func (c *ConsulConnect) Validate() error {
// ConsulSidecarService represents a Consul Connect SidecarService jobspec
// stanza.
type ConsulSidecarService struct {
+ // Tags are optional service tags that get registered with the sidecar service
+ // in Consul. If unset, the sidecar service inherits the parent service tags.
+ Tags []string
+
// Port is the service's port that the sidecar will connect to. May be
// a port label or a literal port number.
Port string
@@ -611,6 +617,7 @@ func (s *ConsulSidecarService) HasUpstreams() bool {
// Copy the stanza recursively. Returns nil if nil.
func (s *ConsulSidecarService) Copy() *ConsulSidecarService {
return &ConsulSidecarService{
+ Tags: helper.CopySliceString(s.Tags),
Port: s.Port,
Proxy: s.Proxy.Copy(),
}
@@ -626,6 +633,10 @@ func (s *ConsulSidecarService) Equals(o *ConsulSidecarService) bool {
return false
}
+ if !helper.CompareSliceSetString(s.Tags, o.Tags) {
+ return false
+ }
+
return s.Proxy.Equals(o.Proxy)
}
@@ -773,6 +784,17 @@ func (t *SidecarTask) MergeIntoTask(task *Task) {
// ConsulProxy represents a Consul Connect sidecar proxy jobspec stanza.
type ConsulProxy struct {
+
+ // LocalServiceAddress is the address the local service binds to.
+ // Usually 127.0.0.1 it is useful to customize in clusters with mixed
+ // Connect and non-Connect services.
+ LocalServiceAddress string
+
+ // LocalServicePort is the port the local service binds to. Usually
+ // the same as the parent service's port, it is useful to customize
+ // in clusters with mixed Connect and non-Connect services
+ LocalServicePort int
+
// Upstreams configures the upstream services this service intends to
// connect to.
Upstreams []ConsulUpstream
@@ -789,6 +811,8 @@ func (p *ConsulProxy) Copy() *ConsulProxy {
}
newP := ConsulProxy{}
+ newP.LocalServiceAddress = p.LocalServiceAddress
+ newP.LocalServicePort = p.LocalServicePort
if n := len(p.Upstreams); n > 0 {
newP.Upstreams = make([]ConsulUpstream, n)
@@ -815,6 +839,12 @@ func (p *ConsulProxy) Equals(o *ConsulProxy) bool {
return p == o
}
+ if p.LocalServiceAddress != o.LocalServiceAddress {
+ return false
+ }
+ if p.LocalServicePort != o.LocalServicePort {
+ return false
+ }
if len(p.Upstreams) != len(o.Upstreams) {
return false
}
diff --git a/nomad/structs/services_test.go b/nomad/structs/services_test.go
index 6defab561..9e92a7d5d 100644
--- a/nomad/structs/services_test.go
+++ b/nomad/structs/services_test.go
@@ -34,8 +34,11 @@ func TestConsulConnect_CopyEquals(t *testing.T) {
c := &ConsulConnect{
SidecarService: &ConsulSidecarService{
+ Tags: []string{"tag1", "tag2"},
Port: "9001",
Proxy: &ConsulProxy{
+ LocalServiceAddress: "127.0.0.1",
+ LocalServicePort: 8080,
Upstreams: []ConsulUpstream{
{
DestinationName: "up1",
diff --git a/nomad/structs/structs.go b/nomad/structs/structs.go
index 10f552093..280c09c53 100644
--- a/nomad/structs/structs.go
+++ b/nomad/structs/structs.go
@@ -30,6 +30,7 @@ import (
"github.com/hashicorp/nomad/acl"
"github.com/hashicorp/nomad/helper"
"github.com/hashicorp/nomad/helper/args"
+ "github.com/hashicorp/nomad/helper/constraints/semver"
"github.com/hashicorp/nomad/helper/uuid"
"github.com/hashicorp/nomad/lib/kheap"
psstructs "github.com/hashicorp/nomad/plugins/shared/structs"
@@ -207,6 +208,13 @@ type QueryOptions struct {
Region string
// Namespace is the target namespace for the query.
+ //
+ // Since handlers do not have a default value set they should access
+ // the Namespace via the RequestNamespace method.
+ //
+ // Requests accessing specific namespaced objects must check ACLs
+ // against the namespace of the object, not the namespace in the
+ // request.
Namespace string
// If set, wait until query exceeds given index. Must be provided
@@ -233,6 +241,11 @@ func (q QueryOptions) RequestRegion() string {
return q.Region
}
+// RequestNamespace returns the request's namespace or the default namespace if
+// no explicit namespace was sent.
+//
+// Requests accessing specific namespaced objects must check ACLs against the
+// namespace of the object, not the namespace in the request.
func (q QueryOptions) RequestNamespace() string {
if q.Namespace == "" {
return DefaultNamespace
@@ -254,6 +267,13 @@ type WriteRequest struct {
Region string
// Namespace is the target namespace for the write.
+ //
+ // Since RPC handlers do not have a default value set they should
+ // access the Namespace via the RequestNamespace method.
+ //
+ // Requests accessing specific namespaced objects must check ACLs
+ // against the namespace of the object, not the namespace in the
+ // request.
Namespace string
// AuthToken is secret portion of the ACL token used for the request
@@ -267,6 +287,11 @@ func (w WriteRequest) RequestRegion() string {
return w.Region
}
+// RequestNamespace returns the request's namespace or the default namespace if
+// no explicit namespace was sent.
+//
+// Requests accessing specific namespaced objects must check ACLs against the
+// namespace of the object, not the namespace in the request.
func (w WriteRequest) RequestNamespace() string {
if w.Namespace == "" {
return DefaultNamespace
@@ -1421,6 +1446,9 @@ type DrainStrategy struct {
// ForceDeadline is the deadline time for the drain after which drains will
// be forced
ForceDeadline time.Time
+
+ // StartedAt is the time the drain process started
+ StartedAt time.Time
}
func (d *DrainStrategy) Copy() *DrainStrategy {
@@ -3602,15 +3630,16 @@ func (j *Job) LookupTaskGroup(name string) *TaskGroup {
func (j *Job) CombinedTaskMeta(groupName, taskName string) map[string]string {
group := j.LookupTaskGroup(groupName)
if group == nil {
- return nil
+ return j.Meta
}
+ var meta map[string]string
+
task := group.LookupTask(taskName)
- if task == nil {
- return nil
+ if task != nil {
+ meta = helper.CopyMapStringString(task.Meta)
}
- meta := helper.CopyMapStringString(task.Meta)
if meta == nil {
meta = make(map[string]string, len(group.Meta)+len(j.Meta))
}
@@ -4783,6 +4812,14 @@ func (tg *TaskGroup) Canonicalize(job *Job) {
tg.EphemeralDisk = DefaultEphemeralDisk()
}
+ for _, service := range tg.Services {
+ service.Canonicalize(job.Name, tg.Name, "group")
+ }
+
+ for _, network := range tg.Networks {
+ network.Canonicalize()
+ }
+
for _, task := range tg.Tasks {
task.Canonicalize(job, tg)
}
@@ -4917,13 +4954,7 @@ func (tg *TaskGroup) Validate(j *Job) error {
continue
}
- cfg, err := ParseHostVolumeConfig(decl.Config)
- if err != nil {
- mErr.Errors = append(mErr.Errors, fmt.Errorf("Volume %s has unparseable config: %v", name, err))
- continue
- }
-
- if cfg.Source == "" {
+ if decl.Source == "" {
mErr.Errors = append(mErr.Errors, fmt.Errorf("Volume %s has an empty source", name))
}
}
@@ -4987,13 +5018,16 @@ func (tg *TaskGroup) validateNetworks() error {
}
}
- if port.To != 0 {
+ if port.To > 0 {
if other, ok := mappedPorts[port.To]; ok {
err := fmt.Errorf("Port mapped to %d already in use by %s", port.To, other)
mErr.Errors = append(mErr.Errors, err)
} else {
mappedPorts[port.To] = fmt.Sprintf("taskgroup network:%s", port.Label)
}
+ } else if port.To < -1 {
+ err := fmt.Errorf("Port %q cannot be mapped to negative value %d", port.Label, port.To)
+ mErr.Errors = append(mErr.Errors, err)
}
}
}
@@ -5523,6 +5557,14 @@ func (t *Task) Validate(ephemeralDisk *EphemeralDisk, jobType string, tgServices
mErr.Errors = append(mErr.Errors, serviceErr)
}
}
+
+ // Validation for volumes
+ for idx, vm := range t.VolumeMounts {
+ if !MountPropagationModeIsValid(vm.PropagationMode) {
+ mErr.Errors = append(mErr.Errors, fmt.Errorf("Volume Mount (%d) has an invalid propagation mode: \"%s\"", idx, vm.PropagationMode))
+ }
+ }
+
return mErr.ErrorOrNil()
}
@@ -6578,6 +6620,7 @@ const (
ConstraintDistinctHosts = "distinct_hosts"
ConstraintRegex = "regexp"
ConstraintVersion = "version"
+ ConstraintSemver = "semver"
ConstraintSetContains = "set_contains"
ConstraintSetContainsAll = "set_contains_all"
ConstraintSetContainsAny = "set_contains_any"
@@ -6648,6 +6691,10 @@ func (c *Constraint) Validate() error {
if _, err := version.NewConstraint(c.RTarget); err != nil {
mErr.Errors = append(mErr.Errors, fmt.Errorf("Version constraint is invalid: %v", err))
}
+ case ConstraintSemver:
+ if _, err := semver.NewConstraint(c.RTarget); err != nil {
+ mErr.Errors = append(mErr.Errors, fmt.Errorf("Semver constraint is invalid: %v", err))
+ }
case ConstraintDistinctProperty:
// If a count is set, make sure it is convertible to a uint64
if c.RTarget != "" {
@@ -6762,6 +6809,10 @@ func (a *Affinity) Validate() error {
if _, err := version.NewConstraint(a.RTarget); err != nil {
mErr.Errors = append(mErr.Errors, fmt.Errorf("Version affinity is invalid: %v", err))
}
+ case ConstraintSemver:
+ if _, err := semver.NewConstraint(a.RTarget); err != nil {
+ mErr.Errors = append(mErr.Errors, fmt.Errorf("Semver affinity is invalid: %v", err))
+ }
case "=", "==", "is", "!=", "not", "<", "<=", ">", ">=":
if a.RTarget == "" {
mErr.Errors = append(mErr.Errors, fmt.Errorf("Operator %q requires an RTarget", a.Operand))
diff --git a/nomad/structs/structs_test.go b/nomad/structs/structs_test.go
index 30c5c603b..808e768cc 100644
--- a/nomad/structs/structs_test.go
+++ b/nomad/structs/structs_test.go
@@ -872,10 +872,8 @@ func TestTaskGroup_Validate(t *testing.T) {
tg = &TaskGroup{
Volumes: map[string]*VolumeRequest{
"foo": {
- Type: "nothost",
- Config: map[string]interface{}{
- "sOuRcE": "foo",
- },
+ Type: "nothost",
+ Source: "foo",
},
},
Tasks: []*Task{
@@ -1829,9 +1827,7 @@ func TestConstraint_Validate(t *testing.T) {
Operand: "=",
}
err = c.Validate()
- if err != nil {
- t.Fatalf("err: %v", err)
- }
+ require.NoError(t, err)
// Perform additional regexp validation
c.Operand = ConstraintRegex
@@ -1851,6 +1847,15 @@ func TestConstraint_Validate(t *testing.T) {
t.Fatalf("err: %s", err)
}
+ // Perform semver validation
+ c.Operand = ConstraintSemver
+ err = c.Validate()
+ require.Error(t, err)
+ require.Contains(t, err.Error(), "Malformed constraint")
+
+ c.RTarget = ">= 0.6.1"
+ require.NoError(t, c.Validate())
+
// Perform distinct_property validation
c.Operand = ConstraintDistinctProperty
c.RTarget = "0"
@@ -2567,6 +2572,51 @@ func TestJob_ExpandServiceNames(t *testing.T) {
}
+func TestJob_CombinedTaskMeta(t *testing.T) {
+ j := &Job{
+ Meta: map[string]string{
+ "job_test": "job",
+ "group_test": "job",
+ "task_test": "job",
+ },
+ TaskGroups: []*TaskGroup{
+ {
+ Name: "group",
+ Meta: map[string]string{
+ "group_test": "group",
+ "task_test": "group",
+ },
+ Tasks: []*Task{
+ {
+ Name: "task",
+ Meta: map[string]string{
+ "task_test": "task",
+ },
+ },
+ },
+ },
+ },
+ }
+
+ require := require.New(t)
+ require.EqualValues(map[string]string{
+ "job_test": "job",
+ "group_test": "group",
+ "task_test": "task",
+ }, j.CombinedTaskMeta("group", "task"))
+ require.EqualValues(map[string]string{
+ "job_test": "job",
+ "group_test": "group",
+ "task_test": "group",
+ }, j.CombinedTaskMeta("group", ""))
+ require.EqualValues(map[string]string{
+ "job_test": "job",
+ "group_test": "job",
+ "task_test": "job",
+ }, j.CombinedTaskMeta("", "task"))
+
+}
+
func TestPeriodicConfig_EnabledInvalid(t *testing.T) {
// Create a config that is enabled but with no interval specified.
p := &PeriodicConfig{Enabled: true}
diff --git a/nomad/structs/volumes.go b/nomad/structs/volumes.go
index a873e87d9..fe44e4830 100644
--- a/nomad/structs/volumes.go
+++ b/nomad/structs/volumes.go
@@ -1,14 +1,24 @@
package structs
-import (
- "github.com/mitchellh/copystructure"
- "github.com/mitchellh/mapstructure"
-)
-
const (
VolumeTypeHost = "host"
)
+const (
+ VolumeMountPropagationPrivate = "private"
+ VolumeMountPropagationHostToTask = "host-to-task"
+ VolumeMountPropagationBidirectional = "bidirectional"
+)
+
+func MountPropagationModeIsValid(propagationMode string) bool {
+ switch propagationMode {
+ case "", VolumeMountPropagationPrivate, VolumeMountPropagationHostToTask, VolumeMountPropagationBidirectional:
+ return true
+ default:
+ return false
+ }
+}
+
// ClientHostVolumeConfig is used to configure access to host paths on a Nomad Client
type ClientHostVolumeConfig struct {
Name string `hcl:",key"`
@@ -74,29 +84,12 @@ func HostVolumeSliceMerge(a, b []*ClientHostVolumeConfig) []*ClientHostVolumeCon
return n
}
-// HostVolumeConfig is the struct that is expected inside the `config` section
-// of a `host` type volume.
-type HostVolumeConfig struct {
- // Source is the name of the desired HostVolume.
- Source string
-}
-
-func (h *HostVolumeConfig) Copy() *HostVolumeConfig {
- if h == nil {
- return nil
- }
- nh := new(HostVolumeConfig)
- *nh = *h
- return nh
-}
-
// VolumeRequest is a representation of a storage volume that a TaskGroup wishes to use.
type VolumeRequest struct {
Name string
Type string
+ Source string
ReadOnly bool
-
- Config map[string]interface{}
}
func (v *VolumeRequest) Copy() *VolumeRequest {
@@ -106,12 +99,6 @@ func (v *VolumeRequest) Copy() *VolumeRequest {
nv := new(VolumeRequest)
*nv = *v
- if i, err := copystructure.Copy(nv.Config); err != nil {
- panic(err.Error())
- } else {
- nv.Config = i.(map[string]interface{})
- }
-
return nv
}
@@ -131,9 +118,10 @@ func CopyMapVolumeRequest(s map[string]*VolumeRequest) map[string]*VolumeRequest
// VolumeMount represents the relationship between a destination path in a task
// and the task group volume that should be mounted there.
type VolumeMount struct {
- Volume string
- Destination string
- ReadOnly bool
+ Volume string
+ Destination string
+ ReadOnly bool
+ PropagationMode string
}
func (v *VolumeMount) Copy() *VolumeMount {
@@ -158,10 +146,3 @@ func CopySliceVolumeMount(s []*VolumeMount) []*VolumeMount {
}
return c
}
-
-func ParseHostVolumeConfig(m map[string]interface{}) (*HostVolumeConfig, error) {
- var c HostVolumeConfig
- err := mapstructure.Decode(m, &c)
-
- return &c, err
-}
diff --git a/nomad/testing.go b/nomad/testing.go
index 248644bc2..e1c6a4396 100644
--- a/nomad/testing.go
+++ b/nomad/testing.go
@@ -16,6 +16,7 @@ import (
"github.com/hashicorp/nomad/helper/testlog"
"github.com/hashicorp/nomad/nomad/mock"
"github.com/hashicorp/nomad/nomad/structs"
+ "github.com/hashicorp/nomad/version"
)
var (
@@ -41,7 +42,7 @@ func TestServer(t testing.T, cb func(*Config)) *Server {
// Setup the default settings
config := DefaultConfig()
config.Logger = testlog.HCLogger(t)
- config.Build = "0.8.0+unittest"
+ config.Build = version.Version + "+unittest"
config.DevMode = true
nodeNum := atomic.AddUint32(&nodeNumber, 1)
config.NodeName = fmt.Sprintf("nomad-%03d", nodeNum)
@@ -76,6 +77,9 @@ func TestServer(t testing.T, cb func(*Config)) *Server {
config.PluginLoader = catalog.TestPluginLoader(t)
config.PluginSingletonLoader = singleton.NewSingletonLoader(config.Logger, config.PluginLoader)
+ // Disable consul autojoining: tests typically join servers directly
+ config.ConsulConfig.ServerAutoJoin = &f
+
// Invoke the callback if any
if cb != nil {
cb(config)
diff --git a/nomad/util.go b/nomad/util.go
index 055b39e2e..e2772a73c 100644
--- a/nomad/util.go
+++ b/nomad/util.go
@@ -8,6 +8,7 @@ import (
"path/filepath"
"strconv"
+ memdb "github.com/hashicorp/go-memdb"
version "github.com/hashicorp/go-version"
"github.com/hashicorp/nomad/nomad/state"
"github.com/hashicorp/nomad/nomad/structs"
@@ -275,3 +276,28 @@ func nodeSupportsRpc(node *structs.Node) error {
return nil
}
+
+// AllocGetter is an interface for retrieving allocations by ID. It is
+// satisfied by *state.StateStore and *state.StateSnapshot.
+type AllocGetter interface {
+ AllocByID(ws memdb.WatchSet, id string) (*structs.Allocation, error)
+}
+
+// getAlloc retrieves an allocation by ID and namespace. If the allocation is
+// nil, an error is returned.
+func getAlloc(state AllocGetter, allocID string) (*structs.Allocation, error) {
+ if allocID == "" {
+ return nil, structs.ErrMissingAllocID
+ }
+
+ alloc, err := state.AllocByID(nil, allocID)
+ if err != nil {
+ return nil, err
+ }
+
+ if alloc == nil {
+ return nil, structs.NewErrUnknownAllocation(allocID)
+ }
+
+ return alloc, nil
+}
diff --git a/nomad/vault.go b/nomad/vault.go
index 44a61973e..7126b9338 100644
--- a/nomad/vault.go
+++ b/nomad/vault.go
@@ -10,11 +10,11 @@ import (
"sync/atomic"
"time"
- "gopkg.in/tomb.v2"
+ tomb "gopkg.in/tomb.v2"
- "github.com/armon/go-metrics"
+ metrics "github.com/armon/go-metrics"
log "github.com/hashicorp/go-hclog"
- "github.com/hashicorp/go-multierror"
+ multierror "github.com/hashicorp/go-multierror"
"github.com/hashicorp/nomad/nomad/structs"
"github.com/hashicorp/nomad/nomad/structs/config"
vapi "github.com/hashicorp/vault/api"
@@ -880,10 +880,12 @@ func (v *vaultClient) validateRole(role string) error {
// Read and parse the fields
var data struct {
- ExplicitMaxTtl int `mapstructure:"explicit_max_ttl"`
- Orphan bool
- Period int
- Renewable bool
+ ExplicitMaxTtl int `mapstructure:"explicit_max_ttl"`
+ TokenExplicitMaxTtl int `mapstructure:"token_explicit_max_ttl"`
+ Orphan bool
+ Period int
+ TokenPeriod int `mapstructure:"token_period"`
+ Renewable bool
}
if err := mapstructure.WeakDecode(rsecret.Data, &data); err != nil {
return fmt.Errorf("failed to parse Vault role's data block: %v", err)
@@ -895,11 +897,11 @@ func (v *vaultClient) validateRole(role string) error {
multierror.Append(&mErr, fmt.Errorf("Role must allow tokens to be renewed"))
}
- if data.ExplicitMaxTtl != 0 {
+ if data.ExplicitMaxTtl != 0 || data.TokenExplicitMaxTtl != 0 {
multierror.Append(&mErr, fmt.Errorf("Role can not use an explicit max ttl. Token must be periodic."))
}
- if data.Period == 0 {
+ if data.Period == 0 && data.TokenPeriod == 0 {
multierror.Append(&mErr, fmt.Errorf("Role must have a non-zero period to make tokens periodic."))
}
@@ -1012,7 +1014,7 @@ func (v *vaultClient) CreateToken(ctx context.Context, a *structs.Allocation, ta
validationErr = fmt.Errorf("Vault returned WrapInfo without WrappedAccessor. Secret warnings: %v", secret.Warnings)
}
if validationErr != nil {
- v.logger.Warn("ailed to CreateToken", "error", err)
+ v.logger.Warn("failed to CreateToken", "error", validationErr)
return nil, structs.NewRecoverableError(validationErr, true)
}
diff --git a/nomad/vault_test.go b/nomad/vault_test.go
index 0664ac26b..94c0a0b27 100644
--- a/nomad/vault_test.go
+++ b/nomad/vault_test.go
@@ -295,19 +295,18 @@ func TestVaultClient_ValidateRole(t *testing.T) {
"nomad-role-management": nomadRoleManagementPolicy,
}
data := map[string]interface{}{
- "allowed_policies": "default,root",
- "orphan": true,
- "renewable": true,
- "explicit_max_ttl": 10,
+ "allowed_policies": "default,root",
+ "orphan": true,
+ "renewable": true,
+ "token_explicit_max_ttl": 10,
}
v.Config.Token = testVaultRoleAndToken(v, t, vaultPolicies, data, nil)
logger := testlog.HCLogger(t)
v.Config.ConnectionRetryIntv = 100 * time.Millisecond
client, err := NewVaultClient(v.Config, logger, nil)
- if err != nil {
- t.Fatalf("failed to build vault client: %v", err)
- }
+ require.NoError(t, err)
+
defer client.Stop()
// Wait for an error
@@ -325,13 +324,103 @@ func TestVaultClient_ValidateRole(t *testing.T) {
return true, nil
}, func(err error) {
- t.Fatalf("bad: %v", err)
+ require.NoError(t, err)
})
- errStr := connErr.Error()
- if !strings.Contains(errStr, "explicit max ttl") {
- t.Fatalf("Expect explicit max ttl error")
+ require.Contains(t, connErr.Error(), "explicit max ttl")
+ require.Contains(t, connErr.Error(), "non-zero period")
+}
+
+// TestVaultClient_ValidateRole_Success asserts that a valid token role
+// gets marked as valid
+func TestVaultClient_ValidateRole_Success(t *testing.T) {
+ t.Parallel()
+ v := testutil.NewTestVault(t)
+ defer v.Stop()
+
+ // Set the configs token in a new test role
+ vaultPolicies := map[string]string{
+ "nomad-role-create": nomadRoleCreatePolicy,
+ "nomad-role-management": nomadRoleManagementPolicy,
}
+ data := map[string]interface{}{
+ "allowed_policies": "default,root",
+ "orphan": true,
+ "renewable": true,
+ "token_period": 1000,
+ }
+ v.Config.Token = testVaultRoleAndToken(v, t, vaultPolicies, data, nil)
+
+ logger := testlog.HCLogger(t)
+ v.Config.ConnectionRetryIntv = 100 * time.Millisecond
+ client, err := NewVaultClient(v.Config, logger, nil)
+ require.NoError(t, err)
+
+ defer client.Stop()
+
+ // Wait for an error
+ var conn bool
+ var connErr error
+ testutil.WaitForResult(func() (bool, error) {
+ conn, connErr = client.ConnectionEstablished()
+ if !conn {
+ return false, fmt.Errorf("Should connect")
+ }
+
+ if connErr != nil {
+ return false, connErr
+ }
+
+ return true, nil
+ }, func(err error) {
+ require.NoError(t, err)
+ })
+}
+
+// TestVaultClient_ValidateRole_Deprecated_Success asserts that a valid token
+// role gets marked as valid, even if it uses deprecated field, period
+func TestVaultClient_ValidateRole_Deprecated_Success(t *testing.T) {
+ t.Parallel()
+ v := testutil.NewTestVault(t)
+ defer v.Stop()
+
+ // Set the configs token in a new test role
+ vaultPolicies := map[string]string{
+ "nomad-role-create": nomadRoleCreatePolicy,
+ "nomad-role-management": nomadRoleManagementPolicy,
+ }
+ data := map[string]interface{}{
+ "allowed_policies": "default,root",
+ "orphan": true,
+ "renewable": true,
+ "period": 1000,
+ }
+ v.Config.Token = testVaultRoleAndToken(v, t, vaultPolicies, data, nil)
+
+ logger := testlog.HCLogger(t)
+ v.Config.ConnectionRetryIntv = 100 * time.Millisecond
+ client, err := NewVaultClient(v.Config, logger, nil)
+ require.NoError(t, err)
+
+ defer client.Stop()
+
+ // Wait for an error
+ var conn bool
+ var connErr error
+ testutil.WaitForResult(func() (bool, error) {
+ conn, connErr = client.ConnectionEstablished()
+ if !conn {
+ return false, fmt.Errorf("Should connect")
+ }
+
+ if connErr != nil {
+ return false, connErr
+ }
+
+ return true, nil
+ }, func(err error) {
+ require.NoError(t, err)
+ })
}
func TestVaultClient_ValidateRole_NonExistant(t *testing.T) {
diff --git a/plugins/drivers/client.go b/plugins/drivers/client.go
index 357d5cd25..e4ffe19a9 100644
--- a/plugins/drivers/client.go
+++ b/plugins/drivers/client.go
@@ -465,17 +465,17 @@ func (d *driverPluginClient) ExecTaskStreamingRaw(ctx context.Context,
}
}
-func (d *driverPluginClient) CreateNetwork(allocID string) (*NetworkIsolationSpec, error) {
+func (d *driverPluginClient) CreateNetwork(allocID string) (*NetworkIsolationSpec, bool, error) {
req := &proto.CreateNetworkRequest{
AllocId: allocID,
}
resp, err := d.client.CreateNetwork(d.doneCtx, req)
if err != nil {
- return nil, grpcutils.HandleGrpcErr(err, d.doneCtx)
+ return nil, false, grpcutils.HandleGrpcErr(err, d.doneCtx)
}
- return NetworkIsolationSpecFromProto(resp.IsolationSpec), nil
+ return NetworkIsolationSpecFromProto(resp.IsolationSpec), resp.Created, nil
}
func (d *driverPluginClient) DestroyNetwork(allocID string, spec *NetworkIsolationSpec) error {
diff --git a/plugins/drivers/driver.go b/plugins/drivers/driver.go
index d921b4eb2..a4259a6f8 100644
--- a/plugins/drivers/driver.go
+++ b/plugins/drivers/driver.go
@@ -83,7 +83,7 @@ type ExecOptions struct {
// network namespace for which tasks can join. This only needs to be implemented
// if the driver MUST create the network namespace
type DriverNetworkManager interface {
- CreateNetwork(allocID string) (*NetworkIsolationSpec, error)
+ CreateNetwork(allocID string) (*NetworkIsolationSpec, bool, error)
DestroyNetwork(allocID string, spec *NetworkIsolationSpec) error
}
@@ -357,15 +357,17 @@ func (d *DeviceConfig) Copy() *DeviceConfig {
}
type MountConfig struct {
- TaskPath string
- HostPath string
- Readonly bool
+ TaskPath string
+ HostPath string
+ Readonly bool
+ PropagationMode string
}
func (m *MountConfig) IsEqual(o *MountConfig) bool {
return m.TaskPath == o.TaskPath &&
m.HostPath == o.HostPath &&
- m.Readonly == o.Readonly
+ m.Readonly == o.Readonly &&
+ m.PropagationMode == o.PropagationMode
}
func (m *MountConfig) Copy() *MountConfig {
diff --git a/plugins/drivers/proto/driver.pb.go b/plugins/drivers/proto/driver.pb.go
index e705bbc43..8a2087c5f 100644
--- a/plugins/drivers/proto/driver.pb.go
+++ b/plugins/drivers/proto/driver.pb.go
@@ -50,7 +50,7 @@ func (x TaskState) String() string {
return proto.EnumName(TaskState_name, int32(x))
}
func (TaskState) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{0}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{0}
}
type FingerprintResponse_HealthState int32
@@ -76,7 +76,7 @@ func (x FingerprintResponse_HealthState) String() string {
return proto.EnumName(FingerprintResponse_HealthState_name, int32(x))
}
func (FingerprintResponse_HealthState) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{5, 0}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{5, 0}
}
type StartTaskResponse_Result int32
@@ -102,7 +102,7 @@ func (x StartTaskResponse_Result) String() string {
return proto.EnumName(StartTaskResponse_Result_name, int32(x))
}
func (StartTaskResponse_Result) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{9, 0}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{9, 0}
}
type DriverCapabilities_FSIsolation int32
@@ -128,7 +128,7 @@ func (x DriverCapabilities_FSIsolation) String() string {
return proto.EnumName(DriverCapabilities_FSIsolation_name, int32(x))
}
func (DriverCapabilities_FSIsolation) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{32, 0}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{32, 0}
}
type NetworkIsolationSpec_NetworkIsolationMode int32
@@ -157,7 +157,7 @@ func (x NetworkIsolationSpec_NetworkIsolationMode) String() string {
return proto.EnumName(NetworkIsolationSpec_NetworkIsolationMode_name, int32(x))
}
func (NetworkIsolationSpec_NetworkIsolationMode) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{33, 0}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{33, 0}
}
type CPUUsage_Fields int32
@@ -192,7 +192,7 @@ func (x CPUUsage_Fields) String() string {
return proto.EnumName(CPUUsage_Fields_name, int32(x))
}
func (CPUUsage_Fields) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{51, 0}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{51, 0}
}
type MemoryUsage_Fields int32
@@ -230,7 +230,7 @@ func (x MemoryUsage_Fields) String() string {
return proto.EnumName(MemoryUsage_Fields_name, int32(x))
}
func (MemoryUsage_Fields) EnumDescriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{52, 0}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{52, 0}
}
type TaskConfigSchemaRequest struct {
@@ -243,7 +243,7 @@ func (m *TaskConfigSchemaRequest) Reset() { *m = TaskConfigSchemaRequest
func (m *TaskConfigSchemaRequest) String() string { return proto.CompactTextString(m) }
func (*TaskConfigSchemaRequest) ProtoMessage() {}
func (*TaskConfigSchemaRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{0}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{0}
}
func (m *TaskConfigSchemaRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TaskConfigSchemaRequest.Unmarshal(m, b)
@@ -275,7 +275,7 @@ func (m *TaskConfigSchemaResponse) Reset() { *m = TaskConfigSchemaRespon
func (m *TaskConfigSchemaResponse) String() string { return proto.CompactTextString(m) }
func (*TaskConfigSchemaResponse) ProtoMessage() {}
func (*TaskConfigSchemaResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{1}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{1}
}
func (m *TaskConfigSchemaResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TaskConfigSchemaResponse.Unmarshal(m, b)
@@ -312,7 +312,7 @@ func (m *CapabilitiesRequest) Reset() { *m = CapabilitiesRequest{} }
func (m *CapabilitiesRequest) String() string { return proto.CompactTextString(m) }
func (*CapabilitiesRequest) ProtoMessage() {}
func (*CapabilitiesRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{2}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{2}
}
func (m *CapabilitiesRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CapabilitiesRequest.Unmarshal(m, b)
@@ -347,7 +347,7 @@ func (m *CapabilitiesResponse) Reset() { *m = CapabilitiesResponse{} }
func (m *CapabilitiesResponse) String() string { return proto.CompactTextString(m) }
func (*CapabilitiesResponse) ProtoMessage() {}
func (*CapabilitiesResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{3}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{3}
}
func (m *CapabilitiesResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CapabilitiesResponse.Unmarshal(m, b)
@@ -384,7 +384,7 @@ func (m *FingerprintRequest) Reset() { *m = FingerprintRequest{} }
func (m *FingerprintRequest) String() string { return proto.CompactTextString(m) }
func (*FingerprintRequest) ProtoMessage() {}
func (*FingerprintRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{4}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{4}
}
func (m *FingerprintRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FingerprintRequest.Unmarshal(m, b)
@@ -427,7 +427,7 @@ func (m *FingerprintResponse) Reset() { *m = FingerprintResponse{} }
func (m *FingerprintResponse) String() string { return proto.CompactTextString(m) }
func (*FingerprintResponse) ProtoMessage() {}
func (*FingerprintResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{5}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{5}
}
func (m *FingerprintResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_FingerprintResponse.Unmarshal(m, b)
@@ -482,7 +482,7 @@ func (m *RecoverTaskRequest) Reset() { *m = RecoverTaskRequest{} }
func (m *RecoverTaskRequest) String() string { return proto.CompactTextString(m) }
func (*RecoverTaskRequest) ProtoMessage() {}
func (*RecoverTaskRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{6}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{6}
}
func (m *RecoverTaskRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RecoverTaskRequest.Unmarshal(m, b)
@@ -526,7 +526,7 @@ func (m *RecoverTaskResponse) Reset() { *m = RecoverTaskResponse{} }
func (m *RecoverTaskResponse) String() string { return proto.CompactTextString(m) }
func (*RecoverTaskResponse) ProtoMessage() {}
func (*RecoverTaskResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{7}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{7}
}
func (m *RecoverTaskResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_RecoverTaskResponse.Unmarshal(m, b)
@@ -558,7 +558,7 @@ func (m *StartTaskRequest) Reset() { *m = StartTaskRequest{} }
func (m *StartTaskRequest) String() string { return proto.CompactTextString(m) }
func (*StartTaskRequest) ProtoMessage() {}
func (*StartTaskRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{8}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{8}
}
func (m *StartTaskRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StartTaskRequest.Unmarshal(m, b)
@@ -612,7 +612,7 @@ func (m *StartTaskResponse) Reset() { *m = StartTaskResponse{} }
func (m *StartTaskResponse) String() string { return proto.CompactTextString(m) }
func (*StartTaskResponse) ProtoMessage() {}
func (*StartTaskResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{9}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{9}
}
func (m *StartTaskResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StartTaskResponse.Unmarshal(m, b)
@@ -672,7 +672,7 @@ func (m *WaitTaskRequest) Reset() { *m = WaitTaskRequest{} }
func (m *WaitTaskRequest) String() string { return proto.CompactTextString(m) }
func (*WaitTaskRequest) ProtoMessage() {}
func (*WaitTaskRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{10}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{10}
}
func (m *WaitTaskRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WaitTaskRequest.Unmarshal(m, b)
@@ -713,7 +713,7 @@ func (m *WaitTaskResponse) Reset() { *m = WaitTaskResponse{} }
func (m *WaitTaskResponse) String() string { return proto.CompactTextString(m) }
func (*WaitTaskResponse) ProtoMessage() {}
func (*WaitTaskResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{11}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{11}
}
func (m *WaitTaskResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_WaitTaskResponse.Unmarshal(m, b)
@@ -765,7 +765,7 @@ func (m *StopTaskRequest) Reset() { *m = StopTaskRequest{} }
func (m *StopTaskRequest) String() string { return proto.CompactTextString(m) }
func (*StopTaskRequest) ProtoMessage() {}
func (*StopTaskRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{12}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{12}
}
func (m *StopTaskRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StopTaskRequest.Unmarshal(m, b)
@@ -816,7 +816,7 @@ func (m *StopTaskResponse) Reset() { *m = StopTaskResponse{} }
func (m *StopTaskResponse) String() string { return proto.CompactTextString(m) }
func (*StopTaskResponse) ProtoMessage() {}
func (*StopTaskResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{13}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{13}
}
func (m *StopTaskResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_StopTaskResponse.Unmarshal(m, b)
@@ -850,7 +850,7 @@ func (m *DestroyTaskRequest) Reset() { *m = DestroyTaskRequest{} }
func (m *DestroyTaskRequest) String() string { return proto.CompactTextString(m) }
func (*DestroyTaskRequest) ProtoMessage() {}
func (*DestroyTaskRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{14}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{14}
}
func (m *DestroyTaskRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DestroyTaskRequest.Unmarshal(m, b)
@@ -894,7 +894,7 @@ func (m *DestroyTaskResponse) Reset() { *m = DestroyTaskResponse{} }
func (m *DestroyTaskResponse) String() string { return proto.CompactTextString(m) }
func (*DestroyTaskResponse) ProtoMessage() {}
func (*DestroyTaskResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{15}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{15}
}
func (m *DestroyTaskResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DestroyTaskResponse.Unmarshal(m, b)
@@ -926,7 +926,7 @@ func (m *InspectTaskRequest) Reset() { *m = InspectTaskRequest{} }
func (m *InspectTaskRequest) String() string { return proto.CompactTextString(m) }
func (*InspectTaskRequest) ProtoMessage() {}
func (*InspectTaskRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{16}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{16}
}
func (m *InspectTaskRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_InspectTaskRequest.Unmarshal(m, b)
@@ -969,7 +969,7 @@ func (m *InspectTaskResponse) Reset() { *m = InspectTaskResponse{} }
func (m *InspectTaskResponse) String() string { return proto.CompactTextString(m) }
func (*InspectTaskResponse) ProtoMessage() {}
func (*InspectTaskResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{17}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{17}
}
func (m *InspectTaskResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_InspectTaskResponse.Unmarshal(m, b)
@@ -1024,7 +1024,7 @@ func (m *TaskStatsRequest) Reset() { *m = TaskStatsRequest{} }
func (m *TaskStatsRequest) String() string { return proto.CompactTextString(m) }
func (*TaskStatsRequest) ProtoMessage() {}
func (*TaskStatsRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{18}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{18}
}
func (m *TaskStatsRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TaskStatsRequest.Unmarshal(m, b)
@@ -1070,7 +1070,7 @@ func (m *TaskStatsResponse) Reset() { *m = TaskStatsResponse{} }
func (m *TaskStatsResponse) String() string { return proto.CompactTextString(m) }
func (*TaskStatsResponse) ProtoMessage() {}
func (*TaskStatsResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{19}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{19}
}
func (m *TaskStatsResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TaskStatsResponse.Unmarshal(m, b)
@@ -1107,7 +1107,7 @@ func (m *TaskEventsRequest) Reset() { *m = TaskEventsRequest{} }
func (m *TaskEventsRequest) String() string { return proto.CompactTextString(m) }
func (*TaskEventsRequest) ProtoMessage() {}
func (*TaskEventsRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{20}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{20}
}
func (m *TaskEventsRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TaskEventsRequest.Unmarshal(m, b)
@@ -1141,7 +1141,7 @@ func (m *SignalTaskRequest) Reset() { *m = SignalTaskRequest{} }
func (m *SignalTaskRequest) String() string { return proto.CompactTextString(m) }
func (*SignalTaskRequest) ProtoMessage() {}
func (*SignalTaskRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{21}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{21}
}
func (m *SignalTaskRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalTaskRequest.Unmarshal(m, b)
@@ -1185,7 +1185,7 @@ func (m *SignalTaskResponse) Reset() { *m = SignalTaskResponse{} }
func (m *SignalTaskResponse) String() string { return proto.CompactTextString(m) }
func (*SignalTaskResponse) ProtoMessage() {}
func (*SignalTaskResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{22}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{22}
}
func (m *SignalTaskResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SignalTaskResponse.Unmarshal(m, b)
@@ -1222,7 +1222,7 @@ func (m *ExecTaskRequest) Reset() { *m = ExecTaskRequest{} }
func (m *ExecTaskRequest) String() string { return proto.CompactTextString(m) }
func (*ExecTaskRequest) ProtoMessage() {}
func (*ExecTaskRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{23}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{23}
}
func (m *ExecTaskRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ExecTaskRequest.Unmarshal(m, b)
@@ -1279,7 +1279,7 @@ func (m *ExecTaskResponse) Reset() { *m = ExecTaskResponse{} }
func (m *ExecTaskResponse) String() string { return proto.CompactTextString(m) }
func (*ExecTaskResponse) ProtoMessage() {}
func (*ExecTaskResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{24}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{24}
}
func (m *ExecTaskResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ExecTaskResponse.Unmarshal(m, b)
@@ -1332,7 +1332,7 @@ func (m *ExecTaskStreamingIOOperation) Reset() { *m = ExecTaskStreamingI
func (m *ExecTaskStreamingIOOperation) String() string { return proto.CompactTextString(m) }
func (*ExecTaskStreamingIOOperation) ProtoMessage() {}
func (*ExecTaskStreamingIOOperation) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{25}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{25}
}
func (m *ExecTaskStreamingIOOperation) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ExecTaskStreamingIOOperation.Unmarshal(m, b)
@@ -1379,7 +1379,7 @@ func (m *ExecTaskStreamingRequest) Reset() { *m = ExecTaskStreamingReque
func (m *ExecTaskStreamingRequest) String() string { return proto.CompactTextString(m) }
func (*ExecTaskStreamingRequest) ProtoMessage() {}
func (*ExecTaskStreamingRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{26}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{26}
}
func (m *ExecTaskStreamingRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ExecTaskStreamingRequest.Unmarshal(m, b)
@@ -1433,7 +1433,7 @@ func (m *ExecTaskStreamingRequest_Setup) Reset() { *m = ExecTaskStreamin
func (m *ExecTaskStreamingRequest_Setup) String() string { return proto.CompactTextString(m) }
func (*ExecTaskStreamingRequest_Setup) ProtoMessage() {}
func (*ExecTaskStreamingRequest_Setup) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{26, 0}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{26, 0}
}
func (m *ExecTaskStreamingRequest_Setup) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ExecTaskStreamingRequest_Setup.Unmarshal(m, b)
@@ -1486,7 +1486,7 @@ func (m *ExecTaskStreamingRequest_TerminalSize) Reset() { *m = ExecTaskS
func (m *ExecTaskStreamingRequest_TerminalSize) String() string { return proto.CompactTextString(m) }
func (*ExecTaskStreamingRequest_TerminalSize) ProtoMessage() {}
func (*ExecTaskStreamingRequest_TerminalSize) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{26, 1}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{26, 1}
}
func (m *ExecTaskStreamingRequest_TerminalSize) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ExecTaskStreamingRequest_TerminalSize.Unmarshal(m, b)
@@ -1534,7 +1534,7 @@ func (m *ExecTaskStreamingResponse) Reset() { *m = ExecTaskStreamingResp
func (m *ExecTaskStreamingResponse) String() string { return proto.CompactTextString(m) }
func (*ExecTaskStreamingResponse) ProtoMessage() {}
func (*ExecTaskStreamingResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{27}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{27}
}
func (m *ExecTaskStreamingResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ExecTaskStreamingResponse.Unmarshal(m, b)
@@ -1594,7 +1594,7 @@ func (m *CreateNetworkRequest) Reset() { *m = CreateNetworkRequest{} }
func (m *CreateNetworkRequest) String() string { return proto.CompactTextString(m) }
func (*CreateNetworkRequest) ProtoMessage() {}
func (*CreateNetworkRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{28}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{28}
}
func (m *CreateNetworkRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateNetworkRequest.Unmarshal(m, b)
@@ -1622,17 +1622,21 @@ func (m *CreateNetworkRequest) GetAllocId() string {
}
type CreateNetworkResponse struct {
- IsolationSpec *NetworkIsolationSpec `protobuf:"bytes,1,opt,name=isolation_spec,json=isolationSpec,proto3" json:"isolation_spec,omitempty"`
- XXX_NoUnkeyedLiteral struct{} `json:"-"`
- XXX_unrecognized []byte `json:"-"`
- XXX_sizecache int32 `json:"-"`
+ IsolationSpec *NetworkIsolationSpec `protobuf:"bytes,1,opt,name=isolation_spec,json=isolationSpec,proto3" json:"isolation_spec,omitempty"`
+ // created indicates that the network namespace is newly created
+ // as a result of this request. if false, the NetworkIsolationSpec
+ // value returned is an existing spec.
+ Created bool `protobuf:"varint,2,opt,name=created,proto3" json:"created,omitempty"`
+ XXX_NoUnkeyedLiteral struct{} `json:"-"`
+ XXX_unrecognized []byte `json:"-"`
+ XXX_sizecache int32 `json:"-"`
}
func (m *CreateNetworkResponse) Reset() { *m = CreateNetworkResponse{} }
func (m *CreateNetworkResponse) String() string { return proto.CompactTextString(m) }
func (*CreateNetworkResponse) ProtoMessage() {}
func (*CreateNetworkResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{29}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{29}
}
func (m *CreateNetworkResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CreateNetworkResponse.Unmarshal(m, b)
@@ -1659,6 +1663,13 @@ func (m *CreateNetworkResponse) GetIsolationSpec() *NetworkIsolationSpec {
return nil
}
+func (m *CreateNetworkResponse) GetCreated() bool {
+ if m != nil {
+ return m.Created
+ }
+ return false
+}
+
type DestroyNetworkRequest struct {
// AllocID of the allocation the network is associated with
AllocId string `protobuf:"bytes,1,opt,name=alloc_id,json=allocId,proto3" json:"alloc_id,omitempty"`
@@ -1672,7 +1683,7 @@ func (m *DestroyNetworkRequest) Reset() { *m = DestroyNetworkRequest{} }
func (m *DestroyNetworkRequest) String() string { return proto.CompactTextString(m) }
func (*DestroyNetworkRequest) ProtoMessage() {}
func (*DestroyNetworkRequest) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{30}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{30}
}
func (m *DestroyNetworkRequest) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DestroyNetworkRequest.Unmarshal(m, b)
@@ -1716,7 +1727,7 @@ func (m *DestroyNetworkResponse) Reset() { *m = DestroyNetworkResponse{}
func (m *DestroyNetworkResponse) String() string { return proto.CompactTextString(m) }
func (*DestroyNetworkResponse) ProtoMessage() {}
func (*DestroyNetworkResponse) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{31}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{31}
}
func (m *DestroyNetworkResponse) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DestroyNetworkResponse.Unmarshal(m, b)
@@ -1756,7 +1767,7 @@ func (m *DriverCapabilities) Reset() { *m = DriverCapabilities{} }
func (m *DriverCapabilities) String() string { return proto.CompactTextString(m) }
func (*DriverCapabilities) ProtoMessage() {}
func (*DriverCapabilities) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{32}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{32}
}
func (m *DriverCapabilities) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DriverCapabilities.Unmarshal(m, b)
@@ -1824,7 +1835,7 @@ func (m *NetworkIsolationSpec) Reset() { *m = NetworkIsolationSpec{} }
func (m *NetworkIsolationSpec) String() string { return proto.CompactTextString(m) }
func (*NetworkIsolationSpec) ProtoMessage() {}
func (*NetworkIsolationSpec) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{33}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{33}
}
func (m *NetworkIsolationSpec) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_NetworkIsolationSpec.Unmarshal(m, b)
@@ -1913,7 +1924,7 @@ func (m *TaskConfig) Reset() { *m = TaskConfig{} }
func (m *TaskConfig) String() string { return proto.CompactTextString(m) }
func (*TaskConfig) ProtoMessage() {}
func (*TaskConfig) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{34}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{34}
}
func (m *TaskConfig) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TaskConfig.Unmarshal(m, b)
@@ -2059,7 +2070,7 @@ func (m *Resources) Reset() { *m = Resources{} }
func (m *Resources) String() string { return proto.CompactTextString(m) }
func (*Resources) ProtoMessage() {}
func (*Resources) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{35}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{35}
}
func (m *Resources) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Resources.Unmarshal(m, b)
@@ -2106,7 +2117,7 @@ func (m *AllocatedTaskResources) Reset() { *m = AllocatedTaskResources{}
func (m *AllocatedTaskResources) String() string { return proto.CompactTextString(m) }
func (*AllocatedTaskResources) ProtoMessage() {}
func (*AllocatedTaskResources) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{36}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{36}
}
func (m *AllocatedTaskResources) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AllocatedTaskResources.Unmarshal(m, b)
@@ -2158,7 +2169,7 @@ func (m *AllocatedCpuResources) Reset() { *m = AllocatedCpuResources{} }
func (m *AllocatedCpuResources) String() string { return proto.CompactTextString(m) }
func (*AllocatedCpuResources) ProtoMessage() {}
func (*AllocatedCpuResources) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{37}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{37}
}
func (m *AllocatedCpuResources) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AllocatedCpuResources.Unmarshal(m, b)
@@ -2196,7 +2207,7 @@ func (m *AllocatedMemoryResources) Reset() { *m = AllocatedMemoryResourc
func (m *AllocatedMemoryResources) String() string { return proto.CompactTextString(m) }
func (*AllocatedMemoryResources) ProtoMessage() {}
func (*AllocatedMemoryResources) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{38}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{38}
}
func (m *AllocatedMemoryResources) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_AllocatedMemoryResources.Unmarshal(m, b)
@@ -2239,7 +2250,7 @@ func (m *NetworkResource) Reset() { *m = NetworkResource{} }
func (m *NetworkResource) String() string { return proto.CompactTextString(m) }
func (*NetworkResource) ProtoMessage() {}
func (*NetworkResource) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{39}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{39}
}
func (m *NetworkResource) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_NetworkResource.Unmarshal(m, b)
@@ -2313,7 +2324,7 @@ func (m *NetworkPort) Reset() { *m = NetworkPort{} }
func (m *NetworkPort) String() string { return proto.CompactTextString(m) }
func (*NetworkPort) ProtoMessage() {}
func (*NetworkPort) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{40}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{40}
}
func (m *NetworkPort) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_NetworkPort.Unmarshal(m, b)
@@ -2373,7 +2384,7 @@ func (m *LinuxResources) Reset() { *m = LinuxResources{} }
func (m *LinuxResources) String() string { return proto.CompactTextString(m) }
func (*LinuxResources) ProtoMessage() {}
func (*LinuxResources) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{41}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{41}
}
func (m *LinuxResources) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_LinuxResources.Unmarshal(m, b)
@@ -2465,7 +2476,7 @@ func (m *Mount) Reset() { *m = Mount{} }
func (m *Mount) String() string { return proto.CompactTextString(m) }
func (*Mount) ProtoMessage() {}
func (*Mount) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{42}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{42}
}
func (m *Mount) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Mount.Unmarshal(m, b)
@@ -2528,7 +2539,7 @@ func (m *Device) Reset() { *m = Device{} }
func (m *Device) String() string { return proto.CompactTextString(m) }
func (*Device) ProtoMessage() {}
func (*Device) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{43}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{43}
}
func (m *Device) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Device.Unmarshal(m, b)
@@ -2589,7 +2600,7 @@ func (m *TaskHandle) Reset() { *m = TaskHandle{} }
func (m *TaskHandle) String() string { return proto.CompactTextString(m) }
func (*TaskHandle) ProtoMessage() {}
func (*TaskHandle) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{44}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{44}
}
func (m *TaskHandle) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TaskHandle.Unmarshal(m, b)
@@ -2656,7 +2667,7 @@ func (m *NetworkOverride) Reset() { *m = NetworkOverride{} }
func (m *NetworkOverride) String() string { return proto.CompactTextString(m) }
func (*NetworkOverride) ProtoMessage() {}
func (*NetworkOverride) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{45}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{45}
}
func (m *NetworkOverride) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_NetworkOverride.Unmarshal(m, b)
@@ -2714,7 +2725,7 @@ func (m *ExitResult) Reset() { *m = ExitResult{} }
func (m *ExitResult) String() string { return proto.CompactTextString(m) }
func (*ExitResult) ProtoMessage() {}
func (*ExitResult) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{46}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{46}
}
func (m *ExitResult) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_ExitResult.Unmarshal(m, b)
@@ -2777,7 +2788,7 @@ func (m *TaskStatus) Reset() { *m = TaskStatus{} }
func (m *TaskStatus) String() string { return proto.CompactTextString(m) }
func (*TaskStatus) ProtoMessage() {}
func (*TaskStatus) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{47}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{47}
}
func (m *TaskStatus) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TaskStatus.Unmarshal(m, b)
@@ -2852,7 +2863,7 @@ func (m *TaskDriverStatus) Reset() { *m = TaskDriverStatus{} }
func (m *TaskDriverStatus) String() string { return proto.CompactTextString(m) }
func (*TaskDriverStatus) ProtoMessage() {}
func (*TaskDriverStatus) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{48}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{48}
}
func (m *TaskDriverStatus) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TaskDriverStatus.Unmarshal(m, b)
@@ -2897,7 +2908,7 @@ func (m *TaskStats) Reset() { *m = TaskStats{} }
func (m *TaskStats) String() string { return proto.CompactTextString(m) }
func (*TaskStats) ProtoMessage() {}
func (*TaskStats) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{49}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{49}
}
func (m *TaskStats) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TaskStats.Unmarshal(m, b)
@@ -2959,7 +2970,7 @@ func (m *TaskResourceUsage) Reset() { *m = TaskResourceUsage{} }
func (m *TaskResourceUsage) String() string { return proto.CompactTextString(m) }
func (*TaskResourceUsage) ProtoMessage() {}
func (*TaskResourceUsage) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{50}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{50}
}
func (m *TaskResourceUsage) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_TaskResourceUsage.Unmarshal(m, b)
@@ -3011,7 +3022,7 @@ func (m *CPUUsage) Reset() { *m = CPUUsage{} }
func (m *CPUUsage) String() string { return proto.CompactTextString(m) }
func (*CPUUsage) ProtoMessage() {}
func (*CPUUsage) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{51}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{51}
}
func (m *CPUUsage) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CPUUsage.Unmarshal(m, b)
@@ -3099,7 +3110,7 @@ func (m *MemoryUsage) Reset() { *m = MemoryUsage{} }
func (m *MemoryUsage) String() string { return proto.CompactTextString(m) }
func (*MemoryUsage) ProtoMessage() {}
func (*MemoryUsage) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{52}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{52}
}
func (m *MemoryUsage) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_MemoryUsage.Unmarshal(m, b)
@@ -3197,7 +3208,7 @@ func (m *DriverTaskEvent) Reset() { *m = DriverTaskEvent{} }
func (m *DriverTaskEvent) String() string { return proto.CompactTextString(m) }
func (*DriverTaskEvent) ProtoMessage() {}
func (*DriverTaskEvent) Descriptor() ([]byte, []int) {
- return fileDescriptor_driver_3d62bf87918f3eb8, []int{53}
+ return fileDescriptor_driver_8edefdede9e0ed2d, []int{53}
}
func (m *DriverTaskEvent) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_DriverTaskEvent.Unmarshal(m, b)
@@ -4087,229 +4098,230 @@ var _Driver_serviceDesc = grpc.ServiceDesc{
}
func init() {
- proto.RegisterFile("plugins/drivers/proto/driver.proto", fileDescriptor_driver_3d62bf87918f3eb8)
+ proto.RegisterFile("plugins/drivers/proto/driver.proto", fileDescriptor_driver_8edefdede9e0ed2d)
}
-var fileDescriptor_driver_3d62bf87918f3eb8 = []byte{
- // 3516 bytes of a gzipped FileDescriptorProto
- 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0x4f, 0x6f, 0x23, 0xc9,
- 0x75, 0x57, 0xf3, 0x9f, 0xc8, 0x47, 0x89, 0x6a, 0x95, 0xa4, 0x59, 0x0e, 0x37, 0xc9, 0x8e, 0x1b,
- 0x70, 0x20, 0xd8, 0xbb, 0xd4, 0xae, 0x8c, 0xec, 0xac, 0xd6, 0xb3, 0x9e, 0xe5, 0x52, 0x1c, 0x49,
- 0x3b, 0x12, 0xa5, 0x14, 0x29, 0x8c, 0x27, 0x1b, 0x6f, 0xa7, 0xd5, 0x5d, 0x43, 0xf6, 0x88, 0xfd,
- 0x67, 0xba, 0x8b, 0x1a, 0xc9, 0x46, 0x90, 0xc0, 0x01, 0x02, 0x07, 0x48, 0x90, 0x5c, 0x1c, 0x5f,
- 0x72, 0x08, 0x9c, 0x63, 0xf2, 0x01, 0x82, 0x04, 0x3e, 0xe7, 0x43, 0x24, 0x97, 0xdc, 0x72, 0xc9,
- 0x21, 0xdf, 0x20, 0xa8, 0x3f, 0xdd, 0xec, 0x16, 0x39, 0x9e, 0x26, 0x35, 0xa7, 0xee, 0x7a, 0x55,
- 0xf5, 0xab, 0x57, 0xef, 0xbd, 0xaa, 0xf7, 0xaa, 0xea, 0x81, 0xe6, 0x8f, 0xc6, 0x03, 0xdb, 0x0d,
- 0x77, 0xac, 0xc0, 0xbe, 0x22, 0x41, 0xb8, 0xe3, 0x07, 0x1e, 0xf5, 0x64, 0xa9, 0xc9, 0x0b, 0xe8,
- 0xbb, 0x43, 0x23, 0x1c, 0xda, 0xa6, 0x17, 0xf8, 0x4d, 0xd7, 0x73, 0x0c, 0xab, 0x29, 0xfb, 0x34,
- 0x65, 0x1f, 0xd1, 0xac, 0xf1, 0x7b, 0x03, 0xcf, 0x1b, 0x8c, 0x88, 0x40, 0xb8, 0x18, 0xbf, 0xd8,
- 0xb1, 0xc6, 0x81, 0x41, 0x6d, 0xcf, 0x95, 0xf5, 0x1f, 0xdc, 0xae, 0xa7, 0xb6, 0x43, 0x42, 0x6a,
- 0x38, 0xbe, 0x6c, 0xf0, 0xe5, 0xc0, 0xa6, 0xc3, 0xf1, 0x45, 0xd3, 0xf4, 0x9c, 0x9d, 0x78, 0xc8,
- 0x1d, 0x3e, 0xe4, 0x4e, 0xc4, 0x66, 0x38, 0x34, 0x02, 0x62, 0xed, 0x0c, 0xcd, 0x51, 0xe8, 0x13,
- 0x93, 0x7d, 0x75, 0xf6, 0x23, 0x11, 0x0e, 0xb2, 0x23, 0x84, 0x34, 0x18, 0x9b, 0x34, 0x9a, 0xaf,
- 0x41, 0x69, 0x60, 0x5f, 0x8c, 0x29, 0x11, 0x40, 0xda, 0x7d, 0x78, 0xaf, 0x6f, 0x84, 0x97, 0x6d,
- 0xcf, 0x7d, 0x61, 0x0f, 0x7a, 0xe6, 0x90, 0x38, 0x06, 0x26, 0xaf, 0xc6, 0x24, 0xa4, 0xda, 0x1f,
- 0x43, 0x7d, 0xba, 0x2a, 0xf4, 0x3d, 0x37, 0x24, 0xe8, 0x4b, 0x28, 0x30, 0x6e, 0xea, 0xca, 0x03,
- 0x65, 0xbb, 0xba, 0xfb, 0x61, 0xf3, 0x4d, 0x82, 0x13, 0x3c, 0x34, 0xe5, 0x2c, 0x9a, 0x3d, 0x9f,
+var fileDescriptor_driver_8edefdede9e0ed2d = []byte{
+ // 3525 bytes of a gzipped FileDescriptorProto
+ 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x5a, 0x4f, 0x6f, 0x23, 0x47,
+ 0x76, 0x57, 0xf3, 0x9f, 0xc8, 0x47, 0x89, 0x6a, 0x95, 0xa4, 0x31, 0x87, 0x4e, 0xe2, 0xd9, 0x06,
+ 0x36, 0x10, 0x76, 0x6d, 0xca, 0xd6, 0x22, 0x1e, 0xcb, 0x3b, 0xde, 0x31, 0x4d, 0x71, 0x24, 0x79,
+ 0x24, 0x4a, 0x29, 0x52, 0x98, 0x9d, 0x38, 0xeb, 0x4e, 0xab, 0xbb, 0x86, 0xec, 0x11, 0xfb, 0x8f,
+ 0xbb, 0x8b, 0x1a, 0x69, 0x83, 0x20, 0xc1, 0x06, 0x08, 0x36, 0x40, 0x82, 0xe4, 0xe2, 0xec, 0x25,
+ 0x87, 0x60, 0x73, 0x4c, 0x3e, 0x40, 0x90, 0x60, 0xcf, 0xf9, 0x10, 0xc9, 0x25, 0xb7, 0x5c, 0x72,
+ 0xc8, 0x37, 0x58, 0xd4, 0x9f, 0x6e, 0x76, 0x8b, 0x1c, 0x4f, 0x93, 0x9a, 0x53, 0x77, 0xbd, 0xaa,
+ 0xfa, 0xd5, 0xab, 0xf7, 0x5e, 0xd5, 0x7b, 0x55, 0xf5, 0x40, 0xf3, 0x47, 0xe3, 0x81, 0xed, 0x86,
+ 0x3b, 0x56, 0x60, 0x5f, 0x91, 0x20, 0xdc, 0xf1, 0x03, 0x8f, 0x7a, 0xb2, 0xd4, 0xe4, 0x05, 0xf4,
+ 0xfd, 0xa1, 0x11, 0x0e, 0x6d, 0xd3, 0x0b, 0xfc, 0xa6, 0xeb, 0x39, 0x86, 0xd5, 0x94, 0x7d, 0x9a,
+ 0xb2, 0x8f, 0x68, 0xd6, 0xf8, 0xbd, 0x81, 0xe7, 0x0d, 0x46, 0x44, 0x20, 0x5c, 0x8c, 0x5f, 0xec,
+ 0x58, 0xe3, 0xc0, 0xa0, 0xb6, 0xe7, 0xca, 0xfa, 0xf7, 0x6e, 0xd7, 0x53, 0xdb, 0x21, 0x21, 0x35,
+ 0x1c, 0x5f, 0x36, 0xf8, 0x7c, 0x60, 0xd3, 0xe1, 0xf8, 0xa2, 0x69, 0x7a, 0xce, 0x4e, 0x3c, 0xe4,
+ 0x0e, 0x1f, 0x72, 0x27, 0x62, 0x33, 0x1c, 0x1a, 0x01, 0xb1, 0x76, 0x86, 0xe6, 0x28, 0xf4, 0x89,
+ 0xc9, 0xbe, 0x3a, 0xfb, 0x91, 0x08, 0x07, 0xd9, 0x11, 0x42, 0x1a, 0x8c, 0x4d, 0x1a, 0xcd, 0xd7,
+ 0xa0, 0x34, 0xb0, 0x2f, 0xc6, 0x94, 0x08, 0x20, 0xed, 0x3e, 0xbc, 0xd3, 0x37, 0xc2, 0xcb, 0xb6,
+ 0xe7, 0xbe, 0xb0, 0x07, 0x3d, 0x73, 0x48, 0x1c, 0x03, 0x93, 0x6f, 0xc6, 0x24, 0xa4, 0xda, 0x1f,
+ 0x43, 0x7d, 0xba, 0x2a, 0xf4, 0x3d, 0x37, 0x24, 0xe8, 0x73, 0x28, 0x30, 0x6e, 0xea, 0xca, 0x03,
+ 0x65, 0xbb, 0xba, 0xfb, 0x7e, 0xf3, 0x75, 0x82, 0x13, 0x3c, 0x34, 0xe5, 0x2c, 0x9a, 0x3d, 0x9f,
0x98, 0x98, 0xf7, 0xd4, 0xb6, 0x60, 0xa3, 0x6d, 0xf8, 0xc6, 0x85, 0x3d, 0xb2, 0xa9, 0x4d, 0xc2,
- 0x68, 0xd0, 0x31, 0x6c, 0xa6, 0xc9, 0x72, 0xc0, 0x9f, 0xc0, 0x8a, 0x99, 0xa0, 0xcb, 0x81, 0xf7,
+ 0x68, 0xd0, 0x31, 0x6c, 0xa6, 0xc9, 0x72, 0xc0, 0x9f, 0xc1, 0x8a, 0x99, 0xa0, 0xcb, 0x81, 0xf7,
0x9a, 0x99, 0x34, 0xd6, 0xdc, 0xe7, 0xa5, 0x14, 0x70, 0x0a, 0x4e, 0xdb, 0x04, 0xf4, 0xc4, 0x76,
0x07, 0x24, 0xf0, 0x03, 0xdb, 0xa5, 0x11, 0x33, 0xbf, 0xc9, 0xc3, 0x46, 0x8a, 0x2c, 0x99, 0x79,
- 0x09, 0x10, 0xcb, 0x91, 0xb1, 0x92, 0xdf, 0xae, 0xee, 0x7e, 0x9d, 0x91, 0x95, 0x19, 0x78, 0xcd,
- 0x56, 0x0c, 0xd6, 0x71, 0x69, 0x70, 0x83, 0x13, 0xe8, 0xe8, 0x5b, 0x28, 0x0d, 0x89, 0x31, 0xa2,
+ 0x09, 0x10, 0xcb, 0x91, 0xb1, 0x92, 0xdf, 0xae, 0xee, 0x7e, 0x99, 0x91, 0x95, 0x19, 0x78, 0xcd,
+ 0x56, 0x0c, 0xd6, 0x71, 0x69, 0x70, 0x83, 0x13, 0xe8, 0xe8, 0x6b, 0x28, 0x0d, 0x89, 0x31, 0xa2,
0xc3, 0x7a, 0xee, 0x81, 0xb2, 0x5d, 0xdb, 0x7d, 0x72, 0x87, 0x71, 0x0e, 0x39, 0x50, 0x8f, 0x1a,
- 0x94, 0x60, 0x89, 0x8a, 0x3e, 0x02, 0x24, 0xfe, 0x74, 0x8b, 0x84, 0x66, 0x60, 0xfb, 0xcc, 0x90,
+ 0x94, 0x60, 0x89, 0x8a, 0x3e, 0x00, 0x24, 0xfe, 0x74, 0x8b, 0x84, 0x66, 0x60, 0xfb, 0xcc, 0x90,
0xeb, 0xf9, 0x07, 0xca, 0x76, 0x05, 0xaf, 0x8b, 0x9a, 0xfd, 0x49, 0x45, 0xc3, 0x87, 0xb5, 0x5b,
0xdc, 0x22, 0x15, 0xf2, 0x97, 0xe4, 0x86, 0x6b, 0xa4, 0x82, 0xd9, 0x2f, 0x3a, 0x80, 0xe2, 0x95,
- 0x31, 0x1a, 0x13, 0xce, 0x72, 0x75, 0xf7, 0x93, 0xb7, 0x99, 0x87, 0x34, 0xd1, 0x89, 0x1c, 0xb0,
- 0xe8, 0xff, 0x79, 0xee, 0x33, 0x45, 0xdb, 0x83, 0x6a, 0x82, 0x6f, 0x54, 0x03, 0x38, 0xef, 0xee,
+ 0x31, 0x1a, 0x13, 0xce, 0x72, 0x75, 0xf7, 0xa3, 0x37, 0x99, 0x87, 0x34, 0xd1, 0x89, 0x1c, 0xb0,
+ 0xe8, 0xff, 0x69, 0xee, 0x13, 0x45, 0xdb, 0x83, 0x6a, 0x82, 0x6f, 0x54, 0x03, 0x38, 0xef, 0xee,
0x77, 0xfa, 0x9d, 0x76, 0xbf, 0xb3, 0xaf, 0x2e, 0xa1, 0x55, 0xa8, 0x9c, 0x77, 0x0f, 0x3b, 0xad,
0xe3, 0xfe, 0xe1, 0x73, 0x55, 0x41, 0x55, 0x58, 0x8e, 0x0a, 0x39, 0xed, 0x1a, 0x10, 0x26, 0xa6,
- 0x77, 0x45, 0x02, 0x66, 0xc8, 0x52, 0xab, 0xe8, 0x3d, 0x58, 0xa6, 0x46, 0x78, 0xa9, 0xdb, 0x96,
- 0xe4, 0xb9, 0xc4, 0x8a, 0x47, 0x16, 0x3a, 0x82, 0xd2, 0xd0, 0x70, 0xad, 0xd1, 0xdb, 0xf9, 0x4e,
+ 0x77, 0x45, 0x02, 0x66, 0xc8, 0x52, 0xab, 0xe8, 0x1d, 0x58, 0xa6, 0x46, 0x78, 0xa9, 0xdb, 0x96,
+ 0xe4, 0xb9, 0xc4, 0x8a, 0x47, 0x16, 0x3a, 0x82, 0xd2, 0xd0, 0x70, 0xad, 0xd1, 0x9b, 0xf9, 0x4e,
0x8b, 0x9a, 0x81, 0x1f, 0xf2, 0x8e, 0x58, 0x02, 0x30, 0xeb, 0x4e, 0x8d, 0x2c, 0x14, 0xa0, 0x3d,
0x07, 0xb5, 0x47, 0x8d, 0x80, 0x26, 0xd9, 0xe9, 0x40, 0x81, 0x8d, 0x2f, 0x2d, 0x7a, 0x9e, 0x31,
- 0xc5, 0xca, 0xc4, 0xbc, 0xbb, 0xf6, 0x7f, 0x39, 0x58, 0x4f, 0x60, 0x4b, 0x4b, 0x7d, 0x06, 0xa5,
+ 0xc5, 0xca, 0xc4, 0xbc, 0xbb, 0xf6, 0xff, 0x39, 0x58, 0x4f, 0x60, 0x4b, 0x4b, 0x7d, 0x06, 0xa5,
0x80, 0x84, 0xe3, 0x11, 0xe5, 0xf0, 0xb5, 0xdd, 0xc7, 0x19, 0xe1, 0xa7, 0x90, 0x9a, 0x98, 0xc3,
0x60, 0x09, 0x87, 0xb6, 0x41, 0x15, 0x3d, 0x74, 0x12, 0x04, 0x5e, 0xa0, 0x3b, 0xe1, 0x80, 0x4b,
0xad, 0x82, 0x6b, 0x82, 0xde, 0x61, 0xe4, 0x93, 0x70, 0x90, 0x90, 0x6a, 0xfe, 0x8e, 0x52, 0x45,
- 0x06, 0xa8, 0x2e, 0xa1, 0xaf, 0xbd, 0xe0, 0x52, 0x67, 0xa2, 0x0d, 0x6c, 0x8b, 0xd4, 0x0b, 0x1c,
- 0xf4, 0xd3, 0x8c, 0xa0, 0x5d, 0xd1, 0xfd, 0x54, 0xf6, 0xc6, 0x6b, 0x6e, 0x9a, 0xa0, 0x7d, 0x1f,
+ 0x06, 0xa8, 0x2e, 0xa1, 0xaf, 0xbc, 0xe0, 0x52, 0x67, 0xa2, 0x0d, 0x6c, 0x8b, 0xd4, 0x0b, 0x1c,
+ 0xf4, 0xe3, 0x8c, 0xa0, 0x5d, 0xd1, 0xfd, 0x54, 0xf6, 0xc6, 0x6b, 0x6e, 0x9a, 0xa0, 0xfd, 0x10,
0x4a, 0x62, 0xa6, 0xcc, 0x92, 0x7a, 0xe7, 0xed, 0x76, 0xa7, 0xd7, 0x53, 0x97, 0x50, 0x05, 0x8a,
- 0xb8, 0xd3, 0xc7, 0xcc, 0xc2, 0x2a, 0x50, 0x7c, 0xd2, 0xea, 0xb7, 0x8e, 0xd5, 0x9c, 0xf6, 0x3d,
+ 0xb8, 0xd3, 0xc7, 0xcc, 0xc2, 0x2a, 0x50, 0x7c, 0xd2, 0xea, 0xb7, 0x8e, 0xd5, 0x9c, 0xf6, 0x03,
0x58, 0x7b, 0x66, 0xd8, 0x34, 0x8b, 0x71, 0x69, 0x1e, 0xa8, 0x93, 0xb6, 0x52, 0x3b, 0x47, 0x29,
0xed, 0x64, 0x17, 0x4d, 0xe7, 0xda, 0xa6, 0xb7, 0xf4, 0xa1, 0x42, 0x9e, 0x04, 0x81, 0x54, 0x01,
- 0xfb, 0xd5, 0x5e, 0xc3, 0x5a, 0x8f, 0x7a, 0x7e, 0x26, 0xcb, 0xff, 0x01, 0x2c, 0x33, 0x1f, 0xe5,
+ 0xfb, 0xd5, 0x5e, 0xc1, 0x5a, 0x8f, 0x7a, 0x7e, 0x26, 0xcb, 0xff, 0x11, 0x2c, 0x33, 0x1f, 0xe5,
0x8d, 0xa9, 0x34, 0xfd, 0xfb, 0x4d, 0xe1, 0xc3, 0x9a, 0x91, 0x0f, 0x6b, 0xee, 0x4b, 0x1f, 0x87,
0xa3, 0x96, 0xe8, 0x1e, 0x94, 0x42, 0x7b, 0xe0, 0x1a, 0x23, 0xb9, 0x5b, 0xc8, 0x92, 0x86, 0x98,
0x91, 0x47, 0x03, 0x4b, 0xc3, 0x6f, 0x03, 0xda, 0x27, 0x21, 0x0d, 0xbc, 0x9b, 0x4c, 0xfc, 0x6c,
0x42, 0xf1, 0x85, 0x17, 0x98, 0x62, 0x21, 0x96, 0xb1, 0x28, 0xb0, 0x45, 0x95, 0x02, 0x91, 0xd8,
- 0x1f, 0x01, 0x3a, 0x72, 0x99, 0x4f, 0xc9, 0xa6, 0x88, 0xbf, 0xcb, 0xc1, 0x46, 0xaa, 0xbd, 0x54,
+ 0x1f, 0x00, 0x3a, 0x72, 0x99, 0x4f, 0xc9, 0xa6, 0x88, 0xbf, 0xcf, 0xc1, 0x46, 0xaa, 0xbd, 0x54,
0xc6, 0xe2, 0xeb, 0x90, 0x6d, 0x4c, 0xe3, 0x50, 0xac, 0x43, 0x74, 0x0a, 0x25, 0xd1, 0x42, 0x4a,
- 0xf2, 0xe1, 0x1c, 0x40, 0xc2, 0x4d, 0x49, 0x38, 0x09, 0x33, 0xd3, 0xe8, 0xf3, 0xef, 0xd6, 0xe8,
- 0x5f, 0x83, 0x1a, 0xcd, 0x23, 0x7c, 0xab, 0x6e, 0xbe, 0x86, 0x0d, 0xd3, 0x1b, 0x8d, 0x88, 0xc9,
- 0xac, 0x41, 0xb7, 0x5d, 0x4a, 0x82, 0x2b, 0x63, 0xf4, 0x76, 0xbb, 0x41, 0x93, 0x5e, 0x47, 0xb2,
- 0x93, 0xf6, 0x0d, 0xac, 0x27, 0x06, 0x96, 0x8a, 0x78, 0x02, 0xc5, 0x90, 0x11, 0xa4, 0x26, 0x3e,
- 0x9e, 0x53, 0x13, 0x21, 0x16, 0xdd, 0xb5, 0x0d, 0x01, 0xde, 0xb9, 0x22, 0x6e, 0x3c, 0x2d, 0x6d,
+ 0xf2, 0xe1, 0x1c, 0x40, 0xc2, 0x4d, 0x49, 0x38, 0x09, 0x33, 0xd3, 0xe8, 0xf3, 0x6f, 0xd7, 0xe8,
+ 0x5f, 0x81, 0x1a, 0xcd, 0x23, 0x7c, 0xa3, 0x6e, 0xbe, 0x84, 0x0d, 0xd3, 0x1b, 0x8d, 0x88, 0xc9,
+ 0xac, 0x41, 0xb7, 0x5d, 0x4a, 0x82, 0x2b, 0x63, 0xf4, 0x66, 0xbb, 0x41, 0x93, 0x5e, 0x47, 0xb2,
+ 0x93, 0xf6, 0x15, 0xac, 0x27, 0x06, 0x96, 0x8a, 0x78, 0x02, 0xc5, 0x90, 0x11, 0xa4, 0x26, 0x3e,
+ 0x9c, 0x53, 0x13, 0x21, 0x16, 0xdd, 0xb5, 0x0d, 0x01, 0xde, 0xb9, 0x22, 0x6e, 0x3c, 0x2d, 0x6d,
0x1f, 0xd6, 0x7b, 0xdc, 0x4c, 0x33, 0xd9, 0xe1, 0xc4, 0xc4, 0x73, 0x29, 0x13, 0xdf, 0x04, 0x94,
0x44, 0x91, 0x86, 0x78, 0x03, 0x6b, 0x9d, 0x6b, 0x62, 0x66, 0x42, 0xae, 0xc3, 0xb2, 0xe9, 0x39,
0x8e, 0xe1, 0x5a, 0xf5, 0xdc, 0x83, 0xfc, 0x76, 0x05, 0x47, 0xc5, 0xe4, 0x5a, 0xcc, 0x67, 0x5d,
- 0x8b, 0xda, 0xdf, 0x28, 0xa0, 0x4e, 0xc6, 0x96, 0x82, 0x64, 0xdc, 0x53, 0x8b, 0x01, 0xb1, 0xb1,
+ 0x8b, 0xda, 0xdf, 0x2a, 0xa0, 0x4e, 0xc6, 0x96, 0x82, 0x64, 0xdc, 0x53, 0x8b, 0x01, 0xb1, 0xb1,
0x57, 0xb0, 0x2c, 0x49, 0x7a, 0xb4, 0x5d, 0x08, 0x3a, 0x09, 0x82, 0xc4, 0x76, 0x94, 0xbf, 0xe3,
0x76, 0xa4, 0x1d, 0xc2, 0xef, 0x44, 0xec, 0xf4, 0x68, 0x40, 0x0c, 0xc7, 0x76, 0x07, 0x47, 0xa7,
0xa7, 0x3e, 0x11, 0x8c, 0x23, 0x04, 0x05, 0xcb, 0xa0, 0x86, 0x64, 0x8c, 0xff, 0xb3, 0x45, 0x6f,
- 0x8e, 0xbc, 0x30, 0x5e, 0xf4, 0xbc, 0xa0, 0xfd, 0x47, 0x1e, 0xea, 0x53, 0x50, 0x91, 0x78, 0xbf,
- 0x81, 0x62, 0x48, 0xe8, 0xd8, 0x97, 0xa6, 0xd2, 0xc9, 0xcc, 0xf0, 0x6c, 0xbc, 0x66, 0x8f, 0x81,
- 0x61, 0x81, 0x89, 0x06, 0x50, 0xa6, 0xf4, 0x46, 0x0f, 0xed, 0x9f, 0x46, 0x01, 0xc1, 0xf1, 0x5d,
- 0xf1, 0xfb, 0x24, 0x70, 0x6c, 0xd7, 0x18, 0xf5, 0xec, 0x9f, 0x12, 0xbc, 0x4c, 0xe9, 0x0d, 0xfb,
+ 0x8e, 0xbc, 0x30, 0x5e, 0xf4, 0xbc, 0xa0, 0xfd, 0x67, 0x1e, 0xea, 0x53, 0x50, 0x91, 0x78, 0xbf,
+ 0x82, 0x62, 0x48, 0xe8, 0xd8, 0x97, 0xa6, 0xd2, 0xc9, 0xcc, 0xf0, 0x6c, 0xbc, 0x66, 0x8f, 0x81,
+ 0x61, 0x81, 0x89, 0x06, 0x50, 0xa6, 0xf4, 0x46, 0x0f, 0xed, 0x9f, 0x47, 0x01, 0xc1, 0xf1, 0x5d,
+ 0xf1, 0xfb, 0x24, 0x70, 0x6c, 0xd7, 0x18, 0xf5, 0xec, 0x9f, 0x13, 0xbc, 0x4c, 0xe9, 0x0d, 0xfb,
0x41, 0xcf, 0x99, 0xc1, 0x5b, 0xb6, 0x2b, 0xc5, 0xde, 0x5e, 0x74, 0x94, 0x84, 0x80, 0xb1, 0x40,
0x6c, 0x1c, 0x43, 0x91, 0xcf, 0x69, 0x11, 0x43, 0x54, 0x21, 0x4f, 0xe9, 0x0d, 0x67, 0xaa, 0x8c,
0xd9, 0x6f, 0xe3, 0x11, 0xac, 0x24, 0x67, 0xc0, 0x0c, 0x69, 0x48, 0xec, 0xc1, 0x50, 0x18, 0x58,
- 0x11, 0xcb, 0x12, 0xd3, 0xe4, 0x6b, 0xdb, 0x92, 0x21, 0x6b, 0x11, 0x8b, 0x82, 0xf6, 0xaf, 0x39,
- 0xb8, 0x3f, 0x43, 0x32, 0xd2, 0x58, 0xbf, 0x49, 0x19, 0xeb, 0x3b, 0x92, 0x42, 0x64, 0xf1, 0xdf,
- 0xa4, 0x2c, 0xfe, 0x1d, 0x82, 0xb3, 0x65, 0x73, 0x0f, 0x4a, 0xe4, 0xda, 0xa6, 0xc4, 0x92, 0xa2,
- 0x92, 0xa5, 0xc4, 0x72, 0x2a, 0xdc, 0x75, 0x39, 0x7d, 0x02, 0x9b, 0xed, 0x80, 0x18, 0x94, 0xc8,
+ 0x11, 0xcb, 0x12, 0xd3, 0xe4, 0x2b, 0xdb, 0x92, 0x21, 0x6b, 0x11, 0x8b, 0x82, 0xf6, 0x6f, 0x39,
+ 0xb8, 0x3f, 0x43, 0x32, 0xd2, 0x58, 0xbf, 0x4a, 0x19, 0xeb, 0x5b, 0x92, 0x42, 0x64, 0xf1, 0x5f,
+ 0xa5, 0x2c, 0xfe, 0x2d, 0x82, 0xb3, 0x65, 0x73, 0x0f, 0x4a, 0xe4, 0xda, 0xa6, 0xc4, 0x92, 0xa2,
+ 0x92, 0xa5, 0xc4, 0x72, 0x2a, 0xdc, 0x75, 0x39, 0x7d, 0x04, 0x9b, 0xed, 0x80, 0x18, 0x94, 0xc8,
0xad, 0x3c, 0xb2, 0xff, 0xfb, 0x50, 0x36, 0x46, 0x23, 0xcf, 0x9c, 0xa8, 0x75, 0x99, 0x97, 0x8f,
- 0x2c, 0xed, 0x67, 0xb0, 0x75, 0xab, 0x8b, 0x14, 0xf4, 0x05, 0xd4, 0xec, 0xd0, 0x1b, 0xf1, 0x39,
- 0xe8, 0x89, 0x43, 0xdc, 0x0f, 0xe7, 0xf3, 0x26, 0x47, 0x11, 0x06, 0x3f, 0xd3, 0xad, 0xda, 0xc9,
- 0xa2, 0xf6, 0xf7, 0x0a, 0x6c, 0x49, 0x57, 0x9d, 0x99, 0xe3, 0x19, 0x8c, 0xe5, 0xde, 0x39, 0x63,
- 0x75, 0xb8, 0x77, 0x9b, 0x2f, 0xb9, 0x79, 0xff, 0x63, 0x1e, 0xd0, 0xf4, 0x31, 0x11, 0x7d, 0x07,
- 0x56, 0x42, 0xe2, 0x5a, 0xba, 0xd8, 0xf8, 0x85, 0x4f, 0x2a, 0xe3, 0x2a, 0xa3, 0x09, 0x0f, 0x10,
- 0xb2, 0xbd, 0x8c, 0x5c, 0x4b, 0x6e, 0xcb, 0x98, 0xff, 0xa3, 0x21, 0xac, 0xbc, 0x08, 0xf5, 0x78,
- 0x6c, 0x6e, 0x19, 0xb5, 0xcc, 0xfb, 0xd3, 0x34, 0x1f, 0xcd, 0x27, 0xbd, 0x78, 0x5e, 0xb8, 0xfa,
- 0x22, 0x8c, 0x0b, 0xe8, 0x17, 0x0a, 0xbc, 0x17, 0xc5, 0x07, 0x13, 0xf1, 0x39, 0x9e, 0x45, 0xc2,
- 0x7a, 0xe1, 0x41, 0x7e, 0xbb, 0xb6, 0x7b, 0x76, 0x07, 0xf9, 0x4d, 0x11, 0x4f, 0x3c, 0x8b, 0xe0,
- 0x2d, 0x77, 0x06, 0x35, 0x44, 0x4d, 0xd8, 0x70, 0xc6, 0x21, 0xd5, 0x4d, 0x6e, 0x77, 0xba, 0x6c,
- 0x54, 0x2f, 0x72, 0xb9, 0xac, 0xb3, 0xaa, 0x94, 0x45, 0x6a, 0x4d, 0xa8, 0x26, 0xa6, 0x85, 0xca,
- 0x50, 0xe8, 0x9e, 0x76, 0x3b, 0xea, 0x12, 0x02, 0x28, 0xb5, 0x0f, 0xf1, 0xe9, 0x69, 0x5f, 0x84,
- 0xdb, 0x47, 0x27, 0xad, 0x83, 0x8e, 0x9a, 0xd3, 0xfe, 0x37, 0x07, 0x9b, 0xb3, 0x98, 0x44, 0x16,
- 0x14, 0xd8, 0x84, 0xe5, 0x19, 0xe7, 0xdd, 0xcf, 0x97, 0xa3, 0x33, 0x3d, 0xfb, 0x86, 0xdc, 0xd4,
- 0x2a, 0x98, 0xff, 0x23, 0x1d, 0x4a, 0x23, 0xe3, 0x82, 0x8c, 0xc2, 0x7a, 0x9e, 0xdf, 0x02, 0x1c,
- 0xdc, 0x65, 0xec, 0x63, 0x8e, 0x24, 0xae, 0x00, 0x24, 0x6c, 0x63, 0x0f, 0xaa, 0x09, 0xf2, 0x8c,
- 0xb3, 0xf6, 0x66, 0xf2, 0xac, 0x5d, 0x49, 0x1e, 0x9c, 0x1f, 0x4f, 0x4b, 0x8b, 0xcd, 0x86, 0xc9,
- 0xf9, 0xf0, 0xb4, 0xd7, 0x17, 0xa7, 0x9a, 0x03, 0x7c, 0x7a, 0x7e, 0xa6, 0x2a, 0x8c, 0xd8, 0x6f,
- 0xf5, 0x9e, 0xaa, 0xb9, 0x58, 0x0d, 0x79, 0xed, 0x5f, 0x96, 0x01, 0x26, 0xe7, 0x4c, 0x54, 0x83,
- 0x5c, 0xbc, 0x68, 0x73, 0xb6, 0xc5, 0xe4, 0xe1, 0x1a, 0x4e, 0x34, 0x30, 0xff, 0x47, 0xbb, 0xb0,
- 0xe5, 0x84, 0x03, 0xdf, 0x30, 0x2f, 0x75, 0x79, 0x3c, 0x34, 0x79, 0x67, 0xbe, 0x00, 0x56, 0xf0,
- 0x86, 0xac, 0x94, 0x06, 0x2e, 0x70, 0x8f, 0x21, 0x4f, 0xdc, 0x2b, 0x6e, 0xac, 0xd5, 0xdd, 0xcf,
- 0xe7, 0x3e, 0xff, 0x36, 0x3b, 0xee, 0x95, 0x90, 0x19, 0x83, 0x41, 0x3a, 0x80, 0x45, 0xae, 0x6c,
- 0x93, 0xe8, 0x0c, 0xb4, 0xc8, 0x41, 0xbf, 0x9c, 0x1f, 0x74, 0x9f, 0x63, 0xc4, 0xd0, 0x15, 0x2b,
- 0x2a, 0xa3, 0x2e, 0x54, 0x02, 0x12, 0x7a, 0xe3, 0xc0, 0x24, 0x61, 0xbd, 0x34, 0x57, 0x88, 0x8a,
- 0xa3, 0x7e, 0x78, 0x02, 0x81, 0xf6, 0xa1, 0xe4, 0x78, 0x63, 0x97, 0x86, 0xf5, 0x65, 0xce, 0xec,
- 0x87, 0x19, 0xc1, 0x4e, 0x58, 0x27, 0x2c, 0xfb, 0xa2, 0x03, 0x58, 0x16, 0x2c, 0x86, 0xf5, 0x32,
- 0x87, 0xf9, 0x28, 0xeb, 0x5e, 0xc3, 0x7b, 0xe1, 0xa8, 0x37, 0xd3, 0xea, 0x38, 0x24, 0x41, 0xbd,
- 0x22, 0xb4, 0xca, 0xfe, 0xd1, 0xfb, 0x50, 0x11, 0x9b, 0xb6, 0x65, 0x07, 0x75, 0xe0, 0x15, 0x62,
- 0x17, 0xdf, 0xb7, 0x03, 0xf4, 0x01, 0x54, 0x85, 0x97, 0xd5, 0xf9, 0xea, 0xa8, 0xf2, 0x6a, 0x10,
- 0xa4, 0x33, 0xb6, 0x46, 0x44, 0x03, 0x12, 0x04, 0xa2, 0xc1, 0x4a, 0xdc, 0x80, 0x04, 0x01, 0x6f,
- 0xf0, 0xfb, 0xb0, 0xc6, 0x63, 0x93, 0x41, 0xe0, 0x8d, 0x7d, 0x9d, 0xdb, 0xd4, 0x2a, 0x6f, 0xb4,
- 0xca, 0xc8, 0x07, 0x8c, 0xda, 0x65, 0xc6, 0x75, 0x1f, 0xca, 0x2f, 0xbd, 0x0b, 0xd1, 0xa0, 0x26,
- 0x7c, 0xc7, 0x4b, 0xef, 0x22, 0xaa, 0x8a, 0xdd, 0xca, 0x5a, 0xda, 0xad, 0xbc, 0x82, 0x7b, 0xd3,
- 0xfb, 0x23, 0x77, 0x2f, 0xea, 0xdd, 0xdd, 0xcb, 0xa6, 0x3b, 0x83, 0xda, 0xf8, 0x14, 0xca, 0x91,
- 0xe5, 0xcc, 0xb3, 0x62, 0x1b, 0x8f, 0xa0, 0x96, 0xb6, 0xbb, 0xb9, 0xd6, 0xfb, 0x7f, 0x2a, 0x50,
- 0x89, 0x2d, 0x0c, 0xb9, 0xb0, 0xc1, 0x25, 0x60, 0x50, 0x62, 0xe9, 0x13, 0x83, 0x15, 0xbe, 0xfe,
- 0x8b, 0x8c, 0x73, 0x6e, 0x45, 0x08, 0xf2, 0x5c, 0x21, 0xad, 0x17, 0xc5, 0xc8, 0x93, 0xf1, 0xbe,
- 0x85, 0xb5, 0x91, 0xed, 0x8e, 0xaf, 0x13, 0x63, 0x09, 0xf7, 0xfd, 0x07, 0x19, 0xc7, 0x3a, 0x66,
- 0xbd, 0x27, 0x63, 0xd4, 0x46, 0xa9, 0xb2, 0xf6, 0xcb, 0x1c, 0xdc, 0x9b, 0xcd, 0x0e, 0xea, 0x42,
- 0xde, 0xf4, 0xc7, 0x72, 0x6a, 0x8f, 0xe6, 0x9d, 0x5a, 0xdb, 0x1f, 0x4f, 0x46, 0x65, 0x40, 0xe8,
- 0x19, 0x94, 0x1c, 0xe2, 0x78, 0xc1, 0x8d, 0x9c, 0xc1, 0xe3, 0x79, 0x21, 0x4f, 0x78, 0xef, 0x09,
- 0xaa, 0x84, 0x43, 0x18, 0xca, 0xd2, 0x5e, 0x42, 0xb9, 0x33, 0xcd, 0x79, 0x84, 0x8f, 0x20, 0x71,
- 0x8c, 0xa3, 0x7d, 0x0a, 0x5b, 0x33, 0xa7, 0x82, 0x7e, 0x17, 0xc0, 0xf4, 0xc7, 0x3a, 0xbf, 0x62,
- 0x15, 0x7a, 0xcf, 0xe3, 0x8a, 0xe9, 0x8f, 0x7b, 0x9c, 0xa0, 0x3d, 0x84, 0xfa, 0x9b, 0xf8, 0x65,
- 0xeb, 0x5d, 0x70, 0xac, 0x3b, 0x17, 0x5c, 0x06, 0x79, 0x5c, 0x16, 0x84, 0x93, 0x0b, 0xed, 0x57,
- 0x39, 0x58, 0xbb, 0xc5, 0x0e, 0x0b, 0x81, 0xc5, 0xfe, 0x11, 0x1d, 0x2e, 0x44, 0x89, 0x6d, 0x26,
- 0xa6, 0x6d, 0x45, 0xd7, 0x52, 0xfc, 0x9f, 0xbb, 0x11, 0x5f, 0x5e, 0x19, 0xe5, 0x6c, 0x9f, 0x19,
- 0xb4, 0x73, 0x61, 0xd3, 0x90, 0x47, 0xc9, 0x45, 0x2c, 0x0a, 0xe8, 0x39, 0xd4, 0x02, 0x12, 0x92,
- 0xe0, 0x8a, 0x58, 0xba, 0xef, 0x05, 0x34, 0x12, 0xd8, 0xee, 0x7c, 0x02, 0x3b, 0xf3, 0x02, 0x8a,
- 0x57, 0x23, 0x24, 0x56, 0x0a, 0xd1, 0x33, 0x58, 0xb5, 0x6e, 0x5c, 0xc3, 0xb1, 0x4d, 0x89, 0x5c,
- 0x5a, 0x18, 0x79, 0x45, 0x02, 0x71, 0x60, 0x6d, 0x0f, 0xaa, 0x89, 0x4a, 0x36, 0x31, 0xee, 0xc4,
- 0xa5, 0x4c, 0x44, 0x21, 0xbd, 0x7e, 0x8b, 0x72, 0xfd, 0x6a, 0xff, 0x94, 0x83, 0x5a, 0x7a, 0x01,
- 0x44, 0xfa, 0xf3, 0x49, 0x60, 0x7b, 0x56, 0x42, 0x7f, 0x67, 0x9c, 0xc0, 0x74, 0xc4, 0xaa, 0x5f,
- 0x8d, 0x3d, 0x6a, 0x44, 0x3a, 0x32, 0xfd, 0xf1, 0x1f, 0xb2, 0xf2, 0x2d, 0xdd, 0xe7, 0x6f, 0xe9,
- 0x1e, 0x7d, 0x08, 0x48, 0xea, 0x77, 0x64, 0x3b, 0x36, 0xd5, 0x2f, 0x6e, 0x28, 0x11, 0xf2, 0xcf,
- 0x63, 0x55, 0xd4, 0x1c, 0xb3, 0x8a, 0xaf, 0x18, 0x1d, 0x69, 0xb0, 0xea, 0x79, 0x8e, 0x1e, 0x9a,
- 0x5e, 0x40, 0x74, 0xc3, 0x7a, 0xc9, 0x03, 0xba, 0x3c, 0xae, 0x7a, 0x9e, 0xd3, 0x63, 0xb4, 0x96,
- 0xf5, 0x92, 0xed, 0xf1, 0xa6, 0x3f, 0x0e, 0x09, 0xd5, 0xd9, 0x87, 0xbb, 0xc5, 0x0a, 0x06, 0x41,
- 0x6a, 0xfb, 0xe3, 0x30, 0xd1, 0xc0, 0x21, 0x0e, 0x73, 0x75, 0x89, 0x06, 0x27, 0xc4, 0x61, 0xa3,
- 0xac, 0x9c, 0x91, 0xc0, 0x24, 0x2e, 0xed, 0xdb, 0xe6, 0x25, 0xf3, 0x62, 0xca, 0xb6, 0x82, 0x53,
- 0x34, 0xed, 0x27, 0x50, 0xe4, 0x5e, 0x8f, 0x4d, 0x9e, 0x7b, 0x0c, 0xee, 0x50, 0x84, 0x78, 0xcb,
- 0x8c, 0xc0, 0xdd, 0xc9, 0xfb, 0x50, 0x19, 0x7a, 0xa1, 0x74, 0x47, 0xc2, 0xf2, 0xca, 0x8c, 0xc0,
- 0x2b, 0x1b, 0x50, 0x0e, 0x88, 0x61, 0x79, 0xee, 0x28, 0x3a, 0xd9, 0xc6, 0x65, 0xed, 0x15, 0x94,
- 0xc4, 0xf6, 0x7b, 0x07, 0xfc, 0x8f, 0x00, 0x99, 0xc2, 0x8f, 0xf9, 0xec, 0xa4, 0x1c, 0x86, 0xb6,
- 0xe7, 0x86, 0xd1, 0x73, 0x8a, 0xa8, 0x39, 0x9b, 0x54, 0x68, 0xff, 0xa5, 0x88, 0x10, 0x4b, 0x5c,
- 0x74, 0xb3, 0xc3, 0x38, 0xb3, 0x34, 0x76, 0x62, 0x10, 0x27, 0xea, 0xa8, 0xc8, 0x0e, 0x93, 0x32,
- 0x92, 0xca, 0x2d, 0xfa, 0x4e, 0x20, 0x01, 0xa2, 0xfb, 0x35, 0x22, 0x0f, 0x25, 0xf3, 0xde, 0xaf,
- 0x11, 0x71, 0xbf, 0x46, 0xd8, 0xd1, 0x48, 0xc6, 0x78, 0x02, 0xae, 0xc0, 0x43, 0xbc, 0xaa, 0x15,
- 0x5f, 0x62, 0x12, 0xed, 0x7f, 0x94, 0x78, 0xaf, 0x88, 0x2e, 0x1b, 0xd1, 0xb7, 0x50, 0x66, 0xcb,
- 0x4e, 0x77, 0x0c, 0x5f, 0x3e, 0x9d, 0xb5, 0x17, 0xbb, 0xc7, 0x6c, 0xb2, 0x55, 0x76, 0x62, 0xf8,
- 0x22, 0x42, 0x5b, 0xf6, 0x45, 0x89, 0xed, 0x39, 0x86, 0x35, 0xd9, 0x73, 0xd8, 0x3f, 0xfa, 0x2e,
- 0xd4, 0x8c, 0x31, 0xf5, 0x74, 0xc3, 0xba, 0x22, 0x01, 0xb5, 0x43, 0x22, 0x75, 0xbf, 0xca, 0xa8,
- 0xad, 0x88, 0xd8, 0xf8, 0x1c, 0x56, 0x92, 0x98, 0x6f, 0xf3, 0xbe, 0xc5, 0xa4, 0xf7, 0xfd, 0x13,
- 0x80, 0xc9, 0xc1, 0x9d, 0xd9, 0x08, 0xb9, 0xb6, 0xa9, 0x6e, 0x46, 0xc7, 0x92, 0x22, 0x2e, 0x33,
- 0x42, 0x9b, 0x05, 0xe0, 0xe9, 0x5b, 0xc5, 0x62, 0x74, 0xab, 0xc8, 0x56, 0x2d, 0x5b, 0x68, 0x97,
- 0xf6, 0x68, 0x14, 0x5f, 0x26, 0x54, 0x3c, 0xcf, 0x79, 0xca, 0x09, 0xda, 0x6f, 0x72, 0xc2, 0x56,
- 0xc4, 0xfd, 0x70, 0xa6, 0x70, 0xfc, 0x5d, 0xa9, 0x7a, 0x0f, 0x20, 0xa4, 0x46, 0xc0, 0x42, 0x09,
- 0x23, 0xba, 0xce, 0x68, 0x4c, 0x5d, 0x4b, 0xf6, 0xa3, 0x67, 0x6e, 0x5c, 0x91, 0xad, 0x5b, 0x14,
- 0x7d, 0x01, 0x2b, 0xa6, 0xe7, 0xf8, 0x23, 0x22, 0x3b, 0x17, 0xdf, 0xda, 0xb9, 0x1a, 0xb7, 0x6f,
- 0xd1, 0xc4, 0x25, 0x4a, 0xe9, 0xae, 0x97, 0x28, 0xff, 0xa6, 0x88, 0x6b, 0xee, 0xe4, 0x2d, 0x3b,
- 0x1a, 0xcc, 0x78, 0xca, 0x3d, 0x58, 0xf0, 0xca, 0xfe, 0xb7, 0xbd, 0xe3, 0x36, 0xbe, 0xc8, 0xf2,
- 0x70, 0xfa, 0xe6, 0xe0, 0xee, 0xdf, 0xf3, 0x50, 0x89, 0x6f, 0xb8, 0xa7, 0x74, 0xff, 0x19, 0x54,
- 0xe2, 0x1c, 0x03, 0xb9, 0x41, 0xfc, 0x56, 0xf5, 0xc4, 0x8d, 0xd1, 0x0b, 0x40, 0xc6, 0x60, 0x10,
- 0x07, 0x6d, 0xfa, 0x38, 0x34, 0x06, 0xd1, 0xfb, 0xc2, 0x67, 0x73, 0xc8, 0x21, 0xf2, 0x5b, 0xe7,
- 0xac, 0x3f, 0x56, 0x8d, 0xc1, 0x20, 0x45, 0x41, 0x3f, 0x83, 0xad, 0xf4, 0x18, 0xfa, 0xc5, 0x8d,
- 0xee, 0xdb, 0x96, 0x3c, 0xf6, 0x1d, 0xce, 0x7b, 0xc9, 0xdf, 0x4c, 0xc1, 0x7f, 0x75, 0x73, 0x66,
- 0x5b, 0x42, 0xe6, 0x28, 0x98, 0xaa, 0x68, 0xfc, 0x19, 0xbc, 0xf7, 0x86, 0xe6, 0x33, 0x74, 0xd0,
- 0x4d, 0x3f, 0x5e, 0x2f, 0x2e, 0x84, 0x84, 0xf6, 0x7e, 0xad, 0x88, 0xb7, 0x88, 0xb4, 0x4c, 0x5a,
- 0xc9, 0xb8, 0x75, 0x27, 0xe3, 0x38, 0xed, 0xb3, 0x73, 0x01, 0xcf, 0x43, 0xd5, 0xaf, 0x6f, 0x85,
- 0xaa, 0x59, 0x83, 0x18, 0x11, 0xf1, 0x09, 0x20, 0x89, 0xa0, 0xfd, 0x73, 0x1e, 0xca, 0x11, 0x3a,
- 0x3f, 0xb4, 0xdd, 0x84, 0x94, 0x38, 0x7a, 0x7c, 0xb3, 0xa2, 0x60, 0x10, 0x24, 0x7e, 0x8b, 0xf0,
- 0x3e, 0x54, 0xd8, 0xd9, 0x50, 0x54, 0xe7, 0x78, 0x75, 0x99, 0x11, 0x78, 0xe5, 0x07, 0x50, 0xa5,
- 0x1e, 0x35, 0x46, 0x3a, 0xe5, 0xbe, 0x3c, 0x2f, 0x7a, 0x73, 0x12, 0xf7, 0xe4, 0xe8, 0xfb, 0xb0,
- 0x4e, 0x87, 0x81, 0x47, 0xe9, 0x88, 0xc5, 0x77, 0x3c, 0xa2, 0x11, 0x01, 0x48, 0x01, 0xab, 0x71,
- 0x85, 0x88, 0x74, 0x42, 0xb6, 0x7b, 0x4f, 0x1a, 0x33, 0xd3, 0xe5, 0x9b, 0x48, 0x01, 0xaf, 0xc6,
- 0x54, 0x66, 0xda, 0xcc, 0x79, 0xfa, 0x22, 0x5a, 0xe0, 0x7b, 0x85, 0x82, 0xa3, 0x22, 0xd2, 0x61,
- 0xcd, 0x21, 0x46, 0x38, 0x0e, 0x88, 0xa5, 0xbf, 0xb0, 0xc9, 0xc8, 0x12, 0x67, 0xed, 0x5a, 0xe6,
- 0xf0, 0x3b, 0x12, 0x4b, 0xf3, 0x09, 0xef, 0x8d, 0x6b, 0x11, 0x9c, 0x28, 0xb3, 0xc8, 0x41, 0xfc,
- 0xa1, 0x35, 0xa8, 0xf6, 0x9e, 0xf7, 0xfa, 0x9d, 0x13, 0xfd, 0xe4, 0x74, 0xbf, 0x23, 0xf3, 0x13,
- 0x7a, 0x1d, 0x2c, 0x8a, 0x0a, 0xab, 0xef, 0x9f, 0xf6, 0x5b, 0xc7, 0x7a, 0xff, 0xa8, 0xfd, 0xb4,
- 0xa7, 0xe6, 0xd0, 0x16, 0xac, 0xf7, 0x0f, 0xf1, 0x69, 0xbf, 0x7f, 0xdc, 0xd9, 0xd7, 0xcf, 0x3a,
- 0xf8, 0xe8, 0x74, 0xbf, 0xa7, 0xe6, 0x11, 0x82, 0xda, 0x84, 0xdc, 0x3f, 0x3a, 0xe9, 0xa8, 0x05,
- 0x54, 0x85, 0xe5, 0xb3, 0x0e, 0x6e, 0x77, 0xba, 0x7d, 0xb5, 0xa8, 0xfd, 0x2a, 0x0f, 0xd5, 0x84,
- 0x16, 0x99, 0x21, 0x07, 0xa1, 0x88, 0xf3, 0x0b, 0x98, 0xfd, 0xf2, 0xf7, 0x14, 0xc3, 0x1c, 0x0a,
- 0xed, 0x14, 0xb0, 0x28, 0xf0, 0xd8, 0xde, 0xb8, 0x4e, 0xac, 0xf3, 0x02, 0x2e, 0x3b, 0xc6, 0xb5,
- 0x00, 0xf9, 0x0e, 0xac, 0x5c, 0x92, 0xc0, 0x25, 0x23, 0x59, 0x2f, 0x34, 0x52, 0x15, 0x34, 0xd1,
- 0x64, 0x1b, 0x54, 0xd9, 0x64, 0x02, 0x23, 0xd4, 0x51, 0x13, 0xf4, 0x93, 0x08, 0x6c, 0x13, 0x8a,
- 0xa2, 0x7a, 0x59, 0x8c, 0xcf, 0x0b, 0xcc, 0x4d, 0x85, 0xaf, 0x0d, 0x9f, 0xc7, 0x77, 0x05, 0xcc,
- 0xff, 0xd1, 0xc5, 0xb4, 0x7e, 0x4a, 0x5c, 0x3f, 0x7b, 0xf3, 0x9b, 0xf3, 0x9b, 0x54, 0x34, 0x8c,
- 0x55, 0xb4, 0x0c, 0x79, 0x1c, 0x3d, 0xea, 0xb7, 0x5b, 0xed, 0x43, 0xa6, 0x96, 0x55, 0xa8, 0x9c,
- 0xb4, 0x7e, 0xac, 0x9f, 0xf7, 0xf8, 0x4d, 0x23, 0x52, 0x61, 0xe5, 0x69, 0x07, 0x77, 0x3b, 0xc7,
- 0x92, 0x92, 0x47, 0x9b, 0xa0, 0x4a, 0xca, 0xa4, 0x5d, 0x81, 0x21, 0x88, 0xdf, 0x22, 0x2a, 0x43,
- 0xa1, 0xf7, 0xac, 0x75, 0xa6, 0x96, 0xb4, 0xff, 0xce, 0xc1, 0x9a, 0x70, 0x0b, 0xf1, 0xf3, 0xe3,
- 0x9b, 0x9f, 0x5f, 0x92, 0x17, 0x17, 0xb9, 0xf4, 0xc5, 0x45, 0x14, 0x84, 0x72, 0xaf, 0x9e, 0x9f,
- 0x04, 0xa1, 0xfc, 0xc2, 0x23, 0xb5, 0xe3, 0x17, 0xe6, 0xd9, 0xf1, 0xeb, 0xb0, 0xec, 0x90, 0x30,
- 0xd6, 0x5b, 0x05, 0x47, 0x45, 0x64, 0x43, 0xd5, 0x70, 0x5d, 0x8f, 0xf2, 0x8b, 0x8c, 0xe8, 0x58,
- 0x74, 0x30, 0xd7, 0x9d, 0x75, 0x3c, 0xe3, 0x66, 0x6b, 0x82, 0x24, 0x36, 0xe6, 0x24, 0x76, 0xe3,
- 0x47, 0xa0, 0xde, 0x6e, 0x30, 0x8f, 0x3b, 0xfc, 0xde, 0x27, 0x13, 0x6f, 0x48, 0xd8, 0xba, 0x38,
- 0xef, 0x3e, 0xed, 0x9e, 0x3e, 0xeb, 0xaa, 0x4b, 0xac, 0x80, 0xcf, 0xbb, 0xdd, 0xa3, 0xee, 0x81,
- 0xaa, 0x20, 0x80, 0x52, 0xe7, 0xc7, 0x47, 0xfd, 0xce, 0xbe, 0x9a, 0xdb, 0xfd, 0xf5, 0x3a, 0x94,
- 0x04, 0x93, 0xe8, 0x97, 0x32, 0x12, 0x48, 0xa6, 0xb6, 0xa1, 0x1f, 0xcd, 0x1d, 0x51, 0xa7, 0xd2,
- 0xe5, 0x1a, 0x8f, 0x17, 0xee, 0x2f, 0x5f, 0x20, 0x96, 0xd0, 0x5f, 0x29, 0xb0, 0x92, 0x7a, 0x7d,
- 0xc8, 0x7a, 0x1b, 0x3a, 0x23, 0x93, 0xae, 0xf1, 0xc3, 0x85, 0xfa, 0xc6, 0xbc, 0xfc, 0x42, 0x81,
- 0x6a, 0x22, 0x87, 0x0c, 0xed, 0x2d, 0x92, 0x77, 0x26, 0x38, 0xf9, 0x7c, 0xf1, 0x94, 0x35, 0x6d,
- 0xe9, 0x63, 0x05, 0xfd, 0xa5, 0x02, 0xd5, 0x44, 0x36, 0x55, 0x66, 0x56, 0xa6, 0x73, 0xbf, 0x32,
- 0xb3, 0x32, 0x2b, 0x79, 0x6b, 0x09, 0xfd, 0xb9, 0x02, 0x95, 0x38, 0x33, 0x0a, 0x3d, 0x9c, 0x3f,
- 0x97, 0x4a, 0x30, 0xf1, 0xd9, 0xa2, 0x49, 0x58, 0xda, 0x12, 0xfa, 0x53, 0x28, 0x47, 0x69, 0x44,
- 0x28, 0xab, 0xf7, 0xba, 0x95, 0xa3, 0xd4, 0x78, 0x38, 0x77, 0xbf, 0xe4, 0xf0, 0x51, 0x6e, 0x4f,
- 0xe6, 0xe1, 0x6f, 0x65, 0x21, 0x35, 0x1e, 0xce, 0xdd, 0x2f, 0x1e, 0x9e, 0x59, 0x42, 0x22, 0x05,
- 0x28, 0xb3, 0x25, 0x4c, 0xe7, 0x1e, 0x65, 0xb6, 0x84, 0x59, 0x19, 0x47, 0x82, 0x91, 0x44, 0x12,
- 0x51, 0x66, 0x46, 0xa6, 0x13, 0x95, 0x32, 0x33, 0x32, 0x23, 0x67, 0x49, 0x5b, 0x42, 0x3f, 0x57,
- 0x92, 0xe7, 0x82, 0x87, 0x73, 0xe7, 0xca, 0xcc, 0x69, 0x92, 0x53, 0xd9, 0x3a, 0x7c, 0x81, 0xfe,
- 0x5c, 0xde, 0x62, 0x88, 0x54, 0x1b, 0x34, 0x0f, 0x58, 0x2a, 0x3b, 0xa7, 0xf1, 0xe9, 0x62, 0xce,
- 0x86, 0x33, 0xf1, 0x17, 0x0a, 0xc0, 0x24, 0x29, 0x27, 0x33, 0x13, 0x53, 0xd9, 0x40, 0x8d, 0xbd,
- 0x05, 0x7a, 0x26, 0x17, 0x48, 0x94, 0x34, 0x90, 0x79, 0x81, 0xdc, 0x4a, 0x1a, 0xca, 0xbc, 0x40,
- 0x6e, 0x27, 0xfc, 0x68, 0x4b, 0xe8, 0x1f, 0x14, 0x58, 0x9f, 0x4a, 0x5a, 0x40, 0x8f, 0xef, 0x98,
- 0xb7, 0xd2, 0xf8, 0x72, 0x71, 0x80, 0x88, 0xb5, 0x6d, 0xe5, 0x63, 0x05, 0xfd, 0xb5, 0x02, 0xab,
- 0xa9, 0x37, 0x60, 0x94, 0xd9, 0x4b, 0xcd, 0x48, 0x7f, 0x68, 0x3c, 0x5a, 0xac, 0x73, 0x2c, 0xad,
- 0xbf, 0x55, 0xa0, 0x96, 0x4e, 0x07, 0x40, 0x8f, 0xe6, 0xdb, 0x16, 0x6e, 0x31, 0xf4, 0xc5, 0x82,
- 0xbd, 0x23, 0x8e, 0xbe, 0x5a, 0xfe, 0xa3, 0xa2, 0x88, 0xde, 0x4a, 0xfc, 0xf3, 0x83, 0xff, 0x0f,
- 0x00, 0x00, 0xff, 0xff, 0x53, 0x5e, 0xb3, 0xe1, 0xb7, 0x30, 0x00, 0x00,
+ 0x2c, 0xed, 0x5b, 0x05, 0xb6, 0x6e, 0xf5, 0x91, 0x92, 0xbe, 0x80, 0x9a, 0x1d, 0x7a, 0x23, 0x3e,
+ 0x09, 0x3d, 0x71, 0x8a, 0xfb, 0xf1, 0x7c, 0xee, 0xe4, 0x28, 0xc2, 0xe0, 0x87, 0xba, 0x55, 0x3b,
+ 0x59, 0xe4, 0x56, 0xc5, 0x07, 0xb7, 0xe4, 0x6a, 0x8e, 0x8a, 0xda, 0x3f, 0x28, 0xb0, 0x25, 0xbd,
+ 0x78, 0xe6, 0xc9, 0xcc, 0x60, 0x39, 0xf7, 0xb6, 0x59, 0xd6, 0xea, 0x70, 0xef, 0x36, 0x5f, 0x72,
+ 0x5f, 0xff, 0xa7, 0x3c, 0xa0, 0xe9, 0x13, 0x24, 0xfa, 0x1e, 0xac, 0x84, 0xc4, 0xb5, 0x74, 0xe1,
+ 0x13, 0x84, 0xbb, 0x2a, 0xe3, 0x2a, 0xa3, 0x09, 0xe7, 0x10, 0xb2, 0x6d, 0x8e, 0x5c, 0x4b, 0x6e,
+ 0xcb, 0x98, 0xff, 0xa3, 0x21, 0xac, 0xbc, 0x08, 0xf5, 0x78, 0x6c, 0x6e, 0x34, 0xb5, 0xcc, 0x5b,
+ 0xd7, 0x34, 0x1f, 0xcd, 0x27, 0xbd, 0x78, 0x5e, 0xb8, 0xfa, 0x22, 0x8c, 0x0b, 0xe8, 0x97, 0x0a,
+ 0xbc, 0x13, 0x85, 0x0e, 0x13, 0xf1, 0x39, 0x9e, 0x45, 0xc2, 0x7a, 0xe1, 0x41, 0x7e, 0xbb, 0xb6,
+ 0x7b, 0x76, 0x07, 0xf9, 0x4d, 0x11, 0x4f, 0x3c, 0x8b, 0xe0, 0x2d, 0x77, 0x06, 0x35, 0x44, 0x4d,
+ 0xd8, 0x70, 0xc6, 0x21, 0xd5, 0x85, 0x15, 0xe8, 0xb2, 0x51, 0xbd, 0xc8, 0xe5, 0xb2, 0xce, 0xaa,
+ 0x52, 0xb6, 0xaa, 0x35, 0xa1, 0x9a, 0x98, 0x16, 0x2a, 0x43, 0xa1, 0x7b, 0xda, 0xed, 0xa8, 0x4b,
+ 0x08, 0xa0, 0xd4, 0x3e, 0xc4, 0xa7, 0xa7, 0x7d, 0x11, 0x89, 0x1f, 0x9d, 0xb4, 0x0e, 0x3a, 0x6a,
+ 0x4e, 0xfb, 0xbf, 0x1c, 0x6c, 0xce, 0x62, 0x12, 0x59, 0x50, 0x60, 0x13, 0x96, 0xc7, 0x9f, 0xb7,
+ 0x3f, 0x5f, 0x8e, 0xce, 0xf4, 0xec, 0x1b, 0x72, 0xbf, 0xab, 0x60, 0xfe, 0x8f, 0x74, 0x28, 0x8d,
+ 0x8c, 0x0b, 0x32, 0x0a, 0xeb, 0x79, 0x7e, 0x41, 0x70, 0x70, 0x97, 0xb1, 0x8f, 0x39, 0x92, 0xb8,
+ 0x1d, 0x90, 0xb0, 0x8d, 0x3d, 0xa8, 0x26, 0xc8, 0x33, 0x8e, 0xe1, 0x9b, 0xc9, 0x63, 0x78, 0x25,
+ 0x79, 0xa6, 0x7e, 0x3c, 0x2d, 0x2d, 0x36, 0x1b, 0x26, 0xe7, 0xc3, 0xd3, 0x5e, 0x5f, 0x1c, 0x78,
+ 0x0e, 0xf0, 0xe9, 0xf9, 0x99, 0xaa, 0x30, 0x62, 0xbf, 0xd5, 0x7b, 0xaa, 0xe6, 0x62, 0x35, 0xe4,
+ 0xb5, 0x7f, 0x5d, 0x06, 0x98, 0x1c, 0x41, 0x51, 0x0d, 0x72, 0xf1, 0xa2, 0xcd, 0xd9, 0x16, 0x93,
+ 0x87, 0x6b, 0x38, 0xd1, 0xc0, 0xfc, 0x1f, 0xed, 0xc2, 0x96, 0x13, 0x0e, 0x7c, 0xc3, 0xbc, 0xd4,
+ 0xe5, 0xc9, 0xd1, 0xe4, 0x9d, 0xf9, 0x02, 0x58, 0xc1, 0x1b, 0xb2, 0x52, 0x1a, 0xb8, 0xc0, 0x3d,
+ 0x86, 0x3c, 0x71, 0xaf, 0xb8, 0xb1, 0x56, 0x77, 0x3f, 0x9d, 0xfb, 0x68, 0xdc, 0xec, 0xb8, 0x57,
+ 0x42, 0x66, 0x0c, 0x06, 0xe9, 0x00, 0x16, 0xb9, 0xb2, 0x4d, 0xa2, 0x33, 0xd0, 0x22, 0x07, 0xfd,
+ 0x7c, 0x7e, 0xd0, 0x7d, 0x8e, 0x11, 0x43, 0x57, 0xac, 0xa8, 0x8c, 0xba, 0x50, 0x09, 0x48, 0xe8,
+ 0x8d, 0x03, 0x93, 0x84, 0xf5, 0xd2, 0x5c, 0xd1, 0x2b, 0x8e, 0xfa, 0xe1, 0x09, 0x04, 0xda, 0x87,
+ 0x92, 0xe3, 0x8d, 0x5d, 0x1a, 0xd6, 0x97, 0x39, 0xb3, 0xef, 0x67, 0x04, 0x3b, 0x61, 0x9d, 0xb0,
+ 0xec, 0x8b, 0x0e, 0x60, 0x59, 0xb0, 0x18, 0xd6, 0xcb, 0x1c, 0xe6, 0x83, 0xac, 0x7b, 0x0d, 0xef,
+ 0x85, 0xa3, 0xde, 0x4c, 0xab, 0xe3, 0x90, 0x04, 0xf5, 0x8a, 0xd0, 0x2a, 0xfb, 0x47, 0xef, 0x42,
+ 0x45, 0x6c, 0xda, 0x96, 0x1d, 0xd4, 0x81, 0x57, 0x88, 0x5d, 0x7c, 0xdf, 0x0e, 0xd0, 0x7b, 0x50,
+ 0x15, 0x0e, 0x58, 0xe7, 0xab, 0xa3, 0xca, 0xab, 0x41, 0x90, 0xce, 0xd8, 0x1a, 0x11, 0x0d, 0x48,
+ 0x10, 0x88, 0x06, 0x2b, 0x71, 0x03, 0x12, 0x04, 0xbc, 0xc1, 0xef, 0xc3, 0x1a, 0x0f, 0x5b, 0x06,
+ 0x81, 0x37, 0xf6, 0x75, 0x6e, 0x53, 0xab, 0xbc, 0xd1, 0x2a, 0x23, 0x1f, 0x30, 0x6a, 0x97, 0x19,
+ 0xd7, 0x7d, 0x28, 0xbf, 0xf4, 0x2e, 0x44, 0x83, 0x9a, 0xf0, 0x1d, 0x2f, 0xbd, 0x8b, 0xa8, 0x2a,
+ 0x76, 0x2b, 0x6b, 0x69, 0xb7, 0xf2, 0x0d, 0xdc, 0x9b, 0xde, 0x1f, 0xb9, 0x7b, 0x51, 0xef, 0xee,
+ 0x5e, 0x36, 0xdd, 0x19, 0xd4, 0xc6, 0xc7, 0x50, 0x8e, 0x2c, 0x67, 0x9e, 0x15, 0xdb, 0x78, 0x04,
+ 0xb5, 0xb4, 0xdd, 0xcd, 0xb5, 0xde, 0xff, 0x4b, 0x81, 0x4a, 0x6c, 0x61, 0xc8, 0x85, 0x0d, 0x2e,
+ 0x01, 0xe6, 0x8f, 0xf5, 0x89, 0xc1, 0x8a, 0x28, 0xe0, 0xb3, 0x8c, 0x73, 0x6e, 0x45, 0x08, 0xf2,
+ 0xc8, 0x21, 0xad, 0x17, 0xc5, 0xc8, 0x93, 0xf1, 0xbe, 0x86, 0xb5, 0x91, 0xed, 0x8e, 0xaf, 0x13,
+ 0x63, 0x09, 0xf7, 0xfd, 0x07, 0x19, 0xc7, 0x3a, 0x66, 0xbd, 0x27, 0x63, 0xd4, 0x46, 0xa9, 0xb2,
+ 0xf6, 0x6d, 0x0e, 0xee, 0xcd, 0x66, 0x07, 0x75, 0x21, 0x6f, 0xfa, 0x63, 0x39, 0xb5, 0x47, 0xf3,
+ 0x4e, 0xad, 0xed, 0x8f, 0x27, 0xa3, 0x32, 0x20, 0xf4, 0x0c, 0x4a, 0x0e, 0x71, 0xbc, 0xe0, 0x46,
+ 0xce, 0xe0, 0xf1, 0xbc, 0x90, 0x27, 0xbc, 0xf7, 0x04, 0x55, 0xc2, 0x21, 0x0c, 0x65, 0x69, 0x2f,
+ 0xa1, 0xdc, 0x99, 0xe6, 0x3c, 0xdd, 0x47, 0x90, 0x38, 0xc6, 0xd1, 0x3e, 0x86, 0xad, 0x99, 0x53,
+ 0x41, 0xbf, 0x0b, 0x60, 0xfa, 0x63, 0x9d, 0xdf, 0xbe, 0x0a, 0xbd, 0xe7, 0x71, 0xc5, 0xf4, 0xc7,
+ 0x3d, 0x4e, 0xd0, 0x1e, 0x42, 0xfd, 0x75, 0xfc, 0xb2, 0xf5, 0x2e, 0x38, 0xd6, 0x9d, 0x0b, 0x2e,
+ 0x83, 0x3c, 0x2e, 0x0b, 0xc2, 0xc9, 0x85, 0xf6, 0xab, 0x1c, 0xac, 0xdd, 0x62, 0x87, 0x45, 0xc7,
+ 0x62, 0xff, 0x88, 0xce, 0x1d, 0xa2, 0xc4, 0x36, 0x13, 0xd3, 0xb6, 0xa2, 0x1b, 0x2b, 0xfe, 0xcf,
+ 0xdd, 0x88, 0x2f, 0x6f, 0x93, 0x72, 0xb6, 0xcf, 0x0c, 0xda, 0xb9, 0xb0, 0x69, 0xc8, 0x03, 0xe8,
+ 0x22, 0x16, 0x05, 0xf4, 0x1c, 0x6a, 0x01, 0x09, 0x49, 0x70, 0x45, 0x2c, 0xdd, 0xf7, 0x02, 0x1a,
+ 0x09, 0x6c, 0x77, 0x3e, 0x81, 0x9d, 0x79, 0x01, 0xc5, 0xab, 0x11, 0x12, 0x2b, 0x85, 0xe8, 0x19,
+ 0xac, 0x5a, 0x37, 0xae, 0xe1, 0xd8, 0xa6, 0x44, 0x2e, 0x2d, 0x8c, 0xbc, 0x22, 0x81, 0x38, 0xb0,
+ 0xb6, 0x07, 0xd5, 0x44, 0x25, 0x9b, 0x18, 0x77, 0xe2, 0x52, 0x26, 0xa2, 0x90, 0x5e, 0xbf, 0x45,
+ 0xb9, 0x7e, 0xb5, 0x7f, 0xce, 0x41, 0x2d, 0xbd, 0x00, 0x22, 0xfd, 0xf9, 0x24, 0xb0, 0x3d, 0x2b,
+ 0xa1, 0xbf, 0x33, 0x4e, 0x60, 0x3a, 0x62, 0xd5, 0xdf, 0x8c, 0x3d, 0x6a, 0x44, 0x3a, 0x32, 0xfd,
+ 0xf1, 0x1f, 0xb2, 0xf2, 0x2d, 0xdd, 0xe7, 0x6f, 0xe9, 0x1e, 0xbd, 0x0f, 0x48, 0xea, 0x77, 0x64,
+ 0x3b, 0x36, 0xd5, 0x2f, 0x6e, 0x28, 0x11, 0xf2, 0xcf, 0x63, 0x55, 0xd4, 0x1c, 0xb3, 0x8a, 0x2f,
+ 0x18, 0x1d, 0x69, 0xb0, 0xea, 0x79, 0x8e, 0x1e, 0x9a, 0x5e, 0x40, 0x74, 0xc3, 0x7a, 0xc9, 0x03,
+ 0xba, 0x3c, 0xae, 0x7a, 0x9e, 0xd3, 0x63, 0xb4, 0x96, 0xf5, 0x92, 0xed, 0xf1, 0xa6, 0x3f, 0x0e,
+ 0x09, 0xd5, 0xd9, 0x87, 0xbb, 0xc5, 0x0a, 0x06, 0x41, 0x6a, 0xfb, 0xe3, 0x30, 0xd1, 0xc0, 0x21,
+ 0x0e, 0x73, 0x75, 0x89, 0x06, 0x27, 0xc4, 0x61, 0xa3, 0xac, 0x9c, 0x91, 0xc0, 0x24, 0x2e, 0xed,
+ 0xdb, 0xe6, 0x25, 0xf3, 0x62, 0xca, 0xb6, 0x82, 0x53, 0x34, 0xed, 0x67, 0x50, 0xe4, 0x5e, 0x8f,
+ 0x4d, 0x9e, 0x7b, 0x0c, 0xee, 0x50, 0x84, 0x78, 0xcb, 0x8c, 0xc0, 0xdd, 0xc9, 0xbb, 0x50, 0x19,
+ 0x7a, 0xa1, 0x74, 0x47, 0xc2, 0xf2, 0xca, 0x8c, 0xc0, 0x2b, 0x1b, 0x50, 0x0e, 0x88, 0x61, 0x79,
+ 0xee, 0x28, 0x3a, 0xf4, 0xc6, 0x65, 0xed, 0x1b, 0x28, 0x89, 0xed, 0xf7, 0x0e, 0xf8, 0x1f, 0x00,
+ 0x32, 0x85, 0x1f, 0xf3, 0xd9, 0x21, 0x3a, 0x0c, 0x6d, 0xcf, 0x0d, 0xa3, 0x97, 0x16, 0x51, 0x73,
+ 0x36, 0xa9, 0xd0, 0xfe, 0x5b, 0x11, 0x21, 0x96, 0xb8, 0x03, 0x67, 0x27, 0x2a, 0x66, 0x69, 0xec,
+ 0xc4, 0x20, 0x0e, 0xdb, 0x51, 0x91, 0x9d, 0x33, 0x65, 0x24, 0x95, 0x5b, 0xf4, 0x09, 0x41, 0x02,
+ 0x44, 0x57, 0x6f, 0x44, 0x1e, 0x4a, 0xe6, 0xbd, 0x7a, 0x23, 0xe2, 0xea, 0x8d, 0xb0, 0xa3, 0x91,
+ 0x8c, 0xf1, 0x04, 0x5c, 0x81, 0x87, 0x78, 0x55, 0x2b, 0xbe, 0xdf, 0x24, 0xda, 0xff, 0x2a, 0xf1,
+ 0x5e, 0x11, 0xdd, 0x43, 0xa2, 0xaf, 0xa1, 0xcc, 0x96, 0x9d, 0xee, 0x18, 0xbe, 0x7c, 0x55, 0x6b,
+ 0x2f, 0x76, 0xc5, 0xd9, 0x64, 0xab, 0xec, 0xc4, 0xf0, 0x45, 0x84, 0xb6, 0xec, 0x8b, 0x12, 0xdb,
+ 0x73, 0x0c, 0x6b, 0xb2, 0xe7, 0xb0, 0x7f, 0xf4, 0x7d, 0xa8, 0x19, 0x63, 0xea, 0xe9, 0x86, 0x75,
+ 0x45, 0x02, 0x6a, 0x87, 0x44, 0xea, 0x7e, 0x95, 0x51, 0x5b, 0x11, 0xb1, 0xf1, 0x29, 0xac, 0x24,
+ 0x31, 0xdf, 0xe4, 0x7d, 0x8b, 0x49, 0xef, 0xfb, 0x27, 0x00, 0x93, 0x33, 0x3d, 0xb3, 0x11, 0x72,
+ 0x6d, 0x53, 0xdd, 0x8c, 0x8e, 0x25, 0x45, 0x5c, 0x66, 0x84, 0x36, 0x0b, 0xc0, 0xd3, 0x17, 0x8e,
+ 0xc5, 0xe8, 0xc2, 0x91, 0xad, 0x5a, 0xb6, 0xd0, 0x2e, 0xed, 0xd1, 0x28, 0xbe, 0x67, 0xa8, 0x78,
+ 0x9e, 0xf3, 0x94, 0x13, 0xb4, 0xdf, 0xe4, 0x84, 0xad, 0x88, 0xab, 0xe3, 0x4c, 0xe1, 0xf8, 0xdb,
+ 0x52, 0xf5, 0x1e, 0x40, 0x48, 0x8d, 0x80, 0x85, 0x12, 0x46, 0x74, 0xd3, 0xd1, 0x98, 0xba, 0xb1,
+ 0xec, 0x47, 0x2f, 0xe0, 0xb8, 0x22, 0x5b, 0xb7, 0x28, 0xfa, 0x0c, 0x56, 0x4c, 0xcf, 0xf1, 0x47,
+ 0x44, 0x76, 0x2e, 0xbe, 0xb1, 0x73, 0x35, 0x6e, 0xdf, 0xa2, 0x89, 0xfb, 0x95, 0xd2, 0x5d, 0xef,
+ 0x57, 0xfe, 0x5d, 0x11, 0x37, 0xe0, 0xc9, 0x0b, 0x78, 0x34, 0x98, 0xf1, 0xca, 0x7b, 0xb0, 0xe0,
+ 0x6d, 0xfe, 0x77, 0x3d, 0xf1, 0x36, 0x3e, 0xcb, 0xf2, 0xa6, 0xfa, 0xfa, 0xe0, 0xee, 0x3f, 0xf2,
+ 0x50, 0x89, 0x2f, 0xbf, 0xa7, 0x74, 0xff, 0x09, 0x54, 0xe2, 0xf4, 0x03, 0xb9, 0x41, 0x7c, 0xa7,
+ 0x7a, 0xe2, 0xc6, 0xe8, 0x05, 0x20, 0x63, 0x30, 0x88, 0x83, 0x36, 0x7d, 0x1c, 0x1a, 0x83, 0xe8,
+ 0xe9, 0xe1, 0x93, 0x39, 0xe4, 0x10, 0xf9, 0xad, 0x73, 0xd6, 0x1f, 0xab, 0xc6, 0x60, 0x90, 0xa2,
+ 0xa0, 0x3f, 0x85, 0xad, 0xf4, 0x18, 0xfa, 0xc5, 0x8d, 0xee, 0xdb, 0x96, 0x3c, 0xf6, 0x1d, 0xce,
+ 0x7b, 0xff, 0xdf, 0x4c, 0xc1, 0x7f, 0x71, 0x73, 0x66, 0x5b, 0x42, 0xe6, 0x28, 0x98, 0xaa, 0x68,
+ 0xfc, 0x39, 0xbc, 0xf3, 0x9a, 0xe6, 0x33, 0x74, 0xd0, 0x4d, 0xbf, 0x6b, 0x2f, 0x2e, 0x84, 0x84,
+ 0xf6, 0x7e, 0xad, 0x88, 0x67, 0x8a, 0xb4, 0x4c, 0x5a, 0xc9, 0xb8, 0x75, 0x27, 0xe3, 0x38, 0xed,
+ 0xb3, 0x73, 0x01, 0xcf, 0x43, 0xd5, 0x2f, 0x6f, 0x85, 0xaa, 0x59, 0x83, 0x18, 0x11, 0xf1, 0x09,
+ 0x20, 0x89, 0xa0, 0xfd, 0x4b, 0x1e, 0xca, 0x11, 0x3a, 0x3f, 0xb4, 0xdd, 0x84, 0x94, 0x38, 0x7a,
+ 0x7c, 0xb3, 0xa2, 0x60, 0x10, 0x24, 0x7e, 0x8b, 0xf0, 0x2e, 0x54, 0xd8, 0xd9, 0x50, 0x54, 0xe7,
+ 0x78, 0x75, 0x99, 0x11, 0x78, 0xe5, 0x7b, 0x50, 0xa5, 0x1e, 0x35, 0x46, 0x3a, 0xe5, 0xbe, 0x3c,
+ 0x2f, 0x7a, 0x73, 0x12, 0xf7, 0xe4, 0xe8, 0x87, 0xb0, 0x4e, 0x87, 0x81, 0x47, 0xe9, 0x88, 0xc5,
+ 0x77, 0x3c, 0xa2, 0x11, 0x01, 0x48, 0x01, 0xab, 0x71, 0x85, 0x88, 0x74, 0x42, 0xb6, 0x7b, 0x4f,
+ 0x1a, 0x33, 0xd3, 0xe5, 0x9b, 0x48, 0x01, 0xaf, 0xc6, 0x54, 0x66, 0xda, 0xcc, 0x79, 0xfa, 0x22,
+ 0x5a, 0xe0, 0x7b, 0x85, 0x82, 0xa3, 0x22, 0xd2, 0x61, 0xcd, 0x21, 0x46, 0x38, 0x0e, 0x88, 0xa5,
+ 0xbf, 0xb0, 0xc9, 0xc8, 0x12, 0x67, 0xed, 0x5a, 0xe6, 0xf0, 0x3b, 0x12, 0x4b, 0xf3, 0x09, 0xef,
+ 0x8d, 0x6b, 0x11, 0x9c, 0x28, 0xb3, 0xc8, 0x41, 0xfc, 0xa1, 0x35, 0xa8, 0xf6, 0x9e, 0xf7, 0xfa,
+ 0x9d, 0x13, 0xfd, 0xe4, 0x74, 0xbf, 0x23, 0x53, 0x17, 0x7a, 0x1d, 0x2c, 0x8a, 0x0a, 0xab, 0xef,
+ 0x9f, 0xf6, 0x5b, 0xc7, 0x7a, 0xff, 0xa8, 0xfd, 0xb4, 0xa7, 0xe6, 0xd0, 0x16, 0xac, 0xf7, 0x0f,
+ 0xf1, 0x69, 0xbf, 0x7f, 0xdc, 0xd9, 0xd7, 0xcf, 0x3a, 0xf8, 0xe8, 0x74, 0xbf, 0xa7, 0xe6, 0x11,
+ 0x82, 0xda, 0x84, 0xdc, 0x3f, 0x3a, 0xe9, 0xa8, 0x05, 0x54, 0x85, 0xe5, 0xb3, 0x0e, 0x6e, 0x77,
+ 0xba, 0x7d, 0xb5, 0xa8, 0xfd, 0x2a, 0x0f, 0xd5, 0x84, 0x16, 0x99, 0x21, 0x07, 0xa1, 0x88, 0xf3,
+ 0x0b, 0x98, 0xfd, 0xf2, 0xa7, 0x16, 0xc3, 0x1c, 0x0a, 0xed, 0x14, 0xb0, 0x28, 0xf0, 0xd8, 0xde,
+ 0xb8, 0x4e, 0xac, 0xf3, 0x02, 0x2e, 0x3b, 0xc6, 0xb5, 0x00, 0xf9, 0x1e, 0xac, 0x5c, 0x92, 0xc0,
+ 0x25, 0x23, 0x59, 0x2f, 0x34, 0x52, 0x15, 0x34, 0xd1, 0x64, 0x1b, 0x54, 0xd9, 0x64, 0x02, 0x23,
+ 0xd4, 0x51, 0x13, 0xf4, 0x93, 0x08, 0x6c, 0x13, 0x8a, 0xa2, 0x7a, 0x59, 0x8c, 0xcf, 0x0b, 0xcc,
+ 0x4d, 0x85, 0xaf, 0x0c, 0x9f, 0xc7, 0x77, 0x05, 0xcc, 0xff, 0xd1, 0xc5, 0xb4, 0x7e, 0x4a, 0x5c,
+ 0x3f, 0x7b, 0xf3, 0x9b, 0xf3, 0xeb, 0x54, 0x34, 0x8c, 0x55, 0xb4, 0x0c, 0x79, 0x1c, 0xbd, 0xf7,
+ 0xb7, 0x5b, 0xed, 0x43, 0xa6, 0x96, 0x55, 0xa8, 0x9c, 0xb4, 0x7e, 0xaa, 0x9f, 0xf7, 0xf8, 0x4d,
+ 0x23, 0x52, 0x61, 0xe5, 0x69, 0x07, 0x77, 0x3b, 0xc7, 0x92, 0x92, 0x47, 0x9b, 0xa0, 0x4a, 0xca,
+ 0xa4, 0x5d, 0x81, 0x21, 0x88, 0xdf, 0x22, 0x2a, 0x43, 0xa1, 0xf7, 0xac, 0x75, 0xa6, 0x96, 0xb4,
+ 0xff, 0xc9, 0xc1, 0x9a, 0x70, 0x0b, 0xf1, 0xcb, 0xe4, 0xeb, 0x5f, 0x66, 0x92, 0x17, 0x17, 0xb9,
+ 0xf4, 0xc5, 0x45, 0x14, 0x84, 0x72, 0xaf, 0x9e, 0x9f, 0x04, 0xa1, 0xfc, 0xc2, 0x23, 0xb5, 0xe3,
+ 0x17, 0xe6, 0xd9, 0xf1, 0xeb, 0xb0, 0xec, 0x90, 0x30, 0xd6, 0x5b, 0x05, 0x47, 0x45, 0x64, 0x43,
+ 0xd5, 0x70, 0x5d, 0x8f, 0xf2, 0x8b, 0x8c, 0xe8, 0x58, 0x74, 0x30, 0xd7, 0x9d, 0x75, 0x3c, 0xe3,
+ 0x66, 0x6b, 0x82, 0x24, 0x36, 0xe6, 0x24, 0x76, 0xe3, 0x27, 0xa0, 0xde, 0x6e, 0x30, 0x8f, 0x3b,
+ 0xfc, 0xc1, 0x47, 0x13, 0x6f, 0x48, 0xd8, 0xba, 0x38, 0xef, 0x3e, 0xed, 0x9e, 0x3e, 0xeb, 0xaa,
+ 0x4b, 0xac, 0x80, 0xcf, 0xbb, 0xdd, 0xa3, 0xee, 0x81, 0xaa, 0x20, 0x80, 0x52, 0xe7, 0xa7, 0x47,
+ 0xfd, 0xce, 0xbe, 0x9a, 0xdb, 0xfd, 0xf5, 0x3a, 0x94, 0x04, 0x93, 0xe8, 0x5b, 0x19, 0x09, 0x24,
+ 0xb3, 0xde, 0xd0, 0x4f, 0xe6, 0x8e, 0xa8, 0x53, 0x99, 0x74, 0x8d, 0xc7, 0x0b, 0xf7, 0x97, 0x2f,
+ 0x10, 0x4b, 0xe8, 0xaf, 0x15, 0x58, 0x49, 0xbd, 0x3e, 0x64, 0xbd, 0x0d, 0x9d, 0x91, 0x64, 0xd7,
+ 0xf8, 0xf1, 0x42, 0x7d, 0x63, 0x5e, 0x7e, 0xa9, 0x40, 0x35, 0x91, 0x5e, 0x86, 0xf6, 0x16, 0x49,
+ 0x49, 0x13, 0x9c, 0x7c, 0xba, 0x78, 0x36, 0x9b, 0xb6, 0xf4, 0xa1, 0x82, 0xfe, 0x4a, 0x81, 0x6a,
+ 0x22, 0xd1, 0x2a, 0x33, 0x2b, 0xd3, 0x69, 0x61, 0x99, 0x59, 0x99, 0x95, 0xd7, 0xb5, 0x84, 0xfe,
+ 0x42, 0x81, 0x4a, 0x9c, 0x34, 0x85, 0x1e, 0xce, 0x9f, 0x66, 0x25, 0x98, 0xf8, 0x64, 0xd1, 0xfc,
+ 0x2c, 0x6d, 0x09, 0xfd, 0x19, 0x94, 0xa3, 0x0c, 0x23, 0x94, 0xd5, 0x7b, 0xdd, 0x4a, 0x5f, 0x6a,
+ 0x3c, 0x9c, 0xbb, 0x5f, 0x72, 0xf8, 0x28, 0xed, 0x27, 0xf3, 0xf0, 0xb7, 0x12, 0x94, 0x1a, 0x0f,
+ 0xe7, 0xee, 0x17, 0x0f, 0xcf, 0x2c, 0x21, 0x91, 0x1d, 0x94, 0xd9, 0x12, 0xa6, 0xd3, 0x92, 0x32,
+ 0x5b, 0xc2, 0xac, 0x64, 0x24, 0xc1, 0x48, 0x22, 0xbf, 0x28, 0x33, 0x23, 0xd3, 0x39, 0x4c, 0x99,
+ 0x19, 0x99, 0x91, 0xce, 0xa4, 0x2d, 0xa1, 0x5f, 0x28, 0xc9, 0x73, 0xc1, 0xc3, 0xb9, 0xd3, 0x68,
+ 0xe6, 0x34, 0xc9, 0xa9, 0x44, 0x1e, 0xbe, 0x40, 0x7f, 0x21, 0x6f, 0x31, 0x44, 0x16, 0x0e, 0x9a,
+ 0x07, 0x2c, 0x95, 0xb8, 0xd3, 0xf8, 0x78, 0x31, 0x67, 0xc3, 0x99, 0xf8, 0x4b, 0x05, 0x60, 0x92,
+ 0xaf, 0x93, 0x99, 0x89, 0xa9, 0x44, 0xa1, 0xc6, 0xde, 0x02, 0x3d, 0x93, 0x0b, 0x24, 0xca, 0x27,
+ 0xc8, 0xbc, 0x40, 0x6e, 0xe5, 0x13, 0x65, 0x5e, 0x20, 0xb7, 0x73, 0x81, 0xb4, 0x25, 0xf4, 0x8f,
+ 0x0a, 0xac, 0x4f, 0xe5, 0x33, 0xa0, 0xc7, 0x77, 0x4c, 0x69, 0x69, 0x7c, 0xbe, 0x38, 0x40, 0xc4,
+ 0xda, 0xb6, 0xf2, 0xa1, 0x82, 0xfe, 0x46, 0x81, 0xd5, 0xd4, 0x1b, 0x30, 0xca, 0xec, 0xa5, 0x66,
+ 0x64, 0x46, 0x34, 0x1e, 0x2d, 0xd6, 0x39, 0x96, 0xd6, 0xdf, 0x29, 0x50, 0x4b, 0xa7, 0x03, 0xa0,
+ 0x47, 0xf3, 0x6d, 0x0b, 0xb7, 0x18, 0xfa, 0x6c, 0xc1, 0xde, 0x11, 0x47, 0x5f, 0x2c, 0xff, 0x51,
+ 0x51, 0x44, 0x6f, 0x25, 0xfe, 0xf9, 0xd1, 0x6f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x81, 0xc8, 0x42,
+ 0x4f, 0xd2, 0x30, 0x00, 0x00,
}
diff --git a/plugins/drivers/proto/driver.proto b/plugins/drivers/proto/driver.proto
index 56364a765..653fe3486 100644
--- a/plugins/drivers/proto/driver.proto
+++ b/plugins/drivers/proto/driver.proto
@@ -331,6 +331,11 @@ message CreateNetworkRequest {
message CreateNetworkResponse {
NetworkIsolationSpec isolation_spec = 1;
+
+ // created indicates that the network namespace is newly created
+ // as a result of this request. if false, the NetworkIsolationSpec
+ // value returned is an existing spec.
+ bool created = 2;
}
message DestroyNetworkRequest {
diff --git a/plugins/drivers/server.go b/plugins/drivers/server.go
index cf08f1964..61d3d8cf8 100644
--- a/plugins/drivers/server.go
+++ b/plugins/drivers/server.go
@@ -387,13 +387,14 @@ func (b *driverPluginServer) CreateNetwork(ctx context.Context, req *proto.Creat
return nil, fmt.Errorf("CreateNetwork RPC not supported by driver")
}
- spec, err := nm.CreateNetwork(req.AllocId)
+ spec, created, err := nm.CreateNetwork(req.AllocId)
if err != nil {
return nil, err
}
return &proto.CreateNetworkResponse{
IsolationSpec: NetworkIsolationSpecToProto(spec),
+ Created: created,
}, nil
}
diff --git a/plugins/drivers/testutils/testing.go b/plugins/drivers/testutils/testing.go
index 69518a2f3..eba3fda70 100644
--- a/plugins/drivers/testutils/testing.go
+++ b/plugins/drivers/testutils/testing.go
@@ -199,11 +199,11 @@ type MockDriver struct {
}
type MockNetworkManager struct {
- CreateNetworkF func(string) (*drivers.NetworkIsolationSpec, error)
+ CreateNetworkF func(string) (*drivers.NetworkIsolationSpec, bool, error)
DestroyNetworkF func(string, *drivers.NetworkIsolationSpec) error
}
-func (m *MockNetworkManager) CreateNetwork(id string) (*drivers.NetworkIsolationSpec, error) {
+func (m *MockNetworkManager) CreateNetwork(id string) (*drivers.NetworkIsolationSpec, bool, error) {
return m.CreateNetworkF(id)
}
func (m *MockNetworkManager) DestroyNetwork(id string, spec *drivers.NetworkIsolationSpec) error {
diff --git a/plugins/shared/cmd/launcher/command/device.go b/plugins/shared/cmd/launcher/command/device.go
index 2a89881bf..5b4d86529 100644
--- a/plugins/shared/cmd/launcher/command/device.go
+++ b/plugins/shared/cmd/launcher/command/device.go
@@ -209,7 +209,7 @@ func (c *Device) setConfig(spec hcldec.Spec, apiVersion string, config []byte, n
}
req := &base.Config{
- PluginConfig: config,
+ PluginConfig: cdata,
AgentConfig: nmdCfg,
ApiVersion: apiVersion,
}
diff --git a/scheduler/context.go b/scheduler/context.go
index e62509a82..e38ae5b0f 100644
--- a/scheduler/context.go
+++ b/scheduler/context.go
@@ -5,7 +5,6 @@ import (
log "github.com/hashicorp/go-hclog"
memdb "github.com/hashicorp/go-memdb"
- version "github.com/hashicorp/go-version"
"github.com/hashicorp/nomad/nomad/structs"
)
@@ -35,7 +34,10 @@ type Context interface {
RegexpCache() map[string]*regexp.Regexp
// VersionConstraintCache is a cache of version constraints
- VersionConstraintCache() map[string]version.Constraints
+ VersionConstraintCache() map[string]VerConstraints
+
+ // SemverConstraintCache is a cache of semver constraints
+ SemverConstraintCache() map[string]VerConstraints
// Eligibility returns a tracker for node eligibility in the context of the
// eval.
@@ -44,8 +46,9 @@ type Context interface {
// EvalCache is used to cache certain things during an evaluation
type EvalCache struct {
- reCache map[string]*regexp.Regexp
- constraintCache map[string]version.Constraints
+ reCache map[string]*regexp.Regexp
+ versionCache map[string]VerConstraints
+ semverCache map[string]VerConstraints
}
func (e *EvalCache) RegexpCache() map[string]*regexp.Regexp {
@@ -55,11 +58,18 @@ func (e *EvalCache) RegexpCache() map[string]*regexp.Regexp {
return e.reCache
}
-func (e *EvalCache) VersionConstraintCache() map[string]version.Constraints {
- if e.constraintCache == nil {
- e.constraintCache = make(map[string]version.Constraints)
+func (e *EvalCache) VersionConstraintCache() map[string]VerConstraints {
+ if e.versionCache == nil {
+ e.versionCache = make(map[string]VerConstraints)
}
- return e.constraintCache
+ return e.versionCache
+}
+
+func (e *EvalCache) SemverConstraintCache() map[string]VerConstraints {
+ if e.semverCache == nil {
+ e.semverCache = make(map[string]VerConstraints)
+ }
+ return e.semverCache
}
// EvalContext is a Context used during an Evaluation
diff --git a/scheduler/feasible.go b/scheduler/feasible.go
index 1e58a9631..fbe184bb3 100644
--- a/scheduler/feasible.go
+++ b/scheduler/feasible.go
@@ -8,6 +8,7 @@ import (
"strings"
version "github.com/hashicorp/go-version"
+ "github.com/hashicorp/nomad/helper/constraints/semver"
"github.com/hashicorp/nomad/nomad/structs"
psstructs "github.com/hashicorp/nomad/plugins/shared/structs"
)
@@ -115,7 +116,7 @@ func NewHostVolumeChecker(ctx Context) *HostVolumeChecker {
// SetVolumes takes the volumes required by a task group and updates the checker.
func (h *HostVolumeChecker) SetVolumes(volumes map[string]*structs.VolumeRequest) {
- nm := make(map[string][]*structs.VolumeRequest)
+ lookupMap := make(map[string][]*structs.VolumeRequest)
// Convert the map from map[DesiredName]Request to map[Source][]Request to improve
// lookup performance. Also filter non-host volumes.
@@ -124,15 +125,9 @@ func (h *HostVolumeChecker) SetVolumes(volumes map[string]*structs.VolumeRequest
continue
}
- cfg, err := structs.ParseHostVolumeConfig(req.Config)
- if err != nil {
- // Could not parse host volume config, skip the volume for now.
- continue
- }
-
- nm[cfg.Source] = append(nm[cfg.Source], req)
+ lookupMap[req.Source] = append(lookupMap[req.Source], req)
}
- h.volumes = nm
+ h.volumes = lookupMap
}
func (h *HostVolumeChecker) Feasible(candidate *structs.Node) bool {
@@ -557,7 +552,11 @@ func checkConstraint(ctx Context, operand string, lVal, rVal interface{}, lFound
case structs.ConstraintAttributeIsNotSet:
return !lFound
case structs.ConstraintVersion:
- return lFound && rFound && checkVersionMatch(ctx, lVal, rVal)
+ parser := newVersionConstraintParser(ctx)
+ return lFound && rFound && checkVersionMatch(ctx, parser, lVal, rVal)
+ case structs.ConstraintSemver:
+ parser := newSemverConstraintParser(ctx)
+ return lFound && rFound && checkVersionMatch(ctx, parser, lVal, rVal)
case structs.ConstraintRegex:
return lFound && rFound && checkRegexpMatch(ctx, lVal, rVal)
case structs.ConstraintSetContains, structs.ConstraintSetContainsAll:
@@ -607,7 +606,7 @@ func checkLexicalOrder(op string, lVal, rVal interface{}) bool {
// checkVersionMatch is used to compare a version on the
// left hand side with a set of constraints on the right hand side
-func checkVersionMatch(ctx Context, lVal, rVal interface{}) bool {
+func checkVersionMatch(ctx Context, parse verConstraintParser, lVal, rVal interface{}) bool {
// Parse the version
var versionStr string
switch v := lVal.(type) {
@@ -631,17 +630,10 @@ func checkVersionMatch(ctx Context, lVal, rVal interface{}) bool {
return false
}
- // Check the cache for a match
- cache := ctx.VersionConstraintCache()
- constraints := cache[constraintStr]
-
// Parse the constraints
+ constraints := parse(constraintStr)
if constraints == nil {
- constraints, err = version.NewConstraint(constraintStr)
- if err != nil {
- return false
- }
- cache[constraintStr] = constraints
+ return false
}
// Check the constraints against the version
@@ -650,7 +642,7 @@ func checkVersionMatch(ctx Context, lVal, rVal interface{}) bool {
// checkAttributeVersionMatch is used to compare a version on the
// left hand side with a set of constraints on the right hand side
-func checkAttributeVersionMatch(ctx Context, lVal, rVal *psstructs.Attribute) bool {
+func checkAttributeVersionMatch(ctx Context, parse verConstraintParser, lVal, rVal *psstructs.Attribute) bool {
// Parse the version
var versionStr string
if s, ok := lVal.GetString(); ok {
@@ -673,17 +665,10 @@ func checkAttributeVersionMatch(ctx Context, lVal, rVal *psstructs.Attribute) bo
return false
}
- // Check the cache for a match
- cache := ctx.VersionConstraintCache()
- constraints := cache[constraintStr]
-
// Parse the constraints
+ constraints := parse(constraintStr)
if constraints == nil {
- constraints, err = version.NewConstraint(constraintStr)
- if err != nil {
- return false
- }
- cache[constraintStr] = constraints
+ return false
}
// Check the constraints against the version
@@ -1125,7 +1110,17 @@ func checkAttributeConstraint(ctx Context, operand string, lVal, rVal *psstructs
return false
}
- return checkAttributeVersionMatch(ctx, lVal, rVal)
+ parser := newVersionConstraintParser(ctx)
+ return checkAttributeVersionMatch(ctx, parser, lVal, rVal)
+
+ case structs.ConstraintSemver:
+ if !(lFound && rFound) {
+ return false
+ }
+
+ parser := newSemverConstraintParser(ctx)
+ return checkAttributeVersionMatch(ctx, parser, lVal, rVal)
+
case structs.ConstraintRegex:
if !(lFound && rFound) {
return false
@@ -1170,3 +1165,50 @@ func checkAttributeConstraint(ctx Context, operand string, lVal, rVal *psstructs
}
}
+
+// VerConstraints is the interface implemented by both go-verson constraints
+// and semver constraints.
+type VerConstraints interface {
+ Check(v *version.Version) bool
+ String() string
+}
+
+// verConstraintParser returns a version constraints implementation (go-version
+// or semver).
+type verConstraintParser func(verConstraint string) VerConstraints
+
+func newVersionConstraintParser(ctx Context) verConstraintParser {
+ cache := ctx.VersionConstraintCache()
+
+ return func(cstr string) VerConstraints {
+ if c := cache[cstr]; c != nil {
+ return c
+ }
+
+ constraints, err := version.NewConstraint(cstr)
+ if err != nil {
+ return nil
+ }
+ cache[cstr] = constraints
+
+ return constraints
+ }
+}
+
+func newSemverConstraintParser(ctx Context) verConstraintParser {
+ cache := ctx.SemverConstraintCache()
+
+ return func(cstr string) VerConstraints {
+ if c := cache[cstr]; c != nil {
+ return c
+ }
+
+ constraints, err := semver.NewConstraint(cstr)
+ if err != nil {
+ return nil
+ }
+ cache[cstr] = constraints
+
+ return constraints
+ }
+}
diff --git a/scheduler/feasible_test.go b/scheduler/feasible_test.go
index 0d6a5d33d..62b39acf8 100644
--- a/scheduler/feasible_test.go
+++ b/scheduler/feasible_test.go
@@ -110,15 +110,15 @@ func TestHostVolumeChecker(t *testing.T) {
volumes := map[string]*structs.VolumeRequest{
"foo": {
Type: "host",
- Config: map[string]interface{}{"source": "foo"},
+ Source: "foo",
},
"bar": {
Type: "host",
- Config: map[string]interface{}{"source": "bar"},
+ Source: "bar",
},
"baz": {
Type: "nothost",
- Config: map[string]interface{}{"source": "baz"},
+ Source: "baz",
},
}
@@ -183,19 +183,15 @@ func TestHostVolumeChecker_ReadOnly(t *testing.T) {
readwriteRequest := map[string]*structs.VolumeRequest{
"foo": {
- Type: "host",
- Config: map[string]interface{}{
- "source": "foo",
- },
+ Type: "host",
+ Source: "foo",
},
}
readonlyRequest := map[string]*structs.VolumeRequest{
"foo": {
- Type: "host",
- Config: map[string]interface{}{
- "source": "foo",
- },
+ Type: "host",
+ Source: "foo",
ReadOnly: true,
},
}
@@ -712,6 +708,8 @@ func TestCheckLexicalOrder(t *testing.T) {
}
func TestCheckVersionConstraint(t *testing.T) {
+ t.Parallel()
+
type tcase struct {
lVal, rVal interface{}
result bool
@@ -737,15 +735,93 @@ func TestCheckVersionConstraint(t *testing.T) {
lVal: 1, rVal: "~> 1.0",
result: true,
},
+ {
+ // Prereleases are never > final releases
+ lVal: "1.3.0-beta1", rVal: ">= 0.6.1",
+ result: false,
+ },
+ {
+ // Prerelease X.Y.Z must match
+ lVal: "1.7.0-alpha1", rVal: ">= 1.6.0-beta1",
+ result: false,
+ },
+ {
+ // Meta is ignored
+ lVal: "1.3.0-beta1+ent", rVal: "= 1.3.0-beta1",
+ result: true,
+ },
}
for _, tc := range cases {
_, ctx := testContext(t)
- if res := checkVersionMatch(ctx, tc.lVal, tc.rVal); res != tc.result {
+ p := newVersionConstraintParser(ctx)
+ if res := checkVersionMatch(ctx, p, tc.lVal, tc.rVal); res != tc.result {
t.Fatalf("TC: %#v, Result: %v", tc, res)
}
}
}
+func TestCheckSemverConstraint(t *testing.T) {
+ t.Parallel()
+
+ type tcase struct {
+ name string
+ lVal, rVal interface{}
+ result bool
+ }
+ cases := []tcase{
+ {
+ name: "Pessimistic operator always fails 1",
+ lVal: "1.2.3", rVal: "~> 1.0",
+ result: false,
+ },
+ {
+ name: "1.2.3 does satisfy >= 1.0, < 1.4",
+ lVal: "1.2.3", rVal: ">= 1.0, < 1.4",
+ result: true,
+ },
+ {
+ name: "Pessimistic operator always fails 2",
+ lVal: "2.0.1", rVal: "~> 1.0",
+ result: false,
+ },
+ {
+ name: "1.4 does not satisfy >= 1.0, < 1.4",
+ lVal: "1.4", rVal: ">= 1.0, < 1.4",
+ result: false,
+ },
+ {
+ name: "Pessimistic operator always fails 3",
+ lVal: 1, rVal: "~> 1.0",
+ result: false,
+ },
+ {
+ name: "Prereleases are handled according to semver 1",
+ lVal: "1.3.0-beta1", rVal: ">= 0.6.1",
+ result: true,
+ },
+ {
+ name: "Prereleases are handled according to semver 2",
+ lVal: "1.7.0-alpha1", rVal: ">= 1.6.0-beta1",
+ result: true,
+ },
+ {
+ name: "Meta is ignored according to semver",
+ lVal: "1.3.0-beta1+ent", rVal: "= 1.3.0-beta1",
+ result: true,
+ },
+ }
+
+ for _, tc := range cases {
+ tc := tc
+ t.Run(tc.name, func(t *testing.T) {
+ _, ctx := testContext(t)
+ p := newSemverConstraintParser(ctx)
+ actual := checkVersionMatch(ctx, p, tc.lVal, tc.rVal)
+ require.Equal(t, tc.result, actual)
+ })
+ }
+}
+
func TestCheckRegexpConstraint(t *testing.T) {
type tcase struct {
lVal, rVal interface{}
diff --git a/scheduler/generic_sched.go b/scheduler/generic_sched.go
index 8e2fa9e57..3f27783dc 100644
--- a/scheduler/generic_sched.go
+++ b/scheduler/generic_sched.go
@@ -509,9 +509,11 @@ func (s *GenericScheduler) computePlacements(destructive, place []placementResul
AllocatedResources: resources,
DesiredStatus: structs.AllocDesiredStatusRun,
ClientStatus: structs.AllocClientStatusPending,
+ // SharedResources is considered deprecated, will be removed in 0.11.
+ // It is only set for compat reasons.
SharedResources: &structs.Resources{
DiskMB: tg.EphemeralDisk.SizeMB,
- Networks: tg.Networks,
+ Networks: resources.Shared.Networks,
},
}
diff --git a/scheduler/generic_sched_test.go b/scheduler/generic_sched_test.go
index dee6a5228..18ec41606 100644
--- a/scheduler/generic_sched_test.go
+++ b/scheduler/generic_sched_test.go
@@ -2164,6 +2164,92 @@ func TestServiceSched_JobModify_InPlace(t *testing.T) {
}
}
+// TestServiceSched_JobModify_InPlace08 asserts that inplace updates of
+// allocations created with Nomad 0.8 do not cause panics.
+//
+// COMPAT(0.11) - While we do not guarantee that upgrades from 0.8 -> 0.10
+// (skipping 0.9) are safe, we do want to avoid panics in the scheduler which
+// cause unrecoverable server outages with no chance of recovery.
+//
+// Safe to remove in 0.11.0 as no one should ever be trying to upgrade from 0.8
+// to 0.11!
+func TestServiceSched_JobModify_InPlace08(t *testing.T) {
+ h := NewHarness(t)
+
+ // Create node
+ node := mock.Node()
+ noErr(t, h.State.UpsertNode(h.NextIndex(), node))
+
+ // Generate a fake job with 0.8 allocations
+ job := mock.Job()
+ job.TaskGroups[0].Count = 1
+ noErr(t, h.State.UpsertJob(h.NextIndex(), job))
+
+ // Create 0.8 alloc
+ alloc := mock.Alloc()
+ alloc.Job = job.Copy()
+ alloc.JobID = job.ID
+ alloc.NodeID = node.ID
+ alloc.AllocatedResources = nil // 0.8 didn't have this
+ noErr(t, h.State.UpsertAllocs(h.NextIndex(), []*structs.Allocation{alloc}))
+
+ // Update the job inplace
+ job2 := job.Copy()
+
+ job2.TaskGroups[0].Tasks[0].Services[0].Tags[0] = "newtag"
+ noErr(t, h.State.UpsertJob(h.NextIndex(), job2))
+
+ // Create a mock evaluation
+ eval := &structs.Evaluation{
+ Namespace: structs.DefaultNamespace,
+ ID: uuid.Generate(),
+ Priority: 50,
+ TriggeredBy: structs.EvalTriggerJobRegister,
+ JobID: job.ID,
+ Status: structs.EvalStatusPending,
+ }
+ noErr(t, h.State.UpsertEvals(h.NextIndex(), []*structs.Evaluation{eval}))
+
+ // Process the evaluation
+ err := h.Process(NewServiceScheduler, eval)
+ require.NoError(t, err)
+
+ // Ensure a single plan
+ require.Len(t, h.Plans, 1)
+ plan := h.Plans[0]
+
+ // Ensure the plan did not evict any allocs
+ var update []*structs.Allocation
+ for _, updateList := range plan.NodeUpdate {
+ update = append(update, updateList...)
+ }
+ require.Zero(t, update)
+
+ // Ensure the plan updated the existing alloc
+ var planned []*structs.Allocation
+ for _, allocList := range plan.NodeAllocation {
+ planned = append(planned, allocList...)
+ }
+ require.Len(t, planned, 1)
+ for _, p := range planned {
+ require.Equal(t, job2, p.Job)
+ }
+
+ // Lookup the allocations by JobID
+ ws := memdb.NewWatchSet()
+ out, err := h.State.AllocsByJob(ws, job.Namespace, job.ID, false)
+ noErr(t, err)
+
+ // Ensure all allocations placed
+ require.Len(t, out, 1)
+ h.AssertEvalStatus(t, structs.EvalStatusComplete)
+
+ newAlloc := out[0]
+
+ // Verify AllocatedResources was set
+ require.NotNil(t, newAlloc.AllocatedResources)
+}
+
func TestServiceSched_JobModify_DistinctProperty(t *testing.T) {
h := NewHarness(t)
diff --git a/scheduler/system_sched.go b/scheduler/system_sched.go
index 993533116..ec661efbb 100644
--- a/scheduler/system_sched.go
+++ b/scheduler/system_sched.go
@@ -363,9 +363,11 @@ func (s *SystemScheduler) computePlacements(place []allocTuple) error {
AllocatedResources: resources,
DesiredStatus: structs.AllocDesiredStatusRun,
ClientStatus: structs.AllocClientStatusPending,
+ // SharedResources is considered deprecated, will be removed in 0.11.
+ // It is only set for compat reasons
SharedResources: &structs.Resources{
DiskMB: missing.TaskGroup.EphemeralDisk.SizeMB,
- Networks: missing.TaskGroup.Networks,
+ Networks: resources.Shared.Networks,
},
}
diff --git a/scheduler/util.go b/scheduler/util.go
index 118fb1b0b..4b6aa46b2 100644
--- a/scheduler/util.go
+++ b/scheduler/util.go
@@ -337,6 +337,8 @@ func shuffleNodes(nodes []*structs.Node) {
// tasksUpdated does a diff between task groups to see if the
// tasks, their drivers, environment variables or config have updated. The
// inputs are the task group name to diff and two jobs to diff.
+// taskUpdated and functions called within assume that the given
+// taskGroup has already been checked to not be nil
func tasksUpdated(jobA, jobB *structs.Job, taskGroup string) bool {
a := jobA.LookupTaskGroup(taskGroup)
b := jobB.LookupTaskGroup(taskGroup)
@@ -356,6 +358,16 @@ func tasksUpdated(jobA, jobB *structs.Job, taskGroup string) bool {
return true
}
+ // Check Affinities
+ if affinitiesUpdated(jobA, jobB, taskGroup) {
+ return true
+ }
+
+ // Check Spreads
+ if spreadsUpdated(jobA, jobB, taskGroup) {
+ return true
+ }
+
// Check each task
for _, at := range a.Tasks {
bt := b.LookupTask(at.Name)
@@ -401,6 +413,8 @@ func tasksUpdated(jobA, jobB *structs.Job, taskGroup string) bool {
return true
} else if ar.MemoryMB != br.MemoryMB {
return true
+ } else if !ar.Devices.Equals(&br.Devices) {
+ return true
}
}
return false
@@ -440,6 +454,61 @@ func networkPortMap(n *structs.NetworkResource) map[string]int {
return m
}
+func affinitiesUpdated(jobA, jobB *structs.Job, taskGroup string) bool {
+ var aAffinities []*structs.Affinity
+ var bAffinities []*structs.Affinity
+
+ tgA := jobA.LookupTaskGroup(taskGroup)
+ tgB := jobB.LookupTaskGroup(taskGroup)
+
+ // Append jobA job and task group level affinities
+ aAffinities = append(aAffinities, jobA.Affinities...)
+ aAffinities = append(aAffinities, tgA.Affinities...)
+
+ // Append jobB job and task group level affinities
+ bAffinities = append(bAffinities, jobB.Affinities...)
+ bAffinities = append(bAffinities, tgB.Affinities...)
+
+ // append task affinities
+ for _, task := range tgA.Tasks {
+ aAffinities = append(aAffinities, task.Affinities...)
+ }
+
+ for _, task := range tgB.Tasks {
+ bAffinities = append(bAffinities, task.Affinities...)
+ }
+
+ // Check for equality
+ if len(aAffinities) != len(bAffinities) {
+ return true
+ }
+
+ return !reflect.DeepEqual(aAffinities, bAffinities)
+}
+
+func spreadsUpdated(jobA, jobB *structs.Job, taskGroup string) bool {
+ var aSpreads []*structs.Spread
+ var bSpreads []*structs.Spread
+
+ tgA := jobA.LookupTaskGroup(taskGroup)
+ tgB := jobB.LookupTaskGroup(taskGroup)
+
+ // append jobA and task group level spreads
+ aSpreads = append(aSpreads, jobA.Spreads...)
+ aSpreads = append(aSpreads, tgA.Spreads...)
+
+ // append jobB and task group level spreads
+ bSpreads = append(bSpreads, jobB.Spreads...)
+ bSpreads = append(bSpreads, tgB.Spreads...)
+
+ // Check for equality
+ if len(aSpreads) != len(bSpreads) {
+ return true
+ }
+
+ return !reflect.DeepEqual(aSpreads, bSpreads)
+}
+
// setStatus is used to update the status of the evaluation
func setStatus(logger log.Logger, planner Planner,
eval, nextEval, spawnedBlocked *structs.Evaluation,
@@ -822,7 +891,7 @@ func genericAllocUpdateFn(ctx Context, stack Stack, evalID string) allocUpdateTy
networks = tr.Networks
}
- // Add thhe networks back
+ // Add the networks back
resources.Networks = networks
}
@@ -837,11 +906,20 @@ func genericAllocUpdateFn(ctx Context, stack Stack, evalID string) allocUpdateTy
newAlloc.AllocatedResources = &structs.AllocatedResources{
Tasks: option.TaskResources,
Shared: structs.AllocatedSharedResources{
- DiskMB: int64(newTG.EphemeralDisk.SizeMB),
- Networks: newTG.Networks,
+ DiskMB: int64(newTG.EphemeralDisk.SizeMB),
},
}
+ // Since this is an inplace update, we should copy network
+ // information from the original alloc. This is similar to how
+ // we copy network info for task level networks above.
+ //
+ // existing.AllocatedResources is nil on Allocations created by
+ // Nomad v0.8 or earlier.
+ if existing.AllocatedResources != nil {
+ newAlloc.AllocatedResources.Shared.Networks = existing.AllocatedResources.Shared.Networks
+ }
+
// Use metrics from existing alloc for in place upgrade
// This is because if the inplace upgrade succeeded, any scoring metadata from
// when it first went through the scheduler should still be preserved. Using scoring
diff --git a/scheduler/util_test.go b/scheduler/util_test.go
index 08f5812aa..8114fa600 100644
--- a/scheduler/util_test.go
+++ b/scheduler/util_test.go
@@ -5,6 +5,8 @@ import (
"reflect"
"testing"
+ "github.com/stretchr/testify/require"
+
"github.com/hashicorp/nomad/helper"
"github.com/hashicorp/nomad/helper/testlog"
"github.com/hashicorp/nomad/helper/uuid"
@@ -23,19 +25,12 @@ func noErr(t *testing.T, err error) {
func TestMaterializeTaskGroups(t *testing.T) {
job := mock.Job()
index := materializeTaskGroups(job)
- if len(index) != 10 {
- t.Fatalf("Bad: %#v", index)
- }
+ require.Equal(t, 10, len(index))
for i := 0; i < 10; i++ {
name := fmt.Sprintf("my-job.web[%d]", i)
- tg, ok := index[name]
- if !ok {
- t.Fatalf("bad")
- }
- if tg != job.TaskGroups[0] {
- t.Fatalf("bad")
- }
+ require.Contains(t, index, name)
+ require.Equal(t, job.TaskGroups[0], index[name])
}
}
@@ -134,43 +129,30 @@ func TestDiffAllocs(t *testing.T) {
lost := diff.lost
// We should update the first alloc
- if len(update) != 1 || update[0].Alloc != allocs[0] {
- t.Fatalf("bad: %#v", update)
- }
+ require.True(t, len(update) == 1 && update[0].Alloc == allocs[0])
// We should ignore the second alloc
- if len(ignore) != 1 || ignore[0].Alloc != allocs[1] {
- t.Fatalf("bad: %#v", ignore)
- }
+ require.True(t, len(ignore) == 1 && ignore[0].Alloc == allocs[1])
// We should stop the 3rd alloc
- if len(stop) != 1 || stop[0].Alloc != allocs[2] {
- t.Fatalf("bad: %#v", stop)
- }
+ require.True(t, len(stop) == 1 && stop[0].Alloc == allocs[2])
// We should migrate the 4rd alloc
- if len(migrate) != 1 || migrate[0].Alloc != allocs[3] {
- t.Fatalf("bad: %#v", migrate)
- }
+ require.True(t, len(migrate) == 1 && migrate[0].Alloc == allocs[3])
// We should mark the 5th alloc as lost
- if len(lost) != 1 || lost[0].Alloc != allocs[4] {
- t.Fatalf("bad: %#v", migrate)
- }
+ require.True(t, len(lost) == 1 && lost[0].Alloc == allocs[4])
// We should place 6
- if len(place) != 6 {
- t.Fatalf("bad: %#v", place)
- }
+ require.Equal(t, 6, len(place))
// Ensure that the allocations which are replacements of terminal allocs are
// annotated
for name, alloc := range terminalAllocs {
for _, allocTuple := range diff.place {
if name == allocTuple.Name {
- if !reflect.DeepEqual(alloc, allocTuple.Alloc) {
- t.Fatalf("expected: %#v, actual: %#v", alloc, allocTuple.Alloc)
- }
+ require.True(t, reflect.DeepEqual(alloc, allocTuple.Alloc),
+ "expected: %#v, actual: %#v", alloc, allocTuple.Alloc)
}
}
}
@@ -254,43 +236,30 @@ func TestDiffSystemAllocs(t *testing.T) {
lost := diff.lost
// We should update the first alloc
- if len(update) != 1 || update[0].Alloc != allocs[0] {
- t.Fatalf("bad: %#v", update)
- }
+ require.True(t, len(update) == 1 && update[0].Alloc == allocs[0])
// We should ignore the second alloc
- if len(ignore) != 1 || ignore[0].Alloc != allocs[1] {
- t.Fatalf("bad: %#v", ignore)
- }
+ require.True(t, len(ignore) == 1 && ignore[0].Alloc == allocs[1])
// We should stop the third alloc
- if len(stop) != 0 {
- t.Fatalf("bad: %#v", stop)
- }
+ require.Empty(t, stop)
// There should be no migrates.
- if len(migrate) != 1 || migrate[0].Alloc != allocs[2] {
- t.Fatalf("bad: %#v", migrate)
- }
+ require.True(t, len(migrate) == 1 && migrate[0].Alloc == allocs[2])
// We should mark the 5th alloc as lost
- if len(lost) != 1 || lost[0].Alloc != allocs[3] {
- t.Fatalf("bad: %#v", migrate)
- }
+ require.True(t, len(lost) == 1 && lost[0].Alloc == allocs[3])
// We should place 1
- if l := len(place); l != 2 {
- t.Fatalf("bad: %#v", l)
- }
+ require.Equal(t, 2, len(place))
// Ensure that the allocations which are replacements of terminal allocs are
// annotated
for _, alloc := range terminalAllocs {
for _, allocTuple := range diff.place {
if alloc.NodeID == allocTuple.Alloc.NodeID {
- if !reflect.DeepEqual(alloc, allocTuple.Alloc) {
- t.Fatalf("expected: %#v, actual: %#v", alloc, allocTuple.Alloc)
- }
+ require.True(t, reflect.DeepEqual(alloc, allocTuple.Alloc),
+ "expected: %#v, actual: %#v", alloc, allocTuple.Alloc)
}
}
}
@@ -307,28 +276,20 @@ func TestReadyNodesInDCs(t *testing.T) {
node4 := mock.Node()
node4.Drain = true
- noErr(t, state.UpsertNode(1000, node1))
- noErr(t, state.UpsertNode(1001, node2))
- noErr(t, state.UpsertNode(1002, node3))
- noErr(t, state.UpsertNode(1003, node4))
+ require.NoError(t, state.UpsertNode(1000, node1))
+ require.NoError(t, state.UpsertNode(1001, node2))
+ require.NoError(t, state.UpsertNode(1002, node3))
+ require.NoError(t, state.UpsertNode(1003, node4))
nodes, dc, err := readyNodesInDCs(state, []string{"dc1", "dc2"})
- if err != nil {
- t.Fatalf("err: %v", err)
- }
+ require.NoError(t, err)
+ require.Equal(t, 2, len(nodes))
+ require.True(t, nodes[0].ID != node3.ID && nodes[1].ID != node3.ID)
- if len(nodes) != 2 {
- t.Fatalf("bad: %v", nodes)
- }
- if nodes[0].ID == node3.ID || nodes[1].ID == node3.ID {
- t.Fatalf("Bad: %#v", nodes)
- }
- if count, ok := dc["dc1"]; !ok || count != 1 {
- t.Fatalf("Bad: dc1 count %v", count)
- }
- if count, ok := dc["dc2"]; !ok || count != 1 {
- t.Fatalf("Bad: dc2 count %v", count)
- }
+ require.Contains(t, dc, "dc1")
+ require.Equal(t, 1, dc["dc1"])
+ require.Contains(t, dc, "dc2")
+ require.Equal(t, 1, dc["dc2"])
}
func TestRetryMax(t *testing.T) {
@@ -338,12 +299,8 @@ func TestRetryMax(t *testing.T) {
return false, nil
}
err := retryMax(3, bad, nil)
- if err == nil {
- t.Fatalf("should fail")
- }
- if calls != 3 {
- t.Fatalf("mis match")
- }
+ require.Error(t, err)
+ require.Equal(t, 3, calls, "mis match")
calls = 0
first := true
@@ -355,12 +312,8 @@ func TestRetryMax(t *testing.T) {
return false
}
err = retryMax(3, bad, reset)
- if err == nil {
- t.Fatalf("should fail")
- }
- if calls != 6 {
- t.Fatalf("mis match")
- }
+ require.Error(t, err)
+ require.Equal(t, 6, calls, "mis match")
calls = 0
good := func() (bool, error) {
@@ -368,12 +321,8 @@ func TestRetryMax(t *testing.T) {
return true, nil
}
err = retryMax(3, good, nil)
- if err != nil {
- t.Fatalf("err: %v", err)
- }
- if calls != 1 {
- t.Fatalf("mis match")
- }
+ require.NoError(t, err)
+ require.Equal(t, 1, calls, "mis match")
}
func TestTaintedNodes(t *testing.T) {
@@ -386,10 +335,10 @@ func TestTaintedNodes(t *testing.T) {
node3.Status = structs.NodeStatusDown
node4 := mock.Node()
node4.Drain = true
- noErr(t, state.UpsertNode(1000, node1))
- noErr(t, state.UpsertNode(1001, node2))
- noErr(t, state.UpsertNode(1002, node3))
- noErr(t, state.UpsertNode(1003, node4))
+ require.NoError(t, state.UpsertNode(1000, node1))
+ require.NoError(t, state.UpsertNode(1001, node2))
+ require.NoError(t, state.UpsertNode(1002, node3))
+ require.NoError(t, state.UpsertNode(1003, node4))
allocs := []*structs.Allocation{
{NodeID: node1.ID},
@@ -399,32 +348,19 @@ func TestTaintedNodes(t *testing.T) {
{NodeID: "12345678-abcd-efab-cdef-123456789abc"},
}
tainted, err := taintedNodes(state, allocs)
- if err != nil {
- t.Fatalf("err: %v", err)
- }
+ require.NoError(t, err)
+ require.Equal(t, 3, len(tainted))
+ require.NotContains(t, tainted, node1.ID)
+ require.NotContains(t, tainted, node2.ID)
- if len(tainted) != 3 {
- t.Fatalf("bad: %v", tainted)
- }
+ require.Contains(t, tainted, node3.ID)
+ require.NotNil(t, tainted[node3.ID])
- if _, ok := tainted[node1.ID]; ok {
- t.Fatalf("Bad: %v", tainted)
- }
- if _, ok := tainted[node2.ID]; ok {
- t.Fatalf("Bad: %v", tainted)
- }
+ require.Contains(t, tainted, node4.ID)
+ require.NotNil(t, tainted[node4.ID])
- if node, ok := tainted[node3.ID]; !ok || node == nil {
- t.Fatalf("Bad: %v", tainted)
- }
-
- if node, ok := tainted[node4.ID]; !ok || node == nil {
- t.Fatalf("Bad: %v", tainted)
- }
-
- if node, ok := tainted["12345678-abcd-efab-cdef-123456789abc"]; !ok || node != nil {
- t.Fatalf("Bad: %v", tainted)
- }
+ require.Contains(t, tainted, "12345678-abcd-efab-cdef-123456789abc")
+ require.Nil(t, tainted["12345678-abcd-efab-cdef-123456789abc"])
}
func TestShuffleNodes(t *testing.T) {
@@ -445,43 +381,163 @@ func TestShuffleNodes(t *testing.T) {
orig := make([]*structs.Node, len(nodes))
copy(orig, nodes)
shuffleNodes(nodes)
- if reflect.DeepEqual(nodes, orig) {
- t.Fatalf("should not match")
- }
+ require.False(t, reflect.DeepEqual(nodes, orig))
}
-func TestTasksUpdated(t *testing.T) {
+func TestTaskUpdatedAffinity(t *testing.T) {
j1 := mock.Job()
j2 := mock.Job()
name := j1.TaskGroups[0].Name
- if tasksUpdated(j1, j2, name) {
- t.Fatalf("bad")
+ require.False(t, tasksUpdated(j1, j2, name))
+
+ // TaskGroup Affinity
+ j2.TaskGroups[0].Affinities = []*structs.Affinity{
+ {
+ LTarget: "node.datacenter",
+ RTarget: "dc1",
+ Operand: "=",
+ Weight: 100,
+ },
+ }
+ require.True(t, tasksUpdated(j1, j2, name))
+
+ // TaskGroup Task Affinity
+ j3 := mock.Job()
+ j3.TaskGroups[0].Tasks[0].Affinities = []*structs.Affinity{
+ {
+ LTarget: "node.datacenter",
+ RTarget: "dc1",
+ Operand: "=",
+ Weight: 100,
+ },
}
- j2.TaskGroups[0].Tasks[0].Config["command"] = "/bin/other"
- if !tasksUpdated(j1, j2, name) {
- t.Fatalf("bad")
+ require.True(t, tasksUpdated(j1, j3, name))
+
+ j4 := mock.Job()
+ j4.TaskGroups[0].Tasks[0].Affinities = []*structs.Affinity{
+ {
+ LTarget: "node.datacenter",
+ RTarget: "dc1",
+ Operand: "=",
+ Weight: 100,
+ },
}
+ require.True(t, tasksUpdated(j1, j4, name))
+
+ // check different level of same affinity
+ j5 := mock.Job()
+ j5.Affinities = []*structs.Affinity{
+ {
+ LTarget: "node.datacenter",
+ RTarget: "dc1",
+ Operand: "=",
+ Weight: 100,
+ },
+ }
+
+ j6 := mock.Job()
+ j6.Affinities = make([]*structs.Affinity, 0)
+ j6.TaskGroups[0].Affinities = []*structs.Affinity{
+ {
+ LTarget: "node.datacenter",
+ RTarget: "dc1",
+ Operand: "=",
+ Weight: 100,
+ },
+ }
+
+ require.False(t, tasksUpdated(j5, j6, name))
+}
+
+func TestTaskUpdatedSpread(t *testing.T) {
+ j1 := mock.Job()
+ j2 := mock.Job()
+ name := j1.TaskGroups[0].Name
+
+ require.False(t, tasksUpdated(j1, j2, name))
+
+ // TaskGroup Spread
+ j2.TaskGroups[0].Spreads = []*structs.Spread{
+ {
+ Attribute: "node.datacenter",
+ Weight: 100,
+ SpreadTarget: []*structs.SpreadTarget{
+ {
+ Value: "r1",
+ Percent: 50,
+ },
+ {
+ Value: "r2",
+ Percent: 50,
+ },
+ },
+ },
+ }
+ require.True(t, tasksUpdated(j1, j2, name))
+
+ // check different level of same constraint
+ j5 := mock.Job()
+ j5.Spreads = []*structs.Spread{
+ {
+ Attribute: "node.datacenter",
+ Weight: 100,
+ SpreadTarget: []*structs.SpreadTarget{
+ {
+ Value: "r1",
+ Percent: 50,
+ },
+ {
+ Value: "r2",
+ Percent: 50,
+ },
+ },
+ },
+ }
+
+ j6 := mock.Job()
+ j6.TaskGroups[0].Spreads = []*structs.Spread{
+ {
+ Attribute: "node.datacenter",
+ Weight: 100,
+ SpreadTarget: []*structs.SpreadTarget{
+ {
+ Value: "r1",
+ Percent: 50,
+ },
+ {
+ Value: "r2",
+ Percent: 50,
+ },
+ },
+ },
+ }
+
+ require.False(t, tasksUpdated(j5, j6, name))
+}
+func TestTasksUpdated(t *testing.T) {
+ j1 := mock.Job()
+ j2 := mock.Job()
+ name := j1.TaskGroups[0].Name
+ require.False(t, tasksUpdated(j1, j2, name))
+
+ j2.TaskGroups[0].Tasks[0].Config["command"] = "/bin/other"
+ require.True(t, tasksUpdated(j1, j2, name))
+
j3 := mock.Job()
j3.TaskGroups[0].Tasks[0].Name = "foo"
- if !tasksUpdated(j1, j3, name) {
- t.Fatalf("bad")
- }
+ require.True(t, tasksUpdated(j1, j3, name))
j4 := mock.Job()
j4.TaskGroups[0].Tasks[0].Driver = "foo"
- if !tasksUpdated(j1, j4, name) {
- t.Fatalf("bad")
- }
+ require.True(t, tasksUpdated(j1, j4, name))
j5 := mock.Job()
j5.TaskGroups[0].Tasks = append(j5.TaskGroups[0].Tasks,
j5.TaskGroups[0].Tasks[0])
- if !tasksUpdated(j1, j5, name) {
- t.Fatalf("bad")
- }
+ require.True(t, tasksUpdated(j1, j5, name))
j6 := mock.Job()
j6.TaskGroups[0].Tasks[0].Resources.Networks[0].DynamicPorts = []structs.Port{
@@ -489,21 +545,15 @@ func TestTasksUpdated(t *testing.T) {
{Label: "https", Value: 0},
{Label: "admin", Value: 0},
}
- if !tasksUpdated(j1, j6, name) {
- t.Fatalf("bad")
- }
+ require.True(t, tasksUpdated(j1, j6, name))
j7 := mock.Job()
j7.TaskGroups[0].Tasks[0].Env["NEW_ENV"] = "NEW_VALUE"
- if !tasksUpdated(j1, j7, name) {
- t.Fatalf("bad")
- }
+ require.True(t, tasksUpdated(j1, j7, name))
j8 := mock.Job()
j8.TaskGroups[0].Tasks[0].User = "foo"
- if !tasksUpdated(j1, j8, name) {
- t.Fatalf("bad")
- }
+ require.True(t, tasksUpdated(j1, j8, name))
j9 := mock.Job()
j9.TaskGroups[0].Tasks[0].Artifacts = []*structs.TaskArtifact{
@@ -511,65 +561,61 @@ func TestTasksUpdated(t *testing.T) {
GetterSource: "http://foo.com/bar",
},
}
- if !tasksUpdated(j1, j9, name) {
- t.Fatalf("bad")
- }
+ require.True(t, tasksUpdated(j1, j9, name))
j10 := mock.Job()
j10.TaskGroups[0].Tasks[0].Meta["baz"] = "boom"
- if !tasksUpdated(j1, j10, name) {
- t.Fatalf("bad")
- }
+ require.True(t, tasksUpdated(j1, j10, name))
j11 := mock.Job()
j11.TaskGroups[0].Tasks[0].Resources.CPU = 1337
- if !tasksUpdated(j1, j11, name) {
- t.Fatalf("bad")
+ require.True(t, tasksUpdated(j1, j11, name))
+
+ j11d1 := mock.Job()
+ j11d1.TaskGroups[0].Tasks[0].Resources.Devices = structs.ResourceDevices{
+ &structs.RequestedDevice{
+ Name: "gpu",
+ Count: 1,
+ },
}
+ j11d2 := mock.Job()
+ j11d2.TaskGroups[0].Tasks[0].Resources.Devices = structs.ResourceDevices{
+ &structs.RequestedDevice{
+ Name: "gpu",
+ Count: 2,
+ },
+ }
+ require.True(t, tasksUpdated(j11d1, j11d2, name))
j12 := mock.Job()
j12.TaskGroups[0].Tasks[0].Resources.Networks[0].MBits = 100
- if !tasksUpdated(j1, j12, name) {
- t.Fatalf("bad")
- }
+ require.True(t, tasksUpdated(j1, j12, name))
j13 := mock.Job()
j13.TaskGroups[0].Tasks[0].Resources.Networks[0].DynamicPorts[0].Label = "foobar"
- if !tasksUpdated(j1, j13, name) {
- t.Fatalf("bad")
- }
+ require.True(t, tasksUpdated(j1, j13, name))
j14 := mock.Job()
j14.TaskGroups[0].Tasks[0].Resources.Networks[0].ReservedPorts = []structs.Port{{Label: "foo", Value: 1312}}
- if !tasksUpdated(j1, j14, name) {
- t.Fatalf("bad")
- }
+ require.True(t, tasksUpdated(j1, j14, name))
j15 := mock.Job()
j15.TaskGroups[0].Tasks[0].Vault = &structs.Vault{Policies: []string{"foo"}}
- if !tasksUpdated(j1, j15, name) {
- t.Fatalf("bad")
- }
+ require.True(t, tasksUpdated(j1, j15, name))
j16 := mock.Job()
j16.TaskGroups[0].EphemeralDisk.Sticky = true
- if !tasksUpdated(j1, j16, name) {
- t.Fatal("bad")
- }
+ require.True(t, tasksUpdated(j1, j16, name))
// Change group meta
j17 := mock.Job()
j17.TaskGroups[0].Meta["j17_test"] = "roll_baby_roll"
- if !tasksUpdated(j1, j17, name) {
- t.Fatal("bad")
- }
+ require.True(t, tasksUpdated(j1, j17, name))
// Change job meta
j18 := mock.Job()
j18.Meta["j18_test"] = "roll_baby_roll"
- if !tasksUpdated(j1, j18, name) {
- t.Fatal("bad")
- }
+ require.True(t, tasksUpdated(j1, j18, name))
}
func TestEvictAndPlace_LimitLessThanAllocs(t *testing.T) {
@@ -583,17 +629,9 @@ func TestEvictAndPlace_LimitLessThanAllocs(t *testing.T) {
diff := &diffResult{}
limit := 2
- if !evictAndPlace(ctx, diff, allocs, "", &limit) {
- t.Fatal("evictAndReplace() should have returned true")
- }
-
- if limit != 0 {
- t.Fatalf("evictAndReplace() should decremented limit; got %v; want 0", limit)
- }
-
- if len(diff.place) != 2 {
- t.Fatalf("evictAndReplace() didn't insert into diffResult properly: %v", diff.place)
- }
+ require.True(t, evictAndPlace(ctx, diff, allocs, "", &limit), "evictAndReplace() should have returned true")
+ require.Zero(t, limit, "evictAndReplace() should decremented limit; got %v; want 0", limit)
+ require.Equal(t, 2, len(diff.place), "evictAndReplace() didn't insert into diffResult properly: %v", diff.place)
}
func TestEvictAndPlace_LimitEqualToAllocs(t *testing.T) {
@@ -607,17 +645,9 @@ func TestEvictAndPlace_LimitEqualToAllocs(t *testing.T) {
diff := &diffResult{}
limit := 4
- if evictAndPlace(ctx, diff, allocs, "", &limit) {
- t.Fatal("evictAndReplace() should have returned false")
- }
-
- if limit != 0 {
- t.Fatalf("evictAndReplace() should decremented limit; got %v; want 0", limit)
- }
-
- if len(diff.place) != 4 {
- t.Fatalf("evictAndReplace() didn't insert into diffResult properly: %v", diff.place)
- }
+ require.False(t, evictAndPlace(ctx, diff, allocs, "", &limit), "evictAndReplace() should have returned false")
+ require.Zero(t, limit, "evictAndReplace() should decremented limit; got %v; want 0", limit)
+ require.Equal(t, 4, len(diff.place), "evictAndReplace() didn't insert into diffResult properly: %v", diff.place)
}
func TestSetStatus(t *testing.T) {
@@ -626,98 +656,58 @@ func TestSetStatus(t *testing.T) {
eval := mock.Eval()
status := "a"
desc := "b"
- if err := setStatus(logger, h, eval, nil, nil, nil, status, desc, nil, ""); err != nil {
- t.Fatalf("setStatus() failed: %v", err)
- }
-
- if len(h.Evals) != 1 {
- t.Fatalf("setStatus() didn't update plan: %v", h.Evals)
- }
+ require.NoError(t, setStatus(logger, h, eval, nil, nil, nil, status, desc, nil, ""))
+ require.Equal(t, 1, len(h.Evals), "setStatus() didn't update plan: %v", h.Evals)
newEval := h.Evals[0]
- if newEval.ID != eval.ID || newEval.Status != status || newEval.StatusDescription != desc {
- t.Fatalf("setStatus() submited invalid eval: %v", newEval)
- }
+ require.True(t, newEval.ID == eval.ID && newEval.Status == status && newEval.StatusDescription == desc,
+ "setStatus() submited invalid eval: %v", newEval)
// Test next evals
h = NewHarness(t)
next := mock.Eval()
- if err := setStatus(logger, h, eval, next, nil, nil, status, desc, nil, ""); err != nil {
- t.Fatalf("setStatus() failed: %v", err)
- }
-
- if len(h.Evals) != 1 {
- t.Fatalf("setStatus() didn't update plan: %v", h.Evals)
- }
+ require.NoError(t, setStatus(logger, h, eval, next, nil, nil, status, desc, nil, ""))
+ require.Equal(t, 1, len(h.Evals), "setStatus() didn't update plan: %v", h.Evals)
newEval = h.Evals[0]
- if newEval.NextEval != next.ID {
- t.Fatalf("setStatus() didn't set nextEval correctly: %v", newEval)
- }
+ require.Equal(t, next.ID, newEval.NextEval, "setStatus() didn't set nextEval correctly: %v", newEval)
// Test blocked evals
h = NewHarness(t)
blocked := mock.Eval()
- if err := setStatus(logger, h, eval, nil, blocked, nil, status, desc, nil, ""); err != nil {
- t.Fatalf("setStatus() failed: %v", err)
- }
-
- if len(h.Evals) != 1 {
- t.Fatalf("setStatus() didn't update plan: %v", h.Evals)
- }
+ require.NoError(t, setStatus(logger, h, eval, nil, blocked, nil, status, desc, nil, ""))
+ require.Equal(t, 1, len(h.Evals), "setStatus() didn't update plan: %v", h.Evals)
newEval = h.Evals[0]
- if newEval.BlockedEval != blocked.ID {
- t.Fatalf("setStatus() didn't set BlockedEval correctly: %v", newEval)
- }
+ require.Equal(t, blocked.ID, newEval.BlockedEval, "setStatus() didn't set BlockedEval correctly: %v", newEval)
// Test metrics
h = NewHarness(t)
metrics := map[string]*structs.AllocMetric{"foo": nil}
- if err := setStatus(logger, h, eval, nil, nil, metrics, status, desc, nil, ""); err != nil {
- t.Fatalf("setStatus() failed: %v", err)
- }
-
- if len(h.Evals) != 1 {
- t.Fatalf("setStatus() didn't update plan: %v", h.Evals)
- }
+ require.NoError(t, setStatus(logger, h, eval, nil, nil, metrics, status, desc, nil, ""))
+ require.Equal(t, 1, len(h.Evals), "setStatus() didn't update plan: %v", h.Evals)
newEval = h.Evals[0]
- if !reflect.DeepEqual(newEval.FailedTGAllocs, metrics) {
- t.Fatalf("setStatus() didn't set failed task group metrics correctly: %v", newEval)
- }
+ require.True(t, reflect.DeepEqual(newEval.FailedTGAllocs, metrics),
+ "setStatus() didn't set failed task group metrics correctly: %v", newEval)
// Test queued allocations
h = NewHarness(t)
queuedAllocs := map[string]int{"web": 1}
- if err := setStatus(logger, h, eval, nil, nil, metrics, status, desc, queuedAllocs, ""); err != nil {
- t.Fatalf("setStatus() failed: %v", err)
- }
-
- if len(h.Evals) != 1 {
- t.Fatalf("setStatus() didn't update plan: %v", h.Evals)
- }
+ require.NoError(t, setStatus(logger, h, eval, nil, nil, metrics, status, desc, queuedAllocs, ""))
+ require.Equal(t, 1, len(h.Evals), "setStatus() didn't update plan: %v", h.Evals)
newEval = h.Evals[0]
- if !reflect.DeepEqual(newEval.QueuedAllocations, queuedAllocs) {
- t.Fatalf("setStatus() didn't set failed task group metrics correctly: %v", newEval)
- }
+ require.True(t, reflect.DeepEqual(newEval.QueuedAllocations, queuedAllocs), "setStatus() didn't set failed task group metrics correctly: %v", newEval)
h = NewHarness(t)
dID := uuid.Generate()
- if err := setStatus(logger, h, eval, nil, nil, metrics, status, desc, queuedAllocs, dID); err != nil {
- t.Fatalf("setStatus() failed: %v", err)
- }
-
- if len(h.Evals) != 1 {
- t.Fatalf("setStatus() didn't update plan: %v", h.Evals)
- }
+ require.NoError(t, setStatus(logger, h, eval, nil, nil, metrics, status, desc, queuedAllocs, dID))
+ require.Equal(t, 1, len(h.Evals), "setStatus() didn't update plan: %v", h.Evals)
newEval = h.Evals[0]
- if newEval.DeploymentID != dID {
- t.Fatalf("setStatus() didn't set deployment id correctly: %v", newEval)
- }
+ require.Equal(t, dID, newEval.DeploymentID, "setStatus() didn't set deployment id correctly: %v", newEval)
}
func TestInplaceUpdate_ChangedTaskGroup(t *testing.T) {
@@ -726,7 +716,7 @@ func TestInplaceUpdate_ChangedTaskGroup(t *testing.T) {
job := mock.Job()
node := mock.Node()
- noErr(t, state.UpsertNode(900, node))
+ require.NoError(t, state.UpsertNode(900, node))
// Register an alloc
alloc := &structs.Allocation{
@@ -752,8 +742,8 @@ func TestInplaceUpdate_ChangedTaskGroup(t *testing.T) {
TaskGroup: "web",
}
alloc.TaskResources = map[string]*structs.Resources{"web": alloc.Resources}
- noErr(t, state.UpsertJobSummary(1000, mock.JobSummary(alloc.JobID)))
- noErr(t, state.UpsertAllocs(1001, []*structs.Allocation{alloc}))
+ require.NoError(t, state.UpsertJobSummary(1000, mock.JobSummary(alloc.JobID)))
+ require.NoError(t, state.UpsertAllocs(1001, []*structs.Allocation{alloc}))
// Create a new task group that prevents in-place updates.
tg := &structs.TaskGroup{}
@@ -771,13 +761,8 @@ func TestInplaceUpdate_ChangedTaskGroup(t *testing.T) {
// Do the inplace update.
unplaced, inplace := inplaceUpdate(ctx, eval, job, stack, updates)
- if len(unplaced) != 1 || len(inplace) != 0 {
- t.Fatal("inplaceUpdate incorrectly did an inplace update")
- }
-
- if len(ctx.plan.NodeAllocation) != 0 {
- t.Fatal("inplaceUpdate incorrectly did an inplace update")
- }
+ require.True(t, len(unplaced) == 1 && len(inplace) == 0, "inplaceUpdate incorrectly did an inplace update")
+ require.Empty(t, ctx.plan.NodeAllocation, "inplaceUpdate incorrectly did an inplace update")
}
func TestInplaceUpdate_NoMatch(t *testing.T) {
@@ -786,7 +771,7 @@ func TestInplaceUpdate_NoMatch(t *testing.T) {
job := mock.Job()
node := mock.Node()
- noErr(t, state.UpsertNode(900, node))
+ require.NoError(t, state.UpsertNode(900, node))
// Register an alloc
alloc := &structs.Allocation{
@@ -812,8 +797,8 @@ func TestInplaceUpdate_NoMatch(t *testing.T) {
TaskGroup: "web",
}
alloc.TaskResources = map[string]*structs.Resources{"web": alloc.Resources}
- noErr(t, state.UpsertJobSummary(1000, mock.JobSummary(alloc.JobID)))
- noErr(t, state.UpsertAllocs(1001, []*structs.Allocation{alloc}))
+ require.NoError(t, state.UpsertJobSummary(1000, mock.JobSummary(alloc.JobID)))
+ require.NoError(t, state.UpsertAllocs(1001, []*structs.Allocation{alloc}))
// Create a new task group that requires too much resources.
tg := &structs.TaskGroup{}
@@ -827,13 +812,8 @@ func TestInplaceUpdate_NoMatch(t *testing.T) {
// Do the inplace update.
unplaced, inplace := inplaceUpdate(ctx, eval, job, stack, updates)
- if len(unplaced) != 1 || len(inplace) != 0 {
- t.Fatal("inplaceUpdate incorrectly did an inplace update")
- }
-
- if len(ctx.plan.NodeAllocation) != 0 {
- t.Fatal("inplaceUpdate incorrectly did an inplace update")
- }
+ require.True(t, len(unplaced) == 1 && len(inplace) == 0, "inplaceUpdate incorrectly did an inplace update")
+ require.Empty(t, ctx.plan.NodeAllocation, "inplaceUpdate incorrectly did an inplace update")
}
func TestInplaceUpdate_Success(t *testing.T) {
@@ -842,7 +822,7 @@ func TestInplaceUpdate_Success(t *testing.T) {
job := mock.Job()
node := mock.Node()
- noErr(t, state.UpsertNode(900, node))
+ require.NoError(t, state.UpsertNode(900, node))
// Register an alloc
alloc := &structs.Allocation{
@@ -868,8 +848,8 @@ func TestInplaceUpdate_Success(t *testing.T) {
DesiredStatus: structs.AllocDesiredStatusRun,
}
alloc.TaskResources = map[string]*structs.Resources{"web": alloc.Resources}
- noErr(t, state.UpsertJobSummary(999, mock.JobSummary(alloc.JobID)))
- noErr(t, state.UpsertAllocs(1001, []*structs.Allocation{alloc}))
+ require.NoError(t, state.UpsertJobSummary(999, mock.JobSummary(alloc.JobID)))
+ require.NoError(t, state.UpsertAllocs(1001, []*structs.Allocation{alloc}))
// Create a new task group that updates the resources.
tg := &structs.TaskGroup{}
@@ -900,43 +880,23 @@ func TestInplaceUpdate_Success(t *testing.T) {
// Do the inplace update.
unplaced, inplace := inplaceUpdate(ctx, eval, job, stack, updates)
- if len(unplaced) != 0 || len(inplace) != 1 {
- t.Fatal("inplaceUpdate did not do an inplace update")
- }
-
- if len(ctx.plan.NodeAllocation) != 1 {
- t.Fatal("inplaceUpdate did not do an inplace update")
- }
-
- if inplace[0].Alloc.ID != alloc.ID {
- t.Fatalf("inplaceUpdate returned the wrong, inplace updated alloc: %#v", inplace)
- }
+ require.True(t, len(unplaced) == 0 && len(inplace) == 1, "inplaceUpdate did not do an inplace update")
+ require.Equal(t, 1, len(ctx.plan.NodeAllocation), "inplaceUpdate did not do an inplace update")
+ require.Equal(t, alloc.ID, inplace[0].Alloc.ID, "inplaceUpdate returned the wrong, inplace updated alloc: %#v", inplace)
// Get the alloc we inserted.
a := inplace[0].Alloc // TODO(sean@): Verify this is correct vs: ctx.plan.NodeAllocation[alloc.NodeID][0]
- if a.Job == nil {
- t.Fatalf("bad")
- }
-
- if len(a.Job.TaskGroups) != 1 {
- t.Fatalf("bad")
- }
-
- if len(a.Job.TaskGroups[0].Tasks) != 1 {
- t.Fatalf("bad")
- }
-
- if len(a.Job.TaskGroups[0].Tasks[0].Services) != 3 {
- t.Fatalf("Expected number of services: %v, Actual: %v", 3, len(a.Job.TaskGroups[0].Tasks[0].Services))
- }
+ require.NotNil(t, a.Job)
+ require.Equal(t, 1, len(a.Job.TaskGroups))
+ require.Equal(t, 1, len(a.Job.TaskGroups[0].Tasks))
+ require.Equal(t, 3, len(a.Job.TaskGroups[0].Tasks[0].Services),
+ "Expected number of services: %v, Actual: %v", 3, len(a.Job.TaskGroups[0].Tasks[0].Services))
serviceNames := make(map[string]struct{}, 3)
for _, consulService := range a.Job.TaskGroups[0].Tasks[0].Services {
serviceNames[consulService.Name] = struct{}{}
}
- if len(serviceNames) != 3 {
- t.Fatalf("bad")
- }
+ require.Equal(t, 3, len(serviceNames))
for _, name := range []string{"dummy-service", "dummy-service2", "web-frontend"} {
if _, found := serviceNames[name]; !found {
@@ -956,17 +916,9 @@ func TestEvictAndPlace_LimitGreaterThanAllocs(t *testing.T) {
diff := &diffResult{}
limit := 6
- if evictAndPlace(ctx, diff, allocs, "", &limit) {
- t.Fatal("evictAndReplace() should have returned false")
- }
-
- if limit != 2 {
- t.Fatalf("evictAndReplace() should decremented limit; got %v; want 2", limit)
- }
-
- if len(diff.place) != 4 {
- t.Fatalf("evictAndReplace() didn't insert into diffResult properly: %v", diff.place)
- }
+ require.False(t, evictAndPlace(ctx, diff, allocs, "", &limit))
+ require.Equal(t, 2, limit, "evictAndReplace() should decremented limit")
+ require.Equal(t, 4, len(diff.place), "evictAndReplace() didn't insert into diffResult properly: %v", diff.place)
}
func TestTaskGroupConstraints(t *testing.T) {
@@ -1004,19 +956,15 @@ func TestTaskGroupConstraints(t *testing.T) {
expDrivers := map[string]struct{}{"exec": {}, "docker": {}}
actConstrains := taskGroupConstraints(tg)
- if !reflect.DeepEqual(actConstrains.constraints, expConstr) {
- t.Fatalf("taskGroupConstraints(%v) returned %v; want %v", tg, actConstrains.constraints, expConstr)
- }
- if !reflect.DeepEqual(actConstrains.drivers, expDrivers) {
- t.Fatalf("taskGroupConstraints(%v) returned %v; want %v", tg, actConstrains.drivers, expDrivers)
- }
+ require.True(t, reflect.DeepEqual(actConstrains.constraints, expConstr),
+ "taskGroupConstraints(%v) returned %v; want %v", tg, actConstrains.constraints, expConstr)
+ require.True(t, reflect.DeepEqual(actConstrains.drivers, expDrivers),
+ "taskGroupConstraints(%v) returned %v; want %v", tg, actConstrains.drivers, expDrivers)
}
func TestProgressMade(t *testing.T) {
noopPlan := &structs.PlanResult{}
- if progressMade(nil) || progressMade(noopPlan) {
- t.Fatal("no progress plan marked as making progress")
- }
+ require.False(t, progressMade(nil) || progressMade(noopPlan), "no progress plan marked as making progress")
m := map[string][]*structs.Allocation{
"foo": {mock.Alloc()},
@@ -1033,10 +981,9 @@ func TestProgressMade(t *testing.T) {
{DeploymentID: uuid.Generate()},
},
}
- if !(progressMade(both) && progressMade(update) && progressMade(alloc) &&
- progressMade(deployment) && progressMade(deploymentUpdates)) {
- t.Fatal("bad")
- }
+
+ require.True(t, progressMade(both) && progressMade(update) && progressMade(alloc) &&
+ progressMade(deployment) && progressMade(deploymentUpdates))
}
func TestDesiredUpdates(t *testing.T) {
@@ -1092,9 +1039,7 @@ func TestDesiredUpdates(t *testing.T) {
}
desired := desiredUpdates(diff, inplace, destructive)
- if !reflect.DeepEqual(desired, expected) {
- t.Fatalf("desiredUpdates() returned %#v; want %#v", desired, expected)
- }
+ require.True(t, reflect.DeepEqual(desired, expected), "desiredUpdates() returned %#v; want %#v", desired, expected)
}
func TestUtil_AdjustQueuedAllocations(t *testing.T) {
@@ -1129,9 +1074,7 @@ func TestUtil_AdjustQueuedAllocations(t *testing.T) {
queuedAllocs := map[string]int{"web": 2}
adjustQueuedAllocations(logger, &planResult, queuedAllocs)
- if queuedAllocs["web"] != 1 {
- t.Fatalf("expected: %v, actual: %v", 1, queuedAllocs["web"])
- }
+ require.Equal(t, 1, queuedAllocs["web"])
}
func TestUtil_UpdateNonTerminalAllocsToLost(t *testing.T) {
@@ -1169,9 +1112,7 @@ func TestUtil_UpdateNonTerminalAllocsToLost(t *testing.T) {
allocsLost = append(allocsLost, alloc.ID)
}
expected := []string{alloc1.ID, alloc2.ID}
- if !reflect.DeepEqual(allocsLost, expected) {
- t.Fatalf("actual: %v, expected: %v", allocsLost, expected)
- }
+ require.True(t, reflect.DeepEqual(allocsLost, expected), "actual: %v, expected: %v", allocsLost, expected)
// Update the node status to ready and try again
plan = structs.Plan{
@@ -1185,7 +1126,5 @@ func TestUtil_UpdateNonTerminalAllocsToLost(t *testing.T) {
allocsLost = append(allocsLost, alloc.ID)
}
expected = []string{}
- if !reflect.DeepEqual(allocsLost, expected) {
- t.Fatalf("actual: %v, expected: %v", allocsLost, expected)
- }
+ require.True(t, reflect.DeepEqual(allocsLost, expected), "actual: %v, expected: %v", allocsLost, expected)
}
diff --git a/scripts/dist.sh b/scripts/dist.sh
index 686bcf04e..cf09158cc 100755
--- a/scripts/dist.sh
+++ b/scripts/dist.sh
@@ -52,7 +52,7 @@ cd "${DIR}"
if [ -z "${NOTAG}" ]; then
echo "==> Tagging..."
git commit --allow-empty -a --gpg-sign=${gpg_signing_key} -m "Release v$VERSION"
- git tag -a -m "Version $VERSION" -s -u ${gpg_signing_key} "v${VERSION}" master
+ git tag -a -m "Version $VERSION" -s -u ${gpg_signing_key} "v${VERSION}" HEAD
fi
# Zip all the files
diff --git a/scripts/release/mac-remote-build b/scripts/release/mac-remote-build
index 837ac0ae4..ea1787024 100755
--- a/scripts/release/mac-remote-build
+++ b/scripts/release/mac-remote-build
@@ -56,7 +56,7 @@ REPO_PATH="${TMP_WORKSPACE}/gopath/src/github.com/hashicorp/nomad"
mkdir -p "${TMP_WORKSPACE}/tmp"
install_go() {
- local go_version="1.12.9"
+ local go_version="1.12.13"
local download=
download="https://storage.googleapis.com/golang/go${go_version}.darwin-amd64.tar.gz"
diff --git a/scripts/screenshots/src/index.js b/scripts/screenshots/src/index.js
index 0660e52fb..c065268f5 100644
--- a/scripts/screenshots/src/index.js
+++ b/scripts/screenshots/src/index.js
@@ -31,7 +31,7 @@ const ANSI_YELLOW = "\x1b[33m%s\x1b[0m";
const page = await browser.newPage();
// Make sure the page is 4K is high-dpi scaling
- page.setViewport({ width: 1920, height: 1080, deviceScaleFactor: 2 });
+ page.setViewport({ width: 1440, height: 900, deviceScaleFactor: 2 });
console.log("Loading Nomad UI...");
console.log(
ANSI_YELLOW,
diff --git a/scripts/vagrant-linux-priv-cni.sh b/scripts/vagrant-linux-priv-cni.sh
new file mode 100755
index 000000000..8512da17a
--- /dev/null
+++ b/scripts/vagrant-linux-priv-cni.sh
@@ -0,0 +1,20 @@
+#!/usr/bin/env bash
+
+set -o errexit
+
+VERSION="v0.8.2"
+DOWNLOAD=https://github.com/containernetworking/plugins/releases/download/${VERSION}/cni-plugins-linux-amd64-${VERSION}.tgz
+TARGET_DIR=/opt/cni/bin
+
+function install_cni() {
+ mkdir -p ${TARGET_DIR}
+ if [[ -e ${TARGET_DIR}/${VERSION} ]] ; then
+ return
+ fi
+
+ wget -q -O /tmp/cni-plugins.tar.gz ${DOWNLOAD}
+ tar -xf /tmp/cni-plugins.tar.gz -C ${TARGET_DIR}
+ touch ${TARGET_DIR}/${VERSION}
+}
+
+install_cni
diff --git a/scripts/vagrant-linux-priv-config.sh b/scripts/vagrant-linux-priv-config.sh
index b2400c5c0..df144e67f 100755
--- a/scripts/vagrant-linux-priv-config.sh
+++ b/scripts/vagrant-linux-priv-config.sh
@@ -20,19 +20,12 @@ apt-get install -y \
libpcre3-dev \
linux-libc-dev:i386 \
pkg-config \
- zip
-
-# Install Development utilities
-apt-get install -y \
+ zip \
curl \
- default-jre \
- htop \
jq \
- qemu \
- silversearcher-ag \
tree \
unzip \
- vim
+ wget
# Install ARM build utilities
apt-get install -y \
diff --git a/scripts/vagrant-linux-priv-consul.sh b/scripts/vagrant-linux-priv-consul.sh
index 4c7f05982..b6b62e7bc 100755
--- a/scripts/vagrant-linux-priv-consul.sh
+++ b/scripts/vagrant-linux-priv-consul.sh
@@ -2,7 +2,7 @@
set -o errexit
-VERSION="1.6.0"
+VERSION="1.6.1"
DOWNLOAD=https://releases.hashicorp.com/consul/${VERSION}/consul_${VERSION}_linux_amd64.zip
function install_consul() {
diff --git a/scripts/vagrant-linux-priv-dev.sh b/scripts/vagrant-linux-priv-dev.sh
index 2b22a36a6..f8dce4c58 100755
--- a/scripts/vagrant-linux-priv-dev.sh
+++ b/scripts/vagrant-linux-priv-dev.sh
@@ -2,16 +2,17 @@
# Install Development utilities
apt-get install -y \
- curl \
default-jre \
htop \
- jq \
qemu \
silversearcher-ag \
- tree \
- unzip \
vim
+# Install Chrome for running tests (in headless mode)
+wget -qO- - https://dl-ssl.google.com/linux/linux_signing_key.pub | apt-key add -
+echo "deb https://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list
+apt-get update
+apt-get install -y google-chrome-stable
# Set hostname -> IP to make advertisement work as expected
ip=$(ip route get 1 | awk '{print $NF; exit}')
diff --git a/scripts/vagrant-linux-priv-go.sh b/scripts/vagrant-linux-priv-go.sh
index 5a5c937d2..c3c69ad94 100755
--- a/scripts/vagrant-linux-priv-go.sh
+++ b/scripts/vagrant-linux-priv-go.sh
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
function install_go() {
- local go_version=1.12.9
+ local go_version=1.12.13
local download=
download="https://storage.googleapis.com/golang/go${go_version}.linux-amd64.tar.gz"
diff --git a/scripts/vagrant-linux-unpriv-ui.sh b/scripts/vagrant-linux-unpriv-ui.sh
index e59692d39..97643759a 100755
--- a/scripts/vagrant-linux-unpriv-ui.sh
+++ b/scripts/vagrant-linux-unpriv-ui.sh
@@ -15,9 +15,3 @@ npm install -g ember-cli
# Install Yarn for front-end dependency management
curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.15.2
-
-# Install Chrome for running tests (in headless mode)
-wget -qO- - https://dl-ssl.google.com/linux/linux_signing_key.pub | sudo apt-key add -
-sudo sh -c 'echo "deb https://dl.google.com/linux/chrome/deb/ stable main" >> /etc/apt/sources.list.d/google.list'
-sudo apt-get update
-sudo apt-get install -y google-chrome-stable
diff --git a/terraform/aws/env/us-east/main.tf b/terraform/aws/env/us-east/main.tf
index 879726b29..c0ff3cfc3 100644
--- a/terraform/aws/env/us-east/main.tf
+++ b/terraform/aws/env/us-east/main.tf
@@ -1,113 +1,20 @@
-variable "name" {
- description = "Used to name various infrastructure components"
-}
-
-variable "whitelist_ip" {
- description = "IP to whitelist for the security groups (set 0.0.0.0/0 for world)"
-}
-
-variable "region" {
- description = "The AWS region to deploy to."
- default = "us-east-1"
-}
-
-variable "ami" {}
-
-variable "server_instance_type" {
- description = "The AWS instance type to use for servers."
- default = "t2.medium"
-}
-
-variable "client_instance_type" {
- description = "The AWS instance type to use for clients."
- default = "t2.medium"
-}
-
-variable "root_block_device_size" {
- description = "The volume size of the root block device."
- default = 16
-}
-
-variable "key_name" {
- description = "Name of the SSH key used to provision EC2 instances."
-}
-
-variable "server_count" {
- description = "The number of servers to provision."
- default = "3"
-}
-
-variable "client_count" {
- description = "The number of clients to provision."
- default = "4"
-}
-
-
-variable "retry_join" {
- description = "Used by Consul to automatically form a cluster."
- type = "map"
-
- default = {
- provider = "aws"
- tag_key = "ConsulAutoJoin"
- tag_value = "auto-join"
- }
-}
-
-variable "nomad_binary" {
- description = "Used to replace the machine image installed Nomad binary."
- default = "none"
-}
-
provider "aws" {
- region = "${var.region}"
+ region = var.region
}
module "hashistack" {
source = "../../modules/hashistack"
- name = "${var.name}"
- region = "${var.region}"
- ami = "${var.ami}"
- server_instance_type = "${var.server_instance_type}"
- client_instance_type = "${var.client_instance_type}"
- key_name = "${var.key_name}"
- server_count = "${var.server_count}"
- client_count = "${var.client_count}"
- retry_join = "${var.retry_join}"
- nomad_binary = "${var.nomad_binary}"
- root_block_device_size = "${var.root_block_device_size}"
- whitelist_ip = "${var.whitelist_ip}"
-}
-
-output "IP_Addresses" {
- value = <` to run a targetted set of tests, e.g. `ember test --filter 'allocation detail'`.
+In the test environment, the fake data is generated with a random seed. If you want stable data, you can set a seed while running the test server by appending `&faker-seed=1` (or any other non-zero number) to the URL.
### Linting
@@ -70,11 +75,17 @@ Typically `make release` or `make dev-ui` will be the desired build workflow, bu
Nomad UI releases are in lockstep with Nomad releases and are integrated into the `make release` toolchain.
+### Conventions
+
+* UI branches should be prefix with `f-ui-` for feature work and `b-ui-` for bug fixes. This instructs CI to skip running nomad backend tests.
+
### Troubleshooting
#### The UI is running, but none of the API requests are working
-By default (according to the `.embercli` file) a proxy address of `http://localhost:4646` is used. If you are running Nomad at a different address, you will need to override this setting when running ember serve: `ember serve --proxy http://newlocation:1111`.
+By default (according to the `.ember-cli` file), a proxy address of `http://localhost:4646` is used. If you are running Nomad at a different address, you will need to override this setting when running ember serve: `ember serve --proxy http://newlocation:1111`.
+
+Also, ensure that `USE_MIRAGE` environment variable is set to false, so the UI proxy requests to Nomad process instead of using autogenerated test data.
#### Nomad is running in Vagrant, but I can't access the API from my host machine
diff --git a/ui/app/adapters/job.js b/ui/app/adapters/job.js
index 9bb5a2485..0f4d64845 100644
--- a/ui/app/adapters/job.js
+++ b/ui/app/adapters/job.js
@@ -78,7 +78,7 @@ export default Watchable.extend({
},
plan(job) {
- const jobId = job.get('id');
+ const jobId = job.get('id') || job.get('_idBeforeSaving');
const store = this.store;
const url = addToPath(this.urlForFindRecord(jobId, 'job'), '/plan');
@@ -105,7 +105,8 @@ export default Watchable.extend({
},
update(job) {
- return this.ajax(this.urlForUpdateRecord(job.get('id'), 'job'), 'POST', {
+ const jobId = job.get('id') || job.get('_idBeforeSaving');
+ return this.ajax(this.urlForUpdateRecord(jobId, 'job'), 'POST', {
data: {
Job: job.get('_newDefinitionJSON'),
},
diff --git a/ui/app/adapters/watchable.js b/ui/app/adapters/watchable.js
index bb2903ab4..b6a37b025 100644
--- a/ui/app/adapters/watchable.js
+++ b/ui/app/adapters/watchable.js
@@ -3,7 +3,7 @@ import { assign } from '@ember/polyfills';
import { inject as service } from '@ember/service';
import queryString from 'query-string';
import ApplicationAdapter from './application';
-import { AbortError } from 'ember-data/adapters/errors';
+import { AbortError } from '@ember-data/adapter/error';
export default ApplicationAdapter.extend({
watchList: service(),
diff --git a/ui/app/components/allocation-row.js b/ui/app/components/allocation-row.js
index 52fb12f6b..ef310d7ed 100644
--- a/ui/app/components/allocation-row.js
+++ b/ui/app/components/allocation-row.js
@@ -2,6 +2,7 @@ import Ember from 'ember';
import { inject as service } from '@ember/service';
import Component from '@ember/component';
import { computed } from '@ember/object';
+import { computed as overridable } from 'ember-overridable-computed';
import { alias } from '@ember/object/computed';
import { run } from '@ember/runloop';
import { task, timeout } from 'ember-concurrency';
@@ -24,7 +25,7 @@ export default Component.extend({
// Internal state
statsError: false,
- enablePolling: computed(() => !Ember.testing),
+ enablePolling: overridable(() => !Ember.testing),
stats: computed('allocation', 'allocation.isRunning', function() {
if (!this.get('allocation.isRunning')) return;
diff --git a/ui/app/components/freestyle/sg-distribution-bar.js b/ui/app/components/freestyle/sg-distribution-bar.js
index f4e2f8043..f67e18757 100644
--- a/ui/app/components/freestyle/sg-distribution-bar.js
+++ b/ui/app/components/freestyle/sg-distribution-bar.js
@@ -1,17 +1,18 @@
import Component from '@ember/component';
import { computed } from '@ember/object';
+import { on } from '@ember/object/evented';
export default Component.extend({
timerTicks: 0,
- startTimer: function() {
+ startTimer: on('init', function() {
this.set(
'timer',
setInterval(() => {
this.incrementProperty('timerTicks');
}, 500)
);
- }.on('init'),
+ }),
willDestroy() {
clearInterval(this.timer);
diff --git a/ui/app/components/freestyle/sg-line-chart.js b/ui/app/components/freestyle/sg-line-chart.js
index a5c246658..f1dbe10b5 100644
--- a/ui/app/components/freestyle/sg-line-chart.js
+++ b/ui/app/components/freestyle/sg-line-chart.js
@@ -1,11 +1,12 @@
import Component from '@ember/component';
import { computed } from '@ember/object';
+import { on } from '@ember/object/evented';
import d3TimeFormat from 'd3-time-format';
export default Component.extend({
timerTicks: 0,
- startTimer: function() {
+ startTimer: on('init', function() {
this.set(
'timer',
setInterval(() => {
@@ -18,7 +19,7 @@ export default Component.extend({
}
}, 500)
);
- }.on('init'),
+ }),
willDestroy() {
clearInterval(this.timer);
diff --git a/ui/app/components/freestyle/sg-progress-bar.js b/ui/app/components/freestyle/sg-progress-bar.js
index 9748dd603..97e76b186 100644
--- a/ui/app/components/freestyle/sg-progress-bar.js
+++ b/ui/app/components/freestyle/sg-progress-bar.js
@@ -1,17 +1,18 @@
import Component from '@ember/component';
import { computed } from '@ember/object';
+import { on } from '@ember/object/evented';
export default Component.extend({
timerTicks: 0,
- startTimer: function() {
+ startTimer: on('init', function() {
this.set(
'timer',
setInterval(() => {
this.incrementProperty('timerTicks');
}, 1000)
);
- }.on('init'),
+ }),
willDestroy() {
clearInterval(this.timer);
diff --git a/ui/app/components/job-deployments-stream.js b/ui/app/components/job-deployments-stream.js
index 4679117b9..7a5e3d5d5 100644
--- a/ui/app/components/job-deployments-stream.js
+++ b/ui/app/components/job-deployments-stream.js
@@ -1,12 +1,13 @@
import Component from '@ember/component';
import { computed } from '@ember/object';
+import { computed as overridable } from 'ember-overridable-computed';
import moment from 'moment';
export default Component.extend({
tagName: 'ol',
classNames: ['timeline'],
- deployments: computed(() => []),
+ deployments: overridable(() => []),
sortedDeployments: computed('deployments.@each.versionSubmitTime', function() {
return this.deployments
diff --git a/ui/app/components/job-page/parts/recent-allocations.js b/ui/app/components/job-page/parts/recent-allocations.js
index 9729eb47c..005c5a4ba 100644
--- a/ui/app/components/job-page/parts/recent-allocations.js
+++ b/ui/app/components/job-page/parts/recent-allocations.js
@@ -11,7 +11,7 @@ export default Component.extend({
sortProperty: 'modifyIndex',
sortDescending: true,
sortedAllocations: computed('job.allocations.@each.modifyIndex', function() {
- return new PromiseArray({
+ return PromiseArray.create({
promise: this.get('job.allocations').then(allocations =>
allocations
.sortBy('modifyIndex')
diff --git a/ui/app/components/job-versions-stream.js b/ui/app/components/job-versions-stream.js
index 5d2f0d43e..3fc938ea0 100644
--- a/ui/app/components/job-versions-stream.js
+++ b/ui/app/components/job-versions-stream.js
@@ -1,12 +1,13 @@
import Component from '@ember/component';
import { computed } from '@ember/object';
+import { computed as overridable } from 'ember-overridable-computed';
import moment from 'moment';
export default Component.extend({
tagName: 'ol',
classNames: ['timeline'],
- versions: computed(() => []),
+ versions: overridable(() => []),
// Passes through to the job-diff component
verbose: true,
diff --git a/ui/app/components/line-chart.js b/ui/app/components/line-chart.js
index d09d2d1a5..138d8d60d 100644
--- a/ui/app/components/line-chart.js
+++ b/ui/app/components/line-chart.js
@@ -1,5 +1,6 @@
import Component from '@ember/component';
import { computed, observer } from '@ember/object';
+import { computed as overridable } from 'ember-overridable-computed';
import { guidFor } from '@ember/object/internals';
import { run } from '@ember/runloop';
import d3 from 'd3-selection';
@@ -184,7 +185,7 @@ export default Component.extend(WindowResizable, {
return axis && axis.getBBox().width;
}),
- xAxisOffset: computed('height', 'xAxisHeight', function() {
+ xAxisOffset: overridable('height', 'xAxisHeight', function() {
return this.height - this.xAxisHeight;
}),
diff --git a/ui/app/components/list-accordion.js b/ui/app/components/list-accordion.js
index 852c112b9..5f83b5ee0 100644
--- a/ui/app/components/list-accordion.js
+++ b/ui/app/components/list-accordion.js
@@ -1,11 +1,12 @@
import Component from '@ember/component';
import { computed, get } from '@ember/object';
+import { computed as overridable } from 'ember-overridable-computed';
export default Component.extend({
classNames: ['accordion'],
key: 'id',
- source: computed(() => []),
+ source: overridable(() => []),
onToggle(/* item, isOpen */) {},
startExpanded: false,
@@ -30,5 +31,5 @@ export default Component.extend({
// When source updates come in, the state cache is used to preserve
// open/close state.
- stateCache: computed(() => []),
+ stateCache: overridable(() => []),
});
diff --git a/ui/app/components/list-pagination.js b/ui/app/components/list-pagination.js
index 36f372041..322a7db27 100644
--- a/ui/app/components/list-pagination.js
+++ b/ui/app/components/list-pagination.js
@@ -1,8 +1,9 @@
import Component from '@ember/component';
import { computed } from '@ember/object';
+import { computed as overridable } from 'ember-overridable-computed';
export default Component.extend({
- source: computed(() => []),
+ source: overridable(() => []),
size: 25,
page: 1,
spread: 2,
diff --git a/ui/app/components/list-table.js b/ui/app/components/list-table.js
index 1bf0999b9..439f1d6a4 100644
--- a/ui/app/components/list-table.js
+++ b/ui/app/components/list-table.js
@@ -1,11 +1,12 @@
import Component from '@ember/component';
import { computed } from '@ember/object';
+import { computed as overridable } from 'ember-overridable-computed';
export default Component.extend({
tagName: 'table',
classNames: ['table'],
- source: computed(() => []),
+ source: overridable(() => []),
// Plan for a future with metadata (e.g., isSelected)
decoratedSource: computed('source.[]', function() {
diff --git a/ui/app/components/multi-select-dropdown.js b/ui/app/components/multi-select-dropdown.js
index d837b0ef8..3bd9febcc 100644
--- a/ui/app/components/multi-select-dropdown.js
+++ b/ui/app/components/multi-select-dropdown.js
@@ -1,5 +1,5 @@
import Component from '@ember/component';
-import { computed } from '@ember/object';
+import { computed as overridable } from 'ember-overridable-computed';
import { run } from '@ember/runloop';
const TAB = 9;
@@ -11,8 +11,8 @@ const ARROW_DOWN = 40;
export default Component.extend({
classNames: ['dropdown'],
- options: computed(() => []),
- selection: computed(() => []),
+ options: overridable(() => []),
+ selection: overridable(() => []),
onSelect() {},
diff --git a/ui/app/components/proxy-tag.js b/ui/app/components/proxy-tag.js
new file mode 100644
index 000000000..479865264
--- /dev/null
+++ b/ui/app/components/proxy-tag.js
@@ -0,0 +1,5 @@
+import Component from '@ember/component';
+
+export default Component.extend({
+ tagName: '',
+});
diff --git a/ui/app/components/reschedule-event-row.js b/ui/app/components/reschedule-event-row.js
index 8072ea29a..6fc566051 100644
--- a/ui/app/components/reschedule-event-row.js
+++ b/ui/app/components/reschedule-event-row.js
@@ -1,5 +1,5 @@
import Component from '@ember/component';
-import { computed } from '@ember/object';
+import { computed as overridable } from 'ember-overridable-computed';
import { inject as service } from '@ember/service';
export default Component.extend({
@@ -10,7 +10,7 @@ export default Component.extend({
allocationId: null,
// An allocation can also be provided directly
- allocation: computed('allocationId', function() {
+ allocation: overridable('allocationId', function() {
return this.store.findRecord('allocation', this.allocationId);
}),
diff --git a/ui/app/components/streaming-file.js b/ui/app/components/streaming-file.js
index 9a85d41a1..5885c2bc8 100644
--- a/ui/app/components/streaming-file.js
+++ b/ui/app/components/streaming-file.js
@@ -82,14 +82,16 @@ export default Component.extend(WindowResizable, {
});
// Follow the log if the scroll position is near the bottom of the cli window
- this.logger.on('tick', () => {
- run.scheduleOnce('afterRender', () => this.synchronizeScrollPosition());
- });
+ this.logger.on('tick', this, 'scheduleScrollSynchronization');
yield this.logger.startStreaming();
- this.logger.off('tick');
+ this.logger.off('tick', this, 'scheduleScrollSynchronization');
}),
+ scheduleScrollSynchronization() {
+ run.scheduleOnce('afterRender', () => this.synchronizeScrollPosition());
+ },
+
willDestroy() {
this.logger.stop();
},
diff --git a/ui/app/controllers/allocations/allocation/index.js b/ui/app/controllers/allocations/allocation/index.js
index 127718221..caec2d8ae 100644
--- a/ui/app/controllers/allocations/allocation/index.js
+++ b/ui/app/controllers/allocations/allocation/index.js
@@ -1,6 +1,7 @@
import Controller from '@ember/controller';
import { inject as service } from '@ember/service';
import { computed, observer } from '@ember/object';
+import { computed as overridable } from 'ember-overridable-computed';
import { alias } from '@ember/object/computed';
import { task } from 'ember-concurrency';
import Sortable from 'nomad-ui/mixins/sortable';
@@ -24,11 +25,17 @@ export default Controller.extend(Sortable, {
// Set in the route
preempter: null,
- error: computed(() => {
+ error: overridable(() => {
// { title, description }
return null;
}),
+ network: alias('model.allocatedResources.networks.firstObject'),
+
+ services: computed('model.taskGroup.services.@each.name', function() {
+ return this.get('model.taskGroup.services').sortBy('name');
+ }),
+
onDismiss() {
this.set('error', null);
},
diff --git a/ui/app/controllers/allocations/allocation/task/index.js b/ui/app/controllers/allocations/allocation/task/index.js
index ce1d3f847..9a8733d92 100644
--- a/ui/app/controllers/allocations/allocation/task/index.js
+++ b/ui/app/controllers/allocations/allocation/task/index.js
@@ -1,5 +1,6 @@
import Controller from '@ember/controller';
import { computed } from '@ember/object';
+import { computed as overridable } from 'ember-overridable-computed';
import { alias } from '@ember/object/computed';
import { task } from 'ember-concurrency';
@@ -22,7 +23,7 @@ export default Controller.extend({
.sortBy('name');
}),
- error: computed(() => {
+ error: overridable(() => {
// { title, description }
return null;
}),
diff --git a/ui/app/mixins/window-resizable.js b/ui/app/mixins/window-resizable.js
index 5a473f3c1..808143538 100644
--- a/ui/app/mixins/window-resizable.js
+++ b/ui/app/mixins/window-resizable.js
@@ -1,6 +1,7 @@
import Mixin from '@ember/object/mixin';
import { run } from '@ember/runloop';
import { assert } from '@ember/debug';
+import { on } from '@ember/object/evented';
import $ from 'jquery';
export default Mixin.create({
@@ -8,14 +9,14 @@ export default Mixin.create({
assert('windowResizeHandler needs to be overridden in the Component', false);
},
- setupWindowResize: function() {
+ setupWindowResize: on('didInsertElement', function() {
run.scheduleOnce('afterRender', this, () => {
this.set('_windowResizeHandler', this.windowResizeHandler.bind(this));
$(window).on('resize', this._windowResizeHandler);
});
- }.on('didInsertElement'),
+ }),
- removeWindowResize: function() {
+ removeWindowResize: on('willDestroyElement', function() {
$(window).off('resize', this._windowResizeHandler);
- }.on('willDestroyElement'),
+ }),
});
diff --git a/ui/app/mixins/with-component-visibility-detection.js b/ui/app/mixins/with-component-visibility-detection.js
index 3022d4d36..2645ed2c8 100644
--- a/ui/app/mixins/with-component-visibility-detection.js
+++ b/ui/app/mixins/with-component-visibility-detection.js
@@ -1,22 +1,23 @@
import Ember from 'ember';
import Mixin from '@ember/object/mixin';
import { assert } from '@ember/debug';
+import { on } from '@ember/object/evented';
export default Mixin.create({
visibilityHandler() {
assert('visibilityHandler needs to be overridden in the Component', false);
},
- setupDocumentVisibility: function() {
+ setupDocumentVisibility: on('init', function() {
if (!Ember.testing) {
this.set('_visibilityHandler', this.visibilityHandler.bind(this));
document.addEventListener('visibilitychange', this._visibilityHandler);
}
- }.on('init'),
+ }),
- removeDocumentVisibility: function() {
+ removeDocumentVisibility: on('init', function() {
if (!Ember.testing) {
document.removeEventListener('visibilitychange', this._visibilityHandler);
}
- }.on('willDestroy'),
+ }),
});
diff --git a/ui/app/mixins/with-route-visibility-detection.js b/ui/app/mixins/with-route-visibility-detection.js
index 4b7b05c24..8f58102c6 100644
--- a/ui/app/mixins/with-route-visibility-detection.js
+++ b/ui/app/mixins/with-route-visibility-detection.js
@@ -1,22 +1,23 @@
import Ember from 'ember';
import Mixin from '@ember/object/mixin';
import { assert } from '@ember/debug';
+import { on } from '@ember/object/evented';
export default Mixin.create({
visibilityHandler() {
assert('visibilityHandler needs to be overridden in the Route', false);
},
- setupDocumentVisibility: function() {
+ setupDocumentVisibility: on('activate', function() {
if (!Ember.testing) {
this.set('_visibilityHandler', this.visibilityHandler.bind(this));
document.addEventListener('visibilitychange', this._visibilityHandler);
}
- }.on('activate'),
+ }),
- removeDocumentVisibility: function() {
+ removeDocumentVisibility: on('deactivate', function() {
if (!Ember.testing) {
document.removeEventListener('visibilitychange', this._visibilityHandler);
}
- }.on('deactivate'),
+ }),
});
diff --git a/ui/app/models/allocation.js b/ui/app/models/allocation.js
index 258d1a558..1b4f19757 100644
--- a/ui/app/models/allocation.js
+++ b/ui/app/models/allocation.js
@@ -25,6 +25,7 @@ export default Model.extend({
name: attr('string'),
taskGroupName: attr('string'),
resources: fragment('resources'),
+ allocatedResources: fragment('resources'),
jobVersion: attr('number'),
modifyIndex: attr('number'),
diff --git a/ui/app/models/consul-connect.js b/ui/app/models/consul-connect.js
new file mode 100644
index 000000000..3b617e126
--- /dev/null
+++ b/ui/app/models/consul-connect.js
@@ -0,0 +1,6 @@
+import Fragment from 'ember-data-model-fragments/fragment';
+import { fragment } from 'ember-data-model-fragments/attributes';
+
+export default Fragment.extend({
+ sidecarService: fragment('sidecar-service'),
+});
diff --git a/ui/app/models/job.js b/ui/app/models/job.js
index c41046276..f3afec1dc 100644
--- a/ui/app/models/job.js
+++ b/ui/app/models/job.js
@@ -144,9 +144,7 @@ export default Model.extend({
}),
hasBlockedEvaluation: computed('evaluations.@each.isBlocked', function() {
- return this.evaluations
- .toArray()
- .some(evaluation => evaluation.get('isBlocked'));
+ return this.evaluations.toArray().some(evaluation => evaluation.get('isBlocked'));
}),
hasPlacementFailures: and('latestFailureEvaluation', 'hasBlockedEvaluation'),
@@ -246,7 +244,7 @@ export default Model.extend({
const id = payload.Name;
this.set('plainId', id);
- this.set('id', JSON.stringify([id, namespace]));
+ this.set('_idBeforeSaving', JSON.stringify([id, namespace]));
const namespaceRecord = this.store.peekRecord('namespace', namespace);
if (namespaceRecord) {
diff --git a/ui/app/models/network.js b/ui/app/models/network.js
index 01896c5fb..4f6502683 100644
--- a/ui/app/models/network.js
+++ b/ui/app/models/network.js
@@ -6,7 +6,7 @@ export default Fragment.extend({
device: attr('string'),
cidr: attr('string'),
ip: attr('string'),
+ mode: attr('string'),
mbits: attr('number'),
- reservedPorts: array(),
- dynamicPorts: array(),
+ ports: array(),
});
diff --git a/ui/app/models/node-attributes.js b/ui/app/models/node-attributes.js
index 6a6998272..11c199c65 100644
--- a/ui/app/models/node-attributes.js
+++ b/ui/app/models/node-attributes.js
@@ -6,10 +6,10 @@ import flat from 'flat';
const { unflatten } = flat;
export default Fragment.extend({
- attributes: attr(),
+ nodeAttributes: attr(),
- attributesStructured: computed('attributes', function() {
- const original = this.attributes;
+ attributesStructured: computed('nodeAttributes', function() {
+ const original = this.nodeAttributes;
if (!original) {
return;
@@ -30,6 +30,8 @@ export default Fragment.extend({
//
// ex: nodeAttrs.get('driver.docker')
// [ "1", { version: "17.05.0-ce", volumes: { enabled: "1" } } ]
- return get(this.attributesStructured, key);
+ if (this.attributesStructured) {
+ return get(this.attributesStructured, key);
+ }
},
});
diff --git a/ui/app/models/service.js b/ui/app/models/service.js
new file mode 100644
index 000000000..1743c8180
--- /dev/null
+++ b/ui/app/models/service.js
@@ -0,0 +1,10 @@
+import attr from 'ember-data/attr';
+import Fragment from 'ember-data-model-fragments/fragment';
+import { fragment } from 'ember-data-model-fragments/attributes';
+
+export default Fragment.extend({
+ name: attr('string'),
+ portLabel: attr('string'),
+ tags: attr(),
+ connect: fragment('consul-connect'),
+});
diff --git a/ui/app/models/sidecar-proxy-upstream.js b/ui/app/models/sidecar-proxy-upstream.js
new file mode 100644
index 000000000..76d0b0d4f
--- /dev/null
+++ b/ui/app/models/sidecar-proxy-upstream.js
@@ -0,0 +1,7 @@
+import Fragment from 'ember-data-model-fragments/fragment';
+import attr from 'ember-data/attr';
+
+export default Fragment.extend({
+ destinationName: attr('string'),
+ localBindPort: attr('string'),
+});
diff --git a/ui/app/models/sidecar-proxy.js b/ui/app/models/sidecar-proxy.js
new file mode 100644
index 000000000..5370fdd66
--- /dev/null
+++ b/ui/app/models/sidecar-proxy.js
@@ -0,0 +1,6 @@
+import Fragment from 'ember-data-model-fragments/fragment';
+import { fragmentArray } from 'ember-data-model-fragments/attributes';
+
+export default Fragment.extend({
+ upstreams: fragmentArray('sidecar-proxy-upstream'),
+});
diff --git a/ui/app/models/sidecar-service.js b/ui/app/models/sidecar-service.js
new file mode 100644
index 000000000..5e271d01e
--- /dev/null
+++ b/ui/app/models/sidecar-service.js
@@ -0,0 +1,6 @@
+import Fragment from 'ember-data-model-fragments/fragment';
+import { fragment } from 'ember-data-model-fragments/attributes';
+
+export default Fragment.extend({
+ proxy: fragment('sidecar-proxy'),
+});
diff --git a/ui/app/models/task-group.js b/ui/app/models/task-group.js
index 0d0991174..95474718e 100644
--- a/ui/app/models/task-group.js
+++ b/ui/app/models/task-group.js
@@ -14,10 +14,10 @@ export default Fragment.extend({
tasks: fragmentArray('task'),
+ services: fragmentArray('service'),
+
drivers: computed('tasks.@each.driver', function() {
- return this.tasks
- .mapBy('driver')
- .uniq();
+ return this.tasks.mapBy('driver').uniq();
}),
allocations: computed('job.allocations.@each.taskGroup', function() {
diff --git a/ui/app/models/task-state.js b/ui/app/models/task-state.js
index 754a68f61..e6afba7e8 100644
--- a/ui/app/models/task-state.js
+++ b/ui/app/models/task-state.js
@@ -16,7 +16,11 @@ export default Fragment.extend({
isActive: none('finishedAt'),
isRunning: and('isActive', 'allocation.isRunning'),
- task: computed('allocation.taskGroup.tasks.[]', function() {
+ isConnectProxy: computed('task.kind', function() {
+ return (this.get('task.kind') || '').startsWith('connect-proxy:');
+ }),
+
+ task: computed('name', 'allocation.taskGroup.tasks.[]', function() {
const tasks = this.get('allocation.taskGroup.tasks');
return tasks && tasks.findBy('name', this.name);
}),
diff --git a/ui/app/models/task.js b/ui/app/models/task.js
index 90025400d..40348fa25 100644
--- a/ui/app/models/task.js
+++ b/ui/app/models/task.js
@@ -4,6 +4,7 @@ import Fragment from 'ember-data-model-fragments/fragment';
export default Fragment.extend({
name: attr('string'),
driver: attr('string'),
+ kind: attr('string'),
reservedMemory: attr('number'),
reservedCPU: attr('number'),
diff --git a/ui/app/routes/allocations/allocation/task/fs.js b/ui/app/routes/allocations/allocation/task/fs.js
index cc0b6213a..097ba686a 100644
--- a/ui/app/routes/allocations/allocation/task/fs.js
+++ b/ui/app/routes/allocations/allocation/task/fs.js
@@ -9,6 +9,13 @@ export default Route.extend({
const pathWithTaskName = `${task.name}${decodedPath.startsWith('/') ? '' : '/'}${decodedPath}`;
+ if (!task.isRunning) {
+ return {
+ path: decodedPath,
+ task,
+ };
+ }
+
return RSVP.all([task.stat(pathWithTaskName), task.get('allocation.node')])
.then(([statJson]) => {
if (statJson.IsDir) {
diff --git a/ui/app/routes/application.js b/ui/app/routes/application.js
index dbc9baa35..62ba8ef0b 100644
--- a/ui/app/routes/application.js
+++ b/ui/app/routes/application.js
@@ -1,7 +1,7 @@
import { inject as service } from '@ember/service';
import { next } from '@ember/runloop';
import Route from '@ember/routing/route';
-import { AbortError } from 'ember-data/adapters/errors';
+import { AbortError } from '@ember-data/adapter/error';
import RSVP from 'rsvp';
export default Route.extend({
@@ -26,7 +26,7 @@ export default Route.extend({
promises => {
if (!this.get('system.shouldShowRegions')) return promises;
- const queryParam = transition.queryParams.region;
+ const queryParam = transition.to.queryParams.region;
const defaultRegion = this.get('system.defaultRegion.region');
const currentRegion = this.get('system.activeRegion') || defaultRegion;
diff --git a/ui/app/routes/jobs.js b/ui/app/routes/jobs.js
index 9748013b7..08bbb26f9 100644
--- a/ui/app/routes/jobs.js
+++ b/ui/app/routes/jobs.js
@@ -22,7 +22,7 @@ export default Route.extend(WithForbiddenState, {
beforeModel(transition) {
return this.get('system.namespaces').then(namespaces => {
- const queryParam = transition.queryParams.namespace;
+ const queryParam = transition.to.queryParams.namespace;
this.set('system.activeNamespace', queryParam || 'default');
return namespaces;
@@ -30,9 +30,7 @@ export default Route.extend(WithForbiddenState, {
},
model() {
- return this.store
- .findAll('job', { reload: true })
- .catch(notifyForbidden(this));
+ return this.store.findAll('job', { reload: true }).catch(notifyForbidden(this));
},
actions: {
diff --git a/ui/app/routes/jobs/job.js b/ui/app/routes/jobs/job.js
index 8685c9ac0..70f323049 100644
--- a/ui/app/routes/jobs/job.js
+++ b/ui/app/routes/jobs/job.js
@@ -15,7 +15,7 @@ export default Route.extend({
},
model(params, transition) {
- const namespace = transition.queryParams.namespace || this.get('system.activeNamespace.id');
+ const namespace = transition.to.queryParams.namespace || this.get('system.activeNamespace.id');
const name = params.job_name;
const fullId = JSON.stringify([name, namespace || 'default']);
return this.store
diff --git a/ui/app/serializers/agent.js b/ui/app/serializers/agent.js
index f99134f15..5cbe4c3ad 100644
--- a/ui/app/serializers/agent.js
+++ b/ui/app/serializers/agent.js
@@ -1,5 +1,5 @@
import ApplicationSerializer from './application';
-import { AdapterError } from 'ember-data/adapters/errors';
+import AdapterError from '@ember-data/adapter/error';
export default ApplicationSerializer.extend({
attrs: {
diff --git a/ui/app/serializers/allocation.js b/ui/app/serializers/allocation.js
index a629451d9..64bb540d0 100644
--- a/ui/app/serializers/allocation.js
+++ b/ui/app/serializers/allocation.js
@@ -49,6 +49,9 @@ export default ApplicationSerializer.extend({
hash.PreemptedByAllocationID = hash.PreemptedByAllocation || null;
hash.WasPreempted = !!hash.PreemptedByAllocationID;
+ // When present, the resources are nested under AllocatedResources.Shared
+ hash.AllocatedResources = hash.AllocatedResources && hash.AllocatedResources.Shared;
+
return this._super(typeHash, hash);
},
});
diff --git a/ui/app/serializers/network.js b/ui/app/serializers/network.js
index 56410188e..b5767df2e 100644
--- a/ui/app/serializers/network.js
+++ b/ui/app/serializers/network.js
@@ -15,6 +15,22 @@ export default ApplicationSerializer.extend({
hash.IP = `[${ip}]`;
}
+ const reservedPorts = (hash.ReservedPorts || []).map(port => ({
+ name: port.Label,
+ port: port.Value,
+ to: port.To,
+ isDynamic: false,
+ }));
+
+ const dynamicPorts = (hash.DynamicPorts || []).map(port => ({
+ name: port.Label,
+ port: port.Value,
+ to: port.To,
+ isDynamic: true,
+ }));
+
+ hash.Ports = reservedPorts.concat(dynamicPorts).sortBy('name');
+
return this._super(...arguments);
},
});
diff --git a/ui/app/serializers/node-attributes.js b/ui/app/serializers/node-attributes.js
index 6e4be279f..458c81f15 100644
--- a/ui/app/serializers/node-attributes.js
+++ b/ui/app/serializers/node-attributes.js
@@ -2,6 +2,6 @@ import ApplicationSerializer from './application';
export default ApplicationSerializer.extend({
normalize(typeHash, hash) {
- return this._super(typeHash, { Attributes: hash });
+ return this._super(typeHash, { NodeAttributes: hash });
},
});
diff --git a/ui/app/serializers/service.js b/ui/app/serializers/service.js
new file mode 100644
index 000000000..da532204c
--- /dev/null
+++ b/ui/app/serializers/service.js
@@ -0,0 +1,15 @@
+import ApplicationSerializer from './application';
+
+export default ApplicationSerializer.extend({
+ attrs: {
+ connect: 'Connect',
+ },
+
+ normalize(typeHash, hash) {
+ if (!hash.Tags) {
+ hash.Tags = [];
+ }
+
+ return this._super(typeHash, hash);
+ },
+});
diff --git a/ui/app/serializers/task-group.js b/ui/app/serializers/task-group.js
index 1e52947c3..59ed48cd5 100644
--- a/ui/app/serializers/task-group.js
+++ b/ui/app/serializers/task-group.js
@@ -9,6 +9,7 @@ export default ApplicationSerializer.extend({
});
hash.ReservedEphemeralDisk = hash.EphemeralDisk.SizeMB;
+ hash.Services = hash.Services || [];
return this._super(typeHash, hash);
},
diff --git a/ui/app/services/stats-trackers-registry.js b/ui/app/services/stats-trackers-registry.js
index 37cbb228a..5a603d016 100644
--- a/ui/app/services/stats-trackers-registry.js
+++ b/ui/app/services/stats-trackers-registry.js
@@ -18,6 +18,8 @@ export default Service.extend({
token: service(),
init() {
+ this._super(...arguments);
+
// The LRUMap limits the number of trackers tracked by making room for
// new entries beyond the limit by removing the least recently used entry.
registry = new LRUMap(MAX_STAT_TRACKERS);
diff --git a/ui/app/services/watch-list.js b/ui/app/services/watch-list.js
index 1b669dd0c..f75a8bdb8 100644
--- a/ui/app/services/watch-list.js
+++ b/ui/app/services/watch-list.js
@@ -10,6 +10,7 @@ export default Service.extend({
}),
init() {
+ this._super(...arguments);
list = {};
},
diff --git a/ui/app/styles/components/page-layout.scss b/ui/app/styles/components/page-layout.scss
index fa69c11f1..f1797cf15 100644
--- a/ui/app/styles/components/page-layout.scss
+++ b/ui/app/styles/components/page-layout.scss
@@ -37,6 +37,7 @@
&.is-right {
margin-left: $gutter-width;
width: calc(100% - #{$gutter-width});
+ max-width: calc(100% - #{$gutter-width});
}
@media #{$mq-hidden-gutter} {
diff --git a/ui/app/templates/allocations/allocation/index.hbs b/ui/app/templates/allocations/allocation/index.hbs
index 4a961c808..7e51f6605 100644
--- a/ui/app/templates/allocations/allocation/index.hbs
+++ b/ui/app/templates/allocations/allocation/index.hbs
@@ -115,6 +115,66 @@
+ {{#if network.ports.length}}
+
+
+ Ports
+
+
+ {{#list-table source=network.ports as |t|}}
+ {{#t.head}}
+
Name
+
Dynamic?
+
Host Address
+
Mapped Port
+ {{/t.head}}
+ {{#t.body as |row|}}
+
+ {{row.model.name}}
+ {{if row.model.isDynamic "Yes" "No"}}
+
+ {{network.ip}}:{{row.model.port}}
+
+ {{row.model.to}}
+
+ {{/t.body}}
+ {{/list-table}}
+
+
+ {{/if}}
+
+ {{#if services.length}}
+
+
+ Services
+
+
+ {{#list-table source=services as |t|}}
+ {{#t.head}}
+
Name
+ Port
+ Tags
+ Connect?
+ Upstreams
+ {{/t.head}}
+ {{#t.body as |row|}}
+
+ {{row.model.name}}
+ {{row.model.portLabel}}
+ {{join ", " row.model.tags}}
+ {{if row.model.connect "Yes" "No"}}
+
+ {{#each row.model.connect.sidecarService.proxy.upstreams as |upstream|}}
+ {{upstream.destinationName}}:{{upstream.localBindPort}}
+ {{/each}}
+
+
+ {{/t.body}}
+ {{/list-table}}
+
+
+ {{/if}}
+
{{#if model.hasRescheduleEvents}}
diff --git a/ui/app/templates/allocations/allocation/task/index.hbs b/ui/app/templates/allocations/allocation/task/index.hbs
index 7ecc65e27..04013d263 100644
--- a/ui/app/templates/allocations/allocation/task/index.hbs
+++ b/ui/app/templates/allocations/allocation/task/index.hbs
@@ -17,7 +17,10 @@
{{model.name}}
- {{model.state}}
+ {{#if model.isConnectProxy}}
+ {{proxy-tag class="bumper-left"}}
+ {{/if}}
+ {{model.state}}
{{#if model.isRunning}}
{{two-step-button
data-test-restart
@@ -74,13 +77,13 @@
- {{#if ports.length}}
+ {{#if network.ports.length}}
Addresses
- {{#list-table source=ports as |t|}}
+ {{#list-table source=network.ports as |t|}}
{{#t.head}}
Dynamic?
Name
diff --git a/ui/app/templates/clients/index.hbs b/ui/app/templates/clients/index.hbs
index 6d842a884..e7245c1bc 100644
--- a/ui/app/templates/clients/index.hbs
+++ b/ui/app/templates/clients/index.hbs
@@ -35,38 +35,40 @@
- {{#list-pagination
- source=sortedNodes
- size=pageSize
- page=currentPage as |p|}}
- {{#list-table
- source=p.list
- sortProperty=sortProperty
- sortDescending=sortDescending
- class="with-foot" as |t|}}
- {{#t.head}}
-
- {{#t.sort-by prop="id"}}ID{{/t.sort-by}}
- {{#t.sort-by class="is-200px is-truncatable" prop="name"}}Name{{/t.sort-by}}
- {{#t.sort-by prop="status"}}State{{/t.sort-by}}
- Address
- {{#t.sort-by prop="datacenter"}}Datacenter{{/t.sort-by}}
- # Allocs
- {{/t.head}}
- {{#t.body as |row|}}
- {{client-node-row data-test-client-node-row node=row.model onClick=(action "gotoNode" row.model)}}
- {{/t.body}}
- {{/list-table}}
-
+ {{#if sortedNodes}}
+ {{#list-pagination
+ source=sortedNodes
+ size=pageSize
+ page=currentPage as |p|}}
+ {{#list-table
+ source=p.list
+ sortProperty=sortProperty
+ sortDescending=sortDescending
+ class="with-foot" as |t|}}
+ {{#t.head}}
+
+ {{#t.sort-by prop="id"}}ID{{/t.sort-by}}
+ {{#t.sort-by class="is-200px is-truncatable" prop="name"}}Name{{/t.sort-by}}
+ {{#t.sort-by prop="status"}}State{{/t.sort-by}}
+ Address
+ {{#t.sort-by prop="datacenter"}}Datacenter{{/t.sort-by}}
+ # Allocs
+ {{/t.head}}
+ {{#t.body as |row|}}
+ {{client-node-row data-test-client-node-row node=row.model onClick=(action "gotoNode" row.model)}}
+ {{/t.body}}
+ {{/list-table}}
+
+ {{/list-pagination}}
{{else}}
{{#if (eq nodes.length 0)}}
@@ -84,6 +86,6 @@
No clients match the term {{searchTerm}}
{{/if}}
- {{/list-pagination}}
+ {{/if}}
{{/if}}
diff --git a/ui/app/templates/components/freestyle/sg-dropdown.hbs b/ui/app/templates/components/freestyle/sg-dropdown.hbs
index c15239eb7..361fb1635 100644
--- a/ui/app/templates/components/freestyle/sg-dropdown.hbs
+++ b/ui/app/templates/components/freestyle/sg-dropdown.hbs
@@ -4,7 +4,7 @@
selected=selectedOption
searchField="name"
searchEnabled=(gt options.length 10)
- onchange=(action (mut selectedOption))
+ onChange=(action (mut selectedOption))
as |option|}}
{{option.name}}
{{/power-select}}
@@ -22,7 +22,7 @@
selected=selectedOption2
searchField="name"
searchEnabled=(gt options.length 10)
- onchange=(action (mut selectedOption2))
+ onChange=(action (mut selectedOption2))
as |option|}}
{{option.name}}
{{/power-select}}
@@ -42,7 +42,7 @@
selected=selectedOption3
searchField="name"
searchEnabled=(gt manyOptions.length 10)
- onchange=(action (mut selectedOption3))
+ onChange=(action (mut selectedOption3))
as |option|}}
{{option.name}}
{{/power-select}}
diff --git a/ui/app/templates/components/freestyle/sg-gutter-menu.hbs b/ui/app/templates/components/freestyle/sg-gutter-menu.hbs
index 8ccc3e759..001dfe524 100644
--- a/ui/app/templates/components/freestyle/sg-gutter-menu.hbs
+++ b/ui/app/templates/components/freestyle/sg-gutter-menu.hbs
@@ -37,7 +37,7 @@
{{#power-select
selected=(or selection "One")
options=(array "One" "Two" "Three")
- onchange=(action (mut selection))
+ onChange=(action (mut selection))
as |option|}}
{{option}}
{{/power-select}}
diff --git a/ui/app/templates/components/freestyle/sg-proxy-tag.hbs b/ui/app/templates/components/freestyle/sg-proxy-tag.hbs
new file mode 100644
index 000000000..f392706b5
--- /dev/null
+++ b/ui/app/templates/components/freestyle/sg-proxy-tag.hbs
@@ -0,0 +1,3 @@
+{{#freestyle-usage "proxy-tag" title="Proxy Tag"}}
+ {{proxy-tag}}
+{{/freestyle-usage}}
\ No newline at end of file
diff --git a/ui/app/templates/components/gutter-menu.hbs b/ui/app/templates/components/gutter-menu.hbs
index 4c182af6f..a4ba2aa23 100644
--- a/ui/app/templates/components/gutter-menu.hbs
+++ b/ui/app/templates/components/gutter-menu.hbs
@@ -36,7 +36,7 @@
selected=system.activeNamespace
searchField="name"
searchEnabled=(gt sortedNamespaces.length 10)
- onchange=(action gotoJobsForNamespace)
+ onChange=(action gotoJobsForNamespace)
tagName="div"
class="namespace-switcher"
as |namespace|}}
diff --git a/ui/app/templates/components/job-page/parts/children.hbs b/ui/app/templates/components/job-page/parts/children.hbs
index 944168f1b..906eb30b3 100644
--- a/ui/app/templates/components/job-page/parts/children.hbs
+++ b/ui/app/templates/components/job-page/parts/children.hbs
@@ -2,41 +2,43 @@
Job Launches
- {{#list-pagination
- source=sortedChildren
- size=pageSize
- page=currentPage as |p|}}
- {{#list-table
- source=p.list
- sortProperty=sortProperty
- sortDescending=sortDescending
- class="with-foot" as |t|}}
- {{#t.head}}
- {{#t.sort-by prop="name"}}Name{{/t.sort-by}}
- {{#t.sort-by prop="status"}}Status{{/t.sort-by}}
- {{#t.sort-by prop="type"}}Type{{/t.sort-by}}
- {{#t.sort-by prop="priority"}}Priority{{/t.sort-by}}
-
Groups
-
Summary
- {{/t.head}}
- {{#t.body key="model.id" as |row|}}
- {{job-row data-test-job-row job=row.model onClick=(action gotoJob row.model)}}
- {{/t.body}}
- {{/list-table}}
-
+ {{#if sortedChildren}}
+ {{#list-pagination
+ source=sortedChildren
+ size=pageSize
+ page=currentPage as |p|}}
+ {{#list-table
+ source=p.list
+ sortProperty=sortProperty
+ sortDescending=sortDescending
+ class="with-foot" as |t|}}
+ {{#t.head}}
+ {{#t.sort-by prop="name"}}Name{{/t.sort-by}}
+ {{#t.sort-by prop="status"}}Status{{/t.sort-by}}
+ {{#t.sort-by prop="type"}}Type{{/t.sort-by}}
+ {{#t.sort-by prop="priority"}}Priority{{/t.sort-by}}
+
Groups
+
Summary
+ {{/t.head}}
+ {{#t.body key="model.id" as |row|}}
+ {{job-row data-test-job-row job=row.model onClick=(action gotoJob row.model)}}
+ {{/t.body}}
+ {{/list-table}}
+
+ {{/list-pagination}}
{{else}}
No Job Launches
No remaining living job launches.
- {{/list-pagination}}
+ {{/if}}
diff --git a/ui/app/templates/components/list-pagination.hbs b/ui/app/templates/components/list-pagination.hbs
index e42c7fc62..ce74865a0 100644
--- a/ui/app/templates/components/list-pagination.hbs
+++ b/ui/app/templates/components/list-pagination.hbs
@@ -10,7 +10,5 @@
startsAt=startsAt
endsAt=endsAt
list=list
-)}}
-{{else}}
- {{yield to="inverse"}}
+ )}}
{{/if}}
diff --git a/ui/app/templates/components/multi-select-dropdown.hbs b/ui/app/templates/components/multi-select-dropdown.hbs
index f7b48e149..b2e4c89fb 100644
--- a/ui/app/templates/components/multi-select-dropdown.hbs
+++ b/ui/app/templates/components/multi-select-dropdown.hbs
@@ -1,36 +1,43 @@
-{{#basic-dropdown
- horizontalPosition="left"
- onOpen=(action (queue
- (action (mut isOpen) true)
- (action capture)
- ))
- onClose=(action (mut isOpen) false)
- as |dd|}}
- {{#dd.trigger data-test-dropdown-trigger class="dropdown-trigger" onKeyDown=(action "openOnArrowDown")}}
-
+
+
+
{{label}}
{{#if selection.length}}
- {{selection.length}}
+
+ {{selection.length}}
+
{{/if}}
-
+
- {{/dd.trigger}}
- {{#dd.content class="dropdown-options"}}
+
+
- {{/dd.content}}
-{{/basic-dropdown}}
\ No newline at end of file
+
+
\ No newline at end of file
diff --git a/ui/app/templates/components/proxy-tag.hbs b/ui/app/templates/components/proxy-tag.hbs
new file mode 100644
index 000000000..bf2314c50
--- /dev/null
+++ b/ui/app/templates/components/proxy-tag.hbs
@@ -0,0 +1,3 @@
+
+ Proxy
+
\ No newline at end of file
diff --git a/ui/app/templates/components/region-switcher.hbs b/ui/app/templates/components/region-switcher.hbs
index df2da1870..7cd46037a 100644
--- a/ui/app/templates/components/region-switcher.hbs
+++ b/ui/app/templates/components/region-switcher.hbs
@@ -6,7 +6,7 @@
options=sortedRegions
selected=system.activeRegion
searchEnabled=false
- onchange=(action gotoRegion) as |region|}}
+ onChange=(action gotoRegion) as |region|}}
Region: {{region}}
{{/power-select}}
{{/if}}
diff --git a/ui/app/templates/components/task-row.hbs b/ui/app/templates/components/task-row.hbs
index aaff844d5..b248e31e2 100644
--- a/ui/app/templates/components/task-row.hbs
+++ b/ui/app/templates/components/task-row.hbs
@@ -5,9 +5,12 @@
{{/if}}
-
+
{{#link-to "allocations.allocation.task" task.allocation task class="is-primary"}}
{{task.name}}
+ {{#if task.isConnectProxy}}
+ {{proxy-tag class="bumper-left"}}
+ {{/if}}
{{/link-to}}
{{task.state}}
@@ -22,16 +25,10 @@
{{#with task.resources.networks.firstObject as |network|}}
- {{#each network.reservedPorts as |port|}}
+ {{#each network.ports as |port|}}
- {{port.Label}}:
- {{network.ip}}:{{port.Value}}
-
- {{/each}}
- {{#each network.dynamicPorts as |port|}}
-
- {{port.Label}}:
- {{network.ip}}:{{port.Value}}
+ {{port.name}}:
+ {{network.ip}}:{{port.port}}
{{/each}}
{{/with}}
diff --git a/ui/app/templates/freestyle.hbs b/ui/app/templates/freestyle.hbs
index e6ccfd683..2818c28b8 100644
--- a/ui/app/templates/freestyle.hbs
+++ b/ui/app/templates/freestyle.hbs
@@ -83,6 +83,10 @@
{{freestyle/sg-page-title}}
{{/section.subsection}}
+ {{#section.subsection name="Proxy Tag"}}
+ {{freestyle/sg-proxy-tag}}
+ {{/section.subsection}}
+
{{#section.subsection name="Search box"}}
{{freestyle/sg-search-box}}
{{/section.subsection}}
diff --git a/ui/app/templates/jobs/index.hbs b/ui/app/templates/jobs/index.hbs
index 79baa065f..417aeaaa0 100644
--- a/ui/app/templates/jobs/index.hbs
+++ b/ui/app/templates/jobs/index.hbs
@@ -52,40 +52,42 @@
{{/if}}
- {{#list-pagination
- source=sortedJobs
- size=pageSize
- page=currentPage as |p|}}
- {{#list-table
- source=p.list
- sortProperty=sortProperty
- sortDescending=sortDescending
- class="with-foot" as |t|}}
- {{#t.head}}
- {{#t.sort-by prop="name"}}Name{{/t.sort-by}}
- {{#t.sort-by prop="status"}}Status{{/t.sort-by}}
- {{#t.sort-by prop="type"}}Type{{/t.sort-by}}
- {{#t.sort-by prop="priority"}}Priority{{/t.sort-by}}
- Groups
- Summary
- {{/t.head}}
- {{#t.body key="model.id" as |row|}}
- {{job-row data-test-job-row=row.model.plainId job=row.model onClick=(action "gotoJob" row.model)}}
- {{/t.body}}
- {{/list-table}}
-
+ {{#if sortedJobs}}
+ {{#list-pagination
+ source=sortedJobs
+ size=pageSize
+ page=currentPage as |p|}}
+ {{#list-table
+ source=p.list
+ sortProperty=sortProperty
+ sortDescending=sortDescending
+ class="with-foot" as |t|}}
+ {{#t.head}}
+ {{#t.sort-by prop="name"}}Name{{/t.sort-by}}
+ {{#t.sort-by prop="status"}}Status{{/t.sort-by}}
+ {{#t.sort-by prop="type"}}Type{{/t.sort-by}}
+ {{#t.sort-by prop="priority"}}Priority{{/t.sort-by}}
+ Groups
+ Summary
+ {{/t.head}}
+ {{#t.body key="model.id" as |row|}}
+ {{job-row data-test-job-row=row.model.plainId job=row.model onClick=(action "gotoJob" row.model)}}
+ {{/t.body}}
+ {{/list-table}}
+
+ {{/list-pagination}}
{{else}}
{{#if (eq visibleJobs.length 0)}}
@@ -103,6 +105,6 @@
No jobs match the term {{searchTerm}}
{{/if}}
- {{/list-pagination}}
+ {{/if}}
{{/if}}
diff --git a/ui/app/templates/jobs/job/allocations.hbs b/ui/app/templates/jobs/job/allocations.hbs
index 062a43b30..893117490 100644
--- a/ui/app/templates/jobs/job/allocations.hbs
+++ b/ui/app/templates/jobs/job/allocations.hbs
@@ -11,46 +11,48 @@
placeholder="Search allocations..."}}
- {{#list-pagination
- source=sortedAllocations
- size=pageSize
- page=currentPage
- class="allocations" as |p|}}
- {{#list-table
- source=p.list
- sortProperty=sortProperty
- sortDescending=sortDescending
- class="with-foot" as |t|}}
- {{#t.head}}
-
- {{#t.sort-by prop="shortId"}}ID{{/t.sort-by}}
- {{#t.sort-by prop="taskGroupName"}}Task Group{{/t.sort-by}}
- {{#t.sort-by prop="createIndex" title="Create Index"}}Created{{/t.sort-by}}
- {{#t.sort-by prop="modifyIndex" title="Modify Index"}}Modified{{/t.sort-by}}
- {{#t.sort-by prop="statusIndex"}}Status{{/t.sort-by}}
- {{#t.sort-by prop="jobVersion"}}Version{{/t.sort-by}}
- {{#t.sort-by prop="node.shortId"}}Client{{/t.sort-by}}
- CPU
- Memory
- {{/t.head}}
- {{#t.body as |row|}}
- {{allocation-row
- data-test-allocation=row.model.id
- allocation=row.model
- context="job"
- onClick=(action "gotoAllocation" row.model)}}
- {{/t.body}}
- {{/list-table}}
-
+ {{#if sortedAllocations}}
+ {{#list-pagination
+ source=sortedAllocations
+ size=pageSize
+ page=currentPage
+ class="allocations" as |p|}}
+ {{#list-table
+ source=p.list
+ sortProperty=sortProperty
+ sortDescending=sortDescending
+ class="with-foot" as |t|}}
+ {{#t.head}}
+
+ {{#t.sort-by prop="shortId"}}ID{{/t.sort-by}}
+ {{#t.sort-by prop="taskGroupName"}}Task Group{{/t.sort-by}}
+ {{#t.sort-by prop="createIndex" title="Create Index"}}Created{{/t.sort-by}}
+ {{#t.sort-by prop="modifyIndex" title="Modify Index"}}Modified{{/t.sort-by}}
+ {{#t.sort-by prop="statusIndex"}}Status{{/t.sort-by}}
+ {{#t.sort-by prop="jobVersion"}}Version{{/t.sort-by}}
+ {{#t.sort-by prop="node.shortId"}}Client{{/t.sort-by}}
+ CPU
+ Memory
+ {{/t.head}}
+ {{#t.body as |row|}}
+ {{allocation-row
+ data-test-allocation=row.model.id
+ allocation=row.model
+ context="job"
+ onClick=(action "gotoAllocation" row.model)}}
+ {{/t.body}}
+ {{/list-table}}
+
+ {{/list-pagination}}
{{else}}
@@ -58,7 +60,7 @@
No allocations match the term {{searchTerm}}
- {{/list-pagination}}
+ {{/if}}
{{else}}
diff --git a/ui/app/templates/jobs/job/task-group.hbs b/ui/app/templates/jobs/job/task-group.hbs
index c74461a8e..d3d104ec2 100644
--- a/ui/app/templates/jobs/job/task-group.hbs
+++ b/ui/app/templates/jobs/job/task-group.hbs
@@ -52,41 +52,43 @@
inputClass="is-compact"}}
- {{#list-pagination
- source=sortedAllocations
- size=pageSize
- page=currentPage
- class="allocations" as |p|}}
- {{#list-table
- source=p.list
- sortProperty=sortProperty
- sortDescending=sortDescending
- class="with-foot" as |t|}}
- {{#t.head}}
-
- {{#t.sort-by prop="shortId"}}ID{{/t.sort-by}}
- {{#t.sort-by prop="createIndex" title="Create Index"}}Created{{/t.sort-by}}
- {{#t.sort-by prop="modifyIndex" title="Modify Index"}}Modified{{/t.sort-by}}
- {{#t.sort-by prop="statusIndex"}}Status{{/t.sort-by}}
- {{#t.sort-by prop="jobVersion"}}Version{{/t.sort-by}}
- {{#t.sort-by prop="node.shortId"}}Client{{/t.sort-by}}
-
CPU
-
Memory
- {{/t.head}}
- {{#t.body as |row|}}
- {{allocation-row data-test-allocation=row.model.id allocation=row.model context="taskGroup" onClick=(action "gotoAllocation" row.model)}}
- {{/t.body}}
- {{/list-table}}
-
+ {{#if sortedAllocations}}
+ {{#list-pagination
+ source=sortedAllocations
+ size=pageSize
+ page=currentPage
+ class="allocations" as |p|}}
+ {{#list-table
+ source=p.list
+ sortProperty=sortProperty
+ sortDescending=sortDescending
+ class="with-foot" as |t|}}
+ {{#t.head}}
+
+ {{#t.sort-by prop="shortId"}}ID{{/t.sort-by}}
+ {{#t.sort-by prop="createIndex" title="Create Index"}}Created{{/t.sort-by}}
+ {{#t.sort-by prop="modifyIndex" title="Modify Index"}}Modified{{/t.sort-by}}
+ {{#t.sort-by prop="statusIndex"}}Status{{/t.sort-by}}
+ {{#t.sort-by prop="jobVersion"}}Version{{/t.sort-by}}
+ {{#t.sort-by prop="node.shortId"}}Client{{/t.sort-by}}
+
CPU
+
Memory
+ {{/t.head}}
+ {{#t.body as |row|}}
+ {{allocation-row data-test-allocation=row.model.id allocation=row.model context="taskGroup" onClick=(action "gotoAllocation" row.model)}}
+ {{/t.body}}
+ {{/list-table}}
+
+ {{/list-pagination}}
{{else}}
{{#if allocations.length}}
@@ -103,7 +105,7 @@
{{/if}}
- {{/list-pagination}}
+ {{/if}}
diff --git a/ui/app/utils/classes/abstract-logger.js b/ui/app/utils/classes/abstract-logger.js
index 574669ea1..d90b785c1 100644
--- a/ui/app/utils/classes/abstract-logger.js
+++ b/ui/app/utils/classes/abstract-logger.js
@@ -1,6 +1,7 @@
import { assert } from '@ember/debug';
import Mixin from '@ember/object/mixin';
import { computed } from '@ember/object';
+import { computed as overridable } from 'ember-overridable-computed';
import { assign } from '@ember/polyfills';
import queryString from 'query-string';
@@ -8,7 +9,7 @@ const MAX_OUTPUT_LENGTH = 50000;
export default Mixin.create({
url: '',
- params: computed(() => ({})),
+ params: overridable(() => ({})),
logFetch() {
assert('Loggers need a logFetch method, which should have an interface like window.fetch');
},
@@ -22,7 +23,7 @@ export default Mixin.create({
: { origin: 'end', offset: MAX_OUTPUT_LENGTH };
}),
- additionalParams: computed(() => ({})),
+ additionalParams: overridable(() => ({})),
fullUrl: computed('url', 'params', 'offsetParams', 'additionalParams', function() {
const queryParams = queryString.stringify(
diff --git a/ui/app/utils/classes/log.js b/ui/app/utils/classes/log.js
index 597dfdc88..c1ebb6763 100644
--- a/ui/app/utils/classes/log.js
+++ b/ui/app/utils/classes/log.js
@@ -3,6 +3,7 @@ import { assert } from '@ember/debug';
import { htmlSafe } from '@ember/template';
import Evented from '@ember/object/evented';
import EmberObject, { computed } from '@ember/object';
+import { computed as overridable } from 'ember-overridable-computed';
import { assign } from '@ember/polyfills';
import queryString from 'query-string';
import { task } from 'ember-concurrency';
@@ -20,7 +21,7 @@ const Log = EmberObject.extend(Evented, {
// Parameters
url: '',
- params: computed(() => ({})),
+ params: overridable(() => ({})),
plainText: false,
logFetch() {
assert('Log objects need a logFetch method, which should have an interface like window.fetch');
diff --git a/ui/app/utils/no-leader-error.js b/ui/app/utils/no-leader-error.js
index cf29a8119..7b70918db 100644
--- a/ui/app/utils/no-leader-error.js
+++ b/ui/app/utils/no-leader-error.js
@@ -1,4 +1,4 @@
-import { AdapterError } from 'ember-data/adapters/errors';
+import AdapterError from '@ember-data/adapter/error';
export const NO_LEADER = 'No cluster leader';
diff --git a/ui/config/deprecation-workflow.js b/ui/config/deprecation-workflow.js
index 7082caeb4..70de2b346 100644
--- a/ui/config/deprecation-workflow.js
+++ b/ui/config/deprecation-workflow.js
@@ -5,8 +5,6 @@ self.deprecationWorkflow.config = {
{ handler: 'throw', matchId: 'ember-inflector.globals' },
{ handler: 'throw', matchId: 'ember-runtime.deprecate-copy-copyable' },
{ handler: 'throw', matchId: 'ember-console.deprecate-logger' },
- // Only used in ivy-codemirror.
- // PR open: https://github.com/IvyApp/ivy-codemirror/pull/40/files
- { handler: 'log', matchId: 'ember-component.send-action' },
+ { handler: 'log', matchId: 'ember-test-helpers.rendering-context.jquery-element' },
],
};
diff --git a/ui/config/environment.js b/ui/config/environment.js
index 56f9179f0..cb63b9f71 100644
--- a/ui/config/environment.js
+++ b/ui/config/environment.js
@@ -15,8 +15,7 @@ module.exports = function(environment) {
EmberENV: {
FEATURES: {
// Here you can enable experimental features on an ember canary build
- // e.g. 'with-controller': true
- 'ember-routing-router-service': true,
+ // e.g. EMBER_NATIVE_DECORATOR_SUPPORT: true
},
EXTEND_PROTOTYPES: {
// Prevent Ember Data from overriding Date.parse.
diff --git a/ui/lib/bulma/package.json b/ui/lib/bulma/package.json
index 5dc02af6c..77b1ab90e 100644
--- a/ui/lib/bulma/package.json
+++ b/ui/lib/bulma/package.json
@@ -2,5 +2,9 @@
"name": "bulma",
"keywords": [
"ember-addon"
- ]
+ ],
+ "devDependencies": {
+ "broccoli-funnel": "^2.0.1",
+ "bulma": "0.6.1"
+ }
}
diff --git a/ui/mirage/common.js b/ui/mirage/common.js
index 75416b593..48d8fc977 100644
--- a/ui/mirage/common.js
+++ b/ui/mirage/common.js
@@ -1,4 +1,4 @@
-import { faker } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
import { provide } from './utils';
// Realistically, resource reservations have a low cardinality
@@ -11,22 +11,24 @@ const IOPS_RESERVATIONS = [100000, 250000, 500000, 1000000, 10000000, 20000000];
IOPS_RESERVATIONS.push(...Array(1000).fill(0));
DISK_RESERVATIONS.push(...Array(500).fill(0));
+const NETWORK_MODES = ['bridge', 'host'];
+
export const DATACENTERS = provide(
15,
(n, i) => `${faker.address.countryCode().toLowerCase()}${i}`
);
export const HOSTS = provide(100, () => {
- const ip = Math.random() > 0.5 ? faker.internet.ip() : `[${ipv6()}]`;
+ const ip = faker.random.boolean() ? faker.internet.ip() : `[${faker.internet.ipv6()}]`;
return `${ip}:${faker.random.number({ min: 4000, max: 4999 })}`;
});
export function generateResources(options = {}) {
return {
- CPU: faker.random.arrayElement(CPU_RESERVATIONS),
- MemoryMB: faker.random.arrayElement(MEMORY_RESERVATIONS),
- DiskMB: faker.random.arrayElement(DISK_RESERVATIONS),
- IOPS: faker.random.arrayElement(IOPS_RESERVATIONS),
+ CPU: faker.helpers.randomize(CPU_RESERVATIONS),
+ MemoryMB: faker.helpers.randomize(MEMORY_RESERVATIONS),
+ DiskMB: faker.helpers.randomize(DISK_RESERVATIONS),
+ IOPS: faker.helpers.randomize(IOPS_RESERVATIONS),
Networks: generateNetworks(options.networks),
};
}
@@ -39,6 +41,7 @@ export function generateNetworks(options = {}) {
CIDR: '',
IP: faker.internet.ip(),
MBits: 10,
+ Mode: faker.helpers.randomize(NETWORK_MODES),
ReservedPorts: Array(
faker.random.number({
min: options.minPorts != null ? options.minPorts : 0,
@@ -49,6 +52,7 @@ export function generateNetworks(options = {}) {
.map(() => ({
Label: faker.hacker.noun(),
Value: faker.random.number({ min: 5000, max: 60000 }),
+ To: faker.random.number({ min: 5000, max: 60000 }),
})),
DynamicPorts: Array(
faker.random.number({
@@ -60,20 +64,7 @@ export function generateNetworks(options = {}) {
.map(() => ({
Label: faker.hacker.noun(),
Value: faker.random.number({ min: 5000, max: 60000 }),
+ To: faker.random.number({ min: 5000, max: 60000 }),
})),
}));
}
-
-// Faker v4.0 has a built-in ipv6 function. Once Mirage upgrades,
-// this code can be removed.
-function ipv6() {
- const subnets = [];
- for (var i = 0; i < 8; i++) {
- var subnet = [];
- for (var char = 0; char < 4; char++) {
- subnet.push(faker.random.number(15).toString(16));
- }
- subnets.push(subnet.join(''));
- }
- return subnets.join(':');
-}
diff --git a/ui/mirage/config.js b/ui/mirage/config.js
index 35a73f961..110c8548e 100644
--- a/ui/mirage/config.js
+++ b/ui/mirage/config.js
@@ -394,12 +394,12 @@ export default function() {
this.get('/client/fs/readat/:allocation_id', clientAllocationReadAtHandler);
this.get('/client/stats', function({ clientStats }, { queryParams }) {
- const seed = Math.random();
- if (seed > 0.8) {
+ const seed = faker.random.number(10);
+ if (seed >= 8) {
const stats = clientStats.find(queryParams.node_id);
stats.update({
timestamp: Date.now() * 1000000,
- CPUTicksConsumed: stats.CPUTicksConsumed + (Math.random() * 20 - 10),
+ CPUTicksConsumed: stats.CPUTicksConsumed + faker.random.number({ min: -10, max: 10 }),
});
return this.serialize(stats);
} else {
diff --git a/ui/mirage/factories/agent.js b/ui/mirage/factories/agent.js
index f523d5834..e3b52834d 100644
--- a/ui/mirage/factories/agent.js
+++ b/ui/mirage/factories/agent.js
@@ -1,4 +1,5 @@
-import { Factory, faker } from 'ember-cli-mirage';
+import { Factory } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
import { provide } from '../utils';
import { DATACENTERS } from '../common';
@@ -9,8 +10,8 @@ export default Factory.extend({
id: i => (i / 100 >= 1 ? `${UUIDS[i]}-${i}` : UUIDS[i]),
name: () => `nomad@${faker.internet.ip()}`,
- status: faker.list.random(...AGENT_STATUSES),
- serf_port: faker.random.number({ min: 4000, max: 4999 }),
+ status: () => faker.helpers.randomize(AGENT_STATUSES),
+ serf_port: () => faker.random.number({ min: 4000, max: 4999 }),
address() {
return this.name.split('@')[1];
@@ -20,7 +21,7 @@ export default Factory.extend({
const rpcPortCandidate = faker.random.number({ min: 4000, max: 4999 });
return {
port: rpcPortCandidate === this.serf_port ? rpcPortCandidate + 1 : rpcPortCandidate,
- dc: faker.list.random(...DATACENTERS)(),
+ dc: faker.helpers.randomize(DATACENTERS),
};
},
});
diff --git a/ui/mirage/factories/alloc-file.js b/ui/mirage/factories/alloc-file.js
index db9f4a926..f31628a74 100644
--- a/ui/mirage/factories/alloc-file.js
+++ b/ui/mirage/factories/alloc-file.js
@@ -1,9 +1,10 @@
-import { Factory, faker, trait } from 'ember-cli-mirage';
+import { Factory, trait } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
import { pickOne } from '../utils';
const REF_TIME = new Date();
const TROUBLESOME_CHARACTERS = '🏆 💃 🤩 🙌🏿 🖨 ? ; %'.split(' ');
-const makeWord = () => Math.round(Math.random() * 10000000 + 50000).toString(36);
+const makeWord = () => (faker.random.number(10000000) + 50000).toString(36);
const makeSentence = (count = 10) =>
new Array(count)
.fill(null)
@@ -35,7 +36,7 @@ const fileBodyMapping = {
.map((_, i) => {
const date = new Date(2019, 6, 23);
date.setSeconds(i * 5);
- return `${date.toISOString()} ${makeSentence(Math.round(Math.random() * 5 + 7))}`;
+ return `${date.toISOString()} ${makeSentence(faker.random.number({ max: 5 }) + 7)}`;
})
.join('\n'),
json: () =>
diff --git a/ui/mirage/factories/allocation.js b/ui/mirage/factories/allocation.js
index ba36082fd..b6e52917b 100644
--- a/ui/mirage/factories/allocation.js
+++ b/ui/mirage/factories/allocation.js
@@ -1,7 +1,9 @@
import Ember from 'ember';
import moment from 'moment';
-import { Factory, faker, trait } from 'ember-cli-mirage';
+import { Factory, trait } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
import { provide, pickOne } from '../utils';
+import { generateResources } from '../common';
const UUIDS = provide(100, faker.random.uuid.bind(faker.random));
const CLIENT_STATUSES = ['pending', 'running', 'complete', 'failed', 'lost'];
@@ -23,8 +25,8 @@ export default Factory.extend({
namespace: null,
- clientStatus: faker.list.random(...CLIENT_STATUSES),
- desiredStatus: faker.list.random(...DESIRED_STATUSES),
+ clientStatus: () => faker.helpers.randomize(CLIENT_STATUSES),
+ desiredStatus: () => faker.helpers.randomize(DESIRED_STATUSES),
// When true, doesn't create any resources, state, or events
shallow: false,
@@ -65,6 +67,14 @@ export default Factory.extend({
},
}),
+ withAllocatedResources: trait({
+ allocatedResources: () => {
+ return {
+ Shared: generateResources({ networks: { minPorts: 2 } }),
+ };
+ },
+ }),
+
rescheduleAttempts: 0,
rescheduleSuccess: false,
diff --git a/ui/mirage/factories/client-stat.js b/ui/mirage/factories/client-stat.js
index 8d7b27edd..3020791e2 100644
--- a/ui/mirage/factories/client-stat.js
+++ b/ui/mirage/factories/client-stat.js
@@ -1,4 +1,6 @@
-import { Factory, faker } from 'ember-cli-mirage';
+import { Factory } from 'ember-cli-mirage';
+
+import faker from 'nomad-ui/mirage/faker';
export default Factory.extend({
allDirStats: () => ({
@@ -12,7 +14,7 @@ export default Factory.extend({
}),
CPU: () => [
- Array(faker.list.random(1, 2, 4, 6, 8, 12, 16, 24, 32))
+ Array(faker.helpers.randomize(1, 2, 4, 6, 8, 12, 16, 24, 32))
.fill(0)
.map((cpu, index) => ({
CPU: `cpu${index}`,
@@ -23,7 +25,7 @@ export default Factory.extend({
})),
],
- CPUTicksConsumed: faker.random.number({ min: 100, max: 1000 }),
+ CPUTicksConsumed: () => faker.random.number({ min: 100, max: 1000 }),
diskStats: () => [
Array(faker.random.number({ min: 1, max: 5 }))
diff --git a/ui/mirage/factories/deployment-task-group-summary.js b/ui/mirage/factories/deployment-task-group-summary.js
index b08f02fa8..291f8285e 100644
--- a/ui/mirage/factories/deployment-task-group-summary.js
+++ b/ui/mirage/factories/deployment-task-group-summary.js
@@ -1,18 +1,20 @@
-import { Factory, faker } from 'ember-cli-mirage';
+import { Factory } from 'ember-cli-mirage';
+
+import faker from 'nomad-ui/mirage/faker';
const REF_TIME = new Date();
export default Factory.extend({
name: '',
- autoRevert: () => Math.random() > 0.5,
- promoted: () => Math.random() > 0.5,
+ autoRevert: () => faker.random.boolean(),
+ promoted: () => faker.random.boolean(),
requiresPromotion: false,
requireProgressBy: () => faker.date.past(0.5 / 365, REF_TIME),
- desiredTotal: faker.random.number({ min: 1, max: 10 }),
+ desiredTotal: () => faker.random.number({ min: 1, max: 10 }),
desiredCanaries() {
return faker.random.number(Math.floor(this.desiredTotal / 2));
diff --git a/ui/mirage/factories/deployment.js b/ui/mirage/factories/deployment.js
index e6800b0a4..49179357c 100644
--- a/ui/mirage/factories/deployment.js
+++ b/ui/mirage/factories/deployment.js
@@ -1,4 +1,5 @@
-import { Factory, faker, trait } from 'ember-cli-mirage';
+import { Factory, trait } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
import { provide } from '../utils';
const UUIDS = provide(100, faker.random.uuid.bind(faker.random));
@@ -10,11 +11,11 @@ export default Factory.extend({
jobId: null,
versionNumber: null,
- status: faker.list.random(...DEPLOYMENT_STATUSES),
+ status: () => faker.helpers.randomize(DEPLOYMENT_STATUSES),
statusDescription: () => faker.lorem.sentence(),
notActive: trait({
- status: faker.list.random(...DEPLOYMENT_STATUSES.without('running')),
+ status: faker.helpers.randomize(DEPLOYMENT_STATUSES.without('running')),
}),
active: trait({
diff --git a/ui/mirage/factories/evaluation.js b/ui/mirage/factories/evaluation.js
index 941f85e55..d906190e3 100644
--- a/ui/mirage/factories/evaluation.js
+++ b/ui/mirage/factories/evaluation.js
@@ -1,5 +1,6 @@
import Ember from 'ember';
-import { Factory, faker, trait } from 'ember-cli-mirage';
+import { Factory, trait } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
import { provide, pickOne } from '../utils';
import { DATACENTERS } from '../common';
@@ -46,9 +47,9 @@ export default Factory.extend({
priority: () => faker.random.number(100),
- type: faker.list.random(...EVAL_TYPES),
- triggeredBy: faker.list.random(...EVAL_TRIGGERED_BY),
- status: faker.list.random(...EVAL_STATUSES),
+ type: () => faker.helpers.randomize(EVAL_TYPES),
+ triggeredBy: () => faker.helpers.randomize(EVAL_TRIGGERED_BY),
+ status: () => faker.helpers.randomize(EVAL_STATUSES),
statusDescription: () => faker.lorem.sentence(),
failedTGAllocs: null,
@@ -113,12 +114,12 @@ export function generateTaskGroupFailures() {
NodesEvaluated: faker.random.number({ min: 1, max: 100 }),
NodesExhausted: faker.random.number({ min: 1, max: 100 }),
- NodesAvailable: Math.random() > 0.7 ? generateNodesAvailable() : null,
- ClassFiltered: Math.random() > 0.7 ? generateClassFiltered() : null,
- ConstraintFiltered: Math.random() > 0.7 ? generateConstraintFiltered() : null,
- ClassExhausted: Math.random() > 0.7 ? generateClassExhausted() : null,
- DimensionExhausted: Math.random() > 0.7 ? generateDimensionExhausted() : null,
- QuotaExhausted: Math.random() > 0.7 ? generateQuotaExhausted() : null,
- Scores: Math.random() > 0.7 ? generateScores() : null,
+ NodesAvailable: faker.random.number(10) >= 7 ? generateNodesAvailable() : null,
+ ClassFiltered: faker.random.number(10) >= 7 ? generateClassFiltered() : null,
+ ConstraintFiltered: faker.random.number(10) >= 7 ? generateConstraintFiltered() : null,
+ ClassExhausted: faker.random.number(10) >= 7 ? generateClassExhausted() : null,
+ DimensionExhausted: faker.random.number(10) >= 7 ? generateDimensionExhausted() : null,
+ QuotaExhausted: faker.random.number(10) >= 7 ? generateQuotaExhausted() : null,
+ Scores: faker.random.number(10) >= 7 ? generateScores() : null,
};
}
diff --git a/ui/mirage/factories/job-summary.js b/ui/mirage/factories/job-summary.js
index 76bef8a02..7a76f8986 100644
--- a/ui/mirage/factories/job-summary.js
+++ b/ui/mirage/factories/job-summary.js
@@ -1,4 +1,6 @@
-import { Factory, faker, trait } from 'ember-cli-mirage';
+import { Factory, trait } from 'ember-cli-mirage';
+
+import faker from 'nomad-ui/mirage/faker';
export default Factory.extend({
// Hidden property used to compute the Summary hash
diff --git a/ui/mirage/factories/job-version.js b/ui/mirage/factories/job-version.js
index fe3404450..7dd6bb7ad 100644
--- a/ui/mirage/factories/job-version.js
+++ b/ui/mirage/factories/job-version.js
@@ -1,4 +1,6 @@
-import { Factory, faker } from 'ember-cli-mirage';
+import { Factory } from 'ember-cli-mirage';
+
+import faker from 'nomad-ui/mirage/faker';
const REF_TIME = new Date();
diff --git a/ui/mirage/factories/job.js b/ui/mirage/factories/job.js
index 3c168f166..d8c08ea83 100644
--- a/ui/mirage/factories/job.js
+++ b/ui/mirage/factories/job.js
@@ -1,5 +1,6 @@
import { assign } from '@ember/polyfills';
-import { Factory, faker, trait } from 'ember-cli-mirage';
+import { Factory, trait } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
import { provide, provider, pickOne } from '../utils';
import { DATACENTERS } from '../common';
@@ -9,7 +10,9 @@ const JOB_STATUSES = ['pending', 'running', 'dead'];
export default Factory.extend({
id: i =>
- `${faker.list.random(...JOB_PREFIXES)()}-${faker.hacker.noun().dasherize()}-${i}`.toLowerCase(),
+ `${faker.helpers.randomize(
+ JOB_PREFIXES
+ )}-${faker.hacker.noun().dasherize()}-${i}`.toLowerCase(),
name() {
return this.id;
@@ -18,14 +21,12 @@ export default Factory.extend({
groupsCount: () => faker.random.number({ min: 1, max: 2 }),
region: () => 'global',
- type: faker.list.random(...JOB_TYPES),
+ type: () => faker.helpers.randomize(JOB_TYPES),
priority: () => faker.random.number(100),
all_at_once: faker.random.boolean,
- status: faker.list.random(...JOB_STATUSES),
- datacenters: provider(
- () => faker.random.number({ min: 1, max: 4 }),
- faker.list.random(...DATACENTERS)
- ),
+ status: () => faker.helpers.randomize(JOB_STATUSES),
+ datacenters: () =>
+ faker.helpers.shuffle(DATACENTERS).slice(0, faker.random.number({ min: 1, max: 4 })),
childrenCount: () => faker.random.number({ min: 1, max: 2 }),
@@ -51,7 +52,7 @@ export default Factory.extend({
parameterizedDetails: () => ({
MetaOptional: null,
MetaRequired: null,
- Payload: Math.random() > 0.5 ? 'required' : null,
+ Payload: faker.random.boolean() ? 'required' : null,
}),
}),
@@ -98,6 +99,9 @@ export default Factory.extend({
// When true, allocations for this job will fail and reschedule, randomly succeeding or not
withRescheduling: false,
+ // When true, task groups will have services
+ withGroupServices: false,
+
// When true, only task groups and allocations are made
shallow: false,
@@ -118,6 +122,7 @@ export default Factory.extend({
job,
createAllocations: job.createAllocations,
withRescheduling: job.withRescheduling,
+ withServices: job.withGroupServices,
shallow: job.shallow,
});
diff --git a/ui/mirage/factories/namespace.js b/ui/mirage/factories/namespace.js
index 8fb0ff70f..00e63885c 100644
--- a/ui/mirage/factories/namespace.js
+++ b/ui/mirage/factories/namespace.js
@@ -1,4 +1,6 @@
-import { Factory, faker } from 'ember-cli-mirage';
+import { Factory } from 'ember-cli-mirage';
+
+import faker from 'nomad-ui/mirage/faker';
export default Factory.extend({
id: i => (i === 0 ? 'default' : `namespace-${i}`),
diff --git a/ui/mirage/factories/node-event.js b/ui/mirage/factories/node-event.js
index a00435d56..4caaa5f9e 100644
--- a/ui/mirage/factories/node-event.js
+++ b/ui/mirage/factories/node-event.js
@@ -1,11 +1,12 @@
-import { Factory, faker } from 'ember-cli-mirage';
+import { Factory } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
import { provide } from '../utils';
const REF_TIME = new Date();
const STATES = provide(10, faker.system.fileExt.bind(faker.system));
export default Factory.extend({
- subsystem: faker.list.random(...STATES),
+ subsystem: () => faker.helpers.randomize(STATES),
message: () => faker.lorem.sentence(),
time: () => faker.date.past(2 / 365, REF_TIME),
details: null,
diff --git a/ui/mirage/factories/node.js b/ui/mirage/factories/node.js
index 8dc72a7e2..d5a549368 100644
--- a/ui/mirage/factories/node.js
+++ b/ui/mirage/factories/node.js
@@ -1,4 +1,5 @@
-import { Factory, faker, trait } from 'ember-cli-mirage';
+import { Factory, trait } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
import { provide } from '../utils';
import { DATACENTERS, HOSTS, generateResources } from '../common';
import moment from 'moment';
@@ -12,10 +13,10 @@ export default Factory.extend({
id: i => (i / 100 >= 1 ? `${UUIDS[i]}-${i}` : UUIDS[i]),
name: i => `nomad@${HOSTS[i % HOSTS.length]}`,
- datacenter: faker.list.random(...DATACENTERS),
- nodeClass: faker.list.random(...NODE_CLASSES),
+ datacenter: () => faker.helpers.randomize(DATACENTERS),
+ nodeClass: () => faker.helpers.randomize(NODE_CLASSES),
drain: faker.random.boolean,
- status: faker.list.random(...NODE_STATUSES),
+ status: () => faker.helpers.randomize(NODE_STATUSES),
tls_enabled: faker.random.boolean,
schedulingEligibility: () => (faker.random.boolean() ? 'eligible' : 'ineligible'),
@@ -130,8 +131,8 @@ export default Factory.extend({
function makeDrivers() {
const generate = name => {
- const detected = Math.random() > 0.3;
- const healthy = detected && Math.random() > 0.3;
+ const detected = faker.random.number(10) >= 3;
+ const healthy = detected && faker.random.number(10) >= 3;
const attributes = {
[`driver.${name}.version`]: '1.0.0',
[`driver.${name}.status`]: 'awesome',
@@ -143,7 +144,7 @@ function makeDrivers() {
Healthy: healthy,
HealthDescription: healthy ? 'Driver is healthy' : 'Uh oh',
UpdateTime: faker.date.past(5 / 365, REF_DATE),
- Attributes: Math.random() > 0.3 && detected ? attributes : null,
+ Attributes: faker.random.number(10) >= 3 && detected ? attributes : null,
};
};
diff --git a/ui/mirage/factories/policy.js b/ui/mirage/factories/policy.js
index bc26d1954..ea50378b1 100644
--- a/ui/mirage/factories/policy.js
+++ b/ui/mirage/factories/policy.js
@@ -1,11 +1,12 @@
-import { Factory, faker } from 'ember-cli-mirage';
+import { Factory } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
export default Factory.extend({
id: () => faker.hacker.verb(),
name() {
return this.id;
},
- description: () => (Math.random() > 0.2 ? faker.lorem.sentence() : null),
+ description: () => (faker.random.number(10) >= 2 ? faker.lorem.sentence() : null),
rules: `
# Allow read only access to the default namespace
namespace "default" {
diff --git a/ui/mirage/factories/service.js b/ui/mirage/factories/service.js
new file mode 100644
index 000000000..b6ac0961f
--- /dev/null
+++ b/ui/mirage/factories/service.js
@@ -0,0 +1,30 @@
+import { Factory } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
+import { provide } from '../utils';
+
+export default Factory.extend({
+ name: id => `${faker.hacker.noun().dasherize()}-${id}-service`,
+ portLabel: () => faker.hacker.noun().dasherize(),
+ tags: () => {
+ if (!faker.random.boolean()) {
+ return provide(
+ faker.random.number({ min: 0, max: 2 }),
+ faker.hacker.noun.bind(faker.hacker.noun)
+ );
+ } else {
+ return null;
+ }
+ },
+ Connect: {
+ SidecarService: {
+ Proxy: {
+ Upstreams: [
+ {
+ DestinationName: faker.hacker.noun().dasherize(),
+ LocalBindPort: faker.random.number({ min: 5000, max: 60000 }),
+ },
+ ],
+ },
+ },
+ },
+});
diff --git a/ui/mirage/factories/task-event.js b/ui/mirage/factories/task-event.js
index 72397110c..0bbd8ae8a 100644
--- a/ui/mirage/factories/task-event.js
+++ b/ui/mirage/factories/task-event.js
@@ -1,11 +1,12 @@
-import { Factory, faker } from 'ember-cli-mirage';
+import { Factory } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
import { provide } from '../utils';
const REF_TIME = new Date();
const STATES = provide(10, faker.system.fileExt.bind(faker.system));
export default Factory.extend({
- type: faker.list.random(...STATES),
+ type: () => faker.helpers.randomize(STATES),
signal: () => '',
exitCode: () => null,
diff --git a/ui/mirage/factories/task-group.js b/ui/mirage/factories/task-group.js
index 4465bf060..5f1c6f44e 100644
--- a/ui/mirage/factories/task-group.js
+++ b/ui/mirage/factories/task-group.js
@@ -1,4 +1,5 @@
-import { Factory, faker } from 'ember-cli-mirage';
+import { Factory } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
const DISK_RESERVATIONS = [200, 500, 1000, 2000, 5000, 10000, 100000];
@@ -8,7 +9,7 @@ export default Factory.extend({
ephemeralDisk: () => ({
Sticky: faker.random.boolean(),
- SizeMB: faker.random.arrayElement(DISK_RESERVATIONS),
+ SizeMB: faker.helpers.randomize(DISK_RESERVATIONS),
Migrate: faker.random.boolean(),
}),
@@ -20,6 +21,9 @@ export default Factory.extend({
// and reschedule, creating reschedule events.
withRescheduling: false,
+ // Directive used to control whether the task group should have services.
+ withServices: false,
+
// When true, only creates allocations
shallow: false,
@@ -60,5 +64,15 @@ export default Factory.extend({
}
});
}
+
+ if (group.withServices) {
+ Array(faker.random.number({ min: 1, max: 3 }))
+ .fill(null)
+ .forEach(() => {
+ server.create('service', {
+ task_group: group,
+ });
+ });
+ }
},
});
diff --git a/ui/mirage/factories/task-state.js b/ui/mirage/factories/task-state.js
index ff844807f..8afa68d0b 100644
--- a/ui/mirage/factories/task-state.js
+++ b/ui/mirage/factories/task-state.js
@@ -1,12 +1,14 @@
-import { Factory, faker } from 'ember-cli-mirage';
+import { Factory } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
const TASK_STATUSES = ['pending', 'running', 'finished', 'failed'];
const REF_TIME = new Date();
export default Factory.extend({
name: () => '!!!this should be set by the allocation that owns this task state!!!',
- state: faker.list.random(...TASK_STATUSES),
- startedAt: faker.date.past(2 / 365, REF_TIME),
+ state: () => faker.helpers.randomize(TASK_STATUSES),
+ kind: null,
+ startedAt: () => faker.date.past(2 / 365, REF_TIME),
finishedAt() {
if (['pending', 'running'].includes(this.state)) {
return '0001-01-01T00:00:00Z';
diff --git a/ui/mirage/factories/task.js b/ui/mirage/factories/task.js
index c11ebeb1c..bdcdeaeb3 100644
--- a/ui/mirage/factories/task.js
+++ b/ui/mirage/factories/task.js
@@ -1,4 +1,5 @@
-import { Factory, faker } from 'ember-cli-mirage';
+import { Factory } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
import { generateResources } from '../common';
const DRIVERS = ['docker', 'java', 'rkt', 'qemu', 'exec', 'raw_exec'];
@@ -10,7 +11,7 @@ export default Factory.extend({
JobID: '',
name: id => `task-${faker.hacker.noun().dasherize()}-${id}`,
- driver: faker.list.random(...DRIVERS),
+ driver: () => faker.helpers.randomize(DRIVERS),
Resources: generateResources,
});
diff --git a/ui/mirage/factories/token.js b/ui/mirage/factories/token.js
index ae819a8f3..2320c1b20 100644
--- a/ui/mirage/factories/token.js
+++ b/ui/mirage/factories/token.js
@@ -1,4 +1,5 @@
-import { Factory, faker } from 'ember-cli-mirage';
+import { Factory } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
export default Factory.extend({
id: () => faker.random.uuid(),
diff --git a/ui/mirage/faker.js b/ui/mirage/faker.js
new file mode 100644
index 000000000..2baad57fb
--- /dev/null
+++ b/ui/mirage/faker.js
@@ -0,0 +1,16 @@
+import faker from 'faker';
+import config from 'nomad-ui/config/environment';
+
+const searchIncludesSeed = window.location.search.includes('faker-seed');
+
+if (config.environment !== 'test' || searchIncludesSeed) {
+ if (searchIncludesSeed) {
+ const params = new URLSearchParams(window.location.search);
+ const seed = parseInt(params.get('faker-seed'));
+ faker.seed(seed);
+ } else {
+ faker.seed(1);
+ }
+}
+
+export default faker;
diff --git a/ui/mirage/models/service.js b/ui/mirage/models/service.js
new file mode 100644
index 000000000..b6def868c
--- /dev/null
+++ b/ui/mirage/models/service.js
@@ -0,0 +1,5 @@
+import { Model, belongsTo } from 'ember-cli-mirage';
+
+export default Model.extend({
+ task_group: belongsTo('task-group'),
+});
diff --git a/ui/mirage/models/task-group.js b/ui/mirage/models/task-group.js
index 7300fe442..6484631ba 100644
--- a/ui/mirage/models/task-group.js
+++ b/ui/mirage/models/task-group.js
@@ -2,5 +2,6 @@ import { Model, belongsTo, hasMany } from 'ember-cli-mirage';
export default Model.extend({
job: belongsTo(),
+ services: hasMany(),
tasks: hasMany(),
});
diff --git a/ui/mirage/serializers/job.js b/ui/mirage/serializers/job.js
index bfa8caedb..a9df11f0a 100644
--- a/ui/mirage/serializers/job.js
+++ b/ui/mirage/serializers/job.js
@@ -3,4 +3,22 @@ import ApplicationSerializer from './application';
export default ApplicationSerializer.extend({
embed: true,
include: ['task_groups', 'job_summary'],
+
+ serialize() {
+ var json = ApplicationSerializer.prototype.serialize.apply(this, arguments);
+ if (json instanceof Array) {
+ json.forEach(serializeJob);
+ } else {
+ serializeJob(json);
+ }
+ return json;
+ },
});
+
+function serializeJob(job) {
+ job.TaskGroups.forEach(group => {
+ if (group.Services.length === 0) {
+ group.Services = null;
+ }
+ });
+}
diff --git a/ui/mirage/serializers/task-group.js b/ui/mirage/serializers/task-group.js
index 04ac613a2..b87dbf213 100644
--- a/ui/mirage/serializers/task-group.js
+++ b/ui/mirage/serializers/task-group.js
@@ -2,5 +2,5 @@ import ApplicationSerializer from './application';
export default ApplicationSerializer.extend({
embed: true,
- include: ['tasks'],
+ include: ['services', 'tasks'],
});
diff --git a/ui/mirage/utils.js b/ui/mirage/utils.js
index 5a48ad3d7..8c175eec0 100644
--- a/ui/mirage/utils.js
+++ b/ui/mirage/utils.js
@@ -1,4 +1,4 @@
-import { faker } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
export function provide(count, provider) {
if (typeof count === 'function') {
diff --git a/ui/package.json b/ui/package.json
index 4a712fba5..3312b0df2 100644
--- a/ui/package.json
+++ b/ui/package.json
@@ -21,15 +21,21 @@
}
},
"lint-staged": {
- "{app,tests,config,lib,mirage}/**/*.js": ["prettier --write", "git add"],
- "app/styles/**/*.*": ["prettier --write", "git add"]
+ "{app,tests,config,lib,mirage}/**/*.js": [
+ "prettier --write",
+ "git add"
+ ],
+ "app/styles/**/*.*": [
+ "prettier --write",
+ "git add"
+ ]
},
"devDependencies": {
- "anser": "^1.4.8",
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
"@ember/jquery": "^0.6.0",
"@ember/optional-features": "^0.7.0",
"@hashicorp/structure-icons": "^1.3.0",
+ "anser": "^1.4.8",
"broccoli-asset-rev": "^3.0.0",
"bulma": "0.6.1",
"core-js": "^2.4.1",
@@ -43,67 +49,73 @@
"d3-transition": "^1.1.0",
"ember-ajax": "^5.0.0",
"ember-auto-import": "^1.2.21",
- "ember-cli": "~3.4.4",
- "ember-cli-babel": "^7.1.2",
+ "ember-cli": "~3.12.0",
+ "ember-cli-babel": "^7.7.3",
"ember-cli-clipboard": "^0.13.0",
- "ember-cli-dependency-checker": "^3.0.0",
+ "ember-cli-dependency-checker": "^3.1.0",
"ember-cli-deprecation-workflow": "^1.0.1",
"ember-cli-eslint": "^5.1.0",
"ember-cli-funnel": "^0.6.1",
- "ember-cli-htmlbars": "^3.0.0",
- "ember-cli-htmlbars-inline-precompile": "^1.0.3",
+ "ember-cli-htmlbars": "^3.0.1",
+ "ember-cli-htmlbars-inline-precompile": "^2.1.0",
"ember-cli-inject-live-reload": "^2.0.1",
- "ember-cli-mirage": "^0.4.3",
+ "ember-cli-mirage": "^1.1.2",
"ember-cli-moment-shim": "^3.5.0",
"ember-cli-page-object": "^1.15.1",
- "ember-cli-qunit": "^4.3.2",
"ember-cli-sass": "^10.0.0",
"ember-cli-sri": "^2.1.1",
"ember-cli-string-helpers": "^1.5.0",
"ember-cli-template-lint": "^1.0.0-beta.1",
"ember-cli-uglify": "^2.1.0",
"ember-composable-helpers": "^2.0.3",
- "ember-concurrency": "^0.9.0",
+ "ember-concurrency": "^1.0.0",
"ember-copy": "^1.0.0",
- "ember-data": "~3.4.0",
- "ember-data-model-fragments": "3.3.0",
+ "ember-data": "~3.12.0",
+ "ember-data-model-fragments": "4.0.0",
"ember-export-application-global": "^2.0.0",
"ember-fetch": "^6.5.0",
"ember-freestyle": "~0.10.0",
"ember-inflector": "^3.0.0",
- "ember-inline-svg": "^0.2.1",
- "ember-load-initializers": "^1.1.0",
+ "ember-inline-svg": "^0.3.0",
+ "ember-load-initializers": "^2.0.0",
"ember-maybe-import-regenerator": "^0.1.6",
"ember-moment": "^7.8.1",
+ "ember-overridable-computed": "^1.0.0",
"ember-page-title": "^5.0.2",
- "ember-power-select": "^2.2.3",
+ "ember-power-select": "^3.0.4",
+ "ember-qunit": "^4.4.1",
"ember-qunit-nice-errors": "^1.2.0",
"ember-resolver": "^5.0.1",
- "ember-responsive": "^3.0.0",
- "ember-sinon": "^2.2.0",
- "ember-source": "~3.4.0",
+ "ember-responsive": "^3.0.4",
+ "ember-sinon": "^4.0.0",
+ "ember-source": "~3.12.0",
"ember-test-selectors": "^2.1.0",
"ember-truth-helpers": "^2.0.0",
"eslint": "^5.16.0",
+ "eslint-plugin-node": "^9.0.1",
+ "faker": "^4.1.0",
"flat": "^4.0.0",
"fuse.js": "^3.4.4",
"husky": "^1.3.1",
"is-ip": "^3.1.0",
- "ivy-codemirror": "^2.1.0",
+ "ivy-codemirror": "IvyApp/ivy-codemirror#c3b7f49f8e6492878619f8055695581240cce21a",
"lint-staged": "^8.1.5",
"loader.js": "^4.7.0",
"lodash.intersection": "^4.4.0",
+ "pretender": "^3.0.1",
"prettier": "^1.4.4",
"query-string": "^5.0.0",
"qunit-dom": "^0.9.0",
"sass": "^1.17.3"
},
"engines": {
- "node": "6.* || 8.* || >= 10.*"
+ "node": "8.* || >= 10.*"
},
"private": true,
"ember-addon": {
- "paths": ["lib/bulma"]
+ "paths": [
+ "lib/bulma"
+ ]
},
"dependencies": {
"lru_map": "^0.3.3"
diff --git a/ui/testem.js b/ui/testem.js
index 3015d63d2..b182a9336 100644
--- a/ui/testem.js
+++ b/ui/testem.js
@@ -14,7 +14,6 @@ module.exports = {
// --no-sandbox is needed when running Chrome inside a container
process.env.CI ? '--no-sandbox' : null,
'--headless',
- '--disable-gpu',
'--disable-dev-shm-usage',
'--disable-software-rasterizer',
'--mute-audio',
diff --git a/ui/tests/acceptance/allocation-detail-test.js b/ui/tests/acceptance/allocation-detail-test.js
index 7ac41a65c..c58670e52 100644
--- a/ui/tests/acceptance/allocation-detail-test.js
+++ b/ui/tests/acceptance/allocation-detail-test.js
@@ -3,7 +3,7 @@ import { currentURL } from '@ember/test-helpers';
import { assign } from '@ember/polyfills';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import Allocation from 'nomad-ui/tests/pages/allocations/detail';
import moment from 'moment';
@@ -19,8 +19,14 @@ module('Acceptance | allocation detail', function(hooks) {
server.create('agent');
node = server.create('node');
- job = server.create('job', { groupsCount: 1, createAllocations: false });
- allocation = server.create('allocation', 'withTaskWithPorts', { clientStatus: 'running' });
+ job = server.create('job', {
+ groupsCount: 1,
+ withGroupServices: true,
+ createAllocations: false,
+ });
+ allocation = server.create('allocation', 'withTaskWithPorts', 'withAllocatedResources', {
+ clientStatus: 'running',
+ });
// Make sure the node has an unhealthy driver
node.update({
@@ -134,6 +140,29 @@ module('Acceptance | allocation detail', function(hooks) {
assert.ok(Allocation.firstUnhealthyTask().hasUnhealthyDriver, 'Warning is shown');
});
+ test('proxy task has a proxy tag', async function(assert) {
+ // Must create a new job as existing one has loaded and it contains the tasks
+ job = server.create('job', {
+ groupsCount: 1,
+ withGroupServices: true,
+ createAllocations: false,
+ });
+
+ allocation = server.create('allocation', 'withTaskWithPorts', 'withAllocatedResources', {
+ clientStatus: 'running',
+ jobId: job.id,
+ });
+
+ const taskState = allocation.task_states.models.sortBy('name')[0];
+ const task = server.schema.tasks.findBy({ name: taskState.name });
+ task.update('kind', 'connect-proxy:task');
+ task.save();
+
+ await Allocation.visit({ id: allocation.id });
+
+ assert.ok(Allocation.tasks[0].hasProxyTag);
+ });
+
test('when there are no tasks, an empty state is shown', async function(assert) {
// Make sure the allocation is pending in order to ensure there are no tasks
allocation = server.create('allocation', 'withTaskWithPorts', { clientStatus: 'pending' });
@@ -146,6 +175,46 @@ module('Acceptance | allocation detail', function(hooks) {
assert.notOk(Allocation.hasRescheduleEvents, 'Reschedule Events section exists');
});
+ test('ports are listed', async function(assert) {
+ const serverNetwork = allocation.allocatedResources.Shared.Networks[0];
+ const allServerPorts = serverNetwork.ReservedPorts.concat(serverNetwork.DynamicPorts);
+
+ allServerPorts.sortBy('Label').forEach((serverPort, index) => {
+ const renderedPort = Allocation.ports[index];
+
+ assert.equal(
+ renderedPort.dynamic,
+ serverNetwork.ReservedPorts.includes(serverPort) ? 'No' : 'Yes'
+ );
+ assert.equal(renderedPort.name, serverPort.Label);
+ assert.equal(renderedPort.address, `${serverNetwork.IP}:${serverPort.Value}`);
+ assert.equal(renderedPort.to, serverPort.To);
+ });
+ });
+
+ test('services are listed', async function(assert) {
+ const taskGroup = server.schema.taskGroups.findBy({ name: allocation.taskGroup });
+
+ assert.equal(Allocation.services.length, taskGroup.services.length);
+
+ taskGroup.services.models.sortBy('name').forEach((serverService, index) => {
+ const renderedService = Allocation.services[index];
+
+ assert.equal(renderedService.name, serverService.name);
+ assert.equal(renderedService.port, serverService.portLabel);
+ assert.equal(renderedService.tags, (serverService.tags || []).join(', '));
+
+ assert.equal(renderedService.connect, serverService.Connect ? 'Yes' : 'No');
+
+ const upstreams = serverService.Connect.SidecarService.Proxy.Upstreams;
+ const serverUpstreamsString = upstreams
+ .map(upstream => `${upstream.DestinationName}:${upstream.LocalBindPort}`)
+ .join(' ');
+
+ assert.equal(renderedService.upstreams, serverUpstreamsString);
+ });
+ });
+
test('when the allocation is not found, an error message is shown, but the URL persists', async function(assert) {
await Allocation.visit({ id: 'not-a-real-allocation' });
diff --git a/ui/tests/acceptance/application-errors-test.js b/ui/tests/acceptance/application-errors-test.js
index 773c2d8b2..ceec14f50 100644
--- a/ui/tests/acceptance/application-errors-test.js
+++ b/ui/tests/acceptance/application-errors-test.js
@@ -1,7 +1,7 @@
import { currentURL, visit } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import ClientsList from 'nomad-ui/tests/pages/clients/list';
import JobsList from 'nomad-ui/tests/pages/jobs/list';
import Job from 'nomad-ui/tests/pages/jobs/detail';
diff --git a/ui/tests/acceptance/client-detail-test.js b/ui/tests/acceptance/client-detail-test.js
index 42f11dd47..1be3287f3 100644
--- a/ui/tests/acceptance/client-detail-test.js
+++ b/ui/tests/acceptance/client-detail-test.js
@@ -2,7 +2,7 @@ import { currentURL } from '@ember/test-helpers';
import { assign } from '@ember/polyfills';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import { formatBytes } from 'nomad-ui/helpers/format-bytes';
import formatDuration from 'nomad-ui/utils/format-duration';
import moment from 'moment';
diff --git a/ui/tests/acceptance/clients-list-test.js b/ui/tests/acceptance/clients-list-test.js
index 6b3a1e69c..409bf53ad 100644
--- a/ui/tests/acceptance/clients-list-test.js
+++ b/ui/tests/acceptance/clients-list-test.js
@@ -1,7 +1,7 @@
import { currentURL } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import ClientsList from 'nomad-ui/tests/pages/clients/list';
module('Acceptance | clients list', function(hooks) {
diff --git a/ui/tests/acceptance/job-allocations-test.js b/ui/tests/acceptance/job-allocations-test.js
index d9b846b25..685d8e9fc 100644
--- a/ui/tests/acceptance/job-allocations-test.js
+++ b/ui/tests/acceptance/job-allocations-test.js
@@ -1,7 +1,7 @@
import { currentURL } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import Allocations from 'nomad-ui/tests/pages/jobs/job/allocations';
let job;
diff --git a/ui/tests/acceptance/job-definition-test.js b/ui/tests/acceptance/job-definition-test.js
index 280fe7539..108f3b495 100644
--- a/ui/tests/acceptance/job-definition-test.js
+++ b/ui/tests/acceptance/job-definition-test.js
@@ -1,7 +1,7 @@
import { currentURL } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import setupCodeMirror from 'nomad-ui/tests/helpers/codemirror';
import Definition from 'nomad-ui/tests/pages/jobs/job/definition';
diff --git a/ui/tests/acceptance/job-deployments-test.js b/ui/tests/acceptance/job-deployments-test.js
index 5a9107d23..eb1c02109 100644
--- a/ui/tests/acceptance/job-deployments-test.js
+++ b/ui/tests/acceptance/job-deployments-test.js
@@ -2,7 +2,7 @@ import { currentURL } from '@ember/test-helpers';
import { get } from '@ember/object';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import moment from 'moment';
import Deployments from 'nomad-ui/tests/pages/jobs/job/deployments';
diff --git a/ui/tests/acceptance/job-detail-test.js b/ui/tests/acceptance/job-detail-test.js
index 9ed22aaa0..47df6336e 100644
--- a/ui/tests/acceptance/job-detail-test.js
+++ b/ui/tests/acceptance/job-detail-test.js
@@ -2,7 +2,7 @@ import { currentURL } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
import { selectChoose } from 'ember-power-select/test-support';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import moduleForJob from 'nomad-ui/tests/helpers/module-for-job';
import JobDetail from 'nomad-ui/tests/pages/jobs/detail';
import JobsList from 'nomad-ui/tests/pages/jobs/list';
diff --git a/ui/tests/acceptance/job-evaluations-test.js b/ui/tests/acceptance/job-evaluations-test.js
index 71ba22a45..c46d7567d 100644
--- a/ui/tests/acceptance/job-evaluations-test.js
+++ b/ui/tests/acceptance/job-evaluations-test.js
@@ -1,7 +1,7 @@
import { currentURL } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import Evaluations from 'nomad-ui/tests/pages/jobs/job/evaluations';
let job;
diff --git a/ui/tests/acceptance/job-run-test.js b/ui/tests/acceptance/job-run-test.js
index f5c5e9d18..5abe55896 100644
--- a/ui/tests/acceptance/job-run-test.js
+++ b/ui/tests/acceptance/job-run-test.js
@@ -2,7 +2,7 @@ import { currentURL } from '@ember/test-helpers';
import { assign } from '@ember/polyfills';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import setupCodeMirror from 'nomad-ui/tests/helpers/codemirror';
import JobRun from 'nomad-ui/tests/pages/jobs/run';
diff --git a/ui/tests/acceptance/job-versions-test.js b/ui/tests/acceptance/job-versions-test.js
index 6eba598b1..c6607f882 100644
--- a/ui/tests/acceptance/job-versions-test.js
+++ b/ui/tests/acceptance/job-versions-test.js
@@ -1,7 +1,7 @@
import { currentURL } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import Versions from 'nomad-ui/tests/pages/jobs/job/versions';
import moment from 'moment';
diff --git a/ui/tests/acceptance/jobs-list-test.js b/ui/tests/acceptance/jobs-list-test.js
index 1b1a57287..4b3529e62 100644
--- a/ui/tests/acceptance/jobs-list-test.js
+++ b/ui/tests/acceptance/jobs-list-test.js
@@ -1,7 +1,7 @@
import { currentURL } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import JobsList from 'nomad-ui/tests/pages/jobs/list';
module('Acceptance | jobs list', function(hooks) {
diff --git a/ui/tests/acceptance/namespaces-test.js b/ui/tests/acceptance/namespaces-test.js
index ef132e922..812b13607 100644
--- a/ui/tests/acceptance/namespaces-test.js
+++ b/ui/tests/acceptance/namespaces-test.js
@@ -1,6 +1,6 @@
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import { selectChoose } from 'ember-power-select/test-support';
import JobsList from 'nomad-ui/tests/pages/jobs/list';
diff --git a/ui/tests/acceptance/regions-test.js b/ui/tests/acceptance/regions-test.js
index 994199b51..2c4e4a027 100644
--- a/ui/tests/acceptance/regions-test.js
+++ b/ui/tests/acceptance/regions-test.js
@@ -2,7 +2,7 @@ import { currentURL } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
import { selectChoose } from 'ember-power-select/test-support';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import JobsList from 'nomad-ui/tests/pages/jobs/list';
import ClientsList from 'nomad-ui/tests/pages/clients/list';
import PageLayout from 'nomad-ui/tests/pages/layout';
diff --git a/ui/tests/acceptance/server-detail-test.js b/ui/tests/acceptance/server-detail-test.js
index e38c38df8..c31f7cb1b 100644
--- a/ui/tests/acceptance/server-detail-test.js
+++ b/ui/tests/acceptance/server-detail-test.js
@@ -1,7 +1,7 @@
import { currentURL } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import ServerDetail from 'nomad-ui/tests/pages/servers/detail';
let agent;
diff --git a/ui/tests/acceptance/servers-list-test.js b/ui/tests/acceptance/servers-list-test.js
index 85ed0ffd6..8e588b873 100644
--- a/ui/tests/acceptance/servers-list-test.js
+++ b/ui/tests/acceptance/servers-list-test.js
@@ -1,7 +1,7 @@
import { currentURL } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import { findLeader } from '../../mirage/config';
import ServersList from 'nomad-ui/tests/pages/servers/list';
diff --git a/ui/tests/acceptance/task-detail-test.js b/ui/tests/acceptance/task-detail-test.js
index 5fe8e7560..852a948ed 100644
--- a/ui/tests/acceptance/task-detail-test.js
+++ b/ui/tests/acceptance/task-detail-test.js
@@ -1,7 +1,7 @@
import { currentURL } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import Task from 'nomad-ui/tests/pages/allocations/task/detail';
import moment from 'moment';
@@ -23,7 +23,7 @@ module('Acceptance | task detail', function(hooks) {
});
test('/allocation/:id/:task_name should name the task and list high-level task information', async function(assert) {
- assert.ok(Task.title.includes(task.name), 'Task name');
+ assert.ok(Task.title.text.includes(task.name), 'Task name');
assert.ok(Task.state.includes(task.state), 'Task state');
assert.ok(
@@ -307,3 +307,26 @@ module('Acceptance | task detail (not running)', function(hooks) {
assert.equal(Task.resourceEmptyMessage, "Task isn't running", 'Empty message is appropriate');
});
});
+
+module('Acceptance | proxy task detail', function(hooks) {
+ setupApplicationTest(hooks);
+ setupMirage(hooks);
+
+ hooks.beforeEach(async function() {
+ server.create('agent');
+ server.create('node');
+ server.create('job', { createAllocations: false });
+ allocation = server.create('allocation', 'withTaskWithPorts', { clientStatus: 'running' });
+
+ const taskState = allocation.task_states.models[0];
+ const task = server.schema.tasks.findBy({ name: taskState.name });
+ task.update('kind', 'connect-proxy:task');
+ task.save();
+
+ await Task.visit({ id: allocation.id, name: taskState.name });
+ });
+
+ test('a proxy tag is shown', async function(assert) {
+ assert.ok(Task.title.proxyTag.isPresent);
+ });
+});
diff --git a/ui/tests/acceptance/task-fs-test.js b/ui/tests/acceptance/task-fs-test.js
index 0a098ba1e..cd9d0c408 100644
--- a/ui/tests/acceptance/task-fs-test.js
+++ b/ui/tests/acceptance/task-fs-test.js
@@ -69,6 +69,11 @@ module('Acceptance | task fs', function(hooks) {
});
test('when the task is not running, an empty state is shown', async function(assert) {
+ // The API 500s on stat when not running
+ this.server.get('/client/fs/stat/:allocation_id', () => {
+ return new Response(500, {}, 'no such file or directory');
+ });
+
task.update({
finishedAt: new Date(),
});
diff --git a/ui/tests/acceptance/task-group-detail-test.js b/ui/tests/acceptance/task-group-detail-test.js
index 0ec64dd54..b008803d3 100644
--- a/ui/tests/acceptance/task-group-detail-test.js
+++ b/ui/tests/acceptance/task-group-detail-test.js
@@ -1,7 +1,7 @@
import { currentURL } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import { formatBytes } from 'nomad-ui/helpers/format-bytes';
import TaskGroup from 'nomad-ui/tests/pages/jobs/job/task-group';
import JobsList from 'nomad-ui/tests/pages/jobs/list';
diff --git a/ui/tests/acceptance/task-logs-test.js b/ui/tests/acceptance/task-logs-test.js
index 4bacd9898..12a38ae2a 100644
--- a/ui/tests/acceptance/task-logs-test.js
+++ b/ui/tests/acceptance/task-logs-test.js
@@ -2,7 +2,7 @@ import { currentURL } from '@ember/test-helpers';
import { run } from '@ember/runloop';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import TaskLogs from 'nomad-ui/tests/pages/allocations/task/logs';
let allocation;
diff --git a/ui/tests/acceptance/token-test.js b/ui/tests/acceptance/token-test.js
index 7d78de998..19e4d3870 100644
--- a/ui/tests/acceptance/token-test.js
+++ b/ui/tests/acceptance/token-test.js
@@ -1,7 +1,7 @@
import { find } from '@ember/test-helpers';
import { module, skip, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import Tokens from 'nomad-ui/tests/pages/settings/tokens';
import Jobs from 'nomad-ui/tests/pages/jobs/list';
import JobDetail from 'nomad-ui/tests/pages/jobs/detail';
diff --git a/ui/tests/helpers/module-for-job.js b/ui/tests/helpers/module-for-job.js
index a8ad06690..f5e069cf7 100644
--- a/ui/tests/helpers/module-for-job.js
+++ b/ui/tests/helpers/module-for-job.js
@@ -1,7 +1,7 @@
import { currentURL } from '@ember/test-helpers';
import { module, test } from 'qunit';
import { setupApplicationTest } from 'ember-qunit';
-import setupMirage from 'ember-cli-mirage/test-support/setup-mirage';
+import { setupMirage } from 'ember-cli-mirage/test-support';
import JobDetail from 'nomad-ui/tests/pages/jobs/detail';
export default function moduleForJob(title, context, jobFactory, additionalTests) {
diff --git a/ui/tests/integration/attributes-table-test.js b/ui/tests/integration/attributes-table-test.js
index cc95f80a0..34044dd51 100644
--- a/ui/tests/integration/attributes-table-test.js
+++ b/ui/tests/integration/attributes-table-test.js
@@ -32,7 +32,7 @@ module('Integration | Component | attributes table', function(hooks) {
const rowsCount = Object.keys(flatten(commonAttributes)).length;
assert.equal(
- this.$('[data-test-attributes-section]').has('[data-test-value]').length,
+ this.element.querySelectorAll('[data-test-attributes-section] [data-test-value]').length,
rowsCount,
`Table has ${rowsCount} rows with values`
);
diff --git a/ui/tests/integration/list-pagination-test.js b/ui/tests/integration/list-pagination-test.js
index 94c12788d..d6a48d0e4 100644
--- a/ui/tests/integration/list-pagination-test.js
+++ b/ui/tests/integration/list-pagination-test.js
@@ -160,35 +160,6 @@ module('Integration | Component | list pagination', function(hooks) {
);
});
- // when there are no items in source
- test('when there are no items in source', async function(assert) {
- this.set('source', []);
- await render(hbs`
- {{#list-pagination source=source as |p|}}
- {{p.currentPage}} of {{p.totalPages}}
- {{#p.first}}first {{/p.first}}
- {{#p.prev}}prev {{/p.prev}}
- {{#each p.pageLinks as |link|}}
- {{link.pageNumber}}
- {{/each}}
- {{#p.next}}next {{/p.next}}
- {{#p.last}}last {{/p.last}}
-
- {{#each p.list as |item|}}
- {{item}}
- {{/each}}
- {{else}}
- Empty State
- {{/list-pagination}}
- `);
-
- assert.ok(
- !findAll('.page-info, .first, .prev, .link, .next, .last, .item').length,
- 'Nothing in the yield renders'
- );
- assert.ok(findAll('.empty-state').length, 'Empty state is rendered');
- });
-
// when there is less pages than the total spread amount
test('when there is less pages than the total spread amount', async function(assert) {
this.setProperties({
diff --git a/ui/tests/integration/list-table-test.js b/ui/tests/integration/list-table-test.js
index d039555a0..be1b835b4 100644
--- a/ui/tests/integration/list-table-test.js
+++ b/ui/tests/integration/list-table-test.js
@@ -1,7 +1,7 @@
import { findAll, find, render } from '@ember/test-helpers';
import { module, skip, test } from 'qunit';
import { setupRenderingTest } from 'ember-qunit';
-import { faker } from 'ember-cli-mirage';
+import faker from 'nomad-ui/mirage/faker';
import hbs from 'htmlbars-inline-precompile';
module('Integration | Component | list table', function(hooks) {
@@ -59,31 +59,10 @@ module('Integration | Component | list table', function(hooks) {
// list-table is not responsible for sorting, only dispatching sort events. The table is still
// rendered in index-order.
this.get('source').forEach((item, index) => {
- const $item = this.$(`.item:eq(${index})`);
- assert.equal(
- $item
- .find('td:eq(0)')
- .text()
- .trim(),
- item.firstName,
- 'First name'
- );
- assert.equal(
- $item
- .find('td:eq(1)')
- .text()
- .trim(),
- item.lastName,
- 'Last name'
- );
- assert.equal(
- $item
- .find('td:eq(2)')
- .text()
- .trim(),
- item.age,
- 'Age'
- );
+ const $item = this.element.querySelectorAll('.item')[index];
+ assert.equal($item.querySelectorAll('td')[0].innerHTML.trim(), item.firstName, 'First name');
+ assert.equal($item.querySelectorAll('td')[1].innerHTML.trim(), item.lastName, 'Last name');
+ assert.equal($item.querySelectorAll('td')[2].innerHTML.trim(), item.age, 'Age');
});
});
diff --git a/ui/tests/pages/allocations/detail.js b/ui/tests/pages/allocations/detail.js
index 82362e84f..7fd1a311e 100644
--- a/ui/tests/pages/allocations/detail.js
+++ b/ui/tests/pages/allocations/detail.js
@@ -44,6 +44,7 @@ export default create({
ports: text('[data-test-ports]'),
hasUnhealthyDriver: isPresent('[data-test-icon="unhealthy-driver"]'),
+ hasProxyTag: isPresent('[data-test-proxy-tag]'),
clickLink: clickable('[data-test-name] a'),
clickRow: clickable('[data-test-name]'),
@@ -75,6 +76,21 @@ export default create({
preempted: isPresent('[data-test-preemptions]'),
...allocations('[data-test-preemptions] [data-test-allocation]', 'preemptions'),
+ ports: collection('[data-test-allocation-port]', {
+ dynamic: text('[data-test-allocation-port-is-dynamic]'),
+ name: text('[data-test-allocation-port-name]'),
+ address: text('[data-test-allocation-port-address]'),
+ to: text('[data-test-allocation-port-to]'),
+ }),
+
+ services: collection('[data-test-service]', {
+ name: text('[data-test-service-name]'),
+ port: text('[data-test-service-port]'),
+ tags: text('[data-test-service-tags]'),
+ connect: text('[data-test-service-connect]'),
+ upstreams: text('[data-test-service-upstreams]'),
+ }),
+
error: {
isShown: isPresent('[data-test-error]'),
title: text('[data-test-error-title]'),
diff --git a/ui/tests/pages/allocations/task/detail.js b/ui/tests/pages/allocations/task/detail.js
index a7bb60ec7..ab31bfdc4 100644
--- a/ui/tests/pages/allocations/task/detail.js
+++ b/ui/tests/pages/allocations/task/detail.js
@@ -13,7 +13,14 @@ import twoStepButton from 'nomad-ui/tests/pages/components/two-step-button';
export default create({
visit: visitable('/allocations/:id/:name'),
- title: text('[data-test-title]'),
+ title: {
+ scope: '[data-test-title]',
+
+ proxyTag: {
+ scope: '[data-test-proxy-tag]',
+ },
+ },
+
state: text('[data-test-state]'),
startedAt: text('[data-test-started-at]'),
diff --git a/ui/tests/unit/adapters/job-test.js b/ui/tests/unit/adapters/job-test.js
index 6c7c94503..d2710f9be 100644
--- a/ui/tests/unit/adapters/job-test.js
+++ b/ui/tests/unit/adapters/job-test.js
@@ -57,6 +57,7 @@ module('Unit | Adapter | Job', function(hooks) {
this.subject().findRecord(null, { modelName: 'job' }, jobId);
+ await settled();
assert.deepEqual(
pretender.handledRequests.mapBy('url'),
[`/v1/job/${jobName}`],
@@ -75,6 +76,7 @@ module('Unit | Adapter | Job', function(hooks) {
const jobId = JSON.stringify([jobName, jobNamespace]);
this.subject().findRecord(null, { modelName: 'job' }, jobId);
+ await settled();
assert.deepEqual(
pretender.handledRequests.mapBy('url'),
@@ -94,6 +96,7 @@ module('Unit | Adapter | Job', function(hooks) {
const jobId = JSON.stringify([jobName, jobNamespace]);
this.subject().findRecord(null, { modelName: 'job' }, jobId);
+ await settled();
assert.deepEqual(
pretender.handledRequests.mapBy('url'),
@@ -111,6 +114,7 @@ module('Unit | Adapter | Job', function(hooks) {
const jobId = JSON.stringify([jobName, jobNamespace]);
this.subject().findRecord(null, { modelName: 'job' }, jobId);
+ await settled();
assert.deepEqual(
pretender.handledRequests.mapBy('url'),
@@ -126,6 +130,7 @@ module('Unit | Adapter | Job', function(hooks) {
const jobId = JSON.stringify(['job-1', 'default']);
this.subject().findRecord(null, { modelName: 'job' }, jobId);
+ await settled();
assert.notOk(
pretender.handledRequests.mapBy('requestHeaders').some(headers => headers['X-Nomad-Token']),
@@ -142,6 +147,7 @@ module('Unit | Adapter | Job', function(hooks) {
this.subject().set('token.secret', secret);
this.subject().findRecord(null, { modelName: 'job' }, jobId);
+ await settled();
assert.ok(
pretender.handledRequests
@@ -242,6 +248,8 @@ module('Unit | Adapter | Job', function(hooks) {
await settled();
this.subject().reloadRelationship(mockModel, 'summary', { watch: true });
+ await settled();
+
assert.equal(
pretender.handledRequests[1].url,
'/v1/job/job-1/summary?index=2',
@@ -377,6 +385,7 @@ module('Unit | Adapter | Job', function(hooks) {
await settled();
this.subject().findRecord(null, { modelName: 'job' }, jobId);
this.subject().findAll(null, { modelName: 'job' }, null);
+ await settled();
assert.deepEqual(
pretender.handledRequests.mapBy('url'),
@@ -399,6 +408,7 @@ module('Unit | Adapter | Job', function(hooks) {
await settled();
this.subject().findRecord(null, { modelName: 'job' }, jobId);
this.subject().findAll(null, { modelName: 'job' }, null);
+ await settled();
assert.deepEqual(
pretender.handledRequests.mapBy('url'),
@@ -420,6 +430,7 @@ module('Unit | Adapter | Job', function(hooks) {
await settled();
this.subject().findRecord(null, { modelName: 'job' }, jobId);
this.subject().findAll(null, { modelName: 'job' }, null);
+ await settled();
assert.deepEqual(
pretender.handledRequests.mapBy('url'),
diff --git a/ui/yarn.lock b/ui/yarn.lock
index 8f68c8e4b..0df4e8e59 100644
--- a/ui/yarn.lock
+++ b/ui/yarn.lock
@@ -9,6 +9,13 @@
dependencies:
"@babel/highlight" "^7.0.0"
+"@babel/code-frame@^7.5.5":
+ version "7.5.5"
+ resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d"
+ integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw==
+ dependencies:
+ "@babel/highlight" "^7.0.0"
+
"@babel/core@^7.0.0", "@babel/core@^7.1.6", "@babel/core@^7.3.3", "@babel/core@^7.3.4":
version "7.4.0"
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.4.0.tgz#248fd6874b7d755010bfe61f557461d4f446d9e9"
@@ -29,17 +36,78 @@
semver "^5.4.1"
source-map "^0.5.0"
-"@babel/generator@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.4.0.tgz#c230e79589ae7a729fd4631b9ded4dc220418196"
- integrity sha512-/v5I+a1jhGSKLgZDcmAUZ4K/VePi43eRkUs3yePW1HB1iANOD5tqJXwGSG4BZhSksP8J9ejSlwGeTiiOFZOrXQ==
+"@babel/core@^7.2.2":
+ version "7.5.5"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.5.5.tgz#17b2686ef0d6bc58f963dddd68ab669755582c30"
+ integrity sha512-i4qoSr2KTtce0DmkuuQBV4AuQgGPUcPXMr9L5MyYAtk06z068lQ10a4O009fe5OB/DfNV+h+qqT7ddNV8UnRjg==
dependencies:
- "@babel/types" "^7.4.0"
+ "@babel/code-frame" "^7.5.5"
+ "@babel/generator" "^7.5.5"
+ "@babel/helpers" "^7.5.5"
+ "@babel/parser" "^7.5.5"
+ "@babel/template" "^7.4.4"
+ "@babel/traverse" "^7.5.5"
+ "@babel/types" "^7.5.5"
+ convert-source-map "^1.1.0"
+ debug "^4.1.0"
+ json5 "^2.1.0"
+ lodash "^4.17.13"
+ resolve "^1.3.2"
+ semver "^5.4.1"
+ source-map "^0.5.0"
+
+"@babel/core@^7.4.3":
+ version "7.6.2"
+ resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.6.2.tgz#069a776e8d5e9eefff76236bc8845566bd31dd91"
+ integrity sha512-l8zto/fuoZIbncm+01p8zPSDZu/VuuJhAfA7d/AbzM09WR7iVhavvfNDYCNpo1VvLk6E6xgAoP9P+/EMJHuRkQ==
+ dependencies:
+ "@babel/code-frame" "^7.5.5"
+ "@babel/generator" "^7.6.2"
+ "@babel/helpers" "^7.6.2"
+ "@babel/parser" "^7.6.2"
+ "@babel/template" "^7.6.0"
+ "@babel/traverse" "^7.6.2"
+ "@babel/types" "^7.6.0"
+ convert-source-map "^1.1.0"
+ debug "^4.1.0"
+ json5 "^2.1.0"
+ lodash "^4.17.13"
+ resolve "^1.3.2"
+ semver "^5.4.1"
+ source-map "^0.5.0"
+
+"@babel/generator@^7.4.0", "@babel/generator@^7.6.2":
+ version "7.6.2"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.6.2.tgz#dac8a3c2df118334c2a29ff3446da1636a8f8c03"
+ integrity sha512-j8iHaIW4gGPnViaIHI7e9t/Hl8qLjERI6DcV9kEpAIDJsAOrcnXqRS7t+QbhL76pwbtqP+QCQLL0z1CyVmtjjQ==
+ dependencies:
+ "@babel/types" "^7.6.0"
+ jsesc "^2.5.1"
+ lodash "^4.17.13"
+ source-map "^0.5.0"
+
+"@babel/generator@^7.5.0":
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.5.0.tgz#f20e4b7a91750ee8b63656073d843d2a736dca4a"
+ integrity sha512-1TTVrt7J9rcG5PMjvO7VEG3FrEoEJNHxumRq66GemPmzboLWtIjjcJgk8rokuAS7IiRSpgVSu5Vb9lc99iJkOA==
+ dependencies:
+ "@babel/types" "^7.5.0"
jsesc "^2.5.1"
lodash "^4.17.11"
source-map "^0.5.0"
trim-right "^1.0.1"
+"@babel/generator@^7.5.5":
+ version "7.5.5"
+ resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.5.5.tgz#873a7f936a3c89491b43536d12245b626664e3cf"
+ integrity sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ==
+ dependencies:
+ "@babel/types" "^7.5.5"
+ jsesc "^2.5.1"
+ lodash "^4.17.13"
+ source-map "^0.5.0"
+ trim-right "^1.0.1"
+
"@babel/helper-annotate-as-pure@^7.0.0":
version "7.0.0"
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz#323d39dd0b50e10c7c06ca7d7638e6864d8c5c32"
@@ -55,34 +123,34 @@
"@babel/helper-explode-assignable-expression" "^7.1.0"
"@babel/types" "^7.0.0"
-"@babel/helper-call-delegate@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.4.0.tgz#f308eabe0d44f451217853aedf4dea5f6fe3294f"
- integrity sha512-SdqDfbVdNQCBp3WhK2mNdDvHd3BD6qbmIc43CAyjnsfCmgHMeqgDcM3BzY2lchi7HBJGJ2CVdynLWbezaE4mmQ==
+"@babel/helper-call-delegate@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz#87c1f8ca19ad552a736a7a27b1c1fcf8b1ff1f43"
+ integrity sha512-l79boDFJ8S1c5hvQvG+rc+wHw6IuH7YldmRKsYtpbawsxURu/paVy57FZMomGK22/JckepaikOkY0MoAmdyOlQ==
dependencies:
- "@babel/helper-hoist-variables" "^7.4.0"
- "@babel/traverse" "^7.4.0"
- "@babel/types" "^7.4.0"
+ "@babel/helper-hoist-variables" "^7.4.4"
+ "@babel/traverse" "^7.4.4"
+ "@babel/types" "^7.4.4"
-"@babel/helper-create-class-features-plugin@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.4.0.tgz#30fd090e059d021995c1762a5b76798fa0b51d82"
- integrity sha512-2K8NohdOT7P6Vyp23QH4w2IleP8yG3UJsbRKwA4YP6H8fErcLkFuuEEqbF2/BYBKSNci/FWJiqm6R3VhM/QHgw==
+"@babel/helper-create-class-features-plugin@^7.4.4", "@babel/helper-create-class-features-plugin@^7.5.0":
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.5.0.tgz#02edb97f512d44ba23b3227f1bf2ed43454edac5"
+ integrity sha512-EAoMc3hE5vE5LNhMqDOwB1usHvmRjCDAnH8CD4PVkX9/Yr3W/tcz8xE8QvdZxfsFBDICwZnF2UTHIqslRpvxmA==
dependencies:
"@babel/helper-function-name" "^7.1.0"
"@babel/helper-member-expression-to-functions" "^7.0.0"
"@babel/helper-optimise-call-expression" "^7.0.0"
"@babel/helper-plugin-utils" "^7.0.0"
- "@babel/helper-replace-supers" "^7.4.0"
- "@babel/helper-split-export-declaration" "^7.4.0"
+ "@babel/helper-replace-supers" "^7.4.4"
+ "@babel/helper-split-export-declaration" "^7.4.4"
-"@babel/helper-define-map@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.4.0.tgz#cbfd8c1b2f12708e262c26f600cd16ed6a3bc6c9"
- integrity sha512-wAhQ9HdnLIywERVcSvX40CEJwKdAa1ID4neI9NXQPDOHwwA+57DqwLiPEVy2AIyWzAk0CQ8qx4awO0VUURwLtA==
+"@babel/helper-define-map@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-define-map/-/helper-define-map-7.4.4.tgz#6969d1f570b46bdc900d1eba8e5d59c48ba2c12a"
+ integrity sha512-IX3Ln8gLhZpSuqHJSnTNBWGDE9kdkTEWl21A/K7PQ00tseBwbqCHTvNLHSBd9M0R5rER4h5Rsvj9vw0R5SieBg==
dependencies:
"@babel/helper-function-name" "^7.1.0"
- "@babel/types" "^7.4.0"
+ "@babel/types" "^7.4.4"
lodash "^4.17.11"
"@babel/helper-explode-assignable-expression@^7.1.0":
@@ -109,12 +177,12 @@
dependencies:
"@babel/types" "^7.0.0"
-"@babel/helper-hoist-variables@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.0.tgz#25b621399ae229869329730a62015bbeb0a6fbd6"
- integrity sha512-/NErCuoe/et17IlAQFKWM24qtyYYie7sFIrW/tIQXpck6vAu2hhtYYsKLBWQV+BQZMbcIYPU/QMYuTufrY4aQw==
+"@babel/helper-hoist-variables@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz#0298b5f25c8c09c53102d52ac4a98f773eb2850a"
+ integrity sha512-VYk2/H/BnYbZDDg39hr3t2kKyifAm1W6zHRfhx8jGjIHpQEBv9dry7oQ2f3+J703TLu69nYdxsovl0XYfcnK4w==
dependencies:
- "@babel/types" "^7.4.0"
+ "@babel/types" "^7.4.4"
"@babel/helper-member-expression-to-functions@^7.0.0":
version "7.0.0"
@@ -130,17 +198,17 @@
dependencies:
"@babel/types" "^7.0.0"
-"@babel/helper-module-transforms@^7.1.0":
- version "7.2.2"
- resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.2.2.tgz#ab2f8e8d231409f8370c883d20c335190284b963"
- integrity sha512-YRD7I6Wsv+IHuTPkAmAS4HhY0dkPobgLftHp0cRGZSdrRvmZY8rFvae/GVu3bD00qscuvK3WPHB3YdNpBXUqrA==
+"@babel/helper-module-transforms@^7.1.0", "@babel/helper-module-transforms@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.4.4.tgz#96115ea42a2f139e619e98ed46df6019b94414b8"
+ integrity sha512-3Z1yp8TVQf+B4ynN7WoHPKS8EkdTbgAEy0nU0rs/1Kw4pDgmvYH3rz3aI11KgxKCba2cn7N+tqzV1mY2HMN96w==
dependencies:
"@babel/helper-module-imports" "^7.0.0"
"@babel/helper-simple-access" "^7.1.0"
- "@babel/helper-split-export-declaration" "^7.0.0"
- "@babel/template" "^7.2.2"
- "@babel/types" "^7.2.2"
- lodash "^4.17.10"
+ "@babel/helper-split-export-declaration" "^7.4.4"
+ "@babel/template" "^7.4.4"
+ "@babel/types" "^7.4.4"
+ lodash "^4.17.11"
"@babel/helper-optimise-call-expression@^7.0.0":
version "7.0.0"
@@ -154,12 +222,12 @@
resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250"
integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==
-"@babel/helper-regex@^7.0.0":
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.0.0.tgz#2c1718923b57f9bbe64705ffe5640ac64d9bdb27"
- integrity sha512-TR0/N0NDCcUIUEbqV6dCO+LptmmSQFQ7q70lfcEB4URsjD0E1HzicrwUH+ap6BAQ2jhCX9Q4UqZy4wilujWlkg==
+"@babel/helper-regex@^7.0.0", "@babel/helper-regex@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-regex/-/helper-regex-7.4.4.tgz#a47e02bc91fb259d2e6727c2a30013e3ac13c4a2"
+ integrity sha512-Y5nuB/kESmR3tKjU8Nkn1wMGEx1tjJX076HBMeL3XLQCu6vA/YRzuTW0bbb+qRnXvQGn+d6Rx953yffl8vEy7Q==
dependencies:
- lodash "^4.17.10"
+ lodash "^4.17.11"
"@babel/helper-remap-async-to-generator@^7.1.0":
version "7.1.0"
@@ -172,15 +240,15 @@
"@babel/traverse" "^7.1.0"
"@babel/types" "^7.0.0"
-"@babel/helper-replace-supers@^7.1.0", "@babel/helper-replace-supers@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.4.0.tgz#4f56adb6aedcd449d2da9399c2dcf0545463b64c"
- integrity sha512-PVwCVnWWAgnal+kJ+ZSAphzyl58XrFeSKSAJRiqg5QToTsjL+Xu1f9+RJ+d+Q0aPhPfBGaYfkox66k86thxNSg==
+"@babel/helper-replace-supers@^7.1.0", "@babel/helper-replace-supers@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.4.4.tgz#aee41783ebe4f2d3ab3ae775e1cc6f1a90cefa27"
+ integrity sha512-04xGEnd+s01nY1l15EuMS1rfKktNF+1CkKmHoErDppjAAZL+IUBZpzT748x262HF7fibaQPhbvWUl5HeSt1EXg==
dependencies:
"@babel/helper-member-expression-to-functions" "^7.0.0"
"@babel/helper-optimise-call-expression" "^7.0.0"
- "@babel/traverse" "^7.4.0"
- "@babel/types" "^7.4.0"
+ "@babel/traverse" "^7.4.4"
+ "@babel/types" "^7.4.4"
"@babel/helper-simple-access@^7.1.0":
version "7.1.0"
@@ -190,12 +258,12 @@
"@babel/template" "^7.1.0"
"@babel/types" "^7.0.0"
-"@babel/helper-split-export-declaration@^7.0.0", "@babel/helper-split-export-declaration@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.0.tgz#571bfd52701f492920d63b7f735030e9a3e10b55"
- integrity sha512-7Cuc6JZiYShaZnybDmfwhY4UYHzI6rlqhWjaIqbsJGsIqPimEYy5uh3akSRLMg65LSdSEnJ8a8/bWQN6u2oMGw==
+"@babel/helper-split-export-declaration@^7.4.0", "@babel/helper-split-export-declaration@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677"
+ integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==
dependencies:
- "@babel/types" "^7.4.0"
+ "@babel/types" "^7.4.4"
"@babel/helper-wrap-function@^7.1.0":
version "7.2.0"
@@ -207,28 +275,47 @@
"@babel/traverse" "^7.1.0"
"@babel/types" "^7.2.0"
-"@babel/helpers@^7.4.0":
- version "7.4.2"
- resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.4.2.tgz#3bdfa46a552ca77ef5a0f8551be5f0845ae989be"
- integrity sha512-gQR1eQeroDzFBikhrCccm5Gs2xBjZ57DNjGbqTaHo911IpmSxflOQWMAHPw/TXk8L3isv7s9lYzUkexOeTQUYg==
+"@babel/helpers@^7.4.0", "@babel/helpers@^7.6.2":
+ version "7.6.2"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.6.2.tgz#681ffe489ea4dcc55f23ce469e58e59c1c045153"
+ integrity sha512-3/bAUL8zZxYs1cdX2ilEE0WobqbCmKWr/889lf2SS0PpDcpEIY8pb1CCyz0pEcX3pEb+MCbks1jIokz2xLtGTA==
dependencies:
- "@babel/template" "^7.4.0"
- "@babel/traverse" "^7.4.0"
- "@babel/types" "^7.4.0"
+ "@babel/template" "^7.6.0"
+ "@babel/traverse" "^7.6.2"
+ "@babel/types" "^7.6.0"
+
+"@babel/helpers@^7.5.5":
+ version "7.5.5"
+ resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.5.5.tgz#63908d2a73942229d1e6685bc2a0e730dde3b75e"
+ integrity sha512-nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g==
+ dependencies:
+ "@babel/template" "^7.4.4"
+ "@babel/traverse" "^7.5.5"
+ "@babel/types" "^7.5.5"
"@babel/highlight@^7.0.0":
- version "7.0.0"
- resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.0.0.tgz#f710c38c8d458e6dd9a201afb637fcb781ce99e4"
- integrity sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540"
+ integrity sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ==
dependencies:
chalk "^2.0.0"
esutils "^2.0.2"
js-tokens "^4.0.0"
-"@babel/parser@^7.4.0":
- version "7.4.2"
- resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.4.2.tgz#b4521a400cb5a871eab3890787b4bc1326d38d91"
- integrity sha512-9fJTDipQFvlfSVdD/JBtkiY0br9BtfvW2R8wo6CX/Ej2eMuV0gWPk1M67Mt3eggQvBqYW1FCEk8BN7WvGm/g5g==
+"@babel/parser@^7.3.4", "@babel/parser@^7.4.4", "@babel/parser@^7.5.5":
+ version "7.5.5"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.5.5.tgz#02f077ac8817d3df4a832ef59de67565e71cca4b"
+ integrity sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g==
+
+"@babel/parser@^7.4.0", "@babel/parser@^7.6.0", "@babel/parser@^7.6.2":
+ version "7.6.2"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.6.2.tgz#205e9c95e16ba3b8b96090677a67c9d6075b70a1"
+ integrity sha512-mdFqWrSPCmikBoaBYMuBulzTIKuXVPtEISFbRRVNwMWpCms/hmE2kRq0bblUHaNRKrjRlmVbx1sDHmjmRgD2Xg==
+
+"@babel/parser@^7.5.0":
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.5.0.tgz#3e0713dff89ad6ae37faec3b29dcfc5c979770b7"
+ integrity sha512-I5nW8AhGpOXGCCNYGc+p7ExQIBxRFnS2fd/d862bNOKvmoEPjYPcfIjsfdy0ujagYOIYPczKgD9l3FsgTkAzKA==
"@babel/plugin-proposal-async-generator-functions@^7.2.0":
version "7.2.0"
@@ -239,23 +326,31 @@
"@babel/helper-remap-async-to-generator" "^7.1.0"
"@babel/plugin-syntax-async-generators" "^7.2.0"
-"@babel/plugin-proposal-class-properties@^7.3.4":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.4.0.tgz#d70db61a2f1fd79de927eea91f6411c964e084b8"
- integrity sha512-t2ECPNOXsIeK1JxJNKmgbzQtoG27KIlVE61vTqX0DKR9E9sZlVVxWUtEW9D5FlZ8b8j7SBNCHY47GgPKCKlpPg==
+"@babel/plugin-proposal-class-properties@^7.1.0", "@babel/plugin-proposal-class-properties@^7.3.4":
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.5.0.tgz#5bc6a0537d286fcb4fd4e89975adbca334987007"
+ integrity sha512-9L/JfPCT+kShiiTTzcnBJ8cOwdKVmlC1RcCf9F0F9tERVrM4iWtWnXtjWCRqNm2la2BxO1MPArWNsU9zsSJWSQ==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.4.0"
+ "@babel/helper-create-class-features-plugin" "^7.5.0"
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-proposal-decorators@^7.3.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.4.0.tgz#8e1bfd83efa54a5f662033afcc2b8e701f4bb3a9"
- integrity sha512-d08TLmXeK/XbgCo7ZeZ+JaeZDtDai/2ctapTRsWWkkmy7G/cqz8DQN/HlWG7RR4YmfXxmExsbU3SuCjlM7AtUg==
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.4.4.tgz#de9b2a1a8ab0196f378e2a82f10b6e2a36f21cc0"
+ integrity sha512-z7MpQz3XC/iQJWXH9y+MaWcLPNSMY9RQSthrLzak8R8hCj0fuyNk+Dzi9kfNe/JxxlWQ2g7wkABbgWjW36MTcw==
dependencies:
- "@babel/helper-create-class-features-plugin" "^7.4.0"
+ "@babel/helper-create-class-features-plugin" "^7.4.4"
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-syntax-decorators" "^7.2.0"
+"@babel/plugin-proposal-dynamic-import@^7.5.0":
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.5.0.tgz#e532202db4838723691b10a67b8ce509e397c506"
+ integrity sha512-x/iMjggsKTFHYC6g11PL7Qy58IK8H5zqfm9e6hu4z1iH2IRyAp9u9dL80zA6R76yFovETFLKz2VJIC2iIPBuFw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@babel/plugin-syntax-dynamic-import" "^7.2.0"
+
"@babel/plugin-proposal-json-strings@^7.2.0":
version "7.2.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz#568ecc446c6148ae6b267f02551130891e29f317"
@@ -264,18 +359,10 @@
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-syntax-json-strings" "^7.2.0"
-"@babel/plugin-proposal-object-rest-spread@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.4.0.tgz#e4960575205eadf2a1ab4e0c79f9504d5b82a97f"
- integrity sha512-uTNi8pPYyUH2eWHyYWWSYJKwKg34hhgl4/dbejEjL+64OhbHjTX7wEVWMQl82tEmdDsGeu77+s8HHLS627h6OQ==
- dependencies:
- "@babel/helper-plugin-utils" "^7.0.0"
- "@babel/plugin-syntax-object-rest-spread" "^7.2.0"
-
-"@babel/plugin-proposal-object-rest-spread@^7.4.3":
- version "7.4.3"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.4.3.tgz#be27cd416eceeba84141305b93c282f5de23bbb4"
- integrity sha512-xC//6DNSSHVjq8O2ge0dyYlhshsH4T7XdCVoxbi5HzLYWfsC5ooFlJjrXk8RcAT+hjHAK9UjBXdylzSoDK3t4g==
+"@babel/plugin-proposal-object-rest-spread@^7.4.3", "@babel/plugin-proposal-object-rest-spread@^7.5.4":
+ version "7.5.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.5.4.tgz#250de35d867ce8260a31b1fdac6c4fc1baa99331"
+ integrity sha512-KCx0z3y7y8ipZUMAEEJOyNi11lMb/FOPUjjB113tfowgw0c16EGYos7worCKBcUAh2oG+OBnoUhsnTSoLpV9uA==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-syntax-object-rest-spread" "^7.2.0"
@@ -288,13 +375,13 @@
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
-"@babel/plugin-proposal-unicode-property-regex@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.0.tgz#202d91ee977d760ef83f4f416b280d568be84623"
- integrity sha512-h/KjEZ3nK9wv1P1FSNb9G079jXrNYR0Ko+7XkOx85+gM24iZbPn0rh4vCftk+5QKY7y1uByFataBTmX7irEF1w==
+"@babel/plugin-proposal-unicode-property-regex@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz#501ffd9826c0b91da22690720722ac7cb1ca9c78"
+ integrity sha512-j1NwnOqMG9mFUOH58JTFsA/+ZYzQLUZ/drqWUqxCYLGeu2JFZL8YrNC9hBxKmWtAuOCHPcRpgv7fhap09Fb4kA==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
- "@babel/helper-regex" "^7.0.0"
+ "@babel/helper-regex" "^7.4.4"
regexpu-core "^4.5.4"
"@babel/plugin-syntax-async-generators@^7.2.0":
@@ -311,6 +398,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
+"@babel/plugin-syntax-dynamic-import@^7.2.0":
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.2.0.tgz#69c159ffaf4998122161ad8ebc5e6d1f55df8612"
+ integrity sha512-mVxuJ0YroI/h/tbFTPGZR8cv6ai+STMKNBq0f8hFxsxWjl94qqhsb+wXbpNMDPU3cfR1TIsVFzU3nXyZMqyK4w==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+
"@babel/plugin-syntax-json-strings@^7.2.0":
version "7.2.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz#72bd13f6ffe1d25938129d2a186b11fd62951470"
@@ -332,6 +426,13 @@
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
+"@babel/plugin-syntax-typescript@^7.2.0":
+ version "7.3.3"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.3.3.tgz#a7cc3f66119a9f7ebe2de5383cce193473d65991"
+ integrity sha512-dGwbSMA1YhVS8+31CnPR7LB4pcbrzcV99wQzby4uAfrkZPYZlQ7ImwdpzLqi6Z6IL02b8IAL379CaMwo0x5Lag==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+
"@babel/plugin-transform-arrow-functions@^7.2.0":
version "7.2.0"
resolved "https://registry.yarnpkg.com/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz#9aeafbe4d6ffc6563bf8f8372091628f00779550"
@@ -339,10 +440,10 @@
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
-"@babel/plugin-transform-async-to-generator@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.4.0.tgz#234fe3e458dce95865c0d152d256119b237834b0"
- integrity sha512-EeaFdCeUULM+GPFEsf7pFcNSxM7hYjoj5fiYbyuiXobW4JhFnjAv9OWzNwHyHcKoPNpAfeRDuW6VyaXEDUBa7g==
+"@babel/plugin-transform-async-to-generator@^7.5.0":
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.5.0.tgz#89a3848a0166623b5bc481164b5936ab947e887e"
+ integrity sha512-mqvkzwIGkq0bEF1zLRRiTdjfomZJDV33AH3oQzHVGkI2VzEmXLpKKOBvEVaFZBJdN0XTyH38s9j/Kiqr68dggg==
dependencies:
"@babel/helper-module-imports" "^7.0.0"
"@babel/helper-plugin-utils" "^7.0.0"
@@ -355,26 +456,34 @@
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
-"@babel/plugin-transform-block-scoping@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.4.0.tgz#164df3bb41e3deb954c4ca32ffa9fcaa56d30bcb"
- integrity sha512-AWyt3k+fBXQqt2qb9r97tn3iBwFpiv9xdAiG+Gr2HpAZpuayvbL55yWrsV3MyHvXk/4vmSiedhDRl1YI2Iy5nQ==
+"@babel/plugin-transform-block-scoping@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.4.4.tgz#c13279fabf6b916661531841a23c4b7dae29646d"
+ integrity sha512-jkTUyWZcTrwxu5DD4rWz6rDB5Cjdmgz6z7M7RLXOJyCUkFBawssDGcGh8M/0FTSB87avyJI1HsTwUXp9nKA1PA==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
lodash "^4.17.11"
-"@babel/plugin-transform-classes@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.4.0.tgz#e3428d3c8a3d01f33b10c529b998ba1707043d4d"
- integrity sha512-XGg1Mhbw4LDmrO9rSTNe+uI79tQPdGs0YASlxgweYRLZqo/EQktjaOV4tchL/UZbM0F+/94uOipmdNGoaGOEYg==
+"@babel/plugin-transform-block-scoping@^7.5.5":
+ version "7.6.2"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.6.2.tgz#96c33ab97a9ae500cc6f5b19e04a7e6553360a79"
+ integrity sha512-zZT8ivau9LOQQaOGC7bQLQOT4XPkPXgN2ERfUgk1X8ql+mVkLc4E8eKk+FO3o0154kxzqenWCorfmEXpEZcrSQ==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+ lodash "^4.17.13"
+
+"@babel/plugin-transform-classes@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-classes/-/plugin-transform-classes-7.4.4.tgz#0ce4094cdafd709721076d3b9c38ad31ca715eb6"
+ integrity sha512-/e44eFLImEGIpL9qPxSRat13I5QNRgBLu2hOQJCF7VLy/otSM/sypV1+XaIw5+502RX/+6YaSAPmldk+nhHDPw==
dependencies:
"@babel/helper-annotate-as-pure" "^7.0.0"
- "@babel/helper-define-map" "^7.4.0"
+ "@babel/helper-define-map" "^7.4.4"
"@babel/helper-function-name" "^7.1.0"
"@babel/helper-optimise-call-expression" "^7.0.0"
"@babel/helper-plugin-utils" "^7.0.0"
- "@babel/helper-replace-supers" "^7.4.0"
- "@babel/helper-split-export-declaration" "^7.4.0"
+ "@babel/helper-replace-supers" "^7.4.4"
+ "@babel/helper-split-export-declaration" "^7.4.4"
globals "^11.1.0"
"@babel/plugin-transform-computed-properties@^7.2.0":
@@ -384,26 +493,26 @@
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
-"@babel/plugin-transform-destructuring@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.4.0.tgz#acbb9b2418d290107db333f4d6cd8aa6aea00343"
- integrity sha512-HySkoatyYTY3ZwLI8GGvkRWCFrjAGXUHur5sMecmCIdIharnlcWWivOqDJI76vvmVZfzwb6G08NREsrY96RhGQ==
+"@babel/plugin-transform-destructuring@^7.5.0":
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.5.0.tgz#f6c09fdfe3f94516ff074fe877db7bc9ef05855a"
+ integrity sha512-YbYgbd3TryYYLGyC7ZR+Tq8H/+bCmwoaxHfJHupom5ECstzbRLTch6gOQbhEY9Z4hiCNHEURgq06ykFv9JZ/QQ==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
-"@babel/plugin-transform-dotall-regex@^7.2.0":
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.2.0.tgz#f0aabb93d120a8ac61e925ea0ba440812dbe0e49"
- integrity sha512-sKxnyHfizweTgKZf7XsXu/CNupKhzijptfTM+bozonIuyVrLWVUvYjE2bhuSBML8VQeMxq4Mm63Q9qvcvUcciQ==
+"@babel/plugin-transform-dotall-regex@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz#361a148bc951444312c69446d76ed1ea8e4450c3"
+ integrity sha512-P05YEhRc2h53lZDjRPk/OektxCVevFzZs2Gfjd545Wde3k+yFDbXORgl2e0xpbq8mLcKJ7Idss4fAg0zORN/zg==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
- "@babel/helper-regex" "^7.0.0"
- regexpu-core "^4.1.3"
+ "@babel/helper-regex" "^7.4.4"
+ regexpu-core "^4.5.4"
-"@babel/plugin-transform-duplicate-keys@^7.2.0":
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz#d952c4930f312a4dbfff18f0b2914e60c35530b3"
- integrity sha512-q+yuxW4DsTjNceUiTzK0L+AfQ0zD9rWaTLiUqHA8p0gxx7lu1EylenfzjeIWNkPy6e/0VG/Wjw9uf9LueQwLOw==
+"@babel/plugin-transform-duplicate-keys@^7.5.0":
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.5.0.tgz#c5dbf5106bf84cdf691222c0974c12b1df931853"
+ integrity sha512-igcziksHizyQPlX9gfSjHkE2wmoCH3evvD2qR5w29/Dk0SMKE/eOI7f1HhBdNhR/zxJDqrgpoDTq5YSLH/XMsQ==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
@@ -415,17 +524,17 @@
"@babel/helper-builder-binary-assignment-operator-visitor" "^7.1.0"
"@babel/helper-plugin-utils" "^7.0.0"
-"@babel/plugin-transform-for-of@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.0.tgz#56c8c36677f5d4a16b80b12f7b768de064aaeb5f"
- integrity sha512-vWdfCEYLlYSxbsKj5lGtzA49K3KANtb8qCPQ1em07txJzsBwY+cKJzBHizj5fl3CCx7vt+WPdgDLTHmydkbQSQ==
+"@babel/plugin-transform-for-of@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz#0267fc735e24c808ba173866c6c4d1440fc3c556"
+ integrity sha512-9T/5Dlr14Z9TIEXLXkt8T1DU7F24cbhwhMNUziN3hB1AXoZcdzPcTiKGRn/6iOymDqtTKWnr/BtRKN9JwbKtdQ==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
-"@babel/plugin-transform-function-name@^7.2.0":
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.2.0.tgz#f7930362829ff99a3174c39f0afcc024ef59731a"
- integrity sha512-kWgksow9lHdvBC2Z4mxTsvc7YdY7w/V6B2vy9cTIPtLEE9NhwoWivaxdNM/S37elu5bqlLP/qOY906LukO9lkQ==
+"@babel/plugin-transform-function-name@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz#e1436116abb0610c2259094848754ac5230922ad"
+ integrity sha512-iU9pv7U+2jC9ANQkKeNF6DrPy4GBa4NWQtl6dHB4Pb3izX2JOEvDTFarlNsBj/63ZEzNNIAMs3Qw4fNCcSOXJA==
dependencies:
"@babel/helper-function-name" "^7.1.0"
"@babel/helper-plugin-utils" "^7.0.0"
@@ -437,30 +546,40 @@
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
-"@babel/plugin-transform-modules-amd@^7.0.0", "@babel/plugin-transform-modules-amd@^7.2.0":
+"@babel/plugin-transform-member-expression-literals@^7.2.0":
version "7.2.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz#82a9bce45b95441f617a24011dc89d12da7f4ee6"
- integrity sha512-mK2A8ucqz1qhrdqjS9VMIDfIvvT2thrEsIQzbaTdc5QFzhDjQv2CkJJ5f6BXIkgbmaoax3zBr2RyvV/8zeoUZw==
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz#fa10aa5c58a2cb6afcf2c9ffa8cb4d8b3d489a2d"
+ integrity sha512-HiU3zKkSU6scTidmnFJ0bMX8hz5ixC93b4MHMiYebmk2lUVNGOboPsqQvx5LzooihijUoLR/v7Nc1rbBtnc7FA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+
+"@babel/plugin-transform-modules-amd@^7.0.0", "@babel/plugin-transform-modules-amd@^7.2.0", "@babel/plugin-transform-modules-amd@^7.5.0":
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.5.0.tgz#ef00435d46da0a5961aa728a1d2ecff063e4fb91"
+ integrity sha512-n20UsQMKnWrltocZZm24cRURxQnWIvsABPJlw/fvoy9c6AgHZzoelAIzajDHAQrDpuKFFPPcFGd7ChsYuIUMpg==
dependencies:
"@babel/helper-module-transforms" "^7.1.0"
"@babel/helper-plugin-utils" "^7.0.0"
+ babel-plugin-dynamic-import-node "^2.3.0"
-"@babel/plugin-transform-modules-commonjs@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.4.0.tgz#3b8ec61714d3b75d20c5ccfa157f2c2e087fd4ca"
- integrity sha512-iWKAooAkipG7g1IY0eah7SumzfnIT3WNhT4uYB2kIsvHnNSB6MDYVa5qyICSwaTBDBY2c4SnJ3JtEa6ltJd6Jw==
+"@babel/plugin-transform-modules-commonjs@^7.5.0":
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.5.0.tgz#425127e6045231360858eeaa47a71d75eded7a74"
+ integrity sha512-xmHq0B+ytyrWJvQTc5OWAC4ii6Dhr0s22STOoydokG51JjWhyYo5mRPXoi+ZmtHQhZZwuXNN+GG5jy5UZZJxIQ==
dependencies:
- "@babel/helper-module-transforms" "^7.1.0"
+ "@babel/helper-module-transforms" "^7.4.4"
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/helper-simple-access" "^7.1.0"
+ babel-plugin-dynamic-import-node "^2.3.0"
-"@babel/plugin-transform-modules-systemjs@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.4.0.tgz#c2495e55528135797bc816f5d50f851698c586a1"
- integrity sha512-gjPdHmqiNhVoBqus5qK60mWPp1CmYWp/tkh11mvb0rrys01HycEGD7NvvSoKXlWEfSM9TcL36CpsK8ElsADptQ==
+"@babel/plugin-transform-modules-systemjs@^7.5.0":
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.5.0.tgz#e75266a13ef94202db2a0620977756f51d52d249"
+ integrity sha512-Q2m56tyoQWmuNGxEtUyeEkm6qJYFqs4c+XyXH5RAuYxObRNz9Zgj/1g2GMnjYp2EUyEy7YTrxliGCXzecl/vJg==
dependencies:
- "@babel/helper-hoist-variables" "^7.4.0"
+ "@babel/helper-hoist-variables" "^7.4.4"
"@babel/helper-plugin-utils" "^7.0.0"
+ babel-plugin-dynamic-import-node "^2.3.0"
"@babel/plugin-transform-modules-umd@^7.2.0":
version "7.2.0"
@@ -470,17 +589,17 @@
"@babel/helper-module-transforms" "^7.1.0"
"@babel/helper-plugin-utils" "^7.0.0"
-"@babel/plugin-transform-named-capturing-groups-regex@^7.4.2":
- version "7.4.2"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.2.tgz#800391136d6cbcc80728dbdba3c1c6e46f86c12e"
- integrity sha512-NsAuliSwkL3WO2dzWTOL1oZJHm0TM8ZY8ZSxk2ANyKkt5SQlToGA4pzctmq1BEjoacurdwZ3xp2dCQWJkME0gQ==
+"@babel/plugin-transform-named-capturing-groups-regex@^7.4.5":
+ version "7.4.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.5.tgz#9d269fd28a370258199b4294736813a60bbdd106"
+ integrity sha512-z7+2IsWafTBbjNsOxU/Iv5CvTJlr5w4+HGu1HovKYTtgJ362f7kBcQglkfmlspKKZ3bgrbSGvLfNx++ZJgCWsg==
dependencies:
- regexp-tree "^0.1.0"
+ regexp-tree "^0.1.6"
-"@babel/plugin-transform-new-target@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.0.tgz#67658a1d944edb53c8d4fa3004473a0dd7838150"
- integrity sha512-6ZKNgMQmQmrEX/ncuCwnnw1yVGoaOW5KpxNhoWI7pCQdA0uZ0HqHGqenCUIENAnxRjy2WwNQ30gfGdIgqJXXqw==
+"@babel/plugin-transform-new-target@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz#18d120438b0cc9ee95a47f2c72bc9768fbed60a5"
+ integrity sha512-r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
@@ -492,26 +611,40 @@
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/helper-replace-supers" "^7.1.0"
-"@babel/plugin-transform-parameters@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.0.tgz#a1309426fac4eecd2a9439a4c8c35124a11a48a9"
- integrity sha512-Xqv6d1X+doyiuCGDoVJFtlZx0onAX0tnc3dY8w71pv/O0dODAbusVv2Ale3cGOwfiyi895ivOBhYa9DhAM8dUA==
+"@babel/plugin-transform-parameters@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz#7556cf03f318bd2719fe4c922d2d808be5571e16"
+ integrity sha512-oMh5DUO1V63nZcu/ZVLQFqiihBGo4OpxJxR1otF50GMeCLiRx5nUdtokd+u9SuVJrvvuIh9OosRFPP4pIPnwmw==
dependencies:
- "@babel/helper-call-delegate" "^7.4.0"
+ "@babel/helper-call-delegate" "^7.4.4"
"@babel/helper-get-function-arity" "^7.0.0"
"@babel/helper-plugin-utils" "^7.0.0"
-"@babel/plugin-transform-regenerator@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.0.tgz#0780e27ee458cc3fdbad18294d703e972ae1f6d1"
- integrity sha512-SZ+CgL4F0wm4npojPU6swo/cK4FcbLgxLd4cWpHaNXY/NJ2dpahODCqBbAwb2rDmVszVb3SSjnk9/vik3AYdBw==
+"@babel/plugin-transform-property-literals@^7.2.0":
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz#03e33f653f5b25c4eb572c98b9485055b389e905"
+ integrity sha512-9q7Dbk4RhgcLp8ebduOpCbtjh7C0itoLYHXd9ueASKAG/is5PQtMR5VJGka9NKqGhYEGn5ITahd4h9QeBMylWQ==
dependencies:
- regenerator-transform "^0.13.4"
+ "@babel/helper-plugin-utils" "^7.0.0"
+
+"@babel/plugin-transform-regenerator@^7.4.5":
+ version "7.4.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz#629dc82512c55cee01341fb27bdfcb210354680f"
+ integrity sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA==
+ dependencies:
+ regenerator-transform "^0.14.0"
+
+"@babel/plugin-transform-reserved-words@^7.2.0":
+ version "7.2.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz#4792af87c998a49367597d07fedf02636d2e1634"
+ integrity sha512-fz43fqW8E1tAB3DKF19/vxbpib1fuyCwSPE418ge5ZxILnBhWyhtPgz8eh1RCGGJlwvksHkyxMxh0eenFi+kFw==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-transform-runtime@^7.2.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.4.0.tgz#b4d8c925ed957471bc57e0b9da53408ebb1ed457"
- integrity sha512-1uv2h9wnRj98XX3g0l4q+O3jFM6HfayKup7aIu4pnnlzGz0H+cYckGBC74FZIWJXJSXAmeJ9Yu5Gg2RQpS4hWg==
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.5.0.tgz#45242c2c9281158c5f06d25beebac63e498a284e"
+ integrity sha512-LmPIZOAgTLl+86gR9KjLXex6P/lRz1fWEjTz6V6QZMmKie51ja3tvzdwORqhHc4RWR8TcZ5pClpRWs0mlaA2ng==
dependencies:
"@babel/helper-module-imports" "^7.0.0"
"@babel/helper-plugin-utils" "^7.0.0"
@@ -540,10 +673,10 @@
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/helper-regex" "^7.0.0"
-"@babel/plugin-transform-template-literals@^7.2.0":
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.2.0.tgz#d87ed01b8eaac7a92473f608c97c089de2ba1e5b"
- integrity sha512-FkPix00J9A/XWXv4VoKJBMeSkyY9x/TqIh76wzcdfl57RJJcf8CehQ08uwfhCDNtRQYtHQKBTwKZDEyjE13Lwg==
+"@babel/plugin-transform-template-literals@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz#9d28fea7bbce637fb7612a0750989d8321d4bcb0"
+ integrity sha512-mQrEC4TWkhLN0z8ygIvEL9ZEToPhG5K7KDW3pzGqOfIGZ28Jb0POUkeWcoz8HnHvhFy6dwAT1j8OzqN8s804+g==
dependencies:
"@babel/helper-annotate-as-pure" "^7.0.0"
"@babel/helper-plugin-utils" "^7.0.0"
@@ -555,73 +688,86 @@
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
-"@babel/plugin-transform-unicode-regex@^7.2.0":
- version "7.2.0"
- resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.2.0.tgz#4eb8db16f972f8abb5062c161b8b115546ade08b"
- integrity sha512-m48Y0lMhrbXEJnVUaYly29jRXbQ3ksxPrS1Tg8t+MHqzXhtBYAvI51euOBaoAlZLPHsieY9XPVMf80a5x0cPcA==
+"@babel/plugin-transform-typescript@~7.4.0":
+ version "7.4.5"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.4.5.tgz#ab3351ba35307b79981993536c93ff8be050ba28"
+ integrity sha512-RPB/YeGr4ZrFKNwfuQRlMf2lxoCUaU01MTw39/OFE/RiL8HDjtn68BwEPft1P7JN4akyEmjGWAMNldOV7o9V2g==
dependencies:
"@babel/helper-plugin-utils" "^7.0.0"
- "@babel/helper-regex" "^7.0.0"
- regexpu-core "^4.1.3"
+ "@babel/plugin-syntax-typescript" "^7.2.0"
+
+"@babel/plugin-transform-unicode-regex@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz#ab4634bb4f14d36728bf5978322b35587787970f"
+ integrity sha512-il+/XdNw01i93+M9J9u4T7/e/Ue/vWfNZE4IRUQjplu2Mqb/AFTDimkw2tdEdSH50wuQXZAbXSql0UphQke+vA==
+ dependencies:
+ "@babel/helper-plugin-utils" "^7.0.0"
+ "@babel/helper-regex" "^7.4.4"
+ regexpu-core "^4.5.4"
"@babel/polyfill@^7.0.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.4.0.tgz#90f9d68ae34ac42ab4b4aa03151848f536960218"
- integrity sha512-bVsjsrtsDflIHp5I6caaAa2V25Kzn50HKPL6g3X0P0ni1ks+58cPB8Mz6AOKVuRPgaVdq/OwEUc/1vKqX+Mo4A==
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/polyfill/-/polyfill-7.4.4.tgz#78801cf3dbe657844eeabf31c1cae3828051e893"
+ integrity sha512-WlthFLfhQQhh+A2Gn5NSFl0Huxz36x86Jn+E9OW7ibK8edKPq+KLy4apM1yDpQ8kJOVi1OVjpP4vSDLdrI04dg==
dependencies:
core-js "^2.6.5"
regenerator-runtime "^0.13.2"
"@babel/preset-env@^7.0.0":
- version "7.4.2"
- resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.4.2.tgz#2f5ba1de2daefa9dcca653848f96c7ce2e406676"
- integrity sha512-OEz6VOZaI9LW08CWVS3d9g/0jZA6YCn1gsKIy/fut7yZCJti5Lm1/Hi+uo/U+ODm7g4I6gULrCP+/+laT8xAsA==
+ version "7.5.4"
+ resolved "https://registry.yarnpkg.com/@babel/preset-env/-/preset-env-7.5.4.tgz#64bc15041a3cbb0798930319917e70fcca57713d"
+ integrity sha512-hFnFnouyRNiH1rL8YkX1ANCNAUVC8Djwdqfev8i1415tnAG+7hlA5zhZ0Q/3Q5gkop4HioIPbCEWAalqcbxRoQ==
dependencies:
"@babel/helper-module-imports" "^7.0.0"
"@babel/helper-plugin-utils" "^7.0.0"
"@babel/plugin-proposal-async-generator-functions" "^7.2.0"
+ "@babel/plugin-proposal-dynamic-import" "^7.5.0"
"@babel/plugin-proposal-json-strings" "^7.2.0"
- "@babel/plugin-proposal-object-rest-spread" "^7.4.0"
+ "@babel/plugin-proposal-object-rest-spread" "^7.5.4"
"@babel/plugin-proposal-optional-catch-binding" "^7.2.0"
- "@babel/plugin-proposal-unicode-property-regex" "^7.4.0"
+ "@babel/plugin-proposal-unicode-property-regex" "^7.4.4"
"@babel/plugin-syntax-async-generators" "^7.2.0"
+ "@babel/plugin-syntax-dynamic-import" "^7.2.0"
"@babel/plugin-syntax-json-strings" "^7.2.0"
"@babel/plugin-syntax-object-rest-spread" "^7.2.0"
"@babel/plugin-syntax-optional-catch-binding" "^7.2.0"
"@babel/plugin-transform-arrow-functions" "^7.2.0"
- "@babel/plugin-transform-async-to-generator" "^7.4.0"
+ "@babel/plugin-transform-async-to-generator" "^7.5.0"
"@babel/plugin-transform-block-scoped-functions" "^7.2.0"
- "@babel/plugin-transform-block-scoping" "^7.4.0"
- "@babel/plugin-transform-classes" "^7.4.0"
+ "@babel/plugin-transform-block-scoping" "^7.4.4"
+ "@babel/plugin-transform-classes" "^7.4.4"
"@babel/plugin-transform-computed-properties" "^7.2.0"
- "@babel/plugin-transform-destructuring" "^7.4.0"
- "@babel/plugin-transform-dotall-regex" "^7.2.0"
- "@babel/plugin-transform-duplicate-keys" "^7.2.0"
+ "@babel/plugin-transform-destructuring" "^7.5.0"
+ "@babel/plugin-transform-dotall-regex" "^7.4.4"
+ "@babel/plugin-transform-duplicate-keys" "^7.5.0"
"@babel/plugin-transform-exponentiation-operator" "^7.2.0"
- "@babel/plugin-transform-for-of" "^7.4.0"
- "@babel/plugin-transform-function-name" "^7.2.0"
+ "@babel/plugin-transform-for-of" "^7.4.4"
+ "@babel/plugin-transform-function-name" "^7.4.4"
"@babel/plugin-transform-literals" "^7.2.0"
- "@babel/plugin-transform-modules-amd" "^7.2.0"
- "@babel/plugin-transform-modules-commonjs" "^7.4.0"
- "@babel/plugin-transform-modules-systemjs" "^7.4.0"
+ "@babel/plugin-transform-member-expression-literals" "^7.2.0"
+ "@babel/plugin-transform-modules-amd" "^7.5.0"
+ "@babel/plugin-transform-modules-commonjs" "^7.5.0"
+ "@babel/plugin-transform-modules-systemjs" "^7.5.0"
"@babel/plugin-transform-modules-umd" "^7.2.0"
- "@babel/plugin-transform-named-capturing-groups-regex" "^7.4.2"
- "@babel/plugin-transform-new-target" "^7.4.0"
+ "@babel/plugin-transform-named-capturing-groups-regex" "^7.4.5"
+ "@babel/plugin-transform-new-target" "^7.4.4"
"@babel/plugin-transform-object-super" "^7.2.0"
- "@babel/plugin-transform-parameters" "^7.4.0"
- "@babel/plugin-transform-regenerator" "^7.4.0"
+ "@babel/plugin-transform-parameters" "^7.4.4"
+ "@babel/plugin-transform-property-literals" "^7.2.0"
+ "@babel/plugin-transform-regenerator" "^7.4.5"
+ "@babel/plugin-transform-reserved-words" "^7.2.0"
"@babel/plugin-transform-shorthand-properties" "^7.2.0"
"@babel/plugin-transform-spread" "^7.2.0"
"@babel/plugin-transform-sticky-regex" "^7.2.0"
- "@babel/plugin-transform-template-literals" "^7.2.0"
+ "@babel/plugin-transform-template-literals" "^7.4.4"
"@babel/plugin-transform-typeof-symbol" "^7.2.0"
- "@babel/plugin-transform-unicode-regex" "^7.2.0"
- "@babel/types" "^7.4.0"
- browserslist "^4.4.2"
- core-js-compat "^3.0.0"
+ "@babel/plugin-transform-unicode-regex" "^7.4.4"
+ "@babel/types" "^7.5.0"
+ browserslist "^4.6.0"
+ core-js-compat "^3.1.1"
invariant "^2.2.2"
js-levenshtein "^1.1.3"
- semver "^5.3.0"
+ semver "^5.5.0"
"@babel/runtime@7.0.0":
version "7.0.0"
@@ -631,22 +777,31 @@
regenerator-runtime "^0.12.0"
"@babel/runtime@^7.2.0":
- version "7.4.2"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.4.2.tgz#f5ab6897320f16decd855eed70b705908a313fe8"
- integrity sha512-7Bl2rALb7HpvXFL7TETNzKSAeBVCPHELzc0C//9FCxN8nsiueWSJBqaF+2oIJScyILStASR/Cx5WMkXGYTiJFA==
+ version "7.5.4"
+ resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.5.4.tgz#cb7d1ad7c6d65676e66b47186577930465b5271b"
+ integrity sha512-Na84uwyImZZc3FKf4aUF1tysApzwf3p2yuFBIyBfbzT5glzKTdvYI4KVW4kcgjrzoGUjC7w3YyCHcJKaRxsr2Q==
dependencies:
regenerator-runtime "^0.13.2"
-"@babel/template@^7.1.0", "@babel/template@^7.2.2", "@babel/template@^7.4.0":
- version "7.4.0"
- resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.0.tgz#12474e9c077bae585c5d835a95c0b0b790c25c8b"
- integrity sha512-SOWwxxClTTh5NdbbYZ0BmaBVzxzTh2tO/TeLTbF6MO6EzVhHTnff8CdBXx3mEtazFBoysmEM6GU/wF+SuSx4Fw==
+"@babel/template@^7.1.0", "@babel/template@^7.4.4":
+ version "7.4.4"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237"
+ integrity sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw==
dependencies:
"@babel/code-frame" "^7.0.0"
- "@babel/parser" "^7.4.0"
- "@babel/types" "^7.4.0"
+ "@babel/parser" "^7.4.4"
+ "@babel/types" "^7.4.4"
-"@babel/traverse@^7.1.0", "@babel/traverse@^7.1.6", "@babel/traverse@^7.4.0":
+"@babel/template@^7.4.0", "@babel/template@^7.6.0":
+ version "7.6.0"
+ resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.6.0.tgz#7f0159c7f5012230dad64cca42ec9bdb5c9536e6"
+ integrity sha512-5AEH2EXD8euCk446b7edmgFdub/qfH1SN6Nii3+fyXP807QRx9Q73A2N5hNwRRslC2H9sNzaFhsPubkS4L8oNQ==
+ dependencies:
+ "@babel/code-frame" "^7.0.0"
+ "@babel/parser" "^7.6.0"
+ "@babel/types" "^7.6.0"
+
+"@babel/traverse@^7.1.0", "@babel/traverse@^7.1.6":
version "7.4.0"
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.4.0.tgz#14006967dd1d2b3494cdd650c686db9daf0ddada"
integrity sha512-/DtIHKfyg2bBKnIN+BItaIlEg5pjAnzHOIQe5w+rHAw/rg9g0V7T4rqPX8BJPfW11kt3koyjAnTNwCzb28Y1PA==
@@ -661,7 +816,52 @@
globals "^11.1.0"
lodash "^4.17.11"
-"@babel/types@^7.0.0", "@babel/types@^7.1.6", "@babel/types@^7.2.0", "@babel/types@^7.2.2", "@babel/types@^7.4.0":
+"@babel/traverse@^7.2.4", "@babel/traverse@^7.3.4", "@babel/traverse@^7.5.5":
+ version "7.5.5"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.5.5.tgz#f664f8f368ed32988cd648da9f72d5ca70f165bb"
+ integrity sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ==
+ dependencies:
+ "@babel/code-frame" "^7.5.5"
+ "@babel/generator" "^7.5.5"
+ "@babel/helper-function-name" "^7.1.0"
+ "@babel/helper-split-export-declaration" "^7.4.4"
+ "@babel/parser" "^7.5.5"
+ "@babel/types" "^7.5.5"
+ debug "^4.1.0"
+ globals "^11.1.0"
+ lodash "^4.17.13"
+
+"@babel/traverse@^7.4.0", "@babel/traverse@^7.6.2":
+ version "7.6.2"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.6.2.tgz#b0e2bfd401d339ce0e6c05690206d1e11502ce2c"
+ integrity sha512-8fRE76xNwNttVEF2TwxJDGBLWthUkHWSldmfuBzVRmEDWOtu4XdINTgN7TDWzuLg4bbeIMLvfMFD9we5YcWkRQ==
+ dependencies:
+ "@babel/code-frame" "^7.5.5"
+ "@babel/generator" "^7.6.2"
+ "@babel/helper-function-name" "^7.1.0"
+ "@babel/helper-split-export-declaration" "^7.4.4"
+ "@babel/parser" "^7.6.2"
+ "@babel/types" "^7.6.0"
+ debug "^4.1.0"
+ globals "^11.1.0"
+ lodash "^4.17.13"
+
+"@babel/traverse@^7.4.4":
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.5.0.tgz#4216d6586854ef5c3c4592dab56ec7eb78485485"
+ integrity sha512-SnA9aLbyOCcnnbQEGwdfBggnc142h/rbqqsXcaATj2hZcegCl903pUD/lfpsNBlBSuWow/YDfRyJuWi2EPR5cg==
+ dependencies:
+ "@babel/code-frame" "^7.0.0"
+ "@babel/generator" "^7.5.0"
+ "@babel/helper-function-name" "^7.1.0"
+ "@babel/helper-split-export-declaration" "^7.4.4"
+ "@babel/parser" "^7.5.0"
+ "@babel/types" "^7.5.0"
+ debug "^4.1.0"
+ globals "^11.1.0"
+ lodash "^4.17.11"
+
+"@babel/types@^7.0.0", "@babel/types@^7.1.6", "@babel/types@^7.2.0":
version "7.4.0"
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.4.0.tgz#670724f77d24cce6cc7d8cf64599d511d164894c"
integrity sha512-aPvkXyU2SPOnztlgo8n9cEiXW755mgyvueUPcpStqdzoSPm0fjO0vQBjLkt3JKJW7ufikfcnMTTPsN1xaTsBPA==
@@ -670,17 +870,149 @@
lodash "^4.17.11"
to-fast-properties "^2.0.0"
-"@ember/jquery@^0.6.0":
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/@ember/jquery/-/jquery-0.6.0.tgz#5fe9d39b15c9d47fe495302b2a6176059a6267cd"
- integrity sha512-O81+JslKE7bsV+5wrhXEmBU1Bpte2u9bm6MLIoRYePvWDo50l7llDW1RM38l1KkeSj/s7iXTsviZ4uunhIcKow==
+"@babel/types@^7.3.2", "@babel/types@^7.3.4", "@babel/types@^7.4.4", "@babel/types@^7.5.5":
+ version "7.5.5"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.5.5.tgz#97b9f728e182785909aa4ab56264f090a028d18a"
+ integrity sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw==
dependencies:
- broccoli-funnel "^2.0.1"
+ esutils "^2.0.2"
+ lodash "^4.17.13"
+ to-fast-properties "^2.0.0"
+
+"@babel/types@^7.4.0", "@babel/types@^7.6.0":
+ version "7.6.1"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.6.1.tgz#53abf3308add3ac2a2884d539151c57c4b3ac648"
+ integrity sha512-X7gdiuaCmA0uRjCmRtYJNAVCc/q+5xSgsfKJHqMN4iNLILX39677fJE1O40arPMh0TTtS9ItH67yre6c7k6t0g==
+ dependencies:
+ esutils "^2.0.2"
+ lodash "^4.17.13"
+ to-fast-properties "^2.0.0"
+
+"@babel/types@^7.5.0":
+ version "7.5.0"
+ resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.5.0.tgz#e47d43840c2e7f9105bc4d3a2c371b4d0c7832ab"
+ integrity sha512-UFpDVqRABKsW01bvw7/wSUe56uy6RXM5+VJibVVAybDGxEW25jdwiFJEf7ASvSaC7sN7rbE/l3cLp2izav+CtQ==
+ dependencies:
+ esutils "^2.0.2"
+ lodash "^4.17.11"
+ to-fast-properties "^2.0.0"
+
+"@cnakazawa/watch@^1.0.3":
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/@cnakazawa/watch/-/watch-1.0.3.tgz#099139eaec7ebf07a27c1786a3ff64f39464d2ef"
+ integrity sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==
+ dependencies:
+ exec-sh "^0.3.2"
+ minimist "^1.2.0"
+
+"@ember-data/-build-infra@3.12.4":
+ version "3.12.4"
+ resolved "https://registry.yarnpkg.com/@ember-data/-build-infra/-/-build-infra-3.12.4.tgz#891304b39a39768c81c1beef55f6b39c862a5868"
+ integrity sha512-+2ICbMg7QxVMb+asXInG0VIGV08CsSHVdDL1Sw6zkSMtAChGFij1anV160J97vRN/iUyHktkNgmaKUeooVCTPw==
+ dependencies:
+ "@babel/plugin-transform-block-scoping" "^7.5.5"
+ babel-plugin-debug-macros "^0.3.2"
+ babel-plugin-feature-flags "^0.3.1"
+ babel-plugin-filter-imports "^3.0.0"
+ babel6-plugin-strip-class-callcheck "^6.0.0"
+ broccoli-debug "^0.6.5"
+ broccoli-file-creator "^2.1.1"
+ broccoli-funnel "^2.0.2"
broccoli-merge-trees "^3.0.2"
- ember-cli-babel "^7.4.0"
- ember-cli-version-checker "^3.0.0"
- jquery "^3.3.1"
- resolve "^1.10.0"
+ broccoli-rollup "^4.1.1"
+ calculate-cache-key-for-tree "^2.0.0"
+ chalk "^2.4.1"
+ ember-cli-path-utils "^1.0.0"
+ ember-cli-string-utils "^1.1.0"
+ ember-cli-version-checker "^3.1.2"
+ esm "^3.2.25"
+ git-repo-info "^2.0.0"
+ glob "^7.1.4"
+ npm-git-info "^1.0.3"
+ rimraf "^2.6.2"
+ rsvp "^4.8.5"
+ silent-error "^1.1.1"
+
+"@ember-data/adapter@3.12.4":
+ version "3.12.4"
+ resolved "https://registry.yarnpkg.com/@ember-data/adapter/-/adapter-3.12.4.tgz#7bcab0f3775d088b978c27e085e0d6906ee944cf"
+ integrity sha512-uPLEs9ms8dgF3OLaqntH0fh4DfLKT5BcLNqni//xBt2zcDiWnnkTjk6MC1JmfdAgcKlO8T33keKWVFWF+202sg==
+ dependencies:
+ "@ember-data/-build-infra" "3.12.4"
+ ember-cli-babel "^7.8.0"
+ ember-cli-test-info "^1.0.0"
+ ember-cli-typescript "^2.0.2"
+
+"@ember-data/canary-features@3.12.4":
+ version "3.12.4"
+ resolved "https://registry.yarnpkg.com/@ember-data/canary-features/-/canary-features-3.12.4.tgz#056075faf9bf6cc81a5e46a4f5936903fb5de196"
+ integrity sha512-BcmytO4nWHnXQWNA/VPVADTqSo7P+/WA+RUFXQ1FYO/DW++69Ukwm18tZconQvtq/vWeZ4jogSRNWrtpFxbsrw==
+ dependencies:
+ ember-cli-babel "^7.8.0"
+
+"@ember-data/model@3.12.4":
+ version "3.12.4"
+ resolved "https://registry.yarnpkg.com/@ember-data/model/-/model-3.12.4.tgz#055270e5eabdc483eabde3459fa272f74093dff6"
+ integrity sha512-pX42qM+Nw9wx0QOpENczj7lcoCFuAfam6iP/us4WfuD9OeakjZQ1xIhe0igGneYBZRejPwJFliG4AzDli+swpA==
+ dependencies:
+ "@ember-data/-build-infra" "3.12.4"
+ "@ember-data/store" "3.12.4"
+ ember-cli-babel "^7.8.0"
+ ember-cli-string-utils "^1.1.0"
+ ember-cli-test-info "^1.0.0"
+ ember-cli-typescript "^2.0.2"
+ inflection "1.12.0"
+
+"@ember-data/serializer@3.12.4":
+ version "3.12.4"
+ resolved "https://registry.yarnpkg.com/@ember-data/serializer/-/serializer-3.12.4.tgz#e3ae7143f0cd736722daa3a640e11dc07c8aef5a"
+ integrity sha512-63QuQp01AELhsjl558Un/5C3IzgMDGnqPoh9S4FkftNoiZL8mmMOaCvCOJwGlmg2msEmn55ziBLHMwu4jdvByw==
+ dependencies:
+ "@ember-data/-build-infra" "3.12.4"
+ "@ember-data/store" "3.12.4"
+ ember-cli-babel "^7.8.0"
+ ember-cli-test-info "^1.0.0"
+ ember-cli-typescript "^2.0.2"
+
+"@ember-data/store@3.12.4":
+ version "3.12.4"
+ resolved "https://registry.yarnpkg.com/@ember-data/store/-/store-3.12.4.tgz#031930a761bfa5a6d70a6f10525a675f6d6b04a4"
+ integrity sha512-5mpgiO+uNjZqJDDpCqx3S+f0E6lNi3c8Ec08/GRBZFItEaxU+esjKPmbNlM2bvcD2IGnBGeIJ6qze8ldri/jTw==
+ dependencies:
+ "@ember-data/-build-infra" "3.12.4"
+ "@ember-data/adapter" "3.12.4"
+ "@ember-data/canary-features" "3.12.4"
+ ember-cli-babel "^7.8.0"
+ ember-cli-path-utils "^1.0.0"
+ ember-cli-typescript "^2.0.2"
+ heimdalljs "^0.3.0"
+
+"@ember-decorators/component@^6.1.0":
+ version "6.1.1"
+ resolved "https://registry.yarnpkg.com/@ember-decorators/component/-/component-6.1.1.tgz#b360dc4fa8e576ee1c840879399ef1745fd96e06"
+ integrity sha512-Cj8tY/c0MC/rsipqsiWLh3YVN72DK92edPYamD/HzvftwzC6oDwawWk8RmStiBnG9PG/vntAt41l3S7HSSA+1Q==
+ dependencies:
+ "@ember-decorators/utils" "^6.1.1"
+ ember-cli-babel "^7.1.3"
+
+"@ember-decorators/utils@^6.1.1":
+ version "6.1.1"
+ resolved "https://registry.yarnpkg.com/@ember-decorators/utils/-/utils-6.1.1.tgz#6b619814942b4fb3747cfa9f540c9f05283d7c5e"
+ integrity sha512-0KqnoeoLKb6AyoSU65TRF5T85wmS4uDn06oARddwNPxxf/lt5jQlh41uX3W7V/fWL9tPu8x1L1Vvpc80MN1+YA==
+ dependencies:
+ ember-cli-babel "^7.1.3"
+
+"@ember/jquery@^0.6.0":
+ version "0.6.1"
+ resolved "https://registry.yarnpkg.com/@ember/jquery/-/jquery-0.6.1.tgz#eef89ebc8d7b49bddc176f2a646746c8f5d93978"
+ integrity sha512-XMgfUYag97YOYLsC0Ys4/H6mHO2U2wra/92eVIug+5eYBloYSDhv2MY/iq/ocwXVSB2dQaphJx5pFXqdrjEzWQ==
+ dependencies:
+ broccoli-funnel "^2.0.2"
+ broccoli-merge-trees "^3.0.2"
+ ember-cli-babel "^7.7.3"
+ ember-cli-version-checker "^3.1.3"
+ jquery "^3.4.1"
+ resolve "^1.11.1"
"@ember/optional-features@^0.7.0":
version "0.7.0"
@@ -696,7 +1028,7 @@
silent-error "^1.1.0"
util.promisify "^1.0.0"
-"@ember/ordered-set@^2.0.0":
+"@ember/ordered-set@^2.0.3":
version "2.0.3"
resolved "https://registry.yarnpkg.com/@ember/ordered-set/-/ordered-set-2.0.3.tgz#2ac1ca73b3bd116063cae814898832ef434a57f9"
integrity sha512-F4yfVk6WMc4AUHxeZsC3CaKyTvO0qSZJy7WWHCFTlVDQw6vubn+FvnGdhzpN1F00EiXMI4Tv1tJdSquHcCnYrA==
@@ -704,15 +1036,71 @@
ember-cli-babel "^6.16.0"
ember-compatibility-helpers "^1.1.1"
-"@ember/test-helpers@^0.7.26":
- version "0.7.27"
- resolved "https://registry.yarnpkg.com/@ember/test-helpers/-/test-helpers-0.7.27.tgz#c622cabd0cbb95b34efc1e1b6274ab5a14edc138"
- integrity sha512-AQESk0FTFxRY6GyZ8PharR4SC7Fju0rXqNkfNYIntAjzefZ8xEqEM4iXDj5h7gAvfx/8dA69AQ9+p7ubc+KvJg==
+"@ember/render-modifiers@^1.0.0":
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/@ember/render-modifiers/-/render-modifiers-1.0.1.tgz#a85e746e4bb9fd51302cc43e726e2c641261a7c2"
+ integrity sha512-HHZwL84jCVAaIDFtPZHAnM41aB8XgvDiutD1tKnll43fw7/rhejGj/LDWdB1jrPF+vryFSSQwSJ85gk4J7W86g==
dependencies:
- broccoli-funnel "^2.0.1"
- ember-assign-polyfill "~2.4.0"
- ember-cli-babel "^6.12.0"
- ember-cli-htmlbars-inline-precompile "^1.0.0"
+ ember-cli-babel "^7.10.0"
+ ember-modifier-manager-polyfill "^1.1.0"
+
+"@ember/test-helpers@^1.6.0":
+ version "1.6.1"
+ resolved "https://registry.yarnpkg.com/@ember/test-helpers/-/test-helpers-1.6.1.tgz#5eb0b58486524c54f1b617a83e4ab327b7c62f07"
+ integrity sha512-gXLXR0XdZKfyXHFP+QLpG55TlrDtvrZI6TMQVQxdZwsz589kN8idmc01rDjyy53jx430tZTEsdhJvC2LrHXPwg==
+ dependencies:
+ broccoli-debug "^0.6.5"
+ broccoli-funnel "^2.0.2"
+ ember-assign-polyfill "^2.6.0"
+ ember-cli-babel "^7.7.3"
+ ember-cli-htmlbars-inline-precompile "^2.1.0"
+ ember-test-waiters "^1.0.0"
+
+"@embroider/core@0.4.3", "@embroider/core@^0.4.3":
+ version "0.4.3"
+ resolved "https://registry.yarnpkg.com/@embroider/core/-/core-0.4.3.tgz#117973b9761d68aee14d820bbaefeb05d5984ba8"
+ integrity sha512-n24WU/dGuGDqZrljWoX8raK2wFX3R8iJG0rfCWx+1kW87IvB+ZgS3j4KiZ/S788BA07udrYsrgecYnciG2bBMg==
+ dependencies:
+ "@babel/core" "^7.2.2"
+ "@babel/parser" "^7.3.4"
+ "@babel/plugin-syntax-dynamic-import" "^7.2.0"
+ "@babel/traverse" "^7.3.4"
+ "@babel/types" "^7.3.4"
+ "@embroider/macros" "0.4.3"
+ assert-never "^1.1.0"
+ babel-plugin-syntax-dynamic-import "^6.18.0"
+ broccoli-persistent-filter "^2.2.2"
+ broccoli-plugin "^1.3.0"
+ broccoli-source "^1.1.0"
+ debug "^3.1.0"
+ fast-sourcemap-concat "^1.4.0"
+ filesize "^4.1.2"
+ fs-extra "^7.0.1"
+ fs-tree-diff "^2.0.0"
+ handlebars "^4.0.11"
+ js-string-escape "^1.0.1"
+ jsdom "^12.0.0"
+ json-stable-stringify "^1.0.1"
+ lodash "^4.17.10"
+ pkg-up "^2.0.0"
+ resolve "^1.8.1"
+ resolve-package-path "^1.2.2"
+ semver "^5.5.0"
+ strip-bom "^3.0.0"
+ typescript-memoize "^1.0.0-alpha.3"
+ walk-sync "^1.1.3"
+
+"@embroider/macros@0.4.3":
+ version "0.4.3"
+ resolved "https://registry.yarnpkg.com/@embroider/macros/-/macros-0.4.3.tgz#ea5604b8bd578520f15886a428a6c4fa9481abc0"
+ integrity sha512-vq/Ny2ULpKxq60Sv5usSrz651dXFM5phP/O5G5MWDY8YOodIkRLGqtub34sB0OmwxpCuTntUzl9P/I4wkyQ3Kw==
+ dependencies:
+ "@babel/core" "^7.2.2"
+ "@babel/traverse" "^7.2.4"
+ "@babel/types" "^7.3.2"
+ "@embroider/core" "0.4.3"
+ resolve "^1.8.1"
+ semver "^5.6.0"
"@glimmer/compiler@^0.38.0":
version "0.38.1"
@@ -729,6 +1117,11 @@
resolved "https://registry.yarnpkg.com/@glimmer/di/-/di-0.2.1.tgz#5286b6b32040232b751138f6d006130c728d4b3d"
integrity sha512-0D53YVuEgGdHfTl9LGWDZqVzGhn4cT0CXqyAuOYkKFLvqboJXz6SnkRhQNPhhA2hLVrPnvUz3+choQmPhHLGGQ==
+"@glimmer/env@^0.1.7":
+ version "0.1.7"
+ resolved "https://registry.yarnpkg.com/@glimmer/env/-/env-0.1.7.tgz#fd2d2b55a9029c6b37a6c935e8c8871ae70dfa07"
+ integrity sha1-/S0rVakCnGs3psk16MiHGucN+gc=
+
"@glimmer/interfaces@^0.38.1":
version "0.38.1"
resolved "https://registry.yarnpkg.com/@glimmer/interfaces/-/interfaces-0.38.1.tgz#5b1c174363396b99d6a6bddb35538151e4c4c989"
@@ -771,6 +1164,43 @@
resolved "https://registry.yarnpkg.com/@hashicorp/structure-icons/-/structure-icons-1.3.0.tgz#1c7c1cb43a1c1aa92b073a7aa7956495ae14c3e0"
integrity sha512-wTKpdaAPphEY2kg5QbQTSUlhqLTpBBR1+1dXp4LYTN0PtMSpetyDDDhcSyvKE8i4h2nwPJBRRfeFlE1snaHd7w==
+"@miragejs/pretender-node-polyfill@^0.1.0":
+ version "0.1.2"
+ resolved "https://registry.yarnpkg.com/@miragejs/pretender-node-polyfill/-/pretender-node-polyfill-0.1.2.tgz#d26b6b7483fb70cd62189d05c95d2f67153e43f2"
+ integrity sha512-M/BexG/p05C5lFfMunxo/QcgIJnMT2vDVCd00wNqK2ImZONIlEETZwWJu1QtLxtmYlSHlCFl3JNzp0tLe7OJ5g==
+
+"@miragejs/server@0.1.27":
+ version "0.1.27"
+ resolved "https://registry.yarnpkg.com/@miragejs/server/-/server-0.1.27.tgz#a4e850b28e384a7d92715a538b54074e38e9a931"
+ integrity sha512-UuhoUFwlZ8Y1lnmQfoNU2EmMmHq5cgbI15GN61nopfUN2KbPX4ZpuCzINcQa1WOlsFBoQzBgzqbacXxjmmT8kg==
+ dependencies:
+ "@miragejs/pretender-node-polyfill" "^0.1.0"
+ inflected "^2.0.4"
+ lodash.assign "^4.2.0"
+ lodash.camelcase "^4.3.0"
+ lodash.clonedeep "^4.5.0"
+ lodash.compact "^3.0.1"
+ lodash.find "^4.6.0"
+ lodash.flatten "^4.4.0"
+ lodash.forin "^4.4.0"
+ lodash.get "^4.4.2"
+ lodash.has "^4.5.2"
+ lodash.invokemap "^4.6.0"
+ lodash.isempty "^4.4.0"
+ lodash.isequal "^4.5.0"
+ lodash.isfunction "^3.0.9"
+ lodash.isinteger "^4.0.4"
+ lodash.isplainobject "^4.0.6"
+ lodash.lowerfirst "^4.3.1"
+ lodash.map "^4.6.0"
+ lodash.mapvalues "^4.6.0"
+ lodash.pick "^4.4.0"
+ lodash.snakecase "^4.1.1"
+ lodash.uniq "^4.5.0"
+ lodash.uniqby "^4.7.0"
+ lodash.values "^4.3.0"
+ pretender "3.0.2"
+
"@mrmlnc/readdir-enhanced@^2.2.1":
version "2.2.1"
resolved "https://registry.yarnpkg.com/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz#524af240d1a360527b730475ecfa1344aa540dde"
@@ -796,14 +1226,19 @@
resolved "https://registry.yarnpkg.com/@simple-dom/interface/-/interface-1.4.0.tgz#e8feea579232017f89b0138e2726facda6fbb71f"
integrity sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA==
-"@sinonjs/commons@^1", "@sinonjs/commons@^1.0.2":
+"@sindresorhus/is@^0.7.0":
+ version "0.7.0"
+ resolved "https://registry.yarnpkg.com/@sindresorhus/is/-/is-0.7.0.tgz#9a06f4f137ee84d7df0460c1fdb1135ffa6c50fd"
+ integrity sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==
+
+"@sinonjs/commons@^1", "@sinonjs/commons@^1.0.2", "@sinonjs/commons@^1.4.0":
version "1.4.0"
resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-1.4.0.tgz#7b3ec2d96af481d7a0321252e7b1c94724ec5a78"
integrity sha512-9jHK3YF/8HtJ9wCAbG+j8cD0i0+ATS9A7gXFqS36TblLPNy6rEEc+SB0imo91eCboGaBYGV/MT1/br/J+EE7Tw==
dependencies:
type-detect "4.0.8"
-"@sinonjs/formatio@^3.0.0", "@sinonjs/formatio@^3.1.0":
+"@sinonjs/formatio@^3.1.0", "@sinonjs/formatio@^3.2.1":
version "3.2.1"
resolved "https://registry.yarnpkg.com/@sinonjs/formatio/-/formatio-3.2.1.tgz#52310f2f9bcbc67bdac18c94ad4901b95fde267e"
integrity sha512-tsHvOB24rvyvV2+zKMmPkZ7dXX6LSLKZ7aOtXY6Edklp0uRcgGpOsQTTGTcWViFyx4uhWc6GV8QdnALbIbIdeQ==
@@ -811,15 +1246,10 @@
"@sinonjs/commons" "^1"
"@sinonjs/samsam" "^3.1.0"
-"@sinonjs/samsam@^2.1.2":
- version "2.1.3"
- resolved "https://registry.yarnpkg.com/@sinonjs/samsam/-/samsam-2.1.3.tgz#62cf2a9b624edc795134135fe37fc2ae8ea36be3"
- integrity sha512-8zNeBkSKhU9a5cRNbpCKau2WWPfan+Q2zDlcXvXyhn9EsMqgYs4qzo0XHNVlXC6ABQL8fT6nV+zzo5RTHJzyXw==
-
-"@sinonjs/samsam@^3.1.0":
- version "3.3.1"
- resolved "https://registry.yarnpkg.com/@sinonjs/samsam/-/samsam-3.3.1.tgz#e88c53fbd9d91ad9f0f2b0140c16c7c107fe0d07"
- integrity sha512-wRSfmyd81swH0hA1bxJZJ57xr22kC07a1N4zuIL47yTS04bDk6AoCkczcqHEjcRPmJ+FruGJ9WBQiJwMtIElFw==
+"@sinonjs/samsam@^3.1.0", "@sinonjs/samsam@^3.3.1":
+ version "3.3.2"
+ resolved "https://registry.yarnpkg.com/@sinonjs/samsam/-/samsam-3.3.2.tgz#63942e3d5eb0b79f6de3bef9abfad15fb4b6401b"
+ integrity sha512-ILO/rR8LfAb60Y1Yfp9vxfYAASK43NFC2mLzpvLUbCQY/Qu8YwReboseu8aheCEkyElZF2L2T9mHcR2bgdvZyA==
dependencies:
"@sinonjs/commons" "^1.0.2"
array-from "^2.1.1"
@@ -837,6 +1267,11 @@
dependencies:
"@types/estree" "*"
+"@types/broccoli-plugin@^1.3.0":
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/@types/broccoli-plugin/-/broccoli-plugin-1.3.0.tgz#38f8462fecaebc4e09a32e4d4ed1b9808f75bbca"
+ integrity sha512-SLk4/hFc2kGvgwNFrpn2O1juxFOllcHAywvlo7VwxfExLzoz1GGJ0oIZCwj5fwSpvHw4AWpZjJ1fUvb62PDayQ==
+
"@types/estree@*", "@types/estree@0.0.39":
version "0.0.39"
resolved "https://registry.yarnpkg.com/@types/estree/-/estree-0.0.39.tgz#e177e699ee1b8c22d23174caaa7422644389509f"
@@ -847,14 +1282,7 @@
resolved "https://registry.yarnpkg.com/@types/events/-/events-3.0.0.tgz#2862f3f58a9a7f7c3e78d79f130dd4d71c25c2a7"
integrity sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==
-"@types/fs-extra@^5.0.5":
- version "5.0.5"
- resolved "https://registry.yarnpkg.com/@types/fs-extra/-/fs-extra-5.0.5.tgz#080d90a792f3fa2c5559eb44bd8ef840aae9104b"
- integrity sha512-w7iqhDH9mN8eLClQOYTkhdYUOSpp25eXxfc6VbFOGtzxW34JcvctH2bKjj4jD4++z4R5iO5D+pg48W2e03I65A==
- dependencies:
- "@types/node" "*"
-
-"@types/glob@*", "@types/glob@^7.1.1":
+"@types/glob@^7.1.1":
version "7.1.1"
resolved "https://registry.yarnpkg.com/@types/glob/-/glob-7.1.1.tgz#aa59a1c6e3fbc421e07ccd31a944c30eba521575"
integrity sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==
@@ -874,22 +1302,19 @@
integrity sha512-rx29MMkRdVmzunmiA4lzBYJNnXsW/PhG4kMBy2ATsYaDjGGR75dCFEVVROKpNwlVdcUX3xxlghKQOeDPBJobng==
"@types/node@^9.6.0":
- version "9.6.47"
- resolved "https://registry.yarnpkg.com/@types/node/-/node-9.6.47.tgz#655b4a1cc52c8ab08f48cc055061990d6846bc97"
- integrity sha512-56wEJWXZs+3XXoTe/OCpdZ6czrONhy+6hT0GdPOb7HvudLTMJ1T5tuZPs37K5cPR5t+J9+vLPFDQgUQ8NWJE1w==
+ version "9.6.49"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-9.6.49.tgz#ab4df6e505db088882c8ce5417ae0bc8cbb7a8a6"
+ integrity sha512-YY0Okyn4QXC4ugJI+Kng5iWjK8A6eIHiQVaGIhJkyn0YL6Iqo0E0tBC8BuhvYcBK87vykBijM5FtMnCqaa5anA==
"@types/q@^1.5.1":
version "1.5.2"
resolved "https://registry.yarnpkg.com/@types/q/-/q-1.5.2.tgz#690a1475b84f2a884fd07cd797c00f5f31356ea8"
integrity sha512-ce5d3q03Ex0sy4R14722Rmt6MT07Ua+k4FwDfdcToYJcMKNtRVQvJ6JCAPdAmAnbRb6CsX6aYb9m96NGod9uTw==
-"@types/rimraf@^2.0.2":
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/@types/rimraf/-/rimraf-2.0.2.tgz#7f0fc3cf0ff0ad2a99bb723ae1764f30acaf8b6e"
- integrity sha512-Hm/bnWq0TCy7jmjeN5bKYij9vw5GrDFWME4IuxV08278NtU/VdGbzsBohcCUJ7+QMqmUq5hpRKB39HeQWJjztQ==
- dependencies:
- "@types/glob" "*"
- "@types/node" "*"
+"@types/symlink-or-copy@^1.2.0":
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/@types/symlink-or-copy/-/symlink-or-copy-1.2.0.tgz#4151a81b4052c80bc2becbae09f3a9ec010a9c7a"
+ integrity sha512-Lja2xYuuf2B3knEsga8ShbOdsfNOtzT73GyJmZyY7eGl2+ajOqrs8yM5ze0fsSoYwvA6bw7/Qr7OZ7PEEmYwWg==
"@webassemblyjs/ast@1.7.11":
version "1.7.11"
@@ -1034,11 +1459,6 @@
"@webassemblyjs/wast-parser" "1.7.11"
"@xtuc/long" "4.2.1"
-"@xg-wang/whatwg-fetch@^3.0.0":
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/@xg-wang/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#f7b222c012a238e7d6e89ed3d72a1e0edb58453d"
- integrity sha512-ULtqA6L75RLzTNW68IiOja0XYv4Ebc3OGMzfia1xxSEMpD0mk/pMvkQX0vbCFyQmKc5xGp80Ms2WiSlXLh8hbA==
-
"@xtuc/ieee754@^1.2.0":
version "1.2.0"
resolved "https://registry.yarnpkg.com/@xtuc/ieee754/-/ieee754-1.2.0.tgz#eef014a3145ae477a1cbc00cd1e552336dceb790"
@@ -1049,12 +1469,17 @@
resolved "https://registry.yarnpkg.com/@xtuc/long/-/long-4.2.1.tgz#5c85d662f76fa1d34575766c5dcd6615abcd30d8"
integrity sha512-FZdkNBDqBRHKQ2MEbSC17xnPFOhZxeJ2YGSfr2BKf3sujG49Qe3bB+rGCwQfIaA7WHnGeGkSijX4FuBCdrzW/g==
+abab@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/abab/-/abab-2.0.0.tgz#aba0ab4c5eee2d4c79d3487d85450fb2376ebb0f"
+ integrity sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w==
+
abbrev@1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/abbrev/-/abbrev-1.1.1.tgz#f8f2c887ad10bf67f634f005b6987fed3179aac8"
integrity sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==
-abortcontroller-polyfill@^1.2.5:
+abortcontroller-polyfill@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/abortcontroller-polyfill/-/abortcontroller-polyfill-1.3.0.tgz#de69af32ae926c210b7efbcc29bf644ee4838b00"
integrity sha512-lbWQgf+eRvku3va8poBlDBO12FigTQr9Zb7NIjXrePrhxWVKdCP2wbDl1tLDaYa18PWTom3UEWwdH13S46I+yA==
@@ -1067,6 +1492,14 @@ accepts@~1.3.4, accepts@~1.3.5:
mime-types "~2.1.18"
negotiator "0.6.1"
+accepts@~1.3.7:
+ version "1.3.7"
+ resolved "https://registry.yarnpkg.com/accepts/-/accepts-1.3.7.tgz#531bc726517a3b2b41f850021c6cc15eaab507cd"
+ integrity sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==
+ dependencies:
+ mime-types "~2.1.24"
+ negotiator "0.6.2"
+
acorn-dynamic-import@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/acorn-dynamic-import/-/acorn-dynamic-import-3.0.0.tgz#901ceee4c7faaef7e07ad2a47e890675da50a278"
@@ -1074,21 +1507,44 @@ acorn-dynamic-import@^3.0.0:
dependencies:
acorn "^5.0.0"
+acorn-globals@^4.3.0:
+ version "4.3.3"
+ resolved "https://registry.yarnpkg.com/acorn-globals/-/acorn-globals-4.3.3.tgz#a86f75b69680b8780d30edd21eee4e0ea170c05e"
+ integrity sha512-vkR40VwS2SYO98AIeFvzWWh+xyc2qi9s7OoXSFEGIP/rOJKzjnhykaZJNnHdoq4BL2gGxI5EZOU16z896EYnOQ==
+ dependencies:
+ acorn "^6.0.1"
+ acorn-walk "^6.0.1"
+
acorn-jsx@^5.0.0:
version "5.0.1"
resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.0.1.tgz#32a064fd925429216a09b141102bfdd185fae40e"
integrity sha512-HJ7CfNHrfJLlNTzIEUTj43LNWGkqpRLxm3YjAlcD0ACydk9XynzYsCBHxut+iqt+1aBXkx9UP/w/ZqMr13XIzg==
+acorn-walk@^6.0.1:
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/acorn-walk/-/acorn-walk-6.2.0.tgz#123cb8f3b84c2171f1f7fb252615b1c78a6b1a8c"
+ integrity sha512-7evsyfH1cLOCdAzZAd43Cic04yKydNx0cF+7tiA19p1XnLLPU4dpCQOqpjqwokFe//vS0QqfqqjCS2JkiIs0cA==
+
acorn@^5.0.0, acorn@^5.5.3, acorn@^5.6.2:
version "5.7.3"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-5.7.3.tgz#67aa231bf8812974b85235a96771eb6bd07ea279"
integrity sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==
+acorn@^6.0.1, acorn@^6.0.2:
+ version "6.3.0"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.3.0.tgz#0087509119ffa4fc0a0041d1e93a417e68cb856e"
+ integrity sha512-/czfa8BwS88b9gWQVhc8eknunSA2DoJpJyTQkhheIf5E48u1N0R4q/YxxsAeqRrmK9TQ/uYfgLDfZo91UlANIA==
+
acorn@^6.0.7:
version "6.1.1"
resolved "https://registry.yarnpkg.com/acorn/-/acorn-6.1.1.tgz#7d25ae05bb8ad1f9b699108e1094ecd7884adc1f"
integrity sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA==
+acorn@^7.1.0:
+ version "7.1.0"
+ resolved "https://registry.yarnpkg.com/acorn/-/acorn-7.1.0.tgz#949d36f2c292535da602283586c2477c57eb2d6c"
+ integrity sha512-kL5CuoXA/dgxlBbVrflsflzQ3PAas7RYZB52NOm/6839iVYJgKMJ3cQJD+t2i5+qFa8h3MDpEOJiS64E8JLnSQ==
+
after@0.8.2:
version "0.8.2"
resolved "https://registry.yarnpkg.com/after/-/after-0.8.2.tgz#fedb394f9f0e02aa9768e702bda23b505fae7e1f"
@@ -1100,11 +1556,21 @@ ajv-errors@^1.0.0:
integrity sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==
ajv-keywords@^3.1.0:
- version "3.4.0"
- resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.0.tgz#4b831e7b531415a7cc518cd404e73f6193c6349d"
- integrity sha512-aUjdRFISbuFOl0EIZc+9e4FfZp0bDZgAdOOf30bJmw8VM9v84SHyVyxDfbWxpGYbdZD/9XoKxfHVNmxPkhwyGw==
+ version "3.4.1"
+ resolved "https://registry.yarnpkg.com/ajv-keywords/-/ajv-keywords-3.4.1.tgz#ef916e271c64ac12171fd8384eaae6b2345854da"
+ integrity sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==
-ajv@^6.1.0, ajv@^6.5.5, ajv@^6.9.1:
+ajv@^6.1.0:
+ version "6.10.1"
+ resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.1.tgz#ebf8d3af22552df9dd049bfbe50cc2390e823593"
+ integrity sha512-w1YQaVGNC6t2UCPjEawK/vo/dG8OOrVtUmhBT1uJJYxbl5kU2Tj3v6LGqBcsysN1yhuCStJCCA3GqdvKY8sqXQ==
+ dependencies:
+ fast-deep-equal "^2.0.1"
+ fast-json-stable-stringify "^2.0.0"
+ json-schema-traverse "^0.4.1"
+ uri-js "^4.2.2"
+
+ajv@^6.5.5, ajv@^6.9.1:
version "6.10.0"
resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.10.0.tgz#90d0d54439da587cd7e843bfb7045f50bd22bdf1"
integrity sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==
@@ -1121,7 +1587,7 @@ amd-name-resolver@1.2.0:
dependencies:
ensure-posix-path "^1.0.1"
-amd-name-resolver@^1.2.0, amd-name-resolver@^1.2.1:
+amd-name-resolver@^1.2.0, amd-name-resolver@^1.2.1, amd-name-resolver@^1.3.1:
version "1.3.1"
resolved "https://registry.yarnpkg.com/amd-name-resolver/-/amd-name-resolver-1.3.1.tgz#ffe71c683c6e7191fc4ae1bb3aaed15abea135d9"
integrity sha512-26qTEWqZQ+cxSYygZ4Cf8tsjDBLceJahhtewxtKZA3SRa4PluuqYCuheemDQD+7Mf5B7sr+zhTDWAHDh02a1Dw==
@@ -1139,16 +1605,16 @@ anser@^1.4.8:
resolved "https://registry.yarnpkg.com/anser/-/anser-1.4.8.tgz#19a3bfc5f0e31c49efaea38f58fd0d136597f2a3"
integrity sha512-tVHucTCKIt9VRrpQKzPtOlwm/3AmyQ7J+QE29ixFnvuE2hm83utEVrN7jJapYkHV6hI0HOHkEX9TOMCzHtwvuA==
-ansi-escapes@^1.1.0:
- version "1.4.0"
- resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-1.4.0.tgz#d3a8a83b319aa67793662b13e761c7911422306e"
- integrity sha1-06ioOzGapneTZisT52HHkRQiMG4=
-
ansi-escapes@^3.0.0, ansi-escapes@^3.2.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-3.2.0.tgz#8780b98ff9dbf5638152d1f1fe5c1d7b4442976b"
integrity sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==
+ansi-html@^0.0.7:
+ version "0.0.7"
+ resolved "https://registry.yarnpkg.com/ansi-html/-/ansi-html-0.0.7.tgz#813584021962a9e9e6fd039f940d12f56ca7859e"
+ integrity sha1-gTWEAhliqenm/QOflA0S9WynhZ4=
+
ansi-regex@^2.0.0:
version "2.1.1"
resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df"
@@ -1176,6 +1642,13 @@ ansi-styles@^3.0.0, ansi-styles@^3.2.0, ansi-styles@^3.2.1:
dependencies:
color-convert "^1.9.0"
+ansi-to-html@^0.6.6:
+ version "0.6.11"
+ resolved "https://registry.yarnpkg.com/ansi-to-html/-/ansi-to-html-0.6.11.tgz#5093fc4962186c0e9343dec572a4f71abdc93439"
+ integrity sha512-88XZtrcwrfkyn6fGstHnkaF1kl7hGtNCYh4vSmItgEV+6JnQHryDBf7udF4f2RhTRQmYvJvPcTtqgaqrxzc9oA==
+ dependencies:
+ entities "^1.1.1"
+
ansicolors@~0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.2.1.tgz#be089599097b74a5c9c4a84a0cdbcdb62bd87aef"
@@ -1311,16 +1784,22 @@ asn1@~0.2.3:
dependencies:
safer-buffer "~2.1.0"
+assert-never@^1.1.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/assert-never/-/assert-never-1.2.0.tgz#e6597ed9e357f7e62c074dfa7c71e30ed7b67a8b"
+ integrity sha512-61QPxh2lfV5j2dBsEtwhz8/sUj+baAIuCpQxeWorGeMxlTkbeyGyq7igxJB8yij1JdzUhyoiekNHMXrMYnkjvA==
+
assert-plus@1.0.0, assert-plus@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/assert-plus/-/assert-plus-1.0.0.tgz#f12e0f3c5d77b0b1cdd9146942e4e96c1e4dd525"
integrity sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=
assert@^1.1.1:
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/assert/-/assert-1.4.1.tgz#99912d591836b5a6f5b345c0f07eefc08fc65d91"
- integrity sha1-mZEtWRg2tab1s0XA8H7vwI/GXZE=
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/assert/-/assert-1.5.0.tgz#55c109aaf6e0aefdb3dc4b71240c70bf574b18eb"
+ integrity sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==
dependencies:
+ object-assign "^4.1.1"
util "0.10.3"
assign-symbols@^1.0.0:
@@ -1357,9 +1836,9 @@ async-disk-cache@^1.2.1:
username-sync "^1.0.2"
async-each@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.2.tgz#8b8a7ca2a658f927e9f307d6d1a42f4199f0f735"
- integrity sha512-6xrbvN0MOBKSJDdonmSSz2OwFSgxRaVtBDes26mj9KIGtDo+g9xosFRSC+i1gQh2oAN/tQ62AI/pGZGQjVOiRg==
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/async-each/-/async-each-1.0.3.tgz#b727dbf87d7651602f06f4d4ac387f47d91b0cbf"
+ integrity sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==
async-foreach@^0.1.3:
version "0.1.3"
@@ -1371,7 +1850,15 @@ async-limiter@~1.0.0:
resolved "https://registry.yarnpkg.com/async-limiter/-/async-limiter-1.0.0.tgz#78faed8c3d074ab81f22b4e985d79e8738f720f8"
integrity sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==
-async-promise-queue@^1.0.3, async-promise-queue@^1.0.4:
+async-promise-queue@^1.0.3:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/async-promise-queue/-/async-promise-queue-1.0.5.tgz#cb23bce9fce903a133946a700cc85f27f09ea49d"
+ integrity sha512-xi0aQ1rrjPWYmqbwr18rrSKbSaXIeIwSd1J4KAgVfkq8utNbdZoht7GfvfY6swFUAMJ9obkc4WPJmtGwl+B8dw==
+ dependencies:
+ async "^2.4.1"
+ debug "^2.6.8"
+
+async-promise-queue@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/async-promise-queue/-/async-promise-queue-1.0.4.tgz#308baafbc74aff66a0bb6e7f4a18d4fe8434440c"
integrity sha512-GQ5X3DT+TefYuFPHdvIPXFTlKnh39U7dwtl+aUBGeKjMea9nBpv3c91DXgeyBQmY07vQ97f3Sr9XHqkamEameQ==
@@ -1384,7 +1871,7 @@ async@^1.5.2:
resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
integrity sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=
-async@^2.4.1, async@^2.5.0:
+async@^2.4.1:
version "2.6.2"
resolved "https://registry.yarnpkg.com/async/-/async-2.6.2.tgz#18330ea7e6e313887f5d2f2a904bac6fe4dd5381"
integrity sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==
@@ -1577,6 +2064,16 @@ babel-helpers@^6.24.1:
babel-runtime "^6.22.0"
babel-template "^6.24.1"
+babel-loader@^8.0.6:
+ version "8.0.6"
+ resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-8.0.6.tgz#e33bdb6f362b03f4bb141a0c21ab87c501b70dfb"
+ integrity sha512-4BmWKtBOBm13uoUwd08UwjZlaw3O9GWf456R9j+5YykFZ6LUIjIKLc0zEZf+hauxPOJs96C8k6FvYD09vWzhYw==
+ dependencies:
+ find-cache-dir "^2.0.0"
+ loader-utils "^1.0.2"
+ mkdirp "^0.5.1"
+ pify "^4.0.1"
+
babel-messages@^6.23.0:
version "6.23.0"
resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e"
@@ -1606,20 +2103,34 @@ babel-plugin-debug-macros@^0.2.0, babel-plugin-debug-macros@^0.2.0-beta.6:
semver "^5.3.0"
babel-plugin-debug-macros@^0.3.0:
- version "0.3.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-debug-macros/-/babel-plugin-debug-macros-0.3.0.tgz#7a025944faef0777804ef3518c54e8b040197397"
- integrity sha512-D6qYBI/3+FvcKVnRnH6FBUwXPp/5o/jnJNVFKqVaZpYAWx88+R8jNNyaEX7iQFs7UfCib6rcY/9+ICR4jhjFCQ==
+ version "0.3.2"
+ resolved "https://registry.yarnpkg.com/babel-plugin-debug-macros/-/babel-plugin-debug-macros-0.3.2.tgz#b536a29386fac76f525bf1b73c4f74cd5281c5fa"
+ integrity sha512-CslqMZ3RGUvlEERuKr+wrXcHqQGvQ9ALLrbcOt8aSEp4ySfNCHAQbuGQYKZYw3P30/VGkPaR0Begch+dbqgEpg==
dependencies:
semver "^5.3.0"
-babel-plugin-ember-modules-api-polyfill@^2.6.0, babel-plugin-ember-modules-api-polyfill@^2.8.0:
- version "2.8.0"
- resolved "https://registry.yarnpkg.com/babel-plugin-ember-modules-api-polyfill/-/babel-plugin-ember-modules-api-polyfill-2.8.0.tgz#70244800f750bf1c9f380910c1b2eed1db80ab4a"
- integrity sha512-3dlBH92qx8so2pRoks73+gwnuX97d0ajirOr96GwTZMnZxFzVR02c/PQbKWBcxpPqoL8CJSE2onuWM8PWezhOQ==
+babel-plugin-debug-macros@^0.3.2:
+ version "0.3.3"
+ resolved "https://registry.yarnpkg.com/babel-plugin-debug-macros/-/babel-plugin-debug-macros-0.3.3.tgz#29c3449d663f61c7385f5b8c72d8015b069a5cb7"
+ integrity sha512-E+NI8TKpxJDBbVkdWkwHrKgJi696mnRL8XYrOPYw82veNHPDORM9WIQifl6TpIo8PNy2tU2skPqbfkmHXrHKQA==
dependencies:
- ember-rfc176-data "^0.3.8"
+ semver "^5.3.0"
-babel-plugin-ember-modules-api-polyfill@^2.9.0:
+babel-plugin-dynamic-import-node@^2.3.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-dynamic-import-node/-/babel-plugin-dynamic-import-node-2.3.0.tgz#f00f507bdaa3c3e3ff6e7e5e98d90a7acab96f7f"
+ integrity sha512-o6qFkpeQEBxcqt0XYlWzAVxNCSCZdUgcR8IRlhD/8DylxjjO4foPcvTW0GGKa/cVt3rvxZ7o5ippJ+/0nvLhlQ==
+ dependencies:
+ object.assign "^4.1.0"
+
+babel-plugin-ember-modules-api-polyfill@^2.12.0:
+ version "2.12.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-ember-modules-api-polyfill/-/babel-plugin-ember-modules-api-polyfill-2.12.0.tgz#a5e703205ba4e625a7fab9bb1aea64ef3222cf75"
+ integrity sha512-ZQU4quX0TJ1yYyosPy5PFigKdCFEVHJ6H0b3hwjxekIP9CDwzk0OhQuKhCOPti+d52VWjjCjxu2BrXEih29mFw==
+ dependencies:
+ ember-rfc176-data "^0.3.12"
+
+babel-plugin-ember-modules-api-polyfill@^2.6.0, babel-plugin-ember-modules-api-polyfill@^2.8.0, babel-plugin-ember-modules-api-polyfill@^2.9.0:
version "2.9.0"
resolved "https://registry.yarnpkg.com/babel-plugin-ember-modules-api-polyfill/-/babel-plugin-ember-modules-api-polyfill-2.9.0.tgz#8503e7b4192aeb336b00265e6235258ff6b754aa"
integrity sha512-c03h50291phJ2gQxo/aIOvFQE2c6glql1A7uagE3XbPXpKVAJOUxtVDjvWG6UAB6BC5ynsJfMWvY0w4TPRKIHQ==
@@ -1631,17 +2142,20 @@ babel-plugin-feature-flags@^0.3.1:
resolved "https://registry.yarnpkg.com/babel-plugin-feature-flags/-/babel-plugin-feature-flags-0.3.1.tgz#9c827cf9a4eb9a19f725ccb239e85cab02036fc1"
integrity sha1-nIJ8+aTrmhn3JcyyOehcqwIDb8E=
-babel-plugin-filter-imports@^0.3.1:
- version "0.3.1"
- resolved "https://registry.yarnpkg.com/babel-plugin-filter-imports/-/babel-plugin-filter-imports-0.3.1.tgz#e7859b56886b175dd2616425d277b219e209ea8b"
- integrity sha1-54WbVohrF13SYWQl0neyGeIJ6os=
+babel-plugin-filter-imports@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-filter-imports/-/babel-plugin-filter-imports-3.0.0.tgz#a849683837ad29960da17492fb32789ab6b09a11"
+ integrity sha512-p/chjzVTgCxUqyLM0q/pfWVZS7IJTwGQMwNg0LOvuQpKiTftQgZDtkGB8XvETnUw19rRcL7bJCTopSwibTN2tA==
+ dependencies:
+ "@babel/types" "^7.4.0"
+ lodash "^4.17.11"
-babel-plugin-htmlbars-inline-precompile@^0.2.5:
- version "0.2.6"
- resolved "https://registry.yarnpkg.com/babel-plugin-htmlbars-inline-precompile/-/babel-plugin-htmlbars-inline-precompile-0.2.6.tgz#c00b8a3f4b32ca04bf0f0d5169fcef3b5a66d69d"
- integrity sha512-H4H75TKGUFij8ukwEYWEERAgrUf16R8NSK1uDPe3QwxT8mnE1K8+/s6DVjUqbM5Pv6lSIcE4XufXdlSX+DTB6g==
+babel-plugin-htmlbars-inline-precompile@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/babel-plugin-htmlbars-inline-precompile/-/babel-plugin-htmlbars-inline-precompile-1.0.0.tgz#a9d2f6eaad8a3f3d361602de593a8cbef8179c22"
+ integrity sha512-4jvKEHR1bAX03hBDZ94IXsYCj3bwk9vYsn6ux6JZNL2U5pvzCWjqyrGahfsGNrhERyxw8IqcirOi9Q6WCo3dkQ==
-babel-plugin-module-resolver@^3.1.1:
+babel-plugin-module-resolver@^3.1.1, babel-plugin-module-resolver@^3.2.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/babel-plugin-module-resolver/-/babel-plugin-module-resolver-3.2.0.tgz#ddfa5e301e3b9aa12d852a9979f18b37881ff5a7"
integrity sha512-tjR0GvSndzPew/Iayf4uICWZqjBwnlMWjSx6brryfQ81F9rxBVqwDJtFCV8oOs0+vJeefK9TmdZtkIFdFe1UnA==
@@ -1695,7 +2209,7 @@ babel-plugin-transform-es2015-block-scoped-functions@^6.22.0:
dependencies:
babel-runtime "^6.22.0"
-babel-plugin-transform-es2015-block-scoping@^6.23.0, babel-plugin-transform-es2015-block-scoping@^6.26.0:
+babel-plugin-transform-es2015-block-scoping@^6.23.0:
version "6.26.0"
resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f"
integrity sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8=
@@ -2002,11 +2516,6 @@ babel6-plugin-strip-class-callcheck@^6.0.0:
resolved "https://registry.yarnpkg.com/babel6-plugin-strip-class-callcheck/-/babel6-plugin-strip-class-callcheck-6.0.0.tgz#de841c1abebbd39f78de0affb2c9a52ee228fddf"
integrity sha1-3oQcGr6705943gr/ssmlLuIo/d8=
-babel6-plugin-strip-heimdall@^6.0.1:
- version "6.0.1"
- resolved "https://registry.yarnpkg.com/babel6-plugin-strip-heimdall/-/babel6-plugin-strip-heimdall-6.0.1.tgz#35f80eddec1f7fffdc009811dfbd46d9965072b6"
- integrity sha1-NfgO3ewff//cAJgR371G2ZZQcrY=
-
babylon@^6.18.0:
version "6.18.0"
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3"
@@ -2110,11 +2619,16 @@ block-stream@*:
dependencies:
inherits "~2.0.0"
-bluebird@^3.1.1, bluebird@^3.4.6, bluebird@^3.5.3:
+bluebird@^3.1.1, bluebird@^3.4.6:
version "3.5.3"
resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.3.tgz#7d01c6f9616c9a51ab0f8c549a79dfe6ec33efa7"
integrity sha512-/qKPUQlaW1OyR51WeCPBvRnAlnZFUJkCSG5HzGnuIqhgyJtF+T94lFnn33eiazjRm2LAHVy2guNnaq48X9SJuw==
+bluebird@^3.5.5:
+ version "3.5.5"
+ resolved "https://registry.yarnpkg.com/bluebird/-/bluebird-3.5.5.tgz#a8d0afd73251effbbd5fe384a77d73003c17a71f"
+ integrity sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==
+
bn.js@^4.0.0, bn.js@^4.1.0, bn.js@^4.1.1, bn.js@^4.4.0:
version "4.11.8"
resolved "https://registry.yarnpkg.com/bn.js/-/bn.js-4.11.8.tgz#2cde09eb5ee341f484746bb0309b3253b1b1442f"
@@ -2136,6 +2650,22 @@ body-parser@1.18.3:
raw-body "2.3.3"
type-is "~1.6.16"
+body-parser@1.19.0:
+ version "1.19.0"
+ resolved "https://registry.yarnpkg.com/body-parser/-/body-parser-1.19.0.tgz#96b2709e57c9c4e09a6fd66a8fd979844f69f08a"
+ integrity sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==
+ dependencies:
+ bytes "3.1.0"
+ content-type "~1.0.4"
+ debug "2.6.9"
+ depd "~1.1.2"
+ http-errors "1.7.2"
+ iconv-lite "0.4.24"
+ on-finished "~2.3.0"
+ qs "6.7.0"
+ raw-body "2.4.0"
+ type-is "~1.6.17"
+
body@^5.1.0:
version "5.1.0"
resolved "https://registry.yarnpkg.com/body/-/body-5.1.0.tgz#e4ba0ce410a46936323367609ecb4e6553125069"
@@ -2151,7 +2681,7 @@ boolbase@^1.0.0, boolbase@~1.0.0:
resolved "https://registry.yarnpkg.com/boolbase/-/boolbase-1.0.0.tgz#68dff5fbe60c51eb37725ea9e3ed310dcc1e776e"
integrity sha1-aN/1++YMUes3cl6p4+0xDcwed24=
-bower-config@^1.3.0:
+bower-config@^1.4.1:
version "1.4.1"
resolved "https://registry.yarnpkg.com/bower-config/-/bower-config-1.4.1.tgz#85fd9df367c2b8dbbd0caa4c5f2bad40cd84c2cc"
integrity sha1-hf2d82fCuNu9DKpMXyutQM2Ewsw=
@@ -2191,10 +2721,10 @@ braces@^2.3.1, braces@^2.3.2:
split-string "^3.0.2"
to-regex "^3.0.1"
-broccoli-amd-funnel@^1.3.0:
- version "1.3.0"
- resolved "https://registry.yarnpkg.com/broccoli-amd-funnel/-/broccoli-amd-funnel-1.3.0.tgz#c4426b4fce976e44295bd74f34725f53bdeb08e3"
- integrity sha512-QLjCWblDW//a/5/ivDikVPRHiA+d/1K45meHZA6lAlpHC1c216rcZQYpdlo9PiOJiI4T3tKqDaaM1CDeFDCoVQ==
+broccoli-amd-funnel@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/broccoli-amd-funnel/-/broccoli-amd-funnel-2.0.1.tgz#dbdbfd28841731342d538126567c25bea3f15310"
+ integrity sha512-VRE+0PYAN4jQfkIq3GKRj4U/4UV9rVpLan5ll6fVYV4ziVg4OEfR5GUnILEg++QtR4xSaugRxCPU5XJLDy3bNQ==
dependencies:
broccoli-plugin "^1.3.0"
symlink-or-copy "^1.2.0"
@@ -2251,6 +2781,23 @@ broccoli-babel-transpiler@^7.1.2:
rsvp "^4.8.4"
workerpool "^3.1.1"
+broccoli-babel-transpiler@^7.2.0, broccoli-babel-transpiler@^7.3.0:
+ version "7.3.0"
+ resolved "https://registry.yarnpkg.com/broccoli-babel-transpiler/-/broccoli-babel-transpiler-7.3.0.tgz#a0ad3a37dbf74469664bbca403d652070c2c1317"
+ integrity sha512-tsXNvDf3gp6g8rGkz234AhbaIRUsCdd6CM3ikfkJVB0EpC8ZAczGsFKTjENLy1etx4s7FkruW/QjI7Wfdhx6Ng==
+ dependencies:
+ "@babel/core" "^7.3.3"
+ "@babel/polyfill" "^7.0.0"
+ broccoli-funnel "^2.0.2"
+ broccoli-merge-trees "^3.0.2"
+ broccoli-persistent-filter "^2.2.1"
+ clone "^2.1.2"
+ hash-for-dep "^1.4.7"
+ heimdalljs-logger "^0.1.9"
+ json-stable-stringify "^1.0.1"
+ rsvp "^4.8.4"
+ workerpool "^3.1.1"
+
broccoli-builder@^0.18.14:
version "0.18.14"
resolved "https://registry.yarnpkg.com/broccoli-builder/-/broccoli-builder-0.18.14.tgz#4b79e2f844de11a4e1b816c3f49c6df4776c312d"
@@ -2298,7 +2845,7 @@ broccoli-clean-css@^1.1.0:
inline-source-map-comment "^1.0.5"
json-stable-stringify "^1.0.0"
-broccoli-concat@^3.2.2, broccoli-concat@^3.5.1, broccoli-concat@^3.7.1:
+broccoli-concat@^3.2.2, broccoli-concat@^3.7.1, broccoli-concat@^3.7.3:
version "3.7.3"
resolved "https://registry.yarnpkg.com/broccoli-concat/-/broccoli-concat-3.7.3.tgz#0dca01311567ffb13180e6b4eb111824628e4885"
integrity sha512-2Ma9h81EJ0PRb9n4sW0i8KZlcnpTQfKxcj87zvi5DFe1fd8CTDEdseHDotK2beuA2l+LbgVPfd8EHaBJKm/Y8g==
@@ -2389,6 +2936,25 @@ broccoli-funnel-reducer@^1.0.0:
resolved "https://registry.yarnpkg.com/broccoli-funnel-reducer/-/broccoli-funnel-reducer-1.0.0.tgz#11365b2a785aec9b17972a36df87eef24c5cc0ea"
integrity sha1-ETZbKnha7JsXlyo234fu8kxcwOo=
+broccoli-funnel@2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/broccoli-funnel/-/broccoli-funnel-2.0.1.tgz#6823c73b675ef78fffa7ab800f083e768b51d449"
+ integrity sha512-C8Lnp9TVsSSiZMGEF16C0dCiNg2oJqUKwuZ1K4kVC6qRPG/2Cj/rtB5kRCC9qEbwqhX71bDbfHROx0L3J7zXQg==
+ dependencies:
+ array-equal "^1.0.0"
+ blank-object "^1.0.1"
+ broccoli-plugin "^1.3.0"
+ debug "^2.2.0"
+ fast-ordered-set "^1.0.0"
+ fs-tree-diff "^0.5.3"
+ heimdalljs "^0.2.0"
+ minimatch "^3.0.0"
+ mkdirp "^0.5.0"
+ path-posix "^1.0.0"
+ rimraf "^2.4.3"
+ symlink-or-copy "^1.0.0"
+ walk-sync "^0.3.1"
+
broccoli-funnel@^1.0.0, broccoli-funnel@^1.0.1, broccoli-funnel@^1.1.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/broccoli-funnel/-/broccoli-funnel-1.2.0.tgz#cddc3afc5ff1685a8023488fff74ce6fb5a51296"
@@ -2519,6 +3085,11 @@ broccoli-node-info@^1.1.0:
resolved "https://registry.yarnpkg.com/broccoli-node-info/-/broccoli-node-info-1.1.0.tgz#3aa2e31e07e5bdb516dd25214f7c45ba1c459412"
integrity sha1-OqLjHgflvbUW3SUhT3xFuhxFlBI=
+broccoli-node-info@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/broccoli-node-info/-/broccoli-node-info-2.1.0.tgz#ca84560e8570ff78565bea1699866ddbf58ad644"
+ integrity sha512-l6qDuboJThHfRVVWQVaTs++bFdrFTP0gJXgsWenczc1PavRVUmL1Eyb2swTAXXMpDOnr2zhNOBLx4w9AxkqbPQ==
+
broccoli-persistent-filter@^1.1.5, broccoli-persistent-filter@^1.1.6, broccoli-persistent-filter@^1.4.3:
version "1.4.6"
resolved "https://registry.yarnpkg.com/broccoli-persistent-filter/-/broccoli-persistent-filter-1.4.6.tgz#80762d19000880a77da33c34373299c0f6a3e615"
@@ -2538,7 +3109,7 @@ broccoli-persistent-filter@^1.1.5, broccoli-persistent-filter@^1.1.6, broccoli-p
symlink-or-copy "^1.0.1"
walk-sync "^0.3.1"
-broccoli-persistent-filter@^2.1.0, broccoli-persistent-filter@^2.1.1, broccoli-persistent-filter@^2.2.1:
+broccoli-persistent-filter@^2.1.0:
version "2.2.2"
resolved "https://registry.yarnpkg.com/broccoli-persistent-filter/-/broccoli-persistent-filter-2.2.2.tgz#e0180e75ede5dd05d4c702f24f6c049e93fba915"
integrity sha512-PW12RD1yY+x5SASUADuUMJce+dVSmjBO3pV1rLNHmT1C31rp1P++TvX7AgUObFmGhL7qlwviSdhMbBkY1v3G2w==
@@ -2557,6 +3128,26 @@ broccoli-persistent-filter@^2.1.0, broccoli-persistent-filter@^2.1.1, broccoli-p
symlink-or-copy "^1.0.1"
walk-sync "^1.0.0"
+broccoli-persistent-filter@^2.1.1, broccoli-persistent-filter@^2.2.1, broccoli-persistent-filter@^2.2.2, broccoli-persistent-filter@^2.3.1:
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/broccoli-persistent-filter/-/broccoli-persistent-filter-2.3.1.tgz#4a052e0e0868b344c3a2977e35a3d497aa9eca72"
+ integrity sha512-hVsmIgCDrl2NFM+3Gs4Cr2TA6UPaIZip99hN8mtkaUPgM8UeVnCbxelCvBjUBHo0oaaqP5jzqqnRVvb568Yu5g==
+ dependencies:
+ async-disk-cache "^1.2.1"
+ async-promise-queue "^1.0.3"
+ broccoli-plugin "^1.0.0"
+ fs-tree-diff "^2.0.0"
+ hash-for-dep "^1.5.0"
+ heimdalljs "^0.2.1"
+ heimdalljs-logger "^0.1.7"
+ mkdirp "^0.5.1"
+ promise-map-series "^0.2.1"
+ rimraf "^2.6.1"
+ rsvp "^4.7.0"
+ symlink-or-copy "^1.0.1"
+ sync-disk-cache "^1.3.3"
+ walk-sync "^1.0.0"
+
broccoli-plugin@1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/broccoli-plugin/-/broccoli-plugin-1.1.0.tgz#73e2cfa05f8ea1e3fc1420c40c3d9e7dc724bf02"
@@ -2577,6 +3168,16 @@ broccoli-plugin@^1.0.0, broccoli-plugin@^1.1.0, broccoli-plugin@^1.2.0, broccoli
rimraf "^2.3.4"
symlink-or-copy "^1.1.8"
+broccoli-plugin@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/broccoli-plugin/-/broccoli-plugin-2.1.0.tgz#2fab6c578219cfcc64f773e9616073313fc8b334"
+ integrity sha512-ElE4caljW4slapyEhSD9jU9Uayc8SoSABWdmY9SqbV8DHNxU6xg1jJsPcMm+cXOvggR3+G+OXAYQeFjWVnznaw==
+ dependencies:
+ promise-map-series "^0.2.1"
+ quick-temp "^0.1.3"
+ rimraf "^2.3.4"
+ symlink-or-copy "^1.1.8"
+
broccoli-rollup@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/broccoli-rollup/-/broccoli-rollup-2.1.1.tgz#0b77dc4b7560a53e998ea85f3b56772612d4988d"
@@ -2594,6 +3195,21 @@ broccoli-rollup@^2.1.1:
symlink-or-copy "^1.1.8"
walk-sync "^0.3.1"
+broccoli-rollup@^4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/broccoli-rollup/-/broccoli-rollup-4.1.1.tgz#7531a24d88ddab9f1bace1c6ee6e6ca74a38d36f"
+ integrity sha512-hkp0dB5chiemi32t6hLe5bJvxuTOm1TU+SryFlZIs95KT9+94uj0C8w6k6CsZ2HuIdIZg6D252t4gwOlcTXrpA==
+ dependencies:
+ "@types/broccoli-plugin" "^1.3.0"
+ broccoli-plugin "^2.0.0"
+ fs-tree-diff "^2.0.1"
+ heimdalljs "^0.2.6"
+ node-modules-path "^1.0.1"
+ rollup "^1.12.0"
+ rollup-pluginutils "^2.8.1"
+ symlink-or-copy "^1.2.0"
+ walk-sync "^1.1.3"
+
broccoli-sass-source-maps@^2.0.0:
version "2.2.0"
resolved "https://registry.yarnpkg.com/broccoli-sass-source-maps/-/broccoli-sass-source-maps-2.2.0.tgz#1f1a0794136152b096188638b59b42b17a4bdc68"
@@ -2660,7 +3276,7 @@ broccoli-stew@^1.5.0:
symlink-or-copy "^1.2.0"
walk-sync "^0.3.0"
-broccoli-stew@^2.0.0, broccoli-stew@^2.0.1:
+broccoli-stew@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/broccoli-stew/-/broccoli-stew-2.1.0.tgz#ba73add17fda3b9b01d8cfb343a8b613b7136a0a"
integrity sha512-tgCkuTWYl4uf7k7ib2D79KFEj2hCgnTUNPMnrCoAha0/4bywcNccmaZVWtL9Ex37yX5h5eAbnM/ak2ULoMwSSw==
@@ -2716,11 +3332,44 @@ broccoli-uglify-sourcemap@^2.1.1:
walk-sync "^0.3.2"
workerpool "^2.3.0"
+broccoli@^3.1.1:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/broccoli/-/broccoli-3.2.0.tgz#6b5a89b8d6d0c733d39aa23ac5b43d85f56fafab"
+ integrity sha512-n58yqAbV2Zbg+HXmBGBOUoDOgbCM0hMJtqvnPDF89Jwk3ZBVhD5/UKW0diY6l3DbB5+j92NCDQVd9HqO+WYFYA==
+ dependencies:
+ ansi-html "^0.0.7"
+ broccoli-node-info "^2.1.0"
+ broccoli-slow-trees "^3.0.1"
+ broccoli-source "^1.1.0"
+ commander "^2.15.1"
+ connect "^3.6.6"
+ console-ui "^3.0.4"
+ esm "^3.2.4"
+ findup-sync "^2.0.0"
+ handlebars "^4.0.11"
+ heimdalljs "^0.2.6"
+ heimdalljs-logger "^0.1.9"
+ https "^1.0.0"
+ mime-types "^2.1.19"
+ promise.prototype.finally "^3.1.0"
+ resolve-path "^1.4.0"
+ rimraf "^2.6.2"
+ sane "^4.0.0"
+ tmp "0.0.33"
+ tree-sync "^1.2.2"
+ underscore.string "^3.2.2"
+ watch-detector "^0.1.0"
+
brorand@^1.0.1:
version "1.1.0"
resolved "https://registry.yarnpkg.com/brorand/-/brorand-1.1.0.tgz#12c25efe40a45e3c323eb8675a0a0ce57b22371f"
integrity sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=
+browser-process-hrtime@^0.1.2:
+ version "0.1.3"
+ resolved "https://registry.yarnpkg.com/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz#616f00faef1df7ec1b5bf9cfe2bdc3170f26c7b4"
+ integrity sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw==
+
browserify-aes@^1.0.0, browserify-aes@^1.0.4:
version "1.2.0"
resolved "https://registry.yarnpkg.com/browserify-aes/-/browserify-aes-1.2.0.tgz#326734642f403dabc3003209853bb70ad428ef48"
@@ -2788,14 +3437,14 @@ browserslist@^3.1.1, browserslist@^3.2.6:
caniuse-lite "^1.0.30000844"
electron-to-chromium "^1.3.47"
-browserslist@^4.0.0, browserslist@^4.4.2, browserslist@^4.5.1:
- version "4.5.3"
- resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.5.3.tgz#969495c410314bc89f14e748505e58be968080f1"
- integrity sha512-Tx/Jtrmh6vFg24AelzLwCaCq1IUJiMDM1x/LPzqbmbktF8Zo7F9ONUpOWsFK6TtdON95mSMaQUWqi0ilc8xM6g==
+browserslist@^4.0.0, browserslist@^4.6.0, browserslist@^4.6.2:
+ version "4.6.4"
+ resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.6.4.tgz#fd0638b3f8867fec2c604ed0ed9300379f8ec7c2"
+ integrity sha512-ErJT8qGfRt/VWHSr1HeqZzz50DvxHtr1fVL1m5wf20aGrG8e1ce8fpZ2EjZEfs09DDZYSvtRaDlMpWslBf8Low==
dependencies:
- caniuse-lite "^1.0.30000955"
- electron-to-chromium "^1.3.122"
- node-releases "^1.1.12"
+ caniuse-lite "^1.0.30000981"
+ electron-to-chromium "^1.3.188"
+ node-releases "^1.1.25"
bser@^2.0.0:
version "2.0.0"
@@ -2866,22 +3515,27 @@ bytes@3.0.0:
resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.0.0.tgz#d32815404d689699f85a4ea4fa8755dd13a96048"
integrity sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=
-cacache@^11.0.2:
- version "11.3.2"
- resolved "https://registry.yarnpkg.com/cacache/-/cacache-11.3.2.tgz#2d81e308e3d258ca38125b676b98b2ac9ce69bfa"
- integrity sha512-E0zP4EPGDOaT2chM08Als91eYnf8Z+eH1awwwVsngUmgppfM5jjJ8l3z5vO5p5w/I3LsiXawb1sW0VY65pQABg==
+bytes@3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/bytes/-/bytes-3.1.0.tgz#f6cf7933a360e0588fa9fde85651cdc7f805d1f6"
+ integrity sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==
+
+cacache@^11.3.2:
+ version "11.3.3"
+ resolved "https://registry.yarnpkg.com/cacache/-/cacache-11.3.3.tgz#8bd29df8c6a718a6ebd2d010da4d7972ae3bbadc"
+ integrity sha512-p8WcneCytvzPxhDvYp31PD039vi77I12W+/KfR9S8AZbaiARFBCpsPJS+9uhWfeBfeAtW7o/4vt3MUqLkbY6nA==
dependencies:
- bluebird "^3.5.3"
+ bluebird "^3.5.5"
chownr "^1.1.1"
figgy-pudding "^3.5.1"
- glob "^7.1.3"
+ glob "^7.1.4"
graceful-fs "^4.1.15"
lru-cache "^5.1.1"
mississippi "^3.0.0"
mkdirp "^0.5.1"
move-concurrently "^1.0.1"
promise-inflight "^1.0.1"
- rimraf "^2.6.2"
+ rimraf "^2.6.3"
ssri "^6.0.1"
unique-filename "^1.1.1"
y18n "^4.0.0"
@@ -2901,6 +3555,19 @@ cache-base@^1.0.1:
union-value "^1.0.0"
unset-value "^1.0.0"
+cacheable-request@^2.1.1:
+ version "2.1.4"
+ resolved "https://registry.yarnpkg.com/cacheable-request/-/cacheable-request-2.1.4.tgz#0d808801b6342ad33c91df9d0b44dc09b91e5c3d"
+ integrity sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0=
+ dependencies:
+ clone-response "1.0.2"
+ get-stream "3.0.0"
+ http-cache-semantics "3.8.1"
+ keyv "3.0.0"
+ lowercase-keys "1.0.0"
+ normalize-url "2.0.1"
+ responselike "1.0.2"
+
calculate-cache-key-for-tree@^1.1.0:
version "1.2.3"
resolved "https://registry.yarnpkg.com/calculate-cache-key-for-tree/-/calculate-cache-key-for-tree-1.2.3.tgz#5a5e4fcfa2d374a63e47fe967593f179e8282825"
@@ -2908,6 +3575,13 @@ calculate-cache-key-for-tree@^1.1.0:
dependencies:
json-stable-stringify "^1.0.1"
+calculate-cache-key-for-tree@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/calculate-cache-key-for-tree/-/calculate-cache-key-for-tree-2.0.0.tgz#7ac57f149a4188eacb0a45b210689215d3fef8d6"
+ integrity sha512-Quw8a6y8CPmRd6eU+mwypktYCwUcf8yVFIRbNZ6tPQEckX9yd+EBVEPC/GSZZrMWH9e7Vz4pT7XhpmyApRByLQ==
+ dependencies:
+ json-stable-stringify "^1.0.1"
+
call-me-maybe@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/call-me-maybe/-/call-me-maybe-1.0.1.tgz#26d208ea89e37b5cbde60250a15f031c16a4d66b"
@@ -2982,17 +3656,17 @@ caniuse-api@^3.0.0:
lodash.memoize "^4.1.2"
lodash.uniq "^4.5.0"
-caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000844, caniuse-lite@^1.0.30000955:
- version "1.0.30000955"
- resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000955.tgz#360fdb9a1e41d6dd996130411334e44a39e4446d"
- integrity sha512-6AwmIKgqCYfDWWadRkAuZSHMQP4Mmy96xAXEdRBlN/luQhlRYOKgwOlZ9plpCOsVbBuqbTmGqDK3JUM/nlr8CA==
+caniuse-lite@^1.0.0, caniuse-lite@^1.0.30000844, caniuse-lite@^1.0.30000981:
+ version "1.0.30000983"
+ resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000983.tgz#ab3c70061ca2a3467182a10ac75109b199b647f8"
+ integrity sha512-/llD1bZ6qwNkt41AsvjsmwNOoA4ZB+8iqmf5LVyeSXuBODT/hAMFNVOh84NdUzoiYiSKqo5vQ3ZzeYHSi/olDQ==
-capture-exit@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-1.2.0.tgz#1c5fcc489fd0ab00d4f1ac7ae1072e3173fbab6f"
- integrity sha1-HF/MSJ/QqwDU8ax64QcuMXP7q28=
+capture-exit@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/capture-exit/-/capture-exit-2.0.0.tgz#fb953bfaebeb781f62898239dabb426d08a509a4"
+ integrity sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==
dependencies:
- rsvp "^3.3.3"
+ rsvp "^4.8.4"
cardinal@^1.0.0:
version "1.0.0"
@@ -3049,7 +3723,7 @@ charm@^1.0.0:
dependencies:
inherits "^2.0.1"
-chokidar@^2.0.0, chokidar@^2.0.2:
+chokidar@^2.0.0:
version "2.1.5"
resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.5.tgz#0ae8434d962281a5f56c72869e79cb6d9d86ad4d"
integrity sha512-i0TprVWp+Kj4WRPtInjexJ8Q+BqTE909VpH8xVhXrJkoc5QC8VO9TryGOqTr+2hljzc1sC62t22h5tZePodM/A==
@@ -3068,23 +3742,37 @@ chokidar@^2.0.0, chokidar@^2.0.2:
optionalDependencies:
fsevents "^1.2.7"
+chokidar@^2.0.2:
+ version "2.1.6"
+ resolved "https://registry.yarnpkg.com/chokidar/-/chokidar-2.1.6.tgz#b6cad653a929e244ce8a834244164d241fa954c5"
+ integrity sha512-V2jUo67OKkc6ySiRpJrjlpJKl9kDuG+Xb8VgsGzb+aEouhgS1D0weyPU4lEzdAcsCAvrih2J2BqyXqHWvVLw5g==
+ dependencies:
+ anymatch "^2.0.0"
+ async-each "^1.0.1"
+ braces "^2.3.2"
+ glob-parent "^3.1.0"
+ inherits "^2.0.3"
+ is-binary-path "^1.0.0"
+ is-glob "^4.0.0"
+ normalize-path "^3.0.0"
+ path-is-absolute "^1.0.0"
+ readdirp "^2.2.1"
+ upath "^1.1.1"
+ optionalDependencies:
+ fsevents "^1.2.7"
+
chownr@^1.1.1:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.1.tgz#54726b8b8fff4df053c42187e801fb4412df1494"
- integrity sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g==
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/chownr/-/chownr-1.1.2.tgz#a18f1e0b269c8a6a5d3c86eb298beb14c3dd7bf6"
+ integrity sha512-GkfeAQh+QNy3wquu9oIZr6SS5x7wGdSgNQvD10X3r+AZr1Oys22HW8kAmDMvNg2+Dm0TeGaEuO8gFwdBXxwO8A==
chrome-trace-event@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.0.tgz#45a91bd2c20c9411f0963b5aaeb9a1b95e09cc48"
- integrity sha512-xDbVgyfDTT2piup/h8dK/y4QZfJRSa73bw1WZ8b4XM1o7fsFubUVGYcE+1ANtOzJJELGpYoG2961z0Z6OAld9A==
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz#234090ee97c7d4ad1a2c4beae27505deffc608a4"
+ integrity sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==
dependencies:
tslib "^1.9.0"
-ci-info@^1.1.3:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-1.6.0.tgz#2ca20dbb9ceb32d4524a683303313f0304b1e497"
- integrity sha512-vsGdkwSCDpWmP80ncATX7iea5DWQemg1UgCW5J8tqjU3lYw4FBYuj89J0CTVomA7BEfvSZd84GmHko+MxFQU2A==
-
ci-info@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-2.0.0.tgz#67a9e964be31a51e15e5010d58e6f12834002f46"
@@ -3135,13 +3823,6 @@ clean-up-path@^1.0.0:
resolved "https://registry.yarnpkg.com/clean-up-path/-/clean-up-path-1.0.0.tgz#de9e8196519912e749c9eaf67c13d64fac72a3e5"
integrity sha512-PHGlEF0Z6976qQyN6gM7kKH6EH0RdfZcc8V+QhFe36eRxV0SMH5OUBZG7Bxa9YcreNzyNbK63cGiZxdSZgosRw==
-cli-cursor@^1.0.1:
- version "1.0.2"
- resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-1.0.2.tgz#64da3f7d56a54412e59794bd62dc35295e8f2987"
- integrity sha1-ZNo/fValRBLll5S9Ytw1KV6PKYc=
- dependencies:
- restore-cursor "^1.0.1"
-
cli-cursor@^2.0.0, cli-cursor@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/cli-cursor/-/cli-cursor-2.1.0.tgz#b35dac376479facc3e94747d41d0d0f5238ffcb5"
@@ -3149,10 +3830,10 @@ cli-cursor@^2.0.0, cli-cursor@^2.1.0:
dependencies:
restore-cursor "^2.0.0"
-cli-spinners@^1.1.0:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-1.3.1.tgz#002c1990912d0d59580c93bd36c056de99e4259a"
- integrity sha512-1QL4544moEsDVH9T/l6Cemov/37iv1RtoKf7NJ04A60+4MREXNfx/QvavbH6QoGdsD4N4Mwy49cmaINR/o2mdg==
+cli-spinners@^2.0.0:
+ version "2.2.0"
+ resolved "https://registry.yarnpkg.com/cli-spinners/-/cli-spinners-2.2.0.tgz#e8b988d9206c692302d8ee834e7a85c0144d8f77"
+ integrity sha512-tgU3fKwzYjiLEQgPMD9Jt+JjHVL9kW93FiIMX/l7rivvOD4/LL0Mf7gda3+4U2KJBloybwgj5KEoQgGRioMiKQ==
cli-table@^0.3.1:
version "0.3.1"
@@ -3201,6 +3882,13 @@ cliui@^4.0.0:
strip-ansi "^4.0.0"
wrap-ansi "^2.0.0"
+clone-response@1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/clone-response/-/clone-response-1.0.2.tgz#d1dc973920314df67fbeb94223b4ee350239e96b"
+ integrity sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=
+ dependencies:
+ mimic-response "^1.0.0"
+
clone@^1.0.2:
version "1.0.4"
resolved "https://registry.yarnpkg.com/clone/-/clone-1.0.4.tgz#da309cc263df15994c688ca902179ca3c7cd7c7e"
@@ -3216,7 +3904,7 @@ co@^4.6.0:
resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184"
integrity sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=
-coa@~2.0.1:
+coa@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/coa/-/coa-2.0.2.tgz#43f6c21151b4ef2bf57187db0d73de229e3e7ec3"
integrity sha512-q5/jG+YQnSy4nRTV4F7lPepBJZ8qBNJJDBuJdoejDyLXgmL7IEo+Le2JDZudFTFt7mrCqIRaSjws4ygRCTCAXA==
@@ -3230,10 +3918,10 @@ code-point-at@^1.0.0:
resolved "https://registry.yarnpkg.com/code-point-at/-/code-point-at-1.1.0.tgz#0d070b4d043a5bea33a2f1a40e2edb3d9a4ccf77"
integrity sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=
-codemirror@~5.15.0:
- version "5.15.2"
- resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.15.2.tgz#58b3dc732c6d10d7aae806f4c7cdd56a9b87fe8f"
- integrity sha1-WLPccyxtENeq6Ab0x83VapuH/o8=
+codemirror@^5.47.0:
+ version "5.49.2"
+ resolved "https://registry.yarnpkg.com/codemirror/-/codemirror-5.49.2.tgz#c84fdaf11b19803f828b0c67060c7bc6d154ccad"
+ integrity sha512-dwJ2HRPHm8w51WB5YTF9J7m6Z5dtkqbU9ntMZ1dqXyFB9IpjoUFDj80ahRVEoVanfIp6pfASJbOlbWdEf8FOzQ==
collection-visit@^1.0.0:
version "1.0.0"
@@ -3260,11 +3948,6 @@ colors@1.0.3:
resolved "https://registry.yarnpkg.com/colors/-/colors-1.0.3.tgz#0433f44d809680fdeb60ed260f1b0c262e82a40b"
integrity sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=
-colors@~1.1.2:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/colors/-/colors-1.1.2.tgz#168a4701756b6a7f51a12ce0c97bfa28c084ed63"
- integrity sha1-FopHAXVran9RoSzgyXv6KMCE7WM=
-
combined-stream@^1.0.6, combined-stream@~1.0.6:
version "1.0.7"
resolved "https://registry.yarnpkg.com/combined-stream/-/combined-stream-1.0.7.tgz#2d1d24317afb8abe95d6d2c0b07b57813539d828"
@@ -3284,11 +3967,16 @@ commander@2.8.x:
dependencies:
graceful-readlink ">= 1.0.0"
-commander@^2.14.1, commander@^2.19.0, commander@^2.6.0, commander@^2.9.0, commander@~2.19.0:
+commander@^2.14.1, commander@^2.6.0, commander@^2.9.0:
version "2.19.0"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a"
integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==
+commander@^2.15.1, commander@^2.19.0, commander@^2.20.0, commander@~2.20.0:
+ version "2.20.0"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-2.20.0.tgz#d58bb2b5c1ee8f87b0d340027e9e94e222c5a422"
+ integrity sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==
+
common-tags@^1.4.0:
version "1.8.0"
resolved "https://registry.yarnpkg.com/common-tags/-/common-tags-1.8.0.tgz#8e3153e542d4a39e9b10554434afaaf98956a937"
@@ -3304,11 +3992,16 @@ component-bind@1.0.0:
resolved "https://registry.yarnpkg.com/component-bind/-/component-bind-1.0.0.tgz#00c608ab7dcd93897c0009651b1d3a8e1e73bbd1"
integrity sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=
-component-emitter@1.2.1, component-emitter@^1.2.1:
+component-emitter@1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.2.1.tgz#137918d6d78283f7df7a6b7c5a63e140e69425e6"
integrity sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=
+component-emitter@^1.2.1:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/component-emitter/-/component-emitter-1.3.0.tgz#16e4070fba8ae29b679f2215853ee181ab2eabc0"
+ integrity sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==
+
component-inherit@0.0.3:
version "0.0.3"
resolved "https://registry.yarnpkg.com/component-inherit/-/component-inherit-0.0.3.tgz#645fc4adf58b72b649d5cae65135619db26ff143"
@@ -3321,7 +4014,7 @@ compressible@~2.0.16:
dependencies:
mime-db ">= 1.38.0 < 2"
-compression@^1.7.3:
+compression@^1.7.4:
version "1.7.4"
resolved "https://registry.yarnpkg.com/compression/-/compression-1.7.4.tgz#95523eff170ca57c29a0ca41e6fe131f41e5bb8f"
integrity sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==
@@ -3339,7 +4032,7 @@ concat-map@0.0.1:
resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b"
integrity sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=
-concat-stream@^1.4.7, concat-stream@^1.5.0:
+concat-stream@^1.5.0:
version "1.6.2"
resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34"
integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==
@@ -3361,6 +4054,16 @@ configstore@^4.0.0:
write-file-atomic "^2.0.0"
xdg-basedir "^3.0.0"
+connect@^3.6.6:
+ version "3.7.0"
+ resolved "https://registry.yarnpkg.com/connect/-/connect-3.7.0.tgz#5d49348910caa5e07a01800b030d0c35f20484f8"
+ integrity sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==
+ dependencies:
+ debug "2.6.9"
+ finalhandler "1.1.2"
+ parseurl "~1.3.3"
+ utils-merge "1.0.1"
+
console-browserify@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/console-browserify/-/console-browserify-1.1.0.tgz#f0241c45730a9fc6323b206dbf38edc741d0bb10"
@@ -3373,17 +4076,16 @@ console-control-strings@^1.0.0, console-control-strings@~1.1.0:
resolved "https://registry.yarnpkg.com/console-control-strings/-/console-control-strings-1.1.0.tgz#3d7cf4464db6446ea644bf4b39507f9851008e8e"
integrity sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=
-console-ui@^2.2.2:
- version "2.2.3"
- resolved "https://registry.yarnpkg.com/console-ui/-/console-ui-2.2.3.tgz#134b92e632f2c0088f78e52b20f1ca22a95b9a91"
- integrity sha512-aZm49rntsv264Fw/DM56Z2ehLg1DDxrqof2jFcZOgC03S0nRGSYFIVPx5TbGssrgBhgCvGBY+9mmk0+t/nWXEA==
+console-ui@^3.0.2, console-ui@^3.0.4:
+ version "3.1.1"
+ resolved "https://registry.yarnpkg.com/console-ui/-/console-ui-3.1.1.tgz#681a0414e8b0a23ed679d0a2802e39d920801171"
+ integrity sha512-22y+uk4AGq9quz6kofKQjkeCIAm86+MTxT/RZMFm8fMArP2lAkzxjUjNyrw7S6wXnnB+qRnC+/2ANMTke68RTQ==
dependencies:
chalk "^2.1.0"
- inquirer "^2"
+ inquirer "^6"
json-stable-stringify "^1.0.1"
- ora "^2.0.0"
- through "^2.3.8"
- user-info "^1.0.0"
+ ora "^3.4.0"
+ through2 "^3.0.1"
consolidate@^0.15.1:
version "0.15.1"
@@ -3402,6 +4104,13 @@ content-disposition@0.5.2:
resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.2.tgz#0cf68bb9ddf5f2be7961c3a85178cb85dba78cb4"
integrity sha1-DPaLud318r55YcOoUXjLhdunjLQ=
+content-disposition@0.5.3:
+ version "0.5.3"
+ resolved "https://registry.yarnpkg.com/content-disposition/-/content-disposition-0.5.3.tgz#e130caf7e7279087c5616c2007d0485698984fbd"
+ integrity sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==
+ dependencies:
+ safe-buffer "5.1.2"
+
content-type@~1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/content-type/-/content-type-1.0.4.tgz#e138cc75e040c727b1966fe5e5f8c9aee256fe3b"
@@ -3429,6 +4138,11 @@ cookie@0.3.1:
resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.3.1.tgz#e7e0a1f9ef43b4c8ba925c5c5a96e806d16873bb"
integrity sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=
+cookie@0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.4.0.tgz#beb437e7022b3b6d49019d088665303ebe9c14ba"
+ integrity sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==
+
copy-concurrently@^1.0.0:
version "1.0.5"
resolved "https://registry.yarnpkg.com/copy-concurrently/-/copy-concurrently-1.0.5.tgz#92297398cae34937fcafd6ec8139c18051f0b5e0"
@@ -3451,27 +4165,31 @@ copy-descriptor@^0.1.0:
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
-core-js-compat@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.0.0.tgz#cd9810b8000742535a4a43773866185e310bd4f7"
- integrity sha512-W/Ppz34uUme3LmXWjMgFlYyGnbo1hd9JvA0LNQ4EmieqVjg2GPYbj3H6tcdP2QGPGWdRKUqZVbVKLNIFVs/HiA==
+core-js-compat@^3.1.1:
+ version "3.1.4"
+ resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.1.4.tgz#e4d0c40fbd01e65b1d457980fe4112d4358a7408"
+ integrity sha512-Z5zbO9f1d0YrJdoaQhphVAnKPimX92D6z8lCGphH89MNRxlL1prI9ExJPqVwP0/kgkQCv8c4GJGT8X16yUncOg==
dependencies:
- browserslist "^4.5.1"
- core-js "3.0.0"
- core-js-pure "3.0.0"
- semver "^5.6.0"
+ browserslist "^4.6.2"
+ core-js-pure "3.1.4"
+ semver "^6.1.1"
-core-js-pure@3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.0.0.tgz#a5679adb4875427c8c0488afc93e6f5b7125859b"
- integrity sha512-yPiS3fQd842RZDgo/TAKGgS0f3p2nxssF1H65DIZvZv0Od5CygP8puHXn3IQiM/39VAvgCbdaMQpresrbGgt9g==
+core-js-pure@3.1.4:
+ version "3.1.4"
+ resolved "https://registry.yarnpkg.com/core-js-pure/-/core-js-pure-3.1.4.tgz#5fa17dc77002a169a3566cc48dc774d2e13e3769"
+ integrity sha512-uJ4Z7iPNwiu1foygbcZYJsJs1jiXrTTCvxfLDXNhI/I+NHbSIEyr548y4fcsCEyWY0XgfAG/qqaunJ1SThHenA==
-core-js@3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/core-js/-/core-js-3.0.0.tgz#a8dbfa978d29bfc263bfb66c556d0ca924c28957"
- integrity sha512-WBmxlgH2122EzEJ6GH8o9L/FeoUKxxxZ6q6VUxoTlsE4EvbTWKJb447eyVxTEuq0LpXjlq/kCB2qgBvsYRkLvQ==
+core-js@2.4.1:
+ version "2.4.1"
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.4.1.tgz#4de911e667b0eae9124e34254b53aea6fc618d3e"
+ integrity sha1-TekR5mew6ukSTjQlS1OupvxhjT4=
-core-js@^2.4.0, core-js@^2.4.1, core-js@^2.5.0, core-js@^2.6.5:
+core-js@^2.4.0, core-js@^2.5.0, core-js@^2.6.5:
+ version "2.6.9"
+ resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.9.tgz#6b4b214620c834152e179323727fc19741b084f2"
+ integrity sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A==
+
+core-js@^2.4.1:
version "2.6.5"
resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.5.tgz#44bc8d249e7fb2ff5d00e0341a7ffb94fbf67895"
integrity sha512-klh/kDpwX8hryYL14M9w/xei6vrv6sE8gTHDG7/T/+SEovB/G4ejwcfE/CBzO6Edsu+OETZMZ3wcX/EjUkrl5A==
@@ -3579,20 +4297,28 @@ crypto-random-string@^1.0.0:
resolved "https://registry.yarnpkg.com/crypto-random-string/-/crypto-random-string-1.0.0.tgz#a230f64f568310e1498009940790ec99545bca7e"
integrity sha1-ojD2T1aDEOFJgAmUB5DsmVRbyn4=
-css-select-base-adapter@~0.1.0:
+css-select-base-adapter@^0.1.1:
version "0.1.1"
resolved "https://registry.yarnpkg.com/css-select-base-adapter/-/css-select-base-adapter-0.1.1.tgz#3b2ff4972cc362ab88561507a95408a1432135d7"
integrity sha512-jQVeeRG70QI08vSTwf1jHxp74JoZsr2XSgETae8/xC8ovSnL2WF87GTLO86Sbwdt2lK4Umg4HnnwMO4YF3Ce7w==
-css-select@~1.3.0-rc0:
- version "1.3.0-rc0"
- resolved "https://registry.yarnpkg.com/css-select/-/css-select-1.3.0-rc0.tgz#6f93196aaae737666ea1036a8cb14a8fcb7a9231"
- integrity sha1-b5MZaqrnN2ZuoQNqjLFKj8t6kjE=
+css-select@^2.0.0:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/css-select/-/css-select-2.0.2.tgz#ab4386cec9e1f668855564b17c3733b43b2a5ede"
+ integrity sha512-dSpYaDVoWaELjvZ3mS6IKZM/y2PMPa/XYoEfYNZePL4U/XgyxZNroHEHReDx/d+VgXh9VbCTtFqLkFbmeqeaRQ==
dependencies:
boolbase "^1.0.0"
- css-what "2.1"
- domutils "1.5.1"
- nth-check "^1.0.1"
+ css-what "^2.1.2"
+ domutils "^1.7.0"
+ nth-check "^1.0.2"
+
+css-tree@1.0.0-alpha.28:
+ version "1.0.0-alpha.28"
+ resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha.28.tgz#8e8968190d886c9477bc8d61e96f61af3f7ffa7f"
+ integrity sha512-joNNW1gCp3qFFzj4St6zk+Wh/NBv0vM5YbEreZk0SD4S23S+1xBKb6cLDg2uj4P4k/GUMlIm6cKIDqIG+vdt0w==
+ dependencies:
+ mdn-data "~1.1.0"
+ source-map "^0.5.3"
css-tree@1.0.0-alpha.29:
version "1.0.0-alpha.29"
@@ -3602,31 +4328,35 @@ css-tree@1.0.0-alpha.29:
mdn-data "~1.1.0"
source-map "^0.5.3"
-css-tree@1.0.0-alpha25:
- version "1.0.0-alpha25"
- resolved "https://registry.yarnpkg.com/css-tree/-/css-tree-1.0.0-alpha25.tgz#1bbfabfbf6eeef4f01d9108ff2edd0be2fe35597"
- integrity sha512-XC6xLW/JqIGirnZuUWHXCHRaAjje2b3OIB0Vj5RIJo6mIi/AdJo30quQl5LxUl0gkXDIrTrFGbMlcZjyFplz1A==
- dependencies:
- mdn-data "^1.0.0"
- source-map "^0.5.3"
-
css-url-regex@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/css-url-regex/-/css-url-regex-1.1.0.tgz#83834230cc9f74c457de59eebd1543feeb83b7ec"
integrity sha1-g4NCMMyfdMRX3lnuvRVD/uuDt+w=
-css-what@2.1:
+css-what@^2.1.2:
version "2.1.3"
resolved "https://registry.yarnpkg.com/css-what/-/css-what-2.1.3.tgz#a6d7604573365fe74686c3f311c56513d88285f2"
integrity sha512-a+EPoD+uZiNfh+5fxw2nO9QwFa6nJe2Or35fGY6Ipw1R3R4AGz1d1TEZrCegvw2YTmZ0jXirGYlzxxpYSHwpEg==
-csso@^3.5.0:
+csso@^3.5.1:
version "3.5.1"
resolved "https://registry.yarnpkg.com/csso/-/csso-3.5.1.tgz#7b9eb8be61628973c1b261e169d2f024008e758b"
integrity sha512-vrqULLffYU1Q2tLdJvaCYbONStnfkfimRxXNaGjxMldI0C7JPBC4rB1RyjhfdZ4m1frm8pM9uRPKH3d2knZ8gg==
dependencies:
css-tree "1.0.0-alpha.29"
+cssom@0.3.x, cssom@^0.3.4:
+ version "0.3.8"
+ resolved "https://registry.yarnpkg.com/cssom/-/cssom-0.3.8.tgz#9f1276f5b2b463f2114d3f2c75250af8c1a36f4a"
+ integrity sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==
+
+cssstyle@^1.1.1:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/cssstyle/-/cssstyle-1.4.0.tgz#9d31328229d3c565c61e586b02041a28fccdccf1"
+ integrity sha512-GBrLZYZ4X4x6/QEoBnIrqb8B/f5l4+8me2dkom/j1Gtbxy0kBv6OGzKuAsGM75bkGwGAFkt56Iwg28S3XTZgSA==
+ dependencies:
+ cssom "0.3.x"
+
currently-unhandled@^0.4.1:
version "0.4.1"
resolved "https://registry.yarnpkg.com/currently-unhandled/-/currently-unhandled-0.4.1.tgz#988df33feab191ef799a61369dd76c17adf957ea"
@@ -3752,6 +4482,15 @@ dashdash@^1.12.0:
dependencies:
assert-plus "^1.0.0"
+data-urls@^1.0.1:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/data-urls/-/data-urls-1.1.0.tgz#15ee0582baa5e22bb59c77140da8f9c76963bbfe"
+ integrity sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==
+ dependencies:
+ abab "^2.0.0"
+ whatwg-mimetype "^2.2.0"
+ whatwg-url "^7.0.0"
+
date-fns@^1.27.2:
version "1.30.1"
resolved "https://registry.yarnpkg.com/date-fns/-/date-fns-1.30.1.tgz#2e71bf0b119153dbb4cc4e88d9ea5acfb50dc05c"
@@ -3769,7 +4508,7 @@ date-time@^2.1.0:
dependencies:
time-zone "^1.0.0"
-debug@2.6.9, debug@^2.1.0, debug@^2.1.1, debug@^2.1.2, debug@^2.1.3, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9:
+debug@2.6.9, debug@^2.1.0, debug@^2.1.1, debug@^2.1.3, debug@^2.2.0, debug@^2.3.3, debug@^2.6.8, debug@^2.6.9:
version "2.6.9"
resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f"
integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
@@ -3783,7 +4522,7 @@ debug@^3.0.1, debug@^3.1.0, debug@^3.2.6:
dependencies:
ms "^2.1.1"
-debug@^4.0.1, debug@^4.1.0, debug@~4.1.0:
+debug@^4.0.0, debug@^4.0.1, debug@^4.1.0, debug@~4.1.0:
version "4.1.1"
resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791"
integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==
@@ -3807,6 +4546,13 @@ decode-uri-component@^0.2.0:
resolved "https://registry.yarnpkg.com/decode-uri-component/-/decode-uri-component-0.2.0.tgz#eb3913333458775cb84cd1a1fae062106bb87545"
integrity sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=
+decompress-response@^3.3.0:
+ version "3.3.0"
+ resolved "https://registry.yarnpkg.com/decompress-response/-/decompress-response-3.3.0.tgz#80a4dd323748384bfa248083622aedec982adff3"
+ integrity sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=
+ dependencies:
+ mimic-response "^1.0.0"
+
dedent@^0.7.0:
version "0.7.0"
resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c"
@@ -3930,6 +4676,11 @@ diff@^3.5.0:
resolved "https://registry.yarnpkg.com/diff/-/diff-3.5.0.tgz#800c0dd1e0a8bfbc95835c202ad220fe317e5a12"
integrity sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==
+diff@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/diff/-/diff-4.0.1.tgz#0c667cb467ebbb5cea7f14f135cc2dba7780a8ff"
+ integrity sha512-s2+XdvhPCOF01LRQBC8hf4vhbVmI2CGS5aZnxLJlT5FtdhPCDFq80q++zK2KlrVorVDdL5BOGZ/VfLrVtYNF+Q==
+
diffie-hellman@^5.0.0:
version "5.0.3"
resolved "https://registry.yarnpkg.com/diffie-hellman/-/diffie-hellman-5.0.3.tgz#40e8ee98f55a2149607146921c63e1ae5f3d2875"
@@ -3971,10 +4722,17 @@ domelementtype@1, domelementtype@^1.3.0:
resolved "https://registry.yarnpkg.com/domelementtype/-/domelementtype-1.3.1.tgz#d048c44b37b0d10a7f2a3d5fee3f4333d790481f"
integrity sha512-BSKB+TSpMpFI/HOxCNr1O8aMOTZ8hT3pM3GQ0w/mWRmkhEDSFJkkyzz4XQsBV44BChwGkrDfMyjVD0eA2aFV3w==
-domutils@1.5.1:
- version "1.5.1"
- resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.5.1.tgz#dcd8488a26f563d61079e48c9f7b7e32373682cf"
- integrity sha1-3NhIiib1Y9YQeeSMn3t+Mjc2gs8=
+domexception@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/domexception/-/domexception-1.0.1.tgz#937442644ca6a31261ef36e3ec677fe805582c90"
+ integrity sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==
+ dependencies:
+ webidl-conversions "^4.0.2"
+
+domutils@^1.7.0:
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/domutils/-/domutils-1.7.0.tgz#56ea341e834e06e6748af7a1cb25da67ea9f8c2a"
+ integrity sha512-Lgd2XcJ/NjEw+7tFvfKxOzCYKZsdct5lczQ2ZaQY8Djz7pfAD3Gbp8ySJWtreII/vDlMVmxwa6pHmdxIYgttDg==
dependencies:
dom-serializer "0"
domelementtype "1"
@@ -3986,6 +4744,11 @@ dot-prop@^4.1.0:
dependencies:
is-obj "^1.0.0"
+duplexer3@^0.1.4:
+ version "0.1.4"
+ resolved "https://registry.yarnpkg.com/duplexer3/-/duplexer3-0.1.4.tgz#ee01dd1cac0ed3cbc7fdbea37dc0a8f1ce002ce2"
+ integrity sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=
+
duplexify@^3.4.2, duplexify@^3.6.0:
version "3.7.1"
resolved "https://registry.yarnpkg.com/duplexify/-/duplexify-3.7.1.tgz#2a4df5317f6ccfd91f86d6fd25d8d8a103b88309"
@@ -4014,10 +4777,10 @@ ee-first@1.1.1:
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
integrity sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=
-electron-to-chromium@^1.3.122, electron-to-chromium@^1.3.47:
- version "1.3.122"
- resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.122.tgz#b32a0805f48557bd3c3b8104eadc7fa511b14a9a"
- integrity sha512-3RKoIyCN4DhP2dsmleuFvpJAIDOseWH88wFYBzb22CSwoFDSWRc4UAMfrtc9h8nBdJjTNIN3rogChgOy6eFInw==
+electron-to-chromium@^1.3.188, electron-to-chromium@^1.3.47:
+ version "1.3.189"
+ resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.189.tgz#aa84055eb36d364a68852ad2d25e1315a1d06196"
+ integrity sha512-C26Kv6/rLNmGDaPR5HORMtTQat9aWBBKjQk9aFtN1Bk6cQBSw8cYdsel/mcrQlNlMMjt1sAKsTYqf77+sK2uTw==
elegant-spinner@^1.0.1:
version "1.0.1"
@@ -4025,9 +4788,9 @@ elegant-spinner@^1.0.1:
integrity sha1-2wQ1IcldfjA/2PNFvtwzSc+wcp4=
elliptic@^6.0.0:
- version "6.4.1"
- resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.4.1.tgz#c2d0b7776911b86722c632c3c06c60f2f819939a"
- integrity sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==
+ version "6.5.0"
+ resolved "https://registry.yarnpkg.com/elliptic/-/elliptic-6.5.0.tgz#2b8ed4c891b7de3200e14412a5b8248c7af505ca"
+ integrity sha512-eFOJTMyCYb7xtE/caJ6JJu+bhi67WCYNbkGSknu20pmM8Ke/bqOfdnZWxyoGN26JgfxTbXrsCkEw4KheCT/KGg==
dependencies:
bn.js "^4.4.0"
brorand "^1.0.1"
@@ -4045,23 +4808,26 @@ ember-ajax@^5.0.0:
ember-cli-babel "^7.5.0"
najax "^1.0.3"
-ember-assign-polyfill@~2.4.0:
- version "2.4.0"
- resolved "https://registry.yarnpkg.com/ember-assign-polyfill/-/ember-assign-polyfill-2.4.0.tgz#acb00466f7d674b3e6b030acfe255b3b1f6472e1"
- integrity sha512-0SnGQb9CenRqbZdIa1KFsEjT+1ijGWfAbCSaDbg5uVa5l6HPdppuTzOXK6sfEQMsd2nbrp27QWFy7W5VX6l4Ag==
+ember-assign-polyfill@^2.6.0:
+ version "2.6.0"
+ resolved "https://registry.yarnpkg.com/ember-assign-polyfill/-/ember-assign-polyfill-2.6.0.tgz#07847e3357ee35b33f886a0b5fbec6873f6860eb"
+ integrity sha512-Y8NzOmHI/g4PuJ+xC14eTYiQbigNYddyHB8FY2kuQMxThTEIDE7SJtgttJrYYcPciOu0Tnb5ff36iO46LeiXkw==
dependencies:
- ember-cli-babel "^6.6.0"
+ ember-cli-babel "^6.16.0"
ember-cli-version-checker "^2.0.0"
ember-auto-import@^1.2.19, ember-auto-import@^1.2.21:
- version "1.2.21"
- resolved "https://registry.yarnpkg.com/ember-auto-import/-/ember-auto-import-1.2.21.tgz#e02ded183844faba66c3f2af97028ef35175b837"
- integrity sha512-coHnqO3mRnlj/JAQSQBEqzX2wL8rH5YrfEJMzk1102X9MdSX1CWeaUYBcyjvI/pG8fHUhv+4VsD6rQuhTUyZUQ==
+ version "1.5.2"
+ resolved "https://registry.yarnpkg.com/ember-auto-import/-/ember-auto-import-1.5.2.tgz#e97ed96b600caa6090ffed83e4611c3e7ec9bad7"
+ integrity sha512-skVQpfdc6G5OVRsyemDn3vI1nj/iBBgnoqRLRka0ZbDT2GqelmyJ86bp+Bd/ztJe45Le3we+LXbR7T54RU5A9w==
dependencies:
"@babel/core" "^7.1.6"
+ "@babel/preset-env" "^7.0.0"
"@babel/traverse" "^7.1.6"
"@babel/types" "^7.1.6"
+ "@embroider/core" "^0.4.3"
babel-core "^6.26.3"
+ babel-loader "^8.0.6"
babel-plugin-syntax-dynamic-import "^6.18.0"
babel-template "^6.26.0"
babylon "^6.18.0"
@@ -4072,7 +4838,7 @@ ember-auto-import@^1.2.19, ember-auto-import@^1.2.21:
enhanced-resolve "^4.0.0"
fs-extra "^6.0.1"
fs-tree-diff "^1.0.0"
- handlebars "~4.0.13"
+ handlebars "~4.1.2"
js-string-escape "^1.0.1"
lodash "^4.17.10"
mkdirp "^0.5.1"
@@ -4080,24 +4846,29 @@ ember-auto-import@^1.2.19, ember-auto-import@^1.2.21:
resolve "^1.7.1"
rimraf "^2.6.2"
symlink-or-copy "^1.2.0"
+ typescript-memoize "^1.0.0-alpha.3"
walk-sync "^0.3.3"
webpack "~4.28"
-ember-basic-dropdown@^1.1.0:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/ember-basic-dropdown/-/ember-basic-dropdown-1.1.2.tgz#6558eb2aa34d2feeb66e9de1feea560d46edc697"
- integrity sha512-l38MNIUOI1nAKxSUlDI1wrP52a55HxN2dikDUwJOqx7NytK0/woPyy3uVUe7gfT2gJ4HCbRlL/7y0csvP0iMPg==
+ember-basic-dropdown@^2.0.5:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/ember-basic-dropdown/-/ember-basic-dropdown-2.0.5.tgz#72a8a9c1196d5f84f6b849aa21c3cf8ea7830668"
+ integrity sha512-wG7v9uk5uIozLFx919Wa40xmLXE5jL1d+HKkUxWQJ1vqZCh8S7MjmYIAuluxNFfegEnCtLd+9iDSdZzEEwTtPg==
dependencies:
- ember-cli-babel "^7.2.0"
- ember-cli-htmlbars "^3.0.1"
- ember-maybe-in-element "^0.2.0"
+ "@ember-decorators/component" "^6.1.0"
+ "@ember/render-modifiers" "^1.0.0"
+ ember-cli-babel "^7.11.0"
+ ember-cli-htmlbars "^3.1.0"
+ ember-element-helper "^0.1.1"
+ ember-maybe-in-element "^0.4.0"
+ ember-truth-helpers "2.1.0"
-ember-cli-babel-plugin-helpers@^1.1.0:
+ember-cli-babel-plugin-helpers@^1.0.0, ember-cli-babel-plugin-helpers@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/ember-cli-babel-plugin-helpers/-/ember-cli-babel-plugin-helpers-1.1.0.tgz#de3baedd093163b6c2461f95964888c1676325ac"
integrity sha512-Zr4my8Xn+CzO0gIuFNXji0eTRml5AxZUTDQz/wsNJ5AJAtyFWCY4QtKdoELNNbiCVGt1lq5yLiwTm4scGKu6xA==
-ember-cli-babel@^6.0.0, ember-cli-babel@^6.0.0-beta.4, ember-cli-babel@^6.0.0-beta.7, ember-cli-babel@^6.11.0, ember-cli-babel@^6.12.0, ember-cli-babel@^6.16.0, ember-cli-babel@^6.18.0, ember-cli-babel@^6.3.0, ember-cli-babel@^6.6.0, ember-cli-babel@^6.7.2, ember-cli-babel@^6.8.0, ember-cli-babel@^6.8.1, ember-cli-babel@^6.8.2, ember-cli-babel@^6.9.0:
+ember-cli-babel@^6.0.0-beta.4, ember-cli-babel@^6.0.0-beta.7, ember-cli-babel@^6.11.0, ember-cli-babel@^6.16.0, ember-cli-babel@^6.18.0, ember-cli-babel@^6.3.0, ember-cli-babel@^6.6.0, ember-cli-babel@^6.7.2, ember-cli-babel@^6.8.0, ember-cli-babel@^6.8.1, ember-cli-babel@^6.8.2, ember-cli-babel@^6.9.0:
version "6.18.0"
resolved "https://registry.yarnpkg.com/ember-cli-babel/-/ember-cli-babel-6.18.0.tgz#3f6435fd275172edeff2b634ee7b29ce74318957"
integrity sha512-7ceC8joNYxY2wES16iIBlbPSxwKDBhYwC8drU3ZEvuPDMwVv1KzxCNu1fvxyFEBWhwaRNTUxSCsEVoTd9nosGA==
@@ -4116,34 +4887,7 @@ ember-cli-babel@^6.0.0, ember-cli-babel@^6.0.0-beta.4, ember-cli-babel@^6.0.0-be
ember-cli-version-checker "^2.1.2"
semver "^5.5.0"
-ember-cli-babel@^7.1.0, ember-cli-babel@^7.1.2, ember-cli-babel@^7.2.0, ember-cli-babel@^7.4.0, ember-cli-babel@^7.5.0:
- version "7.7.3"
- resolved "https://registry.yarnpkg.com/ember-cli-babel/-/ember-cli-babel-7.7.3.tgz#f94709f6727583d18685ca6773a995877b87b8a0"
- integrity sha512-/LWwyKIoSlZQ7k52P+6agC7AhcOBqPJ5C2u27qXHVVxKvCtg6ahNuRk/KmfZmV4zkuw4EjTZxfJE1PzpFyHkXg==
- dependencies:
- "@babel/core" "^7.0.0"
- "@babel/plugin-proposal-class-properties" "^7.3.4"
- "@babel/plugin-proposal-decorators" "^7.3.0"
- "@babel/plugin-transform-modules-amd" "^7.0.0"
- "@babel/plugin-transform-runtime" "^7.2.0"
- "@babel/polyfill" "^7.0.0"
- "@babel/preset-env" "^7.0.0"
- "@babel/runtime" "^7.2.0"
- amd-name-resolver "^1.2.1"
- babel-plugin-debug-macros "^0.3.0"
- babel-plugin-ember-modules-api-polyfill "^2.8.0"
- babel-plugin-module-resolver "^3.1.1"
- broccoli-babel-transpiler "^7.1.2"
- broccoli-debug "^0.6.4"
- broccoli-funnel "^2.0.1"
- broccoli-source "^1.1.0"
- clone "^2.1.2"
- ember-cli-babel-plugin-helpers "^1.1.0"
- ember-cli-version-checker "^2.1.2"
- ensure-posix-path "^1.0.2"
- semver "^5.5.0"
-
-ember-cli-babel@^7.7.3:
+ember-cli-babel@^7.1.0, ember-cli-babel@^7.7.3:
version "7.8.0"
resolved "https://registry.yarnpkg.com/ember-cli-babel/-/ember-cli-babel-7.8.0.tgz#e596500eca0f5a7c9aaee755f803d1542f578acf"
integrity sha512-xUBgJQ81fqd7k/KIiGU+pjpoXhrmmRf9pUrqLenNSU5N+yeNFT5a1+w0b+p1F7oBphfXVwuxApdZxrmAHOdA3Q==
@@ -4170,16 +4914,70 @@ ember-cli-babel@^7.7.3:
ensure-posix-path "^1.0.2"
semver "^5.5.0"
-ember-cli-broccoli-sane-watcher@^2.1.1:
- version "2.2.2"
- resolved "https://registry.yarnpkg.com/ember-cli-broccoli-sane-watcher/-/ember-cli-broccoli-sane-watcher-2.2.2.tgz#9bb1b04ddeb2c086aecd8693cbaeca1d88dc160c"
- integrity sha512-9OLy8x3pdNKC/6xR00IjTL8XyiQU3rb2HLyQSAqHuaZpZcSTKkbAse2ERTsELSINoo/zi/W7qPP5vd5SsHsraw==
+ember-cli-babel@^7.1.2, ember-cli-babel@^7.5.0:
+ version "7.7.3"
+ resolved "https://registry.yarnpkg.com/ember-cli-babel/-/ember-cli-babel-7.7.3.tgz#f94709f6727583d18685ca6773a995877b87b8a0"
+ integrity sha512-/LWwyKIoSlZQ7k52P+6agC7AhcOBqPJ5C2u27qXHVVxKvCtg6ahNuRk/KmfZmV4zkuw4EjTZxfJE1PzpFyHkXg==
+ dependencies:
+ "@babel/core" "^7.0.0"
+ "@babel/plugin-proposal-class-properties" "^7.3.4"
+ "@babel/plugin-proposal-decorators" "^7.3.0"
+ "@babel/plugin-transform-modules-amd" "^7.0.0"
+ "@babel/plugin-transform-runtime" "^7.2.0"
+ "@babel/polyfill" "^7.0.0"
+ "@babel/preset-env" "^7.0.0"
+ "@babel/runtime" "^7.2.0"
+ amd-name-resolver "^1.2.1"
+ babel-plugin-debug-macros "^0.3.0"
+ babel-plugin-ember-modules-api-polyfill "^2.8.0"
+ babel-plugin-module-resolver "^3.1.1"
+ broccoli-babel-transpiler "^7.1.2"
+ broccoli-debug "^0.6.4"
+ broccoli-funnel "^2.0.1"
+ broccoli-source "^1.1.0"
+ clone "^2.1.2"
+ ember-cli-babel-plugin-helpers "^1.1.0"
+ ember-cli-version-checker "^2.1.2"
+ ensure-posix-path "^1.0.2"
+ semver "^5.5.0"
+
+ember-cli-babel@^7.1.3, ember-cli-babel@^7.10.0, ember-cli-babel@^7.11.0, ember-cli-babel@^7.7.0, ember-cli-babel@^7.8.0:
+ version "7.12.0"
+ resolved "https://registry.yarnpkg.com/ember-cli-babel/-/ember-cli-babel-7.12.0.tgz#064997d199384be8c88d251f30ef67953d3bddc5"
+ integrity sha512-+EGQsbPvh19nNXHCm6rVBx2CdlxQlzxMyhey5hsGViDPriDI4PFYXYaFWdGizDrmZoDcG/Ywpeph3hl0NxGQTg==
+ dependencies:
+ "@babel/core" "^7.0.0"
+ "@babel/plugin-proposal-class-properties" "^7.3.4"
+ "@babel/plugin-proposal-decorators" "^7.3.0"
+ "@babel/plugin-transform-modules-amd" "^7.0.0"
+ "@babel/plugin-transform-runtime" "^7.2.0"
+ "@babel/polyfill" "^7.0.0"
+ "@babel/preset-env" "^7.0.0"
+ "@babel/runtime" "^7.2.0"
+ amd-name-resolver "^1.2.1"
+ babel-plugin-debug-macros "^0.3.0"
+ babel-plugin-ember-modules-api-polyfill "^2.12.0"
+ babel-plugin-module-resolver "^3.1.1"
+ broccoli-babel-transpiler "^7.3.0"
+ broccoli-debug "^0.6.4"
+ broccoli-funnel "^2.0.1"
+ broccoli-source "^1.1.0"
+ clone "^2.1.2"
+ ember-cli-babel-plugin-helpers "^1.1.0"
+ ember-cli-version-checker "^2.1.2"
+ ensure-posix-path "^1.0.2"
+ semver "^5.5.0"
+
+ember-cli-broccoli-sane-watcher@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/ember-cli-broccoli-sane-watcher/-/ember-cli-broccoli-sane-watcher-3.0.0.tgz#dc1812c047e1ceec4413d3c41b51a9ffc61b4cfe"
+ integrity sha512-sLn+wy6FJpGMHtSwAGUjQK3nJFvw2b6H8bR2EgMIXxkUI3DYFLi6Xnyxm02XlMTcfTxF10yHFhHJe0O+PcJM7A==
dependencies:
broccoli-slow-trees "^3.0.1"
heimdalljs "^0.2.1"
heimdalljs-logger "^0.1.7"
rsvp "^3.0.18"
- sane "^2.4.1"
+ sane "^4.0.0"
ember-cli-clipboard@^0.13.0:
version "0.13.0"
@@ -4192,10 +4990,10 @@ ember-cli-clipboard@^0.13.0:
ember-cli-htmlbars "^3.0.1"
fastboot-transform "^0.1.3"
-ember-cli-dependency-checker@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/ember-cli-dependency-checker/-/ember-cli-dependency-checker-3.1.0.tgz#b39c6b537a1457d77892edf5ddcfa025cd1401e2"
- integrity sha512-Y/V2senOyIjQnZohYeZeXs59rWHI2m8KRF9IesMv1ypLRSc/h/QS6UX51wAyaZnxcgU6ljFXpqL5x38UxM3XzA==
+ember-cli-dependency-checker@^3.1.0:
+ version "3.2.0"
+ resolved "https://registry.yarnpkg.com/ember-cli-dependency-checker/-/ember-cli-dependency-checker-3.2.0.tgz#9202ad9e14d6fda33cffc22a11c343c2a8885330"
+ integrity sha512-dkSmcJ/jY/2ms/S6ph2jXSfOW5VfOpLfg5DFEbra0SaMNgYkNDFF1o0U4OdTsG37L5h/AXWNuVtnOa4TMabz9Q==
dependencies:
chalk "^2.3.0"
find-yarn-workspace-root "^1.1.0"
@@ -4243,12 +5041,12 @@ ember-cli-head@^0.4.0:
ember-cli-babel "^6.11.0"
ember-cli-htmlbars "^2.0.3"
-ember-cli-htmlbars-inline-precompile@^1.0.0, ember-cli-htmlbars-inline-precompile@^1.0.3:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/ember-cli-htmlbars-inline-precompile/-/ember-cli-htmlbars-inline-precompile-1.0.5.tgz#312e050c9e3dd301c55fb399fd706296cd0b1d6a"
- integrity sha512-/CNEqPxroIcbY6qejrt704ZaghHLCntZKYLizFfJ2esirXoJx6fuYKBY1YyJ8GOgjfbHHKjBZuK4vFFJpkGqkQ==
+ember-cli-htmlbars-inline-precompile@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/ember-cli-htmlbars-inline-precompile/-/ember-cli-htmlbars-inline-precompile-2.1.0.tgz#61b91ff1879d44ae504cadb46fb1f2604995ae08"
+ integrity sha512-BylIHduwQkncPhnj0ZyorBuljXbTzLgRo6kuHf1W+IHFxThFl2xG+r87BVwsqx4Mn9MTgW9SE0XWjwBJcSWd6Q==
dependencies:
- babel-plugin-htmlbars-inline-precompile "^0.2.5"
+ babel-plugin-htmlbars-inline-precompile "^1.0.0"
ember-cli-version-checker "^2.1.2"
hash-for-dep "^1.2.3"
heimdalljs-logger "^0.1.9"
@@ -4264,14 +5062,14 @@ ember-cli-htmlbars@^2.0.3:
json-stable-stringify "^1.0.0"
strip-bom "^3.0.0"
-ember-cli-htmlbars@^3.0.0, ember-cli-htmlbars@^3.0.1:
- version "3.0.1"
- resolved "https://registry.yarnpkg.com/ember-cli-htmlbars/-/ember-cli-htmlbars-3.0.1.tgz#01e21f0fd05e0a6489154f26614b1041769e3e58"
- integrity sha512-pyyB2s52vKTXDC5svU3IjU7GRLg2+5O81o9Ui0ZSiBS14US/bZl46H2dwcdSJAK+T+Za36ZkQM9eh1rNwOxfoA==
+ember-cli-htmlbars@^3.0.1, ember-cli-htmlbars@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/ember-cli-htmlbars/-/ember-cli-htmlbars-3.1.0.tgz#87806c2a0bca2ab52d4fb8af8e2215c1ca718a99"
+ integrity sha512-cgvRJM73IT0aePUG7oQ/afB7vSRBV3N0wu9BrWhHX2zkR7A7cUBI7KC9VPk6tbctCXoM7BRGsCC4aIjF7yrfXA==
dependencies:
- broccoli-persistent-filter "^1.4.3"
- hash-for-dep "^1.2.3"
- json-stable-stringify "^1.0.0"
+ broccoli-persistent-filter "^2.3.1"
+ hash-for-dep "^1.5.1"
+ json-stable-stringify "^1.0.1"
strip-bom "^3.0.0"
ember-cli-import-polyfill@^0.2.0:
@@ -4297,28 +5095,22 @@ ember-cli-lodash-subset@^2.0.1:
resolved "https://registry.yarnpkg.com/ember-cli-lodash-subset/-/ember-cli-lodash-subset-2.0.1.tgz#20cb68a790fe0fde2488ddfd8efbb7df6fe766f2"
integrity sha1-IMtop5D+D94kiN39jvu332/nZvI=
-ember-cli-mirage@^0.4.3:
- version "0.4.15"
- resolved "https://registry.yarnpkg.com/ember-cli-mirage/-/ember-cli-mirage-0.4.15.tgz#dcf878e785853232d8ac725bb425aa545da63e79"
- integrity sha512-5wCycS40pkohNPaLcyCn5BUjJ/4PGK9lz6j1tftJms5tBQhSjkZ37+pfhVKh3iYSId/+z0RTxVknykQH4P0sQA==
+ember-cli-mirage@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/ember-cli-mirage/-/ember-cli-mirage-1.1.2.tgz#582598aa599649601401b79a021b4ded5155907f"
+ integrity sha512-0qgP5sBheXkrpea+R8dGA0LLsj9SEg6adafNdZ1RzA+nIPC8hE+UEzDQNFqRiZv/fPfdWSDnwQboaHDLiu9hqw==
dependencies:
- "@xg-wang/whatwg-fetch" "^3.0.0"
+ "@miragejs/server" "0.1.27"
broccoli-file-creator "^2.1.1"
broccoli-funnel "^2.0.1"
broccoli-merge-trees "^3.0.2"
- broccoli-stew "^2.0.1"
broccoli-string-replace "^0.1.2"
- chalk "^1.1.1"
+ chalk "^2.4.2"
ember-auto-import "^1.2.19"
- ember-cli-babel "^6.16.0"
- ember-cli-node-assets "^0.2.2"
+ ember-cli-babel "^7.5.0"
ember-get-config "^0.2.2"
ember-inflector "^2.0.0 || ^3.0.0"
- fake-xml-http-request "^2.0.0"
- faker "^3.0.0"
- lodash "^4.17.11"
- pretender "2.1.1"
- route-recognizer "^0.3.4"
+ lodash-es "^4.17.11"
ember-cli-moment-shim@^3.5.0:
version "3.7.1"
@@ -4356,9 +5148,9 @@ ember-cli-normalize-entity-name@^1.0.0:
silent-error "^1.0.0"
ember-cli-page-object@^1.15.1:
- version "1.15.2"
- resolved "https://registry.yarnpkg.com/ember-cli-page-object/-/ember-cli-page-object-1.15.2.tgz#24d0ee60f64d9ae34fb8fa5bec9df46b62654c72"
- integrity sha512-uUlUWeIkBCmqO2/PWInQgNu9I7YXj/Vfd566ddTRE5VHErM4B9XaNE2dRBM9J0ub1JKeWZaBByqP/hDNADRxxQ==
+ version "1.15.3"
+ resolved "https://registry.yarnpkg.com/ember-cli-page-object/-/ember-cli-page-object-1.15.3.tgz#4b1814e270367a455353aeb81019fb8d8c641886"
+ integrity sha512-wGZqQnsyFHcJilf0xcWa53my/bprtZWHXg7m6wZPbWbnJCXNf1aAouj9uwH77r3PnE+/uYt0MIKMfX3Cnd607g==
dependencies:
broccoli-file-creator "^2.1.1"
broccoli-merge-trees "^2.0.0"
@@ -4374,7 +5166,7 @@ ember-cli-path-utils@^1.0.0:
resolved "https://registry.yarnpkg.com/ember-cli-path-utils/-/ember-cli-path-utils-1.0.0.tgz#4e39af8b55301cddc5017739b77a804fba2071ed"
integrity sha1-Tjmvi1UwHN3FAXc5t3qAT7ogce0=
-ember-cli-preprocess-registry@^3.1.2:
+ember-cli-preprocess-registry@^3.3.0:
version "3.3.0"
resolved "https://registry.yarnpkg.com/ember-cli-preprocess-registry/-/ember-cli-preprocess-registry-3.3.0.tgz#685837a314fbe57224bd54b189f4b9c23907a2de"
integrity sha512-60GYpw7VPeB7TvzTLZTuLTlHdOXvayxjAQ+IxM2T04Xkfyu75O2ItbWlftQW7NZVGkaCsXSRAmn22PG03VpLMA==
@@ -4384,14 +5176,6 @@ ember-cli-preprocess-registry@^3.1.2:
debug "^3.0.1"
process-relative-require "^1.0.0"
-ember-cli-qunit@^4.3.2:
- version "4.4.0"
- resolved "https://registry.yarnpkg.com/ember-cli-qunit/-/ember-cli-qunit-4.4.0.tgz#0edd7d651001d0d7ea200b9236a4733a5b7420f1"
- integrity sha512-+gkx380AV4WXYjQeIuQi675STL9K12fHFtxs8B9u3EFbw45vJKrnYR4Vph3FujxhE/1pr/Je8kZEPAuezZAVLw==
- dependencies:
- ember-cli-babel "^6.11.0"
- ember-qunit "^3.5.0"
-
ember-cli-sass@^10.0.0:
version "10.0.0"
resolved "https://registry.yarnpkg.com/ember-cli-sass/-/ember-cli-sass-10.0.0.tgz#700094ebaf348896111756c2644f1e444b05323c"
@@ -4481,6 +5265,24 @@ ember-cli-test-loader@^2.2.0:
dependencies:
ember-cli-babel "^6.8.1"
+ember-cli-typescript@^2.0.0, ember-cli-typescript@^2.0.2:
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/ember-cli-typescript/-/ember-cli-typescript-2.0.2.tgz#464984131fbdc05655eb61d1c3cdd911d3137f0d"
+ integrity sha512-7I5azCTxOgRDN8aSSnJZIKSqr+MGnT+jLTUbBYqF8wu6ojs2DUnTePxUcQMcvNh3Q3B1ySv7Q/uZFSjdU9gSjA==
+ dependencies:
+ "@babel/plugin-proposal-class-properties" "^7.1.0"
+ "@babel/plugin-transform-typescript" "~7.4.0"
+ ansi-to-html "^0.6.6"
+ debug "^4.0.0"
+ ember-cli-babel-plugin-helpers "^1.0.0"
+ execa "^1.0.0"
+ fs-extra "^7.0.0"
+ resolve "^1.5.0"
+ rsvp "^4.8.1"
+ semver "^6.0.0"
+ stagehand "^1.0.0"
+ walk-sync "^1.0.0"
+
ember-cli-uglify@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/ember-cli-uglify/-/ember-cli-uglify-2.1.0.tgz#4a0641fe4768d7ab7d4807aca9924cc77c544184"
@@ -4489,13 +5291,6 @@ ember-cli-uglify@^2.1.0:
broccoli-uglify-sourcemap "^2.1.1"
lodash.defaultsdeep "^4.6.0"
-ember-cli-valid-component-name@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/ember-cli-valid-component-name/-/ember-cli-valid-component-name-1.0.0.tgz#71550ce387e0233065f30b30b1510aa2dfbe87ef"
- integrity sha1-cVUM44fgIzBl8wswsVEKot++h+8=
- dependencies:
- silent-error "^1.0.0"
-
ember-cli-version-checker@^1.0.2:
version "1.3.1"
resolved "https://registry.yarnpkg.com/ember-cli-version-checker/-/ember-cli-version-checker-1.3.1.tgz#0bc2d134c830142da64bf9627a0eded10b61ae72"
@@ -4511,7 +5306,7 @@ ember-cli-version-checker@^2.0.0, ember-cli-version-checker@^2.1.0, ember-cli-ve
resolve "^1.3.3"
semver "^5.3.0"
-ember-cli-version-checker@^3.0.0, ember-cli-version-checker@^3.1.2:
+ember-cli-version-checker@^3.0.0, ember-cli-version-checker@^3.1.2, ember-cli-version-checker@^3.1.3:
version "3.1.3"
resolved "https://registry.yarnpkg.com/ember-cli-version-checker/-/ember-cli-version-checker-3.1.3.tgz#7c9b4f5ff30fdebcd480b1c06c4de43bb51c522c"
integrity sha512-PZNSvpzwWgv68hcXxyjREpj3WWb81A7rtYNQq1lLEgrWIchF8ApKJjWP3NBpHjaatwILkZAV8klair5WFlXAKg==
@@ -4519,98 +5314,103 @@ ember-cli-version-checker@^3.0.0, ember-cli-version-checker@^3.1.2:
resolve-package-path "^1.2.6"
semver "^5.6.0"
-ember-cli@~3.4.4:
- version "3.4.4"
- resolved "https://registry.yarnpkg.com/ember-cli/-/ember-cli-3.4.4.tgz#8d25b223b2ef3b863310099192da92ab1feeef6b"
- integrity sha512-opbdqt9AbNRPr/amemwqi9ENbx/HcqcprxJAW/y8nZAV1gAku+xPY4WNBF6KuClVEKkddbNi4jITLU59rlJcDA==
+ember-cli@~3.12.0:
+ version "3.12.0"
+ resolved "https://registry.yarnpkg.com/ember-cli/-/ember-cli-3.12.0.tgz#e6d27e4c57fc44eb7963fe4611b3b0cfb9d9558d"
+ integrity sha512-hON3/thKAIcwzHX9SWIvf+UR2sQTWyXzyECYw20NDvUSydZMVtggK4GQncu7LSiUs+5zIxT8ZPzanpUZMINuCg==
dependencies:
- amd-name-resolver "^1.2.0"
- babel-plugin-transform-es2015-modules-amd "^6.24.1"
- bower-config "^1.3.0"
+ "@babel/core" "^7.4.3"
+ "@babel/plugin-transform-modules-amd" "^7.2.0"
+ amd-name-resolver "^1.3.1"
+ babel-plugin-module-resolver "^3.2.0"
+ bower-config "^1.4.1"
bower-endpoint-parser "0.2.2"
- broccoli-amd-funnel "^1.3.0"
- broccoli-babel-transpiler "^6.5.0"
+ broccoli "^3.1.1"
+ broccoli-amd-funnel "^2.0.1"
+ broccoli-babel-transpiler "^7.2.0"
broccoli-builder "^0.18.14"
- broccoli-concat "^3.5.1"
+ broccoli-concat "^3.7.3"
broccoli-config-loader "^1.0.1"
broccoli-config-replace "^1.1.2"
- broccoli-debug "^0.6.4"
- broccoli-funnel "^2.0.1"
+ broccoli-debug "^0.6.5"
+ broccoli-funnel "^2.0.2"
broccoli-funnel-reducer "^1.0.0"
- broccoli-merge-trees "^3.0.0"
+ broccoli-merge-trees "^3.0.2"
broccoli-middleware "^2.0.1"
broccoli-module-normalizer "^1.3.0"
broccoli-module-unification-reexporter "^1.0.0"
+ broccoli-slow-trees "^3.0.1"
broccoli-source "^1.1.0"
- broccoli-stew "^2.0.0"
- calculate-cache-key-for-tree "^1.1.0"
- capture-exit "^1.2.0"
- chalk "^2.4.1"
- ci-info "^1.1.3"
+ broccoli-stew "^2.1.0"
+ calculate-cache-key-for-tree "^2.0.0"
+ capture-exit "^2.0.0"
+ chalk "^2.4.2"
+ ci-info "^2.0.0"
clean-base-url "^1.0.0"
- compression "^1.7.3"
+ compression "^1.7.4"
configstore "^4.0.0"
- console-ui "^2.2.2"
+ console-ui "^3.0.2"
core-object "^3.1.5"
dag-map "^2.0.2"
- diff "^3.5.0"
- ember-cli-broccoli-sane-watcher "^2.1.1"
+ diff "^4.0.1"
+ ember-cli-broccoli-sane-watcher "^3.0.0"
ember-cli-is-package-missing "^1.0.0"
ember-cli-lodash-subset "^2.0.1"
ember-cli-normalize-entity-name "^1.0.0"
- ember-cli-preprocess-registry "^3.1.2"
+ ember-cli-preprocess-registry "^3.3.0"
ember-cli-string-utils "^1.1.0"
+ ember-source-channel-url "^1.1.0"
ensure-posix-path "^1.0.2"
- execa "^0.10.0"
+ execa "^1.0.0"
exit "^0.1.2"
- express "^4.16.3"
- filesize "^3.6.1"
+ express "^4.16.4"
+ filesize "^4.1.2"
find-up "^3.0.0"
- find-yarn-workspace-root "^1.1.0"
- fixturify-project "^1.5.3"
- fs-extra "^7.0.0"
- fs-tree-diff "^0.5.7"
- get-caller-file "^1.0.0"
- git-repo-info "^2.0.0"
- glob "^7.1.2"
- heimdalljs "^0.2.5"
+ find-yarn-workspace-root "^1.2.1"
+ fs-extra "^7.0.1"
+ fs-tree-diff "^2.0.1"
+ get-caller-file "^2.0.5"
+ git-repo-info "^2.1.0"
+ glob "^7.1.4"
+ heimdalljs "^0.2.6"
heimdalljs-fs-monitor "^0.2.2"
- heimdalljs-graph "^0.3.4"
- heimdalljs-logger "^0.1.9"
+ heimdalljs-graph "^0.3.5"
+ heimdalljs-logger "^0.1.10"
http-proxy "^1.17.0"
inflection "^1.12.0"
is-git-url "^1.0.0"
isbinaryfile "^3.0.3"
- js-yaml "^3.12.0"
+ js-yaml "^3.13.1"
json-stable-stringify "^1.0.1"
leek "0.0.24"
lodash.template "^4.4.0"
markdown-it "^8.4.2"
markdown-it-terminal "0.1.0"
minimatch "^3.0.4"
- morgan "^1.9.0"
- node-modules-path "^1.0.1"
+ morgan "^1.9.1"
nopt "^3.0.6"
npm-package-arg "^6.1.0"
- portfinder "^1.0.15"
+ p-defer "^2.1.0"
+ portfinder "^1.0.20"
promise-map-series "^0.2.3"
+ promise.prototype.finally "^3.1.0"
quick-temp "^0.1.8"
- resolve "^1.8.1"
- rsvp "^4.8.3"
- sane "^3.0.0"
- semver "^5.5.0"
- silent-error "^1.1.0"
- sort-package-json "^1.15.0"
+ resolve "^1.10.1"
+ resolve-package-path "^1.2.7"
+ rsvp "^4.8.4"
+ sane "^4.1.0"
+ semver "^6.0.0"
+ silent-error "^1.1.1"
+ sort-package-json "^1.22.1"
symlink-or-copy "^1.2.0"
- temp "0.8.3"
- testem "^2.9.2"
+ temp "0.9.0"
+ testem "^2.14.0"
tiny-lr "^1.1.1"
- tree-sync "^1.2.2"
+ tree-sync "^1.4.0"
uuid "^3.3.2"
- validate-npm-package-name "^3.0.0"
- walk-sync "^0.3.2"
+ walk-sync "^1.1.3"
watch-detector "^0.1.0"
- yam "^0.0.24"
+ yam "^1.0.0"
ember-compatibility-helpers@^1.1.1, ember-compatibility-helpers@^1.2.0:
version "1.2.0"
@@ -4622,17 +5422,19 @@ ember-compatibility-helpers@^1.1.1, ember-compatibility-helpers@^1.2.0:
semver "^5.4.1"
ember-composable-helpers@^2.0.3:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/ember-composable-helpers/-/ember-composable-helpers-2.2.0.tgz#a03984eaddf65ee08cb9ff554a24b0d671651af3"
- integrity sha512-VWFYfxPLkgmEoL5aplh8dEwzAhmERfPzIGZeb+O7PhT0of5SYtJeOJFbIIXV2NkVHcDothwUu3IEALsWBsES8A==
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/ember-composable-helpers/-/ember-composable-helpers-2.3.1.tgz#db98ad8b55d053e2ac216b9da091c9e7a3b9f453"
+ integrity sha512-Eltj5yt2CtHhBMrdsjKQTP1zFyfEXQ5/v85ObV2zh0eIJZa1t/gImHN+GIHHuJ+9xOrCUAy60/2TJZjadpoPBQ==
dependencies:
- broccoli-funnel "^1.0.1"
+ "@babel/core" "^7.0.0"
+ broccoli-funnel "2.0.1"
ember-cli-babel "^7.1.0"
+ resolve "^1.10.0"
-ember-concurrency@^0.9.0:
- version "0.9.0"
- resolved "https://registry.yarnpkg.com/ember-concurrency/-/ember-concurrency-0.9.0.tgz#0016652ff780fb665842e7f47815ee0601122ea1"
- integrity sha512-JDjvwSlZBUQwv1+qUj6YUqXXe0Y0/to4ppUTNXQ1EEiEAopkHJXQUn0ZcFOiQpEinrYp34Vg6+lUNskoJFL2Vg==
+ember-concurrency@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/ember-concurrency/-/ember-concurrency-1.0.0.tgz#3b650672fdd5dc1d45007626119135829076c2b6"
+ integrity sha512-76aKC0lo2LAPoQYz7vMRlpolWTIQerszr8PPf3JMM5cTOzPwXUtzDcjfso3JAEDdhyUF9fkv2V1DmHagFbC2YQ==
dependencies:
babel-core "^6.24.1"
ember-cli-babel "^6.8.2"
@@ -4646,10 +5448,10 @@ ember-copy@1.0.0, ember-copy@^1.0.0:
dependencies:
ember-cli-babel "^6.6.0"
-ember-data-model-fragments@3.3.0:
- version "3.3.0"
- resolved "https://registry.yarnpkg.com/ember-data-model-fragments/-/ember-data-model-fragments-3.3.0.tgz#93e3ddba6fab2150435f995e07d25a4d88694886"
- integrity sha512-fzBGYCSooaF7sqhxrv08TqG7okye7btYjefGq0ATucaAqSVMkjDkmM9/304nQYHWbKpzWeAzX/qJKSMYaWpN6g==
+ember-data-model-fragments@4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/ember-data-model-fragments/-/ember-data-model-fragments-4.0.0.tgz#8570d8b6bef12e8a3518279af01478ef8818a44f"
+ integrity sha512-DcRRQAWrrfRQBW8+v6takQdS2hNJ9rKWU/uHjnPY6+Vg/y6TxyPU8mo0PF2z0DYAeXwoIQ05iYTJT0sqFPEo+w==
dependencies:
broccoli-file-creator "^2.1.1"
broccoli-merge-trees "^3.0.0"
@@ -4659,43 +5461,34 @@ ember-data-model-fragments@3.3.0:
git-repo-info "^2.0.0"
npm-git-info "^1.0.3"
-ember-data@~3.4.0:
- version "3.4.4"
- resolved "https://registry.yarnpkg.com/ember-data/-/ember-data-3.4.4.tgz#a201c2db1d7ca2cbe59a23ddf3cb96281fce216f"
- integrity sha512-5DE1CxR1Eobue0y2WCkGSRUaOuE8ebktNElhcyPUcrksbnILxniPsKPVRq15X+5wLjaEb+XiscH68NLBGbjUvQ==
+ember-data@~3.12.0:
+ version "3.12.4"
+ resolved "https://registry.yarnpkg.com/ember-data/-/ember-data-3.12.4.tgz#09433e9c270eb4aad023e1e0ed5a8db31b356fd1"
+ integrity sha512-PWHCKYZKht2h6nqG4Vr6sjsQndRbx23eFS7VtzEfTD3qJf5Aa2fG5Ur9T8ZX9U75KxrDLoV/LfnUe1FU5fXI8w==
dependencies:
- "@ember/ordered-set" "^2.0.0"
- babel-plugin-feature-flags "^0.3.1"
- babel-plugin-filter-imports "^0.3.1"
- babel-plugin-transform-es2015-block-scoping "^6.26.0"
- babel6-plugin-strip-class-callcheck "^6.0.0"
- babel6-plugin-strip-heimdall "^6.0.1"
- broccoli-debug "^0.6.4"
- broccoli-file-creator "^2.1.1"
- broccoli-funnel "^2.0.1"
- broccoli-merge-trees "^3.0.0"
- broccoli-rollup "^2.1.1"
- calculate-cache-key-for-tree "^1.1.0"
- chalk "^2.4.1"
- ember-cli-babel "^6.16.0"
- ember-cli-path-utils "^1.0.0"
- ember-cli-string-utils "^1.1.0"
- ember-cli-test-info "^1.0.0"
- ember-cli-version-checker "^2.1.2"
- ember-inflector "^3.0.0"
- git-repo-info "^2.0.0"
- heimdalljs "^0.3.0"
- inflection "^1.12.0"
- npm-git-info "^1.0.3"
- resolve "^1.8.1"
- semver "^5.5.0"
- silent-error "^1.1.0"
+ "@ember-data/-build-infra" "3.12.4"
+ "@ember-data/adapter" "3.12.4"
+ "@ember-data/model" "3.12.4"
+ "@ember-data/serializer" "3.12.4"
+ "@ember-data/store" "3.12.4"
+ "@ember/ordered-set" "^2.0.3"
+ "@glimmer/env" "^0.1.7"
+ ember-cli-babel "^7.8.0"
+ ember-cli-typescript "^2.0.2"
+ ember-inflector "^3.0.1"
ember-debug-handlers-polyfill@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/ember-debug-handlers-polyfill/-/ember-debug-handlers-polyfill-1.1.1.tgz#e9ae0a720271a834221179202367421b580002ef"
integrity sha512-lO7FBAqJjzbL+IjnWhVfQITypPOJmXdZngZR/Vdn513W4g/Q6Sjicao/mDzeDCb48Y70C4Facwk0LjdIpSZkRg==
+ember-element-helper@^0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/ember-element-helper/-/ember-element-helper-0.1.1.tgz#ffd2a0566b22a13c0e7780ae96443f4ffda2e63d"
+ integrity sha512-MfES7MbZ5UcHTo1lutJCcz6hI+/CadurWcOR3kOQl0jKcBKdAWyYIJXK4u0FDXzlgKczX9vL3R2eJUtnGe144w==
+ dependencies:
+ ember-cli-babel "^6.16.0"
+
ember-export-application-global@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/ember-export-application-global/-/ember-export-application-global-2.0.0.tgz#8d6d7619ac8a1a3f8c43003549eb21ebed685bd2"
@@ -4711,21 +5504,21 @@ ember-factory-for-polyfill@^1.3.1:
ember-cli-version-checker "^2.1.0"
ember-fetch@^6.5.0:
- version "6.5.0"
- resolved "https://registry.yarnpkg.com/ember-fetch/-/ember-fetch-6.5.0.tgz#efed80b3dd2259b52efce7498659e9125235bfb7"
- integrity sha512-B9KSeeO3xDNMQ22JqNwbmgnOprBzc8kNVfQMtzkAmugMb2aCmBZohAlQlwUUX5ODz8fHq2xfuZXDHD81Dzb0vg==
+ version "6.7.0"
+ resolved "https://registry.yarnpkg.com/ember-fetch/-/ember-fetch-6.7.0.tgz#c219f820e40f7918147391617a5940c67d293319"
+ integrity sha512-lB9G+XDKOc84Dr3THJs+l/KmtzUus7nv12Z0xOP54J917HmjnAsSZ9OHTp+X8ClxlAm35/v9l+sFd7IlB9Baqw==
dependencies:
- abortcontroller-polyfill "^1.2.5"
+ abortcontroller-polyfill "^1.3.0"
broccoli-concat "^3.2.2"
broccoli-debug "^0.6.5"
broccoli-merge-trees "^3.0.0"
broccoli-rollup "^2.1.1"
- broccoli-stew "^2.0.0"
+ broccoli-stew "^2.1.0"
broccoli-templater "^2.0.1"
- calculate-cache-key-for-tree "^1.1.0"
+ calculate-cache-key-for-tree "^2.0.0"
caniuse-api "^3.0.0"
ember-cli-babel "^6.8.2"
- node-fetch "^2.3.0"
+ node-fetch "^2.6.0"
whatwg-fetch "^3.0.0"
ember-freestyle@~0.10.0:
@@ -4758,35 +5551,43 @@ ember-getowner-polyfill@^2.0.1, ember-getowner-polyfill@^2.2.0:
ember-cli-version-checker "^2.1.0"
ember-factory-for-polyfill "^1.3.1"
-"ember-inflector@^2.0.0 || ^3.0.0", ember-inflector@^3.0.0:
+"ember-inflector@^2.0.0 || ^3.0.0", ember-inflector@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/ember-inflector/-/ember-inflector-3.0.1.tgz#04be6df4d7e4000f6d6bd70787cdc995f77be4ab"
+ integrity sha512-fngrwMsnhkBt51KZgwNwQYxgURwV4lxtoHdjxf7RueGZ5zM7frJLevhHw7pbQNGqXZ3N+MRkhfNOLkdDK9kFdA==
+ dependencies:
+ ember-cli-babel "^6.6.0"
+
+ember-inflector@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/ember-inflector/-/ember-inflector-3.0.0.tgz#7e1ee8aaa0fa773ba0905d8b7c0786354d890ee1"
integrity sha512-tLWfYolZAkLnkTvvBkjizy4Wmj8yI8wqHZFK+leh0iScHiC3r1Yh5C4qO+OMGiBTMLwfTy+YqVoE/Nu3hGNkcA==
dependencies:
ember-cli-babel "^6.6.0"
-ember-inline-svg@^0.2.1:
- version "0.2.1"
- resolved "https://registry.yarnpkg.com/ember-inline-svg/-/ember-inline-svg-0.2.1.tgz#091f3fc27836e5ee0df1482c9e4a1a8adc9113f3"
- integrity sha512-R7LsMZo1CrXbDgCX6sMnzUg+ggeosOwq8HTilWnNUpH11mb9pbMoG5s/Qm9iRMVW2iMesiCMnCaLsEkTiY8Yhw==
+ember-inline-svg@^0.3.0:
+ version "0.3.0"
+ resolved "https://registry.yarnpkg.com/ember-inline-svg/-/ember-inline-svg-0.3.0.tgz#14e305446e832c116210d5f0cb2aae8343879980"
+ integrity sha512-CH7+bOUCDfDo27mJO2NQqcDpnOz258iXzdiWmG6hftIBZ97Q64Qo0/Hm38ShWY40r2cw3jwior19miH6/e7amg==
dependencies:
broccoli-caching-writer "^3.0.3"
broccoli-flatiron "~0.1.3"
broccoli-funnel "^2.0.1"
broccoli-merge-trees "^3.0.0"
ember-cli-babel "^6.16.0"
- merge "^1.2.0"
+ merge "^1.2.1"
mkdirp "^0.5.1"
promise-map-series "^0.2.1"
- svgo "~1.0.5"
+ svgo "~1.2.2"
walk-sync "^0.3.1"
-ember-load-initializers@^1.1.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/ember-load-initializers/-/ember-load-initializers-1.1.0.tgz#4edacc0f3a14d9f53d241ac3e5561804c8377978"
- integrity sha512-WiciFi8IXOqjyJ65M4iBNIthqcy4uXXQq5n3WxeMMhvJVk5JNSd9hynNECNz3nqfEYuZQ9c04UWkmFIQXRfl4Q==
+ember-load-initializers@^2.0.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/ember-load-initializers/-/ember-load-initializers-2.1.0.tgz#b402815ab9c823ff48a1369b52633721987e72d4"
+ integrity sha512-zvcq35U2EPyjonCPdDBISZbeuxP3OXf+asmj2bNucFwo1ej7gYJCJacy6N8oABEG2EmrU/8jMDoZndWIAGn0cQ==
dependencies:
- ember-cli-babel "^6.6.0"
+ ember-cli-babel "^7.10.0"
+ ember-cli-typescript "^2.0.0"
ember-macro-helpers@^2.1.0:
version "2.2.0"
@@ -4808,13 +5609,22 @@ ember-maybe-import-regenerator@^0.1.5, ember-maybe-import-regenerator@^0.1.6:
ember-cli-babel "^6.0.0-beta.4"
regenerator-runtime "^0.9.5"
-ember-maybe-in-element@^0.2.0:
- version "0.2.0"
- resolved "https://registry.yarnpkg.com/ember-maybe-in-element/-/ember-maybe-in-element-0.2.0.tgz#9ac51cbbd9d83d6230ad996c11e33f0eca3032e0"
- integrity sha512-R5e6N8yDbfNbA/3lMZsFs2KEzv/jt80TsATiKMCqdqKuSG82KrD25cRdU5VkaE8dTQbziyBeuJs90bBiqOnakQ==
+ember-maybe-in-element@^0.4.0:
+ version "0.4.0"
+ resolved "https://registry.yarnpkg.com/ember-maybe-in-element/-/ember-maybe-in-element-0.4.0.tgz#fe1994c60ee64527d2b2f3b4479ebf8806928bd8"
+ integrity sha512-ADQ9jewz46Y2MWiTAKrheIukHiU6p0QHn3xqz1BBDDOmubW1WdAjSrvtkEWsJQ08DyxIn3RdMuNDzAUo6HN6qw==
dependencies:
ember-cli-babel "^7.1.0"
+ember-modifier-manager-polyfill@^1.1.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/ember-modifier-manager-polyfill/-/ember-modifier-manager-polyfill-1.2.0.tgz#cf4444e11a42ac84f5c8badd85e635df57565dda"
+ integrity sha512-bnaKF1LLKMkBNeDoetvIJ4vhwRPKIIumWr6dbVuW6W6p4QV8ZiO+GdF8J7mxDNlog9CeL9Z/7wam4YS86G8BYA==
+ dependencies:
+ ember-cli-babel "^7.10.0"
+ ember-cli-version-checker "^2.1.2"
+ ember-compatibility-helpers "^1.2.0"
+
ember-moment@^7.8.1:
version "7.8.1"
resolved "https://registry.yarnpkg.com/ember-moment/-/ember-moment-7.8.1.tgz#6f77cf941d1a92e231b2f4b810e113b2fae50c5f"
@@ -4832,6 +5642,13 @@ ember-native-dom-helpers@^0.5.3:
broccoli-funnel "^1.1.0"
ember-cli-babel "^6.6.0"
+ember-overridable-computed@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/ember-overridable-computed/-/ember-overridable-computed-1.0.0.tgz#4fb4a5acc9ec9ed7421586a5a8b4014f5bdb04f7"
+ integrity sha512-0uuJZDEpq0LzNGQAtAf1PhcFVbkaHKd5ilT81k1aU4ZgCo5cwkxU65R5evokweq2dQwIaGTSs0MndCG+qI8BXA==
+ dependencies:
+ ember-cli-babel "^7.7.3"
+
ember-page-title@^5.0.2:
version "5.0.2"
resolved "https://registry.yarnpkg.com/ember-page-title/-/ember-page-title-5.0.2.tgz#ab5a60c16318ba7f5e66cd41f580c9831ce3b612"
@@ -4842,15 +5659,16 @@ ember-page-title@^5.0.2:
ember-cli-htmlbars "^3.0.1"
ember-copy "^1.0.0"
-ember-power-select@^2.2.3:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/ember-power-select/-/ember-power-select-2.3.0.tgz#f9f2d242381f715f860c76f168d63c6ff2688ae7"
- integrity sha512-LSLAt3WiljlbXelWLgna6cnnvhapltzK/yYoRbQ2iyawIQA1yU/HD4Sc2s3flrGI5IpAIbG+MFYKq0CpfJWQMQ==
+ember-power-select@^3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/ember-power-select/-/ember-power-select-3.0.4.tgz#52700ecaa2053b0a20b4e5d0a6e63802346e52ad"
+ integrity sha512-+KS8GnKUuqsC725Ncv3NDz/fbVSYBFkRHPXYTtGSWUtpTkaY2ncSwBr6mIFPDNOr7isBvtUArXHvHCnz5O9xaQ==
dependencies:
- ember-basic-dropdown "^1.1.0"
- ember-cli-babel "^7.2.0"
- ember-cli-htmlbars "^3.0.1"
- ember-concurrency "^0.9.0"
+ "@ember-decorators/component" "^6.1.0"
+ ember-basic-dropdown "^2.0.5"
+ ember-cli-babel "^7.11.0"
+ ember-cli-htmlbars "^3.1.0"
+ ember-concurrency "^1.0.0"
ember-text-measurer "^0.5.0"
ember-truth-helpers "^2.1.0"
@@ -4864,18 +5682,18 @@ ember-qunit-nice-errors@^1.2.0:
ember-cli-babel "^6.6.0"
recast "^0.13.0"
-ember-qunit@^3.5.0:
- version "3.5.3"
- resolved "https://registry.yarnpkg.com/ember-qunit/-/ember-qunit-3.5.3.tgz#bfd0bff8298c78c77e870cca43fe0826e78a0d09"
- integrity sha512-FmXsI1bGsZ5th25x4KEle2fLCVURTptsQODfBt+Pg8tk9rX7y79cqny91PrhtkhE+giZ8p029tnq94SdpJ4ojg==
+ember-qunit@^4.4.1:
+ version "4.5.1"
+ resolved "https://registry.yarnpkg.com/ember-qunit/-/ember-qunit-4.5.1.tgz#dc4b0a794fbeb6702a02f28bf19091de0f90fd5a"
+ integrity sha512-fOxXQLFdellP0yiMd9f3n7pIGggiDo8kBuswdGvsCrqTKq5aB1Cb49eeoNyBDQYGlhcxY0pOGUe+xElppChDBA==
dependencies:
- "@ember/test-helpers" "^0.7.26"
- broccoli-funnel "^2.0.1"
- broccoli-merge-trees "^2.0.0"
+ "@ember/test-helpers" "^1.6.0"
+ broccoli-funnel "^2.0.2"
+ broccoli-merge-trees "^3.0.2"
common-tags "^1.4.0"
- ember-cli-babel "^6.8.2"
+ ember-cli-babel "^7.8.0"
ember-cli-test-loader "^2.2.0"
- qunit "~2.6.0"
+ qunit "^2.9.2"
ember-resolver@^5.0.1:
version "5.1.3"
@@ -4890,17 +5708,17 @@ ember-resolver@^5.0.1:
ember-cli-version-checker "^3.0.0"
resolve "^1.10.0"
-ember-responsive@^3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/ember-responsive/-/ember-responsive-3.0.0.tgz#03791da324299a8c8cb461e541a5e1aeca887881"
- integrity sha512-5JQ+REBu37M7NNDJOnTjzp5eQzg4cX7VtPcD19V3nBcntRuDwf7N6TndLxmw4Kt3JXuzQL4PkDE2SgVKuNTdWQ==
+ember-responsive@^3.0.4:
+ version "3.0.4"
+ resolved "https://registry.yarnpkg.com/ember-responsive/-/ember-responsive-3.0.4.tgz#1980ae6393b3b6ebedf1c7cda1cd70eeb64ea85b"
+ integrity sha512-jnybZXFwJqz61Tgj4o8uGwKEMBm3N6o9VQJpLlg0MpMVcm1OAemftQpkfs+687Q1SgKFSuN1rwumx+xx7H5Umw==
dependencies:
ember-cli-babel "^6.6.0"
-ember-rfc176-data@^0.3.8:
- version "0.3.8"
- resolved "https://registry.yarnpkg.com/ember-rfc176-data/-/ember-rfc176-data-0.3.8.tgz#d46bbef9a0d57c803217b258cfd2e90d8e191848"
- integrity sha512-SQup3iG7SDLZNuf7nMMx5BC5truO8AYKRi80gApeQ07NsbuXV4LH75i5eOaxF0i8l9+H1tzv34kGe6rEh0C1NQ==
+ember-rfc176-data@^0.3.12:
+ version "0.3.12"
+ resolved "https://registry.yarnpkg.com/ember-rfc176-data/-/ember-rfc176-data-0.3.12.tgz#90d82878e69e2ac9a5438e8ce14d12c6031c5bd2"
+ integrity sha512-g9HeZj/gU5bfIIrGXkP7MhS2b3Vu5DfNUrYr14hy99TgIvtZETO+96QF4WOEUXGjIJdfTRjerVnQlqngPQSv1g==
ember-rfc176-data@^0.3.9:
version "0.3.9"
@@ -4922,35 +5740,42 @@ ember-runtime-enumerable-includes-polyfill@^2.0.0:
ember-cli-babel "^6.9.0"
ember-cli-version-checker "^2.1.0"
-ember-sinon@^2.2.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/ember-sinon/-/ember-sinon-2.2.0.tgz#acb628dec695d6817bd17fd6c25a4d70821851e9"
- integrity sha512-BgjHsgy8rli8FaJ1MWkscIKRpoFmzYhNkDtwBWQrUCzQx1bp3+irVpseAPqBnuEB4FPFGGQV5ahDpFcckmIsAw==
+ember-sinon@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/ember-sinon/-/ember-sinon-4.0.0.tgz#bb9bc43b68cc4500457261606a47c7b6ef8c30a3"
+ integrity sha512-SF6+ak/8yTyD2R8ylz9HYzoziiJCCB6bh/QG/ly4aqAf9eXL+ldQE91IljzEDh6B8feMUpUCGGajbrs9svwhQA==
dependencies:
broccoli-funnel "^2.0.0"
broccoli-merge-trees "^3.0.0"
- ember-cli-babel "^6.6.0"
- sinon "^6.0.1"
+ ember-cli-babel "^7.7.3"
+ sinon "^7.3.2"
-ember-source@~3.4.0:
- version "3.4.8"
- resolved "https://registry.yarnpkg.com/ember-source/-/ember-source-3.4.8.tgz#68677bf9bd222aff865100b241004649c3d3dda7"
- integrity sha512-uiRqAzzFKvZ0P5zf5eOv2BrhBUNFJOnsUrri6dN8Ci7pxBkj/fyKVxwIu/+juQh4E/QRgrfze/+Cueq0FNf6rQ==
+ember-source-channel-url@^1.1.0:
+ version "1.2.0"
+ resolved "https://registry.yarnpkg.com/ember-source-channel-url/-/ember-source-channel-url-1.2.0.tgz#77eb9d0889e5f5370e6c70fcb2696c63ff4a34a1"
+ integrity sha512-CLClcHzVf+8GoFk4176R16nwXoel70bd7DKVAY6D8M0m5fJJhbTrAPYpDA0lY8A60HZo9j/s8A8LWiGh1YmdZg==
dependencies:
- broccoli-funnel "^2.0.1"
- broccoli-merge-trees "^2.0.0"
- chalk "^2.3.0"
+ got "^8.0.1"
+
+ember-source@~3.12.0:
+ version "3.12.0"
+ resolved "https://registry.yarnpkg.com/ember-source/-/ember-source-3.12.0.tgz#92f72894836d4497e704901c1d061c61b066bddf"
+ integrity sha512-4iA2BgYmNLWysifLyt2LCQgU9ux/NiTR/MT7KTt9HUyTDJyivcdyKNtfrUQst/1InUvn+MxuQ0ZsbQICJkX6yA==
+ dependencies:
+ broccoli-funnel "^2.0.2"
+ broccoli-merge-trees "^3.0.2"
+ chalk "^2.4.2"
+ ember-cli-babel "^7.7.0"
ember-cli-get-component-path-option "^1.0.0"
ember-cli-is-package-missing "^1.0.0"
ember-cli-normalize-entity-name "^1.0.0"
ember-cli-path-utils "^1.0.0"
ember-cli-string-utils "^1.1.0"
- ember-cli-valid-component-name "^1.0.0"
- ember-cli-version-checker "^2.1.0"
+ ember-cli-version-checker "^3.1.3"
ember-router-generator "^1.2.3"
inflection "^1.12.0"
- jquery "^3.3.1"
- resolve "^1.6.0"
+ jquery "^3.4.1"
+ resolve "^1.11.1"
ember-template-lint@^1.0.0-beta.5:
version "1.1.0"
@@ -4972,6 +5797,13 @@ ember-test-selectors@^2.1.0:
ember-cli-babel "^6.8.2"
ember-cli-version-checker "^3.1.2"
+ember-test-waiters@^1.0.0:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/ember-test-waiters/-/ember-test-waiters-1.1.1.tgz#7df6e7a47e0fdca814aa351f7f7f9a006e15fdcd"
+ integrity sha512-ra71ZWTGBGLeDPa308aeAg9+/nYxv2fk4OEzmXdhvbSa5Dtbei94sr5pbLXx2IiK3Re2gDAvDzxg9PVhLy9fig==
+ dependencies:
+ ember-cli-babel "^7.1.2"
+
ember-text-measurer@^0.5.0:
version "0.5.0"
resolved "https://registry.yarnpkg.com/ember-text-measurer/-/ember-text-measurer-0.5.0.tgz#b907aeb8cbc04560e5070dc0347cdd35d0040d0d"
@@ -4979,7 +5811,7 @@ ember-text-measurer@^0.5.0:
dependencies:
ember-cli-babel "^7.1.0"
-ember-truth-helpers@^2.0.0, ember-truth-helpers@^2.1.0:
+ember-truth-helpers@2.1.0, ember-truth-helpers@^2.0.0, ember-truth-helpers@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/ember-truth-helpers/-/ember-truth-helpers-2.1.0.tgz#d4dab4eee7945aa2388126485977baeb33ca0798"
integrity sha512-BQlU8aTNl1XHKTYZ243r66yqtR9JU7XKWQcmMA+vkqfkE/c9WWQ9hQZM8YABihCmbyxzzZsngvldokmeX5GhAw==
@@ -5098,7 +5930,7 @@ error@^7.0.0:
string-template "~0.2.1"
xtend "~4.0.0"
-es-abstract@^1.12.0, es-abstract@^1.5.1:
+es-abstract@^1.12.0, es-abstract@^1.5.1, es-abstract@^1.9.0:
version "1.13.0"
resolved "https://registry.yarnpkg.com/es-abstract/-/es-abstract-1.13.0.tgz#ac86145fdd5099d8dd49558ccba2eaf9b88e24e9"
integrity sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==
@@ -5129,6 +5961,38 @@ escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.4, escape-string-regexp@^
resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4"
integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=
+escodegen@^1.11.0:
+ version "1.12.0"
+ resolved "https://registry.yarnpkg.com/escodegen/-/escodegen-1.12.0.tgz#f763daf840af172bb3a2b6dd7219c0e17f7ff541"
+ integrity sha512-TuA+EhsanGcme5T3R0L80u4t8CpbXQjegRmf7+FPTJrtCTErXFeelblRgHQa1FofEzqYYJmJ/OqjTwREp9qgmg==
+ dependencies:
+ esprima "^3.1.3"
+ estraverse "^4.2.0"
+ esutils "^2.0.2"
+ optionator "^0.8.1"
+ optionalDependencies:
+ source-map "~0.6.1"
+
+eslint-plugin-es@^1.4.1:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-es/-/eslint-plugin-es-1.4.1.tgz#12acae0f4953e76ba444bfd1b2271081ac620998"
+ integrity sha512-5fa/gR2yR3NxQf+UXkeLeP8FBBl6tSgdrAz1+cF84v1FMM4twGwQoqTnn+QxFLcPOrF4pdKEJKDB/q9GoyJrCA==
+ dependencies:
+ eslint-utils "^1.4.2"
+ regexpp "^2.0.1"
+
+eslint-plugin-node@^9.0.1:
+ version "9.2.0"
+ resolved "https://registry.yarnpkg.com/eslint-plugin-node/-/eslint-plugin-node-9.2.0.tgz#b1911f111002d366c5954a6d96d3cd5bf2a3036a"
+ integrity sha512-2abNmzAH/JpxI4gEOwd6K8wZIodK3BmHbTxz4s79OIYwwIt2gkpEXlAouJXu4H1c9ySTnRso0tsuthSOZbUMlA==
+ dependencies:
+ eslint-plugin-es "^1.4.1"
+ eslint-utils "^1.4.2"
+ ignore "^5.1.1"
+ minimatch "^3.0.4"
+ resolve "^1.10.1"
+ semver "^6.1.0"
+
eslint-scope@^4.0.0, eslint-scope@^4.0.3:
version "4.0.3"
resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-4.0.3.tgz#ca03833310f6889a3264781aa82e63eb9cfe7848"
@@ -5142,6 +6006,13 @@ eslint-utils@^1.3.1:
resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.3.1.tgz#9a851ba89ee7c460346f97cf8939c7298827e512"
integrity sha512-Z7YjnIldX+2XMcjr7ZkgEsOj/bREONV60qYeB/bjMAqqqZ4zxKyWX+BOUkdmRmA9riiIPVvo5x86m5elviOk0Q==
+eslint-utils@^1.4.2:
+ version "1.4.2"
+ resolved "https://registry.yarnpkg.com/eslint-utils/-/eslint-utils-1.4.2.tgz#166a5180ef6ab7eb462f162fd0e6f2463d7309ab"
+ integrity sha512-eAZS2sEUMlIeCjBeubdj45dmBHQwPHWyBcT1VSYB7o9x9WRRqKxyUoiXlRjyAwzN7YEzHJlYg0NmzDRWx6GP4Q==
+ dependencies:
+ eslint-visitor-keys "^1.0.0"
+
eslint-visitor-keys@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-1.0.0.tgz#3f3180fb2e291017716acb4c9d6d5b5c34a6a81d"
@@ -5189,6 +6060,11 @@ eslint@^5.16.0, eslint@^5.6.0:
table "^5.2.3"
text-table "^0.2.0"
+esm@^3.2.25, esm@^3.2.4:
+ version "3.2.25"
+ resolved "https://registry.yarnpkg.com/esm/-/esm-3.2.25.tgz#342c18c29d56157688ba5ce31f8431fbb795cc10"
+ integrity sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==
+
espree@^5.0.1:
version "5.0.1"
resolved "https://registry.yarnpkg.com/espree/-/espree-5.0.1.tgz#5d6526fa4fc7f0788a5cf75b15f30323e2f81f7a"
@@ -5198,6 +6074,11 @@ espree@^5.0.1:
acorn-jsx "^5.0.0"
eslint-visitor-keys "^1.0.0"
+esprima@^3.1.3, esprima@~3.1.0:
+ version "3.1.3"
+ resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
+ integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=
+
esprima@^4.0.0, esprima@~4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71"
@@ -5208,11 +6089,6 @@ esprima@~3.0.0:
resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.0.0.tgz#53cf247acda77313e551c3aa2e73342d3fb4f7d9"
integrity sha1-U88kes2ncxPlUcOqLnM0LT+099k=
-esprima@~3.1.0:
- version "3.1.3"
- resolved "https://registry.yarnpkg.com/esprima/-/esprima-3.1.3.tgz#fdca51cee6133895e3c88d535ce49dbff62a4633"
- integrity sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=
-
esquery@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.0.1.tgz#406c51658b1f5991a5f9b62b1dc25b00e3e5c708"
@@ -5232,10 +6108,15 @@ estraverse@^4.0.0, estraverse@^4.1.0, estraverse@^4.1.1:
resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.2.0.tgz#0dee3fed31fcd469618ce7342099fc1afa0bdb13"
integrity sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=
-estree-walker@^0.6.0:
- version "0.6.0"
- resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.0.tgz#5d865327c44a618dde5699f763891ae31f257dae"
- integrity sha512-peq1RfVAVzr3PU/jL31RaOjUKLoZJpObQWJJ+LgfcxDUifyLZ1RjPQZTl0pzj2uJ45b7A7XpyppXvxdEqzo4rw==
+estraverse@^4.2.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-4.3.0.tgz#398ad3f3c5a24948be7725e83d11a7de28cdbd1d"
+ integrity sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==
+
+estree-walker@^0.6.1:
+ version "0.6.1"
+ resolved "https://registry.yarnpkg.com/estree-walker/-/estree-walker-0.6.1.tgz#53049143f40c6eb918b23671d1fe3219f3a1b362"
+ integrity sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==
esutils@^2.0.2:
version "2.0.2"
@@ -5270,34 +6151,10 @@ evp_bytestokey@^1.0.0, evp_bytestokey@^1.0.3:
md5.js "^1.3.4"
safe-buffer "^5.1.1"
-exec-file-sync@^2.0.0:
- version "2.0.2"
- resolved "https://registry.yarnpkg.com/exec-file-sync/-/exec-file-sync-2.0.2.tgz#58d441db46e40de6d1f30de5be022785bd89e328"
- integrity sha1-WNRB20bkDebR8w3lvgInhb2J4yg=
- dependencies:
- is-obj "^1.0.0"
- object-assign "^4.0.1"
- spawn-sync "^1.0.11"
-
-exec-sh@^0.2.0:
- version "0.2.2"
- resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.2.2.tgz#2a5e7ffcbd7d0ba2755bdecb16e5a427dfbdec36"
- integrity sha512-FIUCJz1RbuS0FKTdaAafAByGS0CPvU3R0MeHxgtl+djzCc//F8HakL8GzmVNZanasTbTAY/3DRFA0KpVqj/eAw==
- dependencies:
- merge "^1.2.0"
-
-execa@^0.10.0:
- version "0.10.0"
- resolved "https://registry.yarnpkg.com/execa/-/execa-0.10.0.tgz#ff456a8f53f90f8eccc71a96d11bdfc7f082cb50"
- integrity sha512-7XOMnz8Ynx1gGo/3hyV9loYNPWM94jG3+3T3Y8tsfSstFmETmENCMU/A/zj8Lyaj1lkgEepKepvd6240tBRvlw==
- dependencies:
- cross-spawn "^6.0.0"
- get-stream "^3.0.0"
- is-stream "^1.1.0"
- npm-run-path "^2.0.0"
- p-finally "^1.0.0"
- signal-exit "^3.0.0"
- strip-eof "^1.0.0"
+exec-sh@^0.3.2:
+ version "0.3.2"
+ resolved "https://registry.yarnpkg.com/exec-sh/-/exec-sh-0.3.2.tgz#6738de2eb7c8e671d0366aea0b0db8c6f7d7391b"
+ integrity sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg==
execa@^0.7.0:
version "0.7.0"
@@ -5325,21 +6182,11 @@ execa@^1.0.0:
signal-exit "^3.0.0"
strip-eof "^1.0.0"
-exists-stat@1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/exists-stat/-/exists-stat-1.0.0.tgz#0660e3525a2e89d9e446129440c272edfa24b529"
- integrity sha1-BmDjUlouidnkRhKUQMJy7foktSk=
-
exists-sync@0.0.4:
version "0.0.4"
resolved "https://registry.yarnpkg.com/exists-sync/-/exists-sync-0.0.4.tgz#9744c2c428cc03b01060db454d4b12f0ef3c8879"
integrity sha1-l0TCxCjMA7AQYNtFTUsS8O88iHk=
-exit-hook@^1.0.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/exit-hook/-/exit-hook-1.1.1.tgz#f05ca233b48c05d54fff07765df8507e95c02ff8"
- integrity sha1-8FyiM7SMBdVP/wd2XfhQfpXAL/g=
-
exit@^0.1.2:
version "0.1.2"
resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c"
@@ -5365,7 +6212,7 @@ expand-tilde@^2.0.0, expand-tilde@^2.0.2:
dependencies:
homedir-polyfill "^1.0.1"
-express@^4.10.7, express@^4.16.3:
+express@^4.10.7:
version "4.16.4"
resolved "https://registry.yarnpkg.com/express/-/express-4.16.4.tgz#fddef61926109e24c515ea97fd2f1bdbf62df12e"
integrity sha512-j12Uuyb4FMrd/qQAm6uCHAkPtO8FDTRJZBDd5D2KOL2eLaz1yUNdUB/NOIyq0iU4q4cFarsUCrnFDPBcnksuOg==
@@ -5401,6 +6248,42 @@ express@^4.10.7, express@^4.16.3:
utils-merge "1.0.1"
vary "~1.1.2"
+express@^4.16.4:
+ version "4.17.1"
+ resolved "https://registry.yarnpkg.com/express/-/express-4.17.1.tgz#4491fc38605cf51f8629d39c2b5d026f98a4c134"
+ integrity sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==
+ dependencies:
+ accepts "~1.3.7"
+ array-flatten "1.1.1"
+ body-parser "1.19.0"
+ content-disposition "0.5.3"
+ content-type "~1.0.4"
+ cookie "0.4.0"
+ cookie-signature "1.0.6"
+ debug "2.6.9"
+ depd "~1.1.2"
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ etag "~1.8.1"
+ finalhandler "~1.1.2"
+ fresh "0.5.2"
+ merge-descriptors "1.0.1"
+ methods "~1.1.2"
+ on-finished "~2.3.0"
+ parseurl "~1.3.3"
+ path-to-regexp "0.1.7"
+ proxy-addr "~2.0.5"
+ qs "6.7.0"
+ range-parser "~1.2.1"
+ safe-buffer "5.1.2"
+ send "0.17.1"
+ serve-static "1.14.1"
+ setprototypeof "1.1.1"
+ statuses "~1.5.0"
+ type-is "~1.6.18"
+ utils-merge "1.0.1"
+ vary "~1.1.2"
+
extend-shallow@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/extend-shallow/-/extend-shallow-2.0.1.tgz#51af7d614ad9a9f610ea1bafbb989d6b1c56890f"
@@ -5416,20 +6299,11 @@ extend-shallow@^3.0.0, extend-shallow@^3.0.2:
assign-symbols "^1.0.0"
is-extendable "^1.0.1"
-extend@^3.0.0, extend@~3.0.2:
+extend@~3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/extend/-/extend-3.0.2.tgz#f8b1136b4071fbd8eb140aff858b1019ec2915fa"
integrity sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==
-external-editor@^1.1.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-1.1.1.tgz#12d7b0db850f7ff7e7081baf4005700060c4600b"
- integrity sha1-Etew24UPf/fnCBuvQAVwAGDEYAs=
- dependencies:
- extend "^3.0.0"
- spawn-sync "^1.0.15"
- tmp "^0.0.29"
-
external-editor@^2.0.4:
version "2.2.0"
resolved "https://registry.yarnpkg.com/external-editor/-/external-editor-2.2.0.tgz#045511cfd8d133f3846673d1047c154e214ad3d5"
@@ -5477,10 +6351,10 @@ fake-xml-http-request@^2.0.0:
resolved "https://registry.yarnpkg.com/fake-xml-http-request/-/fake-xml-http-request-2.0.0.tgz#41a92f0ca539477700cb1dafd2df251d55dac8ff"
integrity sha512-UjNnynb6eLAB0lyh2PlTEkjRJORnNsVF1hbzU+PQv89/cyBV9GDRCy7JAcLQgeCLYT+3kaumWWZKEJvbaK74eQ==
-faker@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/faker/-/faker-3.1.0.tgz#0f908faf4e6ec02524e54a57e432c5c013e08c9f"
- integrity sha1-D5CPr05uwCUk5UpX5DLFwBPgjJ8=
+faker@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/faker/-/faker-4.1.0.tgz#1e45bbbecc6774b3c195fad2835109c6d748cc3f"
+ integrity sha1-HkW7vsxndLPBlfrSg1EJxtdIzD8=
fast-deep-equal@^2.0.1:
version "2.0.1"
@@ -5579,10 +6453,10 @@ file-entry-cache@^5.0.1:
dependencies:
flat-cache "^2.0.1"
-filesize@^3.6.1:
- version "3.6.1"
- resolved "https://registry.yarnpkg.com/filesize/-/filesize-3.6.1.tgz#090bb3ee01b6f801a8a8be99d31710b3422bb317"
- integrity sha512-7KjR1vv6qnicaPMi1iiTcI85CyYwRO/PSFCu6SvqL8jN2Wjt/NIYQTFtFs7fSDCYOstUkEWIQGFUg5YZQfjlcg==
+filesize@^4.1.2:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/filesize/-/filesize-4.1.2.tgz#fcd570af1353cea97897be64f56183adb995994b"
+ integrity sha512-iSWteWtfNcrWQTkQw8ble2bnonSl7YJImsn9OZKpE2E4IHhXI78eASpDYUljXZZdYj36QsEKjOs/CsiDqmKMJw==
fill-range@^4.0.0:
version "4.0.0"
@@ -5607,6 +6481,19 @@ finalhandler@1.1.1:
statuses "~1.4.0"
unpipe "~1.0.0"
+finalhandler@1.1.2, finalhandler@~1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/finalhandler/-/finalhandler-1.1.2.tgz#b7e7d000ffd11938d0fdb053506f6ebabe9f587d"
+ integrity sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==
+ dependencies:
+ debug "2.6.9"
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ on-finished "~2.3.0"
+ parseurl "~1.3.3"
+ statuses "~1.5.0"
+ unpipe "~1.0.0"
+
find-babel-config@^1.1.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/find-babel-config/-/find-babel-config-1.2.0.tgz#a9b7b317eb5b9860cda9d54740a8c8337a2283a2"
@@ -5656,7 +6543,7 @@ find-up@^3.0.0:
dependencies:
locate-path "^3.0.0"
-find-yarn-workspace-root@^1.1.0:
+find-yarn-workspace-root@^1.1.0, find-yarn-workspace-root@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/find-yarn-workspace-root/-/find-yarn-workspace-root-1.2.1.tgz#40eb8e6e7c2502ddfaa2577c176f221422f860db"
integrity sha512-dVtfb0WuQG+8Ag2uWkbG79hOUzEsRrhBzgfn86g2sJPkzmcpGdghbNTfUKGTxymFrY/tLIodDzLoW9nOJ4FY8Q==
@@ -5664,7 +6551,7 @@ find-yarn-workspace-root@^1.1.0:
fs-extra "^4.0.3"
micromatch "^3.1.4"
-findup-sync@2.0.0:
+findup-sync@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/findup-sync/-/findup-sync-2.0.0.tgz#9326b1488c22d1a6088650a86901b2d9a90a2cbc"
integrity sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=
@@ -5685,25 +6572,6 @@ fireworm@^0.7.0:
lodash.flatten "^3.0.2"
minimatch "^3.0.2"
-fixturify-project@^1.5.3:
- version "1.8.1"
- resolved "https://registry.yarnpkg.com/fixturify-project/-/fixturify-project-1.8.1.tgz#c0a95a801538bcdd502cbe6a1950f663c1e077a4"
- integrity sha512-kq1rX8SlHzfR5Okhj4gatm/XJDv2ELzHiW9S5zFoZygHMrCRhoWcW/Ktl8zzpmJn/dsz8Rrm7addq62G3wmCNw==
- dependencies:
- fixturify "^1.2.0"
- tmp "^0.0.33"
-
-fixturify@^1.2.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/fixturify/-/fixturify-1.2.0.tgz#abe8c52dd27dbbfdb874a02893781c93425663ea"
- integrity sha512-b5CMQmBZKsGR6HGqdSrLOGYGHIqrR0CUrcGU/lDL0mYy+DtGm5cnb61Z0UiIUqMVZIoV0CbN+u9/Gwjj+ICg0A==
- dependencies:
- "@types/fs-extra" "^5.0.5"
- "@types/minimatch" "^3.0.3"
- "@types/rimraf" "^2.0.2"
- fs-extra "^7.0.1"
- matcher-collection "^2.0.0"
-
flat-cache@^2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-2.0.1.tgz#5d296d6f04bda44a4630a301413bdbc2ec085ec0"
@@ -5781,7 +6649,7 @@ fresh@0.5.2:
resolved "https://registry.yarnpkg.com/fresh/-/fresh-0.5.2.tgz#3d8cadd90d976569fa835ab1f8e4b23a105605a7"
integrity sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=
-from2@^2.1.0:
+from2@^2.1.0, from2@^2.1.1:
version "2.3.0"
resolved "https://registry.yarnpkg.com/from2/-/from2-2.3.0.tgz#8bfb5502bde4a4d36cfdeea007fcca21d7e382af"
integrity sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=
@@ -5836,9 +6704,9 @@ fs-extra@^7.0.0, fs-extra@^7.0.1:
universalify "^0.1.0"
fs-minipass@^1.2.5:
- version "1.2.5"
- resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.5.tgz#06c277218454ec288df77ada54a03b8702aacb9d"
- integrity sha512-JhBl0skXjUPCFH7x6x61gQxrKyXsxB5gcgePLZCwfyCGGsTISMoIeObbrvVeP6Xmyaudw4TT43qV2Gz+iyd2oQ==
+ version "1.2.6"
+ resolved "https://registry.yarnpkg.com/fs-minipass/-/fs-minipass-1.2.6.tgz#2c5cc30ded81282bfe8a0d7c7c1853ddeb102c07"
+ integrity sha512-crhvyXcMejjv3Z5d2Fa9sf5xLYVCF5O1c71QxbVnbLsmYMBEvDAftewesN/HhY03YRoA7zOMxjNGrF5svGaaeQ==
dependencies:
minipass "^2.2.1"
@@ -5862,6 +6730,17 @@ fs-tree-diff@^1.0.0, fs-tree-diff@^1.0.2:
path-posix "^1.0.0"
symlink-or-copy "^1.1.8"
+fs-tree-diff@^2.0.0, fs-tree-diff@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/fs-tree-diff/-/fs-tree-diff-2.0.1.tgz#343e4745ab435ec39ebac5f9059ad919cd034afa"
+ integrity sha512-x+CfAZ/lJHQqwlD64pYM5QxWjzWhSjroaVsr8PW831zOApL55qPibed0c+xebaLWVr2BnHFoHdrwOv8pzt8R5A==
+ dependencies:
+ "@types/symlink-or-copy" "^1.2.0"
+ heimdalljs-logger "^0.1.7"
+ object-assign "^4.1.0"
+ path-posix "^1.0.0"
+ symlink-or-copy "^1.1.8"
+
fs-updater@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/fs-updater/-/fs-updater-1.0.4.tgz#2329980f99ae9176e9a0e84f7637538a182ce63b"
@@ -5888,13 +6767,13 @@ fs.realpath@^1.0.0:
resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f"
integrity sha1-FQStJSMVjKpA20onh8sBQRmU6k8=
-fsevents@^1.2.3, fsevents@^1.2.7:
- version "1.2.7"
- resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.7.tgz#4851b664a3783e52003b3c66eb0eee1074933aa4"
- integrity sha512-Pxm6sI2MeBD7RdD12RYsqaP0nMiwx8eZBXCa6z2L+mRHm2DYrOYwihmhjpkdjUHwQhslWQjRpEgNq4XvBmaAuw==
+fsevents@^1.2.7:
+ version "1.2.9"
+ resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.2.9.tgz#3f5ed66583ccd6f400b5a00db6f7e861363e388f"
+ integrity sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==
dependencies:
- nan "^2.9.2"
- node-pre-gyp "^0.10.0"
+ nan "^2.12.1"
+ node-pre-gyp "^0.12.0"
fstream@^1.0.0, fstream@^1.0.2:
version "1.0.11"
@@ -5917,9 +6796,9 @@ functional-red-black-tree@^1.0.1:
integrity sha1-GwqzvVU7Kg1jmdKcDj6gslIHgyc=
fuse.js@^3.4.4:
- version "3.4.4"
- resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-3.4.4.tgz#f98f55fcb3b595cf6a3e629c5ffaf10982103e95"
- integrity sha512-pyLQo/1oR5Ywf+a/tY8z4JygnIglmRxVUOiyFAbd11o9keUDpUJSMGRWJngcnkURj30kDHPmhoKY8ChJiz3EpQ==
+ version "3.4.5"
+ resolved "https://registry.yarnpkg.com/fuse.js/-/fuse.js-3.4.5.tgz#8954fb43f9729bd5dbcb8c08f251db552595a7a6"
+ integrity sha512-s9PGTaQIkT69HaeoTVjwGsLfb8V8ScJLx5XGFcKHg0MqLUH/UZ4EKOtqtXX9k7AFqCGxD1aJmYb8Q5VYDibVRQ==
g-status@^2.0.2:
version "2.0.2"
@@ -5951,11 +6830,16 @@ gaze@^1.0.0:
dependencies:
globule "^1.0.0"
-get-caller-file@^1.0.0, get-caller-file@^1.0.1:
+get-caller-file@^1.0.1:
version "1.0.3"
resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-1.0.3.tgz#f978fa4c90d1dfe7ff2d6beda2a515e713bdcf4a"
integrity sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==
+get-caller-file@^2.0.5:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e"
+ integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==
+
get-own-enumerable-property-symbols@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/get-own-enumerable-property-symbols/-/get-own-enumerable-property-symbols-3.0.0.tgz#b877b49a5c16aefac3655f2ed2ea5b684df8d203"
@@ -5971,7 +6855,7 @@ get-stdin@^6.0.0:
resolved "https://registry.yarnpkg.com/get-stdin/-/get-stdin-6.0.0.tgz#9e09bf712b360ab9225e812048f71fde9c89657b"
integrity sha512-jp4tHawyV7+fkkSKyvjuLZswblUtz+SQKzSWnBbii16BuZksJlU1wuBYXY75r+duh/llF1ur6oNwi+2ZzjKZ7g==
-get-stream@^3.0.0:
+get-stream@3.0.0, get-stream@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-3.0.0.tgz#8e943d1358dc37555054ecbe2edb05aa174ede14"
integrity sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=
@@ -5995,7 +6879,7 @@ getpass@^0.1.1:
dependencies:
assert-plus "^1.0.0"
-git-repo-info@^2.0.0:
+git-repo-info@^2.0.0, git-repo-info@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/git-repo-info/-/git-repo-info-2.1.0.tgz#13d1f753c75bc2994432e65a71e35377ff563813"
integrity sha512-+kigfDB7j3W80f74BoOUX+lKOmf4pR3/i2Ww6baKTCPe2hD4FRdjhV3s4P5Dy0Tak1uY1891QhKoYNtnyX2VvA==
@@ -6024,7 +6908,7 @@ glob@^5.0.10:
once "^1.3.0"
path-is-absolute "^1.0.0"
-glob@^7.0.0, glob@^7.0.3, glob@^7.0.4, glob@^7.1.2, glob@^7.1.3, glob@~7.1.1:
+glob@^7.0.0, glob@^7.0.3, glob@^7.0.4, glob@~7.1.1:
version "7.1.3"
resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1"
integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==
@@ -6036,6 +6920,18 @@ glob@^7.0.0, glob@^7.0.3, glob@^7.0.4, glob@^7.1.2, glob@^7.1.3, glob@~7.1.1:
once "^1.3.0"
path-is-absolute "^1.0.0"
+glob@^7.1.2, glob@^7.1.3, glob@^7.1.4:
+ version "7.1.4"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.4.tgz#aa608a2f6c577ad357e1ae5a5c26d9a8d1969255"
+ integrity sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==
+ dependencies:
+ fs.realpath "^1.0.0"
+ inflight "^1.0.4"
+ inherits "2"
+ minimatch "^3.0.4"
+ once "^1.3.0"
+ path-is-absolute "^1.0.0"
+
global-modules@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea"
@@ -6056,7 +6952,12 @@ global-prefix@^1.0.1:
is-windows "^1.0.1"
which "^1.2.14"
-globals@^11.1.0, globals@^11.7.0:
+globals@^11.1.0:
+ version "11.12.0"
+ resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e"
+ integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==
+
+globals@^11.7.0:
version "11.11.0"
resolved "https://registry.yarnpkg.com/globals/-/globals-11.11.0.tgz#dcf93757fa2de5486fbeed7118538adf789e9c2e"
integrity sha512-WHq43gS+6ufNOEqlrDBxVEbb8ntfXrfAUU2ZOpCxrBdGKW3gyv8mCxAfIBD0DroPKGrJ2eSsXsLtY9MPntsyTw==
@@ -6107,6 +7008,29 @@ good-listener@^1.2.2:
dependencies:
delegate "^3.1.2"
+got@^8.0.1:
+ version "8.3.2"
+ resolved "https://registry.yarnpkg.com/got/-/got-8.3.2.tgz#1d23f64390e97f776cac52e5b936e5f514d2e937"
+ integrity sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==
+ dependencies:
+ "@sindresorhus/is" "^0.7.0"
+ cacheable-request "^2.1.1"
+ decompress-response "^3.3.0"
+ duplexer3 "^0.1.4"
+ get-stream "^3.0.0"
+ into-stream "^3.1.0"
+ is-retry-allowed "^1.1.0"
+ isurl "^1.0.0-alpha5"
+ lowercase-keys "^1.0.0"
+ mimic-response "^1.0.0"
+ p-cancelable "^0.4.0"
+ p-timeout "^2.0.1"
+ pify "^3.0.0"
+ safe-buffer "^5.1.1"
+ timed-out "^4.0.1"
+ url-parse-lax "^3.0.0"
+ url-to-options "^1.0.1"
+
graceful-fs@^4.1.11, graceful-fs@^4.1.15, graceful-fs@^4.1.2, graceful-fs@^4.1.3, graceful-fs@^4.1.6:
version "4.1.15"
resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.1.15.tgz#ffb703e1066e8a0eeaa4c8b80ba9253eeefbfb00"
@@ -6122,10 +7046,10 @@ growly@^1.3.0:
resolved "https://registry.yarnpkg.com/growly/-/growly-1.3.0.tgz#f10748cbe76af964b7c96c93c6bcc28af120c081"
integrity sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=
-handlebars@^4.0.4, handlebars@^4.0.6:
- version "4.1.1"
- resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.1.tgz#6e4e41c18ebe7719ae4d38e5aca3d32fa3dd23d3"
- integrity sha512-3Zhi6C0euYZL5sM0Zcy7lInLXKQ+YLcF/olbN010mzGQ4XVm50JeyBnMqofHh696GrciGruC7kCcApPDJvVgwA==
+handlebars@^4.0.11, handlebars@~4.1.2:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.2.tgz#b6b37c1ced0306b221e094fc7aca3ec23b131b67"
+ integrity sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw==
dependencies:
neo-async "^2.6.0"
optimist "^0.6.1"
@@ -6133,12 +7057,12 @@ handlebars@^4.0.4, handlebars@^4.0.6:
optionalDependencies:
uglify-js "^3.1.4"
-handlebars@~4.0.13:
- version "4.0.13"
- resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.0.13.tgz#89fc17bf26f46fd7f6f99d341d92efaae64f997d"
- integrity sha512-uydY0jy4Z3wy/iGXsi64UtLD4t1fFJe16c/NFxsYE4WdQis8ZCzOXUZaPQNG0e5bgtLQV41QTfqBindhEjnpyQ==
+handlebars@^4.0.4, handlebars@^4.0.6:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/handlebars/-/handlebars-4.1.1.tgz#6e4e41c18ebe7719ae4d38e5aca3d32fa3dd23d3"
+ integrity sha512-3Zhi6C0euYZL5sM0Zcy7lInLXKQ+YLcF/olbN010mzGQ4XVm50JeyBnMqofHh696GrciGruC7kCcApPDJvVgwA==
dependencies:
- async "^2.5.0"
+ neo-async "^2.6.0"
optimist "^0.6.1"
source-map "^0.6.1"
optionalDependencies:
@@ -6181,11 +7105,23 @@ has-flag@^3.0.0:
resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd"
integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0=
+has-symbol-support-x@^1.4.1:
+ version "1.4.2"
+ resolved "https://registry.yarnpkg.com/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz#1409f98bc00247da45da67cee0a36f282ff26455"
+ integrity sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==
+
has-symbols@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/has-symbols/-/has-symbols-1.0.0.tgz#ba1a8f1af2a0fc39650f5c850367704122063b44"
integrity sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=
+has-to-string-tag-x@^1.2.0:
+ version "1.4.1"
+ resolved "https://registry.yarnpkg.com/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz#a045ab383d7b4b2012a00148ab0aa5f290044d4d"
+ integrity sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==
+ dependencies:
+ has-symbol-support-x "^1.4.1"
+
has-unicode@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/has-unicode/-/has-unicode-2.0.1.tgz#e0e6fe6a28cf51138855e086d1691e771de2a8b9"
@@ -6237,7 +7173,7 @@ hash-base@^3.0.0:
inherits "^2.0.1"
safe-buffer "^5.0.1"
-hash-for-dep@^1.0.2, hash-for-dep@^1.2.3, hash-for-dep@^1.4.7, hash-for-dep@^1.5.0:
+hash-for-dep@^1.0.2, hash-for-dep@^1.2.3, hash-for-dep@^1.4.7, hash-for-dep@^1.5.0, hash-for-dep@^1.5.1:
version "1.5.1"
resolved "https://registry.yarnpkg.com/hash-for-dep/-/hash-for-dep-1.5.1.tgz#497754b39bee2f1c4ade4521bfd2af0a7c1196e3"
integrity sha512-/dQ/A2cl7FBPI2pO0CANkvuuVi/IFS5oTyJ0PsOb6jW6WbVW1js5qJXMJTNbWHXBIPdFTWFbabjB+mE0d+gelw==
@@ -6265,12 +7201,12 @@ heimdalljs-fs-monitor@^0.2.2:
heimdalljs "^0.2.3"
heimdalljs-logger "^0.1.7"
-heimdalljs-graph@^0.3.4:
+heimdalljs-graph@^0.3.5:
version "0.3.5"
resolved "https://registry.yarnpkg.com/heimdalljs-graph/-/heimdalljs-graph-0.3.5.tgz#420fbbc8fc3aec5963ddbbf1a5fb47921c4a5927"
integrity sha512-szOy9WZUc7eUInEBQEsoa1G2d+oYHrn6ndZPf76eh8A9ID1zWUCEEsxP3F+CvQx9+EDrg1srdyLUmfVAr8EB4g==
-heimdalljs-logger@^0.1.7, heimdalljs-logger@^0.1.9:
+heimdalljs-logger@^0.1.10, heimdalljs-logger@^0.1.7, heimdalljs-logger@^0.1.9:
version "0.1.10"
resolved "https://registry.yarnpkg.com/heimdalljs-logger/-/heimdalljs-logger-0.1.10.tgz#90cad58aabb1590a3c7e640ddc6a4cd3a43faaf7"
integrity sha512-pO++cJbhIufVI/fmB/u2Yty3KJD0TqNPecehFae0/eps0hkZ3b4Zc/PezUMOpYuHFQbA7FxHZxa305EhmjLj4g==
@@ -6321,6 +7257,18 @@ hosted-git-info@^2.1.4, hosted-git-info@^2.6.0:
resolved "https://registry.yarnpkg.com/hosted-git-info/-/hosted-git-info-2.7.1.tgz#97f236977bd6e125408930ff6de3eec6281ec047"
integrity sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==
+html-encoding-sniffer@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz#e70d84b94da53aa375e11fe3a351be6642ca46f8"
+ integrity sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==
+ dependencies:
+ whatwg-encoding "^1.0.1"
+
+http-cache-semantics@3.8.1:
+ version "3.8.1"
+ resolved "https://registry.yarnpkg.com/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz#39b0e16add9b605bf0a9ef3d9daaf4843b4cacd2"
+ integrity sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==
+
http-errors@1.6.3, http-errors@~1.6.2, http-errors@~1.6.3:
version "1.6.3"
resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.6.3.tgz#8b55680bb4be283a0b5bf4ea2e38580be1d9320d"
@@ -6331,6 +7279,28 @@ http-errors@1.6.3, http-errors@~1.6.2, http-errors@~1.6.3:
setprototypeof "1.1.0"
statuses ">= 1.4.0 < 2"
+http-errors@1.7.2:
+ version "1.7.2"
+ resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.2.tgz#4f5029cf13239f31036e5b2e55292bcfbcc85c8f"
+ integrity sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==
+ dependencies:
+ depd "~1.1.2"
+ inherits "2.0.3"
+ setprototypeof "1.1.1"
+ statuses ">= 1.5.0 < 2"
+ toidentifier "1.0.0"
+
+http-errors@~1.7.2:
+ version "1.7.3"
+ resolved "https://registry.yarnpkg.com/http-errors/-/http-errors-1.7.3.tgz#6c619e4f9c60308c38519498c14fbb10aacebb06"
+ integrity sha512-ZTTX0MWrsQ2ZAhA1cejAwDLycFsd7I7nVtnkT3Ol0aqodaKW+0CTZDQ1uBv5whptCnc8e8HeRRJxRs0kmm/Qfw==
+ dependencies:
+ depd "~1.1.2"
+ inherits "2.0.4"
+ setprototypeof "1.1.1"
+ statuses ">= 1.5.0 < 2"
+ toidentifier "1.0.0"
+
http-parser-js@>=0.4.0:
version "0.5.0"
resolved "https://registry.yarnpkg.com/http-parser-js/-/http-parser-js-0.5.0.tgz#d65edbede84349d0dc30320815a15d39cc3cbbd8"
@@ -6359,6 +7329,11 @@ https-browserify@^1.0.0:
resolved "https://registry.yarnpkg.com/https-browserify/-/https-browserify-1.0.0.tgz#ec06c10e0a34c0f2faf199f7fd7fc78fffd03c73"
integrity sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=
+https@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/https/-/https-1.0.0.tgz#3c37c7ae1a8eeb966904a2ad1e975a194b7ed3a4"
+ integrity sha1-PDfHrhqO65ZpBKKtHpdaGUt+06Q=
+
husky@^1.3.1:
version "1.3.1"
resolved "https://registry.yarnpkg.com/husky/-/husky-1.3.1.tgz#26823e399300388ca2afff11cfa8a86b0033fae0"
@@ -6382,7 +7357,7 @@ iconv-lite@0.4.23:
dependencies:
safer-buffer ">= 2.1.2 < 3"
-iconv-lite@^0.4.17, iconv-lite@^0.4.24, iconv-lite@^0.4.4:
+iconv-lite@0.4.24, iconv-lite@^0.4.17, iconv-lite@^0.4.24, iconv-lite@^0.4.4:
version "0.4.24"
resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
@@ -6411,6 +7386,11 @@ ignore@^4.0.3, ignore@^4.0.6:
resolved "https://registry.yarnpkg.com/ignore/-/ignore-4.0.6.tgz#750e3db5862087b4737ebac8207ffd1ef27b25fc"
integrity sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==
+ignore@^5.1.1:
+ version "5.1.4"
+ resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.1.4.tgz#84b7b3dbe64552b6ef0eca99f6743dbec6d97adf"
+ integrity sha512-MzbUSahkTW1u7JpKKjY7LCARd1fU5W2rLdxlM4kdkayuCwZImjkpluF9CM1aLewYJguPDqewLam18Y6AU69A8A==
+
import-fresh@^2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-2.0.0.tgz#d81355c15612d386c61f9ddd3922d4304822a546"
@@ -6459,7 +7439,12 @@ indexof@0.0.1:
resolved "https://registry.yarnpkg.com/indexof/-/indexof-0.0.1.tgz#82dc336d232b9062179d05ab3293a66059fd435d"
integrity sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=
-inflection@^1.12.0:
+inflected@^2.0.4:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/inflected/-/inflected-2.0.4.tgz#323770961ccbe992a98ea930512e9a82d3d3ef77"
+ integrity sha512-HQPzFLTTUvwfeUH6RAGjD8cHS069mBqXG5n4qaxX7sJXBhVQrsGgF+0ZJGkSuN6a8pcUWB/GXStta11kKi/WvA==
+
+inflection@1.12.0, inflection@^1.12.0:
version "1.12.0"
resolved "https://registry.yarnpkg.com/inflection/-/inflection-1.12.0.tgz#a200935656d6f5f6bc4dc7502e1aecb703228416"
integrity sha1-ogCTVlbW9fa8TcdQLhrstwMihBY=
@@ -6472,16 +7457,21 @@ inflight@^1.0.4:
once "^1.3.0"
wrappy "1"
-inherits@2, inherits@2.0.3, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.0, inherits@~2.0.1, inherits@~2.0.3:
- version "2.0.3"
- resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
- integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
+inherits@2, inherits@2.0.4, inherits@^2.0.1, inherits@^2.0.3, inherits@~2.0.1, inherits@~2.0.3:
+ version "2.0.4"
+ resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c"
+ integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
inherits@2.0.1:
version "2.0.1"
resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.1.tgz#b17d08d326b4423e568eff719f91b0b1cbdf69f1"
integrity sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=
+inherits@2.0.3, inherits@~2.0.0:
+ version "2.0.3"
+ resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.3.tgz#633c2c83e3da42a502f52466022480f4208261de"
+ integrity sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=
+
ini@^1.3.4, ini@~1.3.0:
version "1.3.5"
resolved "https://registry.yarnpkg.com/ini/-/ini-1.3.5.tgz#eee25f56db1c9ec6085e0c22778083f596abf927"
@@ -6498,26 +7488,6 @@ inline-source-map-comment@^1.0.5:
sum-up "^1.0.1"
xtend "^4.0.0"
-inquirer@^2:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-2.0.0.tgz#e1351687b90d150ca403ceaa3cefb1e3065bef4b"
- integrity sha1-4TUWh7kNFQykA86qPO+x4wZb70s=
- dependencies:
- ansi-escapes "^1.1.0"
- chalk "^1.0.0"
- cli-cursor "^1.0.1"
- cli-width "^2.0.0"
- external-editor "^1.1.0"
- figures "^2.0.0"
- lodash "^4.3.0"
- mute-stream "0.0.6"
- pinkie-promise "^2.0.0"
- run-async "^2.2.0"
- rx "^4.1.0"
- string-width "^2.0.0"
- strip-ansi "^3.0.0"
- through "^2.3.6"
-
inquirer@^3.3.0:
version "3.3.0"
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-3.3.0.tgz#9dd2f2ad765dcab1ff0443b491442a20ba227dc9"
@@ -6538,6 +7508,25 @@ inquirer@^3.3.0:
strip-ansi "^4.0.0"
through "^2.3.6"
+inquirer@^6:
+ version "6.5.0"
+ resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.5.0.tgz#2303317efc9a4ea7ec2e2df6f86569b734accf42"
+ integrity sha512-scfHejeG/lVZSpvCXpsB4j/wQNPM5JC8kiElOI0OUTwmc1RTpXr4H32/HOlQHcZiYl2z2VElwuCVDRG8vFmbnA==
+ dependencies:
+ ansi-escapes "^3.2.0"
+ chalk "^2.4.2"
+ cli-cursor "^2.1.0"
+ cli-width "^2.0.0"
+ external-editor "^3.0.3"
+ figures "^2.0.0"
+ lodash "^4.17.12"
+ mute-stream "0.0.7"
+ run-async "^2.2.0"
+ rxjs "^6.4.0"
+ string-width "^2.1.0"
+ strip-ansi "^5.1.0"
+ through "^2.3.6"
+
inquirer@^6.2.2:
version "6.2.2"
resolved "https://registry.yarnpkg.com/inquirer/-/inquirer-6.2.2.tgz#46941176f65c9eb20804627149b743a218f25406"
@@ -6557,6 +7546,14 @@ inquirer@^6.2.2:
strip-ansi "^5.0.0"
through "^2.3.6"
+into-stream@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/into-stream/-/into-stream-3.1.0.tgz#96fb0a936c12babd6ff1752a17d05616abd094c6"
+ integrity sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY=
+ dependencies:
+ from2 "^2.1.1"
+ p-is-promise "^1.1.0"
+
invariant@^2.2.2:
version "2.2.4"
resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6"
@@ -6579,6 +7576,11 @@ ipaddr.js@1.8.0:
resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.8.0.tgz#eaa33d6ddd7ace8f7f6fe0c9ca0440e706738b1e"
integrity sha1-6qM9bd16zo9/b+DJygRA5wZzix4=
+ipaddr.js@1.9.0:
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/ipaddr.js/-/ipaddr.js-1.9.0.tgz#37df74e430a0e47550fe54a2defe30d8acd95f65"
+ integrity sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==
+
is-accessor-descriptor@^0.1.6:
version "0.1.6"
resolved "https://registry.yarnpkg.com/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz#a9e12cb3ae8d876727eeef3843f8a0897b5c98d6"
@@ -6743,6 +7745,11 @@ is-obj@^1.0.0, is-obj@^1.0.1:
resolved "https://registry.yarnpkg.com/is-obj/-/is-obj-1.0.1.tgz#3e4729ac1f5fde025cd7d83a896dab9f4f67db0f"
integrity sha1-PkcprB9f3gJc19g6iW2rn09n2w8=
+is-object@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/is-object/-/is-object-1.0.1.tgz#8952688c5ec2ffd6b03ecc85e769e02903083470"
+ integrity sha1-iVJojF7C/9awPsyF52ngKQMINHA=
+
is-observable@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/is-observable/-/is-observable-1.1.0.tgz#b3e986c8f44de950867cab5403f5a3465005975e"
@@ -6769,7 +7776,12 @@ is-path-inside@^1.0.0:
dependencies:
path-is-inside "^1.0.1"
-is-plain-object@^2.0.1, is-plain-object@^2.0.3, is-plain-object@^2.0.4:
+is-plain-obj@^1.0.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/is-plain-obj/-/is-plain-obj-1.1.0.tgz#71a50c8429dfca773c92a390a4a03b39fcd51d3e"
+ integrity sha1-caUMhCnfync8kqOQpKA7OfzVHT4=
+
+is-plain-object@^2.0.3, is-plain-object@^2.0.4:
version "2.0.4"
resolved "https://registry.yarnpkg.com/is-plain-object/-/is-plain-object-2.0.4.tgz#2c163b3fafb1b606d9d17928f05c2a1c38e07677"
integrity sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==
@@ -6782,9 +7794,9 @@ is-promise@^2.1.0:
integrity sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=
is-reference@^1.1.0:
- version "1.1.2"
- resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.1.2.tgz#01cf91517d21db66a34642287ed6e70d53dcbe5c"
- integrity sha512-Kn5g8c7XHKejFOpTf2QN9YjiHHKl5xRj+2uAZf9iM2//nkBNi/NNeB5JMoun28nEaUVHyPUzqzhfRlfAirEjXg==
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/is-reference/-/is-reference-1.1.3.tgz#e99059204b66fdbe09305cfca715a29caa5c8a51"
+ integrity sha512-W1iHHv/oyBb2pPxkBxtaewxa1BC58Pn5J0hogyCdefwUIvb6R+TGbAcIa4qPNYLqLhb3EnOgUf2MQkkF76BcKw==
dependencies:
"@types/estree" "0.0.39"
@@ -6800,6 +7812,11 @@ is-regexp@^1.0.0:
resolved "https://registry.yarnpkg.com/is-regexp/-/is-regexp-1.0.0.tgz#fd2d883545c46bac5a633e7b9a09e87fa2cb5069"
integrity sha1-/S2INUXEa6xaYz57mgnof6LLUGk=
+is-retry-allowed@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz#11a060568b67339444033d0125a61a20d564fb34"
+ integrity sha1-EaBgVotnM5REAz0BJaYaINVk+zQ=
+
is-stream@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-1.1.0.tgz#12d4a3dd4e68e0b79ceb8dbc84173ae80d91ca44"
@@ -6892,13 +7909,20 @@ istextorbinary@2.1.0:
editions "^1.1.1"
textextensions "1 || 2"
-ivy-codemirror@^2.1.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/ivy-codemirror/-/ivy-codemirror-2.1.0.tgz#c06f1606c375610bf62b007a21a9e63f5854175e"
- integrity sha1-wG8WBsN1YQv2KwB6IanmP1hUF14=
+isurl@^1.0.0-alpha5:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/isurl/-/isurl-1.0.0.tgz#b27f4f49f3cdaa3ea44a0a5b7f3462e6edc39d67"
+ integrity sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==
dependencies:
- codemirror "~5.15.0"
- ember-cli-babel "^6.0.0"
+ has-to-string-tag-x "^1.2.0"
+ is-object "^1.0.1"
+
+ivy-codemirror@IvyApp/ivy-codemirror#c3b7f49f8e6492878619f8055695581240cce21a:
+ version "2.1.0"
+ resolved "https://codeload.github.com/IvyApp/ivy-codemirror/tar.gz/c3b7f49f8e6492878619f8055695581240cce21a"
+ dependencies:
+ codemirror "^5.47.0"
+ ember-cli-babel "^7.7.3"
ember-cli-node-assets "^0.2.2"
jquery-deferred@^0.3.0:
@@ -6906,10 +7930,10 @@ jquery-deferred@^0.3.0:
resolved "https://registry.yarnpkg.com/jquery-deferred/-/jquery-deferred-0.3.1.tgz#596eca1caaff54f61b110962b23cafea74c35355"
integrity sha1-WW7KHKr/VPYbEQlisjyv6nTDU1U=
-jquery@^3.2.1, jquery@^3.3.1:
- version "3.3.1"
- resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.3.1.tgz#958ce29e81c9790f31be7792df5d4d95fc57fbca"
- integrity sha512-Ubldcmxp5np52/ENotGxlLe6aGMvmF4R8S6tZjsP6Knsaxd/xp3Zrh50cG93lR6nPXyUFwzN3ZSOQI0wRJNdGg==
+jquery@^3.2.1, jquery@^3.4.1:
+ version "3.4.1"
+ resolved "https://registry.yarnpkg.com/jquery/-/jquery-3.4.1.tgz#714f1f8d9dde4bdfa55764ba37ef214630d80ef2"
+ integrity sha512-36+AdBzCL+y6qjw5Tx7HgzeGCzC81MDDgaUP8ld2zhx58HdqXGoBd+tHdrBMiyjGQs0Hxs/MLZTu/eHNJJuWPw==
js-base64@^2.1.8:
version "2.5.1"
@@ -6941,7 +7965,7 @@ js-tokens@^3.0.2:
resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b"
integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls=
-js-yaml@^3.12.0, js-yaml@^3.13.0, js-yaml@^3.2.5, js-yaml@^3.2.7:
+js-yaml@^3.13.0, js-yaml@^3.2.5, js-yaml@^3.2.7:
version "3.13.0"
resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.0.tgz#38ee7178ac0eea2c97ff6d96fff4b18c7d8cf98e"
integrity sha512-pZZoSxcCYco+DIKBTimr67J6Hy+EYGZDY/HCWC+iAEA9h1ByhMXAIVUXMcMFpOCxQ/xjXmPI2MkDL5HRm5eFrQ==
@@ -6949,10 +7973,10 @@ js-yaml@^3.12.0, js-yaml@^3.13.0, js-yaml@^3.2.5, js-yaml@^3.2.7:
argparse "^1.0.7"
esprima "^4.0.0"
-js-yaml@~3.10.0:
- version "3.10.0"
- resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.10.0.tgz#2e78441646bd4682e963f22b6e92823c309c62dc"
- integrity sha512-O2v52ffjLa9VeM43J4XocZE//WT9N0IiwDa3KSHH7Tu8CtH+1qM8SIZvnsTh6v+4yFy5KUY3BHUVwjpfAWsjIA==
+js-yaml@^3.13.1:
+ version "3.13.1"
+ resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.13.1.tgz#aff151b30bfdfa8e49e05da22e7415e9dfa37847"
+ integrity sha512-YfbcO7jXDdyj0DGxYVSlSeQNHbD7XPWvrVWeVUujrQEoZzWJIRrCPoyk6kL6IAjAG2IolMK4T0hNUe0HOUs5Jw==
dependencies:
argparse "^1.0.7"
esprima "^4.0.0"
@@ -6962,6 +7986,37 @@ jsbn@~0.1.0:
resolved "https://registry.yarnpkg.com/jsbn/-/jsbn-0.1.1.tgz#a5e654c2e5a2deb5f201d96cefbca80c0ef2f513"
integrity sha1-peZUwuWi3rXyAdls77yoDA7y9RM=
+jsdom@^12.0.0:
+ version "12.2.0"
+ resolved "https://registry.yarnpkg.com/jsdom/-/jsdom-12.2.0.tgz#7cf3f5b5eafd47f8f09ca52315d367ff6e95de23"
+ integrity sha512-QPOggIJ8fquWPLaYYMoh+zqUmdphDtu1ju0QGTitZT1Yd8I5qenPpXM1etzUegu3MjVp8XPzgZxdn8Yj7e40ig==
+ dependencies:
+ abab "^2.0.0"
+ acorn "^6.0.2"
+ acorn-globals "^4.3.0"
+ array-equal "^1.0.0"
+ cssom "^0.3.4"
+ cssstyle "^1.1.1"
+ data-urls "^1.0.1"
+ domexception "^1.0.1"
+ escodegen "^1.11.0"
+ html-encoding-sniffer "^1.0.2"
+ nwsapi "^2.0.9"
+ parse5 "5.1.0"
+ pn "^1.1.0"
+ request "^2.88.0"
+ request-promise-native "^1.0.5"
+ saxes "^3.1.3"
+ symbol-tree "^3.2.2"
+ tough-cookie "^2.4.3"
+ w3c-hr-time "^1.0.1"
+ webidl-conversions "^4.0.2"
+ whatwg-encoding "^1.0.5"
+ whatwg-mimetype "^2.2.0"
+ whatwg-url "^7.0.0"
+ ws "^6.1.0"
+ xml-name-validator "^3.0.0"
+
jsesc@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-1.3.0.tgz#46c3fec8c1892b12b0833db9bc7622176dbab34b"
@@ -6982,6 +8037,11 @@ jsesc@~0.5.0:
resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d"
integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=
+json-buffer@3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.0.tgz#5b1f397afc75d677bde8bcfc0e47e1f9a3d9a898"
+ integrity sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=
+
json-parse-better-errors@^1.0.1, json-parse-better-errors@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz#bb867cfb3450e69107c131d1c514bab3dc8bcaa9"
@@ -7067,6 +8127,13 @@ just-extend@^4.0.2:
resolved "https://registry.yarnpkg.com/just-extend/-/just-extend-4.0.2.tgz#f3f47f7dfca0f989c55410a7ebc8854b07108afc"
integrity sha512-FrLwOgm+iXrPV+5zDU6Jqu4gCRXbWEQg2O3SKONsWE4w7AXFRkryS53bpWdaL9cNol+AmR3AEYz6kn+o0fCPnw==
+keyv@3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/keyv/-/keyv-3.0.0.tgz#44923ba39e68b12a7cec7df6c3268c031f2ef373"
+ integrity sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==
+ dependencies:
+ json-buffer "3.0.0"
+
kind-of@^3.0.2, kind-of@^3.0.3, kind-of@^3.2.0:
version "3.2.2"
resolved "https://registry.yarnpkg.com/kind-of/-/kind-of-3.2.2.tgz#31ea21a734bab9bbb0f32466d893aea51e4a3c64"
@@ -7218,7 +8285,7 @@ loader-runner@^2.3.0:
resolved "https://registry.yarnpkg.com/loader-runner/-/loader-runner-2.4.0.tgz#ed47066bfe534d7e84c4c7b9998c2a75607d9357"
integrity sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==
-loader-utils@^1.1.0:
+loader-utils@^1.0.2, loader-utils@^1.1.0, loader-utils@^1.2.3:
version "1.2.3"
resolved "https://registry.yarnpkg.com/loader-utils/-/loader-utils-1.2.3.tgz#1ff5dc6911c9f0a062531a4c04b609406108c2c7"
integrity sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==
@@ -7253,6 +8320,11 @@ locate-path@^3.0.0:
p-locate "^3.0.0"
path-exists "^3.0.0"
+lodash-es@^4.17.11:
+ version "4.17.15"
+ resolved "https://registry.yarnpkg.com/lodash-es/-/lodash-es-4.17.15.tgz#21bd96839354412f23d7a10340e5eac6ee455d78"
+ integrity sha512-rlrc3yU3+JNOpZ9zj5pQtxnx2THmvRykwL4Xlxoa8I9lHBlVbbyPhgyPMioxVZ4NqyxaVVtaJnzsyOidQIhyyQ==
+
lodash._baseassign@^3.0.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/lodash._baseassign/-/lodash._baseassign-3.2.0.tgz#8c38a099500f215ad09e59f1722fd0c52bfe0a4e"
@@ -7367,16 +8439,16 @@ lodash._objecttypes@~2.3.0:
resolved "https://registry.yarnpkg.com/lodash._objecttypes/-/lodash._objecttypes-2.3.0.tgz#6a3ea3987dd6eeb8021b2d5c9c303549cc2bae1e"
integrity sha1-aj6jmH3W7rgCGy1cnDA1Scwrrh4=
+lodash._reinterpolate@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
+ integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=
+
lodash._reinterpolate@~2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-2.3.0.tgz#03ee9d85c0e55cbd590d71608a295bdda51128ec"
integrity sha1-A+6dhcDlXL1ZDXFgiilb3aURKOw=
-lodash._reinterpolate@~3.0.0:
- version "3.0.0"
- resolved "https://registry.yarnpkg.com/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz#0ccf2d89166af03b3663c796538b75ac6e114d9d"
- integrity sha1-DM8tiRZq8Ds2Y8eWU4t1rG4RTZ0=
-
lodash._renative@~2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/lodash._renative/-/lodash._renative-2.3.0.tgz#77d8edd4ced26dd5971f9e15a5f772e4e317fbd3"
@@ -7438,16 +8510,26 @@ lodash.bind@~2.3.0:
lodash._renative "~2.3.0"
lodash._slice "~2.3.0"
+lodash.camelcase@^4.3.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"
+ integrity sha1-soqmKIorn8ZRA1x3EfZathkDMaY=
+
lodash.castarray@^4.4.0:
version "4.4.0"
resolved "https://registry.yarnpkg.com/lodash.castarray/-/lodash.castarray-4.4.0.tgz#c02513515e309daddd4c24c60cfddcf5976d9115"
integrity sha1-wCUTUV4wna3dTCTGDP3c9ZdtkRU=
-lodash.clonedeep@^4.3.2, lodash.clonedeep@^4.4.1:
+lodash.clonedeep@^4.3.2, lodash.clonedeep@^4.4.1, lodash.clonedeep@^4.5.0:
version "4.5.0"
resolved "https://registry.yarnpkg.com/lodash.clonedeep/-/lodash.clonedeep-4.5.0.tgz#e23f3f9c4f8fbdde872529c1071857a086e5ccef"
integrity sha1-4j8/nE+Pvd6HJSnBBxhXoIblzO8=
+lodash.compact@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/lodash.compact/-/lodash.compact-3.0.1.tgz#540ce3837745975807471e16b4a2ba21e7256ca5"
+ integrity sha1-VAzjg3dFl1gHRx4WtKK6IeclbKU=
+
lodash.debounce@^3.1.1:
version "3.1.1"
resolved "https://registry.yarnpkg.com/lodash.debounce/-/lodash.debounce-3.1.1.tgz#812211c378a94cc29d5aa4e3346cf0bfce3a7df5"
@@ -7482,7 +8564,7 @@ lodash.escape@~2.3.0:
lodash._reunescapedhtml "~2.3.0"
lodash.keys "~2.3.0"
-lodash.find@^4.5.1:
+lodash.find@^4.5.1, lodash.find@^4.6.0:
version "4.6.0"
resolved "https://registry.yarnpkg.com/lodash.find/-/lodash.find-4.6.0.tgz#cb0704d47ab71789ffa0de8b97dd926fb88b13b1"
integrity sha1-ywcE1Hq3F4n/oN6Ll92Sb7iLE7E=
@@ -7495,6 +8577,11 @@ lodash.flatten@^3.0.2:
lodash._baseflatten "^3.0.0"
lodash._isiterateecall "^3.0.0"
+lodash.flatten@^4.4.0:
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/lodash.flatten/-/lodash.flatten-4.4.0.tgz#f31c22225a9632d2bbf8e4addbef240aa765a61f"
+ integrity sha1-8xwiIlqWMtK7+OSt2+8kCqdlph8=
+
lodash.foreach@~2.3.x:
version "2.3.0"
resolved "https://registry.yarnpkg.com/lodash.foreach/-/lodash.foreach-2.3.0.tgz#083404c91e846ee77245fdf9d76519c68b2af168"
@@ -7503,6 +8590,11 @@ lodash.foreach@~2.3.x:
lodash._basecreatecallback "~2.3.0"
lodash.forown "~2.3.0"
+lodash.forin@^4.4.0:
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/lodash.forin/-/lodash.forin-4.4.0.tgz#5d3f20ae564011fbe88381f7d98949c9c9519731"
+ integrity sha1-XT8grlZAEfvog4H32YlJyclRlzE=
+
lodash.forown@~2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/lodash.forown/-/lodash.forown-2.3.0.tgz#24fb4aaf800d45fc2dc60bfec3ce04c836a3ad7f"
@@ -7517,6 +8609,11 @@ lodash.get@^4.4.2:
resolved "https://registry.yarnpkg.com/lodash.get/-/lodash.get-4.4.2.tgz#2d177f652fa31e939b4438d5341499dfa3825e99"
integrity sha1-LRd/ZS+jHpObRDjVNBSZ36OCXpk=
+lodash.has@^4.5.2:
+ version "4.5.2"
+ resolved "https://registry.yarnpkg.com/lodash.has/-/lodash.has-4.5.2.tgz#d19f4dc1095058cccbe2b0cdf4ee0fe4aa37c862"
+ integrity sha1-0Z9NwQlQWMzL4rDN9O4P5Ko3yGI=
+
lodash.identity@~2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/lodash.identity/-/lodash.identity-2.3.0.tgz#6b01a210c9485355c2a913b48b6711219a173ded"
@@ -7527,6 +8624,11 @@ lodash.intersection@^4.4.0:
resolved "https://registry.yarnpkg.com/lodash.intersection/-/lodash.intersection-4.4.0.tgz#0a11ba631d0e95c23c7f2f4cbb9a692ed178e705"
integrity sha1-ChG6Yx0OlcI8fy9Mu5ppLtF45wU=
+lodash.invokemap@^4.6.0:
+ version "4.6.0"
+ resolved "https://registry.yarnpkg.com/lodash.invokemap/-/lodash.invokemap-4.6.0.tgz#1748cda5d8b0ef8369c4eb3ec54c21feba1f2d62"
+ integrity sha1-F0jNpdiw74NpxOs+xUwh/rofLWI=
+
lodash.isarguments@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz#2f573d85c6a24289ff00663b491c1d338ff3458a"
@@ -7537,11 +8639,31 @@ lodash.isarray@^3.0.0:
resolved "https://registry.yarnpkg.com/lodash.isarray/-/lodash.isarray-3.0.4.tgz#79e4eb88c36a8122af86f844aa9bcd851b5fbb55"
integrity sha1-eeTriMNqgSKvhvhEqpvNhRtfu1U=
+lodash.isempty@^4.4.0:
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/lodash.isempty/-/lodash.isempty-4.4.0.tgz#6f86cbedd8be4ec987be9aaf33c9684db1b31e7e"
+ integrity sha1-b4bL7di+TsmHvpqvM8loTbGzHn4=
+
+lodash.isequal@^4.5.0:
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/lodash.isequal/-/lodash.isequal-4.5.0.tgz#415c4478f2bcc30120c22ce10ed3226f7d3e18e0"
+ integrity sha1-QVxEePK8wwEgwizhDtMib30+GOA=
+
+lodash.isfunction@^3.0.9:
+ version "3.0.9"
+ resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz#06de25df4db327ac931981d1bdb067e5af68d051"
+ integrity sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==
+
lodash.isfunction@~2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/lodash.isfunction/-/lodash.isfunction-2.3.0.tgz#6b2973e47a647cf12e70d676aea13643706e5267"
integrity sha1-aylz5HpkfPEucNZ2rqE2Q3BuUmc=
+lodash.isinteger@^4.0.4:
+ version "4.0.4"
+ resolved "https://registry.yarnpkg.com/lodash.isinteger/-/lodash.isinteger-4.0.4.tgz#619c0af3d03f8b04c31f5882840b77b11cd68343"
+ integrity sha1-YZwK89A/iwTDH1iChAt3sRzWg0M=
+
lodash.isobject@~2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/lodash.isobject/-/lodash.isobject-2.3.0.tgz#2e16d3fc583da9831968953f2d8e6d73434f6799"
@@ -7549,6 +8671,11 @@ lodash.isobject@~2.3.0:
dependencies:
lodash._objecttypes "~2.3.0"
+lodash.isplainobject@^4.0.6:
+ version "4.0.6"
+ resolved "https://registry.yarnpkg.com/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz#7c526a52d89b45c45cc690b88163be0497f550cb"
+ integrity sha1-fFJqUtibRcRcxpC4gWO+BJf1UMs=
+
lodash.keys@^3.0.0:
version "3.1.2"
resolved "https://registry.yarnpkg.com/lodash.keys/-/lodash.keys-3.1.2.tgz#4dbc0472b156be50a0b286855d1bd0b0c656098a"
@@ -7567,12 +8694,32 @@ lodash.keys@~2.3.0:
lodash._shimkeys "~2.3.0"
lodash.isobject "~2.3.0"
+lodash.lowerfirst@^4.3.1:
+ version "4.3.1"
+ resolved "https://registry.yarnpkg.com/lodash.lowerfirst/-/lodash.lowerfirst-4.3.1.tgz#de3c7b12e02c6524a0059c2f6cb7c5c52655a13d"
+ integrity sha1-3jx7EuAsZSSgBZwvbLfFxSZVoT0=
+
+lodash.map@^4.6.0:
+ version "4.6.0"
+ resolved "https://registry.yarnpkg.com/lodash.map/-/lodash.map-4.6.0.tgz#771ec7839e3473d9c4cde28b19394c3562f4f6d3"
+ integrity sha1-dx7Hg540c9nEzeKLGTlMNWL09tM=
+
+lodash.mapvalues@^4.6.0:
+ version "4.6.0"
+ resolved "https://registry.yarnpkg.com/lodash.mapvalues/-/lodash.mapvalues-4.6.0.tgz#1bafa5005de9dd6f4f26668c30ca37230cc9689c"
+ integrity sha1-G6+lAF3p3W9PJmaMMMo3IwzJaJw=
+
lodash.memoize@^4.1.2:
version "4.1.2"
resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
integrity sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=
-lodash.merge@^4.3.1, lodash.merge@^4.6.0:
+lodash.merge@^4.3.1:
+ version "4.6.2"
+ resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a"
+ integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
+
+lodash.merge@^4.6.0:
version "4.6.1"
resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.1.tgz#adc25d9cb99b9391c59624f379fbba60d7111d54"
integrity sha512-AOYza4+Hf5z1/0Hztxpm2/xiPZgi/cjMqdnKTUWTBSKchJlxXXuUSxCCl8rJlf4g6yww/j6mA8nC8Hw/EZWxKQ==
@@ -7592,11 +8739,26 @@ lodash.omit@^4.1.0:
resolved "https://registry.yarnpkg.com/lodash.omit/-/lodash.omit-4.5.0.tgz#6eb19ae5a1ee1dd9df0b969e66ce0b7fa30b5e60"
integrity sha1-brGa5aHuHdnfC5aeZs4Lf6MLXmA=
+lodash.pick@^4.4.0:
+ version "4.4.0"
+ resolved "https://registry.yarnpkg.com/lodash.pick/-/lodash.pick-4.4.0.tgz#52f05610fff9ded422611441ed1fc123a03001b3"
+ integrity sha1-UvBWEP/53tQiYRRB7R/BI6AwAbM=
+
lodash.restparam@^3.0.0:
version "3.6.1"
resolved "https://registry.yarnpkg.com/lodash.restparam/-/lodash.restparam-3.6.1.tgz#936a4e309ef330a7645ed4145986c85ae5b20805"
integrity sha1-k2pOMJ7zMKdkXtQUWYbIWuWyCAU=
+lodash.snakecase@^4.1.1:
+ version "4.1.1"
+ resolved "https://registry.yarnpkg.com/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz#39d714a35357147837aefd64b5dcbb16becd8f8d"
+ integrity sha1-OdcUo1NXFHg3rv1ktdy7Fr7Nj40=
+
+lodash.sortby@^4.7.0:
+ version "4.7.0"
+ resolved "https://registry.yarnpkg.com/lodash.sortby/-/lodash.sortby-4.7.0.tgz#edd14c824e2cc9c1e0b0a1b42bb5210516a42438"
+ integrity sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=
+
lodash.support@~2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/lodash.support/-/lodash.support-2.3.0.tgz#7eaf038af4f0d6aab776b44aa6dcfc80334c9bfd"
@@ -7605,11 +8767,11 @@ lodash.support@~2.3.0:
lodash._renative "~2.3.0"
lodash.template@^4.4.0:
- version "4.4.0"
- resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.4.0.tgz#e73a0385c8355591746e020b99679c690e68fba0"
- integrity sha1-5zoDhcg1VZF0bgILmWecaQ5o+6A=
+ version "4.5.0"
+ resolved "https://registry.yarnpkg.com/lodash.template/-/lodash.template-4.5.0.tgz#f976195cf3f347d0d5f52483569fe8031ccce8ab"
+ integrity sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==
dependencies:
- lodash._reinterpolate "~3.0.0"
+ lodash._reinterpolate "^3.0.0"
lodash.templatesettings "^4.0.0"
lodash.template@~2.3.x:
@@ -7626,11 +8788,11 @@ lodash.template@~2.3.x:
lodash.values "~2.3.0"
lodash.templatesettings@^4.0.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.1.0.tgz#2b4d4e95ba440d915ff08bc899e4553666713316"
- integrity sha1-K01OlbpEDZFf8IvImeRVNmZxMxY=
+ version "4.2.0"
+ resolved "https://registry.yarnpkg.com/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz#e481310f049d3cf6d47e912ad09313b154f0fb33"
+ integrity sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==
dependencies:
- lodash._reinterpolate "~3.0.0"
+ lodash._reinterpolate "^3.0.0"
lodash.templatesettings@~2.3.0:
version "2.3.0"
@@ -7650,6 +8812,11 @@ lodash.uniqby@^4.7.0:
resolved "https://registry.yarnpkg.com/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz#d99c07a669e9e6d24e1362dfe266c67616af1302"
integrity sha1-2ZwHpmnp5tJOE2Lf4mbGdhavEwI=
+lodash.values@^4.3.0:
+ version "4.3.0"
+ resolved "https://registry.yarnpkg.com/lodash.values/-/lodash.values-4.3.0.tgz#a3a6c2b0ebecc5c2cba1c17e6e620fe81b53d347"
+ integrity sha1-o6bCsOvsxcLLocF+bmIP6BtT00c=
+
lodash.values@~2.3.0:
version "2.3.0"
resolved "https://registry.yarnpkg.com/lodash.values/-/lodash.values-2.3.0.tgz#ca96fbe60a20b0b0ec2ba2ba5fc6a765bd14a3ba"
@@ -7657,11 +8824,21 @@ lodash.values@~2.3.0:
dependencies:
lodash.keys "~2.3.0"
-lodash@^4.0.0, lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.4, lodash@^4.3.0, lodash@^4.5.1, lodash@~4.17.10:
+lodash@^4.0.0, lodash@^4.3.0, lodash@~4.17.10:
version "4.17.11"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==
+lodash@^4.17.10, lodash@^4.17.11, lodash@^4.17.12, lodash@^4.17.4, lodash@^4.5.1:
+ version "4.17.14"
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.14.tgz#9ce487ae66c96254fe20b599f21b6816028078ba"
+ integrity sha512-mmKYbW3GLuJeX+iGP+Y7Gp1AiGHGbXHCOh/jZmrawMmsE7MS4znI3RL2FsjbqOyMayHInjOeykW7PEajUk1/xw==
+
+lodash@^4.17.13:
+ version "4.17.15"
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
+ integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
+
log-symbols@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18"
@@ -7685,10 +8862,10 @@ log-update@^2.3.0:
cli-cursor "^2.0.0"
wrap-ansi "^3.0.1"
-lolex@^2.3.2, lolex@^2.7.5:
- version "2.7.5"
- resolved "https://registry.yarnpkg.com/lolex/-/lolex-2.7.5.tgz#113001d56bfc7e02d56e36291cc5c413d1aa0733"
- integrity sha512-l9x0+1offnKKIzYVjyXU2SiwhXDLekRzKyhnbyldPHvC7BvLPVpdNUNR2KeMAiCN2D/kLNttZgQD5WjSxuBx3Q==
+lolex@^4.0.1, lolex@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/lolex/-/lolex-4.1.0.tgz#ecdd7b86539391d8237947a3419aa8ac975f0fe1"
+ integrity sha512-BYxIEXiVq5lGIXeVHnsFzqa1TxN5acnKnPCdlZSpzm8viNEOhiigupA4vTQ9HEFQ6nLTQ9wQOgBknJgzUYQ9Aw==
loose-envify@^1.0.0:
version "1.4.0"
@@ -7705,6 +8882,16 @@ loud-rejection@^1.0.0:
currently-unhandled "^0.4.1"
signal-exit "^3.0.0"
+lowercase-keys@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.0.tgz#4e3366b39e7f5457e35f1324bdf6f88d0bfc7306"
+ integrity sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=
+
+lowercase-keys@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/lowercase-keys/-/lowercase-keys-1.0.1.tgz#6f9e30b47084d971a7c820ff15a6c5167b74c26f"
+ integrity sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==
+
lru-cache@^4.0.1:
version "4.1.5"
resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
@@ -7800,14 +8987,6 @@ matcher-collection@^1.0.0, matcher-collection@^1.0.5, matcher-collection@^1.1.1:
dependencies:
minimatch "^3.0.2"
-matcher-collection@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/matcher-collection/-/matcher-collection-2.0.0.tgz#470ae263c793e897b3f1e72c695016b7aea355c4"
- integrity sha512-wSi4BgQGTFfBN5J+pIaS78rEKk4qIkjrw+NfJYdHsd2cRVIQsbDi3BZtNAXTFA2WHvlbS9kLGtTjv3cPJKuRSw==
- dependencies:
- "@types/minimatch" "^3.0.3"
- minimatch "^3.0.2"
-
matcher@^1.0.0:
version "1.1.1"
resolved "https://registry.yarnpkg.com/matcher/-/matcher-1.1.1.tgz#51d8301e138f840982b338b116bb0c09af62c1c2"
@@ -7836,11 +9015,6 @@ md5.js@^1.3.4:
inherits "^2.0.1"
safe-buffer "^5.1.2"
-mdn-data@^1.0.0:
- version "1.2.0"
- resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-1.2.0.tgz#eadd28b0f2d307cf27e71524609bfb749ebfc0b6"
- integrity sha512-esDqNvsJB2q5V28+u7NdtdMg6Rmg4khQmAVSjUiX7BY/7haIv0K2yWM43hYp0or+3nvG7+UaTF1JHz31hgU1TA==
-
mdn-data@~1.1.0:
version "1.1.4"
resolved "https://registry.yarnpkg.com/mdn-data/-/mdn-data-1.1.4.tgz#50b5d4ffc4575276573c4eedb8780812a8419f01"
@@ -7878,7 +9052,7 @@ memory-streams@^0.1.3:
dependencies:
readable-stream "~1.0.2"
-meow@^3.4.0, meow@^3.7.0:
+meow@^3.7.0:
version "3.7.0"
resolved "https://registry.yarnpkg.com/meow/-/meow-3.7.0.tgz#72cb668b425228290abbfa856892587308a801fb"
integrity sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=
@@ -7924,7 +9098,7 @@ merge2@^1.2.3:
resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.2.3.tgz#7ee99dbd69bb6481689253f018488a1b902b0ed5"
integrity sha512-gdUU1Fwj5ep4kplwcmftruWofEFt6lfpkkr3h860CXbAB9c3hGb55EOL2ali0Td5oebvW0E1+3Sr+Ur7XfKpRA==
-merge@^1.2.0:
+merge@^1.2.0, merge@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/merge/-/merge-1.2.1.tgz#38bebf80c3220a8a487b6fcfb3941bb11720c145"
integrity sha512-VjFo4P5Whtj4vsLzsYBu5ayHhoHJ0UqNm7ibvShmbmoz7tGi0vXaoJbGdB+GmDMLUdg8DpQXEIeVDAe8MaABvQ==
@@ -7961,6 +9135,11 @@ miller-rabin@^4.0.0:
bn.js "^4.0.0"
brorand "^1.0.1"
+mime-db@1.40.0:
+ version "1.40.0"
+ resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.40.0.tgz#a65057e998db090f732a68f6c276d387d4126c32"
+ integrity sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==
+
"mime-db@>= 1.38.0 < 2", mime-db@~1.38.0:
version "1.38.0"
resolved "https://registry.yarnpkg.com/mime-db/-/mime-db-1.38.0.tgz#1a2aab16da9eb167b49c6e4df2d9c68d63d8e2ad"
@@ -7973,16 +9152,33 @@ mime-types@^2.1.12, mime-types@^2.1.18, mime-types@~2.1.18, mime-types@~2.1.19:
dependencies:
mime-db "~1.38.0"
+mime-types@^2.1.19, mime-types@~2.1.24:
+ version "2.1.24"
+ resolved "https://registry.yarnpkg.com/mime-types/-/mime-types-2.1.24.tgz#b6f8d0b3e951efb77dedeca194cff6d16f676f81"
+ integrity sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==
+ dependencies:
+ mime-db "1.40.0"
+
mime@1.4.1:
version "1.4.1"
resolved "https://registry.yarnpkg.com/mime/-/mime-1.4.1.tgz#121f9ebc49e3766f311a76e1fa1c8003c4b03aa6"
integrity sha512-KI1+qOZu5DcW6wayYHSzR/tXKCDC5Om4s1z2QJjDULzLcmf3DvzS7oluY4HCTrc+9FiKmWUgeNLg7W3uIQvxtQ==
+mime@1.6.0:
+ version "1.6.0"
+ resolved "https://registry.yarnpkg.com/mime/-/mime-1.6.0.tgz#32cd9e5c64553bd58d19a568af452acff04981b1"
+ integrity sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==
+
mimic-fn@^1.0.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-1.2.0.tgz#820c86a39334640e99516928bd03fca88057d022"
integrity sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==
+mimic-response@^1.0.0:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/mimic-response/-/mimic-response-1.0.1.tgz#4923538878eef42063cb8a3e3b0798781487ab1b"
+ integrity sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==
+
minimalistic-assert@^1.0.0, minimalistic-assert@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz#2e194de044626d4a10e7f7fbc00ce73e83e4d5c7"
@@ -7993,7 +9189,7 @@ minimalistic-crypto-utils@^1.0.0, minimalistic-crypto-utils@^1.0.1:
resolved "https://registry.yarnpkg.com/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz#f6c00c1c0b082246e5c4d99dfb8c7c083b2b582a"
integrity sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=
-"minimatch@2 || 3", minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4, minimatch@~3.0.2:
+"minimatch@2 || 3", minimatch@3.0.4, minimatch@^3.0.0, minimatch@^3.0.2, minimatch@^3.0.3, minimatch@^3.0.4, minimatch@~3.0.2:
version "3.0.4"
resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.0.4.tgz#5166e286457f03306064be5497e8dbb0c3d32083"
integrity sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==
@@ -8015,7 +9211,7 @@ minimist@~0.0.1:
resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.10.tgz#de3f98543dbf96082be48ad1a0c7cda836301dcf"
integrity sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=
-minipass@^2.2.0, minipass@^2.2.1, minipass@^2.3.4:
+minipass@^2.2.0, minipass@^2.2.1, minipass@^2.3.5:
version "2.3.5"
resolved "https://registry.yarnpkg.com/minipass/-/minipass-2.3.5.tgz#cacebe492022497f656b0f0f51e2682a9ed2d848"
integrity sha512-Gi1W4k059gyRbyVUZQ4mEqLm0YIUiGYfvxhF6SIlk3ui1WVxMTGfGdQ2SInh3PDrRTVvPKgULkpJtT4RH10+VA==
@@ -8023,7 +9219,7 @@ minipass@^2.2.0, minipass@^2.2.1, minipass@^2.3.4:
safe-buffer "^5.1.2"
yallist "^3.0.0"
-minizlib@^1.1.1:
+minizlib@^1.2.1:
version "1.2.1"
resolved "https://registry.yarnpkg.com/minizlib/-/minizlib-1.2.1.tgz#dd27ea6136243c7c880684e8672bb3a45fd9b614"
integrity sha512-7+4oTUOWKg7AuL3vloEWekXY2/D20cevzsrNT2kGWm+39J9hGTCBv8VI5Pm5lXZ/o3/mdR4f8rflAPhnQb8mPA==
@@ -8047,9 +9243,9 @@ mississippi@^3.0.0:
through2 "^2.0.0"
mixin-deep@^1.2.0:
- version "1.3.1"
- resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.1.tgz#a49e7268dce1a0d9698e45326c5626df3543d0fe"
- integrity sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==
+ version "1.3.2"
+ resolved "https://registry.yarnpkg.com/mixin-deep/-/mixin-deep-1.3.2.tgz#1120b43dc359a785dce65b55b82e257ccf479566"
+ integrity sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==
dependencies:
for-in "^1.0.2"
is-extendable "^1.0.1"
@@ -8083,7 +9279,7 @@ moment-timezone@^0.5.13:
resolved "https://registry.yarnpkg.com/moment/-/moment-2.24.0.tgz#0d055d53f5052aa653c9f6eb68bb5d12bf5c2b5b"
integrity sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg==
-morgan@^1.9.0:
+morgan@^1.9.1:
version "1.9.1"
resolved "https://registry.yarnpkg.com/morgan/-/morgan-1.9.1.tgz#0a8d16734a1d9afbc824b99df87e738e58e2da59"
integrity sha512-HQStPIV4y3afTiCYVxirakhlCfGkI161c76kKFca7Fk1JusM//Qeo1ej2XaMniiNeaZklMVrh3vTtIzpzwbpmA==
@@ -8116,21 +9312,21 @@ ms@2.0.0:
resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8"
integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=
-ms@^2.1.1:
+ms@2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.1.tgz#30a5864eb3ebb0a66f2ebe6d727af06a09d86e0a"
integrity sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==
+ms@^2.1.1:
+ version "2.1.2"
+ resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009"
+ integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==
+
mustache@^3.0.0:
version "3.0.1"
resolved "https://registry.yarnpkg.com/mustache/-/mustache-3.0.1.tgz#873855f23aa8a95b150fb96d9836edbc5a1d248a"
integrity sha512-jFI/4UVRsRYdUbuDTKT7KzfOp7FiD5WzYmmwNwXyUVypC0xjoTL78Fqc0jHUPIvvGD+6DQSPHIt1NE7D1ArsqA==
-mute-stream@0.0.6:
- version "0.0.6"
- resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.6.tgz#48962b19e169fd1dfc240b3f1e7317627bbc47db"
- integrity sha1-SJYrGeFp/R38JAs/HnMXYnu8R9s=
-
mute-stream@0.0.7:
version "0.0.7"
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
@@ -8145,11 +9341,16 @@ najax@^1.0.3:
lodash.defaultsdeep "^4.6.0"
qs "^6.2.0"
-nan@^2.10.0, nan@^2.9.2:
+nan@^2.10.0:
version "2.13.2"
resolved "https://registry.yarnpkg.com/nan/-/nan-2.13.2.tgz#f51dc7ae66ba7d5d55e1e6d4d8092e802c9aefe7"
integrity sha512-TghvYc72wlMGMVMluVo9WRJc0mB8KxxF/gZ4YYFy7V2ZQX9l7rgbPg7vjS9mt6U5HXODVFVI2bOduCzwOMv/lw==
+nan@^2.12.1:
+ version "2.14.0"
+ resolved "https://registry.yarnpkg.com/nan/-/nan-2.14.0.tgz#7818f722027b2459a86f0295d434d1fc2336c52c"
+ integrity sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==
+
nanomatch@^1.2.9:
version "1.2.13"
resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.13.tgz#b87a8aa4fc0de8fe6be88895b38983ff265bd119"
@@ -8173,11 +9374,11 @@ natural-compare@^1.4.0:
integrity sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=
needle@^2.2.1:
- version "2.2.4"
- resolved "https://registry.yarnpkg.com/needle/-/needle-2.2.4.tgz#51931bff82533b1928b7d1d69e01f1b00ffd2a4e"
- integrity sha512-HyoqEb4wr/rsoaIDfTH2aVL9nWtQqba2/HvMv+++m8u0dz808MaagKILxtfeSN7QU7nvbQ79zk3vYOJp9zsNEA==
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/needle/-/needle-2.4.0.tgz#6833e74975c444642590e15a750288c5f939b57c"
+ integrity sha512-4Hnwzr3mi5L97hMYeNl8wRW/Onhy4nUKR/lVemJ8gJedxxUyBLm9kkrDColJvoSfwi0jCNhD+xCdOtiGDQiRZg==
dependencies:
- debug "^2.1.2"
+ debug "^3.2.6"
iconv-lite "^0.4.4"
sax "^1.2.4"
@@ -8186,7 +9387,17 @@ negotiator@0.6.1:
resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.1.tgz#2b327184e8992101177b28563fb5e7102acd0ca9"
integrity sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=
-neo-async@^2.5.0, neo-async@^2.6.0:
+negotiator@0.6.2:
+ version "0.6.2"
+ resolved "https://registry.yarnpkg.com/negotiator/-/negotiator-0.6.2.tgz#feacf7ccf525a77ae9634436a64883ffeca346fb"
+ integrity sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==
+
+neo-async@^2.5.0:
+ version "2.6.1"
+ resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.1.tgz#ac27ada66167fa8849a6addd837f6b189ad2081c"
+ integrity sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==
+
+neo-async@^2.6.0:
version "2.6.0"
resolved "https://registry.yarnpkg.com/neo-async/-/neo-async-2.6.0.tgz#b9d15e4d71c6762908654b5183ed38b753340835"
integrity sha512-MFh0d/Wa7vkKO3Y3LlacqAEeHK0mckVqzDieUKTT+KGxi+zIpeVsFxymkIiRpbpDziHc290Xr9A1O4Om7otoRA==
@@ -8196,21 +9407,21 @@ nice-try@^1.0.4:
resolved "https://registry.yarnpkg.com/nice-try/-/nice-try-1.0.5.tgz#a3378a7696ce7d223e88fc9b764bd7ef1089e366"
integrity sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==
-nise@^1.4.5:
- version "1.4.10"
- resolved "https://registry.yarnpkg.com/nise/-/nise-1.4.10.tgz#ae46a09a26436fae91a38a60919356ae6db143b6"
- integrity sha512-sa0RRbj53dovjc7wombHmVli9ZihXbXCQ2uH3TNm03DyvOSIQbxg+pbqDKrk2oxMK1rtLGVlKxcB9rrc6X5YjA==
+nise@^1.4.10:
+ version "1.5.0"
+ resolved "https://registry.yarnpkg.com/nise/-/nise-1.5.0.tgz#d03ea0e6c1b75c638015aa3585eddc132949a50d"
+ integrity sha512-Z3sfYEkLFzFmL8KY6xnSJLRxwQwYBjOXi/24lb62ZnZiGA0JUzGGTI6TBIgfCSMIDl9Jlu8SRmHNACLTemDHww==
dependencies:
"@sinonjs/formatio" "^3.1.0"
"@sinonjs/text-encoding" "^0.7.1"
just-extend "^4.0.2"
- lolex "^2.3.2"
+ lolex "^4.1.0"
path-to-regexp "^1.7.0"
-node-fetch@^2.3.0:
- version "2.3.0"
- resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.3.0.tgz#1a1d940bbfb916a1d3e0219f037e89e71f8c5fa5"
- integrity sha512-MOd8pV3fxENbryESLgVIeaGKrdl+uaYhCSSVkjeOb/31/njTpcis5aWfdqgNlHIrKOLRbMnfPINPOML2CIFeXA==
+node-fetch@^2.6.0:
+ version "2.6.0"
+ resolved "https://registry.yarnpkg.com/node-fetch/-/node-fetch-2.6.0.tgz#e633456386d4aa55863f676a7ab0daa8fdecb0fd"
+ integrity sha512-8dG4H5ujfvFiqDmVu9fQ5bOHUC15JMjMY/Zumv26oOvvVJjM67KF8koCWIabKQ1GJIa9r2mMZscBq/TbdOcmNA==
node-gyp@^3.8.0:
version "3.8.0"
@@ -8236,9 +9447,9 @@ node-int64@^0.4.0:
integrity sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=
node-libs-browser@^2.0.0:
- version "2.2.0"
- resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.0.tgz#c72f60d9d46de08a940dedbb25f3ffa2f9bbaa77"
- integrity sha512-5MQunG/oyOaBdttrL40dA7bUfPORLRWMUJLQtMg7nluxUvk5XwnLdL9twQHFAjRx/y7mIMkLKT9++qPbbk6BZA==
+ version "2.2.1"
+ resolved "https://registry.yarnpkg.com/node-libs-browser/-/node-libs-browser-2.2.1.tgz#b64f513d18338625f90346d27b0d235e631f6425"
+ integrity sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==
dependencies:
assert "^1.1.1"
browserify-zlib "^0.2.0"
@@ -8250,7 +9461,7 @@ node-libs-browser@^2.0.0:
events "^3.0.0"
https-browserify "^1.0.0"
os-browserify "^0.3.0"
- path-browserify "0.0.0"
+ path-browserify "0.0.1"
process "^0.11.10"
punycode "^1.2.4"
querystring-es3 "^0.2.0"
@@ -8262,7 +9473,7 @@ node-libs-browser@^2.0.0:
tty-browserify "0.0.0"
url "^0.11.0"
util "^0.11.0"
- vm-browserify "0.0.4"
+ vm-browserify "^1.0.1"
node-modules-path@^1.0.0, node-modules-path@^1.0.1:
version "1.0.2"
@@ -8280,10 +9491,10 @@ node-notifier@^5.0.1:
shellwords "^0.1.1"
which "^1.3.0"
-node-pre-gyp@^0.10.0:
- version "0.10.3"
- resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.10.3.tgz#3070040716afdc778747b61b6887bf78880b80fc"
- integrity sha512-d1xFs+C/IPS8Id0qPTZ4bUT8wWryfR/OzzAFxweG+uLN85oPzyo2Iw6bVlLQ/JOdgNonXLCoRyqDzDWq4iw72A==
+node-pre-gyp@^0.12.0:
+ version "0.12.0"
+ resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.12.0.tgz#39ba4bb1439da030295f899e3b520b7785766149"
+ integrity sha512-4KghwV8vH5k+g2ylT+sLTjy5wmUOb9vPhnM8NHvRf9dHmnW/CndrFXy2aRPaPST6dugXSdHXfeaHQm77PIz/1A==
dependencies:
detect-libc "^1.0.2"
mkdirp "^0.5.1"
@@ -8296,10 +9507,10 @@ node-pre-gyp@^0.10.0:
semver "^5.3.0"
tar "^4"
-node-releases@^1.1.12:
- version "1.1.12"
- resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.12.tgz#1d6baf544316b5422fcd35efe18708370a4e7637"
- integrity sha512-Y+AQ1xdjcgaEzpL65PBEF3fnl1FNKnDh9Zm+AUQLIlyyqtSc4u93jyMN4zrjMzdwKQ10RTr3tgY1x7qpsfF/xg==
+node-releases@^1.1.25:
+ version "1.1.25"
+ resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-1.1.25.tgz#0c2d7dbc7fed30fbe02a9ee3007b8c90bf0133d3"
+ integrity sha512-fI5BXuk83lKEoZDdH3gRhtsNgh05/wZacuXkgbiYkceE7+QIMXOg98n9ZV7mz27B+kFHnqHcUpscZZlGRSmTpQ==
dependencies:
semver "^5.3.0"
@@ -8328,6 +9539,11 @@ node-sass@^4.7.2:
stdout-stream "^1.4.0"
"true-case-path" "^1.0.2"
+node-watch@0.6.0:
+ version "0.6.0"
+ resolved "https://registry.yarnpkg.com/node-watch/-/node-watch-0.6.0.tgz#ab0703b60cd270783698e57a428faa0010ed8fd0"
+ integrity sha512-XAgTL05z75ptd7JSVejH1a2Dm1zmXYhuDr9l230Qk6Z7/7GPcnAs/UyJJ4ggsXSvWil8iOzwQLW0zuGUvHpG8g==
+
"nopt@2 || 3", nopt@^3.0.6:
version "3.0.6"
resolved "https://registry.yarnpkg.com/nopt/-/nopt-3.0.6.tgz#c6465dbf08abcd4db359317f79ac68a646b28ff9"
@@ -8365,6 +9581,15 @@ normalize-path@^3.0.0:
resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65"
integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==
+normalize-url@2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/normalize-url/-/normalize-url-2.0.1.tgz#835a9da1551fa26f70e92329069a23aa6574d7e6"
+ integrity sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==
+ dependencies:
+ prepend-http "^2.0.0"
+ query-string "^5.0.1"
+ sort-keys "^2.0.0"
+
npm-bundled@^1.0.1:
version "1.0.6"
resolved "https://registry.yarnpkg.com/npm-bundled/-/npm-bundled-1.0.6.tgz#e7ba9aadcef962bb61248f91721cd932b3fe6bdd"
@@ -8386,9 +9611,9 @@ npm-package-arg@^6.1.0:
validate-npm-package-name "^3.0.0"
npm-packlist@^1.1.6:
- version "1.4.1"
- resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.1.tgz#19064cdf988da80ea3cee45533879d90192bbfbc"
- integrity sha512-+TcdO7HJJ8peiiYhvPxsEDhF3PJFGUGRcFsGve3vxvxdcpO2Z4Z7rkosRM0kWj6LfbK/P0gu3dzk5RU1ffvFcw==
+ version "1.4.4"
+ resolved "https://registry.yarnpkg.com/npm-packlist/-/npm-packlist-1.4.4.tgz#866224233850ac534b63d1a6e76050092b5d2f44"
+ integrity sha512-zTLo8UcVYtDU3gdeaFu2Xu0n0EvelfHDGuqtNIn5RO7yQj4H1TqNdBc/yZjxnWA0PVB8D3Woyp0i5B43JwQ6Vw==
dependencies:
ignore-walk "^3.0.1"
npm-bundled "^1.0.1"
@@ -8426,7 +9651,7 @@ npm-which@^3.0.1:
gauge "~2.7.3"
set-blocking "~2.0.0"
-nth-check@^1.0.1:
+nth-check@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/nth-check/-/nth-check-1.0.2.tgz#b2bd295c37e3dd58a3bf0700376663ba4d9cf05c"
integrity sha512-WeBOdju8SnzPN5vTUJYxYUxLeXpCaVP5i5e0LF8fg7WORF2Wd7wFX/pk0tYZk7s8T+J7VLy0Da6J1+wCT0AtHg==
@@ -8438,12 +9663,17 @@ number-is-nan@^1.0.0:
resolved "https://registry.yarnpkg.com/number-is-nan/-/number-is-nan-1.0.1.tgz#097b602b53422a522c1afb8790318336941a011d"
integrity sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=
+nwsapi@^2.0.9:
+ version "2.1.4"
+ resolved "https://registry.yarnpkg.com/nwsapi/-/nwsapi-2.1.4.tgz#e006a878db23636f8e8a67d33ca0e4edf61a842f"
+ integrity sha512-iGfd9Y6SFdTNldEy2L0GUhcarIutFmk+MPWIn9dmj8NMIup03G08uUF2KGbbmv/Ux4RT0VZJoP/sVbWA6d/VIw==
+
oauth-sign@~0.9.0:
version "0.9.0"
resolved "https://registry.yarnpkg.com/oauth-sign/-/oauth-sign-0.9.0.tgz#47a7b016baa68b5fa0ecf3dee08a85c679ac6455"
integrity sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==
-object-assign@4.1.1, object-assign@^4.0.1, object-assign@^4.1.0:
+object-assign@4.1.1, object-assign@^4.0.1, object-assign@^4.1.0, object-assign@^4.1.1:
version "4.1.1"
resolved "https://registry.yarnpkg.com/object-assign/-/object-assign-4.1.1.tgz#2109adc7965887cfc05cbbd442cac8bfbb360863"
integrity sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=
@@ -8472,10 +9702,10 @@ object-hash@^1.3.1:
resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.3.1.tgz#fde452098a951cb145f039bb7d455449ddc126df"
integrity sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA==
-object-keys@^1.0.12:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.0.tgz#11bd22348dd2e096a045ab06f6c85bcc340fa032"
- integrity sha512-6OO5X1+2tYkNyNEx6TsCxEqFfRWaqx6EtMiSbGrw8Ob8v9Ne+Hl8rBAgLBZn5wjEz3s/s6U1WXFUFOcxxAwUpg==
+object-keys@^1.0.11, object-keys@^1.0.12:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/object-keys/-/object-keys-1.1.1.tgz#1c47f272df277f3b1daf061677d9c82e2322c60e"
+ integrity sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==
object-visit@^1.0.0:
version "1.0.1"
@@ -8484,6 +9714,16 @@ object-visit@^1.0.0:
dependencies:
isobject "^3.0.0"
+object.assign@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/object.assign/-/object.assign-4.1.0.tgz#968bf1100d7956bb3ca086f006f846b3bc4008da"
+ integrity sha512-exHJeq6kBKj58mqGyTQ9DFvrZC/eR6OwxzoM9YRoGBqrXYonaFyGiFMuc9VZrXf7DarreEwMpurG3dd+CNyW5w==
+ dependencies:
+ define-properties "^1.1.2"
+ function-bind "^1.1.1"
+ has-symbols "^1.0.0"
+ object-keys "^1.0.11"
+
object.getownpropertydescriptors@^2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz#8758c846f5b407adab0f236e0986f14b051caa16"
@@ -8499,7 +9739,7 @@ object.pick@^1.3.0:
dependencies:
isobject "^3.0.1"
-object.values@^1.0.4:
+object.values@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/object.values/-/object.values-1.1.0.tgz#bf6810ef5da3e5325790eaaa2be213ea84624da9"
integrity sha512-8mf0nKLAoFX6VlNVdhGj31SVYpaNFtUnuoOXWyFEstsWRgU837AK+JYM0iAxwkSzGRbwn8cbFmgbyxj1j4VbXg==
@@ -8528,11 +9768,6 @@ once@^1.3.0, once@^1.3.1, once@^1.4.0:
dependencies:
wrappy "1"
-onetime@^1.0.0:
- version "1.1.0"
- resolved "https://registry.yarnpkg.com/onetime/-/onetime-1.1.0.tgz#a1f7838f8314c516f05ecefcbc4ccfe04b4ed789"
- integrity sha1-ofeDj4MUxRbwXs78vEzP4EtO14k=
-
onetime@^2.0.0:
version "2.0.1"
resolved "https://registry.yarnpkg.com/onetime/-/onetime-2.0.1.tgz#067428230fd67443b2794b22bba528b6867962d4"
@@ -8548,7 +9783,7 @@ optimist@^0.6.1:
minimist "~0.0.1"
wordwrap "~0.0.2"
-optionator@^0.8.2:
+optionator@^0.8.1, optionator@^0.8.2:
version "0.8.2"
resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.8.2.tgz#364c5e409d3f4d6301d6c0b4c05bba50180aeb64"
integrity sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=
@@ -8560,16 +9795,16 @@ optionator@^0.8.2:
type-check "~0.3.2"
wordwrap "~1.0.0"
-ora@^2.0.0:
- version "2.1.0"
- resolved "https://registry.yarnpkg.com/ora/-/ora-2.1.0.tgz#6caf2830eb924941861ec53a173799e008b51e5b"
- integrity sha512-hNNlAd3gfv/iPmsNxYoAPLvxg7HuPozww7fFonMZvL84tP6Ox5igfk5j/+a9rtJJwqMgKK+JgWsAQik5o0HTLA==
+ora@^3.4.0:
+ version "3.4.0"
+ resolved "https://registry.yarnpkg.com/ora/-/ora-3.4.0.tgz#bf0752491059a3ef3ed4c85097531de9fdbcd318"
+ integrity sha512-eNwHudNbO1folBP3JsZ19v9azXWtQZjICdr3Q0TDPIaeBQ3mXLrh54wM+er0+hSp+dWKf+Z8KM58CYzEyIYxYg==
dependencies:
- chalk "^2.3.1"
+ chalk "^2.4.2"
cli-cursor "^2.1.0"
- cli-spinners "^1.1.0"
+ cli-spinners "^2.0.0"
log-symbols "^2.2.0"
- strip-ansi "^4.0.0"
+ strip-ansi "^5.2.0"
wcwidth "^1.0.1"
os-browserify@^0.3.0:
@@ -8577,7 +9812,7 @@ os-browserify@^0.3.0:
resolved "https://registry.yarnpkg.com/os-browserify/-/os-browserify-0.3.0.tgz#854373c7f5c2315914fc9bfc6bd8238fdda1ec27"
integrity sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=
-os-homedir@^1.0.0, os-homedir@^1.0.1:
+os-homedir@^1.0.0:
version "1.0.2"
resolved "https://registry.yarnpkg.com/os-homedir/-/os-homedir-1.0.2.tgz#ffbc4988336e0e833de0c168c7ef152121aa7fb3"
integrity sha1-/7xJiDNuDoM94MFox+8VISGqf7M=
@@ -8598,11 +9833,6 @@ os-locale@^2.0.0:
lcid "^1.0.0"
mem "^1.1.0"
-os-shim@^0.1.2:
- version "0.1.3"
- resolved "https://registry.yarnpkg.com/os-shim/-/os-shim-0.1.3.tgz#6b62c3791cf7909ea35ed46e17658bb417cb3917"
- integrity sha1-a2LDeRz3kJ6jXtRuF2WLtBfLORc=
-
os-tmpdir@^1.0.0, os-tmpdir@^1.0.1, os-tmpdir@~1.0.1, os-tmpdir@~1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/os-tmpdir/-/os-tmpdir-1.0.2.tgz#bbe67406c79aa85c5cfec766fe5734555dfa1274"
@@ -8616,11 +9846,26 @@ osenv@0, osenv@^0.1.3, osenv@^0.1.4, osenv@^0.1.5:
os-homedir "^1.0.0"
os-tmpdir "^1.0.0"
+p-cancelable@^0.4.0:
+ version "0.4.1"
+ resolved "https://registry.yarnpkg.com/p-cancelable/-/p-cancelable-0.4.1.tgz#35f363d67d52081c8d9585e37bcceb7e0bbcb2a0"
+ integrity sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==
+
+p-defer@^2.1.0:
+ version "2.1.0"
+ resolved "https://registry.yarnpkg.com/p-defer/-/p-defer-2.1.0.tgz#d9c97b40f8fb5c256a70b4aabec3c1c8c42f1fae"
+ integrity sha512-xMwL9id1bHn/UfNGFEMFwlULOprQUEOg6vhqSfr6oKxPFB0oSh0zhGq/9/tPSE+cyij2+RW6H8+0Ke4xsPdZ7Q==
+
p-finally@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/p-finally/-/p-finally-1.0.0.tgz#3fbcfb15b899a44123b34b6dcc18b724336a2cae"
integrity sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=
+p-is-promise@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/p-is-promise/-/p-is-promise-1.1.0.tgz#9c9456989e9f6588017b0434d56097675c3da05e"
+ integrity sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=
+
p-limit@^1.1.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-1.3.0.tgz#b86bd5f0c25690911c7590fcbfc2010d54b3ccb8"
@@ -8659,6 +9904,13 @@ p-map@^2.0.0:
resolved "https://registry.yarnpkg.com/p-map/-/p-map-2.0.0.tgz#be18c5a5adeb8e156460651421aceca56c213a50"
integrity sha512-GO107XdrSUmtHxVoi60qc9tUl/KkNKm+X2CF4P9amalpGxv5YqVPJNfSb0wcA+syCopkZvYYIzW8OVTQW59x/w==
+p-timeout@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/p-timeout/-/p-timeout-2.0.1.tgz#d8dd1979595d2dc0139e1fe46b8b646cb3cdf038"
+ integrity sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==
+ dependencies:
+ p-finally "^1.0.0"
+
p-try@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/p-try/-/p-try-1.0.0.tgz#cbc79cdbaf8fd4228e13f621f2b1a237c1b207b3"
@@ -8727,6 +9979,11 @@ parse-passwd@^1.0.0:
resolved "https://registry.yarnpkg.com/parse-passwd/-/parse-passwd-1.0.0.tgz#6d5b934a456993b23d37f40a382d6f1666a8e5c6"
integrity sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=
+parse5@5.1.0:
+ version "5.1.0"
+ resolved "https://registry.yarnpkg.com/parse5/-/parse5-5.1.0.tgz#c59341c9723f414c452975564c7c00a68d58acd2"
+ integrity sha512-fxNG2sQjHvlVAYmzBZS9YlDp6PTSSDwa98vkD4QgVDDCAo84z5X1t5XyJQ62ImdLXx5NdIIfihey6xpum9/gRQ==
+
parseqs@0.0.5:
version "0.0.5"
resolved "https://registry.yarnpkg.com/parseqs/-/parseqs-0.0.5.tgz#d5208a3738e46766e291ba2ea173684921a8b89d"
@@ -8746,22 +10003,20 @@ parseurl@~1.3.2:
resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.2.tgz#fc289d4ed8993119460c156253262cdc8de65bf3"
integrity sha1-/CidTtiZMRlGDBViUyYs3I3mW/M=
+parseurl@~1.3.3:
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/parseurl/-/parseurl-1.3.3.tgz#9da19e7bee8d12dff0513ed5b76957793bc2e8d4"
+ integrity sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==
+
pascalcase@^0.1.1:
version "0.1.1"
resolved "https://registry.yarnpkg.com/pascalcase/-/pascalcase-0.1.1.tgz#b363e55e8006ca6fe21784d2db22bd15d7917f14"
integrity sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=
-passwd-user@^1.2.1:
- version "1.2.1"
- resolved "https://registry.yarnpkg.com/passwd-user/-/passwd-user-1.2.1.tgz#a01a5dc639ef007dc56364b8178569080ad3a7b8"
- integrity sha1-oBpdxjnvAH3FY2S4F4VpCArTp7g=
- dependencies:
- exec-file-sync "^2.0.0"
-
-path-browserify@0.0.0:
- version "0.0.0"
- resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.0.tgz#a0b870729aae214005b7d5032ec2cbbb0fb4451a"
- integrity sha1-oLhwcpquIUAFt9UDLsLLuw+0RRo=
+path-browserify@0.0.1:
+ version "0.0.1"
+ resolved "https://registry.yarnpkg.com/path-browserify/-/path-browserify-0.0.1.tgz#e6c4ddd7ed3aa27c68a20cc4e50e1a4ee83bbc4a"
+ integrity sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==
path-dirname@^1.0.0:
version "1.0.2"
@@ -8780,7 +10035,7 @@ path-exists@^3.0.0:
resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-3.0.0.tgz#ce0ebeaa5f78cb18925ea7d810d7b59b010fd515"
integrity sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=
-path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
+path-is-absolute@1.0.1, path-is-absolute@^1.0.0, path-is-absolute@^1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f"
integrity sha1-F0uSaHNVNP+8es5r9TpanhtcX18=
@@ -8795,7 +10050,7 @@ path-key@^2.0.0, path-key@^2.0.1:
resolved "https://registry.yarnpkg.com/path-key/-/path-key-2.0.1.tgz#411cadb574c5a140d3a4b1910d40d80cc9f40b40"
integrity sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=
-path-parse@^1.0.5, path-parse@^1.0.6:
+path-parse@^1.0.6:
version "1.0.6"
resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c"
integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==
@@ -8909,10 +10164,15 @@ please-upgrade-node@^3.0.2, please-upgrade-node@^3.1.1:
dependencies:
semver-compare "^1.0.0"
-portfinder@^1.0.15:
- version "1.0.20"
- resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.20.tgz#bea68632e54b2e13ab7b0c4775e9b41bf270e44a"
- integrity sha512-Yxe4mTyDzTd59PZJY4ojZR8F+E5e97iq2ZOHPz3HDgSvYC5siNad2tLooQ5y5QHyQhc3xVqvyk/eNA3wuoa7Sw==
+pn@^1.1.0:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/pn/-/pn-1.1.0.tgz#e2f4cef0e219f463c179ab37463e4e1ecdccbafb"
+ integrity sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==
+
+portfinder@^1.0.20:
+ version "1.0.24"
+ resolved "https://registry.yarnpkg.com/portfinder/-/portfinder-1.0.24.tgz#11efbc6865f12f37624b6531ead1d809ed965cfa"
+ integrity sha512-ekRl7zD2qxYndYflwiryJwMioBI7LI7rVXg3EnLK3sjkouT5eOuhS3gS255XxBksa30VG8UPZYZCdgfGOfkSUg==
dependencies:
async "^1.5.2"
debug "^2.2.0"
@@ -8928,19 +10188,24 @@ prelude-ls@~1.1.2:
resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.1.2.tgz#21932a549f5e52ffd9a827f570e04be62a97da54"
integrity sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=
-pretender@2.1.1:
- version "2.1.1"
- resolved "https://registry.yarnpkg.com/pretender/-/pretender-2.1.1.tgz#5085f0a1272c31d5b57c488386f69e6ca207cb35"
- integrity sha512-IkidsJzaroAanw3I43tKCFm2xCpurkQr9aPXv5/jpN+LfCwDaeI8rngVWtQZTx4qqbhc5zJspnLHJ4N/25KvDQ==
+prepend-http@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/prepend-http/-/prepend-http-2.0.0.tgz#e92434bfa5ea8c19f41cdfd401d741a3c819d897"
+ integrity sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=
+
+pretender@3.0.2, pretender@^3.0.1:
+ version "3.0.2"
+ resolved "https://registry.yarnpkg.com/pretender/-/pretender-3.0.2.tgz#1e9123914c4e4bd1b553ca78a401120d300d265f"
+ integrity sha512-6gIDHUaJKRZv7ZgP3CsKicvxtBB3brBr2LWKvJYvEyZRicG9JV2SKokK2TIK0b4Zz9+4C79y57MZHpqUjvJqDg==
dependencies:
- "@xg-wang/whatwg-fetch" "^3.0.0"
fake-xml-http-request "^2.0.0"
route-recognizer "^0.3.3"
+ whatwg-fetch "^3.0.0"
prettier@^1.4.4:
- version "1.16.4"
- resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.16.4.tgz#73e37e73e018ad2db9c76742e2647e21790c9717"
- integrity sha512-ZzWuos7TI5CKUeQAtFd6Zhm2s6EpAD/ZLApIhsF9pRvRtM1RFo61dM/4MSRUA0SuLugA/zgrZD8m0BaY46Og7g==
+ version "1.18.2"
+ resolved "https://registry.yarnpkg.com/prettier/-/prettier-1.18.2.tgz#6823e7c5900017b4bd3acf46fe9ac4b4d7bda9ea"
+ integrity sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw==
pretty-ms@^3.1.0:
version "3.2.0"
@@ -8960,9 +10225,9 @@ private@^0.1.6, private@^0.1.8, private@~0.1.5:
integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==
process-nextick-args@~2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.0.tgz#a37d732f4271b4ab1ad070d35508e8290788ffaa"
- integrity sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2"
+ integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==
process-relative-require@^1.0.0:
version "1.0.0"
@@ -8993,6 +10258,15 @@ promise-map-series@^0.2.1, promise-map-series@^0.2.3:
dependencies:
rsvp "^3.0.14"
+promise.prototype.finally@^3.1.0:
+ version "3.1.0"
+ resolved "https://registry.yarnpkg.com/promise.prototype.finally/-/promise.prototype.finally-3.1.0.tgz#66f161b1643636e50e7cf201dc1b84a857f3864e"
+ integrity sha512-7p/K2f6dI+dM8yjRQEGrTQs5hTQixUAdOGpMEA3+pVxpX5oHKRSKAXyLw9Q9HUWDTdwtoo39dSHGQtN90HcEwQ==
+ dependencies:
+ define-properties "^1.1.2"
+ es-abstract "^1.9.0"
+ function-bind "^1.1.1"
+
property-expr@^1.5.0:
version "1.5.1"
resolved "https://registry.yarnpkg.com/property-expr/-/property-expr-1.5.1.tgz#22e8706894a0c8e28d58735804f6ba3a3673314f"
@@ -9006,6 +10280,14 @@ proxy-addr@~2.0.4:
forwarded "~0.1.2"
ipaddr.js "1.8.0"
+proxy-addr@~2.0.5:
+ version "2.0.5"
+ resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.5.tgz#34cbd64a2d81f4b1fd21e76f9f06c8a45299ee34"
+ integrity sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ==
+ dependencies:
+ forwarded "~0.1.2"
+ ipaddr.js "1.9.0"
+
prr@~1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/prr/-/prr-1.0.1.tgz#d3fc114ba06995a45ec6893f484ceb1d78f5f476"
@@ -9021,6 +10303,11 @@ psl@^1.1.24:
resolved "https://registry.yarnpkg.com/psl/-/psl-1.1.31.tgz#e9aa86d0101b5b105cbe93ac6b784cd547276184"
integrity sha512-/6pt4+C+T+wZUieKR620OpzN/LlnNKuWjy1iFLQ/UG35JqHlR/89MP1d96dUfkf6Dne3TuLQzOYEYshJ+Hx8mw==
+psl@^1.1.28:
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/psl/-/psl-1.3.0.tgz#e1ebf6a3b5564fa8376f3da2275da76d875ca1bd"
+ integrity sha512-avHdspHO+9rQTLbv1RO+MPYeP/SzsCoxofjVnHanETfQhTJrmB0HlDoW+EiN/R+C0BZ+gERab9NY0lPN2TxNag==
+
public-encrypt@^4.0.0:
version "4.0.3"
resolved "https://registry.yarnpkg.com/public-encrypt/-/public-encrypt-4.0.3.tgz#4fcc9d77a07e48ba7527e7cbe0de33d0701331e0"
@@ -9068,7 +10355,7 @@ punycode@^1.2.4, punycode@^1.4.1:
resolved "https://registry.yarnpkg.com/punycode/-/punycode-1.4.1.tgz#c0d5a63b2718800ad8e1eb0fa5269c84dd41845e"
integrity sha1-wNWmOycYgArY4esPpSachN1BhF4=
-punycode@^2.1.0:
+punycode@^2.1.0, punycode@^2.1.1:
version "2.1.1"
resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.1.1.tgz#b58b010ac40c22c5657616c8d2c2c02c7bf479ec"
integrity sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==
@@ -9083,12 +10370,12 @@ qs@6.5.2, qs@~6.5.2:
resolved "https://registry.yarnpkg.com/qs/-/qs-6.5.2.tgz#cb3ae806e8740444584ef154ce8ee98d403f3e36"
integrity sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==
-qs@^6.2.0, qs@^6.4.0:
+qs@6.7.0, qs@^6.2.0, qs@^6.4.0:
version "6.7.0"
resolved "https://registry.yarnpkg.com/qs/-/qs-6.7.0.tgz#41dc1a015e3d581f1621776be31afb2876a9b1bc"
integrity sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==
-query-string@^5.0.0:
+query-string@^5.0.0, query-string@^5.0.1:
version "5.1.1"
resolved "https://registry.yarnpkg.com/query-string/-/query-string-5.1.1.tgz#a78c012b71c17e05f2e3fa2319dd330682efb3cb"
integrity sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==
@@ -9124,18 +10411,16 @@ qunit-dom@^0.9.0:
broccoli-funnel "^2.0.2"
broccoli-merge-trees "^3.0.1"
-qunit@~2.6.0:
- version "2.6.2"
- resolved "https://registry.yarnpkg.com/qunit/-/qunit-2.6.2.tgz#551210c5cf857258a4fe39a7fe15d9e14dfef22c"
- integrity sha512-PHbKulmd4rrDhFto7iHicIstDTX7oMRvAcI7loHstvU8J7AOGwzcchONmy+EG4KU8HDk0K90o7vO0GhlYyKlOg==
+qunit@^2.9.2:
+ version "2.9.2"
+ resolved "https://registry.yarnpkg.com/qunit/-/qunit-2.9.2.tgz#97919440c9c0ae838bcd3c33a2ee42f35c5ef4a0"
+ integrity sha512-wTOYHnioWHcx5wa85Wl15IE7D6zTZe2CQlsodS14yj7s2FZ3MviRnQluspBZsueIDEO7doiuzKlv05yfky1R7w==
dependencies:
commander "2.12.2"
- exists-stat "1.0.0"
- findup-sync "2.0.0"
js-reporters "1.2.1"
- resolve "1.5.0"
- sane "^2.5.2"
- walk-sync "0.3.2"
+ minimatch "3.0.4"
+ node-watch "0.6.0"
+ resolve "1.9.0"
randombytes@^2.0.0, randombytes@^2.0.1, randombytes@^2.0.5:
version "2.1.0"
@@ -9157,6 +10442,11 @@ range-parser@~1.2.0:
resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.0.tgz#f49be6b487894ddc40dcc94a322f611092e00d5e"
integrity sha1-9JvmtIeJTdxA3MlKMi9hEJLgDV4=
+range-parser@~1.2.1:
+ version "1.2.1"
+ resolved "https://registry.yarnpkg.com/range-parser/-/range-parser-1.2.1.tgz#3cf37023d199e1c24d1a55b84800c2f3e6468031"
+ integrity sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==
+
raw-body@2.3.3:
version "2.3.3"
resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.3.3.tgz#1b324ece6b5706e153855bc1148c65bb7f6ea0c3"
@@ -9167,6 +10457,16 @@ raw-body@2.3.3:
iconv-lite "0.4.23"
unpipe "1.0.0"
+raw-body@2.4.0:
+ version "2.4.0"
+ resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-2.4.0.tgz#a1ce6fb9c9bc356ca52e89256ab59059e13d0332"
+ integrity sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==
+ dependencies:
+ bytes "3.1.0"
+ http-errors "1.7.2"
+ iconv-lite "0.4.24"
+ unpipe "1.0.0"
+
raw-body@~1.1.0:
version "1.1.7"
resolved "https://registry.yarnpkg.com/raw-body/-/raw-body-1.1.7.tgz#1d027c2bfa116acc6623bca8f00016572a87d425"
@@ -9224,6 +10524,15 @@ read-pkg@^4.0.1:
string_decoder "~1.1.1"
util-deprecate "~1.0.1"
+"readable-stream@2 || 3":
+ version "3.4.0"
+ resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-3.4.0.tgz#a51c26754658e0a3c21dbf59163bd45ba6f447fc"
+ integrity sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ==
+ dependencies:
+ inherits "^2.0.3"
+ string_decoder "^1.1.1"
+ util-deprecate "^1.0.1"
+
readable-stream@~1.0.2:
version "1.0.34"
resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-1.0.34.tgz#125820e34bc842d2f2aaafafe4c2916ee32c157c"
@@ -9279,9 +10588,9 @@ redeyed@~1.0.0:
esprima "~3.0.0"
regenerate-unicode-properties@^8.0.2:
- version "8.0.2"
- resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.0.2.tgz#7b38faa296252376d363558cfbda90c9ce709662"
- integrity sha512-SbA/iNrBUf6Pv2zU8Ekv1Qbhv92yxL4hiDa2siuxs4KKn4oOoMDHXjAf7+Nz9qinUQ46B1LcWEi/PhJfPWpZWQ==
+ version "8.1.0"
+ resolved "https://registry.yarnpkg.com/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz#ef51e0f0ea4ad424b77bf7cb41f3e015c70a3f0e"
+ integrity sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA==
dependencies:
regenerate "^1.4.0"
@@ -9324,10 +10633,10 @@ regenerator-transform@^0.10.0:
babel-types "^6.19.0"
private "^0.1.6"
-regenerator-transform@^0.13.4:
- version "0.13.4"
- resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.13.4.tgz#18f6763cf1382c69c36df76c6ce122cc694284fb"
- integrity sha512-T0QMBjK3J0MtxjPmdIMXm72Wvj2Abb0Bd4HADdfijwMdoIsyQZ6fWC7kDFhk2YinBBEMZDL7Y7wh0J1sGx3S4A==
+regenerator-transform@^0.14.0:
+ version "0.14.0"
+ resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.14.0.tgz#2ca9aaf7a2c239dd32e4761218425b8c7a86ecaf"
+ integrity sha512-rtOelq4Cawlbmq9xuMR5gdFmv7ku/sFoB7sRiywx7aq53bc52b4j6zvH7Te1Vt/X2YveDKnCGUbioieU7FEL3w==
dependencies:
private "^0.1.6"
@@ -9339,10 +10648,10 @@ regex-not@^1.0.0, regex-not@^1.0.2:
extend-shallow "^3.0.2"
safe-regex "^1.1.0"
-regexp-tree@^0.1.0:
- version "0.1.5"
- resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.5.tgz#7cd71fca17198d04b4176efd79713f2998009397"
- integrity sha512-nUmxvfJyAODw+0B13hj8CFVAxhe7fDEAgJgaotBu3nnR+IgGgZq59YedJP5VYTlkEfqjuK6TuRpnymKdatLZfQ==
+regexp-tree@^0.1.6:
+ version "0.1.11"
+ resolved "https://registry.yarnpkg.com/regexp-tree/-/regexp-tree-0.1.11.tgz#c9c7f00fcf722e0a56c7390983a7a63dd6c272f3"
+ integrity sha512-7/l/DgapVVDzZobwMCCgMlqiqyLFJ0cduo/j+3BcDJIB+yJdsYCfKuI3l/04NV+H/rfNRdPIDbXNZHM9XvQatg==
regexpp@^2.0.1:
version "2.0.1"
@@ -9358,7 +10667,7 @@ regexpu-core@^2.0.0:
regjsgen "^0.2.0"
regjsparser "^0.1.4"
-regexpu-core@^4.1.3, regexpu-core@^4.5.4:
+regexpu-core@^4.5.4:
version "4.5.4"
resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-4.5.4.tgz#080d9d02289aa87fe1667a4f5136bc98a6aebaae"
integrity sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ==
@@ -9416,6 +10725,22 @@ repeating@^2.0.0:
dependencies:
is-finite "^1.0.0"
+request-promise-core@1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/request-promise-core/-/request-promise-core-1.1.2.tgz#339f6aababcafdb31c799ff158700336301d3346"
+ integrity sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag==
+ dependencies:
+ lodash "^4.17.11"
+
+request-promise-native@^1.0.5:
+ version "1.0.7"
+ resolved "https://registry.yarnpkg.com/request-promise-native/-/request-promise-native-1.0.7.tgz#a49868a624bdea5069f1251d0a836e0d89aa2c59"
+ integrity sha512-rIMnbBdgNViL37nZ1b3L/VfPOpSi0TqVDQPAvO6U14lMzOLrt5nilxCQqtDKhZeDiW0/hkCXGoQjhgJd/tCh6w==
+ dependencies:
+ request-promise-core "1.1.2"
+ stealthy-require "^1.1.1"
+ tough-cookie "^2.3.3"
+
request@^2.87.0, request@^2.88.0:
version "2.88.0"
resolved "https://registry.yarnpkg.com/request/-/request-2.88.0.tgz#9c2fca4f7d35b592efe57c7f0a55e81052124fef"
@@ -9485,40 +10810,61 @@ resolve-from@^4.0.0:
resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6"
integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==
-resolve-package-path@^1.0.11, resolve-package-path@^1.2.6:
- version "1.2.6"
- resolved "https://registry.yarnpkg.com/resolve-package-path/-/resolve-package-path-1.2.6.tgz#48f5d69a5b3a0ea68f7b9c7398459dd4125807c7"
- integrity sha512-He6cGWU74tJ6wLYSKrbvWOfIXf2tUu5RcBWqX/2K9Ju00CncF5WRdCOJQisqCtaULcqIqpLvMtz8ZjfpwlBwqg==
+resolve-package-path@^1.0.11, resolve-package-path@^1.2.2, resolve-package-path@^1.2.6, resolve-package-path@^1.2.7:
+ version "1.2.7"
+ resolved "https://registry.yarnpkg.com/resolve-package-path/-/resolve-package-path-1.2.7.tgz#2a7bc37ad96865e239330e3102c31322847e652e"
+ integrity sha512-fVEKHGeK85bGbVFuwO9o1aU0n3vqQGrezPc51JGu9UTXpFQfWq5qCeKxyaRUSvephs+06c5j5rPq/dzHGEo8+Q==
dependencies:
path-root "^0.1.1"
resolve "^1.10.0"
+resolve-path@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/resolve-path/-/resolve-path-1.4.0.tgz#c4bda9f5efb2fce65247873ab36bb4d834fe16f7"
+ integrity sha1-xL2p9e+y/OZSR4c6s2u02DT+Fvc=
+ dependencies:
+ http-errors "~1.6.2"
+ path-is-absolute "1.0.1"
+
resolve-url@^0.2.1:
version "0.2.1"
resolved "https://registry.yarnpkg.com/resolve-url/-/resolve-url-0.2.1.tgz#2c637fe77c893afd2a663fe21aa9080068e2052a"
integrity sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=
-resolve@1.5.0:
- version "1.5.0"
- resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.5.0.tgz#1f09acce796c9a762579f31b2c1cc4c3cddf9f36"
- integrity sha512-hgoSGrc3pjzAPHNBg+KnFcK2HwlHTs/YrAGUr6qgTVUZmXv1UEXXl0bZNBKMA9fud6lRYFdPGz0xXxycPzmmiw==
+resolve@1.9.0:
+ version "1.9.0"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.9.0.tgz#a14c6fdfa8f92a7df1d996cb7105fa744658ea06"
+ integrity sha512-TZNye00tI67lwYvzxCxHGjwTNlUV70io54/Ed4j6PscB8xVfuBJpRenI/o6dVk0cY0PYTY27AgCoGGxRnYuItQ==
dependencies:
- path-parse "^1.0.5"
+ path-parse "^1.0.6"
-resolve@^1.1.3, resolve@^1.1.7, resolve@^1.10.0, resolve@^1.3.2, resolve@^1.3.3, resolve@^1.4.0, resolve@^1.5.0, resolve@^1.6.0, resolve@^1.7.1, resolve@^1.8.1:
+resolve@^1.1.3, resolve@^1.5.0:
version "1.10.0"
resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.10.0.tgz#3bdaaeaf45cc07f375656dfd2e54ed0810b101ba"
integrity sha512-3sUr9aq5OfSg2S9pNtPA9hL1FVEAjvfOC4leW0SNf/mpnaakz2a9femSd6LqAww2RaFctwyf1lCqnTHuF1rxDg==
dependencies:
path-parse "^1.0.6"
-restore-cursor@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/restore-cursor/-/restore-cursor-1.0.1.tgz#34661f46886327fed2991479152252df92daa541"
- integrity sha1-NGYfRohjJ/7SmRR5FSJS35LapUE=
+resolve@^1.1.7, resolve@^1.10.0, resolve@^1.11.1, resolve@^1.3.2, resolve@^1.3.3, resolve@^1.4.0, resolve@^1.7.1, resolve@^1.8.1:
+ version "1.11.1"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.11.1.tgz#ea10d8110376982fef578df8fc30b9ac30a07a3e"
+ integrity sha512-vIpgF6wfuJOZI7KKKSP+HmiKggadPQAdsp5HiC1mvqnfp0gF1vdwgBWZIdrVft9pgqoMFQN+R7BSWZiBxx+BBw==
dependencies:
- exit-hook "^1.0.0"
- onetime "^1.0.0"
+ path-parse "^1.0.6"
+
+resolve@^1.10.1:
+ version "1.12.0"
+ resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6"
+ integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==
+ dependencies:
+ path-parse "^1.0.6"
+
+responselike@1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/responselike/-/responselike-1.0.2.tgz#918720ef3b631c5642be068f15ade5a46f4ba1e7"
+ integrity sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=
+ dependencies:
+ lowercase-keys "^1.0.0"
restore-cursor@^2.0.0:
version "2.0.0"
@@ -9533,18 +10879,13 @@ ret@~0.1.10:
resolved "https://registry.yarnpkg.com/ret/-/ret-0.1.15.tgz#b8a4825d5bdb1fc3f6f53c2bc33f81388681c7bc"
integrity sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==
-rimraf@2, rimraf@2.6.3, rimraf@^2.2.8, rimraf@^2.3.4, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@^2.5.3, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2:
+rimraf@2, rimraf@2.6.3, rimraf@^2.2.8, rimraf@^2.3.4, rimraf@^2.4.3, rimraf@^2.4.4, rimraf@^2.5.3, rimraf@^2.5.4, rimraf@^2.6.1, rimraf@^2.6.2, rimraf@^2.6.3, rimraf@~2.6.2:
version "2.6.3"
resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.6.3.tgz#b2d104fe0d8fb27cf9e0a1cda8262dd3833c6cab"
integrity sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==
dependencies:
glob "^7.1.3"
-rimraf@~2.2.6:
- version "2.2.8"
- resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-2.2.8.tgz#e439be2aaee327321952730f99a8929e4fc50582"
- integrity sha1-5Dm+Kq7jJzIZUnMPmaiSnk/FBYI=
-
ripemd160@^2.0.0, ripemd160@^2.0.1:
version "2.0.2"
resolved "https://registry.yarnpkg.com/ripemd160/-/ripemd160-2.0.2.tgz#a1c1a6f624751577ba5d07914cbc92850585890c"
@@ -9554,12 +10895,18 @@ ripemd160@^2.0.0, ripemd160@^2.0.1:
inherits "^2.0.1"
rollup-pluginutils@^2.0.1:
- version "2.5.0"
- resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.5.0.tgz#23be0f05ac3972ea7b08fc7870cb91fde5b23a09"
- integrity sha512-9Muh1H+XB5f5ONmKMayUoTYR1EZwHbwJJ9oZLrKT5yuTf/RLIQ5mYIGsrERquVucJmjmaAW0Y7+6Qo1Ep+5w3Q==
+ version "2.8.1"
+ resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.1.tgz#8fa6dd0697344938ef26c2c09d2488ce9e33ce97"
+ integrity sha512-J5oAoysWar6GuZo0s+3bZ6sVZAC0pfqKz68De7ZgDi5z63jOVZn1uJL/+z1jeKHNbGII8kAyHF5q8LnxSX5lQg==
dependencies:
- estree-walker "^0.6.0"
- micromatch "^3.1.10"
+ estree-walker "^0.6.1"
+
+rollup-pluginutils@^2.8.1:
+ version "2.8.2"
+ resolved "https://registry.yarnpkg.com/rollup-pluginutils/-/rollup-pluginutils-2.8.2.tgz#72f2af0748b592364dbd3389e600e5a9444a351e"
+ integrity sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==
+ dependencies:
+ estree-walker "^0.6.1"
rollup@^0.57.1:
version "0.57.1"
@@ -9578,21 +10925,35 @@ rollup@^0.57.1:
signal-exit "^3.0.2"
sourcemap-codec "^1.4.1"
-route-recognizer@^0.3.3, route-recognizer@^0.3.4:
+rollup@^1.12.0:
+ version "1.22.0"
+ resolved "https://registry.yarnpkg.com/rollup/-/rollup-1.22.0.tgz#a5b2672c0eebe9f2b6454220f785dbc09b64b4bc"
+ integrity sha512-x4l4ZrV/Mr/x/jvFTmwROdEAhbZjx16yDRTVSKWh/i4oJDuW2dVEbECT853mybYCz7BAitU8ElGlhx7dNjw3qQ==
+ dependencies:
+ "@types/estree" "*"
+ "@types/node" "*"
+ acorn "^7.1.0"
+
+route-recognizer@^0.3.3:
version "0.3.4"
resolved "https://registry.yarnpkg.com/route-recognizer/-/route-recognizer-0.3.4.tgz#39ab1ffbce1c59e6d2bdca416f0932611e4f3ca3"
integrity sha512-2+MhsfPhvauN1O8KaXpXAOfR/fwe8dnUXVM+xw7yt40lJRfPVQxV6yryZm0cgRvAj5fMF/mdRZbL2ptwbs5i2g==
-rsvp@^3.0.14, rsvp@^3.0.17, rsvp@^3.0.18, rsvp@^3.0.21, rsvp@^3.0.6, rsvp@^3.1.0, rsvp@^3.3.3:
+rsvp@^3.0.14, rsvp@^3.0.17, rsvp@^3.0.18, rsvp@^3.0.21, rsvp@^3.0.6, rsvp@^3.1.0:
version "3.6.2"
resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.6.2.tgz#2e96491599a96cde1b515d5674a8f7a91452926a"
integrity sha512-OfWGQTb9vnwRjwtA2QwpG2ICclHC3pgXZO5xt8H2EfgDquO0qVdSb5T88L4qJVAEugbS56pAuV4XZM58UX8ulw==
-rsvp@^4.6.1, rsvp@^4.7.0, rsvp@^4.8.2, rsvp@^4.8.3, rsvp@^4.8.4:
+rsvp@^4.6.1, rsvp@^4.8.3:
version "4.8.4"
resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.4.tgz#b50e6b34583f3dd89329a2f23a8a2be072845911"
integrity sha512-6FomvYPfs+Jy9TfXmBpBuMWNH94SgCsZmJKcanySzgNNP6LjWxBvyLTa9KaMfDDM5oxRfrKDB0r/qeRsLwnBfA==
+rsvp@^4.7.0, rsvp@^4.8.1, rsvp@^4.8.2, rsvp@^4.8.4, rsvp@^4.8.5:
+ version "4.8.5"
+ resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-4.8.5.tgz#c8f155311d167f68f21e168df71ec5b083113734"
+ integrity sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==
+
rsvp@~3.2.1:
version "3.2.1"
resolved "https://registry.yarnpkg.com/rsvp/-/rsvp-3.2.1.tgz#07cb4a5df25add9e826ebc67dcc9fd89db27d84a"
@@ -9629,11 +10990,6 @@ rx-lite@*, rx-lite@^4.0.8:
resolved "https://registry.yarnpkg.com/rx-lite/-/rx-lite-4.0.8.tgz#0b1e11af8bc44836f04a6407e92da42467b79444"
integrity sha1-Cx4Rr4vESDbwSmQH6S2kJGe3lEQ=
-rx@^4.1.0:
- version "4.1.0"
- resolved "https://registry.yarnpkg.com/rx/-/rx-4.1.0.tgz#a5f13ff79ef3b740fe30aa803fb09f98805d4782"
- integrity sha1-pfE/957zt0D+MKqAP7CfmIBdR4I=
-
rxjs@^6.3.3, rxjs@^6.4.0:
version "6.4.0"
resolved "https://registry.yarnpkg.com/rxjs/-/rxjs-6.4.0.tgz#f3bb0fe7bda7fb69deac0c16f17b50b0b8790504"
@@ -9641,11 +10997,16 @@ rxjs@^6.3.3, rxjs@^6.4.0:
dependencies:
tslib "^1.9.0"
-safe-buffer@5.1.2, safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
+safe-buffer@5.1.2, safe-buffer@~5.1.0, safe-buffer@~5.1.1:
version "5.1.2"
resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d"
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
+safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.1.1, safe-buffer@^5.1.2:
+ version "5.2.0"
+ resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.2.0.tgz#b74daec49b1148f88c64b68d49b1e815c1f2f519"
+ integrity sha512-fZEwUGbVl7kouZs1jCdMLdt95hdIv0ZeHg6L7qPeciMZhZ+/gdesW4wgTARkrFWEpspjEATAzUGPG8N2jJiwbg==
+
safe-json-parse@~1.0.1:
version "1.0.1"
resolved "https://registry.yarnpkg.com/safe-json-parse/-/safe-json-parse-1.0.1.tgz#3e76723e38dfdda13c9b1d29a1e07ffee4b30b57"
@@ -9663,38 +11024,20 @@ safe-regex@^1.1.0:
resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a"
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
-sane@^2.4.1, sane@^2.5.2:
- version "2.5.2"
- resolved "https://registry.yarnpkg.com/sane/-/sane-2.5.2.tgz#b4dc1861c21b427e929507a3e751e2a2cb8ab3fa"
- integrity sha1-tNwYYcIbQn6SlQej51HiosuKs/o=
+sane@^4.0.0, sane@^4.1.0:
+ version "4.1.0"
+ resolved "https://registry.yarnpkg.com/sane/-/sane-4.1.0.tgz#ed881fd922733a6c461bc189dc2b6c006f3ffded"
+ integrity sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==
dependencies:
+ "@cnakazawa/watch" "^1.0.3"
anymatch "^2.0.0"
- capture-exit "^1.2.0"
- exec-sh "^0.2.0"
- fb-watchman "^2.0.0"
- micromatch "^3.1.4"
- minimist "^1.1.1"
- walker "~1.0.5"
- watch "~0.18.0"
- optionalDependencies:
- fsevents "^1.2.3"
-
-sane@^3.0.0:
- version "3.1.0"
- resolved "https://registry.yarnpkg.com/sane/-/sane-3.1.0.tgz#995193b7dc1445ef1fe41ddfca2faf9f111854c6"
- integrity sha512-G5GClRRxT1cELXfdAq7UKtUsv8q/ZC5k8lQGmjEm4HcAl3HzBy68iglyNCmw4+0tiXPCBZntslHlRhbnsSws+Q==
- dependencies:
- anymatch "^2.0.0"
- capture-exit "^1.2.0"
- exec-sh "^0.2.0"
+ capture-exit "^2.0.0"
+ exec-sh "^0.3.2"
execa "^1.0.0"
fb-watchman "^2.0.0"
micromatch "^3.1.4"
minimist "^1.1.1"
walker "~1.0.5"
- watch "~0.18.0"
- optionalDependencies:
- fsevents "^1.2.3"
sass-graph@^2.2.4:
version "2.2.4"
@@ -9718,6 +11061,13 @@ sax@^1.2.4, sax@~1.2.4:
resolved "https://registry.yarnpkg.com/sax/-/sax-1.2.4.tgz#2816234e2378bddc4e5354fab5caa895df7100d9"
integrity sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==
+saxes@^3.1.3:
+ version "3.1.11"
+ resolved "https://registry.yarnpkg.com/saxes/-/saxes-3.1.11.tgz#d59d1fd332ec92ad98a2e0b2ee644702384b1c5b"
+ integrity sha512-Ydydq3zC+WYDJK1+gRxRapLIED9PWeSuuS41wqyoRmzvhhh9nc+QQrVMKJYzJFULazeGhzSV0QleN2wD3boh2g==
+ dependencies:
+ xmlchars "^2.1.1"
+
schema-utils@^0.4.4:
version "0.4.7"
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-0.4.7.tgz#ba74f597d2be2ea880131746ee17d0a093c68187"
@@ -9758,6 +11108,16 @@ semver-compare@^1.0.0:
resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b"
integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==
+semver@^6.0.0, semver@^6.1.1:
+ version "6.2.0"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-6.2.0.tgz#4d813d9590aaf8a9192693d6c85b9344de5901db"
+ integrity sha512-jdFC1VdUGT/2Scgbimf7FSx9iJLXoqfglSF+gJeuNWVpiE37OIbc1jywR/GJyFdz3mnkz2/id0L0J/cr0izR5A==
+
+semver@^6.1.0:
+ version "6.3.0"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d"
+ integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==
+
semver@~5.3.0:
version "5.3.0"
resolved "https://registry.yarnpkg.com/semver/-/semver-5.3.0.tgz#9b2ce5d3de02d17c6012ad326aa6b4d0cf54f94f"
@@ -9782,10 +11142,29 @@ send@0.16.2:
range-parser "~1.2.0"
statuses "~1.4.0"
-serialize-javascript@^1.4.0:
- version "1.6.1"
- resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.6.1.tgz#4d1f697ec49429a847ca6f442a2a755126c4d879"
- integrity sha512-A5MOagrPFga4YaKQSWHryl7AXvbQkEqpw4NNYMTNYUNV51bA8ABHgYFpqKx+YFFrw59xMV1qGH1R4AgoNIVgCw==
+send@0.17.1:
+ version "0.17.1"
+ resolved "https://registry.yarnpkg.com/send/-/send-0.17.1.tgz#c1d8b059f7900f7466dd4938bdc44e11ddb376c8"
+ integrity sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==
+ dependencies:
+ debug "2.6.9"
+ depd "~1.1.2"
+ destroy "~1.0.4"
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ etag "~1.8.1"
+ fresh "0.5.2"
+ http-errors "~1.7.2"
+ mime "1.6.0"
+ ms "2.1.1"
+ on-finished "~2.3.0"
+ range-parser "~1.2.1"
+ statuses "~1.5.0"
+
+serialize-javascript@^1.7.0:
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.7.0.tgz#d6e0dfb2a3832a8c94468e6eb1db97e55a192a65"
+ integrity sha512-ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA==
serve-static@1.13.2:
version "1.13.2"
@@ -9797,25 +11176,25 @@ serve-static@1.13.2:
parseurl "~1.3.2"
send "0.16.2"
+serve-static@1.14.1:
+ version "1.14.1"
+ resolved "https://registry.yarnpkg.com/serve-static/-/serve-static-1.14.1.tgz#666e636dc4f010f7ef29970a88a674320898b2f9"
+ integrity sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==
+ dependencies:
+ encodeurl "~1.0.2"
+ escape-html "~1.0.3"
+ parseurl "~1.3.3"
+ send "0.17.1"
+
set-blocking@^2.0.0, set-blocking@~2.0.0:
version "2.0.0"
resolved "https://registry.yarnpkg.com/set-blocking/-/set-blocking-2.0.0.tgz#045f9782d011ae9a6803ddd382b24392b3d890f7"
integrity sha1-BF+XgtARrppoA93TgrJDkrPYkPc=
-set-value@^0.4.3:
- version "0.4.3"
- resolved "https://registry.yarnpkg.com/set-value/-/set-value-0.4.3.tgz#7db08f9d3d22dc7f78e53af3c3bf4666ecdfccf1"
- integrity sha1-fbCPnT0i3H945Trzw79GZuzfzPE=
- dependencies:
- extend-shallow "^2.0.1"
- is-extendable "^0.1.1"
- is-plain-object "^2.0.1"
- to-object-path "^0.3.0"
-
-set-value@^2.0.0:
- version "2.0.0"
- resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.0.tgz#71ae4a88f0feefbbf52d1ea604f3fb315ebb6274"
- integrity sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==
+set-value@^2.0.0, set-value@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/set-value/-/set-value-2.0.1.tgz#a18d40530e6f07de4228c7defe4227af8cad005b"
+ integrity sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==
dependencies:
extend-shallow "^2.0.1"
is-extendable "^0.1.1"
@@ -9832,6 +11211,11 @@ setprototypeof@1.1.0:
resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.0.tgz#d0bd85536887b6fe7c0d818cb962d9d91c54e656"
integrity sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==
+setprototypeof@1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/setprototypeof/-/setprototypeof-1.1.1.tgz#7e95acb24aa92f5885e0abef5ba131330d4ae683"
+ integrity sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==
+
sha.js@^2.4.0, sha.js@^2.4.8:
version "2.4.11"
resolved "https://registry.yarnpkg.com/sha.js/-/sha.js-2.4.11.tgz#37a5cf0b81ecbc6943de109ba2960d1b26584ae7"
@@ -9869,7 +11253,7 @@ signal-exit@^3.0.0, signal-exit@^3.0.2:
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
integrity sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=
-silent-error@^1.0.0, silent-error@^1.0.1, silent-error@^1.1.0:
+silent-error@^1.0.0, silent-error@^1.0.1, silent-error@^1.1.0, silent-error@^1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/silent-error/-/silent-error-1.1.1.tgz#f72af5b0d73682a2ba1778b7e32cd8aa7c2d8662"
integrity sha512-n4iEKyNcg4v6/jpb3c0/iyH2G1nzUNl7Gpqtn/mHIJK9S/q/7MCfoO4rwVOoO59qPFIc0hVHvMbiOJ0NdtxKKw==
@@ -9888,20 +11272,18 @@ simple-html-tokenizer@^0.5.6:
resolved "https://registry.yarnpkg.com/simple-html-tokenizer/-/simple-html-tokenizer-0.5.7.tgz#8eca336ecfbe2b3c6166cbb31b2682088de79f40"
integrity sha512-APW9iYbkJ5cijjX4Ljhf3VG8SwYPUJT5gZrwci/wieMabQxWFiV5VwsrP5c6GMRvXKEQMGkAB1d9dvW66dTqpg==
-sinon@^6.0.1:
- version "6.3.5"
- resolved "https://registry.yarnpkg.com/sinon/-/sinon-6.3.5.tgz#0f6d6a5b4ebaad1f6e8e019395542d1d02c144a0"
- integrity sha512-xgoZ2gKjyVRcF08RrIQc+srnSyY1JDJtxu3Nsz07j1ffjgXoY6uPLf/qja6nDBZgzYYEovVkFryw2+KiZz11xQ==
+sinon@^7.3.2:
+ version "7.3.2"
+ resolved "https://registry.yarnpkg.com/sinon/-/sinon-7.3.2.tgz#82dba3a6d85f6d2181e1eca2c10d8657c2161f28"
+ integrity sha512-thErC1z64BeyGiPvF8aoSg0LEnptSaWE7YhdWWbWXgelOyThent7uKOnnEh9zBxDbKixtr5dEko+ws1sZMuFMA==
dependencies:
- "@sinonjs/commons" "^1.0.2"
- "@sinonjs/formatio" "^3.0.0"
- "@sinonjs/samsam" "^2.1.2"
+ "@sinonjs/commons" "^1.4.0"
+ "@sinonjs/formatio" "^3.2.1"
+ "@sinonjs/samsam" "^3.3.1"
diff "^3.5.0"
- lodash.get "^4.4.2"
- lolex "^2.7.5"
- nise "^1.4.5"
+ lolex "^4.0.1"
+ nise "^1.4.10"
supports-color "^5.5.0"
- type-detect "^4.0.8"
slash@^1.0.0:
version "1.0.0"
@@ -10003,12 +11385,19 @@ socket.io@^2.1.0:
socket.io-client "2.2.0"
socket.io-parser "~3.3.0"
+sort-keys@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/sort-keys/-/sort-keys-2.0.0.tgz#658535584861ec97d730d6cf41822e1f56684128"
+ integrity sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=
+ dependencies:
+ is-plain-obj "^1.0.0"
+
sort-object-keys@^1.1.2:
version "1.1.2"
resolved "https://registry.yarnpkg.com/sort-object-keys/-/sort-object-keys-1.1.2.tgz#d3a6c48dc2ac97e6bc94367696e03f6d09d37952"
integrity sha1-06bEjcKsl+a8lDZ2luA/bQnTeVI=
-sort-package-json@^1.15.0:
+sort-package-json@^1.22.1:
version "1.22.1"
resolved "https://registry.yarnpkg.com/sort-package-json/-/sort-package-json-1.22.1.tgz#384ce7a098cd13be4109800d5ce2f0cf7826052e"
integrity sha512-uVINQraFQvnlzNHFnQOT4MYy0qonIEzKwhrI2yrTiQjNo5QF4h3ffrnCk7a95QAwoK/RdkO/w8W9tJIcaOWC7g==
@@ -10039,10 +11428,10 @@ source-map-support@^0.4.15:
dependencies:
source-map "^0.5.6"
-source-map-support@~0.5.10:
- version "0.5.11"
- resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.11.tgz#efac2ce0800355d026326a0ca23e162aeac9a4e2"
- integrity sha512-//sajEx/fGL3iw6fltKMdPvy8kL3kJ2O3iuYlRoT3k9Kb4BjOoZ+BZzaNHeuaruSt+Kf3Zk9tnfAQg9/AJqUVQ==
+source-map-support@~0.5.10, source-map-support@~0.5.12:
+ version "0.5.12"
+ resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.12.tgz#b4f3b10d51857a5af0138d3ce8003b201613d599"
+ integrity sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ==
dependencies:
buffer-from "^1.0.0"
source-map "^0.6.0"
@@ -10082,9 +11471,9 @@ source-map@~0.1.x:
amdefine ">=0.0.4"
sourcemap-codec@^1.4.1:
- version "1.4.4"
- resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.4.tgz#c63ea927c029dd6bd9a2b7fa03b3fec02ad56e9f"
- integrity sha512-CYAPYdBu34781kLHkaW3m6b/uUSyMOC2R61gcYMWooeuaGtjof86ZA/8T+qVPPt7np1085CR9hmMGrySwEc8Xg==
+ version "1.4.6"
+ resolved "https://registry.yarnpkg.com/sourcemap-codec/-/sourcemap-codec-1.4.6.tgz#e30a74f0402bad09807640d39e971090a08ce1e9"
+ integrity sha512-1ZooVLYFxC448piVLBbtOxFcXwnymH9oUF8nRd3CuYDVvkRBxRl6pB4Mtas5a4drtL+E8LDgFkQNcgIw6tc8Hg==
sourcemap-validator@^1.1.0:
version "1.1.0"
@@ -10101,14 +11490,6 @@ spawn-args@^0.2.0:
resolved "https://registry.yarnpkg.com/spawn-args/-/spawn-args-0.2.0.tgz#fb7d0bd1d70fd4316bd9e3dec389e65f9d6361bb"
integrity sha1-+30L0dcP1DFr2ePew4nmX51jYbs=
-spawn-sync@^1.0.11, spawn-sync@^1.0.15:
- version "1.0.15"
- resolved "https://registry.yarnpkg.com/spawn-sync/-/spawn-sync-1.0.15.tgz#b00799557eb7fb0c8376c29d44e8a1ea67e57476"
- integrity sha1-sAeZVX63+wyDdsKdROih6mfldHY=
- dependencies:
- concat-stream "^1.4.7"
- os-shim "^0.1.2"
-
spdx-correct@^3.0.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/spdx-correct/-/spdx-correct-3.1.0.tgz#fb83e504445268f154b074e218c87c003cd31df4"
@@ -10179,7 +11560,7 @@ ssri@^6.0.1:
dependencies:
figgy-pudding "^3.5.1"
-stable@~0.1.6:
+stable@^0.1.8:
version "0.1.8"
resolved "https://registry.yarnpkg.com/stable/-/stable-0.1.8.tgz#836eb3c8382fe2936feaf544631017ce7d47a3cf"
integrity sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==
@@ -10189,6 +11570,13 @@ staged-git-files@1.1.2:
resolved "https://registry.yarnpkg.com/staged-git-files/-/staged-git-files-1.1.2.tgz#4326d33886dc9ecfa29a6193bf511ba90a46454b"
integrity sha512-0Eyrk6uXW6tg9PYkhi/V/J4zHp33aNyi2hOCmhFLqLTIhbgqWn5jlSzI+IU0VqrZq6+DbHcabQl/WP6P3BG0QA==
+stagehand@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/stagehand/-/stagehand-1.0.0.tgz#79515e2ad3a02c63f8720c7df9b6077ae14276d9"
+ integrity sha512-zrXl0QixAtSHFyN1iv04xOBgplbT4HgC8T7g+q8ESZbDNi5uZbMtxLukFVXPJ5Nl7zCYvYcrT3Mj24WYCH93hw==
+ dependencies:
+ debug "^4.1.0"
+
static-extend@^0.1.1:
version "0.1.2"
resolved "https://registry.yarnpkg.com/static-extend/-/static-extend-0.1.2.tgz#60809c39cbff55337226fd5e0b520f341f1fb5c6"
@@ -10197,7 +11585,7 @@ static-extend@^0.1.1:
define-property "^0.2.5"
object-copy "^0.1.0"
-"statuses@>= 1.4.0 < 2":
+"statuses@>= 1.4.0 < 2", "statuses@>= 1.5.0 < 2", statuses@~1.5.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/statuses/-/statuses-1.5.0.tgz#161c7dac177659fd9811f43771fa99381478628c"
integrity sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=
@@ -10214,6 +11602,11 @@ stdout-stream@^1.4.0:
dependencies:
readable-stream "^2.0.1"
+stealthy-require@^1.1.1:
+ version "1.1.1"
+ resolved "https://registry.yarnpkg.com/stealthy-require/-/stealthy-require-1.1.1.tgz#35b09875b4ff49f26a777e509b3090a3226bf24b"
+ integrity sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=
+
stream-browserify@^2.0.1:
version "2.0.2"
resolved "https://registry.yarnpkg.com/stream-browserify/-/stream-browserify-2.0.2.tgz#87521d38a44aa7ee91ce1cd2a47df0cb49dd660b"
@@ -10292,7 +11685,7 @@ string_decoder@0.10, string_decoder@~0.10.x:
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-0.10.31.tgz#62e203bc41766c6c28c9fc84301dab1c5310fa94"
integrity sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=
-string_decoder@^1.0.0:
+string_decoder@^1.0.0, string_decoder@^1.1.1:
version "1.2.0"
resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.2.0.tgz#fe86e738b19544afe70469243b2a1ee9240eae8d"
integrity sha512-6YqyX6ZWEYguAxgZzHGL7SsCeGx3V2TtOTqZz1xSTSWnqsbWwbptafNyvf/ACquZUXV3DANr5BDIwNYe1mN42w==
@@ -10329,7 +11722,7 @@ strip-ansi@^4.0.0:
dependencies:
ansi-regex "^3.0.0"
-strip-ansi@^5.0.0, strip-ansi@^5.1.0:
+strip-ansi@^5.0.0, strip-ansi@^5.1.0, strip-ansi@^5.2.0:
version "5.2.0"
resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-5.2.0.tgz#8c9a536feb6afc962bdfa5b104a5091c1ad9c0ae"
integrity sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==
@@ -10389,23 +11782,23 @@ supports-color@^5.3.0, supports-color@^5.5.0:
dependencies:
has-flag "^3.0.0"
-svgo@~1.0.5:
- version "1.0.5"
- resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.0.5.tgz#7040364c062a0538abacff4401cea6a26a7a389a"
- integrity sha512-nYrifviB77aNKDNKKyuay3M9aYiK6Hv5gJVDdjj2ZXTQmI8WZc8+UPLR5IpVlktJfSu3co/4XcWgrgI6seGBPg==
+svgo@~1.2.2:
+ version "1.2.2"
+ resolved "https://registry.yarnpkg.com/svgo/-/svgo-1.2.2.tgz#0253d34eccf2aed4ad4f283e11ee75198f9d7316"
+ integrity sha512-rAfulcwp2D9jjdGu+0CuqlrAUin6bBWrpoqXWwKDZZZJfXcUXQSxLJOFJCQCSA0x0pP2U0TxSlJu2ROq5Bq6qA==
dependencies:
- coa "~2.0.1"
- colors "~1.1.2"
- css-select "~1.3.0-rc0"
- css-select-base-adapter "~0.1.0"
- css-tree "1.0.0-alpha25"
+ chalk "^2.4.1"
+ coa "^2.0.2"
+ css-select "^2.0.0"
+ css-select-base-adapter "^0.1.1"
+ css-tree "1.0.0-alpha.28"
css-url-regex "^1.1.0"
- csso "^3.5.0"
- js-yaml "~3.10.0"
+ csso "^3.5.1"
+ js-yaml "^3.13.1"
mkdirp "~0.5.1"
- object.values "^1.0.4"
+ object.values "^1.1.0"
sax "~1.2.4"
- stable "~0.1.6"
+ stable "^0.1.8"
unquote "~1.1.1"
util.promisify "~1.0.0"
@@ -10414,11 +11807,27 @@ symbol-observable@^1.1.0:
resolved "https://registry.yarnpkg.com/symbol-observable/-/symbol-observable-1.2.0.tgz#c22688aed4eab3cdc2dfeacbb561660560a00804"
integrity sha512-e900nM8RRtGhlV36KGEU9k65K3mPb1WV70OdjfxlG2EAuM1noi/E/BaW/uMhL7bPEssK8QV57vN3esixjUvcXQ==
+symbol-tree@^3.2.2:
+ version "3.2.4"
+ resolved "https://registry.yarnpkg.com/symbol-tree/-/symbol-tree-3.2.4.tgz#430637d248ba77e078883951fb9aa0eed7c63fa2"
+ integrity sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==
+
symlink-or-copy@^1.0.0, symlink-or-copy@^1.0.1, symlink-or-copy@^1.1.8, symlink-or-copy@^1.2.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/symlink-or-copy/-/symlink-or-copy-1.2.0.tgz#5d49108e2ab824a34069b68974486c290020b393"
integrity sha512-W31+GLiBmU/ZR02Ii0mVZICuNEN9daZ63xZMPDsYgPgNjMtg+atqLEGI7PPI936jYSQZxoLb/63xos8Adrx4Eg==
+sync-disk-cache@^1.3.3:
+ version "1.3.3"
+ resolved "https://registry.yarnpkg.com/sync-disk-cache/-/sync-disk-cache-1.3.3.tgz#481933461623fdc2bdf46cfc87872ba215a7e246"
+ integrity sha512-Kp7DFemXDPRUbFW856CKamtX7bJuThZPa2dwnK2RfNqMew7Ah8xDc52SdooNlfN8oydDdDHlBPLsXTrtmA7HKw==
+ dependencies:
+ debug "^2.1.3"
+ heimdalljs "^0.2.3"
+ mkdirp "^0.5.0"
+ rimraf "^2.2.8"
+ username-sync "^1.0.2"
+
synchronous-promise@^2.0.5:
version "2.0.7"
resolved "https://registry.yarnpkg.com/synchronous-promise/-/synchronous-promise-2.0.7.tgz#3574b3d2fae86b145356a4b89103e1577f646fe3"
@@ -10444,9 +11853,9 @@ tap-parser@^7.0.0:
minipass "^2.2.0"
tapable@^1.0.0, tapable@^1.1.0:
- version "1.1.1"
- resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.1.tgz#4d297923c5a72a42360de2ab52dadfaaec00018e"
- integrity sha512-9I2ydhj8Z9veORCw5PRm4u9uebCn0mcCa6scWoNcbZ6dAtoo2618u9UUzxgmsCOreJpqDDuv61LvwofW7hLcBA==
+ version "1.1.3"
+ resolved "https://registry.yarnpkg.com/tapable/-/tapable-1.1.3.tgz#a1fccc06b58db61fd7a45da2da44f5f3a3e67ba2"
+ integrity sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==
tar@^2.0.0:
version "2.2.1"
@@ -10458,41 +11867,42 @@ tar@^2.0.0:
inherits "2"
tar@^4:
- version "4.4.8"
- resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.8.tgz#b19eec3fde2a96e64666df9fdb40c5ca1bc3747d"
- integrity sha512-LzHF64s5chPQQS0IYBn9IN5h3i98c12bo4NCO7e0sGM2llXQ3p2FGC5sdENN4cTW48O915Sh+x+EXx7XW96xYQ==
+ version "4.4.10"
+ resolved "https://registry.yarnpkg.com/tar/-/tar-4.4.10.tgz#946b2810b9a5e0b26140cf78bea6b0b0d689eba1"
+ integrity sha512-g2SVs5QIxvo6OLp0GudTqEf05maawKUxXru104iaayWA09551tFCTI8f1Asb4lPfkBr91k07iL4c11XO3/b0tA==
dependencies:
chownr "^1.1.1"
fs-minipass "^1.2.5"
- minipass "^2.3.4"
- minizlib "^1.1.1"
+ minipass "^2.3.5"
+ minizlib "^1.2.1"
mkdirp "^0.5.0"
safe-buffer "^5.1.2"
- yallist "^3.0.2"
+ yallist "^3.0.3"
-temp@0.8.3:
- version "0.8.3"
- resolved "https://registry.yarnpkg.com/temp/-/temp-0.8.3.tgz#e0c6bc4d26b903124410e4fed81103014dfc1f59"
- integrity sha1-4Ma8TSa5AxJEEOT+2BEDAU38H1k=
+temp@0.9.0:
+ version "0.9.0"
+ resolved "https://registry.yarnpkg.com/temp/-/temp-0.9.0.tgz#61391795a11bd9738d4c4d7f55f012cb8f55edaa"
+ integrity sha512-YfUhPQCJoNQE5N+FJQcdPz63O3x3sdT4Xju69Gj4iZe0lBKOtnAMi0SLj9xKhGkcGhsxThvTJ/usxtFPo438zQ==
dependencies:
- os-tmpdir "^1.0.0"
- rimraf "~2.2.6"
+ rimraf "~2.6.2"
terser-webpack-plugin@^1.1.0:
- version "1.2.3"
- resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.2.3.tgz#3f98bc902fac3e5d0de730869f50668561262ec8"
- integrity sha512-GOK7q85oAb/5kE12fMuLdn2btOS9OBZn4VsecpHDywoUC/jLhSAKOiYo0ezx7ss2EXPMzyEWFoE0s1WLE+4+oA==
+ version "1.3.0"
+ resolved "https://registry.yarnpkg.com/terser-webpack-plugin/-/terser-webpack-plugin-1.3.0.tgz#69aa22426299f4b5b3775cbed8cb2c5d419aa1d4"
+ integrity sha512-W2YWmxPjjkUcOWa4pBEv4OP4er1aeQJlSo2UhtCFQCuRXEHjOFscO8VyWHj9JLlA0RzQb8Y2/Ta78XZvT54uGg==
dependencies:
- cacache "^11.0.2"
+ cacache "^11.3.2"
find-cache-dir "^2.0.0"
+ is-wsl "^1.1.0"
+ loader-utils "^1.2.3"
schema-utils "^1.0.0"
- serialize-javascript "^1.4.0"
+ serialize-javascript "^1.7.0"
source-map "^0.6.1"
- terser "^3.16.1"
- webpack-sources "^1.1.0"
- worker-farm "^1.5.2"
+ terser "^4.0.0"
+ webpack-sources "^1.3.0"
+ worker-farm "^1.7.0"
-terser@^3.16.1, terser@^3.7.5:
+terser@^3.7.5:
version "3.17.0"
resolved "https://registry.yarnpkg.com/terser/-/terser-3.17.0.tgz#f88ffbeda0deb5637f9d24b0da66f4e15ab10cb2"
integrity sha512-/FQzzPJmCpjAH9Xvk2paiWrFq+5M6aVOf+2KRbwhByISDX/EujxsK+BAvrhb6H+2rtrLCHK9N01wO014vrIwVQ==
@@ -10501,15 +11911,25 @@ terser@^3.16.1, terser@^3.7.5:
source-map "~0.6.1"
source-map-support "~0.5.10"
-testem@^2.9.2:
- version "2.14.0"
- resolved "https://registry.yarnpkg.com/testem/-/testem-2.14.0.tgz#418a9a15843f68381659c6a486abb4ea48d06c29"
- integrity sha512-tldpNPCzXfibmxOoTMGOfr8ztUiHf9292zSXCu7SitBx9dCK83k7vEoa77qJBS9t3RGCQCRF+GNMUuiFw//Mbw==
+terser@^4.0.0:
+ version "4.1.2"
+ resolved "https://registry.yarnpkg.com/terser/-/terser-4.1.2.tgz#b2656c8a506f7ce805a3f300a2ff48db022fa391"
+ integrity sha512-jvNoEQSPXJdssFwqPSgWjsOrb+ELoE+ILpHPKXC83tIxOlh2U75F1KuB2luLD/3a6/7K3Vw5pDn+hvu0C4AzSw==
+ dependencies:
+ commander "^2.20.0"
+ source-map "~0.6.1"
+ source-map-support "~0.5.12"
+
+testem@^2.14.0:
+ version "2.17.0"
+ resolved "https://registry.yarnpkg.com/testem/-/testem-2.17.0.tgz#1cb4a2a90524a088803dfe52fbf197a6fd73c883"
+ integrity sha512-PLkIlT523w5rTJPWwR4TL1EiAEa941ECV7d4pMqsB0YdnH+sCTz0loWMKCUSdhR+VijveAZ6anE/JHehE7KqMQ==
dependencies:
backbone "^1.1.2"
bluebird "^3.4.6"
charm "^1.0.0"
commander "^2.6.0"
+ compression "^1.7.4"
consolidate "^0.15.1"
execa "^1.0.0"
express "^4.10.7"
@@ -10553,7 +11973,14 @@ through2@^2.0.0:
readable-stream "~2.3.6"
xtend "~4.0.1"
-through@^2.3.6, through@^2.3.8:
+through2@^3.0.1:
+ version "3.0.1"
+ resolved "https://registry.yarnpkg.com/through2/-/through2-3.0.1.tgz#39276e713c3302edf9e388dd9c812dd3b825bd5a"
+ integrity sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==
+ dependencies:
+ readable-stream "2 || 3"
+
+through@^2.3.6:
version "2.3.8"
resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5"
integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=
@@ -10563,6 +11990,11 @@ time-zone@^1.0.0:
resolved "https://registry.yarnpkg.com/time-zone/-/time-zone-1.0.0.tgz#99c5bf55958966af6d06d83bdf3800dc82faec5d"
integrity sha1-mcW/VZWJZq9tBtg73zgA3IL67F0=
+timed-out@^4.0.1:
+ version "4.0.1"
+ resolved "https://registry.yarnpkg.com/timed-out/-/timed-out-4.0.1.tgz#f32eacac5a175bea25d7fab565ab3ed8741ef56f"
+ integrity sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=
+
timers-browserify@^2.0.4:
version "2.0.10"
resolved "https://registry.yarnpkg.com/timers-browserify/-/timers-browserify-2.0.10.tgz#1d28e3d2aadf1d5a5996c4e9f95601cd053480ae"
@@ -10601,13 +12033,6 @@ tmp@0.0.33, tmp@^0.0.33:
dependencies:
os-tmpdir "~1.0.2"
-tmp@^0.0.29:
- version "0.0.29"
- resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.29.tgz#f25125ff0dd9da3ccb0c2dd371ee1288bb9128c0"
- integrity sha1-8lEl/w3Z2jzLDC3Tce4SiLuRKMA=
- dependencies:
- os-tmpdir "~1.0.1"
-
tmpl@1.0.x:
version "1.0.4"
resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.4.tgz#23640dd7b42d00433911140820e5cf440e521dd1"
@@ -10658,11 +12083,24 @@ to-regex@^3.0.1, to-regex@^3.0.2:
regex-not "^1.0.2"
safe-regex "^1.1.0"
+toidentifier@1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/toidentifier/-/toidentifier-1.0.0.tgz#7e1be3470f1e77948bc43d94a3c8f4d7752ba553"
+ integrity sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==
+
toposort@^2.0.2:
version "2.0.2"
resolved "https://registry.yarnpkg.com/toposort/-/toposort-2.0.2.tgz#ae21768175d1559d48bef35420b2f4962f09c330"
integrity sha1-riF2gXXRVZ1IvvNUILL0li8JwzA=
+tough-cookie@^2.3.3, tough-cookie@^2.4.3:
+ version "2.5.0"
+ resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2"
+ integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==
+ dependencies:
+ psl "^1.1.28"
+ punycode "^2.1.1"
+
tough-cookie@~2.4.3:
version "2.4.3"
resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.4.3.tgz#53f36da3f47783b0925afa06ff9f3b165280f781"
@@ -10671,7 +12109,14 @@ tough-cookie@~2.4.3:
psl "^1.1.24"
punycode "^1.4.1"
-tree-sync@^1.2.2:
+tr46@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/tr46/-/tr46-1.0.1.tgz#a8b13fd6bfd2489519674ccde55ba3693b706d09"
+ integrity sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=
+ dependencies:
+ punycode "^2.1.0"
+
+tree-sync@^1.2.2, tree-sync@^1.4.0:
version "1.4.0"
resolved "https://registry.yarnpkg.com/tree-sync/-/tree-sync-1.4.0.tgz#314598d13abaf752547d9335b8f95d9a137100d6"
integrity sha512-YvYllqh3qrR5TAYZZTXdspnIhlKAYezPYw11ntmweoceu4VK+keN356phHRIIo1d+RDmLpHZrUlmxga2gc9kSQ==
@@ -10700,9 +12145,9 @@ trim-right@^1.0.1:
glob "^7.1.2"
tslib@^1.9.0:
- version "1.9.3"
- resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.9.3.tgz#d7e4dd79245d85428c4d7e4822a79917954ca286"
- integrity sha512-4krF8scpejhaOgqzBEcGM7yDIEfi0/8+8zDRZhNZZ2kjmHJ4hv3zCbQWxoJGz1iw5U0Jl0nma13xzHXcncMavQ==
+ version "1.10.0"
+ resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.10.0.tgz#c3c19f95973fb0a62973fb09d90d961ee43e5c8a"
+ integrity sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==
tty-browserify@0.0.0:
version "0.0.0"
@@ -10728,7 +12173,7 @@ type-check@~0.3.2:
dependencies:
prelude-ls "~1.1.2"
-type-detect@4.0.8, type-detect@^4.0.8:
+type-detect@4.0.8:
version "4.0.8"
resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c"
integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==
@@ -10741,25 +12186,40 @@ type-is@~1.6.16:
media-typer "0.3.0"
mime-types "~2.1.18"
+type-is@~1.6.17, type-is@~1.6.18:
+ version "1.6.18"
+ resolved "https://registry.yarnpkg.com/type-is/-/type-is-1.6.18.tgz#4e552cd05df09467dcbc4ef739de89f2cf37c131"
+ integrity sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==
+ dependencies:
+ media-typer "0.3.0"
+ mime-types "~2.1.24"
+
typedarray@^0.0.6:
version "0.0.6"
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=
+typescript-memoize@^1.0.0-alpha.3:
+ version "1.0.0-alpha.3"
+ resolved "https://registry.yarnpkg.com/typescript-memoize/-/typescript-memoize-1.0.0-alpha.3.tgz#699a5415f886694a8d6e2e5451bc28a39a6bc2f9"
+ integrity sha1-aZpUFfiGaUqNbi5UUbwoo5prwvk=
+ dependencies:
+ core-js "2.4.1"
+
uc.micro@^1.0.1, uc.micro@^1.0.5:
version "1.0.6"
resolved "https://registry.yarnpkg.com/uc.micro/-/uc.micro-1.0.6.tgz#9c411a802a409a91fc6cf74081baba34b24499ac"
integrity sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==
uglify-js@^3.1.4:
- version "3.5.3"
- resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.5.3.tgz#d490bb5347f23025f0c1bc0dee901d98e4d6b063"
- integrity sha512-rIQPT2UMDnk4jRX+w4WO84/pebU2jiLsjgIyrCktYgSvx28enOE3iYQMr+BD1rHiitWnDmpu0cY/LfIEpKcjcw==
+ version "3.6.0"
+ resolved "https://registry.yarnpkg.com/uglify-js/-/uglify-js-3.6.0.tgz#704681345c53a8b2079fb6cec294b05ead242ff5"
+ integrity sha512-W+jrUHJr3DXKhrsS7NUVxn3zqMOFn0hL/Ei6v0anCIMoKC93TjcflTagwIHLW7SfMFfiQuktQyFVCFHGUE0+yg==
dependencies:
- commander "~2.19.0"
+ commander "~2.20.0"
source-map "~0.6.1"
-underscore.string@~3.3.4:
+underscore.string@^3.2.2, underscore.string@~3.3.4:
version "3.3.5"
resolved "https://registry.yarnpkg.com/underscore.string/-/underscore.string-3.3.5.tgz#fc2ad255b8bd309e239cbc5816fd23a9b7ea4023"
integrity sha512-g+dpmgn+XBneLmXXo+sGlW5xQEt4ErkS3mgeN2GFbremYeMBSJKr9Wf2KJplQVaiPY/f7FN6atosWYNm9ovrYg==
@@ -10796,14 +12256,14 @@ unicode-property-aliases-ecmascript@^1.0.4:
integrity sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw==
union-value@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.0.tgz#5c71c34cb5bad5dcebe3ea0cd08207ba5aa1aea4"
- integrity sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/union-value/-/union-value-1.0.1.tgz#0b6fe7b835aecda61c6ea4d4f02c14221e109847"
+ integrity sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==
dependencies:
arr-union "^3.1.0"
get-value "^2.0.6"
is-extendable "^0.1.1"
- set-value "^0.4.3"
+ set-value "^2.0.1"
unique-filename@^1.1.1:
version "1.1.1"
@@ -10813,9 +12273,9 @@ unique-filename@^1.1.1:
unique-slug "^2.0.0"
unique-slug@^2.0.0:
- version "2.0.1"
- resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.1.tgz#5e9edc6d1ce8fb264db18a507ef9bd8544451ca6"
- integrity sha512-n9cU6+gITaVu7VGj1Z8feKMmfAjEAQGhwD9fE3zvpRRa0wEIx8ODYkVGfSc94M2OX00tUFV8wH3zYbm1I8mxFg==
+ version "2.0.2"
+ resolved "https://registry.yarnpkg.com/unique-slug/-/unique-slug-2.0.2.tgz#baabce91083fc64e945b0f3ad613e264f7cd4e6c"
+ integrity sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==
dependencies:
imurmurhash "^0.1.4"
@@ -10873,6 +12333,18 @@ urix@^0.1.0:
resolved "https://registry.yarnpkg.com/urix/-/urix-0.1.0.tgz#da937f7a62e21fec1fd18d49b35c2935067a6c72"
integrity sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=
+url-parse-lax@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/url-parse-lax/-/url-parse-lax-3.0.0.tgz#16b5cafc07dbe3676c1b1999177823d6503acb0c"
+ integrity sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=
+ dependencies:
+ prepend-http "^2.0.0"
+
+url-to-options@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/url-to-options/-/url-to-options-1.0.1.tgz#1505a03a289a48cbd7a434efbaeec5055f5633a9"
+ integrity sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=
+
url@^0.11.0:
version "0.11.0"
resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1"
@@ -10886,28 +12358,12 @@ use@^3.1.0:
resolved "https://registry.yarnpkg.com/use/-/use-3.1.1.tgz#d50c8cac79a19fbc20f2911f56eb973f4e10070f"
integrity sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==
-user-info@^1.0.0:
- version "1.0.0"
- resolved "https://registry.yarnpkg.com/user-info/-/user-info-1.0.0.tgz#81c82b7ed63e674c2475667653413b3c76fde239"
- integrity sha1-gcgrftY+Z0wkdWZ2U0E7PHb94jk=
- dependencies:
- os-homedir "^1.0.1"
- passwd-user "^1.2.1"
- username "^1.0.1"
-
username-sync@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/username-sync/-/username-sync-1.0.2.tgz#0a3697909fb7b5768d29e2921f573acfdd427592"
integrity sha512-ayNkOJdoNSGNDBE46Nkc+l6IXmeugbzahZLSMkwvgRWv5y5ZqNY2IrzcgmkR4z32sj1W3tM3TuTUMqkqBzO+RA==
-username@^1.0.1:
- version "1.0.1"
- resolved "https://registry.yarnpkg.com/username/-/username-1.0.1.tgz#e1f72295e3e58e06f002c6327ce06897a99cd67f"
- integrity sha1-4fcilePljgbwAsYyfOBol6mc1n8=
- dependencies:
- meow "^3.4.0"
-
-util-deprecate@^1.0.2, util-deprecate@~1.0.1:
+util-deprecate@^1.0.1, util-deprecate@^1.0.2, util-deprecate@~1.0.1:
version "1.0.2"
resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf"
integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=
@@ -10973,20 +12429,17 @@ verror@1.10.0:
core-util-is "1.0.2"
extsprintf "^1.2.0"
-vm-browserify@0.0.4:
- version "0.0.4"
- resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-0.0.4.tgz#5d7ea45bbef9e4a6ff65f95438e0a87c357d5a73"
- integrity sha1-XX6kW7755Kb/ZflUOOCofDV9WnM=
- dependencies:
- indexof "0.0.1"
+vm-browserify@^1.0.1:
+ version "1.1.0"
+ resolved "https://registry.yarnpkg.com/vm-browserify/-/vm-browserify-1.1.0.tgz#bd76d6a23323e2ca8ffa12028dc04559c75f9019"
+ integrity sha512-iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw==
-walk-sync@0.3.2:
- version "0.3.2"
- resolved "https://registry.yarnpkg.com/walk-sync/-/walk-sync-0.3.2.tgz#4827280afc42d0e035367c4a4e31eeac0d136f75"
- integrity sha512-FMB5VqpLqOCcqrzA9okZFc0wq0Qbmdm396qJxvQZhDpyu0W95G9JCmp74tx7iyYnyOcBtUuKJsgIKAqjozvmmQ==
+w3c-hr-time@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz#82ac2bff63d950ea9e3189a58a65625fedf19045"
+ integrity sha1-gqwr/2PZUOqeMYmlimViX+3xkEU=
dependencies:
- ensure-posix-path "^1.0.0"
- matcher-collection "^1.0.0"
+ browser-process-hrtime "^0.1.2"
walk-sync@^0.2.5:
version "0.2.7"
@@ -11004,10 +12457,10 @@ walk-sync@^0.3.0, walk-sync@^0.3.1, walk-sync@^0.3.2, walk-sync@^0.3.3:
ensure-posix-path "^1.0.0"
matcher-collection "^1.0.0"
-walk-sync@^1.0.0:
- version "1.1.3"
- resolved "https://registry.yarnpkg.com/walk-sync/-/walk-sync-1.1.3.tgz#3b7b6468f068b5eba2278c931c57db3d39092969"
- integrity sha512-23ivbET0Q/389y3EHpiIgxx881AS2mwdXA7iBqUDNSymoTPYb2jWlF3gkuuAP1iLgdNXmiHw/kZ/wZwrELU6Ag==
+walk-sync@^1.0.0, walk-sync@^1.1.3:
+ version "1.1.4"
+ resolved "https://registry.yarnpkg.com/walk-sync/-/walk-sync-1.1.4.tgz#81049f3d8095479b49574cfa5f558d7a252b127d"
+ integrity sha512-nowc9thB/Jg0KW4TgxoRjLLYRPvl3DB/98S89r4ZcJqq2B0alNcKDh6pzLkBSkPMzRSMsJghJHQi79qw0YWEkA==
dependencies:
"@types/minimatch" "^3.0.3"
ensure-posix-path "^1.1.0"
@@ -11031,14 +12484,6 @@ watch-detector@^0.1.0:
semver "^5.4.1"
silent-error "^1.1.0"
-watch@~0.18.0:
- version "0.18.0"
- resolved "https://registry.yarnpkg.com/watch/-/watch-0.18.0.tgz#28095476c6df7c90c963138990c0a5423eb4b986"
- integrity sha1-KAlUdsbffJDJYxOJkMClQj60uYY=
- dependencies:
- exec-sh "^0.2.0"
- minimist "^1.2.0"
-
watchpack@^1.5.0:
version "1.6.0"
resolved "https://registry.yarnpkg.com/watchpack/-/watchpack-1.6.0.tgz#4bc12c2ebe8aa277a71f1d3f14d685c7b446cd00"
@@ -11055,7 +12500,12 @@ wcwidth@^1.0.1:
dependencies:
defaults "^1.0.3"
-webpack-sources@^1.1.0, webpack-sources@^1.3.0:
+webidl-conversions@^4.0.2:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/webidl-conversions/-/webidl-conversions-4.0.2.tgz#a855980b1f0b6b359ba1d5d9fb39ae941faa63ad"
+ integrity sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==
+
+webpack-sources@^1.3.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/webpack-sources/-/webpack-sources-1.3.0.tgz#2a28dcb9f1f45fe960d8f1493252b5ee6530fa85"
integrity sha512-OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA==
@@ -11106,11 +12556,32 @@ websocket-extensions@>=0.1.1:
resolved "https://registry.yarnpkg.com/websocket-extensions/-/websocket-extensions-0.1.3.tgz#5d2ff22977003ec687a4b87073dfbbac146ccf29"
integrity sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg==
+whatwg-encoding@^1.0.1, whatwg-encoding@^1.0.5:
+ version "1.0.5"
+ resolved "https://registry.yarnpkg.com/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz#5abacf777c32166a51d085d6b4f3e7d27113ddb0"
+ integrity sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==
+ dependencies:
+ iconv-lite "0.4.24"
+
whatwg-fetch@^3.0.0:
version "3.0.0"
resolved "https://registry.yarnpkg.com/whatwg-fetch/-/whatwg-fetch-3.0.0.tgz#fc804e458cc460009b1a2b966bc8817d2578aefb"
integrity sha512-9GSJUgz1D4MfyKU7KRqwOjXCXTqWdFNvEr7eUBYchQiVc744mqK/MzXPNR2WsPkmkOa4ywfg8C2n8h+13Bey1Q==
+whatwg-mimetype@^2.2.0:
+ version "2.3.0"
+ resolved "https://registry.yarnpkg.com/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz#3d4b1e0312d2079879f826aff18dbeeca5960fbf"
+ integrity sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==
+
+whatwg-url@^7.0.0:
+ version "7.0.0"
+ resolved "https://registry.yarnpkg.com/whatwg-url/-/whatwg-url-7.0.0.tgz#fde926fa54a599f3adf82dff25a9f7be02dc6edd"
+ integrity sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ==
+ dependencies:
+ lodash.sortby "^4.7.0"
+ tr46 "^1.0.1"
+ webidl-conversions "^4.0.2"
+
which-module@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/which-module/-/which-module-1.0.0.tgz#bba63ca861948994ff307736089e3b96026c2a4f"
@@ -11145,10 +12616,10 @@ wordwrap@~1.0.0:
resolved "https://registry.yarnpkg.com/wordwrap/-/wordwrap-1.0.0.tgz#27584810891456a4171c8d0226441ade90cbcaeb"
integrity sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=
-worker-farm@^1.5.2:
- version "1.6.0"
- resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.6.0.tgz#aecc405976fab5a95526180846f0dba288f3a4a0"
- integrity sha512-6w+3tHbM87WnSWnENBUvA2pxJPLhQUg5LKwUQHq3r+XPhIM+Gh2R5ycbwPCyuGbNg+lPgdcnQUhuC02kJCvffQ==
+worker-farm@^1.7.0:
+ version "1.7.0"
+ resolved "https://registry.yarnpkg.com/worker-farm/-/worker-farm-1.7.0.tgz#26a94c5391bbca926152002f69b84a4bf772e5a8"
+ integrity sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==
dependencies:
errno "~0.1.7"
@@ -11205,6 +12676,13 @@ write@1.0.3:
dependencies:
mkdirp "^0.5.1"
+ws@^6.1.0:
+ version "6.2.1"
+ resolved "https://registry.yarnpkg.com/ws/-/ws-6.2.1.tgz#442fdf0a47ed64f59b6a5d8ff130f4748ed524fb"
+ integrity sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==
+ dependencies:
+ async-limiter "~1.0.0"
+
ws@~6.1.0:
version "6.1.4"
resolved "https://registry.yarnpkg.com/ws/-/ws-6.1.4.tgz#5b5c8800afab925e94ccb29d153c8d02c1776ef9"
@@ -11217,6 +12695,16 @@ xdg-basedir@^3.0.0:
resolved "https://registry.yarnpkg.com/xdg-basedir/-/xdg-basedir-3.0.0.tgz#496b2cc109eca8dbacfe2dc72b603c17c5870ad4"
integrity sha1-SWsswQnsqNus/i3HK2A8F8WHCtQ=
+xml-name-validator@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/xml-name-validator/-/xml-name-validator-3.0.0.tgz#6ae73e06de4d8c6e47f9fb181f78d648ad457c6a"
+ integrity sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==
+
+xmlchars@^2.1.1:
+ version "2.1.1"
+ resolved "https://registry.yarnpkg.com/xmlchars/-/xmlchars-2.1.1.tgz#ef1a81c05bff629c2280007f12daca21bd6f6c93"
+ integrity sha512-7hew1RPJ1iIuje/Y01bGD/mXokXxegAgVS+e+E0wSi2ILHQkYAH1+JXARwTjZSM4Z4Z+c73aKspEcqj+zPPL/w==
+
xmldom@^0.1.19:
version "0.1.27"
resolved "https://registry.yarnpkg.com/xmldom/-/xmldom-0.1.27.tgz#d501f97b3bdb403af8ef9ecc20573187aadac0e9"
@@ -11227,7 +12715,12 @@ xmlhttprequest-ssl@~1.5.4:
resolved "https://registry.yarnpkg.com/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.5.tgz#c2876b06168aadc40e57d97e81191ac8f4398b3e"
integrity sha1-wodrBhaKrcQOV9l+gRkayPQ5iz4=
-xtend@^4.0.0, xtend@~4.0.0, xtend@~4.0.1:
+xtend@^4.0.0, xtend@~4.0.1:
+ version "4.0.2"
+ resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.2.tgz#bb72779f5fa465186b1f438f674fa347fdb5db54"
+ integrity sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==
+
+xtend@~4.0.0:
version "4.0.1"
resolved "https://registry.yarnpkg.com/xtend/-/xtend-4.0.1.tgz#a5c6d532be656e23db820efb943a1f04998d63af"
integrity sha1-pcbVMr5lbiPbgg77lDofBJmNY68=
@@ -11247,15 +12740,15 @@ yallist@^2.1.2:
resolved "https://registry.yarnpkg.com/yallist/-/yallist-2.1.2.tgz#1c11f9218f076089a47dd512f93c6699a6a81d52"
integrity sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=
-yallist@^3.0.0, yallist@^3.0.2:
+yallist@^3.0.0, yallist@^3.0.2, yallist@^3.0.3:
version "3.0.3"
resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.0.3.tgz#b4b049e314be545e3ce802236d6cd22cd91c3de9"
integrity sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==
-yam@^0.0.24:
- version "0.0.24"
- resolved "https://registry.yarnpkg.com/yam/-/yam-0.0.24.tgz#11e9630444735f66a561d29221407de6d037cd95"
- integrity sha512-llPF60oFLV8EQimNPR6+KorSaj59L32C4c1db4cr72GaWVWapnhTS2VZeK2K2xLyEOveWtRcNa+dLJBW7EfhYQ==
+yam@^1.0.0:
+ version "1.0.0"
+ resolved "https://registry.yarnpkg.com/yam/-/yam-1.0.0.tgz#7f6c91dc0f5de75a031e6da6b3907c3d25ab0de5"
+ integrity sha512-Hv9xxHtsJ9228wNhk03xnlDReUuWVvHwM4rIbjdAXYvHLs17xjuyF50N6XXFMN6N0omBaqgOok/MCK3At9fTAg==
dependencies:
fs-extra "^4.0.2"
lodash.merge "^4.6.0"
diff --git a/vendor/github.com/containerd/go-cni/LICENSE b/vendor/github.com/containerd/go-cni/LICENSE
new file mode 100644
index 000000000..261eeb9e9
--- /dev/null
+++ b/vendor/github.com/containerd/go-cni/LICENSE
@@ -0,0 +1,201 @@
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/vendor/github.com/containerd/go-cni/README.md b/vendor/github.com/containerd/go-cni/README.md
new file mode 100644
index 000000000..1bd2f0013
--- /dev/null
+++ b/vendor/github.com/containerd/go-cni/README.md
@@ -0,0 +1,60 @@
+[](https://travis-ci.org/containerd/go-cni)
+
+# go-cni
+
+A generic CNI library to provide APIs for CNI plugin interactions. The library provides APIs to:
+
+- Load CNI network config from different sources
+- Setup networks for container namespace
+- Remove networks from container namespace
+- Query status of CNI network plugin initialization
+
+go-cni aims to support plugins that implement [Container Network Interface](https://github.com/containernetworking/cni)
+
+## Usage
+```go
+func main() {
+ id := "123456"
+ netns := "/proc/9999/ns/net"
+ defaultIfName := "eth0"
+ // Initialize library
+ l = gocni.New(gocni.WithMinNetworkCount(2),
+ gocni.WithPluginConfDir("/etc/mycni/net.d"),
+ gocni.WithPluginDir([]string{"/opt/mycni/bin", "/opt/cni/bin"}),
+ gocni.WithDefaultIfName(defaultIfName))
+
+ // Load the cni configuration
+ err:= l.Load(gocni.WithLoNetwork, gocni.WithDefaultConf)
+ if err != nil{
+ log.Errorf("failed to load cni configuration: %v", err)
+ return
+ }
+
+ // Setup network for namespace.
+ labels := map[string]string{
+ "K8S_POD_NAMESPACE": "namespace1",
+ "K8S_POD_NAME": "pod1",
+ "K8S_POD_INFRA_CONTAINER_ID": id,
+ }
+ result, err := l.Setup(id, netns, gocni.WithLabels(labels))
+ if err != nil {
+ log.Errorf("failed to setup network for namespace %q: %v",id, err)
+ return
+ }
+
+ // Get IP of the default interface
+ IP := result.Interfaces[defaultIfName].IPConfigs[0].IP.String()
+ fmt.Printf("IP of the default interface %s:%s", defaultIfName, IP)
+}
+```
+
+## Project details
+
+The go-cni is a containerd sub-project, licensed under the [Apache 2.0 license](./LICENSE).
+As a containerd sub-project, you will find the:
+
+ * [Project governance](https://github.com/containerd/project/blob/master/GOVERNANCE.md),
+ * [Maintainers](https://github.com/containerd/project/blob/master/MAINTAINERS),
+ * and [Contributing guidelines](https://github.com/containerd/project/blob/master/CONTRIBUTING.md)
+
+information in our [`containerd/project`](https://github.com/containerd/project) repository.
diff --git a/vendor/github.com/containerd/go-cni/cni.go b/vendor/github.com/containerd/go-cni/cni.go
new file mode 100644
index 000000000..8acc83b33
--- /dev/null
+++ b/vendor/github.com/containerd/go-cni/cni.go
@@ -0,0 +1,220 @@
+/*
+ Copyright The containerd Authors.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+*/
+
+package cni
+
+import (
+ "context"
+ "fmt"
+ "strings"
+ "sync"
+
+ cnilibrary "github.com/containernetworking/cni/libcni"
+ "github.com/containernetworking/cni/pkg/types"
+ "github.com/containernetworking/cni/pkg/types/current"
+ "github.com/pkg/errors"
+)
+
+type CNI interface {
+ // Setup setup the network for the namespace
+ Setup(ctx context.Context, id string, path string, opts ...NamespaceOpts) (*CNIResult, error)
+ // Remove tears down the network of the namespace.
+ Remove(ctx context.Context, id string, path string, opts ...NamespaceOpts) error
+ // Load loads the cni network config
+ Load(opts ...CNIOpt) error
+ // Status checks the status of the cni initialization
+ Status() error
+ // GetConfig returns a copy of the CNI plugin configurations as parsed by CNI
+ GetConfig() *ConfigResult
+}
+
+type ConfigResult struct {
+ PluginDirs []string
+ PluginConfDir string
+ PluginMaxConfNum int
+ Prefix string
+ Networks []*ConfNetwork
+}
+
+type ConfNetwork struct {
+ Config *NetworkConfList
+ IFName string
+}
+
+// NetworkConfList is a source bytes to string version of cnilibrary.NetworkConfigList
+type NetworkConfList struct {
+ Name string
+ CNIVersion string
+ Plugins []*NetworkConf
+ Source string
+}
+
+// NetworkConf is a source bytes to string conversion of cnilibrary.NetworkConfig
+type NetworkConf struct {
+ Network *types.NetConf
+ Source string
+}
+
+type libcni struct {
+ config
+
+ cniConfig cnilibrary.CNI
+ networkCount int // minimum network plugin configurations needed to initialize cni
+ networks []*Network
+ sync.RWMutex
+}
+
+func defaultCNIConfig() *libcni {
+ return &libcni{
+ config: config{
+ pluginDirs: []string{DefaultCNIDir},
+ pluginConfDir: DefaultNetDir,
+ pluginMaxConfNum: DefaultMaxConfNum,
+ prefix: DefaultPrefix,
+ },
+ cniConfig: &cnilibrary.CNIConfig{
+ Path: []string{DefaultCNIDir},
+ },
+ networkCount: 1,
+ }
+}
+
+// New creates a new libcni instance.
+func New(config ...CNIOpt) (CNI, error) {
+ cni := defaultCNIConfig()
+ var err error
+ for _, c := range config {
+ if err = c(cni); err != nil {
+ return nil, err
+ }
+ }
+ return cni, nil
+}
+
+// Load loads the latest config from cni config files.
+func (c *libcni) Load(opts ...CNIOpt) error {
+ var err error
+ c.Lock()
+ defer c.Unlock()
+ // Reset the networks on a load operation to ensure
+ // config happens on a clean slate
+ c.reset()
+
+ for _, o := range opts {
+ if err = o(c); err != nil {
+ return errors.Wrapf(ErrLoad, fmt.Sprintf("cni config load failed: %v", err))
+ }
+ }
+ return nil
+}
+
+// Status returns the status of CNI initialization.
+func (c *libcni) Status() error {
+ c.RLock()
+ defer c.RUnlock()
+ if len(c.networks) < c.networkCount {
+ return ErrCNINotInitialized
+ }
+ return nil
+}
+
+// Networks returns all the configured networks.
+// NOTE: Caller MUST NOT modify anything in the returned array.
+func (c *libcni) Networks() []*Network {
+ c.RLock()
+ defer c.RUnlock()
+ return append([]*Network{}, c.networks...)
+}
+
+// Setup setups the network in the namespace
+func (c *libcni) Setup(ctx context.Context, id string, path string, opts ...NamespaceOpts) (*CNIResult, error) {
+ if err := c.Status(); err != nil {
+ return nil, err
+ }
+ ns, err := newNamespace(id, path, opts...)
+ if err != nil {
+ return nil, err
+ }
+ var results []*current.Result
+ for _, network := range c.Networks() {
+ r, err := network.Attach(ctx, ns)
+ if err != nil {
+ return nil, err
+ }
+ results = append(results, r)
+ }
+ return c.GetCNIResultFromResults(results)
+}
+
+// Remove removes the network config from the namespace
+func (c *libcni) Remove(ctx context.Context, id string, path string, opts ...NamespaceOpts) error {
+ if err := c.Status(); err != nil {
+ return err
+ }
+ ns, err := newNamespace(id, path, opts...)
+ if err != nil {
+ return err
+ }
+ for _, network := range c.Networks() {
+ if err := network.Remove(ctx, ns); err != nil {
+ // Based on CNI spec v0.7.0, empty network namespace is allowed to
+ // do best effort cleanup. However, it is not handled consistently
+ // right now:
+ // https://github.com/containernetworking/plugins/issues/210
+ // TODO(random-liu): Remove the error handling when the issue is
+ // fixed and the CNI spec v0.6.0 support is deprecated.
+ if path == "" && strings.Contains(err.Error(), "no such file or directory") {
+ continue
+ }
+ return err
+ }
+ }
+ return nil
+}
+
+// GetConfig returns a copy of the CNI plugin configurations as parsed by CNI
+func (c *libcni) GetConfig() *ConfigResult {
+ c.RLock()
+ defer c.RUnlock()
+ r := &ConfigResult{
+ PluginDirs: c.config.pluginDirs,
+ PluginConfDir: c.config.pluginConfDir,
+ PluginMaxConfNum: c.config.pluginMaxConfNum,
+ Prefix: c.config.prefix,
+ }
+ for _, network := range c.networks {
+ conf := &NetworkConfList{
+ Name: network.config.Name,
+ CNIVersion: network.config.CNIVersion,
+ Source: string(network.config.Bytes),
+ }
+ for _, plugin := range network.config.Plugins {
+ conf.Plugins = append(conf.Plugins, &NetworkConf{
+ Network: plugin.Network,
+ Source: string(plugin.Bytes),
+ })
+ }
+ r.Networks = append(r.Networks, &ConfNetwork{
+ Config: conf,
+ IFName: network.ifName,
+ })
+ }
+ return r
+}
+
+func (c *libcni) reset() {
+ c.networks = nil
+}
diff --git a/vendor/github.com/containerd/go-cni/errors.go b/vendor/github.com/containerd/go-cni/errors.go
new file mode 100644
index 000000000..28761711e
--- /dev/null
+++ b/vendor/github.com/containerd/go-cni/errors.go
@@ -0,0 +1,55 @@
+/*
+ Copyright The containerd Authors.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+*/
+
+package cni
+
+import (
+ "github.com/pkg/errors"
+)
+
+var (
+ ErrCNINotInitialized = errors.New("cni plugin not initialized")
+ ErrInvalidConfig = errors.New("invalid cni config")
+ ErrNotFound = errors.New("not found")
+ ErrRead = errors.New("failed to read config file")
+ ErrInvalidResult = errors.New("invalid result")
+ ErrLoad = errors.New("failed to load cni config")
+)
+
+// IsCNINotInitialized returns true if the error is due to cni config not being initialized
+func IsCNINotInitialized(err error) bool {
+ return errors.Cause(err) == ErrCNINotInitialized
+}
+
+// IsInvalidConfig returns true if the error is invalid cni config
+func IsInvalidConfig(err error) bool {
+ return errors.Cause(err) == ErrInvalidConfig
+}
+
+// IsNotFound returns true if the error is due to a missing config or result
+func IsNotFound(err error) bool {
+ return errors.Cause(err) == ErrNotFound
+}
+
+// IsReadFailure return true if the error is a config read failure
+func IsReadFailure(err error) bool {
+ return errors.Cause(err) == ErrRead
+}
+
+// IsInvalidResult return true if the error is due to invalid cni result
+func IsInvalidResult(err error) bool {
+ return errors.Cause(err) == ErrInvalidResult
+}
diff --git a/vendor/github.com/containerd/go-cni/helper.go b/vendor/github.com/containerd/go-cni/helper.go
new file mode 100644
index 000000000..088cb9bc5
--- /dev/null
+++ b/vendor/github.com/containerd/go-cni/helper.go
@@ -0,0 +1,41 @@
+/*
+ Copyright The containerd Authors.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+*/
+
+package cni
+
+import (
+ "fmt"
+
+ "github.com/containernetworking/cni/pkg/types/current"
+)
+
+func validateInterfaceConfig(ipConf *current.IPConfig, ifs int) error {
+ if ipConf == nil {
+ return fmt.Errorf("invalid IP configuration (nil)")
+ }
+ if ipConf.Interface != nil && *ipConf.Interface > ifs {
+ return fmt.Errorf("invalid IP configuration (interface number %d is > number of interfaces %d)", *ipConf.Interface, ifs)
+ }
+ return nil
+}
+
+func getIfName(prefix string, i int) string {
+ return fmt.Sprintf("%s%d", prefix, i)
+}
+
+func defaultInterface(prefix string) string {
+ return getIfName(prefix, 0)
+}
diff --git a/vendor/github.com/containerd/go-cni/namespace.go b/vendor/github.com/containerd/go-cni/namespace.go
new file mode 100644
index 000000000..ff14b01c1
--- /dev/null
+++ b/vendor/github.com/containerd/go-cni/namespace.go
@@ -0,0 +1,77 @@
+/*
+ Copyright The containerd Authors.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+*/
+
+package cni
+
+import (
+ "context"
+
+ cnilibrary "github.com/containernetworking/cni/libcni"
+ "github.com/containernetworking/cni/pkg/types/current"
+)
+
+type Network struct {
+ cni cnilibrary.CNI
+ config *cnilibrary.NetworkConfigList
+ ifName string
+}
+
+func (n *Network) Attach(ctx context.Context, ns *Namespace) (*current.Result, error) {
+ r, err := n.cni.AddNetworkList(ctx, n.config, ns.config(n.ifName))
+ if err != nil {
+ return nil, err
+ }
+ return current.NewResultFromResult(r)
+}
+
+func (n *Network) Remove(ctx context.Context, ns *Namespace) error {
+ return n.cni.DelNetworkList(ctx, n.config, ns.config(n.ifName))
+}
+
+type Namespace struct {
+ id string
+ path string
+ capabilityArgs map[string]interface{}
+ args map[string]string
+}
+
+func newNamespace(id, path string, opts ...NamespaceOpts) (*Namespace, error) {
+ ns := &Namespace{
+ id: id,
+ path: path,
+ capabilityArgs: make(map[string]interface{}),
+ args: make(map[string]string),
+ }
+ for _, o := range opts {
+ if err := o(ns); err != nil {
+ return nil, err
+ }
+ }
+ return ns, nil
+}
+
+func (ns *Namespace) config(ifName string) *cnilibrary.RuntimeConf {
+ c := &cnilibrary.RuntimeConf{
+ ContainerID: ns.id,
+ NetNS: ns.path,
+ IfName: ifName,
+ }
+ for k, v := range ns.args {
+ c.Args = append(c.Args, [2]string{k, v})
+ }
+ c.CapabilityArgs = ns.capabilityArgs
+ return c
+}
diff --git a/vendor/github.com/containerd/go-cni/namespace_opts.go b/vendor/github.com/containerd/go-cni/namespace_opts.go
new file mode 100644
index 000000000..1fad5f69a
--- /dev/null
+++ b/vendor/github.com/containerd/go-cni/namespace_opts.go
@@ -0,0 +1,75 @@
+/*
+ Copyright The containerd Authors.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+*/
+
+package cni
+
+type NamespaceOpts func(s *Namespace) error
+
+// Capabilities
+func WithCapabilityPortMap(portMapping []PortMapping) NamespaceOpts {
+ return func(c *Namespace) error {
+ c.capabilityArgs["portMappings"] = portMapping
+ return nil
+ }
+}
+
+func WithCapabilityIPRanges(ipRanges []IPRanges) NamespaceOpts {
+ return func(c *Namespace) error {
+ c.capabilityArgs["ipRanges"] = ipRanges
+ return nil
+ }
+}
+
+// WithCapabilityBandWitdh adds support for traffic shaping:
+// https://github.com/heptio/cni-plugins/tree/master/plugins/meta/bandwidth
+func WithCapabilityBandWidth(bandWidth BandWidth) NamespaceOpts {
+ return func(c *Namespace) error {
+ c.capabilityArgs["bandwidth"] = bandWidth
+ return nil
+ }
+}
+
+// WithCapabilityDNS adds support for dns
+func WithCapabilityDNS(dns DNS) NamespaceOpts {
+ return func(c *Namespace) error {
+ c.capabilityArgs["dns"] = dns
+ return nil
+ }
+}
+
+func WithCapability(name string, capability interface{}) NamespaceOpts {
+ return func(c *Namespace) error {
+ c.capabilityArgs[name] = capability
+ return nil
+ }
+}
+
+// Args
+func WithLabels(labels map[string]string) NamespaceOpts {
+ return func(c *Namespace) error {
+ for k, v := range labels {
+ c.args[k] = v
+ }
+ return nil
+ }
+}
+
+func WithArgs(k, v string) NamespaceOpts {
+ return func(c *Namespace) error {
+ c.args[k] = v
+ return nil
+ }
+}
diff --git a/vendor/github.com/containerd/go-cni/opts.go b/vendor/github.com/containerd/go-cni/opts.go
new file mode 100644
index 000000000..1dd7869a2
--- /dev/null
+++ b/vendor/github.com/containerd/go-cni/opts.go
@@ -0,0 +1,263 @@
+/*
+ Copyright The containerd Authors.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+*/
+
+package cni
+
+import (
+ "sort"
+ "strings"
+
+ cnilibrary "github.com/containernetworking/cni/libcni"
+ "github.com/pkg/errors"
+)
+
+type CNIOpt func(c *libcni) error
+
+// WithInterfacePrefix sets the prefix for network interfaces
+// e.g. eth or wlan
+func WithInterfacePrefix(prefix string) CNIOpt {
+ return func(c *libcni) error {
+ c.prefix = prefix
+ return nil
+ }
+}
+
+// WithPluginDir can be used to set the locations of
+// the cni plugin binaries
+func WithPluginDir(dirs []string) CNIOpt {
+ return func(c *libcni) error {
+ c.pluginDirs = dirs
+ c.cniConfig = &cnilibrary.CNIConfig{Path: dirs}
+ return nil
+ }
+}
+
+// WithPluginConfDir can be used to configure the
+// cni configuration directory.
+func WithPluginConfDir(dir string) CNIOpt {
+ return func(c *libcni) error {
+ c.pluginConfDir = dir
+ return nil
+ }
+}
+
+// WithPluginMaxConfNum can be used to configure the
+// max cni plugin config file num.
+func WithPluginMaxConfNum(max int) CNIOpt {
+ return func(c *libcni) error {
+ c.pluginMaxConfNum = max
+ return nil
+ }
+}
+
+// WithMinNetworkCount can be used to configure the
+// minimum networks to be configured and initialized
+// for the status to report success. By default its 1.
+func WithMinNetworkCount(count int) CNIOpt {
+ return func(c *libcni) error {
+ c.networkCount = count
+ return nil
+ }
+}
+
+// WithLoNetwork can be used to load the loopback
+// network config.
+func WithLoNetwork(c *libcni) error {
+ loConfig, _ := cnilibrary.ConfListFromBytes([]byte(`{
+"cniVersion": "0.3.1",
+"name": "cni-loopback",
+"plugins": [{
+ "type": "loopback"
+}]
+}`))
+
+ c.networks = append(c.networks, &Network{
+ cni: c.cniConfig,
+ config: loConfig,
+ ifName: "lo",
+ })
+ return nil
+}
+
+// WithConf can be used to load config directly
+// from byte.
+func WithConf(bytes []byte) CNIOpt {
+ return WithConfIndex(bytes, 0)
+}
+
+// WithConfIndex can be used to load config directly
+// from byte and set the interface name's index.
+func WithConfIndex(bytes []byte, index int) CNIOpt {
+ return func(c *libcni) error {
+ conf, err := cnilibrary.ConfFromBytes(bytes)
+ if err != nil {
+ return err
+ }
+ confList, err := cnilibrary.ConfListFromConf(conf)
+ if err != nil {
+ return err
+ }
+ c.networks = append(c.networks, &Network{
+ cni: c.cniConfig,
+ config: confList,
+ ifName: getIfName(c.prefix, index),
+ })
+ return nil
+ }
+}
+
+// WithConfFile can be used to load network config
+// from an .conf file. Supported with absolute fileName
+// with path only.
+func WithConfFile(fileName string) CNIOpt {
+ return func(c *libcni) error {
+ conf, err := cnilibrary.ConfFromFile(fileName)
+ if err != nil {
+ return err
+ }
+ // upconvert to conf list
+ confList, err := cnilibrary.ConfListFromConf(conf)
+ if err != nil {
+ return err
+ }
+ c.networks = append(c.networks, &Network{
+ cni: c.cniConfig,
+ config: confList,
+ ifName: getIfName(c.prefix, 0),
+ })
+ return nil
+ }
+}
+
+// WithConfListBytes can be used to load network config list directly
+// from byte
+func WithConfListBytes(bytes []byte) CNIOpt {
+ return func(c *libcni) error {
+ confList, err := cnilibrary.ConfListFromBytes(bytes)
+ if err != nil {
+ return err
+ }
+ i := len(c.networks)
+ c.networks = append(c.networks, &Network{
+ cni: c.cniConfig,
+ config: confList,
+ ifName: getIfName(c.prefix, i),
+ })
+ return nil
+ }
+}
+
+// WithConfListFile can be used to load network config
+// from an .conflist file. Supported with absolute fileName
+// with path only.
+func WithConfListFile(fileName string) CNIOpt {
+ return func(c *libcni) error {
+ confList, err := cnilibrary.ConfListFromFile(fileName)
+ if err != nil {
+ return err
+ }
+ i := len(c.networks)
+ c.networks = append(c.networks, &Network{
+ cni: c.cniConfig,
+ config: confList,
+ ifName: getIfName(c.prefix, i),
+ })
+ return nil
+ }
+}
+
+// WithDefaultConf can be used to detect the default network
+// config file from the configured cni config directory and load
+// it.
+// Since the CNI spec does not specify a way to detect default networks,
+// the convention chosen is - the first network configuration in the sorted
+// list of network conf files as the default network.
+func WithDefaultConf(c *libcni) error {
+ return loadFromConfDir(c, c.pluginMaxConfNum)
+}
+
+// WithAllConf can be used to detect all network config
+// files from the configured cni config directory and load
+// them.
+func WithAllConf(c *libcni) error {
+ return loadFromConfDir(c, 0)
+}
+
+// loadFromConfDir detects network config files from the
+// configured cni config directory and load them. max is
+// the maximum network config to load (max i<= 0 means no limit).
+func loadFromConfDir(c *libcni, max int) error {
+ files, err := cnilibrary.ConfFiles(c.pluginConfDir, []string{".conf", ".conflist", ".json"})
+ switch {
+ case err != nil:
+ return errors.Wrapf(ErrRead, "failed to read config file: %v", err)
+ case len(files) == 0:
+ return errors.Wrapf(ErrCNINotInitialized, "no network config found in %s", c.pluginConfDir)
+ }
+
+ // files contains the network config files associated with cni network.
+ // Use lexicographical way as a defined order for network config files.
+ sort.Strings(files)
+ // Since the CNI spec does not specify a way to detect default networks,
+ // the convention chosen is - the first network configuration in the sorted
+ // list of network conf files as the default network and choose the default
+ // interface provided during init as the network interface for this default
+ // network. For every other network use a generated interface id.
+ i := 0
+ var networks []*Network
+ for _, confFile := range files {
+ var confList *cnilibrary.NetworkConfigList
+ if strings.HasSuffix(confFile, ".conflist") {
+ confList, err = cnilibrary.ConfListFromFile(confFile)
+ if err != nil {
+ return errors.Wrapf(ErrInvalidConfig, "failed to load CNI config list file %s: %v", confFile, err)
+ }
+ } else {
+ conf, err := cnilibrary.ConfFromFile(confFile)
+ if err != nil {
+ return errors.Wrapf(ErrInvalidConfig, "failed to load CNI config file %s: %v", confFile, err)
+ }
+ // Ensure the config has a "type" so we know what plugin to run.
+ // Also catches the case where somebody put a conflist into a conf file.
+ if conf.Network.Type == "" {
+ return errors.Wrapf(ErrInvalidConfig, "network type not found in %s", confFile)
+ }
+
+ confList, err = cnilibrary.ConfListFromConf(conf)
+ if err != nil {
+ return errors.Wrapf(ErrInvalidConfig, "failed to convert CNI config file %s to CNI config list: %v", confFile, err)
+ }
+ }
+ if len(confList.Plugins) == 0 {
+ return errors.Wrapf(ErrInvalidConfig, "CNI config list in config file %s has no networks, skipping", confFile)
+
+ }
+ networks = append(networks, &Network{
+ cni: c.cniConfig,
+ config: confList,
+ ifName: getIfName(c.prefix, i),
+ })
+ i++
+ if i == max {
+ break
+ }
+ }
+ if len(networks) == 0 {
+ return errors.Wrapf(ErrCNINotInitialized, "no valid networks found in %s", c.pluginDirs)
+ }
+ c.networks = append(c.networks, networks...)
+ return nil
+}
diff --git a/vendor/github.com/containerd/go-cni/result.go b/vendor/github.com/containerd/go-cni/result.go
new file mode 100644
index 000000000..c2ac94864
--- /dev/null
+++ b/vendor/github.com/containerd/go-cni/result.go
@@ -0,0 +1,106 @@
+/*
+ Copyright The containerd Authors.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+*/
+
+package cni
+
+import (
+ "net"
+
+ "github.com/containernetworking/cni/pkg/types"
+ "github.com/containernetworking/cni/pkg/types/current"
+ "github.com/pkg/errors"
+)
+
+type IPConfig struct {
+ IP net.IP
+ Gateway net.IP
+}
+
+type CNIResult struct {
+ Interfaces map[string]*Config
+ DNS []types.DNS
+ Routes []*types.Route
+}
+
+type Config struct {
+ IPConfigs []*IPConfig
+ Mac string
+ Sandbox string
+}
+
+// GetCNIResultFromResults returns a structured data containing the
+// interface configuration for each of the interfaces created in the namespace.
+// Conforms with
+// Result:
+// a) Interfaces list. Depending on the plugin, this can include the sandbox
+// (eg, container or hypervisor) interface name and/or the host interface
+// name, the hardware addresses of each interface, and details about the
+// sandbox (if any) the interface is in.
+// b) IP configuration assigned to each interface. The IPv4 and/or IPv6 addresses,
+// gateways, and routes assigned to sandbox and/or host interfaces.
+// c) DNS information. Dictionary that includes DNS information for nameservers,
+// domain, search domains and options.
+func (c *libcni) GetCNIResultFromResults(results []*current.Result) (*CNIResult, error) {
+ c.RLock()
+ defer c.RUnlock()
+
+ r := &CNIResult{
+ Interfaces: make(map[string]*Config),
+ }
+
+ // Plugins may not need to return Interfaces in result if
+ // if there are no multiple interfaces created. In that case
+ // all configs should be applied against default interface
+ r.Interfaces[defaultInterface(c.prefix)] = &Config{}
+
+ // Walk through all the results
+ for _, result := range results {
+ // Walk through all the interface in each result
+ for _, intf := range result.Interfaces {
+ r.Interfaces[intf.Name] = &Config{
+ Mac: intf.Mac,
+ Sandbox: intf.Sandbox,
+ }
+ }
+ // Walk through all the IPs in the result and attach it to corresponding
+ // interfaces
+ for _, ipConf := range result.IPs {
+ if err := validateInterfaceConfig(ipConf, len(result.Interfaces)); err != nil {
+ return nil, errors.Wrapf(ErrInvalidResult, "invalid interface config: %v", err)
+ }
+ name := c.getInterfaceName(result.Interfaces, ipConf)
+ r.Interfaces[name].IPConfigs = append(r.Interfaces[name].IPConfigs,
+ &IPConfig{IP: ipConf.Address.IP, Gateway: ipConf.Gateway})
+ }
+ r.DNS = append(r.DNS, result.DNS)
+ r.Routes = append(r.Routes, result.Routes...)
+ }
+ if _, ok := r.Interfaces[defaultInterface(c.prefix)]; !ok {
+ return nil, errors.Wrapf(ErrNotFound, "default network not found for: %s", defaultInterface(c.prefix))
+ }
+ return r, nil
+}
+
+// getInterfaceName returns the interface name if the plugins
+// return the result with associated interfaces. If interface
+// is not present then default interface name is used
+func (c *libcni) getInterfaceName(interfaces []*current.Interface,
+ ipConf *current.IPConfig) string {
+ if ipConf.Interface != nil {
+ return interfaces[*ipConf.Interface].Name
+ }
+ return defaultInterface(c.prefix)
+}
diff --git a/vendor/github.com/containerd/go-cni/testutils.go b/vendor/github.com/containerd/go-cni/testutils.go
new file mode 100644
index 000000000..d9453c8d9
--- /dev/null
+++ b/vendor/github.com/containerd/go-cni/testutils.go
@@ -0,0 +1,78 @@
+/*
+ Copyright The containerd Authors.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+*/
+
+package cni
+
+import (
+ "fmt"
+ "io/ioutil"
+ "os"
+ "path"
+ "testing"
+)
+
+func makeTmpDir(prefix string) (string, error) {
+ tmpDir, err := ioutil.TempDir(os.TempDir(), prefix)
+ if err != nil {
+ return "", err
+ }
+ return tmpDir, nil
+}
+
+func makeFakeCNIConfig(t *testing.T) (string, string) {
+ cniDir, err := makeTmpDir("fakecni")
+ if err != nil {
+ t.Fatalf("Failed to create plugin config dir: %v", err)
+ }
+
+ cniConfDir := path.Join(cniDir, "net.d")
+ err = os.MkdirAll(cniConfDir, 0777)
+ if err != nil {
+ t.Fatalf("Failed to create network config dir: %v", err)
+ }
+
+ networkConfig1 := path.Join(cniConfDir, "mocknetwork1.conf")
+ f1, err := os.Create(networkConfig1)
+ if err != nil {
+ t.Fatalf("Failed to create network config %v: %v", f1, err)
+ }
+ networkConfig2 := path.Join(cniConfDir, "mocknetwork2.conf")
+ f2, err := os.Create(networkConfig2)
+ if err != nil {
+ t.Fatalf("Failed to create network config %v: %v", f2, err)
+ }
+
+ cfg1 := fmt.Sprintf(`{ "name": "%s", "type": "%s", "capabilities": {"portMappings": true} }`, "plugin1", "fakecni")
+ _, err = f1.WriteString(cfg1)
+ if err != nil {
+ t.Fatalf("Failed to write network config file %v: %v", f1, err)
+ }
+ f1.Close()
+ cfg2 := fmt.Sprintf(`{ "name": "%s", "type": "%s", "capabilities": {"portMappings": true} }`, "plugin2", "fakecni")
+ _, err = f2.WriteString(cfg2)
+ if err != nil {
+ t.Fatalf("Failed to write network config file %v: %v", f2, err)
+ }
+ f2.Close()
+ return cniDir, cniConfDir
+}
+
+func tearDownCNIConfig(t *testing.T, confDir string) {
+ err := os.RemoveAll(confDir)
+ if err != nil {
+ t.Fatalf("Failed to cleanup CNI configs: %v", err)
+ }
+}
diff --git a/vendor/github.com/containerd/go-cni/types.go b/vendor/github.com/containerd/go-cni/types.go
new file mode 100644
index 000000000..0b7db1ee0
--- /dev/null
+++ b/vendor/github.com/containerd/go-cni/types.go
@@ -0,0 +1,65 @@
+/*
+ Copyright The containerd Authors.
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
+*/
+
+package cni
+
+const (
+ CNIPluginName = "cni"
+ DefaultNetDir = "/etc/cni/net.d"
+ DefaultCNIDir = "/opt/cni/bin"
+ DefaultMaxConfNum = 1
+ VendorCNIDirTemplate = "%s/opt/%s/bin"
+ DefaultPrefix = "eth"
+)
+
+type config struct {
+ pluginDirs []string
+ pluginConfDir string
+ pluginMaxConfNum int
+ prefix string
+}
+
+type PortMapping struct {
+ HostPort int32
+ ContainerPort int32
+ Protocol string
+ HostIP string
+}
+
+type IPRanges struct {
+ Subnet string
+ RangeStart string
+ RangeEnd string
+ Gateway string
+}
+
+// BandWidth defines the ingress/egress rate and burst limits
+type BandWidth struct {
+ IngressRate uint64
+ IngressBurst uint64
+ EgressRate uint64
+ EgressBurst uint64
+}
+
+// DNS defines the dns config
+type DNS struct {
+ // List of DNS servers of the cluster.
+ Servers []string
+ // List of DNS search domains of the cluster.
+ Searches []string
+ // List of DNS options.
+ Options []string
+}
diff --git a/vendor/github.com/containerd/go-cni/vendor.conf b/vendor/github.com/containerd/go-cni/vendor.conf
new file mode 100644
index 000000000..31d06e0fc
--- /dev/null
+++ b/vendor/github.com/containerd/go-cni/vendor.conf
@@ -0,0 +1,6 @@
+github.com/stretchr/testify b89eecf5ca5db6d3ba60b237ffe3df7bafb7662f
+github.com/davecgh/go-spew 8991bc29aa16c548c550c7ff78260e27b9ab7c73
+github.com/pmezard/go-difflib 792786c7400a136282c1664665ae0a8db921c6c2
+github.com/stretchr/objx 8a3f7159479fbc75b30357fbc48f380b7320f08e
+github.com/containernetworking/cni v0.7.1
+github.com/pkg/errors v0.8.0
diff --git a/vendor/github.com/hashicorp/consul-template/CHANGELOG.md b/vendor/github.com/hashicorp/consul-template/CHANGELOG.md
index e04dcccdb..a64a51225 100644
--- a/vendor/github.com/hashicorp/consul-template/CHANGELOG.md
+++ b/vendor/github.com/hashicorp/consul-template/CHANGELOG.md
@@ -1,3 +1,49 @@
+## v0.22.1 (Nov 08, 2019)
+
+SECURITY:
+
+* curl is vulnerable in the latest alpine docker image [[GH-1302](https://github.com/hashicorp/consul-template/issues/1302)]
+
+## v0.22.0 (September 10, 2019)
+
+IMPROVEMENTS:
+
+* Add rate limiting to consul api calls [[GH-1279](https://github.com/hashicorp/consul-template/pull/1279)]
+* Add `byMeta` function [[GH-1237](https://github.com/hashicorp/consul-template/pull/1237)]
+* Add support for : and = in service tag values [[GH-1149](https://github.com/hashicorp/consul-template/pull/1149), [GH-1049](https://github.com/hashicorp/consul-template/issues/1049)]
+* Add `explodeMap` function [[GH-1148](https://github.com/hashicorp/consul-template/pull/1148)]
+* Don't wait for splay when stopping child runner [[GH-1141](https://github.com/hashicorp/consul-template/pull/1141)]
+* Add `safels` and `safetree` functions [[GH-1132](https://github.com/hashicorp/consul-template/pull/1132)]
+* Support Vault certificates with no lease [[GH-1106](https://github.com/hashicorp/consul-template/pull/1106)]
+* Add wrapper function for go-sockaddr templating [[GH-1087](https://github.com/hashicorp/consul-template/pull/1087)]
+* Build binaries for arm64 platform [[GH-1251](https://github.com/hashicorp/consul-template/pull/1251)]
+
+BUG FIXES:
+
+* Fix arm/arm64 builds by enabling CGO and restricting builds to Linux [workaround for [go/issues/32912](https://github.com/golang/go/issues/32912)]
+
+## v0.21.3 (September 05, 2019)
+
+BUG FIXES:
+
+* Fix regression in non-renewable sleep [[GH-1277](https://github.com/hashicorp/consul-template/pull/1277), [GH-1272](https://github.com/hashicorp/consul-template/issues/1272), [GH-1276](https://github.com/hashicorp/consul-template/issues/1276)]
+
+## v0.21.2 (August 31, 2019)
+
+BUG FIXES:
+
+* Fix regression in backup [[GH-1271](https://github.com/hashicorp/consul-template/pull/1271), [GH-1270](https://github.com/hashicorp/consul-template/issues/1270)]
+
+## v0.21.1 (August 30, 2019)
+
+BUG FIXES:
+
+* Fixed issue in Vault call retry logic [[GH-1269](https://github.com/hashicorp/consul-template/pull/1269), [GH-1224](https://github.com/hashicorp/consul-template/issues/1224)]
+* Fixed race in backup [[GH-1265](https://github.com/hashicorp/consul-template/pull/1265), [GH-1264](https://github.com/hashicorp/consul-template/issues/1264)]
+* Fixed issue when reading deleted secret [[GH-1260](https://github.com/hashicorp/consul-template/pull/1260), [GH-1198](https://github.com/hashicorp/consul-template/issues/1198)]
+* Fix issue with Vault writes [[GH-1257](https://github.com/hashicorp/consul-template/pull/1257), [GH-1252](https://github.com/hashicorp/consul-template/issues/1252)]
+* Fix loop to work with template set integers [[GH-1255](https://github.com/hashicorp/consul-template/pull/1255), [GH-1143](https://github.com/hashicorp/consul-template/issues/1143)]
+
## v0.21.0 (August 05, 2019)
IMPROVEMENTS:
@@ -13,7 +59,7 @@ BUG FIXES:
* Fixed issue with templates not rendering with `-once` [[GH-1227](https://github.com/hashicorp/consul-template/pull/1227), [GH-1196](https://github.com/hashicorp/consul-template/issues/1196), [GH-1207](https://github.com/hashicorp/consul-template/issues/1207)]
* Fixed regression with ~/.vault-token and with vault_agent_token_file not respecting renew_token [[GH-1228](https://github.com/hashicorp/consul-template/issues/1228), [GH-1189](https://github.com/hashicorp/consul-template/issues/1189)]
* CA certificates missing from docker 'light' image [[GH-1200](https://github.com/hashicorp/consul-template/issues/1200)]
-* Fixed issue with dedup data garbage in Consul KV [[GH-1158](https://github.com/hashicorp/consul-template/issues/1158), [[GH-1168](https://github.com/hashicorp/consul-template/issues/1168)]
+* Fixed issue with dedup data garbage in Consul KV [[GH-1158](https://github.com/hashicorp/consul-template/issues/1158), [GH-1168](https://github.com/hashicorp/consul-template/issues/1168)]
* Fixed bad case in import path [[GH-1139](https://github.com/hashicorp/consul-template/issues/1139)]
* Documented limits on using "." in service names [[GH-1205](https://github.com/hashicorp/consul-template/issues/1205)]
diff --git a/vendor/github.com/hashicorp/consul-template/Makefile b/vendor/github.com/hashicorp/consul-template/Makefile
index 0d5e40b50..7d97be30e 100644
--- a/vendor/github.com/hashicorp/consul-template/Makefile
+++ b/vendor/github.com/hashicorp/consul-template/Makefile
@@ -14,11 +14,11 @@ GOTAGS ?=
GOMAXPROCS ?= 4
# Get the project metadata
-GO_DOCKER_VERSION ?= 1.12
+GO_DOCKER_VERSION ?= 1.13
PROJECT := $(shell go list -m -mod=vendor)
OWNER := "hashicorp"
NAME := $(notdir $(PROJECT))
-GIT_COMMIT ?= $(shell git rev-parse --short HEAD)
+GIT_COMMIT ?= $(shell git rev-parse --short HEAD || echo release)
VERSION := $(shell awk -F\" '/Version/ { print $$2; exit }' "${CURRENT_DIR}/version/version.go")
# Current system information
@@ -27,8 +27,9 @@ GOARCH ?= $(shell go env GOARCH)
# Default os-arch combination to build
XC_OS ?= darwin freebsd linux netbsd openbsd solaris windows
-XC_ARCH ?= 386 amd64 arm
-XC_EXCLUDE ?= darwin/arm solaris/386 solaris/arm windows/arm
+XC_ARCH ?= 386 amd64 arm arm64
+# XC_EXCLUDE "arm64" entries excludes both arm and arm64
+XC_EXCLUDE ?= darwin/arm64 freebsd/arm64 netbsd/arm64 openbsd/arm64 solaris/386 solaris/arm64 windows/arm64
# GPG Signing key (blank by default, means no GPG signing)
GPG_KEY ?=
@@ -52,8 +53,15 @@ define make-xc-target
@printf "%s%20s %s\n" "-->" "${1}/${2}:" "${PROJECT} (excluded)"
else
@printf "%s%20s %s\n" "-->" "${1}/${2}:" "${PROJECT}"
+ case "$2" in \
+ arm) export CGO_ENABLED="1" ; \
+ export GOARM=5 \
+ export CC="arm-linux-gnueabi-gcc" ;; \
+ arm64) export CGO_ENABLED="1" ; \
+ export CC="aarch64-linux-gnu-gcc" ;; \
+ *) export CGO_ENABLED="0" ;; \
+ esac ; \
env \
- CGO_ENABLED="0" \
GOOS="${1}" \
GOARCH="${2}" \
go build \
@@ -73,7 +81,16 @@ endef
$(foreach goarch,$(XC_ARCH),$(foreach goos,$(XC_OS),$(eval $(call make-xc-target,$(goos),$(goarch),$(if $(findstring windows,$(goos)),.exe,)))))
# Use docker to create pristine builds for release
+# First build image w/ arm build requirements, then build all binaries
pristine:
+ @docker build \
+ --rm \
+ --force-rm \
+ --no-cache \
+ --compress \
+ --file="docker/pristine/Dockerfile" \
+ --build-arg="GOVERSION=${GO_DOCKER_VERSION}" \
+ --tag="pristine-builder" .
@docker run \
--interactive \
--user $$(id -u):$$(id -g) \
@@ -82,9 +99,9 @@ pristine:
--volume="${CURRENT_DIR}:/go/src/${PROJECT}" \
--volume="${GOPATH}/pkg/mod:/go/pkg/mod" \
--workdir="/go/src/${PROJECT}" \
- --env=CGO_ENABLED="0" \
--env=GO111MODULE=on \
- "golang:${GO_DOCKER_VERSION}" env GOCACHE=/tmp make -j4 build
+ "pristine-builder" \
+ env GOCACHE=/tmp make -j4 build
# dev builds and installs the project locally.
dev:
@@ -229,3 +246,8 @@ _sign:
@echo ""
@echo "And then upload the binaries in dist/!"
.PHONY: _sign
+
+# Add/Update the "Table Of Contents" in the README.md
+toc:
+ @./scripts/readme-toc.sh
+.PHONY: toc
diff --git a/vendor/github.com/hashicorp/consul-template/README.md b/vendor/github.com/hashicorp/consul-template/README.md
index fb8f34dab..0fcd8e816 100644
--- a/vendor/github.com/hashicorp/consul-template/README.md
+++ b/vendor/github.com/hashicorp/consul-template/README.md
@@ -20,6 +20,103 @@ this functionality might prove useful.
---
+## Table of Contents
+
+- [Community Support](#community-support)
+- [Installation](#installation)
+- [Quick Example](#quick-example)
+- [Usage](#usage)
+ - [Command Line Flags](#command-line-flags)
+ - [Configuration File Format](#configuration-file-format)
+ - [Templating Language](#templating-language)
+ - [API Functions](#api-functions)
+ - [datacenters](#datacenters)
+ - [file](#file)
+ - [key](#key)
+ - [keyExists](#keyexists)
+ - [keyOrDefault](#keyordefault)
+ - [ls](#ls)
+ - [safeLs](#safels)
+ - [node](#node)
+ - [nodes](#nodes)
+ - [secret](#secret)
+ - [secrets](#secrets)
+ - [service](#service)
+ - [services](#services)
+ - [tree](#tree)
+ - [safeTree](#safetree)
+ - [Scratch](#scratch)
+ - [scratch.Key](#scratchkey)
+ - [scratch.Get](#scratchget)
+ - [scratch.Set](#scratchset)
+ - [scratch.SetX](#scratchsetx)
+ - [scratch.MapSet](#scratchmapset)
+ - [scratch.MapSetX](#scratchmapsetx)
+ - [scratch.MapValues](#scratchmapvalues)
+ - [Helper Functions](#helper-functions)
+ - [base64Decode](#base64decode)
+ - [base64Encode](#base64encode)
+ - [base64URLDecode](#base64urldecode)
+ - [base64URLEncode](#base64urlencode)
+ - [byKey](#bykey)
+ - [byTag](#bytag)
+ - [byMeta](#bymeta)
+ - [contains](#contains)
+ - [containsAll](#containsall)
+ - [containsAny](#containsany)
+ - [containsNone](#containsnone)
+ - [containsNotAll](#containsnotall)
+ - [env](#env)
+ - [executeTemplate](#executetemplate)
+ - [explode](#explode)
+ - [explodeMap](#explodemap)
+ - [indent](#indent)
+ - [in](#in)
+ - [loop](#loop)
+ - [join](#join)
+ - [trimSpace](#trimspace)
+ - [parseBool](#parsebool)
+ - [parseFloat](#parsefloat)
+ - [parseInt](#parseint)
+ - [parseJSON](#parsejson)
+ - [parseUint](#parseuint)
+ - [plugin](#plugin)
+ - [regexMatch](#regexmatch)
+ - [regexReplaceAll](#regexreplaceall)
+ - [replaceAll](#replaceall)
+ - [split](#split)
+ - [timestamp](#timestamp)
+ - [toJSON](#tojson)
+ - [toJSONPretty](#tojsonpretty)
+ - [toLower](#tolower)
+ - [toTitle](#totitle)
+ - [toTOML](#totoml)
+ - [toUpper](#toupper)
+ - [toYAML](#toyaml)
+ - [sockaddr](#sockaddr)
+ - [Math Functions](#math-functions)
+ - [add](#add)
+ - [subtract](#subtract)
+ - [multiply](#multiply)
+ - [divide](#divide)
+ - [modulo](#modulo)
+- [Plugins](#plugins)
+ - [Authoring Plugins](#authoring-plugins)
+ - [Important Notes](#important-notes)
+- [Caveats](#caveats)
+ - [Dots in Service Names](#dots-in-service-names)
+ - [Once Mode](#once-mode)
+ - [Exec Mode](#exec-mode)
+ - [De-Duplication Mode](#de-duplication-mode)
+ - [Termination on Error](#termination-on-error)
+ - [Command Environment](#command-environment)
+ - [Multi-phase Execution](#multi-phase-execution)
+- [Running and Process Lifecycle](#running-and-process-lifecycle)
+- [Debugging](#debugging)
+- [FAQ](#faq)
+- [Contributing](#contributing)
+
+
## Community Support
If you have questions about how consul-template works, its capabilities or
@@ -272,19 +369,6 @@ vault {
# of the address is required.
address = "https://vault.service.consul:8200"
- # This is the grace period between lease renewal of periodic secrets and secret
- # re-acquisition. When renewing a secret, if the remaining lease is less than or
- # equal to the configured grace, Consul Template will request a new credential.
- # This prevents Vault from revoking the credential at expiration and Consul
- # Template having a stale credential.
- #
- # Note: If you set this to a value that is higher than your default TTL or
- # max TTL (as set in vault), Consul Template will always read a new secret!
- #
- # This should also be less than or around 1/3 of your TTL for a predictable
- # behaviour. See https://github.com/hashicorp/vault/issues/3414
- grace = "5m"
-
# This is a Vault Enterprise namespace to use for reading/writing secrets.
#
# This value can also be specified via the environment variable VAULT_NAMESPACE.
@@ -719,6 +803,23 @@ maxconns:15
minconns:5
```
+##### `safeLs`
+
+Same as [ls](#ls), but refuse to render template, if the KV prefix query return blank/empty data.
+
+This is especially useful, for rendering mission critical files, that are being populated by consul-template.
+
+For example:
+
+```text
+/root/.ssh/authorized_keys
+/etc/sysconfig/iptables
+```
+
+Using `safeLs` on empty prefixes will result in template output not being rendered at all.
+
+To learn how `safeLs` was born see [CT-1131](https://github.com/hashicorp/consul-template/issues/1131) [C-3975](https://github.com/hashicorp/consul/issues/3975) and [CR-82](https://github.com/hashicorp/consul-replicate/issues/82).
+
##### `node`
Query [Consul][consul] for a node in the catalog.
@@ -859,18 +960,16 @@ secret in plain-text on disk. If an attacker is able to get access to the file,
they will have access to plain-text secrets.
Please note that Vault does not support blocking queries. As a result, Consul
-Template will not immediately reload in the event a secret is changed as it does
-with Consul's key-value store. Consul Template will fetch a new secret at half
-the lease duration of the original secret. For example, most items in Vault's
-generic secret backend have a default 30 day lease. This means Consul Template
-will renew the secret every 15 days. As such, it is recommended that a smaller
-lease duration be used when generating the initial secret to force Consul
-Template to renew more often.
+Template will not immediately reload in the event a secret is changed as it
+does with Consul's key-value store. Consul Template will renew the secret with
+Vault's [Renewer API](https://godoc.org/github.com/hashicorp/vault/api#Renewer).
+The Renew API tries to use most of the time the secret is good, renewing at
+around 90% of the lease time (as set by Vault).
Also consider enabling `error_on_missing_key` when working with templates that
will interact with Vault. By default, Consul Template uses Go's templating
language. When accessing a struct field or map key that does not exist, it
-defaults to printing "". This may not be the desired behavior,
+defaults to printing ``. This may not be the desired behavior,
especially when working with passwords or other data. As such, it is recommended
you set:
@@ -956,7 +1055,7 @@ The example above is querying Consul for healthy "web" services, in the "east-aw
```liquid
{{ range service "web" }}
-server {{ .Name }}{{ .Address }}:{{ .Port }}{{ end }}
+server {{ .Name }} {{ .Address }}:{{ .Port }}{{ end }}
```
renders the IP addresses of all _healthy_ nodes with a logical service named
@@ -1060,6 +1159,23 @@ nested/config/value "value"
Unlike `ls`, `tree` returns **all** keys under the prefix, just like the Unix
`tree` command.
+##### `safeTree`
+
+Same as [tree](#tree), but refuse to render template, if the KV prefix query return blank/empty data.
+
+This is especially useful, for rendering mission critical files, that are being populated by consul-template.
+
+For example:
+
+```text
+/root/.ssh/authorized_keys
+/etc/sysconfig/iptables
+```
+
+Using `safeTree` on empty prefixes will result in template output not being rendered at all.
+
+To learn how `safeTree` was born see [CT-1131](https://github.com/hashicorp/consul-template/issues/1131) [C-3975](https://github.com/hashicorp/consul/issues/3975) and [CR-82](https://github.com/hashicorp/consul-replicate/issues/82).
+
---
#### Scratch
@@ -1250,6 +1366,81 @@ Takes the list of services returned by the [`service`](#service) or
{{ end }}{{ end }}
```
+##### `byMeta`
+
+Takes a list of services returned by the [`service`](#service) or
+[`services`](#services) and returns a map that groups services by ServiceMeta values.
+Multiple service meta keys can be passed as a comma separated string. `|int` can be added to
+a meta key to convert numbers from service meta values to padded numbers in `printf "%05d" % value`
+format (useful for sorting as Go Template sorts maps by keys).
+
+**Example**:
+
+If we have the following services registered in Consul:
+
+```json
+{
+ "Services": [
+ {
+ "ID": "redis-dev-1",
+ "Name": "redis",
+ "ServiceMeta": {
+ "environment": "dev",
+ "shard_number": "1"
+ },
+ ...
+ },
+ {
+ "ID": "redis-prod-1",
+ "Name": "redis",
+ "ServiceMeta": {
+ "environment": "prod",
+ "shard_number": "1"
+ },
+ ...
+ },
+ {
+ "ID": "redis-prod-2",
+ "Name": "redis",
+ "ServiceMeta": {
+ "environment": "prod",
+ "shard_number": "2",
+ },
+ ...
+ }
+ ]
+}
+```
+
+```liquid
+{{ service "redis|any" | byMeta "environment,shard_number|int" | toJSON }}
+```
+
+The code above will produce a map of services grouped by meta:
+
+```json
+{
+ "dev_00001": [
+ {
+ "ID": "redis-dev-1",
+ ...
+ }
+ ],
+ "prod_00001": [
+ {
+ "ID": "redis-prod-1",
+ ...
+ }
+ ],
+ "prod_00002": [
+ {
+ "ID": "redis-prod-2",
+ ...
+ }
+ ]
+}
+```
+
##### `contains`
Determines if a needle is within an iterable element.
@@ -1260,7 +1451,7 @@ Determines if a needle is within an iterable element.
{{ end }}
```
-#### `containsAll`
+##### `containsAll`
Returns `true` if all needles are within an iterable element, or `false`
otherwise. Returns `true` if the list of needles is empty.
@@ -1271,7 +1462,7 @@ otherwise. Returns `true` if the list of needles is empty.
{{ end }}
```
-#### `containsAny`
+##### `containsAny`
Returns `true` if any needle is within an iterable element, or `false`
otherwise. Returns `false` if the list of needles is empty.
@@ -1282,7 +1473,7 @@ otherwise. Returns `false` if the list of needles is empty.
{{ end }}
```
-#### `containsNone`
+##### `containsNone`
Returns `true` if no needles are within an iterable element, or `false`
otherwise. Returns `true` if the list of needles is empty.
@@ -1293,7 +1484,7 @@ otherwise. Returns `true` if the list of needles is empty.
{{ end }}
```
-#### `containsNotAll`
+##### `containsNotAll`
Returns `true` if some needle is not within an iterable element, or `false`
otherwise. Returns `false` if the list of needles is empty.
@@ -1365,6 +1556,17 @@ You will need to have a reasonable format about your data in Consul. Please see
[Go's text/template package][text-template] for more information.
+##### `explodeMap`
+
+Takes the value of a map and converts it into a deeply-nested map for parsing/traversing,
+using the same logic as `explode`.
+
+```liquid
+{{ scratch.MapSet "example", "foo/bar", "a" }}
+{{ scratch.MapSet "example", "foo/baz", "b" }}
+{{ scratch.Get "example" | explodeMap | toYAML }}
+```
+
##### `indent`
Indents a block of text by prefixing N number of spaces per line.
@@ -1705,6 +1907,18 @@ minconns: "2"
Note: Consul stores all KV data as strings. Thus true is "true", 1 is "1", etc.
+##### `sockaddr`
+
+Takes a quote-escaped template string as an argument and passes it on to
+[hashicorp/go-sockaddr](https://github.com/hashicorp/go-sockaddr) templating engine.
+
+```liquid
+{{ sockaddr "GetPrivateIP" }}
+```
+
+See [hashicorp/go-sockaddr documentation](https://godoc.org/github.com/hashicorp/go-sockaddr)
+for more information.
+
---
#### Math Functions
@@ -2208,12 +2422,7 @@ A: Configuration management tools are designed to be used in unison with Consul
## Contributing
-To build and install Consul Template locally, you will need to install the
-Docker engine:
-
-- [Docker for Mac](https://docs.docker.com/engine/installation/mac/)
-- [Docker for Windows](https://docs.docker.com/engine/installation/windows/)
-- [Docker for Linux](https://docs.docker.com/engine/installation/linux/ubuntulinux/)
+To build and install Envconsul locally, you will need to [install Go][go].
Clone the repository:
@@ -2255,3 +2464,4 @@ go test ./... -run SomeTestFunction_name
[releases]: https://releases.hashicorp.com/consul-template "Consul Template Releases"
[text-template]: https://golang.org/pkg/text/template/ "Go's text/template package"
[vault]: https://www.vaultproject.io "Vault by HashiCorp"
+[go]: https://golang.org "Go programming language"
diff --git a/vendor/github.com/hashicorp/consul-template/child/child.go b/vendor/github.com/hashicorp/consul-template/child/child.go
index ebee97b97..3c94816f5 100644
--- a/vendor/github.com/hashicorp/consul-template/child/child.go
+++ b/vendor/github.com/hashicorp/consul-template/child/child.go
@@ -197,7 +197,7 @@ func (c *Child) Reload() error {
c.Lock()
defer c.Unlock()
- c.kill()
+ c.kill(false)
return c.start()
}
@@ -223,7 +223,7 @@ func (c *Child) Kill() {
log.Printf("[INFO] (child) killing process")
c.Lock()
defer c.Unlock()
- c.kill()
+ c.kill(false)
}
// Stop behaves almost identical to Kill except it suppresses future processes
@@ -231,6 +231,17 @@ func (c *Child) Kill() {
// process from sending its value back up the exit channel. This is useful
// when doing a graceful shutdown of an application.
func (c *Child) Stop() {
+ c.internalStop(false)
+}
+
+// StopImmediately behaves almost identical to Stop except it does not wait
+// for any random splay if configured. This is used for performing a fast
+// shutdown of consul-template and its children when a kill signal is received.
+func (c *Child) StopImmediately() {
+ c.internalStop(true)
+}
+
+func (c *Child) internalStop(immediately bool) {
log.Printf("[INFO] (child) stopping process")
c.Lock()
@@ -242,7 +253,7 @@ func (c *Child) Stop() {
log.Printf("[WARN] (child) already stopped")
return
}
- c.kill()
+ c.kill(immediately)
close(c.stopCh)
c.stopped = true
}
@@ -354,7 +365,7 @@ func (c *Child) reload() error {
return c.signal(c.reloadSignal)
}
-func (c *Child) kill() {
+func (c *Child) kill(immediately bool) {
if !c.running() {
return
}
@@ -362,13 +373,15 @@ func (c *Child) kill() {
exited := false
process := c.cmd.Process
- if c.cmd.ProcessState == nil {
+ if c.cmd.ProcessState != nil {
+ log.Printf("[DEBUG] (child) Kill() called but process dead; not waiting for splay.")
+ } else if immediately {
+ log.Printf("[DEBUG] (child) Kill() called but performing immediate shutdown; not waiting for splay.")
+ } else {
select {
case <-c.stopCh:
case <-c.randomSplay():
}
- } else {
- log.Printf("[DEBUG] (runner) Kill() called but process dead; not waiting for splay.")
}
if c.killSignal != nil {
diff --git a/vendor/github.com/hashicorp/consul-template/cli.go b/vendor/github.com/hashicorp/consul-template/cli.go
index 2ce9e0883..52b99c27a 100644
--- a/vendor/github.com/hashicorp/consul-template/cli.go
+++ b/vendor/github.com/hashicorp/consul-template/cli.go
@@ -152,7 +152,7 @@ func (cli *CLI) Run(args []string) int {
go runner.Start()
case *config.KillSignal:
fmt.Fprintf(cli.errStream, "Cleaning up...\n")
- runner.Stop()
+ runner.StopImmediately()
return ExitCodeInterrupt
case signals.SignalLookup["SIGCHLD"]:
// The SIGCHLD signal is sent to the parent of a child process when it
@@ -731,11 +731,6 @@ Options:
-vault-addr=
Sets the address of the Vault server
- -vault-grace=
- Sets the grace period between lease renewal and secret re-acquisition - if
- the remaining lease duration is less than this value, Consul Template will
- acquire a new secret from Vault
-
-vault-renew-token
Periodically renew the provided Vault API token - this defaults to "true"
and will renew the token at half of the lease duration
diff --git a/vendor/github.com/hashicorp/consul-template/dependency/dependency.go b/vendor/github.com/hashicorp/consul-template/dependency/dependency.go
index 04c16b1a1..c9161f82f 100644
--- a/vendor/github.com/hashicorp/consul-template/dependency/dependency.go
+++ b/vendor/github.com/hashicorp/consul-template/dependency/dependency.go
@@ -18,7 +18,7 @@ const (
nodeNameRe = `(?P[[:word:]\.\-\_]+)`
nearRe = `(~(?P[[:word:]\.\-\_]+))?`
prefixRe = `/?(?P[^@]+)`
- tagRe = `((?P[[:word:]\.\-\_]+)\.)?`
+ tagRe = `((?P[[:word:]=:\.\-\_]+)\.)?`
)
type Type int
diff --git a/vendor/github.com/hashicorp/consul-template/dependency/vault_common.go b/vendor/github.com/hashicorp/consul-template/dependency/vault_common.go
index 213c63293..6abe69cfd 100644
--- a/vendor/github.com/hashicorp/consul-template/dependency/vault_common.go
+++ b/vendor/github.com/hashicorp/consul-template/dependency/vault_common.go
@@ -7,6 +7,9 @@ import (
"strings"
"time"
+ "crypto/x509"
+ "encoding/pem"
+
"github.com/hashicorp/vault/api"
)
@@ -64,15 +67,80 @@ type SecretWrapInfo struct {
WrappedAccessor string
}
-// vaultRenewDuration accepts a secret and returns the recommended amount of
+//
+type renewer interface {
+ Dependency
+ stopChan() chan struct{}
+ secrets() (*Secret, *api.Secret)
+}
+
+func renewSecret(clients *ClientSet, d renewer) error {
+ log.Printf("[TRACE] %s: starting renewer", d)
+
+ secret, vaultSecret := d.secrets()
+ renewer, err := clients.Vault().NewRenewer(&api.RenewerInput{
+ Secret: vaultSecret,
+ })
+ if err != nil {
+ return err
+ }
+ go renewer.Renew()
+ defer renewer.Stop()
+
+ for {
+ select {
+ case err := <-renewer.DoneCh():
+ if err != nil {
+ log.Printf("[WARN] %s: failed to renew: %s", d, err)
+ }
+ log.Printf("[WARN] %s: renewer done (maybe the lease expired)", d)
+ return nil
+ case renewal := <-renewer.RenewCh():
+ log.Printf("[TRACE] %s: successfully renewed", d)
+ printVaultWarnings(d, renewal.Secret.Warnings)
+ updateSecret(secret, renewal.Secret)
+ case <-d.stopChan():
+ return ErrStopped
+ }
+ }
+}
+
+// durationFrom cert gets the duration of validity from cert data and
+// returns that value as an integer number of seconds
+func durationFromCert(certData string) int {
+ block, _ := pem.Decode([]byte(certData))
+ if block == nil {
+ return -1
+ }
+ cert, err := x509.ParseCertificate(block.Bytes)
+ if err != nil {
+ log.Printf("[WARN] Unable to parse certificate data: %s", err)
+ return -1
+ }
+
+ return int(cert.NotAfter.Sub(cert.NotBefore).Seconds())
+}
+
+// leaseCheckWait accepts a secret and returns the recommended amount of
// time to sleep.
-func vaultRenewDuration(s *Secret) time.Duration {
+func leaseCheckWait(s *Secret) time.Duration {
// Handle whether this is an auth or a regular secret.
base := s.LeaseDuration
if s.Auth != nil && s.Auth.LeaseDuration > 0 {
base = s.Auth.LeaseDuration
}
+ // Handle if this is a certificate with no lease
+ if certInterface, ok := s.Data["certificate"]; ok && s.LeaseID == "" {
+ if certData, ok := certInterface.(string); ok {
+ newDuration := durationFromCert(certData)
+ if newDuration > 0 {
+ log.Printf("[DEBUG] Found certificate and set lease duration to %d seconds", newDuration)
+ base = newDuration
+ }
+ }
+ }
+
// Ensure we have a lease duration, since sometimes this can be zero.
if base <= 0 {
base = int(VaultDefaultLeaseDuration.Seconds())
diff --git a/vendor/github.com/hashicorp/consul-template/dependency/vault_read.go b/vendor/github.com/hashicorp/consul-template/dependency/vault_read.go
index eae6fc916..00ebf27ec 100644
--- a/vendor/github.com/hashicorp/consul-template/dependency/vault_read.go
+++ b/vendor/github.com/hashicorp/consul-template/dependency/vault_read.go
@@ -18,7 +18,8 @@ var (
// VaultReadQuery is the dependency to Vault for a secret
type VaultReadQuery struct {
- stopCh chan struct{}
+ stopCh chan struct{}
+ sleepCh chan time.Duration
rawPath string
queryValues url.Values
@@ -45,81 +46,70 @@ func NewVaultReadQuery(s string) (*VaultReadQuery, error) {
return &VaultReadQuery{
stopCh: make(chan struct{}, 1),
+ sleepCh: make(chan time.Duration, 1),
rawPath: secretURL.Path,
queryValues: secretURL.Query(),
}, nil
}
// Fetch queries the Vault API
-func (d *VaultReadQuery) Fetch(clients *ClientSet, opts *QueryOptions) (interface{}, *ResponseMetadata, error) {
+func (d *VaultReadQuery) Fetch(clients *ClientSet, opts *QueryOptions,
+) (interface{}, *ResponseMetadata, error) {
select {
case <-d.stopCh:
return nil, nil, ErrStopped
default:
}
+ select {
+ case dur := <-d.sleepCh:
+ time.Sleep(dur)
+ default:
+ }
- opts = opts.Merge(&QueryOptions{})
+ firstRun := d.secret == nil
- if d.secret != nil {
- if vaultSecretRenewable(d.secret) {
- log.Printf("[TRACE] %s: starting renewer", d)
-
- renewer, err := clients.Vault().NewRenewer(&api.RenewerInput{
- Grace: opts.VaultGrace,
- Secret: d.vaultSecret,
- })
- if err != nil {
- return nil, nil, errors.Wrap(err, d.String())
- }
- go renewer.Renew()
- defer renewer.Stop()
-
- RENEW:
- for {
- select {
- case err := <-renewer.DoneCh():
- if err != nil {
- log.Printf("[WARN] %s: failed to renew: %s", d, err)
- }
- log.Printf("[WARN] %s: renewer returned (maybe the lease expired)", d)
- break RENEW
- case renewal := <-renewer.RenewCh():
- log.Printf("[TRACE] %s: successfully renewed", d)
- printVaultWarnings(d, renewal.Secret.Warnings)
- updateSecret(d.secret, renewal.Secret)
- case <-d.stopCh:
- return nil, nil, ErrStopped
- }
- }
- } else {
- // The secret isn't renewable, probably the generic secret backend.
- dur := vaultRenewDuration(d.secret)
- log.Printf("[TRACE] %s: secret is not renewable, sleeping for %s", d, dur)
- select {
- case <-time.After(dur):
- // The lease is almost expired, it's time to request a new one.
- case <-d.stopCh:
- return nil, nil, ErrStopped
- }
+ if !firstRun && vaultSecretRenewable(d.secret) {
+ err := renewSecret(clients, d)
+ if err != nil {
+ return nil, nil, errors.Wrap(err, d.String())
}
}
- // We don't have a secret, or the prior renewal failed
- vaultSecret, err := d.readSecret(clients, opts)
+ err := d.fetchSecret(clients, opts)
if err != nil {
return nil, nil, errors.Wrap(err, d.String())
}
- // Print any warnings
- printVaultWarnings(d, vaultSecret.Warnings)
-
- // Create the cloned secret which will be exposed to the template.
- d.vaultSecret = vaultSecret
- d.secret = transformSecret(vaultSecret)
+ if !vaultSecretRenewable(d.secret) {
+ dur := leaseCheckWait(d.secret)
+ log.Printf("[TRACE] %s: non-renewable secret, set sleep for %s", d, dur)
+ d.sleepCh <- dur
+ }
return respWithMetadata(d.secret)
}
+func (d *VaultReadQuery) fetchSecret(clients *ClientSet, opts *QueryOptions,
+) error {
+ opts = opts.Merge(&QueryOptions{})
+ vaultSecret, err := d.readSecret(clients, opts)
+ if err == nil {
+ printVaultWarnings(d, vaultSecret.Warnings)
+ d.vaultSecret = vaultSecret
+ // the cloned secret which will be exposed to the template
+ d.secret = transformSecret(vaultSecret)
+ }
+ return err
+}
+
+func (d *VaultReadQuery) stopChan() chan struct{} {
+ return d.stopCh
+}
+
+func (d *VaultReadQuery) secrets() (*Secret, *api.Secret) {
+ return d.secret, d.vaultSecret
+}
+
// CanShare returns if this dependency is shareable.
func (d *VaultReadQuery) CanShare() bool {
return false
@@ -147,7 +137,8 @@ func (d *VaultReadQuery) readSecret(clients *ClientSet, opts *QueryOptions) (*ap
if d.isKVv2 == nil {
mountPath, isKVv2, err := isKVv2(vaultClient, d.rawPath)
if err != nil {
- log.Printf("[WARN] %s: failed to check if %s is KVv2, assume not: %s", d, d.rawPath, err)
+ log.Printf("[WARN] %s: failed to check if %s is KVv2, "+
+ "assume not: %s", d, d.rawPath, err)
isKVv2 = false
d.secretPath = d.rawPath
} else if isKVv2 {
@@ -163,12 +154,22 @@ func (d *VaultReadQuery) readSecret(clients *ClientSet, opts *QueryOptions) (*ap
Path: "/v1/" + d.secretPath,
RawQuery: queryString,
})
- vaultSecret, err := vaultClient.Logical().ReadWithData(d.secretPath, d.queryValues)
+ vaultSecret, err := vaultClient.Logical().ReadWithData(d.secretPath,
+ d.queryValues)
+
if err != nil {
return nil, errors.Wrap(err, d.String())
}
- if vaultSecret == nil {
+ if vaultSecret == nil || deletedKVv2(vaultSecret) {
return nil, fmt.Errorf("no secret exists at %s", d.secretPath)
}
return vaultSecret, nil
}
+
+func deletedKVv2(s *api.Secret) bool {
+ switch md := s.Data["metadata"].(type) {
+ case map[string]interface{}:
+ return md["deletion_time"] != ""
+ }
+ return false
+}
diff --git a/vendor/github.com/hashicorp/consul-template/dependency/vault_token.go b/vendor/github.com/hashicorp/consul-template/dependency/vault_token.go
index a3c7f4c87..93ad5984a 100644
--- a/vendor/github.com/hashicorp/consul-template/dependency/vault_token.go
+++ b/vendor/github.com/hashicorp/consul-template/dependency/vault_token.go
@@ -1,9 +1,6 @@
package dependency
import (
- "log"
- "time"
-
"github.com/hashicorp/vault/api"
"github.com/pkg/errors"
)
@@ -37,66 +34,33 @@ func NewVaultTokenQuery(token string) (*VaultTokenQuery, error) {
}
// Fetch queries the Vault API
-func (d *VaultTokenQuery) Fetch(clients *ClientSet, opts *QueryOptions) (interface{}, *ResponseMetadata, error) {
+func (d *VaultTokenQuery) Fetch(clients *ClientSet, opts *QueryOptions,
+) (interface{}, *ResponseMetadata, error) {
select {
case <-d.stopCh:
return nil, nil, ErrStopped
default:
}
- opts = opts.Merge(&QueryOptions{})
-
if vaultSecretRenewable(d.secret) {
- log.Printf("[TRACE] %s: starting renewer", d)
-
- renewer, err := clients.Vault().NewRenewer(&api.RenewerInput{
- Grace: opts.VaultGrace,
- Secret: d.vaultSecret,
- })
+ err := renewSecret(clients, d)
if err != nil {
return nil, nil, errors.Wrap(err, d.String())
}
- go renewer.Renew()
- defer renewer.Stop()
-
- RENEW:
- for {
- select {
- case err := <-renewer.DoneCh():
- if err != nil {
- log.Printf("[WARN] %s: failed to renew: %s", d, err)
- }
- log.Printf("[WARN] %s: renewer returned (maybe the lease expired)", d)
- break RENEW
- case renewal := <-renewer.RenewCh():
- log.Printf("[TRACE] %s: successfully renewed", d)
- printVaultWarnings(d, renewal.Secret.Warnings)
- updateSecret(d.secret, renewal.Secret)
- case <-d.stopCh:
- return nil, nil, ErrStopped
- }
- }
- }
-
- // The secret isn't renewable, probably the generic secret backend.
- // TODO This is incorrect when given a non-renewable template. We should
- // instead to a lookup self to determine the lease duration.
- dur := vaultRenewDuration(d.secret)
- if dur < opts.VaultGrace {
- dur = opts.VaultGrace
- }
-
- log.Printf("[TRACE] %s: token is not renewable, sleeping for %s", d, dur)
- select {
- case <-time.After(dur):
- // The lease is almost expired, it's time to request a new one.
- case <-d.stopCh:
- return nil, nil, ErrStopped
+ renewSecret(clients, d)
}
return nil, nil, ErrLeaseExpired
}
+func (d *VaultTokenQuery) stopChan() chan struct{} {
+ return d.stopCh
+}
+
+func (d *VaultTokenQuery) secrets() (*Secret, *api.Secret) {
+ return d.secret, d.vaultSecret
+}
+
// CanShare returns if this dependency is shareable.
func (d *VaultTokenQuery) CanShare() bool {
return false
diff --git a/vendor/github.com/hashicorp/consul-template/dependency/vault_write.go b/vendor/github.com/hashicorp/consul-template/dependency/vault_write.go
index 22aad3aa2..c2841712f 100644
--- a/vendor/github.com/hashicorp/consul-template/dependency/vault_write.go
+++ b/vendor/github.com/hashicorp/consul-template/dependency/vault_write.go
@@ -21,7 +21,8 @@ var (
// VaultWriteQuery is the dependency to Vault for a secret
type VaultWriteQuery struct {
- stopCh chan struct{}
+ stopCh chan struct{}
+ sleepCh chan time.Duration
path string
data map[string]interface{}
@@ -42,6 +43,7 @@ func NewVaultWriteQuery(s string, d map[string]interface{}) (*VaultWriteQuery, e
return &VaultWriteQuery{
stopCh: make(chan struct{}, 1),
+ sleepCh: make(chan time.Duration, 1),
path: s,
data: d,
dataHash: sha1Map(d),
@@ -49,75 +51,62 @@ func NewVaultWriteQuery(s string, d map[string]interface{}) (*VaultWriteQuery, e
}
// Fetch queries the Vault API
-func (d *VaultWriteQuery) Fetch(clients *ClientSet, opts *QueryOptions) (interface{}, *ResponseMetadata, error) {
+func (d *VaultWriteQuery) Fetch(clients *ClientSet, opts *QueryOptions,
+) (interface{}, *ResponseMetadata, error) {
select {
case <-d.stopCh:
return nil, nil, ErrStopped
default:
}
+ select {
+ case dur := <-d.sleepCh:
+ time.Sleep(dur)
+ default:
+ }
- opts = opts.Merge(&QueryOptions{})
+ firstRun := d.secret == nil
- if d.secret != nil {
- if vaultSecretRenewable(d.secret) {
- log.Printf("[TRACE] %s: starting renewer", d)
-
- renewer, err := clients.Vault().NewRenewer(&api.RenewerInput{
- Grace: opts.VaultGrace,
- Secret: d.vaultSecret,
- })
- if err != nil {
- return nil, nil, errors.Wrap(err, d.String())
- }
- go renewer.Renew()
- defer renewer.Stop()
-
- RENEW:
- for {
- select {
- case err := <-renewer.DoneCh():
- if err != nil {
- log.Printf("[WARN] %s: failed to renew: %s", d, err)
- }
- log.Printf("[WARN] %s: renewer returned (maybe the lease expired)", d)
- break RENEW
- case renewal := <-renewer.RenewCh():
- log.Printf("[TRACE] %s: successfully renewed", d)
- printVaultWarnings(d, renewal.Secret.Warnings)
- updateSecret(d.secret, renewal.Secret)
- case <-d.stopCh:
- return nil, nil, ErrStopped
- }
- }
- } else {
- // The secret isn't renewable, probably the generic secret backend.
- dur := vaultRenewDuration(d.secret)
- log.Printf("[TRACE] %s: secret is not renewable, sleeping for %s", d, dur)
- select {
- case <-time.After(dur):
- // The lease is almost expired, it's time to request a new one.
- case <-d.stopCh:
- return nil, nil, ErrStopped
- }
+ if !firstRun && vaultSecretRenewable(d.secret) {
+ err := renewSecret(clients, d)
+ if err != nil {
+ return nil, nil, errors.Wrap(err, d.String())
}
}
- // We don't have a secret, or the prior renewal failed
+ opts = opts.Merge(&QueryOptions{})
vaultSecret, err := d.writeSecret(clients, opts)
if err != nil {
return nil, nil, errors.Wrap(err, d.String())
}
- // Print any warnings
- printVaultWarnings(d, vaultSecret.Warnings)
+ // vaultSecret == nil when writing to KVv1 engines
+ if vaultSecret == nil {
+ return respWithMetadata(d.secret)
+ }
- // Create the cloned secret which will be exposed to the template.
+ printVaultWarnings(d, vaultSecret.Warnings)
d.vaultSecret = vaultSecret
+ // cloned secret which will be exposed to the template
d.secret = transformSecret(vaultSecret)
+ if !vaultSecretRenewable(d.secret) {
+ dur := leaseCheckWait(d.secret)
+ log.Printf("[TRACE] %s: non-renewable secret, set sleep for %s", d, dur)
+ d.sleepCh <- dur
+ }
+
return respWithMetadata(d.secret)
}
+// meet renewer interface
+func (d *VaultWriteQuery) stopChan() chan struct{} {
+ return d.stopCh
+}
+
+func (d *VaultWriteQuery) secrets() (*Secret, *api.Secret) {
+ return d.secret, d.vaultSecret
+}
+
// CanShare returns if this dependency is shareable.
func (d *VaultWriteQuery) CanShare() bool {
return false
@@ -168,14 +157,20 @@ func (d *VaultWriteQuery) writeSecret(clients *ClientSet, opts *QueryOptions) (*
RawQuery: opts.String(),
})
- vaultSecret, err := clients.Vault().Logical().Write(d.path, d.data)
+ data := d.data
+
+ _, isv2, _ := isKVv2(clients.Vault(), d.path)
+ if isv2 {
+ data = map[string]interface{}{"data": d.data}
+ }
+
+ vaultSecret, err := clients.Vault().Logical().Write(d.path, data)
if err != nil {
return nil, errors.Wrap(err, d.String())
}
- if vaultSecret == nil {
- if _, isv2, _ := isKVv2(clients.Vault(), d.path); isv2 {
- return nil, fmt.Errorf("no secret exists at %s", d.path)
- }
+ // vaultSecret is always nil when KVv1 engine (isv2==false)
+ if isv2 && vaultSecret == nil {
+ return nil, fmt.Errorf("no secret exists at %s", d.path)
}
return vaultSecret, nil
diff --git a/vendor/github.com/hashicorp/consul-template/go.mod b/vendor/github.com/hashicorp/consul-template/go.mod
index 4698887d3..a449ad5ba 100644
--- a/vendor/github.com/hashicorp/consul-template/go.mod
+++ b/vendor/github.com/hashicorp/consul-template/go.mod
@@ -7,13 +7,14 @@ require (
github.com/armon/go-metrics v0.0.0-20190430140413-ec5e00d3c878 // indirect
github.com/frankban/quicktest v1.4.0 // indirect
github.com/google/btree v1.0.0 // indirect
- github.com/hashicorp/consul/api v1.1.0
- github.com/hashicorp/consul/sdk v0.1.1
+ github.com/hashicorp/consul/api v1.2.0
+ github.com/hashicorp/consul/sdk v0.2.0
github.com/hashicorp/go-gatedio v0.5.0
github.com/hashicorp/go-immutable-radix v1.1.0 // indirect
github.com/hashicorp/go-msgpack v0.5.5 // indirect
github.com/hashicorp/go-multierror v1.0.0
github.com/hashicorp/go-rootcerts v1.0.1
+ github.com/hashicorp/go-sockaddr v1.0.2
github.com/hashicorp/go-syslog v1.0.0
github.com/hashicorp/golang-lru v0.5.3 // indirect
github.com/hashicorp/hcl v1.0.0
diff --git a/vendor/github.com/hashicorp/consul-template/go.sum b/vendor/github.com/hashicorp/consul-template/go.sum
index 4fd78bc91..648fcc967 100644
--- a/vendor/github.com/hashicorp/consul-template/go.sum
+++ b/vendor/github.com/hashicorp/consul-template/go.sum
@@ -36,11 +36,10 @@ github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ
github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
github.com/google/go-cmp v0.3.0 h1:crn/baboCvb5fXaQ0IJ1SGTsTVrWpDsCWC8EGETZijY=
github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
-github.com/hashicorp/consul v1.5.3 h1:EmTWRf/cuqZk6Ug9tgFUVE9xNgJPpmBvJwJMvm+agSk=
-github.com/hashicorp/consul/api v1.1.0 h1:BNQPM9ytxj6jbjjdRPioQ94T6YXriSopn0i8COv6SRA=
-github.com/hashicorp/consul/api v1.1.0/go.mod h1:VmuI/Lkw1nC05EYQWNKwWGbkg+FbDBtguAZLlVdkD9Q=
-github.com/hashicorp/consul/sdk v0.1.1 h1:LnuDWGNsoajlhGyHJvuWW6FVqRl8JOTPqS6CPTsYjhY=
-github.com/hashicorp/consul/sdk v0.1.1/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8=
+github.com/hashicorp/consul/api v1.2.0 h1:oPsuzLp2uk7I7rojPKuncWbZ+m5TMoD4Ivs+2Rkeh4Y=
+github.com/hashicorp/consul/api v1.2.0/go.mod h1:1SIkFYi2ZTXUE5Kgt179+4hH33djo11+0Eo2XgTAtkw=
+github.com/hashicorp/consul/sdk v0.2.0 h1:GWFYFmry/k4b1hEoy7kSkmU8e30GAyI4VZHk0fRxeL4=
+github.com/hashicorp/consul/sdk v0.2.0/go.mod h1:VKf9jXwCTEY1QZP2MOLRhb5i/I/ssyNV1vwHyQBF0x8=
github.com/hashicorp/errwrap v1.0.0 h1:hLrqtEDnRye3+sgx6z4qVLNuviH3MR5aQ0ykNJa/UYA=
github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
github.com/hashicorp/go-cleanhttp v0.5.0/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80=
diff --git a/vendor/github.com/hashicorp/consul-template/manager/runner.go b/vendor/github.com/hashicorp/consul-template/manager/runner.go
index 496cb05e0..877f4bf94 100644
--- a/vendor/github.com/hashicorp/consul-template/manager/runner.go
+++ b/vendor/github.com/hashicorp/consul-template/manager/runner.go
@@ -390,26 +390,13 @@ func (r *Runner) Start() {
// Stop halts the execution of this runner and its subprocesses.
func (r *Runner) Stop() {
- r.stopLock.Lock()
- defer r.stopLock.Unlock()
+ r.internalStop(false)
+}
- if r.stopped {
- return
- }
-
- log.Printf("[INFO] (runner) stopping")
- r.stopDedup()
- r.stopWatcher()
- r.stopChild()
-
- if err := r.deletePid(); err != nil {
- log.Printf("[WARN] (runner) could not remove pid at %v: %s",
- r.config.PidFile, err)
- }
-
- r.stopped = true
-
- close(r.DoneCh)
+// StopImmediately behaves like Stop but won't wait for any splay on any child
+// process it may be running.
+func (r *Runner) StopImmediately() {
+ r.internalStop(true)
}
// TemplateRenderedCh returns a channel that will be triggered when one or more
@@ -437,6 +424,29 @@ func (r *Runner) RenderEvents() map[string]*RenderEvent {
return times
}
+func (r *Runner) internalStop(immediately bool) {
+ r.stopLock.Lock()
+ defer r.stopLock.Unlock()
+
+ if r.stopped {
+ return
+ }
+
+ log.Printf("[INFO] (runner) stopping")
+ r.stopDedup()
+ r.stopWatcher()
+ r.stopChild(immediately)
+
+ if err := r.deletePid(); err != nil {
+ log.Printf("[WARN] (runner) could not remove pid at %q: %s",
+ *r.config.PidFile, err)
+ }
+
+ r.stopped = true
+
+ close(r.DoneCh)
+}
+
func (r *Runner) stopDedup() {
if r.dedup != nil {
log.Printf("[DEBUG] (runner) stopping de-duplication manager")
@@ -451,13 +461,18 @@ func (r *Runner) stopWatcher() {
}
}
-func (r *Runner) stopChild() {
+func (r *Runner) stopChild(immediately bool) {
r.childLock.RLock()
defer r.childLock.RUnlock()
if r.child != nil {
- log.Printf("[DEBUG] (runner) stopping child process")
- r.child.Stop()
+ if immediately {
+ log.Printf("[DEBUG] (runner) stopping child process immediately")
+ r.child.StopImmediately()
+ } else {
+ log.Printf("[DEBUG] (runner) stopping child process")
+ r.child.Stop()
+ }
}
}
diff --git a/vendor/github.com/hashicorp/consul-template/renderer/renderer.go b/vendor/github.com/hashicorp/consul-template/renderer/renderer.go
index 34e68a2b1..59931c19e 100644
--- a/vendor/github.com/hashicorp/consul-template/renderer/renderer.go
+++ b/vendor/github.com/hashicorp/consul-template/renderer/renderer.go
@@ -163,12 +163,14 @@ func AtomicWrite(path string, createDestDirs bool, contents []byte, perms os.Fil
}
// If we got this far, it means we are about to save the file. Copy the
- // current contents of the file onto disk (if it exists) so we have a backup.
+ // current file so we have a backup. Note that os.Link preserves the Mode.
if backup {
- if _, err := os.Stat(path); !os.IsNotExist(err) {
- if err := copyFile(path, path+".bak"); err != nil {
- return err
- }
+ bak, old := path+".bak", path+".old.bak"
+ os.Rename(bak, old) // ignore error
+ if err := os.Link(path, bak); err != nil {
+ log.Printf("[WARN] (runner) could not backup %q: %v", path, err)
+ } else {
+ os.Remove(old) // ignore error
}
}
@@ -178,33 +180,3 @@ func AtomicWrite(path string, createDestDirs bool, contents []byte, perms os.Fil
return nil
}
-
-// copyFile copies the file at src to the path at dst. Any errors that occur
-// are returned.
-func copyFile(src, dst string) error {
- s, err := os.Open(src)
- if err != nil {
- return err
- }
- defer s.Close()
-
- stat, err := s.Stat()
- if err != nil {
- return err
- }
-
- d, err := os.OpenFile(dst, os.O_WRONLY|os.O_CREATE|os.O_TRUNC, stat.Mode())
- if err != nil {
- return err
- }
- if _, err := io.Copy(d, s); err != nil {
- d.Close()
- return err
- }
- if err := d.Close(); err != nil {
- return err
- }
-
- // io.Copy can restrict file permissions based on umask.
- return os.Chmod(dst, stat.Mode())
-}
diff --git a/vendor/github.com/hashicorp/consul-template/template/funcs.go b/vendor/github.com/hashicorp/consul-template/template/funcs.go
index 2270f6fd2..a599034f7 100644
--- a/vendor/github.com/hashicorp/consul-template/template/funcs.go
+++ b/vendor/github.com/hashicorp/consul-template/template/funcs.go
@@ -11,6 +11,7 @@ import (
"path/filepath"
"reflect"
"regexp"
+ "sort"
"strconv"
"strings"
"text/template"
@@ -18,6 +19,7 @@ import (
"github.com/BurntSushi/toml"
dep "github.com/hashicorp/consul-template/dependency"
+ socktmpl "github.com/hashicorp/go-sockaddr/template"
"github.com/pkg/errors"
yaml "gopkg.in/yaml.v2"
)
@@ -208,8 +210,13 @@ func keyWithDefaultFunc(b *Brain, used, missing *dep.Set) func(string, string) (
}
}
+func safeLsFunc(b *Brain, used, missing *dep.Set) func(string) ([]*dep.KeyPair, error) {
+ // call lsFunc but explicitly mark that empty data set returned on monitored KV prefix is NOT safe
+ return lsFunc(b, used, missing, false)
+}
+
// lsFunc returns or accumulates keyPrefix dependencies.
-func lsFunc(b *Brain, used, missing *dep.Set) func(string) ([]*dep.KeyPair, error) {
+func lsFunc(b *Brain, used, missing *dep.Set, emptyIsSafe bool) func(string) ([]*dep.KeyPair, error) {
return func(s string) ([]*dep.KeyPair, error) {
result := []*dep.KeyPair{}
@@ -231,9 +238,23 @@ func lsFunc(b *Brain, used, missing *dep.Set) func(string) ([]*dep.KeyPair, erro
result = append(result, pair)
}
}
- return result, nil
+
+ if len(result) == 0 {
+ if emptyIsSafe {
+ // Operator used potentially unsafe ls function in the template instead of the safeLs
+ return result, nil
+ }
+ } else {
+ // non empty result is good so we just return the data
+ return result, nil
+ }
+
+ // If we reach this part of the code result is completely empty as value returned no KV pairs
+ // Operator selected to use safeLs on the specific KV prefix so we will refuse to render template
+ // by marking d as missing
}
+ // b.Recall either returned an error or safeLs entered unsafe case
missing.Add(d)
return result, nil
@@ -358,6 +379,51 @@ func secretsFunc(b *Brain, used, missing *dep.Set) func(string) ([]string, error
}
}
+// byMeta returns Services grouped by one or many ServiceMeta fields.
+func byMeta(meta string, services []*dep.HealthService) (groups map[string][]*dep.HealthService, err error) {
+ re := regexp.MustCompile("[^a-zA-Z0-9_-]")
+ normalize := func(x string) string {
+ return re.ReplaceAllString(x, "_")
+ }
+ getOrDefault := func(m map[string]string, key string) string {
+ realKey := strings.TrimSuffix(key, "|int")
+ if val, ok := m[realKey]; ok {
+ if val != "" {
+ return val
+ }
+ }
+ if strings.HasSuffix(key, "|int") {
+ return "0"
+ }
+ return fmt.Sprintf("_no_%s_", realKey)
+ }
+
+ metas := strings.Split(meta, ",")
+
+ groups = make(map[string][]*dep.HealthService)
+
+ for _, s := range services {
+ sm := s.ServiceMeta
+ keyParts := []string{}
+ for _, meta := range metas {
+ value := getOrDefault(sm, meta)
+ if strings.HasSuffix(meta, "|int") {
+ value = getOrDefault(sm, meta)
+ i, err := strconv.Atoi(value)
+ if err != nil {
+ return nil, errors.Wrap(err, fmt.Sprintf("cannot parse %v as number ", value))
+ }
+ value = fmt.Sprintf("%05d", i)
+ }
+ keyParts = append(keyParts, normalize(value))
+ }
+ key := strings.Join(keyParts, "_")
+ groups[key] = append(groups[key], s)
+ }
+
+ return groups, nil
+}
+
// serviceFunc returns or accumulates health service dependencies.
func serviceFunc(b *Brain, used, missing *dep.Set) func(...string) ([]*dep.HealthService, error) {
return func(s ...string) ([]*dep.HealthService, error) {
@@ -406,8 +472,13 @@ func servicesFunc(b *Brain, used, missing *dep.Set) func(...string) ([]*dep.Cata
}
}
+func safeTreeFunc(b *Brain, used, missing *dep.Set) func(string) ([]*dep.KeyPair, error) {
+ // call treeFunc but explicitly mark that empty data set returned on monitored KV prefix is NOT safe
+ return treeFunc(b, used, missing, false)
+}
+
// treeFunc returns or accumulates keyPrefix dependencies.
-func treeFunc(b *Brain, used, missing *dep.Set) func(string) ([]*dep.KeyPair, error) {
+func treeFunc(b *Brain, used, missing *dep.Set, emptyIsSafe bool) func(string) ([]*dep.KeyPair, error) {
return func(s string) ([]*dep.KeyPair, error) {
result := []*dep.KeyPair{}
@@ -430,9 +501,23 @@ func treeFunc(b *Brain, used, missing *dep.Set) func(string) ([]*dep.KeyPair, er
result = append(result, pair)
}
}
- return result, nil
+
+ if len(result) == 0 {
+ if emptyIsSafe {
+ // Operator used potentially unsafe tree function in the template instead of the safeTree
+ return result, nil
+ }
+ } else {
+ // non empty result is good so we just return the data
+ return result, nil
+ }
+
+ // If we reach this part of the code result is completely empty as value returned no KV pairs
+ // Operator selected to use safeTree on the specific KV prefix so we will refuse to render template
+ // by marking d as missing
}
+ // b.Recall either returned an error or safeTree entered unsafe case
missing.Add(d)
return result, nil
@@ -583,8 +668,8 @@ func explode(pairs []*dep.KeyPair) (map[string]interface{}, error) {
return m, nil
}
-// explodeHelper is a recursive helper for explode.
-func explodeHelper(m map[string]interface{}, k, v, p string) error {
+// explodeHelper is a recursive helper for explode and explodeMap
+func explodeHelper(m map[string]interface{}, k string, v interface{}, p string) error {
if strings.Contains(k, "/") {
parts := strings.Split(k, "/")
top := parts[0]
@@ -607,6 +692,24 @@ func explodeHelper(m map[string]interface{}, k, v, p string) error {
return nil
}
+// explodeMap turns a single-level map into a deeply-nested hash.
+func explodeMap(mapIn map[string]interface{}) (map[string]interface{}, error) {
+ mapOut := make(map[string]interface{})
+
+ var keys []string
+ for k := range mapIn {
+ keys = append(keys, k)
+ }
+ sort.Strings(keys)
+
+ for i := range keys {
+ if err := explodeHelper(mapOut, keys[i], mapIn[keys[i]], keys[i]); err != nil {
+ return nil, errors.Wrap(err, "explodeMap")
+ }
+ }
+ return mapOut, nil
+}
+
// in searches for a given value in a given interface.
func in(l, v interface{}) (bool, error) {
lv := reflect.ValueOf(l)
@@ -697,16 +800,41 @@ func indent(spaces int, s string) (string, error) {
// print(i)
// }
//
-func loop(ints ...int64) (<-chan int64, error) {
- var start, stop int64
- switch len(ints) {
+func loop(ifaces ...interface{}) (<-chan int64, error) {
+
+ to64 := func(i interface{}) (int64, error) {
+ v := reflect.ValueOf(i)
+ switch v.Kind() {
+ case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32,
+ reflect.Int64:
+ return int64(v.Int()), nil
+ case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32,
+ reflect.Uint64:
+ return int64(v.Uint()), nil
+ case reflect.String:
+ return parseInt(v.String())
+ }
+ return 0, fmt.Errorf("loop: bad argument type: %T", i)
+ }
+
+ var i1, i2 interface{}
+ switch len(ifaces) {
case 1:
- start, stop = 0, ints[0]
+ i1, i2 = 0, ifaces[0]
case 2:
- start, stop = ints[0], ints[1]
+ i1, i2 = ifaces[0], ifaces[1]
default:
- return nil, fmt.Errorf("loop: wrong number of arguments, expected 1 or 2"+
- ", but got %d", len(ints))
+ return nil, fmt.Errorf("loop: wrong number of arguments, expected "+
+ "1 or 2, but got %d", len(ifaces))
+ }
+
+ start, err := to64(i1)
+ if err != nil {
+ return nil, err
+ }
+ stop, err := to64(i2)
+ if err != nil {
+ return nil, err
}
ch := make(chan int64)
@@ -1184,3 +1312,13 @@ func pathInSandbox(sandbox, path string) error {
}
return nil
}
+
+// sockaddr wraps go-sockaddr templating
+func sockaddr(args ...string) (string, error) {
+ t := fmt.Sprintf("{{ %s }} ", strings.Join(args, " "))
+ k, err := socktmpl.Parse(t)
+ if err != nil {
+ return "", err
+ }
+ return k, nil
+}
diff --git a/vendor/github.com/hashicorp/consul-template/template/template.go b/vendor/github.com/hashicorp/consul-template/template/template.go
index ff3f36f21..36da55183 100644
--- a/vendor/github.com/hashicorp/consul-template/template/template.go
+++ b/vendor/github.com/hashicorp/consul-template/template/template.go
@@ -230,14 +230,16 @@ func funcMap(i *funcMapInput) template.FuncMap {
"key": keyFunc(i.brain, i.used, i.missing),
"keyExists": keyExistsFunc(i.brain, i.used, i.missing),
"keyOrDefault": keyWithDefaultFunc(i.brain, i.used, i.missing),
- "ls": lsFunc(i.brain, i.used, i.missing),
+ "ls": lsFunc(i.brain, i.used, i.missing, true),
+ "safeLs": safeLsFunc(i.brain, i.used, i.missing),
"node": nodeFunc(i.brain, i.used, i.missing),
"nodes": nodesFunc(i.brain, i.used, i.missing),
"secret": secretFunc(i.brain, i.used, i.missing),
"secrets": secretsFunc(i.brain, i.used, i.missing),
"service": serviceFunc(i.brain, i.used, i.missing),
"services": servicesFunc(i.brain, i.used, i.missing),
- "tree": treeFunc(i.brain, i.used, i.missing),
+ "tree": treeFunc(i.brain, i.used, i.missing, true),
+ "safeTree": safeTreeFunc(i.brain, i.used, i.missing),
// Scratch
"scratch": func() *Scratch { return &scratch },
@@ -257,6 +259,7 @@ func funcMap(i *funcMapInput) template.FuncMap {
"env": envFunc(i.env),
"executeTemplate": executeTemplateFunc(i.t),
"explode": explode,
+ "explodeMap": explodeMap,
"in": in,
"indent": indent,
"loop": loop,
@@ -280,7 +283,8 @@ func funcMap(i *funcMapInput) template.FuncMap {
"toUpper": toUpper,
"toYAML": toYAML,
"split": split,
-
+ "byMeta": byMeta,
+ "sockaddr": sockaddr,
// Math functions
"add": add,
"subtract": subtract,
diff --git a/vendor/github.com/hashicorp/consul-template/version/version.go b/vendor/github.com/hashicorp/consul-template/version/version.go
index 6e12bfc06..077931edc 100644
--- a/vendor/github.com/hashicorp/consul-template/version/version.go
+++ b/vendor/github.com/hashicorp/consul-template/version/version.go
@@ -2,7 +2,7 @@ package version
import "fmt"
-const Version = "0.21.0"
+const Version = "0.22.1"
var (
Name string
diff --git a/vendor/github.com/hashicorp/consul-template/watch/view.go b/vendor/github.com/hashicorp/consul-template/watch/view.go
index 191c008c1..bcef6c0b2 100644
--- a/vendor/github.com/hashicorp/consul-template/watch/view.go
+++ b/vendor/github.com/hashicorp/consul-template/watch/view.go
@@ -3,6 +3,7 @@ package watch
import (
"fmt"
"log"
+ "math/rand"
"reflect"
"sync"
"time"
@@ -207,6 +208,8 @@ func (v *View) fetch(doneCh, successCh chan<- struct{}, errCh chan<- error) {
default:
}
+ start := time.Now() // for rateLimiter below
+
data, rm, err := v.dependency.Fetch(v.clients, &dep.QueryOptions{
AllowStale: allowStale,
WaitTime: defaultWaitTime,
@@ -247,6 +250,10 @@ func (v *View) fetch(doneCh, successCh chan<- struct{}, errCh chan<- error) {
allowStale = true
}
+ if dur := rateLimiter(start); dur > 1 {
+ time.Sleep(dur)
+ }
+
if rm.LastIndex == v.lastIndex {
log.Printf("[TRACE] (view) %s no new data (index was the same)", v.dependency)
continue
@@ -282,6 +289,18 @@ func (v *View) fetch(doneCh, successCh chan<- struct{}, errCh chan<- error) {
}
}
+const minDelayBetweenUpdates = time.Millisecond * 100
+
+// return a duration to sleep to limit the frequency of upstream calls
+func rateLimiter(start time.Time) time.Duration {
+ remaining := minDelayBetweenUpdates - time.Since(start)
+ if remaining > 0 {
+ dither := time.Duration(rand.Int63n(20000000)) // 0-20ms
+ return remaining + dither
+ }
+ return 0
+}
+
// stop halts polling of this view.
func (v *View) stop() {
v.dependency.Stop()
diff --git a/vendor/github.com/hashicorp/go-hclog/README.md b/vendor/github.com/hashicorp/go-hclog/README.md
index 1153e2853..9b6845e98 100644
--- a/vendor/github.com/hashicorp/go-hclog/README.md
+++ b/vendor/github.com/hashicorp/go-hclog/README.md
@@ -128,6 +128,21 @@ stdLogger.Printf("[DEBUG] %+v", stdLogger)
... [DEBUG] my-app: &{mu:{state:0 sema:0} prefix: flag:0 out:0xc42000a0a0 buf:[]}
```
+Alternatively, you may configure the system-wide logger:
+
+```go
+// log the standard logger from 'import "log"'
+log.SetOutput(appLogger.Writer(&hclog.StandardLoggerOptions{InferLevels: true}))
+log.SetPrefix("")
+log.SetFlags(0)
+
+log.Printf("[DEBUG] %d", 42)
+```
+
+```text
+... [DEBUG] my-app: 42
+```
+
Notice that if `appLogger` is initialized with the `INFO` log level _and_ you
specify `InferLevels: true`, you will not see any output here. You must change
`appLogger` to `DEBUG` to see output. See the docs for more information.
diff --git a/vendor/github.com/hashicorp/go-hclog/colorize_unix.go b/vendor/github.com/hashicorp/go-hclog/colorize_unix.go
new file mode 100644
index 000000000..44aa9bf2c
--- /dev/null
+++ b/vendor/github.com/hashicorp/go-hclog/colorize_unix.go
@@ -0,0 +1,27 @@
+// +build !windows
+
+package hclog
+
+import (
+ "github.com/mattn/go-isatty"
+)
+
+// setColorization will mutate the values of this logger
+// to approperately configure colorization options. It provides
+// a wrapper to the output stream on Windows systems.
+func (l *intLogger) setColorization(opts *LoggerOptions) {
+ switch opts.Color {
+ case ColorOff:
+ fallthrough
+ case ForceColor:
+ return
+ case AutoColor:
+ fi := l.checkWriterIsFile()
+ isUnixTerm := isatty.IsTerminal(fi.Fd())
+ isCygwinTerm := isatty.IsCygwinTerminal(fi.Fd())
+ isTerm := isUnixTerm || isCygwinTerm
+ if !isTerm {
+ l.writer.color = ColorOff
+ }
+ }
+}
diff --git a/vendor/github.com/hashicorp/go-hclog/colorize_windows.go b/vendor/github.com/hashicorp/go-hclog/colorize_windows.go
new file mode 100644
index 000000000..23486b6d7
--- /dev/null
+++ b/vendor/github.com/hashicorp/go-hclog/colorize_windows.go
@@ -0,0 +1,33 @@
+// +build windows
+
+package hclog
+
+import (
+ "os"
+
+ colorable "github.com/mattn/go-colorable"
+ "github.com/mattn/go-isatty"
+)
+
+// setColorization will mutate the values of this logger
+// to approperately configure colorization options. It provides
+// a wrapper to the output stream on Windows systems.
+func (l *intLogger) setColorization(opts *LoggerOptions) {
+ switch opts.Color {
+ case ColorOff:
+ return
+ case ForceColor:
+ fi := l.checkWriterIsFile()
+ l.writer.w = colorable.NewColorable(fi)
+ case AutoColor:
+ fi := l.checkWriterIsFile()
+ isUnixTerm := isatty.IsTerminal(os.Stdout.Fd())
+ isCygwinTerm := isatty.IsCygwinTerminal(os.Stdout.Fd())
+ isTerm := isUnixTerm || isCygwinTerm
+ if !isTerm {
+ l.writer.color = ColorOff
+ return
+ }
+ l.writer.w = colorable.NewColorable(fi)
+ }
+}
diff --git a/vendor/github.com/hashicorp/go-hclog/context.go b/vendor/github.com/hashicorp/go-hclog/context.go
new file mode 100644
index 000000000..7815f5019
--- /dev/null
+++ b/vendor/github.com/hashicorp/go-hclog/context.go
@@ -0,0 +1,38 @@
+package hclog
+
+import (
+ "context"
+)
+
+// WithContext inserts a logger into the context and is retrievable
+// with FromContext. The optional args can be set with the same syntax as
+// Logger.With to set fields on the inserted logger. This will not modify
+// the logger argument in-place.
+func WithContext(ctx context.Context, logger Logger, args ...interface{}) context.Context {
+ // While we could call logger.With even with zero args, we have this
+ // check to avoid unnecessary allocations around creating a copy of a
+ // logger.
+ if len(args) > 0 {
+ logger = logger.With(args...)
+ }
+
+ return context.WithValue(ctx, contextKey, logger)
+}
+
+// FromContext returns a logger from the context. This will return L()
+// (the default logger) if no logger is found in the context. Therefore,
+// this will never return a nil value.
+func FromContext(ctx context.Context) Logger {
+ logger, _ := ctx.Value(contextKey).(Logger)
+ if logger == nil {
+ return L()
+ }
+
+ return logger
+}
+
+// Unexported new type so that our context key never collides with another.
+type contextKeyType struct{}
+
+// contextKey is the key used for the context to store the logger.
+var contextKey = contextKeyType{}
diff --git a/vendor/github.com/hashicorp/go-hclog/global.go b/vendor/github.com/hashicorp/go-hclog/global.go
index 55ce43960..22ebc57d8 100644
--- a/vendor/github.com/hashicorp/go-hclog/global.go
+++ b/vendor/github.com/hashicorp/go-hclog/global.go
@@ -8,27 +8,55 @@ var (
protect sync.Once
def Logger
- // The options used to create the Default logger. These are
- // read only when the Default logger is created, so set them
- // as soon as the process starts.
+ // DefaultOptions is used to create the Default logger. These are read
+ // only when the Default logger is created, so set them as soon as the
+ // process starts.
DefaultOptions = &LoggerOptions{
Level: DefaultLevel,
Output: DefaultOutput,
}
)
-// Return a logger that is held globally. This can be a good starting
+// Default returns a globally held logger. This can be a good starting
// place, and then you can use .With() and .Name() to create sub-loggers
// to be used in more specific contexts.
+// The value of the Default logger can be set via SetDefault() or by
+// changing the options in DefaultOptions.
+//
+// This method is goroutine safe, returning a global from memory, but
+// cause should be used if SetDefault() is called it random times
+// in the program as that may result in race conditions and an unexpected
+// Logger being returned.
func Default() Logger {
protect.Do(func() {
- def = New(DefaultOptions)
+ // If SetDefault was used before Default() was called, we need to
+ // detect that here.
+ if def == nil {
+ def = New(DefaultOptions)
+ }
})
return def
}
-// A short alias for Default()
+// L is a short alias for Default().
func L() Logger {
return Default()
}
+
+// SetDefault changes the logger to be returned by Default()and L()
+// to the one given. This allows packages to use the default logger
+// and have higher level packages change it to match the execution
+// environment. It returns any old default if there is one.
+//
+// NOTE: This is expected to be called early in the program to setup
+// a default logger. As such, it does not attempt to make itself
+// not racy with regard to the value of the default logger. Ergo
+// if it is called in goroutines, you may experience race conditions
+// with other goroutines retrieving the default logger. Basically,
+// don't do that.
+func SetDefault(log Logger) Logger {
+ old := def
+ def = log
+ return old
+}
diff --git a/vendor/github.com/hashicorp/go-hclog/go.mod b/vendor/github.com/hashicorp/go-hclog/go.mod
new file mode 100644
index 000000000..b6698c083
--- /dev/null
+++ b/vendor/github.com/hashicorp/go-hclog/go.mod
@@ -0,0 +1,12 @@
+module github.com/hashicorp/go-hclog
+
+require (
+ github.com/davecgh/go-spew v1.1.1 // indirect
+ github.com/fatih/color v1.7.0
+ github.com/mattn/go-colorable v0.1.4
+ github.com/mattn/go-isatty v0.0.10
+ github.com/pmezard/go-difflib v1.0.0 // indirect
+ github.com/stretchr/testify v1.2.2
+)
+
+go 1.13
diff --git a/vendor/github.com/hashicorp/go-hclog/go.sum b/vendor/github.com/hashicorp/go-hclog/go.sum
new file mode 100644
index 000000000..9cee2196c
--- /dev/null
+++ b/vendor/github.com/hashicorp/go-hclog/go.sum
@@ -0,0 +1,16 @@
+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/fatih/color v1.7.0/go.mod h1:Zm6kSWBoL9eyXnKyktHP6abPY2pDugNf5KwzbycvMj4=
+github.com/mattn/go-colorable v0.1.4 h1:snbPLB8fVfU9iwbbo30TPtbLRzwWu6aJS6Xh4eaaviA=
+github.com/mattn/go-colorable v0.1.4/go.mod h1:U0ppj6V5qS13XJ6of8GYAs25YV2eR4EVcfRqFIhoBtE=
+github.com/mattn/go-isatty v0.0.8 h1:HLtExJ+uU2HOZ+wI0Tt5DtUDrx8yhUqDcp7fYERX4CE=
+github.com/mattn/go-isatty v0.0.8/go.mod h1:Iq45c/XA43vh69/j3iqttzPXn0bhXyGjM0Hdxcsrc5s=
+github.com/mattn/go-isatty v0.0.10 h1:qxFzApOv4WsAL965uUPIsXzAKCZxN2p9UqdhFS4ZW10=
+github.com/mattn/go-isatty v0.0.10/go.mod h1:qgIWMr58cqv1PHHyhnkY9lrL7etaEgOFcMEpPG5Rm84=
+github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
+github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
+github.com/stretchr/testify v1.2.2 h1:bSDNvY7ZPG5RlJ8otE/7V6gMiyenm9RtJ7IUVIAoJ1w=
+github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
+golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223 h1:DH4skfRX4EBpamg7iV4ZlCpblAHI6s6TDM39bFZumv8=
+golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
+golang.org/x/sys v0.0.0-20191008105621-543471e840be/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
diff --git a/vendor/github.com/hashicorp/go-hclog/int.go b/vendor/github.com/hashicorp/go-hclog/int.go
deleted file mode 100644
index 7d17d81cb..000000000
--- a/vendor/github.com/hashicorp/go-hclog/int.go
+++ /dev/null
@@ -1,457 +0,0 @@
-package hclog
-
-import (
- "bufio"
- "encoding"
- "encoding/json"
- "fmt"
- "log"
- "os"
- "runtime"
- "sort"
- "strconv"
- "strings"
- "sync"
- "sync/atomic"
- "time"
-)
-
-var (
- _levelToBracket = map[Level]string{
- Debug: "[DEBUG]",
- Trace: "[TRACE]",
- Info: "[INFO ]",
- Warn: "[WARN ]",
- Error: "[ERROR]",
- }
-)
-
-// Given the options (nil for defaults), create a new Logger
-func New(opts *LoggerOptions) Logger {
- if opts == nil {
- opts = &LoggerOptions{}
- }
-
- output := opts.Output
- if output == nil {
- output = os.Stderr
- }
-
- level := opts.Level
- if level == NoLevel {
- level = DefaultLevel
- }
-
- mtx := opts.Mutex
- if mtx == nil {
- mtx = new(sync.Mutex)
- }
-
- ret := &intLogger{
- m: mtx,
- json: opts.JSONFormat,
- caller: opts.IncludeLocation,
- name: opts.Name,
- timeFormat: TimeFormat,
- w: bufio.NewWriter(output),
- level: new(int32),
- }
- if opts.TimeFormat != "" {
- ret.timeFormat = opts.TimeFormat
- }
- atomic.StoreInt32(ret.level, int32(level))
- return ret
-}
-
-// The internal logger implementation. Internal in that it is defined entirely
-// by this package.
-type intLogger struct {
- json bool
- caller bool
- name string
- timeFormat string
-
- // this is a pointer so that it's shared by any derived loggers, since
- // those derived loggers share the bufio.Writer as well.
- m *sync.Mutex
- w *bufio.Writer
- level *int32
-
- implied []interface{}
-}
-
-// Make sure that intLogger is a Logger
-var _ Logger = &intLogger{}
-
-// The time format to use for logging. This is a version of RFC3339 that
-// contains millisecond precision
-const TimeFormat = "2006-01-02T15:04:05.000Z0700"
-
-// Log a message and a set of key/value pairs if the given level is at
-// or more severe that the threshold configured in the Logger.
-func (z *intLogger) Log(level Level, msg string, args ...interface{}) {
- if level < Level(atomic.LoadInt32(z.level)) {
- return
- }
-
- t := time.Now()
-
- z.m.Lock()
- defer z.m.Unlock()
-
- if z.json {
- z.logJson(t, level, msg, args...)
- } else {
- z.log(t, level, msg, args...)
- }
-
- z.w.Flush()
-}
-
-// Cleanup a path by returning the last 2 segments of the path only.
-func trimCallerPath(path string) string {
- // lovely borrowed from zap
- // nb. To make sure we trim the path correctly on Windows too, we
- // counter-intuitively need to use '/' and *not* os.PathSeparator here,
- // because the path given originates from Go stdlib, specifically
- // runtime.Caller() which (as of Mar/17) returns forward slashes even on
- // Windows.
- //
- // See https://github.com/golang/go/issues/3335
- // and https://github.com/golang/go/issues/18151
- //
- // for discussion on the issue on Go side.
- //
-
- // Find the last separator.
- //
- idx := strings.LastIndexByte(path, '/')
- if idx == -1 {
- return path
- }
-
- // Find the penultimate separator.
- idx = strings.LastIndexByte(path[:idx], '/')
- if idx == -1 {
- return path
- }
-
- return path[idx+1:]
-}
-
-// Non-JSON logging format function
-func (z *intLogger) log(t time.Time, level Level, msg string, args ...interface{}) {
- z.w.WriteString(t.Format(z.timeFormat))
- z.w.WriteByte(' ')
-
- s, ok := _levelToBracket[level]
- if ok {
- z.w.WriteString(s)
- } else {
- z.w.WriteString("[UNKN ]")
- }
-
- if z.caller {
- if _, file, line, ok := runtime.Caller(3); ok {
- z.w.WriteByte(' ')
- z.w.WriteString(trimCallerPath(file))
- z.w.WriteByte(':')
- z.w.WriteString(strconv.Itoa(line))
- z.w.WriteByte(':')
- }
- }
-
- z.w.WriteByte(' ')
-
- if z.name != "" {
- z.w.WriteString(z.name)
- z.w.WriteString(": ")
- }
-
- z.w.WriteString(msg)
-
- args = append(z.implied, args...)
-
- var stacktrace CapturedStacktrace
-
- if args != nil && len(args) > 0 {
- if len(args)%2 != 0 {
- cs, ok := args[len(args)-1].(CapturedStacktrace)
- if ok {
- args = args[:len(args)-1]
- stacktrace = cs
- } else {
- args = append(args, "")
- }
- }
-
- z.w.WriteByte(':')
-
- FOR:
- for i := 0; i < len(args); i = i + 2 {
- var val string
-
- switch st := args[i+1].(type) {
- case string:
- val = st
- case int:
- val = strconv.FormatInt(int64(st), 10)
- case int64:
- val = strconv.FormatInt(int64(st), 10)
- case int32:
- val = strconv.FormatInt(int64(st), 10)
- case int16:
- val = strconv.FormatInt(int64(st), 10)
- case int8:
- val = strconv.FormatInt(int64(st), 10)
- case uint:
- val = strconv.FormatUint(uint64(st), 10)
- case uint64:
- val = strconv.FormatUint(uint64(st), 10)
- case uint32:
- val = strconv.FormatUint(uint64(st), 10)
- case uint16:
- val = strconv.FormatUint(uint64(st), 10)
- case uint8:
- val = strconv.FormatUint(uint64(st), 10)
- case CapturedStacktrace:
- stacktrace = st
- continue FOR
- case Format:
- val = fmt.Sprintf(st[0].(string), st[1:]...)
- default:
- val = fmt.Sprintf("%v", st)
- }
-
- z.w.WriteByte(' ')
- z.w.WriteString(args[i].(string))
- z.w.WriteByte('=')
-
- if strings.ContainsAny(val, " \t\n\r") {
- z.w.WriteByte('"')
- z.w.WriteString(val)
- z.w.WriteByte('"')
- } else {
- z.w.WriteString(val)
- }
- }
- }
-
- z.w.WriteString("\n")
-
- if stacktrace != "" {
- z.w.WriteString(string(stacktrace))
- }
-}
-
-// JSON logging function
-func (z *intLogger) logJson(t time.Time, level Level, msg string, args ...interface{}) {
- vals := map[string]interface{}{
- "@message": msg,
- "@timestamp": t.Format("2006-01-02T15:04:05.000000Z07:00"),
- }
-
- var levelStr string
- switch level {
- case Error:
- levelStr = "error"
- case Warn:
- levelStr = "warn"
- case Info:
- levelStr = "info"
- case Debug:
- levelStr = "debug"
- case Trace:
- levelStr = "trace"
- default:
- levelStr = "all"
- }
-
- vals["@level"] = levelStr
-
- if z.name != "" {
- vals["@module"] = z.name
- }
-
- if z.caller {
- if _, file, line, ok := runtime.Caller(3); ok {
- vals["@caller"] = fmt.Sprintf("%s:%d", file, line)
- }
- }
-
- args = append(z.implied, args...)
-
- if args != nil && len(args) > 0 {
- if len(args)%2 != 0 {
- cs, ok := args[len(args)-1].(CapturedStacktrace)
- if ok {
- args = args[:len(args)-1]
- vals["stacktrace"] = cs
- } else {
- args = append(args, "")
- }
- }
-
- for i := 0; i < len(args); i = i + 2 {
- if _, ok := args[i].(string); !ok {
- // As this is the logging function not much we can do here
- // without injecting into logs...
- continue
- }
- val := args[i+1]
- switch sv := val.(type) {
- case error:
- // Check if val is of type error. If error type doesn't
- // implement json.Marshaler or encoding.TextMarshaler
- // then set val to err.Error() so that it gets marshaled
- switch sv.(type) {
- case json.Marshaler, encoding.TextMarshaler:
- default:
- val = sv.Error()
- }
- case Format:
- val = fmt.Sprintf(sv[0].(string), sv[1:]...)
- }
-
- vals[args[i].(string)] = val
- }
- }
-
- err := json.NewEncoder(z.w).Encode(vals)
- if err != nil {
- panic(err)
- }
-}
-
-// Emit the message and args at DEBUG level
-func (z *intLogger) Debug(msg string, args ...interface{}) {
- z.Log(Debug, msg, args...)
-}
-
-// Emit the message and args at TRACE level
-func (z *intLogger) Trace(msg string, args ...interface{}) {
- z.Log(Trace, msg, args...)
-}
-
-// Emit the message and args at INFO level
-func (z *intLogger) Info(msg string, args ...interface{}) {
- z.Log(Info, msg, args...)
-}
-
-// Emit the message and args at WARN level
-func (z *intLogger) Warn(msg string, args ...interface{}) {
- z.Log(Warn, msg, args...)
-}
-
-// Emit the message and args at ERROR level
-func (z *intLogger) Error(msg string, args ...interface{}) {
- z.Log(Error, msg, args...)
-}
-
-// Indicate that the logger would emit TRACE level logs
-func (z *intLogger) IsTrace() bool {
- return Level(atomic.LoadInt32(z.level)) == Trace
-}
-
-// Indicate that the logger would emit DEBUG level logs
-func (z *intLogger) IsDebug() bool {
- return Level(atomic.LoadInt32(z.level)) <= Debug
-}
-
-// Indicate that the logger would emit INFO level logs
-func (z *intLogger) IsInfo() bool {
- return Level(atomic.LoadInt32(z.level)) <= Info
-}
-
-// Indicate that the logger would emit WARN level logs
-func (z *intLogger) IsWarn() bool {
- return Level(atomic.LoadInt32(z.level)) <= Warn
-}
-
-// Indicate that the logger would emit ERROR level logs
-func (z *intLogger) IsError() bool {
- return Level(atomic.LoadInt32(z.level)) <= Error
-}
-
-// Return a sub-Logger for which every emitted log message will contain
-// the given key/value pairs. This is used to create a context specific
-// Logger.
-func (z *intLogger) With(args ...interface{}) Logger {
- if len(args)%2 != 0 {
- panic("With() call requires paired arguments")
- }
-
- var nz intLogger = *z
-
- result := make(map[string]interface{}, len(z.implied)+len(args))
- keys := make([]string, 0, len(z.implied)+len(args))
-
- // Read existing args, store map and key for consistent sorting
- for i := 0; i < len(z.implied); i += 2 {
- key := z.implied[i].(string)
- keys = append(keys, key)
- result[key] = z.implied[i+1]
- }
- // Read new args, store map and key for consistent sorting
- for i := 0; i < len(args); i += 2 {
- key := args[i].(string)
- _, exists := result[key]
- if !exists {
- keys = append(keys, key)
- }
- result[key] = args[i+1]
- }
-
- // Sort keys to be consistent
- sort.Strings(keys)
-
- nz.implied = make([]interface{}, 0, len(z.implied)+len(args))
- for _, k := range keys {
- nz.implied = append(nz.implied, k)
- nz.implied = append(nz.implied, result[k])
- }
-
- return &nz
-}
-
-// Create a new sub-Logger that a name decending from the current name.
-// This is used to create a subsystem specific Logger.
-func (z *intLogger) Named(name string) Logger {
- var nz intLogger = *z
-
- if nz.name != "" {
- nz.name = nz.name + "." + name
- } else {
- nz.name = name
- }
-
- return &nz
-}
-
-// Create a new sub-Logger with an explicit name. This ignores the current
-// name. This is used to create a standalone logger that doesn't fall
-// within the normal hierarchy.
-func (z *intLogger) ResetNamed(name string) Logger {
- var nz intLogger = *z
-
- nz.name = name
-
- return &nz
-}
-
-// Update the logging level on-the-fly. This will affect all subloggers as
-// well.
-func (z *intLogger) SetLevel(level Level) {
- atomic.StoreInt32(z.level, int32(level))
-}
-
-// Create a *log.Logger that will send it's data through this Logger. This
-// allows packages that expect to be using the standard library log to actually
-// use this logger.
-func (z *intLogger) StandardLogger(opts *StandardLoggerOptions) *log.Logger {
- if opts == nil {
- opts = &StandardLoggerOptions{}
- }
-
- return log.New(&stdlogAdapter{z, opts.InferLevels}, "", 0)
-}
diff --git a/vendor/github.com/hashicorp/go-hclog/interceptlogger.go b/vendor/github.com/hashicorp/go-hclog/interceptlogger.go
new file mode 100644
index 000000000..68f31e42d
--- /dev/null
+++ b/vendor/github.com/hashicorp/go-hclog/interceptlogger.go
@@ -0,0 +1,216 @@
+package hclog
+
+import (
+ "io"
+ "log"
+ "sync"
+ "sync/atomic"
+)
+
+var _ Logger = &interceptLogger{}
+
+type interceptLogger struct {
+ Logger
+
+ sync.Mutex
+ sinkCount *int32
+ Sinks map[SinkAdapter]struct{}
+}
+
+func NewInterceptLogger(opts *LoggerOptions) InterceptLogger {
+ intercept := &interceptLogger{
+ Logger: New(opts),
+ sinkCount: new(int32),
+ Sinks: make(map[SinkAdapter]struct{}),
+ }
+
+ atomic.StoreInt32(intercept.sinkCount, 0)
+
+ return intercept
+}
+
+// Emit the message and args at TRACE level to log and sinks
+func (i *interceptLogger) Trace(msg string, args ...interface{}) {
+ i.Logger.Trace(msg, args...)
+ if atomic.LoadInt32(i.sinkCount) == 0 {
+ return
+ }
+
+ i.Lock()
+ defer i.Unlock()
+ for s := range i.Sinks {
+ s.Accept(i.Name(), Trace, msg, i.retrieveImplied(args...)...)
+ }
+}
+
+// Emit the message and args at DEBUG level to log and sinks
+func (i *interceptLogger) Debug(msg string, args ...interface{}) {
+ i.Logger.Debug(msg, args...)
+ if atomic.LoadInt32(i.sinkCount) == 0 {
+ return
+ }
+
+ i.Lock()
+ defer i.Unlock()
+ for s := range i.Sinks {
+ s.Accept(i.Name(), Debug, msg, i.retrieveImplied(args...)...)
+ }
+}
+
+// Emit the message and args at INFO level to log and sinks
+func (i *interceptLogger) Info(msg string, args ...interface{}) {
+ i.Logger.Info(msg, args...)
+ if atomic.LoadInt32(i.sinkCount) == 0 {
+ return
+ }
+
+ i.Lock()
+ defer i.Unlock()
+ for s := range i.Sinks {
+ s.Accept(i.Name(), Info, msg, i.retrieveImplied(args...)...)
+ }
+}
+
+// Emit the message and args at WARN level to log and sinks
+func (i *interceptLogger) Warn(msg string, args ...interface{}) {
+ i.Logger.Warn(msg, args...)
+ if atomic.LoadInt32(i.sinkCount) == 0 {
+ return
+ }
+
+ i.Lock()
+ defer i.Unlock()
+ for s := range i.Sinks {
+ s.Accept(i.Name(), Warn, msg, i.retrieveImplied(args...)...)
+ }
+}
+
+// Emit the message and args at ERROR level to log and sinks
+func (i *interceptLogger) Error(msg string, args ...interface{}) {
+ i.Logger.Error(msg, args...)
+ if atomic.LoadInt32(i.sinkCount) == 0 {
+ return
+ }
+
+ i.Lock()
+ defer i.Unlock()
+ for s := range i.Sinks {
+ s.Accept(i.Name(), Error, msg, i.retrieveImplied(args...)...)
+ }
+}
+
+func (i *interceptLogger) retrieveImplied(args ...interface{}) []interface{} {
+ top := i.Logger.ImpliedArgs()
+
+ cp := make([]interface{}, len(top)+len(args))
+ copy(cp, top)
+ copy(cp[len(top):], args)
+
+ return cp
+}
+
+// Create a new sub-Logger that a name decending from the current name.
+// This is used to create a subsystem specific Logger.
+// Registered sinks will subscribe to these messages as well.
+func (i *interceptLogger) Named(name string) Logger {
+ var sub interceptLogger
+
+ sub = *i
+
+ sub.Logger = i.Logger.Named(name)
+
+ return &sub
+}
+
+// Create a new sub-Logger with an explicit name. This ignores the current
+// name. This is used to create a standalone logger that doesn't fall
+// within the normal hierarchy. Registered sinks will subscribe
+// to these messages as well.
+func (i *interceptLogger) ResetNamed(name string) Logger {
+ var sub interceptLogger
+
+ sub = *i
+
+ sub.Logger = i.Logger.ResetNamed(name)
+
+ return &sub
+}
+
+// Create a new sub-Logger that a name decending from the current name.
+// This is used to create a subsystem specific Logger.
+// Registered sinks will subscribe to these messages as well.
+func (i *interceptLogger) NamedIntercept(name string) InterceptLogger {
+ var sub interceptLogger
+
+ sub = *i
+
+ sub.Logger = i.Logger.Named(name)
+
+ return &sub
+}
+
+// Create a new sub-Logger with an explicit name. This ignores the current
+// name. This is used to create a standalone logger that doesn't fall
+// within the normal hierarchy. Registered sinks will subscribe
+// to these messages as well.
+func (i *interceptLogger) ResetNamedIntercept(name string) InterceptLogger {
+ var sub interceptLogger
+
+ sub = *i
+
+ sub.Logger = i.Logger.ResetNamed(name)
+
+ return &sub
+}
+
+// Return a sub-Logger for which every emitted log message will contain
+// the given key/value pairs. This is used to create a context specific
+// Logger.
+func (i *interceptLogger) With(args ...interface{}) Logger {
+ var sub interceptLogger
+
+ sub = *i
+
+ sub.Logger = i.Logger.With(args...)
+
+ return &sub
+}
+
+// RegisterSink attaches a SinkAdapter to interceptLoggers sinks.
+func (i *interceptLogger) RegisterSink(sink SinkAdapter) {
+ i.Lock()
+ defer i.Unlock()
+
+ i.Sinks[sink] = struct{}{}
+
+ atomic.AddInt32(i.sinkCount, 1)
+}
+
+// DeregisterSink removes a SinkAdapter from interceptLoggers sinks.
+func (i *interceptLogger) DeregisterSink(sink SinkAdapter) {
+ i.Lock()
+ defer i.Unlock()
+
+ delete(i.Sinks, sink)
+
+ atomic.AddInt32(i.sinkCount, -1)
+}
+
+// Create a *log.Logger that will send it's data through this Logger. This
+// allows packages that expect to be using the standard library to log to
+// actually use this logger, which will also send to any registered sinks.
+func (l *interceptLogger) StandardLoggerIntercept(opts *StandardLoggerOptions) *log.Logger {
+ if opts == nil {
+ opts = &StandardLoggerOptions{}
+ }
+
+ return log.New(l.StandardWriterIntercept(opts), "", 0)
+}
+
+func (l *interceptLogger) StandardWriterIntercept(opts *StandardLoggerOptions) io.Writer {
+ return &stdlogAdapter{
+ log: l,
+ inferLevels: opts.InferLevels,
+ forceLevel: opts.ForceLevel,
+ }
+}
diff --git a/vendor/github.com/hashicorp/go-hclog/intlogger.go b/vendor/github.com/hashicorp/go-hclog/intlogger.go
new file mode 100644
index 000000000..5882b8701
--- /dev/null
+++ b/vendor/github.com/hashicorp/go-hclog/intlogger.go
@@ -0,0 +1,588 @@
+package hclog
+
+import (
+ "bytes"
+ "encoding"
+ "encoding/json"
+ "fmt"
+ "io"
+ "log"
+ "os"
+ "reflect"
+ "regexp"
+ "runtime"
+ "sort"
+ "strconv"
+ "strings"
+ "sync"
+ "sync/atomic"
+ "time"
+
+ "github.com/fatih/color"
+)
+
+// TimeFormat to use for logging. This is a version of RFC3339 that contains
+// contains millisecond precision
+const TimeFormat = "2006-01-02T15:04:05.000Z0700"
+
+// errJsonUnsupportedTypeMsg is included in log json entries, if an arg cannot be serialized to json
+const errJsonUnsupportedTypeMsg = "logging contained values that don't serialize to json"
+
+var (
+ _levelToBracket = map[Level]string{
+ Debug: "[DEBUG]",
+ Trace: "[TRACE]",
+ Info: "[INFO] ",
+ Warn: "[WARN] ",
+ Error: "[ERROR]",
+ }
+
+ _levelToColor = map[Level]*color.Color{
+ Debug: color.New(color.FgHiWhite),
+ Trace: color.New(color.FgHiGreen),
+ Info: color.New(color.FgHiBlue),
+ Warn: color.New(color.FgHiYellow),
+ Error: color.New(color.FgHiRed),
+ }
+)
+
+// Make sure that intLogger is a Logger
+var _ Logger = &intLogger{}
+
+// intLogger is an internal logger implementation. Internal in that it is
+// defined entirely by this package.
+type intLogger struct {
+ json bool
+ caller bool
+ name string
+ timeFormat string
+
+ // This is a pointer so that it's shared by any derived loggers, since
+ // those derived loggers share the bufio.Writer as well.
+ mutex *sync.Mutex
+ writer *writer
+ level *int32
+
+ implied []interface{}
+}
+
+// New returns a configured logger.
+func New(opts *LoggerOptions) Logger {
+ return newLogger(opts)
+}
+
+// NewSinkAdapter returns a SinkAdapter with configured settings
+// defined by LoggerOptions
+func NewSinkAdapter(opts *LoggerOptions) SinkAdapter {
+ return newLogger(opts)
+}
+
+func newLogger(opts *LoggerOptions) *intLogger {
+ if opts == nil {
+ opts = &LoggerOptions{}
+ }
+
+ output := opts.Output
+ if output == nil {
+ output = DefaultOutput
+ }
+
+ level := opts.Level
+ if level == NoLevel {
+ level = DefaultLevel
+ }
+
+ mutex := opts.Mutex
+ if mutex == nil {
+ mutex = new(sync.Mutex)
+ }
+
+ l := &intLogger{
+ json: opts.JSONFormat,
+ caller: opts.IncludeLocation,
+ name: opts.Name,
+ timeFormat: TimeFormat,
+ mutex: mutex,
+ writer: newWriter(output, opts.Color),
+ level: new(int32),
+ }
+
+ l.setColorization(opts)
+
+ if opts.TimeFormat != "" {
+ l.timeFormat = opts.TimeFormat
+ }
+
+ atomic.StoreInt32(l.level, int32(level))
+
+ return l
+}
+
+// Log a message and a set of key/value pairs if the given level is at
+// or more severe that the threshold configured in the Logger.
+func (l *intLogger) Log(name string, level Level, msg string, args ...interface{}) {
+ if level < Level(atomic.LoadInt32(l.level)) {
+ return
+ }
+
+ t := time.Now()
+
+ l.mutex.Lock()
+ defer l.mutex.Unlock()
+
+ if l.json {
+ l.logJSON(t, name, level, msg, args...)
+ } else {
+ l.log(t, name, level, msg, args...)
+ }
+
+ l.writer.Flush(level)
+}
+
+// Cleanup a path by returning the last 2 segments of the path only.
+func trimCallerPath(path string) string {
+ // lovely borrowed from zap
+ // nb. To make sure we trim the path correctly on Windows too, we
+ // counter-intuitively need to use '/' and *not* os.PathSeparator here,
+ // because the path given originates from Go stdlib, specifically
+ // runtime.Caller() which (as of Mar/17) returns forward slashes even on
+ // Windows.
+ //
+ // See https://github.com/golang/go/issues/3335
+ // and https://github.com/golang/go/issues/18151
+ //
+ // for discussion on the issue on Go side.
+
+ // Find the last separator.
+ idx := strings.LastIndexByte(path, '/')
+ if idx == -1 {
+ return path
+ }
+
+ // Find the penultimate separator.
+ idx = strings.LastIndexByte(path[:idx], '/')
+ if idx == -1 {
+ return path
+ }
+
+ return path[idx+1:]
+}
+
+var logImplFile = regexp.MustCompile(`github.com/hashicorp/go-hclog/.+logger.go$`)
+
+// Non-JSON logging format function
+func (l *intLogger) log(t time.Time, name string, level Level, msg string, args ...interface{}) {
+ l.writer.WriteString(t.Format(l.timeFormat))
+ l.writer.WriteByte(' ')
+
+ s, ok := _levelToBracket[level]
+ if ok {
+ l.writer.WriteString(s)
+ } else {
+ l.writer.WriteString("[?????]")
+ }
+
+ offset := 3
+ if l.caller {
+ // Check if the caller is inside our package and inside
+ // a logger implementation file
+ if _, file, _, ok := runtime.Caller(3); ok {
+ match := logImplFile.MatchString(file)
+ if match {
+ offset = 4
+ }
+ }
+
+ if _, file, line, ok := runtime.Caller(offset); ok {
+ l.writer.WriteByte(' ')
+ l.writer.WriteString(trimCallerPath(file))
+ l.writer.WriteByte(':')
+ l.writer.WriteString(strconv.Itoa(line))
+ l.writer.WriteByte(':')
+ }
+ }
+
+ l.writer.WriteByte(' ')
+
+ if name != "" {
+ l.writer.WriteString(name)
+ l.writer.WriteString(": ")
+ }
+
+ l.writer.WriteString(msg)
+
+ args = append(l.implied, args...)
+
+ var stacktrace CapturedStacktrace
+
+ if args != nil && len(args) > 0 {
+ if len(args)%2 != 0 {
+ cs, ok := args[len(args)-1].(CapturedStacktrace)
+ if ok {
+ args = args[:len(args)-1]
+ stacktrace = cs
+ } else {
+ args = append(args, "")
+ }
+ }
+
+ l.writer.WriteByte(':')
+
+ FOR:
+ for i := 0; i < len(args); i = i + 2 {
+ var (
+ val string
+ raw bool
+ )
+
+ switch st := args[i+1].(type) {
+ case string:
+ val = st
+ case int:
+ val = strconv.FormatInt(int64(st), 10)
+ case int64:
+ val = strconv.FormatInt(int64(st), 10)
+ case int32:
+ val = strconv.FormatInt(int64(st), 10)
+ case int16:
+ val = strconv.FormatInt(int64(st), 10)
+ case int8:
+ val = strconv.FormatInt(int64(st), 10)
+ case uint:
+ val = strconv.FormatUint(uint64(st), 10)
+ case uint64:
+ val = strconv.FormatUint(uint64(st), 10)
+ case uint32:
+ val = strconv.FormatUint(uint64(st), 10)
+ case uint16:
+ val = strconv.FormatUint(uint64(st), 10)
+ case uint8:
+ val = strconv.FormatUint(uint64(st), 10)
+ case CapturedStacktrace:
+ stacktrace = st
+ continue FOR
+ case Format:
+ val = fmt.Sprintf(st[0].(string), st[1:]...)
+ default:
+ v := reflect.ValueOf(st)
+ if v.Kind() == reflect.Slice {
+ val = l.renderSlice(v)
+ raw = true
+ } else {
+ val = fmt.Sprintf("%v", st)
+ }
+ }
+
+ l.writer.WriteByte(' ')
+ l.writer.WriteString(args[i].(string))
+ l.writer.WriteByte('=')
+
+ if !raw && strings.ContainsAny(val, " \t\n\r") {
+ l.writer.WriteByte('"')
+ l.writer.WriteString(val)
+ l.writer.WriteByte('"')
+ } else {
+ l.writer.WriteString(val)
+ }
+ }
+ }
+
+ l.writer.WriteString("\n")
+
+ if stacktrace != "" {
+ l.writer.WriteString(string(stacktrace))
+ }
+}
+
+func (l *intLogger) renderSlice(v reflect.Value) string {
+ var buf bytes.Buffer
+
+ buf.WriteRune('[')
+
+ for i := 0; i < v.Len(); i++ {
+ if i > 0 {
+ buf.WriteString(", ")
+ }
+
+ sv := v.Index(i)
+
+ var val string
+
+ switch sv.Kind() {
+ case reflect.String:
+ val = sv.String()
+ case reflect.Int, reflect.Int16, reflect.Int32, reflect.Int64:
+ val = strconv.FormatInt(sv.Int(), 10)
+ case reflect.Uint, reflect.Uint16, reflect.Uint32, reflect.Uint64:
+ val = strconv.FormatUint(sv.Uint(), 10)
+ default:
+ val = fmt.Sprintf("%v", sv.Interface())
+ }
+
+ if strings.ContainsAny(val, " \t\n\r") {
+ buf.WriteByte('"')
+ buf.WriteString(val)
+ buf.WriteByte('"')
+ } else {
+ buf.WriteString(val)
+ }
+ }
+
+ buf.WriteRune(']')
+
+ return buf.String()
+}
+
+// JSON logging function
+func (l *intLogger) logJSON(t time.Time, name string, level Level, msg string, args ...interface{}) {
+ vals := l.jsonMapEntry(t, name, level, msg)
+ args = append(l.implied, args...)
+
+ if args != nil && len(args) > 0 {
+ if len(args)%2 != 0 {
+ cs, ok := args[len(args)-1].(CapturedStacktrace)
+ if ok {
+ args = args[:len(args)-1]
+ vals["stacktrace"] = cs
+ } else {
+ args = append(args, "")
+ }
+ }
+
+ for i := 0; i < len(args); i = i + 2 {
+ if _, ok := args[i].(string); !ok {
+ // As this is the logging function not much we can do here
+ // without injecting into logs...
+ continue
+ }
+ val := args[i+1]
+ switch sv := val.(type) {
+ case error:
+ // Check if val is of type error. If error type doesn't
+ // implement json.Marshaler or encoding.TextMarshaler
+ // then set val to err.Error() so that it gets marshaled
+ switch sv.(type) {
+ case json.Marshaler, encoding.TextMarshaler:
+ default:
+ val = sv.Error()
+ }
+ case Format:
+ val = fmt.Sprintf(sv[0].(string), sv[1:]...)
+ }
+
+ vals[args[i].(string)] = val
+ }
+ }
+
+ err := json.NewEncoder(l.writer).Encode(vals)
+ if err != nil {
+ if _, ok := err.(*json.UnsupportedTypeError); ok {
+ plainVal := l.jsonMapEntry(t, name, level, msg)
+ plainVal["@warn"] = errJsonUnsupportedTypeMsg
+
+ json.NewEncoder(l.writer).Encode(plainVal)
+ }
+ }
+}
+
+func (l intLogger) jsonMapEntry(t time.Time, name string, level Level, msg string) map[string]interface{} {
+ vals := map[string]interface{}{
+ "@message": msg,
+ "@timestamp": t.Format("2006-01-02T15:04:05.000000Z07:00"),
+ }
+
+ var levelStr string
+ switch level {
+ case Error:
+ levelStr = "error"
+ case Warn:
+ levelStr = "warn"
+ case Info:
+ levelStr = "info"
+ case Debug:
+ levelStr = "debug"
+ case Trace:
+ levelStr = "trace"
+ default:
+ levelStr = "all"
+ }
+
+ vals["@level"] = levelStr
+
+ if name != "" {
+ vals["@module"] = name
+ }
+
+ if l.caller {
+ if _, file, line, ok := runtime.Caller(4); ok {
+ vals["@caller"] = fmt.Sprintf("%s:%d", file, line)
+ }
+ }
+ return vals
+}
+
+// Emit the message and args at DEBUG level
+func (l *intLogger) Debug(msg string, args ...interface{}) {
+ l.Log(l.Name(), Debug, msg, args...)
+}
+
+// Emit the message and args at TRACE level
+func (l *intLogger) Trace(msg string, args ...interface{}) {
+ l.Log(l.Name(), Trace, msg, args...)
+}
+
+// Emit the message and args at INFO level
+func (l *intLogger) Info(msg string, args ...interface{}) {
+ l.Log(l.Name(), Info, msg, args...)
+}
+
+// Emit the message and args at WARN level
+func (l *intLogger) Warn(msg string, args ...interface{}) {
+ l.Log(l.Name(), Warn, msg, args...)
+}
+
+// Emit the message and args at ERROR level
+func (l *intLogger) Error(msg string, args ...interface{}) {
+ l.Log(l.Name(), Error, msg, args...)
+}
+
+// Indicate that the logger would emit TRACE level logs
+func (l *intLogger) IsTrace() bool {
+ return Level(atomic.LoadInt32(l.level)) == Trace
+}
+
+// Indicate that the logger would emit DEBUG level logs
+func (l *intLogger) IsDebug() bool {
+ return Level(atomic.LoadInt32(l.level)) <= Debug
+}
+
+// Indicate that the logger would emit INFO level logs
+func (l *intLogger) IsInfo() bool {
+ return Level(atomic.LoadInt32(l.level)) <= Info
+}
+
+// Indicate that the logger would emit WARN level logs
+func (l *intLogger) IsWarn() bool {
+ return Level(atomic.LoadInt32(l.level)) <= Warn
+}
+
+// Indicate that the logger would emit ERROR level logs
+func (l *intLogger) IsError() bool {
+ return Level(atomic.LoadInt32(l.level)) <= Error
+}
+
+// Return a sub-Logger for which every emitted log message will contain
+// the given key/value pairs. This is used to create a context specific
+// Logger.
+func (l *intLogger) With(args ...interface{}) Logger {
+ if len(args)%2 != 0 {
+ panic("With() call requires paired arguments")
+ }
+
+ sl := *l
+
+ result := make(map[string]interface{}, len(l.implied)+len(args))
+ keys := make([]string, 0, len(l.implied)+len(args))
+
+ // Read existing args, store map and key for consistent sorting
+ for i := 0; i < len(l.implied); i += 2 {
+ key := l.implied[i].(string)
+ keys = append(keys, key)
+ result[key] = l.implied[i+1]
+ }
+ // Read new args, store map and key for consistent sorting
+ for i := 0; i < len(args); i += 2 {
+ key := args[i].(string)
+ _, exists := result[key]
+ if !exists {
+ keys = append(keys, key)
+ }
+ result[key] = args[i+1]
+ }
+
+ // Sort keys to be consistent
+ sort.Strings(keys)
+
+ sl.implied = make([]interface{}, 0, len(l.implied)+len(args))
+ for _, k := range keys {
+ sl.implied = append(sl.implied, k)
+ sl.implied = append(sl.implied, result[k])
+ }
+
+ return &sl
+}
+
+// Create a new sub-Logger that a name decending from the current name.
+// This is used to create a subsystem specific Logger.
+func (l *intLogger) Named(name string) Logger {
+ sl := *l
+
+ if sl.name != "" {
+ sl.name = sl.name + "." + name
+ } else {
+ sl.name = name
+ }
+
+ return &sl
+}
+
+// Create a new sub-Logger with an explicit name. This ignores the current
+// name. This is used to create a standalone logger that doesn't fall
+// within the normal hierarchy.
+func (l *intLogger) ResetNamed(name string) Logger {
+ sl := *l
+
+ sl.name = name
+
+ return &sl
+}
+
+// Update the logging level on-the-fly. This will affect all subloggers as
+// well.
+func (l *intLogger) SetLevel(level Level) {
+ atomic.StoreInt32(l.level, int32(level))
+}
+
+// Create a *log.Logger that will send it's data through this Logger. This
+// allows packages that expect to be using the standard library log to actually
+// use this logger.
+func (l *intLogger) StandardLogger(opts *StandardLoggerOptions) *log.Logger {
+ if opts == nil {
+ opts = &StandardLoggerOptions{}
+ }
+
+ return log.New(l.StandardWriter(opts), "", 0)
+}
+
+func (l *intLogger) StandardWriter(opts *StandardLoggerOptions) io.Writer {
+ return &stdlogAdapter{
+ log: l,
+ inferLevels: opts.InferLevels,
+ forceLevel: opts.ForceLevel,
+ }
+}
+
+// checks if the underlying io.Writer is a file, and
+// panics if not. For use by colorization.
+func (l *intLogger) checkWriterIsFile() *os.File {
+ fi, ok := l.writer.w.(*os.File)
+ if !ok {
+ panic("Cannot enable coloring of non-file Writers")
+ }
+ return fi
+}
+
+// Accept implements the SinkAdapter interface
+func (i *intLogger) Accept(name string, level Level, msg string, args ...interface{}) {
+ i.Log(name, level, msg, args...)
+}
+
+// ImpliedArgs returns the loggers implied args
+func (i *intLogger) ImpliedArgs() []interface{} {
+ return i.implied
+}
+
+// Name returns the loggers name
+func (i *intLogger) Name() string {
+ return i.name
+}
diff --git a/vendor/github.com/hashicorp/go-hclog/log.go b/vendor/github.com/hashicorp/go-hclog/logger.go
similarity index 50%
rename from vendor/github.com/hashicorp/go-hclog/log.go
rename to vendor/github.com/hashicorp/go-hclog/logger.go
index 894e8461b..48d608714 100644
--- a/vendor/github.com/hashicorp/go-hclog/log.go
+++ b/vendor/github.com/hashicorp/go-hclog/logger.go
@@ -9,38 +9,42 @@ import (
)
var (
- DefaultOutput = os.Stderr
- DefaultLevel = Info
+ //DefaultOutput is used as the default log output.
+ DefaultOutput io.Writer = os.Stderr
+
+ // DefaultLevel is used as the default log level.
+ DefaultLevel = Info
)
+// Level represents a log level.
type Level int32
const (
- // This is a special level used to indicate that no level has been
+ // NoLevel is a special level used to indicate that no level has been
// set and allow for a default to be used.
NoLevel Level = 0
- // The most verbose level. Intended to be used for the tracing of actions
- // in code, such as function enters/exits, etc.
+ // Trace is the most verbose level. Intended to be used for the tracing
+ // of actions in code, such as function enters/exits, etc.
Trace Level = 1
- // For programmer lowlevel analysis.
+ // Debug information for programmer lowlevel analysis.
Debug Level = 2
- // For information about steady state operations.
+ // Info information about steady state operations.
Info Level = 3
- // For information about rare but handled events.
+ // Warn information about rare but handled events.
Warn Level = 4
- // For information about unrecoverable events.
+ // Error information about unrecoverable events.
Error Level = 5
)
-// When processing a value of this type, the logger automatically treats the first
-// argument as a Printf formatting string and passes the rest as the values to be
-// formatted. For example: L.Info(Fmt{"%d beans/day", beans}). This is a simple
-// convience type for when formatting is required.
+// Format is a simple convience type for when formatting is required. When
+// processing a value of this type, the logger automatically treats the first
+// argument as a Printf formatting string and passes the rest as the values
+// to be formatted. For example: L.Info(Fmt{"%d beans/day", beans}).
type Format []interface{}
// Fmt returns a Format type. This is a convience function for creating a Format
@@ -49,11 +53,26 @@ func Fmt(str string, args ...interface{}) Format {
return append(Format{str}, args...)
}
+// ColorOption expresses how the output should be colored, if at all.
+type ColorOption uint8
+
+const (
+ // ColorOff is the default coloration, and does not
+ // inject color codes into the io.Writer.
+ ColorOff ColorOption = iota
+ // AutoColor checks if the io.Writer is a tty,
+ // and if so enables coloring.
+ AutoColor
+ // ForceColor will enable coloring, regardless of whether
+ // the io.Writer is a tty or not.
+ ForceColor
+)
+
// LevelFromString returns a Level type for the named log level, or "NoLevel" if
// the level string is invalid. This facilitates setting the log level via
// config or environment variable by name in a predictable way.
func LevelFromString(levelStr string) Level {
- // We don't care about case. Accept "INFO" or "info"
+ // We don't care about case. Accept both "INFO" and "info".
levelStr = strings.ToLower(strings.TrimSpace(levelStr))
switch levelStr {
case "trace":
@@ -71,7 +90,7 @@ func LevelFromString(levelStr string) Level {
}
}
-// The main Logger interface. All code should code against this interface only.
+// Logger describes the interface that must be implemeted by all loggers.
type Logger interface {
// Args are alternating key, val pairs
// keys must be strings
@@ -107,9 +126,15 @@ type Logger interface {
// Indicate if ERROR logs would be emitted. This and the other Is* guards
IsError() bool
+ // ImpliedArgs returns With key/value pairs
+ ImpliedArgs() []interface{}
+
// Creates a sublogger that will always have the given key/value pairs
With(args ...interface{}) Logger
+ // Returns the Name of the logger
+ Name() string
+
// Create a logger that will prepend the name string on the front of all messages.
// If the logger already has a name, the new value will be appended to the current
// name. That way, a major subsystem can use this to decorate all it's own logs
@@ -127,16 +152,27 @@ type Logger interface {
// Return a value that conforms to the stdlib log.Logger interface
StandardLogger(opts *StandardLoggerOptions) *log.Logger
+
+ // Return a value that conforms to io.Writer, which can be passed into log.SetOutput()
+ StandardWriter(opts *StandardLoggerOptions) io.Writer
}
+// StandardLoggerOptions can be used to configure a new standard logger.
type StandardLoggerOptions struct {
// Indicate that some minimal parsing should be done on strings to try
// and detect their level and re-emit them.
// This supports the strings like [ERROR], [ERR] [TRACE], [WARN], [INFO],
// [DEBUG] and strip it off before reapplying it.
InferLevels bool
+
+ // ForceLevel is used to force all output from the standard logger to be at
+ // the specified level. Similar to InferLevels, this will strip any level
+ // prefix contained in the logged string before applying the forced level.
+ // If set, this override InferLevels.
+ ForceLevel Level
}
+// LoggerOptions can be used to configure a new logger.
type LoggerOptions struct {
// Name of the subsystem to prefix logs with
Name string
@@ -144,7 +180,7 @@ type LoggerOptions struct {
// The threshold for the logger. Anything less severe is supressed
Level Level
- // Where to write the logs to. Defaults to os.Stdout if nil
+ // Where to write the logs to. Defaults to os.Stderr if nil
Output io.Writer
// An optional mutex pointer in case Output is shared
@@ -158,4 +194,47 @@ type LoggerOptions struct {
// The time format to use instead of the default
TimeFormat string
+
+ // Color the output. On Windows, colored logs are only avaiable for io.Writers that
+ // are concretely instances of *os.File.
+ Color ColorOption
+}
+
+// InterceptLogger describes the interface for using a logger
+// that can register different output sinks.
+// This is useful for sending lower level log messages
+// to a different output while keeping the root logger
+// at a higher one.
+type InterceptLogger interface {
+ // Logger is the root logger for an InterceptLogger
+ Logger
+
+ // RegisterSink adds a SinkAdapter to the InterceptLogger
+ RegisterSink(sink SinkAdapter)
+
+ // DeregisterSink removes a SinkAdapter from the InterceptLogger
+ DeregisterSink(sink SinkAdapter)
+
+ // Create a interceptlogger that will prepend the name string on the front of all messages.
+ // If the logger already has a name, the new value will be appended to the current
+ // name. That way, a major subsystem can use this to decorate all it's own logs
+ // without losing context.
+ NamedIntercept(name string) InterceptLogger
+
+ // Create a interceptlogger that will prepend the name string on the front of all messages.
+ // This sets the name of the logger to the value directly, unlike Named which honor
+ // the current name as well.
+ ResetNamedIntercept(name string) InterceptLogger
+
+ // Return a value that conforms to the stdlib log.Logger interface
+ StandardLoggerIntercept(opts *StandardLoggerOptions) *log.Logger
+
+ // Return a value that conforms to io.Writer, which can be passed into log.SetOutput()
+ StandardWriterIntercept(opts *StandardLoggerOptions) io.Writer
+}
+
+// SinkAdapter describes the interface that must be implemented
+// in order to Register a new sink to an InterceptLogger
+type SinkAdapter interface {
+ Accept(name string, level Level, msg string, args ...interface{})
}
diff --git a/vendor/github.com/hashicorp/go-hclog/nulllogger.go b/vendor/github.com/hashicorp/go-hclog/nulllogger.go
index 0942361a5..4abdd5583 100644
--- a/vendor/github.com/hashicorp/go-hclog/nulllogger.go
+++ b/vendor/github.com/hashicorp/go-hclog/nulllogger.go
@@ -1,6 +1,7 @@
package hclog
import (
+ "io"
"io/ioutil"
"log"
)
@@ -34,8 +35,12 @@ func (l *nullLogger) IsWarn() bool { return false }
func (l *nullLogger) IsError() bool { return false }
+func (l *nullLogger) ImpliedArgs() []interface{} { return []interface{}{} }
+
func (l *nullLogger) With(args ...interface{}) Logger { return l }
+func (l *nullLogger) Name() string { return "" }
+
func (l *nullLogger) Named(name string) Logger { return l }
func (l *nullLogger) ResetNamed(name string) Logger { return l }
@@ -43,5 +48,9 @@ func (l *nullLogger) ResetNamed(name string) Logger { return l }
func (l *nullLogger) SetLevel(level Level) {}
func (l *nullLogger) StandardLogger(opts *StandardLoggerOptions) *log.Logger {
- return log.New(ioutil.Discard, "", log.LstdFlags)
+ return log.New(l.StandardWriter(opts), "", log.LstdFlags)
+}
+
+func (l *nullLogger) StandardWriter(opts *StandardLoggerOptions) io.Writer {
+ return ioutil.Discard
}
diff --git a/vendor/github.com/hashicorp/go-hclog/stacktrace.go b/vendor/github.com/hashicorp/go-hclog/stacktrace.go
index 8af1a3be4..9b27bd3d3 100644
--- a/vendor/github.com/hashicorp/go-hclog/stacktrace.go
+++ b/vendor/github.com/hashicorp/go-hclog/stacktrace.go
@@ -40,12 +40,13 @@ var (
}
)
-// A stacktrace gathered by a previous call to log.Stacktrace. If passed
-// to a logging function, the stacktrace will be appended.
+// CapturedStacktrace represents a stacktrace captured by a previous call
+// to log.Stacktrace. If passed to a logging function, the stacktrace
+// will be appended.
type CapturedStacktrace string
-// Gather a stacktrace of the current goroutine and return it to be passed
-// to a logging function.
+// Stacktrace captures a stacktrace of the current goroutine and returns
+// it to be passed to a logging function.
func Stacktrace() CapturedStacktrace {
return CapturedStacktrace(takeStacktrace())
}
diff --git a/vendor/github.com/hashicorp/go-hclog/stdlog.go b/vendor/github.com/hashicorp/go-hclog/stdlog.go
index 2bb927fc9..2cf0456a0 100644
--- a/vendor/github.com/hashicorp/go-hclog/stdlog.go
+++ b/vendor/github.com/hashicorp/go-hclog/stdlog.go
@@ -9,39 +9,51 @@ import (
// and back into our Logger. This is basically the only way to
// build upon *log.Logger.
type stdlogAdapter struct {
- hl Logger
+ log Logger
inferLevels bool
+ forceLevel Level
}
// Take the data, infer the levels if configured, and send it through
-// a regular Logger
+// a regular Logger.
func (s *stdlogAdapter) Write(data []byte) (int, error) {
str := string(bytes.TrimRight(data, " \t\n"))
- if s.inferLevels {
+ if s.forceLevel != NoLevel {
+ // Use pickLevel to strip log levels included in the line since we are
+ // forcing the level
+ _, str := s.pickLevel(str)
+
+ // Log at the forced level
+ s.dispatch(str, s.forceLevel)
+ } else if s.inferLevels {
level, str := s.pickLevel(str)
- switch level {
- case Trace:
- s.hl.Trace(str)
- case Debug:
- s.hl.Debug(str)
- case Info:
- s.hl.Info(str)
- case Warn:
- s.hl.Warn(str)
- case Error:
- s.hl.Error(str)
- default:
- s.hl.Info(str)
- }
+ s.dispatch(str, level)
} else {
- s.hl.Info(str)
+ s.log.Info(str)
}
return len(data), nil
}
-// Detect, based on conventions, what log level this is
+func (s *stdlogAdapter) dispatch(str string, level Level) {
+ switch level {
+ case Trace:
+ s.log.Trace(str)
+ case Debug:
+ s.log.Debug(str)
+ case Info:
+ s.log.Info(str)
+ case Warn:
+ s.log.Warn(str)
+ case Error:
+ s.log.Error(str)
+ default:
+ s.log.Info(str)
+ }
+}
+
+// Detect, based on conventions, what log level this is.
func (s *stdlogAdapter) pickLevel(str string) (Level, string) {
switch {
case strings.HasPrefix(str, "[DEBUG]"):
diff --git a/vendor/github.com/hashicorp/go-hclog/writer.go b/vendor/github.com/hashicorp/go-hclog/writer.go
new file mode 100644
index 000000000..421a1f06c
--- /dev/null
+++ b/vendor/github.com/hashicorp/go-hclog/writer.go
@@ -0,0 +1,82 @@
+package hclog
+
+import (
+ "bytes"
+ "io"
+)
+
+type writer struct {
+ b bytes.Buffer
+ w io.Writer
+ color ColorOption
+}
+
+func newWriter(w io.Writer, color ColorOption) *writer {
+ return &writer{w: w, color: color}
+}
+
+func (w *writer) Flush(level Level) (err error) {
+ var unwritten = w.b.Bytes()
+
+ if w.color != ColorOff {
+ color := _levelToColor[level]
+ unwritten = []byte(color.Sprintf("%s", unwritten))
+ }
+
+ if lw, ok := w.w.(LevelWriter); ok {
+ _, err = lw.LevelWrite(level, unwritten)
+ } else {
+ _, err = w.w.Write(unwritten)
+ }
+ w.b.Reset()
+ return err
+}
+
+func (w *writer) Write(p []byte) (int, error) {
+ return w.b.Write(p)
+}
+
+func (w *writer) WriteByte(c byte) error {
+ return w.b.WriteByte(c)
+}
+
+func (w *writer) WriteString(s string) (int, error) {
+ return w.b.WriteString(s)
+}
+
+// LevelWriter is the interface that wraps the LevelWrite method.
+type LevelWriter interface {
+ LevelWrite(level Level, p []byte) (n int, err error)
+}
+
+// LeveledWriter writes all log messages to the standard writer,
+// except for log levels that are defined in the overrides map.
+type LeveledWriter struct {
+ standard io.Writer
+ overrides map[Level]io.Writer
+}
+
+// NewLeveledWriter returns an initialized LeveledWriter.
+//
+// standard will be used as the default writer for all log levels,
+// except for log levels that are defined in the overrides map.
+func NewLeveledWriter(standard io.Writer, overrides map[Level]io.Writer) *LeveledWriter {
+ return &LeveledWriter{
+ standard: standard,
+ overrides: overrides,
+ }
+}
+
+// Write implements io.Writer.
+func (lw *LeveledWriter) Write(p []byte) (int, error) {
+ return lw.standard.Write(p)
+}
+
+// LevelWrite implements LevelWriter.
+func (lw *LeveledWriter) LevelWrite(level Level, p []byte) (int, error) {
+ w, ok := lw.overrides[level]
+ if !ok {
+ w = lw.standard
+ }
+ return w.Write(p)
+}
diff --git a/vendor/github.com/hashicorp/go-msgpack/codec/0_importpath.go b/vendor/github.com/hashicorp/go-msgpack/codec/0_importpath.go
deleted file mode 100644
index adbe862c2..000000000
--- a/vendor/github.com/hashicorp/go-msgpack/codec/0_importpath.go
+++ /dev/null
@@ -1,7 +0,0 @@
-// Copyright (c) 2012-2018 Ugorji Nwoke. All rights reserved.
-// Use of this source code is governed by a MIT license found in the LICENSE file.
-
-package codec // import "github.com/ugorji/go/codec"
-
-// This establishes that this package must be imported as github.com/ugorji/go/codec.
-// It makes forking easier, and plays well with pre-module releases of go.
diff --git a/vendor/github.com/hashicorp/go-plugin/client.go b/vendor/github.com/hashicorp/go-plugin/client.go
index 42de0fc50..a6def2a70 100644
--- a/vendor/github.com/hashicorp/go-plugin/client.go
+++ b/vendor/github.com/hashicorp/go-plugin/client.go
@@ -21,7 +21,6 @@ import (
"sync"
"sync/atomic"
"time"
- "unicode"
hclog "github.com/hashicorp/go-hclog"
)
@@ -88,6 +87,10 @@ type Client struct {
// goroutines.
clientWaitGroup sync.WaitGroup
+ // stderrWaitGroup is used to prevent the command's Wait() function from
+ // being called before we've finished reading from the stderr pipe.
+ stderrWaitGroup sync.WaitGroup
+
// processKilled is used for testing only, to flag when the process was
// forcefully killed.
processKilled bool
@@ -591,6 +594,12 @@ func (c *Client) Start() (addr net.Addr, err error) {
// Create a context for when we kill
c.doneCtx, c.ctxCancel = context.WithCancel(context.Background())
+ // Start goroutine that logs the stderr
+ c.clientWaitGroup.Add(1)
+ c.stderrWaitGroup.Add(1)
+ // logStderr calls Done()
+ go c.logStderr(cmdStderr)
+
c.clientWaitGroup.Add(1)
go func() {
// ensure the context is cancelled when we're done
@@ -603,6 +612,10 @@ func (c *Client) Start() (addr net.Addr, err error) {
pid := c.process.Pid
path := cmd.Path
+ // wait to finish reading from stderr since the stderr pipe reader
+ // will be closed by the subsequent call to cmd.Wait().
+ c.stderrWaitGroup.Wait()
+
// Wait for the command to end.
err := cmd.Wait()
@@ -625,11 +638,6 @@ func (c *Client) Start() (addr net.Addr, err error) {
c.exited = true
}()
- // Start goroutine that logs the stderr
- c.clientWaitGroup.Add(1)
- // logStderr calls Done()
- go c.logStderr(cmdStderr)
-
// Start a goroutine that is going to be reading the lines
// out of stdout
linesCh := make(chan string)
@@ -780,7 +788,10 @@ func (c *Client) reattach() (net.Addr, error) {
// Verify the process still exists. If not, then it is an error
p, err := os.FindProcess(c.config.Reattach.Pid)
if err != nil {
- return nil, err
+ // On Unix systems, FindProcess never returns an error.
+ // On Windows, for non-existent pids it returns:
+ // os.SyscallError - 'OpenProcess: the paremter is incorrect'
+ return nil, ErrProcessNotFound
}
// Attempt to connect to the addr since on Unix systems FindProcess
@@ -933,21 +944,64 @@ func (c *Client) dialer(_ string, timeout time.Duration) (net.Conn, error) {
return conn, nil
}
+var stdErrBufferSize = 64 * 1024
+
func (c *Client) logStderr(r io.Reader) {
defer c.clientWaitGroup.Done()
-
- scanner := bufio.NewScanner(r)
+ defer c.stderrWaitGroup.Done()
l := c.logger.Named(filepath.Base(c.config.Cmd.Path))
- for scanner.Scan() {
- line := scanner.Text()
- c.config.Stderr.Write([]byte(line + "\n"))
- line = strings.TrimRightFunc(line, unicode.IsSpace)
+ reader := bufio.NewReaderSize(r, stdErrBufferSize)
+ // continuation indicates the previous line was a prefix
+ continuation := false
+
+ for {
+ line, isPrefix, err := reader.ReadLine()
+ switch {
+ case err == io.EOF:
+ return
+ case err != nil:
+ l.Error("reading plugin stderr", "error", err)
+ return
+ }
+
+ c.config.Stderr.Write(line)
+
+ // The line was longer than our max token size, so it's likely
+ // incomplete and won't unmarshal.
+ if isPrefix || continuation {
+ l.Debug(string(line))
+
+ // if we're finishing a continued line, add the newline back in
+ if !isPrefix {
+ c.config.Stderr.Write([]byte{'\n'})
+ }
+
+ continuation = isPrefix
+ continue
+ }
+
+ c.config.Stderr.Write([]byte{'\n'})
entry, err := parseJSON(line)
// If output is not JSON format, print directly to Debug
if err != nil {
- l.Debug(line)
+ // Attempt to infer the desired log level from the commonly used
+ // string prefixes
+ switch line := string(line); {
+ case strings.HasPrefix(line, "[TRACE]"):
+ l.Trace(line)
+ case strings.HasPrefix(line, "[DEBUG]"):
+ l.Debug(line)
+ case strings.HasPrefix(line, "[INFO]"):
+ l.Info(line)
+ case strings.HasPrefix(line, "[WARN]"):
+ l.Warn(line)
+ case strings.HasPrefix(line, "[ERROR]"):
+ l.Error(line)
+ default:
+ l.Debug(line)
+ }
} else {
out := flattenKVPairs(entry.KVPairs)
@@ -963,11 +1017,12 @@ func (c *Client) logStderr(r io.Reader) {
l.Warn(entry.Message, out...)
case hclog.Error:
l.Error(entry.Message, out...)
+ default:
+ // if there was no log level, it's likely this is unexpected
+ // json from something other than hclog, and we should output
+ // it verbatim.
+ l.Debug(string(line))
}
}
}
-
- if err := scanner.Err(); err != nil {
- l.Error("reading plugin stderr", "error", err)
- }
}
diff --git a/vendor/github.com/hashicorp/go-plugin/go.mod b/vendor/github.com/hashicorp/go-plugin/go.mod
index 20112852c..f3ddf44e4 100644
--- a/vendor/github.com/hashicorp/go-plugin/go.mod
+++ b/vendor/github.com/hashicorp/go-plugin/go.mod
@@ -1,12 +1,16 @@
module github.com/hashicorp/go-plugin
require (
+ github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
github.com/golang/protobuf v1.2.0
github.com/hashicorp/go-hclog v0.0.0-20180709165350-ff2cf002a8dd
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb
github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77
github.com/oklog/run v1.0.0
+ github.com/stretchr/testify v1.3.0 // indirect
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d
+ golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4 // indirect
+ golang.org/x/sys v0.0.0-20190129075346-302c3dd5f1cc // indirect
golang.org/x/text v0.3.0 // indirect
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8 // indirect
google.golang.org/grpc v1.14.0
diff --git a/vendor/github.com/hashicorp/go-plugin/go.sum b/vendor/github.com/hashicorp/go-plugin/go.sum
index 9ae0bec8e..21b14e998 100644
--- a/vendor/github.com/hashicorp/go-plugin/go.sum
+++ b/vendor/github.com/hashicorp/go-plugin/go.sum
@@ -1,3 +1,7 @@
+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/golang/glog v0.0.0-20160126235308-23def4e6c14b h1:VKtxabqXZkF25pY9ekfRL6a582T4P37/31XEstQ5p58=
+github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
github.com/golang/protobuf v1.2.0 h1:P3YflyNX/ehuJFLhxviNdFxQPkGK5cDcApsge1SqnvM=
github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
github.com/hashicorp/go-hclog v0.0.0-20180709165350-ff2cf002a8dd h1:rNuUHR+CvK1IS89MMtcF0EpcVMZtjKfPRp4MEmt/aTs=
@@ -8,8 +12,17 @@ github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77 h1:
github.com/mitchellh/go-testing-interface v0.0.0-20171004221916-a61a99592b77/go.mod h1:kRemZodwjscx+RGhAo8eIhFbs2+BFgRtFPeD/KE+zxI=
github.com/oklog/run v1.0.0 h1:Ru7dDtJNOyC66gQ5dQmaCa0qIsAUFY3sFpK1Xk8igrw=
github.com/oklog/run v1.0.0/go.mod h1:dlhp/R75TPv97u0XWUtDeV/lRKWPKSdTuV0TZvrmrQA=
+github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
+github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
+github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
+github.com/stretchr/testify v1.3.0 h1:TivCn/peBQ7UY8ooIcPgZFpTNSz0Q2U6UrFlUfqbe0Q=
+github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d h1:g9qWBGx4puODJTMVyoPrpoxPFgVGd+z1DZwjfRu4d0I=
golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
+golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4 h1:YUO/7uOKsKeq9UokNS62b8FYywz3ker1l1vDZRCRefw=
+golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sys v0.0.0-20190129075346-302c3dd5f1cc h1:WiYx1rIFmx8c0mXAFtv5D/mHyKe1+jmuP7PViuwqwuQ=
+golang.org/x/sys v0.0.0-20190129075346-302c3dd5f1cc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
golang.org/x/text v0.3.0 h1:g61tztE5qeGQ89tm6NTjjM9VPIm088od1l6aSorWRWg=
golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8 h1:Nw54tB0rB7hY/N0NQvRW8DG4Yk3Q6T9cu9RcFQDu1tc=
diff --git a/vendor/github.com/hashicorp/go-plugin/grpc_broker.go b/vendor/github.com/hashicorp/go-plugin/grpc_broker.go
index 1a13780bc..daf142d17 100644
--- a/vendor/github.com/hashicorp/go-plugin/grpc_broker.go
+++ b/vendor/github.com/hashicorp/go-plugin/grpc_broker.go
@@ -11,7 +11,7 @@ import (
"sync/atomic"
"time"
- "github.com/hashicorp/go-plugin/internal/proto"
+ "github.com/hashicorp/go-plugin/internal/plugin"
"github.com/oklog/run"
"google.golang.org/grpc"
@@ -21,14 +21,14 @@ import (
// streamer interface is used in the broker to send/receive connection
// information.
type streamer interface {
- Send(*proto.ConnInfo) error
- Recv() (*proto.ConnInfo, error)
+ Send(*plugin.ConnInfo) error
+ Recv() (*plugin.ConnInfo, error)
Close()
}
// sendErr is used to pass errors back during a send.
type sendErr struct {
- i *proto.ConnInfo
+ i *plugin.ConnInfo
ch chan error
}
@@ -40,7 +40,7 @@ type gRPCBrokerServer struct {
send chan *sendErr
// recv is used to receive connection info from the gRPC stream.
- recv chan *proto.ConnInfo
+ recv chan *plugin.ConnInfo
// quit closes down the stream.
quit chan struct{}
@@ -52,7 +52,7 @@ type gRPCBrokerServer struct {
func newGRPCBrokerServer() *gRPCBrokerServer {
return &gRPCBrokerServer{
send: make(chan *sendErr),
- recv: make(chan *proto.ConnInfo),
+ recv: make(chan *plugin.ConnInfo),
quit: make(chan struct{}),
}
}
@@ -60,7 +60,7 @@ func newGRPCBrokerServer() *gRPCBrokerServer {
// StartStream implements the GRPCBrokerServer interface and will block until
// the quit channel is closed or the context reports Done. The stream will pass
// connection information to/from the client.
-func (s *gRPCBrokerServer) StartStream(stream proto.GRPCBroker_StartStreamServer) error {
+func (s *gRPCBrokerServer) StartStream(stream plugin.GRPCBroker_StartStreamServer) error {
doneCh := stream.Context().Done()
defer s.Close()
@@ -99,7 +99,7 @@ func (s *gRPCBrokerServer) StartStream(stream proto.GRPCBroker_StartStreamServer
// Send is used by the GRPCBroker to pass connection information into the stream
// to the client.
-func (s *gRPCBrokerServer) Send(i *proto.ConnInfo) error {
+func (s *gRPCBrokerServer) Send(i *plugin.ConnInfo) error {
ch := make(chan error)
defer close(ch)
@@ -117,7 +117,7 @@ func (s *gRPCBrokerServer) Send(i *proto.ConnInfo) error {
// Recv is used by the GRPCBroker to pass connection information that has been
// sent from the client from the stream to the broker.
-func (s *gRPCBrokerServer) Recv() (*proto.ConnInfo, error) {
+func (s *gRPCBrokerServer) Recv() (*plugin.ConnInfo, error) {
select {
case <-s.quit:
return nil, errors.New("broker closed")
@@ -138,13 +138,13 @@ func (s *gRPCBrokerServer) Close() {
// streamer interfaces.
type gRPCBrokerClientImpl struct {
// client is the underlying GRPC client used to make calls to the server.
- client proto.GRPCBrokerClient
+ client plugin.GRPCBrokerClient
// send is used to send connection info to the gRPC stream.
send chan *sendErr
// recv is used to receive connection info from the gRPC stream.
- recv chan *proto.ConnInfo
+ recv chan *plugin.ConnInfo
// quit closes down the stream.
quit chan struct{}
@@ -155,9 +155,9 @@ type gRPCBrokerClientImpl struct {
func newGRPCBrokerClient(conn *grpc.ClientConn) *gRPCBrokerClientImpl {
return &gRPCBrokerClientImpl{
- client: proto.NewGRPCBrokerClient(conn),
+ client: plugin.NewGRPCBrokerClient(conn),
send: make(chan *sendErr),
- recv: make(chan *proto.ConnInfo),
+ recv: make(chan *plugin.ConnInfo),
quit: make(chan struct{}),
}
}
@@ -209,7 +209,7 @@ func (s *gRPCBrokerClientImpl) StartStream() error {
// Send is used by the GRPCBroker to pass connection information into the stream
// to the plugin.
-func (s *gRPCBrokerClientImpl) Send(i *proto.ConnInfo) error {
+func (s *gRPCBrokerClientImpl) Send(i *plugin.ConnInfo) error {
ch := make(chan error)
defer close(ch)
@@ -227,7 +227,7 @@ func (s *gRPCBrokerClientImpl) Send(i *proto.ConnInfo) error {
// Recv is used by the GRPCBroker to pass connection information that has been
// sent from the plugin to the broker.
-func (s *gRPCBrokerClientImpl) Recv() (*proto.ConnInfo, error) {
+func (s *gRPCBrokerClientImpl) Recv() (*plugin.ConnInfo, error) {
select {
case <-s.quit:
return nil, errors.New("broker closed")
@@ -268,7 +268,7 @@ type GRPCBroker struct {
}
type gRPCBrokerPending struct {
- ch chan *proto.ConnInfo
+ ch chan *plugin.ConnInfo
doneCh chan struct{}
}
@@ -290,7 +290,7 @@ func (b *GRPCBroker) Accept(id uint32) (net.Listener, error) {
return nil, err
}
- err = b.streamer.Send(&proto.ConnInfo{
+ err = b.streamer.Send(&plugin.ConnInfo{
ServiceId: id,
Network: listener.Addr().Network(),
Address: listener.Addr().String(),
@@ -365,7 +365,7 @@ func (b *GRPCBroker) Close() error {
// Dial opens a connection by ID.
func (b *GRPCBroker) Dial(id uint32) (conn *grpc.ClientConn, err error) {
- var c *proto.ConnInfo
+ var c *plugin.ConnInfo
// Open the stream
p := b.getStream(id)
@@ -435,7 +435,7 @@ func (m *GRPCBroker) getStream(id uint32) *gRPCBrokerPending {
}
m.streams[id] = &gRPCBrokerPending{
- ch: make(chan *proto.ConnInfo, 1),
+ ch: make(chan *plugin.ConnInfo, 1),
doneCh: make(chan struct{}),
}
return m.streams[id]
diff --git a/vendor/github.com/hashicorp/go-plugin/grpc_client.go b/vendor/github.com/hashicorp/go-plugin/grpc_client.go
index e81f6bd60..d0d0d8e20 100644
--- a/vendor/github.com/hashicorp/go-plugin/grpc_client.go
+++ b/vendor/github.com/hashicorp/go-plugin/grpc_client.go
@@ -3,10 +3,11 @@ package plugin
import (
"crypto/tls"
"fmt"
+ "math"
"net"
"time"
- "github.com/hashicorp/go-plugin/internal/proto"
+ "github.com/hashicorp/go-plugin/internal/plugin"
"golang.org/x/net/context"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
@@ -32,6 +33,11 @@ func dialGRPCConn(tls *tls.Config, dialer func(string, time.Duration) (net.Conn,
credentials.NewTLS(tls)))
}
+ opts = append(opts,
+ grpc.WithDefaultCallOptions(grpc.MaxCallRecvMsgSize(math.MaxInt32)),
+ grpc.WithDefaultCallOptions(grpc.MaxCallSendMsgSize(math.MaxInt32)))
+
+
// Connect. Note the first parameter is unused because we use a custom
// dialer that has the state to see the address.
conn, err := grpc.Dial("unused", opts...)
@@ -61,7 +67,7 @@ func newGRPCClient(doneCtx context.Context, c *Client) (*GRPCClient, error) {
Plugins: c.config.Plugins,
doneCtx: doneCtx,
broker: broker,
- controller: proto.NewGRPCControllerClient(conn),
+ controller: plugin.NewGRPCControllerClient(conn),
}
return cl, nil
@@ -75,13 +81,13 @@ type GRPCClient struct {
doneCtx context.Context
broker *GRPCBroker
- controller proto.GRPCControllerClient
+ controller plugin.GRPCControllerClient
}
// ClientProtocol impl.
func (c *GRPCClient) Close() error {
c.broker.Close()
- c.controller.Shutdown(c.doneCtx, &proto.Empty{})
+ c.controller.Shutdown(c.doneCtx, &plugin.Empty{})
return c.Conn.Close()
}
diff --git a/vendor/github.com/hashicorp/go-plugin/grpc_controller.go b/vendor/github.com/hashicorp/go-plugin/grpc_controller.go
index aa4c38114..1a8a8e70e 100644
--- a/vendor/github.com/hashicorp/go-plugin/grpc_controller.go
+++ b/vendor/github.com/hashicorp/go-plugin/grpc_controller.go
@@ -3,7 +3,7 @@ package plugin
import (
"context"
- "github.com/hashicorp/go-plugin/internal/proto"
+ "github.com/hashicorp/go-plugin/internal/plugin"
)
// GRPCControllerServer handles shutdown calls to terminate the server when the
@@ -14,8 +14,8 @@ type grpcControllerServer struct {
// Shutdown stops the grpc server. It first will attempt a graceful stop, then a
// full stop on the server.
-func (s *grpcControllerServer) Shutdown(ctx context.Context, _ *proto.Empty) (*proto.Empty, error) {
- resp := &proto.Empty{}
+func (s *grpcControllerServer) Shutdown(ctx context.Context, _ *plugin.Empty) (*plugin.Empty, error) {
+ resp := &plugin.Empty{}
// TODO: figure out why GracefullStop doesn't work.
s.server.Stop()
diff --git a/vendor/github.com/hashicorp/go-plugin/grpc_server.go b/vendor/github.com/hashicorp/go-plugin/grpc_server.go
index 60df4a43d..d3dbf1ced 100644
--- a/vendor/github.com/hashicorp/go-plugin/grpc_server.go
+++ b/vendor/github.com/hashicorp/go-plugin/grpc_server.go
@@ -9,7 +9,7 @@ import (
"net"
hclog "github.com/hashicorp/go-hclog"
- "github.com/hashicorp/go-plugin/internal/proto"
+ "github.com/hashicorp/go-plugin/internal/plugin"
"google.golang.org/grpc"
"google.golang.org/grpc/credentials"
"google.golang.org/grpc/health"
@@ -75,7 +75,7 @@ func (s *GRPCServer) Init() error {
// Register the broker service
brokerServer := newGRPCBrokerServer()
- proto.RegisterGRPCBrokerServer(s.server, brokerServer)
+ plugin.RegisterGRPCBrokerServer(s.server, brokerServer)
s.broker = newGRPCBroker(brokerServer, s.TLS)
go s.broker.Run()
@@ -83,7 +83,7 @@ func (s *GRPCServer) Init() error {
controllerServer := &grpcControllerServer{
server: s,
}
- proto.RegisterGRPCControllerServer(s.server, controllerServer)
+ plugin.RegisterGRPCControllerServer(s.server, controllerServer)
// Register all our plugins onto the gRPC server.
for k, raw := range s.Plugins {
diff --git a/vendor/github.com/hashicorp/go-plugin/internal/proto/gen.go b/vendor/github.com/hashicorp/go-plugin/internal/plugin/gen.go
similarity index 86%
rename from vendor/github.com/hashicorp/go-plugin/internal/proto/gen.go
rename to vendor/github.com/hashicorp/go-plugin/internal/plugin/gen.go
index 294ea4313..aa2fdc813 100644
--- a/vendor/github.com/hashicorp/go-plugin/internal/proto/gen.go
+++ b/vendor/github.com/hashicorp/go-plugin/internal/plugin/gen.go
@@ -1,3 +1,3 @@
//go:generate protoc -I ./ ./grpc_broker.proto ./grpc_controller.proto --go_out=plugins=grpc:.
-package proto
+package plugin
diff --git a/vendor/github.com/hashicorp/go-plugin/internal/proto/grpc_broker.pb.go b/vendor/github.com/hashicorp/go-plugin/internal/plugin/grpc_broker.pb.go
similarity index 82%
rename from vendor/github.com/hashicorp/go-plugin/internal/proto/grpc_broker.pb.go
rename to vendor/github.com/hashicorp/go-plugin/internal/plugin/grpc_broker.pb.go
index 39522f336..b6850aa59 100644
--- a/vendor/github.com/hashicorp/go-plugin/internal/proto/grpc_broker.pb.go
+++ b/vendor/github.com/hashicorp/go-plugin/internal/plugin/grpc_broker.pb.go
@@ -1,7 +1,7 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: grpc_broker.proto
-package proto
+package plugin
import (
fmt "fmt"
@@ -78,24 +78,24 @@ func (m *ConnInfo) GetAddress() string {
}
func init() {
- proto.RegisterType((*ConnInfo)(nil), "proto.ConnInfo")
+ proto.RegisterType((*ConnInfo)(nil), "plugin.ConnInfo")
}
func init() { proto.RegisterFile("grpc_broker.proto", fileDescriptor_802e9beed3ec3b28) }
var fileDescriptor_802e9beed3ec3b28 = []byte{
- // 164 bytes of a gzipped FileDescriptorProto
+ // 175 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4c, 0x2f, 0x2a, 0x48,
- 0x8e, 0x4f, 0x2a, 0xca, 0xcf, 0x4e, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x05,
- 0x53, 0x4a, 0xb1, 0x5c, 0x1c, 0xce, 0xf9, 0x79, 0x79, 0x9e, 0x79, 0x69, 0xf9, 0x42, 0xb2, 0x5c,
- 0x5c, 0xc5, 0xa9, 0x45, 0x65, 0x99, 0xc9, 0xa9, 0xf1, 0x99, 0x29, 0x12, 0x8c, 0x0a, 0x8c, 0x1a,
- 0xbc, 0x41, 0x9c, 0x50, 0x11, 0xcf, 0x14, 0x21, 0x09, 0x2e, 0xf6, 0xbc, 0xd4, 0x92, 0xf2, 0xfc,
- 0xa2, 0x6c, 0x09, 0x26, 0x05, 0x46, 0x0d, 0xce, 0x20, 0x18, 0x17, 0x24, 0x93, 0x98, 0x92, 0x52,
- 0x94, 0x5a, 0x5c, 0x2c, 0xc1, 0x0c, 0x91, 0x81, 0x72, 0x8d, 0x1c, 0xb9, 0xb8, 0xdc, 0x83, 0x02,
- 0x9c, 0x9d, 0xc0, 0x36, 0x0b, 0x19, 0x73, 0x71, 0x07, 0x97, 0x24, 0x16, 0x95, 0x04, 0x97, 0x14,
- 0xa5, 0x26, 0xe6, 0x0a, 0xf1, 0x43, 0x9c, 0xa2, 0x07, 0x73, 0x80, 0x14, 0xba, 0x80, 0x06, 0xa3,
- 0x01, 0x63, 0x12, 0x1b, 0x58, 0xcc, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x7a, 0xda, 0xd5, 0x84,
- 0xc4, 0x00, 0x00, 0x00,
+ 0x8e, 0x4f, 0x2a, 0xca, 0xcf, 0x4e, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x2b,
+ 0xc8, 0x29, 0x4d, 0xcf, 0xcc, 0x53, 0x8a, 0xe5, 0xe2, 0x70, 0xce, 0xcf, 0xcb, 0xf3, 0xcc, 0x4b,
+ 0xcb, 0x17, 0x92, 0xe5, 0xe2, 0x2a, 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0x8d, 0xcf, 0x4c, 0x91,
+ 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0d, 0xe2, 0x84, 0x8a, 0x78, 0xa6, 0x08, 0x49, 0x70, 0xb1, 0xe7,
+ 0xa5, 0x96, 0x94, 0xe7, 0x17, 0x65, 0x4b, 0x30, 0x29, 0x30, 0x6a, 0x70, 0x06, 0xc1, 0xb8, 0x20,
+ 0x99, 0xc4, 0x94, 0x94, 0xa2, 0xd4, 0xe2, 0x62, 0x09, 0x66, 0x88, 0x0c, 0x94, 0x6b, 0xe4, 0xcc,
+ 0xc5, 0xe5, 0x1e, 0x14, 0xe0, 0xec, 0x04, 0xb6, 0x5a, 0xc8, 0x94, 0x8b, 0x3b, 0xb8, 0x24, 0xb1,
+ 0xa8, 0x24, 0xb8, 0xa4, 0x28, 0x35, 0x31, 0x57, 0x48, 0x40, 0x0f, 0xe2, 0x08, 0x3d, 0x98, 0x0b,
+ 0xa4, 0x30, 0x44, 0x34, 0x18, 0x0d, 0x18, 0x9d, 0x38, 0xa2, 0xa0, 0xae, 0x4d, 0x62, 0x03, 0x3b,
+ 0xde, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x10, 0x15, 0x39, 0x47, 0xd1, 0x00, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -122,7 +122,7 @@ func NewGRPCBrokerClient(cc *grpc.ClientConn) GRPCBrokerClient {
}
func (c *gRPCBrokerClient) StartStream(ctx context.Context, opts ...grpc.CallOption) (GRPCBroker_StartStreamClient, error) {
- stream, err := c.cc.NewStream(ctx, &_GRPCBroker_serviceDesc.Streams[0], "/proto.GRPCBroker/StartStream", opts...)
+ stream, err := c.cc.NewStream(ctx, &_GRPCBroker_serviceDesc.Streams[0], "/plugin.GRPCBroker/StartStream", opts...)
if err != nil {
return nil, err
}
@@ -188,7 +188,7 @@ func (x *gRPCBrokerStartStreamServer) Recv() (*ConnInfo, error) {
}
var _GRPCBroker_serviceDesc = grpc.ServiceDesc{
- ServiceName: "proto.GRPCBroker",
+ ServiceName: "plugin.GRPCBroker",
HandlerType: (*GRPCBrokerServer)(nil),
Methods: []grpc.MethodDesc{},
Streams: []grpc.StreamDesc{
diff --git a/vendor/github.com/hashicorp/go-plugin/internal/proto/grpc_broker.proto b/vendor/github.com/hashicorp/go-plugin/internal/plugin/grpc_broker.proto
similarity index 81%
rename from vendor/github.com/hashicorp/go-plugin/internal/proto/grpc_broker.proto
rename to vendor/github.com/hashicorp/go-plugin/internal/plugin/grpc_broker.proto
index 7d978d274..3fa79e8ac 100644
--- a/vendor/github.com/hashicorp/go-plugin/internal/proto/grpc_broker.proto
+++ b/vendor/github.com/hashicorp/go-plugin/internal/plugin/grpc_broker.proto
@@ -1,5 +1,6 @@
syntax = "proto3";
-package proto;
+package plugin;
+option go_package = "plugin";
message ConnInfo {
uint32 service_id = 1;
diff --git a/vendor/github.com/hashicorp/go-plugin/internal/proto/grpc_controller.pb.go b/vendor/github.com/hashicorp/go-plugin/internal/plugin/grpc_controller.pb.go
similarity index 84%
rename from vendor/github.com/hashicorp/go-plugin/internal/proto/grpc_controller.pb.go
rename to vendor/github.com/hashicorp/go-plugin/internal/plugin/grpc_controller.pb.go
index bb780d7ff..38b420432 100644
--- a/vendor/github.com/hashicorp/go-plugin/internal/proto/grpc_controller.pb.go
+++ b/vendor/github.com/hashicorp/go-plugin/internal/plugin/grpc_controller.pb.go
@@ -1,7 +1,7 @@
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: grpc_controller.proto
-package proto
+package plugin
import (
fmt "fmt"
@@ -54,20 +54,20 @@ func (m *Empty) XXX_DiscardUnknown() {
var xxx_messageInfo_Empty proto.InternalMessageInfo
func init() {
- proto.RegisterType((*Empty)(nil), "proto.Empty")
+ proto.RegisterType((*Empty)(nil), "plugin.Empty")
}
func init() { proto.RegisterFile("grpc_controller.proto", fileDescriptor_23c2c7e42feab570) }
var fileDescriptor_23c2c7e42feab570 = []byte{
- // 97 bytes of a gzipped FileDescriptorProto
+ // 108 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4d, 0x2f, 0x2a, 0x48,
0x8e, 0x4f, 0xce, 0xcf, 0x2b, 0x29, 0xca, 0xcf, 0xc9, 0x49, 0x2d, 0xd2, 0x2b, 0x28, 0xca, 0x2f,
- 0xc9, 0x17, 0x62, 0x05, 0x53, 0x4a, 0xec, 0x5c, 0xac, 0xae, 0xb9, 0x05, 0x25, 0x95, 0x46, 0x16,
- 0x5c, 0x7c, 0xee, 0x41, 0x01, 0xce, 0xce, 0x70, 0x75, 0x42, 0x6a, 0x5c, 0x1c, 0xc1, 0x19, 0xa5,
- 0x25, 0x29, 0xf9, 0xe5, 0x79, 0x42, 0x3c, 0x10, 0x5d, 0x7a, 0x60, 0xb5, 0x52, 0x28, 0xbc, 0x24,
- 0x36, 0x30, 0xc7, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x69, 0xa1, 0xad, 0x79, 0x69, 0x00, 0x00,
- 0x00,
+ 0xc9, 0x17, 0x62, 0x2b, 0xc8, 0x29, 0x4d, 0xcf, 0xcc, 0x53, 0x62, 0xe7, 0x62, 0x75, 0xcd, 0x2d,
+ 0x28, 0xa9, 0x34, 0xb2, 0xe2, 0xe2, 0x73, 0x0f, 0x0a, 0x70, 0x76, 0x86, 0x2b, 0x14, 0xd2, 0xe0,
+ 0xe2, 0x08, 0xce, 0x28, 0x2d, 0x49, 0xc9, 0x2f, 0xcf, 0x13, 0xe2, 0xd5, 0x83, 0xa8, 0xd7, 0x03,
+ 0x2b, 0x96, 0x42, 0xe5, 0x3a, 0x71, 0x44, 0x41, 0x8d, 0x4b, 0x62, 0x03, 0x9b, 0x6e, 0x0c, 0x08,
+ 0x00, 0x00, 0xff, 0xff, 0xab, 0x7c, 0x27, 0xe5, 0x76, 0x00, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.
@@ -95,7 +95,7 @@ func NewGRPCControllerClient(cc *grpc.ClientConn) GRPCControllerClient {
func (c *gRPCControllerClient) Shutdown(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*Empty, error) {
out := new(Empty)
- err := c.cc.Invoke(ctx, "/proto.GRPCController/Shutdown", in, out, opts...)
+ err := c.cc.Invoke(ctx, "/plugin.GRPCController/Shutdown", in, out, opts...)
if err != nil {
return nil, err
}
@@ -121,7 +121,7 @@ func _GRPCController_Shutdown_Handler(srv interface{}, ctx context.Context, dec
}
info := &grpc.UnaryServerInfo{
Server: srv,
- FullMethod: "/proto.GRPCController/Shutdown",
+ FullMethod: "/plugin.GRPCController/Shutdown",
}
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
return srv.(GRPCControllerServer).Shutdown(ctx, req.(*Empty))
@@ -130,7 +130,7 @@ func _GRPCController_Shutdown_Handler(srv interface{}, ctx context.Context, dec
}
var _GRPCController_serviceDesc = grpc.ServiceDesc{
- ServiceName: "proto.GRPCController",
+ ServiceName: "plugin.GRPCController",
HandlerType: (*GRPCControllerServer)(nil),
Methods: []grpc.MethodDesc{
{
diff --git a/vendor/github.com/hashicorp/go-plugin/internal/proto/grpc_controller.proto b/vendor/github.com/hashicorp/go-plugin/internal/plugin/grpc_controller.proto
similarity index 80%
rename from vendor/github.com/hashicorp/go-plugin/internal/proto/grpc_controller.proto
rename to vendor/github.com/hashicorp/go-plugin/internal/plugin/grpc_controller.proto
index ecdf4e6e0..345d0a1c1 100644
--- a/vendor/github.com/hashicorp/go-plugin/internal/proto/grpc_controller.proto
+++ b/vendor/github.com/hashicorp/go-plugin/internal/plugin/grpc_controller.proto
@@ -1,5 +1,6 @@
syntax = "proto3";
-package proto;
+package plugin;
+option go_package = "plugin";
message Empty {
}
diff --git a/vendor/github.com/hashicorp/go-plugin/log_entry.go b/vendor/github.com/hashicorp/go-plugin/log_entry.go
index 2996c14c3..fb2ef930c 100644
--- a/vendor/github.com/hashicorp/go-plugin/log_entry.go
+++ b/vendor/github.com/hashicorp/go-plugin/log_entry.go
@@ -32,11 +32,11 @@ func flattenKVPairs(kvs []*logEntryKV) []interface{} {
}
// parseJSON handles parsing JSON output
-func parseJSON(input string) (*logEntry, error) {
+func parseJSON(input []byte) (*logEntry, error) {
var raw map[string]interface{}
entry := &logEntry{}
- err := json.Unmarshal([]byte(input), &raw)
+ err := json.Unmarshal(input, &raw)
if err != nil {
return nil, err
}
diff --git a/vendor/github.com/hashicorp/go-plugin/server.go b/vendor/github.com/hashicorp/go-plugin/server.go
index fc9f05a9f..4c230e3ab 100644
--- a/vendor/github.com/hashicorp/go-plugin/server.go
+++ b/vendor/github.com/hashicorp/go-plugin/server.go
@@ -363,14 +363,34 @@ func serverListener() (net.Listener, error) {
}
func serverListener_tcp() (net.Listener, error) {
- minPort, err := strconv.ParseInt(os.Getenv("PLUGIN_MIN_PORT"), 10, 32)
- if err != nil {
- return nil, err
+ envMinPort := os.Getenv("PLUGIN_MIN_PORT")
+ envMaxPort := os.Getenv("PLUGIN_MAX_PORT")
+
+ var minPort, maxPort int64
+ var err error
+
+ switch {
+ case len(envMinPort) == 0:
+ minPort = 0
+ default:
+ minPort, err = strconv.ParseInt(envMinPort, 10, 32)
+ if err != nil {
+ return nil, fmt.Errorf("Couldn't get value from PLUGIN_MIN_PORT: %v", err)
+ }
}
- maxPort, err := strconv.ParseInt(os.Getenv("PLUGIN_MAX_PORT"), 10, 32)
- if err != nil {
- return nil, err
+ switch {
+ case len(envMaxPort) == 0:
+ maxPort = 0
+ default:
+ maxPort, err = strconv.ParseInt(envMaxPort, 10, 32)
+ if err != nil {
+ return nil, fmt.Errorf("Couldn't get value from PLUGIN_MAX_PORT: %v", err)
+ }
+ }
+
+ if minPort > maxPort {
+ return nil, fmt.Errorf("ENV_MIN_PORT value of %d is greater than PLUGIN_MAX_PORT value of %d", minPort, maxPort)
}
for port := minPort; port <= maxPort; port++ {
diff --git a/vendor/github.com/hashicorp/go-plugin/testing.go b/vendor/github.com/hashicorp/go-plugin/testing.go
index 8a8d11560..2cf2c26cc 100644
--- a/vendor/github.com/hashicorp/go-plugin/testing.go
+++ b/vendor/github.com/hashicorp/go-plugin/testing.go
@@ -7,9 +7,9 @@ import (
"net"
"net/rpc"
- hclog "github.com/hashicorp/go-hclog"
- "github.com/hashicorp/go-plugin/internal/proto"
"github.com/mitchellh/go-testing-interface"
+ hclog "github.com/hashicorp/go-hclog"
+ "github.com/hashicorp/go-plugin/internal/plugin"
"google.golang.org/grpc"
)
@@ -173,7 +173,7 @@ func TestPluginGRPCConn(t testing.T, ps map[string]Plugin) (*GRPCClient, *GRPCSe
Plugins: ps,
broker: broker,
doneCtx: context.Background(),
- controller: proto.NewGRPCControllerClient(conn),
+ controller: plugin.NewGRPCControllerClient(conn),
}
return client, server
diff --git a/vendor/github.com/hashicorp/go-version/README.md b/vendor/github.com/hashicorp/go-version/README.md
index 6f3a15ce7..2ee50c503 100644
--- a/vendor/github.com/hashicorp/go-version/README.md
+++ b/vendor/github.com/hashicorp/go-version/README.md
@@ -1,5 +1,5 @@
# Versioning Library for Go
-[](https://travis-ci.org/hashicorp/go-version)
+[](https://circleci.com/gh/hashicorp/go-version/tree/master)
go-version is a library for parsing versions and version constraints,
and verifying versions against a set of constraints. go-version
diff --git a/vendor/github.com/hashicorp/go-version/go.mod b/vendor/github.com/hashicorp/go-version/go.mod
new file mode 100644
index 000000000..f5285555f
--- /dev/null
+++ b/vendor/github.com/hashicorp/go-version/go.mod
@@ -0,0 +1 @@
+module github.com/hashicorp/go-version
diff --git a/vendor/github.com/hashicorp/go-version/version.go b/vendor/github.com/hashicorp/go-version/version.go
index 4d1e6e221..30454e1b4 100644
--- a/vendor/github.com/hashicorp/go-version/version.go
+++ b/vendor/github.com/hashicorp/go-version/version.go
@@ -10,14 +10,25 @@ import (
)
// The compiled regular expression used to test the validity of a version.
-var versionRegexp *regexp.Regexp
+var (
+ versionRegexp *regexp.Regexp
+ semverRegexp *regexp.Regexp
+)
// The raw regular expression string used for testing the validity
// of a version.
-const VersionRegexpRaw string = `v?([0-9]+(\.[0-9]+)*?)` +
- `(-([0-9]+[0-9A-Za-z\-~]*(\.[0-9A-Za-z\-~]+)*)|(-?([A-Za-z\-~]+[0-9A-Za-z\-~]*(\.[0-9A-Za-z\-~]+)*)))?` +
- `(\+([0-9A-Za-z\-~]+(\.[0-9A-Za-z\-~]+)*))?` +
- `?`
+const (
+ VersionRegexpRaw string = `v?([0-9]+(\.[0-9]+)*?)` +
+ `(-([0-9]+[0-9A-Za-z\-~]*(\.[0-9A-Za-z\-~]+)*)|(-?([A-Za-z\-~]+[0-9A-Za-z\-~]*(\.[0-9A-Za-z\-~]+)*)))?` +
+ `(\+([0-9A-Za-z\-~]+(\.[0-9A-Za-z\-~]+)*))?` +
+ `?`
+
+ // SemverRegexpRaw requires a separator between version and prerelease
+ SemverRegexpRaw string = `v?([0-9]+(\.[0-9]+)*?)` +
+ `(-([0-9]+[0-9A-Za-z\-~]*(\.[0-9A-Za-z\-~]+)*)|(-([A-Za-z\-~]+[0-9A-Za-z\-~]*(\.[0-9A-Za-z\-~]+)*)))?` +
+ `(\+([0-9A-Za-z\-~]+(\.[0-9A-Za-z\-~]+)*))?` +
+ `?`
+)
// Version represents a single version.
type Version struct {
@@ -30,12 +41,24 @@ type Version struct {
func init() {
versionRegexp = regexp.MustCompile("^" + VersionRegexpRaw + "$")
+ semverRegexp = regexp.MustCompile("^" + SemverRegexpRaw + "$")
}
// NewVersion parses the given version and returns a new
// Version.
func NewVersion(v string) (*Version, error) {
- matches := versionRegexp.FindStringSubmatch(v)
+ return newVersion(v, versionRegexp)
+}
+
+// NewSemver parses the given version and returns a new
+// Version that adheres strictly to SemVer specs
+// https://semver.org/
+func NewSemver(v string) (*Version, error) {
+ return newVersion(v, semverRegexp)
+}
+
+func newVersion(v string, pattern *regexp.Regexp) (*Version, error) {
+ matches := pattern.FindStringSubmatch(v)
if matches == nil {
return nil, fmt.Errorf("Malformed version: %s", v)
}
@@ -89,7 +112,7 @@ func Must(v *Version, err error) *Version {
// or larger than the other version, respectively.
//
// If you want boolean results, use the LessThan, Equal,
-// or GreaterThan methods.
+// GreaterThan, GreaterThanOrEqual or LessThanOrEqual methods.
func (v *Version) Compare(other *Version) int {
// A quick, efficient equality check
if v.String() == other.String() {
@@ -265,11 +288,21 @@ func (v *Version) GreaterThan(o *Version) bool {
return v.Compare(o) > 0
}
+// GreaterThanOrEqual tests if this version is greater than or equal to another version.
+func (v *Version) GreaterThanOrEqual(o *Version) bool {
+ return v.Compare(o) >= 0
+}
+
// LessThan tests if this version is less than another version.
func (v *Version) LessThan(o *Version) bool {
return v.Compare(o) < 0
}
+// LessThanOrEqual tests if this version is less than or equal to another version.
+func (v *Version) LessThanOrEqual(o *Version) bool {
+ return v.Compare(o) <= 0
+}
+
// Metadata returns any metadata that was part of the version
// string.
//
diff --git a/vendor/github.com/ugorji/go/codec/0_importpath.go b/vendor/github.com/ugorji/go/codec/0_importpath.go
deleted file mode 100644
index adbe862c2..000000000
--- a/vendor/github.com/ugorji/go/codec/0_importpath.go
+++ /dev/null
@@ -1,7 +0,0 @@
-// Copyright (c) 2012-2018 Ugorji Nwoke. All rights reserved.
-// Use of this source code is governed by a MIT license found in the LICENSE file.
-
-package codec // import "github.com/ugorji/go/codec"
-
-// This establishes that this package must be imported as github.com/ugorji/go/codec.
-// It makes forking easier, and plays well with pre-module releases of go.
diff --git a/vendor/golang.org/x/sys/windows/svc/event.go b/vendor/golang.org/x/sys/windows/svc/event.go
new file mode 100644
index 000000000..0508e2288
--- /dev/null
+++ b/vendor/golang.org/x/sys/windows/svc/event.go
@@ -0,0 +1,48 @@
+// Copyright 2012 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// +build windows
+
+package svc
+
+import (
+ "errors"
+
+ "golang.org/x/sys/windows"
+)
+
+// event represents auto-reset, initially non-signaled Windows event.
+// It is used to communicate between go and asm parts of this package.
+type event struct {
+ h windows.Handle
+}
+
+func newEvent() (*event, error) {
+ h, err := windows.CreateEvent(nil, 0, 0, nil)
+ if err != nil {
+ return nil, err
+ }
+ return &event{h: h}, nil
+}
+
+func (e *event) Close() error {
+ return windows.CloseHandle(e.h)
+}
+
+func (e *event) Set() error {
+ return windows.SetEvent(e.h)
+}
+
+func (e *event) Wait() error {
+ s, err := windows.WaitForSingleObject(e.h, windows.INFINITE)
+ switch s {
+ case windows.WAIT_OBJECT_0:
+ break
+ case windows.WAIT_FAILED:
+ return err
+ default:
+ return errors.New("unexpected result from WaitForSingleObject")
+ }
+ return nil
+}
diff --git a/vendor/golang.org/x/sys/windows/svc/go12.c b/vendor/golang.org/x/sys/windows/svc/go12.c
new file mode 100644
index 000000000..6f1be1fa3
--- /dev/null
+++ b/vendor/golang.org/x/sys/windows/svc/go12.c
@@ -0,0 +1,24 @@
+// Copyright 2012 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// +build windows
+// +build !go1.3
+
+// copied from pkg/runtime
+typedef unsigned int uint32;
+typedef unsigned long long int uint64;
+#ifdef _64BIT
+typedef uint64 uintptr;
+#else
+typedef uint32 uintptr;
+#endif
+
+// from sys_386.s or sys_amd64.s
+void ·servicemain(void);
+
+void
+·getServiceMain(uintptr *r)
+{
+ *r = (uintptr)·servicemain;
+}
diff --git a/vendor/golang.org/x/sys/windows/svc/go12.go b/vendor/golang.org/x/sys/windows/svc/go12.go
new file mode 100644
index 000000000..cd8b913c9
--- /dev/null
+++ b/vendor/golang.org/x/sys/windows/svc/go12.go
@@ -0,0 +1,11 @@
+// Copyright 2014 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// +build windows
+// +build !go1.3
+
+package svc
+
+// from go12.c
+func getServiceMain(r *uintptr)
diff --git a/vendor/golang.org/x/sys/windows/svc/go13.go b/vendor/golang.org/x/sys/windows/svc/go13.go
new file mode 100644
index 000000000..9d7f3cec5
--- /dev/null
+++ b/vendor/golang.org/x/sys/windows/svc/go13.go
@@ -0,0 +1,31 @@
+// Copyright 2014 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// +build windows
+// +build go1.3
+
+package svc
+
+import "unsafe"
+
+const ptrSize = 4 << (^uintptr(0) >> 63) // unsafe.Sizeof(uintptr(0)) but an ideal const
+
+// Should be a built-in for unsafe.Pointer?
+func add(p unsafe.Pointer, x uintptr) unsafe.Pointer {
+ return unsafe.Pointer(uintptr(p) + x)
+}
+
+// funcPC returns the entry PC of the function f.
+// It assumes that f is a func value. Otherwise the behavior is undefined.
+func funcPC(f interface{}) uintptr {
+ return **(**uintptr)(add(unsafe.Pointer(&f), ptrSize))
+}
+
+// from sys_386.s and sys_amd64.s
+func servicectlhandler(ctl uint32) uintptr
+func servicemain(argc uint32, argv **uint16)
+
+func getServiceMain(r *uintptr) {
+ *r = funcPC(servicemain)
+}
diff --git a/vendor/golang.org/x/sys/windows/svc/security.go b/vendor/golang.org/x/sys/windows/svc/security.go
new file mode 100644
index 000000000..6fbc9236e
--- /dev/null
+++ b/vendor/golang.org/x/sys/windows/svc/security.go
@@ -0,0 +1,62 @@
+// Copyright 2012 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// +build windows
+
+package svc
+
+import (
+ "unsafe"
+
+ "golang.org/x/sys/windows"
+)
+
+func allocSid(subAuth0 uint32) (*windows.SID, error) {
+ var sid *windows.SID
+ err := windows.AllocateAndInitializeSid(&windows.SECURITY_NT_AUTHORITY,
+ 1, subAuth0, 0, 0, 0, 0, 0, 0, 0, &sid)
+ if err != nil {
+ return nil, err
+ }
+ return sid, nil
+}
+
+// IsAnInteractiveSession determines if calling process is running interactively.
+// It queries the process token for membership in the Interactive group.
+// http://stackoverflow.com/questions/2668851/how-do-i-detect-that-my-application-is-running-as-service-or-in-an-interactive-s
+func IsAnInteractiveSession() (bool, error) {
+ interSid, err := allocSid(windows.SECURITY_INTERACTIVE_RID)
+ if err != nil {
+ return false, err
+ }
+ defer windows.FreeSid(interSid)
+
+ serviceSid, err := allocSid(windows.SECURITY_SERVICE_RID)
+ if err != nil {
+ return false, err
+ }
+ defer windows.FreeSid(serviceSid)
+
+ t, err := windows.OpenCurrentProcessToken()
+ if err != nil {
+ return false, err
+ }
+ defer t.Close()
+
+ gs, err := t.GetTokenGroups()
+ if err != nil {
+ return false, err
+ }
+ p := unsafe.Pointer(&gs.Groups[0])
+ groups := (*[2 << 20]windows.SIDAndAttributes)(p)[:gs.GroupCount]
+ for _, g := range groups {
+ if windows.EqualSid(g.Sid, interSid) {
+ return true, nil
+ }
+ if windows.EqualSid(g.Sid, serviceSid) {
+ return false, nil
+ }
+ }
+ return false, nil
+}
diff --git a/vendor/golang.org/x/sys/windows/svc/service.go b/vendor/golang.org/x/sys/windows/svc/service.go
new file mode 100644
index 000000000..ee3d6965a
--- /dev/null
+++ b/vendor/golang.org/x/sys/windows/svc/service.go
@@ -0,0 +1,364 @@
+// Copyright 2012 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// +build windows
+
+// Package svc provides everything required to build Windows service.
+//
+package svc
+
+import (
+ "errors"
+ "runtime"
+ "syscall"
+ "unsafe"
+
+ "golang.org/x/sys/windows"
+)
+
+// State describes service execution state (Stopped, Running and so on).
+type State uint32
+
+const (
+ Stopped = State(windows.SERVICE_STOPPED)
+ StartPending = State(windows.SERVICE_START_PENDING)
+ StopPending = State(windows.SERVICE_STOP_PENDING)
+ Running = State(windows.SERVICE_RUNNING)
+ ContinuePending = State(windows.SERVICE_CONTINUE_PENDING)
+ PausePending = State(windows.SERVICE_PAUSE_PENDING)
+ Paused = State(windows.SERVICE_PAUSED)
+)
+
+// Cmd represents service state change request. It is sent to a service
+// by the service manager, and should be actioned upon by the service.
+type Cmd uint32
+
+const (
+ Stop = Cmd(windows.SERVICE_CONTROL_STOP)
+ Pause = Cmd(windows.SERVICE_CONTROL_PAUSE)
+ Continue = Cmd(windows.SERVICE_CONTROL_CONTINUE)
+ Interrogate = Cmd(windows.SERVICE_CONTROL_INTERROGATE)
+ Shutdown = Cmd(windows.SERVICE_CONTROL_SHUTDOWN)
+ ParamChange = Cmd(windows.SERVICE_CONTROL_PARAMCHANGE)
+ NetBindAdd = Cmd(windows.SERVICE_CONTROL_NETBINDADD)
+ NetBindRemove = Cmd(windows.SERVICE_CONTROL_NETBINDREMOVE)
+ NetBindEnable = Cmd(windows.SERVICE_CONTROL_NETBINDENABLE)
+ NetBindDisable = Cmd(windows.SERVICE_CONTROL_NETBINDDISABLE)
+ DeviceEvent = Cmd(windows.SERVICE_CONTROL_DEVICEEVENT)
+ HardwareProfileChange = Cmd(windows.SERVICE_CONTROL_HARDWAREPROFILECHANGE)
+ PowerEvent = Cmd(windows.SERVICE_CONTROL_POWEREVENT)
+ SessionChange = Cmd(windows.SERVICE_CONTROL_SESSIONCHANGE)
+)
+
+// Accepted is used to describe commands accepted by the service.
+// Note that Interrogate is always accepted.
+type Accepted uint32
+
+const (
+ AcceptStop = Accepted(windows.SERVICE_ACCEPT_STOP)
+ AcceptShutdown = Accepted(windows.SERVICE_ACCEPT_SHUTDOWN)
+ AcceptPauseAndContinue = Accepted(windows.SERVICE_ACCEPT_PAUSE_CONTINUE)
+ AcceptParamChange = Accepted(windows.SERVICE_ACCEPT_PARAMCHANGE)
+ AcceptNetBindChange = Accepted(windows.SERVICE_ACCEPT_NETBINDCHANGE)
+ AcceptHardwareProfileChange = Accepted(windows.SERVICE_ACCEPT_HARDWAREPROFILECHANGE)
+ AcceptPowerEvent = Accepted(windows.SERVICE_ACCEPT_POWEREVENT)
+ AcceptSessionChange = Accepted(windows.SERVICE_ACCEPT_SESSIONCHANGE)
+)
+
+// Status combines State and Accepted commands to fully describe running service.
+type Status struct {
+ State State
+ Accepts Accepted
+ CheckPoint uint32 // used to report progress during a lengthy operation
+ WaitHint uint32 // estimated time required for a pending operation, in milliseconds
+ ProcessId uint32 // if the service is running, the process identifier of it, and otherwise zero
+}
+
+// ChangeRequest is sent to the service Handler to request service status change.
+type ChangeRequest struct {
+ Cmd Cmd
+ EventType uint32
+ EventData uintptr
+ CurrentStatus Status
+ Context uintptr
+}
+
+// Handler is the interface that must be implemented to build Windows service.
+type Handler interface {
+
+ // Execute will be called by the package code at the start of
+ // the service, and the service will exit once Execute completes.
+ // Inside Execute you must read service change requests from r and
+ // act accordingly. You must keep service control manager up to date
+ // about state of your service by writing into s as required.
+ // args contains service name followed by argument strings passed
+ // to the service.
+ // You can provide service exit code in exitCode return parameter,
+ // with 0 being "no error". You can also indicate if exit code,
+ // if any, is service specific or not by using svcSpecificEC
+ // parameter.
+ Execute(args []string, r <-chan ChangeRequest, s chan<- Status) (svcSpecificEC bool, exitCode uint32)
+}
+
+var (
+ // These are used by asm code.
+ goWaitsH uintptr
+ cWaitsH uintptr
+ ssHandle uintptr
+ sName *uint16
+ sArgc uintptr
+ sArgv **uint16
+ ctlHandlerExProc uintptr
+ cSetEvent uintptr
+ cWaitForSingleObject uintptr
+ cRegisterServiceCtrlHandlerExW uintptr
+)
+
+func init() {
+ k := windows.NewLazySystemDLL("kernel32.dll")
+ cSetEvent = k.NewProc("SetEvent").Addr()
+ cWaitForSingleObject = k.NewProc("WaitForSingleObject").Addr()
+ a := windows.NewLazySystemDLL("advapi32.dll")
+ cRegisterServiceCtrlHandlerExW = a.NewProc("RegisterServiceCtrlHandlerExW").Addr()
+}
+
+type ctlEvent struct {
+ cmd Cmd
+ eventType uint32
+ eventData uintptr
+ context uintptr
+ errno uint32
+}
+
+// service provides access to windows service api.
+type service struct {
+ name string
+ h windows.Handle
+ cWaits *event
+ goWaits *event
+ c chan ctlEvent
+ handler Handler
+}
+
+func newService(name string, handler Handler) (*service, error) {
+ var s service
+ var err error
+ s.name = name
+ s.c = make(chan ctlEvent)
+ s.handler = handler
+ s.cWaits, err = newEvent()
+ if err != nil {
+ return nil, err
+ }
+ s.goWaits, err = newEvent()
+ if err != nil {
+ s.cWaits.Close()
+ return nil, err
+ }
+ return &s, nil
+}
+
+func (s *service) close() error {
+ s.cWaits.Close()
+ s.goWaits.Close()
+ return nil
+}
+
+type exitCode struct {
+ isSvcSpecific bool
+ errno uint32
+}
+
+func (s *service) updateStatus(status *Status, ec *exitCode) error {
+ if s.h == 0 {
+ return errors.New("updateStatus with no service status handle")
+ }
+ var t windows.SERVICE_STATUS
+ t.ServiceType = windows.SERVICE_WIN32_OWN_PROCESS
+ t.CurrentState = uint32(status.State)
+ if status.Accepts&AcceptStop != 0 {
+ t.ControlsAccepted |= windows.SERVICE_ACCEPT_STOP
+ }
+ if status.Accepts&AcceptShutdown != 0 {
+ t.ControlsAccepted |= windows.SERVICE_ACCEPT_SHUTDOWN
+ }
+ if status.Accepts&AcceptPauseAndContinue != 0 {
+ t.ControlsAccepted |= windows.SERVICE_ACCEPT_PAUSE_CONTINUE
+ }
+ if status.Accepts&AcceptParamChange != 0 {
+ t.ControlsAccepted |= windows.SERVICE_ACCEPT_PARAMCHANGE
+ }
+ if status.Accepts&AcceptNetBindChange != 0 {
+ t.ControlsAccepted |= windows.SERVICE_ACCEPT_NETBINDCHANGE
+ }
+ if status.Accepts&AcceptHardwareProfileChange != 0 {
+ t.ControlsAccepted |= windows.SERVICE_ACCEPT_HARDWAREPROFILECHANGE
+ }
+ if status.Accepts&AcceptPowerEvent != 0 {
+ t.ControlsAccepted |= windows.SERVICE_ACCEPT_POWEREVENT
+ }
+ if status.Accepts&AcceptSessionChange != 0 {
+ t.ControlsAccepted |= windows.SERVICE_ACCEPT_SESSIONCHANGE
+ }
+ if ec.errno == 0 {
+ t.Win32ExitCode = windows.NO_ERROR
+ t.ServiceSpecificExitCode = windows.NO_ERROR
+ } else if ec.isSvcSpecific {
+ t.Win32ExitCode = uint32(windows.ERROR_SERVICE_SPECIFIC_ERROR)
+ t.ServiceSpecificExitCode = ec.errno
+ } else {
+ t.Win32ExitCode = ec.errno
+ t.ServiceSpecificExitCode = windows.NO_ERROR
+ }
+ t.CheckPoint = status.CheckPoint
+ t.WaitHint = status.WaitHint
+ return windows.SetServiceStatus(s.h, &t)
+}
+
+const (
+ sysErrSetServiceStatusFailed = uint32(syscall.APPLICATION_ERROR) + iota
+ sysErrNewThreadInCallback
+)
+
+func (s *service) run() {
+ s.goWaits.Wait()
+ s.h = windows.Handle(ssHandle)
+ argv := (*[100]*int16)(unsafe.Pointer(sArgv))[:sArgc]
+ args := make([]string, len(argv))
+ for i, a := range argv {
+ args[i] = syscall.UTF16ToString((*[1 << 20]uint16)(unsafe.Pointer(a))[:])
+ }
+
+ cmdsToHandler := make(chan ChangeRequest)
+ changesFromHandler := make(chan Status)
+ exitFromHandler := make(chan exitCode)
+
+ go func() {
+ ss, errno := s.handler.Execute(args, cmdsToHandler, changesFromHandler)
+ exitFromHandler <- exitCode{ss, errno}
+ }()
+
+ ec := exitCode{isSvcSpecific: true, errno: 0}
+ outcr := ChangeRequest{
+ CurrentStatus: Status{State: Stopped},
+ }
+ var outch chan ChangeRequest
+ inch := s.c
+loop:
+ for {
+ select {
+ case r := <-inch:
+ if r.errno != 0 {
+ ec.errno = r.errno
+ break loop
+ }
+ inch = nil
+ outch = cmdsToHandler
+ outcr.Cmd = r.cmd
+ outcr.EventType = r.eventType
+ outcr.EventData = r.eventData
+ outcr.Context = r.context
+ case outch <- outcr:
+ inch = s.c
+ outch = nil
+ case c := <-changesFromHandler:
+ err := s.updateStatus(&c, &ec)
+ if err != nil {
+ // best suitable error number
+ ec.errno = sysErrSetServiceStatusFailed
+ if err2, ok := err.(syscall.Errno); ok {
+ ec.errno = uint32(err2)
+ }
+ break loop
+ }
+ outcr.CurrentStatus = c
+ case ec = <-exitFromHandler:
+ break loop
+ }
+ }
+
+ s.updateStatus(&Status{State: Stopped}, &ec)
+ s.cWaits.Set()
+}
+
+func newCallback(fn interface{}) (cb uintptr, err error) {
+ defer func() {
+ r := recover()
+ if r == nil {
+ return
+ }
+ cb = 0
+ switch v := r.(type) {
+ case string:
+ err = errors.New(v)
+ case error:
+ err = v
+ default:
+ err = errors.New("unexpected panic in syscall.NewCallback")
+ }
+ }()
+ return syscall.NewCallback(fn), nil
+}
+
+// BUG(brainman): There is no mechanism to run multiple services
+// inside one single executable. Perhaps, it can be overcome by
+// using RegisterServiceCtrlHandlerEx Windows api.
+
+// Run executes service name by calling appropriate handler function.
+func Run(name string, handler Handler) error {
+ runtime.LockOSThread()
+
+ tid := windows.GetCurrentThreadId()
+
+ s, err := newService(name, handler)
+ if err != nil {
+ return err
+ }
+
+ ctlHandler := func(ctl, evtype, evdata, context uintptr) uintptr {
+ e := ctlEvent{cmd: Cmd(ctl), eventType: uint32(evtype), eventData: evdata, context: context}
+ // We assume that this callback function is running on
+ // the same thread as Run. Nowhere in MS documentation
+ // I could find statement to guarantee that. So putting
+ // check here to verify, otherwise things will go bad
+ // quickly, if ignored.
+ i := windows.GetCurrentThreadId()
+ if i != tid {
+ e.errno = sysErrNewThreadInCallback
+ }
+ s.c <- e
+ // Always return NO_ERROR (0) for now.
+ return windows.NO_ERROR
+ }
+
+ var svcmain uintptr
+ getServiceMain(&svcmain)
+ t := []windows.SERVICE_TABLE_ENTRY{
+ {ServiceName: syscall.StringToUTF16Ptr(s.name), ServiceProc: svcmain},
+ {ServiceName: nil, ServiceProc: 0},
+ }
+
+ goWaitsH = uintptr(s.goWaits.h)
+ cWaitsH = uintptr(s.cWaits.h)
+ sName = t[0].ServiceName
+ ctlHandlerExProc, err = newCallback(ctlHandler)
+ if err != nil {
+ return err
+ }
+
+ go s.run()
+
+ err = windows.StartServiceCtrlDispatcher(&t[0])
+ if err != nil {
+ return err
+ }
+ return nil
+}
+
+// StatusHandle returns service status handle. It is safe to call this function
+// from inside the Handler.Execute because then it is guaranteed to be set.
+// This code will have to change once multiple services are possible per process.
+func StatusHandle() windows.Handle {
+ return windows.Handle(ssHandle)
+}
diff --git a/vendor/golang.org/x/sys/windows/svc/sys_386.s b/vendor/golang.org/x/sys/windows/svc/sys_386.s
new file mode 100644
index 000000000..c8a583d73
--- /dev/null
+++ b/vendor/golang.org/x/sys/windows/svc/sys_386.s
@@ -0,0 +1,69 @@
+// Copyright 2012 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// +build windows
+
+// func servicemain(argc uint32, argv **uint16)
+TEXT ·servicemain(SB),7,$0
+ MOVL argc+0(FP), AX
+ MOVL AX, ·sArgc(SB)
+ MOVL argv+4(FP), AX
+ MOVL AX, ·sArgv(SB)
+
+ PUSHL BP
+ PUSHL BX
+ PUSHL SI
+ PUSHL DI
+
+ SUBL $12, SP
+
+ MOVL ·sName(SB), AX
+ MOVL AX, (SP)
+ MOVL $·servicectlhandler(SB), AX
+ MOVL AX, 4(SP)
+ // Set context to 123456 to test issue #25660.
+ MOVL $123456, 8(SP)
+ MOVL ·cRegisterServiceCtrlHandlerExW(SB), AX
+ MOVL SP, BP
+ CALL AX
+ MOVL BP, SP
+ CMPL AX, $0
+ JE exit
+ MOVL AX, ·ssHandle(SB)
+
+ MOVL ·goWaitsH(SB), AX
+ MOVL AX, (SP)
+ MOVL ·cSetEvent(SB), AX
+ MOVL SP, BP
+ CALL AX
+ MOVL BP, SP
+
+ MOVL ·cWaitsH(SB), AX
+ MOVL AX, (SP)
+ MOVL $-1, AX
+ MOVL AX, 4(SP)
+ MOVL ·cWaitForSingleObject(SB), AX
+ MOVL SP, BP
+ CALL AX
+ MOVL BP, SP
+
+exit:
+ ADDL $12, SP
+
+ POPL DI
+ POPL SI
+ POPL BX
+ POPL BP
+
+ MOVL 0(SP), CX
+ ADDL $12, SP
+ JMP CX
+
+// I do not know why, but this seems to be the only way to call
+// ctlHandlerProc on Windows 7.
+
+// func servicectlhandler(ctl uint32, evtype uint32, evdata uintptr, context uintptr) uintptr {
+TEXT ·servicectlhandler(SB),7,$0
+ MOVL ·ctlHandlerExProc(SB), CX
+ JMP CX
diff --git a/vendor/golang.org/x/sys/windows/svc/sys_amd64.s b/vendor/golang.org/x/sys/windows/svc/sys_amd64.s
new file mode 100644
index 000000000..2f7609c5b
--- /dev/null
+++ b/vendor/golang.org/x/sys/windows/svc/sys_amd64.s
@@ -0,0 +1,44 @@
+// Copyright 2012 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// +build windows
+
+// func servicemain(argc uint32, argv **uint16)
+TEXT ·servicemain(SB),7,$0
+ MOVL CX, ·sArgc(SB)
+ MOVQ DX, ·sArgv(SB)
+
+ SUBQ $32, SP // stack for the first 4 syscall params
+
+ MOVQ ·sName(SB), CX
+ MOVQ $·servicectlhandler(SB), DX
+ // BUG(pastarmovj): Figure out a way to pass in context in R8.
+ // Set context to 123456 to test issue #25660.
+ MOVQ $123456, R8
+ MOVQ ·cRegisterServiceCtrlHandlerExW(SB), AX
+ CALL AX
+ CMPQ AX, $0
+ JE exit
+ MOVQ AX, ·ssHandle(SB)
+
+ MOVQ ·goWaitsH(SB), CX
+ MOVQ ·cSetEvent(SB), AX
+ CALL AX
+
+ MOVQ ·cWaitsH(SB), CX
+ MOVQ $4294967295, DX
+ MOVQ ·cWaitForSingleObject(SB), AX
+ CALL AX
+
+exit:
+ ADDQ $32, SP
+ RET
+
+// I do not know why, but this seems to be the only way to call
+// ctlHandlerProc on Windows 7.
+
+// func ·servicectlhandler(ctl uint32, evtype uint32, evdata uintptr, context uintptr) uintptr {
+TEXT ·servicectlhandler(SB),7,$0
+ MOVQ ·ctlHandlerExProc(SB), AX
+ JMP AX
diff --git a/vendor/golang.org/x/sys/windows/svc/sys_arm.s b/vendor/golang.org/x/sys/windows/svc/sys_arm.s
new file mode 100644
index 000000000..33c692a8d
--- /dev/null
+++ b/vendor/golang.org/x/sys/windows/svc/sys_arm.s
@@ -0,0 +1,38 @@
+// Copyright 2018 The Go Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style
+// license that can be found in the LICENSE file.
+
+// +build windows
+
+#include "textflag.h"
+
+// func servicemain(argc uint32, argv **uint16)
+TEXT ·servicemain(SB),NOSPLIT|NOFRAME,$0
+ MOVM.DB.W [R4, R14], (R13) // push {r4, lr}
+ MOVW R13, R4
+ BIC $0x7, R13 // alignment for ABI
+
+ MOVW R0, ·sArgc(SB)
+ MOVW R1, ·sArgv(SB)
+
+ MOVW ·sName(SB), R0
+ MOVW ·ctlHandlerExProc(SB), R1
+ MOVW $0, R2
+ MOVW ·cRegisterServiceCtrlHandlerExW(SB), R3
+ BL (R3)
+ CMP $0, R0
+ BEQ exit
+ MOVW R0, ·ssHandle(SB)
+
+ MOVW ·goWaitsH(SB), R0
+ MOVW ·cSetEvent(SB), R1
+ BL (R1)
+
+ MOVW ·cWaitsH(SB), R0
+ MOVW $-1, R1
+ MOVW ·cWaitForSingleObject(SB), R2
+ BL (R2)
+
+exit:
+ MOVW R4, R13 // free extra stack space
+ MOVM.IA.W (R13), [R4, R15] // pop {r4, pc}
diff --git a/vendor/vendor.json b/vendor/vendor.json
index ce60f97e0..12cb96d32 100644
--- a/vendor/vendor.json
+++ b/vendor/vendor.json
@@ -70,6 +70,7 @@
{"path":"github.com/containerd/console","checksumSHA1":"IGtuR58l2zmYRcNf8sPDlCSgovE=","origin":"github.com/opencontainers/runc/vendor/github.com/containerd/console","revision":"459bfaec1fc6c17d8bfb12d0a0f69e7e7271ed2a","revisionTime":"2018-08-23T14:46:37Z"},
{"path":"github.com/containerd/continuity/pathdriver","checksumSHA1":"GqIrOttKaO7k6HIaHQLPr3cY7rY=","origin":"github.com/docker/docker/vendor/github.com/containerd/continuity/pathdriver","revision":"320063a2ad06a1d8ada61c94c29dbe44e2d87473","revisionTime":"2018-08-16T08:14:46Z"},
{"path":"github.com/containerd/fifo","checksumSHA1":"Ur3lVmFp+HTGUzQU+/ZBolKe8FU=","revision":"3d5202aec260678c48179c56f40e6f38a095738c","revisionTime":"2018-03-07T16:51:37Z"},
+ {"path":"github.com/containerd/go-cni","checksumSHA1":"414xGcva33msbOXs7vUQ4ffeJek=","revision":"d20b7eebc7ee1339cb703c4c18be6fd3fa81ad8f","revisionTime":"2019-09-04T15:50:53Z"},
{"path":"github.com/containernetworking/cni/libcni","checksumSHA1":"3CsFN6YsShG9EU2oB9vJIqYTxq4=","revision":"dc953e2fd91f9bc624b03cf9ea3706796bfee920","revisionTime":"2019-06-12T15:24:20Z"},
{"path":"github.com/containernetworking/cni/pkg/invoke","checksumSHA1":"Xf2DxXUyjBO9u4LeyDzS38pdL+I=","revision":"dc953e2fd91f9bc624b03cf9ea3706796bfee920","revisionTime":"2019-06-12T15:24:20Z"},
{"path":"github.com/containernetworking/cni/pkg/types","checksumSHA1":"Dhi4+8X7U2oVzVkgxPrmLaN8qFI=","revision":"dc953e2fd91f9bc624b03cf9ea3706796bfee920","revisionTime":"2019-06-12T15:24:20Z"},
@@ -173,17 +174,18 @@
{"path":"github.com/gorilla/context","checksumSHA1":"g/V4qrXjUGG9B+e3hB+4NAYJ5Gs=","revision":"08b5f424b9271eedf6f9f0ce86cb9396ed337a42","revisionTime":"2016-08-17T18:46:32Z"},
{"path":"github.com/gorilla/mux","checksumSHA1":"STQSdSj2FcpCf0NLfdsKhNutQT0=","revision":"e48e440e4c92e3251d812f8ce7858944dfa3331c","revisionTime":"2018-08-07T07:52:56Z"},
{"path":"github.com/gorilla/websocket","checksumSHA1":"gr0edNJuVv4+olNNZl5ZmwLgscA=","revision":"0ec3d1bd7fe50c503d6df98ee649d81f4857c564","revisionTime":"2019-03-06T00:42:57Z"},
- {"path":"github.com/hashicorp/consul-template","checksumSHA1":"237KekVBW1eZohSDylZzT+/0NQI=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"},
- {"path":"github.com/hashicorp/consul-template/child","checksumSHA1":"AhDPiKa7wzh3SE6Gx0WrsDYwBHg=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"},
- {"path":"github.com/hashicorp/consul-template/config","checksumSHA1":"hjsBe5Qnn0DCttJkSNjy9mreW5Q=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"},
- {"path":"github.com/hashicorp/consul-template/dependency","checksumSHA1":"S2ktxYTJRgmUE1GC5Bv+ZAmYWgE=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"},
- {"path":"github.com/hashicorp/consul-template/logging","checksumSHA1":"o5N7SV389Ej+3b1iRNmz1dx5e1M=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"},
- {"path":"github.com/hashicorp/consul-template/manager","checksumSHA1":"Ozv8RPN8d//DoFpwR2mQ/xMWhcs=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"},
- {"path":"github.com/hashicorp/consul-template/renderer","checksumSHA1":"DUHtghMoLyrgPhv4lexVniBuWYk=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"},
- {"path":"github.com/hashicorp/consul-template/signals","checksumSHA1":"YSEUV/9/k85XciRKu0cngxdjZLE=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"},
- {"path":"github.com/hashicorp/consul-template/template","checksumSHA1":"mmM6LpEgkbLjobfgabon11mz40M=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"},
- {"path":"github.com/hashicorp/consul-template/version","checksumSHA1":"eWyAvppME/4vsmaazcrf3oEbzGo=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"},
- {"path":"github.com/hashicorp/consul-template/watch","checksumSHA1":"cJxopvJKg7DBBb8tnDsfmBp5Q8I=","revision":"9e45d493d7fffa8a61dd315b714c39d1103da051","revisionTime":"2019-08-12T18:34:47Z"},
+ {"path":"github.com/hashicorp/consul-template","checksumSHA1":"fmltp5DcXXO4cec5ZX19GcerHDw=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"},
+ {"path":"github.com/hashicorp/consul-template/child","checksumSHA1":"yQfiSUOpV5BvGeztDd4fcA7qsbw=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"},
+ {"path":"github.com/hashicorp/consul-template/config","checksumSHA1":"hjsBe5Qnn0DCttJkSNjy9mreW5Q=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"},
+ {"path":"github.com/hashicorp/consul-template/conrfig","revision":"","version":"v0.22.1","versionExact":"v0.22.1"},
+ {"path":"github.com/hashicorp/consul-template/dependency","checksumSHA1":"6Tni+iVTu73EHriUDFaFJXyZzvM=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"},
+ {"path":"github.com/hashicorp/consul-template/logging","checksumSHA1":"o5N7SV389Ej+3b1iRNmz1dx5e1M=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"},
+ {"path":"github.com/hashicorp/consul-template/manager","checksumSHA1":"BFPu1t60WuMR7HyUSR0nI6IvbA0=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"},
+ {"path":"github.com/hashicorp/consul-template/renderer","checksumSHA1":"zgTxCql4T0tvDUIMM+EQD6R/tEg=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"},
+ {"path":"github.com/hashicorp/consul-template/signals","checksumSHA1":"YSEUV/9/k85XciRKu0cngxdjZLE=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"},
+ {"path":"github.com/hashicorp/consul-template/template","checksumSHA1":"/AjvyyxEZXksXgxm1gmdJdJoXkw=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"},
+ {"path":"github.com/hashicorp/consul-template/version","checksumSHA1":"CqEejkuDiTgPVrLg0xrMmAWvNwY=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"},
+ {"path":"github.com/hashicorp/consul-template/watch","checksumSHA1":"cBIJewG416sFREUenIUK9v3zrUk=","revision":"f04989c64e9bd4c49a7217ac4635732dd8e0bb26","revisionTime":"2019-11-08T20:12:44Z","version":"v0.22.1","versionExact":"v0.22.1"},
{"path":"github.com/hashicorp/consul/agent/consul/autopilot","checksumSHA1":"+I7fgoQlrnTUGW5krqNLadWwtjg=","revision":"fb848fc48818f58690db09d14640513aa6bf3c02","revisionTime":"2018-04-13T17:05:42Z"},
{"path":"github.com/hashicorp/consul/api","checksumSHA1":"7JPBtnIgLkdcJ0ldXMTEnVjNEjA=","revision":"40cec98468b829e5cdaacb0629b3e23a028db688","revisionTime":"2019-05-22T20:19:12Z"},
{"path":"github.com/hashicorp/consul/command/flags","checksumSHA1":"soNN4xaHTbeXFgNkZ7cX0gbFXQk=","revision":"fb848fc48818f58690db09d14640513aa6bf3c02","revisionTime":"2018-04-13T17:05:42Z"},
@@ -208,12 +210,13 @@
{"path":"github.com/hashicorp/go-envparse","checksumSHA1":"FKmqR4DC3nCXtnT9pe02z5CLNWo=","revision":"310ca1881b22af3522e3a8638c0b426629886196","revisionTime":"2018-01-19T21:58:41Z"},
{"path":"github.com/hashicorp/go-getter","checksumSHA1":"d4brua17AGQqMNtngK4xKOUwboY=","revision":"f5101da0117392c6e7960c934f05a2fd689a5b5f","revisionTime":"2019-08-22T19:45:07Z"},
{"path":"github.com/hashicorp/go-getter/helper/url","checksumSHA1":"9J+kDr29yDrwsdu2ULzewmqGjpA=","revision":"b345bfcec894fb7ff3fdf9b21baf2f56ea423d98","revisionTime":"2018-04-10T17:49:45Z"},
- {"path":"github.com/hashicorp/go-hclog","checksumSHA1":"dOP7kCX3dACHc9mU79826N411QA=","revision":"ff2cf002a8dd750586d91dddd4470c341f981fe1","revisionTime":"2018-07-09T16:53:50Z"},
+ {"path":"github.com/hashicorp/go-hclog","checksumSHA1":"CYpA7Nmx/oTmWKIXtvO0uRhIyGk=","revision":"234833755cb25ae46996d0ef823326f492f89243","revisionTime":"2019-10-25T21:19:05Z","version":"f-multi-sink","versionExact":"f-multi-sink"},
{"path":"github.com/hashicorp/go-immutable-radix","checksumSHA1":"Cas2nprG6pWzf05A2F/OlnjUu2Y=","revision":"8aac2701530899b64bdea735a1de8da899815220","revisionTime":"2017-07-25T22:12:15Z"},
{"path":"github.com/hashicorp/go-memdb","checksumSHA1":"FMAvwDar2bQyYAW4XMFhAt0J5xA=","revision":"20ff6434c1cc49b80963d45bf5c6aa89c78d8d57","revisionTime":"2017-08-31T20:15:40Z"},
- {"path":"github.com/hashicorp/go-msgpack/codec","checksumSHA1":"LrGV93iKiRWNSxItKr6Os6zC1T8=","origin":"github.com/ugorji/go/codec","revision":"08f7b401aef15f3d544472dd46bf6788cdfe55bf","revisionTime":"2019-05-07T20:14:01Z"},
+ {"path":"github.com/hashicorp/go-msgpack/codec","checksumSHA1":"CKGYNUDKre3Z2g4hHNVfp5nTcfA=","revision":"23165f7bc3c2dda1891434ebb9da1511a7bafc1c","revisionTime":"2019-09-27T12:33:13Z","version":"upstream-08f7b40","versionExact":"upstream-08f7b40"},
{"path":"github.com/hashicorp/go-multierror","checksumSHA1":"lrSl49G23l6NhfilxPM0XFs5rZo=","revision":"d30f09973e19c1dfcd120b2d9c4f168e68d6b5d5"},
- {"path":"github.com/hashicorp/go-plugin","checksumSHA1":"IFwYSAmxxM+fV0w9LwdWKqFOCgg=","revision":"f444068e8f5a19853177f7aa0aea7e7d95b5b528","revisionTime":"2018-12-12T15:08:38Z"},
+ {"path":"github.com/hashicorp/go-plugin","checksumSHA1":"Nwod22KYiOycjys2ITllhNE9mtE=","revision":"809113480b559c989ea9cfcff62e9d387961f60b","revisionTime":"2019-10-04T17:18:45Z"},
+ {"path":"github.com/hashicorp/go-plugin/internal/plugin","checksumSHA1":"uTvnRQ5UWn/bhRxbW/UCfYFseSc=","revision":"809113480b559c989ea9cfcff62e9d387961f60b","revisionTime":"2019-10-04T17:18:45Z"},
{"path":"github.com/hashicorp/go-plugin/internal/proto","checksumSHA1":"Ikbb1FngsPR79bHhr2UmKk4CblI=","revision":"f444068e8f5a19853177f7aa0aea7e7d95b5b528","revisionTime":"2018-12-12T15:08:38Z"},
{"path":"github.com/hashicorp/go-retryablehttp","checksumSHA1":"9SqwC2BzFbsWulQuBG2+QEliTpo=","revision":"73489d0a1476f0c9e6fb03f9c39241523a496dfd","revisionTime":"2019-01-26T20:33:39Z"},
{"path":"github.com/hashicorp/go-rootcerts","checksumSHA1":"A1PcINvF3UiwHRKn8UcgARgvGRs=","revision":"6bb64b370b90e7ef1fa532be9e591a81c3493e00","revisionTime":"2016-05-03T14:34:40Z"},
@@ -222,7 +225,7 @@
{"path":"github.com/hashicorp/go-sockaddr/template","checksumSHA1":"PDp9DVLvf3KWxhs4G4DpIwauMSU=","revision":"6d291a969b86c4b633730bfc6b8b9d64c3aafed9","revisionTime":"2018-03-20T11:50:54Z"},
{"path":"github.com/hashicorp/go-syslog","checksumSHA1":"eEqQGKsFOdSAwEprYgYnL7+J2e0=","revision":"8d1874e3e8d1862b74e0536851e218c4571066a5","revisionTime":"2019-01-18T15:19:36Z","version":"v1.0.0","versionExact":"v1.0.0"},
{"path":"github.com/hashicorp/go-uuid","checksumSHA1":"5AxXPtBqAKyFGcttFzxT5hp/3Tk=","revision":"4f571afc59f3043a65f8fe6bf46d887b10a01d43","revisionTime":"2018-11-28T13:14:45Z"},
- {"path":"github.com/hashicorp/go-version","checksumSHA1":"r0pj5dMHCghpaQZ3f1BRGoKiSWw=","revision":"b5a281d3160aa11950a6182bd9a9dc2cb1e02d50","revisionTime":"2018-08-24T00:43:55Z"},
+ {"path":"github.com/hashicorp/go-version","checksumSHA1":"+wX9Wh8280cHZMckQlOit3UrwbA=","revision":"2046c9d0f0b03c779670f5186a2a4b2c85493a71","revisionTime":"2019-10-09T19:36:37Z"},
{"path":"github.com/hashicorp/golang-lru","checksumSHA1":"d9PxF1XQGLMJZRct2R8qVM/eYlE=","revision":"a0d98a5f288019575c6d1f4bb1573fef2d1fcdc4","revisionTime":"2016-02-07T21:47:19Z"},
{"path":"github.com/hashicorp/golang-lru/simplelru","checksumSHA1":"2nOpYjx8Sn57bqlZq17yM4YJuM4=","revision":"a0d98a5f288019575c6d1f4bb1573fef2d1fcdc4"},
{"path":"github.com/hashicorp/hcl","checksumSHA1":"vgGv8zuy7q8c5LBAFO1fnnQRRgE=","revision":"1804807358d86424faacbb42f50f0c04303cef11","revisionTime":"2019-06-10T16:16:27Z"},
@@ -386,7 +389,7 @@
{"path":"github.com/testify/require","revision":"v1.4.0","version":"v1.4.0"},
{"path":"github.com/tonnerre/golang-text","checksumSHA1":"t24KnvC9jRxiANVhpw2pqFpmEu8=","revision":"048ed3d792f7104850acbc8cfc01e5a6070f4c04","revisionTime":"2013-09-25T19:58:46Z"},
{"path":"github.com/tv42/httpunix","checksumSHA1":"2xcr/mhxBFlDjpxe/Mc2Wb4RGR8=","revision":"b75d8614f926c077e48d85f1f8f7885b758c6225","revisionTime":"2015-04-27T01:28:21Z"},
- {"path":"github.com/ugorji/go/codec","checksumSHA1":"RBRh7hUVcoELofg7TinPuBUG/po=","revision":"08f7b401aef15f3d544472dd46bf6788cdfe55bf","revisionTime":"2019-05-07T20:14:01Z"},
+ {"path":"github.com/ugorji/go/codec","checksumSHA1":"BaMPvSu4aGZBucY5nV5jEUu3XWs=","origin":"github.com/hashicorp/go-msgpack/codec","revision":"23165f7bc3c2dda1891434ebb9da1511a7bafc1c","revisionTime":"2019-09-27T12:33:13Z","version":"upstream-08f7b40","versionExact":"upstream-08f7b40"},
{"path":"github.com/ulikunitz/xz","checksumSHA1":"qgMa75aMGbkFY0jIqqqgVnCUoNA=","revision":"0c6b41e72360850ca4f98dc341fd999726ea007f","revisionTime":"2017-06-05T21:53:11Z"},
{"path":"github.com/ulikunitz/xz/internal/hash","checksumSHA1":"vjnTkzNrMs5Xj6so/fq0mQ6dT1c=","revision":"0c6b41e72360850ca4f98dc341fd999726ea007f","revisionTime":"2017-06-05T21:53:11Z"},
{"path":"github.com/ulikunitz/xz/internal/xlog","checksumSHA1":"m0pm57ASBK/CTdmC0ppRHO17mBs=","revision":"0c6b41e72360850ca4f98dc341fd999726ea007f","revisionTime":"2017-06-05T21:53:11Z"},
@@ -443,6 +446,7 @@
{"path":"golang.org/x/sys/cpu","checksumSHA1":"REkmyB368pIiip76LiqMLspgCRk=","revision":"1b2967e3c290b7c545b3db0deeda16e9be4f98a2","revisionTime":"2018-07-06T09:56:39Z"},
{"path":"golang.org/x/sys/unix","checksumSHA1":"su2QDjUzrUO0JnOH9m0cNg0QqsM=","revision":"ac767d655b305d4e9612f5f6e33120b9176c4ad4","revisionTime":"2018-07-08T03:57:06Z"},
{"path":"golang.org/x/sys/windows","checksumSHA1":"l1jIhK9Y33obLipDvmjVPCdYtJI=","revision":"1b2967e3c290b7c545b3db0deeda16e9be4f98a2","revisionTime":"2018-07-06T09:56:39Z"},
+ {"path":"golang.org/x/sys/windows/svc","checksumSHA1":"aeOJe5xLqyC3gN07YRyEC4pI2oo=","revision":"f89234f9a2c237c4d4cf7b32e3d9fe2f7c4eacd7","revisionTime":"2019-10-23T11:32:03Z"},
{"path":"golang.org/x/text/encoding","checksumSHA1":"Mr4ur60bgQJnQFfJY0dGtwWwMPE=","revision":"e113a52b01bdd1744681b6ce70c2e3d26b58d389","revisionTime":"2017-08-30T18:54:29Z"},
{"path":"golang.org/x/text/encoding/charmap","checksumSHA1":"HgcUFTOQF5jOYtTIj5obR3GVN9A=","revision":"e113a52b01bdd1744681b6ce70c2e3d26b58d389","revisionTime":"2017-08-30T18:54:29Z"},
{"path":"golang.org/x/text/encoding/htmlindex","checksumSHA1":"yBhX1V6U7stq3GqS2x5yzF0lV+I=","revision":"e113a52b01bdd1744681b6ce70c2e3d26b58d389","revisionTime":"2017-08-30T18:54:29Z"},
diff --git a/version/version.go b/version/version.go
index 54a1d3577..782ad77aa 100644
--- a/version/version.go
+++ b/version/version.go
@@ -11,7 +11,7 @@ var (
GitDescribe string
// The main version number that is being run at the moment.
- Version = "0.10.0"
+ Version = "0.10.2"
// A pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release
diff --git a/website/config.rb b/website/config.rb
index 4ad5b872c..57fa26476 100644
--- a/website/config.rb
+++ b/website/config.rb
@@ -2,10 +2,13 @@ set :base_url, "https://www.nomadproject.io/"
activate :hashicorp do |h|
h.name = "nomad"
- h.version = "0.9.4"
+ h.version = "0.10.1"
h.github_slug = "hashicorp/nomad"
end
+# Netlify redirects/headers
+proxy '_redirects', 'redirects.txt', ignore: true
+
helpers do
# Returns a segment tracking ID such that local development is not
# tracked to production systems.
diff --git a/website/scripts/deploy.sh b/website/scripts/deploy.sh
index df1b7125d..6716be659 100755
--- a/website/scripts/deploy.sh
+++ b/website/scripts/deploy.sh
@@ -5,6 +5,37 @@ PROJECT="nomad"
PROJECT_URL="www.nomadproject.io"
FASTLY_SERVICE_ID="7GrxRJP3PVBuqQbyxYQ0MV"
FASTLY_DICTIONARY_ID="4OEpQ4S6HbEu7wkfTvrWUG"
+REDIRECTS_FILE="./source/redirects.txt"
+EXTERNAL_REDIRECTS_DICT_ID="7CPeY9SLVGuOfSkPgmBr93"
+RELATIVE_REDIRECTS_DICT_ID="3tBkC2O6iOHqTuxxUtAdS1"
+
+# This function posts a dictionary of key-value pairs for redirects to Fastly
+function post_redirects {
+ # Arguments:
+ # $1 - jq_query
+ # $2 - dictionary_id
+ # $3 - jq_args
+ #
+ # Returns:
+ # 0 - success
+ # * - failure
+
+ declare -a arr=("${!3}")
+
+ # Do not post empty items (the API gets sad)
+ if [ "${#arr[@]}" -ne 0 ]; then
+ json="$(jq "${arr[@]}" "$1" <<<'{"items": []}')"
+
+ # Post the JSON body
+ curl \
+ --request "PATCH" \
+ --header "Fastly-Key: $FASTLY_API_KEY" \
+ --header "Content-type: application/json" \
+ --header "Accept: application/json" \
+ --data "$json"\
+ "https://api.fastly.com/service/$FASTLY_SERVICE_ID/dictionary/$2/items"
+ fi
+}
# Ensure the proper AWS environment variables are set
if [ -z "$AWS_ACCESS_KEY_ID" ]; then
@@ -95,7 +126,9 @@ if [ -z "$NO_UPLOAD" ]; then
fi
# Add redirects if they exist
-if [ -z "$NO_REDIRECTS" ] || [ ! test -f "./redirects.txt" ]; then
+# By default, the redirects file is in the source/ directory
+
+if [ -z "$NO_REDIRECTS" ] || [ ! test -f "$REDIRECTS_FILE" ]; then
echo "Adding redirects..."
fields=()
while read -r line; do
@@ -105,7 +138,7 @@ if [ -z "$NO_REDIRECTS" ] || [ ! test -f "./redirects.txt" ]; then
# Read fields
IFS=" " read -ra parts <<<"$line"
fields+=("${parts[@]}")
- done < "./redirects.txt"
+ done < "$REDIRECTS_FILE"
# Check we have pairs
if [ $((${#fields[@]} % 2)) -ne 0 ]; then
@@ -126,41 +159,37 @@ if [ -z "$NO_REDIRECTS" ] || [ ! test -f "./redirects.txt" ]; then
echo "'$field' is > 256 characters!"
exit 1
fi
-
- if [ "${field:0:1}" != "/" ]; then
- echo "'$field' does not start with /!"
- exit 1
- fi
done
# Build the payload for single-request updates.
- jq_args=()
- jq_query="."
+ jq_args_external=()
+ jq_query_external="."
+ jq_args_relative=()
+ jq_query_relative="."
for (( i=0; i<${#fields[@]}; i+=2 )); do
- original="${fields[i]}"
- redirect="${fields[i+1]}"
- echo "Redirecting ${original} -> ${redirect}"
- jq_args+=(--arg "key$((i/2))" "${original}")
- jq_args+=(--arg "value$((i/2))" "${redirect}")
- jq_query+="| .items |= (. + [{op: \"upsert\", item_key: \$key$((i/2)), item_value: \$value$((i/2))}])"
+ # if the redirect is external, add the entries to the external list
+ if [[ "${fields[i+1]}" =~ http[s]*:\/\/ ]]; then
+ external_original="${fields[i]}"
+ external_redirect="${fields[i+1]}"
+ echo "Redirecting external ${external_original} -> ${external_redirect}"
+ # The key and value indexes are for the whole redirects file so it may not be contiguous
+ # This doesn't matter at the end as long as the query matches the same key/value items
+ jq_args_external+=(--arg "key$((i/2))" "${external_original}")
+ jq_args_external+=(--arg "value$((i/2))" "${external_redirect}")
+ jq_query_external+="| .items |= (. + [{op: \"upsert\", item_key: \$key$((i/2)), item_value: \$value$((i/2))}])"
+ else
+ relative_original="${fields[i]}"
+ relative_redirect="${fields[i+1]}"
+ echo "Redirecting relative ${relative_original} -> ${relative_redirect}"
+ # The key and value indexes are for the whole redirects file so it may not be contiguous
+ # This doesn't matter at the end as long as the query matches the same key/value items
+ jq_args_relative+=(--arg "key$((i/2))" "${relative_original}")
+ jq_args_relative+=(--arg "value$((i/2))" "${relative_redirect}")
+ jq_query_relative+="| .items |= (. + [{op: \"upsert\", item_key: \$key$((i/2)), item_value: \$value$((i/2))}])"
+ fi
done
-
- # Do not post empty items (the API gets sad)
- if [ "${#jq_args[@]}" -ne 0 ]; then
- json="$(jq "${jq_args[@]}" "${jq_query}" <<<'{"items": []}')"
-
- # Post the JSON body
- curl \
- --fail \
- --silent \
- --output /dev/null \
- --request "PATCH" \
- --header "Fastly-Key: $FASTLY_API_KEY" \
- --header "Content-type: application/json" \
- --header "Accept: application/json" \
- --data "$json"\
- "https://api.fastly.com/service/$FASTLY_SERVICE_ID/dictionary/$FASTLY_DICTIONARY_ID/items"
- fi
+ post_redirects "$jq_query_external" $EXTERNAL_REDIRECTS_DICT_ID jq_args_external[@]
+ post_redirects "$jq_query_relative" $RELATIVE_REDIRECTS_DICT_ID jq_args_relative[@]
fi
# Perform a purge of the surrogate key.
diff --git a/website/source/api/acl-policies.html.md b/website/source/api/acl-policies.html.md
index 04ba0d5c2..45dfd68aa 100644
--- a/website/source/api/acl-policies.html.md
+++ b/website/source/api/acl-policies.html.md
@@ -28,6 +28,10 @@ The table below shows this endpoint's support for
| ---------------- | ----------------- | ------------ |
| `YES` | `all` | `management` for all policies. Output when given a non-management token will be limited to the policies on the token itself |
+### Parameters
+
+- `prefix` `(string: "")` - Specifies a string to filter ACL policies based on
+ a name prefix. This is specified as a query string parameter.
### Sample Request
@@ -36,6 +40,11 @@ $ curl \
https://localhost:4646/v1/acl/policies
```
+```text
+$ curl \
+ https://localhost:4646/v1/acl/policies?prefix=prod
+```
+
### Sample Response
```json
diff --git a/website/source/api/acl-tokens.html.md b/website/source/api/acl-tokens.html.md
index 51eacbf62..65ad80460 100644
--- a/website/source/api/acl-tokens.html.md
+++ b/website/source/api/acl-tokens.html.md
@@ -70,6 +70,12 @@ The table below shows this endpoint's support for
| ---------------- | ----------------- | ------------ |
| `YES` | `all` | `management` |
+### Parameters
+
+- `prefix` `(string: "")` - Specifies a string to filter ACL tokens based on an
+ accessor ID prefix. Because the value is decoded to bytes, the prefix must
+ have an even number of hexadecimal characters (0-9a-f). This is specified as
+ a query string parameter.
### Sample Request
@@ -78,6 +84,12 @@ $ curl \
https://localhost:4646/v1/acl/tokens
```
+```text
+$ curl \
+ --request POST \
+ https://localhost:4646/v1/acl/tokens?prefix=3da2ed52
+```
+
### Sample Response
```json
diff --git a/website/source/api/agent.html.md b/website/source/api/agent.html.md
index 0fc937b20..42e512567 100644
--- a/website/source/api/agent.html.md
+++ b/website/source/api/agent.html.md
@@ -498,3 +498,71 @@ $ curl \
}
}
```
+
+## Stream Logs
+
+This endpoint streams logs from the local agent until the connection is closed
+
+| Method | Path | Produces |
+| ------ | ---------------------------- | -------------------------- |
+| `GET` | `/agent/monitor` | `application/json` |
+
+The table below shows this endpoint's support for
+[blocking queries](/api/index.html#blocking-queries) and
+[required ACLs](/api/index.html#acls).
+
+| Blocking Queries | ACL Required |
+| ---------------- | ------------ |
+| `NO` | `agent:read` |
+
+
+### Parameters
+
+- `log_level` `(string: "info")` - Specifies a text string containing a log level
+ to filter on, such as `info`. Possible values include `trace`, `debug`,
+ `info`, `warn`, `error`
+
+- `json` `(bool: false)` - Specifies if the log format for streamed logs
+ should be JSON.
+
+- `node_id` `(string: "a57b2adb-1a30-2dda-8df0-25abb0881952")` - Specifies a text
+ string containing a node-id to target for streaming.
+
+- `server_id` `(string: "server1.global")` - Specifies a text
+ string containing a server name or "leader" to target a specific remote server
+ or leader for streaming.
+
+- `plain` `(bool: false)` - Specifies if the response should be JSON or
+ plaintext
+
+### Sample Request
+
+```text
+$ curl \
+ https://localhost:4646/v1/agent/monitor?log_level=debug&server_id=leader
+
+$ curl \
+ https://localhost:4646/v1/agent/monitor?log_level=debug&node_id=a57b2adb-1a30-2dda-8df0-25abb0881952
+```
+
+### Sample Response
+```json
+{
+ "Offset": 0,
+ "Data": "NTMxOTMyCjUzMTkzMwo1MzE5MzQKNTMx..."
+ "FileEvent": "log"
+}
+```
+
+#### Field Reference
+
+The return value is a stream of frames. These frames contain the following
+fields:
+
+- `Data` - A base64 encoding of the bytes being streamed.
+
+- `FileEvent` - An event that could cause a change in the streams position. The
+ possible value for this endpoint is "log".
+
+- `Offset` - Offset is the offset into the stream.
+
diff --git a/website/source/api/allocations.html.md b/website/source/api/allocations.html.md
index 8bbe0f9fa..f30b97772 100644
--- a/website/source/api/allocations.html.md
+++ b/website/source/api/allocations.html.md
@@ -28,8 +28,10 @@ The table below shows this endpoint's support for
### Parameters
-- `prefix` `(string: "")`- Specifies a string to filter allocations on based on
- an index prefix. This is specified as a query string parameter.
+- `prefix` `(string: "")`- Specifies a string to filter allocations based on an
+ ID prefix. Because the value is decoded to bytes, the prefix must have an
+ even number of hexadecimal characters (0-9a-f). This is specified as a query
+ string parameter.
### Sample Request
diff --git a/website/source/api/deployments.html.md b/website/source/api/deployments.html.md
index 0400752f3..24e2ace1a 100644
--- a/website/source/api/deployments.html.md
+++ b/website/source/api/deployments.html.md
@@ -29,7 +29,9 @@ The table below shows this endpoint's support for
### Parameters
- `prefix` `(string: "")`- Specifies a string to filter deployments based on
- an index prefix. This is specified as a query string parameter.
+ an ID prefix. Because the value is decoded to bytes, the prefix must have an
+ even number of hexadecimal characters (0-9a-f) .This is specified as a query
+ string parameter.
### Sample Request
diff --git a/website/source/api/evaluations.html.md b/website/source/api/evaluations.html.md
index cdcbf9a6e..5ad71ef56 100644
--- a/website/source/api/evaluations.html.md
+++ b/website/source/api/evaluations.html.md
@@ -28,8 +28,10 @@ The table below shows this endpoint's support for
### Parameters
-- `prefix` `(string: "")`- Specifies a string to filter evaluations on based on
- an index prefix. This is specified as a query string parameter.
+- `prefix` `(string: "")`- Specifies a string to filter evaluations based on an
+ ID prefix. Because the value is decoded to bytes, the prefix must have an
+ even number of hexadecimal characters (0-9a-f). This is specified as a query
+ string parameter.
### Sample Request
@@ -40,7 +42,7 @@ $ curl \
```text
$ curl \
- https://localhost:4646/v1/evaluations?prefix=25ba81c
+ https://localhost:4646/v1/evaluations?prefix=25ba81
```
### Sample Response
diff --git a/website/source/api/index.html.md b/website/source/api/index.html.md
index 08c2eeb9c..a5c412d34 100644
--- a/website/source/api/index.html.md
+++ b/website/source/api/index.html.md
@@ -99,7 +99,7 @@ for blocking queries in the documentation.
Endpoints that support blocking queries return an HTTP header named
`X-Nomad-Index`. This is a unique identifier representing the current state of
-the requested resource.
+the requested resource. On a new Nomad cluster the value of this index starts at 1.
On subsequent requests for this resource, the client can set the `index` query
string parameter to the value of `X-Nomad-Index`, indicating that the client
diff --git a/website/source/api/namespaces.html.md b/website/source/api/namespaces.html.md
index 6a621c12a..e130fe36b 100644
--- a/website/source/api/namespaces.html.md
+++ b/website/source/api/namespaces.html.md
@@ -54,13 +54,15 @@ $ curl \
"CreateIndex": 31,
"Description": "Production API Servers",
"ModifyIndex": 31,
- "Name": "api-prod"
+ "Name": "api-prod",
+ "Quota": ""
},
{
"CreateIndex": 5,
"Description": "Default shared namespace",
"ModifyIndex": 5,
- "Name": "default"
+ "Name": "default",
+ "Quota": ""
}
]
```
@@ -98,6 +100,7 @@ $ curl \
{
"CreateIndex": 31,
"Description": "Production API Servers",
+ "Quota": "",
"Hash": "N8WvePwqkp6J354eLJMKyhvsFdPELAos0VuBfMoVKoU=",
"ModifyIndex": 31,
"Name": "api-prod"
@@ -128,12 +131,15 @@ The table below shows this endpoint's support for
- `Description` `(string: "")` - Specifies an optional human-readable
description of the namespace.
+- `Quota` `(string: "")` - Specifies an quota to attach to the namespace.
+
### Sample Payload
```javascript
{
"Name": "api-prod",
- "Description": "Production API Servers"
+ "Description": "Production API Servers",
+ "Quota": "prod-quota"
}
```
diff --git a/website/source/api/nodes.html.md b/website/source/api/nodes.html.md
index 8d15d25f9..fafae336d 100644
--- a/website/source/api/nodes.html.md
+++ b/website/source/api/nodes.html.md
@@ -28,8 +28,10 @@ The table below shows this endpoint's support for
### Parameters
-- `prefix` `(string: "")`- Specifies a string to filter nodes on based on an
- index prefix. This is specified as a query string parameter.
+- `prefix` `(string: "")`- Specifies a string to filter nodes based on an ID
+ prefix. Because the value is decoded to bytes, the prefix must have an even
+ number of hexadecimal characters (0-9a-f). This is specified as a query
+ string parameter.
### Sample Request
@@ -40,7 +42,7 @@ $ curl \
```text
$ curl \
- http://localhost:4646/v1/nodes?prefix=prod
+ http://localhost:4646/v1/nodes?prefix=f7476465
```
### Sample Response
diff --git a/website/source/assets/fonts/dejavu/DejaVuSansMono.woff b/website/source/assets/fonts/dejavu/DejaVuSansMono.woff
new file mode 100644
index 000000000..b896d1d76
Binary files /dev/null and b/website/source/assets/fonts/dejavu/DejaVuSansMono.woff differ
diff --git a/website/source/assets/fonts/dejavu/DejaVuSansMono.woff2 b/website/source/assets/fonts/dejavu/DejaVuSansMono.woff2
new file mode 100644
index 000000000..bfd9b06e5
Binary files /dev/null and b/website/source/assets/fonts/dejavu/DejaVuSansMono.woff2 differ
diff --git a/website/source/assets/fonts/gilmer/gilmer-bold.woff b/website/source/assets/fonts/gilmer/gilmer-bold.woff
new file mode 100644
index 000000000..9ac3a190e
Binary files /dev/null and b/website/source/assets/fonts/gilmer/gilmer-bold.woff differ
diff --git a/website/source/assets/fonts/gilmer/gilmer-bold.woff2 b/website/source/assets/fonts/gilmer/gilmer-bold.woff2
new file mode 100644
index 000000000..22793f9a1
Binary files /dev/null and b/website/source/assets/fonts/gilmer/gilmer-bold.woff2 differ
diff --git a/website/source/assets/fonts/gilmer/gilmer-light.woff b/website/source/assets/fonts/gilmer/gilmer-light.woff
new file mode 100644
index 000000000..c04be8c6e
Binary files /dev/null and b/website/source/assets/fonts/gilmer/gilmer-light.woff differ
diff --git a/website/source/assets/fonts/gilmer/gilmer-light.woff2 b/website/source/assets/fonts/gilmer/gilmer-light.woff2
new file mode 100644
index 000000000..5dab907f5
Binary files /dev/null and b/website/source/assets/fonts/gilmer/gilmer-light.woff2 differ
diff --git a/website/source/assets/fonts/gilmer/gilmer-medium.woff b/website/source/assets/fonts/gilmer/gilmer-medium.woff
new file mode 100644
index 000000000..e248e37d6
Binary files /dev/null and b/website/source/assets/fonts/gilmer/gilmer-medium.woff differ
diff --git a/website/source/assets/fonts/gilmer/gilmer-medium.woff2 b/website/source/assets/fonts/gilmer/gilmer-medium.woff2
new file mode 100644
index 000000000..3ebe650a7
Binary files /dev/null and b/website/source/assets/fonts/gilmer/gilmer-medium.woff2 differ
diff --git a/website/source/assets/fonts/gilmer/gilmer-regular.woff b/website/source/assets/fonts/gilmer/gilmer-regular.woff
new file mode 100644
index 000000000..c66fc5614
Binary files /dev/null and b/website/source/assets/fonts/gilmer/gilmer-regular.woff differ
diff --git a/website/source/assets/fonts/gilmer/gilmer-regular.woff2 b/website/source/assets/fonts/gilmer/gilmer-regular.woff2
new file mode 100644
index 000000000..e92be881e
Binary files /dev/null and b/website/source/assets/fonts/gilmer/gilmer-regular.woff2 differ
diff --git a/website/source/assets/fonts/metro/metro-sans-bold.woff b/website/source/assets/fonts/metro/metro-sans-bold.woff
new file mode 100644
index 000000000..4c0afc9a8
Binary files /dev/null and b/website/source/assets/fonts/metro/metro-sans-bold.woff differ
diff --git a/website/source/assets/fonts/metro/metro-sans-bold.woff2 b/website/source/assets/fonts/metro/metro-sans-bold.woff2
new file mode 100644
index 000000000..c951fb5ec
Binary files /dev/null and b/website/source/assets/fonts/metro/metro-sans-bold.woff2 differ
diff --git a/website/source/assets/fonts/metro/metro-sans-book.woff b/website/source/assets/fonts/metro/metro-sans-book.woff
new file mode 100644
index 000000000..588b6f9b6
Binary files /dev/null and b/website/source/assets/fonts/metro/metro-sans-book.woff differ
diff --git a/website/source/assets/fonts/metro/metro-sans-book.woff2 b/website/source/assets/fonts/metro/metro-sans-book.woff2
new file mode 100644
index 000000000..2c6caaa2a
Binary files /dev/null and b/website/source/assets/fonts/metro/metro-sans-book.woff2 differ
diff --git a/website/source/assets/fonts/metro/metro-sans-regular.woff b/website/source/assets/fonts/metro/metro-sans-regular.woff
new file mode 100644
index 000000000..54dc8b8af
Binary files /dev/null and b/website/source/assets/fonts/metro/metro-sans-regular.woff differ
diff --git a/website/source/assets/fonts/metro/metro-sans-regular.woff2 b/website/source/assets/fonts/metro/metro-sans-regular.woff2
new file mode 100644
index 000000000..068be635b
Binary files /dev/null and b/website/source/assets/fonts/metro/metro-sans-regular.woff2 differ
diff --git a/website/source/assets/fonts/metro/metro-sans-semi-bold.woff b/website/source/assets/fonts/metro/metro-sans-semi-bold.woff
new file mode 100644
index 000000000..87a27bd4f
Binary files /dev/null and b/website/source/assets/fonts/metro/metro-sans-semi-bold.woff differ
diff --git a/website/source/assets/fonts/metro/metro-sans-semi-bold.woff2 b/website/source/assets/fonts/metro/metro-sans-semi-bold.woff2
new file mode 100644
index 000000000..49346e532
Binary files /dev/null and b/website/source/assets/fonts/metro/metro-sans-semi-bold.woff2 differ
diff --git a/website/source/assets/images/count-dashboard.png b/website/source/assets/images/count-dashboard.png
new file mode 100644
index 000000000..eb200d508
Binary files /dev/null and b/website/source/assets/images/count-dashboard.png differ
diff --git a/website/source/assets/images/guide-ui-acl-token-set.png b/website/source/assets/images/guide-ui-acl-token-set.png
new file mode 100644
index 000000000..fce2fa673
Binary files /dev/null and b/website/source/assets/images/guide-ui-acl-token-set.png differ
diff --git a/website/source/assets/images/guide-ui-acl-token.png b/website/source/assets/images/guide-ui-acl-token.png
new file mode 100644
index 000000000..f5224c77e
Binary files /dev/null and b/website/source/assets/images/guide-ui-acl-token.png differ
diff --git a/website/source/assets/images/guide-ui-acl-tokens.png b/website/source/assets/images/guide-ui-acl-tokens.png
deleted file mode 100644
index 22fc82e0d..000000000
Binary files a/website/source/assets/images/guide-ui-acl-tokens.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-active-job-deployment.png b/website/source/assets/images/guide-ui-active-job-deployment.png
deleted file mode 100644
index 015da9931..000000000
Binary files a/website/source/assets/images/guide-ui-active-job-deployment.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-allocation-detail.png b/website/source/assets/images/guide-ui-allocation-detail.png
deleted file mode 100644
index 038b5b9bb..000000000
Binary files a/website/source/assets/images/guide-ui-allocation-detail.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-allocation-stats.png b/website/source/assets/images/guide-ui-allocation-stats.png
deleted file mode 100644
index 242219367..000000000
Binary files a/website/source/assets/images/guide-ui-allocation-stats.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-client-detail.png b/website/source/assets/images/guide-ui-client-detail.png
deleted file mode 100644
index 915e568ea..000000000
Binary files a/website/source/assets/images/guide-ui-client-detail.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-clients-list.png b/website/source/assets/images/guide-ui-clients-list.png
deleted file mode 100644
index e7340cdfa..000000000
Binary files a/website/source/assets/images/guide-ui-clients-list.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-img-alloc-preempted.png b/website/source/assets/images/guide-ui-img-alloc-preempted.png
new file mode 100644
index 000000000..86ec0f0a9
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-alloc-preempted.png differ
diff --git a/website/source/assets/images/guide-ui-img-alloc-preempter.png b/website/source/assets/images/guide-ui-img-alloc-preempter.png
new file mode 100644
index 000000000..90fb8fcc8
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-alloc-preempter.png differ
diff --git a/website/source/assets/images/guide-ui-img-alloc-reschedule-details.png b/website/source/assets/images/guide-ui-img-alloc-reschedule-details.png
new file mode 100644
index 000000000..68660996b
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-alloc-reschedule-details.png differ
diff --git a/website/source/assets/images/guide-ui-img-alloc-reschedule-icon.png b/website/source/assets/images/guide-ui-img-alloc-reschedule-icon.png
new file mode 100644
index 000000000..ae3572dab
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-alloc-reschedule-icon.png differ
diff --git a/website/source/assets/images/guide-ui-img-alloc-resource-utilization.png b/website/source/assets/images/guide-ui-img-alloc-resource-utilization.png
new file mode 100644
index 000000000..47ad33381
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-alloc-resource-utilization.png differ
diff --git a/website/source/assets/images/guide-ui-img-alloc-stop-restart.png b/website/source/assets/images/guide-ui-img-alloc-stop-restart.png
new file mode 100644
index 000000000..2b9154459
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-alloc-stop-restart.png differ
diff --git a/website/source/assets/images/guide-ui-img-alloc-unhealthy-driver.png b/website/source/assets/images/guide-ui-img-alloc-unhealthy-driver.png
new file mode 100644
index 000000000..d2db47c00
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-alloc-unhealthy-driver.png differ
diff --git a/website/source/assets/images/guide-ui-img-client-allocations.png b/website/source/assets/images/guide-ui-img-client-allocations.png
new file mode 100644
index 000000000..94e40f21f
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-client-allocations.png differ
diff --git a/website/source/assets/images/guide-ui-img-client-attributes.png b/website/source/assets/images/guide-ui-img-client-attributes.png
new file mode 100644
index 000000000..c3af9cc47
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-client-attributes.png differ
diff --git a/website/source/assets/images/guide-ui-img-client-detail.png b/website/source/assets/images/guide-ui-img-client-detail.png
new file mode 100644
index 000000000..f460cda2f
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-client-detail.png differ
diff --git a/website/source/assets/images/guide-ui-img-client-drain.png b/website/source/assets/images/guide-ui-img-client-drain.png
new file mode 100644
index 000000000..8cdccde5d
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-client-drain.png differ
diff --git a/website/source/assets/images/guide-ui-img-client-driver-status.png b/website/source/assets/images/guide-ui-img-client-driver-status.png
new file mode 100644
index 000000000..772dd2806
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-client-driver-status.png differ
diff --git a/website/source/assets/images/guide-ui-img-client-events.png b/website/source/assets/images/guide-ui-img-client-events.png
new file mode 100644
index 000000000..d43875913
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-client-events.png differ
diff --git a/website/source/assets/images/guide-ui-img-client-resource-utilization.png b/website/source/assets/images/guide-ui-img-client-resource-utilization.png
new file mode 100644
index 000000000..47da43c28
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-client-resource-utilization.png differ
diff --git a/website/source/assets/images/guide-ui-img-clients-filters.png b/website/source/assets/images/guide-ui-img-clients-filters.png
new file mode 100644
index 000000000..de8ee506a
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-clients-filters.png differ
diff --git a/website/source/assets/images/guide-ui-img-clients-list.png b/website/source/assets/images/guide-ui-img-clients-list.png
new file mode 100644
index 000000000..abaae06d0
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-clients-list.png differ
diff --git a/website/source/assets/images/guide-ui-img-job-allocations.png b/website/source/assets/images/guide-ui-img-job-allocations.png
new file mode 100644
index 000000000..761536af0
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-job-allocations.png differ
diff --git a/website/source/assets/images/guide-ui-img-job-definition-edit.png b/website/source/assets/images/guide-ui-img-job-definition-edit.png
new file mode 100644
index 000000000..4ddd053cd
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-job-definition-edit.png differ
diff --git a/website/source/assets/images/guide-ui-img-job-definition.png b/website/source/assets/images/guide-ui-img-job-definition.png
new file mode 100644
index 000000000..9ff6f6f21
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-job-definition.png differ
diff --git a/website/source/assets/images/guide-ui-img-job-deployment-canary.png b/website/source/assets/images/guide-ui-img-job-deployment-canary.png
new file mode 100644
index 000000000..53526b7d6
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-job-deployment-canary.png differ
diff --git a/website/source/assets/images/guide-ui-img-job-deployments.png b/website/source/assets/images/guide-ui-img-job-deployments.png
new file mode 100644
index 000000000..58ece86bb
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-job-deployments.png differ
diff --git a/website/source/assets/images/guide-ui-img-job-evaluations.png b/website/source/assets/images/guide-ui-img-job-evaluations.png
new file mode 100644
index 000000000..1ba9fa80d
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-job-evaluations.png differ
diff --git a/website/source/assets/images/guide-ui-img-job-filters.png b/website/source/assets/images/guide-ui-img-job-filters.png
new file mode 100644
index 000000000..fcfde0259
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-job-filters.png differ
diff --git a/website/source/assets/images/guide-ui-img-job-overview-system.png b/website/source/assets/images/guide-ui-img-job-overview-system.png
new file mode 100644
index 000000000..5ba9205ed
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-job-overview-system.png differ
diff --git a/website/source/assets/images/guide-ui-img-job-plan-placement-failures.png b/website/source/assets/images/guide-ui-img-job-plan-placement-failures.png
new file mode 100644
index 000000000..e2ba16d14
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-job-plan-placement-failures.png differ
diff --git a/website/source/assets/images/guide-ui-img-job-plan-preemptions.png b/website/source/assets/images/guide-ui-img-job-plan-preemptions.png
new file mode 100644
index 000000000..87f9c7ed1
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-job-plan-preemptions.png differ
diff --git a/website/source/assets/images/guide-ui-img-job-plan.png b/website/source/assets/images/guide-ui-img-job-plan.png
new file mode 100644
index 000000000..8463c1d80
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-job-plan.png differ
diff --git a/website/source/assets/images/guide-ui-img-job-run.png b/website/source/assets/images/guide-ui-img-job-run.png
new file mode 100644
index 000000000..7efe9558d
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-job-run.png differ
diff --git a/website/source/assets/images/guide-ui-img-job-stop.png b/website/source/assets/images/guide-ui-img-job-stop.png
new file mode 100644
index 000000000..3838147c5
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-job-stop.png differ
diff --git a/website/source/assets/images/guide-ui-img-job-versions.png b/website/source/assets/images/guide-ui-img-job-versions.png
new file mode 100644
index 000000000..a1f2a6684
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-job-versions.png differ
diff --git a/website/source/assets/images/guide-ui-img-periodic-force.png b/website/source/assets/images/guide-ui-img-periodic-force.png
new file mode 100644
index 000000000..87f7b4502
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-periodic-force.png differ
diff --git a/website/source/assets/images/guide-ui-img-server-detail.png b/website/source/assets/images/guide-ui-img-server-detail.png
new file mode 100644
index 000000000..1dac50be0
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-server-detail.png differ
diff --git a/website/source/assets/images/guide-ui-img-servers-list.png b/website/source/assets/images/guide-ui-img-servers-list.png
new file mode 100644
index 000000000..6b831d7a4
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-servers-list.png differ
diff --git a/website/source/assets/images/guide-ui-img-task-events.png b/website/source/assets/images/guide-ui-img-task-events.png
new file mode 100644
index 000000000..fb2a9434b
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-task-events.png differ
diff --git a/website/source/assets/images/guide-ui-img-task-logs.png b/website/source/assets/images/guide-ui-img-task-logs.png
new file mode 100644
index 000000000..d2a898903
Binary files /dev/null and b/website/source/assets/images/guide-ui-img-task-logs.png differ
diff --git a/website/source/assets/images/guide-ui-job-definition.png b/website/source/assets/images/guide-ui-job-definition.png
deleted file mode 100644
index 7a88e487c..000000000
Binary files a/website/source/assets/images/guide-ui-job-definition.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-job-deployment-detail.png b/website/source/assets/images/guide-ui-job-deployment-detail.png
deleted file mode 100644
index 6ebfd3b88..000000000
Binary files a/website/source/assets/images/guide-ui-job-deployment-detail.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-job-deployments.png b/website/source/assets/images/guide-ui-job-deployments.png
deleted file mode 100644
index 1bfebe17d..000000000
Binary files a/website/source/assets/images/guide-ui-job-deployments.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-job-detail.png b/website/source/assets/images/guide-ui-job-detail.png
deleted file mode 100644
index bcae7e6be..000000000
Binary files a/website/source/assets/images/guide-ui-job-detail.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-job-version-diff.png b/website/source/assets/images/guide-ui-job-version-diff.png
deleted file mode 100644
index f0cdeda09..000000000
Binary files a/website/source/assets/images/guide-ui-job-version-diff.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-job-versions.png b/website/source/assets/images/guide-ui-job-versions.png
deleted file mode 100644
index 00bfabde8..000000000
Binary files a/website/source/assets/images/guide-ui-job-versions.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-jobs-list-unauthorized.png b/website/source/assets/images/guide-ui-jobs-list-unauthorized.png
new file mode 100644
index 000000000..05a5059f0
Binary files /dev/null and b/website/source/assets/images/guide-ui-jobs-list-unauthorized.png differ
diff --git a/website/source/assets/images/guide-ui-jobs-list.png b/website/source/assets/images/guide-ui-jobs-list.png
index 4025a905a..1ac1d7831 100644
Binary files a/website/source/assets/images/guide-ui-jobs-list.png and b/website/source/assets/images/guide-ui-jobs-list.png differ
diff --git a/website/source/assets/images/guide-ui-jobs-row-detail.png b/website/source/assets/images/guide-ui-jobs-row-detail.png
deleted file mode 100644
index bbefa06ad..000000000
Binary files a/website/source/assets/images/guide-ui-jobs-row-detail.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-parameterized-dispatch-payload.png b/website/source/assets/images/guide-ui-parameterized-dispatch-payload.png
deleted file mode 100644
index 79c8951e8..000000000
Binary files a/website/source/assets/images/guide-ui-parameterized-dispatch-payload.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-periodic-force-launch-button.png b/website/source/assets/images/guide-ui-periodic-force-launch-button.png
deleted file mode 100644
index 98e9cb79a..000000000
Binary files a/website/source/assets/images/guide-ui-periodic-force-launch-button.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-periodic-job-detail.png b/website/source/assets/images/guide-ui-periodic-job-detail.png
deleted file mode 100644
index 7244a9173..000000000
Binary files a/website/source/assets/images/guide-ui-periodic-job-detail.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-server-detail.png b/website/source/assets/images/guide-ui-server-detail.png
deleted file mode 100644
index e6149e4bc..000000000
Binary files a/website/source/assets/images/guide-ui-server-detail.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-task-group-detail.png b/website/source/assets/images/guide-ui-task-group-detail.png
deleted file mode 100644
index 30c8edfe1..000000000
Binary files a/website/source/assets/images/guide-ui-task-group-detail.png and /dev/null differ
diff --git a/website/source/assets/images/guide-ui-task-logs.png b/website/source/assets/images/guide-ui-task-logs.png
deleted file mode 100644
index 5556d4ef2..000000000
Binary files a/website/source/assets/images/guide-ui-task-logs.png and /dev/null differ
diff --git a/website/source/assets/images/haproxy_ui.png b/website/source/assets/images/haproxy_ui.png
new file mode 100644
index 000000000..4ceffbeab
Binary files /dev/null and b/website/source/assets/images/haproxy_ui.png differ
diff --git a/website/source/assets/images/traefik_ui.png b/website/source/assets/images/traefik_ui.png
new file mode 100644
index 000000000..0c3a6cb8d
Binary files /dev/null and b/website/source/assets/images/traefik_ui.png differ
diff --git a/website/source/assets/javascripts/api-toc.js b/website/source/assets/javascripts/api-toc.js
index 0ece169bf..9cc3278dc 100644
--- a/website/source/assets/javascripts/api-toc.js
+++ b/website/source/assets/javascripts/api-toc.js
@@ -11,7 +11,7 @@ document.addEventListener('turbolinks:load', function() {
// Build the quick-nav HTML:
$("#inner h1").first().after(
'' +
- '
' +
+ '' +
'Jump to Section' +
' ' +
' ' +
diff --git a/website/source/assets/stylesheets/_alert.css b/website/source/assets/stylesheets/_alert.css
new file mode 100644
index 000000000..c7a82f316
--- /dev/null
+++ b/website/source/assets/stylesheets/_alert.css
@@ -0,0 +1,64 @@
+.g-alert{
+ display:inline-flex;
+ align-items:flex-start;
+ background-color: white;
+}
+.g-alert:hover{
+ opacity:0.8;
+}
+.g-alert.dark span, .g-alert.dark p{
+ color:#0f1013;
+}
+
+.g-alert.nomad-green span{
+ border-color:#00bc7f;
+}
+.g-alert.nomad-green svg line{
+ stroke:#00bc7f;
+ }
+.g-alert.nomad-green svg path{
+ fill:#00bc7f;
+ }
+
+.g-alert span{
+ background-color: white;
+ text-transform:uppercase;
+ padding:3px 10px;
+ border:1px solid #1563ff;
+ border-radius:3px;
+ margin-right:12px;
+ color:black;
+ white-space:nowrap;
+ vertical-align: middle;
+ }
+.g-alert p{
+ background-color: white;
+ color:black;
+ margin:0;
+ vertical-align: middle;
+ }
+.g-alert svg{
+ margin-left:12px
+ }
+.g-alert svg line{
+ stroke:#1563ff;
+ }
+.g-alert svg path{
+ fill:#1563ff;
+ }
+
+.g-alert-banner{
+ background:linear-gradient(90deg, #1563ff 1.56%, #08368b 100%);
+ color:#ffffff;
+ display:none;
+ overflow:hidden;
+ position:relative;
+ transition:height 0.3s ease-out
+}
+
+.g-alert-banner.nomad{
+ background:linear-gradient(90deg, #00bc7f 1.56%, #005738 100%)
+ }
+.g-alert-banner.nomad svg path{
+ stroke:#6bd8b4;
+}
diff --git a/website/source/assets/stylesheets/_api.scss b/website/source/assets/stylesheets/_api.scss
index 9178cb340..5b9c02c90 100644
--- a/website/source/assets/stylesheets/_api.scss
+++ b/website/source/assets/stylesheets/_api.scss
@@ -65,9 +65,7 @@
margin-left: 10px;
span {
- line-height: 20px;
cursor: pointer;
- font-variant-caps: all-small-caps;
color: #666;
svg {
@@ -87,7 +85,7 @@
width: 80%;
box-shadow: 0px 4px 12px -2px rgba(63, 68, 85, 0.5);
border-radius: 3px;
- padding: 2rem;
+ padding: 20px;
position: absolute;
z-index: 1;
background-color: white;
diff --git a/website/source/assets/stylesheets/_buttons.scss b/website/source/assets/stylesheets/_buttons.scss
index 1e022cfdc..56b649288 100755
--- a/website/source/assets/stylesheets/_buttons.scss
+++ b/website/source/assets/stylesheets/_buttons.scss
@@ -1,16 +1,16 @@
.button {
background: $button-background;
- border: 1px solid $button-font-color;
- box-shadow: 3px 4px 0 rgba(0,0,0,0.1);
+ border: 1px solid #d6d6d7;
+ border-radius: 1px;
+ box-sizing: border-box;
color: $button-font-color;
display: inline-block;
font-family: $button-font-family;
font-size: $button-font-size;
- font-weight: $button-font-weight;
- letter-spacing: 1px;
+ font-weight: $font-weight-medium;
+ line-height: 1.6em;
margin-bottom: 4px;
- padding: 10px 30px;
- text-transform: uppercase;
+ padding: 13px 19px;
text-decoration: none;
&:hover,
@@ -19,25 +19,54 @@
text-decoration: none;
}
+ &:focus {
+ border: 3px solid $nomad-l1;
+ color: $button-font-color;
+ outline: none;
+ padding: 11px 17px;
+ }
+
&:hover {
- background: $button-font-color;
- border: 1px solid $button-font-color;
- color: $button-background;
+ background: #eaeaeb;
+ border: 1px solid #d6d6d7;
+ color: $button-font-color;
+ padding: 13px 19px;
+ }
+
+ &:active {
+ background: #dfdfe0;
+ border: 1px solid #d6d6d7;
+ color: $button-font-color;
+ padding: 13px 19px;
}
&.primary {
background: $button-primary-background;
- border: 1px solid darken($button-primary-background, 5%);
- color: $button-primary-font-color;
+ border: none;
+ color: $white;
+ padding: 14px 20px;
+
+ &:focus {
+ border: 3px solid $nomad-l1;
+ padding: 11px 17px;
+ }
&:hover {
- background: lighten($button-primary-background, 5%);
+ background: linear-gradient(0deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)),
+ $button-primary-background;
+ border: none;
+ padding: 14px 20px;
+ }
+
+ &:active {
+ background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
+ $button-primary-background;
+ border: none;
+ padding: 14px 20px;
}
}
&.inline {
padding: 8px 14px;
- font-size: $font-size - 2;
- line-height: 14px;
}
}
diff --git a/website/source/assets/stylesheets/_docs.scss b/website/source/assets/stylesheets/_docs.scss
index ccbbf2135..87fedc002 100755
--- a/website/source/assets/stylesheets/_docs.scss
+++ b/website/source/assets/stylesheets/_docs.scss
@@ -9,20 +9,17 @@
li {
a {
color: $sidebar-link-color;
- font-size: $sidebar-font-size;
padding: 10px 0 10px 15px;
&:before {
color: $sidebar-link-color-active;
- content: '\203A';
- font-size: $font-size;
+ content: "\203A";
left: 0;
- line-height: 100%;
opacity: 0.4;
position: absolute;
height: 100%;
- width: 8px
+ width: 8px;
}
&:focus,
diff --git a/website/source/assets/stylesheets/_downloads.scss b/website/source/assets/stylesheets/_downloads.scss
index 97a4dfc66..6b8bf6e84 100644
--- a/website/source/assets/stylesheets/_downloads.scss
+++ b/website/source/assets/stylesheets/_downloads.scss
@@ -17,6 +17,7 @@ body.layout-downloads {
padding-left: 20px;
h2 {
+ @extend .g-type-display-4;
margin-top: 4px;
border: none;
}
@@ -46,7 +47,6 @@ body.layout-downloads {
}
.os-name {
- font-size: 40px;
margin-bottom: -3px;
}
}
diff --git a/website/source/assets/stylesheets/_fonts.scss b/website/source/assets/stylesheets/_fonts.scss
new file mode 100644
index 000000000..2f57998bd
--- /dev/null
+++ b/website/source/assets/stylesheets/_fonts.scss
@@ -0,0 +1,74 @@
+/* Display Font (Gilmer) */
+@font-face {
+ font-family: "gilmer-web";
+ src: url("/assets/fonts/gilmer/gilmer-light.woff2") format("woff2"),
+ url("/assets/fonts/gilmer/gilmer-light.woff") format("woff");
+ font-weight: 300;
+ font-style: normal;
+}
+
+@font-face {
+ font-family: "gilmer-web";
+ src: url("/assets/fonts/gilmer/gilmer-regular.woff2") format("woff2"),
+ url("/assets/fonts/gilmer/gilmer-regular.woff") format("woff");
+ font-weight: 400;
+ font-style: normal;
+}
+
+@font-face {
+ font-family: "gilmer-web";
+ src: url("/assets/fonts/gilmer/gilmer-medium.woff2") format("woff2"),
+ url("/assets/fonts/gilmer/gilmer-medium.woff") format("woff");
+ font-weight: 500;
+ font-style: normal;
+}
+
+@font-face {
+ font-family: "gilmer-web";
+ src: url("/assets/fonts/gilmer/gilmer-bold.woff2") format("woff2"),
+ url("/assets/fonts/gilmer/gilmer-bold.woff") format("woff");
+ font-weight: 700;
+ font-style: normal;
+}
+
+/* Body Font (Metro) */
+@font-face {
+ font-family: "metro-web";
+ src: url("/assets/fonts/metro/metro-sans-book.woff2") format("woff2"),
+ url("/assets/fonts/metro/metro-sans-book.woff") format("woff");
+ font-weight: 300;
+ font-style: normal;
+}
+
+@font-face {
+ font-family: "metro-web";
+ src: url("/assets/fonts/metro/metro-sans-regular.woff2") format("woff2"),
+ url("/assets/fonts/metro/metro-sans-regular.woff") format("woff");
+ font-weight: 400;
+ font-style: normal;
+}
+
+@font-face {
+ font-family: "metro-web";
+ src: url("/assets/fonts/metro/metro-sans-semi-bold.woff2") format("woff2"),
+ url("/assets/fonts/metro/metro-sans-semi-bold.woff") format("woff");
+ font-weight: 600;
+ font-style: normal;
+}
+
+@font-face {
+ font-family: "metro-web";
+ src: url("/assets/fonts/metro/metro-sans-bold.woff2") format("woff2"),
+ url("/assets/fonts/metro/metro-sans-bold.woff") format("woff");
+ font-weight: 700;
+ font-style: normal;
+}
+
+/* Code Font (Deja Vu) */
+@font-face {
+ font-family: "dejavu-sans-mono-web";
+ src: url("/assets/fonts/dejavu/DejaVuSansMono.woff2") format("woff2"),
+ url("/assets/fonts/dejavu/DejaVuSansMono.woff") format("woff");
+ font-style: normal;
+ font-weight: 400;
+}
diff --git a/website/source/assets/stylesheets/_footer.scss b/website/source/assets/stylesheets/_footer.scss
index ae34a057a..17143350f 100644
--- a/website/source/assets/stylesheets/_footer.scss
+++ b/website/source/assets/stylesheets/_footer.scss
@@ -6,7 +6,7 @@
a {
color: $footer-link-color;
font-size: $footer-font-size;
- font-family: $font-family-open-sans;
+ font-family: $font-body;
text-decoration: none;
&:hover, &:focus, &:active {
diff --git a/website/source/assets/stylesheets/_global.scss b/website/source/assets/stylesheets/_global.scss
index 8ebc6fd75..b9576dea1 100755
--- a/website/source/assets/stylesheets/_global.scss
+++ b/website/source/assets/stylesheets/_global.scss
@@ -1,4 +1,5 @@
html {
+ font-size: $font-size-default;
height: 100%;
min-height: 100%;
text-rendering: optimizeLegibility;
@@ -6,25 +7,17 @@ html {
}
body {
+ -moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
color: $body-font-color;
background-color: $white;
- font-size: $font-size;
- font-family: $font-family-open-sans;
+ font-size: $font-size-default;
+ font-family: $font-body;
font-weight: $font-weight-reg;
height: 100%;
min-height: 100%;
}
-h1, h2, h3, h4, h5 {
- font-family: $font-family-klavika;
- -webkit-font-smoothing: antialiased;
-}
-
-h1 {
- margin-bottom: 24px;
-}
-
@media (min-width: $screen-sm) and (max-width: $screen-md) {
.container {
padding: 0;
diff --git a/website/source/assets/stylesheets/_header.scss b/website/source/assets/stylesheets/_header.scss
index dde70d7d6..54e661fc9 100755
--- a/website/source/assets/stylesheets/_header.scss
+++ b/website/source/assets/stylesheets/_header.scss
@@ -42,7 +42,7 @@
a {
color: $header-link-color;
font-size: $header-font-size;
- font-family: $font-family-open-sans;
+ font-family: $font-body;
font-weight: $font-weight-bold;
height: $header-height;
line-height: $header-height;
diff --git a/website/source/assets/stylesheets/_home.scss b/website/source/assets/stylesheets/_home.scss
index 0856807ad..ce9ffcceb 100755
--- a/website/source/assets/stylesheets/_home.scss
+++ b/website/source/assets/stylesheets/_home.scss
@@ -22,7 +22,9 @@
a {
color: $home-header-link-color;
- &:hover, &:focus, &:active {
+ &:hover,
+ &:focus,
+ &:active {
background-color: transparent;
color: $home-header-link-color-hover;
@@ -44,6 +46,10 @@
margin: 140px auto 160px auto;
text-align: center;
+ h1 {
+ margin: 24px 0 40px 0;
+ }
+
.button {
margin: 5px;
@@ -66,63 +72,29 @@
}
section.marketing {
- h2 {
- font-family: $font-family-klavika;
- font-size: 36px;
- font-weight: $font-weight-bold;
- line-height: 1.25;
- letter-spacing: -0.02em;
- margin: 20px 0 10px 0;
- padding: 0;
- text-transform: uppercase;
- }
-
h3 {
color: $black;
- font-size: 20px;
- font-weight: $font-weight-bold;;
- line-height: 1.2;
margin: 50px 0 15px 0;
- text-transform: uppercase;
- }
-
- p {
- font-family: $font-family-open-sans;
- font-size: 16px;
- letter-spacing: 0.01em;
- line-height: 1.5;
- margin: 0 0 10px;
-
- &.lead {
- font-size: 20px;
- margin: 30px 0 30px 0;
- }
}
span.callout {
background: $black;
color: $white;
display: inline-block;
- font-family: $font-family-klavika;
- font-size: 18px;
- font-weight: $font-weight-bold;
- line-height: 1;
margin: 0;
padding: 5px;
- letter-spacing: 0.05em;
- text-transform: uppercase;
}
&.green {
- background: $nomad-green;
+ background: $nomad;
- h2, h3 {
+ h2,
+ h3 {
color: $white;
}
p {
color: $white;
- font-weight: $font-weight-reg;
}
a {
@@ -138,20 +110,20 @@
span.callout {
background: $white;
- color: $nomad-green;
+ color: $nomad;
}
}
&.gray {
- background: #EDEDED;
+ background: #ededed;
- h2, h3 {
+ h2,
+ h3 {
color: $black;
}
p {
color: $black;
- font-weight: $font-weight-reg;
}
span.callout {
@@ -163,13 +135,13 @@
&.black {
background: $black;
- h2, h3 {
+ h2,
+ h3 {
color: $white;
}
p {
color: $white;
- font-weight: $font-weight-reg;
}
a {
@@ -215,7 +187,7 @@
padding: 0;
}
- @media(max-width: $screen-sm) {
+ @media (max-width: $screen-sm) {
svg {
margin: 60px auto;
}
@@ -230,16 +202,18 @@
padding: 0;
}
}
+
+ .get-started {
+ margin-top: 32px;
+ }
}
.terminal {
+ @extend .g-type-code;
border: 1px solid $white;
background: $black;
box-sizing: border-box;
color: $white;
- font-family: $font-family-monospace;
- font-size: 15px;
- line-height: 1.8;
margin: 20px auto auto auto;
padding: 10px 20px 20px 20px;
@@ -262,20 +236,19 @@
}
&.text-bold {
- font-weight: bold;
+ font-weight: $font-weight-bold;
}
-
&.text-green {
- color: lighten($nomad-green, 20%);
+ color: lighten($nomad, 20%);
}
&.text-blue {
- color: #71A4F5;
+ color: #71a4f5;
}
&.text-orange {
- color: #F5BF49;
+ color: #f5bf49;
}
}
}
diff --git a/website/source/assets/stylesheets/_inner.scss b/website/source/assets/stylesheets/_inner.scss
index 363702ce1..338c400f7 100644
--- a/website/source/assets/stylesheets/_inner.scss
+++ b/website/source/assets/stylesheets/_inner.scss
@@ -1,31 +1,39 @@
#inner {
- p, li, .alert {
- font-size: $font-size;
- font-family: $font-family-open-sans;
- font-weight: $font-weight-reg;
- line-height: 1.84em;
- margin: 0 0 $font-size;
- -webkit-font-smoothing: antialiased;
+ h1 {
+ @extend .g-type-display-2;
+ }
+
+ h2 {
+ @extend .g-type-display-3;
+ }
+
+ h3 {
+ @extend .g-type-display-4;
+ }
+
+ h4 {
+ @extend .g-type-display-5;
+ }
+
+ h5,
+ h6 {
+ @extend .g-type-display-6;
+ }
+
+ p,
+ li,
+ .alert {
+ @extend .g-type-long-body;
+ margin: 0 0 $font-size-default;
}
.alert p:last-child {
margin-bottom: 0;
}
- pre,
- code,
- pre code,
- tt {
- font-family: $font-family-monospace;
- font-size: $font-size - 2;
- line-height: 1.6;
- }
-
pre {
padding: 20px;
- margin: 0 0 $font-size;
- padding: 20px;
- margin: 0 0 $font-size;
+ margin: 0 0 $font-size-default;
// This will force the code to scroll horizontally on small screens
// instead of wrapping.
@@ -52,9 +60,9 @@
img {
display: block;
margin: 25px auto;
- max-width: 650px;
+ max-width: 95%;
height: auto;
- width: 90%;
+ width: auto;
}
h1,
@@ -63,8 +71,7 @@
h4 {
color: $body-font-color;
margin-top: 54px;
- margin-bottom: $font-size;
- line-height: 1.3;
+ margin-bottom: $font-size-default;
}
h2 {
@@ -76,17 +83,11 @@
h2 > code,
h3 > code,
h4 > code,
- h5 > code
- h6 > code,
- li code,
- table code,
- p code,
- tt,
- .alert code {
- font-family: $font-family-monospace;
- font-size: 90%;
+ h5 > code,
+ h6 > code {
background-color: transparent;
color: inherit;
+ font-size: 90%;
padding: 0;
}
diff --git a/website/source/assets/stylesheets/_logos.scss b/website/source/assets/stylesheets/_logos.scss
index f100dd04a..63d708d30 100644
--- a/website/source/assets/stylesheets/_logos.scss
+++ b/website/source/assets/stylesheets/_logos.scss
@@ -3,17 +3,17 @@ svg.logo {
opacity: 1.0;
path.top {
- fill: $nomad-green;
+ fill: #25BA81;
opacity: 1.0;
}
path.left {
- fill: $nomad-green;
+ fill: #25BA81;
opacity: 1.0;
}
path.right {
- fill: $nomad-green-dark;
+ fill: #1F9967;
opacity: 1.0;
}
@@ -50,7 +50,7 @@ svg.logo {
}
path.n {
- fill: $nomad-green;
+ fill: #25BA81;
opacity: 1.0;
}
diff --git a/website/source/assets/stylesheets/_typography.scss b/website/source/assets/stylesheets/_typography.scss
new file mode 100644
index 000000000..cd8ef8752
--- /dev/null
+++ b/website/source/assets/stylesheets/_typography.scss
@@ -0,0 +1,283 @@
+/* HashiCorp-style headings */
+h1,
+h2,
+h3,
+h4,
+h5,
+h6 {
+ font-family: $font-display;
+ font-weight: $font-weight-bold;
+ font-kerning: normal;
+ -webkit-font-smoothing: antialiased;
+}
+
+pre,
+code,
+pre code,
+tt {
+ @extend .g-type-code;
+}
+
+/* Display 1 */
+.g-type-display-1 {
+ font-family: $font-display;
+ font-weight: $font-weight-bold;
+ font-size: 2.125rem;
+ letter-spacing: -0.008em;
+ line-height: 1.265em;
+
+ @media (min-width: 768px) {
+ font-size: 2.625rem;
+ letter-spacing: -0.01em;
+ line-height: 1.19em;
+ }
+
+ @media (min-width: 1120px) {
+ font-size: 3.125rem;
+ line-height: 1.2em;
+ }
+}
+
+/* Display 2 */
+.g-type-display-2 {
+ font-family: $font-display;
+ font-weight: $font-weight-bold;
+ font-size: 1.75rem;
+ letter-spacing: -0.004em;
+ line-height: 1.286em;
+
+ @media (min-width: 768px) {
+ font-size: 2.125rem;
+ letter-spacing: -0.008em;
+ line-height: 1.265em;
+ }
+
+ @media (min-width: 1120px) {
+ font-size: 2.5rem;
+ letter-spacing: -0.01em;
+ line-height: 1.25em;
+ }
+}
+
+/* Display 3 */
+.g-type-display-3 {
+ font-family: $font-display;
+ font-weight: $font-weight-bold;
+ font-size: 1.5rem;
+ letter-spacing: -0.004em;
+ line-height: 1.375em;
+
+ @media (min-width: 768px) {
+ font-size: 1.75rem;
+ line-height: 1.321em;
+ }
+
+ @media (min-width: 1120px) {
+ font-size: 2rem;
+ letter-spacing: -0.006em;
+ line-height: 1.313em;
+ }
+}
+
+/* Display 4 */
+.g-type-display-4 {
+ font-family: $font-display;
+ font-weight: $font-weight-bold;
+ font-size: 1.313rem;
+ line-height: 1.429em;
+
+ @media (min-width: 768px) {
+ font-size: 1.438rem;
+ letter-spacing: -0.004em;
+ line-height: 1.391em;
+ }
+
+ @media (min-width: 1120px) {
+ font-size: 1.5rem;
+ line-height: 1.417em;
+ }
+}
+
+/* Display 5 */
+.g-type-display-5 {
+ font-family: $font-display;
+ font-weight: $font-weight-bold;
+ font-size: 1.125rem;
+ line-height: 1.556em;
+}
+
+/* Display 6 */
+.g-type-display-6 {
+ font-family: $font-display;
+ font-weight: $font-weight-bold;
+ font-size: 1rem;
+ line-height: 1.5em;
+}
+
+/* Body Large */
+.g-type-body-large {
+ font-family: $font-body;
+ font-weight: $font-weight-reg;
+ font-size: 1.188rem;
+ letter-spacing: 0.01em;
+ line-height: 1.579em;
+
+ @media (min-width: 1120px) {
+ font-size: 1.25rem;
+ line-height: 1.55em;
+ }
+}
+
+/* Body */
+.g-type-body {
+ font-family: $font-body;
+ font-weight: $font-weight-reg;
+ font-size: 1.063rem;
+ letter-spacing: 0.01em;
+ line-height: 1.647em;
+}
+
+/* Body - Strong */
+.g-type-body-strong {
+ font-family: $font-body;
+ font-weight: $font-weight-semi-bold;
+ font-size: 1.063rem;
+ letter-spacing: 0.01em;
+ line-height: 1.647em;
+}
+
+/* Body - X Strong */
+.g-type-body-x-strong {
+ font-family: $font-body;
+ font-weight: $font-weight-bold;
+ font-size: 1.063rem;
+ letter-spacing: 0.01em;
+ line-height: 1.647em;
+}
+
+/* Body - Italic */
+.g-type-body-italic {
+ font-family: $font-body;
+ font-weight: $font-weight-reg;
+ font-size: 1.063rem;
+ letter-spacing: 0.01em;
+ line-height: 1.647em;
+ font-style: italic;
+}
+
+/* Body Small */
+.g-type-body-small {
+ font-family: $font-body;
+ font-weight: $font-weight-reg;
+ font-size: 0.938rem;
+ letter-spacing: 0.01em;
+ line-height: 1.667em;
+}
+
+/* Body Small - Strong */
+.g-type-body-small-strong {
+ font-family: $font-body;
+ font-weight: $font-weight-semi-bold;
+ font-size: 0.938rem;
+ letter-spacing: 0.01em;
+ line-height: 1.667em;
+}
+
+/* Body Small - X Strong */
+.g-type-body-small-x-strong {
+ font-family: $font-body;
+ font-weight: $font-weight-bold;
+ font-size: 0.938rem;
+ letter-spacing: 0.01em;
+ line-height: 1.667em;
+}
+
+/* Body Small - Italic */
+.g-type-body-small-italic {
+ font-family: $font-body;
+ font-weight: $font-weight-reg;
+ font-size: 0.938rem;
+ letter-spacing: 0.01em;
+ line-height: 1.667em;
+ font-style: italic;
+}
+
+/* Long Body */
+.g-type-long-body {
+ font-family: $font-body;
+ font-weight: $font-weight-reg;
+ font-size: 1.063rem;
+ letter-spacing: 0.01em;
+ line-height: 1.765em;
+}
+
+/* Long Body Strong */
+.g-type-long-body-strong {
+ font-family: $font-body;
+ font-weight: $font-weight-semi-bold;
+ font-size: 1.063rem;
+ letter-spacing: 0.01em;
+ line-height: 1.765em;
+}
+
+/* Long Body Italic */
+.g-type-long-body-italic {
+ font-family: $font-body;
+ font-weight: $font-weight-reg;
+ font-size: 1.063rem;
+ letter-spacing: 0.01em;
+ line-height: 1.765em;
+ font-style: italic;
+}
+
+/* Buttons and standalone links */
+.g-type-buttons-and-standalone-links {
+ font-family: $font-display;
+ font-weight: $font-weight-medium;
+ font-size: 0.938rem;
+ line-height: 1.6em;
+}
+
+/* Header Nav */
+.g-type-header-nav {
+ font-family: $font-display;
+ font-weight: $font-weight-medium;
+ font-size: 0.875rem;
+ line-height: 1.429em;
+}
+
+/* Label */
+.g-type-label {
+ font-family: $font-display;
+ font-weight: $font-weight-medium;
+ font-size: 0.75rem;
+ letter-spacing: 0.08em;
+ line-height: 1.5em;
+ text-transform: uppercase;
+}
+
+/* Label - Strong */
+.g-type-label-strong {
+ font-family: $font-display;
+ font-weight: $font-weight-bold;
+ font-size: 0.75rem;
+ letter-spacing: 0.08em;
+ line-height: 1.5em;
+ text-transform: uppercase;
+}
+
+/* Tag Label */
+.g-type-tag-label {
+ font-family: $font-body;
+ font-weight: $font-weight-bold;
+ font-size: 0.75rem;
+ line-height: 1.333em;
+}
+
+/* Code */
+.g-type-code {
+ font-family: $font-monospace;
+ font-weight: $font-weight-reg;
+ font-size: 0.844rem;
+ line-height: 1.63em;
+}
diff --git a/website/source/assets/stylesheets/_variables.scss b/website/source/assets/stylesheets/_variables.scss
index 0ae121d83..8fd397393 100755
--- a/website/source/assets/stylesheets/_variables.scss
+++ b/website/source/assets/stylesheets/_variables.scss
@@ -1,34 +1,66 @@
// Colors
-$white: #FFFFFF;
+$white: #ffffff;
$black: #000000;
-$gray: #555555;
-$gray-light: #CCCCCC;
+$gray: #1d1e23;
+$gray-light: #cccccc;
-$consul-pink: #D62783;
-$consul-pink-dark: #961D59;
-$nomad-green: #25BA81;
-$nomad-green-dark:#1F9967;
-$packer-blue: #1DAEFF;
-$packer-blue-dark: #1D94DD;
-$terraform-purple: #5C4EE5;
-$terraform-purple-dark: #4040B2;
-$vagrant-blue: #1563FF;
-$vagrant-blue-dark: #104EB2;
-$vault-black: #000000;
-$vault-blue: #00ABE0;
-$vault-gray: #919FA8;
+$vagrant-l3: #eff5ff;
+$vagrant-l2: #d0e0ff;
+$vagrant-l1: #66a2ff;
+$vagrant: #1563ff;
+$vagrant-d1: #0d44cc;
+$vagrant-d2: #08368b;
+$packer-l3: #ebf8ff;
+$packer-l2: #bfe8fe;
+$packer-l1: #6bceff;
+$packer: #00acff;
+$packer-d1: #0074ba;
+$packer-d2: #005283;
+$nomad-l3: #ebfdf7;
+$nomad-l2: #c1f1e0;
+$nomad-l1: #6bd8b4;
+$nomad-on-dark: #00bc7f;
+$nomad: #00bc7f;
+$nomad-d1: #007854;
+$nomad-d2: #004c3a;
+$terraform-l3: #f5f3ff;
+$terraform-l2: #ddd6fa;
+$terraform-l1: #a28ce8;
+$terraform-on-dark: #7c65ef;
+$terraform: #623ce4;
+$terraform-d1: #3c2aa8;
+$terraform-d2: #2a1c73;
+$consul-l3: #fff2f8;
+$consul-l2: #f8d9e7;
+$consul-l1: #e07eac;
+$consul-on-dark: #e03a89;
+$consul: #ca2171;
+$consul-d1: #8e134a;
+$consul-d2: #650d34;
+$vault-l3: #f7f7f9;
+$vault-l2: #dcdde0;
+$vault-l1: #bdbec2;
+$vault: #4c4c53;
+$vault-d1: #323339;
+$vault-d2: #1d1e23;
// Typography
-$font-family-klavika: 'klavika-web', Helvetica, sans-serif;
-$font-family-open-sans: 'Open Sans', sans-serif;
-$font-family-monospace: 'Fira Mono', monospace;
-$font-size: 15px;
-$font-weight-reg: 400;
-$font-weight-bold: 600;
+$font-size-default: 16px;
+$font-weight-light: 300;
+$font-weight-book: $font-weight-light;
+$font-weight-reg: 400;
+$font-weight-medium: 500;
+$font-weight-semi-bold: 600;
+$font-weight-bold: 700;
+$font-display: "gilmer-web", "Gilmer", Geneva, Tahoma, Helvetica, Verdana,
+ sans-serif;
+$font-body: "metro-web", "Metro", -apple-system, BlinkMacSystemFont, "Segoe UI",
+ Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
+$font-monospace: "dejavu-sans-mono-web", monospace;
// Body
$body-font-color: $gray;
-$body-link-color: $nomad-green;
+$body-link-color: $nomad;
// Home
$home-header-background-color: transparent;
@@ -37,30 +69,30 @@ $home-header-link-color-hover: $black;
// Sidebar
$sidebar-background-color: $white;
-$sidebar-font-size: $font-size - 2;
+$sidebar-font-size: $font-size-default - 2;
$sidebar-link-color: $body-font-color;
$sidebar-link-color-hover: $black;
$sidebar-link-color-active: $body-link-color;
-$sidebar-font-family: $font-family-open-sans;
+$sidebar-font-family: $font-body;
$sidebar-font-weight: $font-weight-reg;
// Header
-$header-background-color: $nomad-green;
-$header-font-size: $font-size - 2;
+$header-background-color: $nomad;
+$header-font-size: $font-size-default - 2;
$header-height: 92px;
$header-link-color: rgba($white, 0.85);
$header-link-color-hover: $white;
// Footer
-$footer-font-size: $font-size - 2;
+$footer-font-size: $font-size-default - 2;
$footer-link-color: $body-font-color;
$footer-link-color-hover: $black;
// Button
$button-background: $white;
-$button-font-color: #7b8A8E;
-$button-font-family: $font-family-klavika;
-$button-font-size: $font-size;
+$button-font-color: $black;
+$button-font-family: $font-display;
+$button-font-size: 0.938rem;
$button-font-weight: $font-weight-bold;
-$button-primary-background: $nomad-green;
+$button-primary-background: $nomad;
$button-primary-font-color: $white;
diff --git a/website/source/assets/stylesheets/application.scss b/website/source/assets/stylesheets/application.scss
index 22a6c8c88..fedb910a1 100755
--- a/website/source/assets/stylesheets/application.scss
+++ b/website/source/assets/stylesheets/application.scss
@@ -1,7 +1,8 @@
@import 'bootstrap-sprockets';
@import 'bootstrap';
-@import url('https://fonts.googleapis.com/css?family=Fira+Mono|Open+Sans:400,600');
+// Fonts
+@import '_fonts';
// Mega Nav
@import 'hashicorp/mega-nav';
@@ -15,6 +16,9 @@
// Sidebar
@import 'hashicorp/sidebar';
+// Typography
+@import '_typography';
+
//Global Site
@import '_global';
@@ -32,3 +36,4 @@
@import '_docs';
@import '_downloads';
@import '_api';
+@import '_alert';
diff --git a/website/source/docs/commands/_general_options.html.md b/website/source/docs/commands/_general_options.html.md
index 86cba60fa..f1c4022e6 100644
--- a/website/source/docs/commands/_general_options.html.md
+++ b/website/source/docs/commands/_general_options.html.md
@@ -25,6 +25,9 @@
the client certificate from `-client-cert`. Overrides the `NOMAD_CLIENT_KEY`
environment variable if set.
+- `-tls-server-name=`: The server name to use as the SNI host when connecting
+ via TLS. Overrides the `NOMAD_TLS_SERVER_NAME` environment variable if set.
+
- `-tls-skip-verify`: Do not verify TLS certificate. This is highly not
recommended. Verification will also be skipped if `NOMAD_SKIP_VERIFY` is set.
diff --git a/website/source/docs/commands/acl.html.md.erb b/website/source/docs/commands/acl.html.md
similarity index 60%
rename from website/source/docs/commands/acl.html.md.erb
rename to website/source/docs/commands/acl.html.md
index 05b1c2485..8559db5a7 100644
--- a/website/source/docs/commands/acl.html.md.erb
+++ b/website/source/docs/commands/acl.html.md
@@ -17,16 +17,16 @@ Usage: `nomad acl [options]`
Run `nomad acl -h` for help on that subcommand. The following
subcommands are available:
-* [`acl bootstrap`][bootstrap] - Bootstrap the initial ACL token
-* [`acl policy apply`][policyapply] - Create or update ACL policies
-* [`acl policy delete`][policydelete] - Delete an existing ACL policies
-* [`acl policy info`][policyinfo] - Fetch information on an existing ACL policy
-* [`acl policy list`][policylist] - List available ACL policies
-* [`acl token create`][tokencreate] - Create new ACL token
-* [`acl token delete`][tokendelete] - Delete an existing ACL token
-* [`acl token info`][tokeninfo] - Get info on an existing ACL token
-* [`acl token self`][tokenself] - Get info on self ACL token
-* [`acl token update`][tokenupdate] - Update existing ACL token
+- [`acl bootstrap`][bootstrap] - Bootstrap the initial ACL token
+- [`acl policy apply`][policyapply] - Create or update ACL policies
+- [`acl policy delete`][policydelete] - Delete an existing ACL policies
+- [`acl policy info`][policyinfo] - Fetch information on an existing ACL policy
+- [`acl policy list`][policylist] - List available ACL policies
+- [`acl token create`][tokencreate] - Create new ACL token
+- [`acl token delete`][tokendelete] - Delete an existing ACL token
+- [`acl token info`][tokeninfo] - Get info on an existing ACL token
+- [`acl token self`][tokenself] - Get info on self ACL token
+- [`acl token update`][tokenupdate] - Update existing ACL token
[bootstrap]: /docs/commands/acl/bootstrap.html
[policyapply]: /docs/commands/acl/policy-apply.html
diff --git a/website/source/docs/commands/acl/bootstrap.html.md.erb b/website/source/docs/commands/acl/bootstrap.html.md.erb
index 2934753a4..76c257067 100644
--- a/website/source/docs/commands/acl/bootstrap.html.md.erb
+++ b/website/source/docs/commands/acl/bootstrap.html.md.erb
@@ -12,7 +12,7 @@ The `acl bootstrap` command is used to bootstrap the initial ACL token.
## Usage
-```
+```plaintext
nomad acl bootstrap [options]
```
@@ -26,7 +26,7 @@ The `acl bootstrap` command requires no arguments.
Bootstrap the initial token:
-```
+```shell
$ nomad acl bootstrap
Accessor ID = 5b7fd453-d3f7-6814-81dc-fcfe6daedea5
Secret ID = 9184ec35-65d4-9258-61e3-0c066d0a45c5
diff --git a/website/source/docs/commands/acl/policy-apply.html.md.erb b/website/source/docs/commands/acl/policy-apply.html.md.erb
index f0d44428c..6e6a7c65a 100644
--- a/website/source/docs/commands/acl/policy-apply.html.md.erb
+++ b/website/source/docs/commands/acl/policy-apply.html.md.erb
@@ -12,12 +12,12 @@ The `acl policy apply` command is used to create or update ACL policies.
## Usage
-```
+```plaintext
nomad acl policy apply [options]
```
-The `acl policy apply` command requires two arguments, the policy name and path to file.
-The policy can be read from stdin by setting the path to "-".
+The `acl policy apply` command requires two arguments, the policy name and path
+to file. The policy can be read from stdin by setting the path to "-".
## General Options
@@ -25,13 +25,13 @@ The policy can be read from stdin by setting the path to "-".
## Apply Options
-* `-description`: Sets the human readable description for the ACL policy.
+- `-description`: Sets the human readable description for the ACL policy.
## Examples
Create a new ACL Policy:
-```
+```shell
$ nomad acl policy apply my-policy my-policy.json
Successfully wrote 'my-policy' ACL policy!
```
diff --git a/website/source/docs/commands/acl/policy-delete.html.md.erb b/website/source/docs/commands/acl/policy-delete.html.md.erb
index 1e7c8018e..7fecc34be 100644
--- a/website/source/docs/commands/acl/policy-delete.html.md.erb
+++ b/website/source/docs/commands/acl/policy-delete.html.md.erb
@@ -12,7 +12,7 @@ The `acl policy delete` command is used to delete an existing ACL policies.
## Usage
-```
+```plaintext
nomad acl policy delete
```
@@ -26,7 +26,7 @@ The `acl policy delete` command requires the policy name as an argument.
Delete an ACL Policy:
-```
+```shell
$ nomad acl policy delete my-policy
Successfully deleted 'my-policy' ACL policy!
```
diff --git a/website/source/docs/commands/acl/policy-info.html.md.erb b/website/source/docs/commands/acl/policy-info.html.md.erb
index 4a809ebd3..4092bc069 100644
--- a/website/source/docs/commands/acl/policy-info.html.md.erb
+++ b/website/source/docs/commands/acl/policy-info.html.md.erb
@@ -14,7 +14,7 @@ policy.
## Usage
-```
+```plaintext
nomad acl policy info
```
@@ -28,7 +28,7 @@ The `acl policy info` command requires the policy name.
Fetch information on an existing ACL Policy:
-```
+```shell
$ nomad acl policy info my-policy
Name = my-policy
Description =
diff --git a/website/source/docs/commands/acl/policy-list.html.md.erb b/website/source/docs/commands/acl/policy-list.html.md.erb
index b2247094e..00c55bcbe 100644
--- a/website/source/docs/commands/acl/policy-list.html.md.erb
+++ b/website/source/docs/commands/acl/policy-list.html.md.erb
@@ -12,25 +12,24 @@ The `acl policy list` command is used to list available ACL policies.
## Usage
-```
+```plaintext
nomad acl policy list
```
## General Options
<%= partial "docs/commands/_general_options" %>
-#
+
## List Options
-* `-json` : Output the policies in their JSON format.
-
-* `-t` : Format and display the policies using a Go template.
+- `-json` : Output the policies in their JSON format.
+- `-t` : Format and display the policies using a Go template.
## Examples
List all ACL policies:
-```
+```shell
$ nomad acl policy list
Name Description
policy-1 The first policy
diff --git a/website/source/docs/commands/acl/token-create.html.md.erb b/website/source/docs/commands/acl/token-create.html.md.erb
index ac0066ec1..51cb15218 100644
--- a/website/source/docs/commands/acl/token-create.html.md.erb
+++ b/website/source/docs/commands/acl/token-create.html.md.erb
@@ -12,7 +12,7 @@ The `acl token create` command is used to create new ACL tokens.
## Usage
-```
+```plaintext
nomad acl token create [options]
```
@@ -24,20 +24,22 @@ The `acl token create` command requires no arguments.
## Create Options
-* `-name`: Sets the human readable name for the ACL token.
+- `-name`: Sets the human readable name for the ACL token.
-* `-type`: Sets the type of token. Must be one of "client" (default), or "management".
+- `-type`: Sets the type of token. Must be one of "client" (default), or
+ "management".
-* `-global`: Toggles the global mode of the token. Global tokens are replicated to all regions. Defaults false.
+- `-global`: Toggles the global mode of the token. Global tokens are replicated
+ to all regions. Defaults false.
-* `-policy`: Specifies a policy to associate with the token. Can be specified multiple times,
- but only with client type tokens.
+- `-policy`: Specifies a policy to associate with the token. Can be specified
+ multiple times, but only with client type tokens.
## Examples
Create a new ACL token:
-```
+```shell
$ nomad acl token create -name="my token" -policy=foo -policy=bar
Accessor ID = d532c40a-30f1-695c-19e5-c35b882b0efd
Secret ID = 85310d07-9afa-ef53-0933-0c043cd673c7
diff --git a/website/source/docs/commands/acl/token-delete.html.md.erb b/website/source/docs/commands/acl/token-delete.html.md.erb
index f9877a8eb..3bee359a5 100644
--- a/website/source/docs/commands/acl/token-delete.html.md.erb
+++ b/website/source/docs/commands/acl/token-delete.html.md.erb
@@ -12,7 +12,7 @@ The `acl token delete` command is used to delete existing ACL tokens.
## Usage
-```
+```plaintext
nomad acl token delete
```
@@ -26,7 +26,7 @@ The `acl token delete` command requires an existing token's AccessorID.
Delete an existing ACL token:
-```
+```shell
$ nomad acl token delete d532c40a-30f1-695c-19e5-c35b882b0efd
Token d532c40a-30f1-695c-19e5-c35b882b0efd successfully deleted
diff --git a/website/source/docs/commands/acl/token-info.html.md.erb b/website/source/docs/commands/acl/token-info.html.md.erb
index af43d9261..39e44bd52 100644
--- a/website/source/docs/commands/acl/token-info.html.md.erb
+++ b/website/source/docs/commands/acl/token-info.html.md.erb
@@ -12,7 +12,7 @@ The `acl token info` command is used to fetch information about an existing ACL
## Usage
-```
+```plaintext
nomad acl token info
```
@@ -26,7 +26,7 @@ The `acl token info` command requires an existing token's AccessorID.
Fetch information about an existing ACL token:
-```
+```shell
$ nomad acl token info d532c40a-30f1-695c-19e5-c35b882b0efd
Accessor ID = d532c40a-30f1-695c-19e5-c35b882b0efd
Secret ID = 85310d07-9afa-ef53-0933-0c043cd673c7
diff --git a/website/source/docs/commands/acl/token-list.html.md.erb b/website/source/docs/commands/acl/token-list.html.md.erb
index 45a9ce7bd..10862850a 100644
--- a/website/source/docs/commands/acl/token-list.html.md.erb
+++ b/website/source/docs/commands/acl/token-list.html.md.erb
@@ -12,25 +12,24 @@ The `acl token list` command is used to list existing ACL tokens.
## Usage
-```
+```plaintext
nomad acl token list
```
## General Options
<%= partial "docs/commands/_general_options" %>
-#
+
## List Options
-* `-json` : Output the tokens in their JSON format.
-
-* `-t` : Format and display the tokens using a Go template.
+- `-json` : Output the tokens in their JSON format.
+- `-t` : Format and display the tokens using a Go template.
## Examples
List all ACL tokens:
-```
+```shell
$ nomad acl token list
Name Type Global Accessor ID
Bootstrap Token management true 32b61154-47f1-3694-1430-a5544bafcd3e
diff --git a/website/source/docs/commands/acl/token-self.html.md.erb b/website/source/docs/commands/acl/token-self.html.md.erb
index 4ca40247b..03df83ecf 100644
--- a/website/source/docs/commands/acl/token-self.html.md.erb
+++ b/website/source/docs/commands/acl/token-self.html.md.erb
@@ -9,11 +9,12 @@ description: >
# Command: acl token self
-The `acl token self` command is used to fetch information about the currently set ACL token.
+The `acl token self` command is used to fetch information about the currently
+set ACL token.
## Usage
-```
+```plaintext
nomad acl token self
```
@@ -25,7 +26,7 @@ nomad acl token self
Fetch information about an existing ACL token:
-```
+```shell
$ export NOMAD_TOKEN=d532c40a-30f1-695c-19e5-c35b882b0efd
$ nomad acl token self
diff --git a/website/source/docs/commands/acl/token-update.html.md.erb b/website/source/docs/commands/acl/token-update.html.md.erb
index c1d18737f..4d803e465 100644
--- a/website/source/docs/commands/acl/token-update.html.md.erb
+++ b/website/source/docs/commands/acl/token-update.html.md.erb
@@ -12,7 +12,7 @@ The `acl token update` command is used to update existing ACL tokens.
## Usage
-```
+```plaintext
nomad acl token update [options]
```
@@ -24,20 +24,22 @@ The `acl token update` command requires an existing token's accessor ID.
## Create Options
-* `-name`: Sets the human readable name for the ACL token.
+- `-name`: Sets the human readable name for the ACL token.
-* `-type`: Sets the type of token. Must be one of "client" (default), or "management".
+- `-type`: Sets the type of token. Must be one of "client" (default), or
+ "management".
-* `-global`: Toggles the global mode of the token. Global tokens are replicated to all regions. Defaults false.
+- `-global`: Toggles the global mode of the token. Global tokens are replicated
+ to all regions. Defaults false.
-* `-policy`: Specifies a policy to associate with the token. Can be specified multiple times,
- but only with client type tokens.
+- `-policy`: Specifies a policy to associate with the token. Can be specified
+ multiple times, but only with client type tokens.
## Examples
Update an existing ACL token:
-```
+```shell
$ nomad acl token update -name="my updated token" -policy=foo -policy=bar d532c40a-30f1-695c-19e5-c35b882b0efd
Accessor ID = d532c40a-30f1-695c-19e5-c35b882b0efd
Secret ID = 85310d07-9afa-ef53-0933-0c043cd673c7
diff --git a/website/source/docs/commands/agent-info.html.md.erb b/website/source/docs/commands/agent-info.html.md.erb
index d4eef9353..9961ea573 100644
--- a/website/source/docs/commands/agent-info.html.md.erb
+++ b/website/source/docs/commands/agent-info.html.md.erb
@@ -14,7 +14,7 @@ is connected to. This is useful for troubleshooting and performance monitoring.
## Usage
-```
+```plaintext
nomad agent-info [options]
```
@@ -27,15 +27,15 @@ nomad agent-info [options]
Depending on the agent queried, information from different subsystems is
returned. These subsystems are described below:
-* client - Status of the local Nomad client
-* nomad - Status of the local Nomad server
-* serf - Gossip protocol metrics and information
-* raft - Status information about the Raft consensus protocol
-* runtime - Various metrics from the runtime environment
+- client - Status of the local Nomad client
+- nomad - Status of the local Nomad server
+- serf - Gossip protocol metrics and information
+- raft - Status information about the Raft consensus protocol
+- runtime - Various metrics from the runtime environment
## Examples
-```
+```shell
$ nomad agent-info
raft
commit_index = 0
diff --git a/website/source/docs/commands/agent.html.md b/website/source/docs/commands/agent.html.md
new file mode 100644
index 000000000..fb751eca8
--- /dev/null
+++ b/website/source/docs/commands/agent.html.md
@@ -0,0 +1,226 @@
+---
+layout: "docs"
+page_title: "Commands: agent"
+sidebar_current: "docs-commands-_agent" # Use "_" to break prefix match
+description: >
+ The agent command is the main entrypoint to running a Nomad client
+ or server.
+---
+
+# Command: agent
+
+The agent command is the heart of Nomad: it runs the agent that handles client
+or server functionality, including exposing interfaces for client consumption
+and running jobs.
+
+Due to the power and flexibility of this command, the Nomad agent is documented
+in its own section. See the [Nomad Agent] guide and the [Configuration]
+documentation section for more information on how to use this command and the
+options it has.
+
+## Command-line Options
+
+A subset of the available Nomad agent configuration can optionally be passed in
+via CLI arguments. The `agent` command accepts the following arguments:
+
+- `-alloc-dir=`: Equivalent to the Client [alloc_dir] config
+ option.
+
+- `-acl-enabled`: Equivalent to the ACL [enabled] config option.
+
+- `-acl-replication-token`: Equivalent to the ACL [replication_token] config
+ option.
+
+- `-bind=`: Equivalent to the [bind_addr] config option.
+
+- `-bootstrap-expect=`: Equivalent to the
+ [bootstrap_expect] config option.
+
+- `-client`: Enable client mode on the local agent.
+
+- `-config=`: Specifies the path to a configuration file or a directory of
+ configuration files to load. Can be specified multiple times.
+
+- `-consul-address=`: Equivalent to the [address] config option.
+
+- `-consul-auth=`: Equivalent to the [auth] config option.
+
+- `-consul-auto-advertise`: Equivalent to the [auto_advertise] config option.
+
+- `-consul-ca-file=`: Equivalent to the [ca_file] config option.
+
+- `-consul-cert-file=`: Equivalent to the [cert_file] config option.
+
+- `-consul-checks-use-advertise`: Equivalent to the [checks_use_advertise]
+ config option.
+
+- `-consul-client-auto-join`: Equivalent to the [client_auto_join] config
+ option.
+
+- `-consul-client-service-name=`: Equivalent to the [client_service_name]
+ config option.
+
+- `-consul-client-http-check-name=`: Equivalent to the
+ [client_http_check_name] config option.
+
+- `-consul-key-file=`: Equivalent to the [key_file] config option.
+
+- `-consul-server-service-name=`: Equivalent to the [server_service_name]
+ config option.
+
+- `-consul-server-http-check-name=`: Equivalent to the
+ [server_http_check_name] config option.
+
+- `-consul-server-serf-check-name=`: Equivalent to the
+ [server_serf_check_name] config option.
+
+- `-consul-server-rpc-check-name=`: Equivalent to the
+ [server_rpc_check_name] config option.
+
+- `-consul-server-auto-join`: Equivalent to the [server_auto_join] config
+ option.
+
+- `-consul-ssl`: Equivalent to the [ssl] config option.
+
+- `-consul-token=`: Equivalent to the [token] config option.
+
+- `-consul-verify-ssl`: Equivalent to the [verify_ssl] config option.
+
+- `-data-dir=`: Equivalent to the [data_dir] config option.
+
+- `-dc=`: Equivalent to the [datacenter] config option.
+
+- `-dev`: Start the agent in development mode. This enables a pre-configured
+ dual-role agent (client + server) which is useful for developing or testing
+ Nomad. No other configuration is required to start the agent in this mode,
+ but you may pass an optional comma-separated list of mode configurations:
+
+- `-dev-connect`: Start the agent in development mode, but bind to a public
+ network interface rather than localhost for using Consul Connect. This mode
+ is supported only on Linux as root.
+
+- `-encrypt`: Set the Serf encryption key. See the [Encryption Overview] for
+ more details.
+
+- `-join=`: Address of another agent to join upon starting up. This can
+ be specified multiple times to specify multiple agents to join.
+
+- `-log-level=`: Equivalent to the [log_level] config option.
+
+- `-log-json`: Equivalent to the [log_json] config option.
+
+- `-meta=`: Equivalent to the Client [meta] config option.
+
+- `-network-interface=`: Equivalent to the Client
+ [network_interface] config option.
+
+- `-network-speed=`: Equivalent to the Client
+ [network_speed] config option.
+
+- `-node=`: Equivalent to the [name] config option.
+
+- `-node-class=`: Equivalent to the Client [node_class]
+ config option.
+
+- `-plugin-dir=`: Equivalent to the [plugin_dir] config option.
+
+- `-region=`: Equivalent to the [region] config option.
+
+- `-rejoin`: Equivalent to the [rejoin_after_leave] config option.
+
+- `-retry-interval`: Equivalent to the [retry_interval] config option.
+
+- `-retry-join`: Similar to `-join` but allows retrying a join if the first
+ attempt fails.
+
+ ```sh
+ $ nomad agent -retry-join "127.0.0.1:4648"
+ ```
+
+ `retry-join` can be defined as a command line flag only for servers. Clients
+ can configure `retry-join` only in configuration files.
+
+- `-retry-max`: Similar to the [retry_max] config option.
+
+- `-server`: Enable server mode on the local agent.
+
+- `-servers=`: Equivalent to the Client [servers] config
+ option.
+
+- `-state-dir=`: Equivalent to the Client [state_dir] config
+ option.
+
+- `-vault-enabled`: Whether to enable or disabled Vault integration.
+
+- `-vault-address=`: The address to communicate with Vault.
+
+- `-vault-token=`: The Vault token used to derive tokens. Only needs to
+ be set on Servers. Overrides the Vault token read from the VAULT_TOKEN
+ environment variable.
+
+- `-vault-create-from-role=`: The role name to create tokens for tasks
+ from.
+
+- `-vault-ca-file=`: Path to a PEM-encoded CA cert file used to verify the
+ Vault server SSL certificate.
+
+- `-vault-ca-path=`: Path to a directory of PEM-encoded CA cert files used
+ to verify the Vault server SSL certificate.Whether to enable or disabled Vault
+ integration.
+
+- `vault-cert-file=`: The path to the certificate for Vault communication.
+
+- `vault-key-file=`: The path to the private key for Vault communication.
+
+- `vault-namespace=`: The Vault namespace used for the integration.
+ Required for servers and clients. Overrides the Vault namespace read from the
+ VAULT_NAMESPACE environment variable.
+
+- `vault-tls-skip-verify`: A boolean that determines whether to skip SSL
+ certificate verification.
+
+- `vault-tls-server-name=`: Used to set the SNI host when connecting to
+ Vault over TLS.
+
+[address]: /docs/configuration/consul.html#address
+[alloc_dir]: #alloc_dir
+[auth]: /docs/configuration/consul.html#auth
+[auto_advertise]: /docs/configuration/consul.html#auto_advertise
+[bind_addr]: #bind_addr
+[bootstrap_expect]: #bootstrap_expect
+[ca_file]: /docs/configuration/consul.html#ca_file
+[cert_file]: /docs/configuration/consul.html#cert_file
+[checks_use_advertise]: /docs/configuration/consul.html#checks_use_advertise
+[client_auto_join]: /docs/configuration/consul.html#client_auto_join
+[client_http_check_name]: /docs/configuration/consul.html#client_http_check_name
+[client_service_name]: /docs/configuration/consul.html#client_service_name
+[Configuration]: /docs/configuration/index.html
+[data_dir]: /docs/configuration/index.html#data_dir
+[datacenter]: #datacenter
+[enabled]: /docs/configuration/acl.html#enabled
+[Encryption Overview]: /guides/security/encryption.html
+[key_file]: /docs/configuration/consul.html#key_file
+[log_json]: /docs/configuration/index.html#log_json
+[log_level]: /docs/configuration/index.html#log_level
+[meta]: #meta
+[name]: #name
+[network_interface]: #network_interface
+[network_speed]: #network_speed
+[node_class]: #node_class
+[Nomad Agent]: /guides/install/production/nomad-agent.html
+[plugin_dir]: /docs/configuration/index.html#plugin_dir
+[region]: #region
+[rejoin_after_leave]: #rejoin_after_leave
+[replication_token]: /docs/configuration/acl.html#replication_token
+[retry_interval]: #retry_interval
+[retry_max]: #retry_max
+[server_auto_join]: /docs/configuration/consul.html#server_auto_join
+[server_http_check_name]: /docs/configuration/consul.html#server_http_check_name
+[server_rpc_check_name]: /docs/configuration/consul.html#server_rpc_check_name
+[server_serf_check_name]: /docs/configuration/consul.html#server_serf_check_name
+[server_service_name]: /docs/configuration/consul.html#server_service_name
+[servers]: #servers
+[ssl]: /docs/configuration/consul.html#ssl
+[state_dir]: #state_dir
+[token]: /docs/configuration/consul.html#token
+[verify_ssl]: /docs/configuration/consul.html#verify_ssl
diff --git a/website/source/docs/commands/agent.html.md.erb b/website/source/docs/commands/agent.html.md.erb
deleted file mode 100644
index 524692f8a..000000000
--- a/website/source/docs/commands/agent.html.md.erb
+++ /dev/null
@@ -1,114 +0,0 @@
----
-layout: "docs"
-page_title: "Commands: agent"
-sidebar_current: "docs-commands-_agent" # Use "_" to break prefix match
-description: >
- The agent command is the main entrypoint to running a Nomad client
- or server.
----
-
-# Command: agent
-
-The agent command is the heart of Nomad: it runs the agent that handles client
-or server functionality, including exposing interfaces for client consumption
-and running jobs.
-
-Due to the power and flexibility of this command, the Nomad agent is documented
-in its own section. See the [Nomad Agent](/guides/install/production/nomad-agent.html)
-guide and the [Configuration](/docs/configuration/index.html) documentation section for
-more information on how to use this command and the options it has.
-
-## Command-line Options
-
-A subset of the available Nomad agent configuration can optionally be passed in
-via CLI arguments. The `agent` command accepts the following arguments:
-
-* `-alloc-dir=`: Equivalent to the Client [alloc_dir](#alloc_dir) config
- option.
-* `-acl-enabled`: Equivalent to the ACL [enabled](/docs/configuration/acl.html#enabled) config option.
-* `-acl-replication-token`: Equivalent to the ACL [replication_token](/docs/configuration/acl.html#replication_token) config option.
-* `-bind=`: Equivalent to the [bind_addr](#bind_addr) config option.
-* `-bootstrap-expect=`: Equivalent to the
- [bootstrap_expect](#bootstrap_expect) config option.
-* `-client`: Enable client mode on the local agent.
-* `-config=`: Specifies the path to a configuration file or a directory of
- configuration files to load. Can be specified multiple times.
-* `-consul-address=`: Equivalent to the [address](/docs/configuration/consul.html#address) config option.
-* `-consul-auth=`: Equivalent to the [auth](/docs/configuration/consul.html#auth) config option.
-* `-consul-auto-advertise`: Equivalent to the [auto_advertise](/docs/configuration/consul.html#auto_advertise) config option.
-* `-consul-ca-file=`: Equivalent to the [ca_file](/docs/configuration/consul.html#ca_file) config option.
-* `-consul-cert-file=`: Equivalent to the [cert_file](/docs/configuration/consul.html#cert_file) config option.
-* `-consul-checks-use-advertise`: Equivalent to the [checks_use_advertise](/docs/configuration/consul.html#checks_use_advertise) config option.
-* `-consul-client-auto-join`: Equivalent to the [client_auto_join](/docs/configuration/consul.html#client_auto_join) config option.
-* `-consul-client-service-name=`: Equivalent to the [client_service_name](/docs/configuration/consul.html#client_service_name) config option.
-* `-consul-client-http-check-name=`: Equivalent to the [client_http_check_name](/docs/configuration/consul.html#client_http_check_name) config option.
-* `-consul-key-file=`: Equivalent to the [key_file](/docs/configuration/consul.html#key_file) config option.
-* `-consul-server-service-name=`: Equivalent to the [server_service_name](/docs/configuration/consul.html#server_service_name) config option.
-* `-consul-server-http-check-name=`: Equivalent to the [server_http_check_name](/docs/configuration/consul.html#server_http_check_name) config option.
-* `-consul-server-serf-check-name=`: Equivalent to the [server_serf_check_name](/docs/configuration/consul.html#server_serf_check_name) config option.
-* `-consul-server-rpc-check-name=`: Equivalent to the [server_rpc_check_name](/docs/configuration/consul.html#server_rpc_check_name) config option.
-* `-consul-server-auto-join`: Equivalent to the [server_auto_join](/docs/configuration/consul.html#server_auto_join) config option.
-* `-consul-ssl`: Equivalent to the [ssl](/docs/configuration/consul.html#ssl) config option.
-* `-consul-token=`: Equivalent to the [token](/docs/configuration/consul.html#token) config option.
-* `-consul-verify-ssl`: Equivalent to the [verify_ssl](/docs/configuration/consul.html#verify_ssl) config option.
-* `-data-dir=`: Equivalent to the [data_dir](/docs/configuration/index.html#data_dir) config option.
-* `-dc=`: Equivalent to the [datacenter](#datacenter) config option.
-* `-dev`: Start the agent in development mode. This enables a pre-configured
- dual-role agent (client + server) which is useful for developing or testing
- Nomad. No other configuration is required to start the agent in this mode,
- but you may pass an optional comma-separated list of mode configurations:
-* `-dev-connect`: Start the agent in development mode, but bind to a public
- network interface rather than localhost for using Consul Connect. This mode
- is supported only on Linux as root.
-* `-encrypt`: Set the Serf encryption key. See the [Encryption Overview](/guides/security/encryption.html) for more details.
-* `-join=`: Address of another agent to join upon starting up. This can
- be specified multiple times to specify multiple agents to join.
-* `-log-level=`: Equivalent to the [log_level](/docs/configuration/index.html#log_level) config option.
-* `-log-json`: Equivalent to the [log_json](/docs/configuration/index.html#log_json) config option.
-* `-meta=`: Equivalent to the Client [meta](#meta) config option.
-* `-network-interface=`: Equivalent to the Client
- [network_interface](#network_interface) config option.
-* `-network-speed=`: Equivalent to the Client
- [network_speed](#network_speed) config option.
-* `-node=`: Equivalent to the [name](#name) config option.
-* `-node-class=`: Equivalent to the Client [node_class](#node_class)
- config option.
-* `-plugin-dir=`: Equivalent to the [plugin_dir](/docs/configuration/index.html#plugin_dir) config option.
-* `-region=`: Equivalent to the [region](#region) config option.
-* `-rejoin`: Equivalent to the [rejoin_after_leave](#rejoin_after_leave) config option.
-* `-retry-interval`: Equivalent to the [retry_interval](#retry_interval) config option.
-* `-retry-join`: Similar to `-join` but allows retrying a join if the first attempt fails.
-
- ```sh
- $ nomad agent -retry-join "127.0.0.1:4648"
- ```
-
- `retry-join` can be defined as a command line flag only for servers. Clients
- can configure `retry-join` only in configuration files.
-
-* `-retry-max`: Similar to the [retry_max](#retry_max) config option.
-* `-server`: Enable server mode on the local agent.
-* `-servers=`: Equivalent to the Client [servers](#servers) config
- option.
-* `-state-dir=`: Equivalent to the Client [state_dir](#state_dir) config
- option.
-* `-vault-enabled`: Whether to enable or disabled Vault integration.
-* `-vault-address=`: The address to communicate with Vault.
-* `-vault-token=`: The Vault token used to derive tokens. Only needs to
- be set on Servers. Overrides the Vault token read from the VAULT_TOKEN
- environment variable.
-* `-vault-create-from-role=`: The role name to create tokens for tasks from.
-* `-vault-ca-file=`: Path to a PEM-encoded CA cert file used to verify the
- Vault server SSL certificate.
-* `-vault-ca-path=`: Path to a directory of PEM-encoded CA cert files used
- to verify the Vault server SSL certificate.Whether to enable or disabled Vault
- integration.
-* `vault-cert-file=`: The path to the certificate for Vault communication.
-* `vault-key-file=`: The path to the private key for Vault communication.
-* `vault-namespace=`: The Vault namespace used for the integration.
- Required for servers and clients. Overrides the Vault namespace read from the
- VAULT_NAMESPACE environment variable.
-* `vault-tls-skip-verify`: A boolean that determines whether to skip SSL
- certificate verification.
-* `vault-tls-server-name=`: Used to set the SNI host when connecting to
- Vault over TLS.
diff --git a/website/source/docs/commands/alloc.html.md.erb b/website/source/docs/commands/alloc.html.md
similarity index 59%
rename from website/source/docs/commands/alloc.html.md.erb
rename to website/source/docs/commands/alloc.html.md
index 180f58675..83cf934ff 100644
--- a/website/source/docs/commands/alloc.html.md.erb
+++ b/website/source/docs/commands/alloc.html.md
@@ -7,7 +7,7 @@ description: >
---
# Command: alloc
-
+
The `alloc` command is used to interact with allocations.
## Usage
@@ -17,16 +17,18 @@ Usage: `nomad alloc [options]`
Run `nomad alloc -h` for help on that subcommand. The following
subcommands are available:
-* [`alloc fs`][fs] - Inspect the contents of an allocation directory
-* [`alloc logs`][logs] - Streams the logs of a task
-* [`alloc restart`][restart] - Restart a running allocation or task
-* [`alloc signal`][signal] - Signal a running allocation
-* [`alloc status`][status] - Display allocation status information and metadata
-* [`alloc stop`][stop] - Stop and reschedule a running allocation
+- [`alloc exec`][exec] - Run a command in a running allocation
+- [`alloc fs`][fs] - Inspect the contents of an allocation directory
+- [`alloc logs`][logs] - Streams the logs of a task
+- [`alloc restart`][restart] - Restart a running allocation or task
+- [`alloc signal`][signal] - Signal a running allocation
+- [`alloc status`][status] - Display allocation status information and metadata
+- [`alloc stop`][stop] - Stop and reschedule a running allocation
+[exec]: /docs/commands/alloc/exec.html "Run a command in a running allocation"
[fs]: /docs/commands/alloc/fs.html "Inspect the contents of an allocation directory"
[logs]: /docs/commands/alloc/logs.html "Streams the logs of a task"
[restart]: /docs/commands/alloc/restart.html "Restart a running allocation or task"
-[status]: /docs/commands/alloc/signal.html "Signal a running allocation"
+[signal]: /docs/commands/alloc/signal.html "Signal a running allocation"
[status]: /docs/commands/alloc/status.html "Display allocation status information and metadata"
[stop]: /docs/commands/alloc/stop.html "Stop and reschedule a running allocation"
diff --git a/website/source/docs/commands/alloc/exec.html.md.erb b/website/source/docs/commands/alloc/exec.html.md.erb
index 2668ca0e5..95f4e51cb 100644
--- a/website/source/docs/commands/alloc/exec.html.md.erb
+++ b/website/source/docs/commands/alloc/exec.html.md.erb
@@ -7,17 +7,17 @@ description: >
---
# Command: alloc exec
+
**Alias: `nomad exec`**
The `alloc exec` command runs a command in a running allocation.
## Usage
-```
+```plaintext
nomad alloc exec [options] [...]
```
-
The nomad exec command can be use to run commands inside a running task/allocation.
Use cases are for inspecting container state, debugging a failed application
@@ -34,29 +34,28 @@ the given job will be chosen.
## Exec Options
-* `-task`: Sets the task to exec command in. Defaults to first task.
+- `-task`: Sets the task to exec command in.
-* `-job`: Use a random allocation from the specified job ID.
+- `-job`: Use a random allocation from the specified job ID.
-* `-i`: Pass stdin to the container, defaults to true.
-Pass `-i=false` to disable explicitly.
+- `-i`: Pass stdin to the container, defaults to true. Pass `-i=false` to
+ disable explicitly.
-* `-t`: Allocate a pseudo-tty, defaults to true if stdin is detected to be a tty session.
-Pass `-t=false` to disable explicitly.
-
-* `-e` : Sets the escape character for sessions with a pty
-(default: '~'). The escape character is only recognized at the beginning of a
-line. The escape character followed by a dot ('.') closes the connection.
-Setting the character to 'none' disables any escapes and makes the session fully
-transparent.
+- `-t`: Allocate a pseudo-tty, defaults to true if stdin is detected to be a tty
+ session. Pass `-t=false` to disable explicitly.
+- `-e` : Sets the escape character for sessions with a pty
+ (default: '~'). The escape character is only recognized at the beginning of a
+ line. The escape character followed by a dot ('.') closes the connection.
+ Setting the character to 'none' disables any escapes and makes the session
+ fully transparent.
## Examples
To start an interactive debugging session in a particular alloc, invoke exec
command with your desired shell available inside the task:
-```
+```shell
$ nomad alloc exec eb17e557 /bin/bash
root@eb17e557:/data# # now run any debugging commands inside container
root@eb17e557:/data# # ps -ef
@@ -65,9 +64,10 @@ root@eb17e557:/data# # ps -ef
To run a command and stream results without starting an interactive shell, you
can pass the command and its arguments to exec directly:
-```
+```shell
$ # run commands without starting an interactive session
$ nomad alloc exec eb17e557 cat /etc/resolv.conf
+...
```
When passing command arguments to be evaluated in task, you may need to ensure
@@ -75,14 +75,15 @@ that your host shell doesn't interpolate values before invoking `exec` command.
For example, the following command would return the environment variable on
operator shell rather than task containers:
-```
+```shell
$ nomad alloc exec eb17e557 echo $NOMAD_ALLOC_ID # wrong
+...
```
Here, we must start a shell in task to interpolate `$NOMAD_ALLOC_ID`, and quote
command or use the [heredoc syntax][heredoc]
-```
+```shell
$ # by quoting argument
$ nomad alloc exec eb17e557 /bin/sh -c 'echo $NOMAD_ALLOC_ID'
eb17e557-443e-4c51-c049-5bba7a9850bc
@@ -97,38 +98,42 @@ eb17e557-443e-4c51-c049-5bba7a9850bc
This technique applies when aiming to run a shell pipeline without streaming
intermediate command output across the network:
-```
+```shell
$ # e.g. find top appearing lines in some output
$ nomad alloc exec eb17e557 /bin/sh -c 'cat /output | sort | uniq -c | sort -rn | head -n 5'
+...
```
-[heredoc]: http://tldp.org/LDP/abs/html/here-docs.html
-
## Using Job ID instead of Allocation ID
Setting the `-job` flag causes a random allocation of the specified job to be
selected.
-```
+```plaintext
nomad alloc exec -job [...]
```
-
Choosing a specific allocation is useful for debugging issues with a specific
instance of a service. For other operations using the `-job` flag may be more
convenient than looking up an allocation ID to use.
## Disabling remote execution
-`alloc exec` is enabled by default to aid with debugging. Operators can disable the feature by setting [`disable_remote_exec` client config option][disable_remote_exec_flag] on all clients, or a subset of clients that run sensitive workloads.
-
-[disable_remote_exec_flag]: /docs/configuration/client.html#disable_remote_exec
+`alloc exec` is enabled by default to aid with debugging. Operators can disable
+the feature by setting [`disable_remote_exec` client config
+option][disable_remote_exec_flag] on all clients, or a subset of clients that
+run sensitive workloads.
## Exec targeting a specific task
-When trying to `alloc exec` for a job that has more than one task associated with it, you may want to target a specific task.
+When trying to `alloc exec` for a job that has more than one task associated
+with it, you may want to target a specific task.
-```
+```shell
# open a shell session in one of your allocation's tasks
$ nomad alloc exec -i -t -task mytask a1827f93 /bin/bash
+a1827f93$
```
+
+[heredoc]: http://tldp.org/LDP/abs/html/here-docs.html
+[disable_remote_exec_flag]: /docs/configuration/client.html#disable_remote_exec
diff --git a/website/source/docs/commands/alloc/fs.html.md.erb b/website/source/docs/commands/alloc/fs.html.md.erb
index 2cf1844f8..a0fa62a62 100644
--- a/website/source/docs/commands/alloc/fs.html.md.erb
+++ b/website/source/docs/commands/alloc/fs.html.md.erb
@@ -7,30 +7,34 @@ description: >
---
# Command: alloc fs
+
**Alias: `nomad fs`**
The `alloc fs` command allows a user to navigate an allocation directory on a Nomad
client. The following functionalities are available - `cat`, `tail`, `ls` and
`stat`.
-* `cat`: If the target path is a file, Nomad will `cat` the file.
-* `tail`: If the target path is a file and `-tail` flag is specified, Nomad will
- `tail` the file.
-* `ls`: If the target path is a directory, Nomad displays the name of a file and
- directories and their associated information.
-* `stat`: If the `-stat` flag is used, Nomad will display information about a
- file.
+- `cat`: If the target path is a file, Nomad will `cat` the file.
+
+- `tail`: If the target path is a file and `-tail` flag is specified, Nomad will
+ `tail` the file.
+
+- `ls`: If the target path is a directory, Nomad displays the name of a file and
+ directories and their associated information.
+
+- `stat`: If the `-stat` flag is used, Nomad will display information about a
+ file.
## Usage
-```
+```plaintext
nomad alloc fs [options]
```
-This command accepts a single allocation ID (unless the `-job` flag is specified,
-in which case an allocation is chosen from the given job) and a path. The path is
-relative to the root of the allocation directory. The path is optional and it
-defaults to `/` of the allocation directory.
+This command accepts a single allocation ID (unless the `-job` flag is
+specified, in which case an allocation is chosen from the given job) and a path.
+The path is relative to the root of the allocation directory. The path is
+optional and it defaults to `/` of the allocation directory.
## General Options
@@ -38,30 +42,30 @@ defaults to `/` of the allocation directory.
## Fs Options
-* `-H`: Machine friendly output.
+- `-H`: Machine friendly output.
-* `-verbose`: Display verbose output.
+- `-verbose`: Display verbose output.
-* `-job`: Use a random allocation from the specified job, preferring a running
-allocation.
+- `-job`: Use a random allocation from the specified job, preferring a running
+ allocation.
-* `-stat`: Show stat information instead of displaying the file, or listing the
-directory.
+- `-stat`: Show stat information instead of displaying the file, or listing the
+ directory.
-* `-f`: Causes the output to not stop when the end of the file is reached, but
-rather to wait for additional output.
+- `-f`: Causes the output to not stop when the end of the file is reached, but
+ rather to wait for additional output.
-* `-tail`: Show the files contents with offsets relative to the end of the file.
-If no offset is given, -n is defaulted to 10.
+- `-tail`: Show the files contents with offsets relative to the end of the file.
+ If no offset is given, -n is defaulted to 10.
-* `-n`: Sets the tail location in best-efforted number of lines relative to the
-end of the file.
+- `-n`: Sets the tail location in best-efforted number of lines relative to the
+ end of the file.
-* `-c`: Sets the tail location in number of bytes relative to the end of the file.
+- `-c`: Sets the tail location in number of bytes relative to the end of the file.
## Examples
-```
+```shell
$ nomad alloc fs eb17e557
Mode Size Modified Time Name
drwxrwxr-x 4096 28 Jan 16 05:39 UTC alloc/
@@ -98,10 +102,9 @@ selected. Nomad will prefer to select a running allocation ID for the job, but
if no running allocations for the job are found, Nomad will use a dead
allocation.
-```
+```plaintext
nomad alloc fs -job
```
-
-This can be useful for debugging a job that has multiple allocations, and it's
-not really required to use a specific allocation ID.
+This can be useful for debugging a job that has multiple allocations, and it is
+not required to observe a specific allocation.
diff --git a/website/source/docs/commands/alloc/logs.html.md.erb b/website/source/docs/commands/alloc/logs.html.md.erb
index 91b38c86c..b7e2234ee 100644
--- a/website/source/docs/commands/alloc/logs.html.md.erb
+++ b/website/source/docs/commands/alloc/logs.html.md.erb
@@ -7,13 +7,14 @@ description: >
---
# Command: alloc logs
+
**Alias: `nomad logs`**
The `alloc logs` command displays the log of a given task.
## Usage
-```
+```plaintext
nomad alloc logs [options]
```
@@ -21,34 +22,35 @@ This command streams the logs of the given task in the allocation. If the
allocation is only running a single task, the task name can be omitted.
Optionally, the `-job` option may be used in which case a random allocation from
the given job will be chosen.
-#
+
## General Options
<%= partial "docs/commands/_general_options" %>
## Logs Options
-* `-stderr`: Display stderr logs.
+- `-stderr`: Display stderr logs.
-* `-verbose`: Display verbose output.
+- `-verbose`: Display verbose output.
-* `-job`: Use a random allocation from the specified job, preferring a running
-allocation.
+- `-job`: Use a random allocation from the specified job, preferring a running
+ allocation.
-* `-f`: Causes the output to not stop when the end of the logs are reached, but
-rather to wait for additional output.
+- `-f`: Causes the output to not stop when the end of the logs are reached, but
+ rather to wait for additional output.
-* `-tail`: Show the logs contents with offsets relative to the end of the logs.
-If no offset is given, -n is defaulted to 10.
+- `-tail`: Show the logs contents with offsets relative to the end of the logs.
+ If no offset is given, -n is defaulted to 10.
-* `-n`: Sets the tail location in best-efforted number of lines relative to the
-end of the logs.
+- `-n`: Sets the tail location in best-efforted number of lines relative to the
+ end of the logs.
-* `-c`: Sets the tail location in number of bytes relative to the end of the logs.
+- `-c`: Sets the tail location in number of bytes relative to the end of the
+ logs.
## Examples
-```
+```shell
$ nomad alloc logs eb17e557 redis
foobar
baz
@@ -80,11 +82,10 @@ selected. Nomad will prefer to select a running allocation ID for the job, but
if no running allocations for the job are found, Nomad will use a dead
allocation.
-```
+```plaintext
nomad alloc logs -job
```
-
Choosing a specific allocation is useful for debugging issues with a specific
instance of a service. For other operations using the `-job` flag may be more
convenient than looking up an allocation ID to use.
diff --git a/website/source/docs/commands/alloc/restart.html.md.erb b/website/source/docs/commands/alloc/restart.html.md.erb
index 4cbd05193..1546eba44 100644
--- a/website/source/docs/commands/alloc/restart.html.md.erb
+++ b/website/source/docs/commands/alloc/restart.html.md.erb
@@ -13,7 +13,7 @@ an entire allocation or individual task.
## Usage
-```
+```plaintext
nomad alloc restart [options]
```
@@ -27,11 +27,11 @@ is optional and if omitted every task in the allocation will be restarted.
## Restart Options
-* `-verbose`: Display verbose output.
+- `-verbose`: Display verbose output.
## Examples
-```
+```shell
$ nomad alloc restart eb17e557
$ nomad alloc restart eb17e557 foo
@@ -39,4 +39,3 @@ Could not find task named: foo, found:
* test
```
-
diff --git a/website/source/docs/commands/alloc/signal.html.md.erb b/website/source/docs/commands/alloc/signal.html.md.erb
index fcc2bd141..76459ccf5 100644
--- a/website/source/docs/commands/alloc/signal.html.md.erb
+++ b/website/source/docs/commands/alloc/signal.html.md.erb
@@ -13,7 +13,7 @@ an entire allocation or individual task.
## Usage
-```
+```plaintext
nomad alloc signal [options]
```
@@ -27,13 +27,12 @@ is optional and if omitted every task in the allocation will be signaled.
## Signal Options
-* `-s`: Signal to send to the tasks. Valid options depend on the driver.
-
-* `-verbose`: Display verbose output.
+- `-s`: Signal to send to the tasks. Valid options depend on the driver.
+- `-verbose`: Display verbose output.
## Examples
-```
+```shell
$ nomad alloc signal eb17e557
$ nomad alloc signal eb17e557 foo
@@ -41,4 +40,3 @@ Could not find task named: foo, found:
* test
```
-
diff --git a/website/source/docs/commands/alloc/status.html.md.erb b/website/source/docs/commands/alloc/status.html.md.erb
index 6432d96ba..ba847069d 100644
--- a/website/source/docs/commands/alloc/status.html.md.erb
+++ b/website/source/docs/commands/alloc/status.html.md.erb
@@ -11,13 +11,13 @@ description: >
The `alloc status` command displays status information and metadata about an
existing allocation and its tasks. It can be useful while debugging to reveal
the underlying reasons for scheduling decisions or failures, as well as the
-current state of its tasks. As of Nomad 0.7.1, alloc status also shows allocation
-modification time in addition to create time. As of Nomad 0.8, alloc status shows
-information about reschedule attempts.
+current state of its tasks. As of Nomad 0.7.1, alloc status also shows
+allocation modification time in addition to create time. As of Nomad 0.8, alloc
+status shows information about reschedule attempts.
## Usage
-```
+```plaintext
nomad alloc status [options]
```
@@ -31,16 +31,16 @@ allocations and information will be displayed.
## Alloc Status Options
-* `-short`: Display short output. Shows only the most recent task event.
-* `-verbose`: Show full information.
-* `-json` : Output the allocation in its JSON format.
-* `-t` : Format and display the allocation using a Go template.
+- `-short`: Display short output. Shows only the most recent task event.
+- `-verbose`: Show full information.
+- `-json` : Output the allocation in its JSON format.
+- `-t` : Format and display the allocation using a Go template.
## Examples
Short status of an alloc:
-```
+```shell
$ nomad alloc status --short 0af996ed
ID = 0af996ed
Eval ID = be9bde98
@@ -64,7 +64,7 @@ web running Started 07/25/17 16:12:49 UTC
Full status of an alloc, which shows one of the tasks dying and then being restarted:
-```
+```shell
$ nomad alloc status 0af996ed
ID = 0af996ed
Eval ID = be9bde98
@@ -119,7 +119,7 @@ Recent Events:
Verbose status can also be accessed:
-```
+```shell
$ nomad alloc status -verbose 0af996ed
ID = 0af996ed-aff4-8ddb-a566-e55ebf8969c9
Eval ID = be9bde98-0490-1beb-ced0-012d10ddf22e
diff --git a/website/source/docs/commands/alloc/stop.html.md.erb b/website/source/docs/commands/alloc/stop.html.md.erb
index eaf018698..068816e7b 100644
--- a/website/source/docs/commands/alloc/stop.html.md.erb
+++ b/website/source/docs/commands/alloc/stop.html.md.erb
@@ -13,7 +13,7 @@ entire allocation or individual task.
## Usage
-```
+```plaintext
nomad alloc stop [options]
```
@@ -32,16 +32,16 @@ down. It is safe to exit the monitor early with ctrl-c.
## Stop Options
-* `-detach`: Return immediately instead of entering monitor mode. After the
+- `-detach`: Return immediately instead of entering monitor mode. After the
stop command is submitted, a new evaluation ID is printed to the
screen, which can be used to examine the rescheduling evaluation using the
- [eval status](/docs/commands/eval-status.html) command.
+ [eval status] command.
-* `-verbose`: Display verbose output.
+- `-verbose`: Display verbose output.
## Examples
-```
+```shell
$ nomad alloc stop c1488bb5
==> Monitoring evaluation "26172081"
Evaluation triggered by job "example"
@@ -54,3 +54,4 @@ $ nomad alloc stop -detach eb17e557
8a91f0f3-9d6b-ac83-479a-5aa186ab7795
```
+[eval status]: /docs/commands/eval-status.html
diff --git a/website/source/docs/commands/deployment.html.md.erb b/website/source/docs/commands/deployment.html.md
similarity index 72%
rename from website/source/docs/commands/deployment.html.md.erb
rename to website/source/docs/commands/deployment.html.md
index dd0abb502..f39edcc78 100644
--- a/website/source/docs/commands/deployment.html.md.erb
+++ b/website/source/docs/commands/deployment.html.md
@@ -7,7 +7,7 @@ description: >
---
# Command: deployment
-
+
The `deployment` command is used to interact with deployments.
## Usage
@@ -17,12 +17,12 @@ Usage: `nomad deployment [options]`
Run `nomad deployment -h` for help on that subcommand. The following
subcommands are available:
-* [`deployment fail`][fail] - Manually fail a deployment
-* [`deployment list`][list] - List all deployments
-* [`deployment pause`][pause] - Pause a deployment
-* [`deployment promote`][promote] - Promote canaries in a deployment
-* [`deployment resume`][resume] - Resume a paused deployment
-* [`deployment status`][status] - Display the status of a deployment
+- [`deployment fail`][fail] - Manually fail a deployment
+- [`deployment list`][list] - List all deployments
+- [`deployment pause`][pause] - Pause a deployment
+- [`deployment promote`][promote] - Promote canaries in a deployment
+- [`deployment resume`][resume] - Resume a paused deployment
+- [`deployment status`][status] - Display the status of a deployment
[fail]: /docs/commands/deployment/fail.html "Manually fail a deployment"
[list]: /docs/commands/deployment/list.html "List all deployments"
diff --git a/website/source/docs/commands/deployment/fail.html.md.erb b/website/source/docs/commands/deployment/fail.html.md.erb
index 7b447f9f5..0984646df 100644
--- a/website/source/docs/commands/deployment/fail.html.md.erb
+++ b/website/source/docs/commands/deployment/fail.html.md.erb
@@ -15,12 +15,12 @@ roll back to a stable version.
## Usage
-```
+```plaintext
nomad deployment fail [options]
```
The `deployment fail` command requires a single argument, a deployment ID or
-prefix.
+prefix.
## General Options
@@ -28,17 +28,17 @@ prefix.
## Fail Options
-* `-detach`: Return immediately instead of monitoring. A new evaluation ID
+- `-detach`: Return immediately instead of monitoring. A new evaluation ID
will be output, which can be used to examine the evaluation using the
- [eval status](/docs/commands/eval-status.html) command.
+ [eval status] command.
-* `-verbose`: Show full information.
+- `-verbose`: Show full information.
## Examples
Manually mark an ongoing deployment as failed:
-```
+```shell
$ nomad deployment fail 8990cfbc
Deployment "8990cfbc-28c0-cb28-ca31-856cf691b987" failed
@@ -59,3 +59,5 @@ Deployed
Task Group Desired Placed Healthy Unhealthy
cache 3 2 1 0
```
+
+[eval status]: /docs/commands/eval-status.html
diff --git a/website/source/docs/commands/deployment/list.html.md.erb b/website/source/docs/commands/deployment/list.html.md.erb
index 683a2d19d..775a506a5 100644
--- a/website/source/docs/commands/deployment/list.html.md.erb
+++ b/website/source/docs/commands/deployment/list.html.md.erb
@@ -12,7 +12,7 @@ The `deployment list` command is used list all deployments.
## Usage
-```
+```plaintext
nomad deployment list [options]
```
@@ -24,17 +24,15 @@ The `deployment list` command requires no arguments.
## List Options
-* `-json` : Output the deployments in their JSON format.
-
-* `-t` : Format and display the deployments using a Go template.
-
-* `-verbose`: Show full information.
+- `-json` : Output the deployments in their JSON format.
+- `-t` : Format and display the deployments using a Go template.
+- `-verbose`: Show full information.
## Examples
List all tracked deployments:
-```
+```shell
$ nomad deployment list
ID Job ID Job Version Status Description
8990cfbc example 2 failed Deployment marked as failed
diff --git a/website/source/docs/commands/deployment/pause.html.md.erb b/website/source/docs/commands/deployment/pause.html.md.erb
index f218b924e..0aa60f0a8 100644
--- a/website/source/docs/commands/deployment/pause.html.md.erb
+++ b/website/source/docs/commands/deployment/pause.html.md.erb
@@ -15,12 +15,12 @@ deployment.
## Usage
-```
+```plaintext
nomad deployment pause [options]
```
The `deployment pause` command requires a single argument, a deployment ID or
-prefix.
+prefix.
## General Options
@@ -28,13 +28,13 @@ prefix.
## Pause Options
-* `-verbose`: Show full information.
+- `-verbose`: Show full information.
## Examples
Manually pause a deployment:
-```
+```shell
$ nomad deployment pause 2f14ba55
Deployment "2f14ba55-acfb-cb31-821c-facf1b9b0830" paused
```
diff --git a/website/source/docs/commands/deployment/promote.html.md.erb b/website/source/docs/commands/deployment/promote.html.md.erb
index d3d42b316..3efcd120a 100644
--- a/website/source/docs/commands/deployment/promote.html.md.erb
+++ b/website/source/docs/commands/deployment/promote.html.md.erb
@@ -14,12 +14,12 @@ and those canaries have been deemed healthy. When a task group is promoted, the
rolling upgrade of the remaining allocations is unblocked. If the canaries are
found to be unhealthy, the deployment may either be failed using the "nomad
deployment fail" command, the job can be failed forward by submitting a new
-version or failed backwards by reverting to an older version using the [`job
-revert`](/docs/commands/job/revert.html) command.
+version or failed backwards by reverting to an older version using the
+[`job revert`] command.
## Usage
-```
+```plaintext
nomad deployment promote [options]
```
@@ -34,21 +34,21 @@ select particular groups to promote.
## Promote Options
-* `-group`: Group may be specified many times and is used to promote that
+- `-group`: Group may be specified many times and is used to promote that
particular group. If no specific groups are specified, all groups are
promoted.
-* `-detach`: Return immediately instead of monitoring. A new evaluation ID
+- `-detach`: Return immediately instead of monitoring. A new evaluation ID
will be output, which can be used to examine the evaluation using the
- [eval status](/docs/commands/eval-status.html) command
+ [eval status] command
-* `-verbose`: Show full information.
+- `-verbose`: Show full information.
## Examples
Promote canaries in all groups:
-```
+```shell
# Have two task groups waiting for promotion.
$ nomad status example
ID = example
@@ -136,7 +136,7 @@ f2409f7d a8dcce2d web 0 stop complete 07/25/17 18:31:34 UT
Promote canaries in a particular group:
-```
+```shell
# Have two task groups waiting for promotion.
$ nomad status example
ID = example
@@ -219,3 +219,6 @@ cee52788 6240eed6 web 0 run running 07/25/17 18:37:08 UT
ee8f972e 6240eed6 web 0 run running 07/25/17 18:37:08 UTC
0ee7800c 6240eed6 cache 0 stop complete 07/25/17 18:37:08 UTC
```
+
+[`job revert`]: /docs/commands/job/revert.html
+[eval status]: /docs/commands/eval-status.html
diff --git a/website/source/docs/commands/deployment/resume.html.md.erb b/website/source/docs/commands/deployment/resume.html.md.erb
index db59c4f5a..347f5d7dd 100644
--- a/website/source/docs/commands/deployment/resume.html.md.erb
+++ b/website/source/docs/commands/deployment/resume.html.md.erb
@@ -14,12 +14,12 @@ rolling deployment.
## Usage
-```
+```plaintext
nomad deployment resume [options]
```
The `deployment resume` command requires a single argument, a deployment ID or
-prefix.
+prefix.
## General Options
@@ -27,17 +27,17 @@ prefix.
## Resume Options
-* `-detach`: Return immediately instead of monitoring. A new evaluation ID
+- `-detach`: Return immediately instead of monitoring. A new evaluation ID
will be output, which can be used to examine the evaluation using the
- [eval status](/docs/commands/eval-status.html) command
+ [eval status] command
-* `-verbose`: Show full information.
+- `-verbose`: Show full information.
## Examples
Manually resume a deployment:
-```
+```shell
$ nomad deployment resume c848972e
Deployment "c848972e-dcd3-7354-e0d2-39d86642cdb1" resumed
@@ -50,3 +50,5 @@ Deployment "c848972e-dcd3-7354-e0d2-39d86642cdb1" resumed
Evaluation status changed: "pending" -> "complete"
==> Evaluation "5e266d42" finished with status "complete"
```
+
+[eval status]: /docs/commands/eval-status.html
diff --git a/website/source/docs/commands/deployment/status.html.md.erb b/website/source/docs/commands/deployment/status.html.md.erb
index 5990d5dc6..9f362f79d 100644
--- a/website/source/docs/commands/deployment/status.html.md.erb
+++ b/website/source/docs/commands/deployment/status.html.md.erb
@@ -10,16 +10,16 @@ description: >
The `deployment status` command is used to display the status of a deployment.
The status will display the number of desired changes as well as the currently
-applied changes.
+applied changes.
## Usage
-```
+```plaintext
nomad deployment status [options]
```
The `deployment status` command requires a single argument, a deployment ID or
-prefix.
+prefix.
## General Options
@@ -27,17 +27,15 @@ prefix.
## Status Options
-* `-json` : Output the deployment in its JSON format.
-
-* `-t` : Format and display the deployment using a Go template.
-
-* `-verbose`: Show full information.
+- `-json` : Output the deployment in its JSON format.
+- `-t` : Format and display the deployment using a Go template.
+- `-verbose`: Show full information.
## Examples
Inspect the status of a complete deployment:
-```
+```shell
$ nomad deployment status 06ca68a2
ID = 06ca68a2
Job ID = example
@@ -53,7 +51,7 @@ web 2 2 2 0
Inspect the status of a deployment that is waiting for canary promotion:
-```
+```shell
$ nomad deployment status 0b
ID = 0b23b149
Job ID = example
diff --git a/website/source/docs/commands/eval-status.html.md.erb b/website/source/docs/commands/eval-status.html.md.erb
index b28ee5ab3..87463ccff 100644
--- a/website/source/docs/commands/eval-status.html.md.erb
+++ b/website/source/docs/commands/eval-status.html.md.erb
@@ -20,7 +20,7 @@ evaluation reaches a terminal state.
## Usage
-```
+```plaintext
nomad eval status [options]
```
@@ -44,19 +44,16 @@ indicated by exit code 1.
## Eval Status Options
-* `-monitor`: Monitor an outstanding evaluation
-
-* `-verbose`: Show full information.
-
-* `-json` : Output the evaluation in its JSON format.
-
-* `-t` : Format and display evaluation using a Go template.
+- `-monitor`: Monitor an outstanding evaluation
+- `-verbose`: Show full information.
+- `-json` : Output the evaluation in its JSON format.
+- `-t` : Format and display evaluation using a Go template.
## Examples
Show the status of an evaluation that has placement failures
-```
+```shell
$ nomad eval status 2ae0e6a5
ID = 2ae0e6a5
Status = complete
@@ -78,7 +75,7 @@ Evaluation "67493a64" waiting for additional capacity to place remainder
Monitor an existing evaluation
-```
+```shell
$ nomad eval status -monitor 8262bc83
==> Monitoring evaluation "8262bc83"
Allocation "bd6bd0de" created: node "6f299da5", group "group1"
diff --git a/website/source/docs/commands/index.html.md.erb b/website/source/docs/commands/index.html.md
similarity index 95%
rename from website/source/docs/commands/index.html.md.erb
rename to website/source/docs/commands/index.html.md
index b25db2bca..6732f952f 100644
--- a/website/source/docs/commands/index.html.md.erb
+++ b/website/source/docs/commands/index.html.md
@@ -10,7 +10,7 @@ description: >
# Nomad Commands (CLI)
Nomad is controlled via a very easy to use command-line interface (CLI).
-Nomad is only a single command-line application: `nomad`, which
+Nomad is only a single command-line application: `nomad`, which
takes a subcommand such as "agent" or "status". The complete list of
subcommands is in the navigation to the left.
@@ -25,17 +25,17 @@ with the `-h` argument.
Each command has been conveniently documented on this website. Links to each
command can be found on the left.
-### Autocomplete
+## Autocomplete
Nomad's CLI supports command autocomplete. Autocomplete can be installed or
uninstalled by running the following on bash or zsh shells:
-```
+```shell
$ nomad -autocomplete-install
$ nomad -autocomplete-uninstall
```
-### Command Contexts
+## Command Contexts
Nomad's CLI commands have implied contexts in their naming convention. Because
the CLI is most commonly used to manipulate or query jobs, you can assume that
@@ -55,7 +55,7 @@ local machine does not have a running Nomad agent. To do so, set the
`NOMAD_ADDR` environment variable or use the `-address=` flag when running
commands.
-```
+```shell
$ NOMAD_ADDR=https://remote-address:4646 nomad status
$ nomad status -address=https://remote-address:4646
```
diff --git a/website/source/docs/commands/job.html.md.erb b/website/source/docs/commands/job.html.md
similarity index 68%
rename from website/source/docs/commands/job.html.md.erb
rename to website/source/docs/commands/job.html.md
index acaccf7a1..462b7e160 100644
--- a/website/source/docs/commands/job.html.md.erb
+++ b/website/source/docs/commands/job.html.md
@@ -7,7 +7,7 @@ description: >
---
# Command: job
-
+
The `job` command is used to interact with jobs.
## Usage
@@ -17,13 +17,13 @@ Usage: `nomad job [options]`
Run `nomad job -h` for help on that subcommand. The following
subcommands are available:
-* [`job deployments`][deployments] - List deployments for a job
-* [`job dispatch`][dispatch] - Dispatch an instance of a parameterized job
-* [`job eval`][eval] - Force an evaluation for a job
-* [`job history`][history] - Display all tracked versions of a job
-* [`job promote`][promote] - Promote a job's canaries
-* [`job revert`][revert] - Revert to a prior version of the job
-* [`job status`][status] - Display status information about a job
+- [`job deployments`][deployments] - List deployments for a job
+- [`job dispatch`][dispatch] - Dispatch an instance of a parameterized job
+- [`job eval`][eval] - Force an evaluation for a job
+- [`job history`][history] - Display all tracked versions of a job
+- [`job promote`][promote] - Promote a job's canaries
+- [`job revert`][revert] - Revert to a prior version of the job
+- [`job status`][status] - Display status information about a job
[deployments]: /docs/commands/job/deployments.html "List deployments for a job"
[dispatch]: /docs/commands/job/dispatch.html "Dispatch an instance of a parameterized job"
diff --git a/website/source/docs/commands/job/deployments.html.md.erb b/website/source/docs/commands/job/deployments.html.md.erb
index 96e3264a3..c2919e31a 100644
--- a/website/source/docs/commands/job/deployments.html.md.erb
+++ b/website/source/docs/commands/job/deployments.html.md.erb
@@ -13,12 +13,12 @@ particular job.
## Usage
-```
+```plaintext
nomad job deployments [options]
```
-The `job deployments` command requires a single argument, the job ID or an ID prefix
-of a job to display the list of deployments for.
+The `job deployments` command requires a single argument, the job ID or an ID
+prefix of a job to display the list of deployments for.
## General Options
@@ -26,25 +26,24 @@ of a job to display the list of deployments for.
## Deployment Options
-* `-latest`: Display the latest deployment only.
+- `-latest`: Display the latest deployment only.
-* `-json` : Output the deployment in its JSON format.
+- `-json` : Output the deployment in its JSON format.
-* `-t` : Format and display the deployment using a Go template.
+- `-t` : Format and display the deployment using a Go template.
-* `-verbose`: Show full information.
+- `-verbose`: Show full information.
-* `-all`: Display all deployments matching the job ID, even those from an
- older instance of the job.
+- `-all`: Display all deployments matching the job ID, even those from an
+ older instance of the job.
## Examples
List the deployment for a particular job:
-```
+```shell
$ nomad job deployments example
ID Job ID Job Version Status Description
0b23b149 example 1 running Deployment is running but requires manual promotion
06ca68a2 example 0 successful Deployment completed successfully
```
-
diff --git a/website/source/docs/commands/job/dispatch.html.md.erb b/website/source/docs/commands/job/dispatch.html.md.erb
index dcd8410f1..0a16db2fa 100644
--- a/website/source/docs/commands/job/dispatch.html.md.erb
+++ b/website/source/docs/commands/job/dispatch.html.md.erb
@@ -20,7 +20,7 @@ programming languages.
## Usage
-```
+```plaintext
nomad job dispatch [options] [input source]
```
@@ -46,24 +46,24 @@ client connection issues or internal errors, are indicated by exit code 1.
## Dispatch Options
-* `-meta`: Meta takes a key/value pair separated by "=". The metadata key will
+- `-meta`: Meta takes a key/value pair separated by "=". The metadata key will
be merged into the job's metadata. The job may define a default value for the
key which is overridden when dispatching. The flag can be provided more than
once to inject multiple metadata key/value pairs. Arbitrary keys are not
allowed. The parameterized job must allow the key to be merged.
-* `-detach`: Return immediately instead of monitoring. A new evaluation ID
+- `-detach`: Return immediately instead of monitoring. A new evaluation ID
will be output, which can be used to examine the evaluation using the
- [eval status](/docs/commands/eval-status.html) command
+ [eval status] command
-* `-verbose`: Show full information.
+- `-verbose`: Show full information.
## Examples
Dispatch against a parameterized job with the ID "video-encode" and
passing in a configuration payload via stdin:
-```
+```shell
$ cat << EOF | nomad job dispatch video-encode -
{
"s3-input": "https://video-bucket.s3-us-west-1.amazonaws.com/cb31dabb1",
@@ -86,7 +86,7 @@ Evaluation ID = 31199841
Dispatch against a parameterized job with the ID "video-encode" and
passing in a configuration payload via a file:
-```
+```shell
$ nomad job dispatch video-encode video-config.json
Dispatched Job ID = video-encode/dispatch-1485379325-cb38d00d
Evaluation ID = 31199841
@@ -101,10 +101,11 @@ Evaluation ID = 31199841
Dispatch against a parameterized job with the ID "video-encode" using the detach
flag:
-```
+```shell
$ nomad job dispatch -detach video-encode video-config.json
Dispatched Job ID = example/dispatch-1485380684-c37b3dba
Evaluation ID = d9034c4e
```
+[eval status]: /docs/commands/eval-status.html
[parameterized job]: /docs/job-specification/parameterized.html "Nomad parameterized Job Specification"
diff --git a/website/source/docs/commands/job/eval.html.md.erb b/website/source/docs/commands/job/eval.html.md.erb
index 8ede561c1..ae1c37adc 100644
--- a/website/source/docs/commands/job/eval.html.md.erb
+++ b/website/source/docs/commands/job/eval.html.md.erb
@@ -8,17 +8,18 @@ description: >
# Command: job eval
-The `job eval` command is used to force an evaluation of a job, given the job ID.
+The `job eval` command is used to force an evaluation of a job, given the job
+ID.
## Usage
-```
+```plaintext
nomad job eval [options]
```
-The `job eval` command requires a single argument, specifying the job ID to evaluate.
-If there is an exact match based on the provided job ID, then
-the job will be evaluated, forcing a scheduler run.
+The `job eval` command requires a single argument, specifying the job ID to
+evaluate. If there is an exact match based on the provided job ID, then the job
+will be evaluated, forcing a scheduler run.
## General Options
@@ -26,22 +27,23 @@ the job will be evaluated, forcing a scheduler run.
## Eval Options
-* `-force-reschedule`: `force-reschedule` is used to force placement of failed allocations.
-If this is set, failed allocations that are past their reschedule limit, and those that are
-scheduled to be replaced at a future time are placed immediately. This option only places failed
-allocations if the task group has rescheduling enabled.
+- `-force-reschedule`: `force-reschedule` is used to force placement of failed
+ allocations. If this is set, failed allocations that are past their reschedule
+ limit, and those that are scheduled to be replaced at a future time are placed
+ immediately. This option only places failed allocations if the task group has
+ rescheduling enabled.
-* `-detach`: Return immediately instead of monitoring. A new evaluation ID
+- `-detach`: Return immediately instead of monitoring. A new evaluation ID
will be output, which can be used to examine the evaluation using the
- [eval status](/docs/commands/eval-status.html) command
+ [eval status] command.
-* `-verbose`: Show full information.
+- `-verbose`: Show full information.
## Examples
Evaluate the job with ID "job1":
-```
+```shell
$ nomad job eval job1
==> Monitoring evaluation "0f3bc0f3"
Evaluation triggered by job "test"
@@ -52,18 +54,20 @@ $ nomad job eval job1
Evaluate the job with ID "job1" and return immediately:
-```
+```shell
$ nomad job eval -detach job1
Created eval ID: "4947e728"
```
Evaluate the job with ID "job1", and reschedule any eligible failed allocations:
-```
+```shell
$ nomad job eval -force-reschedule job1
==> Monitoring evaluation "0f3bc0f3"
Evaluation triggered by job "test"
Evaluation within deployment: "51baf5c8"
Evaluation status changed: "pending" -> "complete"
==> Evaluation "0f3bc0f3" finished with status "complete"
-```
\ No newline at end of file
+```
+
+[eval status]: /docs/commands/eval-status.html
diff --git a/website/source/docs/commands/job/history.html.md.erb b/website/source/docs/commands/job/history.html.md.erb
index 1ff827d21..4bf68561b 100644
--- a/website/source/docs/commands/job/history.html.md.erb
+++ b/website/source/docs/commands/job/history.html.md.erb
@@ -15,7 +15,7 @@ versions to revert to.
## Usage
-```
+```plaintext
nomad job history [options]
```
@@ -28,21 +28,17 @@ of a job to display the history for.
## History Options
-* `-p`: Display the differences between each job and its predecessor.
-
-* `-full`: Display the full job definition for each version.
-
-* `-version`: Display only the history for the given version.
-
-* `-json` : Output the job versions in its JSON format.
-
-* `-t` : Format and display the job versions using a Go template.
+- `-p`: Display the differences between each job and its predecessor.
+- `-full`: Display the full job definition for each version.
+- `-version`: Display only the history for the given version.
+- `-json` : Output the job versions in its JSON format.
+- `-t` : Format and display the job versions using a Go template.
## Examples
Display the history showing differences between versions:
-```
+```shell
$ nomad job history -p e
Version = 2
Stable = false
@@ -73,7 +69,7 @@ Submit Date = 07/25/17 20:35:28 UTC
Display the memory ask across submitted job versions:
-```
+```shell
$ nomad job history -t "{{range .}}\
v{{.Version}}: {{with index .TaskGroups 0}}{{with index .Tasks 0}}{{.Resources.MemoryMB}}{{end}}{{end}}\
diff --git a/website/source/docs/commands/job/init.html.md.erb b/website/source/docs/commands/job/init.html.md.erb
index 4603773fb..2973c8ada 100644
--- a/website/source/docs/commands/job/init.html.md.erb
+++ b/website/source/docs/commands/job/init.html.md.erb
@@ -7,27 +7,35 @@ description: >
---
# Command: job init
+
**Alias: `nomad init`**
The `job init` command creates an example [job specification][jobspec] in the
current directory that demonstrates some common configurations for tasks, task
groups, runtime constraints, and resource allocation.
-Please refer to the [jobspec][] and [drivers](/docs/drivers/index.html)
-pages to learn how to customize the template.
+Please refer to the [jobspec] and [drivers] pages to learn how to customize the
+template.
+
+## Usage
+
+```plaintext
+nomad job init [options]
+```
## Init Options
- * `-short`: If set, a minimal jobspec without comments is emitted.
- * `-connect`: If set, the jobspec includes Consul Connect integration.
+- `-short`: If set, a minimal jobspec without comments is emitted.
+- `-connect`: If set, the jobspec includes Consul Connect integration.
## Examples
Generate an example job file:
-```text
+```shell
$ nomad job init
Example job file written to example.nomad
```
[jobspec]: /docs/job-specification/index.html "Nomad Job Specification"
+[drivers]: /docs/drivers/index.html
diff --git a/website/source/docs/commands/job/inspect.html.md.erb b/website/source/docs/commands/job/inspect.html.md.erb
index abe842e44..4dff74483 100644
--- a/website/source/docs/commands/job/inspect.html.md.erb
+++ b/website/source/docs/commands/job/inspect.html.md.erb
@@ -7,20 +7,21 @@ description: >
---
# Command: job inspect
+
**Alias: `nomad inspect`**
The `job inspect` command is used to inspect the content of a submitted job.
## Usage
-```
+```plaintext
nomad job inspect [options]
```
The `job inspect` command requires a single argument, a submitted job's name, and
will retrieve the JSON version of the job. This JSON is valid to be submitted to
-the [Job HTTP API](/api/jobs.html). This command is useful to inspect what
-version of a job Nomad is running.
+the [Job HTTP API]. This command is useful to inspect what version of a job
+Nomad is running.
## General Options
@@ -28,17 +29,15 @@ version of a job Nomad is running.
## Inspect Options
-* `-version`: Display only the job at the given job version.
-
-* `-json` : Output the job in its JSON format.
-
-* `-t` : Format and display the job using a Go template.
+- `-version`: Display only the job at the given job version.
+- `-json` : Output the job in its JSON format.
+- `-t` : Format and display the job using a Go template.
## Examples
Inspect a submitted job:
-```
+```shell
$ nomad job inspect redis
{
"Job": {
@@ -153,3 +152,5 @@ $ nomad job inspect redis
}
}
```
+
+[Job HTTP API]: /api/jobs.html
diff --git a/website/source/docs/commands/job/periodic-force.html.md.erb b/website/source/docs/commands/job/periodic-force.html.md.erb
index 106713e7d..b35c9f59e 100644
--- a/website/source/docs/commands/job/periodic-force.html.md.erb
+++ b/website/source/docs/commands/job/periodic-force.html.md.erb
@@ -8,23 +8,23 @@ description: >
# Command: job periodic force
-The `job periodic force` command is used to [force the evaluation](/api/jobs.html#force-new-periodic-instance)
-of a [periodic job](/docs/job-specification/periodic.html).
+The `job periodic force` command is used to [force the evaluation] of a
+[periodic job].
## Usage
-```
+```plaintext
nomad job periodic force [options]
```
-The `job periodic force` command requires a single argument, specifying the ID of the
-job. This job must be a periodic job. This is used to immediately run a periodic job,
-even if it violates the job's `prohibit_overlap` setting.
+The `job periodic force` command requires a single argument, specifying the ID
+of the job. This job must be a periodic job. This is used to immediately run a
+periodic job, even if it violates the job's `prohibit_overlap` setting.
-By default, on successful job submission the command will enter an
-interactive monitor and display log information detailing the scheduling
-decisions and placement information for the forced evaluation. The monitor will
-exit after scheduling has finished or failed.
+By default, on successful job submission the command will enter an interactive
+monitor and display log information detailing the scheduling decisions and
+placement information for the forced evaluation. The monitor will exit after
+scheduling has finished or failed.
## General Options
@@ -32,17 +32,17 @@ exit after scheduling has finished or failed.
## Run Options
-* `-detach`: Return immediately instead of monitoring. A new evaluation ID
+- `-detach`: Return immediately instead of monitoring. A new evaluation ID
will be output, which can be used to examine the evaluation using the
- [eval status](/docs/commands/eval-status.html) command
+ [eval status] command.
-* `-verbose`: Show full information.
+- `-verbose`: Show full information.
## Examples
Force the evaluation of the job `example`, monitoring placement:
-```
+```shell
$ nomad job periodic force example
==> Monitoring evaluation "54b2d6d9"
Evaluation triggered by job "example/periodic-1555094493"
@@ -54,8 +54,12 @@ $ nomad job periodic force example
Force the evaluation of the job `example` and return immediately:
-```
+```shell
$ nomad job periodic force -detach example
Force periodic successful
Evaluation ID: 0865fbf3-30de-5f53-0811-821e73e63178
```
+
+[eval status]: /docs/commands/eval-status.html
+[force the evaluation]: /api/jobs.html#force-new-periodic-instance
+[periodic job]: /docs/job-specification/periodic.html
diff --git a/website/source/docs/commands/job/plan.html.md.erb b/website/source/docs/commands/job/plan.html.md.erb
index 6b157dc47..4c5b4a710 100644
--- a/website/source/docs/commands/job/plan.html.md.erb
+++ b/website/source/docs/commands/job/plan.html.md.erb
@@ -7,27 +7,25 @@ description: >
---
# Command: job plan
+
**Alias: `nomad plan`**
-The `job plan` command can be used to invoke the scheduler in a dry-run mode with
-new jobs or when updating existing jobs to determine what would happen if the
-job is submitted. Job files must conform to the [job
-specification](/docs/job-specification/index.html) format.
+The `job plan` command can be used to invoke the scheduler in a dry-run mode
+with new jobs or when updating existing jobs to determine what would happen if
+the job is submitted. Job files must conform to the [job specification] format.
## Usage
-```
+```plaintext
nomad job plan [options]
```
The `job plan` command requires a single argument, specifying the path to a file
-containing a [HCL job specification](/docs/job-specification/index.html). This
-file will be read and the resulting parsed job will be validated. If the
-supplied path is "-", the job file is read from STDIN. Otherwise it is read
-from the file at the supplied path or downloaded and read from URL specified.
-Nomad downloads the job file using
-[`go-getter`](https://github.com/hashicorp/go-getter)
-and supports `go-getter` syntax.
+containing an HCL [job specification]. This file will be read and the resulting
+parsed job will be validated. If the supplied path is "-", the job file is read
+from STDIN. Otherwise it is read from the file at the supplied path or
+downloaded and read from URL specified. Nomad downloads the job file using
+[`go-getter`] and supports `go-getter` syntax.
Plan invokes a dry-run of the scheduler to determine the effects of submitting
either a new or updated version of a job. The plan will not result in any
@@ -35,9 +33,8 @@ changes to the cluster but gives insight into whether the job could be run
successfully and how it would affect existing allocations.
A job modify index is returned with the plan. This value can be used when
-submitting the job using [`nomad job run
--check-index`](/docs/commands/job/run.html#check-index), which will check that the
-job was not modified between the plan and run command before invoking the
+submitting the job using [`nomad job run -check-index`], which will check that
+the job was not modified between the plan and run command before invoking the
scheduler. This ensures the job has not been modified since the plan.
A structured diff between the local and remote job is displayed to
@@ -48,9 +45,9 @@ environment variable are overridden and the job's region is used.
Plan will return one of the following exit codes:
- * 0: No allocations created or destroyed.
- * 1: Allocations created or destroyed.
- * 255: Error determining plan results.
+- 0: No allocations created or destroyed.
+- 1: Allocations created or destroyed.
+- 255: Error determining plan results.
## General Options
@@ -58,18 +55,19 @@ Plan will return one of the following exit codes:
## Plan Options
-* `-diff`: Determines whether the diff between the remote job and planned job is
+- `-diff`: Determines whether the diff between the remote job and planned job is
shown. Defaults to true.
-* `-policy-override`: Sets the flag to force override any soft mandatory Sentinel policies.
+- `-policy-override`: Sets the flag to force override any soft mandatory
+ Sentinel policies.
-* `-verbose`: Increase diff verbosity.
+- `-verbose`: Increase diff verbosity.
## Examples
Plan a new job that has not been previously submitted:
-```
+```shell
$ nomad job plan job1.nomad
nomad job plan example.nomad
+ Job: "example"
@@ -90,10 +88,9 @@ changed, another user has modified the job and the plan's results are
potentially invalid.
```
-
Increase the count of an existing without sufficient cluster capacity:
-```
+```shell
$ nomad job plan example.nomad
+/- Job: "example"
+/- Task Group: "cache" (7 create, 1 in-place update)
@@ -119,7 +116,7 @@ potentially invalid.
Update an existing job such that it would cause a rolling update:
-```
+```shell
$ nomad job plan example.nomad
+/- Job: "example"
+/- Task Group: "cache" (3 create/destroy update)
@@ -146,7 +143,7 @@ potentially invalid.
Add a task to the task group using verbose mode:
-```
+```shell
$ nomad job plan -verbose example.nomad
+/- Job: "example"
+/- Task Group: "cache" (3 create/destroy update)
@@ -201,3 +198,8 @@ server side version matches the job modify index returned. If the index has
changed, another user has modified the job and the plan's results are
potentially invalid.
```
+
+[job specification]: /docs/job-specification/index.html
+[HCL job specification]: /docs/job-specification/index.html
+[`go-getter`]: https://github.com/hashicorp/go-getter
+[`nomad job run -check-index`] :/docs/commands/job/run.html#check-index
diff --git a/website/source/docs/commands/job/promote.html.md.erb b/website/source/docs/commands/job/promote.html.md.erb
index df19080ee..9d2c0d411 100644
--- a/website/source/docs/commands/job/promote.html.md.erb
+++ b/website/source/docs/commands/job/promote.html.md.erb
@@ -15,11 +15,11 @@ When a task group is promoted, the rolling upgrade of the remaining allocations
is unblocked. If the canaries are found to be unhealthy, the deployment may
either be failed using the "nomad deployment fail" command, the job can be
failed forward by submitting a new version or failed backwards by reverting to
-an older version using the [job revert](/docs/commands/job/revert.html) command.
+an older version using the [job revert] command.
## Usage
-```
+```plaintext
nomad job promote [options]
```
@@ -34,21 +34,21 @@ select particular groups to promote.
## Promote Options
-* `-group`: Group may be specified many times and is used to promote that
+- `-group`: Group may be specified many times and is used to promote that
particular group. If no specific groups are specified, all groups are
promoted.
-* `-detach`: Return immediately instead of monitoring. A new evaluation ID
+- `-detach`: Return immediately instead of monitoring. A new evaluation ID
will be output, which can be used to examine the evaluation using the
- [eval status](/docs/commands/eval-status.html) command
+ [eval status] command.
-* `-verbose`: Show full information.
+- `-verbose`: Show full information.
## Examples
Promote canaries in all groups:
-```
+```shell
# Have two task groups waiting for promotion.
$ nomad status example
ID = example
@@ -136,7 +136,7 @@ f2409f7d a8dcce2d web 0 stop complete 07/25/17 18:31:34 UT
Promote canaries in a particular group:
-```
+```shell
# Have two task groups waiting for promotion.
$ nomad status example
ID = example
@@ -219,3 +219,6 @@ cee52788 6240eed6 web 0 run running 07/25/17 18:37:08 UT
ee8f972e 6240eed6 web 0 run running 07/25/17 18:37:08 UTC
0ee7800c 6240eed6 cache 0 stop complete 07/25/17 18:37:08 UTC
```
+
+[job revert]: /docs/commands/job/revert.html
+[eval status]: /docs/commands/eval-status.html
diff --git a/website/source/docs/commands/job/revert.html.md.erb b/website/source/docs/commands/job/revert.html.md.erb
index dc44b3e75..a42812577 100644
--- a/website/source/docs/commands/job/revert.html.md.erb
+++ b/website/source/docs/commands/job/revert.html.md.erb
@@ -9,25 +9,24 @@ description: >
# Command: job revert
The `job revert` command is used to revert a job to a prior version of the
-job. The available versions to revert to can be found using [`job
-history`](/docs/commands/job/history.html) command.
+job. The available versions to revert to can be found using [`job history`]
+command.
The revert command will use a Vault token with the following preference:
first the `-vault-token` flag, then the `$VAULT_TOKEN` environment variable.
-Because the vault token used to [run](/docs/commands/job/run.html) the targeted
-job version was not persisted, it must be provided to revert if the targeted
-job version includes Vault policies and the Nomad servers were
-[configured](/docs/configuration/vault.html#allow_unauthenticated)
-to require authentication.
+Because the vault token used to [run] the targeted job version was not
+persisted, it must be provided to revert if the targeted job version includes
+Vault policies and the Nomad servers were configured to
+[require authentication].
## Usage
-```
+```plaintext
nomad job revert [options]
```
-The `job revert` command requires two inputs, the job ID and the version of that job
-to revert to.
+The `job revert` command requires two inputs, the job ID and the version of that
+job to revert to.
## General Options
@@ -35,21 +34,21 @@ to revert to.
## Revert Options
-* `-detach`: Return immediately instead of monitoring. A new evaluation ID
+- `-detach`: Return immediately instead of monitoring. A new evaluation ID
will be output, which can be used to examine the evaluation using the
- [eval status](/docs/commands/eval-status.html) command
+ [eval status] command.
-* `-vault-token`: If set, the passed Vault token is sent along with the revert request
- to the Nomad servers. This overrides the token found in the $VAULT_TOKEN environment
- variable.
+- `-vault-token`: If set, the passed Vault token is sent along with the revert
+ request to the Nomad servers. This overrides the token found in the
+ $VAULT_TOKEN environment variable.
-* `-verbose`: Show full information.
+- `-verbose`: Show full information.
## Examples
Revert to an older version of a job:
-```
+```shell
$ nomad job history -p example
Version = 1
Stable = false
@@ -104,3 +103,8 @@ Version = 0
Stable = false
Submit Date = 07/25/17 21:27:18 UTC
```
+
+[`job history`]: /docs/commands/job/history.html
+[eval status]: /docs/commands/eval-status.html
+[require authentication]: /docs/configuration/vault.html#allow_unauthenticated
+[run]: /docs/commands/job/run.html
diff --git a/website/source/docs/commands/job/run.html.md.erb b/website/source/docs/commands/job/run.html.md.erb
index 9764db294..d9fad43ae 100644
--- a/website/source/docs/commands/job/run.html.md.erb
+++ b/website/source/docs/commands/job/run.html.md.erb
@@ -7,25 +7,24 @@ description: >
---
# Command: job run
+
**Alias: `nomad run`**
The `job run` command is used to submit new jobs to Nomad or to update existing
-jobs. Job files must conform to the [job specification](/docs/job-specification/index.html)
-format.
+jobs. Job files must conform to the [job specification] format.
## Usage
-```
+```plaintext
nomad job run [options]
```
The `job run` command requires a single argument, specifying the path to a file
-containing a valid [job specification](/docs/job-specification/index.html). This file
-will be read and the job will be submitted to Nomad for scheduling. If the
-supplied path is "-", the job file is read from STDIN. Otherwise it is read
-from the file at the supplied path or downloaded and read from URL specified.
-Nomad downloads the job file using [`go-getter`](https://github.com/hashicorp/go-getter)
-and supports `go-getter` syntax.
+containing a valid [job specification]. This file will be read and the job will
+be submitted to Nomad for scheduling. If the supplied path is "-", the job file
+is read from STDIN. Otherwise it is read from the file at the supplied path or
+downloaded and read from URL specified. Nomad downloads the job file using
+[`go-getter`] and supports `go-getter` syntax.
By default, on successful job submission the run command will enter an
interactive monitor and display log information detailing the scheduling
@@ -50,34 +49,35 @@ precedence, going from highest to lowest: the `-vault-token` flag, the
## Run Options
-* `-check-index`: If set, the job is only registered or
+- `-check-index`: If set, the job is only registered or
updated if the passed job modify index matches the server side version.
If a check-index value of zero is passed, the job is only registered if it does
not yet exist. If a non-zero value is passed, it ensures that the job is being
updated from a known state. The use of this flag is most common in conjunction
- with [`job plan` command](/docs/commands/job/plan.html).
+ with [`job plan` command].
-* `-detach`: Return immediately instead of monitoring. A new evaluation ID
+- `-detach`: Return immediately instead of monitoring. A new evaluation ID
will be output, which can be used to examine the evaluation using the
- [eval status](/docs/commands/eval-status.html) command
+ [eval status] command.
-* `-output`: Output the JSON that would be submitted to the HTTP API without
+- `-output`: Output the JSON that would be submitted to the HTTP API without
submitting the job.
-* `-policy-override`: Sets the flag to force override any soft mandatory Sentinel policies.
+- `-policy-override`: Sets the flag to force override any soft mandatory
+ Sentinel policies.
-* `-vault-token`: If set, the passed Vault token is stored in the job before
+- `-vault-token`: If set, the passed Vault token is stored in the job before
sending to the Nomad servers. This allows passing the Vault token without
storing it in the job file. This overrides the token found in the $VAULT_TOKEN
environment variable and that found in the job.
-* `-verbose`: Show full information.
+- `-verbose`: Show full information.
## Examples
Schedule the job contained in the file `job1.nomad`, monitoring placement:
-```
+```shell
$ nomad job run job1.nomad
==> Monitoring evaluation "52dee78a"
Evaluation triggered by job "example"
@@ -90,7 +90,7 @@ $ nomad job run job1.nomad
Update the job using `check-index`:
-```
+```shell
$ nomad job run -check-index 5 example.nomad
Enforcing job modify index 5: job exists with conflicting job modify index: 6
Job not updated
@@ -106,7 +106,7 @@ $ nomad job run -check-index 6 example.nomad
Schedule the job contained in `job1.nomad` and return immediately:
-```
+```shell
$ nomad job run -detach job1.nomad
4947e728
```
@@ -114,7 +114,7 @@ $ nomad job run -detach job1.nomad
Schedule a job which cannot be successfully placed. This results in a scheduling
failure and the specifics of the placement are printed:
-```
+```shell
$ nomad job run failing.nomad
==> Monitoring evaluation "2ae0e6a5"
Evaluation triggered by job "example"
@@ -125,3 +125,8 @@ $ nomad job run failing.nomad
* Constraint "${attr.kernel.name} = linux" filtered 1 nodes
Evaluation "67493a64" waiting for additional capacity to place remainder
```
+
+[`go-getter`]: https://github.com/hashicorp/go-getter
+[`job plan` command]: /docs/commands/job/plan.html
+[eval status]: /docs/commands/eval-status.html
+[job specification]: /docs/job-specification/index.html
diff --git a/website/source/docs/commands/job/status.html.md.erb b/website/source/docs/commands/job/status.html.md.erb
index c6315f941..e70c91cfc 100644
--- a/website/source/docs/commands/job/status.html.md.erb
+++ b/website/source/docs/commands/job/status.html.md.erb
@@ -12,19 +12,20 @@ The `job status` command displays status information for a job.
## Usage
-```
+```plaintext
nomad job status [options] [job]
```
This command accepts an optional job ID or prefix as the sole argument. If there
is an exact match based on the provided job ID or prefix, then information about
-the specific job is queried and displayed. Otherwise, a list of matching jobs and
-information will be displayed.
+the specific job is queried and displayed. Otherwise, a list of matching jobs
+and information will be displayed.
-If the ID is omitted, the command lists out all of the existing jobs and a few of
-the most useful status fields for each. As of Nomad 0.7.1, alloc status also shows allocation
-modification time in addition to create time. When the `-verbose` flag is not set, allocation
-creation and modify times are shown in a shortened relative time format like `5m ago`.
+If the ID is omitted, the command lists out all of the existing jobs and a few
+of the most useful status fields for each. As of Nomad 0.7.1, alloc status also
+shows allocation modification time in addition to create time. When the
+`-verbose` flag is not set, allocation creation and modify times are shown in a
+shortened relative time format like `5m ago`.
## General Options
@@ -32,21 +33,22 @@ creation and modify times are shown in a shortened relative time format like `5m
## Status Options
-* `-all-allocs`: Display all allocations matching the job ID, even those from an
+- `-all-allocs`: Display all allocations matching the job ID, even those from an
older instance of the job.
-* `-evals`: Display the evaluations associated with the job.
+- `-evals`: Display the evaluations associated with the job.
-* `-short`: Display short output. Used only when a single node is being queried.
+- `-short`: Display short output. Used only when a single node is being queried.
Drops verbose node allocation data from the output.
-* `-verbose`: Show full information. Allocation create and modify times are shown in `yyyy/mm/dd hh:mm:ss` format.
+- `-verbose`: Show full information. Allocation create and modify times are
+ shown in `yyyy/mm/dd hh:mm:ss` format.
## Examples
List of all jobs:
-```
+```shell
$ nomad job status
ID Type Priority Status Submit Date
job1 service 80 running 07/25/17 15:47:11 UTC
@@ -56,7 +58,7 @@ job3 service 50 dead (stopped) 07/22/17 16:34:48 UTC
Short view of a specific job:
-```
+```shell
$ nomad job status -short job1
ID = job1
Name = Test Job
@@ -71,7 +73,7 @@ Parameterized = false
Full status information of a job:
-```
+```shell
$ nomad job status example
ID = example
Name = example
@@ -103,7 +105,7 @@ ID Node ID Task Group Version Desired Status Created Modified
Full status information of a periodic job:
-```
+```shell
$ nomad job status example
ID = example
Name = example
@@ -129,7 +131,7 @@ example/periodic-1500998420 running
Full status information of a parameterized job:
-```
+```shell
$ nomad job status example
ID = example
Name = example
@@ -158,7 +160,7 @@ example/dispatch-1485411499-fa2ee40e running
Full status information of a job with placement failures:
-```
+```shell
$ nomad job status example
ID = example
Name = example
@@ -198,9 +200,9 @@ a17b7d3d 3f38ecb4 cache 0 run running 5m ago 5m ago
Full status information showing evaluations with a placement failure. The in
progress evaluation denotes that Nomad is blocked waiting for resources to
-become availables so that it can place the remaining allocations.
+become available so that it can place the remaining allocations.
-```
+```shell
$ nomad job status -evals example
ID = example
Name = example
diff --git a/website/source/docs/commands/job/stop.html.md.erb b/website/source/docs/commands/job/stop.html.md.erb
index b44d3ec9a..8abd01ad4 100644
--- a/website/source/docs/commands/job/stop.html.md.erb
+++ b/website/source/docs/commands/job/stop.html.md.erb
@@ -7,6 +7,7 @@ description: >
---
# Command: job stop
+
**Alias: `nomad stop`**
The `job stop` command is used to stop a running job and signals the scheduler
@@ -14,14 +15,14 @@ to cancel all of the running allocations.
## Usage
-```
+```plaintext
nomad job stop [options]
```
-The `job stop` command requires a single argument, specifying the job ID or prefix to
-cancel. If there is an exact match based on the provided job ID or prefix, then
-the job will be cancelled. Otherwise, a list of matching jobs and information
-will be displayed.
+The `job stop` command requires a single argument, specifying the job ID or
+prefix to cancel. If there is an exact match based on the provided job ID or
+prefix, then the job will be cancelled. Otherwise, a list of matching jobs and
+information will be displayed.
Stop will issue a request to deregister the matched job and then invoke an
interactive monitor that exits automatically once the scheduler has processed
@@ -33,25 +34,23 @@ the request. It is safe to exit the monitor early using ctrl+c.
## Stop Options
-* `-detach`: Return immediately instead of entering monitor mode. After the
+- `-detach`: Return immediately instead of entering monitor mode. After the
deregister command is submitted, a new evaluation ID is printed to the screen,
- which can be used to examine the evaluation using the
- [eval status](/docs/commands/eval-status.html) command.
+ which can be used to examine the evaluation using the [eval status] command.
-* `-verbose`: Show full information.
+- `-verbose`: Show full information.
-* `-yes`: Automatic yes to prompts.
+- `-yes`: Automatic yes to prompts.
-* `-purge`: Purge is used to stop the job and purge it from the system. If not
+- `-purge`: Purge is used to stop the job and purge it from the system. If not
set, the job will still be queryable and will be purged by the garbage
collector.
-
## Examples
Stop the job with ID "job1":
-```
+```shell
$ nomad job stop job1
==> Monitoring evaluation "43bfe672"
Evaluation status changed: "pending" -> "complete"
@@ -60,7 +59,9 @@ $ nomad job stop job1
Stop the job with ID "job1" and return immediately:
-```
+```shell
$ nomad job stop -detach job1
507d26cb
```
+
+[eval status]: /docs/commands/eval-status.html
diff --git a/website/source/docs/commands/job/validate.html.md.erb b/website/source/docs/commands/job/validate.html.md.erb
index 1da8a62c8..2a990fec0 100644
--- a/website/source/docs/commands/job/validate.html.md.erb
+++ b/website/source/docs/commands/job/validate.html.md.erb
@@ -7,24 +7,24 @@ description: >
---
# Command: job validate
+
**Alias: `nomad validate`**
-The `job validate` command is used to check a [HCL job specification](/docs/job-specification/index.html)
-for any syntax errors or validation problems.
+The `job validate` command is used to check an HCL [job specification] for any
+syntax errors or validation problems.
## Usage
-```
+```plaintext
nomad job validate
```
-The `job validate` command requires a single argument, specifying the path to a file
-containing a [HCL job specification](/docs/job-specification/index.html). This file
-will be read and the job checked for any problems. If the
-supplied path is "-", the job file is read from STDIN. Otherwise it is read
-from the file at the supplied path or downloaded and read from URL specified.
-Nomad downloads the job file using [`go-getter`](https://github.com/hashicorp/go-getter)
-and supports `go-getter` syntax.
+The `job validate` command requires a single argument, specifying the path to a
+file containing an HCL [job specification]. This file will be read and the job
+checked for any problems. If the supplied path is "-", the job file is read from
+STDIN. Otherwise it is read from the file at the supplied path or downloaded and
+read from URL specified. Nomad downloads the job file using [`go-getter`] and
+supports `go-getter` syntax.
On successful validation, exit code 0 will be returned, otherwise an exit code
of 1 indicates an error.
@@ -33,7 +33,7 @@ of 1 indicates an error.
Validate a job with invalid syntax:
-```
+```shell
$ nomad job validate example.nomad
Job validation errors:
1 error(s) occurred:
@@ -45,7 +45,7 @@ Job validation errors:
Validate a job that has a configuration that causes warnings:
-```
+```shell
$ nomad job validate example.nomad
Job Warnings:
1 warning(s):
@@ -56,3 +56,6 @@ Job Warnings:
Job validation successful
```
+
+[`go-getter`]: https://github.com/hashicorp/go-getter
+[job specification]: /docs/job-specification/index.html
diff --git a/website/source/docs/commands/monitor.html.md.erb b/website/source/docs/commands/monitor.html.md.erb
new file mode 100644
index 000000000..c26e730b2
--- /dev/null
+++ b/website/source/docs/commands/monitor.html.md.erb
@@ -0,0 +1,56 @@
+---
+layout: "docs"
+page_title: "Commands: monitor"
+sidebar_current: "docs-commands-monitor"
+description: >
+ Stream the logs of a running nomad agent.
+---
+
+# Command: monitor
+
+The `nomad monitor` command streams log messages for a given agent.
+
+## Usage
+
+```plaintext
+nomad monitor [options]
+```
+
+The nomad monitor command can be used to stream the logs of a
+running Nomad agent. Monitor will follow logs and exit when
+interrupted or until the remote agent quits.
+
+The power of the monitor command is that it allows you to log
+the agent at a relatively high log level (such as "warn"),
+but still access debug logs and watch the debug logs if necessary.
+The monitor command also allows you to specify a single client node id to follow.
+
+## General Options
+
+<%= partial "docs/commands/_general_options" %>
+
+## Monitor Options
+
+- `-log-level`: The log level to use for log streaming. Defaults to `info`.
+ Possible values include `trace`, `debug`, `info`, `warn`, `error`
+
+- `-node-id`: Specifies the client node-id to stream logs from. If no
+node-id is given the nomad server from the -address flag will be used.
+
+- `-server-id`: Specifies the nomad server id to stream logs from. Accepts
+server names from `nomad server members` and also a special `leader` option
+which will target the current leader.
+
+- `-json`: Stream logs in json format
+
+## Examples
+
+```shell
+$ nomad monitor -log-level=DEBUG -node-id=a57b2adb-1a30-2dda-8df0-25abb0881952
+2019-11-04T12:22:08.528-0500 [DEBUG] http: request complete: method=GET path=/v1/agent/health?type=server duration=1.445739ms
+2019-11-04T12:22:09.892-0500 [DEBUG] nomad: memberlist: Stream connection from=127.0.0.1:53628
+
+$ nomad monitor -log-level=DEBUG -json=true
+{"@level":"debug","@message":"request complete"...}
+
+```
diff --git a/website/source/docs/commands/namespace.html.md.erb b/website/source/docs/commands/namespace.html.md
similarity index 75%
rename from website/source/docs/commands/namespace.html.md.erb
rename to website/source/docs/commands/namespace.html.md
index ccb90ebcc..88058718a 100644
--- a/website/source/docs/commands/namespace.html.md.erb
+++ b/website/source/docs/commands/namespace.html.md
@@ -20,11 +20,11 @@ Usage: `nomad namespace [options]`
Run `nomad namespace -h` for help on that subcommand. The following
subcommands are available:
-* [`namespace apply`][apply] - Create or update a namespace
-* [`namespace delete`][delete] - Delete a namespace
-* [`namespace inspect`][inspect] - Inspect a namespace
-* [`namespace list`][list] - List available namespaces
-* [`namespace status`][status] - Display a namespace's status
+- [`namespace apply`][apply] - Create or update a namespace
+- [`namespace delete`][delete] - Delete a namespace
+- [`namespace inspect`][inspect] - Inspect a namespace
+- [`namespace list`][list] - List available namespaces
+- [`namespace status`][status] - Display a namespace's status
[apply]: /docs/commands/namespace/apply.html "Create or update a namespace"
[delete]: /docs/commands/namespace/delete.html "Delete a namespace"
diff --git a/website/source/docs/commands/namespace/apply.html.md.erb b/website/source/docs/commands/namespace/apply.html.md.erb
index c97e64dfb..f05869163 100644
--- a/website/source/docs/commands/namespace/apply.html.md.erb
+++ b/website/source/docs/commands/namespace/apply.html.md.erb
@@ -15,7 +15,7 @@ Enterprise.
## Usage
-```
+```plaintext
nomad namespace apply [options]
```
@@ -28,15 +28,15 @@ or updated.
## Apply Options
-* `-quota` : An optional quota to apply to the namespace.
+- `-quota` : An optional quota to apply to the namespace.
-* `-description` : An optional human readable description for the namespace.
+- `-description` : An optional human readable description for the namespace.
## Examples
Create a namespace with a quota
-```
-$ nomad namespace apply -description "Prod API servers" -quota prod api-prod
+```shell
+$ nomad namespace apply -description "Prod API servers" -quota prod api-prod
Successfully applied namespace "api-prod"!
```
diff --git a/website/source/docs/commands/namespace/delete.html.md.erb b/website/source/docs/commands/namespace/delete.html.md.erb
index 8a16681f7..9d18e5e69 100644
--- a/website/source/docs/commands/namespace/delete.html.md.erb
+++ b/website/source/docs/commands/namespace/delete.html.md.erb
@@ -15,7 +15,7 @@ Enterprise.
## Usage
-```
+```plaintext
nomad namespace delete [options]
```
@@ -29,7 +29,7 @@ The `namespace delete` command requires the name of the namespace to be deleted.
Delete a namespace
-```
+```shell
$ nomad namespace delete api-prod
Successfully deleted namespace "api-prod"!
```
diff --git a/website/source/docs/commands/namespace/inspect.html.md.erb b/website/source/docs/commands/namespace/inspect.html.md.erb
index e24ba498b..93fc1263f 100644
--- a/website/source/docs/commands/namespace/inspect.html.md.erb
+++ b/website/source/docs/commands/namespace/inspect.html.md.erb
@@ -17,7 +17,7 @@ Enterprise.
## Usage
-```
+```plaintext
nomad namespace inspect [options]
```
@@ -27,13 +27,13 @@ nomad namespace inspect [options]
## Inspect Options
-* `-t` : Format and display the namespace using a Go template.
+- `-t` : Format and display the namespace using a Go template.
## Examples
Inspect a namespace:
-```
+```shell
$ nomad namespace inspect default
{
"CreateIndex": 5,
diff --git a/website/source/docs/commands/namespace/list.html.md.erb b/website/source/docs/commands/namespace/list.html.md.erb
index e5dc1d7ee..430d2d618 100644
--- a/website/source/docs/commands/namespace/list.html.md.erb
+++ b/website/source/docs/commands/namespace/list.html.md.erb
@@ -15,7 +15,7 @@ Enterprise.
## Usage
-```
+```plaintext
nomad namespace list [options]
```
@@ -27,15 +27,15 @@ The `namespace list` command requires no arguments.
## List Options
-* `-json` : Output the namespaces in their JSON format.
+- `-json` : Output the namespaces in their JSON format.
-* `-t` : Format and display the namespaces using a Go template.
+- `-t` : Format and display the namespaces using a Go template.
## Examples
List all namespaces:
-```
+```shell
$ nomad namespace list
Name Description
default Default shared namespace
diff --git a/website/source/docs/commands/namespace/status.html.md.erb b/website/source/docs/commands/namespace/status.html.md.erb
index ce26d90ec..9c7490336 100644
--- a/website/source/docs/commands/namespace/status.html.md.erb
+++ b/website/source/docs/commands/namespace/status.html.md.erb
@@ -17,7 +17,7 @@ Enterprise.
## Usage
-```
+```plaintext
nomad namespace status [options]
```
@@ -29,7 +29,7 @@ nomad namespace status [options]
View the status of a namespace:
-```
+```shell
$ nomad namespace status default
Name = default
Description = Default shared namespace
diff --git a/website/source/docs/commands/node.html.md.erb b/website/source/docs/commands/node.html.md
similarity index 72%
rename from website/source/docs/commands/node.html.md.erb
rename to website/source/docs/commands/node.html.md
index 658bb45dc..1e37b55df 100644
--- a/website/source/docs/commands/node.html.md.erb
+++ b/website/source/docs/commands/node.html.md
@@ -7,7 +7,7 @@ description: >
---
# Command: node
-
+
The `node` command is used to interact with nodes.
## Usage
@@ -17,10 +17,14 @@ Usage: `nomad node [options]`
Run `nomad node -h` for help on that subcommand. The following
subcommands are available:
-* [`node config`][config] - View or modify client configuration details
-* [`node drain`][drain] - Set drain mode on a given node
-* [`node eligibility`][eligibility] - Toggle scheduling eligibility on a given node
-* [`node status`][status] - Display status information about nodes
+- [`node config`][config] - View or modify client configuration details
+
+- [`node drain`][drain] - Set drain mode on a given node
+
+- [`node eligibility`][eligibility] - Toggle scheduling eligibility on a given
+ node
+
+- [`node status`][status] - Display status information about nodes
[config]: /docs/commands/node/config.html "View or modify client configuration details"
[drain]: /docs/commands/node/drain.html "Set drain mode on a given node"
diff --git a/website/source/docs/commands/node/config.html.md.erb b/website/source/docs/commands/node/config.html.md.erb
index f81b88d55..aad7a761c 100644
--- a/website/source/docs/commands/node/config.html.md.erb
+++ b/website/source/docs/commands/node/config.html.md.erb
@@ -14,7 +14,7 @@ the running client configurations it supports.
## Usage
-```
+```plaintext
nomad node config [options]
```
@@ -27,13 +27,12 @@ description below for specific usage information and requirements.
## Node Config Options
-* `-servers`: List the client's known servers. Client nodes do not participate
+- `-servers`: List the client's known servers. Client nodes do not participate
in the gossip pool, and instead register with these servers periodically over
the network. The initial value of this list may come from configuration files
- using the [`servers`](/docs/configuration/client.html#servers)
- configuration option in the client block.
+ using the [`servers`] configuration option in the client block.
-* `-update-servers`: Updates the client's server list using the provided
+- `-update-servers`: Updates the client's server list using the provided
arguments. Multiple server addresses may be passed using multiple arguments.
When updating the servers list, you must specify ALL of the server nodes you
wish to configure. The set is updated atomically. It is an error to specify
@@ -44,7 +43,7 @@ description below for specific usage information and requirements.
Query the currently known servers:
-```
+```shell
$ nomad node config -servers
server1:4647
server2:4647
@@ -52,6 +51,8 @@ server2:4647
Update the list of servers:
-```
+```shell
$ nomad node config -update-servers server1:4647 server2:4647 server3:4647 server4
```
+
+[`servers`]: /docs/configuration/client.html#servers
diff --git a/website/source/docs/commands/node/drain.html.md.erb b/website/source/docs/commands/node/drain.html.md.erb
index e26fb1b5c..e196f35f3 100644
--- a/website/source/docs/commands/node/drain.html.md.erb
+++ b/website/source/docs/commands/node/drain.html.md.erb
@@ -25,15 +25,14 @@ eligibility -disable` on all of their node IDs, and then run `node drain
-enable`. This will ensure allocations drained from the first node are not
placed on another node about to be drained.
-The [node status](/docs/commands/node/status.html) command compliments this
-nicely by providing the current drain status of a given node.
+The [node status] command compliments this nicely by providing the current drain
+status of a given node.
-See the [Workload Migration guide](/guides/operations/node-draining.html) for detailed
-examples of node draining.
+See the [Workload Migration guide] for detailed examples of node draining.
## Usage
-```
+```plaintext
nomad node drain [options]
```
@@ -51,30 +50,40 @@ operation is desired.
## Drain Options
-* `-enable`: Enable node drain mode.
-* `-disable`: Disable node drain mode.
-* `-deadline`: Set the deadline by which all allocations must be moved off the
+- `-enable`: Enable node drain mode.
+
+- `-disable`: Disable node drain mode.
+
+- `-deadline`: Set the deadline by which all allocations must be moved off the
node. Remaining allocations after the deadline are force removed from the
node. Defaults to 1 hour.
-* `-detach`: Return immediately instead of entering monitor mode.
-* `-monitor`: Enter monitor mode directly without modifying the drain status.
-* `-force`: Force remove allocations off the node immediately.
-* `-no-deadline`: No deadline allows the allocations to drain off the node
+
+- `-detach`: Return immediately instead of entering monitor mode.
+
+- `-monitor`: Enter monitor mode directly without modifying the drain status.
+
+- `-force`: Force remove allocations off the node immediately.
+
+- `-no-deadline`: No deadline allows the allocations to drain off the node
without being force stopped after a certain deadline.
-* `-ignore-system`: Ignore system allows the drain to complete without stopping
+
+- `-ignore-system`: Ignore system allows the drain to complete without stopping
system job allocations. By default system jobs are stopped last.
-* `-keep-ineligible`: Keep ineligible will maintain the node's scheduling
+
+- `-keep-ineligible`: Keep ineligible will maintain the node's scheduling
ineligibility even if the drain is being disabled. This is useful when an
existing drain is being cancelled but additional scheduling on the node is not
desired.
-* `-self`: Drain the local node.
-* `-yes`: Automatic yes to prompts.
+
+- `-self`: Drain the local node.
+
+- `-yes`: Automatic yes to prompts.
## Examples
Enable drain mode on node with ID prefix "4d2ba53b":
-```
+```shell
$ nomad node drain -enable f4e8a9e5
Are you sure you want to enable drain mode for node "f4e8a9e5-30d8-3536-1e6f-cda5c869c35e"? [y/N] y
2018-03-30T23:13:16Z: Ctrl-C to stop monitoring: will not cancel the node drain
@@ -94,14 +103,14 @@ Are you sure you want to enable drain mode for node "f4e8a9e5-30d8-3536-1e6f-cda
Enable drain mode on the local node:
-```
+```shell
$ nomad node drain -enable -self
...
```
Enable drain mode but do not stop system jobs:
-```
+```shell
$ nomad node drain -enable -ignore-system 4d2ba53b
...
```
@@ -110,14 +119,14 @@ Disable drain mode but keep the node ineligible for scheduling. Useful for
inspecting the current state of a misbehaving node without Nomad trying to
start or migrate allocations:
-```
+```shell
$ nomad node drain -disable -keep-ineligible 4d2ba53b
...
```
Enable drain mode and detach from monitoring, then reattach later:
-```
+```shell
$ nomad node drain -enable -detach -self
...
$ nomad node drain -self -monitor
@@ -126,3 +135,5 @@ $ nomad node drain -self -monitor
[eligibility]: /docs/commands/node/eligibility.html
[migrate]: /docs/job-specification/migrate.html
+[node status]: /docs/commands/node/status.html
+[Workload Migration guide]: /guides/operations/node-draining.html
diff --git a/website/source/docs/commands/node/eligibility.html.md.erb b/website/source/docs/commands/node/eligibility.html.md.erb
index 7917bbbc5..a47a4444a 100644
--- a/website/source/docs/commands/node/eligibility.html.md.erb
+++ b/website/source/docs/commands/node/eligibility.html.md.erb
@@ -28,7 +28,7 @@ without the risk of additional work being assigned to it.
## Usage
-```
+```plaintext
nomad node eligibility [options]
```
@@ -46,26 +46,25 @@ operation is desired.
## Drain Options
-* `-enable`: Enable scheduling eligbility.
-* `-disable`: Disable scheduling eligibility.
-* `-self`: Set eligibility for the local node.
-* `-yes`: Automatic yes to prompts.
+- `-enable`: Enable scheduling eligibility.
+- `-disable`: Disable scheduling eligibility.
+- `-self`: Set eligibility for the local node.
+- `-yes`: Automatic yes to prompts.
## Examples
Enable scheduling eligibility on node with ID prefix "574545c5":
-```
+```shell
$ nomad node eligibility -enable 574545c5
Node "574545c5-c2d7-e352-d505-5e2cb9fe169f" scheduling eligibility set: eligible for scheduling
```
Disable scheduling eligibility on the local node:
-```
+```shell
$ nomad node eligibility -disable -self
Node "574545c5-c2d7-e352-d505-5e2cb9fe169f" scheduling eligibility set: ineligible for scheduling
```
-
[drain]: /docs/commands/node/drain.html
diff --git a/website/source/docs/commands/node/status.html.md.erb b/website/source/docs/commands/node/status.html.md.erb
index 888cd72ed..8e63403d0 100644
--- a/website/source/docs/commands/node/status.html.md.erb
+++ b/website/source/docs/commands/node/status.html.md.erb
@@ -14,7 +14,7 @@ output.
## Usage
-```
+```plaintext
nomad node status [options] [node]
```
@@ -26,7 +26,7 @@ If there is an exact match based on the provided node ID or prefix, then that
particular node will be queried, and detailed information will be displayed,
including resource usage statistics. Otherwise, a list of matching nodes and
information will be displayed. If running the command on a Nomad Client, the
--self flag is useful to quickly access the status of the local node.
+`-self` flag is useful to quickly access the status of the local node.
## General Options
@@ -34,27 +34,26 @@ information will be displayed. If running the command on a Nomad Client, the
## Status Options
-* `-self`: Query the status of the local node.
+- `-self`: Query the status of the local node.
-* `-stats`: Display detailed resource usage statistics.
+- `-stats`: Display detailed resource usage statistics.
-* `-allocs`: When a specific node is not being queried, shows the number of
+- `-allocs`: When a specific node is not being queried, shows the number of
running allocations per node.
-* `-short`: Display short output. Used only when querying a single node.
+- `-short`: Display short output. Used only when querying a single node.
-* `-verbose`: Show full information.
+- `-verbose`: Show full information.
-* `-json` : Output the node in its JSON format.
-
-* `-t` : Format and display node using a Go template.
+- `-json` : Output the node in its JSON format.
+- `-t` : Format and display node using a Go template.
## Examples
List view:
-```
+```shell
$ nomad node status
ID DC Name Class Drain Eligibility Status
a72dfba2 dc1 node1 false eligible ready
@@ -63,7 +62,7 @@ a72dfba2 dc1 node1 false eligible ready
List view, with running allocations:
-```
+```shell
$ nomad node status -allocs
ID DC Name Class Drain Eligibility Status Running Allocs
4d2ba53b dc1 node1 false eligible ready 1
@@ -72,7 +71,7 @@ ID DC Name Class Drain Eligibility Status Running Allocs
Single-node view in short mode:
-```
+```shell
$ nomad node status -short 1f3f03ea
ID = c754da1f
Name = nomad
@@ -89,7 +88,7 @@ ID Eval ID Job ID Task Group Desired Status Client Status
Full output for a single node:
-```
+```shell
$ nomad node status 1f3f03ea
ID = c754da1f
Name = nomad-server01
@@ -132,7 +131,7 @@ ID Eval ID Job ID Task Group Desired Status Client Status
Using `-self` when on a Nomad Client:
-```
+```shell
$ nomad node status -self
ID = c754da1f
Name = nomad-client01
@@ -190,14 +189,19 @@ Client Status represents the emergent state of the allocation and include
the following:
- *pending*: The allocation is pending and will be running
+
- *running*: The allocation is currently running
+
- *complete*: The allocation was running and completed successfully
+
- *failed*: The allocation was running and completed with a non-zero exit code
-- *lost*: The node that was running the allocation has failed or has been partitioned
+
+- *lost*: The node that was running the allocation has failed or has been
+ partitioned
Using `-stats` to see detailed to resource usage information on the node:
-```
+```shell
$ nomad node status -stats c754da1f
ID = c754da1f
Name = nomad-client01
@@ -278,7 +282,7 @@ ed3665f5 8bf94335 example cache run running
To view verbose information about the node:
-```
+```shell
$ nomad node status -verbose c754da1f
ID = c754da1f-6337-b86d-47dc-2ef4c71aca14
Name = nomad
diff --git a/website/source/docs/commands/operator.html.md.erb b/website/source/docs/commands/operator.html.md
similarity index 59%
rename from website/source/docs/commands/operator.html.md.erb
rename to website/source/docs/commands/operator.html.md
index 4bad91092..157253a5f 100644
--- a/website/source/docs/commands/operator.html.md.erb
+++ b/website/source/docs/commands/operator.html.md
@@ -14,10 +14,9 @@ as interacting with the Raft subsystem. This was added in Nomad 0.5.5.
~> Use this command with extreme caution, as improper use could lead to a Nomad
outage and even loss of data.
-See the [Outage Recovery](/guides/operations/outage.html) guide for some examples of how
-this command is used. For an API to perform these operations programmatically,
-please see the documentation for the [Operator](/api/operator.html)
-endpoint.
+See the [Outage Recovery guide] guide for some examples of how this command is
+used. For an API to perform these operations programmatically, please see the
+documentation for the [Operator] endpoint.
## Usage
@@ -26,16 +25,27 @@ Usage: `nomad operator [options]`
Run `nomad operator ` with no arguments for help on that subcommand.
The following subcommands are available:
-* [`operator autopilot get-config`][get-config] - Display the current Autopilot configuration
-* [`operator autopilot set-config`][set-config] - Modify the current Autopilot configuration
-* [`operator keygen`][keygen] - Generates a new encryption key
-* [`operator keyring`][keyring] - Manages gossip layer encryption keys
-* [`operator raft list-peers`][list] - Display the current Raft peer configuration
-* [`operator raft remove-peer`][remove] - Remove a Nomad server from the Raft configuration
+- [`operator autopilot get-config`][get-config] - Display the current Autopilot
+ configuration
+
+- [`operator autopilot set-config`][set-config] - Modify the current Autopilot
+ configuration
+
+- [`operator keygen`][keygen] - Generates a new encryption key
+
+- [`operator keyring`][keyring] - Manages gossip layer encryption keys
+
+- [`operator raft list-peers`][list] - Display the current Raft peer
+ configuration
+
+- [`operator raft remove-peer`][remove] - Remove a Nomad server from the Raft
+ configuration
[get-config]: /docs/commands/operator/autopilot-get-config.html "Autopilot Get Config command"
-[set-config]: /docs/commands/operator/autopilot-set-config.html "Autopilot Set Config command"
[keygen]: /docs/commands/operator/keygen.html "Generates a new encryption key"
[keyring]: /docs/commands/operator/keyring.html "Manages gossip layer encryption keys"
[list]: /docs/commands/operator/raft-list-peers.html "Raft List Peers command"
+[Operator]: /api/operator.html "Operator API documentation"
+[Outage Recovery guide]: /guides/operations/outage.html
[remove]: /docs/commands/operator/raft-remove-peer.html "Raft Remove Peer command"
+[set-config]: /docs/commands/operator/autopilot-set-config.html "Autopilot Set Config command"
diff --git a/website/source/docs/commands/operator/autopilot-get-config.html.md.erb b/website/source/docs/commands/operator/autopilot-get-config.html.md.erb
index ac4e0734f..738df8e64 100644
--- a/website/source/docs/commands/operator/autopilot-get-config.html.md.erb
+++ b/website/source/docs/commands/operator/autopilot-get-config.html.md.erb
@@ -8,12 +8,12 @@ description: >
# Command: operator autopilot get-config
-The Autopilot operator command is used to view the current Autopilot configuration. See the
-[Autopilot Guide](/guides/operations/autopilot.html) for more information about Autopilot.
+The Autopilot operator command is used to view the current Autopilot
+configuration. See the [Autopilot Guide] for more information about Autopilot.
## Usage
-```
+```plaintext
nomad operator autopilot get-config [options]
```
@@ -23,7 +23,8 @@ nomad operator autopilot get-config [options]
The output looks like this:
-```
+```shell
+$ nomad operator autopilot get-config
CleanupDeadServers = true
LastContactThreshold = 200ms
MaxTrailingLogs = 250
@@ -61,3 +62,5 @@ UpgradeMigrationTag = ""
- `UpgradeVersionTag` - Controls the node-meta key to use for
version info when performing upgrade migrations. If left blank, the Nomad
version will be used.
+
+[Autopilot Guide]: /guides/operations/autopilot.html
diff --git a/website/source/docs/commands/operator/autopilot-set-config.html.md.erb b/website/source/docs/commands/operator/autopilot-set-config.html.md.erb
index d935c7278..1e6324ae9 100644
--- a/website/source/docs/commands/operator/autopilot-set-config.html.md.erb
+++ b/website/source/docs/commands/operator/autopilot-set-config.html.md.erb
@@ -8,13 +8,12 @@ description: >
# Command: operator autopilot set-config
-The Autopilot operator command is used to set the current Autopilot configuration. See the
-[Autopilot Guide](/guides/operations/autopilot.html) for more information about Autopilot.
-
+The Autopilot operator command is used to set the current Autopilot
+configuration. See the [Autopilot Guide] for more information about Autopilot.
## Usage
-```
+```plaintext
nomad operator autopilot set-config [options]
```
@@ -24,35 +23,41 @@ nomad operator autopilot set-config [options]
## Set Config Options
-* `-cleanup-dead-servers` - Specifies whether to enable automatic removal of dead servers
-upon the successful joining of new servers to the cluster. Must be one of `[true|false]`.
+- `-cleanup-dead-servers` - Specifies whether to enable automatic removal of
+ dead servers upon the successful joining of new servers to the cluster. Must be
+ one of `[true|false]`.
-* `-last-contact-threshold` - Controls the maximum amount of time a server can go without contact
-from the leader before being considered unhealthy. Must be a duration value such as `200ms`.
+- `-last-contact-threshold` - Controls the maximum amount of time a server can
+ go without contact from the leader before being considered unhealthy. Must be a
+ duration value such as `200ms`.
-* `-max-trailing-logs` - Controls the maximum number of log entries that a server can trail
-the leader by before being considered unhealthy.
+- `-max-trailing-logs` - Controls the maximum number of log entries that a
+ server can trail the leader by before being considered unhealthy.
-* `-server-stabilization-time` - Controls the minimum amount of time a server must be stable in
-the 'healthy' state before being added to the cluster. Only takes effect if all servers are
-running Raft protocol version 3 or higher. Must be a duration value such as `10s`.
+- `-server-stabilization-time` - Controls the minimum amount of time a server
+ must be stable in the 'healthy' state before being added to the cluster. Only
+ takes effect if all servers are running Raft protocol version 3 or higher. Must
+ be a duration value such as `10s`.
-* `-disable-upgrade-migration` - (Enterprise-only) Controls whether Nomad will avoid promoting
-new servers until it can perform a migration. Must be one of `[true|false]`.
+- `-disable-upgrade-migration` - (Enterprise-only) Controls whether Nomad will
+ avoid promoting new servers until it can perform a migration. Must be one of
+ `[true|false]`.
-* `-redundancy-zone-tag`- (Enterprise-only) Controls the
- [`redundancy_zone`](/docs/configuration/server.html#redundancy_zone)
+- `-redundancy-zone-tag`- (Enterprise-only) Controls the [`redundancy_zone`]
used for separating servers into different redundancy zones.
-* `-upgrade-version-tag` - (Enterprise-only) Controls the
- [`upgrade_version`](/docs/configuration/server.html#upgrade_version) to
+- `-upgrade-version-tag` - (Enterprise-only) Controls the [`upgrade_version`] to
use for version info when performing upgrade migrations. If left blank, the
Nomad version will be used.
The output looks like this:
-```
+```plaintext
Configuration updated!
```
The return code will indicate success or failure.
+
+[`redundancy_zone`]: /docs/configuration/server.html#redundancy_zone
+[`upgrade_version`]: /docs/configuration/server.html#upgrade_version
+[Autopilot Guide]: /guides/operations/autopilot.html
diff --git a/website/source/docs/commands/operator/keygen.html.md.erb b/website/source/docs/commands/operator/keygen.html.md
similarity index 58%
rename from website/source/docs/commands/operator/keygen.html.md.erb
rename to website/source/docs/commands/operator/keygen.html.md
index 18e885674..bf8da1830 100644
--- a/website/source/docs/commands/operator/keygen.html.md.erb
+++ b/website/source/docs/commands/operator/keygen.html.md
@@ -3,27 +3,26 @@ layout: "docs"
page_title: "Commands: operator keygen"
sidebar_current: "docs-commands-operator-keygen"
description: >
- The `operator keygen` command generates an encryption key that can be used for Nomad
- server's gossip traffic encryption. The keygen command uses a
+ The `operator keygen` command generates an encryption key that can be used for
+ Nomad server's gossip traffic encryption. The keygen command uses a
cryptographically strong pseudo-random number generator to generate the key.
---
# Command: operator keygen
-The `operator keygen` command generates an encryption key that can be used for Nomad
-server's gossip traffic encryption. The keygen command uses a cryptographically
-strong pseudo-random number generator to generate the key.
+The `operator keygen` command generates an encryption key that can be used for
+Nomad server's gossip traffic encryption. The keygen command uses a
+cryptographically strong pseudo-random number generator to generate the key.
-## Usage
+## Usage
-```
+```plaintext
nomad operator keygen
```
## Example
-```
-nomad operator keygen
+```shell
+$ nomad operator keygen
YgZOXLMhC7TtZqeghMT8+w==
```
-
diff --git a/website/source/docs/commands/operator/keyring.html.md.erb b/website/source/docs/commands/operator/keyring.html.md
similarity index 76%
rename from website/source/docs/commands/operator/keyring.html.md.erb
rename to website/source/docs/commands/operator/keyring.html.md
index 6a136efaf..77be14dc7 100644
--- a/website/source/docs/commands/operator/keyring.html.md.erb
+++ b/website/source/docs/commands/operator/keyring.html.md
@@ -24,34 +24,36 @@ All variations of the `keyring` command return 0 if all nodes reply and there
are no errors. If any node fails to reply or reports failure, the exit code
will be 1.
-
## Usage
-Usage: `nomad operator keyring [options]`
+```plaintext
+nomad operator keyring [options]
+```
Only one actionable argument may be specified per run, including `-list`,
`-install`, `-remove`, and `-use`.
The list of available flags are:
-* `-list` - List all keys currently in use within the cluster.
+- `-list` - List all keys currently in use within the cluster.
-* `-install` - Install a new encryption key. This will broadcast the new key to
+- `-install` - Install a new encryption key. This will broadcast the new key to
all members in the cluster.
-* `-use` - Change the primary encryption key, which is used to encrypt messages.
+- `-use` - Change the primary encryption key, which is used to encrypt messages.
The key must already be installed before this operation can succeed.
-* `-remove` - Remove the given key from the cluster. This operation may only be
+- `-remove` - Remove the given key from the cluster. This operation may only be
performed on keys which are not currently the primary key.
## Output
-The output of the `nomad operator keyring -list` command consolidates information from
-all the Nomad servers from all datacenters and regions to provide a simple and
-easy to understand view of the cluster.
+The output of the `nomad operator keyring -list` command consolidates
+information from all the Nomad servers from all datacenters and regions to
+provide a simple and easy to understand view of the cluster.
-```
+```shell
+$ nomad operator keyring -list
==> Gathering installed encryption keys...
Key
PGm64/neoebUBqYR/lZTbA==
diff --git a/website/source/docs/commands/operator/raft-list-peers.html.md.erb b/website/source/docs/commands/operator/raft-list-peers.html.md.erb
index 26bef9254..14d8d83ab 100644
--- a/website/source/docs/commands/operator/raft-list-peers.html.md.erb
+++ b/website/source/docs/commands/operator/raft-list-peers.html.md.erb
@@ -11,14 +11,13 @@ description: >
The Raft list-peers command is used to display the current Raft peer
configuration.
-See the [Outage Recovery](/guides/operations/outage.html) guide for some examples of how
-this command is used. For an API to perform these operations programmatically,
-please see the documentation for the [Operator](/api/operator.html)
-endpoint.
+See the [Outage Recovery] guide for some examples of how this command is used.
+For an API to perform these operations programmatically, please see the
+documentation for the [Operator] endpoint.
## Usage
-```
+```plaintext
nomad operator raft list-peers [options]
```
@@ -28,7 +27,7 @@ nomad operator raft list-peers [options]
## List Peers Options
-* `-stale`: The stale argument defaults to "false" which means the leader
+- `-stale`: The stale argument defaults to "false" which means the leader
provides the result. If the cluster is in an outage state without a leader, you
may need to set `-stale` to "true" to get the configuration from a non-leader
server.
@@ -37,7 +36,7 @@ server.
An example output with three servers is as follows:
-```
+```shell
$ nomad operator raft list-peers
Node ID Address State Voter
nomad-server01.global 10.10.11.5:4647 10.10.11.5:4647 follower true
@@ -58,3 +57,6 @@ Raft configuration.
- `Voter` is "true" or "false", indicating if the server has a vote in the Raft
configuration. Future versions of Nomad may add support for non-voting servers.
+
+[Operator]: /api/operator.html
+[Outage Recovery]: /guides/operations/outage.html
diff --git a/website/source/docs/commands/operator/raft-remove-peer.html.md.erb b/website/source/docs/commands/operator/raft-remove-peer.html.md.erb
index 37e6fbaa9..74ab39897 100644
--- a/website/source/docs/commands/operator/raft-remove-peer.html.md.erb
+++ b/website/source/docs/commands/operator/raft-remove-peer.html.md.erb
@@ -13,20 +13,17 @@ Remove the Nomad server with given address from the Raft configuration.
There are rare cases where a peer may be left behind in the Raft quorum even
though the server is no longer present and known to the cluster. This command
can be used to remove the failed server so that it is no longer affects the Raft
-quorum. If the server still shows in the output of the [`nomad
-server members`](/docs/commands/server/members.html) command, it is preferable
-to clean up by simply running [`nomad
-server force-leave`](/docs/commands/server/force-leave.html) instead of this
-command.
+quorum. If the server still shows in the output of the [`nomad server members`]
+command, it is preferable to clean up by running [`nomad server force-leave`]
+instead of this command.
-See the [Outage Recovery](/guides/operations/outage.html) guide for some examples of how
-this command is used. For an API to perform these operations programmatically,
-please see the documentation for the [Operator](/api/operator.html)
-endpoint.
+See the [Outage Recovery] guide for some examples of how this command is used.
+For an API to perform these operations programmatically, please see the
+documentation for the [Operator] endpoint.
## Usage
-```
+```plaintext
nomad operator raft remove-peer [options]
```
@@ -36,8 +33,13 @@ nomad operator raft remove-peer [options]
## Remove Peer Options
-* `-peer-address`: Remove a Nomad server with given address from the Raft
-configuration. The format is "IP:port"
+- `-peer-address`: Remove a Nomad server with given address from the Raft
+ configuration. The format is "IP:port"
-* `-peer-id`: Remove a Nomad server with the given ID from the Raft
-configuration. The format is "id"
+- `-peer-id`: Remove a Nomad server with the given ID from the Raft
+ configuration. The format is "id"
+
+[`nomad server force-leave`]: /docs/commands/server/force-leave.html "Nomad server force-leave command"
+[`nomad server members`]: /docs/commands/server/members.html "Nomad server members command"
+[Operator]: /api/operator.html "Nomad Operator API"
+[Outage Recovery]: /guides/operations/outage.html
diff --git a/website/source/docs/commands/quota.html.md.erb b/website/source/docs/commands/quota.html.md
similarity index 68%
rename from website/source/docs/commands/quota.html.md.erb
rename to website/source/docs/commands/quota.html.md
index 38ae5102c..701a3d416 100644
--- a/website/source/docs/commands/quota.html.md.erb
+++ b/website/source/docs/commands/quota.html.md
@@ -20,12 +20,12 @@ Usage: `nomad quota [options]`
Run `nomad quota -h` for help on that subcommand. The following
subcommands are available:
-* [`quota apply`][quotaapply] - Create or update a quota specification
-* [`quota delete`][quotadelete] - Delete a quota specification
-* [`quota init`][quotainit] - Create an example quota specification file
-* [`quota inspect`][quotainspect] - Inspect a quota specification
-* [`quota list`][quotalist] - List quota specifications
-* [`quota status`][quotastatus] - Display a quota's status and current usage
+- [`quota apply`][quotaapply] - Create or update a quota specification
+- [`quota delete`][quotadelete] - Delete a quota specification
+- [`quota init`][quotainit] - Create an example quota specification file
+- [`quota inspect`][quotainspect] - Inspect a quota specification
+- [`quota list`][quotalist] - List quota specifications
+- [`quota status`][quotastatus] - Display a quota's status and current usage
[quotaapply]: /docs/commands/quota/apply.html
[quotadelete]: /docs/commands/quota/delete.html
diff --git a/website/source/docs/commands/quota/apply.html.md.erb b/website/source/docs/commands/quota/apply.html.md.erb
index ec023362e..fc28bc784 100644
--- a/website/source/docs/commands/quota/apply.html.md.erb
+++ b/website/source/docs/commands/quota/apply.html.md.erb
@@ -15,7 +15,7 @@ Enterprise.
## Usage
-```
+```plaintext
nomad quota apply [options]
```
@@ -28,13 +28,13 @@ specification can be read from stdin by setting the path to "-".
## Apply Options
-* `-json`: Parse the input as a JSON quota specification.
+- `-json`: Parse the input as a JSON quota specification.
## Examples
Create a new quota specification:
-```
+```shell
$ nomad quota apply my-quota.hcl
Successfully applied quota specification "my-quota"!
```
diff --git a/website/source/docs/commands/quota/delete.html.md.erb b/website/source/docs/commands/quota/delete.html.md.erb
index 4baa2bf58..3ffce0abe 100644
--- a/website/source/docs/commands/quota/delete.html.md.erb
+++ b/website/source/docs/commands/quota/delete.html.md.erb
@@ -15,7 +15,7 @@ Enterprise.
## Usage
-```
+```plaintext
nomad quota delete
```
@@ -29,7 +29,7 @@ The `quota delete` command requires the quota specification name as an argument.
Delete a quota specification:
-```
+```shell
$ nomad quota delete my-quota
Successfully deleted quota "my-quota"!
```
diff --git a/website/source/docs/commands/quota/init.html.md.erb b/website/source/docs/commands/quota/init.html.md.erb
index d1b2222f6..e6b19488f 100644
--- a/website/source/docs/commands/quota/init.html.md.erb
+++ b/website/source/docs/commands/quota/init.html.md.erb
@@ -16,19 +16,19 @@ Enterprise.
## Usage
-```
+```plaintext
nomad quota init
```
## Init Options
-* `-json`: Create an example JSON quota specification.
+- `-json`: Create an example JSON quota specification.
## Examples
Create an example quota specification:
-```
+```shell
$ nomad quota init
Example quota specification written to spec.hcl
```
diff --git a/website/source/docs/commands/quota/inspect.html.md.erb b/website/source/docs/commands/quota/inspect.html.md.erb
index 5487c5136..403e4f2da 100644
--- a/website/source/docs/commands/quota/inspect.html.md.erb
+++ b/website/source/docs/commands/quota/inspect.html.md.erb
@@ -17,7 +17,7 @@ Enterprise.
## Usage
-```
+```plaintext
nomad quota inspect [options]
```
@@ -27,13 +27,13 @@ nomad quota inspect [options]
## Inspect Options
-* `-t` : Format and display the quota using a Go template.
+- `-t` : Format and display the quota using a Go template.
## Examples
Inspect a quota specification:
-```
+```shell
$ nomad quota inspect default-quota
{
"Spec": {
diff --git a/website/source/docs/commands/quota/list.html.md.erb b/website/source/docs/commands/quota/list.html.md.erb
index 7380df3fd..fa2f5055c 100644
--- a/website/source/docs/commands/quota/list.html.md.erb
+++ b/website/source/docs/commands/quota/list.html.md.erb
@@ -15,7 +15,7 @@ Enterprise.
## Usage
-```
+```plaintext
nomad quota list
```
@@ -25,15 +25,15 @@ nomad quota list
## List Options
-* `-json`: Output the quota specifications in a JSON format.
+- `-json`: Output the quota specifications in a JSON format.
-* `-t`: Format and display the quotas specifications using a Go template.
+- `-t`: Format and display the quotas specifications using a Go template.
## Examples
List all quota specifications:
-```
+```shell
$ nomad quota list
Name Description
default Limit the shared default namespace
diff --git a/website/source/docs/commands/quota/status.html.md.erb b/website/source/docs/commands/quota/status.html.md.erb
index 626654bff..7de58835c 100644
--- a/website/source/docs/commands/quota/status.html.md.erb
+++ b/website/source/docs/commands/quota/status.html.md.erb
@@ -17,7 +17,7 @@ Enterprise.
## Usage
-```
+```plaintext
nomad quota status [options]
```
@@ -29,7 +29,7 @@ nomad quota status [options]
View the status of a quota specification:
-```
+```shell
$ nomad quota status default-quota
Name = default-quota
Description = Limit the shared default namespace
diff --git a/website/source/docs/commands/sentinel.html.md.erb b/website/source/docs/commands/sentinel.html.md
similarity index 74%
rename from website/source/docs/commands/sentinel.html.md.erb
rename to website/source/docs/commands/sentinel.html.md
index e3895423c..edcb72818 100644
--- a/website/source/docs/commands/sentinel.html.md.erb
+++ b/website/source/docs/commands/sentinel.html.md
@@ -20,10 +20,10 @@ Usage: `nomad sentinel [options]`
Run `nomad sentinel -h` for help on that subcommand. The following
subcommands are available:
-* [`sentinel apply`][apply] - Create a new or update existing Sentinel policies
-* [`sentinel delete`][delete] - Delete an existing Sentinel policies
-* [`sentinel list`][list] - Display all Sentinel policies
-* [`sentinel read`][read] - Inspects an existing Sentinel policies
+- [`sentinel apply`][apply] - Create a new or update existing Sentinel policies
+- [`sentinel delete`][delete] - Delete an existing Sentinel policies
+- [`sentinel list`][list] - Display all Sentinel policies
+- [`sentinel read`][read] - Inspects an existing Sentinel policies
[delete]: /docs/commands/sentinel/delete.html
[list]: /docs/commands/sentinel/list.html
diff --git a/website/source/docs/commands/sentinel/apply.html.md.erb b/website/source/docs/commands/sentinel/apply.html.md.erb
index 8cc64200c..09afb49ad 100644
--- a/website/source/docs/commands/sentinel/apply.html.md.erb
+++ b/website/source/docs/commands/sentinel/apply.html.md.erb
@@ -3,24 +3,27 @@ layout: "docs"
page_title: "Commands: sentinel apply"
sidebar_current: "docs-commands-sentinel-apply"
description: >
- The sentinel apply command is used to write a new, or update an existing, Sentinel policy.
+ The sentinel apply command is used to write a new, or update an existing,
+ Sentinel policy.
---
# Command: sentinel apply
-The `sentinel apply` command is used to write a new, or update an existing, Sentinel policy.
+The `sentinel apply` command is used to write a new, or update an existing,
+Sentinel policy.
~> Sentinel commands are new in Nomad 0.7 and are only available with Nomad
Enterprise.
## Usage
-```
+```plaintext
nomad sentinel apply [options]
```
-The `sentinel apply` command requires two arguments, the policy name and the policy file.
-The policy file can be read from stdin by specifying "-" as the file name.
+The `sentinel apply` command requires two arguments, the policy name and the
+policy file. The policy file can be read from stdin by specifying "-" as the
+file name.
## General Options
@@ -28,18 +31,19 @@ The policy file can be read from stdin by specifying "-" as the file name.
## Apply Options
-* `-description` : Sets a human readable description for the policy
+- `-description` : Sets a human readable description for the policy
-* `-scope` : (default: submit-job) Sets the scope of the policy and when it should be enforced.
+- `-scope` : (default: submit-job) Sets the scope of the policy and when it
+ should be enforced.
-* `-level` : (default: advisory) Sets the enforcement level of the policy. Must be one of advisory,
- soft-mandatory, hard-mandatory.
+- `-level` : (default: advisory) Sets the enforcement level of the policy. Must
+ be one of advisory, soft-mandatory, hard-mandatory.
## Examples
Write a policy:
-```
+```shell
$ nomad sentinel write -description "My test policy" foo test.sentinel
Successfully wrote "foo" Sentinel policy!
```
diff --git a/website/source/docs/commands/sentinel/delete.html.md.erb b/website/source/docs/commands/sentinel/delete.html.md.erb
index 93b4a74dc..1f43b83ee 100644
--- a/website/source/docs/commands/sentinel/delete.html.md.erb
+++ b/website/source/docs/commands/sentinel/delete.html.md.erb
@@ -15,7 +15,7 @@ Enterprise.
## Usage
-```
+```plaintext
nomad sentinel delete [options]
```
@@ -29,7 +29,7 @@ The `sentinel delete` command requires a single argument, the policy name.
Delete a policy:
-```
+```shell
$ nomad sentinel delete foo
Successfully deleted "foo" Sentinel policy!
```
diff --git a/website/source/docs/commands/sentinel/list.html.md.erb b/website/source/docs/commands/sentinel/list.html.md.erb
index 4a979115c..6906088f2 100644
--- a/website/source/docs/commands/sentinel/list.html.md.erb
+++ b/website/source/docs/commands/sentinel/list.html.md.erb
@@ -8,14 +8,15 @@ description: >
# Command: sentinel list
-The `sentinel list` command is used to display all the installed Sentinel policies.
+The `sentinel list` command is used to display all the installed Sentinel
+policies.
~> Sentinel commands are new in Nomad 0.7 and are only available with Nomad
Enterprise.
## Usage
-```
+```plaintext
nomad sentinel list [options]
```
@@ -29,7 +30,7 @@ The `sentinel list` command requires no arguments.
List all policies:
-```
+```shell
$ nomad sentinel list
Name Scope Enforcement Level Description
foo submit-job advisory my test policy
diff --git a/website/source/docs/commands/sentinel/read.html.md.erb b/website/source/docs/commands/sentinel/read.html.md.erb
index 782d79cad..de2b791b5 100644
--- a/website/source/docs/commands/sentinel/read.html.md.erb
+++ b/website/source/docs/commands/sentinel/read.html.md.erb
@@ -15,7 +15,7 @@ Enterprise.
## Usage
-```
+```plaintext
nomad sentinel read [options]
```
@@ -27,13 +27,13 @@ The `sentinel read` command requires a single argument, the policy name.
## Read Options
-* `-raw` : Output the raw policy only.
+- `-raw` : Output the raw policy only.
## Examples
Read all policies:
-```
+```shell
$ nomad sentinel read foo
Name = foo
Scope = submit-job
diff --git a/website/source/docs/commands/server.html.md.erb b/website/source/docs/commands/server.html.md
similarity index 79%
rename from website/source/docs/commands/server.html.md.erb
rename to website/source/docs/commands/server.html.md
index 912e13895..aa52802dd 100644
--- a/website/source/docs/commands/server.html.md.erb
+++ b/website/source/docs/commands/server.html.md
@@ -7,7 +7,7 @@ description: >
---
# Command: server
-
+
Command: `nomad server`
The `server` command is used to interact with servers.
@@ -19,9 +19,9 @@ Usage: `nomad server [options]`
Run `nomad server -h` for help on that subcommand. The following
subcommands are available:
-* [`server force-leave`][force-leave] - Force a server into the 'left' state
-* [`server join`][join] - Join server nodes together
-* [`server members`][members] - Display a list of known servers and their status
+- [`server force-leave`][force-leave] - Force a server into the 'left' state
+- [`server join`][join] - Join server nodes together
+- [`server members`][members] - Display a list of known servers and their status
[force-leave]: /docs/commands/server/force-leave.html "Force a server into the 'left' state"
[join]: /docs/commands/server/join.html "Join server nodes together"
diff --git a/website/source/docs/commands/server/force-leave.html.md.erb b/website/source/docs/commands/server/force-leave.html.md.erb
index dcab1c668..b12f1494f 100644
--- a/website/source/docs/commands/server/force-leave.html.md.erb
+++ b/website/source/docs/commands/server/force-leave.html.md.erb
@@ -3,7 +3,8 @@ layout: "docs"
page_title: "Commands: server force-leave"
sidebar_current: "docs-commands-server-force-leave"
description: >
- The server force-leave command is used to force a server into the "left" state.
+ The server force-leave command is used to force a server into the "left"
+ state.
---
# Command: server force-leave
@@ -15,7 +16,7 @@ eventually rejoin the cluster again.
## Usage
-```
+```plaintext
nomad server force-leave [options]
```
@@ -30,6 +31,6 @@ to enter the "left" state.
Force-leave the server "node1":
-```
+```shell
$ nomad server force-leave node1
```
diff --git a/website/source/docs/commands/server/join.html.md.erb b/website/source/docs/commands/server/join.html.md.erb
index 60388ef8c..2d181ebbe 100644
--- a/website/source/docs/commands/server/join.html.md.erb
+++ b/website/source/docs/commands/server/join.html.md.erb
@@ -3,7 +3,8 @@ layout: "docs"
page_title: "Commands: server join"
sidebar_current: "docs-commands-server-join"
description: >
- The server join command is used to join the local server to one or more Nomad servers.
+ The server join command is used to join the local server to one or more Nomad
+ servers.
---
# Command: server join
@@ -15,7 +16,7 @@ handle discovery of the other server nodes in the cluster.
## Usage
-```
+```plaintext
nomad server join [options] [...]
```
@@ -32,7 +33,7 @@ be 1.
Join the local server to a remote server:
-```
+```shell
$ nomad server join 10.0.0.8:4648
Joined 1 servers successfully
```
diff --git a/website/source/docs/commands/server/members.html.md.erb b/website/source/docs/commands/server/members.html.md.erb
index d2667339f..723fd9b1a 100644
--- a/website/source/docs/commands/server/members.html.md.erb
+++ b/website/source/docs/commands/server/members.html.md.erb
@@ -14,7 +14,7 @@ which is only run on server nodes.
## Usage
-```
+```plaintext
nomad server members [options]
```
@@ -24,7 +24,7 @@ nomad server members [options]
## Server Members Options
-* `-detailed`: Dump the basic member information as well as the raw set of tags
+- `-detailed`: Dump the basic member information as well as the raw set of tags
for each member. This mode reveals additional information not displayed in the
standard output format.
@@ -32,7 +32,7 @@ nomad server members [options]
Default view:
-```
+```shell
$ nomad server members
Name Addr Port Status Proto Build DC Region
node1.global 10.0.0.8 4648 alive 2 0.1.0dev dc1 global
@@ -41,7 +41,7 @@ node2.global 10.0.0.9 4648 alive 2 0.1.0dev dc1 global
Detailed view:
-```
+```shell
$ nomad server members -detailed
Name Addr Port Tags
node1 10.0.0.8 4648 bootstrap=1,build=0.1.0dev,vsn=1,vsn_max=1,dc=dc1,port=4647,region=global,role=nomad,vsn_min=1
diff --git a/website/source/docs/commands/status.html.md.erb b/website/source/docs/commands/status.html.md.erb
index 7ff6601ff..d8b3f975d 100644
--- a/website/source/docs/commands/status.html.md.erb
+++ b/website/source/docs/commands/status.html.md.erb
@@ -12,7 +12,7 @@ The `status` command displays the status output for any Nomad resource.
## Usage
-```
+```plaintext
nomad status [options]
```
@@ -31,7 +31,7 @@ for backwards compatibility and should not be relied on.
Display the status of a job:
-```
+```shell
$ nomad status example
ID = example
Name = example
@@ -63,7 +63,7 @@ e1d14a39 f9dabe93 cache 0 run running 08/28/17 23:01:39 UTC
Display the status of an allocation:
-```
+```shell
$ nomad status e1d14a39
ID = e1d14a39
Eval ID = cc882755
@@ -99,7 +99,7 @@ Time Type Description
Display the status of a deployment:
-```
+```shell
$ nomad status f5506391
ID = f5506391
Job ID = example
@@ -114,7 +114,7 @@ cache 1 1 1 0
Display the status of a node:
-```
+```shell
$ nomad status f9dabe93
ID = f9dabe93
Name = nomad-server01
diff --git a/website/source/docs/commands/ui.html.md.erb b/website/source/docs/commands/ui.html.md.erb
index b63215dd2..7f391bfa3 100644
--- a/website/source/docs/commands/ui.html.md.erb
+++ b/website/source/docs/commands/ui.html.md.erb
@@ -12,7 +12,7 @@ The `ui` command is used to open the Nomad Web UI.
## Usage
-```
+```plaintext
nomad ui [options]
```
@@ -22,7 +22,6 @@ will be opened in the default browser.
An identifier may be provided, in which case the UI will be opened to view the
details for that object. Supported identifiers are jobs, allocations and nodes.
-
## General Options
<%= partial "docs/commands/_general_options" %>
@@ -31,21 +30,21 @@ details for that object. Supported identifiers are jobs, allocations and nodes.
Open the UI homepage:
-```
+```shell
$ nomad ui
Opening URL "http://127.0.0.1:4646"
```
Open the UI directly to look at a job:
-```
+```shell
$ nomad ui redis-job
http://127.0.0.1:4646/ui/jobs/redis-job
```
Open the UI directly to look at an allocation:
-```
+```shell
$ nomad ui d4005969
Opening URL "http://127.0.0.1:4646/ui/allocations/d4005969-b16f-10eb-4fe1-a5374986083d"
```
diff --git a/website/source/docs/commands/version.html.md.erb b/website/source/docs/commands/version.html.md
similarity index 96%
rename from website/source/docs/commands/version.html.md.erb
rename to website/source/docs/commands/version.html.md
index bd0ffb6df..ad05dc4e3 100644
--- a/website/source/docs/commands/version.html.md.erb
+++ b/website/source/docs/commands/version.html.md
@@ -13,7 +13,7 @@ including the release version and the exact revision.
## Usage
-```
+```plaintext
nomad version
```
@@ -25,7 +25,7 @@ end, indicating that local, uncommitted changes were detected at build time.
## Examples
-```
+```shell
$ nomad version
Nomad v0.0.0-615-gcf3c6aa-dev (cf3c6aa8a75a689987b689d75ae2ba73458465cb+CHANGES)
```
diff --git a/website/source/docs/configuration/client.html.md b/website/source/docs/configuration/client.html.md
index b15fab9fa..a10746b5c 100644
--- a/website/source/docs/configuration/client.html.md
+++ b/website/source/docs/configuration/client.html.md
@@ -64,7 +64,7 @@ driver) but will be removed in a future release.
- `network_interface` `(string: varied)` - Specifies the name of the interface
to force network fingerprinting on. When run in dev mode, this defaults to the
loopback interface. When not in dev mode, the interface attached to the
- default route is used. The scheduler chooses from these fingerprinted IP
+ default route is used. The scheduler chooses from these fingerprinted IP
addresses when allocating ports for tasks.
If no non-local IP addresses are found, Nomad could fingerprint link-local IPv6
@@ -152,8 +152,11 @@ driver) but will be removed in a future release.
which the client will use to allocate IP addresses from.
- `template` ([Template](#template-parameters): nil) - Specifies
- controls on the behavior of task [`template`](/docs/job-specification/template.html) stanzas.
+ controls on the behavior of task
+ [`template`](/docs/job-specification/template.html) stanzas.
+- `host_volume` ([host_volume](#host_volume-stanza): nil) - Exposes
+ paths from the host as volumes that can be mounted into jobs.
### `chroot_env` Parameters
@@ -337,7 +340,6 @@ see the [drivers documentation](/docs/drivers/index.html).
reserve on all fingerprinted network devices. Ranges can be specified by using
a hyphen separated the two inclusive ends.
-
### `template` Parameters
- `function_blacklist` `([]string: ["plugin"])` - Specifies a list of template
@@ -349,6 +351,31 @@ see the [drivers documentation](/docs/drivers/index.html).
files on the client host via the `file` function. By default templates can
access files only within the task directory.
+### `host_volume` Stanza
+
+The `host_volume` stanza is used to make volumes available to jobs.
+
+The key of the stanza corresponds to the name of the volume for use in the
+`source` parameter of a `"host"` type [`volume`](/docs/job-specification/volume.html)
+and ACLs.
+
+```hcl
+client {
+ host_volume "ca-certificates" {
+ path = "/etc/ssl/certs"
+ read_only = true
+ }
+}
+```
+
+#### `host_volume` Parameters
+
+- `path` `(string: "", required)` - Specifies the path on the host that should
+ be used as the source when this volume is mounted into a task. The path must
+ exist on client startup.
+
+- `read_only` `(bool: false)` - Specifies whether the volume should only ever be
+ allowed to be mounted `read_only`, or if it should be writeable.
## `client` Examples
@@ -390,7 +417,9 @@ client {
### Custom Metadata, Network Speed, and Node Class
This example shows a client configuration which customizes the metadata, network
-speed, and node class.
+speed, and node class. The scheduler can use this information while processing
+[constraints][metadata_constraint]. The metadata is completely user configurable;
+the values below are for illustrative purposes only.
```hcl
client {
@@ -400,9 +429,13 @@ client {
meta {
"owner" = "ops"
+ "cached_binaries" = "redis,apache,nginx,jq,cypress,nodejs"
+ "rack" = "rack-12-1"
}
}
```
+
[plugin-options]: #plugin-options
[plugin-stanza]: /docs/configuration/plugin.html
[server-join]: /docs/configuration/server_join.html "Server Join"
+[metadata_constraint]: /docs/job-specification/constraint.html#user-specified-metadata "Nomad User-Specified Metadata Constraint Example"
diff --git a/website/source/docs/configuration/consul.html.md b/website/source/docs/configuration/consul.html.md
index 1fd8a9dec..3dac4d9a8 100644
--- a/website/source/docs/configuration/consul.html.md
+++ b/website/source/docs/configuration/consul.html.md
@@ -43,7 +43,7 @@ configuration, Nomad will automatically connect and configure with Consul.
An important requirement is that each Nomad agent talks to a unique Consul
agent. Nomad agents should be configured to talk to Consul agents and not
-Consul servers. If you are observing flapping services, you may have have
+Consul servers. If you are observing flapping services, you may have
multiple Nomad agents talking to the same Consul agent. As such avoid
configuring Nomad to talk to Consul via DNS such as consul.service.consul
diff --git a/website/source/docs/configuration/index.html.md b/website/source/docs/configuration/index.html.md
index 6952af1d9..51dca38bb 100644
--- a/website/source/docs/configuration/index.html.md
+++ b/website/source/docs/configuration/index.html.md
@@ -79,7 +79,7 @@ testing.
## General Parameters
-- `acl` ([ACL][acl]: nil) - Specifies configuration which is specific to ACLs.
+- `acl` `(`[`ACL`]`: nil)` - Specifies configuration which is specific to ACLs.
- `addresses` `(Addresses: see below)` - Specifies the bind address for
individual network services. Any values configured in this stanza take
@@ -130,9 +130,10 @@ testing.
Dev mode (`-dev`) defaults to localhost.
The value supports [go-sockaddr/template format][go-sockaddr/template].
-- `client` ([Client][client]: nil) - Specifies configuration which is specific to the Nomad client.
+- `client` `(`[`Client`]`: nil)` - Specifies configuration which is specific
+ to the Nomad client.
-- `consul` ([Consul][consul]: nil) - Specifies configuration for
+- `consul` `(`[`Consul`]`: nil)` - Specifies configuration for
connecting to Consul.
- `datacenter` `(string: "dc1")` - Specifies the data center of the local agent.
@@ -143,13 +144,16 @@ testing.
allocation data as well as cluster information. Server nodes use this
directory to store cluster state, including the replicated log and snapshot
data. This must be specified as an absolute path.
-
- ~> **WARNING**: This directory **must not** be set to a directory that is [included in the chroot](/docs/drivers/exec.html#chroot) if you use the [`exec`](/docs/drivers/exec.html) driver.
+
+ ~> **WARNING**: This directory **must not** be set to a directory that is
+ [included in the chroot](/docs/drivers/exec.html#chroot) if you use the
+ [`exec`](/docs/drivers/exec.html) driver.
- `disable_anonymous_signature` `(bool: false)` - Specifies if Nomad should
provide an anonymous signature for de-duplication with the update check.
-- `disable_update_check` `(bool: false)` - Specifies if Nomad should not check for updates and security bulletins.
+- `disable_update_check` `(bool: false)` - Specifies if Nomad should not check
+ for updates and security bulletins.
- `enable_debug` `(bool: false)` - Specifies if the debugging HTTP endpoints
should be enabled. These endpoints can be used with profiling tools to dump
@@ -179,6 +183,22 @@ testing.
- `log_json` `(bool: false)` - Output logs in a JSON format.
+- `log_file` `(string: "")` - Specifies the path for logging. If the path
+ does not includes a filename, the filename defaults to "nomad-{timestamp}.log".
+ This setting can be combined with `log_rotate_bytes` and `log_rotate_duration`
+ for a fine-grained log rotation control.
+
+- `log_rotate_bytes` `(int: 0)` - Specifies the number of bytes that should be
+ written to a log before it needs to be rotated. Unless specified, there is no
+ limit to the number of bytes that can be written to a log file.
+
+- `log_rotate_duration` `(duration: "24h")` - Specifies the maximum duration a
+ log should be written to before it needs to be rotated. Must be a duration
+ value such as 30s.
+
+- `log_rotate_max_files` `(int: 0)` - Specifies the maximum number of older log
+ file archives to keep. If 0 no files are ever deleted.
+
- `name` `(string: [hostname])` - Specifies the name of the local node. This
value is used to identify individual agents. When specified on a server, the
name must be unique within the region.
@@ -188,7 +208,7 @@ testing.
[data_dir](#data_dir) suffixed with "plugins", like `"/opt/nomad/plugins"`.
This must be an absolute path.
-- `plugin` ([Plugin][plugin]: nil) - Specifies configuration for a
+- `plugin` `(`[`Plugin`]`: nil)` - Specifies configuration for a
specific plugin. The plugin stanza may be repeated, once for each plugin being
configured. The key of the stanza is the plugin's executable name relative to
the [plugin_dir](#plugin_dir).
@@ -221,15 +241,18 @@ testing.
with potentially multiple zones, which map to [datacenters](#datacenter) such
as `us-west` and `us-east`.
-- `sentinel` ([Sentinel][sentinel]: nil) - Specifies configuration for Sentinel policies.
+- `sentinel` `(`[`Sentinel`]`: nil)` - Specifies configuration for Sentinel
+ policies.
-- `server` ([Server][server]: nil) - Specifies configuration which is specific to the Nomad server.
+- `server` `(`[`Server`]`: nil)` - Specifies configuration which is specific
+ to the Nomad server.
-- `syslog_facility` `(string: "LOCAL0")` - Specifies the syslog facility to write to. This has no effect unless `enable_syslog` is true.
+- `syslog_facility` `(string: "LOCAL0")` - Specifies the syslog facility to
+ write to. This has no effect unless `enable_syslog` is true.
-- `tls` ([TLS][tls]: nil) - Specifies configuration for TLS.
+- `tls` `(`[`TLS`]`: nil)` - Specifies configuration for TLS.
-- `vault` ([Vault][vault]: nil) - Specifies configuration for
+- `vault` `(`[`Vault`]`: nil)` - Specifies configuration for
connecting to Vault.
## Examples
@@ -254,13 +277,13 @@ http_api_response_headers {
}
```
-[hcl]: https://github.com/hashicorp/hcl "HashiCorp Configuration Language"
+[`ACL`]: /docs/configuration/acl.html "Nomad Agent ACL Configuration"
+[`Client`]: /docs/configuration/client.html "Nomad Agent client Configuration"
+[`Consul`]: /docs/configuration/consul.html "Nomad Agent consul Configuration"
+[`Plugin`]: /docs/configuration/plugin.html "Nomad Agent Plugin Configuration"
+[`Sentinel`]: /docs/configuration/sentinel.html "Nomad Agent sentinel Configuration"
+[`Server`]: /docs/configuration/server.html "Nomad Agent server Configuration"
+[`TLS`]: /docs/configuration/tls.html "Nomad Agent tls Configuration"
+[`Vault`]: /docs/configuration/vault.html "Nomad Agent vault Configuration"
[go-sockaddr/template]: https://godoc.org/github.com/hashicorp/go-sockaddr/template
-[consul]: /docs/configuration/consul.html "Nomad Agent consul Configuration"
-[vault]: /docs/configuration/vault.html "Nomad Agent vault Configuration"
-[tls]: /docs/configuration/tls.html "Nomad Agent tls Configuration"
-[client]: /docs/configuration/client.html "Nomad Agent client Configuration"
-[sentinel]: /docs/configuration/sentinel.html "Nomad Agent sentinel Configuration"
-[server]: /docs/configuration/server.html "Nomad Agent server Configuration"
-[acl]: /docs/configuration/acl.html "Nomad Agent ACL Configuration"
-[plugin]: /docs/configuration/plugin.html "Nomad Agent Plugin Configuration"
+[hcl]: https://github.com/hashicorp/hcl "HashiCorp Configuration Language"
diff --git a/website/source/docs/configuration/server.html.md b/website/source/docs/configuration/server.html.md
index 0431c784f..2c153c9b1 100644
--- a/website/source/docs/configuration/server.html.md
+++ b/website/source/docs/configuration/server.html.md
@@ -83,7 +83,8 @@ server {
frequent but smaller collections. Raising the interval will perform collections
less frequently but collect more jobs at a time. Reducing this interval is
useful if there is a large throughput of tasks, leading to a large set of
- dead jobs. This is specified using a label suffix like "30s" or "3m".
+ dead jobs. This is specified using a label suffix like "30s" or "3m". `job_gc_interval`
+ was introduced in Nomad 0.10.0.
- `job_gc_threshold` `(string: "4h")` - Specifies the minimum time a job must be
in the terminal state before it is eligible for garbage collection. This is
diff --git a/website/source/docs/drivers/docker.html.md b/website/source/docs/drivers/docker.html.md
index f382b6f46..62d4943d8 100644
--- a/website/source/docs/drivers/docker.html.md
+++ b/website/source/docs/drivers/docker.html.md
@@ -413,6 +413,8 @@ The `docker` driver supports the following configuration in the job spec. Only
* `pids_limit` - (Optional) An integer value that specifies the pid limit for
the container. Defaults to unlimited.
+Additionally, the docker driver supports customization of the container's user through the task's [`user` option](/docs/job-specification/task.html#user).
+
### Container Name
Nomad creates a container after pulling an image. Containers are named
diff --git a/website/source/docs/drivers/exec.html.md b/website/source/docs/drivers/exec.html.md
index 2afd7092d..2ce838433 100644
--- a/website/source/docs/drivers/exec.html.md
+++ b/website/source/docs/drivers/exec.html.md
@@ -32,9 +32,10 @@ task "webservice" {
The `exec` driver supports the following configuration in the job spec:
* `command` - The command to execute. Must be provided. If executing a binary
- that exists on the host, the path must be absolute. If executing a binary that
- is downloaded from an [`artifact`](/docs/job-specification/artifact.html), the
- path can be relative from the allocations's root directory.
+ that exists on the host, the path must be absolute and within the task's
+ [chroot](exec.html#chroot). If executing a binary that is downloaded from
+ an [`artifact`](/docs/job-specification/artifact.html), the path can be
+ relative from the allocations's root directory.
* `args` - (Optional) A list of arguments to the `command`. References
to environment variables or any [interpretable Nomad
diff --git a/website/source/docs/drivers/external/firecracker-task-driver.html.md b/website/source/docs/drivers/external/firecracker-task-driver.html.md
new file mode 100644
index 000000000..371949afd
--- /dev/null
+++ b/website/source/docs/drivers/external/firecracker-task-driver.html.md
@@ -0,0 +1,130 @@
+---
+layout: "docs"
+page_title: "Drivers: firecracker-task-driver"
+sidebar_current: "docs-drivers-community-firecracker-task-driver"
+description: |-
+ The Firecracker task driver is used to run firecracker(https://firecracker-microvm.github.io/) microvms.
+---
+
+# Firecracker task Driver
+
+Name: `firecracker-task-driver`
+
+The Firecracker task driver provides an interface for creating Linux microvms.
+For more detailed instructions on how to set up and use this driver, please
+refer to the [documentation][firecracker-task-guide].
+
+## Task Configuration
+
+```hcl
+task "test01" {
+ driver = "firecracker-task-driver"
+
+ config {
+ KernelImage = "/home/build/hello-vmlinux.bin"
+ Firecracker = "/home/build/firecracker"
+ Vcpus = 1
+ Mem = 128
+ Network = "default"
+ }
+}
+```
+
+The firecracker task driver supports the following parameters:
+
+- `KernelImage` - (Optional) Path to the kernel image to be used on the microvm.
+ Defaults to 'vmlinux' on nomad's allocation directory.
+
+- `BootDisk` - (Optional) Path to the ext4 rootfs to boot from.
+ Defaults to 'rootfs.ext4' on nomad's allocation directory.
+
+- `BootOptions` - (Optional) Kernel command line options to boot the microvm.
+ Defaults to "ro console=ttyS0 reboot=k panic=1 pci=off"
+
+- `Network` - (Optional) Network name of your container network configuration
+ file.
+
+- `Vcpus` - (Optional) Number of CPUs to assign to microvm.
+
+- `Cputype` - (Optional) CPU template to use, templates available are C3 or T2.
+
+- `Mem` - (Optional) Amount of memory in Megabytes to assign to microvm.
+ Defaults to 512
+
+- `Firecracker` Location of the firecracker binary, the option could be omitted
+ if the environment variable FIRECRACKER_BIN is setup. Defaults to
+ '/usr/bin/firecracker'
+
+- `DisableHt` - (Optional) Disable CPU Hyperthreading. Defaults to false
+
+- `Log` - (Optional) path to file where to write firecracker logs.
+
+## Networking
+
+Network configuration is setup using CNI plugins, the steps to setup firecracker
+task driver with cni are the following:
+
+- Build [cni plugins][Container network plugins] and [tc-redirect-tap][tc-redirect-tap]
+ and copy them to `/opt/cni`.
+
+- Create a network configuration to be used by micro-vms on /etc/cni/conf.d/,
+ for example: default.conflist.
+
+### Example network configuration
+
+```json
+{
+ "name": "default",
+ "cniVersion": "0.4.0",
+ "plugins": [
+ {
+ "type": "ptp",
+ "ipMasq": true,
+ "ipam": {
+ "type": "host-local",
+ "subnet": "192.168.127.0/24",
+ "resolvConf": "/etc/resolv.conf"
+ }
+ },
+ {
+ "type": "firewall"
+ },
+ {
+ "type": "tc-redirect-tap"
+ }
+ ]
+}
+```
+
+In this example the name of this network is default and this name is the
+parameter used in Network on the task driver job spec. Also the filename must
+match the name of the network, and use the .conflist extension.
+
+## Client Requirements
+
+`firecracker-task-driver` requires the following:
+
+- Linux 4.14+ Firecracker currently supports physical Linux x86_64 and aarch64
+ hosts, running kernel version 4.14 or later. However, the aarch64 support is
+ not feature complete (alpha stage)
+
+- The [Firecracker binary][Firecracker binary]
+
+- KVM enabled in your Linux kernel, and you have read/write access to /dev/kvm
+
+- tun kernel module
+
+- The firecracker-task-driver binary placed in the [plugin_dir][plugin_dir]
+ directory
+
+- ip6tables package
+
+- [Container network plugins][Container network plugins]
+
+- [tc-redirect-tap][tc-redirect-tap]
+
+[plugin_dir]: /docs/configuration/index.html#plugin_dir
+[tc-redirect-tap]:https://github.com/firecracker-microvm/firecracker-go-sdk/tree/master/cni
+[Container network plugins]:https://github.com/containernetworking/plugins
+[Firecracker binary]:https://github.com/firecracker-microvm/firecracker/releases
+[firecracker-task-guide]:https://github.com/cneira/firecracker-task-driver
diff --git a/website/source/docs/drivers/external/index.html.md b/website/source/docs/drivers/external/index.html.md
index 1405ae36a..a4d43cb62 100644
--- a/website/source/docs/drivers/external/index.html.md
+++ b/website/source/docs/drivers/external/index.html.md
@@ -25,8 +25,12 @@ Below is a list of community-supported task drivers you can use with Nomad:
- [LXC][lxc]
- [Singularity][singularity]
- [Jail task driver][jail-task-driver]
+- [Pot][pot]
+- [Firecracker][firecracker-task-driver]
[lxc]: /docs/drivers/external/lxc.html
[plugin_guide]: /docs/internals/plugins/index.html
[singularity]: /docs/drivers/external/singularity.html
[jail-task-driver]: /docs/drivers/external/jail-task-driver.html
+[pot]: /docs/drivers/external/pot.html
+[firecracker-task-driver]: /docs/drivers/external/firecracker-task-driver.html
diff --git a/website/source/docs/drivers/external/lxc.html.md b/website/source/docs/drivers/external/lxc.html.md
index 042390fcc..33f9bf49c 100644
--- a/website/source/docs/drivers/external/lxc.html.md
+++ b/website/source/docs/drivers/external/lxc.html.md
@@ -13,7 +13,7 @@ Name: `lxc`
The `lxc` driver provides an interface for using LXC for running application
containers. You can download the external LXC driver [here][lxc-driver]. For more detailed instructions on how to set up and use this driver, please refer to the [LXC guide][lxc-guide].
-~> The LXC client set up has changed in Nomad 0.9. You must use the new [plugin syntax][plugin] and install the external LXC driver in the [plugin_dir][plugin_dir] prior to upgrading. See [plugin options][plugin-options] below for an example. Note the job specification remains the same.
+~> **Note:** The LXC client set up has changed in Nomad 0.9. You must use the new [plugin syntax][plugin] and install the external LXC driver in the [plugin_dir][plugin_dir] prior to upgrading. See [plugin options][plugin-options] below for an example. Note the job specification remains the same.
## Task Configuration
@@ -25,6 +25,19 @@ task "busybox" {
log_level = "trace"
verbosity = "verbose"
template = "/usr/share/lxc/templates/lxc-busybox"
+ template_args = []
+
+ # these optional values can be set in the template
+ distro = ""
+ release = ""
+ arch = ""
+ image_variant = "default"
+ image_server = "images.linuxcontainers.org"
+ gpg_key_id = ""
+ gpg_key_server = ""
+ disable_gpg = false
+ flush_cache = false
+ force_cache = false
}
}
```
@@ -39,6 +52,8 @@ The `lxc` driver supports the following configuration in the job spec:
}
```
+* `template_args` - A list of argument strings to pass into the template.
+
* `log_level` - (Optional) LXC library's logging level. Defaults to `error`.
Must be one of `trace`, `debug`, `info`, `warn`, or `error`.
@@ -59,24 +74,43 @@ The `lxc` driver supports the following configuration in the job spec:
* `volumes` - (Optional) A list of `host_path:container_path` strings to bind-mount host paths to container paths. Mounting host paths outside of the allocation directory can be disabled on clients by setting the [`volumes_enabled`](#volumes_enabled) option set to false. This will limit volumes to directories that exist inside the allocation directory.
- Note that unlike the similar option for the docker driver, this
- option must not have an absolute path as the `container_path`
- component. This will cause an error when submitting a job.
+ ~> **Note:** Unlike the similar option for the docker driver, this
+ option must not have an absolute path as the `container_path`
+ component. This will cause an error when submitting a job.
- Setting this does not affect the standard bind-mounts of `alloc`,
- `local`, and `secrets`, which are always created.
+ Setting this does not affect the standard bind-mounts of `alloc`,
+ `local`, and `secrets`, which are always created.
-```hcl
-config {
- volumes = [
- # Use absolute paths to mount arbitrary paths on the host
- "/path/on/host:path/in/container",
+ ```hcl
+ config {
+ volumes = [
+ # Use absolute paths to mount arbitrary paths on the host
+ "/path/on/host:path/in/container",
+
+ # Use relative paths to rebind paths already in the allocation dir
+ "relative/to/task:also/in/container"
+ ]
+ }
+ ```
+
+* `release` - (Optional) The name/version of the distribution. By default this is set by the template.
+
+* `arch` - (Optional) The architecture of the container. By default this is set by the template.
+
+* `image_server` - (Optional) The hostname of the image server. Defaults to `images.linuxcontainers.org`.
+
+* `image_variant` - (Optional) The variant of the image. Defaults to `default` or as set by the template.
+
+* `disable_gpg` - (Optional) Disable GPG validation of images. Defaults to `false`, and enabling this flag is not recommended.
+
+* `flush_cache` - (Optional) Flush the local copy of the image (if present) and force it to be fetched from the image server. Defaults to `false`.
+
+* `force_cache` - (Optional) Force the use of the local copy even if expired. Defaults to `false`.
+
+* `gpg_key_server`: GPG key server used for checking image signatures. Default is set by the underlying LXC library.
+
+* `gpg_key_id`: GPG key ID used for checking image signatures. Default is set by the underlying LXC library.
- # Use relative paths to rebind paths already in the allocation dir
- "relative/to/task:also/in/container"
- ]
-}
-```
## Networking
@@ -90,17 +124,22 @@ The `lxc` driver requires the following:
* 64-bit Linux host
* The `linux_amd64` Nomad binary
-* The LXC driver binary placed in the [plugin_dir][plugin_dir] directory.
+* The LXC driver binary placed in the [plugin_dir][plugin_dir] directory.
* `liblxc` to be installed
* `lxc-templates` to be installed
-## Plugin Options
+## Plugin Options
* `enabled` - The `lxc` driver may be disabled on hosts by setting this option to `false` (defaults to `true`).
-* `volumes_enabled` - Specifies whether host can bind-mount host paths to container paths (defaults to `true`).
+* `volumes_enabled` - Specifies whether host can bind-mount host paths to container paths (defaults to `true`).
-* `lxc_path` - The location in which all containers are stored (commonly defaults to `/var/lib/lxc`). See [`lxc-create`][lxc-create] for more details.
+* `lxc_path` - The location in which all containers are stored (commonly defaults to `/var/lib/lxc`). See [`lxc-create`][lxc-create] for more details.
+
+* `gc` stanza:
+ * `container` - Defaults to `true`. This option can be used to disable Nomad
+ from removing a container when the task exits. Under a name conflict,
+ Nomad may still remove the dead container.
An example of using these plugin options with the new [plugin
syntax][plugin] is shown below:
@@ -111,6 +150,9 @@ plugin "nomad-driver-lxc" {
enabled = true
volumes_enabled = true
lxc_path = "/var/lib/lxc"
+ gc {
+ container = false
+ }
}
}
```
@@ -118,11 +160,10 @@ Please note the plugin name should match whatever name you have specified for th
## Client Configuration
-~> Only use this section for pre-0.9 releases of Nomad. If you are using Nomad
+-> Only use this section for pre-0.9 releases of Nomad. If you are using Nomad
0.9 or above, please see [plugin options][plugin-options]
-The `lxc` driver has the following [client configuration
-options](/docs/configuration/client.html#options):
+The `lxc` driver has the following [client-level options][client_options]:
* `lxc.enable` - The `lxc` driver may be disabled on hosts by setting this
option to `false` (defaults to `true`).
@@ -146,3 +187,4 @@ isolation is not supported as of now.
[plugin]: /docs/configuration/plugin.html
[plugin_dir]: /docs/configuration/index.html#plugin_dir
[plugin-options]: #plugin_options
+[client_options]: /docs/configuration/client.html#options
diff --git a/website/source/docs/drivers/external/pot.html.md b/website/source/docs/drivers/external/pot.html.md
new file mode 100644
index 000000000..261170adb
--- /dev/null
+++ b/website/source/docs/drivers/external/pot.html.md
@@ -0,0 +1,90 @@
+---
+layout: "docs"
+page_title: "Drivers: pot"
+sidebar_current: "docs-drivers-community-pot"
+description: |-
+ The Pot task driver is used to run pot (https://github.com/pizzamig/pot) containers using FreeBSD jails.
+---
+
+# Pot task Driver
+
+Name: `pot`
+
+The Pot task driver provides an interface for using [pot][pot-github-repo] for dynamically running applications inside a FreeBSD Jail.
+You can download the external nomad-pot-driver [here][nomad-pot-driver].
+
+## Task Configuration
+
+```hcl
+task "nginx-pot" {
+ driver = "pot"
+
+ config {
+ image = "https://pot-registry.zapto.org/registry/"
+ pot = "FBSD120-nginx"
+ tag = "1.0"
+ command = "nginx -g 'daemon off;'"
+ network_mode = "public-bridge"
+ port_map = {
+ http = "80"
+ }
+ copy = [
+ "/root/index.html:/usr/local/www/nginx-dist/index.html",
+ "/root/nginx.conf:/usr/local/etc/nginx/nginx.conf"
+ ]
+ mount = [
+ "/tmp/test:/root/test",
+ ]
+ mount_read_only = [
+ "/tmp/test2:/root/test2"
+ ]
+ }
+}
+```
+
+The pot task driver supports the following parameters:
+
+* `image` - The url for the http registry from where to get the image.
+
+* `pot` - Name of the image in the registry.
+
+* `tag` - Version of the image.
+
+* `command` - Command that is going to be executed once the jail is started.
+
+* `network_mode` - (Optional) Defines the network mode of the pot. Default: **"public-bridge"**
+
+ Possible values are:
+
+ **"public-bridge"** pot creates an internal virtual network with a NAT table where all traffic is going to be sent.
+
+ **"host"** pot bounds the jail directly to a host port.
+
+* `port_map` - (Optional) Sets the port on which the application is listening inside of the jail. If not set, the application will inherit the port configuration from the image.
+
+* `copy` - (Optional) Copies a file from the host machine to the pot jail in the given directory.
+
+* `mount` - (Optional) Mounts a read/write folder from the host machine to the pot jail.
+
+* `mount_read_only` - (Optional) Mounts a read only directory inside the pot jail.
+
+## Client Requirements
+
+`pot Task Driver` requires the following:
+
+* 64-bit FreeBSD 12.0-RELEASE host .
+* The FreeBSD's Nomad binary (available as a package).
+* The pot-task-driver binary placed in the [plugin_dir][plugin_dir] directory.
+* Installing [pot][pot-github-repo] and following the install [guide][pot-install-guide].
+* Webserver from where to serve the images. (simple file server)
+* Following lines need to be included in your rc.conf
+
+```
+nomad_user="root"
+nomad_env="PATH=/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/sbin:/bin"
+```
+
+[nomad-pot-driver]: https://github.com/trivago/nomad-pot-driver
+[plugin_dir]: /docs/configuration/index.html#plugin_dir
+[pot-github-repo]: https://github.com/pizzamig/pot
+[pot-install-guide]: https://github.com/pizzamig/pot/blob/master/share/doc/pot/Installation.md
diff --git a/website/source/docs/drivers/index.html.md b/website/source/docs/drivers/index.html.md
index 0006c71f7..a79611f05 100644
--- a/website/source/docs/drivers/index.html.md
+++ b/website/source/docs/drivers/index.html.md
@@ -29,6 +29,15 @@ used in, and the resource isolation mechanisms available.
For details on authoring a task driver plugin, please refer to the [plugin
authoring guide][plugin_guide].
+Task driver resource isolation is intended to provide a degree of separation of
+Nomad client CPU / memory / storage between tasks. Resource isolation
+effectiveness is dependent upon individual task driver implementations and
+underlying client operating systems. Task drivers do include various
+security-related controls, but the Nomad client to task interface should not be
+considered a security boundary. See the [access control guide][acl_guide] for
+more information on how to protect Nomad cluster operations.
+
[plugin]: /docs/configuration/plugin.html
[docker_plugin]: /docs/drivers/docker.html#client-requirements
[plugin_guide]: /docs/internals/plugins/index.html
+[acl_guide]: https://www.nomadproject.io/guides/security/acl.html
diff --git a/website/source/docs/job-specification/connect.html.md b/website/source/docs/job-specification/connect.html.md
new file mode 100644
index 000000000..a8bc94583
--- /dev/null
+++ b/website/source/docs/job-specification/connect.html.md
@@ -0,0 +1,100 @@
+---
+layout: "docs"
+page_title: "connect Stanza - Job Specification"
+sidebar_current: "docs-job-specification-connect"
+description: |-
+ The "connect" stanza allows specifying options for Consul Connect integration
+---
+
+# `connect` Stanza
+
+
+
+ Placement
+
+ job -> group -> service -> **connect**
+
+
+
+
+The `connect` stanza allows configuring various options for
+[Consul Connect](/guides/integrations/consul-connect/index.html). It is
+valid only within the context of a service definition at the task group
+level.
+
+```hcl
+ job "countdash" {
+ datacenters = ["dc1"]
+ group "api" {
+ network {
+ mode = "bridge"
+ }
+
+ service {
+ name = "count-api"
+ port = "9001"
+
+ connect {
+ sidecar_service {}
+ }
+ }
+
+ task "web" {
+ driver = "docker"
+ config {
+ image = "test/test:v1"
+ }
+ }
+ }
+ }
+
+```
+
+## `connect` Parameters
+
+- `sidecar_service` - ([sidecar_service][]: nil) - This is used to configure the sidecar
+ service injected by Nomad for Consul Connect.
+
+- `sidecar_task` - ([sidecar_task][]:nil) - This modifies the configuration of the Envoy
+ proxy task.
+
+## `connect` Examples
+
+The following example is a minimal connect stanza with defaults and is
+sufficient to start an Envoy proxy sidecar for allowing incoming connections
+via Consul Connect.
+
+```hcl
+ connect {
+ sidecar_service {}
+ }
+```
+
+The following example includes specifying [`upstreams`][upstreams].
+
+```hcl
+ connect {
+ sidecar_service {
+ proxy {
+ upstreams {
+ destination_name = "count-api"
+ local_bind_port = 8080
+ }
+ }
+ }
+ }
+ ```
+
+### Limitations
+
+[Consul Connect Native services][native] and [Nomad variable
+interpolation][interpolation] are *not* supported in Nomad 0.10.0.
+
+[job]: /docs/job-specification/job.html "Nomad job Job Specification"
+[group]: /docs/job-specification/group.html "Nomad group Job Specification"
+[task]: /docs/job-specification/task.html "Nomad task Job Specification"
+[interpolation]: /docs/runtime/interpolation.html "Nomad interpolation"
+[sidecar_service]: /docs/job-specification/sidecar_service.html "Nomad sidecar service Specification"
+[sidecar_task]: /docs/job-specification/sidecar_task.html "Nomad sidecar task config Specification"
+[upstreams]: /docs/job-specification/upstreams.html "Nomad sidecar service upstreams Specification"
+[native]: https://www.consul.io/docs/connect/native.html
diff --git a/website/source/docs/job-specification/constraint.html.md b/website/source/docs/job-specification/constraint.html.md
index 0425cff3a..db3ea4eff 100644
--- a/website/source/docs/job-specification/constraint.html.md
+++ b/website/source/docs/job-specification/constraint.html.md
@@ -85,6 +85,7 @@ all groups (and tasks) in the job.
regexp
set_contains
version
+ semver
is_set
is_not_set
```
@@ -138,7 +139,7 @@ constraint {
must be 1 or greater and if omitted, defaults to 1. When specified as a job
constraint, it applies to all groups in the job. When specified as a group
constraint, the effect is constrained to that group. This constraint can not
- be specified at the task level.
+ be specified at the task level.
```hcl
constraint {
@@ -186,7 +187,10 @@ constraint {
- `"version"` - Specifies a version constraint against the attribute. This
supports a comma-separated list of constraints, including the pessimistic
- operator. For more examples please see the [go-version
+ operator. `version` will not consider a prerelease (eg `1.6.0-beta`)
+ sufficient to match a non-prerelease constraint (eg `>= 1.0`). Use the
+ `semver` constraint for strict [Semantic Versioning 2.0][semver2] ordering.
+ For more examples please see the [go-version
repository](https://github.com/hashicorp/go-version) for more specific
examples.
@@ -198,12 +202,26 @@ constraint {
}
```
+- `"semver"` - Specifies a version constraint against the attribute. Only
+ [Semantic Versioning 2.0][semver2] compliant versions and comparison
+ operators are supported, so there is no pessimistic operator. Unlike `version`,
+ this operator considers prereleases (eg `1.6.0-beta`) sufficient to satisfy
+ non-prerelease constraints (eg `>= 1.0`). _Added in Nomad v0.10.2._
+
+ ```hcl
+ constraint {
+ attribute = "..."
+ operator = "semver"
+ value = ">= 0.1.0, < 0.2"
+ }
+ ```
+
- `"is_set"` - Specifies that a given attribute must be present. This can be
combined with the `"!="` operator to require that an attribute has been set
before checking for equality. The default behavior for `"!="` is to include
nodes that don't have that attribute set.
-- `"is_not_set"` - Specifies that a given attribute must not be present.
+- `"is_not_set"` - Specifies that a given attribute must not be present.
## `constraint` Examples
@@ -227,7 +245,7 @@ constraint {
A potential use case of the `distinct_property` constraint is to spread a
service with `count > 1` across racks to minimize correlated failure. Nodes can
-be annotated with which rack they are on using [client
+be annotated with which rack they are on using [custom client
metadata][client-meta] with values such as "rack-12-1", "rack-12-2", etc.
The following constraint would assure that an individual rack is not running
more than 2 instances of the task group.
@@ -273,7 +291,7 @@ constraint {
This example restricts the task to running on nodes where the binaries for
redis, cypress, and nginx are all cached locally. This particular example is
-utilizing node [metadata][meta].
+utilizing [custom client metadata][client-meta].
```hcl
constraint {
@@ -288,3 +306,5 @@ constraint {
[task]: /docs/job-specification/task.html "Nomad task Job Specification"
[interpolation]: /docs/runtime/interpolation.html "Nomad interpolation"
[node-variables]: /docs/runtime/interpolation.html#node-variables- "Nomad interpolation-Node variables"
+[client-meta]: /docs/configuration/client.html#custom-metadata-network-speed-and-node-class "Nomad Custom Metadata, Network Speed, and Node Class"
+[semver2]: https://semver.org/spec/v2.0.0.html "Semantic Versioning 2.0"
diff --git a/website/source/docs/job-specification/group.html.md b/website/source/docs/job-specification/group.html.md
index 772893a27..1f4d68d88 100644
--- a/website/source/docs/job-specification/group.html.md
+++ b/website/source/docs/job-specification/group.html.md
@@ -73,6 +73,9 @@ job "docs" {
required by all tasks in this group. Overrides a `vault` block set at the
`job` level.
+- `volume` ([Volume][]: nil) - Specifies the volumes that are
+ required by tasks within the group.
+
## `group` Examples
The following examples only show the `group` stanzas. Remember that the
@@ -134,3 +137,4 @@ group "example" {
[reschedule]: /docs/job-specification/reschedule.html "Nomad reschedule Job Specification"
[restart]: /docs/job-specification/restart.html "Nomad restart Job Specification"
[vault]: /docs/job-specification/vault.html "Nomad vault Job Specification"
+[volume]: /docs/job-specification/volume.html "Nomad volume Job Specification"
diff --git a/website/source/docs/job-specification/index.html.md b/website/source/docs/job-specification/index.html.md
index c9556f4d8..339c0e834 100644
--- a/website/source/docs/job-specification/index.html.md
+++ b/website/source/docs/job-specification/index.html.md
@@ -129,5 +129,20 @@ job "docs" {
}
```
+Note that starting with Nomad 0.10, the `service` stanza can also be specified at the group level. This
+allows job specification authors to create and register services with Consul Connect support. A service
+stanza specified at the group level must include a [connect][] stanza, like the following snippet.
+
+```hcl
+service {
+ name = "count-api"
+ port = "9001"
+
+ connect {
+ sidecar_service {}
+ }
+ }
+```
[hcl]: https://github.com/hashicorp/hcl "HashiCorp Configuration Language"
[job]: /docs/job-specification/job.html "Nomad job Job Specification"
+[connect]: /docs/job-specification/connect.html "Connect Stanza Specification"
diff --git a/website/source/docs/job-specification/network.html.md b/website/source/docs/job-specification/network.html.md
index e0ce32531..17828ce63 100644
--- a/website/source/docs/job-specification/network.html.md
+++ b/website/source/docs/job-specification/network.html.md
@@ -4,7 +4,9 @@ page_title: "network Stanza - Job Specification"
sidebar_current: "docs-job-specification-network"
description: |-
The "network" stanza specifies the networking requirements for the task,
- including the minimum bandwidth and port allocations.
+ including the minimum bandwidth and port allocations. The network stanza
+ can be specified at the task group level to enable all tasks in the task
+ group to share the same network namespace.
---
# `network` Stanza
@@ -12,6 +14,12 @@ description: |-
Placement
+
+ job -> group -> **network**
+
+
+
+ Placement
job -> group -> task -> resources -> **network**
@@ -25,6 +33,15 @@ and services. Because you don't know in advance what host your job will be
provisioned on, Nomad will provide your tasks with network configuration when
they start up.
+Nomad 0.10 enables support for the `network` stanza at the task group level. When
+the `network` stanza is defined at the group level with `bridge` as the networking mode,
+all tasks in the task group share the same network namespace. This is a prerequisite for
+[Consul Connect](/guides/integrations/consul-connect/index.html). Tasks running within a
+network namespace are not visible to applications outside the namespace on the same host.
+This allows [Connect][] enabled applications to bind only to localhost within the shared network stack,
+and use the proxy for ingress and egress traffic.
+
+
Note that this document only applies to services that want to _listen_ on a
port. Batch jobs or services that only make outbound connections do not need to
allocate ports, since they will use any available interface to make an outbound
@@ -57,10 +74,23 @@ job "docs" {
- `port` ([Port](#port-parameters): nil) - Specifies a TCP/UDP port
allocation and can be used to specify both dynamic ports and reserved ports.
+- `mode` `(string: "host")` - Mode of the network. The following modes are available:
+
+ - `none` - Task group will have an isolated network without any network interfaces.
+ - `bridge` - Task group will have an isolated network namespace with an interface
+ that is bridged with the host. Note that bridge networking is only
+ currently supported for the `docker`, `exec`, `raw_exec`, and `java` task
+ drivers.
+ - `host` - Each task will join the host network namespace and a shared network
+ namespace is not created. This matches the current behavior in Nomad 0.9.
+
### `port` Parameters
- `static` `(int: nil)` - Specifies the static TCP/UDP port to allocate. If omitted, a dynamic port is chosen. We **do not recommend** using static ports, except
for `system` or specialized jobs like load balancers.
+- `to` `(string:nil)` - Applicable when using "bridge" mode to configure port
+ to map to inside the task's network namespace. The `NOMAD_PORT_`
+ environment variable will contain the `to` value.
The label assigned to the port is used to identify the port in service
discovery, and used in the name of the environment variable that indicates
@@ -167,6 +197,27 @@ When the task is started, it is passed an additional environment variable named
`NOMAD_HOST_PORT_http` which indicates the host port that the HTTP service is
bound to.
+### Bridge Mode
+
+The following example is a group level network stanza that uses bridge mode
+and port mapping.
+
+```hcl
+network {
+ mode = "bridge"
+ port "http" {
+ static = 9002
+ to = 9002
+ }
+}
+```
+
+### Limitations
+
+* Only one `network` stanza can be specified, when it is defined at the task group level.
+* Only the `NOMAD_PORT_` and `NOMAD_HOST_PORT_` environment
+ variables are set for group network ports.
[docker-driver]: /docs/drivers/docker.html "Nomad Docker Driver"
[qemu-driver]: /docs/drivers/qemu.html "Nomad QEMU Driver"
+[Connect]: /docs/job-specification/connect.html "Nomad Consul Connect Integration"
diff --git a/website/source/docs/job-specification/proxy.html.md b/website/source/docs/job-specification/proxy.html.md
new file mode 100644
index 000000000..f976cb2cf
--- /dev/null
+++ b/website/source/docs/job-specification/proxy.html.md
@@ -0,0 +1,89 @@
+---
+layout: "docs"
+page_title: "proxy Stanza - Job Specification"
+sidebar_current: "docs-job-specification-proxy"
+description: |-
+ The "proxy" stanza allows specifying options for configuring
+ sidecar proxies used in Consul Connect integration
+---
+
+# `proxy` Stanza
+
+
+
+ Placement
+
+ job -> group -> service -> connect -> sidecar_service -> **proxy**
+
+
+
+
+The `proxy` stanza allows configuring various options for the sidecar proxy
+managed by Nomad for [Consul
+Connect](/guides/integrations/consul-connect/index.html). It is valid only
+within the context of a `sidecar_service` stanza.
+
+```hcl
+ job "countdash" {
+ datacenters = ["dc1"]
+ group "api" {
+ network {
+ mode = "bridge"
+ }
+
+ service {
+ name = "count-api"
+ port = "9001"
+
+ connect {
+ sidecar_service {}
+ }
+ }
+ task "web" {
+ driver = "docker"
+ config {
+ image = "test/test:v1"
+ }
+ }
+ }
+ }
+
+```
+
+## `proxy` Parameters
+
+- `local_service_address` `(string: "127.0.0.1")` - The address the local service binds to. Useful to
+ customize in clusters with mixed Connect and non-Connect services.
+- `local_service_port` (int:[port][]) - The port the local service binds to.
+ Usually the same as the parent service's port, it is useful to customize in clusters with mixed
+ Connect and non-Connect services
+- `upstreams` ([upstreams][]: nil) - Used to configure details of each upstream service that
+ this sidecar proxy communicates with.
+- `config` (map: nil) - Proxy configuration that's opaque to Nomad and
+ passed directly to Consul. See [Consul Connect's
+ documentation](https://www.consul.io/docs/connect/proxies/envoy.html#dynamic-configuration)
+ for details.
+
+## `proxy` Examples
+
+The following example is a proxy specification that includes upstreams configuration.
+
+```hcl
+ sidecar_service {
+ proxy {
+ upstreams {
+ destination_name = "count-api"
+ local_bind_port = 8080
+ }
+ }
+ }
+
+ ```
+
+[job]: /docs/job-specification/job.html "Nomad job Job Specification"
+[group]: /docs/job-specification/group.html "Nomad group Job Specification"
+[task]: /docs/job-specification/task.html "Nomad task Job Specification"
+[interpolation]: /docs/runtime/interpolation.html "Nomad interpolation"
+[sidecar_service]: /docs/job-specification/sidecar_service.html "Nomad sidecar service Specification"
+[upstreams]: /docs/job-specification/upstreams.html "Nomad upstream config Specification"
+[port]: /docs/job-specification/network.html#port-parameters "Nomad network port configuration"
diff --git a/website/source/docs/job-specification/service.html.md b/website/source/docs/job-specification/service.html.md
index ab7a68b13..8859be214 100644
--- a/website/source/docs/job-specification/service.html.md
+++ b/website/source/docs/job-specification/service.html.md
@@ -16,13 +16,17 @@ description: |-
job -> group -> task -> **service**
+ Placement
+
+ job -> group -> **service**
+
+
-The `service` stanza instructs Nomad to register the task as a service using the
-service discovery integration. This section of the documentation will discuss the
-configuration, but please also read the
-[Nomad service discovery documentation][service-discovery] for more detailed
-information about the integration.
+The `service` stanza instructs Nomad to register a service with Consul. This
+section of the documentation will discuss the configuration, but please also
+read the [Nomad service discovery documentation][service-discovery] for more
+detailed information about the integration.
```hcl
job "docs" {
@@ -64,12 +68,13 @@ job "docs" {
}
```
-This section of the documentation only covers the job file options for
-configuring service discovery. For more information on the setup and
-configuration to integrate Nomad with service discovery, please see the
-[Nomad service discovery documentation][service-discovery]. There are steps you
-must take to configure Nomad. Simply adding this configuration to your job file
-does not automatically enable service discovery.
+This section of the documentation only cover the job file fields and stanzas
+for service discovery. For more details on using Nomad with Consul please see
+the [Consul integration documentation][service-discovery].
+
+Nomad 0.10 also allows specifying the `service` stanza at the task group level.
+This enables services in the same task group to opt into [Consul
+Connect][connect] integration.
## `service` Parameters
@@ -78,6 +83,9 @@ does not automatically enable service discovery.
define multiple checks for the service. At this time, Nomad supports the
`grpc`, `http`, `script`1 , and `tcp` checks.
+- `connect` - Configures the [Consul Connect][connect] integration. Only
+ available on group services.
+
- `name` `(string: "--")` - Specifies the name this service
will be advertised as in Consul. If not supplied, this will default to the
name of the job, group, and task concatenated together with a dash, like
@@ -213,6 +221,11 @@ scripts.
- `protocol` `(string: "http")` - Specifies the protocol for the http-based
health checks. Valid options are `http` and `https`.
+- `task` `(string: )` - Specifies the task associated with this
+ check. Scripts are executed within the task's environment, and
+ `check_restart` stanzas will apply to the specified task. For `checks` on group
+ level `services` only.
+
- `timeout` `(string: )` - Specifies how long Consul will wait for a
health check query to succeed. This is specified using a label suffix like
"30s" or "1h". This must be greater than or equal to "1s"
@@ -614,7 +627,6 @@ job "example" {
The `service` and `check` stanzas can both specify the port number to
advertise and check directly since Nomad isn't managing any port assignments.
-
- - -
1 Script checks are not supported for the
@@ -628,3 +640,4 @@ system of a task for that driver.
[network]: /docs/job-specification/network.html "Nomad network Job Specification"
[qemu]: /docs/drivers/qemu.html "Nomad qemu Driver"
[restart_stanza]: /docs/job-specification/restart.html "restart stanza"
+[connect]: /docs/job-specification/connect.html "Nomad Consul Connect Integration"
diff --git a/website/source/docs/job-specification/sidecar_service.html.md b/website/source/docs/job-specification/sidecar_service.html.md
new file mode 100644
index 000000000..231a83728
--- /dev/null
+++ b/website/source/docs/job-specification/sidecar_service.html.md
@@ -0,0 +1,91 @@
+---
+layout: "docs"
+page_title: "sidecar_service Stanza - Job Specification"
+sidebar_current: "docs-job-specification-sidecar-service"
+description: |-
+ The "sidecar_service" stanza allows specifying options for configuring
+ sidecar proxies used in Consul Connect integration
+---
+
+# `sidecar_service` Stanza
+
+
+
+ Placement
+
+ job -> group -> service -> connect -> **sidecar_service**
+
+
+
+
+The `sidecar_service` stanza allows configuring various options for the sidecar
+proxy managed by Nomad for [Consul
+Connect](/guides/integrations/consul-connect/index.html) integration. It is
+valid only within the context of a connect stanza.
+
+```hcl
+ job "countdash" {
+ datacenters = ["dc1"]
+ group "api" {
+ network {
+ mode = "bridge"
+ }
+
+ service {
+ name = "count-api"
+ port = "9001"
+
+ connect {
+ sidecar_service {}
+ }
+ }
+ task "web" {
+ driver = "docker"
+ config {
+ image = "test/test:v1"
+ }
+ }
+ }
+ }
+
+```
+
+## `sidecar_service` Parameters
+
+- `tags` (array: nil) - Custom Consul service tags for the sidecar service.
+
+- `port` `(string: )` - Port label for sidecar service.
+
+- `proxy` ([proxy][]: nil) - This is used to configure the sidecar proxy service.
+
+
+## `sidecar_service` Examples
+
+The following example is a minimal `sidecar_service` stanza with defaults
+
+```hcl
+ connect {
+ sidecar_service {}
+ }
+```
+
+The following example includes specifying upstreams.
+
+```hcl
+ sidecar_service {
+ proxy {
+ upstreams {
+ destination_name = "count-api"
+ local_bind_port = 8080
+ }
+ }
+ }
+
+ ```
+
+[job]: /docs/job-specification/job.html "Nomad job Job Specification"
+[group]: /docs/job-specification/group.html "Nomad group Job Specification"
+[task]: /docs/job-specification/task.html "Nomad task Job Specification"
+[interpolation]: /docs/runtime/interpolation.html "Nomad interpolation"
+[sidecar_service]: /docs/job-specification/sidecar_service.html "Nomad sidecar service Specification"
+[proxy]: /docs/job-specification/proxy.html "Nomad sidecar proxy config Specification"
diff --git a/website/source/docs/job-specification/sidecar_task.html.md b/website/source/docs/job-specification/sidecar_task.html.md
new file mode 100644
index 000000000..b405cd658
--- /dev/null
+++ b/website/source/docs/job-specification/sidecar_task.html.md
@@ -0,0 +1,159 @@
+---
+layout: "docs"
+page_title: "sidecar_service Stanza - Job Specification"
+sidebar_current: "docs-job-specification-sidecar-task"
+description: |-
+ The "sidecar_task" stanza allows specifying options for configuring
+ the task of the sidecar proxies used in Consul Connect integration
+---
+
+# `sidecar_task` Stanza
+
+
+
+ Placement
+
+ job -> group -> service -> connect -> **sidecar_task**
+
+
+
+
+The `sidecar_task` stanza allows configuring various options for the proxy
+sidecar managed by Nomad for [Consul
+Connect](/guides/integrations/consul-connect/index.html) integration such as
+resource requirements, kill timeouts and more as defined below. It is valid
+only within the context of a [`connect`][connect] stanza.
+
+```hcl
+ job "countdash" {
+ datacenters = ["dc1"]
+ group "api" {
+ network {
+ mode = "bridge"
+ }
+
+ service {
+ name = "count-api"
+ port = "9001"
+
+ connect {
+ sidecar_service {}
+ sidecar_task {
+ resources {
+ cpu = 500
+ memory = 1024
+ }
+ }
+ }
+ }
+ task "web" {
+ driver = "docker"
+ config {
+ image = "test/test:v1"
+ }
+ }
+ }
+ }
+
+```
+
+## Default Envoy proxy sidecar
+
+Nomad automatically includes a default Envoy proxy sidecar task whenever a
+group service has a [`sidecar_service`][sidecar_service] stanza.
+
+The default sidecar task is equivalent to:
+
+```hcl
+ sidecar_task {
+ name = "connect-proxy-"
+
+ driver = "docker"
+ config {
+ image = "${meta.connect.sidecar_image}"
+ args = [
+ "-c",
+ "${NOMAD_SECRETS_DIR}/envoy_bootstrap.json",
+ "-l",
+ "${meta.connect.log_level}"
+ ]
+ }
+
+ logs {
+ max_files = 2
+ max_file_size = 2 # MB
+ }
+
+ resources {
+ cpu = 250 # MHz
+ memory = 128 # MB
+ }
+
+ shutdown_delay = "5s"
+ }
+```
+
+The `meta.connect.sidecar_image` and `meta.connect.log_level` are [*client*
+configurable][nodemeta] variables with the following defaults:
+
+- `sidecar_image` - `"envoyproxy/envoy:v1.11.2@sha256:a7769160c9c1a55bb8d07a3b71ce5d64f72b1f665f10d81aa1581bc3cf850d09"` - The official upstream Envoy Docker image.
+- `sidecar_log_level` - `"info"` - Envoy sidecar log level. "`debug`" is useful
+ for debugging Connect related issues.
+
+## `sidecar_task` Parameters
+- `name` `(string: "connect-proxy-")` - Name of the task. Defaults to
+ including the name of the service it is a proxy for.
+
+- `driver` `(string: "docker")` - Driver used for the sidecar task.
+
+- `user` `(string: nil)` - Determines which user is used to run the task, defaults
+ to the same user the Nomad client is being run as.
+
+- `config` `(map: nil)` - Configuration provided to the driver for initialization.
+
+- `env` `(map: nil)` - Map of environment variables used by the driver.
+
+- `resources` ([Resources][resources]) - Resources needed by the sidecar task.
+
+- `meta` `(map: nil)` - Arbitrary metadata associated with this task that's opaque to Nomad.
+
+- `logs` ([Logs][]: nil) - Specifies logging configuration for the
+ `stdout` and `stderr` of the task.
+
+- `kill_timeout` `(string: "5s")` - Time between signalling a task that will be
+ killed and killing it.
+
+- `shutdown_delay` `(string: "5s")` - Delay between deregistering the task from
+ Consul and sending it a signal to shutdown.
+
+- `kill_signal` `(string:SIGINT)` - Kill signal to use for the task, defaults to SIGINT.
+
+
+## `sidecar_task` Examples
+The following example configures resources for the sidecar task and other configuration.
+
+```hcl
+ sidecar_task {
+ resources {
+ cpu = 500
+ memory = 1024
+ }
+
+ env {
+ FOO = "abc"
+ }
+
+ shutdown_delay = "5s"
+ }
+
+ ```
+
+[connect]: /docs/job-specification/connect.html "Nomad connect Job Specification"
+[job]: /docs/job-specification/job.html "Nomad job Job Specification"
+[group]: /docs/job-specification/group.html "Nomad group Job Specification"
+[task]: /docs/job-specification/task.html "Nomad task Job Specification"
+[interpolation]: /docs/runtime/interpolation.html "Nomad interpolation"
+[sidecar_service]: /docs/job-specification/sidecar_service.html "Nomad sidecar service Specification"
+[resources]: /docs/job-specification/resources.html "Nomad resources Job Specification"
+[logs]: /docs/job-specification/logs.html "Nomad logs Job Specification"
+[nodemeta]: /docs/configuration/client.html#meta
diff --git a/website/source/docs/job-specification/spread.html.md b/website/source/docs/job-specification/spread.html.md
index 41ab56221..2703073e3 100644
--- a/website/source/docs/job-specification/spread.html.md
+++ b/website/source/docs/job-specification/spread.html.md
@@ -17,8 +17,6 @@ description: |-
job -> **spread**
job -> group -> **spread**
-
- job -> group -> task -> **spread**
diff --git a/website/source/docs/job-specification/task.html.md b/website/source/docs/job-specification/task.html.md
index afcb0e56f..a168691f5 100644
--- a/website/source/docs/job-specification/task.html.md
+++ b/website/source/docs/job-specification/task.html.md
@@ -108,6 +108,9 @@ job "docs" {
required by the task. This overrides any `vault` block set at the `group` or
`job` level.
+- `kind` `(string: )` - Used internally to manage tasks according to
+ the value of this field. Initial use case is for Consul Connect.
+
## `task` Examples
The following examples only show the `task` stanzas. Remember that the
diff --git a/website/source/docs/job-specification/template.html.md b/website/source/docs/job-specification/template.html.md
index 2edb4a0a9..6c86a93bf 100644
--- a/website/source/docs/job-specification/template.html.md
+++ b/website/source/docs/job-specification/template.html.md
@@ -237,14 +237,71 @@ DB_PASSWD={{ .Data.data.DB_PASSWD | toJSON }}
{{ end }}
```
-For more details see [go-envparser's
-README](https://github.com/hashicorp/go-envparse#readme).
+For more details see [go-envparser's README][go-envparse].
## Vault Integration
### PKI Certificate
-This example acquires a PKI certificate from Vault in PEM format and stores it into your application's secret directory.
+Vault is a popular open source tool for managing secrets. In addition to acting
+as an encrypted KV store, Vault can also generate dynamic secrets, like PKI/TLS
+certificates.
+
+When generating PKI certificates with Vault, the certificate, private key, and
+any intermediate certs are all returned as part of the same API call. Most
+software requires these files be placed in separate files on the system.
+
+~> **Note**: `generate_lease` must be set to `true` (non-default) on the Vault PKI
+role. Failure to do so will cause the template to frequently render a new
+certificate, approximately every minute. This creates a significant number of
+certificates to be expired in Vault and could ultimately lead to Vault performance
+impacts and failures.
+
+
+#### As individual files
+
+For templates, all dependencies are mapped into a single list. This means that
+multiple templates watching the same path return the same data.
+
+```hcl
+template {
+ data = <
+
+ Placement
+
+ job -> group -> service -> connect -> sidecar_service -> proxy -> **upstreams**
+
+
+
+
+The `upstreams` stanza allows configuring various options for managing upstream
+services that a [Consul
+Connect](/guides/integrations/consul-connect/index.html) proxy routes to. It
+is valid only within the context of a `proxy` stanza.
+
+For Consul-specific details see the [Consul Connect
+Guide](https://learn.hashicorp.com/consul/getting-started/connect#register-a-dependent-service-and-proxy).
+
+```hcl
+job "countdash" {
+ datacenters = ["dc1"]
+
+ group "dashboard" {
+ network {
+ mode = "bridge"
+
+ port "http" {
+ static = 9002
+ to = 9002
+ }
+ }
+
+ service {
+ name = "count-dashboard"
+ port = "9002"
+
+ connect {
+ sidecar_service {
+ proxy {
+ upstreams {
+ destination_name = "count-api"
+ local_bind_port = 8080
+ }
+ }
+ }
+ }
+ }
+
+ task "dashboard" {
+ driver = "docker"
+
+ env {
+ COUNTING_SERVICE_URL = "http://${NOMAD_UPSTREAM_ADDR_count_api}"
+ }
+
+ config {
+ image = "hashicorpnomad/counter-dashboard:v1"
+ }
+ }
+ }
+}
+
+```
+
+## `upstreams` Parameters
+
+- `destination_name` `(string: )` - Name of the upstream service.
+- `local_bind_port` - `(int: )` - The port the proxy will receive
+ connections for the upstream on.
+
+The `NOMAD_UPSTREAM_ADDR_` environment variables may be used
+to interpolate the upstream's `host:port` address.
+
+Applications are encouraged to connect to `127.0.0.1` and a well defined port
+(eg 6379 for Redis) by default. Then when using Consul Connect the application
+can be deployed with the Redis upstream's `local_bind_port = 6379` and require
+no explicit configuration.
+
+## `upstreams` Examples
+
+The following example is an upstream config with the name of the destination service
+and a local bind port.
+
+```hcl
+ upstreams {
+ destination_name = "count-api"
+ local_bind_port = 8080
+ }
+ ```
+
+[job]: /docs/job-specification/job.html "Nomad job Job Specification"
+[group]: /docs/job-specification/group.html "Nomad group Job Specification"
+[task]: /docs/job-specification/task.html "Nomad task Job Specification"
+[interpolation]: /docs/runtime/interpolation.html "Nomad interpolation"
+[sidecar_service]: /docs/job-specification/sidecar_service.html "Nomad sidecar service Specification"
+[upstreams]: /docs/job-specification/upstreams.html "Nomad upstream config Specification"
diff --git a/website/source/docs/job-specification/vault.html.md b/website/source/docs/job-specification/vault.html.md
index a65f37b86..f1c46f887 100644
--- a/website/source/docs/job-specification/vault.html.md
+++ b/website/source/docs/job-specification/vault.html.md
@@ -48,7 +48,7 @@ job "docs" {
The Nomad client will make the Vault token available to the task by writing it
to the secret directory at `secrets/vault_token` and by injecting a `VAULT_TOKEN`
-environment variable. If the Nomad cluster is [configured](http://localhost:4567/docs/configuration/vault.html#namespace)
+environment variable. If the Nomad cluster is [configured](/docs/configuration/vault.html#namespace)
to use [Vault Namespaces](https://www.vaultproject.io/docs/enterprise/namespaces/index.html),
a `VAULT_NAMESPACE` environment variable will be injected whenever `VAULT_TOKEN` is.
diff --git a/website/source/docs/job-specification/volume.html.md b/website/source/docs/job-specification/volume.html.md
new file mode 100644
index 000000000..6561baefa
--- /dev/null
+++ b/website/source/docs/job-specification/volume.html.md
@@ -0,0 +1,61 @@
+---
+layout: "docs"
+page_title: "volume Stanza - Job Specification"
+sidebar_current: "docs-job-specification-volume"
+description: |-
+ The "volume" stanza allows the group to specify that it requires a given volume
+ from the cluster. Nomad will automatically handle ensuring that the volume is
+ available and mounted into the task.
+---
+
+# `volume` Stanza
+
+
+
+ Placement
+
+ job -> group -> **volume**
+
+
+
+
+The `volume` stanza allows the group to specify that it requires a given volume
+from the cluster.
+
+The key of the stanza is the name of the volume as it will be exposed to task
+configuration.
+
+```hcl
+job "docs" {
+ group "example" {
+ volume "certs" {
+ type = "host"
+ source = "ca-certificates"
+ read_only = true
+ }
+ }
+}
+```
+
+The Nomad server will ensure that the allocations are only scheduled on hosts
+that have a set of volumes that meet the criteria specified in the `volume`
+stanzas.
+
+The Nomad client will make the volumes available to tasks according to the
+[volume_mount][volume_mount] stanza in the `task` configuration.
+
+## `volume` Parameters
+
+- `type` `(string: "")` - Specifies the type of a given volume. Currently the
+ only possible volume type is `"host"`.
+
+- `source` `(string: )` - The name of the volume to request. When using
+ `host_volume`'s this should match the published name of the host volume.
+
+- `read_only` `(bool: false)` - Specifies that the group only requires read only
+ access to a volume and is used as the default value for the `volume_mount ->
+ read_only` configuration. This value is also used for validating `host_volume`
+ ACLs and for scheduling when a matching `host_volume` requires `read_only`
+ usage.
+
+[volume_mount]: /docs/job-specification/volume_mount.html "Nomad volume_mount Job Specification"
diff --git a/website/source/docs/job-specification/volume_mount.html.md b/website/source/docs/job-specification/volume_mount.html.md
new file mode 100644
index 000000000..9d8068845
--- /dev/null
+++ b/website/source/docs/job-specification/volume_mount.html.md
@@ -0,0 +1,59 @@
+---
+layout: "docs"
+page_title: "volume_mount Stanza - Job Specification"
+sidebar_current: "docs-job-specification-volume_mount"
+description: |-
+ The "volume_mount" stanza allows the task to specify where a group "volume"
+ should be mounted.
+---
+
+# `volume_mount` Stanza
+
+
+
+ Placement
+
+ job -> group -> task -> **volume_mount**
+
+
+
+
+The `volume_mount` stanza allows the task to specify how a group
+[`volume`][volume] should be mounted into the task.
+
+```hcl
+job "docs" {
+ group "example" {
+ volume "certs" {
+ type = "host"
+ read_only = true
+ source = "ca-certificates"
+ }
+
+ task "example" {
+ volume_mount {
+ volume = "certs"
+ destination = "/etc/ssl/certs"
+ }
+ }
+ }
+}
+```
+
+The Nomad client will make the volumes available to tasks according to this
+configuration, and it will fail the allocation if the client configuration
+updates to remove a volume that it depends on.
+
+## `volume_mount` Parameters
+
+- `volume` `(string: "")` - Specifies the group volume that the mount is going
+ to access.
+
+- `destination` `(string: "")` - Specifies where the volume should be mounted
+ inside the tasks container.
+
+- `read_only` `(bool: false)` - When a group volume is writeable, you may
+ specify that it is `read_only` on a per mount level using the `read_only`
+ option here.
+
+[volume]: /docs/job-specification/volume.html "Nomad volume Job Specification"
diff --git a/website/source/docs/runtime/_envvars.html.md.erb b/website/source/docs/runtime/_envvars.html.md.erb
index 4cc2ec591..d729e66dc 100644
--- a/website/source/docs/runtime/_envvars.html.md.erb
+++ b/website/source/docs/runtime/_envvars.html.md.erb
@@ -140,4 +140,25 @@
in the same task group.
+
+ NOMAD_UPSTREAM_IP_<service>
+
+ IP for the given service when defined as a Consul Connect
+ upstream .
+
+
+
+ NOMAD_UPSTREAM_PORT_<service>
+
+ Port for the given service when defined as a Consul Connect
+ upstream .
+
+
+
+ NOMAD_UPSTREAM_ADDR_<service>
+
+ Host IP:Port for the given service when defined as a
+ Consul Connect upstream .
+
+
diff --git a/website/source/downloads.html.erb b/website/source/downloads.html.erb
index e97e6d57a..391440f05 100644
--- a/website/source/downloads.html.erb
+++ b/website/source/downloads.html.erb
@@ -30,13 +30,12 @@ description: |-
- Nomad works with many popular distributions including Amazon Linux 2, Ubuntu, and RHEL 7.
+ Nomad works with many popular distributions including Amazon Linux 2, Ubuntu, and RHEL 7/8, CentOS 7/8.
Check out the v<%= latest_version %> CHANGELOG for information on the latest release.
-
@@ -46,7 +45,7 @@ description: |-
<%= system_icon(os) %>
-
<%= pretty_os(os) %>
+
<%= pretty_os(os) %>
<% arches.each do |arch, url| %>
<%= pretty_arch(arch) %>
diff --git a/website/source/guides/install/production/requirements.html.md b/website/source/guides/install/production/requirements.html.md
index c8e09ea63..b340d2b22 100644
--- a/website/source/guides/install/production/requirements.html.md
+++ b/website/source/guides/install/production/requirements.html.md
@@ -87,3 +87,23 @@ $ cat /proc/sys/net/ipv4/ip_local_port_range
32768 60999
$ echo "49152 65535" > /proc/sys/net/ipv4/ip_local_port_range
```
+
+## Bridge Networking and `iptables`
+
+Nomad's task group networks and Consul Connect integration use bridge networking and iptables to send traffic between containers. The Linux kernel bridge module has three "tunables" that control whether traffic crossing the bridge are processed by iptables. Some operating systems (RedHat, CentOS, and Fedora in particular) configure these tunables to optimize for VM workloads where iptables rules might not be correctly configured for guest traffic.
+
+These tunables can be set to allow iptables processing for the bridge network as follows:
+
+```
+$ echo 1 > /proc/sys/net/bridge/bridge-nf-call-arptables
+$ echo 1 > /proc/sys/net/bridge/bridge-nf-call-ip6tables
+$ echo 1 > /proc/sys/net/bridge/bridge-nf-call-iptables
+```
+
+To preserve these settings on startup of a client node, add a file including the following to `/etc/sysctl.d/` or remove the file your Linux distribution puts in that directory.
+
+```
+net.bridge.bridge-nf-call-arptables = 1
+net.bridge.bridge-nf-call-ip6tables = 1
+net.bridge.bridge-nf-call-iptables = 1
+```
diff --git a/website/source/guides/install/windows-service.html.md b/website/source/guides/install/windows-service.html.md
new file mode 100644
index 000000000..ca0c3e9d3
--- /dev/null
+++ b/website/source/guides/install/windows-service.html.md
@@ -0,0 +1,76 @@
+---
+layout: "guides"
+page_title: "Nomad as a Windows Service"
+sidebar_current: "guides-install-windows-service"
+description: |-
+ Discusses how to register and run Nomad as a native Windows service.
+---
+
+# Installing Nomad as a Windows service
+
+Nomad can be run as a native Windows service. In order to do this, you will need
+to register the Nomad application with the Windows Service Control Manager using
+[`sc.exe`], configure Nomad to log to a file, and then start the Nomad service.
+
+~> **Note:** These steps should be run in a PowerShell session with Administrator
+ capabilities.
+
+## Register Nomad with Windows
+
+[Download] the Nomad binary for your architecture.
+
+Use the [`sc.exe`] command to create a Service named "Nomad". The binPath
+argument should include the fully qualified path to the Nomad executable and any
+arguments to the nomad command: agent, -config, etc.
+
+```plaintext
+sc.exe create "Nomad" binPath="«full path to nomad.exe» agent -config=«path to config file or directory»" start= auto
+[SC] CreateService SUCCESS
+```
+
+If you receive a success message, your service is registered with the service
+manager.
+
+If you get an error, please verify the path to the binary and check the
+arguments, by running the contents of `binPath` directly in a PowerShell session
+and observing the results.
+
+## Configure Nomad to log to file
+
+Because Windows services run non-interactively and Nomad does not log to the
+Windows Event Viewer, you will need to configure file-based logging in Nomad.
+
+To do this, set the [`log_file`][logging] argument in your Nomad configuration
+file or in the binPath argument of the [`sc.exe`] command used to register the
+service.
+
+## Start the Nomad service
+
+You have two ways to start the service.
+
+- Go to the Windows Service Manager, and look for **Nomad** in the service name
+ column. Click the _Start_ button to start the service.
+
+- Using the [`sc.exe`] command:
+
+ ```plaintext
+ sc.exe start "Nomad"
+
+ SERVICE_NAME: Nomad
+ TYPE : 10 WIN32_OWN_PROCESS
+ STATE : 4 RUNNING
+ (STOPPABLE, NOT_PAUSABLE, ACCEPTS_SHUTDOWN)
+ WIN32_EXIT_CODE : 0 (0x0)
+ SERVICE_EXIT_CODE : 0 (0x0)
+ CHECKPOINT : 0x0
+ WAIT_HINT : 0x0
+ PID : 8008
+ FLAGS :
+ ```
+
+The service automatically starts up during/after boot, so you don't need to
+launch Nomad from the command-line again.
+
+[`sc.exe`]: https://msdn.microsoft.com/en-us/library/windows/desktop/ms682107(v=vs.85).aspx
+[Download]: /downloads.html
+[logging]: /docs/configuration/index.html#log_file
diff --git a/website/source/guides/integrations/consul-connect/index.html.md b/website/source/guides/integrations/consul-connect/index.html.md
index cbf8e07b3..eecc8cc59 100644
--- a/website/source/guides/integrations/consul-connect/index.html.md
+++ b/website/source/guides/integrations/consul-connect/index.html.md
@@ -8,55 +8,89 @@ description: |-
# Consul Connect
-~> **Note** This guide describes a new feature available in the [Nomad 0.10.0
- Connect Technology Preview release][download] of Nomad for [Hashiconf EU
- 2019][hashiconfeu]. This is not intended for production use and has many known
- [limitations](#limitations).
+~> **Note:** This guide requires Nomad 0.10.0 or later and Consul 1.6.0 or
+ later.
-[download]: https://releases.hashicorp.com/nomad/0.10.0-connect1/
-[hashiconfeu]: https://hashiconfeu.hashicorp.com/schedule/service-mesh-with-consul-connect-and-nomad-0.10
-
-[Consul Connect](https://www.consul.io/docs/connect/index.html) provides service-to-service connection
-authorization and encryption using mutual Transport Layer Security (TLS). Applications can use sidecar proxies in a service mesh
-configuration to automatically establish TLS connections for inbound and outbound connections
-without being aware of Connect at all.
+[Consul Connect](https://www.consul.io/docs/connect/index.html) provides
+service-to-service connection authorization and encryption using mutual
+Transport Layer Security (TLS). Applications can use sidecar proxies in a
+service mesh configuration to automatically establish TLS connections for
+inbound and outbound connections without being aware of Connect at all.
# Nomad with Consul Connect Integration
-Nomad integrates with Consul to provide secure service-to-service communication between
-Nomad jobs and task groups. In order to support Consul Connect, Nomad adds a new networking
-mode for jobs that enables tasks in the same task group to share their networking stack. With
-a few changes to the job specification, job authors can opt into Connect integration. When Connect
-is enabled, Nomad will launch a proxy alongside the application in the job file. The proxy (Envoy)
+Nomad integrates with Consul to provide secure service-to-service communication
+between Nomad jobs and task groups. In order to support Consul Connect, Nomad
+adds a new networking mode for jobs that enables tasks in the same task group to
+share their networking stack. With a few changes to the job specification, job
+authors can opt into Connect integration. When Connect is enabled, Nomad will
+launch a proxy alongside the application in the job file. The proxy (Envoy)
provides secure communication with other applications in the cluster.
-Nomad job specification authors can use Nomad's Consul Connect integration to implement
-[service segmentation](https://www.consul.io/segmentation.html) in a
-microservice architecture running in public clouds without having to directly manage
-TLS certificates. This is transparent to job specification authors as security features
-in Connect continue to work even as the application scales up or down or gets rescheduled by Nomad.
+Nomad job specification authors can use Nomad's Consul Connect integration to
+implement [service segmentation](https://www.consul.io/segmentation.html) in a
+microservice architecture running in public clouds without having to directly
+manage TLS certificates. This is transparent to job specification authors as
+security features in Connect continue to work even as the application scales up
+or down or gets rescheduled by Nomad.
# Nomad Consul Connect Example
The following section walks through an example to enable secure communication
-between a web application and a Redis container. The web application and the
-Redis container are managed by Nomad. Nomad additionally configures Envoy
-proxies to run along side these applications. The web application is configured
-to connect to Redis via localhost and Redis's default port (6379). The proxy is
-managed by Nomad, and handles mTLS communication to the Redis container.
+between a web dashboard and a backend counting service. The web dashboard and
+the counting service are managed by Nomad. Nomad additionally configures Envoy
+proxies to run along side these applications. The dashboard is configured to
+connect to the counting service via localhost on port 9001. The proxy is managed
+by Nomad, and handles mTLS communication to the counting service.
## Prerequisites
### Consul
-Connect integration with Nomad requires [Consul 1.6-beta1 or
-later.](https://releases.hashicorp.com/consul/1.6.0-beta1/) The
-Consul agent can be run in dev mode with the following command:
+Connect integration with Nomad requires [Consul 1.6 or
+later.](https://releases.hashicorp.com/consul/1.6.0/) The Consul agent can be
+run in dev mode with the following command:
+
+**Note**: Nomad's Connect integration requires Consul in your `$PATH`
```sh
-$ consul agent -dev
+$ consul agent -dev
```
+To use Connect on a non-dev Consul agent, you will minimally need to enable the
+GRPC port and set `connect` to enabled by adding some additional information to
+your Consul client configurations, depending on format.
+
+For HCL configurations:
+
+```hcl
+# ...
+
+ports {
+ "grpc" = 8502
+}
+
+connect {
+ enabled = true
+}
+```
+
+For JSON configurations:
+
+```javascript
+{
+ // ...
+ "ports": {
+ "grpc": 8502
+ },
+ "connect": {
+ "enabled": true
+ }
+}
+```
+
+
+
### Nomad
Nomad must schedule onto a routable interface in order for the proxies to
@@ -64,15 +98,7 @@ connect to each other. The following steps show how to start a Nomad dev agent
configured for Connect.
```sh
-$ go get -u github.com/hashicorp/go-sockaddr/cmd/sockaddr
-$ export DEFAULT_IFACE=$(sockaddr eval 'GetAllInterfaces | sort "default" | unique "name" | attr "name"')
-$ sudo nomad agent -dev -network-interface $DEFAULT_IFACE
-```
-
-Alternatively if you know the network interface Nomad should use:
-
-```sh
-$ sudo nomad agent -dev -network-interface eth0
+$ sudo nomad agent -dev-connect
```
### CNI Plugins
@@ -89,73 +115,99 @@ $ sudo mkdir -p /opt/cni/bin
$ sudo tar -C /opt/cni/bin -xzf cni-plugins.tgz
```
+Ensure the your Linux operating system distribution has been configured to allow
+container traffic through the bridge network to be routed via iptables. These
+tunables can be set as follows:
+
+```
+$ echo 1 > /proc/sys/net/bridge/bridge-nf-call-arptables
+$ echo 1 > /proc/sys/net/bridge/bridge-nf-call-ip6tables
+$ echo 1 > /proc/sys/net/bridge/bridge-nf-call-iptables
+```
+
+To preserve these settings on startup of a client node, add a file including the
+following to `/etc/sysctl.d/` or remove the file your Linux distribution puts in
+that directory.
+
+```
+net.bridge.bridge-nf-call-arptables = 1
+net.bridge.bridge-nf-call-ip6tables = 1
+net.bridge.bridge-nf-call-iptables = 1
+```
+
+
## Run the Connect-enabled Services
-Once Nomad and Consul are running submit the following Connect-enabled services
+Once Nomad and Consul are running, submit the following Connect-enabled services
to Nomad by copying the HCL into a file named `connect.nomad` and running:
`nomad run connect.nomad`
```hcl
- job "countdash" {
- datacenters = ["dc1"]
- group "api" {
- network {
- mode = "bridge"
- }
+job "countdash" {
+ datacenters = ["dc1"]
- service {
- name = "count-api"
- port = "9001"
+ group "api" {
+ network {
+ mode = "bridge"
+ }
- connect {
- sidecar_service {}
- }
- }
+ service {
+ name = "count-api"
+ port = "9001"
- task "web" {
- driver = "docker"
- config {
- image = "hashicorpnomad/counter-api:v1"
- }
- }
- }
+ connect {
+ sidecar_service {}
+ }
+ }
- group "dashboard" {
- network {
- mode ="bridge"
- port "http" {
- static = 9002
- to = 9002
- }
- }
+ task "web" {
+ driver = "docker"
- service {
- name = "count-dashboard"
- port = "9002"
+ config {
+ image = "hashicorpnomad/counter-api:v1"
+ }
+ }
+ }
- connect {
- sidecar_service {
- proxy {
- upstreams {
- destination_name = "count-api"
- local_bind_port = 8080
- }
- }
- }
- }
- }
+ group "dashboard" {
+ network {
+ mode = "bridge"
- task "dashboard" {
- driver = "docker"
- env {
- COUNTING_SERVICE_URL = "http://${NOMAD_UPSTREAM_ADDR_count_api}"
- }
- config {
- image = "hashicorpnomad/counter-dashboard:v1"
- }
- }
- }
- }
+ port "http" {
+ static = 9002
+ to = 9002
+ }
+ }
+
+ service {
+ name = "count-dashboard"
+ port = "9002"
+
+ connect {
+ sidecar_service {
+ proxy {
+ upstreams {
+ destination_name = "count-api"
+ local_bind_port = 8080
+ }
+ }
+ }
+ }
+ }
+
+ task "dashboard" {
+ driver = "docker"
+
+ env {
+ COUNTING_SERVICE_URL = "http://${NOMAD_UPSTREAM_ADDR_count_api}"
+ }
+
+ config {
+ image = "hashicorpnomad/counter-dashboard:v1"
+ }
+ }
+ }
+}
```
The job contains two task groups: an API service and a web frontend.
@@ -165,33 +217,35 @@ The job contains two task groups: an API service and a web frontend.
The API service is defined as a task group with a bridge network:
```hcl
- group "api" {
- network {
- mode = "bridge"
- }
+ group "api" {
+ network {
+ mode = "bridge"
+ }
- ...
- }
+ # ...
+ }
```
Since the API service is only accessible via Consul Connect, it does not define
any ports in its network. The service stanza enables Connect:
```hcl
- group "api" {
- ...
+ group "api" {
- service {
- name = "count-api"
- port = "9001"
+ # ...
- connect {
- sidecar_service {}
- }
- }
+ service {
+ name = "count-api"
+ port = "9001"
- ...
- }
+ connect {
+ sidecar_service {}
+ }
+ }
+
+ # ...
+
+ }
```
The `port` in the service stanza is the port the API service listens on. The
@@ -204,17 +258,19 @@ The web frontend is defined as a task group with a bridge network and a static
forwarded port:
```hcl
- group "dashboard" {
- network {
- mode ="bridge"
- port "http" {
- static = 9002
- to = 9002
- }
- }
+ group "dashboard" {
+ network {
+ mode = "bridge"
- ...
- }
+ port "http" {
+ static = 9002
+ to = 9002
+ }
+ }
+
+ # ...
+
+ }
```
The `static = 9002` parameter requests the Nomad scheduler reserve port 9002 on
@@ -222,26 +278,28 @@ a host network interface. The `to = 9002` parameter forwards that host port to
port 9002 inside the network namespace.
This allows you to connect to the web frontend in a browser by visiting
-`http://:9002`.
+`http://:9002` as show below:
+
+[![Count Dashboard][count-dashboard]][count-dashboard]
The web frontend connects to the API service via Consul Connect:
```hcl
- service {
- name = "count-dashboard"
- port = "9002"
+ service {
+ name = "count-dashboard"
+ port = "9002"
- connect {
- sidecar_service {
- proxy {
- upstreams {
- destination_name = "count-api"
- local_bind_port = 8080
- }
- }
- }
- }
- }
+ connect {
+ sidecar_service {
+ proxy {
+ upstreams {
+ destination_name = "count-api"
+ local_bind_port = 8080
+ }
+ }
+ }
+ }
+ }
```
The `upstreams` stanza defines the remote service to access (`count-api`) and
@@ -251,9 +309,9 @@ The web frontend is configured to communicate with the API service with an
environment variable:
```hcl
- env {
- COUNTING_SERVICE_URL = "http://${NOMAD_UPSTREAM_ADDR_count_api}"
- }
+ env {
+ COUNTING_SERVICE_URL = "http://${NOMAD_UPSTREAM_ADDR_count_api}"
+ }
```
The web frontend is configured via the `$COUNTING_SERVICE_URL`, so you must
@@ -263,13 +321,15 @@ dashes (`-`) are converted to underscores (`_`) in environment variables so
## Limitations
-Prior to Nomad 0.10.0's final release, the Consul Connect integration has
-several limitations that have yet to be addressed:
+ - The `consul` binary must be present in Nomad's `$PATH` to run the Envoy
+ proxy sidecar on client nodes.
+ - Consul Connect Native is not yet supported.
+ - Consul Connect HTTP and gRPC checks are not yet supported.
+ - Consul ACLs are not yet supported.
+ - Only the Docker, exec, raw_exec, and java drivers support network namespaces
+ and Connect.
+ - Variable interpolation for group services and checks are not yet supported.
+ - Consul Connect and network namespaces are only supported on Linux.
- - Jobs with a `connect` stanza may not update properly. Workaround this by
- stopping and starting Connect-enabled jobs.
- - Only the Docker, exec, and raw exec drivers support network namespaces and
- Connect.
- - Not all Connect configuration options in Consul are available in Nomad.
- - The Envoy proxy is not yet configurable and is hardcoded to use 100 MHz of
- cpu and 300 MB of memory.
+
+[count-dashboard]: /assets/images/count-dashboard.png
diff --git a/website/source/guides/integrations/vault-integration/index.html.md b/website/source/guides/integrations/vault-integration/index.html.md
index 687fb47a3..07b5c1c8f 100644
--- a/website/source/guides/integrations/vault-integration/index.html.md
+++ b/website/source/guides/integrations/vault-integration/index.html.md
@@ -183,7 +183,7 @@ You will generate the actual token in the next few steps.
### Step 5: Create a Token Role
At this point, you must create a Vault token role that Nomad can use. The token
-role allows you to limit what Vault policies are are accessible by jobs
+role allows you to limit what Vault policies are accessible by jobs
submitted to Nomad. We will use the following token role:
```json
diff --git a/website/source/guides/load-balancing/fabio.html.md b/website/source/guides/load-balancing/fabio.html.md
index 6cd5d0e3a..ad379f9f5 100644
--- a/website/source/guides/load-balancing/fabio.html.md
+++ b/website/source/guides/load-balancing/fabio.html.md
@@ -1,7 +1,7 @@
---
layout: "guides"
page_title: "Load Balancing with Nomad"
-sidebar_current: "guides-load-balancing"
+sidebar_current: "guides-load-balancing-fabio"
description: |-
There are multiple approaches to load balancing within a Nomad cluster.
One approach involves using [fabio][fabio]. Fabio integrates natively
diff --git a/website/source/guides/load-balancing/haproxy.html.md b/website/source/guides/load-balancing/haproxy.html.md
new file mode 100644
index 000000000..2dd62409f
--- /dev/null
+++ b/website/source/guides/load-balancing/haproxy.html.md
@@ -0,0 +1,279 @@
+---
+layout: "guides"
+page_title: "Load Balancing with HAProxy"
+sidebar_current: "guides-load-balancing-haproxy"
+description: |-
+ There are multiple approaches to load balancing within a Nomad cluster.
+ One approach involves using [HAProxy][haproxy] which natively integrates with
+ service discovery data from Consul.
+---
+
+# Load Balancing with HAProxy
+
+The main use case for HAProxy in this scenario is to distribute incoming HTTP(S)
+and TCP requests from the internet to frontend services that can handle these
+requests. This guide will show you one such example using a demo web
+application.
+
+HAProxy version 1.8+ (LTS) includes the [server-template] directive, which lets
+users specify placeholder backend servers to populate HAProxy’s load balancing
+pools. Server-template can use Consul as one of these backend servers,
+requesting SRV records from Consul DNS.
+
+## Reference Material
+
+- [HAProxy][haproxy]
+- [Load Balancing Strategies for Consul][lb-strategies]
+
+## Estimated Time to Complete
+
+20 minutes
+
+## Prerequisites
+
+To perform the tasks described in this guide, you need to have a Nomad
+environment with Consul installed. You can use this [repo][terraform-repo] to
+easily provision a sandbox environment. This guide will assume a cluster with
+one server node and three client nodes.
+
+-> **Note:** This guide is for demo purposes and only assumes a single server
+node. Please consult the [reference architecture][reference-arch] for production
+configuration.
+
+## Steps
+
+### Step 1: Create a Job for Demo Web App
+
+Create a job for a demo web application and name the file `webapp.nomad`:
+
+```hcl
+job "demo-webapp" {
+ datacenters = ["dc1"]
+
+ group "demo" {
+ count = 3
+
+ task "server" {
+ env {
+ PORT = "${NOMAD_PORT_http}"
+ NODE_IP = "${NOMAD_IP_http}"
+ }
+
+ driver = "docker"
+
+ config {
+ image = "hashicorp/demo-webapp-lb-guide"
+ }
+
+ resources {
+ network {
+ mbits = 10
+ port "http" {}
+ }
+ }
+
+ service {
+ name = "demo-webapp"
+ port = "http"
+
+ check {
+ type = "http"
+ path = "/"
+ interval = "2s"
+ timeout = "2s"
+ }
+ }
+ }
+ }
+}
+```
+
+Note that this job deploys 3 instances of our demo web application which we will
+load balance with HAProxy in the next few steps.
+
+### Step 2: Deploy the Demo Web App
+
+We can now deploy our demo web application:
+
+```shell
+$ nomad run webapp.nomad
+==> Monitoring evaluation "8f3af425"
+ Evaluation triggered by job "demo-webapp"
+ Evaluation within deployment: "dc4c1925"
+ Allocation "bf9f850f" created: node "d16a11fb", group "demo"
+ Allocation "25e0496a" created: node "b78e27be", group "demo"
+ Allocation "a97e7d39" created: node "01d3eb32", group "demo"
+ Evaluation status changed: "pending" -> "complete"
+==> Evaluation "8f3af425" finished with status "complete"
+```
+
+### Step 3: Create a Job for HAProxy
+
+Create a job for HAProxy and name it `haproxy.nomad`. This will be our load
+balancer that will balance requests to the deployed instances of our web
+application.
+
+```hcl
+job "haproxy" {
+ region = "global"
+ datacenters = ["dc1"]
+ type = "service"
+
+ group "haproxy" {
+ count = 1
+
+ task "haproxy" {
+ driver = "docker"
+
+ config {
+ image = "haproxy:2.0"
+ network_mode = "host"
+
+ volumes = [
+ "local/haproxy.cfg:/usr/local/etc/haproxy/haproxy.cfg",
+ ]
+ }
+
+ template {
+ data = < Monitoring evaluation "937b1a2d"
+ Evaluation triggered by job "haproxy"
+ Evaluation within deployment: "e8214434"
+ Allocation "53145b8b" created: node "d16a11fb", group "haproxy"
+ Evaluation status changed: "pending" -> "complete"
+==> Evaluation "937b1a2d" finished with status "complete"
+```
+
+### Step 5: Check the HAProxy Statistics Page
+
+You can visit the statistics and monitoring page for HAProxy at
+`http://:1936`. You can use this page to verify your
+settings and for basic monitoring.
+
+[![Home Page][haproxy_ui]][haproxy_ui]
+
+Notice there are 10 pre-provisioned load balancer backend slots for your service
+but that only three of them are being used, corresponding to the three allocations in the current job.
+
+### Step 6: Make a Request to the Load Balancer
+
+If you query the HAProxy load balancer, you should be able to see a response
+similar to the one shown below (this command should be run from a
+node inside your cluster):
+
+```shell
+$ curl haproxy.service.consul:8080
+Welcome! You are on node 172.31.54.242:20124
+```
+
+Note that your request has been forwarded to one of the several deployed
+instances of the demo web application (which is spread across 3 Nomad clients).
+The output shows the IP address of the host it is deployed on. If you repeat
+your requests, you will see that the IP address changes.
+
+* Note: if you would like to access HAProxy from outside your cluster, you
+ can set up a load balancer in your environment that maps to an active port
+ `8080` on your clients (or whichever port you have configured for HAProxy to
+ listen on). You can then send your requests directly to your external load
+ balancer.
+
+[consul-template]: https://github.com/hashicorp/consul-template#consul-template
+[consul-temp-syntax]: https://github.com/hashicorp/consul-template#service
+[haproxy]: http://www.haproxy.org/
+[haproxy_ui]: /assets/images/haproxy_ui.png
+[inline]: /docs/job-specification/template.html#inline-template
+[lb-strategies]: https://www.hashicorp.com/blog/configuring-third-party-loadbalancers-with-consul-nginx-haproxy-f5/
+[reference-arch]: /guides/install/production/reference-architecture.html#high-availability
+[remote-template]: /docs/job-specification/template.html#remote-template
+[server-template]: https://www.haproxy.com/blog/whats-new-haproxy-1-8/#server-template-configuration-directive
+[template-stanza]: /docs/job-specification/template.html
+[terraform-repo]: https://github.com/hashicorp/nomad/tree/master/terraform#provision-a-nomad-cluster-in-the-cloud
+
diff --git a/website/source/guides/load-balancing/load-balancing.html.md b/website/source/guides/load-balancing/load-balancing.html.md
index 6cbbcc9c4..f09334a90 100644
--- a/website/source/guides/load-balancing/load-balancing.html.md
+++ b/website/source/guides/load-balancing/load-balancing.html.md
@@ -16,6 +16,9 @@ Balancing Strategies for
Consul](https://www.hashicorp.com/blog/load-balancing-strategies-for-consul)).
- [Fabio](/guides/load-balancing/fabio.html)
+- [NGINX](/guides/load-balancing/nginx.html)
+- [HAProxy](/guides/load-balancing/haproxy.html)
+- [Traefik](/guides/load-balancing/traefik.html)
Please refer to the specific documentation above or in the sidebar for more
detailed information about each strategy.
diff --git a/website/source/guides/load-balancing/nginx.html.md b/website/source/guides/load-balancing/nginx.html.md
new file mode 100644
index 000000000..c4b63f128
--- /dev/null
+++ b/website/source/guides/load-balancing/nginx.html.md
@@ -0,0 +1,293 @@
+---
+layout: "guides"
+page_title: "Load Balancing with NGINX"
+sidebar_current: "guides-load-balancing-nginx"
+description: |-
+ There are multiple approaches to load balancing within a Nomad cluster.
+ One approach involves using [NGINX][nginx]. NGINX works well with Nomad's
+ template stanza to allow for dynamic updates to its load balancing
+ configuration.
+---
+
+# Load Balancing with NGINX
+
+You can use Nomad's [template stanza][template-stanza] to configure
+[NGINX][nginx] so that it can dynamically update its load balancer configuration
+to scale along with your services.
+
+The main use case for NGINX in this scenario is to distribute incoming HTTP(S)
+and TCP requests from the internet to frontend services that can handle these
+requests. This guide will show you one such example using a demo web
+application.
+
+## Reference Material
+
+- [NGINX][nginx]
+- [Load Balancing Strategies for Consul][lb-strategies]
+
+## Estimated Time to Complete
+
+20 minutes
+
+## Prerequisites
+
+To perform the tasks described in this guide, you need to have a Nomad
+environment with Consul installed. You can use this [repo][terraform-repo] to
+easily provision a sandbox environment. This guide will assume a cluster with
+one server node and three client nodes.
+
+-> **Note:** This guide is for demo purposes and only assumes a single server
+node. Please consult the [reference architecture][reference-arch] for production
+configuration.
+
+## Steps
+
+### Step 1: Create a Job for Demo Web App
+
+Create a job for a demo web application and name the file `webapp.nomad`:
+
+```hcl
+job "demo-webapp" {
+ datacenters = ["dc1"]
+
+ group "demo" {
+ count = 3
+
+ task "server" {
+ env {
+ PORT = "${NOMAD_PORT_http}"
+ NODE_IP = "${NOMAD_IP_http}"
+ }
+
+ driver = "docker"
+
+ config {
+ image = "hashicorp/demo-webapp-lb-guide"
+ }
+
+ resources {
+ network {
+ mbits = 10
+ port "http"{}
+ }
+ }
+
+ service {
+ name = "demo-webapp"
+ port = "http"
+
+ check {
+ type = "http"
+ path = "/"
+ interval = "2s"
+ timeout = "2s"
+ }
+ }
+ }
+ }
+}
+```
+
+Note that this job deploys 3 instances of our demo web application which we will
+load balance with NGINX in the next few steps.
+
+### Step 2: Deploy the Demo Web App
+
+We can now deploy our demo web application:
+
+```shell
+$ nomad run webapp.nomad
+==> Monitoring evaluation "ea1e8528"
+ Evaluation triggered by job "demo-webapp"
+ Allocation "9b4bac9f" created: node "e4637e03", group "demo"
+ Allocation "c386de2d" created: node "983a64df", group "demo"
+ Allocation "082653f0" created: node "f5fdf017", group "demo"
+ Evaluation status changed: "pending" -> "complete"
+==> Evaluation "ea1e8528" finished with status "complete"
+```
+
+### Step 3: Create a Job for NGINX
+
+Create a job for NGINX and name it `nginx.nomad`. This will be our load balancer
+that will balance requests to the deployed instances of our web application.
+
+```hcl
+job "nginx" {
+ datacenters = ["dc1"]
+
+ group "nginx" {
+ count = 1
+
+ task "nginx" {
+ driver = "docker"
+
+ config {
+ image = "nginx"
+
+ port_map {
+ http = 80
+ }
+
+ volumes = [
+ "local:/etc/nginx/conf.d",
+ ]
+ }
+
+ template {
+ data = < Monitoring evaluation "45da5a89"
+ Evaluation triggered by job "nginx"
+ Allocation "c7f8af51" created: node "983a64df", group "nginx"
+ Evaluation status changed: "pending" -> "complete"
+==> Evaluation "45da5a89" finished with status "complete"
+```
+
+### Step 5: Verify Load Balancer Configuration
+
+Consul Template supports [blocking queries][ct-blocking-queries]. This means
+your NGINX deployment (which is using the [template][template-stanza] stanza)
+will be notified immediately when a change in the health of one of the service
+endpoints occurs and will re-render a new load balancer configuration file that
+only includes healthy service instances.
+
+You can use the [alloc fs][alloc-fs] command on your NGINX allocation to read
+the rendered load balancer configuration file.
+
+First, obtain the allocation ID of your NGINX deployment (output below is
+abbreviated):
+
+```shell
+$ nomad status nginx
+ID = nginx
+Name = nginx
+...
+Summary
+Task Group Queued Starting Running Failed Complete Lost
+nginx 0 0 1 0 0 0
+
+Allocations
+ID Node ID Task Group Version Desired Status Created Modified
+76692834 f5fdf017 nginx 0 run running 17m40s ago 17m25s ago
+```
+
+* Keep in mind your allocation ID will be different.
+
+Next, use the `alloc fs` command to read the load balancer config:
+
+```shell
+$ nomad alloc fs 766 nginx/local/load-balancer.conf
+upstream backend {
+
+ server 172.31.48.118:21354;
+
+ server 172.31.52.52:25958;
+
+ server 172.31.52.7:29728;
+
+}
+
+server {
+ listen 80;
+
+ location / {
+ proxy_pass http://backend;
+ }
+}
+```
+
+At this point, you can change the count of your `demo-webapp` job and repeat the
+previous command to verify the load balancer config is dynamically changing.
+
+### Step 6: Make a Request to the Load Balancer
+
+If you query the NGINX load balancer, you should be able to see a response
+similar to the one shown below (this command should be run from a node inside
+your cluster):
+
+```shell
+$ curl nginx.service.consul:8080
+Welcome! You are on node 172.31.48.118:21354
+```
+
+Note that your request has been forwarded to one of the several deployed
+instances of the demo web application (which is spread across 3 Nomad clients).
+The output shows the IP address of the host it is deployed on. If you repeat
+your requests, you will see that the IP address changes.
+
+* Note: if you would like to access NGINX from outside your cluster, you can set
+ up a load balancer in your environment that maps to an active port `8080` on
+ your clients (or whichever port you have configured for NGINX to listen on).
+ You can then send your requests directly to your external load balancer.
+
+[alloc-fs]: /docs/commands/alloc/fs.html
+[consul-template]: https://github.com/hashicorp/consul-template#consul-template
+[consul-temp-syntax]: https://github.com/hashicorp/consul-template#service
+[ct-blocking-queries]: https://github.com/hashicorp/consul-template#key
+[inline]: /docs/job-specification/template.html#inline-template
+[lb-strategies]: https://www.hashicorp.com/blog/configuring-third-party-loadbalancers-with-consul-nginx-haproxy-f5/
+[nginx]: https://www.nginx.com/
+[reference-arch]: /guides/install/production/reference-architecture.html#high-availability
+[remote-template]: /docs/job-specification/template.html#remote-template
+[template-stanza]: /docs/job-specification/template.html
+[terraform-repo]: https://github.com/hashicorp/nomad/tree/master/terraform#provision-a-nomad-cluster-in-the-cloud
+
diff --git a/website/source/guides/load-balancing/traefik.html.md b/website/source/guides/load-balancing/traefik.html.md
new file mode 100644
index 000000000..b541a8541
--- /dev/null
+++ b/website/source/guides/load-balancing/traefik.html.md
@@ -0,0 +1,265 @@
+---
+layout: "guides"
+page_title: "Load Balancing with Traefik"
+sidebar_current: "guides-load-balancing-traefik"
+description: |-
+ There are multiple approaches to load balancing within a Nomad cluster.
+ One approach involves using [Traefik][traefik] which natively integrates
+ with service discovery data from Consul.
+---
+
+# Load Balancing with Traefik
+
+The main use case for Traefik in this scenario is to distribute incoming HTTP(S)
+and TCP requests from the internet to frontend services that can handle these
+requests. This guide will show you one such example using a demo web
+application.
+
+Traefik can natively integrate with Consul using the [Consul Catalog
+Provider][traefik-consul-provider] and can use [tags][traefik-tags] to route
+traffic.
+
+## Reference Material
+
+- [Traefik][traefik]
+- [Traefik Consul Catalog Provider Documentation][traefik-consul-provider]
+
+## Estimated Time to Complete
+
+20 minutes
+
+## Prerequisites
+
+To perform the tasks described in this guide, you need to have a Nomad
+environment with Consul installed. You can use this [repo][terraform-repo] to
+easily provision a sandbox environment. This guide will assume a cluster with
+one server node and three client nodes.
+
+-> **Note:** This guide is for demo purposes and only assumes a single server
+node. Please consult the [reference architecture][reference-arch] for production
+configuration.
+
+## Steps
+
+### Step 1: Create a Job for Demo Web App
+
+Create a job for a demo web application and name the file `webapp.nomad`:
+
+```hcl
+job "demo-webapp" {
+ datacenters = ["dc1"]
+
+ group "demo" {
+ count = 3
+
+ task "server" {
+ env {
+ PORT = "${NOMAD_PORT_http}"
+ NODE_IP = "${NOMAD_IP_http}"
+ }
+
+ driver = "docker"
+
+ config {
+ image = "hashicorp/demo-webapp-lb-guide"
+ }
+
+ resources {
+ network {
+ mbits = 10
+ port "http" {}
+ }
+ }
+
+ service {
+ name = "demo-webapp"
+ port = "http"
+ tags = [
+ "traefik.tags=service",
+ "traefik.frontend.rule=PathPrefixStrip:/myapp",
+ ]
+
+ check {
+ type = "http"
+ path = "/"
+ interval = "2s"
+ timeout = "2s"
+ }
+ }
+ }
+ }
+}
+```
+
+- Note that this job deploys 3 instances of our demo web application which we
+ will load balance with Traefik in the next few steps.
+- We are using tags to configure routing to our web app. Even though our
+ application listens on `/`, it is possible to define `/myapp` as the route
+ because of the [`PathPrefixStrip`][matchers] option.
+
+### Step 2: Deploy the Demo Web App
+
+We can now deploy our demo web application:
+
+```shell
+$ nomad run webapp.nomad
+==> Monitoring evaluation "a2061ab7"
+ Evaluation triggered by job "demo-webapp"
+ Evaluation within deployment: "8ca6d358"
+ Allocation "1d14babe" created: node "2d6eea6e", group "demo"
+ Allocation "3abb950d" created: node "a62fa99d", group "demo"
+ Allocation "c65e14bf" created: node "a209a662", group "demo"
+ Evaluation status changed: "pending" -> "complete"
+==> Evaluation "a2061ab7" finished with status "complete"
+```
+
+### Step 3: Create a Job for Traefik
+
+Create a job for Traefik and name it `traefik.nomad`. This will be our load
+balancer that will balance requests to the deployed instances of our web
+application.
+
+```hcl
+job "traefik" {
+ region = "global"
+ datacenters = ["dc1"]
+ type = "service"
+
+ group "traefik" {
+ count = 1
+
+ task "traefik" {
+ driver = "docker"
+
+ config {
+ image = "traefik:1.7"
+ network_mode = "host"
+
+ volumes = [
+ "local/traefik.toml:/etc/traefik/traefik.toml",
+ ]
+ }
+
+ template {
+ data = < Monitoring evaluation "e22ce276"
+ Evaluation triggered by job "traefik"
+ Evaluation within deployment: "c6466497"
+ Allocation "695c5632" created: node "a62fa99d", group "traefik"
+ Evaluation status changed: "pending" -> "complete"
+==> Evaluation "e22ce276" finished with status "complete"
+```
+
+### Step 5: Check the Traefik Dashboard
+
+You can visit the dashboard for Traefik at
+`http://:8081`. You can use this page to verify your
+settings and for basic monitoring.
+
+[![Home Page][traefik_ui]][traefik_ui]
+
+### Step 6: Make a Request to the Load Balancer
+
+If you query the Traefik load balancer, you should be able to see a response
+similar to the one shown below (this command should be run from a
+node inside your cluster):
+
+```shell
+$ curl http://traefik.service.consul:8080/myapp
+Welcome! You are on node 172.31.28.103:28893
+```
+
+Note that your request has been forwarded to one of the several deployed
+instances of the demo web application (which is spread across 3 Nomad clients).
+The output shows the IP address of the host it is deployed on. If you repeat
+your requests, you will see that the IP address changes.
+
+* Note: if you would like to access Traefik from outside your cluster, you
+ can set up a load balancer in your environment that maps to an active port
+ `8080` on your clients (or whichever port you have configured for Traefik to
+ listen on). You can then send your requests directly to your external load
+ balancer.
+
+[inline]: /docs/job-specification/template.html#inline-template
+[matchers]: https://docs.traefik.io/v1.4/basics/#matchers
+[reference-arch]: /guides/install/production/reference-architecture.html#high-availability
+[remote-template]: /docs/job-specification/template.html#remote-template
+[template-stanza]: /docs/job-specification/template.html
+[terraform-repo]: https://github.com/hashicorp/nomad/tree/master/terraform#provision-a-nomad-cluster-in-the-cloud
+[traefik]: https://traefik.io/
+[traefik_ui]: /assets/images/traefik_ui.png
+[traefik-consul-provider]: https://docs.traefik.io/v1.7/configuration/backends/consulcatalog/
+[traefik-tags]: https://docs.traefik.io/v1.5/configuration/backends/consulcatalog/#tags
diff --git a/website/source/guides/operating-a-job/resource-utilization.html.md b/website/source/guides/operating-a-job/resource-utilization.html.md
index 18012ccbb..43255fd82 100644
--- a/website/source/guides/operating-a-job/resource-utilization.html.md
+++ b/website/source/guides/operating-a-job/resource-utilization.html.md
@@ -64,10 +64,10 @@ Time Type Description
Here we can see that we are near the limit of our configured CPU but we have
plenty of memory headroom. We can use this information to alter our job's
-resources to better reflect is actually needs:
+resources to better reflect its actual needs:
```hcl
-resource {
+resources {
cpu = 200
memory = 10
}
diff --git a/website/source/guides/operations/autopilot.html.md b/website/source/guides/operations/autopilot.html.md
index 462edd78a..83e5932cc 100644
--- a/website/source/guides/operations/autopilot.html.md
+++ b/website/source/guides/operations/autopilot.html.md
@@ -14,7 +14,10 @@ servers, monitoring the state of the Raft cluster, and stable server introductio
To enable Autopilot features (with the exception of dead server cleanup),
the `raft_protocol` setting in the [server stanza](/docs/configuration/server.html)
-must be set to 3 on all servers. In Nomad 0.8 this setting defaults to 2; in Nomad 0.9 it will default to 3.
+must be set to 3 on all servers. This setting defaults to 2; a cluster configured with protocol 2 can be upgraded
+to protocol 3 with a rolling update, provided time for membership to stabilize following each server update.
+During an upgrade from raft protocol 2 to 3, use the `nomad operator raft list-peers`
+command between server updates to verify that each server identifier is replaced with a UUID.
For more information, see the [Version Upgrade section](/guides/upgrade/upgrade-specific.html#raft-protocol-version-compatibility)
on Raft Protocol versions.
diff --git a/website/source/guides/security/acl.html.markdown b/website/source/guides/security/acl.html.markdown
index 3fe5bd011..0d72c0e6e 100644
--- a/website/source/guides/security/acl.html.markdown
+++ b/website/source/guides/security/acl.html.markdown
@@ -42,13 +42,14 @@ When ACL tokens are created, they can be optionally marked as `Global`. This cau
The following table summarizes the ACL Rules that are available for constructing policy rules:
-| Policy | Scope |
+| Policy | Scope |
| ---------- | -------------------------------------------- |
-| [namespace](#namespace-rules) | Job related operations by namespace |
-| [agent](#agent-rules) | Utility operations in the Agent API |
-| [node](#node-rules) | Node-level catalog operations |
+| [namespace](#namespace-rules) | Job related operations by namespace |
+| [agent](#agent-rules) | Utility operations in the Agent API |
+| [node](#node-rules) | Node-level catalog operations |
| [operator](#operator-rules) | Cluster-level operations in the Operator API |
| [quota](#quota-rules) | Quota specification related operations |
+| [host_volume](#host_volume-rules) | host_volume related operations |
Constructing rules from these policies is covered in detail in the Rule Specification section below.
@@ -108,9 +109,7 @@ To enforce client endpoints, we need to enable ACLs on clients as well. This is
### Set an Anonymous Policy (Optional)
-The ACL system uses a whitelist or default-deny model. This means by default no permissions are granted.
-For clients making requests without ACL tokens, we may want to grant some basic level of access. This is done by setting rules
-on the special "anonymous" policy. This policy is applied to any requests made without a token.
+The ACL system uses a whitelist or default-deny model. This means by default no permissions are granted. For clients making requests without ACL tokens, we may want to grant some basic level of access. This is done by setting rules on the special "anonymous" policy. This policy is applied to any requests made without a token.
To permit anonymous users to read, we can setup the following policy:
@@ -149,9 +148,7 @@ $ curl https://localhost:4646/v1/jobs
# Rule Specification
-A core part of the ACL system is the rule language which is used to describe the policy that must be enforced.
-We make use of the [HashiCorp Configuration Language (HCL)](https://github.com/hashicorp/hcl/) to specify rules.
-This language is human readable and interoperable with JSON making it easy to machine-generate. Policies can contain any number of rules.
+A core part of the ACL system is the rule language which is used to describe the policy that must be enforced. We make use of the [HashiCorp Configuration Language (HCL)](https://github.com/hashicorp/hcl/) to specify rules. This language is human readable and interoperable with JSON making it easy to machine-generate. Policies can contain any number of rules.
Policies typically have several dispositions:
@@ -234,13 +231,16 @@ Namespace rules are keyed by the namespace name they apply to. When no namespace
* `dispatch-job` - Allows jobs to be dispatched
* `read-logs` - Allows the logs associated with a job to be viewed.
* `read-fs` - Allows the filesystem of allocations associated to be viewed.
+* `alloc-exec` - Allows an operator to connect and run commands in running allocations.
+* `alloc-node-exec` - Allows an operator to connect and run commands in allocations running without filesystem isolation, for example, raw_exec jobs.
+* `alloc-lifecycle` - Allows an operator to stop individual allocations manually.
* `sentinel-override` - Allows soft mandatory policies to be overridden.
The coarse grained policy dispositions are shorthand for the fine grained capabilities:
* `deny` policy - ["deny"]
* `read` policy - ["list-jobs", "read-job"]
-* `write` policy - ["list-jobs", "read-job", "submit-job", "read-logs", "read-fs", "dispatch-job"]
+* `write` policy - ["list-jobs", "read-job", "submit-job", "dispatch-job", "read-logs", "read-fs", "alloc-exec", "alloc-lifecycle"]
When both the policy short hand and a capabilities list are provided, the capabilities are merged:
@@ -253,7 +253,7 @@ namespace "default" {
}
```
-Namespaces definitions may also include globs, allowing a single policy definition to apply to a set of namespaces. For example, the below policy allows read access to most production namespaces, but allows write access to the "production-api" namespace, and rejects any access to the "production-web" namespace.
+Namespace definitions may also include globs, allowing a single policy definition to apply to a set of namespaces. For example, the below policy allows read access to most production namespaces, but allows write access to the "production-api" namespace, and rejects any access to the "production-web" namespace.
```
namespace "production-*" {
@@ -285,8 +285,7 @@ Will evaluate to deny for `production-web`, because it is 9 characters different
### Node Rules
-The `node` policy controls access to the [Node API](/api/nodes.html) such as listing nodes or triggering a node drain.
-Node rules are specified for all nodes using the `node` key:
+The `node` policy controls access to the [Node API](/api/nodes.html) such as listing nodes or triggering a node drain. Node rules are specified for all nodes using the `node` key:
```
node {
@@ -298,8 +297,7 @@ There's only one node policy allowed per rule set, and its value is set to one o
### Agent Rules
-The `agent` policy controls access to the utility operations in the [Agent API](/api/agent.html), such as join and leave.
-Agent rules are specified for all agents using the `agent` key:
+The `agent` policy controls access to the utility operations in the [Agent API](/api/agent.html), such as join and leave. Agent rules are specified for all agents using the `agent` key:
```
agent {
@@ -324,8 +322,7 @@ There's only one operator policy allowed per rule set, and its value is set to o
### Quota Rules
-The `quota` policy controls access to the quota specification operations in the [Quota API](/api/quotas.html), such as quota creation and deletion.
-Quota rules are specified for all quotas using the `quota` key:
+The `quota` policy controls access to the quota specification operations in the [Quota API](/api/quotas.html), such as quota creation and deletion. Quota rules are specified for all quotas using the `quota` key:
```
quota {
@@ -339,27 +336,51 @@ There's only one quota policy allowed per rule set, and its value is set to one
### Outages and Multi-Region Replication
-The ACL system takes some steps to ensure operation during outages. Clients nodes maintain a limited
-cache of ACL tokens and ACL policies that have recently or frequently been used, associated with a time-to-live (TTL).
+The ACL system takes some steps to ensure operation during outages. Clients nodes maintain a limited cache of ACL tokens and ACL policies that have recently or frequently been used, associated with a time-to-live (TTL).
-When the region servers are unavailable, the clients will automatically ignore the cache TTL,
-and extend the cache until the outage has recovered. For any policies or tokens that are not cached,
-they will be treated as missing and denied access until the outage has been resolved.
+When the region servers are unavailable, the clients will automatically ignore the cache TTL, and extend the cache until the outage has recovered. For any policies or tokens that are not cached, they will be treated as missing and denied access until the outage has been resolved.
-Nomad servers have all the policies and tokens locally and can continue serving requests even if
-quorum is lost. The tokens and policies may become stale during this period as data is not actively
-replicating, but will be automatically fixed when the outage has been resolved.
+Nomad servers have all the policies and tokens locally and can continue serving requests even if quorum is lost. The tokens and policies may become stale during this period as data is not actively replicating, but will be automatically fixed when the outage has been resolved.
-In a multi-region setup, there is a single authoritative region which is the source of truth for
-ACL policies and global ACL tokens. All other regions asynchronously replicate from the authoritative
-region. When replication is interrupted, the existing data is used for request processing and may
-become stale. When the authoritative region is reachable, replication will resume and repair any
-inconsistency.
+In a multi-region setup, there is a single authoritative region which is the source of truth for ACL policies and global ACL tokens. All other regions asynchronously replicate from the authoritative region. When replication is interrupted, the existing data is used for request processing and may become stale. When the authoritative region is reachable, replication will resume and repair any inconsistency.
+
+### host_volume Rules
+
+The `host_volume` policy controls access to mounting and accessing host volumes.
+
+```
+host_volume "*" {
+ policy = "write"
+}
+
+host_volume "prod-*" {
+ policy = "deny"
+}
+
+host_volume "prod-ca-certificates" {
+ policy = "read"
+}
+```
+
+Host volume rules are keyed to the volume names that they apply to. As with namespaces, you may use wildcards to reuse the same configuration across a set of volumes. In addition to the coarse grained policy specification, the `host_volume` stanza allows setting a more fine grained list of capabilities. This includes:
+
+- `deny` - Do not allow a user to mount a volume in any way.
+- `mount-readonly` - Only allow the user to mount the volume as `readonly`
+- `mount-readwrite` - Allow the user to mount the volume as `readonly` or `readwrite` if the `host_volume` configuration allows it.
+
+The course grained policy permissions are shorthand for the fine grained capabilities:
+
+- `deny` policy - ["deny"]
+- `read` policy - ["mount-readonly"]
+- `write` policy - ["mount-readonly", "mount-readwrite"]
+
+When both the policy short hand and a capabilities list are provided, the capabilities are merged.
+
+**Note:** Host Volume policies are applied when attempting to _use_ a volume, however, if a user has access to the Node API, they will be able to see that a volume exists in the `nomad node status` output regardless of this configuration.
### Resetting ACL Bootstrap
-If all management tokens are lost, it is possible to reset the ACL bootstrap so that it can be performed again.
-First, we need to determine the reset index, this can be done by calling the reset endpoint:
+If all management tokens are lost, it is possible to reset the ACL bootstrap so that it can be performed again. First, we need to determine the reset index, this can be done by calling the reset endpoint:
```
$ nomad acl bootstrap
@@ -367,8 +388,7 @@ $ nomad acl bootstrap
Error bootstrapping: Unexpected response code: 500 (ACL bootstrap already done (reset index: 7))
```
-Here we can see the `reset index`. To reset the ACL system, we create the
-`acl-bootstrap-reset` file in the data directory of the **leader** node:
+Here we can see the `reset index`. To reset the ACL system, we create the `acl-bootstrap-reset` file in the data directory of the **leader** node:
```
$ echo 7 >> /nomad-data-dir/server/acl-bootstrap-reset
@@ -397,19 +417,13 @@ $ nomad acl bootstrap
Error bootstrapping: Unexpected response code: 500 (Invalid bootstrap reset index (specified 7, reset index: 11))
```
-This is because the reset file is in place, but with the incorrect index.
-The reset file can be deleted, but Nomad will not reset the bootstrap until the index is corrected.
+This is because the reset file is in place, but with the incorrect index. The reset file can be deleted, but Nomad will not reset the bootstrap until the index is corrected.
## Vault Integration
-HashiCorp Vault has a secret backend for generating short-lived Nomad tokens. As Vault has a number of
-authentication backends, it could provide a workflow where a user or orchestration system authenticates
-using an pre-existing identity service (LDAP, Okta, Amazon IAM, etc.) in order to obtain a short-lived
-Nomad token.
-~> HashiCorp Vault is a standalone product with its own set of deployment and
- configuration best practices. Please review [Vault's
- documentation](https://www.vaultproject.io/docs/index.html) before deploying it
- in production.
+HashiCorp Vault has a secret backend for generating short-lived Nomad tokens. As Vault has a number of authentication backends, it could provide a workflow where a user or orchestration system authenticates using an pre-existing identity service (LDAP, Okta, Amazon IAM, etc.) in order to obtain a short-lived Nomad token.
+
+~> HashiCorp Vault is a standalone product with its own set of deployment and configuration best practices. Please review [Vault's documentation](https://www.vaultproject.io/docs/index.html) before deploying it in production.
For evaluation purposes, a Vault server in "dev" mode can be used.
@@ -447,15 +461,15 @@ Root Token: f84b587e-5882-bba1-a3f0-d1a3d90ca105
```
### Pre-requisites
+
- Nomad ACL system bootstrapped.
-- A management token (the bootstrap token can be used, but for production
- systems it's recommended to have a separate token)
+- A management token (You can use the bootstrap token; however, for production systems we recommended having an integration-specific token)
- A set of policies created in Nomad
-- An unsealed Vault server (Vault running in `dev` mode is unsealed
- automatically upon startup)
+- An unsealed Vault server (Vault running in `dev` mode is unsealed automatically upon startup)
- Vault must be version 0.9.3 or later to have the Nomad plugin
### Configuration
+
Mount the [`nomad`][nomad_backend] secret backend in Vault:
```
@@ -472,10 +486,7 @@ $ vault write nomad/config/access \
Success! Data written to: nomad/config/access
```
-Vault secret backends have the concept of roles, which are configuration units that group one or more
-Vault policies to a potential identity attribute, (e.g. LDAP Group membership). The name of the role
-is specified on the path, while the mapping to policies is done by naming them in a comma separated list,
-for example:
+Vault secret backends have the concept of roles, which are configuration units that group one or more Vault policies to a potential identity attribute, (e.g. LDAP Group membership). The name of the role is specified on the path, while the mapping to policies is done by naming them in a comma separated list, for example:
```
$ vault write nomad/role/role-name policies=policyone,policytwo
@@ -489,8 +500,7 @@ $ vault write nomad/role/role-name type=management global=true
Success! Data written to: nomad/role/role-name
```
-Create a Vault policy to allow different identities to get tokens associated with a particular
-role:
+Create a Vault policy to allow different identities to get tokens associated with a particular role:
```
$ echo 'path "nomad/creds/role-name" {
@@ -499,9 +509,7 @@ $ echo 'path "nomad/creds/role-name" {
Policy 'nomad-user-policy' written.
```
-If you have an existing authentication backend (like LDAP), follow the relevant instructions to create
-a role available on the [Authentication backends page](https://www.vaultproject.io/docs/auth/index.html).
-Otherwise, for testing purposes, a Vault token can be generated associated with the policy:
+If you have an existing authentication backend (like LDAP), follow the relevant instructions to create a role available on the [Authentication backends page](https://www.vaultproject.io/docs/auth/index.html). Otherwise, for testing purposes, a Vault token can be generated associated with the policy:
```
$ vault token create -policy=nomad-user-policy
@@ -542,8 +550,7 @@ Create Index = 228
Modify Index = 228
```
-Any user or process with access to Vault can now obtain short lived Nomad Tokens in order to
-carry out operations, thus centralising the access to Nomad tokens.
+Any user or process with access to Vault can now obtain short lived Nomad Tokens in order to carry out operations, thus centralizing the access to Nomad tokens.
[nomad_backend]: https://www.vaultproject.io/docs/secrets/nomad/index.html
diff --git a/website/source/guides/security/vault-pki-integration.html.md b/website/source/guides/security/vault-pki-integration.html.md
index 56e7eac95..ff2221c44 100644
--- a/website/source/guides/security/vault-pki-integration.html.md
+++ b/website/source/guides/security/vault-pki-integration.html.md
@@ -239,8 +239,8 @@ Success! Uploaded policy: tls-policy
Create a token based on `tls-policy` with the following command:
-```
-$ vault token create -policy="tls-policy" -ttl=24h
+```shell
+$ vault token create -policy="tls-policy" -period=24h -orphan
```
If the command is successful, you will see output similar to the following:
@@ -248,8 +248,8 @@ If the command is successful, you will see output similar to the following:
```shell
Key Value
--- -----
-token s.xafiYzh7MCMotHLu2d35hepR
-token_accessor 9vj7q5nnF53JAcTyxvccpAZK
+token s.m069Vpul3c4lfGnJ6unpxgxD
+token_accessor HiZALO25hDQzSgyaglkzty3M
token_duration 24h
token_renewable true
token_policies ["default" "tls-policy"]
@@ -383,7 +383,7 @@ vault {
address = "http://active.vault.service.consul:8200"
# This value can also be specified via the environment variable VAULT_TOKEN.
- token = "s.xafiYzh7MCMotHLu2d35hepR"
+ token = "s.m069Vpul3c4lfGnJ6unpxgxD"
# This should also be less than or around 1/3 of your TTL for a predictable
# behaviour. See https://github.com/hashicorp/vault/issues/3414
diff --git a/website/source/guides/stateful-workloads/host-volumes.md b/website/source/guides/stateful-workloads/host-volumes.md
new file mode 100644
index 000000000..01420f577
--- /dev/null
+++ b/website/source/guides/stateful-workloads/host-volumes.md
@@ -0,0 +1,392 @@
+---
+layout: "guides"
+page_title: "Stateful Workloads with Nomad Host Volumes"
+sidebar_current: "guides-stateful-workloads-host-volumes"
+description: |-
+ There are multiple approaches to deploying stateful applications in Nomad.
+ This guide uses Nomad Host to Volumes deploy a MySQL database.
+---
+
+# Stateful Workloads with Nomad Host Volumes
+
+~> **Note:** This guide requires Nomad 0.10.0 or later.
+
+Nomad Host Volumes can manage storage for stateful workloads running inside your
+Nomad cluster. This guide walks you through deploying a MySQL workload to a node
+containing supporting storage.
+
+Nomad host volumes provide a more workload-agnostic way to specify resources,
+available for Nomad drivers like `exec`, `java`, and `docker`. See the
+[`host_volume` specification][host_volume spec] for more information about
+supported drivers.
+
+Nomad is also aware of host volumes during the scheduling process, enabling it
+to make scheduling decisions based on the availability of host volumes on a
+specific client.
+
+This can be contrasted with Nomad support for Docker volumes. Because Docker
+volumes are managed outside of Nomad and the Nomad scheduled is not aware of
+them, Docker volumes have to either be deployed to all clients or operators have
+to use an additional, manually-maintained constraint to inform the scheduler
+where they are present.
+
+## Reference material
+
+- [Nomad `host_volume` specification][host_volume spec]
+- [Nomad `volume` specification][volume spec]
+- [Nomad `volume_mount` specification][volume_mount spec]
+
+## Estimated time to complete
+
+20 minutes
+
+## Challenge
+
+Deploy a MySQL database that needs to be able to persist data without using
+operator-configured Docker volumes.
+
+## Solution
+
+Configure Nomad Host Volumes on a Nomad client node in order to persist data
+in the event that the container is restarted.
+
+## Prerequisites
+
+To perform the tasks described in this guide, you need to have a Nomad
+environment with Consul installed. You can use this [project][repo] to easily
+provision a sandbox environment. This guide will assume a cluster with one
+server node and three client nodes.
+
+~> **Please Note:** This guide is for demo purposes and is only using a single
+server node. In a production cluster, 3 or 5 server nodes are recommended.
+
+### Prerequisite 1: Install the MySQL client
+
+We will use the MySQL client to connect to our MySQL database and verify our data.
+Ensure it is installed on a node with access to port 3306 on your Nomad clients:
+
+Ubuntu:
+
+```bash
+sudo apt install mysql-client
+```
+
+CentOS:
+
+```bash
+sudo yum install mysql
+```
+
+macOS via Homebrew:
+
+```bash
+brew install mysql-client
+```
+
+### Step 1: Create a directory to use as a mount target
+
+On a Nomad client node in your cluster, create a directory that will be used for
+persisting the MySQL data. For this example, let's create the directory
+`/opt/mysql/data`.
+
+```bash
+sudo mkdir -p /opt/mysql/data
+```
+
+You might need to change the owner on this folder if the Nomad client does not
+run as the `root` user.
+
+```bash
+sudo chown «Nomad user» /opt/mysql/data
+```
+
+### Step 2: Configure the `mysql` host volume on the client
+
+Edit the Nomad configuration on this Nomad client to create the Host Volume.
+
+Add the following to the `client` stanza of your Nomad configuration:
+
+```hcl
+ host_volume "mysql" {
+ path = "/opt/mysql/data"
+ read_only = false
+ }
+```
+
+Save this change, and then restart the Nomad service on this client to make the
+Host Volume active. While still on the client, you can easily verify that the
+host volume is configured by using the `nomad node status` command as shown
+below:
+
+```shell
+$ nomad node status -short -self
+ID = 12937fa7
+Name = ip-172-31-15-65
+Class =
+DC = dc1
+Drain = false
+Eligibility = eligible
+Status = ready
+Host Volumes = mysql
+Drivers = docker,exec,java,mock_driver,raw_exec,rkt
+...
+```
+
+### Step 3: Create the `mysql.nomad` job file
+
+We are now ready to deploy a MySQL database that can use Nomad Host Volumes for
+storage. Create a file called `mysql.nomad` and provide it the following
+contents:
+
+```hcl
+job "mysql-server" {
+ datacenters = ["dc1"]
+ type = "service"
+
+ group "mysql-server" {
+ count = 1
+
+ volume "mysql" {
+ type = "host"
+ read_only = false
+ source = "mysql"
+ }
+
+ restart {
+ attempts = 10
+ interval = "5m"
+ delay = "25s"
+ mode = "delay"
+ }
+
+ task "mysql-server" {
+ driver = "docker"
+
+ volume_mount {
+ volume = "mysql"
+ destination = "/var/lib/mysql"
+ read_only = false
+ }
+
+ env = {
+ "MYSQL_ROOT_PASSWORD" = "password"
+ }
+
+ config {
+ image = "hashicorp/mysql-portworx-demo:latest"
+
+ port_map {
+ db = 3306
+ }
+ }
+
+ resources {
+ cpu = 500
+ memory = 1024
+
+ network {
+ port "db" {
+ static = 3306
+ }
+ }
+ }
+
+ service {
+ name = "mysql-server"
+ port = "db"
+
+ check {
+ type = "tcp"
+ interval = "10s"
+ timeout = "2s"
+ }
+ }
+ }
+ }
+}
+```
+
+#### Notes about the above job specification
+
+- The service name is `mysql-server` which we will use later to connect to the
+ database.
+
+- The `read_only` argument is supplied on all of the volume-related stanzas in
+ to help highlight all of the places you would need to change to make a
+ read-only volume mount. Please see the [`host_volume`][host_volume spec],
+ [`volume`][volume spec], and [`volume_mount`][volume_mount spec] specifications
+ for more details.
+
+- For lower-memory instances, you might need to reduce the requested memory in
+ the resources stanza to harmonize with available resources in your cluster.
+
+### Step 4: Deploy the MySQL database
+
+Register the job file you created in the previous step with the following
+command:
+
+```
+$ nomad run mysql.nomad
+==> Monitoring evaluation "aa478d82"
+ Evaluation triggered by job "mysql-server"
+ Allocation "6c3b3703" created: node "be8aad4e", group "mysql-server"
+ Evaluation status changed: "pending" -> "complete"
+==> Evaluation "aa478d82" finished with status "complete"
+```
+
+Check the status of the allocation and ensure the task is running:
+
+```
+$ nomad status mysql-server
+ID = mysql-server
+...
+Summary
+Task Group Queued Starting Running Failed Complete Lost
+mysql-server 0 0 1 0 0 0
+```
+
+### Step 5: Connect to MySQL
+
+Using the mysql client (installed in [Prerequisite 1]), connect to the database
+and access the information:
+
+```
+mysql -h mysql-server.service.consul -u web -p -D itemcollection
+```
+
+The password for this demo database is `password`.
+
+~> **Please Note:** This guide is for demo purposes and does not follow best
+practices for securing database passwords. See [Keeping Passwords
+Secure][password-security] for more information.
+
+Consul is installed alongside Nomad in this cluster so we were able to
+connect using the `mysql-server` service name we registered with our task in
+our job file.
+
+### Step 6: Add data to MySQL
+
+Once you are connected to the database, verify the table `items` exists:
+
+```
+mysql> show tables;
++--------------------------+
+| Tables_in_itemcollection |
++--------------------------+
+| items |
++--------------------------+
+1 row in set (0.00 sec)
+```
+
+Display the contents of this table with the following command:
+
+```
+mysql> select * from items;
++----+----------+
+| id | name |
++----+----------+
+| 1 | bike |
+| 2 | baseball |
+| 3 | chair |
++----+----------+
+3 rows in set (0.00 sec)
+```
+
+Now add some data to this table (after we terminate our database in Nomad and
+bring it back up, this data should still be intact):
+
+```
+mysql> INSERT INTO items (name) VALUES ('glove');
+```
+
+Run the `INSERT INTO` command as many times as you like with different values.
+
+```
+mysql> INSERT INTO items (name) VALUES ('hat');
+mysql> INSERT INTO items (name) VALUES ('keyboard');
+```
+
+Once you you are done, type `exit` and return back to the Nomad client command
+line:
+
+```
+mysql> exit
+Bye
+```
+
+### Step 7: Stop and purge the database job
+
+Run the following command to stop and purge the MySQL job from the cluster:
+
+```
+$ nomad stop -purge mysql-server
+==> Monitoring evaluation "6b784149"
+ Evaluation triggered by job "mysql-server"
+ Evaluation status changed: "pending" -> "complete"
+==> Evaluation "6b784149" finished with status "complete"
+```
+
+Verify no jobs are running in the cluster:
+
+```
+$ nomad status
+No running jobs
+```
+
+In more advanced cases, the directory backing the host volume could be a mounted
+network filesystem, like NFS, or cluster-aware filesystem, like glusterFS. This
+can enable more complex, automatic failure-recovery scenarios in the event of a
+node failure.
+
+### Step 8: Re-deploy the database
+
+Using the `mysql.nomad` job file from [Step 3], re-deploy the database to the
+Nomad cluster.
+
+```
+==> Monitoring evaluation "61b4f648"
+ Evaluation triggered by job "mysql-server"
+ Allocation "8e1324d2" created: node "be8aad4e", group "mysql-server"
+ Evaluation status changed: "pending" -> "complete"
+==> Evaluation "61b4f648" finished with status "complete"
+```
+
+### Step 9: Verify data
+
+Once you re-connect to MySQL, you should be able to see that the information you
+added prior to destroying the database is still present:
+
+```
+mysql> select * from items;
++----+----------+
+| id | name |
++----+----------+
+| 1 | bike |
+| 2 | baseball |
+| 3 | chair |
+| 4 | glove |
+| 5 | hat |
+| 6 | keyboard |
++----+----------+
+6 rows in set (0.00 sec)
+```
+
+### Step 10: Tidying up
+
+Once you have completed this guide, you should perform the following cleanup steps:
+
+- Stop and purge the `mysql-server` job.
+
+- Remove the `host_volume "mysql"` stanza from your Nomad client configuration
+ and restart the Nomad service on that client
+
+- Remove the /opt/mysql/data folder and as much of the directory tree that you
+ no longer require.
+
+[Prerequisite 1]: #prerequisite-1-install-the-mysql-client
+[Step 3]: #step-3-create-the-mysql-nomad-job-file
+[host_volume spec]: /docs/configuration/client.html#host_volume-stanza
+[volume spec]: /docs/job-specification/volume.html
+[volume_mount spec]: /docs/job-specification/volume_mount.html
+[password-security]: https://dev.mysql.com/doc/refman/8.0/en/password-security.html
+[repo]: https://github.com/hashicorp/nomad/tree/master/terraform#provision-a-nomad-cluster-in-the-cloud
diff --git a/website/source/guides/stateful-workloads/portworx.html.md b/website/source/guides/stateful-workloads/portworx.html.md
index 06484aeca..e7baedc31 100644
--- a/website/source/guides/stateful-workloads/portworx.html.md
+++ b/website/source/guides/stateful-workloads/portworx.html.md
@@ -1,7 +1,7 @@
---
layout: "guides"
page_title: "Stateful Workloads with Portworx"
-sidebar_current: "guides-stateful-workloads"
+sidebar_current: "guides-stateful-workloads-portworx"
description: |-
There are multiple approaches to deploying stateful applications in Nomad.
This guide uses Portworx deploy a MySQL database.
diff --git a/website/source/guides/stateful-workloads/stateful-workloads.html.md b/website/source/guides/stateful-workloads/stateful-workloads.html.md
index 650b5e0c1..dcf3830c7 100644
--- a/website/source/guides/stateful-workloads/stateful-workloads.html.md
+++ b/website/source/guides/stateful-workloads/stateful-workloads.html.md
@@ -9,6 +9,14 @@ description: |-
# Stateful Workloads
+Nomad allows a user to mount persistent data from local or remote storage volumes
+into task environments in a couple of ways — host volume mounts or Docker Volume
+drivers.
+
+Nomad host volumes allow you to mount any directory on the Nomad client into an
+allocation. These mounts can then be connected to individual tasks within a task
+group.
+
The Docker task driver's support for [volumes][docker-volumes] enables Nomad to
integrate with software-defined storage (SDS) solutions like
[Portworx][portworx] to support stateful workloads. Please keep in mind that
@@ -17,14 +25,11 @@ delegated to the SDS providers. Please assess all factors and risks when
utilizing such providers to run stateful workloads (such as your production
database).
-Nomad will be adding first class features in the near future that will allow a
-user to mount local or remote storage volumes into task environments in a
-consistent way across all task drivers and storage providers.
-
Please refer to the specific documentation links below or in the sidebar for
more detailed information about using specific storage integrations.
+- [Host Volumes](/guides/stateful-workloads/host-volumes.html)
- [Portworx](/guides/stateful-workloads/portworx.html)
[docker-volumes]: /docs/drivers/docker.html#volumes
-[portworx]: https://docs.portworx.com/install-with-other/nomad
\ No newline at end of file
+[portworx]: https://docs.portworx.com/install-with-other/nomad
diff --git a/website/source/guides/upgrade/upgrade-specific.html.md b/website/source/guides/upgrade/upgrade-specific.html.md
index aa084261b..3b93d8649 100644
--- a/website/source/guides/upgrade/upgrade-specific.html.md
+++ b/website/source/guides/upgrade/upgrade-specific.html.md
@@ -15,6 +15,31 @@ details provided for their upgrades as a result of new features or changed
behavior. This page is used to document those details separately from the
standard upgrade flow.
+## Nomad 0.10.0
+
+### Deployments
+
+Nomad 0.10 enables rolling deployments for service jobs by default
+and adds a default update stanza when a service job is created or updated.
+This does not affect jobs with an update stanza.
+
+In pre-0.10 releases, when updating a service job without an update stanza,
+all existing allocations are stopped while new allocations start up,
+and this may cause a service degradation or an outage.
+You can regain this behavior and disable deployments by setting `max_parallel` to 0.
+
+For more information, see [`update` stanza][update].
+
+## Nomad 0.9.5
+
+### Template Rendering
+
+Nomad 0.9.5 includes security fixes for privilege escalation vulnerabilities in handling of job `template` stanzas:
+
+ * The client host's environment variables are now cleaned before rendering the template. If a template includes the `env` function, the job should include an [`env`](https://www.nomadproject.io/docs/job-specification/env.html) stanza to allow access to the variable in the template.
+ * The `plugin` function is no longer permitted by default and will raise an error if used in a template. Operator can opt-in to permitting this function with the new [`template.function_blacklist`](https://www.nomadproject.io/docs/configuration/client.html#template-parameters) field in the client configuration.
+ * The `file` function has been changed to restrict paths to fall inside the task directory by default. Paths that used the `NOMAD_TASK_DIR` environment variable to prefix file paths should work unchanged. Relative paths or symlinks that point outside the task directory will raise an error. An operator can opt-out of this protection with the new [`template.disable_file_sandbox`](https://www.nomadproject.io/docs/configuration/client.html#template-parameters) field in the client configuration.
+
## Nomad 0.9.0
### Preemption
@@ -142,7 +167,7 @@ Raft Protocol versions supported by each Nomad version:
1
- 0.8
+ 0.8 and later
1, 2, 3
@@ -347,3 +372,4 @@ deleted and then Nomad 0.3.0 can be launched.
[preemption]: /docs/internals/scheduling/preemption.html
[task-config]: /docs/job-specification/task.html#config
[validate]: /docs/commands/job/validate.html
+[update]: /docs/job-specification/update.html
diff --git a/website/source/guides/web-ui/access.html.md b/website/source/guides/web-ui/access.html.md
new file mode 100644
index 000000000..049adb02d
--- /dev/null
+++ b/website/source/guides/web-ui/access.html.md
@@ -0,0 +1,41 @@
+---
+layout: "guides"
+page_title: "Accessing the Web UI"
+sidebar_current: "guides-web-ui-access"
+description: |-
+ Learn how to access the Nomad Web UI from a browser or from the CLI.
+---
+
+# Accessing the Web UI
+
+The Nomad Web UI is served alongside the API. If you visit the Nomad server address in a web
+browser, you will be redirected to the Web UI, which is served under `/ui`. If you are unsure what
+port the Nomad HTTP API is running on, try the default port: `4646`.
+
+The first page you will see is a listing of all Jobs for the default namespace.
+
+[![Jobs List][img-jobs-list]][img-jobs-list]
+
+The entire Web UI sitemap is [documented as an API](/api/ui.html).
+
+## Getting to the Web UI from the CLI
+
+In order to make it as seamless as possible to jump between the CLI and UI, the Nomad CLI has a
+[`ui` subcommand](/docs/commands/ui.html). This command can take any identifier and open the
+appropriate web page.
+
+**Open the UI directly to look at a job:**
+
+```
+$ nomad ui redis-job
+http://127.0.0.1:4646/ui/jobs/redis-job
+```
+
+**Open the UI directly to look at an allocation:**
+
+```
+$ nomad ui d4005969
+Opening URL "http://127.0.0.1:4646/ui/allocations/d4005969-b16f-10eb-4fe1-a5374986083d"
+```
+
+[img-jobs-list]: /assets/images/guide-ui-jobs-list.png
diff --git a/website/source/guides/web-ui/index.html.md b/website/source/guides/web-ui/index.html.md
new file mode 100644
index 000000000..69e5550c8
--- /dev/null
+++ b/website/source/guides/web-ui/index.html.md
@@ -0,0 +1,19 @@
+---
+layout: "guides"
+page_title: "Web UI"
+sidebar_current: "guides-web-ui"
+description: |-
+ Learn how to use the Nomad Web UI.
+---
+
+# Using Nomad with the Web UI
+
+The Nomad Web UI offers an easy to use web experience for inspecting a Nomad cluster. It's built
+into the Nomad binary and is served alongside the API. With zero additional configuration, you can
+use the Web UI instead of the CLI to inspect cluster state and submit and manage jobs.
+
+1. [Accessing the Web UI](/guides/web-ui/access.html)
+1. [Submitting a Job](/guides/web-ui/submitting-a-job.html)
+1. [Operating a Job](/guides/web-ui/operating-a-job.html)
+1. [Inspecting the Cluster](/guides/web-ui/inspecting-the-cluster.html)
+1. [Securing the Web UI with ACLs](/guides/web-ui/securing.html)
diff --git a/website/source/guides/web-ui/inspecting-the-cluster.html.md b/website/source/guides/web-ui/inspecting-the-cluster.html.md
new file mode 100644
index 000000000..64beb0974
--- /dev/null
+++ b/website/source/guides/web-ui/inspecting-the-cluster.html.md
@@ -0,0 +1,148 @@
+---
+layout: "guides"
+page_title: "Inspecting the Cluster"
+sidebar_current: "guides-web-ui-inspecting-the-cluster"
+description: |-
+ Learn how to inspect the state of the cluster from the Web UI.
+---
+
+# Inspecting the Cluster
+
+The Web UI can be a powerful tool for monitoring the state of the Nomad cluster from an
+operator's perspective. This includes showing all client nodes, showing driver health for client nodes,
+driver status, resource utilization, allocations by client node, and more.
+
+## Reviewing All Clients
+
+From any page, the Clients List page can be accessed from the left-hand navbar. On narrow screens
+this navbar may need to opened from the top-right menu button. Here you see every client in the
+cluster. The table of clients is searchable, sortable, and filterable. Each client row in the table
+show basic information, such as the Node ID, name, state, address, datacenter, and how many
+allocations are running in it.
+
+This view will also live-update as the state of client nodes change.
+
+[![Clients List][img-clients-list]][img-clients-list]
+
+## Filtering Clients
+
+If your Nomad cluster has many client nodes, it can be useful to filter the list of all client nodes
+down to only those matching certain facets. The Web UI has three facets you can filter by:
+
+1. **Class:** The node of the client, including a dynamically generated list based on the node class
+ of each client node in the cluster.
+2. **State:** The state of the cluster, including Initializing, Ready, Down, Ineligible, and
+ Draining.
+3. **Datacenter:** The datacenter the client node is in, including a dynamically generated list based
+ on all the datacenters in the cluster.
+
+[![Clients filters][img-clients-filters]][img-clients-filters]
+
+## Inspecting an Individual Client
+
+From the Clients List page, clicking a client node in the table will direct you to the Client Detail
+page for the client node. This page includes all information about the client node is live-updated
+to always present up-to-date information.
+
+[![Client Detail][img-client-detail]][img-client-detail]
+
+### Resource Utilization
+
+Nomad as APIs for reading point-in-time resource utilization metrics for client nodes. The Web UI
+uses these metrics to create time-series graphics for the current session.
+
+When viewing a client node, resource utilization will automatically start logging.
+
+[![Client Resource Utilization][img-client-resource-utilization]][img-client-resource-utilization]
+
+### Allocations
+
+Allocations belong to jobs and are placed on client nodes. The Client Detail page will list all
+allocations for a client node, including completed, failed, and lost allocations, until they are
+garbage-collected.
+
+This is presented in a searchable table which can additionally be filtered to only preempted
+allocations.
+
+[![Client Allocations][img-client-allocations]][img-client-allocations]
+
+### Client Events
+
+Client nodes will also emit events on meaningful state changes, such as when the node becomes ready
+for scheduling or when a driver becomes unhealthy.
+
+[![Client Events][img-client-events]][img-client-events]
+
+### Driver Status
+
+Task drivers are additional services running on a client node. Nomad will fingerprint and
+communicate with the task driver to determine if the driver is available and healthy. This
+information is reported through the Web UI on the Client Detail page.
+
+[![Client Driver Status][img-client-driver-status]][img-client-driver-status]
+
+### Attributes
+
+In order to allow job authors to constrain the placement of their jobs, Nomad fingerprints the
+hardware of the node the client agent is running on. This is a deeply nested document of properties
+that the Web UI presents in a scannable way.
+
+In addition to the hardware attributes, Nomad operators can annotate
+[a client node with metadata](/docs/configuration/client.html#meta) as part of the client configuration. This metadata
+is also presented on the Client Detail page.
+
+[![Client Attributes][img-client-attributes]][img-client-attributes]
+
+## When a Node is Draining
+
+A routine part of maintaining a Nomad cluster is draining nodes of allocations. This can be in
+preparation of performing operating system upgrades or decommissioning an old node in favor of a new
+VM.
+
+Drains are [performed from the CLI](/guides/operations/node-draining.html) but the status of a drain
+can be seen from the Web UI. A client node will state if it is actively draining or ineligible for
+scheduling.
+
+Since drains can be configured in a variety of ways, the Client Detail page will also present the
+details of how the drain is performed.
+
+[![Client Drain][img-client-drain]][img-client-drain]
+
+## Reviewing All Servers
+
+Whereas client nodes are used to run your jobs, server nodes are used to run Nomad and maintain
+availability. From any page, the Servers List page can be accessed from the left-hand navbar.
+
+Here you can see every server node. This will be a small list—[typically three or five](/docs/internals/consensus.html#deployment-table).
+
+[![Servers List][img-servers-list]][img-servers-list]
+
+## Inspecting an Individual Server
+
+Clicking a server node on the Servers List will expand the tags table for the server node.
+
+[![Server Detail][img-server-detail]][img-server-detail]
+
+## Access Control
+
+Depending on the size of your team and the details of you Nomad deployment, you may wish to control
+which features different internal users have access to. This includes limiting who has access to see
+and manage client nodes and see and manage server nodes. You can enforce this with Nomad's access
+control list system.
+
+By default, all features—read and write—are available to all users of the Web UI. Check out the
+[Securing the Web UI with ACLs](/guides/web-ui/securing.html) guide to learn how to prevent
+anonymous users from having write permissions as well as how to continue to use Web UI write
+features as a privileged user.
+
+[img-client-allocations]: /assets/images/guide-ui-img-client-allocations.png
+[img-client-attributes]: /assets/images/guide-ui-img-client-attributes.png
+[img-client-detail]: /assets/images/guide-ui-img-client-detail.png
+[img-client-drain]: /assets/images/guide-ui-img-client-drain.png
+[img-client-driver-status]: /assets/images/guide-ui-img-client-driver-status.png
+[img-client-events]: /assets/images/guide-ui-img-client-events.png
+[img-client-resource-utilization]: /assets/images/guide-ui-img-client-resource-utilization.png
+[img-clients-filters]: /assets/images/guide-ui-img-clients-filters.png
+[img-clients-list]: /assets/images/guide-ui-img-clients-list.png
+[img-server-detail]: /assets/images/guide-ui-img-server-detail.png
+[img-servers-list]: /assets/images/guide-ui-img-servers-list.png
diff --git a/website/source/guides/web-ui/operating-a-job.html.md b/website/source/guides/web-ui/operating-a-job.html.md
new file mode 100644
index 000000000..d3c79c308
--- /dev/null
+++ b/website/source/guides/web-ui/operating-a-job.html.md
@@ -0,0 +1,212 @@
+---
+layout: "guides"
+page_title: "Operating a Job from the Web UI"
+sidebar_current: "guides-web-ui-operating-a-job"
+description: |-
+ Learn how to operate a job from the Web UI.
+---
+
+# Reviewing Job and Allocation Status
+
+The Web UI can be a powerful companion when monitoring and debugging jobs running in Nomad. The Web
+UI will list all jobs, link jobs to allocations, allocations to client nodes, client nodes to driver
+health, and much more.
+
+## Reviewing All Jobs
+
+The first page you will see in the Web UI is the Jobs List page. Here you will find every job for a
+namespace in a region. The table of jobs is searchable, sortable, and filterable. Each job row in
+the table shows basic information, such as job name, status, type, and priority, as well as richer
+information such as a visual representation of all allocation statuses.
+
+This view will also live-update as jobs get submitted, get purged, and change status.
+
+[![Jobs List][img-jobs-list]][img-jobs-list]
+
+## Filtering Jobs
+
+If your Nomad cluster has many jobs, it can be useful to filter the list of all jobs down to only
+those matching certain facets. The Web UI has four facets you can filter by:
+
+1. **Type:** The type of job, including Batch, Parameterized, Periodic, Service, and System.
+2. **Status:** The status of the job, including Pending, Running, and Dead.
+3. **Datacenter:** The datacenter the job is running in, including a dynamically generated list
+ based on the jobs in the namespace.
+4. **Prefix:** The possible common naming prefix for a job, including a dynamically generated list
+ based on job names up to the first occurrence of `-`, `.`, and `_`. Only prefixes that match
+ multiple jobs are included.
+
+[![Job Filters][img-job-filters]][img-job-filters]
+
+## Monitoring an Allocation
+
+In Nomad, allocations are the schedulable units of work. This is where runtime metrics begin to
+surface. An allocation is composed of one or more tasks, and the utilization metrics for tasks are
+aggregated so they can be observed at the allocation level.
+
+### Resource Utilization
+
+Nomad has APIs for reading point-in-time resource utilization metrics for tasks and allocations. The
+Web UI uses these metrics to create time-series graphs for the current session.
+
+When viewing an allocation, resource utilization will automatically start logging.
+
+[![Allocation Resource Utilization][img-alloc-resource-utilization]][img-alloc-resource-utilization]
+
+### Task Events
+
+When Nomad places, prepares, and starts a task, a series of task events are emitted to help debug
+issues in the event that the task fails to start.
+
+Task events are listed on the Task Detail page and live-update as Nomad handles managing the task.
+
+[![Task Events][img-task-events]][img-task-events]
+
+### Rescheduled Allocations
+
+Allocations will be placed on any client node that satisfies the constraints of the job definition.
+There are events, however, that will cause Nomad to reschedule allocations, (e.g., node failures).
+
+Allocations can be configured [in the job definition to reschedule](/docs/job-specification/reschedule.html)
+to a different client node if the allocation ends in a failed status. This will happen after the
+task has exhausted its [local restart attempts](/docs/job-specification/restart.html).
+
+The end result of this automatic procedure is a failed allocation and that failed allocation's
+rescheduled successor. Since Nomad handles all of this automatically, the Web UI makes sure to
+explain the state of allocations through icons and linking previous and next allocations in a
+reschedule chain.
+
+[![Allocation Reschedule Icon][img-alloc-reschedule-icon]][img-alloc-reschedule-icon]
+
+[![Allocation Reschedule Details][img-alloc-reschedule-details]][img-alloc-reschedule-details]
+
+### Unhealthy Driver
+
+Given the nature of long-lived processes, it's possible for the state of the client node an
+allocation is scheduled on to change during the lifespan of the allocation. Nomad attempts to
+monitor pertinent conditions including driver health.
+
+The Web UI denotes when a driver an allocation depends on is unhealthy on the client node the
+allocation is running on.
+
+[![Allocation Unhealthy Driver][img-alloc-unhealthy-driver]][img-alloc-unhealthy-driver]
+
+### Preempted Allocations
+
+Much like how Nomad will automatically reschedule allocations, Nomad will automatically preempt
+allocations when necessary. When monitoring allocations in Nomad, it's useful to know what
+allocations were preempted and what job caused the preemption.
+
+The Web UI makes sure to tell this full story by showing which allocation caused an allocation to be
+preempted as well as the opposite: what allocations an allocation preempted. This makes it possible
+to traverse down from a job to a preempted allocation, to the allocation that caused the preemption,
+to the job that the preempting allocation is for.
+
+[![Allocation Preempter][img-alloc-preempter]][img-alloc-preempter]
+
+[![Allocation Preempted][img-alloc-preempted]][img-alloc-preempted]
+
+## Reviewing Logs for a Task
+
+A task will typically emit log information to `stdout` and `stderr`. Nomad captures these logs and
+exposes them through an API. The Web UI uses these APIs to offer `head`, `tail`, and streaming logs
+from the browser.
+
+The Web UI will first attempt to directly connect to the client node the task is running on.
+Typically, client nodes are not accessible from the public internet. If this is the case, the Web UI
+will fall back and proxy to the client node from the server node with no loss of functionality.
+
+[![Task Logs][img-task-logs]][img-task-logs]
+
+~> Not all browsers support streaming http requests. In the event that streaming is not supported,
+logs will still be followed using interval polling.
+
+## Restarting or Stopping an Allocation or Task
+
+Nomad allows for restarting and stopping individual allocations and tasks. When a
+task is restarted, Nomad will perform a local restart of the task. When an allocation is stopped,
+Nomad will mark the allocation as complete and perform a reschedule onto a different client node.
+
+Both of these features are also available in the Web UI.
+
+[![Allocation Stop and Restart][img-alloc-stop-restart]][img-alloc-stop-restart]
+
+## Forcing a Periodic Instance
+
+Periodic jobs are configured like a cron job. Sometimes, we want to micromanage the job instead of
+waiting for the period duration to elapse. Nomad calls this a
+[periodic force](/docs/commands/job/periodic-force.html) and it can be done from the Web UI on the
+Job Overview page for a periodic job.
+
+[![Periodic Force][img-periodic-force]][img-periodic-force]
+
+## Submitting a New Version of a Job
+
+From the Job Definition page, a job can be edited. After clicking the Edit button in the top-right
+corner of the code window, the job definition JSON becomes editable. The edits can then be planned
+and scheduled.
+
+[![Job Definition Edit][img-job-definition-edit]][img-job-definition-edit]
+
+~> Since each job within a namespace must have a unique name, it is possible to submit a new version
+of a job from the Run Job screen. Always review the plan output!
+
+## Monitoring a Deployment
+
+When a system or service job includes the [`update` stanza](/docs/job-specification/update.html), a
+deployment is created upon job submission. Job deployments can be monitored in realtime from the Web
+UI.
+
+The Web UI will show as new allocations become placed, tallying towards the expected total, and
+tally allocations as they becme healthy or unhealthy.
+
+Optionally, a job may use canary deployments to allow for additional health checks or manual testing
+before a full roll out. If a job uses canaries and is not configured to automatically promote the
+canary, the canary promotion operation can be done from the Job Overview page in the Web UI.
+
+[![Job Deployment with Canary Promotion][img-job-deployment-canary]][img-job-deployment-canary]
+
+## Stopping a Job
+
+Jobs can be stopped from the Job Overview page. Stopping a job will gracefully stop all allocations,
+marking them as complete, and freeing up resources in the cluster.
+
+[![Job Stop][img-job-stop]][img-job-stop]
+
+## Access Control
+
+Depending on the size of your team and the details of your Nomad deployment, you may wish to control
+which features different internal users have access to. This includes differentiation between
+submitting jobs, restarting allocations, and viewing potentially sensitive logs. You can enforce
+this with Nomad's access control list system.
+
+By default, all features—read and write—are available to all users of the Web UI. Check out the
+[Securing the Web UI with ACLs](/guides/web-ui/securing.html) guide to learn how to prevent
+anonymous users from having write permissions as well as how to continue to use Web UI write
+features as a privileged user.
+
+## Best Practices
+
+Although the Web UI lets users submit jobs in an ad-hoc manner, Nomad was deliberately designed to
+declare jobs using a configuration language. It is recommended to treat your job definitions, like
+the rest of your infrastructure, as code.
+
+By checking in your job definition files as source control, you will always have a log of changes to
+assist in debugging issues, rolling back versions, and collaborating on changes using development
+best practices like code review.
+
+[img-jobs-list]: /assets/images/guide-ui-jobs-list.png
+[img-job-filters]: /assets/images/guide-ui-img-job-filters.png
+[img-alloc-resource-utilization]: /assets/images/guide-ui-img-alloc-resource-utilization.png
+[img-task-events]: /assets/images/guide-ui-img-task-events.png
+[img-alloc-reschedule-icon]: /assets/images/guide-ui-img-alloc-reschedule-icon.png
+[img-alloc-reschedule-details]: /assets/images/guide-ui-img-alloc-reschedule-details.png
+[img-alloc-unhealthy-driver]: /assets/images/guide-ui-img-alloc-unhealthy-driver.png
+[img-alloc-preempter]: /assets/images/guide-ui-img-alloc-preempter.png
+[img-alloc-preempted]: /assets/images/guide-ui-img-alloc-preempted.png
+[img-task-logs]: /assets/images/guide-ui-img-task-logs.png
+[img-alloc-stop-restart]: /assets/images/guide-ui-img-alloc-stop-restart.png
+[img-periodic-force]: /assets/images/guide-ui-img-periodic-force.png
+[img-job-definition-edit]: /assets/images/guide-ui-img-job-definition-edit.png
+[img-job-deployment-canary]: /assets/images/guide-ui-img-job-deployment-canary.png
+[img-job-stop]: /assets/images/guide-ui-img-job-stop.png
diff --git a/website/source/guides/web-ui/securing.html.md b/website/source/guides/web-ui/securing.html.md
new file mode 100644
index 000000000..db14a1dce
--- /dev/null
+++ b/website/source/guides/web-ui/securing.html.md
@@ -0,0 +1,32 @@
+---
+layout: "guides"
+page_title: "Web UI"
+sidebar_current: "guides-web-ui-securing"
+description: |-
+ Learn how to use ACLs to secure the Web UI
+---
+
+# Securing the Web UI with ACLs
+
+By default, all features—read and write—are available to all users of the Web UI. By using [Access Control Lists](/guides/security/acl.html), it is possible to lock down what users get access to which features.
+
+## Browsing the Web UI Without an Access Control Token
+
+When a user browses the Web UI without specifying an access control token, they assume the rules of the [anonymous policy](/guides/security/acl.html#set-an-anonymous-policy-optional-). Since Nomad ACLs use a default-deny model, if ACLs are enabled and no anonymous policy is authored, the Web UI will show unauthorized messages on every page other than the settings page.
+
+[![Not authorized to see jobs][img-jobs-list-unauthorized]][img-jobs-list-unauthorized]
+
+## Setting an Access Control Token
+
+From the ACL Tokens page, which is accessible from the top-right menu, you can set your access control token via the token Secret ID.
+
+This token is saved to local storage and can be manually cleared from the ACL Tokens page.
+
+[![ACL token page][img-acl-token]][img-acl-token]
+
+[![ACL token set][img-acl-token-set]][img-acl-token-set]
+
+
+[img-jobs-list-unauthorized]: /assets/images/guide-ui-jobs-list-unauthorized.png
+[img-acl-token]: /assets/images/guide-ui-acl-token.png
+[img-acl-token-set]: /assets/images/guide-ui-acl-token-set.png
diff --git a/website/source/guides/web-ui/submitting-a-job.html.md b/website/source/guides/web-ui/submitting-a-job.html.md
new file mode 100644
index 000000000..bd2cb0ea0
--- /dev/null
+++ b/website/source/guides/web-ui/submitting-a-job.html.md
@@ -0,0 +1,184 @@
+---
+layout: "guides"
+page_title: "Submitting a Job from the Web UI"
+sidebar_current: "guides-web-ui-submitting-a-job"
+description: |-
+ Learn how to submit a job from the Web UI.
+---
+
+# Submitting a Job
+
+On the Jobs List page of the Web UI (this is the home page), there is a "Run Job" button in the
+top-left corner. Clicking this button will take you to the Job Run page.
+
+The first step in running a job is authoring the job HCL or JSON. Code can be authored directly in
+the UI, complete with syntax highlighting, or it can be pasted in. After you have authored the job,
+the next step is to run the plan.
+
+[![Job Run Page][img-job-run]][img-job-run]
+
+## Nomad plan
+
+It is best practice to run `nomad plan` before running `nomad run`, so the Web UI enforces this
+best practice. From the Job Run page, underneath the code editor, there is a Plan button. Clicking
+this button will proceed the run process to the second step.
+
+The second step to submitting a job is reviewing the job plan. If you are submitting a new job, the
+plan will only show additions. If you are submitting a new version of the job, the plan will include
+details on what has been changed, added, and removed.
+
+[![Job Plan Page][img-job-plan]][img-job-plan]
+
+The plan operation will also perform a scheduler dry-run. This dry-run is helpful for catching
+potential issues early. Some potential issues are:
+
+1. There is not enough capacity in the cluster to start your job.
+2. There is not enough capacity remaining in your quota to start your job.
+3. Your job has an unresolvable hard constraint (e.g., required port not available).
+4. In order to start your job, other jobs must be preempted.
+
+[![Job Plan Placement Failures][img-job-plan-placement-failures]][img-job-plan-placement-failures]
+
+From the plan step, you can either cancel to make edits, or run the job. When you run the job, you
+are redirected to the Job Overview page.
+
+## Placement failures
+
+One class of potential issues when planning a job is a placement failure. This happens when Nomad
+can tell ahead of time that a job cannot be started. Since Nomad does bookkeeping on cluster state
+and node metadata, Nomad will already know the answer to basic constraints, such as available
+capacity, available hardware, and available ports.
+
+Nomad will always let you submit a job to the cluster despite placement failures. The job will just
+remain in a queued state until the placement failures are resolved.
+
+Keep in mind that there will always be the possibility that Nomad cannot start a job despite there
+being no placement failures (e.g., artifact cannot download or container startup script errors).
+
+## Preemptions
+
+Another class of potential issues when planning a job is
+[preemptions](/docs/internals/scheduling/preemption.html). This happens when the cluster does not
+have capacity for your job, but your job is a high priority and the cluster has preemptions enabled.
+
+[![Job Plan Preemptions][img-job-plan-preemptions]][img-job-plan-preemptions]
+
+Unlike with placement failures, when you submit a job that has expected preemptions, the job will
+start. However, other allocations will be stopped to free up capacity.
+
+~> With Nomad OSS, only system jobs can preempt allocations. Nomad Enterprise allows for both
+service and batch type jobs to preempt lower priority allocations.
+
+## Job Overview
+
+Upon submitting a job, you will be redirected to the Job Overview page for the job you submitted.
+
+If this is a new job, the job will start in a queued state. If there are no placement failures,
+allocations for the job will naturally transition from a starting to a running or failed state.
+Nomad is quick to schedule allocations (i.e., find a client node to start the allocation on), but an
+allocation may sit in the starting state for a while if it has to download
+[source images](/docs/job-specification/task.html#task-examples) or
+[other artifacts](/docs/job-specification/artifact.html). It may also sit in a starting state if the
+task fails to start and requires retry attempts.
+
+If this is was an existing job that was resubmitted, the job overview will show old allocations
+moving into a completed status before new allocations are spun up. The exact sequence of events
+depends on the configuration of the job.
+
+No matter the configuration of the job, the Job Overview page will live-update as the state of the
+job and its allocations change.
+
+[![Job Overview][img-job-overview]][img-job-overview]
+
+## Job Definition
+
+From the subnav on any job detail page, you can access the Job Definition page.
+
+The Job Definition page will show the job's underlying JSON representation. This can be useful for
+quickly verifying how the job was configured. Many properties from the job configuration will also
+be on the Job Overview page, but some deeper properties may only be available in the definition
+itself. It can also be convenient to see everything at once rather than traversing through task
+groups, allocations, and tasks.
+
+[![Job Definition][img-job-definition]][img-job-definition]
+
+## Job Versions
+
+From the subnav on any job detail page, you can access the Job Versions page.
+
+The Job Versions page will show a timeline view of every version of the job. Each version in the
+timeline includes the version number, the time the version was submitted, whether the version is/was
+stable, the number of changes, and the job diff.
+
+Reviewing the job diffs version by version can be used to debug issues in a similar manner to `git log`.
+
+[![Jobs Versions][img-job-versions]][img-job-versions]
+
+## Job Deployments
+
+From the subnav on any service job detail page, you can access the Job Deployments page.
+
+The Job Deployments page will show a timeline view of every deployment of the job. Each deployment
+in the timeline includes the deployment ID, the deployment status, whether or not the deployment
+requires promotion, the associated version number, the relative time the deployment started, and a
+detailed allocation breakdown.
+
+The allocation breakdown includes information on allocation placement, including how many canaries
+have been placed, how many canaries are expected, how many total allocations have been placed, how
+many total allocations are desired, and the health of each allocation.
+
+[![Jobs Deployments][img-job-deployments]][img-job-deployments]
+
+## Job Allocations
+
+From the subnav on any job detail page, you can access the Job Allocations page.
+
+The Job Allocations page will show a complete table of every allocation for a job. Allocations,
+being the unit of work in Nomad, are accessible from many places. The Job Overview page lists some
+of the recent allocations for a job for convenience and the Job Task Group page will list all
+allocations for that task group, but only the Job Allocations page shows every allocation across all
+task groups for the job.
+
+[![Jobs Allocations][img-job-allocations]][img-job-allocations]
+
+## Job Evaluations
+
+From the subnav on any job detail page, you can access the Job Evaluations page.
+
+The Job Evaluations page will show the most recent evaluations for the job. Evaluations are an
+internal detail of Nomad's inner scheduling process and as such are generally unimportant to
+monitor, but an experienced Nomad user can use evaluations to diagnose potential issues.
+
+[![Job Evaluations][img-job-evaluations]][img-job-evaluations]
+
+## Access Control
+
+Depending on the size of your team and the details of your Nomad deployment, you may wish to control
+which features different internal users have access to. You can enforce this with Nomad's access
+control list system.
+
+By default, all features—read and write—are available to all users of the Web UI. Check out the
+[Securing the Web UI with ACLs](/guides/web-ui/securing.html) guide to learn how to prevent
+anonymous users from having write permissions as well as how to continue to use Web UI write
+features as a privileged user.
+
+## Best Practices
+
+Although the Web UI lets users submit jobs in an ad-hoc manner, Nomad was deliberately designed to
+declare jobs using a configuration language. It is recommended to treat your job definitions, like
+the rest of your infrastructure, as code.
+
+By checking in your job definition files as source control, you will always have a log of changes to
+assist in debugging issues, rolling back versions, and collaborating on changes using development
+best practices like code review.
+
+[img-job-run]: /assets/images/guide-ui-img-job-run.png
+[img-job-plan]: /assets/images/guide-ui-img-job-plan.png
+[img-job-plan-placement-failures]: /assets/images/guide-ui-img-job-plan-placement-failures.png
+[img-job-plan-preemptions]: /assets/images/guide-ui-img-job-plan-preemptions.png
+[img-job-overview]: /assets/images/guide-ui-img-job-overview-system.png
+[img-job-definition]: /assets/images/guide-ui-img-job-definition.png
+[img-job-versions]: /assets/images/guide-ui-img-job-versions.png
+[img-job-deployments]: /assets/images/guide-ui-img-job-deployments.png
+[img-job-allocations]: /assets/images/guide-ui-img-job-allocations.png
+[img-job-evaluations]: /assets/images/guide-ui-img-job-evaluations.png
diff --git a/website/source/index.html.erb b/website/source/index.html.erb
index 7674378ec..081751150 100644
--- a/website/source/index.html.erb
+++ b/website/source/index.html.erb
@@ -9,9 +9,13 @@ description: |-
+
+
<%= inline_svg "logo-hashicorp.svg", height: 120, class: "logo" %>
-
Deploy and Manage Any Containerized, Legacy, or Batch Application
+
Deploy and Manage Any Containerized, Legacy, or Batch Application
Get Started
Download <%= latest_version %>
@@ -24,8 +28,8 @@ description: |-
-
Simple and Lightweight
-
+
Simple and Lightweight
+
Nomad is an easy-to-use, flexible, and performant workload orchestrator that can
deploy a mix of microservice, batch, containerized, and non-containerized applications.
Nomad is easy to operate and scale and has native Consul and Vault integrations.
@@ -34,20 +38,20 @@ description: |-
-
1. Declare Jobs
-
+
1. Declare Jobs
+
Users compose and submit high-level job files. Nomad handles the
scheduling and upgrading of the applications over time.
-
+
This flexibility makes it easy to deploy one container, dozens of
containers, or even millions .
-
2. Plan Changes
-
+
2. Plan Changes
+
With built-in dry-run execution, Nomad shows what scheduling decisions
it will take before it takes them. Operators can approve or deny these
changes to create a safe and reproducible workflow.
@@ -56,16 +60,16 @@ description: |-
-
3. Run Applications
-
+
3. Run Applications
+
Nomad runs applications and ensures they keep running in failure
scenarios. In addition to long-running services, Nomad can schedule
batch jobs, distributed cron jobs, and parameterized jobs.
-
4. Monitor Progress
-
+
4. Monitor Progress
+
Stream logs, send signals, and interact with the file system of
scheduled applications. These operator-friendly commands bring the
familiar debugging tools to a scheduled world.
@@ -79,9 +83,9 @@ description: |-
-
Combine
-
Hybrid & Multi Cloud
-
+ Combine
+
Hybrid & Multi Cloud
+
As more organizations adopt cloud technologies, the desire to run in
multiple datacenters and multiple regions becomes critical. Nomad can
span public and private clouds and treat all your infrastructure as a
@@ -98,8 +102,8 @@ description: |-
-
Hybrid Cloud
-
+
Hybrid Cloud
+
Nomad bridges the gap between the public and private cloud, creating a
unified interface for developers to run any application on any
infrastructure. Easily run services across your internal private cloud
@@ -107,8 +111,8 @@ description: |-
-
Multi Cloud
-
+
Multi Cloud
+
As more organizations adopt cloud technologies, the desire to run
applications simultaneously across multiple clouds increases. Nomad
combines the power of all cloud providers into a single, unified
@@ -123,9 +127,9 @@ description: |-
-
Maintain
-
Simplify Operations
-
+ Maintain
+
Simplify Operations
+
Nomad simplifies operations by supporting several deployment
strategies to safely upgrade jobs, automatically handling machine
failures, and providing a single workflow to deploy applications.
@@ -135,7 +139,7 @@ description: |-
-
Rolling Deploys
+ Rolling Deploys
@@ -143,7 +147,7 @@ description: |-
<%= inline_svg "feature-rolling-deploys.svg" %>
-
+
In order to update an application while reducing downtime, Nomad
provides a built-in mechanism for rolling upgrades. Operators specify
the rate at which they would like to upgrade their service in the
@@ -158,12 +162,12 @@ description: |-
-
Blue/Green Deployments
+ Blue/Green Deployments
-
+
Nomad supports native blue/green and canary deployments through the
declarative job file syntax. Instead of doing a rolling upgrade of the
existing allocations, the new version of the group is deployed along
@@ -180,7 +184,7 @@ description: |-
-
Automatic Machine Failures
+ Automatic Machine Failures
@@ -188,7 +192,7 @@ description: |-
<%= inline_svg "feature-machine-failure.svg" %>
-
+
Because it knows the state of all nodes and applications, if a
node becomes unhealthy, Nomad will automatically reschedule the
applications that were previously running on the unhealthy host
@@ -205,9 +209,9 @@ description: |-
-
Support
-
Flexible Workloads
-
+ Support
+
Flexible Workloads
+
In addition to supporting Linux, Windows, and Mac, Nomad has
extensible support for containerized, virtualized, and standalone
applications. Easily start Docker containers, VMs, or application
@@ -224,8 +228,8 @@ description: |-
-
Diverse Technologies
-
+
Diverse Technologies
+
By supporting a wide range of technologies such as Docker, rkt, and
LXC, Nomad does not force you into a single technology. Easily use
multiple container or virtualization runtimes simultaneously.
@@ -234,8 +238,8 @@ description: |-
-
Multi OS
-
+
Multi OS
+
The Nomad client runs on Linux, Windows, and Mac OS. This diverse
operating system support enables using the same application scheduler
for all your scheduling and runtime needs.
@@ -250,9 +254,9 @@ description: |-
-
Maximize
-
Increase Utilization & Reduce Costs
-
+ Maximize
+
Increase Utilization & Reduce Costs
+
Nomad uses bin packing to optimize application placement onto servers
to maximize resource utilization, increase density, and help reduce
costs.
@@ -268,8 +272,8 @@ description: |-
-
Increase Density
-
+
Increase Density
+
Nomad places applications and services based on a bin packing
algorithm, which is used to optimize the resource utilization and
density of applications. Nomad automatically augments the bin-packing
@@ -278,8 +282,8 @@ description: |-
-
Reduce Costs
-
+
Reduce Costs
+
By maximizing resource utilization, Nomad can help remove unused or
under-utilized machines in the cluster, reducing overall costs.
Additionally, Nomad enables organizations to utilize larger, more
@@ -294,9 +298,9 @@ description: |-
-
Examples
-
Create and Submit Jobs
-
+
Examples
+
Create and Submit Jobs
+
Easily create, validate, submit, and check the status of jobs using
the Nomad CLI.
@@ -346,8 +350,8 @@ description: |-
-
Plan Changes
-
+
Plan Changes
+
Perform a dry-run to check application placement, scheduling
decisions, and visualize failures before they happen.
@@ -394,8 +398,8 @@ description: |-
-
View Application Logs
-
+
View Application Logs
+
Stream application logs directly in the terminal to help analyze and
debug applications.
@@ -420,9 +424,9 @@ description: |-
-
+
-
+
The introduction contains a walkthrough guide, glossary, and a range
of examples for learning and experimenting with Nomad.
diff --git a/website/source/intro/who-uses-nomad.html.markdown b/website/source/intro/who-uses-nomad.html.markdown
index fb862d2f2..6c1f790b1 100644
--- a/website/source/intro/who-uses-nomad.html.markdown
+++ b/website/source/intro/who-uses-nomad.html.markdown
@@ -71,10 +71,7 @@ Nomad is widely adopted and used in production by PagerDuty, Target, Citadel, Tr
* [Tech at N26 - The Bank in the Cloud](https://medium.com/insiden26/tech-at-n26-the-bank-in-the-cloud-e5ff818b528b)
####Elsevier
- * [Eslevier’s Container Framework with Nomad, Terraform, and Consul](https://www.hashicorp.com/resources/elsevier-nomad-container-framework-demo)
-
-####Palantir
- * [Enterprise Security at Palantir with the HashiCorp stack](https://www.hashicorp.com/resources/enterprise-security-hashicorp-stack)
+ * [Elsevier’s Container Framework with Nomad, Terraform, and Consul](https://www.hashicorp.com/resources/elsevier-nomad-container-framework-demo)
####Graymeta
* [Backend Batch Processing At Scale with Nomad](https://www.hashicorp.com/resources/backend-batch-processing-nomad)
diff --git a/website/source/layouts/docs.erb b/website/source/layouts/docs.erb
index 317fa7610..565fe2326 100644
--- a/website/source/layouts/docs.erb
+++ b/website/source/layouts/docs.erb
@@ -231,6 +231,9 @@
+
>
+ monitor
+
>
namespace
@@ -480,6 +504,14 @@
>
Jailtask driver
+
+
>
+ Pot
+
+
+
>
+ Firecracker driver
+
diff --git a/website/source/layouts/guides.erb b/website/source/layouts/guides.erb
index ef12a0bc9..70ed6a336 100644
--- a/website/source/layouts/guides.erb
+++ b/website/source/layouts/guides.erb
@@ -32,6 +32,10 @@
+
+
>
+ Windows Service
+
@@ -51,7 +55,7 @@
Consul
>
- Consul Connect Beta
+ Consul Connect
>
Vault
@@ -207,7 +211,10 @@
>
Stateful Workloads
@@ -252,10 +259,25 @@
>
Load Balancing
+
+
+
>
@@ -278,6 +300,27 @@
+
>
+ Web UI
+
+
+
<% end %>
diff --git a/website/source/layouts/inner.erb b/website/source/layouts/inner.erb
index 5cb8b75d0..89b9babeb 100644
--- a/website/source/layouts/inner.erb
+++ b/website/source/layouts/inner.erb
@@ -1,7 +1,7 @@
<% wrap_layout :layout do %>